From d2552eff19cb41d3889e778ef147f15935aa86e5 Mon Sep 17 00:00:00 2001 From: kurus21 <140687393+kurus21@users.noreply.github.com> Date: Thu, 12 Dec 2024 16:07:54 +0530 Subject: [PATCH] USCensusPEP_By_SexRaceHispanicOrigin changes done (#1113) * pep srh changes done * pep_srh changes made * SCHEDULES=scripts/us_census/pep/pep_by_srh:USCensusPEP_By_SexRaceHispanicOrigin * pep_srh_changes 20241119 * pep srh change 20241120 * prp srh change 20241125 * pep srh 20241126 changes * pep srh 20241205 changes made * us_pep_srh 20241209 changes --- scripts/us_census/pep/pep_by_srh/README.md | 46 +- scripts/us_census/pep/pep_by_srh/constants.py | 13 +- scripts/us_census/pep/pep_by_srh/download.sh | 77 - .../download_county_files_1990_2000.txt | 1 - .../download_county_files_2000_2010.txt | 51 - .../download_county_files_2010_2020.txt | 1 - .../download_state_files_1980_1990.txt | 1 - .../download_state_files_1990_2000.txt | 10 - .../us_census/pep/pep_by_srh/input_url.json | 258 + .../us_census/pep/pep_by_srh/manifest.json | 23 + .../us_census/pep/pep_by_srh/mcf_generator.py | 116 +- scripts/us_census/pep/pep_by_srh/process.py | 1931 +- .../us_census/pep/pep_by_srh/process_test.py | 44 +- .../population_estimate_by_srh.csv | 61800 ++-------------- .../population_estimate_by_srh_agg.csv | 28220 +------ .../county/co-est00int-alldata-01.csv | 17677 +---- .../2010_2020/county/CC-EST2020-ALLDATA.csv | 16716 +---- .../2020_2029/county/cc-est2023-alldata.csv | 433 + .../pep/pep_by_srh/tmcf_generator.py | 40 +- 19 files changed, 9412 insertions(+), 118046 deletions(-) delete mode 100644 scripts/us_census/pep/pep_by_srh/download.sh delete mode 100644 scripts/us_census/pep/pep_by_srh/download_county_files_1990_2000.txt delete mode 100644 scripts/us_census/pep/pep_by_srh/download_county_files_2000_2010.txt delete mode 100644 scripts/us_census/pep/pep_by_srh/download_county_files_2010_2020.txt delete mode 100644 scripts/us_census/pep/pep_by_srh/download_state_files_1980_1990.txt delete mode 100644 scripts/us_census/pep/pep_by_srh/download_state_files_1990_2000.txt create mode 100644 scripts/us_census/pep/pep_by_srh/input_url.json create mode 100644 scripts/us_census/pep/pep_by_srh/manifest.json create mode 100644 scripts/us_census/pep/pep_by_srh/testdata/input_files/2020_2029/county/cc-est2023-alldata.csv diff --git a/scripts/us_census/pep/pep_by_srh/README.md b/scripts/us_census/pep/pep_by_srh/README.md index 3a5aaaeb21..937b415cde 100644 --- a/scripts/us_census/pep/pep_by_srh/README.md +++ b/scripts/us_census/pep/pep_by_srh/README.md @@ -5,9 +5,13 @@ This import covers US Census Population estimate by SRH (Sex, Race and Hispanic / Origin). Data is covered for - 1990 - 2020 County - 1980 - 2020 State - 1980 - 2020 National + 1990 - latest_data County + 1980 - latest_data State + 1980 - latest_data National + +"latest_data" refers to the most recent population estimates for counties, states, and the nation based on the US Census Bureau's ACS Redistricting Data Summary Files. +The provided URL points you to the source for downloading relevant data files "https://www2.census.gov/programs-surveys/popest/datasets/". + Properties Covered - @@ -37,21 +41,43 @@ Origin ## Scripts ``` -download.sh +process.py ``` Above scipt creates necessary folders required for processing files and download's US -Census PEP files to folder download_files. +Census PEP files to folder input_files. And reads downloaded files from input_files folder, prepares consolidated +(National, State, County) output files for as-is (population_estimate_by_srh.csv) and aggregated (population_estimate_by_srh_agg.csv) in output_files folder +### Additional Notes -``` -process.py -``` -Reads downloaded files from download_files folder, prepares consolidated -(National, State, County) output files for as-is (population_estimate_by_srh.csv) and aggregated (population_estimate_by_srh_agg.csv) in output_files folder +We have modified the script for Automation setup, now it's not required to add the future URL's in input_url.jason file. Code will take care of future URL formation automatically. +### Import Procedure +The below command will run process.py and generate output csv, mcf and tmcf. +`python3 script/us_census/pep/pep_by_srh/process.py` + +Execute the 'process.py' script by using the following commands: + + - if you want to perform "download and process", run the below command: + + `python3 process.py` + + - if you want to perform "only process", run the below command: + + `python3 process.py --mode=process` + + - if you want to perform "only download", run the below command: + + `python3 process.py --mode=download` + ``` generate_mcf.py generate_tmcf.py ``` Generates mcf and tmcf files for both 'as-is' data processing and 'aggregated' data processing + +### New Implentation: +- [Updated the script on October 30, 2024] +- Downloading input files is now integrated into process.py, eliminating the need to run the separate download.sh script. +- All source file URLs, including future URLs adhering to the same structure, are centrally managed in the input_url.json file. +- All input files required for processing should be stored within the designated "input_files" folder. diff --git a/scripts/us_census/pep/pep_by_srh/constants.py b/scripts/us_census/pep/pep_by_srh/constants.py index 03a9297a36..cd351cfdde 100644 --- a/scripts/us_census/pep/pep_by_srh/constants.py +++ b/scripts/us_census/pep/pep_by_srh/constants.py @@ -21,7 +21,7 @@ DC import """ -DOWNLOAD_DIR = '/download_files/' +DOWNLOAD_DIR = '/input_files/' PROCESS_AS_IS_DIR = '/process_files/as_is/' PROCESS_AGG_DIR = '/process_files/agg/' OUTPUT_DIR = '/output_files/' @@ -238,25 +238,34 @@ '/process_files/agg/1990_2000/county/', '/process_files/agg/2000_2010/county/', '/process_files/agg/2010_2020/county/', + '/process_files/agg/2020_2029/county/', '/process_files/as_is/1990_2000/county/', '/process_files/as_is/2000_2010/county/', '/process_files/as_is/2010_2020/county/', + '/process_files/as_is/2020_2029/county/', '/process_files/as_is/1980_1990/state/', '/process_files/as_is/1990_2000/state/', '/process_files/as_is/2000_2010/state/', '/process_files/as_is/2010_2020/state/', + '/process_files/as_is/2020_2029/state/', '/process_files/agg/1980_1990/state/', '/process_files/agg/1990_2000/state/', '/process_files/agg/2000_2010/state/', '/process_files/agg/2010_2020/state/', + '/process_files/agg/2020_2029/state/', '/process_files/as_is/1980_1990/national/', '/process_files/as_is/1990_2000/national/', '/process_files/as_is/2000_2010/national/', '/process_files/as_is/2010_2020/national/', + '/process_files/as_is/2020_2029/national/', '/process_files/agg/1980_1990/national/', '/process_files/agg/1990_2000/national/', '/process_files/agg/2000_2010/national/', - '/process_files/agg/2010_2020/national/', '/output_files/' + '/process_files/agg/2020_2029/national/', + '/process_files/agg/2010_2020/national/', '/output_files/', '/input_files/', + '/input_files/1990_2000/county/', '/input_files/2000_2010/county/', + '/input_files/2010_2020/county/', '/input_files/2020_2029/county/', + '/input_files/1980_1990/state/', '/input_files/1990_2000/state/' ] MCF_SRH = '''Node: dcid:{node_name} diff --git a/scripts/us_census/pep/pep_by_srh/download.sh b/scripts/us_census/pep/pep_by_srh/download.sh deleted file mode 100644 index 3770e9c9ed..0000000000 --- a/scripts/us_census/pep/pep_by_srh/download.sh +++ /dev/null @@ -1,77 +0,0 @@ -#!/bin/bash - -set -x - -rm -rf ./download_files/ -rm -rf ./process_files/ -rm -rf ./output_files/ - -mkdir -p ./download_files/1990_2000/county/ -mkdir -p ./download_files/2000_2010/county/ -mkdir -p ./download_files/2010_2020/county/ - -mkdir -p ./process_files/agg/1990_2000/county/ -mkdir -p ./process_files/agg/2000_2010/county/ -mkdir -p ./process_files/agg/2010_2020/county/ - -mkdir -p ./process_files/as_is/1990_2000/county/ -mkdir -p ./process_files/as_is/2000_2010/county/ -mkdir -p ./process_files/as_is/2010_2020/county/ - -mkdir -p ./download_files/1980_1990/state/ -mkdir -p ./download_files/1990_2000/state/ - -mkdir -p ./process_files/as_is/1980_1990/state/ -mkdir -p ./process_files/as_is/1990_2000/state/ -mkdir -p ./process_files/as_is/2000_2010/state/ -mkdir -p ./process_files/as_is/2010_2020/state/ - -mkdir -p ./process_files/agg/1980_1990/state/ -mkdir -p ./process_files/agg/1990_2000/state/ -mkdir -p ./process_files/agg/2000_2010/state/ -mkdir -p ./process_files/agg/2010_2020/state/ - -mkdir -p ./process_files/as_is/1980_1990/national/ -mkdir -p ./process_files/as_is/1990_2000/national/ -mkdir -p ./process_files/as_is/2000_2010/national/ -mkdir -p ./process_files/as_is/2010_2020/national/ - -mkdir -p ./process_files/agg/1980_1990/national/ -mkdir -p ./process_files/agg/1990_2000/national/ -mkdir -p ./process_files/agg/2000_2010/national/ -mkdir -p ./process_files/agg/2010_2020/national/ - -mkdir -p ./output_files/ - -for file in $(cat download_county_files_1990_2000.txt) -do - $(curl https://www2.census.gov/programs-surveys/popest/datasets/1990-2000/counties/asrh/${file} \ - -o ./download_files/1990_2000/county/${file}) -done - -for file in $(cat download_county_files_2000_2010.txt) -do - $(curl https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/${file} \ - -o ./download_files/2000_2010/county/${file}) -done - - -for file in $(cat download_county_files_2010_2020.txt) -do - $(curl https://www2.census.gov/programs-surveys/popest/datasets/2010-2020/counties/asrh/${file} \ - -o ./download_files/2010_2020/county/${file}) -done - - -for file in $(cat download_state_files_1980_1990.txt) -do - $(curl https://www2.census.gov/programs-surveys/popest/datasets/1980-1990/state/asrh/${file} \ - -o ./download_files/1980_1990/state/${file}) -done - - -for file in $(cat download_state_files_1990_2000.txt) -do - $(curl https://www2.census.gov/programs-surveys/popest/tables/1990-2000/state/asrh/${file} \ - -o ./download_files/1990_2000/state/${file}) -done diff --git a/scripts/us_census/pep/pep_by_srh/download_county_files_1990_2000.txt b/scripts/us_census/pep/pep_by_srh/download_county_files_1990_2000.txt deleted file mode 100644 index d81159047a..0000000000 --- a/scripts/us_census/pep/pep_by_srh/download_county_files_1990_2000.txt +++ /dev/null @@ -1 +0,0 @@ -co-99-10.txt diff --git a/scripts/us_census/pep/pep_by_srh/download_county_files_2000_2010.txt b/scripts/us_census/pep/pep_by_srh/download_county_files_2000_2010.txt deleted file mode 100644 index 6c373e0057..0000000000 --- a/scripts/us_census/pep/pep_by_srh/download_county_files_2000_2010.txt +++ /dev/null @@ -1,51 +0,0 @@ -co-est00int-alldata-01.csv -co-est00int-alldata-02.csv -co-est00int-alldata-04.csv -co-est00int-alldata-05.csv -co-est00int-alldata-06.csv -co-est00int-alldata-08.csv -co-est00int-alldata-09.csv -co-est00int-alldata-10.csv -co-est00int-alldata-11.csv -co-est00int-alldata-12.csv -co-est00int-alldata-13.csv -co-est00int-alldata-15.csv -co-est00int-alldata-16.csv -co-est00int-alldata-17.csv -co-est00int-alldata-18.csv -co-est00int-alldata-19.csv -co-est00int-alldata-20.csv -co-est00int-alldata-21.csv -co-est00int-alldata-22.csv -co-est00int-alldata-23.csv -co-est00int-alldata-24.csv -co-est00int-alldata-25.csv -co-est00int-alldata-26.csv -co-est00int-alldata-27.csv -co-est00int-alldata-28.csv -co-est00int-alldata-29.csv -co-est00int-alldata-30.csv -co-est00int-alldata-31.csv -co-est00int-alldata-32.csv -co-est00int-alldata-33.csv -co-est00int-alldata-34.csv -co-est00int-alldata-35.csv -co-est00int-alldata-36.csv -co-est00int-alldata-37.csv -co-est00int-alldata-38.csv -co-est00int-alldata-39.csv -co-est00int-alldata-40.csv -co-est00int-alldata-41.csv -co-est00int-alldata-42.csv -co-est00int-alldata-44.csv -co-est00int-alldata-45.csv -co-est00int-alldata-46.csv -co-est00int-alldata-47.csv -co-est00int-alldata-48.csv -co-est00int-alldata-49.csv -co-est00int-alldata-50.csv -co-est00int-alldata-51.csv -co-est00int-alldata-53.csv -co-est00int-alldata-54.csv -co-est00int-alldata-55.csv -co-est00int-alldata-56.csv diff --git a/scripts/us_census/pep/pep_by_srh/download_county_files_2010_2020.txt b/scripts/us_census/pep/pep_by_srh/download_county_files_2010_2020.txt deleted file mode 100644 index d1365f9f16..0000000000 --- a/scripts/us_census/pep/pep_by_srh/download_county_files_2010_2020.txt +++ /dev/null @@ -1 +0,0 @@ -CC-EST2020-ALLDATA.csv diff --git a/scripts/us_census/pep/pep_by_srh/download_state_files_1980_1990.txt b/scripts/us_census/pep/pep_by_srh/download_state_files_1980_1990.txt deleted file mode 100644 index e947a1ae61..0000000000 --- a/scripts/us_census/pep/pep_by_srh/download_state_files_1980_1990.txt +++ /dev/null @@ -1 +0,0 @@ -st_int_asrh.txt diff --git a/scripts/us_census/pep/pep_by_srh/download_state_files_1990_2000.txt b/scripts/us_census/pep/pep_by_srh/download_state_files_1990_2000.txt deleted file mode 100644 index 6b33cb8b8b..0000000000 --- a/scripts/us_census/pep/pep_by_srh/download_state_files_1990_2000.txt +++ /dev/null @@ -1,10 +0,0 @@ -sasrh90.txt -sasrh91.txt -sasrh92.txt -sasrh93.txt -sasrh94.txt -sasrh95.txt -sasrh96.txt -sasrh97.txt -sasrh98.txt -sasrh99.txt diff --git a/scripts/us_census/pep/pep_by_srh/input_url.json b/scripts/us_census/pep/pep_by_srh/input_url.json new file mode 100644 index 0000000000..e0bf581c98 --- /dev/null +++ b/scripts/us_census/pep/pep_by_srh/input_url.json @@ -0,0 +1,258 @@ +[ + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/1990-2000/counties/asrh/co-99-10.txt", + "file_path": "1990_2000/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-01.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-02.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-04.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-05.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-06.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-08.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-09.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-10.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-11.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-12.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-13.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-15.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-16.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-17.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-18.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-19.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-20.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-21.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-22.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-23.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-24.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-25.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-26.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-27.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-28.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-29.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-30.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-31.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-32.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-33.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-34.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-35.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-36.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-37.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-38.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-39.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-40.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-41.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-42.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-44.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-45.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-46.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-47.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-48.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-49.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-50.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-51.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-53.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-54.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-55.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2000-2010/intercensal/county/co-est00int-alldata-56.csv", + "file_path": "2000_2010/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/2010-2020/counties/asrh/CC-EST2020-ALLDATA.csv", + "file_path": "2010_2020/county/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/datasets/1980-1990/state/asrh/st_int_asrh.txt", + "file_path": "1980_1990/state/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/tables/1990-2000/state/asrh/sasrh90.txt", + "file_path": "1990_2000/state/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/tables/1990-2000/state/asrh/sasrh91.txt", + "file_path": "1990_2000/state/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/tables/1990-2000/state/asrh/sasrh92.txt", + "file_path": "1990_2000/state/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/tables/1990-2000/state/asrh/sasrh93.txt", + "file_path": "1990_2000/state/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/tables/1990-2000/state/asrh/sasrh94.txt", + "file_path": "1990_2000/state/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/tables/1990-2000/state/asrh/sasrh95.txt", + "file_path": "1990_2000/state/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/tables/1990-2000/state/asrh/sasrh96.txt", + "file_path": "1990_2000/state/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/tables/1990-2000/state/asrh/sasrh97.txt", + "file_path": "1990_2000/state/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/tables/1990-2000/state/asrh/sasrh98.txt", + "file_path": "1990_2000/state/" + }, + { + "download_path": "https://www2.census.gov/programs-surveys/popest/tables/1990-2000/state/asrh/sasrh99.txt", + "file_path": "1990_2000/state/" + } +] \ No newline at end of file diff --git a/scripts/us_census/pep/pep_by_srh/manifest.json b/scripts/us_census/pep/pep_by_srh/manifest.json new file mode 100644 index 0000000000..8229b8e817 --- /dev/null +++ b/scripts/us_census/pep/pep_by_srh/manifest.json @@ -0,0 +1,23 @@ +{ + "import_specifications": [ + { + "import_name": "USCensusPEP_By_SexRaceHispanicOrigin", + "curator_emails": ["koppad@google.com"], + "provenance_url": "https://www2.census.gov/programs-surveys/popest/tables", + "provenance_description": "U.S. census population estimate by sex race hispanic origin", + "scripts": ["process.py"], + "import_inputs": [ + { + "template_mcf": "output_files/population_estimate_by_srh.tmcf", + "cleaned_csv": "output_files/population_estimate_by_srh.csv" + }, + { + "template_mcf": "output_files/population_estimate_by_srh_agg.tmcf", + "cleaned_csv": "output_files/population_estimate_by_srh_agg.csv" + } + ], + "cron_schedule": "0 06 * * 1" + } + ] +} + diff --git a/scripts/us_census/pep/pep_by_srh/mcf_generator.py b/scripts/us_census/pep/pep_by_srh/mcf_generator.py index 37f47f3d81..00902e300a 100644 --- a/scripts/us_census/pep/pep_by_srh/mcf_generator.py +++ b/scripts/us_census/pep/pep_by_srh/mcf_generator.py @@ -19,80 +19,82 @@ """ import os +import logging from constants import OUTPUT_DIR, MCF_SRH, MCF_SH, MCF_RH _CODEDIR = os.path.dirname(os.path.realpath(__file__)) +os.system("mkdir -p " + _CODEDIR + OUTPUT_DIR) -def generate_mcf(): +def generate_mcf(output_path): """ - This function generates MCF file in OUTPUT directory. - There are two mcf files generated + This function generates MCF file in the OUTPUT directory. + There are two MCF files generated: 1. population_estimate_by_srh.mcf - for importing as-is data from US Census 2. population_estimate_by_srh_agg.mcf - for importing aggregated data - OUTPUT directory is used as common between process.py and process_test.py """ - os.system("mkdir -p " + _CODEDIR + OUTPUT_DIR) - genderType = ['Male', 'Female'] - hispanic = ['HispanicOrLatino', 'NotHispanicOrLatino'] - race = [ - 'WhiteAlone', 'BlackOrAfricanAmericanAlone', - 'AmericanIndianOrAlaskaNativeAlone', 'AsianOrPacificIslander', - 'AsianAlone', 'NativeHawaiianOrOtherPacificIslanderAlone', - 'TwoOrMoreRaces', 'WhiteAloneOrInCombinationWithOneOrMoreOtherRaces', - 'BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces', - 'AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces', - 'AsianAloneOrInCombinationWithOneOrMoreOtherRaces', - 'NativeHawaiianAndOtherPacificIslanderAloneOrInCombination\ -WithOneOrMoreOtherRaces' - ] + try: + genderType = ['Male', 'Female'] + hispanic = ['HispanicOrLatino', 'NotHispanicOrLatino'] + race = [ + 'WhiteAlone', 'BlackOrAfricanAmericanAlone', + 'AmericanIndianOrAlaskaNativeAlone', 'AsianOrPacificIslander', + 'AsianAlone', 'NativeHawaiianOrOtherPacificIslanderAlone', + 'TwoOrMoreRaces', + 'WhiteAloneOrInCombinationWithOneOrMoreOtherRaces', + 'BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces', + 'AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces', + 'AsianAloneOrInCombinationWithOneOrMoreOtherRaces', + 'NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces' + ] - # Count_Person_Male_NotHispanicOrLatino_WhiteAlone - # Count_Person_Female_NotHispanicOrLatino_WhiteAlone - # SV's are already present, hence not generating them - mcf = "" + # Build MCF content for as-is data + mcf = "" - for gt in genderType: - for h in hispanic: - for r in race: - if 'Count_Person_' + gt + '_' + h + '_' + r not in [ - 'Count_Person_Male_NotHispanicOrLatino_WhiteAlone', - 'Count_Person_Female_NotHispanicOrLatino_WhiteAlone' - ]: - mcf += MCF_SRH.format(node_name='Count_Person_' + gt + '_' + - h + '_' + r, - gender=gt, - race=h + '__' + r) + for gt in genderType: + for h in hispanic: + for r in race: + if 'Count_Person_' + gt + '_' + h + '_' + r not in [ + 'Count_Person_Male_NotHispanicOrLatino_WhiteAlone', + 'Count_Person_Female_NotHispanicOrLatino_WhiteAlone' + ]: + mcf += MCF_SRH.format(node_name='Count_Person_' + gt + + '_' + h + '_' + r, + gender=gt, + race=h + '__' + r) - for gt in genderType: - for h in hispanic: - mcf += MCF_SRH.format(node_name='Count_Person_' + gt + '_' + h, - gender=gt, - race=h) + for gt in genderType: + for h in hispanic: + mcf += MCF_SRH.format(node_name='Count_Person_' + gt + '_' + h, + gender=gt, + race=h) - with open(_CODEDIR + OUTPUT_DIR + 'population_estimate_by_srh.mcf', - 'w', - encoding='utf-8') as mcf_file: - mcf_file.write(mcf) + # Write the As-Is MCF file + with open(_CODEDIR + output_path + 'population_estimate_by_srh.mcf', + 'w', + encoding='utf-8') as mcf_file: + mcf_file.write(mcf) - # Following section created MCF nodes for Aggregated data - # E.g., of gggregate: Hispanic = Hispanic Male + Hispanic Female + # Build MCF content for aggregated data + mcf = "" - mcf = "" + # Note: 'Count_Person_NotHispanicOrLatino_WhiteAlone' already exists, so we skip it + for h in hispanic: + for r in race: + if 'Count_Person_' + h + '_' + r != 'Count_Person_NotHispanicOrLatino_WhiteAlone': + mcf += MCF_RH.format(node_name='Count_Person_' + h + '_' + + r, + race=h + '__' + r) - # Count_Person_NotHispanicOrLatino_WhiteAlone - # SV is already present, hence not generating it. - for h in hispanic: - for r in race: - if 'Count_Person_' + h + '_' + r != \ - 'Count_Person_NotHispanicOrLatino_WhiteAlone': - mcf += MCF_RH.format(node_name='Count_Person_' + h + '_' + r, - race=h + '__' + r) + # Write the Aggregated MCF file + with open(_CODEDIR + output_path + 'population_estimate_by_srh_agg.mcf', + 'w', + encoding='utf-8') as mcf_file: + mcf_file.write(mcf) - with open(_CODEDIR + OUTPUT_DIR + 'population_estimate_by_srh_agg.mcf', - 'w', - encoding='utf-8') as mcf_file: - mcf_file.write(mcf) + except Exception as e: + logging.fatal(f"Fatal error occurred during MCF generation: {e}") + return if __name__ == '__main__': diff --git a/scripts/us_census/pep/pep_by_srh/process.py b/scripts/us_census/pep/pep_by_srh/process.py index d5c37eb81f..d0536e341b 100644 --- a/scripts/us_census/pep/pep_by_srh/process.py +++ b/scripts/us_census/pep/pep_by_srh/process.py @@ -19,7 +19,8 @@ 1990 - 2000 Processed As Is 2000 - 2010 Processed As Is 2010 - 2020 Processed As Is - + 2020 - 2029 Processed As Is + State 1980 - 1990 Processed As Is 1990 - 2000 Processed As Is @@ -27,29 +28,39 @@ (data matches with State Level files available) 2010 - 2020 Aggregated from County to state (data matches with State Level files available) + 2020 - 2029 Aggregated from County to state + (data matches with State Level files available) National 1980 - 1990 Aggregted from State to National Level 1990 - 2000 Aggregted from State to National Level 2000 - 2010 Aggregted from State to National Level 2010 - 2020 Aggregted from State to National Level + 2020 - 2029 Aggregted from State to National Level Also SV aggregation are produced while processing above files. E.g., Count_Person_White_HispanicOrLatino is calulated by addding Count_Person_Male_WhiteHispanicOrLatino and Count_Person_Female_WhiteHispanicOrLatino -Before running this module, run download.sh script, it downloads required -input files, creates necessary folders for processing. +input_url - essentially represents the URL of the file to be downloaded, which is extracted from the file_to_download dictionary +Also There is a function that automatically generate and add URLs for future years of data download. Folder information -download_files - downloaded files (from US census website) are placed here +input_url - essentially represents the URL of the file to be downloaded, which is extracted from the file_to_download dictionary +input_files - downloaded files from the provided URLs (from US census website) are placed here process_files - intermediate processed files are placed in this folder. output_files - output files (mcf, tmcf and csv are written here) """ import os import pandas as pd +import requests +import shutil +import json +import time +from datetime import datetime as dt +from absl import logging from absl import app from absl import flags @@ -59,24 +70,48 @@ from mcf_generator import generate_mcf from tmcf_generator import generate_tmcf +_FLAGS = flags.FLAGS + +flags.DEFINE_string('mode', '', 'Options: download or process') + +_MODULE_DIR = os.path.dirname(os.path.abspath(__file__)) +_INPUT_FILE_PATH = os.path.join(_MODULE_DIR, 'input_files') +output_path = '/output_files/' +_FILES_TO_DOWNLOAD = [] + _CODEDIR = os.path.dirname(os.path.realpath(__file__)) _FLAGS = flags.FLAGS flags.DEFINE_string( "data_directory", DOWNLOAD_DIR, - "Folder consisting of all input files required for processing. Run download.sh before running this python module" -) + "Folder consisting of all input files required for processing") -# SR Columns with single race or combination with one or more race +# Columns with single race(SR) or combination(SR CMBN) with one or more race +# These columns are not used as part of current import +# belwo are the Columns to be retained when SR COLUMNS is dropped +# Columns with single race(SR) or combination(SR CMBN) with one or more race # These columns are not used as part of current import -_SR_COLUMNS = [ - 'TOT_POP', 'TOT_MALE', 'TOT_FEMALE', 'WA_MALE', 'WA_FEMALE', 'BA_MALE', - 'BA_FEMALE', 'IA_MALE', 'IA_FEMALE', 'AA_MALE', 'AA_FEMALE', 'NA_MALE', - 'NA_FEMALE', 'TOM_MALE', 'TOM_FEMALE' +# belwo are the Columns to be retained when SR COLUMNS is dropped +_SR_COLUMNS_DROPPED = [ + 'YEAR', 'LOCATION', 'NH_MALE', 'NH_FEMALE', 'NHWA_MALE', 'NHWA_FEMALE', + 'NHBA_MALE', 'NHBA_FEMALE', 'NHIA_MALE', 'NHIA_FEMALE', 'NHAA_MALE', + 'NHAA_FEMALE', 'NHNA_MALE', 'NHNA_FEMALE', 'NHTOM_MALE', 'NHTOM_FEMALE', + 'H_MALE', 'H_FEMALE', 'HWA_MALE', 'HWA_FEMALE', 'HBA_MALE', 'HBA_FEMALE', + 'HIA_MALE', 'HIA_FEMALE', 'HAA_MALE', 'HAA_FEMALE', 'HNA_MALE', + 'HNA_FEMALE', 'HTOM_MALE', 'HTOM_FEMALE' ] -_SR_CMBN_COLUMNS = [ - 'WAC_MALE', 'WAC_FEMALE', 'BAC_MALE', 'BAC_FEMALE', 'IAC_MALE', - 'IAC_FEMALE', 'AAC_MALE', 'AAC_FEMALE', 'NAC_MALE', 'NAC_FEMALE' +# belwo are the Columns to be retained when both SR COLUMNS and SR CMBN COLUMNS are dropped +_SR_CMBN_COLUMNS_DROPPED = [ + 'YEAR', 'LOCATION', 'NH_MALE', 'NH_FEMALE', 'NHWA_MALE', 'NHWA_FEMALE', + 'NHBA_MALE', 'NHBA_FEMALE', 'NHIA_MALE', 'NHIA_FEMALE', 'NHAA_MALE', + 'NHAA_FEMALE', 'NHNA_MALE', 'NHNA_FEMALE', 'NHTOM_MALE', 'NHTOM_FEMALE', + 'NHWAC_MALE', 'NHWAC_FEMALE', 'NHBAC_MALE', 'NHBAC_FEMALE', 'NHIAC_MALE', + 'NHIAC_FEMALE', 'NHAAC_MALE', 'NHAAC_FEMALE', 'NHNAC_MALE', 'NHNAC_FEMALE', + 'H_MALE', 'H_FEMALE', 'HWA_MALE', 'HWA_FEMALE', 'HBA_MALE', 'HBA_FEMALE', + 'HIA_MALE', 'HIA_FEMALE', 'HAA_MALE', 'HAA_FEMALE', 'HNA_MALE', + 'HNA_FEMALE', 'HTOM_MALE', 'HTOM_FEMALE', 'HWAC_MALE', 'HWAC_FEMALE', + 'HBAC_MALE', 'HBAC_FEMALE', 'HIAC_MALE', 'HIAC_FEMALE', 'HAAC_MALE', + 'HAAC_FEMALE', 'HNAC_MALE', 'HNAC_FEMALE' ] @@ -98,7 +133,6 @@ def _calculate_agg_measure_method(year, sv): Measurement Method """ for r in RACE: - # if r in sv: if sv.endswith(r) or sv in [ 'dcid:Count_Person_WhiteAloneNotHispanicOrLatino', 'dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino', @@ -129,7 +163,6 @@ def _calculate_asis_measure_method(year, sv): Measurement Method """ for r in RACE: - # if r in sv: if sv.endswith(r) or sv in [ 'dcid:Count_Person_WhiteAloneNotHispanicOrLatino', 'dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino', @@ -177,19 +210,22 @@ def _process_geo_level_aggregation(): (data matches with State Level files available) 2010 - 2020 Aggregated from County to state (data matches with State Level files available) + 2020 - 2029 Aggregated from County to state + (data matches with State Level files available) National - 1980 - 1990 Aggregted from State to National Level - 1990 - 2000 Aggregted from State to National Level - 2000 - 2010 Aggregted from State to National Level - 2010 - 2020 Aggregted from State to National Level + 1980 - 1990 Aggregated from State to National Level + 1990 - 2000 Aggregated from State to National Level + 2000 - 2010 Aggregated from State to National Level + 2010 - 2020 Aggregated from State to National Level + 2020 - 2029 Aggregated from State to National Level """ # Below dictionary holds list of years and geo details for which # data needs to be aggregated. - # Dictionay key provides Geo and Year information for which data is + # Dictionary key provides Geo and Year information for which data is # aggregated. Dictionary value is a list which provides details of input - # folder name, input file name, output folder namem output file name and + # folder name, input file name, output folder name, output file name and # geo level aggregation we are carrying. file_process_details = { @@ -201,6 +237,10 @@ def _process_geo_level_aggregation(): '2010_2020/county/', 'county_2010_2020.csv', '2010_2020/state/', 'state_2010_2020.csv', 'state' ], + 'state_2020_2029': [ + '2020_2029/county/', 'county_2020_2029.csv', '2020_2029/state/', + 'state_2020_2029.csv', 'state' + ], 'national_1980_1990': [ '1980_1990/state/', 'state_1980_1990.csv', '1980_1990/national/', 'national_1980_1990.csv', 'national' @@ -216,45 +256,72 @@ def _process_geo_level_aggregation(): 'national_2010_2020': [ '2010_2020/state/', 'state_2010_2020.csv', '2010_2020/national/', 'national_2010_2020.csv', 'national' + ], + 'national_2020_2029': [ + '2020_2029/state/', 'state_2020_2029.csv', '2020_2029/national/', + 'national_2020_2029.csv', 'national' ] } - for geo_agg_file in file_process_details: - for measurement_method in 'as-is', 'aggregate': - if measurement_method == 'as-is': - input_file_path = _CODEDIR + PROCESS_AS_IS_DIR + file_process_details[ - geo_agg_file][0] - output_file_path = _CODEDIR + PROCESS_AS_IS_DIR + file_process_details[ - geo_agg_file][2] - else: - input_file_path = _CODEDIR + PROCESS_AGG_DIR + file_process_details[ - geo_agg_file][0] - output_file_path = _CODEDIR + PROCESS_AGG_DIR + file_process_details[ - geo_agg_file][2] - input_file_name = file_process_details[geo_agg_file][1] - output_file_name = file_process_details[geo_agg_file][3] - _process_geo_aggregation(input_file_path, input_file_name, - output_file_path, output_file_name, - file_process_details[geo_agg_file][4]) + try: + # Loop through the files for aggregation based on geographical level + for geo_agg_file, details in file_process_details.items(): + for measurement_method in ['as-is', 'aggregate']: + if measurement_method == 'as-is': + input_file_path = _CODEDIR + PROCESS_AS_IS_DIR + details[0] + output_file_path = _CODEDIR + PROCESS_AS_IS_DIR + details[2] + else: + input_file_path = _CODEDIR + PROCESS_AGG_DIR + details[0] + output_file_path = _CODEDIR + PROCESS_AGG_DIR + details[2] + + input_file_name = details[1] + output_file_name = details[3] + geo_level = details[4] + + # Check if the input file exists before attempting to process it + if not os.path.exists(input_file_path + input_file_name): + logging.error( + f"Input file does not exist: {input_file_path + input_file_name}" + ) + continue # Skip to the next aggregation if input file doesn't exist + + # Check if the output directory exists; if not, create it + if not os.path.exists(output_file_path): + os.makedirs(output_file_path) + logging.info( + f"Created output directory: {output_file_path}") + + # Process the geographical aggregation + _process_geo_aggregation(input_file_path, input_file_name, + output_file_path, output_file_name, + geo_level) + logging.info( + f"Geo-level aggregation successful for {geo_agg_file} ({measurement_method})" + ) + + except Exception as e: + # If any exception occurs, log it and stop the function + logging.fatal(f"Fatal error during geo-level aggregation: {e}") + return def _process_state_files_1980_1990(download_dir): """ Process state files from year 1980 - 1990 - Source files (for 1980 - 1990) consists of age information in bracket + + Source files (for 1980 - 1990) consist of age information in brackets of 5 years. These age brackets are aggregated during processing along with SRH properties. Args: - download_dir: download directory - input files are saved here. + download_dir: download directory - input files are saved here. """ + # Section 1 - Writing As Is data input_file_path = _CODEDIR + download_dir + '1980_1990/state/' output_file_path = _CODEDIR + PROCESS_AS_IS_DIR + '1980_1990/state/' output_file_name = 'state_1980_1990.csv' output_temp_file_name = 'state_1980_1990_temp.csv' - files_list = os.listdir(input_file_path) - files_list.sort() column_names = ["LOCATION", "YEAR_TEMP", "RACE_ORIGIN", "SEX"] age_columns = [f'A{x:02d}' for x in range(1, 19)] @@ -268,158 +335,246 @@ def _process_state_files_1980_1990(download_dir): (89, 96), (96, 103), (103, 110), (110, 117), (117, 124), (124, 131)] - for file in files_list: - df = pd.read_fwf(input_file_path + files_list[0], - names=column_names, - colspecs=column_specification) - - df["ALL_AGE"] = 0 - for age in age_columns: - df["ALL_AGE"] += df[age] - - df.drop(age_columns, axis=1, inplace=True) - - df = df.pivot(index=['LOCATION', 'YEAR_TEMP'], - columns=['RACE_ORIGIN', 'SEX'], - values='ALL_AGE').reset_index() - - df.to_csv(output_file_path + output_temp_file_name, - header=True, - index=False) - - df = pd.read_csv(output_file_path + output_temp_file_name) - # On pivoting one new row is introduced with NaN - hence dropping - df = df.dropna() - # Some of the columns are read as Float, hence converting them to Int - float_col = df.select_dtypes(include=['float64']) - for col in float_col.columns.values: - df[col] = df[col].astype('int64') - - df.insert(0, 'YEAR', 1980 + df['YEAR_TEMP'], True) - df['LOCATION'] = 'geoId/' + (df['LOCATION'].map(str)).str.zfill(2) - df.drop(["YEAR_TEMP"], axis=1, inplace=True) - - _NOT_HISPANIC_RACES = ['NH-W', 'NH-B', 'NH-AI', 'NH-API'] - _HISPANIC_RACES = ['H-W', 'H-B', 'H-AI', 'H-API'] - - column_header = ['YEAR', 'LOCATION'] + _NOT_HISPANIC_RACES = ['NH-W', 'NH-B', 'NH-AI', 'NH-API'] + _HISPANIC_RACES = ['H-W', 'H-B', 'H-AI', 'H-API'] + + try: + # List and sort files in the input directory + files_list = os.listdir(input_file_path) + files_list.sort() + + # Check if files exist in the input directory + if not files_list: + logging.fatal( + f"No input files found in the directory: {input_file_path}") + return + + # Track the number of files processed successfully + files_processed = 0 + + for file in files_list: + try: + # Read the fixed width files + df = pd.read_fwf(input_file_path + file, + names=column_names, + colspecs=column_specification) + + # Aggregate age columns into 'ALL_AGE' + df["ALL_AGE"] = 0 + for age in age_columns: + df["ALL_AGE"] += df[age] + + # Drop individual age columns + df.drop(age_columns, axis=1, inplace=True) + + # Pivot the data by LOCATION and YEAR_TEMP, with multi-level columns + df = df.pivot(index=['LOCATION', 'YEAR_TEMP'], + columns=['RACE_ORIGIN', 'SEX'], + values='ALL_AGE').reset_index() + + # Write the intermediate file + df.to_csv(output_file_path + output_temp_file_name, + header=True, + index=False) + + # Load the temp file back, remove any NaNs and convert to int + df = pd.read_csv(output_file_path + output_temp_file_name) + df = df.dropna() + + # Convert float columns to int + float_col = df.select_dtypes(include=['float64']) + for col in float_col.columns.values: + df[col] = df[col].astype('int64') + + # Insert the correct 'YEAR' column and format LOCATION + df.insert(0, 'YEAR', 1980 + df['YEAR_TEMP'], True) + df['LOCATION'] = 'geoId/' + ( + df['LOCATION'].map(str)).str.zfill(2) + df.drop(["YEAR_TEMP"], axis=1, inplace=True) + + # Define column headers + column_header = ['YEAR', 'LOCATION'] + for p in _NOT_HISPANIC_RACES: + column_header.append(p + '-M') + column_header.append(p + '-F') + for p in _HISPANIC_RACES: + column_header.append(p + '-M') + column_header.append(p + '-F') + + # Map the old column names to the new column names + column_mapping = { + old: new for old, new in zip(df.columns, column_header) + } + + # Use df.rename() to rename columns + df.rename(columns=column_mapping, inplace=True) + + # Write to the final output file, appending if necessary + if file == files_list[0]: + df.to_csv(output_file_path + output_file_name, index=False) + else: + df.to_csv(output_file_path + output_file_name, + index=False, + mode='a') + + # Remove the temporary file + if os.path.exists(output_file_path + output_temp_file_name): + os.remove(output_file_path + output_temp_file_name) + + files_processed += 1 + + except Exception as e: + logging.error(f"Error processing file {file}: {e}") + continue # Continue processing the next file + + # After processing all files, ensure all files were processed + if files_processed != len(files_list): + logging.fatal( + f"File processing mismatch: Expected {len(files_list)} files, but processed {files_processed}. Output file generation aborted." + ) + return + + # Section 2 - Writing Aggregated data + output_file_path = _CODEDIR + PROCESS_AGG_DIR + '1980_1990/state/' + + # Aggregating data by race groups + df1 = pd.DataFrame() + df1['YEAR'] = df['YEAR'].copy() + df1['LOCATION'] = df['LOCATION'].copy() + + df1['NH'] = df1['H'] = 0 for p in _NOT_HISPANIC_RACES: - column_header.append(p + '-M') - column_header.append(p + '-F') - for p in _HISPANIC_RACES: - column_header.append(p + '-M') - column_header.append(p + '-F') - df.columns = column_header - - if file == files_list[0]: - df.to_csv(output_file_path + output_file_name, index=False) - else: - df.to_csv(output_file_path + output_file_name, - index=False, - mode='a') + df1['NH'] += (df[p + '-M'] + df[p + '-F']).copy() + df1[p] = (df[p + '-M'] + df[p + '-F']).copy() - if os.path.exists(output_file_path + output_temp_file_name): - os.remove(output_file_path + output_temp_file_name) - - # Section 2 - Writing Agg data - output_file_path = _CODEDIR + PROCESS_AGG_DIR + '1980_1990/state/' - - df1 = pd.DataFrame() - df1['YEAR'] = df['YEAR'].copy() - df1['LOCATION'] = df['LOCATION'].copy() - - df1['NH'] = df1['H'] = 0 - for p in _NOT_HISPANIC_RACES: - df1['NH'] += (df[p + '-M'] + df[p + '-F']).copy() - df1[p] = (df[p + '-M'] + df[p + '-F']).copy() + for p in _HISPANIC_RACES: + df1['H'] += (df[p + '-M'] + df[p + '-F']).copy() + df1[p] = (df[p + '-M'] + df[p + '-F']).copy() - for p in _HISPANIC_RACES: - df1['H'] += (df[p + '-M'] + df[p + '-F']).copy() - df1[p] = (df[p + '-M'] + df[p + '-F']).copy() + # Write the aggregated data + df1.to_csv(output_file_path + output_file_name, + header=True, + index=False) + logging.info("Aggregated data saved successfully to: %s", + output_file_path + output_file_name) - df1.to_csv(output_file_path + output_file_name, header=True, index=False) + except Exception as e: + logging.fatal(f"Error during processing of 1980-1990 state files: {e}") + return def _process_state_files_1990_2000(download_dir): """ Process state files from 1990 - 2000 - There are 10 files in total for each year i.e., from 1990 - 1999. + There are 10 files in total for each year (1990 - 1999). Each yearly file consists of Population Census for all states. - All files are available in same format. + All files are available in the same format. Args: download_dir: download directory - input files are saved here. """ - # Section 1 - Writing As Is data - input_file_path = _CODEDIR + download_dir + '1990_2000/state/' - output_file_path = _CODEDIR + PROCESS_AS_IS_DIR + '1990_2000/state/' - output_file_name = 'state_1990_2000.csv' - output_temp_file_name = 'state_1990_2000_temp.csv' - files_list = os.listdir(input_file_path) - files_list.sort() - - column_names = [ - "YEAR", "LOCATION", "AGE", "NH-W-M", "NH-W-F", "NH-B-M", "NH-B-F", - "NH-AIAN-M", "NH-AIAN-F", "NH-API-M", "NH-API-F", "H-W-M", "H-W-F", - "H-B-M", "H-B-F", "H-AIAN-M", "H-AIAN-F", "H-API-M", "H-API-F" - ] - # Column specification - Link to metadata file: - # https://www2.census.gov/programs-surveys/popest/technical-documentation/file-layouts/1990-2000/sasrh_rl.txt - column_specification = [(0, 4), (5, 7), (8, 11), (12, 19), (19, 26), - (27, 34), (34, 41), (42, 49), (49, 56), (57, 64), - (64, 71), (72, 79), (79, 86), (87, 94), (94, 101), - (102, 109), (109, 116), (117, 124), (124, 131)] - - # Read all files (10) and write to single temp file before further - # processing. - for file in files_list: - temp_file_df = pd.read_fwf(input_file_path + file, - names=column_names, - colspecs=column_specification, - skiprows=16) - if file == files_list[0]: - temp_file_df.to_csv(output_file_path + output_temp_file_name, - header=True, - index=False) - else: - temp_file_df.to_csv(output_file_path + output_temp_file_name, - header=False, - index=False, - mode='a') + try: + # Section 1 - Writing As Is Data + input_file_path = _CODEDIR + download_dir + '1990_2000/state/' + output_file_path = _CODEDIR + PROCESS_AS_IS_DIR + '1990_2000/state/' + output_file_name = 'state_1990_2000.csv' + output_temp_file_name = 'state_1990_2000_temp.csv' + + column_names = [ + "YEAR", "LOCATION", "AGE", "NH-W-M", "NH-W-F", "NH-B-M", "NH-B-F", + "NH-AIAN-M", "NH-AIAN-F", "NH-API-M", "NH-API-F", "H-W-M", "H-W-F", + "H-B-M", "H-B-F", "H-AIAN-M", "H-AIAN-F", "H-API-M", "H-API-F" + ] - df = pd.read_csv(output_file_path + output_temp_file_name) - df.drop(["AGE"], axis=1, inplace=True) - df = df.groupby(['YEAR', 'LOCATION']).agg('sum').reset_index() - df['LOCATION'] = 'geoId/' + (df['LOCATION'].map(str)).str.zfill(2) - df.to_csv(output_file_path + output_file_name, index=False) + # Column specification - Link to metadata file: + # https://www2.census.gov/programs-surveys/popest/technical-documentation/file-layouts/1990-2000/sasrh_rl.txt + column_specification = [(0, 4), (5, 7), (8, 11), (12, 19), (19, 26), + (27, 34), (34, 41), (42, 49), (49, 56), + (57, 64), (64, 71), (72, 79), (79, 86), + (87, 94), (94, 101), (102, 109), (109, 116), + (117, 124), (124, 131)] + + # Read all files and concatenate them into a temporary file before further processing + files_list = os.listdir(input_file_path) + files_list.sort() + + if not files_list: + logging.fatal( + f"No input files found in directory: {input_file_path}") + return + + for file in files_list: + try: + temp_file_df = pd.read_fwf(input_file_path + file, + encoding='latin-1', + names=column_names, + colspecs=column_specification, + skiprows=16) + + if file == files_list[0]: + temp_file_df.to_csv(output_file_path + + output_temp_file_name, + header=True, + index=False) + else: + temp_file_df.to_csv(output_file_path + + output_temp_file_name, + header=False, + index=False, + mode='a') + except Exception as e: + logging.error(f"Error processing file {file}: {e}") + continue # Proceed with the next file if this one fails + + # After processing all files, aggregate the data + df = pd.read_csv(output_file_path + output_temp_file_name) + df.drop(["AGE"], axis=1, inplace=True) + df = df.groupby(['YEAR', 'LOCATION']).agg('sum').reset_index() + df['LOCATION'] = 'geoId/' + df['LOCATION'].map(str).str.zfill(2) + df.to_csv(output_file_path + output_file_name, index=False) - # Deleteing temp (concatenated file) - if os.path.exists(output_file_path + output_temp_file_name): - os.remove(output_file_path + output_temp_file_name) + # Delete the temporary concatenated file + if os.path.exists(output_file_path + output_temp_file_name): + os.remove(output_file_path + output_temp_file_name) + + # Section 2 - Writing Aggregated Data + output_file_path = _CODEDIR + PROCESS_AGG_DIR + '1990_2000/state/' - output_file_path = _CODEDIR + PROCESS_AGG_DIR + '1990_2000/state/' + # Prepare aggregated data + df1 = pd.DataFrame() + df1['YEAR'] = df['YEAR'].copy() + df1['LOCATION'] = df['LOCATION'].copy() - # Section 2 - Writing Agg data - df1 = pd.DataFrame() - df1['YEAR'] = df['YEAR'].copy() - df1['LOCATION'] = df['LOCATION'].copy() + _NOT_HISPANIC_RACES = ['NH-W', 'NH-B', 'NH-AIAN', 'NH-API'] + _HISPANIC_RACES = ['H-W', 'H-B', 'H-AIAN', 'H-API'] - _NOT_HISPANIC_RACES = ['NH-W', 'NH-B', 'NH-AIAN', 'NH-API'] - _HISPANIC_RACES = ['H-W', 'H-B', 'H-AIAN', 'H-API'] + df1['NH'] = df1['H'] = 0 + + # Aggregate Non-Hispanic races + for p in _NOT_HISPANIC_RACES: + df1['NH'] += (df[p + '-M'] + df[p + '-F']).copy() + df1[p] = (df[p + '-M'] + df[p + '-F']).copy() - df1['NH'] = df1['H'] = 0 - for p in _NOT_HISPANIC_RACES: - df1['NH'] += (df[p + '-M'] + df[p + '-F']).copy() - df1[p] = (df[p + '-M'] + df[p + '-F']).copy() + # Aggregate Hispanic races + for p in _HISPANIC_RACES: + df1['H'] += (df[p + '-M'] + df[p + '-F']).copy() + df1[p] = (df[p + '-M'] + df[p + '-F']).copy() - for p in _HISPANIC_RACES: - df1['H'] += (df[p + '-M'] + df[p + '-F']).copy() - df1[p] = (df[p + '-M'] + df[p + '-F']).copy() + # Write aggregated data to output CSV + df1.to_csv(output_file_path + output_file_name, + header=True, + index=False) + logging.info( + f"Aggregated data saved successfully to: {output_file_path + output_file_name}" + ) - df1.to_csv(output_file_path + output_file_name, header=True, index=False) + except Exception as e: + logging.fatal( + f"Fatal error during the processing of 1990-2000 state files: {e}") + return def _process_state_files(download_dir): @@ -436,129 +591,359 @@ def _process_state_files(download_dir): def _process_county_files_1990_2000(download_dir): """ - Process County files 1990 2000. - This method generated CSV files for as-is data (e.g., for SV such as - H-W) and aggregated data (e.g., NH = NH-W + NH-B + NH-AIAN + NH-API) + Process County files 1990-2000. + This method generates CSV files for as-is data (e.g., for SV such as + H-W) and aggregated data (e.g., NH = NH-W + NH-B + NH-AIAN + NH-API). Args: download_dir: download directory - input files are saved here. """ - # Section 1 - Writing As Is data - input_file_path = _CODEDIR + download_dir + '1990_2000/county/' - output_file_path = _CODEDIR + PROCESS_AS_IS_DIR + '1990_2000/county/' - output_file_name = 'county_1990_2000.csv' - files_list = os.listdir(input_file_path) - files_list.sort() - - column_names = [ - "YEAR", - "LOCATION", - "NH-W", - "NH-B", - "NH-AIAN", - "NH-API", - "H-W", - "H-B", - "H-AIAN", - "H-API", - ] - # Column specification reference file: - # https://www2.census.gov/programs-surveys/popest/technical-documentation/file-layouts/1990-2000/co-99-10-rl.txt - column_specification = [(0, 4), (5, 10), (10, 19), (19, 28), (28, 37), - (37, 46), (46, 55), (55, 64), (64, 73), (73, 82)] + try: + # Section 1 - Writing As Is Data + input_file_path = _CODEDIR + download_dir + '1990_2000/county/' + output_file_path = _CODEDIR + PROCESS_AS_IS_DIR + '1990_2000/county/' + output_file_name = 'county_1990_2000.csv' - for file in files_list: - df = pd.read_fwf(input_file_path + file, - names=column_names, - colspecs=column_specification, - header=None, - skiprows=18) + if not os.path.exists(input_file_path): + logging.fatal(f"Input directory does not exist: {input_file_path}") + return - df['LOCATION'] = 'geoId/' + (df['LOCATION'].map(str)).str.zfill(5) + if not os.path.exists(output_file_path): + logging.fatal( + f"Output directory does not exist: {output_file_path}") + return - if file == files_list[0]: - df.to_csv(output_file_path + output_file_name, index=False) - else: - df.to_csv(output_file_path + output_file_name, - index=False, - mode='a') + files_list = os.listdir(input_file_path) + if not files_list: + logging.fatal(f"No files found in the directory: {input_file_path}") + return - # Section 2 - Writing Agg data - output_file_path = _CODEDIR + PROCESS_AGG_DIR + '1990_2000/county/' + files_list.sort() - df1 = pd.DataFrame() - df1['YEAR'] = df['YEAR'].copy() - df1['LOCATION'] = df['LOCATION'].copy() - df1['NH'] = (df['NH-W'] + df['NH-B'] + df['NH-AIAN'] + df['NH-API']).copy() - df1['H'] = (df['H-W'] + df['H-B'] + df['H-AIAN'] + df['H-API']).copy() + column_names = [ + "YEAR", "LOCATION", "NH-W", "NH-B", "NH-AIAN", "NH-API", "H-W", + "H-B", "H-AIAN", "H-API" + ] - df1.to_csv(output_file_path + output_file_name, header=True, index=False) + # Column specification reference file: + # https://www2.census.gov/programs-surveys/popest/technical-documentation/file-layouts/1990-2000/co-99-10-rl.txt + column_specification = [(0, 4), (5, 10), (10, 19), (19, 28), (28, 37), + (37, 46), (46, 55), (55, 64), (64, 73), + (73, 82)] + + for file in files_list: + try: + df = pd.read_fwf(input_file_path + file, + encoding='latin-1', + names=column_names, + colspecs=column_specification, + header=None, + skiprows=18) + + # Add geoId to LOCATION column + df['LOCATION'] = 'geoId/' + ( + df['LOCATION'].map(str)).str.zfill(5) + + # Write to CSV (append if not the first file) + if file == files_list[0]: + df.to_csv(output_file_path + output_file_name, index=False) + else: + df.to_csv(output_file_path + output_file_name, + index=False, + mode='a', + header=False) + + logging.info(f"Processed and saved file: {file}") + + except Exception as e: + logging.error(f"Error processing file {file}: {e}") + continue # Continue with the next file if this one fails + + # Section 2 - Writing Aggregated Data + output_file_path = _CODEDIR + PROCESS_AGG_DIR + '1990_2000/county/' + + df1 = pd.DataFrame() + df1['YEAR'] = df['YEAR'].copy() + df1['LOCATION'] = df['LOCATION'].copy() + df1['NH'] = (df['NH-W'] + df['NH-B'] + df['NH-AIAN'] + + df['NH-API']).copy() + df1['H'] = (df['H-W'] + df['H-B'] + df['H-AIAN'] + df['H-API']).copy() + + df1.to_csv(output_file_path + output_file_name, + header=True, + index=False) + logging.info( + f"Aggregated data saved successfully to: {output_file_path + output_file_name}" + ) + + except Exception as e: + logging.fatal( + f"Fatal error during the processing of county files 1990-2000: {e}") + return def _process_county_files_2000_2010(download_dir): """ - Process County files 2000 2010 - This method generated CSV files for as-is data (e.g., for SV such as - NHWA, NHBA etc.) and aggregated data (e.g., NH = NH_MALE + NH_FEMALE). + Process County files 2000-2010. + This method generates CSV files for as-is data (e.g., for SV such as NHWA, NHBA etc.) + and aggregated data (e.g., NH = NH_MALE + NH_FEMALE). Args: - download_dir: download directory - input files are saved here. + download_dir: download directory - input files are saved here. """ - # Section 1 - Writing As Is data - input_file_path = _CODEDIR + download_dir + '2000_2010/county/' - output_file_path = _CODEDIR + PROCESS_AS_IS_DIR + '2000_2010/county/' - output_file_name = 'county_2000_2010.csv' - files_list = os.listdir(input_file_path) - files_list.sort() - - for file in files_list: - df = pd.read_csv(input_file_path + file, encoding='ISO-8859-1') - df = df.query('AGEGRP == 99 & YEAR not in [1, 12, 13]').copy() - df['YEAR'] = 2000 - 2 + df['YEAR'] - df.insert(7, 'LOCATION', '', True) - df['LOCATION'] = 'geoId/' + (df['STATE'].map(str)).str.zfill(2) + ( - df['COUNTY'].map(str)).str.zfill(3) - df.drop(['SUMLEV', 'STATE', 'COUNTY', 'STNAME', 'CTYNAME', 'AGEGRP'], - axis=1, - inplace=True) - - if file == files_list[0]: - df.to_csv(output_file_path + output_file_name, - header=True, - index=False) - else: - df.to_csv(output_file_path + output_file_name, - header=False, - index=False, - mode='a') + try: + # Section 1 - Writing As Is data + input_file_path = _CODEDIR + download_dir + '2000_2010/county/' + output_file_path = _CODEDIR + PROCESS_AS_IS_DIR + '2000_2010/county/' + output_file_name = 'county_2000_2010.csv' + + # List and sort the files in the input directory + files_list = os.listdir(input_file_path) + files_list.sort() + + # Expected number of files + expected_files_count = len(files_list) + + # Check if the number of files in the directory matches the expected count + if not files_list: + logging.error( + f"No input files found in the directory: {input_file_path}") + return + + if len(files_list) != expected_files_count: + logging.error( + f"Mismatch in the number of input files. Expected {expected_files_count} files, but found {len(files_list)}." + ) + return + + files_processed = 0 # Track the number of successfully processed files + + # Read and process each file + for file in files_list: + try: + df = pd.read_csv(input_file_path + file, encoding='ISO-8859-1') + + # Apply filtering and transformation + df = df.query('AGEGRP == 99 & YEAR not in [1, 12, 13]').copy() + df['YEAR'] = 2000 - 2 + df['YEAR'] + df.insert(7, 'LOCATION', '', True) + df['LOCATION'] = 'geoId/' + (df['STATE'].map(str)).str.zfill( + 2) + (df['COUNTY'].map(str)).str.zfill(3) + + # Dynamically select columns to keep + columns_to_keep = ['YEAR', 'LOCATION' + ] # Retain YEAR and LOCATION columns + + # Population columns (male and female for various racial/ethnic groups) + population_columns = [ + 'TOT_POP', 'TOT_MALE', 'TOT_FEMALE', 'WA_MALE', 'WA_FEMALE', + 'BA_MALE', 'BA_FEMALE', 'IA_MALE', 'IA_FEMALE', 'AA_MALE', + 'AA_FEMALE', 'NA_MALE', 'NA_FEMALE', 'TOM_MALE', + 'TOM_FEMALE', 'NH_MALE', 'NH_FEMALE', 'NHWA_MALE', + 'NHWA_FEMALE', 'NHBA_MALE', 'NHBA_FEMALE', 'NHIA_MALE', + 'NHIA_FEMALE', 'NHAA_MALE', 'NHAA_FEMALE', 'NHNA_MALE', + 'NHNA_FEMALE', 'NHTOM_MALE', 'NHTOM_FEMALE', 'H_MALE', + 'H_FEMALE', 'HWA_MALE', 'HWA_FEMALE', 'HBA_MALE', + 'HBA_FEMALE', 'HIA_MALE', 'HIA_FEMALE', 'HAA_MALE', + 'HAA_FEMALE', 'HNA_MALE', 'HNA_FEMALE', 'HTOM_MALE', + 'HTOM_FEMALE' + ] + + # Add population columns to columns_to_keep + columns_to_keep.extend(population_columns) + + # Retain only the necessary columns + df = df[columns_to_keep] + + # Append data to the output CSV + if file == files_list[0]: + df.to_csv(output_file_path + output_file_name, + header=True, + index=False) + else: + df.to_csv(output_file_path + output_file_name, + header=False, + index=False, + mode='a') + + logging.info(f"Processed and saved file: {file}") + + except Exception as e: + logging.error(f"Error processing file {file}: {e}") + continue # Continue with the next file if this one fails + + # Section 2 - Writing Aggregated data + df = pd.read_csv(output_file_path + output_file_name) + output_file_path = _CODEDIR + PROCESS_AGG_DIR + '2000_2010/county/' + + df1 = pd.DataFrame() + df1['YEAR'] = df['YEAR'].copy() + df1['LOCATION'] = df['LOCATION'].copy() + + _NOT_HISPANIC_RACES = [ + 'NH', 'NHWA', 'NHBA', 'NHIA', 'NHAA', 'NHNA', 'NHTOM' + ] + _HISPANIC_RACES = ['H', 'HWA', 'HBA', 'HIA', 'HAA', 'HNA', 'HTOM'] - df = pd.read_csv(output_file_path + output_file_name) + # Process the non-Hispanic and Hispanic races + for p in _NOT_HISPANIC_RACES: + df1[p] = (df[p + '_MALE'] + df[p + '_FEMALE']).copy() - # Section 2 - Writing Agg data - output_file_path = _CODEDIR + PROCESS_AGG_DIR + '2000_2010/county/' - df1 = pd.DataFrame() - df1['YEAR'] = df['YEAR'].copy() - df1['LOCATION'] = df['LOCATION'].copy() + for p in _HISPANIC_RACES: + df1[p] = (df[p + '_MALE'] + df[p + '_FEMALE']).copy() - _NOT_HISPANIC_RACES = [ - 'NH', 'NHWA', 'NHBA', 'NHIA', 'NHAA', 'NHNA', 'NHTOM' - ] - _HISPANIC_RACES = ['H', 'HWA', 'HBA', 'HIA', 'HAA', 'HNA', 'HTOM'] + # Save the aggregated data to CSV + df1.to_csv(output_file_path + output_file_name, + header=True, + index=False) + logging.info("Aggregated data saved successfully to: %s", + output_file_path + output_file_name) - # df1['NH'] = df1['H'] = 0 - for p in _NOT_HISPANIC_RACES: - df1[p] = (df[p + '_MALE'] + df[p + '_FEMALE']).copy() + except Exception as e: + logging.fatal( + f"Fatal error during the processing of county files 2000-2010: {e}") + return - for p in _HISPANIC_RACES: - df1[p] = (df[p + '_MALE'] + df[p + '_FEMALE']).copy() - df1.to_csv(output_file_path + output_file_name, header=True, index=False) +def _process_county_files_2010_2020(download_dir): + """ + Process County files 2010-2020. + This method generates files for SV available as-is in source + file and aggregated SV by adding relevant stats + e.g., NH = NH_MALE + NH_FEMALE. + + Args: + download_dir: download directory - input files are saved here. + """ + try: + # Section 1 - Writing As Is Data + input_file_path = _CODEDIR + download_dir + '2010_2020/county/' + output_file_path = _CODEDIR + PROCESS_AS_IS_DIR + '2010_2020/county/' + output_file_name = 'county_2010_2020.csv' + + if not os.path.exists(input_file_path): + logging.fatal(f"Input directory does not exist: {input_file_path}") + return + + if not os.path.exists(output_file_path): + logging.fatal( + f"Output directory does not exist: {output_file_path}") + return + + files_list = os.listdir(input_file_path) + if not files_list: + logging.fatal(f"No files found in the directory: {input_file_path}") + return + + files_list.sort() + + for file in files_list: + try: + df = pd.read_csv(input_file_path + file, + encoding='ISO-8859-1', + low_memory=False) + + # Filter by AGEGRP = 0 (sum of all age groups added) + # Filter out base estimates (YEAR 1, 2) and year 13 (already processed) + df = df.query("AGEGRP == 0 & YEAR not in [1, 2, 13]").copy() + + # Convert year code to actual year + df['YEAR'] = df['YEAR'] + 2010 - 3 + + # Add fips code for location + df.insert(6, 'LOCATION', 'geoId/', True) + df['LOCATION'] = 'geoId/' + (df['STATE'].map(str)).str.zfill( + 2) + (df['COUNTY'].map(str)).str.zfill(3) + + # Dynamically select columns to keep + columns_to_keep = ['YEAR', 'LOCATION' + ] # Retain YEAR and LOCATION columns + + # Population columns (male and female for various racial/ethnic groups) + population_columns = [ + 'TOT_POP', 'TOT_MALE', 'TOT_FEMALE', 'WA_MALE', 'WA_FEMALE', + 'BA_MALE', 'BA_FEMALE', 'IA_MALE', 'IA_FEMALE', 'AA_MALE', + 'AA_FEMALE', 'NA_MALE', 'NA_FEMALE', 'TOM_MALE', + 'TOM_FEMALE', 'WAC_MALE', 'WAC_FEMALE', 'BAC_MALE', + 'BAC_FEMALE', 'IAC_MALE', 'IAC_FEMALE', 'AAC_MALE', + 'AAC_FEMALE', 'NAC_MALE', 'NAC_FEMALE', 'NH_MALE', + 'NH_FEMALE', 'NHWA_MALE', 'NHWA_FEMALE', 'NHBA_MALE', + 'NHBA_FEMALE', 'NHIA_MALE', 'NHIA_FEMALE', 'NHAA_MALE', + 'NHAA_FEMALE', 'NHNA_MALE', 'NHNA_FEMALE', 'NHTOM_MALE', + 'NHTOM_FEMALE', 'NHWAC_MALE', 'NHWAC_FEMALE', 'NHBAC_MALE', + 'NHBAC_FEMALE', 'NHIAC_MALE', 'NHIAC_FEMALE', 'NHAAC_MALE', + 'NHAAC_FEMALE', 'NHNAC_MALE', 'NHNAC_FEMALE', 'H_MALE', + 'H_FEMALE', 'HWA_MALE', 'HWA_FEMALE', 'HBA_MALE', + 'HBA_FEMALE', 'HIA_MALE', 'HIA_FEMALE', 'HAA_MALE', + 'HAA_FEMALE', 'HNA_MALE', 'HNA_FEMALE', 'HTOM_MALE', + 'HTOM_FEMALE', 'HWAC_MALE', 'HWAC_FEMALE', 'HBAC_MALE', + 'HBAC_FEMALE', 'HIAC_MALE', 'HIAC_FEMALE', 'HAAC_MALE', + 'HAAC_FEMALE', 'HNAC_MALE', 'HNAC_FEMALE' + ] + + # Add population columns to columns_to_keep + columns_to_keep.extend(population_columns) + + # Retain only the necessary columns + df = df[columns_to_keep] + + # Write processed data to the output file + if file == files_list[0]: + df.to_csv(output_file_path + output_file_name, index=False) + else: + df.to_csv(output_file_path + output_file_name, + index=False, + mode='a', + header=False) + + logging.info(f"Processed and saved file: {file}") + + except Exception as e: + logging.error(f"Error processing file {file}: {e}") + continue # Continue with the next file if this one fails + + # Section 2 - Writing Aggregated Data + df = pd.read_csv(output_file_path + output_file_name) + output_file_path = _CODEDIR + PROCESS_AGG_DIR + '2010_2020/county/' + + df1 = pd.DataFrame() + df1['YEAR'] = df['YEAR'].copy() + df1['LOCATION'] = df['LOCATION'].copy() + + _NOT_HISPANIC_RACES = [ + 'NH', 'NHWA', 'NHBA', 'NHIA', 'NHAA', 'NHNA', 'NHTOM', 'NHWAC', + 'NHBAC', 'NHIAC', 'NHAAC', 'NHNAC' + ] + _HISPANIC_RACES = [ + 'H', 'HWA', 'HBA', 'HIA', 'HAA', 'HNA', 'HTOM', 'HWAC', 'HBAC', + 'HIAC', 'HAAC', 'HNAC' + ] -def _process_county_files_2010_2020(download_dir): + # Dynamically aggregate male and female data for races + for p in _NOT_HISPANIC_RACES: + df1[p] = (df[p + '_MALE'] + df[p + '_FEMALE']).copy() + + for p in _HISPANIC_RACES: + df1[p] = (df[p + '_MALE'] + df[p + '_FEMALE']).copy() + + df1.to_csv(output_file_path + output_file_name, + header=True, + index=False) + logging.info( + f"Aggregated data saved successfully to: {output_file_path + output_file_name}" + ) + + except Exception as e: + logging.fatal( + f"Fatal error during the processing of county files 2010-2020: {e}") + return + + +def _process_county_files_2020_2029(download_dir): """ - Process County files 2010 2020. + Process County files 2020-2029. This method generates files for SV available as-is in source file and aggregated SV by adding relevant stats e.g., NH = NH_MALE + NH_FEMALE. @@ -566,65 +951,130 @@ def _process_county_files_2010_2020(download_dir): Args: download_dir: download directory - input files are saved here. """ - input_file_path = _CODEDIR + download_dir + '2010_2020/county/' - output_file_path = _CODEDIR + PROCESS_AS_IS_DIR + '2010_2020/county/' - output_file_name = 'county_2010_2020.csv' - files_list = os.listdir(input_file_path) - files_list.sort() - - for file in files_list: - df = pd.read_csv(input_file_path + file, - encoding='ISO-8859-1', - low_memory=False) - # filter by agegrp = 0 (0 = sum of all age group added) - # filter years 3 - 13 (1, 2 - is base estimate and not for month July) - df = df.query("AGEGRP == 0 & YEAR not in [1, 2]").copy() - - # convert year code to year - # Year code starting from 3 for Year 2010 - df['YEAR'] = df['YEAR'] + 2010 - 3 - - # add fips code for location - df.insert(6, 'LOCATION', 'geoId/', True) - df['LOCATION'] = 'geoId/' + (df['STATE'].map(str)).str.zfill(2) + ( - df['COUNTY'].map(str)).str.zfill(3) - - # drop not reuqire columns - df.drop(['SUMLEV', 'STATE', 'COUNTY', 'STNAME', 'CTYNAME', 'AGEGRP'], - axis=1, - inplace=True) - - if file == files_list[0]: - df.to_csv(output_file_path + output_file_name, index=False) - else: - df.to_csv(output_file_path + output_file_name, - index=False, - mode='a') - - # Section 2 - Writing Agg data - df = pd.read_csv(output_file_path + output_file_name) - output_file_path = _CODEDIR + PROCESS_AGG_DIR + '2010_2020/county/' - df1 = pd.DataFrame() - df1['YEAR'] = df['YEAR'].copy() - df1['LOCATION'] = df['LOCATION'].copy() - - _NOT_HISPANIC_RACES = [ - 'NH', 'NHWA', 'NHBA', 'NHIA', 'NHAA', 'NHNA', 'NHTOM', 'NHWAC', 'NHBAC', - 'NHIAC', 'NHAAC', 'NHNAC' - ] - _HISPANIC_RACES = [ - 'H', 'HWA', 'HBA', 'HIA', 'HAA', 'HNA', 'HTOM', 'HWAC', 'HBAC', 'HIAC', - 'HAAC', 'HNAC' - ] - # df1['NH'] = df1['H'] = 0 - for p in _NOT_HISPANIC_RACES: - df1[p] = (df[p + '_MALE'] + df[p + '_FEMALE']).copy() + try: + # Section 1 - Writing As Is Data + input_file_path = _CODEDIR + download_dir + '2020_2029/county/' + output_file_path = _CODEDIR + PROCESS_AS_IS_DIR + '2020_2029/county/' + output_file_name = 'county_2020_2029.csv' + + if not os.path.exists(input_file_path): + logging.fatal(f"Input directory does not exist: {input_file_path}") + return + + if not os.path.exists(output_file_path): + logging.fatal( + f"Output directory does not exist: {output_file_path}") + return + + files_list = os.listdir(input_file_path) + if not files_list: + logging.fatal(f"No files found in the directory: {input_file_path}") + return + + files_list.sort() + + for file in files_list: + try: + df = pd.read_csv(input_file_path + file, + encoding='ISO-8859-1', + low_memory=False) + + # Filter by AGEGRP = 0 (sum of all age groups added) + # Filter years 1 - 5 (exclude years 1 as it is base estimates) + df = df.query("AGEGRP == 0 & YEAR not in [1]").copy() + + # Convert year code to actual year + # Year code starting from 1 for Year 2020 + df['YEAR'] = df['YEAR'] + 2020 - 2 + + # Add fips code for location + df.insert(6, 'LOCATION', 'geoId/', True) + df['LOCATION'] = 'geoId/' + (df['STATE'].map(str)).str.zfill( + 2) + (df['COUNTY'].map(str)).str.zfill(3) + + # Dynamically select columns to retain + columns_to_keep = ['YEAR', 'LOCATION' + ] # Retain YEAR and LOCATION columns + + # Include population columns (male and female) + population_columns = [ + 'TOT_POP', 'TOT_MALE', 'TOT_FEMALE', 'WA_MALE', 'WA_FEMALE', + 'BA_MALE', 'BA_FEMALE', 'IA_MALE', 'IA_FEMALE', 'AA_MALE', + 'AA_FEMALE', 'NA_MALE', 'NA_FEMALE', 'TOM_MALE', + 'TOM_FEMALE', 'WAC_MALE', 'WAC_FEMALE', 'BAC_MALE', + 'BAC_FEMALE', 'IAC_MALE', 'IAC_FEMALE', 'AAC_MALE', + 'AAC_FEMALE', 'NAC_MALE', 'NAC_FEMALE', 'NH_MALE', + 'NH_FEMALE', 'NHWA_MALE', 'NHWA_FEMALE', 'NHBA_MALE', + 'NHBA_FEMALE', 'NHIA_MALE', 'NHIA_FEMALE', 'NHAA_MALE', + 'NHAA_FEMALE', 'NHNA_MALE', 'NHNA_FEMALE', 'NHTOM_MALE', + 'NHTOM_FEMALE', 'NHWAC_MALE', 'NHWAC_FEMALE', 'NHBAC_MALE', + 'NHBAC_FEMALE', 'NHIAC_MALE', 'NHIAC_FEMALE', 'NHAAC_MALE', + 'NHAAC_FEMALE', 'NHNAC_MALE', 'NHNAC_FEMALE', 'H_MALE', + 'H_FEMALE', 'HWA_MALE', 'HWA_FEMALE', 'HBA_MALE', + 'HBA_FEMALE', 'HIA_MALE', 'HIA_FEMALE', 'HAA_MALE', + 'HAA_FEMALE', 'HNA_MALE', 'HNA_FEMALE', 'HTOM_MALE', + 'HTOM_FEMALE', 'HWAC_MALE', 'HWAC_FEMALE', 'HBAC_MALE', + 'HBAC_FEMALE', 'HIAC_MALE', 'HIAC_FEMALE', 'HAAC_MALE', + 'HAAC_FEMALE', 'HNAC_MALE', 'HNAC_FEMALE' + ] + + # Add population columns to columns_to_keep + columns_to_keep.extend(population_columns) + + # Retain only the necessary columns + df = df[columns_to_keep] + + # Write processed data to the output file + if file == files_list[0]: + df.to_csv(output_file_path + output_file_name, index=False) + else: + df.to_csv(output_file_path + output_file_name, + index=False, + mode='a', + header=False) + + logging.info(f"Processed and saved file: {file}") + + except Exception as e: + logging.error(f"Error processing file {file}: {e}") + continue # Continue with the next file if this one fails + + # Section 2 - Writing Aggregated Data + df = pd.read_csv(output_file_path + output_file_name) + output_file_path = _CODEDIR + PROCESS_AGG_DIR + '2020_2029/county/' + + df1 = pd.DataFrame() + df1['YEAR'] = df['YEAR'].copy() + df1['LOCATION'] = df['LOCATION'].copy() + + _NOT_HISPANIC_RACES = [ + 'NH', 'NHWA', 'NHBA', 'NHIA', 'NHAA', 'NHNA', 'NHTOM', 'NHWAC', + 'NHBAC', 'NHIAC', 'NHAAC', 'NHNAC' + ] + _HISPANIC_RACES = [ + 'H', 'HWA', 'HBA', 'HIA', 'HAA', 'HNA', 'HTOM', 'HWAC', 'HBAC', + 'HIAC', 'HAAC', 'HNAC' + ] + + # Dynamically aggregate male and female data for races + for p in _NOT_HISPANIC_RACES: + df1[p] = (df[p + '_MALE'] + df[p + '_FEMALE']).copy() + + for p in _HISPANIC_RACES: + df1[p] = (df[p + '_MALE'] + df[p + '_FEMALE']).copy() - for p in _HISPANIC_RACES: - df1[p] = (df[p + '_MALE'] + df[p + '_FEMALE']).copy() + df1.to_csv(output_file_path + output_file_name, + header=True, + index=False) + logging.info( + f"Aggregated data saved successfully to: {output_file_path + output_file_name}" + ) - df1.to_csv(output_file_path + output_file_name, header=True, index=False) + except Exception as e: + logging.fatal( + f"Fatal error during the processing of county files 2020-2029: {e}") + return def _process_county_files(download_dir): @@ -638,6 +1088,7 @@ def _process_county_files(download_dir): _process_county_files_1990_2000(download_dir) _process_county_files_2000_2010(download_dir) _process_county_files_2010_2020(download_dir) + _process_county_files_2020_2029(download_dir) def _consolidate_national_files(): @@ -646,102 +1097,138 @@ def _consolidate_national_files(): Only SV relevant for SRH processing are retained and all other stats are dropped. - This funtion consolidates both as-is and agg data into two seperate files. + This function consolidates both as-is and agg data into two separate files. """ - national_as_is_files = [ - _CODEDIR + PROCESS_AS_IS_DIR + yr + '/national/national_' + yr + '.csv' - for yr in ['1980_1990', '1990_2000', '2000_2010', '2010_2020'] - ] - - for file in national_as_is_files: - df = pd.read_csv(file) + try: + national_as_is_files = [ + _CODEDIR + PROCESS_AS_IS_DIR + yr + '/national/national_' + yr + + '.csv' for yr in + ['1980_1990', '1990_2000', '2000_2010', '2010_2020', '2020_2029'] + ] - # Drop S, SR columns 2000 - 2010 file - if file == national_as_is_files[2]: - df.drop(_SR_COLUMNS, axis=1, inplace=True) + for file in national_as_is_files: + try: + df = pd.read_csv(file) + + # Drop S, SR columns 2000 - 2010 file + if file == national_as_is_files[2]: + df = df[_SR_COLUMNS_DROPPED] + + # Drop S, SR, Race Combination columns 2010 - 2020 file + if file == national_as_is_files[3]: + df = df[_SR_CMBN_COLUMNS_DROPPED] + + # Drop S, SR, Race Combination columns 2020 - 2029 file + if file == national_as_is_files[4]: + df = df[_SR_CMBN_COLUMNS_DROPPED] + + df = df.melt(id_vars=['YEAR', 'LOCATION'], + var_name='SV', + value_name='OBSERVATION') + df.replace({"SV": STAT_VAR_COL_MAPPING}, inplace=True) + df["SV"] = 'dcid:' + df["SV"] + df.insert(3, 'MEASUREMENT_METHOD', + 'dcs:dcAggregate/CensusPEPSurvey', True) + df["MEASUREMENT_METHOD"] = df.apply( + lambda r: _calculate_agg_measure_method(r.YEAR, r.SV), + axis=1) + + # Write to temp file (append) + if file == national_as_is_files[0]: + df.to_csv(_CODEDIR + PROCESS_AS_IS_DIR + + 'national_consolidated_temp.csv', + header=True, + index=False) + else: + df.to_csv(_CODEDIR + PROCESS_AS_IS_DIR + + 'national_consolidated_temp.csv', + header=False, + index=False, + mode='a') + + except Exception as e: + logging.error(f"Error processing file {file}: {e}") + + # Finalizing As-Is Data + try: + df = pd.read_csv(_CODEDIR + PROCESS_AS_IS_DIR + + 'national_consolidated_temp.csv') + df.sort_values(by=['LOCATION', 'SV', 'YEAR'], inplace=True) + df.to_csv(_CODEDIR + PROCESS_AS_IS_DIR + + 'national_consolidated_as_is_final.csv', + header=True, + index=False) - # Drop S, SR, Race Combination columns 2010 - 2020 file - if file == national_as_is_files[3]: - df.drop(_SR_COLUMNS + _SR_CMBN_COLUMNS, axis=1, inplace=True) + if os.path.exists(_CODEDIR + PROCESS_AS_IS_DIR + + 'national_consolidated_temp.csv'): + os.remove(_CODEDIR + PROCESS_AS_IS_DIR + + 'national_consolidated_temp.csv') - df = df.melt(id_vars=['YEAR', 'LOCATION'], - var_name='SV', - value_name='OBSERVATION') - df.replace({"SV": STAT_VAR_COL_MAPPING}, inplace=True) - df["SV"] = 'dcid:' + df["SV"] + logging.info("Successfully consolidated as-is national data.") - df.insert(3, 'MEASUREMENT_METHOD', 'dcs:dcAggregate/CensusPEPSurvey', - True) + except Exception as e: + logging.error(f"Error during finalizing As-Is national data: {e}") - df["MEASUREMENT_METHOD"] = df.apply( - lambda r: _calculate_agg_measure_method(r.YEAR, r.SV), axis=1) + # Aggregate file processing + national_agg_files = [ + _CODEDIR + PROCESS_AGG_DIR + yr + '/national/national_' + yr + + '.csv' for yr in + ['1980_1990', '1990_2000', '2000_2010', '2010_2020', '2020_2029'] + ] - if file == national_as_is_files[0]: - df.to_csv(_CODEDIR + PROCESS_AS_IS_DIR + - 'national_consolidated_temp.csv', + for file in national_agg_files: + try: + df = pd.read_csv(file) + df = df.melt(id_vars=['YEAR', 'LOCATION'], + var_name='SV', + value_name='OBSERVATION') + df.replace({"SV": STAT_VAR_COL_MAPPING}, inplace=True) + df["SV"] = 'dcid:' + df["SV"] + + # Write to temp file (append) + if file == national_agg_files[0]: + df.to_csv(_CODEDIR + PROCESS_AGG_DIR + + 'national_consolidated_temp.csv', + header=True, + index=False) + else: + df.to_csv(_CODEDIR + PROCESS_AGG_DIR + + 'national_consolidated_temp.csv', + header=False, + index=False, + mode='a') + + except Exception as e: + logging.error(f"Error processing file {file}: {e}") + + # Finalizing Agg Data + try: + df = pd.read_csv(_CODEDIR + PROCESS_AGG_DIR + + 'national_consolidated_temp.csv') + df.sort_values(by=['LOCATION', 'SV', 'YEAR'], inplace=True) + df.insert(3, 'MEASUREMENT_METHOD', + 'dcs:dcAggregate/CensusPEPSurvey', True) + df["MEASUREMENT_METHOD"] = df.apply( + lambda r: _calculate_agg_measure_method(r.YEAR, r.SV), axis=1) + df.to_csv(_CODEDIR + PROCESS_AGG_DIR + + 'national_consolidated_agg_final.csv', header=True, index=False) - else: - df.to_csv(_CODEDIR + PROCESS_AS_IS_DIR + - 'national_consolidated_temp.csv', - header=False, - index=False, - mode='a') - - df = pd.read_csv(_CODEDIR + PROCESS_AS_IS_DIR + - 'national_consolidated_temp.csv') - - df.sort_values(by=['LOCATION', 'SV', 'YEAR'], inplace=True) - df.to_csv(_CODEDIR + PROCESS_AS_IS_DIR + - 'national_consolidated_as_is_final.csv', - header=True, - index=False) - - if os.path.exists(_CODEDIR + PROCESS_AS_IS_DIR \ - + 'national_consolidated_temp.csv'): - os.remove(_CODEDIR + PROCESS_AS_IS_DIR + - 'national_consolidated_temp.csv') - - # Aggregate file processing - national_agg_files = [ - _CODEDIR + PROCESS_AGG_DIR + yr + '/national/national_' + yr + '.csv' - for yr in ['1980_1990', '1990_2000', '2000_2010', '2010_2020'] - ] - for file in national_agg_files: - df = pd.read_csv(file) - df = df.melt(id_vars=['YEAR', 'LOCATION'], - var_name='SV', - value_name='OBSERVATION') - df.replace({"SV": STAT_VAR_COL_MAPPING}, inplace=True) - df["SV"] = 'dcid:' + df["SV"] + if os.path.exists(_CODEDIR + PROCESS_AGG_DIR + + 'national_consolidated_temp.csv'): + os.remove(_CODEDIR + PROCESS_AGG_DIR + + 'national_consolidated_temp.csv') - if file == national_agg_files[0]: - df.to_csv(_CODEDIR + PROCESS_AGG_DIR + - 'national_consolidated_temp.csv', - header=True, - index=False) - else: - df.to_csv(_CODEDIR + PROCESS_AGG_DIR + - 'national_consolidated_temp.csv', - header=False, - index=False, - mode='a') - - df = pd.read_csv( - _CODEDIR + PROCESS_AGG_DIR + 'national_consolidated_temp.csv',) - df.sort_values(by=['LOCATION', 'SV', 'YEAR'], inplace=True) - df.insert(3, 'MEASUREMENT_METHOD', 'dcs:dcAggregate/CensusPEPSurvey', True) - df["MEASUREMENT_METHOD"] = df.apply( - lambda r: _calculate_agg_measure_method(r.YEAR, r.SV), axis=1) - df.to_csv(_CODEDIR + PROCESS_AGG_DIR + - 'national_consolidated_agg_final.csv', - header=True, - index=False) - - if os.path.exists(_CODEDIR + PROCESS_AGG_DIR \ - + 'national_consolidated_temp.csv'): - os.remove(_CODEDIR + PROCESS_AGG_DIR + 'national_consolidated_temp.csv') + logging.info("Successfully consolidated agg national data.") + + except Exception as e: + logging.error(f"Error during finalizing Agg national data: {e}") + + except Exception as e: + logging.fatal( + f"Fatal error during the consolidation of national files: {e}") + return def _consolidate_state_files(): @@ -750,219 +1237,357 @@ def _consolidate_state_files(): Only SV relevant for SRH processing are retained and all other stats are dropped. - This funtion consolidates both as-is and agg data into two seperate files. + This function consolidates both as-is and agg data into two separate files. """ - state_as_is_files = [ - _CODEDIR + PROCESS_AS_IS_DIR + yr + '/state/state_' + yr + '.csv' - for yr in ['1980_1990', '1990_2000', '2000_2010', '2010_2020'] - ] + try: + # List of state level files for as-is data + state_as_is_files = [ + _CODEDIR + PROCESS_AS_IS_DIR + yr + '/state/state_' + yr + '.csv' + for yr in + ['1980_1990', '1990_2000', '2000_2010', '2010_2020', '2020_2029'] + ] - for file in state_as_is_files: - df = pd.read_csv(file) - df.drop(_SR_COLUMNS + _SR_CMBN_COLUMNS, - axis=1, - inplace=True, - errors='ignore') - df = df.melt(id_vars=['YEAR', 'LOCATION'], - var_name='SV', - value_name='OBSERVATION') - df.replace({"SV": STAT_VAR_COL_MAPPING}, inplace=True) - df["SV"] = 'dcid:' + df["SV"] - df.insert(3, 'MEASUREMENT_METHOD', 'dcs:CensusPEPSurvey', True) - df["MEASUREMENT_METHOD"] = df.apply( - lambda r: _calculate_asis_measure_method(r.YEAR, r.SV), axis=1) - if file == state_as_is_files[0]: + # Processing As-Is Files + for file in state_as_is_files: + try: + df = pd.read_csv(file) + + # Drop S, SR columns 2000 - 2010 file + if file == state_as_is_files[2]: + df = df[_SR_COLUMNS_DROPPED] + + # Drop S, SR, Race Combination columns 2010 - 2020 file + if file == state_as_is_files[3]: + df = df[_SR_CMBN_COLUMNS_DROPPED] + + # Drop S, SR, Race Combination columns 2020 - 2029 file + if file == state_as_is_files[4]: + df = df[_SR_CMBN_COLUMNS_DROPPED] + + df = df.melt(id_vars=['YEAR', 'LOCATION'], + var_name='SV', + value_name='OBSERVATION') + df.replace({"SV": STAT_VAR_COL_MAPPING}, inplace=True) + df["SV"] = 'dcid:' + df["SV"] + df.insert(3, 'MEASUREMENT_METHOD', 'dcs:CensusPEPSurvey', True) + df["MEASUREMENT_METHOD"] = df.apply( + lambda r: _calculate_asis_measure_method(r.YEAR, r.SV), + axis=1) + + # Writing to temp file (appending) + if file == state_as_is_files[0]: + df.to_csv(_CODEDIR + PROCESS_AS_IS_DIR + + 'state_consolidated_temp.csv', + header=True, + index=False) + else: + df.to_csv(_CODEDIR + PROCESS_AS_IS_DIR + + 'state_consolidated_temp.csv', + header=False, + index=False, + mode='a') + + except Exception as e: + logging.error(f"Error processing file {file}: {e}") + + # Finalizing As-Is Data + try: + df = pd.read_csv(_CODEDIR + PROCESS_AS_IS_DIR + + 'state_consolidated_temp.csv') + df.sort_values(by=['LOCATION', 'SV', 'YEAR'], inplace=True) df.to_csv(_CODEDIR + PROCESS_AS_IS_DIR + - 'state_consolidated_temp.csv', + 'state_consolidated_as_is_final.csv', header=True, index=False) - else: - df.to_csv(_CODEDIR + PROCESS_AS_IS_DIR + - 'state_consolidated_temp.csv', - header=False, - index=False, - mode='a') - - df = pd.read_csv(_CODEDIR + PROCESS_AS_IS_DIR + - 'state_consolidated_temp.csv') - df.sort_values(by=['LOCATION', 'SV', 'YEAR'], inplace=True) - df.to_csv(_CODEDIR + PROCESS_AS_IS_DIR + - 'state_consolidated_as_is_final.csv', - header=True, - index=False) - - if os.path.exists(_CODEDIR + PROCESS_AS_IS_DIR \ - + 'state_consolidated_temp.csv'): - os.remove(_CODEDIR + PROCESS_AS_IS_DIR + 'state_consolidated_temp.csv') - - # Agg file processing - state_agg_files = [ - _CODEDIR + PROCESS_AGG_DIR + yr + '/state/state_' + yr + '.csv' - for yr in ['1980_1990', '1990_2000', '2000_2010', '2010_2020'] - ] - for file in state_agg_files: - df = pd.read_csv(file) - df = df.melt(id_vars=['YEAR', 'LOCATION'], - var_name='SV', - value_name='OBSERVATION') - df.replace({"SV": STAT_VAR_COL_MAPPING}, inplace=True) - df["SV"] = 'dcid:' + df["SV"] + if os.path.exists(_CODEDIR + PROCESS_AS_IS_DIR + + 'state_consolidated_temp.csv'): + os.remove(_CODEDIR + PROCESS_AS_IS_DIR + + 'state_consolidated_temp.csv') + + logging.info("Successfully consolidated as-is state data.") - if file == state_agg_files[0]: + except Exception as e: + logging.error(f"Error during finalizing As-Is state data: {e}") + + # Processing Agg Files + state_agg_files = [ + _CODEDIR + PROCESS_AGG_DIR + yr + '/state/state_' + yr + '.csv' + for yr in + ['1980_1990', '1990_2000', '2000_2010', '2010_2020', '2020_2029'] + ] + + # Processing Agg Data Files + for file in state_agg_files: + try: + df = pd.read_csv(file) + df = df.melt(id_vars=['YEAR', 'LOCATION'], + var_name='SV', + value_name='OBSERVATION') + df.replace({"SV": STAT_VAR_COL_MAPPING}, inplace=True) + df["SV"] = 'dcid:' + df["SV"] + + # Writing to temp file (appending) + if file == state_agg_files[0]: + df.to_csv(_CODEDIR + PROCESS_AGG_DIR + + 'state_consolidated_temp.csv', + header=True, + index=False) + else: + df.to_csv(_CODEDIR + PROCESS_AGG_DIR + + 'state_consolidated_temp.csv', + header=False, + index=False, + mode='a') + + except Exception as e: + logging.error(f"Error processing file {file}: {e}") + + # Finalizing Agg Data + try: + df = pd.read_csv(_CODEDIR + PROCESS_AGG_DIR + + 'state_consolidated_temp.csv') + df.sort_values(by=['LOCATION', 'SV', 'YEAR'], inplace=True) + df.insert(3, 'MEASUREMENT_METHOD', + 'dcs:dcAggregate/CensusPEPSurvey', True) + df["MEASUREMENT_METHOD"] = df.apply( + lambda r: _calculate_agg_measure_method(r.YEAR, r.SV), axis=1) df.to_csv(_CODEDIR + PROCESS_AGG_DIR + - 'state_consolidated_temp.csv', + 'state_consolidated_agg_final.csv', header=True, index=False) - else: - df.to_csv(_CODEDIR + PROCESS_AGG_DIR + - 'state_consolidated_temp.csv', - header=False, - index=False, - mode='a') - df = pd.read_csv(_CODEDIR + PROCESS_AGG_DIR + 'state_consolidated_temp.csv') - df.sort_values(by=['LOCATION', 'SV', 'YEAR'], inplace=True) - df.insert(3, 'MEASUREMENT_METHOD', 'dcs:dcAggregate/CensusPEPSurvey', True) - df["MEASUREMENT_METHOD"] = df.apply( - lambda r: _calculate_agg_measure_method(r.YEAR, r.SV), axis=1) - df.to_csv(_CODEDIR + PROCESS_AGG_DIR + 'state_consolidated_agg_final.csv', - header=True, - index=False) + if os.path.exists(_CODEDIR + PROCESS_AGG_DIR + + 'state_consolidated_temp.csv'): + os.remove(_CODEDIR + PROCESS_AGG_DIR + + 'state_consolidated_temp.csv') + + logging.info("Successfully consolidated agg state data.") - if os.path.exists(_CODEDIR + PROCESS_AGG_DIR \ - + 'state_consolidated_temp.csv'): - os.remove(_CODEDIR + PROCESS_AGG_DIR + 'state_consolidated_temp.csv') + except Exception as e: + logging.error(f"Error during finalizing Agg state data: {e}") + + except Exception as e: + logging.fatal( + f"Fatal error during the consolidation of state files: {e}") + return def _consolidate_county_files(): """ - Consolidate all (3) county level files into single county level file. + Consolidate all (4) county-level files into a single county-level file. Only SV relevant for SRH processing are retained and all other stats are dropped. - This funtion consolidates both as-is and agg data into two seperate files. + This function consolidates both as-is and agg data into two separate files. """ - county_file = [ - _CODEDIR + PROCESS_AS_IS_DIR + '2000_2010/county/county_2000_2010.csv', - _CODEDIR + PROCESS_AS_IS_DIR + '2010_2020/county/county_2010_2020.csv' - ] + try: + # List of county-level files for as-is data + county_as_is_files = [ + _CODEDIR + PROCESS_AS_IS_DIR + yr + '/county/county_' + yr + '.csv' + for yr in ['1990_2000', '2000_2010', '2010_2020', '2020_2029'] + ] - for file in county_file: - df = pd.read_csv(file) - df.drop(_SR_COLUMNS + _SR_CMBN_COLUMNS, - axis=1, - inplace=True, - errors='ignore') - df = df.melt(id_vars=['YEAR', 'LOCATION'], - var_name='SV', - value_name='OBSERVATION') - df.replace({"SV": STAT_VAR_COL_MAPPING}, inplace=True) - df["SV"] = 'dcid:' + df["SV"] - df.insert(3, 'MEASUREMENT_METHOD', 'dcs:CensusPEPSurvey', True) - df["MEASUREMENT_METHOD"] = df.apply( - lambda r: _calculate_asis_measure_method(r.YEAR, r.SV), axis=1) - - if file == county_file[0]: + # Processing As-Is Files + for file in county_as_is_files: + try: + df = pd.read_csv(file) + + # Drop S, SR columns 2000 - 2010 file + if file == county_as_is_files[1]: + df = df[_SR_COLUMNS_DROPPED] + + # Drop S, SR, Race Combination columns 2010 - 2020 file + if file == county_as_is_files[2]: + df = df[_SR_CMBN_COLUMNS_DROPPED] + + # Drop S, SR, Race Combination columns 2020 - 2029 file + if file == county_as_is_files[3]: + df = df[_SR_CMBN_COLUMNS_DROPPED] + + df = df.melt(id_vars=['YEAR', 'LOCATION'], + var_name='SV', + value_name='OBSERVATION') + df.replace({"SV": STAT_VAR_COL_MAPPING}, inplace=True) + df["SV"] = 'dcid:' + df["SV"] + df.insert(3, 'MEASUREMENT_METHOD', 'dcs:CensusPEPSurvey', True) + df["MEASUREMENT_METHOD"] = df.apply( + lambda r: _calculate_asis_measure_method(r.YEAR, r.SV), + axis=1) + + # Writing to temp file (appending) + if file == county_as_is_files[0]: + df.to_csv(_CODEDIR + PROCESS_AS_IS_DIR + + 'county_consolidated_temp.csv', + header=True, + index=False) + else: + df.to_csv(_CODEDIR + PROCESS_AS_IS_DIR + + 'county_consolidated_temp.csv', + header=False, + index=False, + mode='a') + + except Exception as e: + logging.error(f"Error processing file {file}: {e}") + + # Finalizing As-Is Data + try: + df = pd.read_csv(_CODEDIR + PROCESS_AS_IS_DIR + + 'county_consolidated_temp.csv') + df.sort_values(by=['LOCATION', 'SV', 'YEAR'], inplace=True) df.to_csv(_CODEDIR + PROCESS_AS_IS_DIR + - 'county_consolidated_temp.csv', + 'county_consolidated_as_is_final.csv', header=True, index=False) - else: - df.to_csv(_CODEDIR + PROCESS_AS_IS_DIR + - 'county_consolidated_temp.csv', - header=False, - index=False, - mode='a') - - df = pd.read_csv(_CODEDIR + PROCESS_AS_IS_DIR + - 'county_consolidated_temp.csv') - df.sort_values(by=['LOCATION', 'SV', 'YEAR'], inplace=True) - df.to_csv(_CODEDIR + PROCESS_AS_IS_DIR + - 'county_consolidated_as_is_final.csv', - header=True, - index=False) - - if os.path.exists(_CODEDIR + PROCESS_AS_IS_DIR \ - + 'county_consolidated_temp.csv'): - os.remove(_CODEDIR + PROCESS_AS_IS_DIR + 'county_consolidated_temp.csv') - - # Agg file processing - county_file = [ - _CODEDIR + PROCESS_AS_IS_DIR + '1990_2000/county/county_1990_2000.csv', - _CODEDIR + PROCESS_AGG_DIR + '1990_2000/county/county_1990_2000.csv', - _CODEDIR + PROCESS_AGG_DIR + '2000_2010/county/county_2000_2010.csv', - _CODEDIR + PROCESS_AGG_DIR + '2010_2020/county/county_2010_2020.csv' - ] - for file in county_file: - df = pd.read_csv(file) - df = df.melt(id_vars=['YEAR', 'LOCATION'], - var_name='SV', - value_name='OBSERVATION') - df.replace({"SV": STAT_VAR_COL_MAPPING}, inplace=True) - df["SV"] = 'dcid:' + df["SV"] + if os.path.exists(_CODEDIR + PROCESS_AS_IS_DIR + + 'county_consolidated_temp.csv'): + os.remove(_CODEDIR + PROCESS_AS_IS_DIR + + 'county_consolidated_temp.csv') + + logging.info("Successfully consolidated as-is county data.") + + except Exception as e: + logging.error(f"Error during finalizing As-Is county data: {e}") + + # Processing Agg Files + county_as_is_files = [ + _CODEDIR + PROCESS_AS_IS_DIR + + '1990_2000/county/county_1990_2000.csv', _CODEDIR + + PROCESS_AGG_DIR + '1990_2000/county/county_1990_2000.csv', + _CODEDIR + PROCESS_AGG_DIR + + '2000_2010/county/county_2000_2010.csv', _CODEDIR + + PROCESS_AGG_DIR + '2010_2020/county/county_2010_2020.csv', + _CODEDIR + PROCESS_AGG_DIR + '2020_2029/county/county_2020_2029.csv' + ] - if file == county_file[0]: + for file in county_as_is_files: + try: + df = pd.read_csv(file) + df = df.melt(id_vars=['YEAR', 'LOCATION'], + var_name='SV', + value_name='OBSERVATION') + df.replace({"SV": STAT_VAR_COL_MAPPING}, inplace=True) + df["SV"] = 'dcid:' + df["SV"] + + # Writing to temp file (appending) + if file == county_as_is_files[0]: + df.to_csv(_CODEDIR + PROCESS_AGG_DIR + + 'county_consolidated_temp.csv', + header=True, + index=False) + else: + df.to_csv(_CODEDIR + PROCESS_AGG_DIR + + 'county_consolidated_temp.csv', + header=False, + index=False, + mode='a') + + except Exception as e: + logging.error(f"Error processing file {file}: {e}") + + # Finalizing Agg Data + try: + df = pd.read_csv(_CODEDIR + PROCESS_AGG_DIR + + 'county_consolidated_temp.csv') + df.sort_values(by=['LOCATION', 'SV', 'YEAR'], inplace=True) + df.insert(3, 'MEASUREMENT_METHOD', + 'dcs:dcAggregate/CensusPEPSurvey', True) + df["MEASUREMENT_METHOD"] = df.apply( + lambda r: _calculate_agg_measure_method(r.YEAR, r.SV), axis=1) df.to_csv(_CODEDIR + PROCESS_AGG_DIR + - 'county_consolidated_temp.csv', + 'county_consolidated_agg_final.csv', header=True, index=False) - else: - df.to_csv(_CODEDIR + PROCESS_AGG_DIR + - 'county_consolidated_temp.csv', - header=False, - index=False, - mode='a') - - df = pd.read_csv(_CODEDIR + PROCESS_AGG_DIR + - 'county_consolidated_temp.csv') - df.sort_values(by=['LOCATION', 'SV', 'YEAR'], inplace=True) - df.insert(3, 'MEASUREMENT_METHOD', 'dcs:dcAggregate/CensusPEPSurvey', True) - df["MEASUREMENT_METHOD"] = df.apply( - lambda r: _calculate_agg_measure_method(r.YEAR, r.SV), axis=1) - df.to_csv(_CODEDIR + PROCESS_AGG_DIR + 'county_consolidated_agg_final.csv', - header=True, - index=False) - - if os.path.exists(_CODEDIR + PROCESS_AGG_DIR \ - + 'county_consolidated_temp.csv'): - os.remove(_CODEDIR + PROCESS_AGG_DIR + 'county_consolidated_temp.csv') - - -def _consolidate_all_geo_files(): + + if os.path.exists(_CODEDIR + PROCESS_AGG_DIR + + 'county_consolidated_temp.csv'): + os.remove(_CODEDIR + PROCESS_AGG_DIR + + 'county_consolidated_temp.csv') + + logging.info("Successfully consolidated agg county data.") + + except Exception as e: + logging.error(f"Error during finalizing Agg county data: {e}") + + except Exception as e: + logging.fatal( + f"Fatal error during the consolidation of county files: {e}") + return + + +def _consolidate_all_geo_files(output_path): """ - Consolidate National, State and County files into single file - This function generates final csv file for both as-is and agg + Consolidate National, State and County files into a single file. + This function generates final csv files for both as-is and agg data processing which will be used for importing into DC. - Output files are written to /output_files/ folder + Output files are written to /output_files/ folder. """ - as_is_df = pd.DataFrame() - for file in [ - _CODEDIR + PROCESS_AS_IS_DIR + geo + '_consolidated_as_is_final.csv' - for geo in ['national', 'state', 'county'] - ]: - as_is_df = pd.concat([as_is_df, pd.read_csv(file)]) - - as_is_df.to_csv(_CODEDIR + OUTPUT_DIR + 'population_estimate_by_srh.csv', - header=True, - index=False) - - agg_df = pd.DataFrame() - for file in [ - _CODEDIR + PROCESS_AGG_DIR + geo + '_consolidated_agg_final.csv' - for geo in ['national', 'state', 'county'] - ]: - agg_df = pd.concat([agg_df, pd.read_csv(file)]) - agg_df.to_csv(_CODEDIR + OUTPUT_DIR + - 'population_estimate_by_srh_agg.csv', - header=True, - index=False) + try: + # Initialize empty DataFrames + as_is_df = pd.DataFrame() + agg_df = pd.DataFrame() -def _consolidate_files(): + # Process as-is files + for file in [ + _CODEDIR + PROCESS_AS_IS_DIR + geo + + '_consolidated_as_is_final.csv' + for geo in ['national', 'state', 'county'] + ]: + try: + # Read the file and concatenate + df = pd.read_csv(file) + as_is_df = pd.concat([as_is_df, df]) + except Exception as e: + logging.error(f"Error processing 'as-is' file {file}: {e}") + + # Save the consolidated as-is DataFrame + try: + as_is_df.to_csv(_CODEDIR + output_path + + 'population_estimate_by_srh.csv', + header=True, + index=False) + logging.info( + "Successfully saved 'as-is' consolidated file to population_estimate_by_srh.csv" + ) + except Exception as e: + logging.error(f"Error saving 'as-is' consolidated file: {e}") + + # Process agg files + for file in [ + _CODEDIR + PROCESS_AGG_DIR + geo + '_consolidated_agg_final.csv' + for geo in ['national', 'state', 'county'] + ]: + try: + # Read the file and concatenate + df = pd.read_csv(file) + agg_df = pd.concat([agg_df, df]) + except Exception as e: + logging.error(f"Error processing 'agg' file {file}: {e}") + + # Save the consolidated agg DataFrame + try: + agg_df.to_csv(_CODEDIR + output_path + + 'population_estimate_by_srh_agg.csv', + header=True, + index=False) + logging.info( + "Successfully saved 'agg' consolidated file to population_estimate_by_srh_agg.csv" + ) + except Exception as e: + logging.error(f"Error saving 'agg' consolidated file: {e}") + + except Exception as e: + logging.fatal( + f"Fatal error during the consolidation of all geo files: {e}") + return + + +def _consolidate_files(output_path): """ Consolidate National, State and County files into single file. Two seperate files - consolidates-as-is and consolidated-agg files are @@ -971,7 +1596,107 @@ def _consolidate_files(): _consolidate_county_files() _consolidate_state_files() _consolidate_national_files() - _consolidate_all_geo_files() + _consolidate_all_geo_files(output_path) + + +def add_future_year_urls(): + global _FILES_TO_DOWNLOAD + with open(os.path.join(_MODULE_DIR, 'input_url.json'), 'r') as input_file: + _FILES_TO_DOWNLOAD = json.load(input_file) + + urls_to_scan = [ + "https://www2.census.gov/programs-surveys/popest/datasets/2020-{YEAR}/counties/asrh/cc-est{YEAR}-alldata.csv" + ] + + # This method will generate URLs for the years 2023 to 2029 + for url in urls_to_scan: + for future_year in range(2030, 2022, -1): + YEAR = future_year + file_path = os.path.join(_MODULE_DIR, + "input_files/2020_2029/county/" + ) # Dynamic folder structure and file name + url_to_check = url.format(YEAR=YEAR) + logging.info(f"checking url: {url_to_check}") + try: + check_url = requests.head(url_to_check) + if check_url.status_code == 200: + _FILES_TO_DOWNLOAD.append({ + "download_path": url_to_check, + "file_path": file_path + }) + logging.info(f"url added to download: {url_to_check}") + break + except: + logging.error(f"URL is not accessible: {url_to_check}") + + +def download_files(): + """Downloads files from the provided URLs. + + This function iterates through a list of files to download (`_FILES_TO_DOWNLOAD`) + and attempts to download each file with retries in case of errors. + + Returns: + bool: True if all files were downloaded successfully, False otherwise. + """ + + global _FILES_TO_DOWNLOAD + session = requests.session() + max_retry = 5 + + for file_to_download in _FILES_TO_DOWNLOAD: + file_name_to_save = None + url = file_to_download['download_path'] + + # Determine the filename to save the downloaded file + if 'file_name' in file_to_download: + file_name_to_save = file_to_download['file_name'] + else: + file_name_to_save = url.split('/')[-1] + + # Include file path if specified + if 'file_path' in file_to_download: + file_name_to_save = os.path.join(file_to_download['file_path'], + file_name_to_save) + + retry_number = 0 + is_file_downloaded = False + + while not is_file_downloaded: + try: + # Download the file with retries + with session.get(url, stream=True) as response: + response.raise_for_status() + + if response.status_code == 200: + # Create the download directory if it doesn't exist + os.makedirs(os.path.dirname( + os.path.join(_INPUT_FILE_PATH, file_name_to_save)), + exist_ok=True) + with open( + os.path.join(_INPUT_FILE_PATH, + file_name_to_save), 'wb') as f: + f.write(response.content) + file_to_download['is_downloaded'] = True + logging.info(f"Downloaded file: {url}") + is_file_downloaded = True + else: + logging.info(f"Retry file download: {url}") + time.sleep(5) + retry_number += 1 + + except Exception as e: + logging.fatal(f"Error downloading {url}: {e}") + time.sleep(5) + retry_number += 1 + + if retry_number > max_retry: + logging.fatal( + f"Error downloading {url} after {max_retry} retries") + # Exit the function if download fails after retries + return False + + return True # All files downloaded successfully (or at least attempted) def _process_files(download_dir): @@ -985,8 +1710,11 @@ def _process_files(download_dir): """ _process_county_files(download_dir) _process_state_files(download_dir) - # _process_geo_level_aggregations will process state 2000 - 2020 data - # and national 1980 - 2020 data + # _process_geo_level_aggregations will process state 2000 - 2020, 2020 - 2029 data + # and national 1980 - 2020, 2020 - 2029 data + # The national-level data is generated through aggregation because the aggregated data and the national files are similar in content + # It simplifies the dataset for broader use, while maintaining consistency across national, state, and county levels. + # Although the source has national files, they may be in a different format or require additional processing compared to the state and county data. _process_geo_level_aggregation() @@ -998,19 +1726,31 @@ def _create_output_n_process_folders(): os.system("mkdir -p " + _CODEDIR + d) -def process(data_directory): +def process(data_directory, output_path): """ Produce As Is and Agg output files for National, State and County Produce MCF and tMCF files for both As-Is and Agg output files Args: download_dir: download directory - input files are saved here. + output_path: output directory - output files from test data input are saved here. """ + input_files = [] + # Walk through the directory and its subdirectories + for root, dirs, files in os.walk(_INPUT_FILE_PATH): + for file in sorted(files): # Sort the files alphabetically + file_path = os.path.join(root, file) + input_files.append(file_path) + # Now `input_files` contains paths to all the files in `_INPUT_FILE_PATH` and its subdirectories + + total_files_to_process = len(input_files) + logging.info(f"No of files to be processed {total_files_to_process}") + _create_output_n_process_folders() _process_files(data_directory) - _consolidate_files() - generate_mcf() - generate_tmcf() + _consolidate_files(output_path) + generate_mcf(output_path) + generate_tmcf(output_path) def main(_): @@ -1018,7 +1758,14 @@ def main(_): Produce As Is and Agg output files for National, State and County Produce MCF and tMCF files for both As-Is and Agg output files """ - process(_FLAGS.data_directory) + mode = _FLAGS.mode + download_status = True + if mode == "" or mode == "download": + _create_output_n_process_folders() + add_future_year_urls() + download_status = download_files() + if download_status and (mode == "" or mode == "process"): + process(_FLAGS.data_directory, output_path) if __name__ == '__main__': diff --git a/scripts/us_census/pep/pep_by_srh/process_test.py b/scripts/us_census/pep/pep_by_srh/process_test.py index ec84eba019..f047d75212 100644 --- a/scripts/us_census/pep/pep_by_srh/process_test.py +++ b/scripts/us_census/pep/pep_by_srh/process_test.py @@ -33,20 +33,24 @@ class ProcessTest(unittest.TestCase): MCF, tMCF and DC import CSV files for US Census Estimates by SRH data. """ - def testMcf(self): + if not os.path.exists("./testdata/actual_results/"): + os.makedirs("./testdata/actual_results/") + + def test_Mcf(self): """ This method runs generate_mcf method, which generates MCF files for as-is and aggregate import and compares expected mcf files with actual (generated) files """ - generate_mcf() + generate_mcf('/testdata/actual_results/') with open(_CODEDIR + '/testdata/expected_results/population_estimate_by_srh.mcf', 'r', encoding='utf-8') as expected_mcf_file: expected_mcf = expected_mcf_file.read() - with open(_CODEDIR + OUTPUT_DIR + 'population_estimate_by_srh.mcf', + with open(_CODEDIR + + '/testdata/actual_results/population_estimate_by_srh.mcf', 'r', encoding='utf-8') as actual_mcf_file: actual_mcf = actual_mcf_file.read() @@ -58,7 +62,8 @@ def testMcf(self): encoding='utf-8') as expected_agg_mcf_file: expected_agg_mcf = expected_agg_mcf_file.read() - with open(_CODEDIR + OUTPUT_DIR + 'population_estimate_by_srh_agg.mcf', + with open(_CODEDIR + + '/testdata/actual_results/population_estimate_by_srh_agg.mcf', 'r', encoding='utf-8') as actual_agg_mcf_file: actual_agg_mcf = actual_agg_mcf_file.read() @@ -69,19 +74,21 @@ def testMcf(self): self.assertEqual(expected_mcf, actual_mcf) self.assertEqual(expected_agg_mcf, actual_agg_mcf) - def testTmcf(self): + def test_Tmcf(self): """ This method runs generate_tmcf method, which generates tMCF files for as-is and aggregate import and compares expected tmcf files with actual (generated) files. """ - generate_tmcf() + + generate_tmcf('/testdata/actual_results/') with open(_CODEDIR + '/testdata/expected_results/population_estimate_by_srh.tmcf', 'r', encoding='utf-8') as expected_tmcf_file: expected_tmcf = expected_tmcf_file.read() - with open(_CODEDIR + OUTPUT_DIR + 'population_estimate_by_srh.tmcf', + with open(_CODEDIR + + '/testdata/actual_results/population_estimate_by_srh.tmcf', 'r', encoding='utf-8') as actual_tmcf_file: actual_tmcf = actual_tmcf_file.read() @@ -92,27 +99,31 @@ def testTmcf(self): 'r', encoding='utf-8') as expected_agg_tmcf_file: expected_agg_tmcf = expected_agg_tmcf_file.read() - with open(_CODEDIR + OUTPUT_DIR + 'population_estimate_by_srh_agg.tmcf', - 'r', - encoding='utf-8') as actual_agg_tmcf_file: + with open( + _CODEDIR + + '/testdata/actual_results/population_estimate_by_srh_agg.tmcf', + 'r', + encoding='utf-8') as actual_agg_tmcf_file: actual_agg_tmcf = actual_agg_tmcf_file.read() self.assertEqual(expected_tmcf, actual_tmcf) self.assertEqual(expected_agg_tmcf, actual_agg_tmcf) - def testCsv(self): + def test_Csv(self): """ This method runs process script, which generates csv files for as-is and aggregate imports to dc. It compares expected files with actual files. """ - process('/testdata/input_files/') + + process('/testdata/input_files/', '/testdata/actual_results/') with open(_CODEDIR + '/testdata/expected_results/population_estimate_by_srh.csv', 'r', encoding='utf-8') as expected_csv_file: expected_csv = expected_csv_file.read() - with open(_CODEDIR + OUTPUT_DIR + 'population_estimate_by_srh.csv', + with open(_CODEDIR + + '/testdata/actual_results/population_estimate_by_srh.csv', 'r', encoding='utf-8') as actual_csv_file: actual_csv = actual_csv_file.read() @@ -123,10 +134,15 @@ def testCsv(self): 'r', encoding='utf-8') as expected_agg_csv_file: expected_agg_csv = expected_agg_csv_file.read() - with open(_CODEDIR + OUTPUT_DIR + 'population_estimate_by_srh_agg.csv', + with open(_CODEDIR + + '/testdata/actual_results/population_estimate_by_srh_agg.csv', 'r', encoding='utf-8') as actual_agg_csv_file: actual_agg_csv = actual_agg_csv_file.read() self.assertEqual(expected_csv, actual_csv) self.assertEqual(expected_agg_csv, actual_agg_csv) + + +if __name__ == "__main__": + unittest.main() diff --git a/scripts/us_census/pep/pep_by_srh/testdata/expected_results/population_estimate_by_srh.csv b/scripts/us_census/pep/pep_by_srh/testdata/expected_results/population_estimate_by_srh.csv index 630847723b..97e923ab99 100644 --- a/scripts/us_census/pep/pep_by_srh/testdata/expected_results/population_estimate_by_srh.csv +++ b/scripts/us_census/pep/pep_by_srh/testdata/expected_results/population_estimate_by_srh.csv @@ -1,36 +1,18 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION -2000,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33147 -2001,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37034 -2002,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40803 -2003,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,44927 -2004,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,49391 -2005,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,54551 -2006,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,60364 -2007,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,66377 -2008,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,72259 -2009,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77734 -2010,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,82362 -2011,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,85057 -2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,86231 -2013,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,88095 -2014,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,89737 -2015,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,91945 -2016,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,95092 -2017,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,97893 -2018,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,101395 -2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,104628 -2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,107886 -2010,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4234 -2011,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4216 -2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4260 -2013,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4306 -2014,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4277 -2015,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4351 -2016,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4485 -2017,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4580 -2018,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4746 -2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4933 -2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5167 +2000,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,75 +2003,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,160 +2004,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100 +2006,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,74 +2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,71 +2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,321 +2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1355 +2022,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18 +2023,country/USA,dcid:Count_Person_Female_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,34 +2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 +2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 +2022,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 +2023,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 1981,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,78 1982,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,83 1983,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,93 @@ -50,59 +32,29 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,242 1998,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,265 1999,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,288 -2000,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,549 -2001,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,766 -2002,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,982 -2003,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1194 -2004,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1405 -2005,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1615 -2006,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1849 -2007,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2070 -2008,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2314 -2009,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2633 -2010,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2825 -2011,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2808 -2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2828 -2013,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2812 -2014,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2780 -2015,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2813 -2016,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2905 -2017,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2945 -2018,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3034 -2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3191 -2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3340 -2000,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,250 -2001,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,297 -2002,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,329 -2003,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,373 -2004,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,430 -2005,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,450 -2006,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,492 -2007,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,561 -2008,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,610 -2009,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,644 -2010,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,706 -2011,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,701 -2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,655 -2013,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,653 -2014,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,679 -2015,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,751 -2016,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,790 -2017,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,836 -2018,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,908 -2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,921 -2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,987 -2010,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1314 -2011,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1323 -2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1279 -2013,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1322 -2014,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1360 -2015,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1444 -2016,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1510 -2017,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1607 -2018,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1699 -2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1759 -2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1872 +2000,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2003,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2004,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2006,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 +2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 +2022,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2023,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 +2000,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2003,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2004,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2006,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 +2022,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 +2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 +2022,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 1981,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,211 1982,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,225 1983,country/USA,dcid:Count_Person_Female_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,245 @@ -141,91 +93,43 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1997 1998,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2075 1999,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2166 -2000,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3824 -2001,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3987 -2002,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4095 -2003,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4269 -2004,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4425 -2005,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4685 -2006,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4914 -2007,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5142 -2008,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5521 -2009,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5836 -2010,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6085 -2011,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6177 -2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6365 -2013,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6523 -2014,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6653 -2015,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6873 -2016,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7062 -2017,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7218 -2018,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7414 -2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7612 -2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7919 -2010,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7435 -2011,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7556 -2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7784 -2013,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8012 -2014,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8154 -2015,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8431 -2016,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8726 -2017,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8969 -2018,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9243 -2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9525 -2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9929 -2010,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1588 -2011,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1547 -2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1481 -2013,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1458 -2014,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1464 -2015,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1468 -2016,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1507 -2017,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1517 -2018,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1551 -2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1609 -2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1704 -2000,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2001,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,298 -2002,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,393 -2003,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,498 -2004,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,600 -2005,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,713 -2006,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,814 -2007,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,928 -2008,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1057 -2009,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1177 -2010,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1256 -2011,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1217 -2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1144 -2013,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1102 -2014,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1112 -2015,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1110 -2016,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1127 -2017,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1127 -2018,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1147 -2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1181 -2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1264 -2000,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,695 -2001,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,873 -2002,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1032 -2003,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1271 -2004,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1439 -2005,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1674 -2006,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1894 -2007,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2129 -2008,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2358 -2009,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2583 -2010,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2792 -2011,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2823 -2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2882 -2013,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3011 -2014,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3036 -2015,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3148 -2016,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3291 -2017,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3439 -2018,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3596 -2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3727 -2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3906 +2000,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2003,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 +2004,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 +2006,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 +2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 +2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 +2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 +2022,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 +2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 +2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 +2022,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,country/USA,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 +2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 +2022,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2023,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2000,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2003,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2004,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2006,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 +2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 +2022,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,country/USA,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2000,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2003,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2004,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2006,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 +2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 +2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 +2022,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2023,country/USA,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 1981,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9822 1982,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9731 1983,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9671 @@ -245,70 +149,34 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,16000 1998,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,17327 1999,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18580 -2000,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27641 -2001,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30813 -2002,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33972 -2003,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37322 -2004,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41092 -2005,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45414 -2006,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50401 -2007,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55547 -2008,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60399 -2009,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64861 -2010,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68698 -2011,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71331 -2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72357 -2013,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73994 -2014,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75477 -2015,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77250 -2016,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79917 -2017,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82328 -2018,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85296 -2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87996 -2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90470 -2010,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71034 -2011,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73704 -2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74770 -2013,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76512 -2014,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78032 -2015,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79902 -2016,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82686 -2017,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85227 -2018,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88339 -2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91144 -2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93772 -2000,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2269688 -2001,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2272462 -2002,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2273567 -2003,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2279142 -2004,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2288466 -2005,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2301872 -2006,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2325116 -2007,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2340898 -2008,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2357998 -2009,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2370425 -2010,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2380139 -2011,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2386067 -2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2394205 -2013,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2400356 -2014,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2405988 -2015,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2410052 -2016,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2414521 -2017,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2419593 -2018,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2424788 -2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2431505 -2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2436680 -2010,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27193 -2011,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27427 -2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27767 -2013,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28049 -2014,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28331 -2015,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28572 -2016,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28749 -2017,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28955 -2018,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29143 -2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29514 -2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29902 +2000,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 +2003,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 +2004,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 +2006,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 +2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 +2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,249 +2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1155 +2022,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 +2023,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 +2012,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 +2019,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,259 +2020,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1243 +2022,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 +2023,country/USA,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 +2000,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9511 +2003,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18958 +2004,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12266 +2006,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8436 +2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8011 +2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16321 +2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,75428 +2022,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,682 +2023,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1032 +2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 +2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 +2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1561 +2022,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 +2023,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 1981,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4118 1982,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4459 1983,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4819 @@ -328,59 +196,29 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7540 1998,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7328 1999,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7213 -2000,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10963 -2001,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11140 -2002,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11313 -2003,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11572 -2004,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11784 -2005,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11960 -2006,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12246 -2007,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12588 -2008,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12775 -2009,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12996 -2010,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13262 -2011,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13283 -2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13339 -2013,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13410 -2014,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13508 -2015,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13564 -2016,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13573 -2017,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13608 -2018,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13633 -2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13804 -2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14018 -2000,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16919 -2001,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17627 -2002,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18461 -2003,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19476 -2004,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20810 -2005,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22185 -2006,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23557 -2007,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24771 -2008,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25987 -2009,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27450 -2010,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28549 -2011,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29748 -2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31616 -2013,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32948 -2014,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34071 -2015,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35210 -2016,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36541 -2017,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37530 -2018,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38092 -2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38830 -2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39296 -2010,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34697 -2011,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36205 -2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38398 -2013,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40055 -2014,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41494 -2015,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42942 -2016,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44581 -2017,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45926 -2018,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46785 -2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47869 -2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48681 +2000,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 +2003,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 +2004,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128 +2006,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 +2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 +2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 +2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,903 +2022,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 +2023,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2000,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 +2003,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 +2004,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 +2006,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 +2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 +2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 +2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,946 +2022,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 +2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 +2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 +2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1255 +2022,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2023,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 1981,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6767 1982,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7314 1983,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7793 @@ -419,102 +257,48 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,600912 1998,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,606437 1999,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,610449 -2000,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,618835 -2001,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,621680 -2002,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,623616 -2003,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,626494 -2004,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,630827 -2005,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,635793 -2006,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,645025 -2007,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,651326 -2008,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,658530 -2009,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,662967 -2010,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,667209 -2011,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,670694 -2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,674908 -2013,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,678946 -2014,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,682453 -2015,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,685856 -2016,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,688531 -2017,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,691970 -2018,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,695002 -2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,697168 -2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,699499 -2010,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,681319 -2011,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,685589 -2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,690581 -2013,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,695362 -2014,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,699577 -2015,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,703692 -2016,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,707075 -2017,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,711268 -2018,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,715018 -2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,717980 -2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,721039 -2010,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2130 -2011,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2173 -2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2289 -2013,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2397 -2014,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2472 -2015,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2584 -2016,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2651 -2017,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2742 -2018,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2804 -2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2811 -2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2886 -2000,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,554 -2001,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,583 -2002,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,624 -2003,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,647 -2004,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,715 -2005,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,725 -2006,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,781 -2007,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,791 -2008,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,844 -2009,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,898 -2010,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,979 -2011,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,981 -2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1055 -2013,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1115 -2014,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1153 -2015,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1213 -2016,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1237 -2017,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1282 -2018,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1296 -2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1270 -2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1286 -2000,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18132 -2001,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19178 -2002,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20089 -2003,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21050 -2004,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22160 -2005,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23341 -2006,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24681 -2007,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26019 -2008,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27601 -2009,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29105 -2010,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30300 -2011,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31519 -2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32758 -2013,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33948 -2014,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35045 -2015,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36152 -2016,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37250 -2017,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38401 -2018,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39495 -2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40723 -2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41837 -2010,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1666852 -2011,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1667995 -2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1669812 -2013,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1670379 -2014,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1671161 -2015,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1670485 -2016,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1670837 -2017,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1671312 -2018,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1672801 -2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1676376 -2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1678428 +2000,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1198 +2003,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2449 +2004,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5106 +2006,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5130 +2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4837 +2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8163 +2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,568 +2022,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2023,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4853 +2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8229 +2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,949 +2022,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 +2023,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 +2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 +2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 +2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 +2022,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2000,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2003,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2004,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2006,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 +2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 +2022,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2000,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 +2003,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 +2004,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 +2006,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 +2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 +2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 +2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1298 +2022,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 +2023,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 +2012,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3121 +2019,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8067 +2020,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72966 +2022,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,660 +2023,country/USA,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1018 1981,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1478171 1982,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1481498 1983,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1484452 @@ -534,59 +318,29 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1606265 1998,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1614687 1999,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1618647 -2000,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1604285 -2001,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1602254 -2002,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1599464 -2003,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1599903 -2004,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1602170 -2005,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1607868 -2006,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1618826 -2007,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1625403 -2008,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1632261 -2009,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1637009 -2010,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1639840 -2011,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1639842 -2012,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1640529 -2013,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1639989 -2014,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1639758 -2015,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1638057 -2016,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1637389 -2017,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1636802 -2018,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1637270 -2019,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1639710 -2020,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1640744 -2000,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,43869 -2001,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48688 -2002,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53376 -2003,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,58545 -2004,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,63893 -2005,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,70271 -2006,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77478 -2007,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,84275 -2008,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,91450 -2009,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,98784 -2010,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,103732 -2011,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,104271 -2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,103658 -2013,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,103993 -2014,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,104623 -2015,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,106176 -2016,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,108574 -2017,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,110831 -2018,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,113886 -2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,116161 -2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,118671 -2010,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5647 -2011,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5507 -2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5453 -2013,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5367 -2014,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5317 -2015,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5325 -2016,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5482 -2017,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5581 -2018,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5733 -2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5832 -2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6025 +2000,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8236 +2003,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16221 +2004,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6875 +2006,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3234 +2012,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3089 +2019,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7954 +2020,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71690 +2022,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,648 +2023,country/USA,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1012 +2000,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77 +2003,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,189 +2004,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,91 +2006,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,66 +2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,85 +2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,339 +2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1399 +2022,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25 +2023,country/USA,dcid:Count_Person_Male_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29 +2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 +2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 +2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 +2022,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 +2023,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 1981,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,86 1982,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,93 1983,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,101 @@ -606,59 +360,29 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,300 1998,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,326 1999,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,344 -2000,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,757 -2001,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1035 -2002,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1335 -2003,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1624 -2004,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1902 -2005,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2192 -2006,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2514 -2007,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2810 -2008,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3194 -2009,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3623 -2010,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3921 -2011,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3773 -2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3727 -2013,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3606 -2014,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3591 -2015,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3613 -2016,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3719 -2017,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3776 -2018,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3891 -2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3945 -2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4066 -2000,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,316 -2001,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,384 -2002,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,415 -2003,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,471 -2004,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,549 -2005,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,594 -2006,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,648 -2007,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,749 -2008,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,702 -2009,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,859 -2010,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,929 -2011,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,904 -2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,805 -2013,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,811 -2014,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,809 -2015,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,868 -2016,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,900 -2017,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,976 -2018,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1049 -2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1040 -2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1026 -2010,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1569 -2011,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1563 -2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1471 -2013,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1491 -2014,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1483 -2015,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1579 -2016,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1626 -2017,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1712 -2018,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1837 -2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1845 -2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1881 +2000,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2003,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 +2004,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2006,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 +2022,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2023,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2000,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2003,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2004,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2006,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 +2022,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2023,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 +2022,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2023,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 1981,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,164 1982,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,177 1983,country/USA,dcid:Count_Person_Male_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,195 @@ -697,91 +421,43 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2208 1998,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2313 1999,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2409 -2000,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3521 -2001,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3667 -2002,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3923 -2003,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4139 -2004,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4413 -2005,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4773 -2006,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5217 -2007,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5553 -2008,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6000 -2009,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6455 -2010,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6859 -2011,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6948 -2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7167 -2013,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7316 -2014,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7414 -2015,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7603 -2016,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7671 -2017,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7756 -2018,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7834 -2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7906 -2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8078 -2010,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8351 -2011,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8475 -2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8714 -2013,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8935 -2014,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9042 -2015,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9261 -2016,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9398 -2017,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9535 -2018,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9726 -2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9861 -2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10123 -2010,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2230 -2011,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2107 -2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2023 -2013,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1930 -2014,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1895 -2015,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1867 -2016,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1878 -2017,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1909 -2018,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1932 -2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1948 -2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2020 -2000,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,337 -2001,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,504 -2002,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,646 -2003,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,801 -2004,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,959 -2005,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1108 -2006,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1278 -2007,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1409 -2008,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1584 -2009,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1765 -2010,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1886 -2011,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1767 -2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1669 -2013,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1564 -2014,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1535 -2015,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1499 -2016,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1497 -2017,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1516 -2018,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1519 -2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1532 -2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1586 -2000,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,732 -2001,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,963 -2002,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1201 -2003,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1449 -2004,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1655 -2005,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1972 -2006,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2223 -2007,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2455 -2008,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2771 -2009,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3065 -2010,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3255 -2011,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3318 -2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3336 -2013,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3437 -2014,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3412 -2015,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3442 -2016,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3586 -2017,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3658 -2018,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3824 -2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3935 -2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4109 +2000,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2003,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 +2004,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 +2006,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 +2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 +2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 +2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 +2022,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 +2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 +2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 +2022,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2023,country/USA,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 +2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 +2022,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2000,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2003,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2004,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2006,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 +2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2022,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,country/USA,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2000,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2003,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2004,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2006,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 +2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 +2022,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 +2023,country/USA,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 1981,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9900 1982,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9877 1983,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9890 @@ -801,70 +477,34 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,17515 1998,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19110 1999,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20373 -2000,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38206 -2001,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42135 -2002,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45856 -2003,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50061 -2004,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54415 -2005,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59632 -2006,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65598 -2007,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71299 -2008,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77199 -2009,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83017 -2010,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86882 -2011,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87561 -2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86954 -2013,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87259 -2014,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87862 -2015,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89151 -2016,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91201 -2017,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93149 -2018,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95769 -2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97803 -2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99806 -2010,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89644 -2011,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90394 -2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89801 -2013,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90190 -2014,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90777 -2015,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92083 -2016,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94264 -2017,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96276 -2018,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99028 -2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101174 -2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103317 -2000,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2105469 -2001,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2109450 -2002,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2112343 -2003,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2120877 -2004,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2128979 -2005,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2143111 -2006,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2166023 -2007,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2181290 -2008,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2196499 -2009,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2210995 -2010,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2219281 -2011,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2224247 -2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2232538 -2013,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2239142 -2014,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2243389 -2015,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2246630 -2016,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2248637 -2017,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2249672 -2018,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2251559 -2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2255671 -2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2258295 -2010,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25953 -2011,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26205 -2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26509 -2013,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26754 -2014,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27002 -2015,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27307 -2016,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27512 -2017,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27726 -2018,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28013 -2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28272 -2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28548 +2000,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 +2003,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 +2004,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 +2006,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 +2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 +2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,257 +2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1161 +2022,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 +2023,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 +2012,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 +2019,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,263 +2020,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1253 +2022,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 +2023,country/USA,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 +2000,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8849 +2003,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17553 +2004,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11312 +2006,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7851 +2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7199 +2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14515 +2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,74692 +2022,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,757 +2023,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1056 +2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 +2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 +2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1553 +2022,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 +2023,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 1981,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4190 1982,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4526 1983,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4905 @@ -884,59 +524,29 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7156 1998,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6904 1999,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6754 -2000,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10993 -2001,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11143 -2002,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11336 -2003,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11530 -2004,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11664 -2005,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11839 -2006,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12057 -2007,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12198 -2008,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12439 -2009,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12573 -2010,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12858 -2011,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12864 -2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12886 -2013,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12948 -2014,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13045 -2015,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13130 -2016,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13164 -2017,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13215 -2018,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13280 -2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13363 -2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13473 -2000,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15059 -2001,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15663 -2002,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16605 -2003,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17609 -2004,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18923 -2005,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20177 -2006,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21333 -2007,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22373 -2008,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23384 -2009,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24794 -2010,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25554 -2011,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26288 -2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27917 -2013,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28893 -2014,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29770 -2015,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30807 -2016,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31901 -2017,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32812 -2018,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33361 -2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33917 -2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34242 -2010,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31384 -2011,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32457 -2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34469 -2013,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35727 -2014,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36925 -2015,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38253 -2016,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39661 -2017,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40915 -2018,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41806 -2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42723 -2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43364 +2000,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 +2003,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 +2004,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 +2006,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 +2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 +2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 +2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,923 +2022,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 +2023,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 +2000,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2003,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 +2004,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 +2006,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 +2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 +2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 +2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,826 +2022,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2023,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 +2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 +2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1140 +2022,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2023,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 1981,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5196 1982,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5750 1983,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6267 @@ -975,102 +585,48 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,515411 1998,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,519862 1999,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,523702 -2000,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,535274 -2001,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,538069 -2002,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,540038 -2003,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,543496 -2004,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,546710 -2005,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,551811 -2006,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,560325 -2007,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,565599 -2008,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,571562 -2009,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,577049 -2010,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,581129 -2011,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,583513 -2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,587849 -2013,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,592531 -2014,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,595344 -2015,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,598582 -2016,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,600222 -2017,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,600907 -2018,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,601843 -2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,603170 -2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,604255 -2010,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,593966 -2011,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,597170 -2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,602407 -2013,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,607703 -2014,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,611197 -2015,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,615117 -2016,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,617538 -2017,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,618952 -2018,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,620729 -2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,622765 -2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,624468 -2010,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2004 -2011,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2074 -2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2163 -2013,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2219 -2014,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2264 -2015,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2325 -2016,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2366 -2017,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2416 -2018,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2495 -2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2549 -2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2628 -2000,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,529 -2001,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,578 -2002,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,609 -2003,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,679 -2004,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,709 -2005,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,744 -2006,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,837 -2007,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,868 -2008,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,958 -2009,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,956 -2010,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1045 -2011,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1068 -2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1117 -2013,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1142 -2014,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1146 -2015,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1162 -2016,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1166 -2017,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1186 -2018,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1206 -2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1225 -2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1257 -2000,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16871 -2001,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17812 -2002,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18768 -2003,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19770 -2004,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20878 -2005,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22011 -2006,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23240 -2007,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24496 -2008,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25874 -2009,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27266 -2010,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28514 -2011,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29778 -2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31204 -2013,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32206 -2014,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33248 -2015,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34338 -2016,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35490 -2017,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36618 -2018,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37879 -2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39020 -2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40035 -2010,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1595953 -2011,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1597683 -2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1599833 -2013,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1600622 -2014,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1601004 -2015,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1599786 -2016,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1598945 -2017,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1598239 -2018,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1598461 -2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1600524 -2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1601496 +2000,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1000 +2003,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2061 +2004,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4563 +2006,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4549 +2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4116 +2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6747 +2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,835 +2022,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 +2023,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4132 +2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6821 +2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1213 +2022,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 +2023,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 +2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 +2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 +2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 +2022,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2000,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2003,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2004,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2006,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 +2022,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2000,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 +2003,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 +2004,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 +2006,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 +2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 +2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 +2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1264 +2022,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 +2023,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2012,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3054 +2019,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7682 +2020,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72059 +2022,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,706 +2023,country/USA,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1040 1981,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1397955 1982,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1399253 1983,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1403321 @@ -1090,59 +646,23 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1516873 1998,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1526328 1999,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1530502 -2000,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1526743 -2001,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1526185 -2002,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1524987 -2003,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1527793 -2004,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1530095 -2005,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1536529 -2006,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1548231 -2007,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1555756 -2008,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1562282 -2009,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1568357 -2010,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1570181 -2011,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1570736 -2012,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1571565 -2013,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1571422 -2014,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1570836 -2015,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1568611 -2016,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1566694 -2017,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1564934 -2018,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1563990 -2019,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1564976 -2020,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1565033 -2000,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,33147 -2001,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,37034 -2002,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,40803 -2003,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,44927 -2004,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,49391 -2005,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,54551 -2006,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,60364 -2007,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,66377 -2008,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,72259 -2009,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,77734 -2010,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,82362 -2011,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,85057 -2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,86231 -2013,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,88095 -2014,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,89737 -2015,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,91945 -2016,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,95092 -2017,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,97893 -2018,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,101395 -2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,104628 -2020,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,107886 -2010,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4234 -2011,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4216 -2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4260 -2013,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4306 -2014,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4277 -2015,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4351 -2016,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4485 -2017,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4580 -2018,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4746 -2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4933 -2020,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5167 +2000,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7789 +2003,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15215 +2004,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6496 +2006,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3249 +2012,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3019 +2019,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7572 +2020,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70822 +2022,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,699 +2023,country/USA,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1035 +2000,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,75 +2003,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,160 +2004,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,100 +2006,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,74 +2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,71 +2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,321 +2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 +2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 1981,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,78 1982,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,83 1983,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,93 @@ -1162,59 +682,20 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,242 1998,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,265 1999,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,288 -2000,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,549 -2001,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,766 -2002,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,982 -2003,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1194 -2004,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1405 -2005,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1615 -2006,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1849 -2007,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2070 -2008,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2314 -2009,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2633 -2010,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2825 -2011,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2808 -2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2828 -2013,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2812 -2014,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2780 -2015,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2813 -2016,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2905 -2017,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2945 -2018,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3034 -2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3191 -2020,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3340 -2000,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,250 -2001,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,297 -2002,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,329 -2003,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,373 -2004,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,430 -2005,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,450 -2006,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,492 -2007,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,561 -2008,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,610 -2009,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,644 -2010,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,706 -2011,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,701 -2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,655 -2013,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,653 -2014,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,679 -2015,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,751 -2016,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,790 -2017,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,836 -2018,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,908 -2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,921 -2020,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,987 -2010,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1314 -2011,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1323 -2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1279 -2013,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1322 -2014,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1360 -2015,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1444 -2016,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1510 -2017,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1607 -2018,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1699 -2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1759 -2020,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1872 +2000,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2003,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 +2004,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 +2006,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 +2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 +2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 +2000,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2003,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2004,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2006,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 +2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 1981,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,211 1982,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,225 1983,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,245 @@ -1253,91 +734,28 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1997 1998,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2075 1999,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2166 -2000,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3824 -2001,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3987 -2002,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4095 -2003,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4269 -2004,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4425 -2005,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4685 -2006,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4914 -2007,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5142 -2008,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5521 -2009,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5836 -2010,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6085 -2011,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6177 -2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6365 -2013,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6523 -2014,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6653 -2015,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6873 -2016,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7062 -2017,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7218 -2018,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7414 -2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7612 -2020,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7919 -2010,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7435 -2011,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7556 -2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7784 -2013,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8012 -2014,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8154 -2015,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8431 -2016,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8726 -2017,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8969 -2018,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9243 -2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9525 -2020,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9929 -2010,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1588 -2011,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1547 -2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1481 -2013,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1458 -2014,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1464 -2015,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1468 -2016,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1507 -2017,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1517 -2018,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1551 -2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1609 -2020,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1704 -2000,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 -2001,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2002,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,393 -2003,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,498 -2004,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,600 -2005,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,713 -2006,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,814 -2007,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,928 -2008,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1057 -2009,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1177 -2010,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1256 -2011,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1217 -2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1144 -2013,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1102 -2014,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1112 -2015,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1110 -2016,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1127 -2017,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1127 -2018,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1147 -2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1181 -2020,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1264 -2000,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,695 -2001,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,873 -2002,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1032 -2003,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1271 -2004,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1439 -2005,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1674 -2006,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1894 -2007,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2129 -2008,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2358 -2009,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2583 -2010,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2792 -2011,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2823 -2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2882 -2013,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3011 -2014,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3036 -2015,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3148 -2016,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3291 -2017,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3439 -2018,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3596 -2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3727 -2020,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3906 +2000,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 +2003,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 +2004,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 +2006,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 +2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 +2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 +2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 +2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 +2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 +2000,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2003,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 +2004,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2006,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 +2000,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2003,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2004,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2006,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 +2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 1981,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,9822 1982,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,9731 1983,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,9671 @@ -1357,70 +775,22 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,16000 1998,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,17327 1999,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,18580 -2000,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,27641 -2001,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,30813 -2002,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,33972 -2003,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,37322 -2004,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,41092 -2005,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,45414 -2006,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,50401 -2007,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,55547 -2008,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,60399 -2009,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,64861 -2010,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,68698 -2011,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,71331 -2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,72357 -2013,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,73994 -2014,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,75477 -2015,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,77250 -2016,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,79917 -2017,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,82328 -2018,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,85296 -2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,87996 -2020,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,90470 -2010,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71034 -2011,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73704 -2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74770 -2013,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76512 -2014,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78032 -2015,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79902 -2016,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82686 -2017,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85227 -2018,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88339 -2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91144 -2020,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93772 -2000,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2269688 -2001,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2272462 -2002,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2273567 -2003,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2279142 -2004,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2288466 -2005,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2301872 -2006,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2325116 -2007,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2340898 -2008,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2357998 -2009,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2370425 -2010,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2380139 -2011,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2386067 -2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2394205 -2013,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2400356 -2014,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2405988 -2015,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2410052 -2016,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2414521 -2017,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2419593 -2018,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2424788 -2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2431505 -2020,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,2436680 -2010,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27193 -2011,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27427 -2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27767 -2013,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28049 -2014,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28331 -2015,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28572 -2016,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28749 -2017,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28955 -2018,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29143 -2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29514 -2020,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29902 +2000,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 +2003,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 +2004,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 +2006,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 +2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 +2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,249 +2012,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 +2019,geoId/01,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,259 +2000,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9511 +2003,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18958 +2004,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12266 +2006,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8436 +2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8011 +2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16321 +2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 +2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 1981,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4118 1982,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4459 1983,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4819 @@ -1440,59 +810,20 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7540 1998,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7328 1999,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7213 -2000,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10963 -2001,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11140 -2002,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11313 -2003,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11572 -2004,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11784 -2005,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11960 -2006,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12246 -2007,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12588 -2008,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12775 -2009,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12996 -2010,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13262 -2011,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13283 -2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13339 -2013,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13410 -2014,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13508 -2015,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13564 -2016,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13573 -2017,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13608 -2018,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13633 -2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13804 -2020,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14018 -2000,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16919 -2001,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17627 -2002,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18461 -2003,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19476 -2004,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20810 -2005,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22185 -2006,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23557 -2007,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24771 -2008,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25987 -2009,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27450 -2010,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28549 -2011,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29748 -2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31616 -2013,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32948 -2014,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34071 -2015,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35210 -2016,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36541 -2017,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37530 -2018,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38092 -2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38830 -2020,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39296 -2010,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34697 -2011,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36205 -2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38398 -2013,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40055 -2014,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41494 -2015,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42942 -2016,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44581 -2017,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45926 -2018,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46785 -2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47869 -2020,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48681 +2000,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 +2003,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 +2004,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 +2006,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 +2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 +2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 +2000,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 +2003,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 +2004,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 +2006,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 +2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 +2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 +2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 +2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 1981,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6767 1982,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7314 1983,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7793 @@ -1531,102 +862,30 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,600912 1998,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,606437 1999,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,610449 -2000,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,618835 -2001,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,621680 -2002,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,623616 -2003,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,626494 -2004,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,630827 -2005,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,635793 -2006,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,645025 -2007,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,651326 -2008,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,658530 -2009,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,662967 -2010,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,667209 -2011,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,670694 -2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,674908 -2013,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,678946 -2014,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,682453 -2015,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,685856 -2016,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,688531 -2017,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,691970 -2018,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,695002 -2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,697168 -2020,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,699499 -2010,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,681319 -2011,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,685589 -2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,690581 -2013,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,695362 -2014,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,699577 -2015,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,703692 -2016,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,707075 -2017,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,711268 -2018,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,715018 -2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,717980 -2020,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,721039 -2010,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2130 -2011,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2173 -2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2289 -2013,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2397 -2014,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2472 -2015,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2584 -2016,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2651 -2017,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2742 -2018,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2804 -2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2811 -2020,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2886 -2000,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,554 -2001,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,583 -2002,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,624 -2003,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,647 -2004,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,715 -2005,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,725 -2006,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,781 -2007,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,791 -2008,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,844 -2009,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,898 -2010,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,979 -2011,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,981 -2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1055 -2013,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1115 -2014,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1153 -2015,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1213 -2016,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1237 -2017,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1282 -2018,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1296 -2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1270 -2020,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1286 -2000,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18132 -2001,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19178 -2002,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20089 -2003,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21050 -2004,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22160 -2005,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23341 -2006,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24681 -2007,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26019 -2008,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27601 -2009,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29105 -2010,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30300 -2011,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31519 -2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32758 -2013,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33948 -2014,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35045 -2015,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36152 -2016,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37250 -2017,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38401 -2018,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39495 -2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40723 -2020,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41837 -2010,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1666852 -2011,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1667995 -2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1669812 -2013,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1670379 -2014,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1671161 -2015,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1670485 -2016,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1670837 -2017,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1671312 -2018,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1672801 -2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1676376 -2020,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1678428 +2000,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1198 +2003,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2449 +2004,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5106 +2006,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5130 +2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4837 +2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8163 +2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4853 +2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8229 +2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 +2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 +2000,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2003,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2004,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2006,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 +2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 +2000,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 +2003,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 +2004,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 +2006,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 +2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 +2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 +2012,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3121 +2019,geoId/01,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8067 1981,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1478171 1982,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1481498 1983,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1484452 @@ -1646,59 +905,20 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1606265 1998,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1614687 1999,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1618647 -2000,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1604285 -2001,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1602254 -2002,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1599464 -2003,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1599903 -2004,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1602170 -2005,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1607868 -2006,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1618826 -2007,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1625403 -2008,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1632261 -2009,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1637009 -2010,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1639840 -2011,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1639842 -2012,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1640529 -2013,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1639989 -2014,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1639758 -2015,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1638057 -2016,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1637389 -2017,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1636802 -2018,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1637270 -2019,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1639710 -2020,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1640744 -2000,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,43869 -2001,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,48688 -2002,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,53376 -2003,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,58545 -2004,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,63893 -2005,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,70271 -2006,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,77478 -2007,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,84275 -2008,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,91450 -2009,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,98784 -2010,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,103732 -2011,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,104271 -2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,103658 -2013,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,103993 -2014,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,104623 -2015,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,106176 -2016,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,108574 -2017,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,110831 -2018,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,113886 -2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,116161 -2020,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,118671 -2010,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5647 -2011,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5507 -2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5453 -2013,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5367 -2014,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5317 -2015,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5325 -2016,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5482 -2017,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5581 -2018,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5733 -2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5832 -2020,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6025 +2000,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8236 +2003,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16221 +2004,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6875 +2006,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3234 +2012,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3089 +2019,geoId/01,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7954 +2000,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,77 +2003,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,189 +2004,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,91 +2006,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,66 +2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,85 +2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,339 +2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 +2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 1981,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,86 1982,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,93 1983,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,101 @@ -1718,59 +938,20 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,300 1998,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,326 1999,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,344 -2000,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,757 -2001,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1035 -2002,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1335 -2003,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1624 -2004,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1902 -2005,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2192 -2006,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2514 -2007,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2810 -2008,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3194 -2009,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3623 -2010,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3921 -2011,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3773 -2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3727 -2013,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3606 -2014,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3591 -2015,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3613 -2016,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3719 -2017,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3776 -2018,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3891 -2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3945 -2020,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4066 -2000,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,316 -2001,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,384 -2002,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,415 -2003,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,471 -2004,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,549 -2005,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,594 -2006,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,648 -2007,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,749 -2008,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,702 -2009,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,859 -2010,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,929 -2011,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,904 -2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,805 -2013,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,811 -2014,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,809 -2015,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,868 -2016,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,900 -2017,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,976 -2018,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1049 -2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1040 -2020,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1026 -2010,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1569 -2011,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1563 -2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1471 -2013,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1491 -2014,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1483 -2015,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1579 -2016,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1626 -2017,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1712 -2018,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1837 -2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1845 -2020,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1881 +2000,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2003,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 +2004,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 +2006,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 +2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 +2000,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2003,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 +2004,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2006,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 +2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 1981,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,164 1982,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,177 1983,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,195 @@ -1809,91 +990,28 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2208 1998,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2313 1999,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2409 -2000,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3521 -2001,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3667 -2002,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3923 -2003,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4139 -2004,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4413 -2005,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4773 -2006,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5217 -2007,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5553 -2008,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6000 -2009,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6455 -2010,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6859 -2011,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6948 -2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7167 -2013,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7316 -2014,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7414 -2015,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7603 -2016,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7671 -2017,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7756 -2018,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7834 -2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7906 -2020,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8078 -2010,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8351 -2011,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8475 -2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8714 -2013,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8935 -2014,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9042 -2015,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9261 -2016,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9398 -2017,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9535 -2018,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9726 -2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9861 -2020,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10123 -2010,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2230 -2011,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2107 -2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2023 -2013,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1930 -2014,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1895 -2015,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1867 -2016,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1878 -2017,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1909 -2018,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1932 -2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1948 -2020,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2020 -2000,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,337 -2001,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,504 -2002,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,646 -2003,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,801 -2004,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,959 -2005,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1108 -2006,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1278 -2007,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1409 -2008,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1584 -2009,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1765 -2010,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1886 -2011,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1767 -2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1669 -2013,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1564 -2014,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1535 -2015,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1499 -2016,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1497 -2017,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1516 -2018,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1519 -2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1532 -2020,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1586 -2000,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,732 -2001,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,963 -2002,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1201 -2003,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1449 -2004,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1655 -2005,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1972 -2006,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2223 -2007,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2455 -2008,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2771 -2009,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3065 -2010,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3255 -2011,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3318 -2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3336 -2013,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3437 -2014,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3412 -2015,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3442 -2016,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3586 -2017,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3658 -2018,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3824 -2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3935 -2020,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4109 +2000,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2003,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 +2004,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 +2006,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 +2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 +2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 +2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 +2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 +2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 +2000,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2003,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 +2004,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2006,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 +2000,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2003,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2004,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2006,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 +2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 +2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 1981,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,9900 1982,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,9877 1983,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,9890 @@ -1913,70 +1031,22 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,17515 1998,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,19110 1999,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,20373 -2000,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,38206 -2001,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,42135 -2002,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,45856 -2003,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,50061 -2004,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,54415 -2005,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,59632 -2006,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,65598 -2007,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,71299 -2008,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,77199 -2009,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,83017 -2010,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,86882 -2011,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,87561 -2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,86954 -2013,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,87259 -2014,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,87862 -2015,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,89151 -2016,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,91201 -2017,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,93149 -2018,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,95769 -2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,97803 -2020,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,99806 -2010,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89644 -2011,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90394 -2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89801 -2013,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90190 -2014,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90777 -2015,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92083 -2016,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94264 -2017,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96276 -2018,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99028 -2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101174 -2020,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103317 -2000,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2105469 -2001,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2109450 -2002,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2112343 -2003,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2120877 -2004,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2128979 -2005,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2143111 -2006,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2166023 -2007,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2181290 -2008,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2196499 -2009,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2210995 -2010,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2219281 -2011,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2224247 -2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2232538 -2013,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2239142 -2014,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2243389 -2015,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2246630 -2016,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2248637 -2017,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2249672 -2018,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2251559 -2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2255671 -2020,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,2258295 -2010,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25953 -2011,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26205 -2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26509 -2013,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26754 -2014,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27002 -2015,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27307 -2016,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27512 -2017,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27726 -2018,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28013 -2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28272 -2020,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28548 +2000,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 +2003,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 +2004,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 +2006,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 +2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 +2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,257 +2012,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 +2019,geoId/01,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,263 +2000,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8849 +2003,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17553 +2004,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11312 +2006,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7851 +2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7199 +2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14515 +2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 +2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 1981,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4190 1982,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4526 1983,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4905 @@ -1996,59 +1066,20 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7156 1998,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6904 1999,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6754 -2000,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10993 -2001,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11143 -2002,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11336 -2003,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11530 -2004,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11664 -2005,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11839 -2006,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12057 -2007,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12198 -2008,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12439 -2009,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12573 -2010,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12858 -2011,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12864 -2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12886 -2013,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12948 -2014,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13045 -2015,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13130 -2016,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13164 -2017,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13215 -2018,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13280 -2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13363 -2020,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13473 -2000,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15059 -2001,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15663 -2002,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16605 -2003,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17609 -2004,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18923 -2005,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20177 -2006,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21333 -2007,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22373 -2008,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23384 -2009,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24794 -2010,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25554 -2011,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26288 -2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27917 -2013,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28893 -2014,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29770 -2015,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30807 -2016,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31901 -2017,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32812 -2018,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33361 -2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33917 -2020,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34242 -2010,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31384 -2011,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32457 -2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34469 -2013,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35727 -2014,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36925 -2015,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38253 -2016,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39661 -2017,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40915 -2018,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41806 -2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42723 -2020,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43364 +2000,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 +2003,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 +2004,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 +2006,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 +2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 +2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 +2000,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 +2003,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 +2004,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 +2006,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 +2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 +2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 +2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 +2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 1981,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5196 1982,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5750 1983,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6267 @@ -2087,102 +1118,30 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,515411 1998,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,519862 1999,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,523702 -2000,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,535274 -2001,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,538069 -2002,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,540038 -2003,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,543496 -2004,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,546710 -2005,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,551811 -2006,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,560325 -2007,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,565599 -2008,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,571562 -2009,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,577049 -2010,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,581129 -2011,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,583513 -2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,587849 -2013,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,592531 -2014,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,595344 -2015,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,598582 -2016,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,600222 -2017,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,600907 -2018,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,601843 -2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,603170 -2020,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,604255 -2010,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,593966 -2011,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,597170 -2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,602407 -2013,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,607703 -2014,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,611197 -2015,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,615117 -2016,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,617538 -2017,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,618952 -2018,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,620729 -2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,622765 -2020,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,624468 -2010,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2004 -2011,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2074 -2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2163 -2013,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2219 -2014,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2264 -2015,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2325 -2016,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2366 -2017,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2416 -2018,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2495 -2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2549 -2020,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2628 -2000,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,529 -2001,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,578 -2002,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,609 -2003,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,679 -2004,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,709 -2005,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,744 -2006,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,837 -2007,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,868 -2008,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,958 -2009,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,956 -2010,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1045 -2011,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1068 -2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1117 -2013,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1142 -2014,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1146 -2015,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1162 -2016,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1166 -2017,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1186 -2018,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1206 -2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1225 -2020,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1257 -2000,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16871 -2001,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17812 -2002,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18768 -2003,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19770 -2004,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20878 -2005,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22011 -2006,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23240 -2007,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24496 -2008,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25874 -2009,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27266 -2010,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28514 -2011,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29778 -2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31204 -2013,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32206 -2014,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33248 -2015,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34338 -2016,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35490 -2017,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36618 -2018,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37879 -2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39020 -2020,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40035 -2010,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1595953 -2011,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1597683 -2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1599833 -2013,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1600622 -2014,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1601004 -2015,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1599786 -2016,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1598945 -2017,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1598239 -2018,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1598461 -2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1600524 -2020,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1601496 +2000,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1000 +2003,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2061 +2004,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4563 +2006,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4549 +2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4116 +2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6747 +2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4132 +2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6821 +2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 +2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 +2000,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2003,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2004,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 +2006,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 +2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 +2000,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 +2003,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 +2004,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 +2006,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 +2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 +2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 +2012,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3054 +2019,geoId/01,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7682 1981,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1397955 1982,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1399253 1983,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1403321 @@ -2202,54160 +1161,6009 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1516873 1998,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1526328 1999,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1530502 -2000,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1526743 -2001,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1526185 -2002,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1524987 -2003,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1527793 -2004,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1530095 -2005,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1536529 -2006,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1548231 -2007,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1555756 -2008,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1562282 -2009,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1568357 -2010,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1570181 -2011,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1570736 -2012,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1571565 -2013,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1571422 -2014,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1570836 -2015,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1568611 -2016,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1566694 -2017,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1564934 -2018,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1563990 -2019,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1564976 -2020,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1565033 -2000,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,279 -2001,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,316 -2002,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,345 -2003,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,367 -2004,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,413 -2005,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,474 -2006,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,483 -2007,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,547 -2008,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,567 -2009,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,595 -2010,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,619 -2011,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,637 -2012,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,614 -2013,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,659 -2014,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,689 -2015,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,696 -2016,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,690 -2017,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,718 -2018,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,738 -2019,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,769 -2020,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,805 -2010,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2012,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2017,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2000,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2003,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2004,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2005,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2008,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2009,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2010,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2014,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2016,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2017,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2018,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2019,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2020,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2010,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2011,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2012,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2013,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2014,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2015,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2016,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2017,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2018,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2019,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2020,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2010,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2008,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2015,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2000,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,241 -2001,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,276 -2002,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,303 -2003,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,319 -2004,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,361 -2005,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,411 -2006,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,414 -2007,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,466 -2008,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,474 -2009,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,502 -2010,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,533 -2011,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,551 -2012,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,536 -2013,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,558 -2014,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,573 -2015,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,571 -2016,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,572 -2017,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,598 -2018,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,629 -2019,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,639 -2020,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,668 -2010,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,553 -2011,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,569 -2012,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,555 -2013,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,582 -2014,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,602 -2015,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,603 -2016,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,604 -2017,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,624 -2018,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,658 -2019,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,666 -2020,geoId/01001,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,694 -2000,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,22357 -2001,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,22760 -2002,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23202 -2003,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23673 -2004,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24441 -2005,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25002 -2006,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25857 -2007,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26390 -2008,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26837 -2009,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27176 -2010,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27475 -2011,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27612 -2012,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27526 -2013,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27500 -2014,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27429 -2015,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27455 -2016,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27613 -2017,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27689 -2018,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27746 -2019,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27922 -2020,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,28114 -2010,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,267 -2011,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,261 -2012,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,281 -2013,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,272 -2014,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,269 -2015,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,250 -2016,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,263 -2017,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,252 -2018,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,256 -2019,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,269 -2020,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,250 -2000,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2001,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2002,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2003,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2004,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2005,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2006,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2007,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2008,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2009,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2010,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2011,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2012,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2013,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2014,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2015,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2016,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2017,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2018,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2019,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2020,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2000,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,140 -2001,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,154 -2002,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,172 -2003,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2004,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,198 -2005,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,205 -2006,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,210 -2007,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,248 -2008,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,256 -2009,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,273 -2010,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,292 -2011,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,304 -2012,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,341 -2013,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,330 -2014,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,335 -2015,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,328 -2016,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,360 -2017,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,390 -2018,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,378 -2019,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,372 -2020,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,366 -2010,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,395 -2011,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,400 -2012,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,428 -2013,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,427 -2014,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,441 -2015,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,429 -2016,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,477 -2017,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,512 -2018,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,499 -2019,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,496 -2020,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,499 -2000,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4041 -2001,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4119 -2002,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4175 -2003,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4256 -2004,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4455 -2005,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4499 -2006,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4733 -2007,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4854 -2008,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5017 -2009,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5094 -2010,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5122 -2011,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5127 -2012,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5192 -2013,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5243 -2014,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5245 -2015,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5421 -2016,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5511 -2017,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5598 -2018,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5685 -2019,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5920 -2020,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6073 -2010,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5326 -2011,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5315 -2012,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5380 -2013,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5448 -2014,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5455 -2015,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5641 -2016,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5740 -2017,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5825 -2018,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5929 -2019,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6175 -2020,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6348 -2010,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2012,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2018,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2020,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2000,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2000,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2001,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,195 -2002,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,221 -2003,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,233 -2004,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,258 -2005,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,283 -2006,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,312 -2007,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,329 -2008,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,357 -2009,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,379 -2010,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,412 -2011,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,390 -2012,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,389 -2013,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,409 -2014,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,403 -2015,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,414 -2016,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,438 -2017,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,434 -2018,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,448 -2019,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,465 -2020,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,496 -2010,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21897 -2011,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22014 -2012,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21814 -2013,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21746 -2014,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21661 -2015,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21524 -2016,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21565 -2017,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21519 -2018,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21492 -2019,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21438 -2020,geoId/01001,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21491 -2000,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17895 -2001,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18175 -2002,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18521 -2003,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18888 -2004,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,19416 -2005,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,19903 -2006,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20490 -2007,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20847 -2008,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21084 -2009,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21310 -2010,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21524 -2011,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21655 -2012,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21458 -2013,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21371 -2014,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21301 -2015,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21153 -2016,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21163 -2017,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21122 -2018,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21079 -2019,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21009 -2020,geoId/01001,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21029 -2000,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,333 -2001,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,364 -2002,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,395 -2003,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,425 -2004,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,456 -2005,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,513 -2006,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,560 -2007,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,616 -2008,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,608 -2009,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,672 -2010,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,690 -2011,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,697 -2012,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,694 -2013,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,695 -2014,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,728 -2015,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,762 -2016,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,779 -2017,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,822 -2018,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,866 -2019,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,884 -2020,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,936 -2010,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2014,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2019,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2000,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2004,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2001,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2002,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2003,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2004,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2005,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2006,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2007,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2008,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2009,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2010,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2014,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2015,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2016,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2018,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2019,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2010,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2011,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2012,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2014,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2016,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2017,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2018,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2019,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2020,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2010,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2008,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2000,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,291 -2001,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,324 -2002,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,351 -2003,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,373 -2004,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,403 -2005,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,434 -2006,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,470 -2007,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,525 -2008,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,509 -2009,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,565 -2010,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,593 -2011,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,602 -2012,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,590 -2013,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,570 -2014,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,600 -2015,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,627 -2016,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,625 -2017,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,661 -2018,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,725 -2019,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,735 -2020,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,768 -2010,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,613 -2011,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,627 -2012,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,622 -2013,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,607 -2014,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,628 -2015,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,657 -2016,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,661 -2017,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,694 -2018,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,763 -2019,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,769 -2020,geoId/01001,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,804 -2000,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,21052 -2001,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,21449 -2002,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,21967 -2003,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,22335 -2004,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23056 -2005,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23687 -2006,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,24428 -2007,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,24852 -2008,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25265 -2009,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25692 -2010,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25977 -2011,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,26283 -2012,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,26136 -2013,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25893 -2014,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,26076 -2015,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25990 -2016,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,26220 -2017,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,26219 -2018,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,26183 -2019,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,26194 -2020,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,26290 -2010,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,241 -2011,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,235 -2012,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,246 -2013,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,237 -2014,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,253 -2015,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,236 -2016,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,236 -2017,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,227 -2018,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,246 -2019,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,236 -2020,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,251 -2000,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2001,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2002,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2003,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2004,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2005,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2006,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2007,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2008,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2009,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2010,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2011,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2012,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2013,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2014,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2015,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2016,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2017,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2018,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2019,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2020,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2000,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2001,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2002,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2003,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2004,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2005,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,147 -2006,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,157 -2007,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,147 -2008,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 -2009,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2010,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,197 -2011,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,204 -2012,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,207 -2013,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2014,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2015,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,263 -2016,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,289 -2017,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,291 -2018,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,279 -2019,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,279 -2020,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,272 -2010,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,285 -2011,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,296 -2012,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,298 -2013,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,333 -2014,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,358 -2015,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,382 -2016,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,418 -2017,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,445 -2018,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,414 -2019,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,422 -2020,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,427 -2000,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3462 -2001,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3507 -2002,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3673 -2003,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3776 -2004,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3882 -2005,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4065 -2006,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4236 -2007,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4361 -2008,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4392 -2009,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4516 -2010,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4550 -2011,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4689 -2012,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4695 -2013,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4647 -2014,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4747 -2015,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4838 -2016,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4972 -2017,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5078 -2018,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5081 -2019,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5189 -2020,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5335 -2010,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4716 -2011,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4870 -2012,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4867 -2013,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4855 -2014,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4968 -2015,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5049 -2016,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5200 -2017,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5344 -2018,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5343 -2019,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5450 -2020,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5583 -2010,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2017,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2000,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2001,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2002,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,197 -2003,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,214 -2004,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,236 -2005,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,254 -2006,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,270 -2007,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,292 -2008,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,303 -2009,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,324 -2010,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,350 -2011,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,371 -2012,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,362 -2013,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,423 -2014,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,455 -2015,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,429 -2016,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,463 -2017,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,510 -2018,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,488 -2019,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,495 -2020,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,504 -2010,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21082 -2011,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21240 -2012,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21081 -2013,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20861 -2014,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20940 -2015,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20736 -2016,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20808 -2017,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20697 -2018,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20654 -2019,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20564 -2020,geoId/01001,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20527 -2000,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17267 -2001,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17567 -2002,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17894 -2003,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18136 -2004,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18713 -2005,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,19114 -2006,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,19657 -2007,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,19946 -2008,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20292 -2009,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20557 -2010,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20762 -2011,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20893 -2012,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20744 -2013,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20467 -2014,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20506 -2015,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20340 -2016,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20377 -2017,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20225 -2018,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20208 -2019,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20107 -2020,geoId/01001,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20050 -2000,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1132 -2001,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1327 -2002,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1466 -2003,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1652 -2004,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1855 -2005,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2130 -2006,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2478 -2007,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2831 -2008,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3163 -2009,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3402 -2010,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3612 -2011,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3766 -2012,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3894 -2013,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4002 -2014,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4065 -2015,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4200 -2016,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4363 -2017,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4527 -2018,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4758 -2019,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4955 -2020,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5117 -2010,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2011,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2012,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2013,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,170 -2014,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2015,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2016,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,174 -2017,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,180 -2018,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,185 -2019,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,201 -2020,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,214 -2000,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2001,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2002,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2003,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2004,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2005,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2006,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2007,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2008,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2009,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2010,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2011,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2012,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2013,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2014,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2015,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2016,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2017,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2018,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2019,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2020,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2000,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2011,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2013,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2014,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2017,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2019,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2020,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2000,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2001,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2002,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2003,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2004,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2005,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2006,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2007,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2008,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2009,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2010,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2011,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2012,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2013,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2014,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2015,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,151 -2016,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,177 -2017,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,195 -2018,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,199 -2019,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,208 -2020,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,215 -2010,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2011,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,172 -2012,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,187 -2013,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,174 -2014,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,216 -2015,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,212 -2016,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,253 -2017,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,276 -2018,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,275 -2019,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,285 -2020,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,307 -2010,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2011,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2012,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2000,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2002,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2003,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2004,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2005,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2006,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2007,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2008,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2009,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2010,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2011,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2012,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2013,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,134 -2014,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,147 -2015,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,142 -2016,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,160 -2017,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,172 -2018,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,185 -2019,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,194 -2020,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,202 -2000,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,997 -2001,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1163 -2002,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1281 -2003,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1466 -2004,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1640 -2005,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1893 -2006,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2228 -2007,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2555 -2008,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2848 -2009,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3064 -2010,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3261 -2011,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3407 -2012,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3524 -2013,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3631 -2014,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3669 -2015,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3804 -2016,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3925 -2017,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4059 -2018,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4270 -2019,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4440 -2020,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4566 -2010,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3362 -2011,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3519 -2012,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3630 -2013,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3747 -2014,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3794 -2015,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3926 -2016,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4059 -2017,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4209 -2018,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4425 -2019,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4601 -2020,geoId/01003,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4742 -2000,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,70908 -2001,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,72637 -2002,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,74092 -2003,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,75655 -2004,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,77864 -2005,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,80637 -2006,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,83451 -2007,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,85400 -2008,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,86867 -2009,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,88303 -2010,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,89886 -2011,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,91614 -2012,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,93581 -2013,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,95836 -2014,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,98025 -2015,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,99924 -2016,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,102355 -2017,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,104886 -2018,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,107531 -2019,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,110214 -2020,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,113170 -2010,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1190 -2011,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1223 -2012,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1300 -2013,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1347 -2014,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1392 -2015,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1387 -2016,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1453 -2017,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1464 -2018,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1514 -2019,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1606 -2020,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1636 -2000,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,372 -2001,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,398 -2002,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,407 -2003,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,428 -2004,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,454 -2005,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,475 -2006,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,517 -2007,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,522 -2008,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,558 -2009,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,584 -2010,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,594 -2011,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,609 -2012,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,626 -2013,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,647 -2014,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,664 -2015,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,657 -2016,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,679 -2017,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,684 -2018,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,702 -2019,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,745 -2020,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,763 -2000,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,335 -2001,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,360 -2002,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,402 -2003,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,439 -2004,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,515 -2005,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,568 -2006,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,611 -2007,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,679 -2008,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,725 -2009,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,785 -2010,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,820 -2011,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,838 -2012,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,943 -2013,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1068 -2014,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1140 -2015,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1224 -2016,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1286 -2017,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1367 -2018,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1402 -2019,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1444 -2020,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1492 -2010,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1044 -2011,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1084 -2012,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1210 -2013,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1374 -2014,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1478 -2015,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1566 -2016,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1657 -2017,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1753 -2018,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1821 -2019,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1897 -2020,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1973 -2000,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7403 -2001,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7563 -2002,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7661 -2003,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7757 -2004,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7920 -2005,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8103 -2006,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8282 -2007,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8396 -2008,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8482 -2009,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8600 -2010,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8782 -2011,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8899 -2012,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9119 -2013,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9238 -2014,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9453 -2015,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9514 -2016,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9671 -2017,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9772 -2018,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9884 -2019,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9915 -2020,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10037 -2010,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9221 -2011,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9367 -2012,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9652 -2013,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9815 -2014,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10080 -2015,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10183 -2016,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10397 -2017,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10533 -2018,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10674 -2019,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10796 -2020,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10973 -2010,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2011,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2012,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2013,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2014,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2015,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2016,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2017,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2018,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,144 -2019,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,144 -2020,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2000,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2002,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2004,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2006,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2007,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2008,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2009,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2010,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2011,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2012,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2013,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2015,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2016,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2017,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2018,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2019,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2000,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,589 -2001,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,608 -2002,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,661 -2003,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,693 -2004,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,740 -2005,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,804 -2006,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,893 -2007,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,958 -2008,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1057 -2009,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1110 -2010,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1148 -2011,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1231 -2012,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1354 -2013,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1453 -2014,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1532 -2015,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1609 -2016,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1699 -2017,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1777 -2018,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1853 -2019,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2021 -2020,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2103 -2010,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79575 -2011,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81139 -2012,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82770 -2013,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84751 -2014,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86616 -2015,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88373 -2016,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90571 -2017,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92901 -2018,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95390 -2019,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97939 -2020,geoId/01003,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100693 -2000,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,62187 -2001,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,63687 -2002,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,64937 -2003,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,66311 -2004,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,68210 -2005,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,70652 -2006,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,73114 -2007,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,74818 -2008,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,76011 -2009,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,77183 -2010,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,78498 -2011,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,79990 -2012,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,81495 -2013,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,83385 -2014,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,85191 -2015,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,86870 -2016,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,88970 -2017,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,91226 -2018,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,93628 -2019,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,96021 -2020,geoId/01003,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,98710 -2000,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1363 -2001,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1576 -2002,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1782 -2003,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1997 -2004,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2255 -2005,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2605 -2006,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2990 -2007,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3293 -2008,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3690 -2009,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4114 -2010,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4448 -2011,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4452 -2012,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4425 -2013,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4487 -2014,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4534 -2015,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4638 -2016,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4824 -2017,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5038 -2018,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5231 -2019,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5413 -2020,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5508 -2010,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2011,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,198 -2012,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2013,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,208 -2014,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,225 -2015,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,215 -2016,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,238 -2017,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,250 -2018,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,266 -2019,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,275 -2020,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,276 -2000,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2001,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2002,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2003,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2004,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2005,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2006,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2007,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2008,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2009,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2010,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2011,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2012,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2013,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2014,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2015,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2016,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2017,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2018,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,145 -2019,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2020,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2000,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2016,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2017,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2018,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2019,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2020,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2000,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2001,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2002,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2003,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2004,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2005,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2006,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2007,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2008,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2009,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2010,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2011,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2012,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2013,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2014,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2015,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2016,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2017,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,174 -2018,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2019,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2020,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2010,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2011,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,186 -2012,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,206 -2013,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,202 -2014,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,222 -2015,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,252 -2016,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,258 -2017,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,266 -2018,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,278 -2019,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,280 -2020,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,279 -2010,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2011,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2012,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2015,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2018,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2019,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2020,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2000,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2005,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2000,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2002,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2003,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2004,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2005,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2006,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2007,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2008,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2009,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2010,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,144 -2011,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,167 -2012,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2013,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,174 -2014,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,177 -2015,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2016,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,205 -2017,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,197 -2018,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,213 -2019,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,225 -2020,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,230 -2000,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1245 -2001,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1443 -2002,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1600 -2003,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1806 -2004,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2025 -2005,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2358 -2006,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2708 -2007,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2979 -2008,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3345 -2009,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3725 -2010,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4040 -2011,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4029 -2012,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3993 -2013,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4049 -2014,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4070 -2015,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4141 -2016,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4289 -2017,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4491 -2018,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4650 -2019,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4807 -2020,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4897 -2010,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4168 -2011,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4181 -2012,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4148 -2013,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4205 -2014,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4223 -2015,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4309 -2016,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4477 -2017,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4662 -2018,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4835 -2019,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4999 -2020,geoId/01003,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5097 -2000,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,67939 -2001,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,69335 -2002,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,70617 -2003,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,72205 -2004,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,74292 -2005,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,76811 -2006,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,79202 -2007,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,80880 -2008,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,82107 -2009,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,83587 -2010,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,85175 -2011,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,86747 -2012,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,88303 -2013,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,90653 -2014,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,92682 -2015,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,94339 -2016,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,96245 -2017,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,98286 -2018,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,100551 -2019,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,102983 -2020,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,105492 -2010,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1120 -2011,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1160 -2012,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1212 -2013,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1238 -2014,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1296 -2015,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1361 -2016,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1417 -2017,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1454 -2018,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1465 -2019,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1535 -2020,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1598 -2000,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,389 -2001,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,419 -2002,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,419 -2003,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,458 -2004,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,457 -2005,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,461 -2006,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,494 -2007,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,508 -2008,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,511 -2009,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,559 -2010,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,561 -2011,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,587 -2012,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,607 -2013,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,625 -2014,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,646 -2015,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,663 -2016,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,697 -2017,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,720 -2018,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,708 -2019,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,738 -2020,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,770 -2000,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,205 -2001,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,240 -2002,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,263 -2003,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,269 -2004,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,408 -2005,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,400 -2006,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,406 -2007,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,428 -2008,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,482 -2009,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,526 -2010,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,542 -2011,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,586 -2012,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,678 -2013,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,723 -2014,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,740 -2015,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,773 -2016,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,825 -2017,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,879 -2018,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,913 -2019,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,954 -2020,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1000 -2010,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,755 -2011,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,815 -2012,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,932 -2013,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,980 -2014,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1042 -2015,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1089 -2016,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1162 -2017,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1253 -2018,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1310 -2019,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1387 -2020,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1458 -2000,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7065 -2001,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7138 -2002,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7198 -2003,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7303 -2004,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7372 -2005,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7543 -2006,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7686 -2007,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7869 -2008,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7960 -2009,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8134 -2010,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8290 -2011,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8371 -2012,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8509 -2013,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8800 -2014,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8986 -2015,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9015 -2016,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9043 -2017,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9088 -2018,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9174 -2019,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9322 -2020,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9404 -2010,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8666 -2011,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8774 -2012,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8955 -2013,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9277 -2014,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9519 -2015,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9595 -2016,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9662 -2017,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9752 -2018,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9898 -2019,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10150 -2020,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10249 -2010,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2011,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2012,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2013,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2014,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2015,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2016,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2017,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2018,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2019,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2020,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2000,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2002,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2004,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2005,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2006,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2007,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2008,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2009,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2011,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2018,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2019,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2020,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2000,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,565 -2001,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,620 -2002,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,640 -2003,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,704 -2004,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,766 -2005,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,827 -2006,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,891 -2007,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,891 -2008,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,985 -2009,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1009 -2010,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1053 -2011,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1117 -2012,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1210 -2013,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1269 -2014,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1386 -2015,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1458 -2016,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1549 -2017,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1625 -2018,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1720 -2019,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1882 -2020,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1968 -2010,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75669 -2011,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77094 -2012,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78408 -2013,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80403 -2014,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82206 -2015,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83768 -2016,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85562 -2017,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87477 -2018,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89623 -2019,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91824 -2020,geoId/01003,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94181 -2000,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,59700 -2001,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,60902 -2002,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,62076 -2003,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,63443 -2004,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,65261 -2005,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,67546 -2006,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,69692 -2007,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,71149 -2008,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,72128 -2009,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,73322 -2010,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,74681 -2011,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,76044 -2012,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,77259 -2013,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,79196 -2014,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,80882 -2015,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,82390 -2016,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,84091 -2017,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,85929 -2018,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,87990 -2019,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,90035 -2020,geoId/01003,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,92305 -2000,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,149 -2001,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,207 -2002,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,254 -2003,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,308 -2004,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,351 -2005,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,404 -2006,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,462 -2007,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,521 -2008,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,553 -2009,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,581 -2010,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,597 -2011,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,562 -2012,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,525 -2013,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,512 -2014,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,494 -2015,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,480 -2016,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,488 -2017,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,493 -2018,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,477 -2019,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,481 -2020,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,511 -2010,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2011,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2013,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2015,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2005,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2006,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2007,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2008,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2009,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2012,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2000,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2001,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2002,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2003,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2004,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2005,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2006,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2007,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2008,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2009,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2010,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2011,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2012,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2013,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2014,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2015,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2016,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2017,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2018,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2019,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2020,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2010,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2011,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2012,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2013,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2014,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2015,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2016,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2017,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2018,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2019,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2020,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2010,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2001,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2002,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,204 -2003,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,251 -2004,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,289 -2005,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,331 -2006,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,385 -2007,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,434 -2008,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,459 -2009,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,479 -2010,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,498 -2011,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,462 -2012,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,420 -2013,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,413 -2014,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,400 -2015,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,390 -2016,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,396 -2017,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,400 -2018,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,392 -2019,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,392 -2020,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,419 -2010,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,499 -2011,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,464 -2012,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,422 -2013,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,416 -2014,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,401 -2015,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,392 -2016,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,400 -2017,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,404 -2018,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,395 -2019,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,396 -2020,geoId/01005,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,422 -2000,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13912 -2001,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13763 -2002,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13479 -2003,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13265 -2004,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13082 -2005,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12910 -2006,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12681 -2007,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12615 -2008,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12481 -2009,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12388 -2010,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12227 -2011,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12126 -2012,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12105 -2013,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12052 -2014,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12019 -2015,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11835 -2016,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11703 -2017,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11448 -2018,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11253 -2019,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11146 -2020,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11091 -2010,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2011,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2012,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2013,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2014,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2015,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2016,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2017,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2019,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2020,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2000,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2001,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2002,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2003,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2004,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2005,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2006,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2008,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2009,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2010,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2011,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2012,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2015,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2017,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2018,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2000,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2001,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2002,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2003,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2004,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2005,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2006,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2007,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2008,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2009,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2010,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2011,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2012,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2013,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2014,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2016,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2017,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2018,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2019,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2020,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2010,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2012,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2013,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2014,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2015,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2016,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2017,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2018,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2020,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2000,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6636 -2001,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6577 -2002,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6528 -2003,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6431 -2004,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6378 -2005,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6312 -2006,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6215 -2007,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6225 -2008,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6164 -2009,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6110 -2010,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6060 -2011,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5991 -2012,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5980 -2013,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6004 -2014,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5993 -2015,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5908 -2016,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5820 -2017,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5705 -2018,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5640 -2019,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5583 -2020,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5547 -2010,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6107 -2011,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6039 -2012,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6040 -2013,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6067 -2014,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6058 -2015,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5976 -2016,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5897 -2017,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5793 -2018,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5738 -2019,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5680 -2020,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5659 -2010,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2001,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2002,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2003,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2004,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2005,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2006,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2007,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2008,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2009,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2010,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2011,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2012,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2013,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2014,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2015,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2016,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2017,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2018,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2019,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,142 -2020,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2010,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6058 -2011,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6019 -2012,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6015 -2013,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5933 -2014,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5915 -2015,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5818 -2016,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5768 -2017,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5618 -2018,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5489 -2019,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5430 -2020,geoId/01005,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5413 -2000,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7122 -2001,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7028 -2002,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6791 -2003,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6670 -2004,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6543 -2005,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6447 -2006,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6314 -2007,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6230 -2008,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6163 -2009,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6110 -2010,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5985 -2011,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5945 -2012,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5931 -2013,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5846 -2014,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5829 -2015,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5724 -2016,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5663 -2017,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5510 -2018,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5370 -2019,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5309 -2020,geoId/01005,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5274 -2000,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,329 -2001,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,385 -2002,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,437 -2003,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,470 -2004,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,514 -2005,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,591 -2006,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,675 -2007,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,724 -2008,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,791 -2009,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,777 -2010,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,747 -2011,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,744 -2012,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,699 -2013,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,643 -2014,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,639 -2015,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,620 -2016,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,627 -2017,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,625 -2018,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,596 -2019,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,615 -2020,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,638 -2010,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2011,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2013,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2014,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2015,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2016,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2017,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2018,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2020,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2000,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2003,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2004,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2005,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2006,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2007,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2008,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2009,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2010,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2011,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2012,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2013,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2014,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2015,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2016,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2017,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2018,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2019,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2020,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2000,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2001,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2002,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2003,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2004,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2005,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2006,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2007,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2008,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2009,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2010,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2011,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2012,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2013,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2014,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2015,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2018,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2019,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2020,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2010,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2011,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2012,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2013,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2014,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2015,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2016,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2017,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2018,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2010,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,265 -2001,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,318 -2002,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,366 -2003,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,384 -2004,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,422 -2005,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,491 -2006,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,563 -2007,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,606 -2008,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,663 -2009,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,632 -2010,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,611 -2011,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,612 -2012,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,569 -2013,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,523 -2014,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,515 -2015,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,503 -2016,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,507 -2017,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,493 -2018,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,463 -2019,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,476 -2020,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,496 -2010,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,616 -2011,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,617 -2012,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,574 -2013,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,528 -2014,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,520 -2015,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,508 -2016,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,514 -2017,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,504 -2018,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,474 -2019,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,489 -2020,geoId/01005,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,509 -2000,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14625 -2001,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14508 -2002,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14483 -2003,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14551 -2004,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14340 -2005,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14122 -2006,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14043 -2007,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13897 -2008,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13983 -2009,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13911 -2010,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13754 -2011,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13912 -2012,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13843 -2013,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13739 -2014,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13616 -2015,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13365 -2016,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13010 -2017,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12603 -2018,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12561 -2019,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12415 -2020,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12349 -2010,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2011,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2012,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2013,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2014,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2015,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2016,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2017,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2018,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2019,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2020,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2000,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2001,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2002,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2003,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2004,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2005,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2006,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2007,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2008,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2009,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2010,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2015,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2020,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2000,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2001,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2002,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2003,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2004,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2005,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2006,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2007,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2008,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2009,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2010,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2011,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2012,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2013,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2014,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2015,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2016,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2017,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2018,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2019,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2020,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2010,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2011,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2012,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2013,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2014,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2015,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2016,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2017,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2019,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2020,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2000,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6756 -2001,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6723 -2002,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6823 -2003,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6907 -2004,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6853 -2005,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6795 -2006,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6796 -2007,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6735 -2008,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6804 -2009,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6806 -2010,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6726 -2011,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6808 -2012,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6827 -2013,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6834 -2014,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6734 -2015,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6635 -2016,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6477 -2017,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6314 -2018,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6340 -2019,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6246 -2020,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6209 -2010,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6812 -2011,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6893 -2012,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6913 -2013,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6922 -2014,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6830 -2015,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6752 -2016,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6582 -2017,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6417 -2018,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6460 -2019,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6364 -2020,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6325 -2010,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2001,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2002,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2003,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2004,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2005,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2006,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2007,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2008,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2009,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2010,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2011,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2012,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,129 -2013,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2014,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2015,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2016,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2017,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2018,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,162 -2019,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,160 -2020,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2010,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6886 -2011,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6955 -2012,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6868 -2013,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6763 -2014,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6736 -2015,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6574 -2016,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6387 -2017,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6137 -2018,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6065 -2019,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6006 -2020,geoId/01005,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5985 -2000,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7642 -2001,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7560 -2002,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7433 -2003,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7415 -2004,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7251 -2005,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7115 -2006,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7028 -2007,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6941 -2008,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6956 -2009,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6889 -2010,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6803 -2011,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6864 -2012,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6775 -2013,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6657 -2014,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6622 -2015,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6461 -2016,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6267 -2017,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6029 -2018,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5944 -2019,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5884 -2020,geoId/01005,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5856 -2000,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,86 -2001,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,90 -2002,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,92 -2003,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,95 -2004,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,92 -2005,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,100 -2006,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,101 -2007,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,97 -2008,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,98 -2009,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,104 -2010,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,110 -2011,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,146 -2012,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,167 -2013,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,195 -2014,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,194 -2015,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,224 -2016,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,235 -2017,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,236 -2018,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,246 -2019,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,267 -2020,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,295 -2010,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2003,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2004,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2001,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2002,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2003,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2004,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2005,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2006,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2007,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2008,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2009,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2010,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2011,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2012,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,140 -2013,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2014,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2015,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,191 -2016,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,207 -2017,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,208 -2018,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,218 -2019,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,230 -2020,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,254 -2010,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2011,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2012,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2013,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,172 -2014,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,171 -2015,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,197 -2016,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,211 -2017,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,213 -2018,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,224 -2019,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,240 -2020,geoId/01007,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,264 -2000,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10002 -2001,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10223 -2002,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10226 -2003,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10239 -2004,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10315 -2005,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10394 -2006,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10335 -2007,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10492 -2008,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10567 -2009,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10504 -2010,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10487 -2011,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10320 -2012,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10278 -2013,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10207 -2014,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10199 -2015,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10217 -2016,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10281 -2017,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10249 -2018,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10170 -2019,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10168 -2020,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10068 -2010,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2011,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2012,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2013,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2014,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2015,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2016,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2017,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2018,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2019,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2020,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2000,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2001,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2002,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2003,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2004,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2005,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2006,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2007,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2008,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2009,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2012,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2020,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2000,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2012,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2014,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2017,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2020,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2000,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2024 -2001,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2032 -2002,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2056 -2003,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2034 -2004,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2035 -2005,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2033 -2006,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1996 -2007,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1990 -2008,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2030 -2009,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1973 -2010,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1960 -2011,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1866 -2012,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1837 -2013,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1837 -2014,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1804 -2015,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1847 -2016,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1841 -2017,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1840 -2018,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1795 -2019,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1807 -2020,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1778 -2010,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2002 -2011,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1909 -2012,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1889 -2013,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1889 -2014,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1857 -2015,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1902 -2016,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1896 -2017,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1903 -2018,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1873 -2019,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1893 -2020,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1871 -2010,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2001,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2002,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2003,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2004,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2005,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2006,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2007,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2008,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2009,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2010,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2011,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2012,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2013,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2014,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2015,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2016,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2017,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2018,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2019,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2020,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,144 -2010,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8475 -2011,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8386 -2012,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8377 -2013,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8302 -2014,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8325 -2015,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8292 -2016,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8370 -2017,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8336 -2018,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8296 -2019,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8275 -2020,geoId/01007,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8211 -2000,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7898 -2001,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8113 -2002,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8086 -2003,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8118 -2004,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8187 -2005,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8253 -2006,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8218 -2007,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8374 -2008,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8411 -2009,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8404 -2010,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8390 -2011,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8312 -2012,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8288 -2013,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8214 -2014,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8238 -2015,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8206 -2016,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8274 -2017,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8228 -2018,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8179 -2019,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8148 -2020,geoId/01007,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8082 -2000,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,120 -2001,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,154 -2002,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,168 -2003,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,199 -2004,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,227 -2005,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,227 -2006,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,246 -2007,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,254 -2008,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,265 -2009,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,300 -2010,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,301 -2011,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,319 -2012,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,313 -2013,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,295 -2014,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,289 -2015,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,304 -2016,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,319 -2017,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,347 -2018,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,343 -2019,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,352 -2020,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,354 -2010,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2003,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2004,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2010,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2010,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2001,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2002,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2003,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2004,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,190 -2005,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,198 -2006,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,214 -2007,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2008,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,228 -2009,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,262 -2010,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,261 -2011,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,267 -2012,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,264 -2013,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,251 -2014,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,247 -2015,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,253 -2016,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,266 -2017,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,286 -2018,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,281 -2019,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,285 -2020,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,286 -2010,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,262 -2011,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,272 -2012,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,270 -2013,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,255 -2014,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,249 -2015,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,259 -2016,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,272 -2017,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,292 -2018,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,286 -2019,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,290 -2020,geoId/01007,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,294 -2000,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9705 -2001,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10561 -2002,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10713 -2003,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10866 -2004,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11087 -2005,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11321 -2006,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11417 -2007,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11595 -2008,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11775 -2009,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12033 -2010,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11960 -2011,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11951 -2012,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11899 -2013,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11813 -2014,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11859 -2015,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11808 -2016,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11755 -2017,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11700 -2018,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11541 -2019,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11526 -2020,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11419 -2010,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2011,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2012,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2013,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2014,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2015,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2016,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2017,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2018,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2019,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2020,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2000,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2002,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2004,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2005,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2006,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2007,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2008,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2009,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2010,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2011,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2013,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2014,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2016,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2018,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2000,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2012,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2017,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2020,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2000,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1952 -2001,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2503 -2002,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2577 -2003,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2618 -2004,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2714 -2005,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2797 -2006,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2814 -2007,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2859 -2008,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2965 -2009,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3084 -2010,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3056 -2011,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3051 -2012,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3034 -2013,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3023 -2014,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3061 -2015,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3067 -2016,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3017 -2017,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2970 -2018,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2901 -2019,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2905 -2020,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2866 -2010,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3089 -2011,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3085 -2012,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3079 -2013,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3063 -2014,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3105 -2015,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3113 -2016,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3063 -2017,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3024 -2018,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2965 -2019,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2979 -2020,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2931 -2010,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2001,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2002,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2003,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2004,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2005,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2006,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2007,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2008,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2009,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2010,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2011,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2012,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2013,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2014,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2015,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2016,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2017,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2018,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2019,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2020,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2010,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8842 -2011,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8835 -2012,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8795 -2013,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8717 -2014,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8731 -2015,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8667 -2016,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8668 -2017,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8647 -2018,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8562 -2019,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8526 -2020,geoId/01007,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8464 -2000,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7676 -2001,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7980 -2002,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8051 -2003,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8159 -2004,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8279 -2005,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8411 -2006,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8476 -2007,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8608 -2008,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8679 -2009,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8811 -2010,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8767 -2011,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8753 -2012,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8711 -2013,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8635 -2014,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8643 -2015,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8583 -2016,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8572 -2017,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8550 -2018,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8457 -2019,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8423 -2020,geoId/01007,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8338 -2000,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1115 -2001,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1179 -2002,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1269 -2003,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1350 -2004,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1436 -2005,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1555 -2006,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1658 -2007,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1767 -2008,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1892 -2009,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1988 -2010,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2081 -2011,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2138 -2012,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2161 -2013,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2219 -2014,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2278 -2015,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2322 -2016,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2411 -2017,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2470 -2018,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2486 -2019,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2546 -2020,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2582 -2010,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2011,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2012,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2014,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2015,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2016,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2017,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2018,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2019,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2020,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2000,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2005,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2009,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2018,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2019,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2020,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2000,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2006,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2007,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2008,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2009,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2010,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2012,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2013,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2017,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2020,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2010,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2012,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2013,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2014,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2015,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2016,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2017,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2018,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2019,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2020,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2010,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2008,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2009,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2006,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2009,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2010,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2014,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2015,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2016,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2017,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2018,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2019,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2000,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1073 -2001,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1138 -2002,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1224 -2003,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1299 -2004,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1373 -2005,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1482 -2006,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1581 -2007,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1685 -2008,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1801 -2009,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1889 -2010,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1986 -2011,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2038 -2012,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2049 -2013,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2095 -2014,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2130 -2015,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2176 -2016,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2260 -2017,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2317 -2018,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2337 -2019,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2391 -2020,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2410 -2010,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2002 -2011,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2055 -2012,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2079 -2013,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2138 -2014,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2179 -2015,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2229 -2016,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2302 -2017,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2363 -2018,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2375 -2019,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2433 -2020,geoId/01009,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2459 -2000,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24473 -2001,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24743 -2002,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25107 -2003,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25499 -2004,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25755 -2005,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25917 -2006,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26299 -2007,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26532 -2008,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26805 -2009,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26958 -2010,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26910 -2011,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26977 -2012,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26995 -2013,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26968 -2014,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26888 -2015,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26862 -2016,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26778 -2017,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26805 -2018,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26762 -2019,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26740 -2020,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26680 -2010,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,351 -2011,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,349 -2012,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,349 -2013,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,350 -2014,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,341 -2015,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,351 -2016,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,352 -2017,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,352 -2018,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,356 -2019,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,346 -2020,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,334 -2000,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2001,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2002,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2003,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2004,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2005,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2006,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2007,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2008,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2009,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,146 -2010,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2011,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,145 -2012,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,147 -2013,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2014,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2015,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2016,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2017,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,139 -2018,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,145 -2019,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2020,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2000,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2001,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2002,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2003,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2004,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2005,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2006,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2007,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2008,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2009,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2010,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2011,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2012,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2013,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2014,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2015,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2016,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2017,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2018,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2019,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2020,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2010,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2011,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2012,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2013,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,139 -2014,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2015,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,142 -2016,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2017,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,144 -2018,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2019,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2020,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2000,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,308 -2001,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,351 -2002,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,378 -2003,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,420 -2004,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,429 -2005,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,405 -2006,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,416 -2007,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,414 -2008,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,388 -2009,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,384 -2010,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,357 -2011,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,371 -2012,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,389 -2013,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,423 -2014,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,375 -2015,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,384 -2016,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,382 -2017,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,403 -2018,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,391 -2019,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,424 -2020,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,426 -2010,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,446 -2011,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,474 -2012,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,515 -2013,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,543 -2014,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,515 -2015,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,514 -2016,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,517 -2017,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,543 -2018,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,534 -2019,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,564 -2020,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,581 -2010,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,215 -2001,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,216 -2002,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,230 -2003,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,233 -2004,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,241 -2005,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,241 -2006,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,264 -2007,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,260 -2008,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,275 -2009,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,287 -2010,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,303 -2011,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,323 -2012,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,347 -2013,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,348 -2014,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,373 -2015,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,376 -2016,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,391 -2017,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,385 -2018,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,390 -2019,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,384 -2020,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,401 -2010,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26297 -2011,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26343 -2012,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26342 -2013,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26278 -2014,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26255 -2015,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26221 -2016,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26154 -2017,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26148 -2018,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26112 -2019,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26064 -2020,geoId/01009,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25996 -2000,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23792 -2001,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24009 -2002,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24320 -2003,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24662 -2004,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24899 -2005,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25079 -2006,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25421 -2007,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25652 -2008,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25936 -2009,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26062 -2010,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26011 -2011,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26047 -2012,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26018 -2013,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25958 -2014,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25908 -2015,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25864 -2016,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25784 -2017,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25788 -2018,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25738 -2019,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25703 -2020,geoId/01009,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25619 -2000,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1617 -2001,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1692 -2002,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1781 -2003,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1819 -2004,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1937 -2005,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2053 -2006,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2135 -2007,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2262 -2008,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2410 -2009,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2485 -2010,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2584 -2011,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2661 -2012,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2671 -2013,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2691 -2014,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2697 -2015,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2693 -2016,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2736 -2017,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2839 -2018,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2885 -2019,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2922 -2020,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2942 -2010,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2011,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2012,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2013,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2014,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2016,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2017,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2018,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2019,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2020,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2000,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2001,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2002,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2003,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2004,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2005,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2006,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2007,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2008,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2009,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2011,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2012,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2014,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2017,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2019,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2020,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2000,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2006,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2007,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2008,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2009,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2010,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2011,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2012,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2013,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2014,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2015,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2016,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2017,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2018,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2019,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2020,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2010,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2011,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2012,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2013,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2014,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2015,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2016,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2017,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2018,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2019,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2020,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2010,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2000,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2008,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2009,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2000,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2007,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2008,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2009,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2010,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2011,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1569 -2001,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1638 -2002,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1728 -2003,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1751 -2004,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1861 -2005,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1946 -2006,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2016 -2007,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2137 -2008,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2274 -2009,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2342 -2010,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2438 -2011,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2515 -2012,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2519 -2013,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2534 -2014,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2545 -2015,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2547 -2016,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2584 -2017,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2666 -2018,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2706 -2019,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2734 -2020,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2743 -2010,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2464 -2011,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2538 -2012,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2545 -2013,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2558 -2014,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2568 -2015,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2566 -2016,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2603 -2017,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2692 -2018,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2734 -2019,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2766 -2020,geoId/01009,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2778 -2000,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23902 -2001,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,24231 -2002,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,24394 -2003,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,24789 -2004,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,24996 -2005,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25099 -2006,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25393 -2007,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25679 -2008,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25948 -2009,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25910 -2010,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25797 -2011,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25785 -2012,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25758 -2013,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25752 -2014,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25673 -2015,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25658 -2016,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25562 -2017,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25687 -2018,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25637 -2019,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25632 -2020,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25675 -2010,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,299 -2011,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,296 -2012,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,312 -2013,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,315 -2014,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,304 -2015,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,322 -2016,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,314 -2017,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,331 -2018,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,329 -2019,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,331 -2020,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,324 -2000,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2001,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2002,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2003,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2004,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,146 -2005,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2006,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2007,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2008,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2009,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2010,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2011,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2012,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2013,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2014,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,139 -2015,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2016,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2017,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2018,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,145 -2019,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2020,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2000,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2001,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2002,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2003,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2004,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2005,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2006,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2007,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2008,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2009,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2010,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2011,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2013,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2014,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2015,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2016,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2017,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2018,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2019,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2020,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2010,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2011,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2012,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2013,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2014,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2015,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2016,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2017,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2018,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2019,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,155 -2020,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,160 -2000,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,286 -2001,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,343 -2002,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,372 -2003,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,380 -2004,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,399 -2005,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,374 -2006,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,365 -2007,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,398 -2008,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,407 -2009,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,398 -2010,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,374 -2011,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,389 -2012,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,429 -2013,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,437 -2014,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,430 -2015,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,448 -2016,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,425 -2017,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,428 -2018,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,431 -2019,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,452 -2020,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,458 -2010,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,451 -2011,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,456 -2012,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,520 -2013,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,515 -2014,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,511 -2015,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,548 -2016,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,526 -2017,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,541 -2018,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,551 -2019,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,580 -2020,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,575 -2010,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2000,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2001,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,177 -2002,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2003,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,185 -2004,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,196 -2005,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2006,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,207 -2007,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,223 -2008,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,228 -2009,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,235 -2010,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,257 -2011,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,253 -2012,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,279 -2013,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,279 -2014,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,281 -2015,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,303 -2016,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,323 -2017,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,333 -2018,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,341 -2019,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,352 -2020,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,340 -2010,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25211 -2011,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25196 -2012,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25109 -2013,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25093 -2014,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25013 -2015,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24978 -2016,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24914 -2017,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25006 -2018,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24938 -2019,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24903 -2020,geoId/01009,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24939 -2000,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23314 -2001,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23554 -2002,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23677 -2003,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24061 -2004,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24224 -2005,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24362 -2006,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24641 -2007,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24870 -2008,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25125 -2009,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25087 -2010,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24974 -2011,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24951 -2012,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24846 -2013,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24829 -2014,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24742 -2015,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24695 -2016,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24607 -2017,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24699 -2018,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24620 -2019,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24580 -2020,geoId/01009,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24619 -2000,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,103 -2001,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,141 -2002,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,167 -2003,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,194 -2004,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,208 -2005,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,221 -2006,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,255 -2007,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,281 -2008,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,316 -2009,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,315 -2010,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,346 -2011,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,374 -2012,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,363 -2013,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,333 -2014,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,338 -2015,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,345 -2016,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,363 -2017,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,381 -2018,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,402 -2019,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,406 -2020,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,422 -2010,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2011,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2012,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2000,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2008,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2009,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2010,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2011,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2000,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2001,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2002,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2003,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2004,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2005,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2006,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2007,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2008,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2009,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2010,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2012,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2018,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2019,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2010,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2011,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2012,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2013,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2015,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2016,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2017,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2018,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2019,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2020,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2010,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2011,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2012,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2014,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2015,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2016,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2000,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2006,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2009,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2011,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2012,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2017,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2000,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2001,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2002,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2003,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2004,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2005,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2006,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,161 -2007,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2008,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,200 -2009,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,191 -2010,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2011,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,255 -2012,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,243 -2013,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,212 -2014,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,216 -2015,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,218 -2016,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,233 -2017,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,254 -2018,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,278 -2019,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,279 -2020,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,286 -2010,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,236 -2011,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,267 -2012,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,257 -2013,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,227 -2014,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,228 -2015,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,233 -2016,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,245 -2017,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,266 -2018,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,291 -2019,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,295 -2020,geoId/01011,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,302 -2000,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5416 -2001,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5232 -2002,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5114 -2003,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5035 -2004,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4916 -2005,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4889 -2006,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4757 -2007,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4772 -2008,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4680 -2009,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4665 -2010,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4651 -2011,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4540 -2012,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4475 -2013,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4481 -2014,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4505 -2015,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4420 -2016,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4382 -2017,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4281 -2018,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4236 -2019,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4191 -2020,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4093 -2010,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2001,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2002,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2004,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4169 -2001,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4042 -2002,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3954 -2003,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3891 -2004,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3847 -2005,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3820 -2006,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3749 -2007,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3804 -2008,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3718 -2009,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3711 -2010,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3711 -2011,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3622 -2012,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3570 -2013,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3583 -2014,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3590 -2015,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3518 -2016,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3477 -2017,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3425 -2018,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3388 -2019,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3352 -2020,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3278 -2010,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3723 -2011,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3633 -2012,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3589 -2013,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3599 -2014,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3611 -2015,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3535 -2016,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3494 -2017,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3445 -2018,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3408 -2019,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3379 -2020,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3302 -2010,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2001,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2002,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2003,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2004,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2005,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2006,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2007,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2008,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2010,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,911 -2011,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,892 -2012,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,874 -2013,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,865 -2014,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,876 -2015,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,866 -2016,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,870 -2017,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,826 -2018,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,816 -2019,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,806 -2020,geoId/01011,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,783 -2000,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1188 -2001,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1132 -2002,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1103 -2003,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1087 -2004,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1012 -2005,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1015 -2006,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,962 -2007,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,920 -2008,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,912 -2009,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,906 -2010,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,893 -2011,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,867 -2012,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,844 -2013,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,839 -2014,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,852 -2015,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,840 -2016,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,838 -2017,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,793 -2018,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,785 -2019,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,769 -2020,geoId/01011,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,752 -2000,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,219 -2001,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,265 -2002,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,304 -2003,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,348 -2004,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,382 -2005,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,403 -2006,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,399 -2007,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,432 -2008,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,420 -2009,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,455 -2010,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,429 -2011,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,451 -2012,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,436 -2013,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,428 -2014,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,399 -2015,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,408 -2016,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,401 -2017,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,412 -2018,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,424 -2019,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,442 -2020,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,463 -2010,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2011,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2014,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2018,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2000,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2006,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2008,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2009,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2010,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2000,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2001,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2002,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2003,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2004,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2005,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2006,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2007,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2008,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2009,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2010,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2011,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2012,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2013,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2014,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2015,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2016,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2017,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2018,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2019,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2020,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2010,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2011,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2012,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2013,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2014,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2016,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2017,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2018,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2019,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2020,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2010,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2011,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2006,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2007,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2008,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2009,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2010,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2011,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2012,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2014,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2017,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2018,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2019,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2000,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2009,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,171 -2001,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,214 -2002,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,243 -2003,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,273 -2004,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,300 -2005,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,294 -2006,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,276 -2007,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,304 -2008,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,263 -2009,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,281 -2010,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,262 -2011,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,289 -2012,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,274 -2013,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,273 -2014,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,241 -2015,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,245 -2016,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,236 -2017,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,247 -2018,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,259 -2019,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,280 -2020,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,286 -2010,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,282 -2011,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,310 -2012,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,299 -2013,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,292 -2014,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,263 -2015,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,267 -2016,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,260 -2017,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,267 -2018,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,278 -2019,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,302 -2020,geoId/01011,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,305 -2000,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5843 -2001,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5720 -2002,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5671 -2003,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5739 -2004,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5550 -2005,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5498 -2006,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5365 -2007,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5526 -2008,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5537 -2009,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5552 -2010,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5450 -2011,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5315 -2012,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5336 -2013,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5315 -2014,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5426 -2015,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5231 -2016,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5251 -2017,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5107 -2018,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5103 -2019,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5105 -2020,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4998 -2010,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2000,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2001,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2002,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2003,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2004,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2005,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4232 -2001,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4138 -2002,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4082 -2003,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4124 -2004,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4010 -2005,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3961 -2006,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3896 -2007,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3987 -2008,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3956 -2009,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3956 -2010,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3912 -2011,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3779 -2012,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3779 -2013,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3806 -2014,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3889 -2015,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3743 -2016,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3753 -2017,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3668 -2018,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3673 -2019,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3667 -2020,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3574 -2010,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3929 -2011,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3797 -2012,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3799 -2013,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3825 -2014,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3913 -2015,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3769 -2016,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3783 -2017,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3697 -2018,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3701 -2019,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3699 -2020,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3603 -2010,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2001,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2002,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2003,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2004,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2005,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2007,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2008,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2009,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2013,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2016,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2017,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2018,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2019,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2020,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2010,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1518 -2011,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1517 -2012,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1530 -2013,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1483 -2014,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1509 -2015,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1461 -2016,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1474 -2017,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1414 -2018,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1403 -2019,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1408 -2020,geoId/01011,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1401 -2000,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1546 -2001,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1517 -2002,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1522 -2003,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1547 -2004,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1472 -2005,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1486 -2006,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1426 -2007,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1493 -2008,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1532 -2009,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1546 -2010,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1491 -2011,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1488 -2012,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1501 -2013,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1450 -2014,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1474 -2015,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1421 -2016,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1428 -2017,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1368 -2018,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1361 -2019,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1365 -2020,geoId/01011,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1352 -2000,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,69 -2001,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,67 -2002,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,69 -2003,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,70 -2004,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,73 -2005,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,79 -2006,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,80 -2007,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,82 -2008,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,82 -2009,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,82 -2010,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,90 -2011,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,108 -2012,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,115 -2013,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,116 -2014,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,116 -2015,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,133 -2016,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,129 -2017,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,132 -2018,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,136 -2019,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,143 -2020,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,151 -2010,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2001,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2002,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2003,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2004,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2005,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2006,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2008,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2009,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2017,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2019,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2010,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2001,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2002,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2003,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2004,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2005,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2006,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2007,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2008,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2009,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2010,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2011,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2012,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2013,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2015,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2016,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2017,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2018,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2019,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2020,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2010,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2011,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2012,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2013,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2014,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2016,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2017,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2018,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2019,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2020,geoId/01013,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2000,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11264 -2001,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11159 -2002,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10953 -2003,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10974 -2004,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10983 -2005,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10950 -2006,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10933 -2007,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10958 -2008,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11053 -2009,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11028 -2010,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11005 -2011,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10949 -2012,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10875 -2013,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10763 -2014,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10770 -2015,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10633 -2016,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10583 -2017,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10477 -2018,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10368 -2019,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10282 -2020,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10269 -2010,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2011,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2012,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2013,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2014,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2015,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2016,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2018,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2019,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2020,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2000,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2001,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2003,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2004,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2005,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2006,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2007,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2008,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2009,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2010,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2017,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2000,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2001,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2003,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2004,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2005,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2006,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2007,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2008,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2009,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2010,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2011,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2012,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2013,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2014,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2015,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2016,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2017,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2018,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2019,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2020,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2010,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2011,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2012,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2013,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2014,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2015,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2016,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2017,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2018,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2019,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2020,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2000,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4728 -2001,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4689 -2002,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4634 -2003,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4684 -2004,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4735 -2005,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4700 -2006,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4756 -2007,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4786 -2008,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4949 -2009,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4954 -2010,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4938 -2011,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4940 -2012,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4921 -2013,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4879 -2014,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4936 -2015,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4890 -2016,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4874 -2017,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4885 -2018,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4861 -2019,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4827 -2020,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4838 -2010,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4976 -2011,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4969 -2012,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4959 -2013,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4914 -2014,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4997 -2015,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4939 -2016,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4921 -2017,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4940 -2018,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4918 -2019,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4882 -2020,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4901 -2010,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2001,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2002,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2003,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2004,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2005,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2006,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2007,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2008,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2009,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2010,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2011,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2012,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2013,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2015,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2016,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2017,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2018,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2019,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2020,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2010,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5942 -2011,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5872 -2012,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5811 -2013,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5743 -2014,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5682 -2015,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5591 -2016,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5542 -2017,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5442 -2018,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5367 -2019,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5308 -2020,geoId/01013,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5286 -2000,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6457 -2001,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6386 -2002,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6220 -2003,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6179 -2004,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6127 -2005,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6113 -2006,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6028 -2007,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6017 -2008,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5934 -2009,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5892 -2010,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5878 -2011,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5813 -2012,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5753 -2013,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5681 -2014,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5612 -2015,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5510 -2016,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5455 -2017,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5353 -2018,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5272 -2019,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5222 -2020,geoId/01013,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5194 -2000,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,74 -2001,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,84 -2002,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,82 -2003,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,83 -2004,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,84 -2005,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,89 -2006,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,97 -2007,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,97 -2008,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,94 -2009,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,99 -2010,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,108 -2011,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,119 -2012,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,129 -2013,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,138 -2014,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,134 -2015,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,135 -2016,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,139 -2017,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,148 -2018,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,150 -2019,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,153 -2020,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,172 -2010,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2001,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2002,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2003,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2004,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2005,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2006,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2007,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2008,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2009,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2011,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2014,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2019,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2012,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2016,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2019,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2010,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2001,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2002,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2003,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2004,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2005,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2006,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2007,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2008,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2009,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2010,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2011,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2012,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2013,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2014,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2015,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2016,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2017,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2018,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2019,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2020,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2010,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2011,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2012,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2013,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2014,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2015,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2016,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2017,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2018,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2019,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2020,geoId/01013,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2000,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9918 -2001,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9829 -2002,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9699 -2003,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9706 -2004,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9730 -2005,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9712 -2006,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9705 -2007,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9757 -2008,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9720 -2009,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9658 -2010,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9730 -2011,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9691 -2012,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9553 -2013,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9342 -2014,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9312 -2015,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9267 -2016,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9189 -2017,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9154 -2018,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9021 -2019,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8923 -2020,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8912 -2010,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2011,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2012,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2013,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2014,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2015,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2016,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2017,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2018,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2019,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2000,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2001,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2004,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2005,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2006,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2007,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2008,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2009,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2017,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2000,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2002,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2003,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2004,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2005,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2006,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2007,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2008,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2009,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2010,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2011,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2012,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2013,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2014,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2015,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2016,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,161 -2017,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,169 -2018,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2019,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,183 -2020,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2010,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2011,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2012,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2013,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2014,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2015,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2016,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2017,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2018,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2019,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,200 -2020,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2000,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3938 -2001,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3930 -2002,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3888 -2003,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3918 -2004,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3940 -2005,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3966 -2006,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4021 -2007,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4099 -2008,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4113 -2009,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4045 -2010,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4121 -2011,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4109 -2012,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4039 -2013,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3969 -2014,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4000 -2015,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3999 -2016,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3973 -2017,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3969 -2018,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3904 -2019,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3859 -2020,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3861 -2010,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4156 -2011,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4147 -2012,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4085 -2013,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4010 -2014,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4043 -2015,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4047 -2016,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4020 -2017,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4017 -2018,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3960 -2019,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3914 -2020,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3921 -2010,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2001,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2002,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2003,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2004,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2005,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2006,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2007,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2008,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2009,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2010,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2011,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2012,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2013,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2014,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2016,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2017,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2018,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2019,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2020,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2010,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5483 -2011,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5447 -2012,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5362 -2013,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5217 -2014,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5150 -2015,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5087 -2016,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5012 -2017,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4968 -2018,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4892 -2019,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4830 -2020,geoId/01013,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4838 -2000,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5912 -2001,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5823 -2002,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5728 -2003,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5689 -2004,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5682 -2005,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5626 -2006,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5536 -2007,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5504 -2008,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5442 -2009,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5432 -2010,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5421 -2011,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5381 -2012,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5296 -2013,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5151 -2014,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5072 -2015,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5014 -2016,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4931 -2017,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4888 -2018,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4810 -2019,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4750 -2020,geoId/01013,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4749 -2000,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,784 -2001,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,883 -2002,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,928 -2003,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1028 -2004,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1140 -2005,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1236 -2006,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1371 -2007,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1483 -2008,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1563 -2009,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1700 -2010,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1776 -2011,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1829 -2012,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1787 -2013,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1776 -2014,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1850 -2015,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1897 -2016,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1988 -2017,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1992 -2018,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2106 -2019,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2176 -2020,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2243 -2010,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2011,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2012,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2013,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2014,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2015,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2016,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2017,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2018,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2019,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2020,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2000,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2003,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2006,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2007,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2008,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2009,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2011,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2012,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2014,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2015,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2016,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2017,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2018,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2019,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2000,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2010,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2012,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2014,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2015,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2016,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2017,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2019,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2020,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2000,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2001,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2002,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2003,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2004,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2005,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2006,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2007,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2008,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2009,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,139 -2010,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2011,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,145 -2012,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2013,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2014,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2015,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2016,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2017,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,162 -2018,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,162 -2019,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,172 -2020,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,171 -2010,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2011,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,196 -2012,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,192 -2013,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2014,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2015,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,205 -2016,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,214 -2017,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,219 -2018,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,213 -2019,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,215 -2020,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,236 -2010,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2019,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2000,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2002,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2004,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2005,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2006,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2007,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2008,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2009,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2010,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2011,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2012,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2013,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2014,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2015,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2016,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2017,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2018,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2019,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2020,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2000,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,689 -2001,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,772 -2002,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,805 -2003,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,884 -2004,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,973 -2005,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1050 -2006,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1152 -2007,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1237 -2008,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1292 -2009,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1401 -2010,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1477 -2011,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1510 -2012,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1470 -2013,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1468 -2014,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1533 -2015,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1553 -2016,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1635 -2017,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1642 -2018,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1743 -2019,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1800 -2020,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1858 -2010,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1557 -2011,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1588 -2012,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1547 -2013,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1545 -2014,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1621 -2015,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1634 -2016,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1716 -2017,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1726 -2018,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1819 -2019,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1880 -2020,geoId/01015,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1935 -2000,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,57173 -2001,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,57092 -2002,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,57171 -2003,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,57540 -2004,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,57747 -2005,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,58186 -2006,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,58499 -2007,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,58817 -2008,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,59249 -2009,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,59584 -2010,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,59543 -2011,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,59305 -2012,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,59059 -2013,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,58602 -2014,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,58385 -2015,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,58098 -2016,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,57726 -2017,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,57545 -2018,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,57171 -2019,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,57076 -2020,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,56659 -2010,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,578 -2011,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,561 -2012,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,577 -2013,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,580 -2014,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,564 -2015,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,566 -2016,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,579 -2017,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,555 -2018,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,577 -2019,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,566 -2020,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,586 -2000,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,207 -2001,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,224 -2002,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,225 -2003,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,217 -2004,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,214 -2005,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,216 -2006,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,204 -2007,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,245 -2008,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,243 -2009,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,227 -2010,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,225 -2011,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2012,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,219 -2013,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2014,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,216 -2015,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,215 -2016,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,216 -2017,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,216 -2018,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,219 -2019,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,224 -2020,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,221 -2000,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,397 -2001,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,424 -2002,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,403 -2003,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,441 -2004,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,449 -2005,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,443 -2006,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,476 -2007,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,492 -2008,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,463 -2009,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,517 -2010,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,506 -2011,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,523 -2012,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,548 -2013,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,569 -2014,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,604 -2015,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,617 -2016,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,641 -2017,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,627 -2018,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,605 -2019,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,576 -2020,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,570 -2010,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,682 -2011,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,711 -2012,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,739 -2013,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,761 -2014,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,812 -2015,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,833 -2016,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,858 -2017,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,870 -2018,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,857 -2019,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,820 -2020,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,823 -2000,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11204 -2001,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11365 -2002,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11504 -2003,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11646 -2004,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11874 -2005,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12163 -2006,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12410 -2007,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12561 -2008,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12849 -2009,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13002 -2010,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13001 -2011,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12934 -2012,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13011 -2013,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12872 -2014,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12906 -2015,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12891 -2016,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12820 -2017,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12851 -2018,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12881 -2019,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13036 -2020,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12848 -2010,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13428 -2011,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13380 -2012,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13519 -2013,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13370 -2014,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13435 -2015,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13439 -2016,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13377 -2017,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13441 -2018,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13499 -2019,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13672 -2020,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13526 -2010,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2011,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2012,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2013,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2014,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2015,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2016,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2017,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2018,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2019,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2020,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2000,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2001,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2002,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2003,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2004,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2005,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2006,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2007,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2008,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2009,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2010,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2011,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2015,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2016,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2017,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2018,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2019,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2000,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,460 -2001,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,478 -2002,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,500 -2003,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,559 -2004,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,608 -2005,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,653 -2006,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,684 -2007,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,742 -2008,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,795 -2009,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,809 -2010,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,854 -2011,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,882 -2012,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,921 -2013,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,936 -2014,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,946 -2015,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,994 -2016,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1027 -2017,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1051 -2018,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1093 -2019,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1128 -2020,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1156 -2010,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45692 -2011,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45501 -2012,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45153 -2013,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44822 -2014,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44526 -2015,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44253 -2016,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43919 -2017,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43708 -2018,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43344 -2019,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43096 -2020,geoId/01015,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42872 -2000,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44866 -2001,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44565 -2002,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44499 -2003,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44641 -2004,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44557 -2005,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44670 -2006,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44683 -2007,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44731 -2008,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44862 -2009,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44988 -2010,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44912 -2011,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44702 -2012,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44318 -2013,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43964 -2014,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43672 -2015,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43339 -2016,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42979 -2017,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42750 -2018,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42327 -2019,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42064 -2020,geoId/01015,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41813 -2000,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,971 -2001,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1056 -2002,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1124 -2003,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1210 -2004,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1364 -2005,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1523 -2006,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1663 -2007,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1766 -2008,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1890 -2009,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2052 -2010,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2123 -2011,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2134 -2012,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2126 -2013,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2134 -2014,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2118 -2015,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2128 -2016,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2223 -2017,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2247 -2018,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2301 -2019,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2323 -2020,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2425 -2010,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2011,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2012,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2013,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2014,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2015,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2016,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2017,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2018,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2019,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2020,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2000,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2001,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2002,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2003,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2004,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2005,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2006,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2007,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2008,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2009,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2010,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2011,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2012,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2013,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2014,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2015,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2016,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2017,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2018,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2019,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2020,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2000,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2008,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2012,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2011,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2012,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2014,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2015,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2016,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2018,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2019,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2020,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2000,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2001,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2002,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2003,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2004,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2005,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2006,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2007,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2008,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2009,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2010,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,169 -2011,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2012,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2013,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,183 -2014,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2015,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,195 -2016,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,197 -2017,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,191 -2018,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,183 -2019,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,186 -2020,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,173 -2010,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,210 -2011,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,213 -2012,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,219 -2013,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,235 -2014,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,234 -2015,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,251 -2016,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,249 -2017,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,253 -2018,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,247 -2019,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,237 -2020,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,224 -2010,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2003,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2004,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2005,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2006,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2007,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2008,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2009,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2010,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2011,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2012,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2013,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2014,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2015,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2016,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2017,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2018,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2019,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2020,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2000,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,878 -2001,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,951 -2002,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,982 -2003,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1060 -2004,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1192 -2005,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1310 -2006,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1417 -2007,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1489 -2008,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1604 -2009,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1721 -2010,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1771 -2011,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1771 -2012,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1767 -2013,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1769 -2014,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1743 -2015,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1732 -2016,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1822 -2017,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1836 -2018,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1898 -2019,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1928 -2020,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2046 -2010,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1842 -2011,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1862 -2012,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1850 -2013,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1849 -2014,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1830 -2015,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1814 -2016,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1913 -2017,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1932 -2018,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1994 -2019,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2012 -2020,geoId/01015,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2132 -2000,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,52153 -2001,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,52235 -2002,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,52402 -2003,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,52927 -2004,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53211 -2005,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53532 -2006,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53855 -2007,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,54145 -2008,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,54572 -2009,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,55027 -2010,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,54978 -2011,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,54499 -2012,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,54255 -2013,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,54016 -2014,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53638 -2015,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53427 -2016,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53099 -2017,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,52962 -2018,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,52720 -2019,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,52495 -2020,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,52142 -2010,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,577 -2011,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,563 -2012,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,560 -2013,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,572 -2014,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,556 -2015,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,590 -2016,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,575 -2017,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,558 -2018,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,585 -2019,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,578 -2020,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,581 -2000,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,226 -2001,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,224 -2002,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,241 -2003,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,253 -2004,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,237 -2005,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,257 -2006,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,254 -2007,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,253 -2008,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,255 -2009,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,252 -2010,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,259 -2011,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,246 -2012,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,240 -2013,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,247 -2014,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,238 -2015,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,241 -2016,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,237 -2017,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,228 -2018,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,237 -2019,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,240 -2020,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,240 -2000,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,237 -2001,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,238 -2002,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,250 -2003,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,256 -2004,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,282 -2005,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,300 -2006,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,301 -2007,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,309 -2008,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,326 -2009,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,357 -2010,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,348 -2011,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,353 -2012,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,375 -2013,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,390 -2014,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,401 -2015,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,405 -2016,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,423 -2017,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,421 -2018,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,411 -2019,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,383 -2020,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,373 -2010,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,522 -2011,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,522 -2012,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,557 -2013,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,574 -2014,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,594 -2015,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,614 -2016,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,645 -2017,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,638 -2018,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,639 -2019,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,636 -2020,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,617 -2000,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9464 -2001,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9606 -2002,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9725 -2003,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9915 -2004,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10164 -2005,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10469 -2006,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10608 -2007,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10694 -2008,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10960 -2009,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11162 -2010,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11159 -2011,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11026 -2012,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11074 -2013,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11052 -2014,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11089 -2015,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11054 -2016,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11025 -2017,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11082 -2018,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11157 -2019,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11243 -2020,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11201 -2010,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11554 -2011,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11432 -2012,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11502 -2013,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11482 -2014,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11554 -2015,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11573 -2016,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11556 -2017,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11619 -2018,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11730 -2019,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11846 -2020,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11796 -2010,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2011,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2012,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2013,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2014,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2015,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2016,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2017,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2018,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2019,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2020,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2000,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2001,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2002,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2003,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2004,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2005,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2006,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2007,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2008,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2009,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2010,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2011,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2012,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2013,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2014,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2015,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2016,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2017,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2018,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2019,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2020,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2000,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,418 -2001,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,453 -2002,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,498 -2003,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,526 -2004,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,540 -2005,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,605 -2006,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,644 -2007,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,700 -2008,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,736 -2009,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,754 -2010,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,800 -2011,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,810 -2012,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,823 -2013,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,853 -2014,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,896 -2015,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,962 -2016,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,995 -2017,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,988 -2018,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1036 -2019,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1072 -2020,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1081 -2010,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43093 -2011,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42765 -2012,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42445 -2013,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42205 -2014,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41785 -2015,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41598 -2016,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41292 -2017,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41101 -2018,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40789 -2019,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40493 -2020,geoId/01015,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40199 -2000,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41772 -2001,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41681 -2002,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41649 -2003,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41932 -2004,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41946 -2005,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41860 -2006,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42006 -2007,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42149 -2008,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42249 -2009,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42457 -2010,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42359 -2011,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42010 -2012,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41691 -2013,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41421 -2014,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40960 -2015,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40717 -2016,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40371 -2017,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40194 -2018,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39833 -2019,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39507 -2020,geoId/01015,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39199 -2000,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,138 -2001,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,149 -2002,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,163 -2003,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,168 -2004,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,174 -2005,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,182 -2006,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,193 -2007,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,216 -2008,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,214 -2009,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,202 -2010,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,206 -2011,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,225 -2012,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,239 -2013,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,280 -2014,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,273 -2015,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,297 -2016,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,324 -2017,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,362 -2018,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,382 -2019,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,400 -2020,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,410 -2010,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2001,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2002,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2003,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2004,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2005,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2006,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2007,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2008,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2009,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2012,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2014,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2018,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2019,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2020,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2010,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2011,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2012,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2014,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2016,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2017,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2018,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2019,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2010,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2000,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2001,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2002,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2003,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2004,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2005,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2006,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2007,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2008,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 -2009,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,155 -2010,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2011,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,172 -2012,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,185 -2013,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2014,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2015,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,228 -2016,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,246 -2017,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,283 -2018,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,299 -2019,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,319 -2020,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,319 -2010,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,165 -2011,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2012,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,199 -2013,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,233 -2014,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,231 -2015,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,242 -2016,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,264 -2017,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,300 -2018,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,318 -2019,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,341 -2020,geoId/01017,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,340 -2000,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19148 -2001,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18903 -2002,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18692 -2003,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18515 -2004,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18404 -2005,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18373 -2006,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18098 -2007,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17992 -2008,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17824 -2009,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17752 -2010,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17593 -2011,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17581 -2012,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17587 -2013,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17498 -2014,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17408 -2015,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17338 -2016,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17242 -2017,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17206 -2018,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17111 -2019,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16934 -2020,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16790 -2010,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2011,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2012,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2013,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2014,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2015,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2016,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2017,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2018,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2019,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2020,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2000,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2001,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2002,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2003,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2004,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2005,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2007,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2008,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2009,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2012,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2018,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2020,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2001,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2002,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2003,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2004,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2005,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2006,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2007,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2008,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2009,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2010,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2011,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2012,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2013,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2014,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,151 -2015,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,155 -2016,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 -2017,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,169 -2018,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,162 -2019,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2020,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,146 -2010,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2011,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2012,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2013,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2014,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,172 -2015,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,176 -2016,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,185 -2017,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,195 -2018,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,185 -2019,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2020,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,169 -2000,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7541 -2001,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7482 -2002,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7481 -2003,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7400 -2004,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7396 -2005,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7420 -2006,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7341 -2007,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7312 -2008,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7219 -2009,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7260 -2010,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7139 -2011,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7086 -2012,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7148 -2013,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7126 -2014,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7144 -2015,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7140 -2016,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7102 -2017,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7136 -2018,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7165 -2019,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7118 -2020,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7112 -2010,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7225 -2011,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7184 -2012,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7254 -2013,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7236 -2014,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7263 -2015,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7249 -2016,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7224 -2017,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7285 -2018,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7300 -2019,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7247 -2020,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7242 -2010,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2001,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2002,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2003,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2004,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2005,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2006,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2007,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2008,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,141 -2009,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,151 -2010,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2011,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2012,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2013,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,180 -2014,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,177 -2015,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,169 -2016,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,199 -2017,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,223 -2018,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,202 -2019,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,200 -2020,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2010,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10309 -2011,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10341 -2012,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10278 -2013,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10193 -2014,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10051 -2015,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9981 -2016,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9917 -2017,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9844 -2018,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9731 -2019,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9622 -2020,geoId/01017,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9471 -2000,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11449 -2001,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11254 -2002,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11033 -2003,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10919 -2004,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10792 -2005,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10735 -2006,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10523 -2007,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10444 -2008,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10348 -2009,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10218 -2010,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10164 -2011,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10186 -2012,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10114 -2013,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10021 -2014,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9892 -2015,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9824 -2016,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9731 -2017,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9636 -2018,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9538 -2019,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9437 -2020,geoId/01017,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9299 -2000,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,142 -2001,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,185 -2002,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,214 -2003,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,230 -2004,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,241 -2005,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,258 -2006,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,280 -2007,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,301 -2008,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,305 -2009,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,329 -2010,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,332 -2011,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,338 -2012,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,375 -2013,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,391 -2014,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,402 -2015,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,397 -2016,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,430 -2017,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,456 -2018,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,476 -2019,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,479 -2020,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,505 -2010,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2001,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2002,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2003,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2004,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2005,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2006,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2007,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2008,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2009,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2010,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2011,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2012,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2013,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2014,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2015,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2016,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2017,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2018,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2019,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2020,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2010,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2011,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2012,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2013,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2014,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2015,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2016,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2017,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2018,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2019,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2020,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2010,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2000,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2001,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,146 -2002,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2003,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2004,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,184 -2005,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,184 -2006,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,205 -2007,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,219 -2008,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,215 -2009,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,227 -2010,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,229 -2011,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,227 -2012,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,251 -2013,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,272 -2014,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,282 -2015,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,269 -2016,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,285 -2017,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,307 -2018,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,325 -2019,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,330 -2020,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,351 -2010,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,232 -2011,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,232 -2012,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,258 -2013,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,280 -2014,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,290 -2015,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,280 -2016,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,301 -2017,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,328 -2018,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,341 -2019,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,346 -2020,geoId/01017,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,372 -2000,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17143 -2001,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17037 -2002,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16896 -2003,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16767 -2004,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16644 -2005,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16466 -2006,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16374 -2007,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16338 -2008,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16220 -2009,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16101 -2010,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15974 -2011,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15872 -2012,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15887 -2013,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15956 -2014,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15881 -2015,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15959 -2016,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15746 -2017,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15692 -2018,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15601 -2019,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15431 -2020,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15160 -2010,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2011,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2012,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2013,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2014,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2015,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2016,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2017,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2018,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2019,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2020,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2000,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2001,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2002,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2003,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2004,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2006,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2007,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2008,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2009,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2020,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2001,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2002,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2003,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2004,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2005,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2006,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2007,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2008,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2009,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2010,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2011,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2012,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2013,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,163 -2014,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,195 -2015,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,226 -2016,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,233 -2017,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,236 -2018,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,239 -2019,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,210 -2020,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,212 -2010,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2011,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2012,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2013,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,181 -2014,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,220 -2015,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,246 -2016,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,255 -2017,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,262 -2018,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,259 -2019,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,240 -2020,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,236 -2000,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6364 -2001,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6327 -2002,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6321 -2003,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6336 -2004,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6270 -2005,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6231 -2006,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6179 -2007,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6201 -2008,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6201 -2009,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6107 -2010,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6029 -2011,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5980 -2012,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6051 -2013,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6129 -2014,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6211 -2015,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6269 -2016,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6197 -2017,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6183 -2018,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6175 -2019,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6147 -2020,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6019 -2010,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6116 -2011,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6071 -2012,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6148 -2013,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6224 -2014,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6304 -2015,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6369 -2016,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6291 -2017,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6287 -2018,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6286 -2019,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6264 -2020,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6128 -2010,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2001,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2002,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2003,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2004,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2005,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2006,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2007,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,144 -2008,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2009,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,154 -2010,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2011,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2012,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,169 -2013,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2014,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,167 -2015,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,179 -2016,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,171 -2017,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,179 -2018,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2019,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,185 -2020,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,177 -2010,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9815 -2011,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9755 -2012,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9668 -2013,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9619 -2014,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9431 -2015,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9411 -2016,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9260 -2017,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9221 -2018,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9132 -2019,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9011 -2020,geoId/01017,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8863 -2000,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10642 -2001,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10564 -2002,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10415 -2003,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10262 -2004,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10197 -2005,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10046 -2006,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9972 -2007,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9904 -2008,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9781 -2009,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9745 -2010,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9670 -2011,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9610 -2012,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9512 -2013,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9458 -2014,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9273 -2015,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9242 -2016,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9104 -2017,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9058 -2018,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8966 -2019,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8846 -2020,geoId/01017,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8706 -2000,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,95 -2001,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,108 -2002,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,109 -2003,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,120 -2004,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,118 -2005,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,142 -2006,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,137 -2007,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,150 -2008,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,160 -2009,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,159 -2010,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,166 -2011,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,188 -2012,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,199 -2013,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,214 -2014,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,195 -2015,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,186 -2016,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,189 -2017,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,190 -2018,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,206 -2019,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,227 -2020,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,232 -2010,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2001,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2002,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2003,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2004,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2005,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2006,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2007,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2008,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2009,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2010,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2011,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2012,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,171 -2013,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,189 -2014,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2015,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,161 -2016,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,163 -2017,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2018,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,172 -2019,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,196 -2020,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,191 -2010,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,153 -2011,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,171 -2012,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2013,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,194 -2014,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,179 -2015,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,165 -2016,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,167 -2017,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,170 -2018,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,177 -2019,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,200 -2020,geoId/01019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,196 -2000,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12101 -2001,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12150 -2002,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12242 -2003,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12331 -2004,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12542 -2005,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12590 -2006,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12711 -2007,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12725 -2008,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12728 -2009,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12867 -2010,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12917 -2011,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12904 -2012,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12823 -2013,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12864 -2014,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12812 -2015,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12761 -2016,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12791 -2017,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12801 -2018,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12936 -2019,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13050 -2020,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13030 -2010,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2011,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2012,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2013,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2014,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2015,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,174 -2016,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2017,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2018,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,179 -2019,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,194 -2020,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,185 -2000,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2001,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2002,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2003,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2004,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2005,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2006,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2007,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2008,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2009,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2010,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2011,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2012,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2013,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2014,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2015,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2016,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2017,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2018,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2019,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2020,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2000,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2003,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2005,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2006,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2007,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2008,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2009,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2010,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2014,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2016,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2017,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2018,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2019,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2020,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2010,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2011,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2014,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2015,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2016,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2017,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2018,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2019,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2020,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2000,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,691 -2001,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,669 -2002,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,671 -2003,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,659 -2004,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,664 -2005,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,633 -2006,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,620 -2007,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,616 -2008,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,606 -2009,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,607 -2010,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,582 -2011,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,567 -2012,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,570 -2013,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,553 -2014,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,550 -2015,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,555 -2016,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,542 -2017,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,529 -2018,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,535 -2019,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,520 -2020,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,505 -2010,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,642 -2011,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,639 -2012,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,643 -2013,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,628 -2014,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,643 -2015,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,639 -2016,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,625 -2017,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,605 -2018,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,618 -2019,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,607 -2020,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,605 -2010,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2001,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2002,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2003,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2004,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2005,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,129 -2006,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2007,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,140 -2008,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2009,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2010,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,162 -2011,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,180 -2012,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,172 -2013,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,181 -2014,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2015,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,207 -2016,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,208 -2017,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,206 -2018,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,213 -2019,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,217 -2020,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,215 -2010,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12247 -2011,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12245 -2012,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12158 -2013,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12202 -2014,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12144 -2015,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12092 -2016,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12118 -2017,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12133 -2018,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12261 -2019,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12371 -2020,geoId/01019,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12357 -2000,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11278 -2001,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11346 -2002,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11426 -2003,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11509 -2004,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11700 -2005,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11768 -2006,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11890 -2007,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11897 -2008,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11894 -2009,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12019 -2010,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12093 -2011,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12075 -2012,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11993 -2013,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12035 -2014,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11971 -2015,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11894 -2016,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11922 -2017,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11941 -2018,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12055 -2019,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12163 -2020,geoId/01019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12159 -2000,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,107 -2001,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,124 -2002,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,126 -2003,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,123 -2004,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,125 -2005,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,138 -2006,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,142 -2007,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,146 -2008,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,146 -2009,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,157 -2010,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,161 -2011,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,173 -2012,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,195 -2013,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,207 -2014,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,186 -2015,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,204 -2016,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,202 -2017,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,214 -2018,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,225 -2019,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,229 -2020,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,250 -2010,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2000,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2001,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2002,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2003,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2004,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2005,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2006,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2007,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2008,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2009,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2010,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2011,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,156 -2012,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2013,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,186 -2014,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2015,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,177 -2016,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,176 -2017,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 -2018,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,189 -2019,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,200 -2020,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2010,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2011,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,160 -2012,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,181 -2013,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,192 -2014,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,174 -2015,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,185 -2016,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2017,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,195 -2018,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,203 -2019,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,207 -2020,geoId/01019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,229 -2000,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11703 -2001,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11800 -2002,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11926 -2003,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12017 -2004,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12102 -2005,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12161 -2006,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12476 -2007,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12532 -2008,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12602 -2009,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12671 -2010,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12724 -2011,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12728 -2012,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12744 -2013,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12737 -2014,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12707 -2015,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12588 -2016,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12587 -2017,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12617 -2018,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12668 -2019,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12748 -2020,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12782 -2010,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,168 -2011,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2012,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2013,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,178 -2014,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2015,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2016,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,195 -2017,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,195 -2018,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,187 -2019,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,180 -2020,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2000,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2001,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2002,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2003,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2004,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2005,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2006,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2007,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2008,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2009,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2010,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2011,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2012,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2013,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2015,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2016,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2017,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2018,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2019,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2020,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2000,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2001,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2002,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2007,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2008,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2009,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2010,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2011,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2013,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2015,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2016,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2017,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2018,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2019,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2020,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2000,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,643 -2001,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,616 -2002,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,628 -2003,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,620 -2004,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,618 -2005,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,611 -2006,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,631 -2007,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,633 -2008,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,638 -2009,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,645 -2010,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,616 -2011,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,619 -2012,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,610 -2013,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,583 -2014,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,569 -2015,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,561 -2016,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,564 -2017,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,546 -2018,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,574 -2019,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,559 -2020,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,576 -2010,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,680 -2011,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,693 -2012,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,687 -2013,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,648 -2014,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,643 -2015,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,634 -2016,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,642 -2017,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,625 -2018,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,656 -2019,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,644 -2020,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,665 -2010,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2001,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2002,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2003,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2004,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2005,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2006,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2007,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2008,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,162 -2009,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,171 -2010,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2011,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,176 -2012,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2013,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,181 -2014,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,190 -2015,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2016,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,200 -2017,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,203 -2018,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,199 -2019,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2020,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,200 -2010,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12002 -2011,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11999 -2012,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12025 -2013,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12050 -2014,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12024 -2015,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11912 -2016,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11900 -2017,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11948 -2018,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11973 -2019,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12059 -2020,geoId/01019,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12066 -2000,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10928 -2001,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11044 -2002,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11135 -2003,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11221 -2004,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11292 -2005,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11353 -2006,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11628 -2007,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11670 -2008,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11717 -2009,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11763 -2010,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11838 -2011,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11839 -2012,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11852 -2013,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11878 -2014,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11846 -2015,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11727 -2016,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11715 -2017,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11761 -2018,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11787 -2019,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11882 -2020,geoId/01019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11887 -2000,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,423 -2001,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,476 -2002,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,551 -2003,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,643 -2004,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,757 -2005,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,855 -2006,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,956 -2007,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1120 -2008,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1244 -2009,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1331 -2010,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1447 -2011,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1460 -2012,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1439 -2013,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1411 -2014,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1446 -2015,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1426 -2016,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1475 -2017,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1513 -2018,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1527 -2019,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1575 -2020,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1590 -2010,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2015,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2016,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2017,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2018,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2019,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2000,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2007,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2008,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2009,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2010,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2000,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2001,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2002,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2003,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2004,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2005,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2006,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2007,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2008,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2009,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2010,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2012,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2013,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2014,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2015,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2016,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2017,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2018,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2019,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2020,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2010,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2011,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2012,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2013,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2014,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2015,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2016,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2017,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2018,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2019,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2020,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2010,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2009,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2006,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2007,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2008,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2000,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,383 -2001,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,437 -2002,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,500 -2003,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,580 -2004,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,684 -2005,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,751 -2006,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,840 -2007,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,998 -2008,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1106 -2009,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1178 -2010,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1291 -2011,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1293 -2012,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1279 -2013,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1252 -2014,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1281 -2015,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1261 -2016,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1306 -2017,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1343 -2018,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1362 -2019,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1405 -2020,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1397 -2010,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1312 -2011,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1312 -2012,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1302 -2013,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1273 -2014,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1302 -2015,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1282 -2016,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1326 -2017,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1370 -2018,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1383 -2019,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1434 -2020,geoId/01021,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1428 -2000,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19746 -2001,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19850 -2002,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20041 -2003,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20142 -2004,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20350 -2005,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20450 -2006,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20474 -2007,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20579 -2008,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20636 -2009,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20604 -2010,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20600 -2011,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20746 -2012,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20622 -2013,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20695 -2014,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20755 -2015,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20745 -2016,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20867 -2017,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20888 -2018,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20925 -2019,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,21007 -2020,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,21071 -2010,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2011,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2012,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,141 -2013,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,145 -2014,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,139 -2015,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2016,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,162 -2017,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,169 -2018,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,170 -2019,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2020,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2000,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2001,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2002,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2003,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2004,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2005,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2006,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2007,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2008,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2009,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2010,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2011,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2012,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2014,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2015,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2016,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2017,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2018,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2019,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2020,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2000,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2001,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2002,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2003,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2004,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2005,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2006,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2007,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2008,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2009,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2010,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2011,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2012,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2013,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2014,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2015,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2016,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2017,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2018,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2019,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2020,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2010,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2011,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2012,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2013,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,134 -2014,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2015,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2016,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2017,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,153 -2018,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2019,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2020,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2000,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2175 -2001,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2196 -2002,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2193 -2003,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2164 -2004,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2172 -2005,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2148 -2006,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2126 -2007,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2130 -2008,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2134 -2009,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2138 -2010,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2126 -2011,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2176 -2012,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2174 -2013,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2214 -2014,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2279 -2015,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2255 -2016,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2287 -2017,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2291 -2018,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2273 -2019,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2288 -2020,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2277 -2010,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2224 -2011,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2295 -2012,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2299 -2013,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2341 -2014,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2418 -2015,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2400 -2016,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2426 -2017,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2428 -2018,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2416 -2019,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2438 -2020,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2426 -2010,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2001,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2002,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2003,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2004,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2005,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2006,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,140 -2007,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2008,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2009,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,168 -2010,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,179 -2011,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,205 -2012,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,209 -2013,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,226 -2014,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,237 -2015,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,246 -2016,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,244 -2017,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,252 -2018,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,261 -2019,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,271 -2020,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,263 -2010,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18311 -2011,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18408 -2012,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18265 -2013,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18298 -2014,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18292 -2015,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18301 -2016,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18386 -2017,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18387 -2018,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18434 -2019,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18510 -2020,geoId/01021,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18572 -2000,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17369 -2001,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17444 -2002,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17625 -2003,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17749 -2004,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17928 -2005,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18044 -2006,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18075 -2007,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18158 -2008,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18209 -2009,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18160 -2010,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18149 -2011,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18216 -2012,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18080 -2013,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18089 -2014,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18078 -2015,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18073 -2016,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18161 -2017,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18155 -2018,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18189 -2019,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18254 -2020,geoId/01021,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18336 -2000,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,743 -2001,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,797 -2002,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,915 -2003,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1046 -2004,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1147 -2005,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1227 -2006,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1289 -2007,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1468 -2008,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1614 -2009,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1850 -2010,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1978 -2011,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1879 -2012,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1891 -2013,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1854 -2014,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1866 -2015,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1868 -2016,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1852 -2017,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1848 -2018,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1880 -2019,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1917 -2020,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1934 -2010,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2011,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2013,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2014,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2015,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2016,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2017,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2018,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2019,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2020,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2000,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2006,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2007,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2008,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2009,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2012,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2015,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2016,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2018,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2019,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2020,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2000,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2000,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2001,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2002,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2003,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2004,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2005,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2006,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2007,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2008,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2009,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2010,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2011,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2012,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2013,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2014,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2015,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2016,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2017,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2018,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2019,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2020,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2010,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2011,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2012,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2013,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2014,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2015,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2016,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2017,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2018,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,129 -2019,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2020,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2010,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2011,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2012,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2013,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2014,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2015,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2016,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2017,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2019,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2020,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2000,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2004,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2005,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2007,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2008,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2009,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2010,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2011,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2012,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2013,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2016,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2000,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2008,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2009,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2011,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2014,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2016,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2017,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2000,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,674 -2001,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,721 -2002,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,823 -2003,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,935 -2004,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1020 -2005,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1072 -2006,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1113 -2007,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1284 -2008,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1410 -2009,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1626 -2010,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1752 -2011,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1661 -2012,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1669 -2013,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1624 -2014,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1627 -2015,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1630 -2016,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1624 -2017,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1606 -2018,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1637 -2019,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1666 -2020,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1667 -2010,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1784 -2011,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1695 -2012,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1704 -2013,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1655 -2014,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1659 -2015,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1666 -2016,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1653 -2017,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1643 -2018,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1673 -2019,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1705 -2020,geoId/01021,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1709 -2000,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18985 -2001,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19074 -2002,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19176 -2003,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19248 -2004,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19280 -2005,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19414 -2006,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19599 -2007,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19714 -2008,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19745 -2009,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19699 -2010,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19620 -2011,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19597 -2012,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19620 -2013,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19657 -2014,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19684 -2015,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19654 -2016,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19660 -2017,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19836 -2018,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19752 -2019,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19814 -2020,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19802 -2010,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2011,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2012,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,151 -2013,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,164 -2014,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2015,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,164 -2016,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2017,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2018,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2019,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2020,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,177 -2000,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2001,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2002,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2003,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2004,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2005,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2006,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2007,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2008,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2009,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2010,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2012,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2013,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2014,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2015,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2016,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2017,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2018,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2019,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2020,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2000,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2001,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2002,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2003,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2004,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2005,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2006,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2007,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2008,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2009,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2010,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2011,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2012,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2013,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2014,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2015,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2016,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2017,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2018,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2020,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2010,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2011,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2012,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2013,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2014,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2015,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2016,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2017,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2018,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2019,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2020,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2000,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1960 -2001,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2006 -2002,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2032 -2003,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2044 -2004,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2009 -2005,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1986 -2006,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2025 -2007,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2042 -2008,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2048 -2009,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2045 -2010,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2056 -2011,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2051 -2012,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2050 -2013,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2054 -2014,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2121 -2015,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2108 -2016,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2069 -2017,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2123 -2018,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2110 -2019,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2145 -2020,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2128 -2010,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2151 -2011,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2156 -2012,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2152 -2013,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2165 -2014,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2252 -2015,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2257 -2016,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2224 -2017,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2282 -2018,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2271 -2019,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2317 -2020,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2285 -2010,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2001,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2002,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2003,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,123 -2004,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2005,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2006,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2007,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2008,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2009,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,174 -2010,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,180 -2011,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2012,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,194 -2013,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,210 -2014,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,234 -2015,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,252 -2016,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,260 -2017,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,262 -2018,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,273 -2019,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,282 -2020,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,259 -2010,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17421 -2011,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17396 -2012,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17407 -2013,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17428 -2014,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17385 -2015,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17371 -2016,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17423 -2017,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17529 -2018,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17473 -2019,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17494 -2020,geoId/01021,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17485 -2000,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16846 -2001,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16878 -2002,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16940 -2003,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16985 -2004,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17045 -2005,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17200 -2006,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17323 -2007,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17415 -2008,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17423 -2009,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17353 -2010,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17255 -2011,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17225 -2012,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17229 -2013,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17232 -2014,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17169 -2015,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17136 -2016,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17182 -2017,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17297 -2018,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17214 -2019,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17231 -2020,geoId/01021,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17248 -2000,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,60 -2001,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,58 -2002,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,54 -2003,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,53 -2004,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,52 -2005,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,45 -2006,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,38 -2007,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,40 -2008,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,35 -2009,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,33 -2010,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,34 -2011,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,35 -2012,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,45 -2013,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,50 -2014,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,60 -2015,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,65 -2016,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,69 -2017,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,67 -2018,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,68 +2000,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7789 +2003,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15215 +2004,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6496 +2006,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3249 +2012,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3019 +2019,geoId/01,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7572 +2020,geoId/23,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1343 +2020,geoId/23,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 +2020,geoId/23,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 +2020,geoId/23,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 +2020,geoId/23,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 +2020,geoId/23,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 +2020,geoId/23,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 +2020,geoId/23,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 +2020,geoId/23,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 +2020,geoId/23,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 +2020,geoId/23,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1145 +2020,geoId/23,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1231 +2020,geoId/23,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,75080 +2020,geoId/23,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1557 +2020,geoId/23,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,901 +2020,geoId/23,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,946 +2020,geoId/23,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1255 +2020,geoId/23,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,568 +2020,geoId/23,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,948 +2020,geoId/23,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 +2020,geoId/23,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 +2020,geoId/23,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1295 +2020,geoId/23,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72620 +2020,geoId/23,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,71347 +2020,geoId/23,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1391 +2020,geoId/23,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 +2020,geoId/23,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 +2020,geoId/23,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 +2020,geoId/23,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 +2020,geoId/23,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 +2020,geoId/23,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 +2020,geoId/23,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 +2020,geoId/23,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 +2020,geoId/23,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 +2020,geoId/23,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1155 +2020,geoId/23,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1245 +2020,geoId/23,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,74355 +2020,geoId/23,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1551 +2020,geoId/23,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,922 +2020,geoId/23,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,824 +2020,geoId/23,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1137 +2020,geoId/23,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,835 +2020,geoId/23,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1211 +2020,geoId/23,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 +2020,geoId/23,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 +2020,geoId/23,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1260 +2020,geoId/23,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71725 +2020,geoId/23,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,70492 +2020,geoId/31,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,12 +2020,geoId/31,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2020,geoId/31,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2020,geoId/31,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2020,geoId/31,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 +2020,geoId/31,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 +2020,geoId/31,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,348 +2020,geoId/31,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 +2020,geoId/31,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2020,geoId/31,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2020,geoId/31,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 +2020,geoId/31,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,346 +2020,geoId/31,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,343 +2020,geoId/31,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,8 +2020,geoId/31,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2020,geoId/31,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2020,geoId/31,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 +2020,geoId/31,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 +2020,geoId/31,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,337 +2020,geoId/31,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2020,geoId/31,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 +2020,geoId/31,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2020,geoId/31,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 +2020,geoId/31,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2020,geoId/31,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 +2020,geoId/31,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,334 +2020,geoId/31,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,330 +2022,geoId/46,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,18 +2023,geoId/46,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,34 +2022,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 +2023,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 +2022,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 +2023,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 +2022,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 +2022,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2022,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2023,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2023,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 +2023,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 +2022,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 +2023,geoId/46,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 +2022,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,682 +2023,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,1032 +2022,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 +2023,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 +2022,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 +2023,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 +2022,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 +2022,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2023,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 +2022,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 +2023,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 +2022,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 +2023,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 +2022,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 +2023,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 +2022,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,660 +2023,geoId/46,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1018 +2022,geoId/46,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,648 +2023,geoId/46,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1012 +2022,geoId/46,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,25 +2023,geoId/46,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,29 +2022,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 +2023,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2023,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 +2023,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2022,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2023,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2022,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2023,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 +2023,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 +2023,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 +2022,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 +2023,geoId/46,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 +2022,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,757 +2023,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,1056 +2022,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 +2023,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 +2022,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 +2023,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 +2022,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 +2023,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2022,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2023,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 +2022,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 +2023,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 +2022,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 +2023,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 +2022,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2022,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 +2023,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 +2022,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,706 +2023,geoId/46,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1040 +2022,geoId/46,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,699 +2023,geoId/46,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1035 +1990,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1991,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1993,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,9 +1995,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1996,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,9 +1997,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,12 +1998,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1999,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1990,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,41 +1991,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1992,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,48 +1993,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,47 +1994,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,50 +1995,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,54 +1996,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,54 +1997,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,68 +1998,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,65 +1999,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,67 +1990,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,184 +1991,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,196 +1992,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,210 +1993,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,234 +1994,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,266 +1995,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,295 +1996,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,328 +1997,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,359 +1998,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,391 +1999,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,441 +1990,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,71 +1991,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,74 +1992,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,75 +1993,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,71 +1994,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,71 +1995,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,72 +1996,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,72 +1997,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,76 +1998,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,77 +1999,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,77 +1990,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,118 +1991,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,124 +1992,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,133 +1993,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,140 +1994,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,150 +1995,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,159 +1996,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,170 +1997,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,174 +1998,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,184 +1999,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,187 +1990,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6854 +1991,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7016 +1992,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7275 +1993,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7538 +1994,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7853 +1995,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8122 +1996,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8392 +1997,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8684 +1998,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8935 +1999,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9204 +1990,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,27085 +1991,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,27560 +1992,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28257 +1993,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28942 +1994,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,29819 +1995,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,30445 +1996,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,31226 +1997,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,31920 +1998,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,32531 +1999,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,33151 +1990,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1991,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1992,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1993,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1994,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1995,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1996,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1997,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1998,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1999,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1990,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1991,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1992,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1993,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1994,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1995,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,8 +1996,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,9 +1997,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,8 +1998,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1999,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1990,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,61 +1991,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,67 +1992,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,70 +1993,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,72 +1994,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,79 +1995,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,81 +1996,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,91 +1997,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,89 +1998,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,96 +1999,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,107 +1990,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,961 +1991,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1014 +1992,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1099 +1993,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1216 +1994,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1363 +1995,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1536 +1996,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1724 +1997,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1964 +1998,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2174 +1999,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2367 +1990,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,629 +1991,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,646 +1992,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,651 +1993,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,655 +1994,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,672 +1995,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,691 +1996,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,693 +1997,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,709 +1998,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,721 +1999,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,712 +1990,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,216 +1991,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,227 +1992,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,242 +1993,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,275 +1994,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,285 +1995,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,308 +1996,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,320 +1997,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,336 +1998,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,349 +1999,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,360 +1990,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12690 +1991,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13197 +1992,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13822 +1993,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,14538 +1994,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15309 +1995,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,16020 +1996,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,16655 +1997,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,17437 +1998,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,18110 +1999,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,18630 +1990,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,84347 +1991,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,87062 +1992,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,90329 +1993,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,94103 +1994,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,98109 +1995,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,101303 +1996,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,104759 +1997,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,108207 +1998,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,111390 +1999,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,113618 +1990,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1991,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1992,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1993,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1995,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1996,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1997,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1999,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1990,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1992,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1993,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1994,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1995,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1996,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1997,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1998,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1999,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1990,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,41 +1991,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,38 +1992,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1993,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,37 +1994,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1995,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,40 +1996,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1997,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,50 +1998,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,50 +1999,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,52 +1990,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,76 +1991,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,78 +1992,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,82 +1993,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,85 +1994,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,87 +1995,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,93 +1996,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,108 +1997,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,125 +1998,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,132 +1999,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,141 +1990,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,40 +1991,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1992,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1993,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,49 +1994,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,48 +1995,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1996,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1997,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,44 +1998,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,47 +1999,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1990,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,43 +1991,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,45 +1992,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,46 +1993,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,47 +1994,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,49 +1995,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,48 +1996,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,50 +1997,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,53 +1998,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,52 +1999,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,55 +1990,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11177 +1991,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11694 +1992,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11848 +1993,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12042 +1994,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12208 +1995,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12230 +1996,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12386 +1997,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12409 +1998,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12559 +1999,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12517 +1990,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14068 +1991,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14322 +1992,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14364 +1993,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14371 +1994,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14350 +1995,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14203 +1996,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14226 +1997,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14061 +1998,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14088 +1999,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13904 +1990,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1991,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1992,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1993,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1994,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1995,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1996,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1997,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1998,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1999,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1990,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1991,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1992,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,31 +1993,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,33 +1994,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1995,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,41 +1996,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,47 +1997,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,55 +1998,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,58 +1999,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,63 +1990,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1991,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1992,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,26 +1993,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,26 +1994,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,26 +1995,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1996,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1997,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1998,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1999,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1990,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1991,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,12 +1992,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,12 +1993,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,12 +1994,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1995,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,15 +1996,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,20 +1997,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,18 +1998,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,20 +1999,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,18 +1990,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3488 +1991,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3578 +1992,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3663 +1993,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3755 +1994,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3824 +1995,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3938 +1996,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4020 +1997,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4152 +1998,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4253 +1999,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4418 +1990,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13113 +1991,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13300 +1992,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13450 +1993,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13611 +1994,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13729 +1995,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13954 +1996,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14128 +1997,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14374 +1998,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14614 +1999,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15059 +1990,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1991,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1992,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1993,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1994,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1995,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1996,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1997,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1998,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1999,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1990,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1995,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1999,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1991,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1992,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1993,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1994,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1995,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1996,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1997,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1998,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1999,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1990,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,267 +1991,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,277 +1992,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,294 +1993,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,320 +1994,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,355 +1995,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,401 +1996,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,450 +1997,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,492 +1998,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,551 +1999,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,602 +1990,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,129 +1991,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,133 +1992,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,130 +1993,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,129 +1994,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,123 +1995,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,132 +1996,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,129 +1997,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,137 +1998,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,135 +1999,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,133 +1990,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,33 +1991,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,34 +1992,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,36 +1993,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,41 +1994,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,41 +1995,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,43 +1996,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,43 +1997,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,46 +1998,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,48 +1999,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,50 +1990,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,544 +1991,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,551 +1992,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,565 +1993,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,579 +1994,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,589 +1995,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,617 +1996,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,637 +1997,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,672 +1998,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,691 +1999,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,715 +1990,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,38428 +1991,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,38863 +1992,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,39197 +1993,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,39914 +1994,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,40242 +1995,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,41380 +1996,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,42270 +1997,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,43538 +1998,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,44854 +1999,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,45892 +1990,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1995,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1996,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1995,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1996,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1997,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1998,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1999,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1990,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,40 +1991,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,37 +1992,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1993,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1994,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,38 +1995,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,37 +1996,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,44 +1997,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1998,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1999,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1990,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,26 +1991,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1992,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1993,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1994,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1995,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1996,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,33 +1997,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,40 +1998,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,44 +1999,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1990,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1991,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1992,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1993,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1994,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1995,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1996,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1997,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1998,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1999,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1990,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1991,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1992,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1993,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1994,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1995,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1996,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1997,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1998,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1999,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1990,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7921 +1991,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7987 +1992,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7924 +1993,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7983 +1994,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8082 +1995,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8117 +1996,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8189 +1997,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8199 +1998,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8226 +1999,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8253 +1990,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3017 +1991,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3069 +1992,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3026 +1993,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3016 +1994,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3019 +1995,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,2998 +1996,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3020 +1997,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3003 +1998,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,2994 +1999,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,2966 +1990,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1991,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1992,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1993,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1994,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1995,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1996,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1997,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1998,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1999,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1990,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,50 +1991,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,47 +1992,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1993,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,50 +1994,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,49 +1995,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,55 +1996,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,56 +1997,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,72 +1998,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,78 +1999,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,81 +1990,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1991,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1992,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1993,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1994,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1995,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1996,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1997,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1998,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,17 +1999,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1990,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,19 +1991,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,19 +1992,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,19 +1993,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,19 +1994,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,19 +1995,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,20 +1996,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,21 +1997,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,21 +1998,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,20 +1999,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,20 +1990,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8780 +1991,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8746 +1992,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8810 +1993,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8870 +1994,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8953 +1995,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8982 +1996,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9042 +1997,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9097 +1998,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9083 +1999,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9069 +1990,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12996 +1991,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12893 +1992,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12858 +1993,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12808 +1994,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12759 +1995,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12680 +1996,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12650 +1997,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12546 +1998,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12450 +1999,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12316 +1990,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1991,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1992,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1993,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1994,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1995,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1996,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1997,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1998,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1999,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1990,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,64 +1991,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,51 +1992,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,51 +1993,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,55 +1994,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,72 +1995,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,84 +1996,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,89 +1997,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,86 +1998,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,117 +1999,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,100 +1990,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,152 +1991,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,135 +1992,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,145 +1993,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,146 +1994,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,151 +1995,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,161 +1996,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,167 +1997,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,176 +1998,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,177 +1999,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,188 +1990,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1057 +1991,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1062 +1992,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1112 +1993,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1196 +1994,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1301 +1995,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1391 +1996,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1533 +1997,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1670 +1998,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1791 +1999,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1883 +1990,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,292 +1991,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,287 +1992,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,273 +1993,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,276 +1994,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,260 +1995,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,259 +1996,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,266 +1997,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,267 +1998,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,255 +1999,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,245 +1990,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,821 +1991,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,838 +1992,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,859 +1993,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,904 +1994,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,917 +1995,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,945 +1996,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,963 +1997,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,971 +1998,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,964 +1999,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,956 +1990,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21514 +1991,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21337 +1992,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21518 +1993,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21741 +1994,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21899 +1995,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22206 +1996,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22271 +1997,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22589 +1998,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22677 +1999,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22729 +1990,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,92207 +1991,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,91502 +1992,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,91785 +1993,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,91926 +1994,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,91468 +1995,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,91634 +1996,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,91281 +1997,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,91362 +1998,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,91093 +1999,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,90433 +1990,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1991,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1992,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1993,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1995,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1996,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1997,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1998,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1999,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1990,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1992,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1995,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1999,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1990,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,40 +1991,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1992,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1993,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,32 +1994,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,33 +1995,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,37 +1996,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,42 +1997,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,38 +1998,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,45 +1999,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,35 +1990,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,81 +1991,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,82 +1992,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,82 +1993,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,88 +1994,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,94 +1995,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,96 +1996,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,111 +1997,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,123 +1998,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,138 +1999,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,150 +1990,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1991,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,35 +1992,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,35 +1993,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,32 +1994,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,33 +1995,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,33 +1996,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,32 +1997,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1998,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1999,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1990,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,12 +1991,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,12 +1992,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1993,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1994,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,15 +1995,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1996,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1997,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,14 +1998,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,14 +1999,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,14 +1990,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13214 +1991,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13271 +1992,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13397 +1993,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13488 +1994,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13632 +1995,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13770 +1996,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13716 +1997,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13764 +1998,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13847 +1999,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13801 +1990,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,23493 +1991,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,23462 +1992,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,23460 +1993,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,23340 +1994,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,23218 +1995,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,23177 +1996,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,22937 +1997,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,22661 +1998,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,22629 +1999,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,22332 +1990,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1991,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1992,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1993,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1994,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1995,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1996,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1997,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1998,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1999,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1990,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,53 +1991,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,55 +1992,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,52 +1993,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,60 +1994,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,68 +1995,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,75 +1996,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,88 +1997,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,96 +1998,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,103 +1999,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,108 +1990,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1991,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1992,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,50 +1993,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,50 +1994,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1995,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,48 +1996,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1997,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1998,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,52 +1999,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,53 +1990,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,24 +1991,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,24 +1992,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,25 +1993,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,26 +1994,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,26 +1995,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,30 +1996,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,28 +1997,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,30 +1998,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,31 +1999,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,29 +1990,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1287 +1991,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1315 +1992,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1350 +1993,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1385 +1994,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1420 +1995,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1464 +1996,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1495 +1997,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1543 +1998,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1579 +1999,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1596 +1990,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,18184 +1991,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,18227 +1992,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,18333 +1993,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,18648 +1994,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,18928 +1995,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,19337 +1996,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,19615 +1997,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,19875 +1998,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,20057 +1999,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,20104 +1990,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1992,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1993,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1995,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1996,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1997,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1999,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1990,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1992,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1993,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1994,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1995,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1996,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1997,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1998,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1999,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1990,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1991,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1992,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1993,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1994,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,17 +1995,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1996,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1997,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1998,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1999,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1990,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,97 +1991,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,98 +1992,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,104 +1993,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,111 +1994,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,122 +1995,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,146 +1996,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,161 +1997,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,187 +1998,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,196 +1999,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,209 +1990,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,63 +1991,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,66 +1992,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,61 +1993,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,65 +1994,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,65 +1995,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,65 +1996,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,69 +1997,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,70 +1998,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,69 +1999,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,72 +1990,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,34 +1991,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,36 +1992,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,38 +1993,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,38 +1994,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,39 +1995,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,42 +1996,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,46 +1997,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,46 +1998,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,48 +1999,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,49 +1990,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3680 +1991,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3773 +1992,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3820 +1993,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3918 +1994,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4019 +1995,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4135 +1996,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4260 +1997,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4384 +1998,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4499 +1999,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4622 +1990,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28630 +1991,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,29056 +1992,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,29182 +1993,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,29513 +1994,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,29928 +1995,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,30438 +1996,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,31075 +1997,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,31602 +1998,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,32089 +1999,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,32626 2019,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,73 -2020,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,84 -2010,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 2019,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2019,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 2019,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 2019,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2001,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2002,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2003,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2004,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2005,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 2019,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 2019,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 2019,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2019,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 2019,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2001,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2002,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2003,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2004,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2005,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2007,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2008,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2016,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2017,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2018,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 2019,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2020,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2010,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2016,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2017,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2018,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 2019,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2020,geoId/01023,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2000,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8330 -2001,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8200 -2002,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8028 -2003,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7922 -2004,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7779 -2005,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7552 -2006,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7419 -2007,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7316 -2008,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7306 -2009,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7160 -2010,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7141 -2011,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7074 -2012,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7011 -2013,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6937 -2014,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6898 -2015,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6876 -2016,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6770 -2017,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6737 -2018,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6687 2019,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6570 -2020,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6458 -2010,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 2019,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2000,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 2019,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 2019,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 2019,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2000,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3795 -2001,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3695 -2002,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3624 -2003,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3566 -2004,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3492 -2005,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3365 -2006,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3324 -2007,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3253 -2008,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3320 -2009,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3178 -2010,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3160 -2011,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3144 -2012,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3115 -2013,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3062 -2014,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3028 -2015,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2995 -2016,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2937 -2017,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2933 -2018,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2913 2019,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2865 -2020,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2810 -2010,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3178 -2011,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3163 -2012,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3133 -2013,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3079 -2014,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3047 -2015,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3018 -2016,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2958 -2017,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2948 -2018,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2936 2019,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2886 -2020,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2840 -2010,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 2019,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2019,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2001,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2002,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2003,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2004,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2005,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2007,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2008,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2009,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2011,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2014,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 2019,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2010,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3965 -2011,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3910 -2012,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3874 -2013,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3849 -2014,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3843 -2015,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3857 -2016,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3811 -2017,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3780 -2018,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3750 2019,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3678 -2020,geoId/01023,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3619 -2000,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4489 -2001,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4459 -2002,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4359 -2003,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4312 -2004,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4244 -2005,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4150 -2006,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4054 -2007,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4022 -2008,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3945 -2009,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3941 -2010,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3937 -2011,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3881 -2012,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3843 -2013,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3816 -2014,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3814 -2015,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3823 -2016,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3773 -2017,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3744 -2018,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3705 2019,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3638 -2020,geoId/01023,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3569 -2000,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,47 -2001,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,46 -2002,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,45 -2003,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,42 -2004,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,39 -2005,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,38 -2006,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,41 -2007,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,42 -2008,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,39 -2009,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,40 -2010,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,40 -2011,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,37 -2012,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,44 -2013,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,46 -2014,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,51 -2015,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,54 -2016,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,56 -2017,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,54 -2018,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,66 +1990,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1993,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1994,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1995,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1996,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1997,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1999,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1990,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1991,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1992,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1993,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1994,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1995,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1996,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1997,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1998,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1999,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,26 +1990,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,26 +1991,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1992,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1993,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1994,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1995,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1996,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,35 +1997,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1998,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,42 +1999,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 2019,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,58 -2020,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,63 -2010,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 2019,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 2019,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2019,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 2019,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2003,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2004,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 2019,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 2019,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 2019,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2019,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 2019,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2001,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2002,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2003,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2004,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2005,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2008,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2009,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2010,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 2019,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2010,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 2019,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01023,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2000,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7438 -2001,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7373 -2002,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7240 -2003,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7182 -2004,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7060 -2005,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6910 -2006,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6933 -2007,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6818 -2008,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6734 -2009,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6743 -2010,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6633 -2011,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6462 -2012,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6465 -2013,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6368 -2014,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6313 -2015,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6242 -2016,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6154 -2017,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6065 -2018,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5989 2019,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5876 -2020,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5813 -2010,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2017,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 2019,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2000,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2002,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2003,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 2019,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 2019,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 2019,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3208 -2001,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3192 -2002,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3092 -2003,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3060 -2004,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3015 -2005,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2922 -2006,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2970 -2007,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2918 -2008,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2881 -2009,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2888 -2010,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2810 -2011,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2700 -2012,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2699 -2013,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2641 -2014,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2580 -2015,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2522 -2016,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2490 -2017,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2453 -2018,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2397 2019,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2347 -2020,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2312 -2010,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2826 -2011,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2717 -2012,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2718 -2013,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2664 -2014,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2600 -2015,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2541 -2016,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2512 -2017,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2473 -2018,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2424 2019,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2377 -2020,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2342 -2010,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 2019,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2019,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2001,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2002,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2003,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2004,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2006,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2007,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2008,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2009,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2010,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2014,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 2019,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2010,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3804 -2011,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3741 -2012,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3739 -2013,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3696 -2014,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3704 -2015,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3698 -2016,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3640 -2017,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3586 -2018,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3562 2019,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3502 -2020,geoId/01023,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3471 -2000,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4186 -2001,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4138 -2002,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4106 -2003,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4081 -2004,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4005 -2005,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3947 -2006,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3915 -2007,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3856 -2008,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3807 -2009,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3809 -2010,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3775 -2011,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3713 -2012,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3712 -2013,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3663 -2014,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3670 -2015,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3663 -2016,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3602 -2017,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3549 -2018,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3527 2019,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3464 -2020,geoId/01023,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3430 -2000,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,104 -2001,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,108 -2002,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,105 -2003,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,105 -2004,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,111 -2005,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,122 -2006,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,127 -2007,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,122 -2008,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,123 -2009,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,129 -2010,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,133 -2011,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,137 -2012,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,143 -2013,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,152 -2014,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,160 -2015,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,162 -2016,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,161 -2017,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,157 -2018,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,152 -2019,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,155 -2020,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,151 -2010,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2001,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2002,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2003,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2004,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2005,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2006,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2007,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2008,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2009,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2010,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2011,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2013,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2014,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2017,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2018,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2012,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2014,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2015,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2017,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2001,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2002,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2003,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2004,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2005,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2006,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2007,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2008,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2009,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2010,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2011,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2012,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2013,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2014,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2015,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2016,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2017,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2018,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2019,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2020,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2010,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2011,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2012,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2013,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2014,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2015,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2016,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2017,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2018,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2019,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2020,geoId/01025,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2000,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14562 -2001,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14433 -2002,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14246 -2003,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14139 -2004,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14063 -2005,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13979 -2006,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13937 -2007,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13799 -2008,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13683 -2009,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13556 -2010,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13459 -2011,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13387 -2012,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13117 -2013,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13083 -2014,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12956 -2015,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12875 -2016,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12675 -2017,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12573 -2018,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12483 -2019,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12307 -2020,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12126 -2010,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2011,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2012,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2013,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2014,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2015,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2016,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2017,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2018,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2019,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2020,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2000,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2001,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2002,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2003,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2004,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2005,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2006,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2007,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2008,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2009,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2010,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2011,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2012,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2013,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2014,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2016,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2017,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2018,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2019,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2020,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2000,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2003,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2004,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2005,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2006,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2007,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2008,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2009,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2010,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2011,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2012,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2013,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2014,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2016,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2017,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2018,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2019,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2020,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2010,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2011,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2012,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2013,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2015,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2016,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2017,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2019,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2020,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2000,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6441 -2001,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6420 -2002,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6337 -2003,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6332 -2004,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6279 -2005,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6254 -2006,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6288 -2007,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6255 -2008,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6197 -2009,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6178 -2010,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6161 -2011,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6127 -2012,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5978 -2013,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5942 -2014,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5894 -2015,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5853 -2016,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5763 -2017,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5721 -2018,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5720 -2019,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5708 -2020,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5669 -2010,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6200 -2011,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6173 -2012,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6020 -2013,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5992 -2014,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5954 -2015,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5912 -2016,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5830 -2017,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5784 -2018,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5783 -2019,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5767 -2020,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5738 -2010,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2001,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2002,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2003,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2004,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2005,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2006,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2007,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2008,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2009,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2010,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2011,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2012,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2013,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2014,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2015,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2016,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2017,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2018,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2019,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2020,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2010,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7186 -2011,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7148 -2012,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7023 -2013,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7024 -2014,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6940 -2015,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6897 -2016,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6773 -2017,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6715 -2018,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6630 -2019,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6469 -2020,geoId/01025,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6330 -2000,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8003 -2001,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7895 -2002,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7786 -2003,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7682 -2004,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7651 -2005,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7575 -2006,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7496 -2007,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7384 -2008,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7325 -2009,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7212 -2010,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7124 -2011,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7076 -2012,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6946 -2013,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6940 -2014,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6857 -2015,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6808 -2016,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6683 -2017,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6624 -2018,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6525 -2019,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6366 -2020,geoId/01025,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6224 -2000,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,76 -2001,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,88 -2002,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,83 -2003,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,98 -2004,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,104 -2005,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,100 -2006,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,111 -2007,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,115 -2008,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,126 -2009,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,131 -2010,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,141 -2011,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,154 -2012,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,144 -2013,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,160 -2014,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,176 -2015,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,183 -2016,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,175 -2017,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,164 -2018,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,169 -2019,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,163 -2020,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,164 -2010,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2001,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2002,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2003,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2004,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2005,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2006,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2007,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2008,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2009,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2010,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2011,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2013,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2011,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2012,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2013,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2016,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2010,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2001,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2002,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2003,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2004,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2005,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2006,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2007,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2008,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2009,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2010,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2011,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2012,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2013,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2014,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2015,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2016,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2017,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2018,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2019,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2020,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2010,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2011,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2012,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2013,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2014,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2015,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,144 -2016,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2017,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,123 -2018,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2019,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2020,geoId/01025,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2000,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13077 -2001,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12995 -2002,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12833 -2003,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12748 -2004,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12680 -2005,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12563 -2006,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12580 -2007,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12400 -2008,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12351 -2009,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12222 -2010,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12034 -2011,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11911 -2012,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11757 -2013,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11736 -2014,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11581 -2015,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11491 -2016,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11331 -2017,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11189 -2018,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11161 -2019,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11026 -2020,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10850 -2010,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2011,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2012,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2013,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2014,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2015,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2016,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2017,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2018,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2019,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2020,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2000,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2001,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2002,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2003,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2004,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2005,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2006,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2007,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2008,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2009,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2010,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2011,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2013,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2020,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2000,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2001,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2002,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2003,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2004,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2005,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2008,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2009,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2012,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2015,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2019,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2020,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2010,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2011,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2014,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2015,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2016,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2017,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2018,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2019,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2000,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5499 -2001,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5432 -2002,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5368 -2003,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5322 -2004,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5315 -2005,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5277 -2006,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5302 -2007,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5238 -2008,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5248 -2009,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5204 -2010,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5128 -2011,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5087 -2012,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5023 -2013,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5083 -2014,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5048 -2015,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5011 -2016,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4976 -2017,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4905 -2018,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4876 -2019,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4856 -2020,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4794 -2010,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5170 -2011,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5129 -2012,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5071 -2013,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5130 -2014,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5100 -2015,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5063 -2016,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5027 -2017,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4959 -2018,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4943 -2019,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4929 -2020,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4864 -2010,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2001,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2002,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2003,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2004,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2005,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2006,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2007,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2008,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2009,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2010,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2011,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2012,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2013,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2014,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2015,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2016,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2017,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2018,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2019,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2020,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2010,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6822 -2011,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6735 -2012,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6641 -2013,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6562 -2014,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6438 -2015,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6394 -2016,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6263 -2017,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6182 -2018,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6176 -2019,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6054 -2020,geoId/01025,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5943 -2000,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7471 -2001,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7449 -2002,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7349 -2003,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7306 -2004,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7239 -2005,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7163 -2006,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7139 -2007,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7024 -2008,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6960 -2009,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6868 -2010,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6757 -2011,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6665 -2012,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6568 -2013,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6486 -2014,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6359 -2015,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6312 -2016,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6182 -2017,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6102 -2018,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6080 -2019,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5959 -2020,geoId/01025,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5844 -2000,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,92 -2001,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,114 -2002,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,123 -2003,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,112 -2004,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,118 -2005,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,143 -2006,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,143 -2007,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,137 -2008,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,146 -2009,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,153 -2010,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,155 -2011,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,158 -2012,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,167 -2013,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,168 -2014,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,171 -2015,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,176 -2016,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,169 -2017,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,185 -2018,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,182 -2019,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,200 -2020,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,197 -2010,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2010,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2001,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2002,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2003,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2004,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2005,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2006,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2007,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2008,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2009,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2010,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,150 -2011,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,152 -2012,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2013,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2014,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,157 -2015,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2016,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2017,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2018,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2019,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2020,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2010,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2011,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2012,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2013,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,160 -2014,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2015,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2016,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2017,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2018,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,160 -2019,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,172 -2020,geoId/01027,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,169 -2000,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7217 -2001,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7197 -2002,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7171 -2003,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7148 -2004,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7115 -2005,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7068 -2006,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7062 -2007,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7051 -2008,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7089 -2009,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6931 -2010,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6936 -2011,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6855 -2012,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6674 -2013,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6704 -2014,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6674 -2015,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6640 -2016,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6663 -2017,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6624 -2018,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6628 -2019,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6595 -2020,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6528 -2010,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2011,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2012,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2013,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2014,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2015,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2016,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2017,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2018,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2019,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2020,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2000,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2002,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2004,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2005,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2008,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2009,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2014,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2016,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2019,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2000,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1168 -2001,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1142 -2002,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1148 -2003,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1156 -2004,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1123 -2005,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1130 -2006,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1094 -2007,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1093 -2008,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1130 -2009,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1069 -2010,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1053 -2011,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1037 -2012,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,982 -2013,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1006 -2014,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1007 -2015,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,980 -2016,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,970 -2017,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,959 -2018,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,962 -2019,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,948 -2020,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,936 -2010,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1116 -2011,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1108 -2012,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1039 -2013,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1067 -2014,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1083 -2015,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1060 -2016,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1041 -2017,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1028 -2018,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1041 -2019,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1030 -2020,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1022 -2010,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2001,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2002,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2003,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2004,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2005,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2006,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2007,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2008,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2009,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2010,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2011,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2012,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2013,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2014,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2015,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2016,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2017,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2018,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2019,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,141 -2020,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2010,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5828 -2011,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5754 -2012,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5634 -2013,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5639 -2014,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5605 -2015,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5599 -2016,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5631 -2017,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5603 -2018,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5606 -2019,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5588 -2020,geoId/01027,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5534 -2000,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5961 -2001,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5966 -2002,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5925 -2003,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5885 -2004,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5880 -2005,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5824 -2006,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5840 -2007,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5821 -2008,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5814 -2009,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5711 -2010,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5728 -2011,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5654 -2012,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5538 -2013,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5532 -2014,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5494 -2015,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5477 -2016,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5510 -2017,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5490 -2018,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5490 -2019,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5454 -2020,geoId/01027,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5407 -2000,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,162 -2001,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,164 -2002,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,170 -2003,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,166 -2004,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,191 -2005,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,195 -2006,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,211 -2007,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,228 -2008,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,233 -2009,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,252 -2010,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,242 -2011,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,231 -2012,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,242 -2013,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,235 -2014,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,242 -2015,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,259 -2016,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,229 -2017,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,225 -2018,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,213 -2019,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,229 -2020,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,214 -2010,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,146 -2001,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2002,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2003,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,147 -2004,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2005,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,177 -2006,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,195 -2007,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,209 -2008,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,216 -2009,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,230 -2010,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,221 -2011,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,211 -2012,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,218 -2013,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,213 -2014,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2015,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,235 -2016,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,207 -2017,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,204 -2018,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,190 -2019,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,203 -2020,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 -2010,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,222 -2011,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,212 -2012,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,219 -2013,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,214 -2014,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,223 -2015,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,236 -2016,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,207 -2017,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,205 -2018,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,191 -2019,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,204 -2020,geoId/01027,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2000,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6792 -2001,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6823 -2002,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6793 -2003,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6777 -2004,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6697 -2005,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6671 -2006,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6637 -2007,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6669 -2008,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6693 -2009,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6670 -2010,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6564 -2011,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6443 -2012,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6350 -2013,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6299 -2014,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6356 -2015,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6340 -2016,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6332 -2017,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6321 -2018,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6278 -2019,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6241 -2020,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6173 -2010,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2011,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2012,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2013,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2014,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2015,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2016,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2017,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2018,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2019,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2020,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2000,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2001,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2002,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2003,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2004,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2005,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2006,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2008,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2010,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2000,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1045 -2001,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1053 -2002,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1051 -2003,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1048 -2004,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1022 -2005,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1037 -2006,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1015 -2007,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1015 -2008,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1039 -2009,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1062 -2010,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,977 -2011,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,955 -2012,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,930 -2013,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,920 -2014,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,914 -2015,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,924 -2016,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,906 -2017,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,881 -2018,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,866 -2019,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,845 -2020,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,840 -2010,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1036 -2011,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1017 -2012,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,993 -2013,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,983 -2014,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,981 -2015,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,994 -2016,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,977 -2017,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,935 -2018,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,935 -2019,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,925 -2020,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,921 -2010,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2001,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2002,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2003,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2004,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2005,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2006,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2007,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2008,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2009,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2010,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2011,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2012,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2013,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2014,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2015,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,123 -2016,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2017,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2018,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2019,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2020,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,129 -2010,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5548 -2011,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5437 -2012,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5367 -2013,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5334 -2014,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5389 -2015,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5371 -2016,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5380 -2017,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5388 -2018,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5364 -2019,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5339 -2020,geoId/01027,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5277 -2000,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5679 -2001,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5699 -2002,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5667 -2003,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5637 -2004,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5580 -2005,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5528 -2006,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5509 -2007,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5531 -2008,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5522 -2009,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5468 -2010,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5445 -2011,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5332 -2012,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5268 -2013,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5225 -2014,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5276 -2015,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5252 -2016,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5265 -2017,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5286 -2018,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5250 -2019,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5222 -2020,geoId/01027,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5158 -2000,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,75 -2001,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,82 -2002,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,83 -2003,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,98 -2004,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,88 -2005,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,96 -2006,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,101 -2007,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,102 -2008,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,102 -2009,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,107 -2010,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,111 -2011,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,121 -2012,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,126 -2013,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,133 -2014,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,144 -2015,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,151 -2016,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,156 -2017,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,158 -2018,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,178 -2019,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,182 -2020,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,205 -2010,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2001,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2002,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2003,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2004,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2005,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2006,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2007,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2008,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2009,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2010,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2011,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2012,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2013,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2014,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2015,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2016,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,139 -2017,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,139 -2018,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,152 -2019,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2020,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2010,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2011,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2012,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2013,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2014,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,134 -2015,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,142 -2016,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,144 -2017,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2018,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,160 -2019,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,165 -2020,geoId/01029,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2000,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7027 -2001,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7061 -2002,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7128 -2003,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7154 -2004,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7117 -2005,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7125 -2006,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7187 -2007,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7332 -2008,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7363 -2009,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7357 -2010,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7428 -2011,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7389 -2012,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7366 -2013,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7425 -2014,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7438 -2015,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7406 -2016,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7331 -2017,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7387 -2018,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7437 -2019,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7423 -2020,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7408 -2010,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2011,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2013,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2014,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2015,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2016,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2017,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2018,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2020,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2000,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2002,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2003,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2004,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2006,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2007,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2008,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2009,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2016,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2020,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2000,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2002,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2003,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2005,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2006,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2009,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2010,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2017,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2019,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,271 -2001,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,265 -2002,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,291 -2003,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,305 -2004,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,282 -2005,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,279 -2006,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,284 -2007,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,287 -2008,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,263 -2009,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,261 -2010,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,266 -2011,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,255 -2012,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,260 -2013,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,257 -2014,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,264 -2015,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,262 -2016,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,252 -2017,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,244 -2018,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,227 -2019,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2020,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,219 -2010,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,307 -2011,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,297 -2012,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,306 -2013,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,307 -2014,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,317 -2015,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,312 -2016,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,289 -2017,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,284 -2018,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,279 -2019,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,270 -2020,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,283 -2010,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2001,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2002,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2003,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2004,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2005,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2006,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2007,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2008,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2009,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2010,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2012,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2013,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2014,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2015,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2016,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2018,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2019,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2020,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2010,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7116 -2011,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7076 -2012,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7054 -2013,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7112 -2014,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7117 -2015,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7086 -2016,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7021 -2017,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7082 -2018,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7147 -2019,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7136 -2020,geoId/01029,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7125 -2000,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6670 -2001,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6710 -2002,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6750 -2003,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6758 -2004,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6744 -2005,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6749 -2006,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6804 -2007,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6944 -2008,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6992 -2009,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6987 -2010,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7048 -2011,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7010 -2012,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6977 -2013,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7035 -2014,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7039 -2015,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7009 -2016,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6945 -2017,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7007 -2018,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7067 -2019,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7056 -2020,geoId/01029,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7027 -2000,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,126 -2001,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,129 -2002,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,155 -2003,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,156 -2004,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,161 -2005,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,165 -2006,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,191 -2007,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,173 -2008,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,190 -2009,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,214 -2010,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,201 -2011,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,197 -2012,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,184 -2013,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,200 -2014,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,209 -2015,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,204 -2016,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,201 -2017,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,197 -2018,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,204 -2019,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,210 -2020,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,211 -2010,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2001,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2002,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,152 -2003,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,152 -2004,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,156 -2005,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2006,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2007,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2008,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,176 -2009,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,198 -2010,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,185 -2011,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2012,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,169 -2013,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2014,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,191 -2015,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,185 -2016,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2017,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2018,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2019,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,186 -2020,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,184 -2010,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,187 -2011,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2012,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,171 -2013,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,180 -2014,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2015,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2016,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2017,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,178 -2018,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2019,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2020,geoId/01029,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2000,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6944 -2001,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6950 -2002,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7050 -2003,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7030 -2004,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6973 -2005,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6982 -2006,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7059 -2007,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7192 -2008,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7219 -2009,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7240 -2010,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7264 -2011,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7221 -2012,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7213 -2013,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7216 -2014,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7238 -2015,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7162 -2016,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7183 -2017,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7182 -2018,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7228 -2019,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7137 -2020,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7143 -2010,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2012,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2013,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2014,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2015,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2016,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2017,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2018,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2019,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2020,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2000,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2002,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2003,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2006,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2007,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2008,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2000,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,246 -2001,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,258 -2002,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,267 -2003,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,255 -2004,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,257 -2005,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,241 -2006,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,242 -2007,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,255 -2008,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,251 -2009,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,251 -2010,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,235 -2011,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,249 -2012,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,244 -2013,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,241 -2014,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,233 -2015,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,216 -2016,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2017,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,209 -2018,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,199 -2019,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,194 -2020,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,203 -2010,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,275 -2011,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,293 -2012,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,295 -2013,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,287 -2014,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,285 -2015,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,269 -2016,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,277 -2017,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,254 -2018,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,249 -2019,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,244 -2020,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,260 -2010,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2001,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2002,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2003,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2004,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2005,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2006,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2007,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2008,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2009,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2010,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2012,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2013,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2014,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2015,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2016,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2017,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2018,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2019,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2020,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2010,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6996 -2011,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6936 -2012,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6933 -2013,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6942 -2014,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6968 -2015,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6908 -2016,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6922 -2017,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6930 -2018,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6989 -2019,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6896 -2020,geoId/01029,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6898 -2000,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6629 -2001,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6622 -2002,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6711 -2003,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6699 -2004,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6642 -2005,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6657 -2006,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6725 -2007,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6843 -2008,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6872 -2009,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6891 -2010,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6929 -2011,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6866 -2012,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6862 -2013,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6868 -2014,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6890 -2015,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6823 -2016,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6834 -2017,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6843 -2018,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6894 -2019,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6814 -2020,geoId/01029,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6809 -2000,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,539 -2001,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,560 -2002,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,595 -2003,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,675 -2004,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,734 -2005,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,806 -2006,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,851 -2007,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1004 -2008,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1134 -2009,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1244 -2010,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1338 -2011,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1358 -2012,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1425 -2013,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1473 -2014,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1463 -2015,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1535 -2016,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1670 -2017,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1812 -2018,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1928 -2019,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2048 -2020,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2134 -2010,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2011,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2012,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2013,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2014,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2015,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2016,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2017,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2018,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2019,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2020,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2000,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2003,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2004,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2005,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2006,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2007,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2008,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2009,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2010,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2011,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2012,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2013,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2014,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2015,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2016,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2017,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2018,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2019,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2020,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2000,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2016,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2019,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2000,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2001,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2002,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2003,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2004,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2005,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2006,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2007,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2008,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2009,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2010,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2011,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2012,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2013,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2014,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2015,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2016,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2017,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2018,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,145 -2019,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2020,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,139 -2010,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2011,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2012,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2013,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,145 -2014,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,142 -2015,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,151 -2016,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2017,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2018,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,187 -2019,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,180 -2020,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2010,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2011,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2014,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2015,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2016,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2017,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2018,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2019,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2020,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2000,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2004,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2005,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2006,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2007,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2008,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2009,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2010,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2011,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2012,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2016,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2017,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2018,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2019,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2020,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2000,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2002,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2003,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2004,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2006,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2007,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2008,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2009,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2010,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2011,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2013,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2015,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2016,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2017,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2018,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2019,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2020,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2000,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,450 -2001,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,461 -2002,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,481 -2003,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,549 -2004,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,598 -2005,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,647 -2006,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,673 -2007,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,807 -2008,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,907 -2009,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1002 -2010,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1087 -2011,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1110 -2012,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1164 -2013,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1193 -2014,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1181 -2015,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1215 -2016,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1340 -2017,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1457 -2018,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1540 -2019,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1658 -2020,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1736 -2010,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1132 -2011,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1163 -2012,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1219 -2013,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1252 -2014,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1234 -2015,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1289 -2016,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1417 -2017,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1534 -2018,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1631 -2019,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1735 -2020,geoId/01031,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1820 -2000,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,21761 -2001,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,21800 -2002,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,21796 -2003,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,21906 -2004,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,22193 -2005,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,22367 -2006,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,22637 -2007,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23098 -2008,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23405 -2009,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23731 -2010,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24060 -2011,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24146 -2012,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24423 -2013,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24142 -2014,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24188 -2015,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24177 -2016,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24345 -2017,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24605 -2018,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24565 -2019,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24635 -2020,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24851 -2010,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,548 -2011,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,559 -2012,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,546 -2013,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,527 -2014,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,540 -2015,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,533 -2016,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,553 -2017,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,550 -2018,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,547 -2019,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,562 -2020,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,566 -2000,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,190 -2001,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,199 -2002,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,211 -2003,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,224 -2004,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,233 -2005,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,236 -2006,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,251 -2007,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,263 -2008,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,275 -2009,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2010,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,316 -2011,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,324 -2012,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,301 -2013,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,279 -2014,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2015,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,293 -2016,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2017,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,301 -2018,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,292 -2019,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,297 -2020,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,308 -2000,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,293 -2001,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,304 -2002,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,320 -2003,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,307 -2004,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,332 -2005,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,346 -2006,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,346 -2007,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,352 -2008,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,371 -2009,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,417 -2010,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,427 -2011,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,451 -2012,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,488 -2013,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,492 -2014,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,512 -2015,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,519 -2016,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,518 -2017,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,539 -2018,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,565 -2019,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,552 -2020,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,538 -2010,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,563 -2011,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,586 -2012,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,640 -2013,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,630 -2014,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,665 -2015,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,656 -2016,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,677 -2017,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,724 -2018,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,746 -2019,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,729 -2020,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,734 -2000,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4141 -2001,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4135 -2002,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4112 -2003,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4108 -2004,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4122 -2005,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4144 -2006,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4175 -2007,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4280 -2008,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4338 -2009,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4293 -2010,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4374 -2011,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4471 -2012,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4538 -2013,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4491 -2014,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4497 -2015,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4548 -2016,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4618 -2017,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4648 -2018,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4662 -2019,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4628 -2020,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4693 -2010,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4584 -2011,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4689 -2012,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4765 -2013,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4695 -2014,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4730 -2015,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4768 -2016,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4869 -2017,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4919 -2018,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4937 -2019,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4917 -2020,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5005 -2010,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2011,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2012,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2013,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2014,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2015,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2016,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2017,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2018,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2019,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2020,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2000,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2002,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2003,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2004,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2009,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2019,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2000,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,290 -2001,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,316 -2002,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,315 -2003,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,351 -2004,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,385 -2005,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,406 -2006,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,423 -2007,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,428 -2008,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,455 -2009,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,498 -2010,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,532 -2011,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,542 -2012,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,566 -2013,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,547 -2014,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,571 -2015,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,558 -2016,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,615 -2017,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,643 -2018,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,652 -2019,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,685 -2020,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,707 -2010,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18878 -2011,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18825 -2012,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19011 -2013,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18812 -2014,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18797 -2015,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18755 -2016,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18821 -2017,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19030 -2018,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18959 -2019,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19074 -2020,geoId/01031,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19204 -2000,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16830 -2001,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16829 -2002,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16821 -2003,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16900 -2004,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17105 -2005,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17218 -2006,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17425 -2007,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17763 -2008,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17948 -2009,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18204 -2010,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18391 -2011,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18339 -2012,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18506 -2013,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18314 -2014,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18286 -2015,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18234 -2016,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18266 -2017,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18442 -2018,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18368 -2019,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18442 -2020,geoId/01031,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18571 -2000,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,647 -2001,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,729 -2002,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,816 -2003,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,933 -2004,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1007 -2005,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1147 -2006,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1260 -2007,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1430 -2008,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1634 -2009,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1705 -2010,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1870 -2011,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1810 -2012,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1771 -2013,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1730 -2014,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1747 -2015,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1809 -2016,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1907 -2017,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1960 -2018,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2104 -2019,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2200 -2020,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2289 -2010,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2011,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2012,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2013,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2014,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2015,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,129 -2016,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2017,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2018,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2019,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,141 -2020,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,129 -2000,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2003,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2004,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2005,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2006,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2007,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2008,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2009,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2010,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2011,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2012,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2013,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2014,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2015,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2016,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2017,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2018,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2019,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2020,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2000,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2016,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2020,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2000,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2001,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2002,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2003,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2004,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2005,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2006,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2007,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2008,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2009,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2010,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2011,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2012,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2013,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2014,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2015,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2016,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2017,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2018,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,152 -2019,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,163 -2020,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,182 -2010,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2011,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,142 -2012,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2013,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2014,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2015,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,160 -2016,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,178 -2017,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,191 -2018,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,213 -2019,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,221 -2020,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,236 -2010,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2011,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2012,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2013,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2014,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2015,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2016,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2017,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2018,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2019,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2020,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2000,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2003,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2004,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2005,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2006,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2007,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2008,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2009,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2010,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2011,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2012,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2013,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2014,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2015,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2016,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2017,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2018,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2019,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2020,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2000,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2002,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2003,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2004,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2005,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2006,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2007,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2008,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2009,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2010,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2011,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2012,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2013,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2014,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2015,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2016,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2017,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2018,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2019,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2020,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2000,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,568 -2001,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,617 -2002,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,680 -2003,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,761 -2004,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,808 -2005,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,905 -2006,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,975 -2007,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1121 -2008,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1278 -2009,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1324 -2010,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1459 -2011,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1422 -2012,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1388 -2013,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1358 -2014,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1356 -2015,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1389 -2016,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1474 -2017,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1525 -2018,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1637 -2019,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1718 -2020,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1787 -2010,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1544 -2011,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1501 -2012,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1468 -2013,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1433 -2014,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1445 -2015,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1486 -2016,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1566 -2017,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1623 -2018,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1744 -2019,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1825 -2020,geoId/01031,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1896 -2000,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,20633 -2001,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,20627 -2002,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,20723 -2003,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,20801 -2004,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,21119 -2005,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,21284 -2006,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,21480 -2007,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,21926 -2008,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,22343 -2009,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,22760 -2010,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,22936 -2011,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23135 -2012,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23540 -2013,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23364 -2014,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23295 -2015,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23483 -2016,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23359 -2017,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23566 -2018,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23500 -2019,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23756 -2020,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23956 -2010,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,513 -2011,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,531 -2012,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,544 -2013,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,519 -2014,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,520 -2015,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,521 -2016,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,516 -2017,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,534 -2018,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,547 -2019,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,538 -2020,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,543 -2000,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,201 -2001,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2002,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,211 -2003,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,224 -2004,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,231 -2005,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,259 -2006,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,269 -2007,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,247 -2008,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,279 -2009,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,281 -2010,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,293 -2011,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,299 -2012,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,296 -2013,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,289 -2014,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,295 -2015,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,297 -2016,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,277 -2017,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,281 -2018,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,284 -2019,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,276 -2020,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,274 -2000,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2001,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,157 -2002,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2003,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,171 -2004,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,177 -2005,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,183 -2006,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,185 -2007,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,197 -2008,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,207 -2009,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,210 -2010,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,214 -2011,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2012,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,256 -2013,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,253 -2014,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,247 -2015,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,240 -2016,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,249 -2017,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,259 -2018,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,287 -2019,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,295 -2020,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,302 -2010,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,344 -2011,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,374 -2012,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,416 -2013,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,406 -2014,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,398 -2015,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,407 -2016,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,428 -2017,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,451 -2018,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,479 -2019,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,520 -2020,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,525 -2000,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3820 -2001,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3746 -2002,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3723 -2003,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3710 -2004,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3741 -2005,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3718 -2006,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3769 -2007,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3855 -2008,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3866 -2009,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3939 -2010,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3951 -2011,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4018 -2012,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4119 -2013,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4156 -2014,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4185 -2015,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4229 -2016,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4207 -2017,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4280 -2018,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4272 -2019,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4359 -2020,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4365 -2010,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4148 -2011,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4226 -2012,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4366 -2013,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4392 -2014,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4445 -2015,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4506 -2016,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4508 -2017,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4585 -2018,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4594 -2019,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4719 -2020,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4725 -2010,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2011,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2012,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2014,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2015,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2016,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2017,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2019,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2020,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2000,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2001,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2002,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2003,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2004,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2005,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2007,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2008,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2009,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2010,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2017,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2020,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2000,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,291 -2001,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,303 -2002,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,317 -2003,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,333 -2004,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,368 -2005,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,382 -2006,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,401 -2007,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,425 -2008,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,452 -2009,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,465 -2010,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,501 -2011,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,536 -2012,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,597 -2013,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,576 -2014,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,583 -2015,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,611 -2016,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,658 -2017,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,676 -2018,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,719 -2019,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,767 -2020,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,772 -2010,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18413 -2011,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18518 -2012,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18779 -2013,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18585 -2014,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18478 -2015,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18614 -2016,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18532 -2017,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18639 -2018,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18551 -2019,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18720 -2020,geoId/01031,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18902 -2000,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16171 -2001,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16173 -2002,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16305 -2003,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16338 -2004,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16580 -2005,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16721 -2006,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16828 -2007,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17171 -2008,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17508 -2009,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17830 -2010,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17950 -2011,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18019 -2012,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18238 -2013,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18057 -2014,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17950 -2015,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18068 -2016,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17929 -2017,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18024 -2018,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17896 -2019,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18016 -2020,geoId/01031,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18197 -2000,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,293 -2001,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,319 -2002,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,325 -2003,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,327 -2004,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,369 -2005,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,398 -2006,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,419 -2007,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,436 -2008,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,473 -2009,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,471 -2010,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,484 -2011,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,509 -2012,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,548 -2013,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,563 -2014,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,551 -2015,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,598 -2016,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,624 -2017,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,672 -2018,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,729 -2019,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,816 -2020,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,843 -2010,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2020,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2000,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2001,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2002,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2003,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2004,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2005,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2006,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2007,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2008,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2009,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2012,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2013,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2014,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2015,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2016,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2017,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2018,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2019,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2020,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2010,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2011,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2012,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2013,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2014,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2015,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2016,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2017,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2018,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2019,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2020,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2010,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2006,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2007,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2009,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2016,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2019,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2000,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,250 -2001,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,272 -2002,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,280 -2003,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,279 -2004,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,319 -2005,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,331 -2006,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,354 -2007,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,369 -2008,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,395 -2009,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,397 -2010,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,409 -2011,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,422 -2012,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,449 -2013,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,446 -2014,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,443 -2015,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,488 -2016,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,506 -2017,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,554 -2018,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,610 -2019,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,683 -2020,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,701 -2010,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,433 -2011,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,444 -2012,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,470 -2013,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,477 -2014,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,469 -2015,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,518 -2016,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,542 -2017,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,596 -2018,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,646 -2019,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,718 -2020,geoId/01033,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,736 -2000,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,28392 -2001,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,28203 -2002,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,28054 -2003,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27859 -2004,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27843 -2005,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27790 -2006,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27820 -2007,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27849 -2008,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27865 -2009,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27841 -2010,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27827 -2011,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27789 -2012,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27778 -2013,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27764 -2014,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27708 -2015,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27721 -2016,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27594 -2017,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27750 -2018,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27910 -2019,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,28013 -2020,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,28030 -2010,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,309 -2011,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,326 -2012,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,327 -2013,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,333 -2014,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,334 -2015,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,354 -2016,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,350 -2017,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,349 -2018,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,344 -2019,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,367 -2020,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,372 -2000,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2001,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2002,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2003,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2004,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2005,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2006,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2007,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2008,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2009,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2010,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,140 -2011,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2012,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,139 -2013,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,147 -2014,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,140 -2015,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,145 -2016,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,146 -2017,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2018,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,150 -2019,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,155 -2020,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2000,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2001,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2002,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2003,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2004,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2005,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2006,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2007,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2008,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2009,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2010,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2011,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2012,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2013,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,145 -2014,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,150 -2015,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 -2016,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2017,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,195 -2018,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,202 -2019,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,207 -2020,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,209 -2010,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2011,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,154 -2012,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,171 -2013,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,191 -2014,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,190 -2015,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,205 -2016,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,222 -2017,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,249 -2018,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,261 -2019,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,251 -2020,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,263 -2000,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4994 -2001,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4932 -2002,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4876 -2003,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4798 -2004,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4753 -2005,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4750 -2006,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4704 -2007,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4717 -2008,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4725 -2009,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4726 -2010,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4756 -2011,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4711 -2012,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4733 -2013,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4695 -2014,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4605 -2015,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4650 -2016,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4601 -2017,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4696 -2018,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4727 -2019,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4796 -2020,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4791 -2010,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4945 -2011,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4918 -2012,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4946 -2013,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4899 -2014,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4842 -2015,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4905 -2016,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4860 -2017,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4981 -2018,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5010 -2019,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5082 -2020,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5113 -2010,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2017,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2000,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,215 -2001,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,241 -2002,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,242 -2003,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,258 -2004,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,270 -2005,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,273 -2006,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,297 -2007,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,317 -2008,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,336 -2009,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,367 -2010,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,379 -2011,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,396 -2012,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,413 -2013,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,425 -2014,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,449 -2015,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,485 -2016,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,489 -2017,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,510 -2018,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,515 -2019,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,524 -2020,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,561 -2010,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22770 -2011,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22788 -2012,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22739 -2013,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22745 -2014,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22769 -2015,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22725 -2016,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22628 -2017,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22671 -2018,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22786 -2019,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22816 -2020,geoId/01033,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22824 -2000,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23006 -2001,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22839 -2002,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22738 -2003,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22593 -2004,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22601 -2005,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22547 -2006,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22588 -2007,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22583 -2008,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22555 -2009,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22488 -2010,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22414 -2011,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22415 -2012,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22351 -2013,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22340 -2014,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22346 -2015,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22260 -2016,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22163 -2017,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22186 -2018,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22298 -2019,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22314 -2020,geoId/01033,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22294 -2000,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,324 -2001,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,354 -2002,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,379 -2003,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,400 -2004,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,450 -2005,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,467 -2006,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,542 -2007,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,570 -2008,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,590 -2009,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,594 -2010,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,626 -2011,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,665 -2012,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,707 -2013,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,700 -2014,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,691 -2015,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,724 -2016,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,791 -2017,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,812 -2018,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,860 -2019,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,888 -2020,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,920 -2010,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2012,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2013,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2015,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2017,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2020,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2000,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2009,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2000,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2001,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2002,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2003,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2004,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2005,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2006,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2007,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2008,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2009,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2010,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2011,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2012,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2014,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2015,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2017,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2018,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2019,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2010,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2011,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2012,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2013,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2014,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2015,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2016,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2017,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2018,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2019,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2020,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2010,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2014,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2016,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2017,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2020,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2000,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,280 -2001,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,305 -2002,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,327 -2003,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,349 -2004,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,392 -2005,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,402 -2006,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,455 -2007,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,477 -2008,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,494 -2009,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,484 -2010,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,518 -2011,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,550 -2012,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,581 -2013,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,564 -2014,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,566 -2015,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,594 -2016,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,650 -2017,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,688 -2018,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,723 -2019,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,732 -2020,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,758 -2010,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,540 -2011,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,573 -2012,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,606 -2013,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,597 -2014,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,593 -2015,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,626 -2016,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,690 -2017,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,722 -2018,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,761 -2019,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,776 -2020,geoId/01033,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,801 -2000,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25988 -2001,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25917 -2002,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25778 -2003,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25693 -2004,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25718 -2005,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25704 -2006,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25632 -2007,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25631 -2008,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25545 -2009,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25520 -2010,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25590 -2011,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25582 -2012,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25545 -2013,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25517 -2014,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25534 -2015,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25396 -2016,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25474 -2017,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25448 -2018,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25471 -2019,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25524 -2020,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25618 -2010,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,291 -2011,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,309 -2012,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,312 -2013,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,313 -2014,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,333 -2015,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,325 -2016,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,334 -2017,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,345 -2018,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,342 -2019,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,350 -2020,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,370 -2000,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2001,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2002,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2003,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2004,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2005,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2006,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2007,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2008,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2009,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2010,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2011,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2012,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2013,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2014,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,145 -2015,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2016,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,151 -2017,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2018,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,151 -2019,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,157 -2020,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2000,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2001,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2002,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2003,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2004,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2005,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2006,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2007,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2008,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2009,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2010,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2011,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2012,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2013,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2014,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2015,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2016,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2017,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2018,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2019,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,163 -2020,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,161 -2010,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2011,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,154 -2012,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,155 -2013,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2014,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,171 -2015,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,160 -2016,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,185 -2017,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2018,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2019,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,214 -2020,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,211 -2000,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4144 -2001,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4122 -2002,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4098 -2003,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4025 -2004,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4043 -2005,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3974 -2006,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3943 -2007,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3953 -2008,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3959 -2009,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3949 -2010,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4001 -2011,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4008 -2012,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4037 -2013,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4069 -2014,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4033 -2015,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4034 -2016,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3998 -2017,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4049 -2018,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4012 -2019,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4019 -2020,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4081 -2010,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4193 -2011,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4219 -2012,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4259 -2013,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4301 -2014,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4298 -2015,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4296 -2016,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4262 -2017,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4295 -2018,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4267 -2019,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4288 -2020,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4363 -2010,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2019,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2000,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,201 -2001,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,219 -2002,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,228 -2003,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,244 -2004,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,255 -2005,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,283 -2006,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,295 -2007,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,304 -2008,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,315 -2009,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,350 -2010,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,379 -2011,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,409 -2012,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,426 -2013,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,434 -2014,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,472 -2015,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,476 -2016,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,470 -2017,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,466 -2018,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,485 -2019,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,486 -2020,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,514 -2010,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21340 -2011,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21301 -2012,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21229 -2013,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21165 -2014,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21182 -2015,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21073 -2016,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21148 -2017,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21068 -2018,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21125 -2019,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21145 -2020,geoId/01033,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21175 -2000,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21483 -2001,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21404 -2002,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21273 -2003,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21238 -2004,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21233 -2005,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21245 -2006,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21190 -2007,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21169 -2008,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21049 -2009,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,21000 -2010,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20978 -2011,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20909 -2012,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20824 -2013,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20752 -2014,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20746 -2015,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20622 -2016,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20712 -2017,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20629 -2018,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20664 -2019,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20686 -2020,geoId/01033,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,20683 -2000,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,51 -2001,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,49 -2002,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,53 -2003,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,51 -2004,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,50 -2005,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,57 -2006,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,56 -2007,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,60 -2008,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,60 -2009,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,60 -2010,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,65 -2011,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,71 -2012,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,80 -2013,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,89 -2014,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,83 -2015,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,91 -2016,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,105 -2017,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,112 -2018,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,125 -2019,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,136 -2020,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,137 -2010,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2001,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2004,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2005,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2006,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2007,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2008,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2017,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2020,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2010,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2001,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2002,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2004,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2005,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2007,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2008,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2009,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2012,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2013,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2014,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2015,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2016,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2017,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2018,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2019,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2020,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2010,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2011,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2012,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2013,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2014,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2017,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2018,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2019,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2020,geoId/01035,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2000,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7345 -2001,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7276 -2002,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7176 -2003,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6987 -2004,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6923 -2005,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6897 -2006,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6971 -2007,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6874 -2008,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6800 -2009,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6774 -2010,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6762 -2011,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6741 -2012,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6680 -2013,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6615 -2014,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6491 -2015,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6490 -2016,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6410 -2017,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6362 -2018,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6272 -2019,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6180 -2020,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6046 -2010,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2012,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2013,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2014,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2015,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2016,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2017,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2018,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2019,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2020,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2000,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2002,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2004,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2005,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2000,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2010,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2000,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3353 -2001,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3355 -2002,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3341 -2003,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3277 -2004,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3250 -2005,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3286 -2006,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3356 -2007,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3302 -2008,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3287 -2009,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3306 -2010,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3319 -2011,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3328 -2012,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3251 -2013,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3199 -2014,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3128 -2015,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3175 -2016,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3164 -2017,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3119 -2018,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3037 -2019,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2985 -2020,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2945 -2010,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3354 -2011,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3364 -2012,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3283 -2013,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3235 -2014,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3169 -2015,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3210 -2016,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3205 -2017,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3151 -2018,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3075 -2019,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3019 -2020,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2982 -2010,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2001,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2002,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2003,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2004,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2005,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2006,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2007,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2008,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2009,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2010,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2011,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2012,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2013,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2014,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2015,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2016,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2017,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2018,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2019,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2020,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2010,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3398 -2011,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3368 -2012,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3386 -2013,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3370 -2014,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3314 -2015,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3271 -2016,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3205 -2017,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3188 -2018,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3182 -2019,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3147 -2020,geoId/01035,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3047 -2000,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3923 -2001,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3852 -2002,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3766 -2003,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3637 -2004,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3600 -2005,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3534 -2006,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3530 -2007,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3485 -2008,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3424 -2009,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3377 -2010,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3348 -2011,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3305 -2012,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3325 -2013,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3304 -2014,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3255 -2015,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3210 -2016,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3142 -2017,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3126 -2018,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3116 -2019,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3079 -2020,geoId/01035,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,2981 -2000,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,51 -2001,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,50 -2002,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,55 -2003,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,63 -2004,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,67 -2005,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,81 -2006,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,81 -2007,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,87 -2008,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,97 -2009,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,99 -2010,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,99 -2011,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,117 -2012,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,121 -2013,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,124 -2014,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,124 -2015,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,137 -2016,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,137 -2017,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,133 -2018,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,147 -2019,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,153 -2020,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,156 -2010,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2005,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2006,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2007,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2008,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2009,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2010,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2013,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2015,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2016,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2020,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2010,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2012,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2013,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2016,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2019,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2010,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2001,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2002,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2003,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2004,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2005,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2006,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2007,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2008,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2009,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2010,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2011,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2012,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2013,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2014,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2015,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2016,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2017,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2018,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2019,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2020,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2010,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2011,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2012,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2013,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2014,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2015,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2016,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2017,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2018,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2019,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2020,geoId/01035,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2000,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6588 -2001,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6565 -2002,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6509 -2003,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6484 -2004,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6390 -2005,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6386 -2006,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6495 -2007,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6420 -2008,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6431 -2009,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6341 -2010,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6308 -2011,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6265 -2012,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6162 -2013,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6080 -2014,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5976 -2015,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5959 -2016,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5843 -2017,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5824 -2018,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5720 -2019,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5586 -2020,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5512 -2010,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2011,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2012,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2013,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2014,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2015,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2016,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2017,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2018,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2019,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2000,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2005,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2007,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2009,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2000,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2753 -2001,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2801 -2002,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2768 -2003,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2758 -2004,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2746 -2005,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2800 -2006,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2845 -2007,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2827 -2008,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2881 -2009,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2801 -2010,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2823 -2011,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2818 -2012,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2755 -2013,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2705 -2014,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2673 -2015,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2711 -2016,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2661 -2017,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2630 -2018,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2550 -2019,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2484 -2020,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2439 -2010,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2846 -2011,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2844 -2012,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2791 -2013,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2741 -2014,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2714 -2015,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2748 -2016,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2706 -2017,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2669 -2018,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2581 -2019,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2521 -2020,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2486 -2010,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2001,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2002,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2003,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2004,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2005,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2006,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2007,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2008,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2009,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2010,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2012,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2013,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2015,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2016,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2017,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2018,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2019,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2010,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3454 -2011,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3408 -2012,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3371 -2013,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3335 -2014,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3258 -2015,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3202 -2016,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3133 -2017,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3142 -2018,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3120 -2019,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3054 -2020,geoId/01035,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3025 -2000,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3776 -2001,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3705 -2002,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3678 -2003,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3664 -2004,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3576 -2005,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3520 -2006,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3579 -2007,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3520 -2008,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3474 -2009,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3462 -2010,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3411 -2011,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3355 -2012,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3308 -2013,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3272 -2014,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3194 -2015,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3145 -2016,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3066 -2017,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3075 -2018,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3055 -2019,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,2993 -2020,geoId/01035,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,2954 -2000,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,39 -2001,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,41 -2002,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,46 -2003,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,53 -2004,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,57 -2005,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,67 -2006,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,73 -2007,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,74 -2008,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,83 -2009,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,89 -2010,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,89 -2011,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,90 -2012,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,96 -2013,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,107 -2014,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,109 -2015,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,114 -2016,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,108 -2017,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,122 -2018,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,123 -2019,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,126 -2020,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,123 -2010,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2002,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2019,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2001,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2002,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2003,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2004,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2005,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2006,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2007,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2008,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2009,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2010,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2012,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2013,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2014,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2015,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2016,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2017,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2018,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2019,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2020,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2010,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2011,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2012,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2013,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2014,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2015,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2016,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2017,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2018,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2019,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2020,geoId/01037,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2000,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5890 -2001,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5864 -2002,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5789 -2003,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5788 -2004,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5725 -2005,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5667 -2006,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5671 -2007,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5653 -2008,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5748 -2009,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5662 -2010,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5735 -2011,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5599 -2012,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5529 -2013,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5459 -2014,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5365 -2015,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5326 -2016,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5238 -2017,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5239 -2018,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5182 -2019,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5188 -2020,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5194 -2010,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2012,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2013,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2014,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2015,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2016,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2017,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2018,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2019,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2020,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2000,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2001,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2002,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2004,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2005,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2007,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2008,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2009,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2044 -2001,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2046 -2002,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2005 -2003,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1972 -2004,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1982 -2005,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1931 -2006,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1888 -2007,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1873 -2008,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1896 -2009,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1823 -2010,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1832 -2011,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1799 -2012,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1751 -2013,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1750 -2014,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1716 -2015,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1684 -2016,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1666 -2017,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1657 -2018,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1678 -2019,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1669 -2020,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1650 -2010,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1857 -2011,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1825 -2012,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1780 -2013,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1777 -2014,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1750 -2015,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1723 -2016,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1698 -2017,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1685 -2018,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1711 -2019,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1702 -2020,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1682 -2010,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2001,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2002,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2003,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2004,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2005,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2006,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2007,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2008,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2009,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2010,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2011,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2012,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2013,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2014,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2015,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2016,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2017,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2018,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2019,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2010,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3867 -2011,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3758 -2012,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3736 -2013,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3667 -2014,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3610 -2015,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3608 -2016,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3533 -2017,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3548 -2018,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3472 -2019,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3481 -2020,geoId/01037,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3503 -2000,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3786 -2001,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3759 -2002,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3727 -2003,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3754 -2004,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3675 -2005,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3668 -2006,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3707 -2007,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3704 -2008,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3774 -2009,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3760 -2010,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3821 -2011,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3712 -2012,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3677 -2013,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3608 -2014,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3550 -2015,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3530 -2016,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3472 -2017,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3482 -2018,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3406 -2019,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3420 -2020,geoId/01037,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3442 -2000,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,114 -2001,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,115 -2002,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,114 -2003,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,112 -2004,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,122 -2005,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,127 -2006,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,136 -2007,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,133 -2008,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,128 -2009,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,136 -2010,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,138 -2011,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,135 -2012,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,122 -2013,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,122 -2014,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,126 -2015,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,126 -2016,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,129 -2017,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,130 -2018,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,146 -2019,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,154 -2020,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,147 -2010,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2009,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2010,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2001,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2002,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2003,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2004,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2005,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2006,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2007,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2008,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2009,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2010,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2011,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2012,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2013,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2014,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2015,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2016,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2017,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2018,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2019,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2020,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2010,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2011,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2012,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2013,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2015,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2016,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2017,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2018,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2019,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2020,geoId/01037,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2000,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5801 -2001,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5828 -2002,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5791 -2003,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5779 -2004,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5656 -2005,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5606 -2006,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5571 -2007,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5579 -2008,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5534 -2009,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5523 -2010,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5817 -2011,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5659 -2012,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5596 -2013,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5564 -2014,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5437 -2015,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5369 -2016,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5337 -2017,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5233 -2018,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5168 -2019,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5209 -2020,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5186 -2010,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2014,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2015,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2016,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2018,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2019,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2020,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2000,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2001,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2002,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2004,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2005,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2008,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2009,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2000,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1901 -2001,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1908 -2002,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1912 -2003,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1888 -2004,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1819 -2005,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1792 -2006,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1773 -2007,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1741 -2008,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1770 -2009,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1704 -2010,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1871 -2011,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1820 -2012,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1798 -2013,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1804 -2014,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1758 -2015,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1680 -2016,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1665 -2017,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1612 -2018,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1560 -2019,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1588 -2020,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1551 -2010,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1891 -2011,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1838 -2012,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1818 -2013,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1826 -2014,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1786 -2015,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1705 -2016,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1685 -2017,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1631 -2018,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1581 -2019,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1616 -2020,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1578 -2010,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2001,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2002,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2003,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2004,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2005,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2006,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2007,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2008,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2009,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2011,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2013,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2014,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2015,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2016,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2018,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2019,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2020,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2010,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3922 -2011,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3811 -2012,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3774 -2013,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3732 -2014,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3645 -2015,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3654 -2016,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3641 -2017,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3593 -2018,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3579 -2019,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3587 -2020,geoId/01037,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3595 -2000,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3846 -2001,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3867 -2002,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3826 -2003,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3839 -2004,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3780 -2005,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3765 -2006,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3740 -2007,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3777 -2008,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3706 -2009,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3759 -2010,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3883 -2011,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3771 -2012,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3729 -2013,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3687 -2014,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3601 -2015,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3606 -2016,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3600 -2017,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3543 -2018,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3526 -2019,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3530 -2020,geoId/01037,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3540 -2000,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,149 -2001,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,152 -2002,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,148 +1990,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1991,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1992,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1993,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1994,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1995,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1996,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1997,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1998,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1999,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1990,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1991,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1992,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1993,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1994,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1995,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1996,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1997,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1998,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1999,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1990,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7040 +1991,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7071 +1992,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7157 +1993,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7199 +1994,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7210 +1995,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7236 +1996,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7273 +1997,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7264 +1998,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7270 +1999,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7153 +1990,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,8871 +1991,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,8854 +1992,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,8891 +1993,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,8831 +1994,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,8764 +1995,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,8680 +1996,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,8635 +1997,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,8532 +1998,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,8466 +1999,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,8273 +1990,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,53 +1991,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,52 +1992,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,47 +1993,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,49 +1994,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,49 +1995,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1996,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,47 +1997,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,56 +1998,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,58 +1999,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,61 +1990,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,49 +1991,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,48 +1992,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1993,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1994,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,55 +1995,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,58 +1996,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,67 +1997,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,78 +1998,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,84 +1999,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,88 +1990,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,45 +1991,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,44 +1992,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1993,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1994,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,44 +1995,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,38 +1996,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,41 +1997,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1998,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1999,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1990,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,35 +1991,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,34 +1992,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,36 +1993,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,36 +1994,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,38 +1995,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,43 +1996,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,42 +1997,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,40 +1998,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,44 +1999,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,40 +1990,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11602 +1991,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11727 +1992,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11888 +1993,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12009 +1994,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12171 +1995,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12186 +1996,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12288 +1997,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12614 +1998,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12630 +1999,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12811 +1990,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15527 +1991,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15598 +1992,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15662 +1993,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15639 +1994,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15680 +1995,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15562 +1996,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15592 +1997,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15779 +1998,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15676 +1999,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15717 +1990,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1998,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1993,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1994,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1995,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1996,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1997,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1998,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1999,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1990,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1991,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1992,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,26 +1993,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,26 +1994,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1995,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,33 +1996,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,38 +1997,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1998,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,47 +1999,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,48 +1990,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1991,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1992,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1993,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1994,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1995,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1996,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1997,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1998,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1999,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1990,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1991,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1992,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1993,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1994,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1995,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1996,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,16 +1997,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,16 +1998,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,15 +1999,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,16 +1990,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2161 +1991,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2202 +1992,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2232 +1993,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2265 +1994,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2291 +1995,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2324 +1996,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2365 +1997,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2422 +1998,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2471 +1999,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2497 +1990,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11057 +1991,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11028 +1992,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11092 +1993,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11139 +1994,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11130 +1995,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11113 +1996,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11190 +1997,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11336 +1998,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11410 +1999,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11425 +1990,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1992,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1996,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1998,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1990,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1999,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1991,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1992,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1993,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1995,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1996,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1997,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1998,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1999,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1990,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1991,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,35 +1992,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,35 +1993,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,38 +1994,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,44 +1995,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,52 +1996,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,60 +1997,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,64 +1998,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,70 +1999,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,76 +1990,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1991,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1992,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1993,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1994,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1995,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1996,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1997,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1998,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1999,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1990,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1991,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1992,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1993,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1994,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,16 +1995,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,16 +1996,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,16 +1997,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,17 +1998,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,18 +1999,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,19 +1990,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,590 +1991,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,599 +1992,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,609 +1993,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,628 +1994,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,638 +1995,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,660 +1996,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,672 +1997,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,714 +1998,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,731 +1999,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,749 +1990,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12073 +1991,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12060 +1992,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12256 +1993,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12459 +1994,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12483 +1995,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12544 +1996,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12747 +1997,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13265 +1998,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13436 +1999,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13578 +1990,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1991,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1993,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1994,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1995,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1996,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1997,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1998,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1999,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1990,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,12 +1991,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,9 +1992,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1993,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1994,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,17 +1995,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,18 +1996,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,15 +1997,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,22 +1998,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,18 +1999,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,20 +1990,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,33 +1991,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1992,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,32 +1993,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1994,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1995,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1996,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1997,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,37 +1998,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,37 +1999,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1990,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,422 +1991,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,419 +1992,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,447 +1993,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,481 +1994,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,533 +1995,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,577 +1996,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,618 +1997,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,678 +1998,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,739 +1999,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,782 +1990,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,159 +1991,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,159 +1992,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,154 +1993,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,155 +1994,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,150 +1995,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,146 +1996,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,146 +1997,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,139 +1998,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,136 +1999,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,135 +1990,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,308 +1991,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,321 +1992,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,326 +1993,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,340 +1994,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,359 +1995,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,366 +1996,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,372 +1997,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,363 +1998,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,367 +1999,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,367 +1990,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6918 +1991,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6995 +1992,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7178 +1993,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7294 +1994,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7468 +1995,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7598 +1996,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7623 +1997,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7665 +1998,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7749 +1999,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7786 +1990,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,32400 +1991,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,32459 +1992,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,32971 +1993,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,33079 +1994,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,33418 +1995,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,33579 +1996,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,33310 +1997,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,33130 +1998,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,33167 +1999,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,32988 +1990,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1995,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1996,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1997,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1998,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1999,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1990,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1991,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1992,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1993,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1995,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1996,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1997,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1998,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1999,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1990,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,26 +1991,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1992,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1993,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1994,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1995,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,31 +1996,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1997,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,32 +1998,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1999,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1990,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,156 +1991,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,155 +1992,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,158 +1993,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,164 +1994,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,182 +1995,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,194 +1996,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,227 +1997,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,251 +1998,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,264 +1999,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,282 +1990,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,133 +1991,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,130 +1992,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,124 +1993,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,121 +1994,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,112 +1995,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,110 +1996,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,107 +1997,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,104 +1998,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,103 +1999,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,96 +1990,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,98 +1991,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,96 +1992,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,98 +1993,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,100 +1994,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,101 +1995,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,108 +1996,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,109 +1997,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,109 +1998,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,111 +1999,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,113 +1990,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8632 +1991,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8727 +1992,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8823 +1993,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8958 +1994,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9021 +1995,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9108 +1996,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9202 +1997,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9408 +1998,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9436 +1999,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9458 +1990,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,42766 +1991,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,43109 +1992,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,43046 +1993,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,43196 +1994,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,42978 +1995,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,42861 +1996,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,42951 +1997,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,43181 +1998,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,42976 +1999,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,42556 +1990,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1991,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1992,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1994,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1996,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1997,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1999,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1990,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1991,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1992,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1993,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,37 +1994,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1995,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,33 +1996,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1997,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,33 +1998,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,41 +1999,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,42 +1990,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1991,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,38 +1992,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,38 +1993,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,41 +1994,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,41 +1995,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1996,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,53 +1997,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,59 +1998,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,63 +1999,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,69 +1990,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,40 +1991,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,40 +1992,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,40 +1993,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1994,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1995,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1996,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,31 +1997,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1998,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1999,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1990,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1991,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1992,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1993,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1994,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,14 +1995,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1996,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,16 +1997,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1998,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1999,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1990,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5873 +1991,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5986 +1992,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5962 +1993,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5983 +1994,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6042 +1995,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6052 +1996,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6118 +1997,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6102 +1998,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6049 +1999,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6022 +1990,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,8025 +1991,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,8149 +1992,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,8044 +1993,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,7995 +1994,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,7959 +1995,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,7912 +1996,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,7918 +1997,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,7795 +1998,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,7670 +1999,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,7555 +1990,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1991,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1992,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1993,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1994,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1995,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1996,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1997,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1998,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1999,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1990,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1991,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1992,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1993,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1994,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1995,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1996,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1997,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1998,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1999,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1990,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1991,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,33 +1992,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1993,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1994,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,31 +1995,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1996,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1997,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1998,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1999,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1990,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1991,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1992,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1993,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1995,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1996,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1997,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1998,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1999,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1990,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3771 +1991,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3828 +1992,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3836 +1993,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3948 +1994,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4097 +1995,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4169 +1996,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4144 +1997,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4195 +1998,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4234 +1999,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4301 +1990,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,7233 +1991,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,7226 +1992,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,7182 +1993,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,7288 +1994,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,7437 +1995,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,7469 +1996,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,7351 +1997,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,7334 +1998,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,7346 +1999,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,7354 2003,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,160 -2004,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,160 -2005,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,198 -2006,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,224 -2007,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,219 -2008,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,212 -2009,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,222 -2010,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,235 -2011,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,245 -2012,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,257 -2013,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,266 -2014,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,271 -2015,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,286 -2016,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,308 -2017,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,300 -2018,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,317 -2019,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,346 -2020,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,347 -2010,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2000,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 2003,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2003,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2001,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2002,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 2003,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2004,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2005,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2009,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2020,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2017,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2018,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2010,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 2003,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 2003,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2001,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2002,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 2003,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2004,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2005,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2006,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,187 -2007,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,183 -2008,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,174 -2009,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,184 -2010,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,196 -2011,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,202 -2012,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,215 -2013,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,225 -2014,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,225 -2015,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,227 -2016,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,242 -2017,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,230 -2018,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,248 -2019,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,267 -2020,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,266 -2010,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,197 -2011,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,206 -2012,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,219 -2013,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,227 -2014,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,229 -2015,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,233 -2016,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,248 -2017,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,240 -2018,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,260 -2019,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,279 -2020,geoId/01039,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,278 -2000,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19421 -2001,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19156 -2002,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19019 2003,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18958 -2004,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18894 -2005,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19114 -2006,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19189 -2007,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19252 -2008,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19146 -2009,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19202 -2010,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19258 -2011,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19398 -2012,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19310 -2013,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19302 -2014,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19253 -2015,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19162 -2016,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19034 -2017,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18886 -2018,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18760 -2019,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18804 -2020,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18752 -2010,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,198 -2011,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,224 -2012,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,217 -2013,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,216 -2014,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,214 -2015,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,218 -2016,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,216 -2017,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,216 -2018,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,212 -2019,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,226 -2020,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,223 -2000,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2001,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2002,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 2003,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2004,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2005,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2006,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2007,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2008,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2009,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2010,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2011,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2012,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2013,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2014,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2015,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2016,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2017,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2018,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2019,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2020,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2000,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2001,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2002,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 2003,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2004,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2005,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2006,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2007,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2008,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2009,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2010,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2011,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2012,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2013,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2014,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2015,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2016,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2017,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2018,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2019,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2020,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2010,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2011,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2012,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2013,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2014,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2015,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2016,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2017,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2018,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2019,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2020,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2000,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2512 -2001,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2462 -2002,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2428 2003,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2449 -2004,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2411 -2005,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2448 -2006,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2497 -2007,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2518 -2008,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2504 -2009,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2523 -2010,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2503 -2011,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2504 -2012,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2496 -2013,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2522 -2014,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2531 -2015,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2557 -2016,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2514 -2017,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2459 -2018,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2481 -2019,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2491 -2020,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2507 -2010,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2626 -2011,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2636 -2012,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2632 -2013,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2656 -2014,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2672 -2015,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2692 -2016,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2652 -2017,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2608 -2018,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2635 -2019,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2651 -2020,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2675 -2010,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2003,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2001,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2002,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 2003,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2004,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2005,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,169 -2006,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,180 -2007,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,202 -2008,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,211 -2009,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,227 -2010,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,236 -2011,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,257 -2012,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,266 -2013,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,265 -2014,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,268 -2015,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,260 -2016,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,270 -2017,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,281 -2018,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,293 -2019,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,292 -2020,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,298 -2010,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16565 -2011,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16692 -2012,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16612 -2013,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16577 -2014,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16526 -2015,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16407 -2016,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16326 -2017,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16229 -2018,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16088 -2019,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16096 -2020,geoId/01039,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16024 -2000,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16673 -2001,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16439 -2002,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16334 2003,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16221 -2004,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16183 -2005,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16338 -2006,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16348 -2007,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16375 -2008,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16271 -2009,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16281 -2010,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16339 -2011,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16448 -2012,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16362 -2013,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16325 -2014,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16272 -2015,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16159 -2016,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16069 -2017,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15960 -2018,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15802 -2019,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15820 -2020,geoId/01039,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15740 -2000,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,143 -2001,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,156 -2002,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,171 +1990,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1991,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1993,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1994,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1995,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1996,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1997,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1998,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1999,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1990,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1991,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1992,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1993,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1994,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1995,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1996,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1997,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1998,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1999,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1990,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,118 +1991,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,119 +1992,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,123 +1993,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,124 +1994,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,136 +1995,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,150 +1996,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,165 +1997,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,182 +1998,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,193 +1999,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,209 2003,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,189 -2004,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,188 -2005,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,213 -2006,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,235 -2007,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,216 -2008,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,245 -2009,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,257 -2010,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,260 -2011,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,280 -2012,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,298 -2013,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,292 -2014,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,292 -2015,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,300 -2016,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,309 -2017,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,316 -2018,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,340 -2019,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,344 -2020,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,360 -2010,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 2003,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 2003,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 2003,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2004,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2006,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2016,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2017,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2018,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2019,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2010,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 2003,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 2003,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2000,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2001,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2002,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,151 2003,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 -2004,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,162 -2005,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,176 -2006,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,195 -2007,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,173 -2008,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,199 -2009,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,207 -2010,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,210 -2011,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,214 -2012,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,233 -2013,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2014,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2015,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,238 -2016,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2017,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,239 -2018,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,255 -2019,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,267 -2020,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,273 -2010,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,215 -2011,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,224 -2012,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,247 -2013,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,247 -2014,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,247 -2015,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,250 -2016,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,249 -2017,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,256 -2018,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,275 -2019,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,285 -2020,geoId/01039,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,294 -2000,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17801 -2001,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17605 -2002,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17563 2003,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17553 -2004,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17564 -2005,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17679 -2006,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17793 -2007,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17944 -2008,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17942 -2009,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17967 -2010,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18057 -2011,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18100 -2012,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17944 -2013,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17960 -2014,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17950 -2015,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17818 -2016,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17749 -2017,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17575 -2018,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17576 -2019,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17588 -2020,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17471 -2010,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,211 -2011,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,216 -2012,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,215 -2013,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,213 -2014,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,216 -2015,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,231 -2016,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,226 -2017,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,231 -2018,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,245 -2019,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,244 -2020,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,234 -2000,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2001,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2002,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 2003,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2004,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2005,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2006,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2007,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2008,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2009,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2010,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2011,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2012,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2013,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2014,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2015,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2016,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2017,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2018,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2019,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2020,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2000,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2001,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2002,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 2003,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2004,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2005,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2006,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2007,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2008,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2009,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2010,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2011,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2012,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2013,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2014,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2015,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2016,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2017,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2018,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2020,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2010,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2011,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2012,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2013,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2014,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2015,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2016,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2017,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2018,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2019,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2020,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2000,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2093 -2001,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2072 -2002,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2069 2003,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2061 -2004,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2074 -2005,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2083 -2006,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2107 -2007,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2151 -2008,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2154 -2009,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2164 -2010,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2204 -2011,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2187 -2012,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2179 -2013,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2205 -2014,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2211 -2015,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2190 -2016,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2176 -2017,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2103 -2018,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2101 -2019,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2127 -2020,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2113 -2010,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2332 -2011,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2311 -2012,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2308 -2013,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2334 -2014,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2335 -2015,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2328 -2016,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2315 -2017,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2247 -2018,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2256 -2019,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2296 -2020,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2274 -2010,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 2003,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2001,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2002,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 2003,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2004,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,163 -2005,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,167 -2006,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,185 -2007,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,192 -2008,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,211 -2009,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,230 -2010,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,246 -2011,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,256 -2012,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,253 -2013,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,251 -2014,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,257 -2015,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,268 -2016,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,261 -2017,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,272 -2018,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,289 -2019,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,298 -2020,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,283 -2010,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15673 -2011,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15731 -2012,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15571 -2013,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15570 -2014,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15547 -2015,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15411 -2016,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15367 -2017,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15260 -2018,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15267 -2019,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15239 -2020,geoId/01039,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15138 -2000,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15498 -2001,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15302 -2002,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15242 2003,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15215 -2004,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15186 -2005,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15284 -2006,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15349 -2007,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15451 -2008,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15416 -2009,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15409 -2010,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15434 -2011,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15483 -2012,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15329 -2013,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15329 -2014,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15303 -2015,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15161 -2016,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15118 -2017,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15004 -2018,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14987 -2019,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14954 -2020,geoId/01039,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14867 -2000,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,40 -2001,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,43 -2002,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,51 -2003,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,50 -2004,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,52 -2005,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,70 -2006,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,70 -2007,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,70 -2008,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,83 -2009,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,82 -2010,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,83 -2011,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,99 -2012,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,97 -2013,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,92 -2014,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,89 -2015,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,102 -2016,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,123 -2017,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,133 -2018,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,139 -2019,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,144 -2020,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,146 -2010,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2001,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2002,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2003,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2004,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2005,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2006,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2007,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2008,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2009,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2010,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2012,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2013,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2014,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2015,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2016,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2017,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2018,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2019,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2020,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2010,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2011,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2012,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2013,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2015,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2016,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2017,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2018,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2019,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2020,geoId/01041,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2000,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7171 -2001,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7177 -2002,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7090 -2003,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7088 -2004,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7145 -2005,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7082 -2006,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7119 -2007,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7133 -2008,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7119 -2009,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7177 -2010,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7098 -2011,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7087 -2012,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7063 -2013,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7012 -2014,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6981 -2015,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6988 -2016,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7012 -2017,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7033 -2018,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7021 -2019,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6948 -2020,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6890 -2010,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2011,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2012,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2013,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2014,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2015,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2016,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2019,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2020,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2000,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2001,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2002,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2003,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2004,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2005,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2006,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2008,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2009,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2012,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2018,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2020,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2000,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2003,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2004,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2005,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2006,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2007,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2008,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2009,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2010,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2011,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2012,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2013,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2014,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2015,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2016,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2017,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2018,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2019,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2020,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2010,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2011,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2012,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2013,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2014,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2015,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2016,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2017,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2018,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2019,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2020,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2000,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1868 -2001,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1853 -2002,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1797 -2003,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1804 -2004,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1826 -2005,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1809 -2006,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1820 -2007,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1838 -2008,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1795 -2009,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1799 -2010,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1756 -2011,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1794 -2012,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1788 -2013,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1761 -2014,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1732 -2015,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1735 -2016,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1750 -2017,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1752 -2018,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1735 -2019,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1766 -2020,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1737 -2010,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1811 -2011,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1853 -2012,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1847 -2013,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1821 -2014,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1797 -2015,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1806 -2016,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1819 -2017,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1816 -2018,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1798 -2019,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1835 -2020,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1813 -2010,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2001,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2002,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2003,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2004,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2005,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2006,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2007,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2008,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2009,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2010,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2011,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2012,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2013,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2014,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2015,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2016,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2017,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2018,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2019,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2020,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2010,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5223 -2011,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5150 -2012,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5135 -2013,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5108 -2014,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5110 -2015,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5117 -2016,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5128 -2017,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5162 -2018,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5169 -2019,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5065 -2020,geoId/01041,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5033 -2000,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5224 -2001,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5233 -2002,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5194 -2003,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5167 -2004,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5192 -2005,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5131 -2006,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5137 -2007,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5124 -2008,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5135 -2009,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5176 -2010,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5130 -2011,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5053 -2012,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5034 -2013,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5003 -2014,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5005 -2015,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5006 -2016,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5020 -2017,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5054 -2018,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5057 -2019,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4947 -2020,geoId/01041,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4922 -2000,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,47 -2001,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,57 -2002,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,70 -2003,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,70 -2004,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,76 -2005,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,82 -2006,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,92 -2007,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,97 -2008,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,108 -2009,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,118 -2010,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,118 -2011,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,119 -2012,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,120 -2013,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,120 -2014,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,119 -2015,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,145 -2016,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,150 -2017,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,158 -2018,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,172 -2019,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,182 -2020,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,184 -2010,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2001,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2002,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2003,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2004,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2005,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2006,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2007,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2008,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2009,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2010,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2011,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2012,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2013,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2014,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2015,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2016,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2017,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2018,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2019,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2020,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2010,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2011,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2012,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2013,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2014,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2015,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2016,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2017,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2018,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2019,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,151 -2020,geoId/01041,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,155 -2000,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6434 -2001,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6447 -2002,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6424 -2003,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6444 -2004,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6454 -2005,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6465 -2006,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6599 -2007,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6656 -2008,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6612 -2009,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6647 -2010,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6569 -2011,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6589 -2012,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6634 -2013,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6623 -2014,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6662 -2015,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6616 -2016,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6626 -2017,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6547 -2018,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6523 -2019,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6537 -2020,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6461 -2010,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2011,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2012,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2013,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2014,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2015,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2016,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2017,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2018,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2019,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2020,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2000,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2001,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2002,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2003,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2004,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2005,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2006,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2007,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2008,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2009,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2010,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2016,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2019,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2020,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2000,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2002,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2003,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2004,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2005,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2006,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2007,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2008,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2009,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2010,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2011,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2012,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2013,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2014,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2015,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2016,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2017,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2018,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2019,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2020,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2010,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2011,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2012,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2013,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2014,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2015,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2016,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2017,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2018,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2019,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2020,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2000,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1520 -2001,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1538 -2002,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1531 -2003,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1507 -2004,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1493 -2005,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1518 -2006,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1557 -2007,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1609 -2008,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1556 -2009,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1540 -2010,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1471 -2011,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1538 -2012,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1547 -2013,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1540 -2014,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1508 -2015,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1535 -2016,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1524 -2017,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1484 -2018,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1476 -2019,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1502 -2020,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1509 -2010,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1527 -2011,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1597 -2012,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1607 -2013,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1610 -2014,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1576 -2015,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1613 -2016,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1604 -2017,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1566 -2018,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1563 -2019,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1604 -2020,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1612 -2010,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2001,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2002,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2003,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2004,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2005,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2006,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2007,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2008,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2009,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2010,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2011,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2012,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2013,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2014,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2015,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2016,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2017,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2018,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2019,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2020,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,151 -2010,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4947 -2011,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4899 -2012,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4928 -2013,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4941 -2014,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5023 -2015,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4954 -2016,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4966 -2017,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4933 -2018,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4908 -2019,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4886 -2020,geoId/01041,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4803 -2000,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4843 -2001,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4824 -2002,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4795 -2003,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4818 -2004,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4829 -2005,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4787 -2006,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4868 -2007,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4857 -2008,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4850 -2009,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4874 -2010,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4861 -2011,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4796 -2012,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4828 -2013,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4841 -2014,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4921 -2015,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4850 -2016,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4856 -2017,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4820 -2018,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4781 -2019,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4750 -2020,geoId/01041,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4664 -2000,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,644 -2001,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,733 -2002,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,791 -2003,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,837 -2004,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,929 -2005,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1066 -2006,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1205 -2007,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1294 -2008,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1402 -2009,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1467 -2010,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1517 -2011,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1553 -2012,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1544 -2013,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1529 -2014,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1555 -2015,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1605 -2016,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1716 -2017,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1725 -2018,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1792 -2019,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1808 -2020,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1848 -2010,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2011,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2012,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2013,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2014,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2015,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2016,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2017,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2018,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2019,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2020,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2000,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2001,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2002,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2003,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2004,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2005,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2008,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2009,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2000,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2000,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2006,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2007,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2008,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2009,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2010,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2017,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2011,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2012,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2013,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2016,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2017,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2018,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2019,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2020,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2010,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2007,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2008,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2009,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2010,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2011,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2012,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2019,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2020,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2000,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,615 -2001,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,705 -2002,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,757 -2003,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,798 -2004,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,880 -2005,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,990 -2006,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1120 -2007,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1206 -2008,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1303 -2009,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1365 -2010,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1416 -2011,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1453 -2012,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1435 -2013,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1424 -2014,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1454 -2015,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1484 -2016,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1573 -2017,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1582 -2018,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1640 -2019,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1656 -2020,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1679 -2010,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1447 -2011,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1485 -2012,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1473 -2013,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1460 -2014,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1482 -2015,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1520 -2016,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1610 -2017,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1622 -2018,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1680 -2019,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1705 -2020,geoId/01043,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1736 -2000,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,38607 -2001,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,38467 -2002,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,38380 -2003,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,38373 -2004,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,38507 -2005,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,38667 -2006,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,38646 -2007,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,38842 -2008,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,39148 -2009,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,39117 -2010,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,39204 -2011,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,39129 -2012,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,39042 -2013,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,39189 -2014,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,39412 -2015,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,39737 -2016,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40022 -2017,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40179 -2018,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40322 -2019,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40495 -2020,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40878 -2010,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,471 -2011,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,469 -2012,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,456 -2013,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,476 -2014,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,492 -2015,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,497 -2016,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,506 -2017,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,508 -2018,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,508 -2019,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,530 -2020,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,542 -2000,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2001,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,154 -2002,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,161 -2003,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2004,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2005,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2006,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,173 -2007,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2008,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2009,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,190 -2010,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,202 -2011,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,192 -2012,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,194 -2013,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,199 -2014,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,209 -2015,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,213 -2016,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,213 -2017,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,211 -2018,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,221 -2019,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,225 -2020,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,228 -2000,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2001,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2002,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2003,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,152 -2004,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2005,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,151 -2006,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,163 -2007,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2008,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,189 -2009,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,186 -2010,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,205 -2011,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,226 -2012,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,233 -2013,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,247 -2014,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,266 -2015,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,296 -2016,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,306 -2017,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,287 -2018,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,301 -2019,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,309 -2020,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,321 -2010,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,243 -2011,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,272 -2012,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,278 -2013,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,291 -2014,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,311 -2015,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,344 -2016,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,354 -2017,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,341 -2018,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,365 -2019,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,369 -2020,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,390 -2000,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,337 -2001,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,369 -2002,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,368 -2003,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,385 -2004,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,388 -2005,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,400 -2006,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,401 -2007,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,402 -2008,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,406 -2009,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,393 -2010,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,393 -2011,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,371 -2012,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,384 -2013,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,391 -2014,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,388 -2015,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,398 -2016,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,422 -2017,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,447 -2018,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,449 -2019,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,474 -2020,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,483 -2010,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,502 -2011,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,482 -2012,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,494 -2013,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,508 -2014,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,519 -2015,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,523 -2016,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,570 -2017,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,599 -2018,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,610 -2019,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,641 -2020,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,655 -2010,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2016,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2018,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2019,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2000,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2003,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,305 -2001,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,323 -2002,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,317 -2003,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,339 -2004,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,363 -2005,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,374 -2006,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,368 -2007,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,378 -2008,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,395 -2009,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,383 -2010,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,397 -2011,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,412 -2012,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,387 -2013,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,417 -2014,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,439 -2015,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,441 -2016,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,469 -2017,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,482 -2018,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,499 -2019,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,511 -2020,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,525 -2010,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38371 -2011,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38299 -2012,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38189 -2013,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38311 -2014,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38503 -2015,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38787 -2016,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39038 -2017,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39176 -2018,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39294 -2019,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39429 -2020,geoId/01043,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39784 -2000,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37717 -2001,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37500 -2002,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37394 -2003,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37329 -2004,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37444 -2005,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37558 -2006,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37530 -2007,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37692 -2008,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37967 -2009,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37954 -2010,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37995 -2011,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37916 -2012,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37830 -2013,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37921 -2014,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38091 -2015,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38368 -2016,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38588 -2017,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38718 -2018,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38821 -2019,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38951 -2020,geoId/01043,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39293 -2000,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1040 -2001,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1074 -2002,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1135 -2003,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1225 -2004,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1357 -2005,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1470 -2006,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1605 -2007,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1682 -2008,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1807 -2009,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1868 -2010,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1929 -2011,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1834 -2012,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1781 -2013,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1806 -2014,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1802 -2015,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1821 -2016,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1856 -2017,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1846 -2018,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1877 -2019,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1924 -2020,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1987 -2010,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2011,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2012,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2013,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2014,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2015,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2016,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2017,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2018,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2019,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2020,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2000,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2001,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2002,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2003,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2004,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2005,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2006,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2007,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2008,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2009,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2011,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2000,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2000,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2002,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2003,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2006,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2007,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2008,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2009,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2010,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2011,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2012,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2013,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2014,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2015,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2017,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2018,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2020,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2010,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2011,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2012,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2013,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2014,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2015,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2016,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2017,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2018,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2019,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2020,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2010,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2001,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2002,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2006,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2007,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2008,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2009,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2010,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2011,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2013,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2014,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2015,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2016,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2017,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2018,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2019,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2020,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2000,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,967 -2001,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1002 -2002,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1066 -2003,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1138 -2004,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1271 -2005,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1365 -2006,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1491 -2007,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1564 -2008,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1674 -2009,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1727 -2010,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1783 -2011,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1686 -2012,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1628 -2013,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1654 -2014,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1645 -2015,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1653 -2016,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1682 -2017,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1669 -2018,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1688 -2019,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1733 -2020,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1791 -2010,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1820 -2011,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1733 -2012,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1675 -2013,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1703 -2014,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1695 -2015,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1703 -2016,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1729 -2017,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1722 -2018,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1746 -2019,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1791 -2020,geoId/01043,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1851 -2000,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37182 -2001,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37141 -2002,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37137 -2003,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37222 -2004,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37338 -2005,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37489 -2006,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37588 -2007,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37758 -2008,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37916 -2009,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37899 -2010,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37806 -2011,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37903 -2012,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37925 -2013,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38180 -2014,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38312 -2015,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38608 -2016,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38840 -2017,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39080 -2018,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39309 -2019,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39417 -2020,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39802 -2010,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,457 -2011,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,452 -2012,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,454 -2013,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,475 -2014,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,492 -2015,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,493 -2016,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,494 -2017,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,508 -2018,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,534 -2019,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,537 -2020,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,569 -2000,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2001,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2002,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2003,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,157 -2004,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,163 -2005,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2006,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2007,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2008,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2009,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,196 -2010,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,200 -2011,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,191 -2012,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,193 -2013,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,204 -2014,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,209 -2015,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,212 -2016,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,216 -2017,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,213 -2018,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,226 -2019,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,233 -2020,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,245 -2000,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2001,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2002,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2003,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2004,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2005,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2006,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2007,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2008,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2009,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2010,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2011,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2012,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2013,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,177 -2014,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2015,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,191 -2016,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,199 -2017,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,190 -2018,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,196 -2019,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,201 -2020,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,210 -2010,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2011,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,187 -2012,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,207 -2013,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,230 -2014,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,230 -2015,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,246 -2016,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,257 -2017,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,254 -2018,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,255 -2019,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,274 -2020,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,278 -2000,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,389 -2001,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,422 -2002,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,418 -2003,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,444 -2004,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,447 -2005,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,445 -2006,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,439 -2007,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,464 -2008,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,447 -2009,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,445 -2010,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,430 -2011,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,445 -2012,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,442 -2013,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,480 -2014,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,470 -2015,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,487 -2016,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,514 -2017,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,535 -2018,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,541 -2019,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,566 -2020,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,586 -2010,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,523 -2011,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,543 -2012,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,544 -2013,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,590 -2014,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,594 -2015,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,607 -2016,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,656 -2017,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,685 -2018,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,702 -2019,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,747 -2020,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,767 -2010,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2016,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2017,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2019,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2020,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2000,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,298 -2001,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,316 -2002,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,306 -2003,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,327 -2004,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,327 -2005,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,317 -2006,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,335 -2007,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,360 -2008,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,360 -2009,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,371 -2010,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,363 -2011,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,388 -2012,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,391 -2013,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,415 -2014,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,428 -2015,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,440 -2016,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,455 -2017,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,480 -2018,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,510 -2019,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,522 -2020,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,541 -2010,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37026 -2011,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37097 -2012,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37102 -2013,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37287 -2014,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37415 -2015,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37677 -2016,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37866 -2017,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38087 -2018,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38291 -2019,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38360 -2020,geoId/01043,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38708 -2000,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36299 -2001,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36185 -2002,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36176 -2003,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36210 -2004,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36313 -2005,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36472 -2006,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36540 -2007,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36644 -2008,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36812 -2009,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36752 -2010,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36678 -2011,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36725 -2012,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36732 -2013,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36897 -2014,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37014 -2015,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37262 -2016,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37434 -2017,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37632 -2018,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37807 -2019,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37868 -2020,geoId/01043,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38197 -2000,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,802 -2001,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,856 -2002,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,864 -2003,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,916 -2004,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,980 -2005,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,934 -2006,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1056 -2007,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1179 -2008,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1180 -2009,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1219 -2010,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1288 -2011,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1374 -2012,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1348 -2013,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1343 -2014,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1405 -2015,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1425 -2016,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1519 -2017,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1538 -2018,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1547 -2019,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1577 -2020,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1631 -2010,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2011,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2012,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2013,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2014,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2015,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2016,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2017,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2019,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2020,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2000,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2004,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2009,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2012,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2001,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2002,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2003,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2004,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2005,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2006,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2007,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2008,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2009,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2010,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2011,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2012,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2013,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2014,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2015,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2016,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2017,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2018,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2019,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,140 -2020,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,145 -2010,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2011,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,153 -2012,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,155 -2013,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2014,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2015,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2016,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2017,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,185 -2018,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2019,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,195 -2020,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,192 -2010,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2000,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2001,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2002,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2003,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2004,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2005,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2006,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2007,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2008,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2009,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2010,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2011,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2012,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2013,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2014,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2015,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2016,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2017,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2018,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2019,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2020,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2000,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,661 -2001,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,709 -2002,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,722 -2003,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,760 -2004,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,820 -2005,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,770 -2006,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,853 -2007,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,978 -2008,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,970 -2009,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,985 -2010,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1057 -2011,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1121 -2012,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1101 -2013,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1105 -2014,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1167 -2015,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1180 -2016,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1255 -2017,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1240 -2018,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1259 -2019,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1278 -2020,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1344 -2010,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1156 -2011,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1209 -2012,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1189 -2013,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1195 -2014,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1251 -2015,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1267 -2016,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1342 -2017,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1333 -2018,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1346 -2019,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1358 -2020,geoId/01045,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1428 -2000,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23960 -2001,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24006 -2002,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23968 -2003,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23894 -2004,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23759 -2005,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23780 -2006,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23657 -2007,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23884 -2008,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24121 -2009,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23971 -2010,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24217 -2011,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24074 -2012,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24046 -2013,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23780 -2014,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23615 -2015,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23608 -2016,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23526 -2017,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23528 -2018,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23514 -2019,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23466 -2020,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23348 -2010,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,398 -2011,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,390 -2012,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,410 -2013,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,397 -2014,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,381 -2015,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,387 -2016,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,387 -2017,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,374 -2018,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,344 -2019,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,366 -2020,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,386 -2000,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2001,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2002,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,154 -2003,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2004,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2005,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,146 -2006,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2007,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2008,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,154 -2009,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2010,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2011,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,161 -2012,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2013,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,154 -2014,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,157 -2015,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2016,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2017,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,156 -2018,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2019,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,161 -2020,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,168 -2000,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,369 -2001,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,370 -2002,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,384 -2003,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,372 -2004,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,369 -2005,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,367 -2006,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,373 -2007,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,391 -2008,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,387 -2009,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,380 -2010,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,370 -2011,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,376 -2012,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,391 -2013,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,396 -2014,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,399 -2015,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,413 -2016,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,418 -2017,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,439 -2018,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,445 -2019,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,459 -2020,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,451 -2010,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,518 -2011,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,524 -2012,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,569 -2013,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,552 -2014,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,566 -2015,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,573 -2016,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,563 -2017,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,591 -2018,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,602 -2019,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,626 -2020,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,612 -2000,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5277 -2001,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5256 -2002,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5192 -2003,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5186 -2004,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5199 -2005,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5253 -2006,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5151 -2007,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5167 -2008,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5207 -2009,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5115 -2010,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5120 -2011,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5090 -2012,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5080 -2013,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5116 -2014,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5084 -2015,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5263 -2016,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5244 -2017,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5368 -2018,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5407 -2019,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5404 -2020,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5368 -2010,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5410 -2011,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5388 -2012,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5410 -2013,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5427 -2014,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5396 -2015,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5570 -2016,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5538 -2017,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5677 -2018,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5713 -2019,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5722 -2020,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5680 -2010,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2011,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2012,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2013,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2014,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2015,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2016,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2017,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2018,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2019,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2000,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2001,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2002,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2003,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2004,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2005,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2006,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2000,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,392 -2001,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,406 -2002,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,408 -2003,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,433 -2004,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,446 -2005,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,488 -2006,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,526 -2007,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,532 -2008,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,570 -2009,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,588 -2010,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,623 -2011,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,619 -2012,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,670 -2013,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,645 -2014,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,643 -2015,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,628 -2016,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,609 -2017,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,617 -2018,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,620 -2019,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,641 -2020,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,630 -2010,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18485 -2011,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18362 -2012,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18324 -2013,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18017 -2014,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17877 -2015,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17673 -2016,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17595 -2017,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17454 -2018,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17410 -2019,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17345 -2020,geoId/01045,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17261 -2000,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17762 -2001,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17813 -2002,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17805 -2003,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17735 -2004,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17580 -2005,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17503 -2006,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17446 -2007,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17629 -2008,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17787 -2009,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17708 -2010,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17914 -2011,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17803 -2012,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17722 -2013,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17442 -2014,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17305 -2015,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17102 -2016,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17040 -2017,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16902 -2018,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16849 -2019,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16765 -2020,geoId/01045,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16693 -2000,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,845 -2001,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,900 -2002,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,961 -2003,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,985 -2004,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1088 -2005,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1088 -2006,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1119 -2007,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1277 -2008,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1386 -2009,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1521 -2010,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1562 -2011,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1548 -2012,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1520 -2013,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1475 -2014,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1499 -2015,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1545 -2016,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1608 -2017,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1689 -2018,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1751 -2019,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1798 -2020,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1765 -2010,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2011,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2012,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2013,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2014,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2015,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2016,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2017,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2018,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2019,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2020,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2000,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2004,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2006,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2008,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2009,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2010,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2011,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2012,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2013,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2015,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2016,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2017,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2018,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2019,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2000,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2011,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2016,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2001,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2002,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2003,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2004,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2005,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2006,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2007,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2008,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2009,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2010,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2011,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2012,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2013,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2014,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2015,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2016,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2017,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2018,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2019,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2020,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2010,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,142 -2011,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,164 -2012,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,169 -2013,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,174 -2014,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,151 -2015,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2016,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,172 -2017,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,170 -2018,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,192 -2019,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,190 -2020,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,191 -2010,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2019,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2000,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2001,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2002,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2003,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2004,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2005,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2006,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2007,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2008,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2009,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2010,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2011,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2012,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2013,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2014,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2015,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2016,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2017,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2018,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2019,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2020,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2000,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,703 -2001,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,746 -2002,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,800 -2003,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,812 -2004,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,903 -2005,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,894 -2006,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,919 -2007,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1076 -2008,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1159 -2009,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1277 -2010,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1312 -2011,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1268 -2012,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1232 -2013,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1188 -2014,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1237 -2015,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1279 -2016,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1326 -2017,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1392 -2018,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1422 -2019,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1470 -2020,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1438 -2010,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1393 -2011,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1352 -2012,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1309 -2013,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1285 -2014,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1312 -2015,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1351 -2016,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1403 -2017,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1471 -2018,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1517 -2019,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1564 -2020,geoId/01045,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1532 -2000,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23517 -2001,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23492 -2002,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23580 -2003,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23420 -2004,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23418 -2005,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23248 -2006,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23245 -2007,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23148 -2008,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23184 -2009,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23143 -2010,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23329 -2011,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23138 -2012,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23399 -2013,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23209 -2014,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,22946 -2015,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,22850 -2016,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,22823 -2017,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,22712 -2018,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,22456 -2019,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,22453 -2020,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,22215 -2010,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,385 -2011,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,380 -2012,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,376 -2013,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,350 -2014,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,370 -2015,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,354 -2016,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,350 -2017,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,362 -2018,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,350 -2019,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,335 -2020,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,356 -2000,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,156 -2001,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2002,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2003,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2004,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,162 -2005,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2006,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,169 -2007,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2008,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2009,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,174 -2010,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,174 -2011,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,182 -2012,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 -2013,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,155 -2014,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2015,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,162 -2016,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,168 -2017,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,173 -2018,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2019,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,157 -2020,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,169 -2000,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 -2001,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2002,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2003,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,161 -2004,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,154 -2005,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2006,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,147 -2007,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2008,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,145 -2009,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2010,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,156 -2011,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2012,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 -2013,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,204 -2014,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,202 -2015,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,215 -2016,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2017,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,238 -2018,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,224 -2019,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,241 -2020,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,246 -2010,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,299 -2011,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,311 -2012,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,341 -2013,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,354 -2014,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,349 -2015,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,369 -2016,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,373 -2017,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,398 -2018,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,380 -2019,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,393 -2020,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,392 -2000,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4657 -2001,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4658 -2002,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4686 -2003,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4646 -2004,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4618 -2005,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4647 -2006,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4653 -2007,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4554 -2008,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4502 -2009,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4481 -2010,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4464 -2011,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4382 -2012,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4430 -2013,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4378 -2014,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4361 -2015,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4471 -2016,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4557 -2017,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4646 -2018,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4606 -2019,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4647 -2020,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4627 -2010,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4725 -2011,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4641 -2012,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4713 -2013,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4661 -2014,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4633 -2015,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4747 -2016,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4836 -2017,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4951 -2018,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4905 -2019,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4938 -2020,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4906 -2010,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2011,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2012,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2013,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2014,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2015,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2016,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2017,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2018,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2019,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2020,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2000,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2001,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2002,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2003,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2004,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2005,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2007,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2008,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2000,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,413 -2001,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,406 -2002,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,416 -2003,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,433 -2004,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,484 -2005,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,472 -2006,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,487 -2007,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,502 -2008,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,515 -2009,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,534 -2010,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,573 -2011,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,560 -2012,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,590 -2013,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,572 -2014,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,574 -2015,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,573 -2016,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,562 -2017,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,596 -2018,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,597 -2019,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,568 -2020,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,569 -2010,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18472 -2011,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18333 -2012,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18542 -2013,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18385 -2014,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18137 -2015,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17911 -2016,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17783 -2017,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17566 -2018,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17389 -2019,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17333 -2020,geoId/01045,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17090 -2000,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18090 -2001,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18070 -2002,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18110 -2003,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17979 -2004,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17970 -2005,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17794 -2006,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17765 -2007,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17745 -2008,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17834 -2009,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17779 -2010,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17943 -2011,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17825 -2012,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,18005 -2013,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17877 -2014,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17617 -2015,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17400 -2016,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17282 -2017,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,17025 -2018,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16841 -2019,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16811 -2020,geoId/01045,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,16578 -2000,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,146 -2001,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,149 -2002,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,143 -2003,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,145 -2004,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,139 -2005,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,145 -2006,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,131 -2007,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,127 -2008,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,122 -2009,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,121 -2010,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,128 -2011,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,134 -2012,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,159 -2013,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,166 -2014,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,168 -2015,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,173 -2016,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,189 -2017,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,191 -2018,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,180 -2019,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,182 -2020,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,193 -2010,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2001,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2002,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2003,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2004,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2005,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2006,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2007,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2008,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2009,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2010,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2011,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2012,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2013,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2014,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2015,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2016,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2017,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2018,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2019,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2020,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2010,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2011,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2012,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2013,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2014,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2015,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2016,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2017,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2018,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2020,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2010,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2001,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2002,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2003,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2004,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2005,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2006,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2007,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2008,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2009,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2010,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2011,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2012,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2013,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2014,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2015,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2016,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2017,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2018,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2019,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2020,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2010,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2011,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2012,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2013,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2014,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2015,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2016,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2017,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2018,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2019,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2020,geoId/01047,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2000,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25046 -2001,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25001 -2002,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24546 -2003,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24375 -2004,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,24121 -2005,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23863 -2006,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23781 -2007,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23696 -2008,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23754 -2009,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23435 -2010,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23452 -2011,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,23154 -2012,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,22842 -2013,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,22345 -2014,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,22152 -2015,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,21868 -2016,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,21410 -2017,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20952 -2018,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20409 -2019,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19821 -2020,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,19219 -2010,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2011,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2012,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2013,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2014,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2015,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2016,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2017,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2018,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2019,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2020,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2000,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2001,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2002,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2003,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2004,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2005,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2006,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2007,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2008,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2009,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2010,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2011,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2000,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2001,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2002,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2003,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2004,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2005,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2006,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2007,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2008,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2009,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2010,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2011,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2012,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2013,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2015,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2016,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2017,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2018,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2019,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2020,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2010,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2011,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2012,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2013,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2014,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2015,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2016,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2017,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2018,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2019,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2020,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2000,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16266 -2001,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16378 -2002,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16266 -2003,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16288 -2004,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16262 -2005,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16235 -2006,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16328 -2007,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16449 -2008,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16665 -2009,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16438 -2010,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16568 -2011,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16441 -2012,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16281 -2013,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15972 -2014,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15845 -2015,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15666 -2016,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15384 -2017,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15072 -2018,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14669 -2019,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14282 -2020,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13887 -2010,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16656 -2011,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16539 -2012,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16390 -2013,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16069 -2014,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15952 -2015,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15774 -2016,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15496 -2017,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15194 -2018,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14798 -2019,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14404 -2020,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14008 -2010,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2001,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2002,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2003,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2004,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2005,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2006,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,129 -2007,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2008,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2009,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,145 -2010,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2011,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2012,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2013,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2014,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,172 -2015,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,172 -2016,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2017,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,178 -2018,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,186 -2019,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2020,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2010,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6755 -2011,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6576 -2012,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6412 -2013,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6239 -2014,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6178 -2015,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6055 -2016,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5875 -2017,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5707 -2018,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5573 -2019,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5391 -2020,geoId/01047,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5187 -2000,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8573 -2001,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8409 -2002,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8059 -2003,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7861 -2004,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7628 -2005,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7400 -2006,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7219 -2007,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7009 -2008,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6843 -2009,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6742 -2010,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6625 -2011,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6436 -2012,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6272 -2013,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6103 -2014,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6023 -2015,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5907 -2016,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5708 -2017,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5560 -2018,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5408 -2019,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5222 -2020,geoId/01047,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5029 -2000,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,144 -2001,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,151 -2002,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,162 -2003,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,150 -2004,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,139 -2005,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,149 -2006,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,169 -2007,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,146 -2008,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,160 -2009,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,161 -2010,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,185 -2011,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,212 -2012,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,228 -2013,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,218 -2014,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,211 -2015,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,213 -2016,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,219 -2017,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,213 -2018,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,222 -2019,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,226 -2020,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,238 -2010,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2001,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2002,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2003,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2004,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2005,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2006,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2007,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2008,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2009,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2010,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2011,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2012,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2013,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2014,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2015,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2016,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2017,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2018,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2019,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2020,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2010,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2011,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2012,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2013,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2014,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2015,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2016,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2017,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2018,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2019,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2020,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2010,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2001,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2002,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2003,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2004,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2005,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2006,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2007,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2008,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2009,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2010,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2011,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2012,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2013,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2014,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2015,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2016,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2017,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2018,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2019,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2020,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2010,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2011,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,134 -2012,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,142 -2013,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2014,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2015,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,123 -2016,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2017,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2018,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2019,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2020,geoId/01047,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2000,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,20862 -2001,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,20831 -2002,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,20526 -2003,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,20500 -2004,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,20396 -2005,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,20277 -2006,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,20242 -2007,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,20225 -2008,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,20229 -2009,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,20042 -2010,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,20090 -2011,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19754 -2012,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19565 -2013,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19252 -2014,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19029 -2015,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18693 -2016,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18287 -2017,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17907 -2018,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17459 -2019,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16953 -2020,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16448 -2010,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2011,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2012,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2013,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2014,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2015,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2016,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2017,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2018,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2019,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2020,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2000,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2001,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2002,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2003,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2004,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2005,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2006,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2007,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2008,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2009,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2011,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2012,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2013,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2014,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2015,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2016,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2017,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2018,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2019,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2020,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2000,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2001,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2002,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2003,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2004,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2005,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2006,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2007,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2008,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2009,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2010,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2011,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2012,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2013,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2014,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2015,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2016,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2017,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2018,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2019,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2020,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2010,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2011,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2012,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2013,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2014,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2015,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2016,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2017,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2018,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,147 -2019,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2020,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2000,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12892 -2001,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13043 -2002,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12997 -2003,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13168 -2004,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13232 -2005,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13296 -2006,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13467 -2007,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13595 -2008,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13721 -2009,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13707 -2010,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13841 -2011,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13594 -2012,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13441 -2013,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13257 -2014,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13108 -2015,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12921 -2016,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12697 -2017,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12457 -2018,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12159 -2019,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11846 -2020,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11528 -2010,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13911 -2011,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13665 -2012,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13525 -2013,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13349 -2014,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13202 -2015,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13014 -2016,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12794 -2017,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12555 -2018,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12250 -2019,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11943 -2020,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11622 -2010,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2001,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2002,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2003,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2004,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2005,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2006,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2007,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2008,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2009,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2010,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2011,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2012,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2013,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2014,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2015,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,151 -2016,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2017,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2018,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,151 -2019,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,154 -2020,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,147 -2010,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6118 -2011,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6015 -2012,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5971 -2013,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5827 -2014,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5746 -2015,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5591 -2016,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5396 -2017,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5241 -2018,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5096 -2019,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4933 -2020,geoId/01047,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4747 -2000,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7789 -2001,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7595 -2002,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7344 -2003,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7131 -2004,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6962 -2005,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6776 -2006,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6566 -2007,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6410 -2008,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6283 -2009,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6103 -2010,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6001 -2011,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5901 -2012,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5850 -2013,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5698 -2014,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5608 -2015,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5460 -2016,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5261 -2017,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5116 -2018,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4960 -2019,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4796 -2020,geoId/01047,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4617 -2000,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1507 -2001,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1843 -2002,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2094 -2003,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2387 -2004,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2725 -2005,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3103 -2006,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3435 -2007,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3752 -2008,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4121 -2009,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4385 -2010,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4600 -2011,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4764 -2012,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4671 -2013,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4707 -2014,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4718 -2015,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4680 -2016,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4741 -2017,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4865 -2018,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4986 -2019,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5098 -2020,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5218 -2010,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,389 -2011,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,373 -2012,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,353 -2013,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,350 -2014,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,336 -2015,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,325 -2016,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,309 -2017,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,305 -2018,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,310 -2019,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,323 -2020,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,336 -2000,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2001,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2002,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2003,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2004,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2005,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,169 -2006,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,197 -2007,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,230 -2008,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,260 -2009,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,302 -2010,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,320 -2011,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,297 -2012,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,286 -2013,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,277 -2014,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,263 -2015,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,253 -2016,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,242 -2017,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,235 -2018,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,243 -2019,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,254 -2020,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,264 -2000,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2001,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2004,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2006,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2007,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2008,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2009,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2010,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2017,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2018,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2019,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2020,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2010,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2011,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2012,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2013,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2014,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2015,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2016,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2017,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2018,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2019,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2020,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2000,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2002,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2003,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2004,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2005,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2006,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2007,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2008,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2009,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2010,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2011,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2012,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2013,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2014,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2015,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2016,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2017,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2018,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2019,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,152 -2020,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2010,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2011,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2012,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,153 -2013,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,153 -2014,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2015,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,155 -2016,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,153 -2017,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,165 -2018,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,170 -2019,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,191 -2020,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2010,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,292 -2011,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,263 -2012,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,250 -2013,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,230 -2014,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,219 -2015,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,211 -2016,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,194 -2017,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,191 -2018,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,198 -2019,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,197 -2020,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,202 -2000,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2002,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2003,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2004,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2005,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,147 -2006,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,169 -2007,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,195 -2008,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,223 -2009,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,247 -2010,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,270 -2011,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,251 -2012,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2013,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,215 -2014,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,204 -2015,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,190 -2016,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2017,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2018,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2019,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2020,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,189 -2000,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2003,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2004,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2005,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2006,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2007,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2008,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2009,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2010,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2011,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2012,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2013,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2014,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2015,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2016,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2017,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2018,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2019,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2020,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2000,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1434 -2001,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1689 -2002,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1870 -2003,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2075 -2004,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2352 -2005,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2618 -2006,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2877 -2007,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3112 -2008,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3386 -2009,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3577 -2010,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3742 -2011,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3948 -2012,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3880 -2013,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3944 -2014,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3978 -2015,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3966 -2016,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4048 -2017,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4166 -2018,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4269 -2019,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4356 -2020,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4455 -2010,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3833 -2011,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4043 -2012,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3968 -2013,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4037 -2014,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4069 -2015,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4051 -2016,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4131 -2017,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4243 -2018,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4348 -2019,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4432 -2020,geoId/01049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4539 -2000,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31519 -2001,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31607 -2002,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31452 -2003,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31384 -2004,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31340 -2005,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31236 -2006,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31284 -2007,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31496 -2008,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31481 -2009,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31426 -2010,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31412 -2011,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31381 -2012,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31209 -2013,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31164 -2014,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31178 -2015,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31214 -2016,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31147 -2017,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31105 -2018,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31018 -2019,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,30894 -2020,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,30842 -2010,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,964 -2011,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,996 -2012,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,972 -2013,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,977 -2014,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,964 -2015,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,965 -2016,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,963 -2017,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,943 -2018,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,938 -2019,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,946 -2020,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,983 -2000,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,239 -2001,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,265 -2002,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,282 -2003,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,321 -2004,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,346 -2005,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,343 -2006,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,390 -2007,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,375 -2008,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,396 -2009,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,425 -2010,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,449 -2011,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,468 -2012,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,469 -2013,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,455 -2014,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,458 -2015,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,451 -2016,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,446 -2017,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,447 -2018,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,444 -2019,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,439 -2020,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,453 -2000,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2001,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2002,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2003,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2004,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2005,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2006,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2007,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2008,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2009,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2010,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2011,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2012,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2013,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2014,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2015,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2016,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2017,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2018,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2019,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2020,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2010,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2011,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2012,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,153 -2013,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2014,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,140 -2015,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2016,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,142 -2017,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2018,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2019,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,153 -2020,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,162 -2000,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,594 -2001,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,610 -2002,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,588 -2003,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,591 -2004,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,566 -2005,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,560 -2006,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,540 -2007,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,565 -2008,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,571 -2009,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,540 -2010,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,518 -2011,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,530 -2012,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,534 -2013,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,516 -2014,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,529 -2015,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,512 -2016,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,498 -2017,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,506 -2018,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,516 -2019,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,515 -2020,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,505 -2010,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,645 -2011,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,653 -2012,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,664 -2013,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,658 -2014,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,662 -2015,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,653 -2016,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,643 -2017,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,659 -2018,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,668 -2019,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,680 -2020,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,684 -2010,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2011,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2015,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2018,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2019,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2020,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2000,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,380 -2001,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,412 -2002,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,415 -2003,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,460 -2004,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,477 -2005,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,511 -2006,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,530 -2007,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,570 -2008,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,599 -2009,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,625 -2010,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,656 -2011,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,665 -2012,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,650 -2013,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,684 -2014,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,668 -2015,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,674 -2016,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,688 -2017,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,672 -2018,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,673 -2019,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,696 -2020,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,732 -2010,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30290 -2011,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30220 -2012,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30052 -2013,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30041 -2014,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30056 -2015,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30110 -2016,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30058 -2017,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29982 -2018,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29901 -2019,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29781 -2020,geoId/01049,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29718 -2000,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30234 -2001,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30234 -2002,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30080 -2003,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29924 -2004,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29853 -2005,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29726 -2006,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29726 -2007,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29887 -2008,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29811 -2009,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29740 -2010,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29666 -2011,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29592 -2012,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29433 -2013,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29393 -2014,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29411 -2015,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29465 -2016,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29401 -2017,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29351 -2018,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29254 -2019,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29117 -2020,geoId/01049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29023 -2000,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2114 -2001,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2477 -2002,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2733 -2003,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3072 -2004,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3368 -2005,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3654 -2006,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4007 -2007,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4243 -2008,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4582 -2009,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4914 -2010,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5076 -2011,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5171 -2012,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5121 -2013,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5131 -2014,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5133 -2015,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5197 -2016,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5325 -2017,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5492 -2018,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5568 -2019,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5638 -2020,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5719 -2010,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,429 -2011,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,393 -2012,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,387 -2013,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,374 -2014,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,382 -2015,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,385 -2016,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,397 -2017,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,383 -2018,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,392 -2019,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,396 -2020,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,382 -2000,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2001,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2002,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2003,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2004,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2005,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 -2006,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2007,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,247 -2008,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,283 -2009,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,324 -2010,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,349 -2011,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,314 -2012,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,305 -2013,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,301 -2014,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,314 -2015,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,300 -2016,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,312 -2017,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,303 -2018,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,313 -2019,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,315 -2020,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,316 -2000,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2004,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2005,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2006,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2007,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2008,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2009,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2010,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2013,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2017,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2018,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2019,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2020,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2010,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2011,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2012,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2013,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2014,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2016,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2017,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2018,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2019,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2020,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2000,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2001,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2002,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2003,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2004,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2005,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2006,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2007,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2008,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2009,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2010,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2011,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2012,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2013,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2014,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2015,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2016,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2017,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,155 -2018,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,161 -2019,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2020,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,169 -2010,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2011,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2012,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,134 -2013,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,145 -2014,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,153 -2015,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,162 -2016,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,168 -2017,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2018,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2019,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,201 -2020,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,207 -2010,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,322 -2011,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,292 -2012,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,280 -2013,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,272 -2014,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,256 -2015,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,250 -2016,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,253 -2017,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,240 -2018,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,239 -2019,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,231 -2020,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,230 -2000,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2002,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2003,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2004,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2005,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2006,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,192 -2007,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,221 -2008,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,253 -2009,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,283 -2010,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,304 -2011,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,276 -2012,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,264 -2013,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,255 -2014,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,242 -2015,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,233 -2016,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,230 -2017,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,224 -2018,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,219 -2019,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,217 -2020,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2000,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2002,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2003,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2004,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2005,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2006,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2007,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2008,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2009,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2010,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2011,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2012,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2013,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2014,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2015,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2016,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2017,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2018,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2019,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2020,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2000,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2004 -2001,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2280 -2002,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2456 -2003,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2711 -2004,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2926 -2005,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3140 -2006,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3413 -2007,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3565 -2008,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3804 -2009,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4038 -2010,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4156 -2011,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4316 -2012,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4287 -2013,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4307 -2014,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4304 -2015,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4380 -2016,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4479 -2017,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4631 -2018,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4698 -2019,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4756 -2020,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4852 -2010,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4244 -2011,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4413 -2012,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4381 -2013,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4406 -2014,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4402 -2015,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4472 -2016,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4573 -2017,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4731 -2018,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4792 -2019,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4857 -2020,geoId/01049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4940 -2000,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29510 -2001,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29751 -2002,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29582 -2003,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29687 -2004,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29827 -2005,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29801 -2006,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29769 -2007,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29959 -2008,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,30044 -2009,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,30139 -2010,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,30045 -2011,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,30019 -2012,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29912 -2013,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29879 -2014,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29934 -2015,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29974 -2016,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29903 -2017,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29979 -2018,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29858 -2019,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29876 -2020,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29879 -2010,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,879 -2011,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,878 -2012,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,883 -2013,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,869 -2014,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,864 -2015,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,864 -2016,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,864 -2017,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,898 -2018,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,914 -2019,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,926 -2020,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,950 -2000,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,243 -2001,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,253 -2002,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,281 -2003,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,290 -2004,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,317 -2005,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,320 -2006,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,340 -2007,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,347 -2008,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,370 -2009,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,407 -2010,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,408 -2011,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,410 -2012,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,415 -2013,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,407 -2014,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,405 -2015,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,401 -2016,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,402 -2017,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,415 -2018,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,413 -2019,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,427 -2020,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,439 -2000,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2001,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2002,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2003,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2004,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2005,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2006,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2007,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2008,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2009,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2010,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2012,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2013,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2014,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2015,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2016,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2017,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2018,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2019,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,140 -2020,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,150 -2010,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2011,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2012,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2013,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,154 -2014,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,154 -2015,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,179 -2016,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,192 -2017,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2018,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,192 -2019,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,198 -2020,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,210 -2000,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,478 -2001,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,512 -2002,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,490 -2003,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,490 -2004,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,529 -2005,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,521 -2006,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,514 -2007,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,523 -2008,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,520 -2009,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,526 -2010,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,513 -2011,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,507 -2012,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,502 -2013,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,508 -2014,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,510 -2015,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,513 -2016,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,499 -2017,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,509 -2018,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,482 -2019,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,507 -2020,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,525 -2010,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,636 -2011,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,636 -2012,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,630 -2013,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,649 -2014,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,644 -2015,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,657 -2016,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,656 -2017,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,680 -2018,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,660 -2019,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,695 -2020,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,730 -2010,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2016,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2000,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,338 -2001,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,364 -2002,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,403 -2003,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,428 -2004,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,450 -2005,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,477 -2006,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,494 -2007,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,526 -2008,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,561 -2009,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,593 -2010,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,608 -2011,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,620 -2012,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,620 -2013,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,637 -2014,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,621 -2015,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,636 -2016,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,646 -2017,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,675 -2018,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,708 -2019,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,718 -2020,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,746 -2010,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29021 -2011,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28986 -2012,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28875 -2013,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28817 -2014,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28869 -2015,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28884 -2016,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28817 -2017,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28876 -2018,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28776 -2019,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28752 -2020,geoId/01049,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28707 -2000,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28400 -2001,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28562 -2002,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28351 -2003,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28418 -2004,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28467 -2005,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28418 -2006,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28347 -2007,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28490 -2008,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28519 -2009,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28524 -2010,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28429 -2011,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28393 -2012,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28273 -2013,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28204 -2014,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28274 -2015,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28278 -2016,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28196 -2017,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28230 -2018,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28090 -2019,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28061 -2020,geoId/01049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27996 -2000,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,379 -2001,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,457 -2002,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,517 -2003,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,569 -2004,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,629 -2005,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,705 -2006,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,821 -2007,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,893 -2008,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,975 -2009,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1015 -2010,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1071 -2011,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1094 -2012,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1121 -2013,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1182 -2014,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1172 -2015,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1179 -2016,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1172 -2017,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1227 -2018,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1243 -2019,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1252 -2020,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1253 -2010,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2012,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2013,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2014,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2015,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2016,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2017,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2000,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2006,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2008,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2019,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2000,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2001,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2002,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2003,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2004,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2005,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2006,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2007,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2008,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2009,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2010,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2011,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2012,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2013,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2014,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2015,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2016,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2017,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2018,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2019,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2020,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2010,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2011,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2012,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2013,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2014,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2015,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2016,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2017,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2018,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,142 -2019,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,141 -2020,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2010,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2005,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2007,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2008,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2009,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2010,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2013,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2016,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2019,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2020,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,306 -2001,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,381 -2002,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,431 -2003,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,477 -2004,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,526 -2005,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,588 -2006,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,685 -2007,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,754 -2008,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,819 -2009,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,856 -2010,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,901 -2011,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,920 -2012,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,953 -2013,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,999 -2014,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,996 -2015,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1004 -2016,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,985 -2017,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1014 -2018,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1011 -2019,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1019 -2020,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1001 -2010,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,935 -2011,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,949 -2012,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,983 -2013,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1036 -2014,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1032 -2015,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1035 -2016,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1016 -2017,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1045 -2018,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1043 -2019,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1056 -2020,geoId/01051,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1037 -2000,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,32306 -2001,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,32987 -2002,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,33704 -2003,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,34457 -2004,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,34957 -2005,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,35974 -2006,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,37176 -2007,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,38135 -2008,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,38604 -2009,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,39135 -2010,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,39627 -2011,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,39780 -2012,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40258 -2013,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40329 -2014,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40362 -2015,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40502 -2016,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40674 -2017,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40768 -2018,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40773 -2019,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40927 -2020,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41262 -2010,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,359 -2011,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,381 -2012,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,394 -2013,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,399 -2014,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,403 -2015,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,415 -2016,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,408 -2017,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,423 -2018,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,411 -2019,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,408 -2020,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,413 -2000,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,139 -2001,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2002,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2003,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2004,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2005,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2006,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2007,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2008,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2009,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2010,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2011,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2012,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2013,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2014,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2015,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,146 -2016,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,145 -2017,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,152 -2018,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,146 -2019,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2020,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2000,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,140 -2001,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2002,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2003,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,172 -2004,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,200 -2005,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,233 -2006,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,243 -2007,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,247 -2008,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,270 -2009,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,299 -2010,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,311 -2011,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,320 -2012,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,326 -2013,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,325 -2014,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,313 -2015,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,328 -2016,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,330 -2017,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,317 -2018,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,319 -2019,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,324 -2020,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,322 -2010,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,423 -2011,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,445 -2012,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,462 -2013,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,478 -2014,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,450 -2015,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,483 -2016,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,486 -2017,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,491 -2018,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,493 -2019,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,502 -2020,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,504 -2000,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6258 -2001,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6545 -2002,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6728 -2003,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6812 -2004,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6825 -2005,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6990 -2006,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7443 -2007,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7572 -2008,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7593 -2009,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7696 -2010,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7893 -2011,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8084 -2012,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8279 -2013,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8343 -2014,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8386 -2015,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8431 -2016,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8559 -2017,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8592 -2018,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8629 -2019,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8710 -2020,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8850 -2010,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8127 -2011,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8342 -2012,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8573 -2013,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8643 -2014,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8679 -2015,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8743 -2016,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8872 -2017,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8932 -2018,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8992 -2019,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9076 -2020,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9213 -2010,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2011,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2012,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2014,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2015,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2016,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2017,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2018,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2019,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2020,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2000,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2008,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2012,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2019,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2000,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,292 -2001,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,317 -2002,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,325 -2003,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,355 -2004,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,375 -2005,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,402 -2006,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,422 -2007,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,450 -2008,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,454 -2009,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,494 -2010,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,526 -2011,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,577 -2012,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,631 -2013,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,649 -2014,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,637 -2015,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,670 -2016,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,673 -2017,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,713 -2018,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,731 -2019,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,743 -2020,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,731 -2010,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31223 -2011,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31168 -2012,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31437 -2013,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31430 -2014,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31430 -2015,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31509 -2016,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31548 -2017,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31613 -2018,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31580 -2019,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31649 -2020,geoId/01051,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31844 -2000,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25472 -2001,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25801 -2002,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26330 -2003,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26975 -2004,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27404 -2005,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28189 -2006,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28917 -2007,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29708 -2008,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30145 -2009,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30491 -2010,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30738 -2011,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30639 -2012,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30861 -2013,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30843 -2014,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30844 -2015,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30892 -2016,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30932 -2017,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30959 -2018,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30915 -2019,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30968 -2020,geoId/01051,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,31176 -2000,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,427 -2001,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,488 -2002,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,517 -2003,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,583 -2004,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,657 -2005,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,734 -2006,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,801 -2007,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,865 -2008,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,962 -2009,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1024 -2010,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1073 -2011,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1083 -2012,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1047 -2013,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1075 -2014,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1093 -2015,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1091 -2016,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1100 -2017,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1173 -2018,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1207 -2019,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1276 -2020,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1232 -2010,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2011,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2012,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2013,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2014,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2015,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2017,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2018,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2019,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2020,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2000,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2005,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2006,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2007,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2009,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2013,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2014,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2015,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2018,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2019,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2020,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2000,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2000,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2001,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2002,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2003,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2004,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2005,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2006,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2007,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2008,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2009,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2010,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2011,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2012,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2013,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2014,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2015,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2016,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2017,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2018,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2019,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2020,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2010,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2011,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2012,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2013,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2014,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2015,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2016,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2017,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2018,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2019,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2020,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2010,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2008,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2007,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2008,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2009,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2010,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2011,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2012,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2016,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2017,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2018,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2019,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2020,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2000,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,334 -2001,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,395 -2002,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,417 -2003,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,475 -2004,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,539 -2005,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,612 -2006,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,666 -2007,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,725 -2008,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,812 -2009,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,864 -2010,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,905 -2011,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,899 -2012,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,866 -2013,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,892 -2014,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,907 -2015,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,901 -2016,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,908 -2017,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,975 -2018,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,997 -2019,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1051 -2020,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,997 -2010,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,942 -2011,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,934 -2012,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,901 -2013,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,930 -2014,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,946 -2015,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,941 -2016,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,951 -2017,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1019 -2018,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1041 -2019,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1106 -2020,geoId/01051,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1052 -2000,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,33048 -2001,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,33527 -2002,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,33921 -2003,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,34326 -2004,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,34775 -2005,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,35565 -2006,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,36448 -2007,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37231 -2008,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37157 -2009,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37458 -2010,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37787 -2011,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38048 -2012,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37785 -2013,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37971 -2014,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37936 -2015,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38131 -2016,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38312 -2017,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38284 -2018,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37966 -2019,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38120 -2020,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38411 -2010,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,317 -2011,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,345 -2012,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,332 -2013,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,335 -2014,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,338 -2015,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,363 -2016,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,357 -2017,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,387 -2018,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,376 -2019,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,367 -2020,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,375 -2000,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2001,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2002,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2003,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2004,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2005,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2006,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2007,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2008,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,140 -2009,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,139 -2010,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2011,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,150 -2012,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2013,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2014,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,147 -2015,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,162 -2016,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,156 -2017,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2018,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,171 -2019,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2020,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2000,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2001,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2002,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2003,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,145 -2004,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2005,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,163 -2006,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2007,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2008,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,176 -2009,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,202 -2010,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,218 -2011,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2012,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,235 -2013,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,218 -2014,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,213 -2015,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,231 -2016,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,255 -2017,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,269 -2018,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,266 -2019,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,291 -2020,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,304 -2010,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,311 -2011,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,336 -2012,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,349 -2013,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,343 -2014,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,338 -2015,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,365 -2016,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,397 -2017,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,418 -2018,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,417 -2019,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,459 -2020,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,467 -2000,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7309 -2001,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7489 -2002,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7521 -2003,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7513 -2004,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7507 -2005,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7619 -2006,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7893 -2007,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8082 -2008,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7929 -2009,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7948 -2010,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8057 -2011,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8285 -2012,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8222 -2013,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8272 -2014,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8331 -2015,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8390 -2016,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8499 -2017,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8393 -2018,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8214 -2019,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8274 -2020,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8372 -2010,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8261 -2011,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8507 -2012,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8465 -2013,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8523 -2014,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8571 -2015,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8655 -2016,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8781 -2017,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8680 -2018,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8498 -2019,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8581 -2020,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8679 -2010,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2011,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2012,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2013,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2014,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2016,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2017,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2018,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2019,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2020,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2000,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2006,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2000,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,309 -2001,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,321 -2002,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,334 -2003,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,336 -2004,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,354 -2005,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,349 -2006,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,359 -2007,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,411 -2008,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,422 -2009,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,442 -2010,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,452 -2011,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,489 -2012,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,507 -2013,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,517 -2014,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,514 -2015,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,560 -2016,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,573 -2017,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,592 -2018,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,606 -2019,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,628 -2020,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,633 -2010,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29317 -2011,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29315 -2012,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29116 -2013,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29266 -2014,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29162 -2015,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29263 -2016,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29313 -2017,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29361 -2018,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29239 -2019,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29306 -2020,geoId/01051,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29486 -2000,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25197 -2001,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25459 -2002,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25798 -2003,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26185 -2004,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26592 -2005,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27279 -2006,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27882 -2007,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28410 -2008,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28467 -2009,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28706 -2010,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28901 -2011,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28876 -2012,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28651 -2013,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28794 -2014,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28700 -2015,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28757 -2016,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28794 -2017,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28818 -2018,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28677 -2019,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28735 -2020,geoId/01051,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28907 -2000,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,181 -2001,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,217 -2002,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,216 -2003,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,209 -2004,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,222 -2005,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,248 -2006,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,257 -2007,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,267 -2008,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,276 -2009,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,276 -2010,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,275 -2011,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,276 -2012,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,305 -2013,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,333 -2014,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,328 -2015,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,341 -2016,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,351 -2017,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,363 -2018,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,373 -2019,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,416 -2020,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,405 -2010,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2019,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2000,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2019,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2000,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2001,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2002,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2003,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2004,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2005,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2006,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2007,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2008,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2009,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2010,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2014,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2017,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2020,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2010,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2011,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2017,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2019,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2020,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2010,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2001,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,182 -2002,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2003,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,171 -2004,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,177 -2005,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,200 -2006,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,202 -2007,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,208 -2008,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,217 -2009,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,215 -2010,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,212 -2011,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,212 -2012,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,236 -2013,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,262 -2014,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,253 -2015,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,262 -2016,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,268 -2017,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,276 -2018,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,279 -2019,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,310 -2020,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,304 -2010,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,218 -2011,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,220 -2012,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,244 -2013,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,271 -2014,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,262 -2015,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,272 -2016,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,277 -2017,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,286 -2018,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,291 -2019,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,326 -2020,geoId/01053,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,318 -2000,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18768 -2001,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18756 -2002,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18626 -2003,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18521 -2004,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18440 -2005,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18247 -2006,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18195 -2007,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18255 -2008,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18271 -2009,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18289 -2010,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18290 -2011,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18248 -2012,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18128 -2013,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18003 -2014,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,18007 -2015,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17988 -2016,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17823 -2017,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17905 -2018,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17735 -2019,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17792 -2020,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17672 -2010,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,765 -2011,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,793 -2012,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,776 -2013,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,793 -2014,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,783 -2015,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,802 -2016,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,800 -2017,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,824 -2018,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,818 -2019,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,817 -2020,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,842 -2000,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,588 -2001,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,597 -2002,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,603 -2003,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,603 -2004,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,592 -2005,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,618 -2006,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,620 -2007,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,645 -2008,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,643 -2009,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,646 -2010,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,645 -2011,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,657 -2012,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,651 -2013,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,658 -2014,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,647 -2015,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,658 -2016,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,650 -2017,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,668 -2018,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,675 -2019,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,667 -2020,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,673 -2000,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2001,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2002,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2003,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2004,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2005,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2006,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2007,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2008,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2009,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2010,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2011,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2012,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2013,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2014,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2015,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2016,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2017,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2018,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2019,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2020,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2010,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2011,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2012,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2013,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2014,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2015,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2016,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2017,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2018,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2019,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2020,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2000,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5563 -2001,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5605 -2002,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5548 -2003,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5561 -2004,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5569 -2005,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5490 -2006,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5510 -2007,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5547 -2008,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5638 -2009,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5573 -2010,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5611 -2011,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5614 -2012,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5583 -2013,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5565 -2014,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5622 -2015,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5574 -2016,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5535 -2017,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5516 -2018,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5500 -2019,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5486 -2020,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5458 -2010,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5726 -2011,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5743 -2012,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5706 -2013,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5690 -2014,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5754 -2015,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5714 -2016,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5699 -2017,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5693 -2018,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5680 -2019,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5673 -2020,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5656 -2010,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,207 -2001,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,225 -2002,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,216 -2003,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,218 -2004,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,240 -2005,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,236 -2006,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,222 -2007,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,232 -2008,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,233 -2009,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,246 -2010,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,247 -2011,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,260 -2012,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,259 -2013,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,269 -2014,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,282 -2015,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,303 -2016,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,334 -2017,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,349 -2018,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,345 -2019,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,357 -2020,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,377 -2010,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11961 -2011,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11901 -2012,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11823 -2013,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11705 -2014,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11672 -2015,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11681 -2016,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11566 -2017,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11637 -2018,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11473 -2019,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11550 -2020,geoId/01053,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11456 -2000,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12354 -2001,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12275 -2002,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12205 -2003,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12078 -2004,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11988 -2005,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11846 -2006,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11780 -2007,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11772 -2008,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11696 -2009,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11768 -2010,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11731 -2011,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11661 -2012,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11580 -2013,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11456 -2014,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11401 -2015,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11399 -2016,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11252 -2017,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11318 -2018,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11157 -2019,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11220 -2020,geoId/01053,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11104 -2000,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,198 -2001,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,229 -2002,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,230 -2003,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,263 -2004,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,275 -2005,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,344 -2006,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,385 -2007,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,397 -2008,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,422 -2009,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,435 -2010,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,454 -2011,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,446 -2012,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,419 -2013,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,437 -2014,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,438 -2015,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,446 -2016,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,467 -2017,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,488 -2018,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,514 -2019,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,530 -2020,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,535 -2010,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2020,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2000,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2001,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2003,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2004,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2006,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2008,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2009,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2010,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2011,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2012,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2014,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2015,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2016,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2017,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2018,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2019,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2010,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2013,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2014,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2015,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2016,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2017,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2018,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2020,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2010,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2008,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2019,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2000,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,172 -2001,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,205 -2002,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,205 -2003,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2004,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,242 -2005,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,293 -2006,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,328 -2007,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,332 -2008,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,351 -2009,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,362 -2010,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,378 -2011,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,362 -2012,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,334 -2013,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,342 -2014,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,344 -2015,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,348 -2016,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,364 -2017,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,376 -2018,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,384 -2019,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,397 -2020,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,405 -2010,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,398 -2011,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,382 -2012,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,360 -2013,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,367 -2014,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,368 -2015,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,369 -2016,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,390 -2017,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,406 -2018,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,413 -2019,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,432 -2020,geoId/01053,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,444 -2000,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19178 -2001,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18995 -2002,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18963 -2003,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18803 -2004,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18776 -2005,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18762 -2006,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18836 -2007,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18920 -2008,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18960 -2009,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19249 -2010,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19333 -2011,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19241 -2012,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19177 -2013,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19002 -2014,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18976 -2015,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18901 -2016,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18859 -2017,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18254 -2018,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17893 -2019,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17831 -2020,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,17669 -2010,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,779 -2011,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,783 -2012,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,770 -2013,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,785 -2014,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,779 -2015,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,797 -2016,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,807 -2017,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,804 -2018,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,821 -2019,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,830 -2020,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,827 -2000,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,572 -2001,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,588 -2002,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,601 -2003,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,571 -2004,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,590 -2005,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,598 -2006,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,615 -2007,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,627 -2008,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,620 -2009,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,611 -2010,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,634 -2011,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,643 -2012,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,636 -2013,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,639 -2014,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,638 -2015,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,641 -2016,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,657 -2017,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,636 -2018,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,654 -2019,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,669 -2020,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,655 -2000,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2001,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2002,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2003,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2004,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2005,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2006,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2007,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2008,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2009,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2011,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2013,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2014,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2010,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2011,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2012,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2013,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2014,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2015,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2016,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2017,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2018,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2019,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2020,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2000,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6204 -2001,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6166 -2002,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6146 -2003,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6079 -2004,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6044 -2005,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6096 -2006,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6150 -2007,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6214 -2008,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6300 -2009,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6521 -2010,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6581 -2011,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6558 -2012,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6545 -2013,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6513 -2014,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6542 -2015,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6476 -2016,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6496 -2017,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6129 -2018,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5965 -2019,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5903 -2020,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5866 -2010,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6709 -2011,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6690 -2012,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6677 -2013,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6661 -2014,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6695 -2015,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6654 -2016,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6688 -2017,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6311 -2018,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6139 -2019,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6089 -2020,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6072 -2010,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2000,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,165 -2001,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,168 -2002,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,176 -2003,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2004,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,202 -2005,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,222 -2006,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,227 -2007,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,253 -2008,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,266 -2009,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,284 -2010,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,276 -2011,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,284 -2012,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,287 -2013,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,307 -2014,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,314 -2015,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,352 -2016,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,356 -2017,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,365 -2018,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,359 -2019,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,368 -2020,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,389 -2010,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12051 -2011,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11963 -2012,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11926 -2013,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11775 -2014,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11728 -2015,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11698 -2016,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11619 -2017,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11418 -2018,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11193 -2019,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11156 -2020,geoId/01053,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11043 -2000,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12186 -2001,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12022 -2002,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11992 -2003,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11914 -2004,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11892 -2005,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11806 -2006,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11806 -2007,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11788 -2008,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11729 -2009,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11787 -2010,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11798 -2011,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11709 -2012,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11665 -2013,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11499 -2014,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11440 -2015,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11384 -2016,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11300 -2017,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11080 -2018,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10863 -2019,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10829 -2020,geoId/01053,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10700 -2000,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,731 -2001,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,844 -2002,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,886 -2003,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,993 -2004,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1102 -2005,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1197 -2006,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1276 -2007,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1339 -2008,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1391 -2009,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1500 -2010,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1523 -2011,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1596 -2012,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1635 -2013,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1676 -2014,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1691 -2015,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1740 -2016,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1802 -2017,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1881 -2018,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1958 -2019,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2033 -2020,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2082 -2010,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2011,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2012,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2013,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2014,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2015,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2016,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2017,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2018,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2019,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,174 -2020,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,168 -2000,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2003,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2004,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2005,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2006,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2007,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2008,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2009,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2010,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2011,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2012,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2013,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2014,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2015,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2016,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2017,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2018,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2019,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2020,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2000,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2018,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2019,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2011,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2017,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2019,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2000,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2001,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2002,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2003,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2004,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2005,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2006,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2007,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2008,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2009,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2010,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2011,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2012,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2013,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2014,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2015,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2016,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2017,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2018,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2019,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2020,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2010,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2011,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2012,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2013,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2014,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2015,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2016,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,140 -2017,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2018,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2019,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2020,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2010,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2011,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2012,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2013,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2014,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,123 -2015,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2016,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,123 -2017,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2018,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,129 -2019,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2020,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2000,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2002,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2003,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2004,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2005,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2006,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2007,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2008,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2009,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2010,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2011,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2012,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2013,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2014,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2015,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2016,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2017,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2018,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2019,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2020,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2000,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2003,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2004,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2005,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2006,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2007,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2008,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2009,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2010,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2011,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2012,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2013,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2014,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2015,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2016,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2017,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2018,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2019,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2020,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2000,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,642 -2001,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,743 -2002,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,758 -2003,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,820 -2004,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,914 -2005,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,977 -2006,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1025 -2007,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1054 -2008,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1068 -2009,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1138 -2010,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1149 -2011,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1224 -2012,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1254 -2013,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1291 -2014,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1302 -2015,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1338 -2016,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1365 -2017,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1410 -2018,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1481 -2019,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1556 -2020,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1602 -2010,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1197 -2011,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1277 -2012,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1312 -2013,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1346 -2014,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1357 -2015,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1392 -2016,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1428 -2017,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1477 -2018,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1548 -2019,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1625 -2020,geoId/01055,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1673 -2000,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,53130 -2001,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52835 -2002,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52700 -2003,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52529 -2004,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52366 -2005,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52312 -2006,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52360 -2007,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52383 -2008,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52408 -2009,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52240 -2010,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52270 -2011,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52212 -2012,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52152 -2013,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,51910 -2014,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,51680 -2015,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,51483 -2016,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,51332 -2017,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,51320 -2018,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,51094 -2019,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,50850 -2020,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,50730 -2010,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,522 -2011,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,526 -2012,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,526 -2013,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,521 -2014,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,518 -2015,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,511 -2016,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,528 -2017,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,533 -2018,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,532 -2019,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,526 -2020,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,576 -2000,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2001,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,195 -2002,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,183 -2003,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,182 -2004,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2005,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2006,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,177 -2007,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2008,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2009,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2010,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,176 -2011,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2012,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2013,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,173 -2014,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2015,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2016,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,174 -2017,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,173 -2018,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,177 -2019,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,184 -2020,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,213 -2000,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,202 -2001,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,230 -2002,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,243 -2003,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,248 -2004,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,259 -2005,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,287 -2006,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,283 -2007,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,282 -2008,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,281 -2009,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,296 -2010,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,341 -2011,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,350 -2012,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,365 -2013,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,366 -2014,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,366 -2015,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,363 -2016,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,376 -2017,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,393 -2018,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,398 -2019,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,414 -2020,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,405 -2010,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,414 -2011,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,431 -2012,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,441 -2013,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,454 -2014,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,444 -2015,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,454 -2016,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,468 -2017,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,494 -2018,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,501 -2019,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,513 -2020,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,515 -2000,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8298 -2001,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8217 -2002,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8127 -2003,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8175 -2004,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8206 -2005,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8193 -2006,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8320 -2007,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8419 -2008,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8407 -2009,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8362 -2010,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8448 -2011,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8481 -2012,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8485 -2013,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8459 -2014,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8414 -2015,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8519 -2016,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8510 -2017,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8539 -2018,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8535 -2019,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8507 -2020,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8548 -2010,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8747 -2011,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8798 -2012,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8806 -2013,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8801 -2014,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8767 -2015,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8867 -2016,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8879 -2017,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8935 -2018,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8949 -2019,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8932 -2020,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8985 -2010,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2014,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2016,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2017,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2020,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2000,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2002,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2004,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2005,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2000,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,399 -2001,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,413 -2002,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,438 -2003,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,461 -2004,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,492 -2005,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,523 -2006,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,559 -2007,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,562 -2008,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,613 -2009,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,659 -2010,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,694 -2011,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,697 -2012,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,711 -2013,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,730 -2014,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,761 -2015,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,750 -2016,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,785 -2017,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,810 -2018,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,832 -2019,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,838 -2020,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,861 -2010,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43255 -2011,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43138 -2012,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43073 -2013,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42843 -2014,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42683 -2015,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42373 -2016,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42209 -2017,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42149 -2018,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41909 -2019,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41683 -2020,geoId/01055,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41489 -2000,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44039 -2001,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43766 -2002,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43697 -2003,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43449 -2004,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43215 -2005,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43124 -2006,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43009 -2007,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42940 -2008,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42938 -2009,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42743 -2010,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42597 -2011,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42486 -2012,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42402 -2013,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42163 -2014,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41950 -2015,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41662 -2016,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41463 -2017,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41383 -2018,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41132 -2019,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40887 -2020,geoId/01055,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40678 -2000,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1024 -2001,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1141 -2002,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1231 -2003,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1309 -2004,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1373 -2005,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1474 -2006,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1575 -2007,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1702 -2008,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1840 -2009,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1912 -2010,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1903 -2011,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2011 -2012,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2034 -2013,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2001 -2014,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2033 -2015,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2005 -2016,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2121 -2017,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2153 -2018,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2263 -2019,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2295 -2020,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2345 -2010,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2011,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,144 -2012,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2013,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,160 -2014,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2015,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,178 -2016,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,192 -2017,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2018,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,197 -2019,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,200 -2020,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,214 -2000,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2002,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2003,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2004,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2005,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2006,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2007,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2008,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2009,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2010,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2011,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2012,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2013,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2014,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2015,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,140 -2016,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2017,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2018,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2019,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2020,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2000,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2006,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2007,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2008,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2009,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2010,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2011,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2012,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2014,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2017,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2018,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2019,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2020,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2010,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2011,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2012,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2013,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2014,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2015,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2016,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2017,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2018,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2019,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2020,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2000,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2001,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2002,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2003,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2004,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2005,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2006,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2007,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2008,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2009,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2010,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2011,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2012,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2013,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2014,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2015,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2016,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2017,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2018,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2019,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2020,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2010,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2011,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2012,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2013,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,140 -2014,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2015,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,141 -2016,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2017,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,177 -2018,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2019,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,178 -2020,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2010,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2011,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,162 -2012,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,154 -2013,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2014,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2015,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,145 -2016,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2017,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2018,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2019,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2020,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,162 -2000,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2002,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2003,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2004,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2005,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2006,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2007,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2008,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2009,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2010,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2011,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2012,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2013,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,140 -2014,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2015,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2016,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,146 -2017,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,154 -2018,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2019,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,155 -2020,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,157 -2000,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2004,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2005,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2006,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2007,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2008,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2009,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2010,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2012,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2013,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2014,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2015,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2016,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2017,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2018,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2019,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2020,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2000,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,904 -2001,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1000 -2002,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1056 -2003,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1098 -2004,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1135 -2005,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1185 -2006,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1235 -2007,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1341 -2008,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1412 -2009,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1442 -2010,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1412 -2011,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1531 -2012,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1551 -2013,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1516 -2014,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1529 -2015,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1501 -2016,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1573 -2017,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1573 -2018,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1671 -2019,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1701 -2020,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1744 -2010,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1477 -2011,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1592 -2012,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1619 -2013,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1585 -2014,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1603 -2015,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1573 -2016,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1654 -2017,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1645 -2018,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1754 -2019,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1788 -2020,geoId/01055,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1837 -2000,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48401 -2001,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48156 -2002,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48171 -2003,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48194 -2004,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48239 -2005,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48191 -2006,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48317 -2007,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48469 -2008,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48567 -2009,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48587 -2010,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48744 -2011,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48537 -2012,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48450 -2013,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48304 -2014,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48013 -2015,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,47805 -2016,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,47676 -2017,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,47722 -2018,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,47451 -2019,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,47282 -2020,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,47214 -2010,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,495 -2011,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,497 -2012,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,490 -2013,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,497 -2014,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,500 -2015,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,510 -2016,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,519 -2017,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,524 -2018,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,525 -2019,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,522 -2020,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,559 -2000,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2001,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,156 -2002,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2003,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,151 -2004,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,162 -2005,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,174 -2006,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2007,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,184 -2008,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2009,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,189 -2010,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,199 -2011,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,200 -2012,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,189 -2013,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,190 -2014,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,185 -2015,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,195 -2016,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,208 -2017,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,197 -2018,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,200 -2019,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,196 -2020,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,221 -2000,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2001,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,227 -2002,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,226 -2003,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,240 -2004,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,256 -2005,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,269 -2006,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,270 -2007,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,284 -2008,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,292 -2009,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,310 -2010,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,331 -2011,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,338 -2012,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,361 -2013,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,378 -2014,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,378 -2015,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,381 -2016,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,395 -2017,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,398 -2018,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,395 -2019,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,400 -2020,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,395 -2010,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,392 -2011,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,407 -2012,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,428 -2013,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,464 -2014,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,452 -2015,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,452 -2016,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,484 -2017,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,476 -2018,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,481 -2019,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,506 -2020,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,495 -2000,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6858 -2001,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6819 -2002,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6837 -2003,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6875 -2004,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6958 -2005,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6981 -2006,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7080 -2007,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7178 -2008,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7176 -2009,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7208 -2010,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7338 -2011,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7304 -2012,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7301 -2013,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7348 -2014,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7321 -2015,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7344 -2016,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7375 -2017,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7418 -2018,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7418 -2019,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7427 -2020,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7473 -2010,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7599 -2011,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7580 -2012,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7594 -2013,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7654 -2014,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7641 -2015,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7653 -2016,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7722 -2017,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7771 -2018,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7786 -2019,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7836 -2020,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7904 -2010,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2012,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2016,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2000,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2003,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2004,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2005,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2019,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2000,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,370 -2001,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,390 -2002,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,412 -2003,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,425 -2004,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,453 -2005,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,475 -2006,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,486 -2007,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,515 -2008,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,544 -2009,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,568 -2010,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,598 -2011,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,624 -2012,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,629 -2013,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,657 -2014,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,674 -2015,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,672 -2016,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,709 -2017,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,720 -2018,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,749 -2019,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,800 -2020,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,825 -2010,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40835 -2011,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40647 -2012,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40552 -2013,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40339 -2014,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40073 -2015,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39828 -2016,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39637 -2017,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39648 -2018,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39378 -2019,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39197 -2020,geoId/01055,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39053 -2000,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40771 -2001,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40549 -2002,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40522 -2003,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40489 -2004,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40392 -2005,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40281 -2006,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40293 -2007,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40295 -2008,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40363 -2009,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40302 -2010,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40264 -2011,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40056 -2012,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39955 -2013,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39717 -2014,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39440 -2015,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39192 -2016,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38965 -2017,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38965 -2018,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38663 -2019,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38435 -2020,geoId/01055,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38275 +1990,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,70 +1991,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,70 +1992,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,70 +1993,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,67 +1994,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,63 +1995,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,67 +1996,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,67 +1997,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,62 +1998,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,61 +1999,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,60 +1990,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,48 +1991,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,49 +1992,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,47 +1993,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,51 +1994,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,50 +1995,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,51 +1996,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,55 +1997,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,53 +1998,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,57 +1999,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,55 +1990,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4768 +1991,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4815 +1992,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4899 +1993,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4979 +1994,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4994 +1995,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5085 +1996,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5150 +1997,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5207 +1998,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5252 +1999,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5313 +1990,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,31493 +1991,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,31501 +1992,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,31695 +1993,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,31839 +1994,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,31667 +1995,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,31895 +1996,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,31961 +1997,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,31914 +1998,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,31879 +1999,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,31934 +1990,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1993,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1995,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1996,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1997,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1998,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1999,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1990,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1992,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1993,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1996,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1997,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1990,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1991,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1992,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1993,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1995,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1996,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1997,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1998,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1999,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1990,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1991,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1992,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1993,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1994,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1995,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1996,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1997,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,35 +1998,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,42 +1999,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,45 +1990,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1991,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1992,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1993,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1994,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1995,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1996,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1997,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1998,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1999,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1990,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1991,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1992,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1993,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1994,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1995,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1996,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1997,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1998,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1999,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1990,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3522 +1991,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3542 +1992,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3554 +1993,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3591 +1994,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3613 +1995,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3673 +1996,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3687 +1997,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3763 +1998,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3766 +1999,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3786 +1990,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,10012 +1991,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9945 +1992,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9892 +1993,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9905 +1994,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9806 +1995,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9852 +1996,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9824 +1997,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9855 +1998,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9787 +1999,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9747 +1990,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1991,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1992,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1993,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1994,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1995,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1996,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1997,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1998,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1999,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1990,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1991,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,9 +1992,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1993,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,14 +1994,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,19 +1995,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,20 +1996,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,14 +1997,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,22 +1998,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,21 +1999,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,23 +1990,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1991,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1992,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1993,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1994,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1995,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1996,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1997,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1998,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1999,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1990,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,253 +1991,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,260 +1992,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,286 +1993,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,296 +1994,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,343 +1995,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,376 +1996,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,404 +1997,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,458 +1998,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,487 +1999,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,530 +1990,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,130 +1991,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,130 +1992,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,132 +1993,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,132 +1994,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,132 +1995,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,134 +1996,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,133 +1997,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,129 +1998,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,129 +1999,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,127 +1990,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,110 +1991,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,118 +1992,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,122 +1993,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,131 +1994,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,136 +1995,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,141 +1996,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,147 +1997,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,155 +1998,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,161 +1999,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,160 +1990,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,574 +1991,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,584 +1992,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,594 +1993,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,612 +1994,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,633 +1995,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,644 +1996,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,662 +1997,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,678 +1998,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,697 +1999,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,714 +1990,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,66705 +1991,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,67449 +1992,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,68429 +1993,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,69225 +1994,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,70167 +1995,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,70942 +1996,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,72025 +1997,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,72617 +1998,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,73425 +1999,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,74080 +1990,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1991,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1992,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1993,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1994,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1995,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1996,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1997,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1998,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1999,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1990,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,43 +1991,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,52 +1992,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,50 +1993,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,46 +1994,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,63 +1995,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,62 +1996,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,65 +1997,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,86 +1998,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,89 +1999,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,82 +1990,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,123 +1991,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,117 +1992,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,124 +1993,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,121 +1994,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,126 +1995,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,123 +1996,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,121 +1997,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,128 +1998,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,133 +1999,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,139 +1990,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1035 +1991,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1060 +1992,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1076 +1993,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1148 +1994,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1228 +1995,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1312 +1996,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1393 +1997,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1522 +1998,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1619 +1999,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1722 +1990,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,235 +1991,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,220 +1992,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,209 +1993,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,205 +1994,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,200 +1995,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,192 +1996,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,193 +1997,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,187 +1998,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,177 +1999,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,174 +1990,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,718 +1991,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,747 +1992,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,765 +1993,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,793 +1994,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,820 +1995,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,832 +1996,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,823 +1997,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,824 +1998,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,818 +1999,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,834 +1990,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8766 +1991,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8856 +1992,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8945 +1993,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8987 +1994,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9126 +1995,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9138 +1996,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9022 +1997,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9004 +1998,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8999 +1999,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9084 +1990,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,38670 +1991,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,38752 +1992,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,38620 +1993,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,38357 +1994,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,38788 +1995,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,38565 +1996,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,37829 +1997,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,37339 +1998,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,37068 +1999,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,37078 +1990,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,60 +1991,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,42 +1992,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1993,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,42 +1994,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1995,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1996,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,44 +1997,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,52 +1998,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,50 +1999,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,58 +1990,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,71 +1991,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,69 +1992,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,69 +1993,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,74 +1994,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,75 +1995,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,82 +1996,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,86 +1997,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,97 +1998,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,110 +1999,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,116 +1990,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,41 +1991,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1992,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1993,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1994,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1995,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,38 +1996,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1997,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1998,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1999,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1990,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,129 +1991,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,132 +1992,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,131 +1993,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,136 +1994,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,138 +1995,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,142 +1996,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,145 +1997,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,149 +1998,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,146 +1999,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,149 +1990,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,27700 +1991,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,27697 +1992,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,27859 +1993,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,28008 +1994,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,27998 +1995,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,28035 +1996,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,27867 +1997,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,27851 +1998,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,27743 +1999,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,27783 +1990,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,20012 +1991,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,19869 +1992,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,19790 +1993,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,19697 +1994,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,19516 +1995,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,19361 +1996,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,19174 +1997,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,18924 +1998,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,18726 +1999,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,18534 +1990,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1991,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1992,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1993,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1994,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1995,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1996,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1997,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1998,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1999,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1990,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1993,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1995,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1996,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1997,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1999,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1990,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1991,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1992,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1993,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1994,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1995,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1996,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1997,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1998,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1999,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1990,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,199 +1991,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,208 +1992,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,213 +1993,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,239 +1994,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,268 +1995,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,285 +1996,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,304 +1997,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,346 +1998,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,377 +1999,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,407 +1990,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,473 +1991,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,477 +1992,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,450 +1993,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,447 +1994,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,444 +1995,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,428 +1996,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,426 +1997,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,409 +1998,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,401 +1999,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,379 +1990,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,76 +1991,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,82 +1992,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,82 +1993,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,86 +1994,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,98 +1995,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,96 +1996,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,97 +1997,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,101 +1998,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,104 +1999,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,107 +1990,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1032 +1991,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1046 +1992,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1072 +1993,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1100 +1994,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1139 +1995,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1149 +1996,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1161 +1997,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1201 +1998,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1228 +1999,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1257 +1990,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,52967 +1991,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,53503 +1992,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,54006 +1993,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,54590 +1994,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,55559 +1995,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,55303 +1996,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,55353 +1997,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,55556 +1998,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,56127 +1999,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,56755 +1990,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1991,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1992,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1993,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1994,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1995,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1996,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1997,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1998,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1999,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1990,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1991,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,8 +1992,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,16 +1993,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1994,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,12 +1995,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,12 +1996,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,19 +1997,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,17 +1998,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1999,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,17 +1990,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,57 +1991,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,62 +1992,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,67 +1993,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,70 +1994,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,74 +1995,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,77 +1996,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,85 +1997,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,86 +1998,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,95 +1999,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,95 +1990,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,196 +1991,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,207 +1992,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,228 +1993,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,250 +1994,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,279 +1995,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,310 +1996,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,347 +1997,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,384 +1998,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,415 +1999,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,455 +1990,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,131 +1991,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,133 +1992,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,134 +1993,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,131 +1994,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,132 +1995,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,142 +1996,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,136 +1997,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,137 +1998,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,141 +1999,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,143 +1990,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,124 +1991,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,132 +1992,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,138 +1993,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,150 +1994,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,158 +1995,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,176 +1996,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,188 +1997,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,192 +1998,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,199 +1999,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,200 +1990,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11066 +1991,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11339 +1992,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11994 +1993,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12494 +1994,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12900 +1995,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13404 +1996,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13699 +1997,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,14229 +1998,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,14653 +1999,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15075 +1990,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,37879 +1991,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,38771 +1992,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,39795 +1993,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,40933 +1994,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,41908 +1995,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,42939 +1996,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,44085 +1997,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,45282 +1998,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,46454 +1999,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,47490 +1990,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1991,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1992,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1993,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1994,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1995,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1996,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1997,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1998,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1999,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1990,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,41 +1991,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,42 +1992,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,49 +1993,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,52 +1994,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,55 +1995,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,55 +1996,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,62 +1997,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,60 +1998,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,69 +1999,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,73 +1990,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,117 +1991,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,119 +1992,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,122 +1993,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,127 +1994,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,137 +1995,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,155 +1996,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,171 +1997,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,185 +1998,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,200 +1999,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,217 +1990,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1034 +1991,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1014 +1992,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,989 +1993,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,963 +1994,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,943 +1995,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,937 +1996,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,934 +1997,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,913 +1998,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,890 +1999,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,876 +1990,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,59 +1991,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,59 +1992,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,61 +1993,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,61 +1994,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,66 +1995,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,64 +1996,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,68 +1997,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,70 +1998,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,72 +1999,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,71 +1990,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10010 +1991,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10079 +1992,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10319 +1993,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10482 +1994,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10613 +1995,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10641 +1996,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10846 +1997,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11021 +1998,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11090 +1999,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11150 +1990,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,24213 +1991,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,24255 +1992,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,24383 +1993,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,24432 +1994,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,24456 +1995,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,24371 +1996,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,24291 +1997,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,24364 +1998,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,24388 +1999,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,24273 +1990,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1991,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1992,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1993,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1994,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1995,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1996,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1997,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1998,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1999,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1990,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,27 +1991,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,33 +1992,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,24 +1993,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,29 +1994,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,37 +1995,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,31 +1996,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,42 +1997,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,37 +1998,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,46 +1999,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,44 +1990,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1991,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1992,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1993,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1994,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1995,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,31 +1996,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1997,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,31 +1998,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,35 +1999,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,31 +1990,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,266 +1991,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,268 +1992,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,285 +1993,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,295 +1994,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,332 +1995,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,350 +1996,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,393 +1997,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,437 +1998,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,470 +1999,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,497 +1990,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,243 +1991,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,239 +1992,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,238 +1993,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,220 +1994,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,226 +1995,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,215 +1996,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,226 +1997,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,221 +1998,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,209 +1999,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,211 +1990,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,409 +1991,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,392 +1992,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,408 +1993,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,390 +1994,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,398 +1995,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,404 +1996,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,399 +1997,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,406 +1998,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,402 +1999,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,417 +1990,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13802 +1991,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13946 +1992,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,14133 +1993,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,14311 +1994,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,14588 +1995,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,14749 +1996,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,14908 +1997,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15254 +1998,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15386 +1999,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15452 +1990,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,85013 +1991,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,85387 +1992,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,85712 +1993,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,85871 +1994,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,86400 +1995,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,86297 +1996,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,86746 +1997,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,87358 +1998,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,87360 +1999,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,86806 2000,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,75 -2001,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,82 -2002,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,81 -2003,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,85 -2004,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,85 -2005,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,92 -2006,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,92 -2007,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,94 -2008,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,92 -2009,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,98 -2010,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,94 -2011,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,104 -2012,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,111 -2013,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,122 -2014,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,122 -2015,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,126 -2016,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,124 -2017,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,135 -2018,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,140 -2019,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,158 -2020,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,158 -2010,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 2000,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 2000,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 2000,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 2000,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2000,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 2000,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2001,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2002,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2003,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2004,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2005,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2006,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2007,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2008,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2009,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2010,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2011,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2012,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2013,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2014,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2015,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2016,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2017,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2018,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2019,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2020,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2010,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2011,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2012,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2013,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2014,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2015,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2016,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2017,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2018,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2019,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2020,geoId/01057,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 2000,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9511 -2001,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9395 -2002,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9321 -2003,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9267 -2004,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9159 -2005,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9120 -2006,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8946 -2007,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8792 -2008,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8793 -2009,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8658 -2010,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8636 -2011,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8515 -2012,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8401 -2013,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8345 -2014,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8336 -2015,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8319 -2016,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8276 -2017,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8286 -2018,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8288 -2019,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8180 -2020,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8149 -2010,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2012,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2013,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2014,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2015,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2016,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2017,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2018,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2019,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2020,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 2000,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2002,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2003,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2004,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2005,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2006,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2008,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 2000,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2001,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2002,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2003,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2004,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2007,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2018,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2019,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2020,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2010,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2017,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2019,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2020,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 2000,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1198 -2001,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1196 -2002,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1161 -2003,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1132 -2004,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1119 -2005,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1103 -2006,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1069 -2007,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1060 -2008,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1076 -2009,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1020 -2010,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1007 -2011,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,979 -2012,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,960 -2013,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,941 -2014,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,993 -2015,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1002 -2016,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,986 -2017,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,974 -2018,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,992 -2019,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,969 -2020,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,966 -2010,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1045 -2011,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1019 -2012,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,998 -2013,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,991 -2014,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1048 -2015,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1059 -2016,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1041 -2017,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1041 -2018,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1072 -2019,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1057 -2020,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1034 -2010,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 2000,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2000,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2001,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2002,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2003,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2004,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2005,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2006,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2007,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2008,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2009,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2010,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2011,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2012,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2013,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2014,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2015,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2016,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2017,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2018,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2019,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,129 -2020,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2010,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7579 -2011,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7485 -2012,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7391 -2013,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7353 -2014,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7288 -2015,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7253 -2016,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7220 -2017,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7232 -2018,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7211 -2019,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7126 -2020,geoId/01057,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7094 2000,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8236 -2001,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8121 -2002,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8079 -2003,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8049 -2004,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7949 -2005,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7925 -2006,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7774 -2007,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7623 -2008,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7606 -2009,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7525 -2010,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7516 -2011,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7416 -2012,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7321 -2013,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7272 -2014,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7204 -2015,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7174 -2016,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7137 -2017,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7133 -2018,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7101 -2019,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7004 -2020,geoId/01057,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6991 +1990,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1991,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1992,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1993,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1995,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1996,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1997,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1998,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1999,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1990,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,74 +1991,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,75 +1992,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,77 +1993,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,79 +1994,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,88 +1995,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,92 +1996,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,107 +1997,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,120 +1998,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,135 +1999,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,140 2000,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,77 -2001,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,81 -2002,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,90 -2003,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,87 -2004,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,90 -2005,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,93 -2006,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,104 -2007,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,102 -2008,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,98 -2009,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,108 -2010,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,109 -2011,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,122 -2012,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,128 -2013,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,143 -2014,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,144 -2015,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,161 -2016,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,151 -2017,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,156 -2018,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,159 -2019,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,171 -2020,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,175 -2010,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 2000,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 2000,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 2000,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 2000,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2000,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 2000,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2001,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2002,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2003,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2004,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2005,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2006,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2007,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2008,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2009,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2010,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2011,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2012,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2013,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2014,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2015,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2016,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2017,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2018,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2019,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2020,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,146 -2010,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2011,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2012,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2013,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2014,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2015,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,139 -2016,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2017,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2018,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2019,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,145 -2020,geoId/01057,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 2000,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8849 -2001,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8826 -2002,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8786 -2003,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8739 -2004,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8688 -2005,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8725 -2006,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8625 -2007,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8535 -2008,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8558 -2009,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8446 -2010,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8393 -2011,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8320 -2012,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8315 -2013,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8227 -2014,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8182 -2015,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8105 -2016,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8030 -2017,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7901 -2018,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7864 -2019,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7770 -2020,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7759 -2010,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2011,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2012,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2013,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2014,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2015,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2016,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2017,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2018,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2019,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 2000,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2004,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2005,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2006,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2009,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2019,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 2000,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2008,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 2000,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1000 -2001,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,998 -2002,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,993 -2003,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,990 -2004,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,974 -2005,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,959 -2006,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,982 -2007,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,963 -2008,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,998 -2009,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,974 -2010,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,954 -2011,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,949 -2012,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,953 -2013,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,947 -2014,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,958 -2015,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,971 -2016,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,954 -2017,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,930 -2018,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,947 -2019,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,922 -2020,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,924 -2010,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1006 -2011,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,998 -2012,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1009 -2013,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1002 -2014,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1011 -2015,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1028 -2016,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1028 -2017,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,999 -2018,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1021 -2019,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1006 -2020,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1009 -2010,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 2000,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2000,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2001,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2002,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2003,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2004,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2005,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2006,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2007,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2008,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2009,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2010,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2011,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2012,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2013,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2014,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2015,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2016,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2017,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2018,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2019,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2020,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2010,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7395 -2011,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7328 -2012,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7313 -2013,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7230 -2014,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7173 -2015,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7084 -2016,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7021 -2017,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6912 -2018,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6861 -2019,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6791 -2020,geoId/01057,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6775 2000,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7789 -2001,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7765 -2002,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7723 -2003,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7672 -2004,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7638 -2005,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7667 -2006,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7544 -2007,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7467 -2008,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7450 -2009,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7357 -2010,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7314 -2011,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7245 -2012,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7227 -2013,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7140 -2014,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7090 -2015,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6994 -2016,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6917 -2017,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6807 -2018,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6745 -2019,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6667 -2020,geoId/01057,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6650 -2000,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,863 -2001,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,928 -2002,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1013 -2003,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1104 -2004,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1182 -2005,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1301 -2006,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1427 -2007,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1599 -2008,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1779 -2009,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1931 -2010,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2042 -2011,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2103 -2012,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2122 -2013,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2140 -2014,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2183 -2015,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2211 -2016,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2332 -2017,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2399 -2018,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2494 -2019,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2559 -2020,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2633 -2010,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,163 -2011,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2012,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2013,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,140 -2014,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2015,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2016,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2017,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2018,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,195 -2019,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,212 -2020,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,232 -2000,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2003,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2004,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2005,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2006,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2007,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2008,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2009,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2010,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2011,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2012,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,139 -2013,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2014,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2015,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2016,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2017,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2018,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,176 -2019,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,196 -2020,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,216 -2000,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2000,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2002,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2003,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2004,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2006,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2008,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2009,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2011,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2012,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2013,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2014,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2015,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2016,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2017,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2018,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2019,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2020,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2010,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2011,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2012,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2013,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2014,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2015,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2016,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2017,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2018,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2019,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2020,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2010,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2002,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2003,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2004,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2005,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2006,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2007,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2008,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2009,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2010,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2014,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2019,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2000,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,818 -2001,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,867 -2002,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,929 -2003,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,999 -2004,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1065 -2005,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1161 -2006,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1267 -2007,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1423 -2008,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1573 -2009,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1700 -2010,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1798 -2011,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1859 -2012,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1854 -2013,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1864 -2014,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1911 -2015,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1927 -2016,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2016 -2017,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2074 -2018,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2164 -2019,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2212 -2020,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2259 -2010,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1830 -2011,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1887 -2012,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1883 -2013,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1898 -2014,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1943 -2015,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1959 -2016,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2050 -2017,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2106 -2018,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2198 -2019,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2246 -2020,geoId/01059,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2293 -2000,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15029 -2001,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14978 -2002,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14689 -2003,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14559 -2004,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14368 -2005,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14334 -2006,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14204 -2007,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13971 -2008,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14029 -2009,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13894 -2010,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13853 -2011,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13822 -2012,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13788 -2013,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13652 -2014,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13600 -2015,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13487 -2016,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13475 -2017,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13387 -2018,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13190 -2019,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13194 -2020,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13107 -2010,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2011,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2012,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2013,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2014,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2015,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2016,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,155 -2017,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2018,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,155 -2019,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2020,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,167 -2000,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2001,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2002,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2003,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2004,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2005,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2006,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2007,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2008,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2009,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2010,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2011,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2012,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2014,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2015,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2016,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2017,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2018,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2019,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2000,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2001,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2002,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2003,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2004,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2005,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2006,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2007,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2008,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2009,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2011,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2012,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2013,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2014,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2015,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2016,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2017,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2018,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2020,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2011,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2012,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2013,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2014,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2015,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2016,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2017,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2018,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2019,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2020,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2000,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,691 -2001,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,668 -2002,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,637 -2003,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,625 -2004,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,610 -2005,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,598 -2006,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,612 -2007,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,599 -2008,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,602 -2009,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,588 -2010,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,593 -2011,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,581 -2012,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,585 -2013,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,572 -2014,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,544 -2015,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,536 -2016,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,546 -2017,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,545 -2018,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,539 -2019,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,519 -2020,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,534 -2010,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,663 -2011,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,657 -2012,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,666 -2013,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,649 -2014,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,634 -2015,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,617 -2016,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,631 -2017,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,636 -2018,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,638 -2019,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,628 -2020,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,633 -2010,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2018,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2000,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2015,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2017,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2000,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2001,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2002,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2003,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2004,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,123 -2005,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2006,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2007,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2008,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2009,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,145 -2010,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2011,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,153 -2012,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,168 -2013,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,170 -2014,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2015,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,180 -2016,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2017,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,187 -2018,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,194 -2019,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,210 -2020,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,208 -2010,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13159 -2011,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13129 -2012,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13072 -2013,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12927 -2014,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12887 -2015,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12789 -2016,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12765 -2017,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12679 -2018,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12498 -2019,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12527 -2020,geoId/01059,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12419 -2000,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14170 -2001,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14129 -2002,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13880 -2003,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13747 -2004,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13559 -2005,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13527 -2006,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13370 -2007,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13154 -2008,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13192 -2009,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13079 -2010,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13010 -2011,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12986 -2012,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12916 -2013,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12770 -2014,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12711 -2015,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12616 -2016,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12590 -2017,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12505 -2018,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12316 -2019,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12324 -2020,geoId/01059,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12218 -2000,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1464 -2001,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1457 -2002,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1557 -2003,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1658 -2004,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1765 -2005,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1925 -2006,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2138 -2007,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2280 -2008,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2495 -2009,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2619 -2010,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2691 -2011,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2724 -2012,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2741 -2013,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2779 -2014,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2852 -2015,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2918 -2016,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3015 -2017,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3046 -2018,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3116 -2019,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3161 -2020,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3164 -2010,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,238 -2011,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,226 -2012,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,234 -2013,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,228 -2014,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,227 -2015,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,240 -2016,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,227 -2017,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,215 -2018,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,220 -2019,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,217 -2020,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,222 -2000,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2002,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2003,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2004,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2005,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2006,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2007,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2008,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,151 -2009,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2010,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,193 -2011,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,189 -2012,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,187 -2013,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,185 -2014,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2015,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 -2016,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 -2017,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2018,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2019,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2020,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,185 -2000,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2000,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2002,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2003,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2004,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2005,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2007,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2008,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2009,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2010,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2011,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2012,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2013,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,150 -2014,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,154 -2015,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,163 -2016,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,161 -2017,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2018,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2019,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2020,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2010,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2011,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2012,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2013,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,192 -2014,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2015,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2016,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,192 -2017,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2018,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,160 -2019,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2020,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2010,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2000,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2001,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2002,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2004,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2005,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2007,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2008,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2009,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2004,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2005,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2006,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2007,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2008,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2009,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2010,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2011,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2012,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2013,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2014,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2015,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2016,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2018,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2020,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2000,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1404 -2001,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1375 -2002,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1449 -2003,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1521 -2004,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1605 -2005,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1721 -2006,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1915 -2007,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2034 -2008,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2214 -2009,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2300 -2010,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2356 -2011,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2375 -2012,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2334 -2013,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2326 -2014,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2405 -2015,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2450 -2016,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2551 -2017,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2601 -2018,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2698 -2019,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2743 -2020,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2743 -2010,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2428 -2011,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2436 -2012,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2404 -2013,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2402 -2014,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2479 -2015,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2523 -2016,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2622 -2017,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2677 -2018,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2764 -2019,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2812 -2020,geoId/01059,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2816 -2000,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13886 -2001,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13827 -2002,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13632 -2003,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13553 -2004,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13453 -2005,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13408 -2006,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13365 -2007,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13154 -2008,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13156 -2009,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13145 -2010,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13160 -2011,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13127 -2012,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13048 -2013,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12995 -2014,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12937 -2015,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12916 -2016,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12852 -2017,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12838 -2018,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12695 -2019,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12673 -2020,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12603 -2010,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2011,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2012,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,163 -2013,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2014,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,180 -2015,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,177 -2016,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,181 -2017,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2018,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,201 -2019,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2020,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,187 -2000,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2001,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2002,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2003,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2004,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2005,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2006,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2007,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2008,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2009,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2010,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2011,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2012,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2013,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2015,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2016,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2017,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2018,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2019,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2020,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2000,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2004,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2009,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2015,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2016,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2017,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2010,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2014,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2015,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2016,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2017,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2018,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2019,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2020,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2000,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,616 -2001,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,596 -2002,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,591 -2003,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,579 -2004,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,568 -2005,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,574 -2006,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,586 -2007,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,603 -2008,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,616 -2009,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,624 -2010,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,636 -2011,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,623 -2012,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,628 -2013,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,643 -2014,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,640 -2015,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,672 -2016,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,652 -2017,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,671 -2018,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,676 -2019,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,669 -2020,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,671 -2010,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,705 -2011,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,694 -2012,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,708 -2013,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,726 -2014,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,723 -2015,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,767 -2016,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,747 -2017,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,759 -2018,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,769 -2019,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,765 -2020,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,774 -2010,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2001,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2002,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2003,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2004,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2005,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2006,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2007,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2008,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2009,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2010,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,165 -2011,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,167 -2012,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2013,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,190 -2014,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,194 -2015,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,204 -2016,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,204 -2017,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,203 -2018,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,222 -2019,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,211 -2020,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,216 -2010,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12424 -2011,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12400 -2012,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12314 -2013,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12231 -2014,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12159 -2015,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12104 -2016,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12051 -2017,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12041 -2018,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11886 -2019,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11878 -2020,geoId/01059,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11799 -2000,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13126 -2001,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13079 -2002,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12885 -2003,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12803 -2004,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12707 -2005,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12638 -2006,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12570 -2007,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12337 -2008,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12309 -2009,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12283 -2010,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12267 -2011,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12242 -2012,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12139 -2013,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12052 -2014,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11975 -2015,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11912 -2016,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11856 -2017,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11848 -2018,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11670 -2019,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11672 -2020,geoId/01059,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11594 -2000,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,175 -2001,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,197 -2002,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,220 -2003,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,252 -2004,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,281 -2005,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,298 -2006,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,343 -2007,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,349 -2008,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,362 -2009,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,384 -2010,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,415 -2011,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,431 -2012,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,429 -2013,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,427 -2014,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,425 -2015,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,467 -2016,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,468 -2017,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,475 -2018,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,491 -2019,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,510 -2020,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,551 -2010,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2000,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2009,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2019,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,156 -2001,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2002,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,202 -2003,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2004,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,258 -2005,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,264 -2006,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,301 -2007,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,306 -2008,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,319 -2009,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,340 -2010,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,371 -2011,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,385 -2012,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,378 -2013,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,373 -2014,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,366 -2015,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,406 -2016,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,414 -2017,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,420 -2018,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,433 -2019,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,443 -2020,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,484 -2010,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,375 -2011,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,391 -2012,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,386 -2013,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,384 -2014,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,378 -2015,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,417 -2016,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,421 -2017,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,431 -2018,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,442 -2019,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,454 -2020,geoId/01061,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,495 -2000,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13046 -2001,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12942 -2002,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12947 -2003,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12953 -2004,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12925 -2005,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13011 -2006,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13077 -2007,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13125 -2008,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13277 -2009,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13239 -2010,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13274 -2011,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13283 -2012,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13348 -2013,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13186 -2014,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13134 -2015,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13112 -2016,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13069 -2017,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,13016 -2018,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12975 -2019,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12981 -2020,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12996 -2010,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,196 -2011,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,192 -2012,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2013,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,201 -2014,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,207 -2015,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,226 -2016,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,223 -2017,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,212 -2018,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,222 -2019,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,230 -2020,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,256 -2000,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2001,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2002,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2003,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2004,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2005,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2006,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2007,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2008,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2009,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2010,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2011,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2012,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2013,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2014,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2015,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2016,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2017,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2018,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2019,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2020,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2000,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2001,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2002,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2003,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2004,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2005,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2006,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2007,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2008,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2009,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2011,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2014,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2015,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2016,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2017,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2018,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2019,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2020,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2010,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2011,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2012,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2013,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2014,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2015,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2016,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2017,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2018,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2020,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2000,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1472 -2001,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1394 -2002,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1424 -2003,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1406 -2004,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1406 -2005,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1402 -2006,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1379 -2007,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1406 -2008,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1399 -2009,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1363 -2010,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1359 -2011,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1397 -2012,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1382 -2013,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1336 -2014,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1337 -2015,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1293 -2016,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1294 -2017,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1275 -2018,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1267 -2019,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1249 -2020,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1255 -2010,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1449 -2011,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1493 -2012,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1489 -2013,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1448 -2014,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1453 -2015,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1411 -2016,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1411 -2017,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1389 -2018,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1390 -2019,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1389 -2020,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1397 -2010,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2001,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2002,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2003,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2004,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2005,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2006,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2007,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,165 -2008,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,179 -2009,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2010,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,197 -2011,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,206 -2012,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,221 -2013,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,234 -2014,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,235 -2015,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,251 -2016,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,249 -2017,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,233 -2018,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,247 -2019,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,268 -2020,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,290 -2010,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11763 -2011,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11734 -2012,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11807 -2013,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11680 -2014,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11635 -2015,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11643 -2016,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11599 -2017,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11565 -2018,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11516 -2019,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11542 -2020,geoId/01061,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11541 -2000,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11382 -2001,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11347 -2002,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11294 -2003,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11314 -2004,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11273 -2005,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11358 -2006,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11417 -2007,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11429 -2008,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11570 -2009,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11562 -2010,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11580 -2011,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11542 -2012,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11605 -2013,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11470 -2014,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11414 -2015,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11408 -2016,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11368 -2017,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11349 -2018,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11294 -2019,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11294 -2020,geoId/01061,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11271 -2000,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,277 -2001,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,287 -2002,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,304 -2003,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,300 -2004,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,327 -2005,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,399 -2006,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,423 -2007,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,454 -2008,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,468 -2009,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,509 -2010,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,522 -2011,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,514 -2012,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,543 -2013,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,529 -2014,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,535 -2015,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,545 -2016,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,561 -2017,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,570 -2018,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,579 -2019,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,582 -2020,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,593 -2010,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2000,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2000,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2010,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2015,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2019,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2010,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,260 -2001,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,270 -2002,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,287 -2003,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,282 -2004,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,304 -2005,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,363 -2006,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,385 -2007,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,411 -2008,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,423 -2009,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,461 -2010,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,472 -2011,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,459 -2012,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,483 -2013,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,461 -2014,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,461 -2015,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,471 -2016,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,483 -2017,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,490 -2018,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,493 -2019,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,491 -2020,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,495 -2010,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,479 -2011,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,467 -2012,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,492 -2013,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,473 -2014,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,471 -2015,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,478 -2016,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,495 -2017,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,504 -2018,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,507 -2019,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,508 -2020,geoId/01061,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,512 -2000,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12242 -2001,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12139 -2002,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12109 -2003,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12197 -2004,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12239 -2005,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12280 -2006,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12428 -2007,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12394 -2008,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12539 -2009,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12521 -2010,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12567 -2011,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12530 -2012,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12608 -2013,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12546 -2014,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12511 -2015,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12521 -2016,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12399 -2017,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12343 -2018,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12251 -2019,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12236 -2020,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,12271 -2010,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,178 -2011,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,174 -2012,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2013,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,202 -2014,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,205 -2015,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,215 -2016,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2017,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,206 -2018,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,206 -2019,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,225 -2020,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,233 -2000,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2001,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2002,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2003,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2004,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2005,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2006,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2007,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2008,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2009,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2010,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2011,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2012,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2013,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2014,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2015,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2016,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2017,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2018,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2019,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2020,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2000,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2007,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2008,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2009,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2016,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2017,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2011,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2012,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2013,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2014,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2015,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2016,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2017,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2018,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2019,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2020,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2000,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1252 -2001,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1237 -2002,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1273 -2003,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1247 -2004,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1245 -2005,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1221 -2006,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1251 -2007,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1172 -2008,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1182 -2009,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1163 -2010,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1178 -2011,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1182 -2012,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1210 -2013,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1199 -2014,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1182 -2015,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1161 -2016,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1173 -2017,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1160 -2018,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1163 -2019,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1152 -2020,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1150 -2010,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1263 -2011,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1272 -2012,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1304 -2013,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1304 -2014,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1295 -2015,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1284 -2016,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1291 -2017,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1285 -2018,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1282 -2019,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1287 -2020,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1289 -2010,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2001,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2002,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2003,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2004,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2005,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2006,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2007,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2008,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2009,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,167 -2010,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2011,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2012,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,197 -2013,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,207 -2014,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,221 -2015,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,235 -2016,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,217 -2017,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,232 -2018,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,240 -2019,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,253 -2020,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,261 -2010,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11253 -2011,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11206 -2012,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11253 -2013,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11182 -2014,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11165 -2015,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11187 -2016,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11064 -2017,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11016 -2018,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10928 -2019,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10905 -2020,geoId/01061,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10941 -2000,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10797 -2001,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10702 -2002,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10619 -2003,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10733 -2004,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10761 -2005,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10811 -2006,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10918 -2007,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10955 -2008,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11070 -2009,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11069 -2010,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11085 -2011,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11037 -2012,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11066 -2013,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10990 -2014,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10961 -2015,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10973 -2016,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10863 -2017,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10802 -2018,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10699 -2019,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10667 -2020,geoId/01061,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10695 -2000,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,31 -2001,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,31 -2002,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,28 -2003,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,36 -2004,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,34 -2005,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,36 -2006,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,34 -2007,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,35 -2008,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,37 -2009,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,39 -2010,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,39 -2011,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,38 -2012,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,43 -2013,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,46 -2014,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,40 -2015,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,49 -2016,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,54 -2017,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,61 -2018,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,63 -2019,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,63 -2020,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,65 -2010,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2001,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2002,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2003,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2004,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2005,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2006,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2006,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2016,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2010,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2017,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2020,geoId/01063,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2000,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5230 -2001,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5182 -2002,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5181 -2003,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5107 -2004,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5026 -2005,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4990 -2006,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4845 -2007,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4861 -2008,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4828 -2009,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4757 -2010,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4712 -2011,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4700 -2012,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4596 -2013,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4545 -2014,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4472 -2015,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4445 -2016,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4417 -2017,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4327 -2018,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4303 -2019,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4249 -2020,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4211 -2010,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2000,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4275 -2001,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4251 -2002,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4238 -2003,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4180 -2004,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4133 -2005,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4074 -2006,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3936 -2007,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4004 -2008,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3939 -2009,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3914 -2010,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3912 -2011,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3901 -2012,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3804 -2013,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3750 -2014,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3704 -2015,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3673 -2016,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3617 -2017,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3520 -2018,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3511 -2019,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3466 -2020,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3428 -2010,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3925 -2011,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3918 -2012,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3822 -2013,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3770 -2014,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3723 -2015,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3693 -2016,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3636 -2017,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3543 -2018,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3532 -2019,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3491 -2020,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3453 -2010,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2007,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2008,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2016,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2020,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2010,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,785 -2011,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,783 -2012,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,775 -2013,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,770 -2014,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,748 -2015,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,750 -2016,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,775 -2017,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,779 -2018,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,768 -2019,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,756 -2020,geoId/01063,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,755 -2000,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,934 -2001,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,911 -2002,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,923 -2003,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,905 -2004,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,870 -2005,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,890 -2006,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,874 -2007,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,822 -2008,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,851 -2009,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,805 -2010,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,763 -2011,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,758 -2012,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,752 -2013,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,746 -2014,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,722 -2015,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,718 -2016,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,744 -2017,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,752 -2018,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,738 -2019,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,722 -2020,geoId/01063,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,719 -2000,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,27 -2001,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,26 -2002,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,24 -2003,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,25 -2004,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,24 -2005,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,27 -2006,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,32 -2007,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,32 -2008,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,30 -2009,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,30 -2010,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,29 -2011,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,39 -2012,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,43 -2013,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,43 -2014,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,46 -2015,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,47 -2016,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,54 -2017,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,65 -2018,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,65 -2019,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,73 -2020,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,76 -2010,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2001,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2003,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2004,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2005,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2008,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2009,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2019,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2020,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2018,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2019,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01063,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2000,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4614 -2001,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4627 -2002,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4660 -2003,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4637 -2004,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4602 -2005,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4622 -2006,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4450 -2007,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4457 -2008,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4464 -2009,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4356 -2010,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4210 -2011,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4126 -2012,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4167 -2013,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4115 -2014,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4027 -2015,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,3968 -2016,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,3960 -2017,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,3859 -2018,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,3781 -2019,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,3719 -2020,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,3638 -2010,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2000,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3651 -2001,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3652 -2002,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3686 -2003,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3670 -2004,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3660 -2005,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3677 -2006,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3537 -2007,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3554 -2008,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3595 -2009,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3511 -2010,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3387 -2011,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3339 -2012,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3363 -2013,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3320 -2014,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3268 -2015,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3224 -2016,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3220 -2017,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3112 -2018,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3074 -2019,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3004 -2020,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2935 -2010,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3394 -2011,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3351 -2012,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3377 -2013,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3333 -2014,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3281 -2015,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3240 -2016,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3233 -2017,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3122 -2018,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3083 -2019,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3018 -2020,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2950 -2010,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2004,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,812 -2011,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,773 -2012,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,790 -2013,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,773 -2014,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,740 -2015,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,723 -2016,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,718 -2017,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,729 -2018,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,689 -2019,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,697 -2020,geoId/01063,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,681 -2000,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,942 -2001,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,953 -2002,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,954 -2003,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,944 -2004,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,919 -2005,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,926 -2006,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,890 -2007,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,880 -2008,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,846 -2009,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,821 -2010,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,799 -2011,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,758 -2012,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,769 -2013,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,754 -2014,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,723 -2015,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,702 -2016,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,701 -2017,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,708 -2018,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,671 -2019,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,674 -2020,geoId/01063,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,659 -2000,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,80 -2001,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,78 -2002,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,77 -2003,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,70 -2004,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,70 -2005,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,63 +1990,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1991,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1992,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1993,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1994,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1995,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1996,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1997,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1998,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1999,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1990,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,19 +1991,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,19 +1992,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,19 +1993,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,18 +1994,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,20 +1995,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,20 +1996,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,21 +1997,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,21 +1998,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,25 +1999,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,23 +1990,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2173 +1991,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2248 +1992,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2259 +1993,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2270 +1994,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2295 +1995,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2315 +1996,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2337 +1997,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2367 +1998,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2378 +1999,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2401 +1990,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15717 +1991,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15755 +1992,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15726 +1993,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15647 +1994,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15625 +1995,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15569 +1996,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15585 +1997,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15592 +1998,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15547 +1999,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15527 +1990,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1992,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1993,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1994,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1995,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1996,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1997,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1998,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1999,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1990,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1993,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1994,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1995,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1996,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1999,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1992,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1993,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1994,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1995,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1996,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1997,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1999,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1990,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,97 +1991,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,99 +1992,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,113 +1993,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,108 +1994,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,125 +1995,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,137 +1996,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,151 +1997,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,172 +1998,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,176 +1999,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,188 +1990,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,57 +1991,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,57 +1992,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,57 +1993,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,58 +1994,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,57 +1995,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,58 +1996,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,58 +1997,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,60 +1998,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,59 +1999,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,54 +1990,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,34 +1991,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,33 +1992,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,34 +1993,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,34 +1994,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,37 +1995,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,35 +1996,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,39 +1997,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,38 +1998,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,43 +1999,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,38 +1990,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1257 +1991,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1298 +1992,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1320 +1993,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1352 +1994,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1378 +1995,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1416 +1996,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1435 +1997,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1459 +1998,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1479 +1999,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1495 +1990,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,26320 +1991,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,26462 +1992,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,26836 +1993,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,27105 +1994,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,27321 +1995,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,27538 +1996,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,27714 +1997,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,27869 +1998,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,27920 +1999,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,27935 +1990,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1991,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1992,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1993,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1995,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1996,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1997,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1998,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1999,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1990,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1993,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1994,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1995,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1996,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1997,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1998,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1999,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1990,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1991,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1992,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1993,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1994,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1995,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1996,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1997,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1998,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1999,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1990,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,103 +1991,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,106 +1992,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,108 +1993,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,117 +1994,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,130 +1995,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,147 +1996,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,161 +1997,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,180 +1998,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,193 +1999,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,196 +1990,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,90 +1991,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,95 +1992,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,91 +1993,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,92 +1994,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,89 +1995,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,92 +1996,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,93 +1997,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,95 +1998,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,92 +1999,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,87 +1990,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1991,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,14 +1992,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1993,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,15 +1994,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,16 +1995,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,18 +1996,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,17 +1997,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,18 +1998,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,19 +1999,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,18 +1990,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2815 +1991,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2899 +1992,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2917 +1993,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2973 +1994,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3025 +1995,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3080 +1996,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3104 +1997,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3165 +1998,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3189 +1999,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3221 +1990,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,20682 +1991,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,20978 +1992,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,20925 +1993,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,21079 +1994,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,21221 +1995,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,21298 +1996,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,21360 +1997,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,21362 +1998,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,21360 +1999,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,21423 +1990,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1990,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1996,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1997,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1998,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1999,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,9 +1990,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1991,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1992,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1993,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1994,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1995,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1996,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1997,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,17 +1998,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1999,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1990,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1993,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1994,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1995,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1996,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1997,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1999,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1990,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1991,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1992,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1993,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1994,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1995,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1996,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1997,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1999,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1990,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1996,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8167 +1991,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8214 +1992,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8218 +1993,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8149 +1994,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8094 +1995,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8036 +1996,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8065 +1997,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8044 +1998,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7983 +1999,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7911 +1990,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1970 +1991,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1984 +1992,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1970 +1993,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1955 +1994,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1901 +1995,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1878 +1996,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1879 +1997,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1855 +1998,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1832 +1999,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,1809 2006,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,74 -2007,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,64 -2008,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,60 -2009,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,60 -2010,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,62 -2011,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,68 2012,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,71 -2013,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,79 -2014,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,94 -2015,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,86 -2016,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,93 -2017,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,86 -2018,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,85 -2019,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,97 -2020,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,109 -2010,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 2012,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 2006,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 2012,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2006,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2012,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 2012,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2001,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2002,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2003,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2004,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2005,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 2006,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2007,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2008,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 2012,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2017,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 2012,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 2012,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2006,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2012,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 2006,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 2012,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2001,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2002,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2003,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2004,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2005,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 2006,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2007,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2008,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2009,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2010,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2011,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 2012,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2014,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2015,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2016,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2017,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2019,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2020,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2010,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 2012,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2013,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2014,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2015,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2016,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2017,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2018,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2019,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2020,geoId/01065,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2000,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8976 -2001,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8900 -2002,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8698 -2003,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8600 -2004,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8487 -2005,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8526 2006,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8436 -2007,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8514 -2008,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8423 -2009,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8359 -2010,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8216 -2011,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8009 2012,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8011 -2013,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7994 -2014,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7893 -2015,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7836 -2016,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7746 -2017,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7700 -2018,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7676 -2019,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7620 -2020,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7644 -2010,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 2012,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2013,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2016,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2017,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2018,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2000,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2002,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2003,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 2006,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 2012,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2002,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2004,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2005,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 2006,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2007,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2009,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 2012,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 2012,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2013,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2014,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2000,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5459 -2001,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5398 -2002,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5289 -2003,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5255 -2004,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5186 -2005,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5177 2006,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5130 -2007,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5141 -2008,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5101 -2009,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5078 -2010,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4985 -2011,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4851 2012,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4837 -2013,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4819 -2014,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4769 -2015,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4731 -2016,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4692 -2017,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4659 -2018,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4626 -2019,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4589 -2020,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4595 -2010,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4998 -2011,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4867 2012,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4853 -2013,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4836 -2014,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4784 -2015,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4753 -2016,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4714 -2017,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4682 -2018,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4652 -2019,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4618 -2020,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4627 -2010,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 2012,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 2006,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2012,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2001,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2002,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2003,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2004,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2005,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 2006,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2007,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2008,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2009,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 2012,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2016,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2018,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2019,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2020,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2010,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3193 -2011,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3115 2012,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3121 -2013,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3120 -2014,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3076 -2015,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3061 -2016,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3008 -2017,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2993 -2018,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2997 -2019,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2975 -2020,geoId/01065,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2989 -2000,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3446 -2001,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3432 -2002,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3345 -2003,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3277 -2004,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3236 -2005,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3273 2006,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3234 -2007,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3300 -2008,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3251 -2009,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3211 -2010,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3163 -2011,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3082 2012,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3089 -2013,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3091 -2014,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3039 -2015,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3020 -2016,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,2966 -2017,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,2951 -2018,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,2955 -2019,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,2931 -2020,geoId/01065,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,2937 -2000,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,81 -2001,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,85 -2002,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,79 -2003,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,85 -2004,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,83 -2005,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,72 +1990,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1992,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1993,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1994,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1995,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1996,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1997,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1998,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1999,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1990,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,42 +1991,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1992,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1993,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,40 +1994,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,45 +1995,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1996,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,44 +1997,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,49 +1998,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,53 +1999,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,56 +1990,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1991,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1992,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1993,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1994,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1995,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,17 +1996,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1997,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1998,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1999,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 2006,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,66 -2007,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,76 -2008,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,74 -2009,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,80 -2010,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,78 -2011,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,87 2012,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,85 -2013,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,93 -2014,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,101 -2015,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,101 -2016,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,110 -2017,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,129 -2018,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,115 -2019,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,112 -2020,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,114 -2010,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 2012,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 2006,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 2012,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2006,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2012,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 2012,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2001,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2002,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2003,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2004,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2005,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 2006,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2010,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 2012,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 2012,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 2012,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2006,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2012,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 2006,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 2012,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2001,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2002,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2003,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2004,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2005,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 2006,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2007,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2008,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2009,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2010,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2011,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 2012,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2013,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2014,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2015,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2016,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2017,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2018,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2019,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2020,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2010,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2011,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 2012,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2013,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2014,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2015,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2016,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2017,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2018,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2019,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2020,geoId/01065,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2000,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9057 -2001,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8805 -2002,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8522 -2003,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8361 -2004,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8125 -2005,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7961 2006,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7851 -2007,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7764 -2008,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7703 -2009,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7526 -2010,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7389 -2011,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7196 2012,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7199 -2013,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7083 -2014,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6959 -2015,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6993 -2016,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6896 -2017,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6897 -2018,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6897 -2019,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6840 -2020,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6803 -2010,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 2012,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2016,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2000,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2003,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2005,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 2006,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 2012,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 2006,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 2012,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 2012,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2000,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5337 -2001,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5179 -2002,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4974 -2003,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4892 -2004,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4731 -2005,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4627 2006,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4549 -2007,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4453 -2008,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4471 -2009,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4338 -2010,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4268 -2011,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4138 2012,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4116 -2013,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4046 -2014,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3954 -2015,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3950 -2016,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3888 -2017,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3893 -2018,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3918 -2019,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3895 -2020,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3857 -2010,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4284 -2011,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4154 2012,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4132 -2013,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4065 -2014,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3980 -2015,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3974 -2016,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3910 -2017,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3907 -2018,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3934 -2019,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3912 -2020,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3873 -2010,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 2012,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2006,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 2012,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2001,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2002,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2003,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2004,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2005,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 2006,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2007,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2008,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2009,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2010,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2011,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 2012,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2015,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2016,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2017,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2010,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3095 -2011,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3029 2012,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3054 -2013,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3008 -2014,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2974 -2015,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3011 -2016,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2967 -2017,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2962 -2018,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2940 -2019,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2908 -2020,geoId/01065,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2909 -2000,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3664 -2001,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3572 -2002,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3496 -2003,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3418 -2004,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3345 -2005,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3279 2006,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3249 -2007,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3257 -2008,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3177 -2009,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3131 -2010,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3064 -2011,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,2999 2012,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,3019 -2013,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,2972 -2014,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,2936 -2015,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,2966 -2016,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,2926 -2017,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,2932 -2018,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,2904 -2019,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,2869 -2020,geoId/01065,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,2866 -2000,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,118 -2001,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,120 -2002,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,120 -2003,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,131 -2004,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,151 -2005,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,149 -2006,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,159 -2007,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,153 -2008,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,167 -2009,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,169 -2010,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,180 -2011,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,183 -2012,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,180 -2013,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,191 -2014,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,195 -2015,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,207 -2016,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,202 -2017,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,216 -2018,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,214 -2019,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,225 -2020,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,231 -2010,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2001,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2002,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2004,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2008,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2009,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2012,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2014,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2020,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2010,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2014,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2020,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2010,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2001,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2002,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2003,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2004,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2005,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2006,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2007,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2008,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2009,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2010,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2011,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2012,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,140 -2013,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,146 -2014,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2015,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2016,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,155 -2017,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2018,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2019,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,168 -2020,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,173 -2010,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,145 -2011,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2012,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,142 -2013,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2014,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2015,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2016,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2017,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,170 -2018,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2019,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2020,geoId/01067,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,181 -2000,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8449 -2001,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8458 -2002,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8529 -2003,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8564 -2004,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8565 -2005,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8615 -2006,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8696 -2007,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8741 -2008,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8771 -2009,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8786 -2010,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8811 -2011,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8874 -2012,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8710 -2013,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8660 -2014,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8621 -2015,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8610 -2016,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8590 -2017,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8615 -2018,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8619 -2019,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8627 -2020,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8723 -2010,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2011,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2012,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2013,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2014,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2015,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2016,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2017,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2018,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2019,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2000,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2002,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2003,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2005,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2006,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2007,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2008,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2019,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2000,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2004,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2009,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2014,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2015,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2016,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2017,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2018,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2010,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2011,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2012,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2014,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2015,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2016,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2017,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2018,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2019,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2020,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2000,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2891 -2001,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2915 -2002,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2921 -2003,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2867 -2004,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2841 -2005,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2819 -2006,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2803 -2007,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2790 -2008,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2781 -2009,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2698 -2010,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2653 -2011,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2627 -2012,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2563 -2013,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2509 -2014,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2431 -2015,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2420 -2016,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2375 -2017,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2380 -2018,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2354 -2019,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2311 -2020,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2306 -2010,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2689 -2011,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2682 -2012,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2621 -2013,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2556 -2014,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2486 -2015,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2477 -2016,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2429 -2017,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2450 -2018,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2427 -2019,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2400 -2020,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2378 -2010,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2001,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2002,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2003,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2004,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2005,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2006,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2007,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2008,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2009,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2010,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2011,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2012,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2013,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2014,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2015,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2016,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2017,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2018,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2019,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2020,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2010,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6098 -2011,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6168 -2012,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6066 -2013,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6075 -2014,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6111 -2015,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6110 -2016,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6138 -2017,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6157 -2018,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6183 -2019,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6229 -2020,geoId/01067,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6333 -2000,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5477 -2001,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5462 -2002,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5525 -2003,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5611 -2004,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5624 -2005,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5688 -2006,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5780 -2007,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5839 -2008,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5871 -2009,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5969 -2010,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6029 -2011,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6085 -2012,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5983 -2013,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5997 -2014,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6026 -2015,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6024 -2016,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6042 -2017,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6044 -2018,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6075 -2019,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6099 -2020,geoId/01067,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6208 -2000,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,132 -2001,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,151 -2002,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,150 -2003,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,183 -2004,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,188 -2005,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,196 -2006,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,207 -2007,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,205 -2008,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,185 -2009,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,212 -2010,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,214 -2011,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,208 -2012,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,220 -2013,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,231 -2014,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,225 -2015,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,232 -2016,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,227 -2017,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,239 -2018,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,238 -2019,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,239 -2020,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,233 -2010,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2003,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2008,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2017,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2020,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2016,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2010,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2001,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2002,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2003,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2004,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,172 -2005,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,176 -2006,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,177 -2007,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,174 -2008,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,157 -2009,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2010,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2011,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,173 -2012,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2013,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 -2014,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2015,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,187 -2016,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,183 -2017,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,192 -2018,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,186 -2019,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,183 -2020,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2010,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2011,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,176 -2012,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,181 -2013,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,192 -2014,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,185 -2015,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,190 -2016,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,187 -2017,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,196 -2018,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2019,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2020,geoId/01067,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,181 -2000,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7642 -2001,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7629 -2002,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7648 -2003,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7685 -2004,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7788 -2005,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7792 -2006,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7891 -2007,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8009 -2008,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8006 -2009,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8076 -2010,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8088 -2011,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8112 -2012,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8042 -2013,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8046 -2014,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8033 -2015,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8048 -2016,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8043 -2017,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8035 -2018,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8029 -2019,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8034 -2020,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8036 -2010,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2011,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2012,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2013,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2014,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2015,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2016,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2018,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2019,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2020,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2000,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2002,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2003,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2006,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2007,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2008,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2009,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2010,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2012,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2019,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2020,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2000,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2009,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2012,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2013,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2020,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2000,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2392 -2001,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2380 -2002,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2364 -2003,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2321 -2004,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2391 -2005,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2344 -2006,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2337 -2007,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2364 -2008,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2315 -2009,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2283 -2010,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2257 -2011,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2221 -2012,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2210 -2013,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2171 -2014,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2139 -2015,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2133 -2016,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2142 -2017,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2082 -2018,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2064 -2019,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2063 -2020,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2020 -2010,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2309 -2011,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2283 -2012,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2266 -2013,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2244 -2014,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2210 -2015,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2213 -2016,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2216 -2017,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2163 -2018,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2132 -2019,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2140 -2020,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2088 -2010,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2001,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2002,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2003,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2004,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2005,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2006,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2007,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2008,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2009,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2010,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2011,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2012,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2013,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2014,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2015,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2016,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2017,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2018,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2019,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2020,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2010,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5775 -2011,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5822 -2012,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5770 -2013,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5799 -2014,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5814 -2015,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5838 -2016,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5822 -2017,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5877 -2018,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5889 -2019,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5891 -2020,geoId/01067,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5932 -2000,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5185 -2001,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5179 -2002,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5214 -2003,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5285 -2004,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5307 -2005,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5340 -2006,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5444 -2007,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5528 -2008,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5569 -2009,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5659 -2010,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5700 -2011,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5732 -2012,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5675 -2013,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5699 -2014,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5710 -2015,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5731 -2016,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5709 -2017,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5757 -2018,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5774 -2019,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5767 -2020,geoId/01067,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5820 -2000,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,531 -2001,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,620 -2002,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,672 -2003,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,751 -2004,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,814 -2005,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,924 -2006,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,995 -2007,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1096 -2008,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1159 -2009,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1265 -2010,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1389 -2011,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1465 -2012,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1529 -2013,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1528 -2014,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1572 -2015,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1590 -2016,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1574 -2017,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1635 -2018,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1692 -2019,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1717 -2020,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1771 -2010,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2011,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2012,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2013,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2014,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2015,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2016,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2017,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2018,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2019,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2020,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2000,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2005,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2007,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2008,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2009,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2010,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2012,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2013,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2015,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2016,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2017,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2018,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2019,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2020,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2000,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2009,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2012,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2013,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2014,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2015,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2017,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2020,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2000,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2001,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2002,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2003,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2004,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2005,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2006,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2007,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2008,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2009,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2010,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2011,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2012,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2013,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2014,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2015,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2016,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,147 -2017,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2018,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2019,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2020,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2010,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2011,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2012,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,187 -2013,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2014,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2015,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,191 -2016,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,192 -2017,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,186 -2018,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,200 -2019,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,208 -2020,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,214 -2010,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2017,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2003,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2004,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2005,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2006,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2007,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2008,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2009,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2010,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2011,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2012,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2013,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2014,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2015,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2016,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2017,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2018,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2019,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2020,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2000,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,424 -2001,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,495 -2002,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,544 -2003,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,594 -2004,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,648 -2005,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,724 -2006,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,786 -2007,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,869 -2008,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,911 -2009,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1009 -2010,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1102 -2011,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1157 -2012,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1217 -2013,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1217 -2014,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1249 -2015,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1260 -2016,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1227 -2017,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1298 -2018,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1335 -2019,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1354 -2020,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1371 -2010,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1181 -2011,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1245 -2012,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1303 -2013,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1296 -2014,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1330 -2015,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1332 -2016,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1307 -2017,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1371 -2018,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1412 -2019,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1424 -2020,geoId/01069,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1454 -2000,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,46161 -2001,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,46306 -2002,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,46458 -2003,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,47070 -2004,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,47656 -2005,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,48145 -2006,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,49098 -2007,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,49898 -2008,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,50415 -2009,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,51021 -2010,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,51537 -2011,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,51991 -2012,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52260 -2013,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52418 -2014,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52650 -2015,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52671 -2016,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52713 -2017,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52696 -2018,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,52848 -2019,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,53724 -2020,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,53833 -2010,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,511 -2011,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,506 -2012,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,543 -2013,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,537 -2014,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,551 -2015,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,548 -2016,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,552 -2017,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,571 -2018,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,581 -2019,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,600 -2020,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,607 -2000,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,161 -2001,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,191 -2002,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,186 -2003,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,182 -2004,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,172 -2005,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,191 -2006,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,205 -2007,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,192 -2008,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,186 -2009,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,200 -2010,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,207 -2011,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,204 -2012,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,214 -2013,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,206 -2014,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,213 -2015,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,215 -2016,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,211 -2017,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,226 -2018,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2019,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,248 -2020,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,241 -2000,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,287 -2001,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,318 -2002,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,315 -2003,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,335 -2004,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,339 -2005,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,364 -2006,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,394 -2007,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,398 -2008,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,441 -2009,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,423 -2010,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,456 -2011,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,492 -2012,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,512 -2013,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,503 -2014,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,517 -2015,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,536 -2016,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,581 -2017,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,614 -2018,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,628 -2019,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,658 -2020,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,670 -2010,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,585 -2011,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,630 -2012,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,661 -2013,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,674 -2014,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,675 -2015,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,705 -2016,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,751 -2017,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,808 -2018,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,829 -2019,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,865 -2020,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,891 -2000,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11850 -2001,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11900 -2002,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12020 -2003,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12319 -2004,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12596 -2005,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12820 -2006,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13143 -2007,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13446 -2008,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13683 -2009,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13983 -2010,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14110 -2011,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14313 -2012,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14476 -2013,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14539 -2014,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14798 -2015,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14794 -2016,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14932 -2017,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14918 -2018,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15115 -2019,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15476 -2020,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15697 -2010,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14475 -2011,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14706 -2012,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14909 -2013,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15003 -2014,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15275 -2015,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15250 -2016,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15431 -2017,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15456 -2018,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15696 -2019,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16080 -2020,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16296 -2010,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2011,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2012,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2013,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2014,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2015,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2016,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2017,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2018,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2019,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2020,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2000,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2017,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2000,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,353 -2001,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,388 -2002,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,413 -2003,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,447 -2004,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,518 -2005,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,527 -2006,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,556 -2007,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,624 -2008,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,652 -2009,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,706 -2010,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,715 -2011,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,764 -2012,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,810 -2013,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,861 -2014,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,891 -2015,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,873 -2016,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,919 -2017,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,971 -2018,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1004 -2019,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1060 -2020,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1071 -2010,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36653 -2011,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36868 -2012,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36925 -2013,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37030 -2014,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36982 -2015,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36981 -2016,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36849 -2017,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36791 -2018,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36704 -2019,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37184 -2020,geoId/01069,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37062 -2000,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33503 -2001,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33500 -2002,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33513 -2003,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33779 -2004,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,34017 -2005,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,34227 -2006,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,34787 -2007,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,35220 -2008,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,35434 -2009,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,35693 -2010,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36027 -2011,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36194 -2012,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36220 -2013,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36276 -2014,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36198 -2015,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36221 -2016,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36041 -2017,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,35935 -2018,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,35833 -2019,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36246 -2020,geoId/01069,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36119 -2000,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,595 -2001,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,634 -2002,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,740 -2003,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,836 -2004,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,925 -2005,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1016 -2006,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1111 -2007,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1237 -2008,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1392 -2009,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1491 -2010,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1633 -2011,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1631 -2012,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1651 -2013,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1698 -2014,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1746 -2015,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1748 -2016,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1800 -2017,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1827 -2018,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1879 -2019,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1920 -2020,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1942 -2010,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2011,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2012,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2013,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2014,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2015,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2016,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2017,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2018,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2019,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2020,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,139 -2000,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2005,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2006,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2007,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2008,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2009,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2010,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2011,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2012,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2013,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2014,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2015,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2016,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2017,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2018,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2019,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2020,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2000,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2008,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2009,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2011,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2012,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2015,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2019,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2020,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2000,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2001,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2002,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2003,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2004,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2005,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2006,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2007,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2008,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2009,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2010,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2011,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2012,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2013,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2014,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2015,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2016,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2017,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2018,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2019,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,150 -2020,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,154 -2010,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,171 -2011,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2012,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,162 -2013,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,176 -2014,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,178 -2015,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,170 -2016,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2017,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,200 -2018,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,216 -2019,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,213 -2020,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,211 -2010,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2000,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2000,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2001,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2002,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2003,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2004,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2005,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2006,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2007,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2008,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2009,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2010,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2011,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2012,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2013,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2014,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2015,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2016,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2017,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2018,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2019,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2020,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2000,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,483 -2001,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,513 -2002,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,593 -2003,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,677 -2004,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,741 -2005,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,809 -2006,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,876 -2007,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,984 -2008,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1110 -2009,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1188 -2010,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1310 -2011,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1315 -2012,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1331 -2013,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1362 -2014,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1410 -2015,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1416 -2016,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1440 -2017,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1463 -2018,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1495 -2019,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1533 -2020,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1541 -2010,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1404 -2011,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1406 -2012,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1427 -2013,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1449 -2014,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1497 -2015,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1501 -2016,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1533 -2017,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1556 -2018,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1586 -2019,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1634 -2020,geoId/01069,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1643 -2000,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,41656 -2001,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,41930 -2002,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,42070 -2003,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,42664 -2004,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43198 -2005,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43818 -2006,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,44642 -2007,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,45496 -2008,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,46217 -2009,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,46723 -2010,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,47241 -2011,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,47422 -2012,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,47970 -2013,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48047 -2014,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48248 -2015,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48317 -2016,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48268 -2017,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48314 -2018,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48524 -2019,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,48879 -2020,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,49034 -2010,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,444 -2011,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,455 -2012,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,481 -2013,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,469 -2014,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,475 -2015,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,491 -2016,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,494 -2017,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,523 -2018,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,504 -2019,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,517 -2020,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,523 -2000,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,163 -2001,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,177 -2002,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2003,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2004,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2005,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,182 -2006,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2007,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2008,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2009,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,172 -2010,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,187 -2011,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,187 -2012,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,195 -2013,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 -2014,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,176 -2015,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,174 -2016,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2017,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,186 -2018,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2019,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,184 -2020,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,190 -2000,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,264 -2001,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,280 -2002,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,268 -2003,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,268 -2004,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,283 -2005,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,317 -2006,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,302 -2007,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,319 -2008,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,319 -2009,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,344 -2010,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,360 -2011,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,354 -2012,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,360 -2013,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,364 -2014,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,380 -2015,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,387 -2016,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,401 -2017,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,428 -2018,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,445 -2019,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,475 -2020,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,482 -2010,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,480 -2011,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,491 -2012,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,503 -2013,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,515 -2014,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,534 -2015,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,551 -2016,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,585 -2017,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,598 -2018,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,631 -2019,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,680 -2020,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,690 -2000,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9994 -2001,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10083 -2002,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10162 -2003,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10443 -2004,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10653 -2005,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10889 -2006,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11063 -2007,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11347 -2008,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11720 -2009,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11924 -2010,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12042 -2011,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12151 -2012,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12502 -2013,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12592 -2014,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12770 -2015,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12796 -2016,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12856 -2017,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12982 -2018,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13198 -2019,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13349 -2020,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13546 -2010,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12406 -2011,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12556 -2012,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12927 -2013,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13035 -2014,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13226 -2015,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13268 -2016,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13366 -2017,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13499 -2018,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13739 -2019,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13921 -2020,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14144 -2010,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2011,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2012,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2013,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2014,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2015,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2017,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2018,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2019,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2000,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2006,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2008,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2000,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,310 -2001,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,342 -2002,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,364 -2003,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,402 -2004,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,432 -2005,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,476 -2006,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,516 -2007,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,548 -2008,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,590 -2009,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,652 -2010,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,688 -2011,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,728 -2012,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,780 -2013,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,795 -2014,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,827 -2015,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,867 -2016,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,922 -2017,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,930 -2018,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,970 -2019,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1012 -2020,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1040 -2010,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34558 -2011,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34620 -2012,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34806 -2013,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34796 -2014,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34809 -2015,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34845 -2016,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34727 -2017,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34600 -2018,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34572 -2019,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34733 -2020,geoId/01069,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34671 -2000,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30918 -2001,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,31042 -2002,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,31095 -2003,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,31376 -2004,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,31656 -2005,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,31939 -2006,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,32562 -2007,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33088 -2008,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33395 -2009,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33615 -2010,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33944 -2011,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33982 -2012,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,34112 -2013,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,34087 -2014,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,34075 -2015,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,34075 -2016,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33894 -2017,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33769 -2018,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33708 -2019,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33837 -2020,geoId/01069,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33751 -2000,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,283 -2001,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,310 -2002,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,350 -2003,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,361 -2004,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,396 -2005,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,423 -2006,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,472 -2007,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,507 -2008,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,575 -2009,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,570 -2010,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,609 -2011,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,612 -2012,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,634 -2013,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,654 -2014,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,666 -2015,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,687 -2016,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,678 -2017,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,721 -2018,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,725 -2019,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,764 -2020,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,784 -2010,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2011,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2012,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2013,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2014,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2015,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2016,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2018,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2019,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2020,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2000,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2004,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2005,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2006,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2007,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2008,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2009,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2010,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2011,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2012,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2013,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2014,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2015,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2016,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2017,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2018,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2019,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2020,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2000,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2000,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2010,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2015,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2010,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2009,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2000,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,253 -2001,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,279 -2002,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,304 -2003,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,305 -2004,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,331 -2005,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,318 -2006,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,352 -2007,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,382 -2008,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,430 -2009,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,422 -2010,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,449 -2011,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,461 -2012,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,479 -2013,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,499 -2014,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,505 -2015,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,524 -2016,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,518 -2017,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,551 -2018,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,549 -2019,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,582 -2020,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,597 -2010,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,473 -2011,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,485 -2012,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,502 -2013,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,522 -2014,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,531 -2015,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,547 -2016,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,547 -2017,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,582 -2018,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,582 -2019,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,617 -2020,geoId/01071,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,637 -2000,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27370 -2001,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27359 -2002,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27172 -2003,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27069 -2004,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26992 -2005,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26806 -2006,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26826 -2007,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26649 -2008,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26794 -2009,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26666 -2010,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26475 -2011,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26396 -2012,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26320 -2013,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26254 -2014,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26024 -2015,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25831 -2016,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25770 -2017,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25689 -2018,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25591 -2019,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25538 -2020,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25484 -2010,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,832 -2011,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,819 -2012,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,835 -2013,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,809 -2014,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,807 -2015,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,842 -2016,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,835 -2017,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,843 -2018,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,851 -2019,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,842 -2020,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,846 -2000,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,471 -2001,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,440 -2002,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,423 -2003,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,405 -2004,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,425 -2005,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,374 -2006,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,393 -2007,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,377 -2008,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,381 -2009,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,368 -2010,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,354 -2011,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,350 -2012,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,359 -2013,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,347 -2014,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,356 -2015,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,363 -2016,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,357 -2017,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,360 -2018,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,365 -2019,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,363 -2020,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,357 -2000,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2001,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2002,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2003,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2004,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2005,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2006,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2007,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2008,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2009,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2010,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2011,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2012,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2013,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2014,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2015,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2016,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2017,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2018,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2019,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,140 -2020,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2010,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,142 -2011,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2012,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2013,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2014,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,153 -2015,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,169 -2016,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,162 -2017,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,177 -2018,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2019,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2020,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,187 -2000,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1031 -2001,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1038 -2002,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,990 -2003,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,993 -2004,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1006 -2005,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1016 -2006,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,979 -2007,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,969 -2008,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,973 -2009,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,946 -2010,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,921 -2011,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,881 -2012,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,875 -2013,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,855 -2014,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,864 -2015,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,857 -2016,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,854 -2017,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,856 -2018,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,870 -2019,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,848 -2020,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,838 -2010,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1069 -2011,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1031 -2012,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1029 -2013,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1026 -2014,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1021 -2015,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1030 -2016,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1030 -2017,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1045 -2018,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1078 -2019,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1052 -2020,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1037 -2010,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,501 -2001,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,542 -2002,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,547 -2003,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,538 -2004,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,560 -2005,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,555 -2006,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,597 -2007,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,599 -2008,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,608 -2009,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,652 -2010,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,643 -2011,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,645 -2012,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,642 -2013,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,658 -2014,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,629 -2015,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,677 -2016,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,682 -2017,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,699 -2018,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,713 -2019,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,705 -2020,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,712 -2010,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25057 -2011,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25024 -2012,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24934 -2013,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24888 -2014,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24652 -2015,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24449 -2016,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24406 -2017,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24308 -2018,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24178 -2019,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24149 -2020,geoId/01071,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24106 -2000,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25296 -2001,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25262 -2002,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25137 -2003,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25054 -2004,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24913 -2005,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24779 -2006,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24759 -2007,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24613 -2008,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24729 -2009,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24598 -2010,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24444 -2011,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24402 -2012,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24321 -2013,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24264 -2014,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24048 -2015,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23798 -2016,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23744 -2017,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23634 -2018,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23498 -2019,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23470 -2020,geoId/01071,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23425 -2000,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,328 -2001,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,372 -2002,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,398 -2003,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,478 -2004,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,500 -2005,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,546 -2006,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,602 -2007,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,627 -2008,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,678 -2009,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,714 -2010,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,731 -2011,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,770 -2012,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,739 -2013,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,770 -2014,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,815 -2015,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,795 -2016,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,802 -2017,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,808 -2018,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,785 -2019,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,820 -2020,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,822 -2010,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2011,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2012,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2013,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2014,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2015,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2016,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2017,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2018,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2019,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2020,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2000,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2003,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2004,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2005,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2006,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2007,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2008,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2009,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2010,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2011,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2012,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2013,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2015,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2016,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2017,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2018,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2019,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2020,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2000,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2008,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2009,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2016,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2011,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2012,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2013,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2016,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2019,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2000,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2009,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2016,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2020,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2010,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2011,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2013,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2014,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2015,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2016,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2017,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2019,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2010,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2004,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2006,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2008,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2009,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2011,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2000,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,297 -2001,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,340 -2002,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,357 -2003,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,415 -2004,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,432 -2005,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,438 -2006,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,478 -2007,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,494 -2008,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,519 -2009,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,544 -2010,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,554 -2011,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,585 -2012,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,558 -2013,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,581 -2014,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,616 -2015,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,597 -2016,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,608 -2017,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,612 -2018,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,588 -2019,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,618 -2020,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,610 -2010,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,595 -2011,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,624 -2012,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,596 -2013,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,620 -2014,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,658 -2015,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,632 -2016,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,644 -2017,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,652 -2018,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,628 -2019,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,657 -2020,geoId/01071,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,657 -2000,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25998 -2001,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25956 -2002,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25838 -2003,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25803 -2004,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25637 -2005,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25557 -2006,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25583 -2007,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25550 -2008,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25478 -2009,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25511 -2010,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25392 -2011,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25462 -2012,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25414 -2013,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25308 -2014,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25087 -2015,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,24916 -2016,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,24808 -2017,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,24647 -2018,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,24548 -2019,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,24550 -2020,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,24492 -2010,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,792 -2011,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,801 -2012,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,801 -2013,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,788 -2014,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,794 -2015,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,794 -2016,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,775 -2017,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,768 -2018,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,784 -2019,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,797 -2020,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,792 -2000,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,461 -2001,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,435 -2002,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,412 -2003,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,411 -2004,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,401 -2005,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,383 -2006,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,364 -2007,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,358 -2008,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,355 -2009,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,346 -2010,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,326 -2011,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,323 -2012,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,329 -2013,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,323 -2014,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,319 -2015,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,330 -2016,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,329 -2017,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,333 -2018,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,341 -2019,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,337 -2020,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,341 -2000,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2001,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2002,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2003,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2004,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2005,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2006,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2007,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2008,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2009,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2010,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2011,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2012,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2013,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2014,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2015,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2016,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2017,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2018,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2019,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2020,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2010,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2011,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2012,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2013,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2014,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2015,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2016,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2017,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2018,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,154 -2019,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2020,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,147 -2000,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,972 -2001,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,972 -2002,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,940 -2003,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,961 -2004,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,897 -2005,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,906 -2006,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,872 -2007,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,886 -2008,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,870 -2009,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,870 -2010,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,862 -2011,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,868 -2012,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,858 -2013,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,854 -2014,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,857 -2015,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,851 -2016,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,837 -2017,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,850 -2018,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,847 -2019,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,846 -2020,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,845 -2010,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1012 -2011,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1026 -2012,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1016 -2013,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1018 -2014,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1027 -2015,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1013 -2016,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,988 -2017,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1019 -2018,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1021 -2019,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1029 -2020,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1033 -2010,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2011,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2000,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2009,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,475 -2001,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,470 -2002,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,501 -2003,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,510 -2004,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,515 -2005,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,542 -2006,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,550 -2007,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,564 -2008,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,558 -2009,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,623 -2010,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,630 -2011,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,645 -2012,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,659 -2013,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,643 -2014,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,646 -2015,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,637 -2016,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,625 -2017,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,627 -2018,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,652 -2019,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,668 -2020,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,663 -2010,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24094 -2011,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24149 -2012,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24104 -2013,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23990 -2014,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23758 -2015,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23593 -2016,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23508 -2017,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23327 -2018,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23218 -2019,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23224 -2020,geoId/01071,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23157 -2000,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24025 -2001,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24014 -2002,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23914 -2003,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23849 -2004,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23750 -2005,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23657 -2006,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23716 -2007,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23666 -2008,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23612 -2009,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23594 -2010,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23486 -2011,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23530 -2012,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23464 -2013,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23376 -2014,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,23149 -2015,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22980 -2016,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22901 -2017,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22718 -2018,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22581 -2019,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22577 -2020,geoId/01071,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,22519 -2000,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4328 -2001,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4767 -2002,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5410 -2003,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,6060 -2004,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,6685 -2005,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,7378 -2006,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,8106 -2007,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,8782 -2008,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,9456 -2009,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,10168 -2010,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,10816 -2011,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,10989 -2012,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,10905 -2013,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,10875 -2014,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,10889 -2015,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,11102 -2016,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,11371 -2017,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,11727 -2018,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,12185 -2019,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,12546 -2020,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,12856 -2010,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,453 -2011,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,416 -2012,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,371 -2013,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,361 -2014,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,320 -2015,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,329 -2016,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,318 -2017,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,319 -2018,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,348 -2019,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,354 -2020,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,366 -2000,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2001,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2002,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,157 -2003,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2004,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,205 -2005,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,198 -2006,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,213 -2007,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2008,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,260 -2009,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2010,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,349 -2011,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,315 -2012,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,287 -2013,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,268 -2014,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,231 -2015,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,240 -2016,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,224 -2017,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2018,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,237 -2019,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,246 -2020,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,254 -2000,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2001,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2002,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2003,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2004,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2005,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2006,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2007,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2008,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2009,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2010,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2011,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2012,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2013,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2015,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2018,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2010,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2011,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2012,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2013,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2014,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2015,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2016,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2017,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2018,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2019,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2020,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2000,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,649 -2001,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,676 -2002,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,669 -2003,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,702 -2004,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,700 -2005,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,796 -2006,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,806 -2007,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,846 -2008,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,880 -2009,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1005 -2010,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1069 -2011,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1028 -2012,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1025 -2013,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1014 -2014,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,980 -2015,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1005 -2016,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1021 -2017,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,989 -2018,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1021 -2019,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1046 -2020,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1101 -2010,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1192 -2011,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1145 -2012,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1144 -2013,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1136 -2014,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1085 -2015,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1107 -2016,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1147 -2017,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1112 -2018,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1161 -2019,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1199 -2020,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1241 -2010,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,147 -2011,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2012,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2013,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2014,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2015,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2016,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2017,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2018,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2019,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2020,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2000,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2001,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2002,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2003,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2004,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2005,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2006,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2007,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2008,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2009,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2010,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2011,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2012,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2013,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2015,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2016,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2017,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2018,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2019,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2000,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2001,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2002,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,147 -2003,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,180 -2004,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2005,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2006,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2007,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,195 -2008,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,179 -2009,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,215 -2010,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,245 -2011,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,234 -2012,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,223 -2013,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,231 -2014,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,210 -2015,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,210 -2016,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,229 -2017,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,237 -2018,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,262 -2019,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,274 -2020,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,260 -2000,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3415 -2001,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3722 -2002,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4296 -2003,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4867 -2004,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5439 -2005,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6137 -2006,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6776 -2007,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7370 -2008,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7993 -2009,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,8471 -2010,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,8972 -2011,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,9260 -2012,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,9253 -2013,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,9248 -2014,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,9351 -2015,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,9543 -2016,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,9787 -2017,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,10169 -2018,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,10561 -2019,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,10872 -2020,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,11107 -2010,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9167 -2011,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9457 -2012,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9440 -2013,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9442 -2014,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9521 -2015,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9712 -2016,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9975 -2017,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10363 -2018,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10785 -2019,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11106 -2020,geoId/01073,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11330 -2000,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,345519 -2001,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,343988 -2002,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,341485 -2003,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,340538 -2004,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,339341 -2005,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,338054 -2006,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,337799 -2007,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,336625 -2008,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,336506 -2009,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,336507 -2010,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,335766 -2011,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,335732 -2012,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,335768 -2013,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,336217 -2014,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,336719 -2015,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,336961 -2016,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,336328 -2017,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,336279 -2018,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,335810 -2019,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,334924 -2020,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,333254 -2010,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2060 -2011,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2069 -2012,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2081 -2013,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2084 -2014,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2134 -2015,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2127 -2016,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2099 -2017,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2124 -2018,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2105 -2019,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2082 -2020,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2101 -2000,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,709 -2001,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,732 -2002,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,735 -2003,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,740 -2004,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,745 -2005,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,822 -2006,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,795 -2007,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,814 -2008,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,824 -2009,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,845 -2010,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,800 -2011,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,804 -2012,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,773 -2013,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,781 -2014,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,788 -2015,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,772 -2016,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,750 -2017,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,723 -2018,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,707 -2019,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,690 -2020,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,709 -2000,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3054 -2001,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3104 -2002,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3255 -2003,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3401 -2004,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3707 -2005,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3967 -2006,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4162 -2007,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4367 -2008,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4464 -2009,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4615 -2010,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4774 -2011,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4927 -2012,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5215 -2013,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5313 -2014,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5430 -2015,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5574 -2016,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5794 -2017,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6038 -2018,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6122 -2019,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6206 -2020,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6287 -2010,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5557 -2011,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5763 -2012,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6091 -2013,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6215 -2014,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6379 -2015,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6587 -2016,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6830 -2017,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7150 -2018,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7262 -2019,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7400 -2020,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7498 -2000,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,141849 -2001,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,142580 -2002,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,142909 -2003,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,143744 -2004,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,144599 -2005,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,145535 -2006,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,146965 -2007,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,147762 -2008,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,148779 -2009,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,149939 -2010,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,150492 -2011,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,151181 -2012,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,151773 -2013,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,152865 -2014,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,153527 -2015,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,154214 -2016,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,154259 -2017,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,154677 -2018,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,154746 -2019,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,154838 -2020,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,154830 -2010,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,152109 -2011,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,152898 -2012,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,153568 -2013,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,154711 -2014,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,155521 -2015,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,156293 -2016,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,156390 -2017,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,156967 -2018,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,157132 -2019,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,157300 -2020,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,157291 -2010,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2011,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,165 -2012,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2013,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,194 -2014,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,220 -2015,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,220 -2016,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,238 -2017,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,240 -2018,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,242 -2019,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,248 -2020,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,238 -2000,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2001,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2002,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2003,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2004,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2005,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2006,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2007,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2008,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2009,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2010,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2011,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2012,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2013,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2014,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2015,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2016,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2017,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2018,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2019,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2020,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2000,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2081 -2001,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2163 -2002,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2145 -2003,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2237 -2004,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2300 -2005,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2445 -2006,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2497 -2007,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2577 -2008,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2771 -2009,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2930 -2010,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3068 -2011,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3213 -2012,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3342 -2013,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3423 -2014,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3634 -2015,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3782 -2016,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3843 -2017,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4079 -2018,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4192 -2019,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4301 -2020,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4308 -2010,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,179133 -2011,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,178234 -2012,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,177409 -2013,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,176657 -2014,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,176324 -2015,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,175741 -2016,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,174846 -2017,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,174147 -2018,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,173526 -2019,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,172464 -2020,geoId/01073,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,170713 -2000,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,197765 -2001,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,195337 -2002,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,192361 -2003,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,190342 -2004,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,187905 -2005,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,185228 -2006,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,183292 -2007,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,181022 -2008,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,179570 -2009,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,178088 -2010,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,176560 -2011,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,175545 -2012,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,174593 -2013,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,173752 -2014,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,173245 -2015,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,172513 -2016,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,171560 -2017,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,170643 -2018,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,169927 -2019,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,168777 -2020,geoId/01073,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,167018 -2000,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6380 -2001,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6951 -2002,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,7768 -2003,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,8558 -2004,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,9363 -2005,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,10226 -2006,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,11238 -2007,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,12072 -2008,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,12945 -2009,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,13794 -2010,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,14516 -2011,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,14186 -2012,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,13597 -2013,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,13185 -2014,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,12973 -2015,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,12989 -2016,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,13192 -2017,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,13385 -2018,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,13655 -2019,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,13895 -2020,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,13968 -2010,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,774 -2011,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,674 -2012,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,624 -2013,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,574 -2014,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,495 -2015,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,438 -2016,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,423 -2017,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,390 -2018,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,389 -2019,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,401 -2020,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,400 -2000,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2001,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2002,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,218 -2003,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2004,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,302 -2005,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,313 -2006,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,363 -2007,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,418 -2008,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,446 -2009,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,511 -2010,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,586 -2011,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,512 -2012,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,465 -2013,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,417 -2014,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,358 -2015,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,313 -2016,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,314 -2017,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,307 -2018,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,305 -2019,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,294 -2020,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2000,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2001,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2002,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2003,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2004,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2005,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2006,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2007,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2008,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2009,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2010,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2011,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2012,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2014,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2018,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2019,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2020,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2010,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2011,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2012,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2013,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2014,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2015,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2016,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2017,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2018,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2019,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2020,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2000,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,577 -2001,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,607 -2002,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,650 -2003,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,731 -2004,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,736 -2005,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,895 -2006,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,946 -2007,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,970 -2008,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1137 -2009,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1167 -2010,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1261 -2011,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1204 -2012,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1153 -2013,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1091 -2014,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1059 -2015,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1058 -2016,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1013 -2017,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,971 -2018,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,990 -2019,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,995 -2020,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1025 -2010,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1450 -2011,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1382 -2012,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1319 -2013,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1258 -2014,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1211 -2015,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1184 -2016,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1143 -2017,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1088 -2018,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1098 -2019,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1126 -2020,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1159 -2010,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,224 -2011,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,194 -2012,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2013,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2014,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,141 -2015,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2016,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2017,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2018,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,123 -2019,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2020,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2000,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2001,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2002,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2003,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2004,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2005,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2006,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2007,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2008,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2009,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2010,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2011,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2012,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2013,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2014,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2015,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2016,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2017,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2018,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2019,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2020,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2000,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2001,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2002,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,218 -2003,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,248 -2004,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,254 -2005,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,209 -2006,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,267 -2007,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,282 -2008,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,284 -2009,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,306 -2010,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,382 -2011,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,359 -2012,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,340 -2013,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,323 -2014,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,298 -2015,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,266 -2016,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,242 -2017,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,231 -2018,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,223 -2019,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,244 -2020,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,258 -2000,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5428 -2001,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5872 -2002,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6498 -2003,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7158 -2004,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7868 -2005,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,8656 -2006,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,9490 -2007,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,10201 -2008,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,10874 -2009,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,11588 -2010,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,12036 -2011,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,11890 -2012,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,11473 -2013,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,11204 -2014,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,11115 -2015,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,11215 -2016,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,11475 -2017,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,11709 -2018,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,11967 -2019,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,12191 -2020,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,12225 -2010,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12346 -2011,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12188 -2012,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11748 -2013,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11468 -2014,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11358 -2015,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11438 -2016,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11667 -2017,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11900 -2018,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12153 -2019,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12385 -2020,geoId/01073,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12438 -2000,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,305806 -2001,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,304491 -2002,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,302855 -2003,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,302357 -2004,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,300634 -2005,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,299261 -2006,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,298750 -2007,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,297684 -2008,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,297603 -2009,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,297972 -2010,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,297132 -2011,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,297268 -2012,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,297913 -2013,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,299157 -2014,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,299604 -2015,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,299665 -2016,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,299616 -2017,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,298501 -2018,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,298022 -2019,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,297174 -2020,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,295264 -2010,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1775 -2011,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1774 -2012,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1800 -2013,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1798 -2014,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1858 -2015,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1840 -2016,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1843 -2017,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1864 -2018,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1842 -2019,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1833 -2020,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1823 -2000,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,672 -2001,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,658 -2002,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,655 -2003,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,675 -2004,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,664 -2005,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,709 -2006,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,687 -2007,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,697 -2008,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,740 -2009,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,677 -2010,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,665 -2011,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,662 -2012,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,659 -2013,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,646 -2014,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,663 -2015,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,648 -2016,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,637 -2017,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,647 -2018,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,611 -2019,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,599 -2020,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,579 -2000,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3028 -2001,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3068 -2002,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3275 -2003,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3378 -2004,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3648 -2005,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3792 -2006,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3952 -2007,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4119 -2008,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4168 -2009,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4416 -2010,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4470 -2011,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4528 -2012,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4785 -2013,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4884 -2014,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4925 -2015,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5052 -2016,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5164 -2017,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5299 -2018,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5510 -2019,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5566 -2020,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5611 -2010,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5177 -2011,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5283 -2012,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5559 -2013,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5725 -2014,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5817 -2015,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5965 -2016,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6146 -2017,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6293 -2018,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6545 -2019,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6666 -2020,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6760 -2000,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,118818 -2001,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,119229 -2002,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,119496 -2003,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,120387 -2004,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,120839 -2005,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,121533 -2006,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,122748 -2007,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,123061 -2008,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,123955 -2009,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,125067 -2010,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,125683 -2011,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,126267 -2012,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,127028 -2013,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,128240 -2014,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,128801 -2015,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,129509 -2016,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,129765 -2017,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,129731 -2018,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,129675 -2019,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,129651 -2020,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,129348 -2010,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,127072 -2011,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,127742 -2012,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,128595 -2013,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,129908 -2014,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,130547 -2015,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131359 -2016,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131689 -2017,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131747 -2018,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131770 -2019,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131879 -2020,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131682 -2010,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2011,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,144 -2012,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,162 -2013,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,200 -2014,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2015,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,164 -2016,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,165 -2017,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2018,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,169 -2019,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,170 -2020,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,206 -2000,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2001,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2002,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2003,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2004,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2005,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2006,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2007,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2008,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2009,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2010,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2011,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2012,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2013,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2014,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2015,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2016,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2017,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2018,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2019,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2020,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2000,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1912 -2001,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1947 -2002,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1980 -2003,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2054 -2004,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2138 -2005,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2200 -2006,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2247 -2007,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2316 -2008,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2397 -2009,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2539 -2010,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2736 -2011,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2866 -2012,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2985 -2013,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3153 -2014,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3288 -2015,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3414 -2016,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3547 -2017,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3663 -2018,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3788 -2019,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3964 -2020,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4101 -2010,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,165853 -2011,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,165346 -2012,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,164971 -2013,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,164879 -2014,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,164690 -2015,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,163940 -2016,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,163555 -2017,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,162301 -2018,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,161676 -2019,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,160804 -2020,geoId/01073,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,159131 -2000,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,181312 -2001,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,179512 -2002,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,177384 -2003,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,175800 -2004,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,173282 -2005,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,170984 -2006,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,169052 -2007,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,167418 -2008,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,166261 -2009,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,165204 -2010,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,163506 -2011,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,162883 -2012,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,162381 -2013,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,162146 -2014,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,161849 -2015,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,160973 -2016,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,160444 -2017,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,159101 -2018,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,158383 -2019,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,157329 -2020,geoId/01073,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,155544 -2000,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,86 -2001,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,85 -2002,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,81 -2003,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,83 -2004,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,85 -2005,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,77 -2006,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,69 -2007,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,71 -2008,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,73 -2009,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,77 -2010,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,70 -2011,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,78 -2012,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,90 -2013,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,90 -2014,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,93 -2015,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,86 -2016,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,93 -2017,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,97 -2018,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,106 -2019,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,118 -2020,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,123 -2010,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2001,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2002,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2003,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2004,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2005,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2006,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2007,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2008,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2009,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2010,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2011,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2012,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2013,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2014,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2015,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2016,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2017,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2018,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2019,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2020,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2010,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2011,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2012,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2013,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2014,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2015,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2016,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2017,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2018,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2019,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2020,geoId/01075,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2000,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8155 -2001,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7995 -2002,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7875 -2003,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7801 -2004,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7671 -2005,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7643 -2006,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7531 -2007,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7597 -2008,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7565 -2009,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7441 -2010,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7363 -2011,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7261 -2012,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7229 -2013,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7197 -2014,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7127 -2015,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7026 -2016,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7029 -2017,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7004 -2018,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6982 -2019,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6916 -2020,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6888 -2010,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2011,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2012,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2013,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2014,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2015,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2016,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2017,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2018,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2019,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2020,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2000,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1036 -2001,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1011 -2002,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,997 -2003,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,986 -2004,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,964 -2005,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,974 -2006,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,956 -2007,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,969 -2008,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,957 -2009,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,900 -2010,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,887 -2011,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,860 -2012,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,858 -2013,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,855 -2014,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,836 -2015,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,790 -2016,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,772 -2017,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,783 -2018,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,763 -2019,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,746 -2020,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,735 -2010,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,924 -2011,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,915 -2012,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,906 -2013,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,902 -2014,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,880 -2015,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,848 -2016,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,823 -2017,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,837 -2018,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,829 -2019,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,804 -2020,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,791 -2010,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2001,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2002,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2003,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2004,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2005,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2006,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2007,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2008,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2009,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2010,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2011,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2012,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2013,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2014,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2015,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2016,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2017,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2018,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2019,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2020,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2010,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6454 -2011,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6372 -2012,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6339 -2013,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6315 -2014,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6266 -2015,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6210 -2016,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6229 -2017,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6193 -2018,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6186 -2019,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6137 -2020,geoId/01075,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6119 -2000,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7065 -2001,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6927 -2002,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6820 -2003,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6753 -2004,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6641 -2005,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6595 -2006,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6496 -2007,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6536 -2008,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6510 -2009,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6441 -2010,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6379 -2011,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6292 -2012,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6260 -2013,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6227 -2014,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6178 -2015,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6109 -2016,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6132 -2017,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6093 -2018,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6079 -2019,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6034 -2020,geoId/01075,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6014 -2000,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,121 -2001,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,121 -2002,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,123 -2003,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,119 -2004,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,115 -2005,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,110 -2006,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,112 -2007,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,112 -2008,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,103 -2009,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,116 -2010,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,109 -2011,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,120 -2012,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,114 -2013,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,114 -2014,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,115 -2015,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,117 -2016,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,120 -2017,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,121 -2018,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,127 -2019,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,144 -2020,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,152 -2010,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2001,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2002,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2003,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2004,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2005,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2006,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2007,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2008,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2009,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2010,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2011,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2012,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2013,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2014,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2015,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2016,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2017,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2018,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2019,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2020,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2010,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2011,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2012,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2013,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2014,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2015,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2016,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2017,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2018,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2019,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2020,geoId/01075,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2000,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7561 -2001,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7431 -2002,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7367 -2003,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7255 -2004,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7204 -2005,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7179 -2006,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7104 -2007,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7121 -2008,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7058 -2009,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7055 -2010,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6954 -2011,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6833 -2012,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6817 -2013,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6813 -2014,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6736 -2015,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6702 -2016,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6684 -2017,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6663 -2018,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6663 -2019,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6639 -2020,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6601 -2010,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2011,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2012,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2013,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2014,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2015,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2017,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2018,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2019,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2020,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2000,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2000,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,846 -2001,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,807 -2002,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,806 -2003,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,766 -2004,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,770 -2005,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,771 -2006,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,767 -2007,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,783 -2008,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,761 -2009,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,759 -2010,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,738 -2011,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,712 -2012,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,704 -2013,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,691 -2014,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,687 -2015,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,675 -2016,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,679 -2017,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,673 -2018,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,664 -2019,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,663 -2020,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,666 -2010,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,779 -2011,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,765 -2012,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,753 -2013,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,750 -2014,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,742 -2015,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,735 -2016,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,736 -2017,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,737 -2018,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,719 -2019,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,724 -2020,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,728 -2010,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2001,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2002,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2003,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2004,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2005,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2006,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2007,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2008,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2009,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2010,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2011,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2012,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2013,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2014,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2015,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2016,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2017,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2018,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2019,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2020,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2010,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6194 -2011,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6096 -2012,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6091 -2013,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6099 -2014,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6029 -2015,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6002 -2016,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5981 -2017,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5962 -2018,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5975 -2019,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5954 -2020,geoId/01075,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5906 -2000,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6674 -2001,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6580 -2002,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6513 -2003,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6435 -2004,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6375 -2005,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6339 -2006,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6255 -2007,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6254 -2008,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6204 -2009,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6197 -2010,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6115 -2011,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6014 -2012,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6004 -2013,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6005 -2014,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5936 -2015,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5899 -2016,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5878 -2017,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5859 -2018,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5868 -2019,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5847 -2020,geoId/01075,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5804 -2000,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,402 -2001,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,448 -2002,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,492 -2003,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,543 -2004,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,609 -2005,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,660 -2006,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,709 -2007,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,810 -2008,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,862 -2009,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,956 -2010,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,978 -2011,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,999 -2012,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,982 -2013,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1029 -2014,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1045 -2015,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1119 -2016,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1171 -2017,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1239 -2018,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1301 -2019,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1358 -2020,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1392 -2010,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2013,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2016,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2018,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2019,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2000,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2019,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2000,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2019,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2010,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2011,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2000,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2002,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2003,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2004,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2005,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2006,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2007,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2008,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2009,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2010,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2011,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2013,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2014,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2015,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2016,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2017,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2018,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2019,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2020,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2010,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2011,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2012,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2013,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2014,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2015,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2016,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2017,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2018,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2019,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2020,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2010,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2006,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2007,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2008,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2009,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2011,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2015,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2018,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2019,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2020,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2000,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,368 -2001,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,414 -2002,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,449 -2003,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,486 -2004,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,539 -2005,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,569 -2006,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,606 -2007,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,693 -2008,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,726 -2009,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,819 -2010,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,835 -2011,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,840 -2012,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,828 -2013,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,867 -2014,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,873 -2015,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,944 -2016,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,997 -2017,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1057 -2018,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1111 -2019,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1161 -2020,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1174 -2010,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,868 -2011,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,878 -2012,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,866 -2013,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,903 -2014,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,911 -2015,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,982 -2016,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1039 -2017,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1102 -2018,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1158 -2019,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1215 -2020,geoId/01077,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1223 -2000,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,45528 -2001,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,45390 -2002,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,45225 -2003,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,45393 -2004,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,45715 -2005,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,46003 -2006,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,46441 -2007,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,46769 -2008,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,47229 -2009,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,47283 -2010,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,47341 -2011,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,47264 -2012,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,47398 -2013,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,47419 -2014,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,47469 -2015,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,47132 -2016,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,47123 -2017,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,47088 -2018,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,46926 -2019,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,47077 -2020,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,47223 -2010,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,409 -2011,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,413 -2012,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,435 -2013,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,426 -2014,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,444 -2015,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,436 -2016,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,441 -2017,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,447 -2018,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,439 -2019,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,449 -2020,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,451 -2000,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2001,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,139 -2002,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2003,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2004,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2005,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2006,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,147 -2007,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2008,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,157 -2009,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,140 -2010,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2011,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2012,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2013,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2014,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,185 -2015,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,177 -2016,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2017,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 -2018,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2019,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,163 -2020,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,161 -2000,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 -2001,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2002,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,194 -2003,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,217 -2004,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,239 -2005,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,247 -2006,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,280 -2007,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,286 -2008,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,307 -2009,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,344 -2010,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,340 -2011,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,348 -2012,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,365 -2013,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,371 -2014,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,374 -2015,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,361 -2016,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,369 -2017,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,375 -2018,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,389 -2019,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,412 -2020,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,423 -2010,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,416 -2011,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,429 -2012,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,445 -2013,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,456 -2014,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,455 -2015,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,450 -2016,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,461 -2017,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,474 -2018,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,487 -2019,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,510 -2020,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,529 -2000,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4744 -2001,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4691 -2002,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4699 -2003,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4676 -2004,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4734 -2005,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4777 -2006,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4864 -2007,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4875 -2008,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4959 -2009,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5013 -2010,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4978 -2011,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4965 -2012,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5026 -2013,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5011 -2014,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5077 -2015,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4979 -2016,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5028 -2017,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4991 -2018,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4966 -2019,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4949 -2020,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4964 -2010,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5273 -2011,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5292 -2012,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5358 -2013,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5333 -2014,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5411 -2015,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5332 -2016,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5415 -2017,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5401 -2018,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5380 -2019,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5375 -2020,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5399 -2010,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2017,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2000,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,282 -2001,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,308 -2002,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,333 -2003,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,351 -2004,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,397 -2005,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,425 -2006,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,469 -2007,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,507 -2008,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,510 -2009,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,555 -2010,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,582 -2011,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,614 -2012,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,624 -2013,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,614 -2014,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,639 -2015,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,660 -2016,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,709 -2017,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,738 -2018,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,746 -2019,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,761 -2020,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,778 -2010,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41803 -2011,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41720 -2012,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41766 -2013,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41804 -2014,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41780 -2015,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41560 -2016,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41498 -2017,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41495 -2018,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41339 -2019,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41482 -2020,geoId/01077,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41598 -2000,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40207 -2001,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40073 -2002,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39865 -2003,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40012 -2004,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40214 -2005,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40416 -2006,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40673 -2007,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40930 -2008,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41287 -2009,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41220 -2010,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41263 -2011,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41156 -2012,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41197 -2013,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41235 -2014,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41184 -2015,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40945 -2016,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40840 -2017,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40809 -2018,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40649 -2019,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40778 -2020,geoId/01077,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40880 -2000,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,492 -2001,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,551 -2002,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,564 -2003,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,610 -2004,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,660 -2005,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,734 -2006,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,821 -2007,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,880 -2008,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,973 -2009,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1051 -2010,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1116 -2011,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1130 -2012,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1084 -2013,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1105 -2014,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1114 -2015,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1122 -2016,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1154 -2017,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1231 -2018,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1293 -2019,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1299 -2020,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1373 -2010,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2011,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2012,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2013,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2014,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2015,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2016,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2017,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2018,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2019,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2020,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2000,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2020,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2000,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2006,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2007,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2008,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2011,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2015,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2016,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2019,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2020,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2000,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2003,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2004,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2005,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2006,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2007,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2008,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2009,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2010,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2011,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2012,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2013,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2014,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2015,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2016,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2018,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2019,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2020,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2010,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2011,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2012,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2013,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2014,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2015,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2016,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2017,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2018,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2019,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2020,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2010,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2006,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2007,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2008,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2009,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2010,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2011,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2012,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2013,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2014,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2015,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2016,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2017,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2018,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2019,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2020,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2000,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,451 -2001,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,508 -2002,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,516 -2003,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,547 -2004,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,589 -2005,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,634 -2006,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,698 -2007,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,739 -2008,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,828 -2009,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,892 -2010,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,933 -2011,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,932 -2012,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,879 -2013,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,896 -2014,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,892 -2015,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,898 -2016,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,919 -2017,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,982 -2018,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1033 -2019,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1036 -2020,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1100 -2010,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,990 -2011,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,992 -2012,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,942 -2013,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,956 -2014,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,948 -2015,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,961 -2016,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,990 -2017,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1058 -2018,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1098 -2019,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1098 -2020,geoId/01077,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1170 -2000,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,41617 -2001,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,41402 -2002,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,41346 -2003,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,41557 -2004,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,41748 -2005,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,41961 -2006,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,42323 -2007,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,42648 -2008,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43138 -2009,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43236 -2010,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43303 -2011,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43222 -2012,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43223 -2013,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43185 -2014,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43421 -2015,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43151 -2016,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43073 -2017,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43143 -2018,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43213 -2019,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43294 -2020,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43380 -2010,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,410 -2011,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,411 -2012,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,409 -2013,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,403 -2014,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,416 -2015,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,423 -2016,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,402 -2017,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,414 -2018,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,426 -2019,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,448 -2020,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,432 -2000,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2001,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2002,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2003,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2004,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2005,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2006,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2007,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2008,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,156 -2009,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,169 -2010,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,172 -2011,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,177 -2012,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,177 -2013,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2014,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,176 -2015,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2016,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,163 -2017,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2018,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2019,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2020,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2000,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,150 -2001,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,171 -2002,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,196 -2003,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,206 -2004,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,217 -2005,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,243 -2006,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,262 -2007,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,275 -2008,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,302 -2009,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,318 -2010,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,337 -2011,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,334 -2012,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,359 -2013,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,338 -2014,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,339 -2015,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,339 -2016,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,344 -2017,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,352 -2018,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,331 -2019,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,350 -2020,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,366 -2010,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,404 -2011,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,402 -2012,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,440 -2013,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,410 -2014,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,419 -2015,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,430 -2016,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,444 -2017,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,442 -2018,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,433 -2019,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,455 -2020,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,473 -2000,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3917 -2001,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3892 -2002,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3874 -2003,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3924 -2004,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3889 -2005,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3957 -2006,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4028 -2007,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4066 -2008,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4107 -2009,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4195 -2010,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4204 -2011,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4231 -2012,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4258 -2013,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4213 -2014,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4287 -2015,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4199 -2016,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4159 -2017,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4166 -2018,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4199 -2019,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4222 -2020,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4228 -2010,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4484 -2011,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4529 -2012,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4556 -2013,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4517 -2014,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4613 -2015,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4539 -2016,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4528 -2017,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4583 -2018,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4625 -2019,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4631 -2020,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4654 -2010,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2000,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2004,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2000,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,266 -2001,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,304 -2002,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,325 -2003,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,342 -2004,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,389 -2005,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,399 -2006,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,435 -2007,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,451 -2008,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,511 -2009,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,530 -2010,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,555 -2011,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,568 -2012,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,581 -2013,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,575 -2014,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,616 -2015,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,644 -2016,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,687 -2017,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,726 -2018,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,752 -2019,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,743 -2020,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,755 -2010,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38544 -2011,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38436 -2012,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38382 -2013,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38415 -2014,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38569 -2015,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38376 -2016,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38357 -2017,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38411 -2018,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38455 -2019,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38478 -2020,geoId/01077,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38542 -2000,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37182 -2001,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36921 -2002,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36824 -2003,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36951 -2004,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37109 -2005,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37213 -2006,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37445 -2007,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37699 -2008,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38050 -2009,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38014 -2010,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38024 -2011,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37901 -2012,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37836 -2013,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37871 -2014,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37989 -2015,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37774 -2016,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37704 -2017,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37718 -2018,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37737 -2019,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37781 -2020,geoId/01077,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37834 -2000,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,183 -2001,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,205 -2002,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,207 -2003,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,221 -2004,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,222 -2005,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,229 -2006,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,232 -2007,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,240 -2008,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,253 -2009,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,280 -2010,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,283 -2011,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,301 -2012,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,328 -2013,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,327 -2014,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,331 -2015,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,327 -2016,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,336 -2017,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,353 -2018,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,347 -2019,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,373 -2020,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,382 -2010,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2015,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2017,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2000,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2004,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2007,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2009,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2000,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2001,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2002,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2003,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2004,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2005,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2010,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2000,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2001,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,156 -2002,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2003,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,171 -2004,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,176 -2005,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,182 -2006,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,187 -2007,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,195 -2008,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,201 -2009,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,228 -2010,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,233 -2011,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,249 -2012,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,276 -2013,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,273 -2014,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,270 -2015,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,270 -2016,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,281 -2017,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,289 -2018,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,287 -2019,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,305 -2020,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,306 -2010,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,245 -2011,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,261 -2012,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,290 -2013,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,284 -2014,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,288 -2015,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,284 -2016,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,295 -2017,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,304 -2018,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,303 -2019,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,320 -2020,geoId/01079,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,327 -2000,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17572 -2001,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17570 -2002,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17482 -2003,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17364 -2004,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17267 -2005,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17360 -2006,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17117 -2007,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17311 -2008,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17234 -2009,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17257 -2010,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17253 -2011,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17112 -2012,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17055 -2013,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16877 -2014,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16829 -2015,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16662 -2016,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16687 -2017,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16583 -2018,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16519 -2019,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16493 -2020,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16444 -2010,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1571 -2011,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1559 -2012,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1558 -2013,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1544 -2014,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1529 -2015,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1529 -2016,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1550 -2017,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1538 -2018,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1547 -2019,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1551 -2020,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1585 -2000,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,942 -2001,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,922 -2002,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,918 -2003,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,938 -2004,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,930 -2005,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,921 -2006,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,915 -2007,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,930 -2008,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,933 -2009,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,929 -2010,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,966 -2011,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,956 -2012,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,947 -2013,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,943 -2014,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,942 -2015,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,935 -2016,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,949 -2017,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,928 -2018,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,931 -2019,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,927 -2020,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,941 -2000,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2001,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2002,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2003,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2006,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2007,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2008,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2009,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2012,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2018,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2019,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2010,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2011,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2012,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2013,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2014,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2015,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2016,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2018,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2019,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2020,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2000,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2466 -2001,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2406 -2002,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2349 -2003,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2272 -2004,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2237 -2005,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2221 -2006,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2138 -2007,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2179 -2008,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2154 -2009,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2098 -2010,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2079 -2011,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2050 -2012,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2067 -2013,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2006 -2014,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1984 -2015,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1884 -2016,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1882 -2017,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1845 -2018,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1864 -2019,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1868 -2020,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1842 -2010,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2185 -2011,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2169 -2012,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2185 -2013,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2121 -2014,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2102 -2015,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2002 -2016,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1997 -2017,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1967 -2018,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1999 -2019,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2024 -2020,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1988 -2010,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,524 -2001,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,562 -2002,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,583 -2003,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,597 -2004,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,615 -2005,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,645 -2006,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,670 -2007,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,670 -2008,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,709 -2009,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,713 -2010,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,728 -2011,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,731 -2012,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,736 -2013,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,730 -2014,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,715 -2015,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,730 -2016,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,731 -2017,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,748 -2018,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,774 -2019,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,790 -2020,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,815 -2010,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14152 -2011,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14035 -2012,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13971 -2013,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13863 -2014,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13838 -2015,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13781 -2016,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13786 -2017,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13740 -2018,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13650 -2019,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13606 -2020,geoId/01079,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13574 -2000,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13618 -2001,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13658 -2002,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13611 -2003,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13534 -2004,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13462 -2005,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13550 -2006,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13368 -2007,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13509 -2008,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13411 -2009,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13491 -2010,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13452 -2011,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13341 -2012,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13273 -2013,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13164 -2014,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13151 -2015,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13076 -2016,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13083 -2017,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13022 -2018,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12904 -2019,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12862 -2020,geoId/01079,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12794 -2000,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,188 -2001,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,219 -2002,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,247 -2003,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,235 -2004,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,257 -2005,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,268 -2006,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,272 -2007,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,270 -2008,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,288 -2009,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,296 -2010,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,293 -2011,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,307 -2012,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,344 -2013,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,368 -2014,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,366 -2015,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,351 -2016,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,359 -2017,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,372 -2018,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,385 -2019,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,395 -2020,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,423 -2010,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2015,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2016,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2019,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2020,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2000,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2006,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2007,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2008,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2009,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2012,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2013,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2015,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2017,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2000,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2000,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,152 -2001,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,184 -2002,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,210 -2003,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,194 -2004,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,215 -2005,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2006,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2007,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,216 -2008,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,232 -2009,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2010,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,233 -2011,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,240 -2012,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,273 -2013,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,291 -2014,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,286 -2015,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,281 -2016,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,288 -2017,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,299 -2018,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,308 -2019,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,318 -2020,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,339 -2010,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,243 -2011,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,252 -2012,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,284 -2013,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,304 -2014,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,301 -2015,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,294 -2016,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,300 -2017,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,313 -2018,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,324 -2019,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,334 -2020,geoId/01079,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,364 -2000,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16931 -2001,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16876 -2002,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16762 -2003,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16668 -2004,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16572 -2005,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16578 -2006,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16407 -2007,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16472 -2008,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16421 -2009,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16482 -2010,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16485 -2011,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16306 -2012,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,16055 -2013,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15981 -2014,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15897 -2015,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15776 -2016,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15814 -2017,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15727 -2018,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15654 -2019,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15590 -2020,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15608 -2010,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1542 -2011,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1529 -2012,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1508 -2013,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1497 -2014,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1501 -2015,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1494 -2016,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1516 -2017,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1503 -2018,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1482 -2019,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1488 -2020,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1493 -2000,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,908 -2001,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,890 -2002,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,902 -2003,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,922 -2004,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,914 -2005,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,922 -2006,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,926 -2007,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,895 -2008,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,910 -2009,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,924 -2010,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,968 -2011,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,944 -2012,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,943 -2013,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,940 -2014,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,930 -2015,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,919 -2016,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,917 -2017,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,903 -2018,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,894 -2019,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,893 -2020,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,895 -2000,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2011,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2012,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2013,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2014,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2015,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2016,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2017,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2018,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2020,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2000,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2170 -2001,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2122 -2002,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2075 -2003,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1967 -2004,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1963 -2005,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1937 -2006,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1914 -2007,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1878 -2008,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1889 -2009,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1844 -2010,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1841 -2011,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1821 -2012,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1779 -2013,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1754 -2014,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1756 -2015,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1709 -2016,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1698 -2017,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1682 -2018,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1665 -2019,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1647 -2020,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1609 -2010,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1947 -2011,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1935 -2012,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1875 -2013,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1868 -2014,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1867 -2015,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1832 -2016,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1818 -2017,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1817 -2018,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1796 -2019,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1775 -2020,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1758 -2010,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,500 -2001,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,516 -2002,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,543 -2003,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,565 -2004,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,579 -2005,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,613 -2006,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,635 -2007,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,664 -2008,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,674 -2009,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,688 -2010,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,688 -2011,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,704 -2012,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,680 -2013,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,679 -2014,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,691 -2015,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,714 -2016,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,738 -2017,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,744 -2018,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,745 -2019,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,740 -2020,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,760 -2010,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13636 -2011,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13487 -2012,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13282 -2013,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13235 -2014,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13160 -2015,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13088 -2016,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13138 -2017,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13089 -2018,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13034 -2019,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12989 -2020,geoId/01079,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13033 -2000,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13339 -2001,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13334 -2002,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13228 -2003,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13201 -2004,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13104 -2005,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13089 -2006,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12913 -2007,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13015 -2008,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12930 -2009,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13008 -2010,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12968 -2011,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12810 -2012,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12627 -2013,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12582 -2014,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12492 -2015,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12406 -2016,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12429 -2017,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12369 -2018,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12316 -2019,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12278 -2020,geoId/01079,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12308 -2000,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,774 -2001,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,862 -2002,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,971 -2003,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1023 -2004,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1177 -2005,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1298 -2006,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1376 -2007,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1559 -2008,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1778 -2009,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1891 -2010,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2007 -2011,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2175 -2012,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2368 -2013,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2442 -2014,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2499 -2015,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2534 -2016,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2633 -2017,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2702 -2018,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2865 -2019,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2857 -2020,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2906 -2010,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2011,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2012,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2013,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2014,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2015,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2016,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2017,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2018,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2019,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,134 -2020,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2000,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2001,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2003,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2004,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2006,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2011,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2012,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2014,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2015,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2016,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2017,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2018,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2020,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2000,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2004,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2005,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2006,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2007,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2008,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2009,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2010,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2011,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2012,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2017,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2020,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2011,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2012,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2013,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2014,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2015,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2016,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2017,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2018,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2019,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2020,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2000,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2001,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2002,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2003,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2004,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2005,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2006,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,152 -2007,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2008,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,193 -2009,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,193 -2010,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,209 -2011,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2012,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,223 -2013,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,232 -2014,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2015,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,239 -2016,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,245 -2017,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,240 -2018,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,253 -2019,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,246 -2020,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,250 -2010,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,259 -2011,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,270 -2012,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,278 -2013,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,299 -2014,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,304 -2015,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,304 -2016,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,311 -2017,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,299 -2018,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,317 -2019,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,323 -2020,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,324 -2010,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2000,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2008,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2009,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2001,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2003,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2004,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2005,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2006,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2007,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2008,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2009,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2010,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2011,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2012,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2013,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2014,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2015,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2016,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2017,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2018,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2019,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2020,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,139 -2000,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,661 -2001,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,712 -2002,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,796 -2003,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,838 -2004,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,967 -2005,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1052 -2006,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1107 -2007,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1242 -2008,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1423 -2009,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1509 -2010,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1595 -2011,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1731 -2012,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1919 -2013,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1966 -2014,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2027 -2015,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2036 -2016,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2149 -2017,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2209 -2018,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2344 -2019,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2335 -2020,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2370 -2010,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1693 -2011,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1827 -2012,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2012 -2013,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2070 -2014,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2116 -2015,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2141 -2016,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2252 -2017,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2312 -2018,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2456 -2019,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2450 -2020,geoId/01081,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2492 -2000,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,57869 -2001,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,58448 -2002,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,59210 -2003,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,59884 -2004,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,60782 -2005,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,62637 -2006,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,64044 -2007,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,65219 -2008,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,66222 -2009,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,68285 -2010,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,69389 -2011,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,70832 -2012,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,72822 -2013,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,74316 -2014,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,75777 -2015,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,77024 -2016,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,78222 -2017,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,79350 -2018,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,80618 -2019,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,81044 -2020,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,81940 -2010,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,474 -2011,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,453 -2012,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,471 -2013,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,478 -2014,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,495 -2015,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,526 -2016,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,520 -2017,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,542 -2018,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,536 -2019,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,531 -2020,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,565 -2000,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2001,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,150 -2002,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,157 -2003,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2004,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,173 -2005,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,168 -2006,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,163 -2007,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2008,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,194 -2009,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,197 -2010,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,194 -2011,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,186 -2012,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2013,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2014,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 -2015,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,200 -2016,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,198 -2017,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,201 -2018,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,195 -2019,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,197 -2020,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,209 -2000,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,981 -2001,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,994 -2002,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1040 -2003,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1088 -2004,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1182 -2005,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1275 -2006,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1365 -2007,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1435 -2008,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1475 -2009,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1640 -2010,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1766 -2011,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1977 -2012,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2258 -2013,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2479 -2014,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2626 -2015,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2790 -2016,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2968 -2017,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3104 -2018,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3189 -2019,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3202 -2020,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3238 -2010,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2062 -2011,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2286 -2012,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2580 -2013,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2819 -2014,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2980 -2015,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3190 -2016,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3394 -2017,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3511 -2018,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3600 -2019,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3637 -2020,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3679 -2000,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14080 -2001,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14271 -2002,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14483 -2003,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14696 -2004,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14914 -2005,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15473 -2006,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15787 -2007,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16041 -2008,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16348 -2009,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16762 -2010,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17135 -2011,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17590 -2012,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18277 -2013,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18756 -2014,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19273 -2015,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19577 -2016,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19817 -2017,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20056 -2018,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20215 -2019,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20169 -2020,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20330 -2010,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17565 -2011,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18053 -2012,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18760 -2013,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19262 -2014,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19809 -2015,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20160 -2016,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20430 -2017,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20659 -2018,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20827 -2019,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20797 -2020,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20965 -2010,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2011,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2012,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2013,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2014,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2015,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2016,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2017,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2018,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2019,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2020,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2000,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2004,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2006,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2007,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2008,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2013,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2014,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2015,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2018,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2019,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2020,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2000,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,460 -2001,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,491 -2002,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,522 -2003,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,571 -2004,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,613 -2005,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,672 -2006,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,685 -2007,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,732 -2008,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,816 -2009,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,851 -2010,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,896 -2011,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,925 -2012,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,982 -2013,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1035 -2014,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1095 -2015,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1166 -2016,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1226 -2017,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1215 -2018,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1239 -2019,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1253 -2020,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1293 -2010,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50153 -2011,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50925 -2012,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51956 -2013,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52747 -2014,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53523 -2015,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54293 -2016,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55074 -2017,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55824 -2018,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56834 -2019,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57288 -2020,geoId/01081,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57975 -2000,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42215 -2001,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42530 -2002,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42997 -2003,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43335 -2004,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43880 -2005,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45029 -2006,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,46024 -2007,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,46802 -2008,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,47367 -2009,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,48806 -2010,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,49361 -2011,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,50116 -2012,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,51079 -2013,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,51818 -2014,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,52550 -2015,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,53252 -2016,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,53971 -2017,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,54729 -2018,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,55733 -2019,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,56176 -2020,geoId/01081,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,56822 -2000,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,908 -2001,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1070 -2002,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1189 -2003,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1302 -2004,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1460 -2005,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1604 -2006,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1887 -2007,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2131 -2008,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2283 -2009,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2504 -2010,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2634 -2011,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2822 -2012,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2954 -2013,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3146 -2014,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3160 -2015,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3144 -2016,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3191 -2017,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3240 -2018,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3379 -2019,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3301 -2020,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3390 -2010,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2011,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2012,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,134 -2013,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2014,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2015,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2016,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,145 -2017,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,155 -2018,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2019,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2020,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,160 -2000,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2002,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2003,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2004,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2005,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2006,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2007,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2008,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2009,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2010,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2011,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2012,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2013,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2014,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2015,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2016,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2017,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2018,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2019,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2020,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2000,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2002,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2004,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2005,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2006,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2007,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2008,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2009,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2010,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2011,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2012,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2013,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2014,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2015,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2016,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2017,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2018,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2019,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2020,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2011,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2012,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2013,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2014,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2015,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2016,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2017,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2018,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2019,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2020,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2000,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2001,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2002,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2003,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2004,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2005,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2006,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2007,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2008,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2009,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,212 -2010,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,215 -2011,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,224 -2012,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,228 -2013,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,243 -2014,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,229 -2015,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,225 -2016,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,239 -2017,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,233 -2018,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,246 -2019,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,223 -2020,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,225 -2010,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,254 -2011,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,270 -2012,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,270 -2013,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,289 -2014,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,276 -2015,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,273 -2016,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,282 -2017,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,278 -2018,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,295 -2019,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,268 -2020,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,270 -2010,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2011,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2012,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2013,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2014,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2015,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2016,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2017,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2018,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2019,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2020,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2000,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2004,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2005,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2006,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2007,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2008,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2009,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2010,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2011,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2013,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2014,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2015,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2017,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2018,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2019,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2020,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2000,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2004,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2005,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2006,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2007,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2008,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2009,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2010,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2011,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2012,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2013,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2014,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2015,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2016,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2017,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2018,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2019,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2020,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2000,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,787 -2001,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,896 -2002,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,994 -2003,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1091 -2004,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1203 -2005,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1332 -2006,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1550 -2007,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1754 -2008,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1875 -2009,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2018 -2010,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2126 -2011,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2300 -2012,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2427 -2013,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2615 -2014,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2634 -2015,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2631 -2016,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2666 -2017,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2695 -2018,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2818 -2019,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2778 -2020,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2864 -2010,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2204 -2011,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2387 -2012,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2506 -2013,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2702 -2014,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2709 -2015,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2706 -2016,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2744 -2017,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2789 -2018,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2896 -2019,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2864 -2020,geoId/01081,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2950 -2000,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,55879 -2001,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,56439 -2002,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,57022 -2003,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,57862 -2004,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,58855 -2005,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,60594 -2006,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,61940 -2007,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,63025 -2008,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,64241 -2009,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,65886 -2010,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,66785 -2011,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,68365 -2012,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,70526 -2013,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,72039 -2014,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,73246 -2015,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,74460 -2016,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,75400 -2017,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,76516 -2018,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,77344 -2019,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,77813 -2020,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,78595 -2010,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,507 -2011,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,502 -2012,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,513 -2013,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,510 -2014,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,525 -2015,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,536 -2016,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,529 -2017,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,546 -2018,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,564 -2019,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,542 -2020,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,566 -2000,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,156 -2001,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,174 -2002,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2003,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2004,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,174 -2005,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2006,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,192 -2007,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,186 -2008,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,177 -2009,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2010,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,212 -2011,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,211 -2012,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,203 -2013,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,192 -2014,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,201 -2015,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,212 -2016,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,197 -2017,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,210 -2018,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,214 -2019,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,200 -2020,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,210 -2000,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,948 -2001,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1000 -2002,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1108 -2003,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1213 -2004,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1300 -2005,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1446 -2006,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1521 -2007,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1614 -2008,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1706 -2009,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1839 -2010,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1941 -2011,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2096 -2012,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2396 -2013,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2614 -2014,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2847 -2015,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3091 -2016,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3300 -2017,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3500 -2018,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3586 -2019,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3667 -2020,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3639 -2010,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2234 -2011,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2405 -2012,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2745 -2013,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2972 -2014,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3225 -2015,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3481 -2016,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3703 -2017,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3924 -2018,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4024 -2019,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4116 -2020,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4103 -2000,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12055 -2001,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12217 -2002,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12412 -2003,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12594 -2004,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12847 -2005,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13302 -2006,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13612 -2007,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13853 -2008,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14207 -2009,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14595 -2010,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14758 -2011,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15051 -2012,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15636 -2013,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16078 -2014,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16446 -2015,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16781 -2016,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16970 -2017,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17168 -2018,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17225 -2019,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17264 -2020,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17437 -2010,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15160 -2011,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15508 -2012,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16108 -2013,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16585 -2014,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16982 -2015,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17334 -2016,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17556 -2017,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17792 -2018,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17875 -2019,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17899 -2020,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18116 -2010,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2011,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2012,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2013,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2014,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2015,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2016,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2017,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2018,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2019,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2020,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2000,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2002,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2004,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2005,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2008,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2009,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2016,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2000,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,414 -2001,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,476 -2002,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,493 -2003,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,519 -2004,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,569 -2005,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,657 -2006,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,672 -2007,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,720 -2008,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,790 -2009,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,851 -2010,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,893 -2011,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,951 -2012,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1027 -2013,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1063 -2014,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1121 -2015,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1151 -2016,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1197 -2017,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1275 -2018,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1305 -2019,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1309 -2020,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1363 -2010,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49752 -2011,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50880 -2012,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52148 -2013,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53007 -2014,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53605 -2015,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54232 -2016,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54790 -2017,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55505 -2018,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56160 -2019,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56531 -2020,geoId/01081,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57133 -2000,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42295 -2001,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42558 -2002,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42812 -2003,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43342 -2004,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43943 -2005,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45002 -2006,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45917 -2007,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,46626 -2008,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,47329 -2009,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,48388 -2010,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,48948 -2011,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,50026 -2012,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,51226 -2013,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,52058 -2014,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,52596 -2015,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,53189 -2016,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,53704 -2017,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,54333 -2018,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,54985 -2019,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,55340 -2020,geoId/01081,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,55905 -2000,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,693 -2001,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,768 -2002,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,906 -2003,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,981 -2004,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1061 -2005,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1229 -2006,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1377 -2007,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1534 -2008,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1733 -2009,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1961 -2010,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2077 -2011,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2148 -2012,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2212 -2013,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2318 -2014,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2421 -2015,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2509 -2016,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2604 -2017,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2766 -2018,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2844 -2019,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2930 -2020,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3072 -2010,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,154 -2011,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2012,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2013,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2014,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2015,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2016,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,165 -2017,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,169 -2018,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2019,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,180 -2020,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2000,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2002,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2003,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2004,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2005,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2006,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2007,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2008,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2009,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2010,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2011,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2012,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2013,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2014,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2015,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2016,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2017,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2018,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2019,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2020,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2000,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2010,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2013,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2015,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2018,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2019,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2020,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2000,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2001,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2002,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2003,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2004,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2005,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2006,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2007,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2008,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2009,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2010,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2011,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2012,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2013,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2014,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,147 -2015,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,157 -2016,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,154 -2017,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,172 -2018,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2019,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2020,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,183 -2010,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2011,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,172 -2012,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,176 -2013,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,191 -2014,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,204 -2015,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,203 -2016,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,201 -2017,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,220 -2018,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,234 -2019,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,239 -2020,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,247 -2010,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2011,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2012,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2013,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2014,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2015,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2016,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2017,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2018,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2019,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2020,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2000,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2005,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2006,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2007,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2008,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2009,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2010,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2011,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2012,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2013,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2014,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2015,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2016,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2017,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2018,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2019,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2020,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2000,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2003,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2004,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2005,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2006,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2007,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2008,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2009,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2010,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2011,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2012,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2013,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2014,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2015,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2016,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2017,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2018,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2019,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2020,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2000,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,649 -2001,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,702 -2002,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,803 -2003,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,849 -2004,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,896 -2005,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1025 -2006,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1142 -2007,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1268 -2008,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1425 -2009,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1616 -2010,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1707 -2011,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1759 -2012,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1797 -2013,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1899 -2014,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1981 -2015,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2065 -2016,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2147 -2017,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2282 -2018,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2336 -2019,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2419 -2020,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2544 -2010,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1800 -2011,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1856 -2012,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1898 -2013,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1998 -2014,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2095 -2015,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2165 -2016,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2254 -2017,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2389 -2018,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2443 -2019,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2528 -2020,geoId/01083,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2663 -2000,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31798 -2001,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,32159 -2002,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,32380 -2003,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,32689 -2004,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,33174 -2005,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,33830 -2006,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,34825 -2007,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,35937 -2008,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,37012 -2009,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,38151 -2010,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,39007 -2011,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40140 -2012,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41192 -2013,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41812 -2014,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,42775 -2015,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,43202 -2016,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,43787 -2017,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,44264 -2018,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,45245 -2019,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,46648 -2020,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,48097 -2010,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,516 -2011,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,533 -2012,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,561 -2013,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,571 -2014,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,584 -2015,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,611 -2016,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,619 -2017,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,642 -2018,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,646 -2019,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,693 -2020,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,743 -2000,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2001,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2002,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,184 -2003,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,186 -2004,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,194 -2005,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,211 -2006,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2007,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2008,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2009,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,244 -2010,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,239 -2011,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,244 -2012,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,250 -2013,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,251 -2014,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,247 -2015,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,250 -2016,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,243 -2017,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,251 -2018,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,245 -2019,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,280 -2020,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2000,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2001,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2002,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,186 -2003,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,207 -2004,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,218 -2005,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,230 -2006,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,287 -2007,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,343 -2008,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,397 -2009,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,470 -2010,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,542 -2011,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,577 -2012,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,631 -2013,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,678 -2014,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,706 -2015,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,724 -2016,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,764 -2017,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,803 -2018,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,840 -2019,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,913 -2020,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,997 -2010,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,652 -2011,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,705 -2012,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,761 -2013,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,819 -2014,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,855 -2015,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,897 -2016,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,947 -2017,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,977 -2018,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1032 -2019,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1128 -2020,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1227 -2000,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3923 -2001,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3996 -2002,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4006 -2003,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3999 -2004,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4044 -2005,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4138 -2006,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4289 -2007,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4413 -2008,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4562 -2009,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4725 -2010,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4957 -2011,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5158 -2012,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5334 -2013,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5432 -2014,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5698 -2015,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5744 -2016,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5878 -2017,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5969 -2018,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6248 -2019,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6464 -2020,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6672 -2010,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5199 -2011,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5451 -2012,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5631 -2013,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5760 -2014,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6040 -2015,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6125 -2016,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6298 -2017,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6413 -2018,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6718 -2019,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6981 -2020,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7218 -2010,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2012,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2014,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2015,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2016,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2017,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2018,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2019,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2020,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2000,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2017,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2018,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2019,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2020,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,242 -2001,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,259 -2002,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,290 -2003,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,340 -2004,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,358 -2005,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,402 -2006,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,421 -2007,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,466 -2008,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,514 -2009,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,563 -2010,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,595 -2011,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,656 -2012,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,697 -2013,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,739 -2014,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,791 -2015,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,845 -2016,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,903 -2017,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,949 -2018,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,995 -2019,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1057 -2020,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1137 -2010,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33211 -2011,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34080 -2012,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34907 -2013,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35370 -2014,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36035 -2015,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36399 -2016,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36807 -2017,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37146 -2018,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37805 -2019,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38873 -2020,geoId/01083,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40016 -2000,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27351 -2001,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27571 -2002,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27713 -2003,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27953 -2004,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28355 -2005,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28840 -2006,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29597 -2007,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30486 -2008,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,31295 -2009,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,32140 -2010,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,32661 -2011,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33483 -2012,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,34255 -2013,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,34685 -2014,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,35305 -2015,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,35611 -2016,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,35970 -2017,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36255 -2018,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36880 -2019,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37895 -2020,geoId/01083,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38954 -2000,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1060 -2001,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1207 -2002,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1295 -2003,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1404 -2004,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1452 -2005,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1654 -2006,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1839 -2007,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2023 -2008,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2120 -2009,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2390 -2010,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2512 -2011,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2560 -2012,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2582 -2013,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2586 -2014,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2630 -2015,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2720 -2016,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2773 -2017,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2868 -2018,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2994 -2019,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3088 -2020,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3266 -2010,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,210 -2011,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,214 -2012,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,217 -2013,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,198 -2014,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,192 -2015,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,192 -2016,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,199 -2017,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,203 -2018,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,201 -2019,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,202 -2020,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,202 -2000,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2001,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2002,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2003,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2004,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2005,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2006,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2007,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2008,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2009,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2010,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2011,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2012,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2013,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2014,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2015,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2016,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2017,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2018,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2019,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2020,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2000,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2013,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2016,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2017,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2019,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2000,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2001,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2002,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2003,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2004,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2005,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2006,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2007,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2008,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2009,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2010,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2011,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2012,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2013,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2014,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2015,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2016,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2017,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,145 -2018,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,154 -2019,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2020,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,161 -2010,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2011,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,186 -2012,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,187 -2013,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2014,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2015,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,201 -2016,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,209 -2017,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,206 -2018,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,225 -2019,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,238 -2020,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,236 -2010,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2011,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2012,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2013,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2014,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2015,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2017,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2018,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2020,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2000,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2005,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2006,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2007,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2008,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2009,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2010,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2011,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2012,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2013,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2014,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2015,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2016,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2018,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2019,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2000,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2003,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2004,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2005,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2006,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2007,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2008,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2009,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2010,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2011,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,153 -2012,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,162 -2013,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,162 -2014,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,163 -2015,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,170 -2016,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,177 -2017,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2018,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,180 -2019,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2020,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2000,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,978 -2001,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1097 -2002,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1143 -2003,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1227 -2004,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1260 -2005,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1391 -2006,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1540 -2007,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1698 -2008,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1746 -2009,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1964 -2010,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2073 -2011,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2081 -2012,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2094 -2013,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2124 -2014,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2173 -2015,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2246 -2016,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2292 -2017,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2368 -2018,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2475 -2019,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2578 -2020,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2743 -2010,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2183 -2011,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2215 -2012,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2235 -2013,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2273 -2014,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2315 -2015,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2404 -2016,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2452 -2017,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2522 -2018,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2634 -2019,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2724 -2020,geoId/01083,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2896 -2000,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,32415 -2001,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,32802 -2002,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,33096 -2003,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,33504 -2004,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,33906 -2005,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,34590 -2006,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,35610 -2007,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,36569 -2008,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37970 -2009,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38824 -2010,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39572 -2011,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,40705 -2012,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,41350 -2013,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,42215 -2014,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,42796 -2015,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43165 -2016,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43732 -2017,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,44246 -2018,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,45116 -2019,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,46470 -2020,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,47793 -2010,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,544 -2011,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,544 -2012,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,574 -2013,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,599 -2014,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,629 -2015,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,607 -2016,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,622 -2017,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,644 -2018,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,670 -2019,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,705 -2020,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,725 -2000,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,146 -2001,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2002,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2003,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,190 -2004,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,194 -2005,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,192 -2006,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,198 -2007,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,202 -2008,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,230 -2009,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2010,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,250 -2011,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,253 -2012,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,259 -2013,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,276 -2014,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,283 -2015,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,270 -2016,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,272 -2017,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,286 -2018,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2019,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,308 -2020,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,316 -2000,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2001,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,140 -2002,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,156 -2003,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2004,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2005,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,202 -2006,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,232 -2007,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,256 -2008,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,318 -2009,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,349 -2010,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,420 -2011,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,448 -2012,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,500 -2013,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,525 -2014,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,538 -2015,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,569 -2016,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,591 -2017,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,626 -2018,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,644 -2019,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,703 -2020,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,785 -2010,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,535 -2011,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,580 -2012,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,635 -2013,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,663 -2014,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,682 -2015,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,716 -2016,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,745 -2017,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,804 -2018,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,840 -2019,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,901 -2020,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,996 -2000,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4830 -2001,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4829 -2002,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4810 -2003,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4872 -2004,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4823 -2005,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4870 -2006,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4957 -2007,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5105 -2008,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5393 -2009,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5455 -2010,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5531 -2011,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5841 -2012,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5852 -2013,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6073 -2014,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6197 -2015,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6241 -2016,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6430 -2017,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6470 -2018,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6728 -2019,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7009 -2020,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7211 -2010,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5780 -2011,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6117 -2012,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6145 -2013,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6399 -2014,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6536 -2015,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6600 -2016,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6800 -2017,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6884 -2018,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7178 -2019,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7474 -2020,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7717 -2010,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2012,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2013,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2014,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2015,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2016,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2017,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2018,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2019,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2000,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2017,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2020,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2000,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,236 -2001,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,269 -2002,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,317 -2003,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,336 -2004,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,361 -2005,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,410 -2006,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,436 -2007,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,482 -2008,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,535 -2009,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,582 -2010,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,607 -2011,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,649 -2012,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,699 -2013,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,733 -2014,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,768 -2015,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,787 -2016,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,821 -2017,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,900 -2018,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,955 -2019,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,995 -2020,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1048 -2010,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33314 -2011,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34095 -2012,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34668 -2013,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35259 -2014,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35696 -2015,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36006 -2016,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36350 -2017,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36771 -2018,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37339 -2019,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38346 -2020,geoId/01083,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39374 -2000,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27094 -2001,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27380 -2002,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27626 -2003,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27931 -2004,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28346 -2005,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28909 -2006,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29776 -2007,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30512 -2008,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,31484 -2009,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,32205 -2010,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,32750 -2011,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33495 -2012,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,34015 -2013,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,34577 -2014,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,34981 -2015,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,35266 -2016,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,35584 -2017,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,35923 -2018,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36452 -2019,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37410 -2020,geoId/01083,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38389 -2000,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,34 -2001,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,35 -2002,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,34 -2003,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,33 -2004,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,35 -2005,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,43 -2006,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,43 -2007,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,44 -2008,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,42 -2009,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,44 -2010,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,52 -2011,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,60 -2012,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,67 -2013,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,72 -2014,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,80 -2015,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,87 -2016,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,92 -2017,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,94 -2018,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,96 -2019,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,99 -2020,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,104 -2010,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2001,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2002,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2004,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2005,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2006,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2007,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2020,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2011,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2014,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2017,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2017,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2010,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2018,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2019,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2020,geoId/01085,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2000,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7115 -2001,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7023 -2002,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6928 -2003,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6799 -2004,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6598 -2005,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6505 -2006,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6356 -2007,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6253 -2008,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6191 -2009,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6060 -2010,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5944 -2011,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5830 -2012,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5640 -2013,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5535 -2014,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5422 -2015,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5351 -2016,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5300 -2017,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5227 -2018,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5177 -2019,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5046 -2020,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5041 -2010,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2000,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5330 -2001,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5280 -2002,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5206 -2003,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5113 -2004,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4991 -2005,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4883 -2006,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4779 -2007,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4716 -2008,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4680 -2009,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4571 -2010,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4489 -2011,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4418 -2012,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4276 -2013,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4203 -2014,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4118 -2015,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4060 -2016,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4023 -2017,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3930 -2018,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3882 -2019,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3789 -2020,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3804 -2010,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4502 -2011,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4428 -2012,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4287 -2013,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4217 -2014,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4131 -2015,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4071 -2016,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4037 -2017,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3945 -2018,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3890 -2019,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3802 -2020,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3810 -2010,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2001,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2002,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2003,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2004,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2005,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2006,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2007,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1431 -2011,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1385 -2012,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1336 -2013,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1303 -2014,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1276 -2015,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1264 -2016,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1240 -2017,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1265 -2018,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1263 -2019,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1218 -2020,geoId/01085,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1202 -2000,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1734 -2001,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1693 -2002,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1673 -2003,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1642 -2004,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1561 -2005,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1572 -2006,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1535 -2007,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1492 -2008,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1469 -2009,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1447 -2010,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1413 -2011,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1364 -2012,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1313 -2013,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1277 -2014,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1249 -2015,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1235 -2016,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1219 -2017,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1239 -2018,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1240 -2019,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1201 -2020,geoId/01085,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1182 -2000,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,51 -2001,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,49 -2002,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,46 -2003,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,46 -2004,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,43 -2005,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,39 -2006,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,41 -2007,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,43 -2008,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,35 -2009,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,41 -2010,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,43 -2011,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,61 -2012,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,65 -2013,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,66 -2014,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,71 -2015,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,73 -2016,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,77 -2017,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,78 -2018,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,76 -2019,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,86 -2020,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,91 -2010,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2001,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2002,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2005,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2006,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2010,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2001,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2002,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2003,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2004,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2005,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2017,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2019,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2010,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2020,geoId/01085,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2000,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6271 -2001,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6222 -2002,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6223 -2003,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6118 -2004,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5947 -2005,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5810 -2006,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5684 -2007,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5633 -2008,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5545 -2009,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5341 -2010,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5255 -2011,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5193 -2012,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5085 -2013,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4993 -2014,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4924 -2015,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4839 -2016,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4776 -2017,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4701 -2018,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4620 -2019,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4495 -2020,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4405 -2010,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2017,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2000,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4513 -2001,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4490 -2002,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4478 -2003,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4416 -2004,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4302 -2005,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4170 -2006,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4067 -2007,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4018 -2008,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3991 -2009,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3863 -2010,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3775 -2011,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3765 -2012,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3702 -2013,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3637 -2014,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3593 -2015,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3525 -2016,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3463 -2017,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3382 -2018,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3310 -2019,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3205 -2020,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3154 -2010,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3784 -2011,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3777 -2012,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3715 -2013,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3652 -2014,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3608 -2015,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3545 -2016,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3477 -2017,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3398 -2018,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3323 -2019,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3218 -2020,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3171 -2010,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2001,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2002,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2003,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2004,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2005,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2010,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1459 -2011,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1402 -2012,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1360 -2013,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1333 -2014,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1309 -2015,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1289 -2016,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1284 -2017,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1285 -2018,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1272 -2019,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1253 -2020,geoId/01085,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1214 -2000,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1719 -2001,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1693 -2002,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1705 -2003,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1662 -2004,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1607 -2005,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1600 -2006,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1577 -2007,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1577 -2008,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1515 -2009,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1438 -2010,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1438 -2011,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1376 -2012,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1337 -2013,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1308 -2014,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1281 -2015,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1263 -2016,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1256 -2017,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1258 -2018,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1246 -2019,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1225 -2020,geoId/01085,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1186 -2000,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,95 -2001,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,99 -2002,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,94 -2003,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,98 -2004,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,98 -2005,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,99 -2006,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,102 -2007,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,103 -2008,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,100 -2009,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,101 -2010,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,115 -2011,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,150 -2012,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,162 -2013,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,129 -2014,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,137 -2015,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,154 -2016,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,154 -2017,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,152 -2018,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,157 -2019,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,157 -2020,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,174 -2010,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2001,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2002,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2003,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2004,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2005,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2006,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2007,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2008,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2009,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2010,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2012,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2013,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2014,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2015,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2016,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2017,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2018,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2020,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2010,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2011,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2012,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2013,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2015,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2016,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2017,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2018,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2019,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2020,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2010,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2006,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2008,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2012,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2013,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2016,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2017,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2018,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2019,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2020,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2010,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2011,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2012,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2013,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2014,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2015,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2016,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2017,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2018,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2019,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2020,geoId/01087,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2000,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12886 -2001,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12833 -2002,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12704 -2003,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12461 -2004,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12157 -2005,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11978 -2006,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11899 -2007,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11723 -2008,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11615 -2009,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11348 -2010,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11549 -2011,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11349 -2012,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10916 -2013,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10682 -2014,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10502 -2015,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10283 -2016,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10198 -2017,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10043 -2018,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9796 -2019,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9679 -2020,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9612 -2010,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2012,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2013,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2014,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2015,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2016,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2017,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2018,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2019,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2020,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2000,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2002,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2003,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2004,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2000,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2001,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2002,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2003,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2004,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2005,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2006,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2007,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2008,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2009,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2010,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2011,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2013,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2010,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2011,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2012,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2013,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2014,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2015,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2016,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2017,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2018,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2019,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2000,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11163 -2001,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11066 -2002,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10903 -2003,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10661 -2004,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10381 -2005,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10206 -2006,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10169 -2007,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9974 -2008,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9866 -2009,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9576 -2010,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9715 -2011,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9536 -2012,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9145 -2013,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9017 -2014,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8826 -2015,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8615 -2016,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8517 -2017,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8378 -2018,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8128 -2019,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8021 -2020,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7940 -2010,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9785 -2011,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9612 -2012,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9216 -2013,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9087 -2014,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8890 -2015,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8702 -2016,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8591 -2017,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8454 -2018,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8200 -2019,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8100 -2020,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8020 -2010,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2001,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2002,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2003,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2004,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2005,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2006,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2007,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2008,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2009,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2010,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,123 -2011,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2012,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2013,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2014,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2015,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,140 -2016,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2017,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2018,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,129 -2019,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2020,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2010,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1748 -2011,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1728 -2012,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1694 -2013,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1593 -2014,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1613 -2015,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1593 -2016,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1596 -2017,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1575 -2018,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1574 -2019,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1562 -2020,geoId/01087,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1575 -2000,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1586 -2001,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1629 -2002,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1655 -2003,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1656 -2004,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1628 -2005,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1614 -2006,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1574 -2007,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1584 -2008,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1576 -2009,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1605 -2010,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1659 -2011,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1635 -2012,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1584 -2013,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1495 -2014,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1505 -2015,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1483 -2016,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1496 -2017,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1476 -2018,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1477 -2019,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1471 -2020,geoId/01087,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1477 -2000,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,78 -2001,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,75 -2002,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,76 -2003,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,81 -2004,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,88 -2005,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,106 -2006,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,113 -2007,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,119 -2008,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,119 -2009,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,129 -2010,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,131 -2011,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,166 -2012,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,166 -2013,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,154 -2014,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,164 -2015,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,182 -2016,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,177 -2017,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,186 -2018,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,185 -2019,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,191 -2020,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,211 -2010,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2001,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2002,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2003,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2004,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2005,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2006,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2007,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2008,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2009,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2010,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2011,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2012,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2013,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2014,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2015,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2016,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2017,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2018,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2019,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2020,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2010,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2011,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2012,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2013,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2014,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2015,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2016,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2017,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2018,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2019,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2020,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2010,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2001,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2002,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2004,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2005,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2006,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2007,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2008,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2009,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2010,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2011,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2012,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2013,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2014,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2015,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2016,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2017,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2018,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2019,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2020,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2010,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2011,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2012,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2013,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2014,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2016,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2017,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2018,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2019,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2020,geoId/01087,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2000,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10988 -2001,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10918 -2002,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10689 -2003,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10470 -2004,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10342 -2005,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10205 -2006,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10113 -2007,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9997 -2008,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9763 -2009,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9612 -2010,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9720 -2011,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9634 -2012,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9381 -2013,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9078 -2014,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8867 -2015,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8712 -2016,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8548 -2017,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8447 -2018,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8182 -2019,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8038 -2020,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7898 -2010,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2011,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2012,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2013,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2014,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2015,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2016,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2017,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2018,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2019,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2020,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2000,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2004,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2005,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2001,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2002,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2003,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2004,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2005,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2006,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2007,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2008,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2009,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2010,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2011,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2012,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2013,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2014,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2015,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2016,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2017,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2018,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2019,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2020,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2010,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2011,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2012,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2013,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2014,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2015,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2016,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2017,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2018,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2019,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2020,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2000,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9144 -2001,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9010 -2002,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8804 -2003,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8656 -2004,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8517 -2005,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8366 -2006,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8305 -2007,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8197 -2008,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8034 -2009,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7839 -2010,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7920 -2011,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7857 -2012,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7575 -2013,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7371 -2014,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7173 -2015,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7047 -2016,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6882 -2017,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6778 -2018,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6508 -2019,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6375 -2020,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6244 -2010,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7970 -2011,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7913 -2012,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7641 -2013,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7428 -2014,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7231 -2015,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7104 -2016,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6946 -2017,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6838 -2018,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6556 -2019,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6423 -2020,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6299 -2010,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2001,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2002,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2003,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2004,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2005,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2006,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2007,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2008,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2009,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2010,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2011,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2012,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2013,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2014,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2015,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2016,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2017,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2018,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2019,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2020,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2010,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1727 -2011,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1712 -2012,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1728 -2013,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1627 -2014,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1610 -2015,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1573 -2016,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1555 -2017,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1571 -2018,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1572 -2019,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1569 -2020,geoId/01087,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1567 -2000,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1696 -2001,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1769 -2002,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1751 -2003,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1687 -2004,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1699 -2005,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1689 -2006,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1664 -2007,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1660 -2008,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1594 -2009,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1635 -2010,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1653 -2011,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1643 -2012,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1651 -2013,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1557 -2014,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1535 -2015,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1489 -2016,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1484 -2017,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1484 -2018,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1508 -2019,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1498 -2020,geoId/01087,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1495 -2000,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2499 -2001,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2728 -2002,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3057 -2003,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3400 -2004,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3729 -2005,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4120 -2006,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4576 -2007,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5116 -2008,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5715 -2009,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,6339 -2010,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,6916 -2011,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,7154 -2012,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,7200 -2013,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,7399 -2014,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,7589 -2015,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,7911 -2016,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,8259 -2017,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,8511 -2018,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,8913 -2019,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,9272 -2020,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,9766 -2010,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,366 -2011,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,363 -2012,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,353 -2013,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,353 -2014,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,341 -2015,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,332 -2016,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,350 -2017,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,333 -2018,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,347 -2019,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,376 -2020,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,394 -2000,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2001,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2002,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2003,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2004,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2005,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2006,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2007,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,162 -2008,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2009,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,189 -2010,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,233 -2011,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,230 -2012,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,211 -2013,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2014,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,210 -2015,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,196 -2016,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,198 -2017,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,193 -2018,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,198 -2019,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,207 -2020,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,208 -2000,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2001,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2002,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2003,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2004,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2005,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2006,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2007,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2008,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2009,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2010,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2011,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2012,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2013,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2017,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2018,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2019,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2020,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2010,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2011,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,144 -2012,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2013,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2014,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2015,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2016,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2017,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2018,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2019,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,164 -2020,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2000,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,364 -2001,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,365 -2002,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,384 -2003,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,434 -2004,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,460 -2005,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,511 -2006,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,555 -2007,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,588 -2008,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,652 -2009,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,728 -2010,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,776 -2011,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,763 -2012,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,764 -2013,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,772 -2014,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,803 -2015,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,817 -2016,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,825 -2017,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,861 -2018,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,905 -2019,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,915 -2020,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,979 -2010,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,896 -2011,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,888 -2012,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,904 -2013,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,917 -2014,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,942 -2015,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,963 -2016,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,984 -2017,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1020 -2018,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1079 -2019,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1098 -2020,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1179 -2010,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2011,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2012,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2013,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2014,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2015,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2016,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2017,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2018,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2019,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2020,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2000,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2002,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2003,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2004,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2005,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2011,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2013,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2014,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2016,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2000,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2001,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2002,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2003,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,141 -2004,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2005,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2006,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2007,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,178 -2008,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2009,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,241 -2010,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,261 -2011,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,264 -2012,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,283 -2013,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,287 -2014,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,288 -2015,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,302 -2016,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,311 -2017,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,320 -2018,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,335 -2019,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,361 -2020,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,398 -2000,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1979 -2001,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2106 -2002,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2382 -2003,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2647 -2004,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2911 -2005,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3276 -2006,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3665 -2007,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4111 -2008,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4628 -2009,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5095 -2010,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5524 -2011,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5789 -2012,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5847 -2013,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6041 -2014,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6207 -2015,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6517 -2016,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6849 -2017,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7053 -2018,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7395 -2019,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7701 -2020,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,8096 -2010,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5737 -2011,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6000 -2012,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6065 -2013,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6270 -2014,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6441 -2015,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6768 -2016,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7093 -2017,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7311 -2018,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7667 -2019,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7997 -2020,geoId/01089,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8439 -2000,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,139766 -2001,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,141238 -2002,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,143371 -2003,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,145485 -2004,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,147375 -2005,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,149864 -2006,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,153362 -2007,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,155962 -2008,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,159217 -2009,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,162179 -2010,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,164280 -2011,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,166028 -2012,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,167808 -2013,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,169761 -2014,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,171411 -2015,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,172674 -2016,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,174455 -2017,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,176742 -2018,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,178987 -2019,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,181071 -2020,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,183993 -2010,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2687 -2011,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2693 -2012,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2705 -2013,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2762 -2014,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2829 -2015,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2871 -2016,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2856 -2017,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2955 -2018,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2959 -2019,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2982 -2020,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3022 -2000,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1077 -2001,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1025 -2002,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1049 -2003,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1064 -2004,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1129 -2005,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1150 -2006,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1169 -2007,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1191 -2008,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1165 -2009,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1174 -2010,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1195 -2011,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1184 -2012,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1195 -2013,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1210 -2014,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1238 -2015,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1244 -2016,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1224 -2017,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1260 -2018,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1258 -2019,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1271 -2020,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1278 -2000,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2857 -2001,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2847 -2002,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2992 -2003,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3215 -2004,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3383 -2005,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3562 -2006,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3766 -2007,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3926 -2008,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4175 -2009,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4399 -2010,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4529 -2011,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4584 -2012,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4782 -2013,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4931 -2014,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5051 -2015,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5117 -2016,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5230 -2017,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5333 -2018,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5366 -2019,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5487 -2020,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5526 -2010,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5592 -2011,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5708 -2012,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5916 -2013,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6137 -2014,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6327 -2015,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6434 -2016,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6603 -2017,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6740 -2018,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6844 -2019,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7023 -2020,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7134 -2000,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33457 -2001,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34048 -2002,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34670 -2003,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35518 -2004,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36346 -2005,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37273 -2006,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38591 -2007,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39470 -2008,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40699 -2009,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41886 -2010,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42517 -2011,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43022 -2012,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43854 -2013,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,44494 -2014,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,45038 -2015,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,45697 -2016,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,46395 -2017,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,47439 -2018,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48243 -2019,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48574 -2020,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,49395 -2010,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44217 -2011,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44809 -2012,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45667 -2013,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46419 -2014,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47040 -2015,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47782 -2016,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48522 -2017,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49646 -2018,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50554 -2019,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50935 -2020,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51884 -2010,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,306 -2011,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,288 -2012,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,302 -2013,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,305 -2014,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,323 -2015,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,318 -2016,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,350 -2017,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,354 -2018,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,356 -2019,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,340 -2020,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,342 -2000,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2001,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2002,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2003,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2004,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2005,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2006,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2007,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2008,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2009,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,176 -2010,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2011,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,157 -2012,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 -2013,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2014,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2015,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,173 -2016,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2017,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2018,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,184 -2019,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,168 -2020,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 -2000,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2157 -2001,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2279 -2002,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2396 -2003,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2456 -2004,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2541 -2005,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2639 -2006,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2801 -2007,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2938 -2008,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3217 -2009,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3443 -2010,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3596 -2011,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3759 -2012,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3824 -2013,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4008 -2014,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4173 -2015,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4298 -2016,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4376 -2017,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4542 -2018,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4701 -2019,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4805 -2020,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5005 -2010,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,115410 -2011,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,116610 -2012,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,117352 -2013,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118478 -2014,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119409 -2015,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119935 -2016,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,120904 -2017,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,121991 -2018,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,123377 -2019,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125013 -2020,geoId/01089,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,127059 -2000,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,100145 -2001,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,100958 -2002,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,102165 -2003,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,103129 -2004,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,103857 -2005,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,105123 -2006,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,106897 -2007,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,108295 -2008,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,109801 -2009,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,111101 -2010,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,112262 -2011,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,113322 -2012,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,113989 -2013,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,114958 -2014,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,115745 -2015,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,116145 -2016,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,117051 -2017,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,117989 -2018,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,119235 -2019,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,120766 -2020,geoId/01089,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,122625 -2000,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2891 -2001,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3184 -2002,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3583 -2003,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4010 -2004,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4609 -2005,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5126 -2006,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5724 -2007,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6421 -2008,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,7146 -2009,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,7905 -2010,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,8585 -2011,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,8574 -2012,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,8514 -2013,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,8509 -2014,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,8482 -2015,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,8683 -2016,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,8845 -2017,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,9141 -2018,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,9449 -2019,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,9760 -2020,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,10145 -2010,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,447 -2011,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,424 -2012,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,424 -2013,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,406 -2014,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,391 -2015,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,381 -2016,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,387 -2017,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,386 -2018,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,374 -2019,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,380 -2020,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,413 -2000,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2001,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2002,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2003,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2004,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,168 -2005,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2006,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2007,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,213 -2008,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,233 -2009,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,253 -2010,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,300 -2011,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,272 -2012,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,270 -2013,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,253 -2014,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,242 -2015,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,240 -2016,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,232 -2017,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2018,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,228 -2019,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,219 -2020,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,231 -2000,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2001,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2002,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2003,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2004,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2005,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2006,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2007,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2008,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2009,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2010,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2011,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2012,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2013,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2015,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2018,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2010,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,155 -2011,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2012,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2013,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2014,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2015,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2016,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2017,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2018,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2019,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2020,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2000,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,300 -2001,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,302 -2002,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,351 -2003,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,394 -2004,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,451 -2005,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,523 -2006,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,554 -2007,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,610 -2008,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,674 -2009,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,737 -2010,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,836 -2011,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,768 -2012,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,751 -2013,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,734 -2014,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,745 -2015,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,765 -2016,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,792 -2017,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,825 -2018,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,816 -2019,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,839 -2020,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,869 -2010,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,950 -2011,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,911 -2012,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,893 -2013,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,884 -2014,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,892 -2015,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,914 -2016,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,937 -2017,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,971 -2018,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,974 -2019,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1003 -2020,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1056 -2010,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2011,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2012,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2013,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2014,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2015,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2016,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2017,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2018,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2019,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2020,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2000,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2002,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2003,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2004,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2005,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2006,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2007,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2008,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2009,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2010,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2011,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2012,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2013,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2014,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2015,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2016,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2000,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2001,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,129 -2002,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,145 -2003,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,163 -2004,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,167 -2005,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2006,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2007,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,196 -2008,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,202 -2009,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,252 -2010,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,283 -2011,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,297 -2012,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,300 -2013,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,316 -2014,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,309 -2015,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,311 -2016,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,311 -2017,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,326 -2018,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,332 -2019,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,344 -2020,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,384 -2000,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2384 -2001,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2570 -2002,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2876 -2003,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3216 -2004,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3703 -2005,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4180 -2006,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4712 -2007,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5292 -2008,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5933 -2009,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6548 -2010,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7006 -2011,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7096 -2012,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7082 -2013,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7112 -2014,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7096 -2015,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7284 -2016,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7433 -2017,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7683 -2018,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,7991 -2019,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,8274 -2020,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,8582 -2010,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7245 -2011,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7337 -2012,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7319 -2013,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7376 -2014,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7346 -2015,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7544 -2016,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7699 -2017,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7957 -2018,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8279 -2019,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8574 -2020,geoId/01089,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8895 -2000,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,132850 -2001,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,134367 -2002,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,136428 -2003,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,138447 -2004,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,139942 -2005,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,142364 -2006,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,145508 -2007,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,148360 -2008,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,151448 -2009,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,154433 -2010,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,156333 -2011,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,157867 -2012,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,159301 -2013,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,161095 -2014,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,162491 -2015,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,163926 -2016,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,165426 -2017,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,167667 -2018,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,170037 -2019,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,172444 -2020,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,175549 -2010,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2537 -2011,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2571 -2012,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2568 -2013,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2627 -2014,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2612 -2015,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2666 -2016,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2688 -2017,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2698 -2018,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2748 -2019,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2814 -2020,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2842 -2000,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1056 -2001,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1039 -2002,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1059 -2003,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1072 -2004,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1093 -2005,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1118 -2006,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1103 -2007,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1139 -2008,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1136 -2009,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1155 -2010,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1152 -2011,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1166 -2012,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1167 -2013,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1162 -2014,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1165 -2015,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1200 -2016,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1202 -2017,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1198 -2018,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1222 -2019,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1238 -2020,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1237 -2000,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2401 -2001,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2399 -2002,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2556 -2003,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2706 -2004,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2870 -2005,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3008 -2006,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3180 -2007,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3268 -2008,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3471 -2009,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3691 -2010,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3801 -2011,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3723 -2012,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3840 -2013,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3908 -2014,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4037 -2015,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4113 -2016,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4244 -2017,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4373 -2018,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4412 -2019,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4469 -2020,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4499 -2010,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4829 -2011,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4795 -2012,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4935 -2013,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5074 -2014,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5230 -2015,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5351 -2016,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5525 -2017,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5703 -2018,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5824 -2019,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5954 -2020,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6058 -2000,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29791 -2001,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30297 -2002,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30874 -2003,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31678 -2004,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32192 -2005,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33085 -2006,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34116 -2007,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35005 -2008,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35937 -2009,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36879 -2010,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37453 -2011,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37772 -2012,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38339 -2013,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38880 -2014,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39237 -2015,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39914 -2016,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40464 -2017,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41379 -2018,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41947 -2019,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42233 -2020,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43041 -2010,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38957 -2011,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39362 -2012,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39975 -2013,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40606 -2014,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40987 -2015,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41715 -2016,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42333 -2017,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43332 -2018,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44019 -2019,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44384 -2020,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45333 -2010,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,289 -2011,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,272 -2012,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,276 -2013,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,275 -2014,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,289 -2015,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,291 -2016,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,300 -2017,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,296 -2018,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,322 -2019,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,317 -2020,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,315 -2000,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2001,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2002,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2003,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2004,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2005,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2006,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2007,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2008,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,147 -2009,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,151 -2010,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,167 -2011,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2012,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2013,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2014,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2015,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2016,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,174 -2017,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2018,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,182 -2019,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,162 -2020,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2000,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2125 -2001,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2203 -2002,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2272 -2003,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2357 -2004,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2495 -2005,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2580 -2006,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2706 -2007,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2899 -2008,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3144 -2009,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3282 -2010,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3391 -2011,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3519 -2012,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3602 -2013,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3759 -2014,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3797 -2015,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3921 -2016,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4021 -2017,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4175 -2018,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4358 -2019,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4547 -2020,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4752 -2010,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113376 -2011,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,114659 -2012,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,115396 -2013,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,116572 -2014,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,117475 -2015,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118142 -2016,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118924 -2017,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,120123 -2018,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,121826 -2019,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,123889 -2020,geoId/01089,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,126131 -2000,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,97403 -2001,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,98330 -2002,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,99569 -2003,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,100521 -2004,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,101178 -2005,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,102458 -2006,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,104278 -2007,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,105900 -2008,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,107613 -2009,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,109275 -2010,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,110369 -2011,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,111528 -2012,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,112194 -2013,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,113221 -2014,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,114090 -2015,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,114618 -2016,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,115321 -2017,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,116372 -2018,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,117916 -2019,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,119795 -2020,geoId/01089,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,121867 -2000,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,108 -2001,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,126 -2002,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,136 -2003,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,146 -2004,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,150 -2005,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,161 -2006,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,151 -2007,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,170 -2008,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,180 -2009,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,201 -2010,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,182 -2011,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,199 -2012,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,228 -2013,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,242 -2014,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,231 -2015,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,214 -2016,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,220 -2017,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,234 -2018,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,237 +1990,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1991,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1992,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1993,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1994,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1995,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1996,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1997,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1998,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1999,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1990,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,8 +1991,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,8 +1992,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,8 +1993,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,8 +1994,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,9 +1995,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,8 +1996,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1997,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1998,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1999,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1990,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9195 +1991,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9327 +1992,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9478 +1993,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9539 +1994,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9644 +1995,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9759 +1996,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9872 +1997,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9963 +1998,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10191 +1999,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10286 +1990,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,6249 +1991,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,6308 +1992,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,6341 +1993,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,6355 +1994,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,6326 +1995,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,6353 +1996,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,6393 +1997,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,6378 +1998,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,6450 +1999,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,6471 +1990,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1992,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1993,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1994,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1995,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1997,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1998,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1990,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1991,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1993,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1994,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1995,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1996,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1997,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1999,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1990,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,38 +1991,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1992,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,37 +1993,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1994,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,35 +1995,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,32 +1996,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1997,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1998,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,37 +1999,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1990,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,50 +1991,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,53 +1992,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1993,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,53 +1994,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,58 +1995,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,61 +1996,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,67 +1997,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,78 +1998,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,81 +1999,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,93 +1990,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1991,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1992,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1993,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1994,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1995,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1996,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1997,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1998,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1999,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,26 +1990,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1991,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1992,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1993,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1994,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1995,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1996,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1997,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1998,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1999,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1990,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5375 +1991,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5504 +1992,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5516 +1993,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5584 +1994,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5653 +1995,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5676 +1996,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5656 +1997,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5744 +1998,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5803 +1999,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5838 +1990,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9916 +1991,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,10011 +1992,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9943 +1993,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9965 +1994,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9964 +1995,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9880 +1996,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9776 +1997,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9801 +1998,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9844 +1999,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,9775 +1990,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1991,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1992,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1993,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1994,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1995,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1996,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1997,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1998,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1999,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1990,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,27 +1991,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,28 +1992,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,35 +1993,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,41 +1994,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,34 +1995,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,39 +1996,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,49 +1997,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,53 +1998,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,48 +1999,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,56 +1990,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,65 +1991,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,67 +1992,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,65 +1993,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,67 +1994,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,69 +1995,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,67 +1996,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,77 +1997,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,81 +1998,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,83 +1999,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,90 +1990,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,369 +1991,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,378 +1992,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,403 +1993,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,422 +1994,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,459 +1995,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,503 +1996,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,544 +1997,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,601 +1998,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,651 +1999,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,713 +1990,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,283 +1991,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,286 +1992,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,280 +1993,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,278 +1994,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,272 +1995,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,274 +1996,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,275 +1997,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,270 +1998,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,265 +1999,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,261 +1990,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,446 +1991,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,459 +1992,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,480 +1993,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,501 +1994,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,512 +1995,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,538 +1996,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,555 +1997,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,561 +1998,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,572 +1999,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,567 +1990,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,18980 +1991,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19229 +1992,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19598 +1993,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19939 +1994,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20017 +1995,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20304 +1996,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20626 +1997,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20936 +1998,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21183 +1999,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21463 +1990,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,61437 +1991,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,61906 +1992,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,62391 +1993,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,62707 +1994,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,62059 +1995,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,62106 +1996,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,62571 +1997,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,62627 +1998,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,62806 +1999,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,62961 +1990,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1991,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1992,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1993,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1994,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1995,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1996,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1997,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1998,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1999,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,17 +1990,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1992,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1993,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1995,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1996,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1997,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1998,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1999,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1990,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1991,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1992,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1993,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1994,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1995,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1996,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1997,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1998,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1999,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1990,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,184 +1991,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,186 +1992,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,196 +1993,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,208 +1994,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,222 +1995,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,248 +1996,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,267 +1997,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,299 +1998,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,323 +1999,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,350 +1990,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1004 +1991,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1015 +1992,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,974 +1993,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,956 +1994,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,914 +1995,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,906 +1996,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,902 +1997,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,867 +1998,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,832 +1999,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,800 +1990,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,89 +1991,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,89 +1992,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,92 +1993,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,100 +1994,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,102 +1995,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,115 +1996,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,118 +1997,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,112 +1998,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,118 +1999,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,118 +1990,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1984 +1991,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2040 +1992,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2089 +1993,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2130 +1994,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2154 +1995,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2207 +1996,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2248 +1997,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2284 +1998,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2332 +1999,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2368 +1990,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,44617 +1991,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,45013 +1992,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,45448 +1993,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,45873 +1994,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,46007 +1995,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,46430 +1996,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,47093 +1997,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,47111 +1998,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,47700 +1999,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,47866 +1990,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1991,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1992,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1993,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1994,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,33 +1995,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1996,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1997,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,40 +1998,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,38 +1999,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1990,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,88 +1991,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,77 +1992,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,89 +1993,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,88 +1994,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,84 +1995,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,99 +1996,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,106 +1997,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,116 +1998,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,120 +1999,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,114 +1990,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,390 +1991,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,370 +1992,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,370 +1993,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,383 +1994,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,375 +1995,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,387 +1996,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,412 +1997,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,419 +1998,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,437 +1999,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,462 +1990,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2273 +1991,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2307 +1992,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2414 +1993,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2538 +1994,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2742 +1995,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2954 +1996,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,3169 +1997,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,3441 +1998,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,3727 +1999,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,3965 +1990,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,870 +1991,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,844 +1992,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,831 +1993,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,813 +1994,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,796 +1995,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,794 +1996,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,793 +1997,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,772 +1998,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,760 +1999,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,733 +1990,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3198 +1991,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3286 +1992,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3349 +1993,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3474 +1994,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3554 +1995,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3649 +1996,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3684 +1997,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3707 +1998,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3672 +1999,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3681 +1990,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,228570 +1991,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,230917 +1992,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,233689 +1993,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,235931 +1994,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,238451 +1995,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,240231 +1996,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,241130 +1997,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,242286 +1998,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,243526 +1999,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,244152 +1990,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,416692 +1991,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,418303 +1992,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,418584 +1993,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,418022 +1994,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,416955 +1995,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,414954 +1996,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,413048 +1997,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,409421 +1998,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,407759 +1999,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,404269 +1990,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1991,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1994,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1995,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1996,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1997,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1999,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1990,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1993,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1994,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1995,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1996,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1997,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1998,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1999,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1990,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,66 +1991,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,70 +1992,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,64 +1993,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,71 +1994,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,74 +1995,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,78 +1996,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,89 +1997,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,100 +1998,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,111 +1999,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,119 +1990,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1991,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1992,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1993,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1994,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1995,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1996,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1997,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1998,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,17 +1999,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1990,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,9 +1991,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1992,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,9 +1993,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,9 +1994,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1995,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1996,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,12 +1997,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1998,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1999,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1990,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1858 +1991,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1898 +1992,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1911 +1993,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1941 +1994,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1961 +1995,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1976 +1996,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1987 +1997,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2014 +1998,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2038 +1999,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2061 +1990,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13745 +1991,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13731 +1992,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13679 +1993,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13814 +1994,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13801 +1995,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13786 +1996,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13775 +1997,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13810 +1998,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13830 +1999,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13820 +1990,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1991,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1992,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1993,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1995,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1996,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1997,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1998,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1999,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1990,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1991,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1992,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1993,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1995,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1996,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1997,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1999,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1990,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1991,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1992,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1993,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1994,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1995,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1996,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,26 +1997,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1998,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1999,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1990,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,285 +1991,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,292 +1992,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,315 +1993,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,340 +1994,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,371 +1995,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,394 +1996,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,432 +1997,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,476 +1998,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,513 +1999,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,545 +1990,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,162 +1991,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,166 +1992,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,160 +1993,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,163 +1994,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,154 +1995,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,150 +1996,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,157 +1997,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,167 +1998,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,154 +1999,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,153 +1990,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,195 +1991,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,198 +1992,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,211 +1993,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,221 +1994,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,231 +1995,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,245 +1996,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,245 +1997,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,251 +1998,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,254 +1999,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,259 +1990,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7763 +1991,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7854 +1992,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8022 +1993,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8187 +1994,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8324 +1995,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8488 +1996,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8598 +1997,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8674 +1998,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8758 +1999,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8846 +1990,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,71446 +1991,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,72216 +1992,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,72843 +1993,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,73543 +1994,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,73761 +1995,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,74129 +1996,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,74510 +1997,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,74308 +1998,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,74491 +1999,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,74486 +1990,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1991,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1992,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1993,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,33 +1994,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1995,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,31 +1996,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,33 +1997,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1998,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1999,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1990,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1993,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1994,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1995,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1996,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1997,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1998,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1999,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1990,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1991,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1992,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1993,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1994,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1995,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1996,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1997,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1998,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1999,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1990,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,87 +1991,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,88 +1992,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,93 +1993,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,100 +1994,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,103 +1995,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,127 +1996,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,130 +1997,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,150 +1998,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,159 +1999,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,172 +1990,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2126 +1991,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2105 +1992,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1993 +1993,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1911 +1994,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1842 +1995,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1809 +1996,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1776 +1997,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1709 +1998,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1607 +1999,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1559 +1990,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,19 +1991,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,20 +1992,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,21 +1993,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,21 +1994,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,21 +1995,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,22 +1996,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,23 +1997,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,24 +1998,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,25 +1999,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,28 +1990,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4812 +1991,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4952 +1992,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5034 +1993,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5151 +1994,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5204 +1995,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5332 +1996,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5425 +1997,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5531 +1998,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5610 +1999,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5719 +1990,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,24527 +1991,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,24897 +1992,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,24984 +1993,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,25226 +1994,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,25153 +1995,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,25426 +1996,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,25676 +1997,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,25811 +1998,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,25993 +1999,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,26265 +1990,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1991,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1992,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1993,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1995,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1996,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1997,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1998,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1999,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1990,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,23 +1991,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,25 +1992,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,21 +1993,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,23 +1994,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,31 +1995,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,23 +1996,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,35 +1997,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,30 +1998,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,36 +1999,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,41 +1990,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,54 +1991,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,50 +1992,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1993,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,57 +1994,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,64 +1995,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,56 +1996,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,67 +1997,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,71 +1998,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,71 +1999,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,77 +1990,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,476 +1991,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,486 +1992,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,521 +1993,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,569 +1994,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,625 +1995,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,668 +1996,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,736 +1997,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,819 +1998,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,910 +1999,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,983 +1990,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,128 +1991,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,130 +1992,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,129 +1993,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,129 +1994,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,133 +1995,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,136 +1996,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,137 +1997,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,138 +1998,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,132 +1999,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,138 +1990,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1596 +1991,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1651 +1992,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1698 +1993,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1818 +1994,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1865 +1995,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1931 +1996,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1955 +1997,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2019 +1998,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2029 +1999,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2065 +1990,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20433 +1991,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20702 +1992,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21196 +1993,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21927 +1994,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22450 +1995,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,23313 +1996,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,23893 +1997,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,24968 +1998,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,25676 +1999,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,26325 +1990,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,64774 +1991,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,65196 +1992,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,65672 +1993,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,66425 +1994,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,66484 +1995,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,67669 +1996,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,68573 +1997,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,70386 +1998,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,71620 +1999,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,72529 +1990,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1991,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1992,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1993,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1994,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1995,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1996,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1997,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1999,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1990,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1991,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1992,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1993,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1994,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1995,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1996,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1997,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1998,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1999,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1990,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1991,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1992,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,32 +1993,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1994,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1995,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,31 +1996,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,38 +1997,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1998,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,38 +1999,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,44 +1990,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,229 +1991,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,246 +1992,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,259 +1993,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,294 +1994,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,313 +1995,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,351 +1996,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,378 +1997,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,416 +1998,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,464 +1999,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,502 +1990,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,144 +1991,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,155 +1992,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,151 +1993,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,155 +1994,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,154 +1995,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,153 +1996,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,155 +1997,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,159 +1998,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,152 +1999,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,157 +1990,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,154 +1991,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,162 +1992,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,171 +1993,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,181 +1994,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,188 +1995,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,202 +1996,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,207 +1997,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,214 +1998,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,217 +1999,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,217 +1990,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7141 +1991,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7260 +1992,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7527 +1993,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7906 +1994,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8104 +1995,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8170 +1996,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8394 +1997,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8719 +1998,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8936 +1999,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9128 +1990,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,46620 +1991,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,47598 +1992,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,48602 +1993,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,49364 +1994,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,49780 +1995,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,50261 +1996,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,50813 +1997,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,51579 +1998,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,52427 +1999,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,52972 +1990,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1996,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1997,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1998,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1999,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1990,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,50 +1991,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,49 +1992,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1993,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,41 +1994,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,47 +1995,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1996,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1997,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,47 +1998,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,52 +1999,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,57 +1990,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1991,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1992,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1993,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1994,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1995,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1996,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1997,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1998,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1999,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1990,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1991,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1992,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1993,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1994,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1995,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1996,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1997,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1998,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1999,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1990,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1991,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1992,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1993,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1995,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1996,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1997,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1998,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1999,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1990,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9404 +1991,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9408 +1992,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9462 +1993,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9535 +1994,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9561 +1995,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9729 +1996,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9666 +1997,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9709 +1998,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9809 +1999,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9858 +1990,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3184 +1991,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3188 +1992,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3158 +1993,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3159 +1994,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3125 +1995,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3151 +1996,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3103 +1997,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3093 +1998,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3096 +1999,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3086 +1990,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1993,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1994,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1995,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1996,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1997,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1998,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1999,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1990,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,23 +1991,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,23 +1992,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,17 +1993,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,26 +1994,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,29 +1995,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,31 +1996,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,29 +1997,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,50 +1998,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,40 +1999,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,47 +1990,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,52 +1991,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,45 +1992,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,47 +1993,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,44 +1994,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,45 +1995,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,47 +1996,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,45 +1997,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,45 +1998,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,52 +1999,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1990,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1991,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1992,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1993,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1994,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1995,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1996,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1997,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,32 +1998,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,37 +1999,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,40 +1990,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1991,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1992,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1993,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1994,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1995,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1996,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,17 +1997,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1998,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1999,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1990,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,76 +1991,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,74 +1992,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,76 +1993,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,77 +1994,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,77 +1995,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,79 +1996,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,75 +1997,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,80 +1998,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,77 +1999,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,75 +1990,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21242 +1991,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20942 +1992,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21122 +1993,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20902 +1994,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20556 +1995,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20212 +1996,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20236 +1997,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19863 +1998,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20049 +1999,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19886 +1990,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3438 +1991,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3352 +1992,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3339 +1993,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3308 +1994,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3213 +1995,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3159 +1996,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3090 +1997,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,2978 +1998,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,2929 +1999,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,2873 +1990,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,54 +1991,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,61 +1992,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,53 +1993,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,75 +1994,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,57 +1995,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,68 +1996,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,85 +1997,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,78 +1998,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,102 +1999,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,102 +1990,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,109 +1991,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,104 +1992,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,113 +1993,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,124 +1994,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,121 +1995,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,136 +1996,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,149 +1997,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,146 +1998,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,178 +1999,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,190 +1990,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,383 +1991,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,368 +1992,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,375 +1993,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,393 +1994,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,406 +1995,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,410 +1996,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,420 +1997,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,439 +1998,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,468 +1999,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,479 +1990,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2488 +1991,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2581 +1992,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2751 +1993,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,3004 +1994,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,3316 +1995,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,3581 +1996,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,3913 +1997,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,4315 +1998,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,4725 +1999,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,5050 +1990,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1572 +1991,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1590 +1992,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1563 +1993,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1562 +1994,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1520 +1995,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1489 +1996,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1459 +1997,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1416 +1998,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1369 +1999,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1338 +1990,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4227 +1991,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4442 +1992,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4705 +1993,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5050 +1994,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5243 +1995,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5413 +1996,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5486 +1997,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5541 +1998,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5636 +1999,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5700 +1990,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,48137 +1991,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,49883 +1992,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,51788 +1993,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,54440 +1994,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,55487 +1995,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,55839 +1996,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,56510 +1997,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,57513 +1998,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,59113 +1999,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,59989 +1990,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,183172 +1991,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,188031 +1992,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,193902 +1993,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,199785 +1994,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,202779 +1995,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,201792 +1996,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,202309 +1997,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,202934 +1998,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,206417 +1999,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,207533 2019,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,248 -2020,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,231 -2010,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 2019,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 2019,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 2019,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 2019,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2001,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2002,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2003,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2004,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2005,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2006,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2007,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2008,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2009,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2010,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2012,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 2019,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2016,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2017,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 2019,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2010,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 2019,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 2019,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 2019,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2001,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2002,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2003,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2004,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2005,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2006,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2007,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2008,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2009,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,145 -2010,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2011,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2012,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,184 -2013,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,189 -2014,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,177 -2015,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2016,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,168 -2017,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,184 -2018,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,186 2019,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,190 -2020,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,172 -2010,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,129 -2011,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2012,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2013,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,194 -2014,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2015,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,168 -2016,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2017,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,191 -2018,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 2019,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,199 -2020,geoId/01091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2000,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11866 -2001,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11639 -2002,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11682 -2003,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11535 -2004,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11424 -2005,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11272 -2006,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11248 -2007,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11230 -2008,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11165 -2009,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10979 -2010,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10902 -2011,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10744 -2012,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10580 -2013,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10423 -2014,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10382 -2015,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10213 -2016,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10081 -2017,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10028 -2018,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9844 2019,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9751 -2020,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9708 -2010,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2011,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2012,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2013,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2015,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2016,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2017,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2018,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 2019,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2020,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2000,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2008,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 2019,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2002,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2003,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2004,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2006,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2008,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2009,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2010,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 2019,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2011,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2013,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2014,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2015,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2016,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2017,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 2019,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2020,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2000,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6397 -2001,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6258 -2002,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6293 -2003,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6220 -2004,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6169 -2005,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6085 -2006,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6094 -2007,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6048 -2008,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6079 -2009,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5931 -2010,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5870 -2011,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5790 -2012,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5666 -2013,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5572 -2014,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5582 -2015,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5495 -2016,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5452 -2017,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5391 -2018,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5299 2019,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5298 -2020,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5285 -2010,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5908 -2011,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5841 -2012,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5712 -2013,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5617 -2014,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5624 -2015,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5544 -2016,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5504 -2017,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5436 -2018,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5351 2019,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5343 -2020,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5330 -2010,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 2019,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 2019,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2001,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2002,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2003,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2004,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2005,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2006,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2007,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2008,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2009,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2010,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2012,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2013,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2014,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2016,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2017,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2018,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 2019,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2020,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2010,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4973 -2011,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4894 -2012,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4855 -2013,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4791 -2014,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4734 -2015,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4645 -2016,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4556 -2017,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4573 -2018,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4483 2019,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4389 -2020,geoId/01091,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4354 -2000,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5385 -2001,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5299 -2002,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5306 -2003,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5223 -2004,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5155 -2005,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5085 -2006,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5049 -2007,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5070 -2008,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4970 -2009,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4930 -2010,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4911 -2011,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4828 -2012,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4784 -2013,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4717 -2014,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4658 -2015,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4572 -2016,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4486 -2017,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4497 -2018,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4401 2019,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4316 -2020,geoId/01091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4281 -2000,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,111 -2001,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,128 -2002,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,143 -2003,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,147 -2004,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,144 -2005,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,159 -2006,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,167 -2007,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,162 -2008,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,152 -2009,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,178 -2010,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,172 -2011,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,174 -2012,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,208 -2013,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,227 -2014,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,231 -2015,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,223 -2016,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,233 -2017,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,243 -2018,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,252 +1990,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1992,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1993,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1995,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1996,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1997,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1999,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1990,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,38 +1991,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1992,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,33 +1993,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1994,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1995,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,33 +1996,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1997,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,41 +1998,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,41 +1999,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,45 +1990,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1991,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1992,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1993,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1994,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,37 +1995,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,40 +1996,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,45 +1997,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,57 +1998,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,62 +1999,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,63 2019,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,281 -2020,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,296 -2010,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 2019,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 2019,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 2019,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 2019,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2001,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2002,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2003,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2004,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2005,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2007,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2008,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2009,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2017,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 2019,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 2019,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 2019,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 2019,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 2019,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2001,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2002,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2003,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2004,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2005,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2006,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2007,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2008,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2009,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2010,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2011,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2012,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2013,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,171 -2014,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,173 -2015,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2016,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,171 -2017,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,182 -2018,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 2019,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,213 -2020,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,226 -2010,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2011,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2012,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,163 -2013,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,177 -2014,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,179 -2015,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,176 -2016,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,177 -2017,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,187 -2018,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 2019,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,219 -2020,geoId/01091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,231 -2000,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10479 -2001,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10310 -2002,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10256 -2003,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10197 -2004,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10059 -2005,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9977 -2006,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9965 -2007,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9913 -2008,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9834 -2009,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9812 -2010,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9699 -2011,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9546 -2012,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9362 -2013,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9231 -2014,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9146 -2015,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9122 -2016,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9002 -2017,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8906 -2018,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8760 2019,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8639 -2020,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8498 -2010,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2011,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2012,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2014,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2015,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2016,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2017,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 2019,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2020,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2000,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2008,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 2019,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2003,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2004,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2006,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2007,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2008,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 2019,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2011,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 2019,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2000,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5228 -2001,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5164 -2002,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5138 -2003,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5147 -2004,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5097 -2005,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5067 -2006,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5076 -2007,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5010 -2008,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4992 -2009,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4992 -2010,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4925 -2011,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4812 -2012,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4734 -2013,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4679 -2014,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4586 -2015,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4628 -2016,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4588 -2017,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4514 -2018,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4427 2019,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4400 -2020,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4341 -2010,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4953 -2011,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4849 -2012,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4767 -2013,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4715 -2014,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4630 -2015,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4669 -2016,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4634 -2017,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4573 -2018,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4472 2019,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4444 -2020,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4393 -2010,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 2019,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 2019,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2001,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2002,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2003,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2004,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2005,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2006,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2007,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2008,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2009,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2010,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2011,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2012,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2013,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2016,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2017,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2018,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 2019,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2020,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2010,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4725 -2011,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4677 -2012,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4577 -2013,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4496 -2014,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4498 -2015,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4436 -2016,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4352 -2017,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4331 -2018,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4277 2019,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4180 -2020,geoId/01091,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4098 -2000,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5187 -2001,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5081 -2002,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5050 -2003,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4980 -2004,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4887 -2005,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4823 -2006,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4801 -2007,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4811 -2008,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4740 -2009,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4714 -2010,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4672 -2011,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4620 -2012,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4521 -2013,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4437 -2014,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4427 -2015,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4363 -2016,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4278 -2017,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4253 -2018,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4198 2019,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4108 -2020,geoId/01091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,4020 -2000,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,164 -2001,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,169 -2002,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,174 -2003,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,201 -2004,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,198 -2005,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,246 -2006,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,279 -2007,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,269 -2008,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,264 -2009,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,270 -2010,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,296 -2011,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,315 -2012,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,310 -2013,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,327 -2014,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,306 -2015,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,320 -2016,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,352 -2017,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,351 -2018,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,359 -2019,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,350 -2020,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,369 -2010,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2009,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2010,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,147 -2001,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,154 -2002,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2003,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,184 -2004,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,183 -2005,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2006,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,251 -2007,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,237 -2008,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,230 -2009,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,235 -2010,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,259 -2011,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,277 -2012,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,268 -2013,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,282 -2014,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,263 -2015,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,268 -2016,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,297 -2017,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,301 -2018,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,299 -2019,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,288 -2020,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,305 -2010,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,276 -2011,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,293 -2012,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,288 -2013,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,301 -2014,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,281 -2015,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,285 -2016,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,316 -2017,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,315 -2018,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,315 -2019,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,310 -2020,geoId/01093,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,329 -2000,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15554 -2001,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15347 -2002,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15299 -2003,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15176 -2004,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15202 -2005,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15157 -2006,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15200 -2007,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15206 -2008,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15281 -2009,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15114 -2010,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15226 -2011,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15103 -2012,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15048 -2013,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14873 -2014,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14960 -2015,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14852 -2016,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14779 -2017,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14717 -2018,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14692 -2019,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14719 -2020,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,14627 -2010,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2011,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2012,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2013,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2014,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2015,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2016,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2017,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2018,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2019,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2020,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,144 -2000,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2001,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2002,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2003,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2004,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2005,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2006,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2007,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2008,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2009,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2011,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2012,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2013,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2014,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2015,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2017,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2018,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2019,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2020,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2000,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2001,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2002,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2003,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2004,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2005,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2006,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2007,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2008,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2009,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2010,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2013,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2014,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2015,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2016,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2018,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2020,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2010,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2011,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2012,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2013,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2014,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2015,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2016,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2017,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2018,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2019,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2020,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2000,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,450 -2001,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,461 -2002,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,448 -2003,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,447 -2004,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,455 -2005,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,482 -2006,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,486 -2007,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,480 -2008,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,478 -2009,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,492 -2010,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,463 -2011,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,471 -2012,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,453 -2013,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,456 -2014,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,452 -2015,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,444 -2016,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,449 -2017,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,449 -2018,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,466 -2019,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,477 -2020,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,453 -2010,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,521 -2011,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,531 -2012,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,516 -2013,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,524 -2014,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,509 -2015,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,511 -2016,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,524 -2017,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,538 -2018,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,535 -2019,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,553 -2020,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,534 -2010,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2001,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2002,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2003,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2004,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2005,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2006,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2007,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2008,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2009,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2010,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2011,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2012,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2013,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2014,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2015,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,147 -2016,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2017,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2018,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2019,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,164 -2020,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2010,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14662 -2011,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14530 -2012,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14479 -2013,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14297 -2014,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14387 -2015,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14285 -2016,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14217 -2017,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14158 -2018,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14114 -2019,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14126 -2020,geoId/01093,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14045 -2000,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14954 -2001,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14731 -2002,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14692 -2003,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14556 -2004,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14573 -2005,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14499 -2006,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14527 -2007,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14527 -2008,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14601 -2009,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14418 -2010,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14537 -2011,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14404 -2012,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14334 -2013,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14156 -2014,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14247 -2015,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14149 -2016,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14071 -2017,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13986 -2018,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13970 -2019,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13976 -2020,geoId/01093,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13888 -2000,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,193 -2001,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,224 -2002,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,225 -2003,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,251 -2004,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,260 -2005,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,275 -2006,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,298 -2007,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,311 -2008,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,322 -2009,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,344 -2010,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,344 -2011,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,368 -2012,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,379 -2013,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,400 -2014,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,396 -2015,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,411 -2016,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,413 -2017,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,421 -2018,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,415 -2019,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,406 -2020,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,394 -2010,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2010,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2001,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,195 -2002,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,199 -2003,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,228 -2004,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,235 -2005,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,254 -2006,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,271 -2007,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,286 -2008,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2009,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,318 -2010,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,318 -2011,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,335 -2012,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,343 -2013,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,356 -2014,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,352 -2015,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,360 -2016,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,367 -2017,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,373 -2018,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,361 -2019,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,353 -2020,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,336 -2010,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,326 -2011,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,344 -2012,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,351 -2013,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,367 -2014,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,363 -2015,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,376 -2016,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,376 -2017,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,384 -2018,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,377 -2019,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,370 -2020,geoId/01093,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,358 -2000,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15226 -2001,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15037 -2002,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14910 -2003,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14926 -2004,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14856 -2005,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14816 -2006,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15002 -2007,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15063 -2008,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15051 -2009,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14918 -2010,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14956 -2011,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14875 -2012,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14758 -2013,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14636 -2014,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14553 -2015,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14554 -2016,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14414 -2017,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14336 -2018,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14310 -2019,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14351 -2020,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14313 -2010,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2011,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2012,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2013,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2014,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2015,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,134 -2016,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,134 -2017,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2018,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2019,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2020,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2000,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2001,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2002,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2003,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2004,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2005,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2006,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2007,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2008,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2009,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2010,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2011,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2012,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2013,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2014,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2015,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2016,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2017,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2018,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2019,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2000,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2001,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2002,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2004,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2005,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2006,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2009,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2015,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2017,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2010,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2013,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2015,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2017,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2019,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2020,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2000,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,675 -2001,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,705 -2002,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,700 -2003,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,689 -2004,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,668 -2005,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,664 -2006,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,704 -2007,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,745 -2008,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,748 -2009,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,725 -2010,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,720 -2011,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,711 -2012,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,712 -2013,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,710 -2014,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,689 -2015,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,691 -2016,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,665 -2017,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,648 -2018,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,652 -2019,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,680 -2020,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,682 -2010,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,774 -2011,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,782 -2012,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,787 -2013,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,780 -2014,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,758 -2015,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,763 -2016,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,746 -2017,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,728 -2018,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,737 -2019,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,761 -2020,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,773 -2010,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2001,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2002,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2003,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2004,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2005,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2006,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2007,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2008,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2009,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2010,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2011,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2012,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2013,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2014,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2015,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,165 -2016,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2017,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,174 -2018,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,179 -2019,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,181 -2020,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2010,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14161 -2011,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14074 -2012,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13951 -2013,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13836 -2014,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13767 -2015,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13757 -2016,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13643 -2017,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13579 -2018,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13552 -2019,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13562 -2020,geoId/01093,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13510 -2000,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14387 -2001,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14162 -2002,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14034 -2003,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14063 -2004,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14008 -2005,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13969 -2006,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14116 -2007,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14127 -2008,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14113 -2009,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13992 -2010,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14033 -2011,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13943 -2012,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13817 -2013,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13701 -2014,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13625 -2015,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13602 -2016,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13489 -2017,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13415 -2018,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13383 -2019,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13392 -2020,geoId/01093,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13342 -2000,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1925 -2001,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2108 -2002,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2428 -2003,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2722 -2004,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2967 -2005,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3266 -2006,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3680 -2007,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4012 -2008,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4376 -2009,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4836 -2010,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5086 -2011,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5243 -2012,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5273 -2013,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5382 -2014,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5431 -2015,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5560 -2016,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5764 -2017,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5935 -2018,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,6192 -2019,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,6421 -2020,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,6696 -2010,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,286 -2011,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,285 -2012,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,279 -2013,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,261 -2014,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,265 -2015,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,253 -2016,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,267 -2017,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,270 -2018,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,296 -2019,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,298 -2020,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,335 -2000,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2002,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2003,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2004,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2005,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2006,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2007,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,154 -2008,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,173 -2009,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,212 -2010,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2011,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,219 -2012,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,207 -2013,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,193 -2014,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,194 -2015,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2016,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2017,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,194 -2018,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,208 -2019,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,211 -2020,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,242 -2000,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2017,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2019,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2020,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2010,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2011,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2014,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2015,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2017,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2018,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2019,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2020,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2000,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2002,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2003,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2004,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2005,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2006,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2007,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2008,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2009,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2010,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,154 -2011,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,151 -2012,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,152 -2013,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,146 -2014,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2015,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,157 -2016,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,155 -2017,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 -2018,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,176 -2019,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,184 -2020,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,201 -2010,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,194 -2011,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,194 -2012,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,207 -2013,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,206 -2014,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,209 -2015,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,226 -2016,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,225 -2017,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,243 -2018,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,267 -2019,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,271 -2020,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,291 -2010,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2011,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2012,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2013,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2014,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2015,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2016,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2017,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2018,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2019,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2020,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2000,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2003,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2004,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2005,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2006,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2007,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2008,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2009,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2010,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2011,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2012,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2013,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2015,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2016,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2017,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2018,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2019,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2020,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2000,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2001,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2002,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2003,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2004,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2005,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2006,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2007,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2008,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2009,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2010,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2011,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2012,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2013,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2014,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,123 -2015,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2016,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2017,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2018,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,176 -2019,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2020,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2000,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1832 -2001,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1965 -2002,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2234 -2003,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2490 -2004,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2694 -2005,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2926 -2006,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3302 -2007,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3583 -2008,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3874 -2009,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4270 -2010,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4497 -2011,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4657 -2012,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4692 -2013,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4821 -2014,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4855 -2015,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4966 -2016,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5137 -2017,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5287 -2018,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5475 -2019,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5681 -2020,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5879 -2010,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4600 -2011,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4760 -2012,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4796 -2013,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4935 -2014,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4960 -2015,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5086 -2016,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5273 -2017,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5416 -2018,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5625 -2019,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5835 -2020,geoId/01095,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6052 -2000,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40389 -2001,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40215 -2002,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40287 -2003,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40424 -2004,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40473 -2005,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40764 -2006,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41166 -2007,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41521 -2008,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41947 -2009,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41910 -2010,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,42162 -2011,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,42370 -2012,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,42537 -2013,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,42494 -2014,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,42429 -2015,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,42463 -2016,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,42464 -2017,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,42555 -2018,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,42547 -2019,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,42666 -2020,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,42523 -2010,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,593 -2011,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,564 -2012,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,569 -2013,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,569 -2014,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,584 -2015,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,589 -2016,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,591 -2017,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,606 -2018,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,605 -2019,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,607 -2020,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,600 -2000,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,201 -2001,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,224 -2002,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,225 -2003,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2004,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,232 -2005,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,261 -2006,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,255 -2007,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,280 -2008,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,267 -2009,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,249 -2010,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,281 -2011,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,277 -2012,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,262 -2013,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,273 -2014,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,267 -2015,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,268 -2016,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,275 -2017,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,277 -2018,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,267 -2019,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,269 -2020,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,267 -2000,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2001,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2002,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,172 -2003,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 -2004,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2005,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2006,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,204 -2007,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,208 -2008,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,245 -2009,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,246 -2010,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,250 -2011,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2012,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,325 -2013,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,347 -2014,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,355 -2015,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,354 -2016,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,353 -2017,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,348 -2018,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,355 -2019,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,362 -2020,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,355 -2010,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,302 -2011,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,361 -2012,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,385 -2013,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,407 -2014,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,416 -2015,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,424 -2016,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,432 -2017,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,418 -2018,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,432 -2019,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,442 -2020,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,439 -2000,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,599 -2001,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,630 -2002,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,652 -2003,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,657 -2004,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,645 -2005,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,630 -2006,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,657 -2007,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,660 -2008,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,668 -2009,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,659 -2010,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,660 -2011,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,714 -2012,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,710 -2013,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,761 -2014,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,846 -2015,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,900 -2016,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,954 -2017,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,993 -2018,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1017 -2019,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1116 -2020,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1144 -2010,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,896 -2011,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,949 -2012,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,960 -2013,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1016 -2014,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1114 -2015,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1201 -2016,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1273 -2017,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1326 -2018,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1355 -2019,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1478 -2020,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1508 -2010,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2012,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2013,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2014,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2015,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2016,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2017,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2018,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2019,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2020,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2000,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2003,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2005,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2008,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2009,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2014,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2020,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2000,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,319 -2001,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,320 -2002,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,357 -2003,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,365 -2004,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,405 -2005,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,426 -2006,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,461 -2007,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,493 -2008,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,508 -2009,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,518 -2010,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,567 -2011,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,565 -2012,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,595 -2013,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,597 -2014,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,615 -2015,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,656 -2016,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,686 -2017,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,707 -2018,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,714 -2019,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,733 -2020,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,746 -2010,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40906 -2011,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41017 -2012,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41166 -2013,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41037 -2014,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40881 -2015,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40860 -2016,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40803 -2017,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40856 -2018,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40821 -2019,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40823 -2020,geoId/01095,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40659 -2000,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39136 -2001,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38880 -2002,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38866 -2003,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38989 -2004,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39001 -2005,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39244 -2006,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39567 -2007,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39859 -2008,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40234 -2009,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40218 -2010,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40378 -2011,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40479 -2012,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40600 -2013,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40467 -2014,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40302 -2015,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40246 -2016,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40158 -2017,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40190 -2018,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40151 -2019,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40134 -2020,geoId/01095,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39959 -2000,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2775 -2001,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3025 -2002,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3378 -2003,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3697 -2004,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3947 -2005,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4390 -2006,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4824 -2007,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5121 -2008,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5509 -2009,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5960 -2010,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6213 -2011,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6409 -2012,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6545 -2013,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6614 -2014,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6633 -2015,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6774 -2016,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,7005 -2017,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,7169 -2018,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,7405 -2019,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,7569 -2020,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,7821 -2010,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,395 -2011,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,379 -2012,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,371 -2013,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,358 -2014,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,359 -2015,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,363 -2016,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,356 -2017,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,387 -2018,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,381 -2019,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,385 -2020,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,409 -2000,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2001,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2002,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2003,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2004,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2005,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2006,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,189 -2007,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,218 -2008,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,256 -2009,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,291 -2010,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,306 -2011,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,287 -2012,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,277 -2013,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,259 -2014,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,259 -2015,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,272 -2016,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,267 -2017,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,285 -2018,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,276 -2019,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,273 -2020,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,296 -2000,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2002,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2007,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2008,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2009,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2019,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2020,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2010,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2011,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2012,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2013,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2014,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2016,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2017,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2018,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2019,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2020,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2000,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2002,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2003,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2004,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2005,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2006,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2007,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,156 -2008,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,182 -2009,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,213 -2010,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,210 -2011,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,282 -2012,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,379 -2013,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,405 -2014,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,417 -2015,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,400 -2016,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,378 -2017,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,363 -2018,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,364 -2019,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,352 -2020,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,345 -2010,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,271 -2011,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,344 -2012,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,448 -2013,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,465 -2014,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,495 -2015,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,472 -2016,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,456 -2017,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,455 -2018,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,450 -2019,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,446 -2020,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,447 -2010,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2011,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2012,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2013,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2014,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2015,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2016,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2017,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2018,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2019,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2020,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2000,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2001,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2002,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2003,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2004,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2005,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2006,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2007,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2008,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2009,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2010,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2011,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2012,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2013,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2014,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2015,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2016,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2017,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2018,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2019,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2020,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2000,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2001,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2002,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2003,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2004,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2005,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2006,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2007,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2008,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2009,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,144 -2010,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2011,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,151 -2012,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2013,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2014,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,174 -2015,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,168 -2016,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2017,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2018,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,203 -2019,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,206 -2020,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,215 -2000,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2651 -2001,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2838 -2002,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3129 -2003,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3378 -2004,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3565 -2005,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3942 -2006,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4316 -2007,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4543 -2008,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4848 -2009,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5208 -2010,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5444 -2011,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5584 -2012,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5635 -2013,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5703 -2014,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5682 -2015,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5831 -2016,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6061 -2017,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6194 -2018,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6400 -2019,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6577 -2020,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6790 -2010,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5574 -2011,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5714 -2012,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5767 -2013,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5835 -2014,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5824 -2015,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5975 -2016,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6213 -2017,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6361 -2018,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6583 -2019,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6754 -2020,geoId/01095,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6968 -2000,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37340 -2001,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37129 -2002,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37324 -2003,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37505 -2004,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37744 -2005,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38096 -2006,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38539 -2007,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38951 -2008,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39240 -2009,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39507 -2010,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39658 -2011,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39877 -2012,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39909 -2013,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39868 -2014,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39769 -2015,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39791 -2016,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39890 -2017,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39930 -2018,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,40086 -2019,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,40095 -2020,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39950 -2010,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,600 -2011,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,607 -2012,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,605 -2013,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,608 -2014,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,610 -2015,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,626 -2016,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,628 -2017,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,623 -2018,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,603 -2019,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,620 -2020,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,627 -2000,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,208 -2001,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,218 -2002,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2003,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2004,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,237 -2005,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,252 -2006,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,254 -2007,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,254 -2008,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,265 -2009,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,283 -2010,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,292 -2011,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,295 -2012,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,282 -2013,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,286 -2014,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,280 -2015,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,287 -2016,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,284 -2017,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,284 -2018,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,274 -2019,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,282 -2020,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,289 -2000,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2001,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2002,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2003,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2004,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2005,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2006,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2007,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,189 -2008,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,199 -2009,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,221 -2010,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,236 -2011,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,252 -2012,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,263 -2013,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,259 -2014,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,252 -2015,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,251 -2016,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,246 -2017,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,241 -2018,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,260 -2019,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,267 -2020,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,282 -2010,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,288 -2011,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,309 -2012,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,323 -2013,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,316 -2014,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,310 -2015,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,325 -2016,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,320 -2017,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,312 -2018,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,342 -2019,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,344 -2020,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,369 -2000,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,591 -2001,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,607 -2002,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,637 -2003,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,658 -2004,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,650 -2005,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,634 -2006,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,682 -2007,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,692 -2008,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,713 -2009,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,711 -2010,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,737 -2011,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,784 -2012,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,837 -2013,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,919 -2014,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,994 -2015,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1095 -2016,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1181 -2017,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1213 -2018,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1275 -2019,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1340 -2020,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1340 -2010,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,963 -2011,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1022 -2012,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1101 -2013,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1183 -2014,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1274 -2015,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1386 -2016,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1502 -2017,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1542 -2018,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1603 -2019,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1663 -2020,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1691 -2010,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2011,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2012,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2014,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2015,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2016,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2017,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2018,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2019,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2000,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2005,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2007,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2008,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2009,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2010,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2011,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2012,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2013,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2014,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2015,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2017,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2018,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2020,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2000,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,278 -2001,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,294 -2002,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,324 -2003,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,361 -2004,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,410 -2005,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,429 -2006,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,484 -2007,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,507 -2008,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,514 -2009,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,569 -2010,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,574 -2011,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,577 -2012,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,614 -2013,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,614 -2014,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,639 -2015,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,675 -2016,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,703 -2017,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,713 -2018,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,701 -2019,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,704 -2020,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,737 -2010,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38331 -2011,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38468 -2012,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38437 -2013,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38318 -2014,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38160 -2015,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38082 -2016,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38096 -2017,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38115 -2018,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38195 -2019,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38113 -2020,geoId/01095,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37944 -2000,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36180 -2001,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,35897 -2002,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36016 -2003,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36113 -2004,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36281 -2005,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36600 -2006,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36921 -2007,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37280 -2008,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37517 -2009,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37688 -2010,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37780 -2011,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37922 -2012,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37861 -2013,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37737 -2014,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37558 -2015,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37440 -2016,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37433 -2017,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37434 -2018,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37533 -2019,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37450 -2020,geoId/01095,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37245 -2000,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2387 -2001,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2543 -2002,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2650 -2003,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2807 -2004,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2928 -2005,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3090 -2006,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3401 -2007,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3755 -2008,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4009 -2009,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4269 -2010,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4488 -2011,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4689 -2012,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4790 -2013,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5094 -2014,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5315 -2015,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5432 -2016,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5556 -2017,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5631 -2018,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5764 -2019,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5923 -2020,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,6110 -2010,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,257 -2011,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,247 -2012,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,249 -2013,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,254 -2014,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,246 -2015,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,232 -2016,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,225 -2017,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,222 -2018,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,221 -2019,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,207 -2020,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,203 -2000,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2001,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2002,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2003,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2004,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2005,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2006,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2007,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2008,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2009,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2010,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2011,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2012,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2013,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2014,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2015,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2016,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2017,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2018,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2019,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2020,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2000,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2002,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2003,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2004,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2005,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2006,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2007,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2008,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2009,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2010,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2011,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2012,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2018,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2019,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2010,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2011,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2012,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2013,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2014,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2015,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2016,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2017,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2018,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2019,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2020,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2000,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,420 -2001,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,418 -2002,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,413 -2003,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,432 -2004,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,433 -2005,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,470 -2006,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,483 -2007,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,496 -2008,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,525 -2009,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,529 -2010,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,531 -2011,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,524 -2012,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,521 -2013,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,547 -2014,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,550 -2015,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,573 -2016,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,586 -2017,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,574 -2018,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,579 -2019,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,580 -2020,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,611 -2010,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,640 -2011,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,632 -2012,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,633 -2013,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,668 -2014,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,665 -2015,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,700 -2016,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,714 -2017,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,698 -2018,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,726 -2019,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,721 -2020,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,745 -2010,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2011,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2012,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2013,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2014,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2015,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2016,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2017,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2018,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2019,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2000,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2002,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2004,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2000,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2001,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2002,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2003,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2004,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2005,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2006,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,153 -2007,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2008,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2009,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,208 -2010,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,229 -2011,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,222 -2012,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,226 -2013,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,231 -2014,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,226 -2015,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,242 -2016,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,238 -2017,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,243 -2018,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,259 -2019,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,253 -2020,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,265 -2000,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1849 -2001,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1945 -2002,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2033 -2003,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2122 -2004,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2224 -2005,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2367 -2006,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2635 -2007,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2940 -2008,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3152 -2009,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3356 -2010,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3527 -2011,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3754 -2012,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3869 -2013,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4141 -2014,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4367 -2015,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4462 -2016,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4574 -2017,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4648 -2018,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4753 -2019,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4917 -2020,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5070 -2010,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3701 -2011,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3928 -2012,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4050 -2013,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4313 -2014,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4538 -2015,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4649 -2016,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4765 -2017,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4842 -2018,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4950 -2019,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5119 -2020,geoId/01097,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5288 -2000,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,206485 -2001,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,206158 -2002,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,205241 -2003,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,204707 -2004,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,204527 -2005,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,204634 -2006,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,206476 -2007,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,207450 -2008,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,208853 -2009,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,209836 -2010,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,210335 -2011,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,210291 -2012,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,210733 -2013,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,210621 -2014,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,210830 -2015,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,211111 -2016,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,211324 -2017,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,210953 -2018,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,211156 -2019,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,210889 -2020,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,210545 -2010,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2994 -2011,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2997 -2012,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3050 -2013,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3092 -2014,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3093 -2015,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3096 -2016,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3106 -2017,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3131 -2018,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3123 -2019,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3150 -2020,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3160 -2000,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1356 -2001,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1348 -2002,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1371 -2003,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1457 -2004,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1494 -2005,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1527 -2006,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1583 -2007,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1676 -2008,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1694 -2009,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1785 -2010,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1841 -2011,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1856 -2012,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1877 -2013,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1899 -2014,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1888 -2015,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1875 -2016,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1909 -2017,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1921 -2018,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1903 -2019,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1901 -2020,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1928 -2000,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2742 -2001,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2759 -2002,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2854 -2003,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2927 -2004,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3068 -2005,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3167 -2006,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3288 -2007,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3453 -2008,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3580 -2009,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3718 -2010,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3773 -2011,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3910 -2012,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4006 -2013,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4056 -2014,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4213 -2015,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4343 -2016,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4439 -2017,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4438 -2018,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4472 -2019,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4542 -2020,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4591 -2010,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4342 -2011,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4493 -2012,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4623 -2013,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4705 -2014,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4891 -2015,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5043 -2016,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5179 -2017,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5185 -2018,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5261 -2019,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5358 -2020,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5429 -2000,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72406 -2001,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72675 -2002,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72745 -2003,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72886 -2004,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73048 -2005,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73394 -2006,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,74415 -2007,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,75080 -2008,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,76058 -2009,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,76648 -2010,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,77122 -2011,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,77498 -2012,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,78102 -2013,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,78469 -2014,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,78732 -2015,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,79236 -2016,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,79790 -2017,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,80106 -2018,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,80515 -2019,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,80849 -2020,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,80975 -2010,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78442 -2011,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78826 -2012,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79527 -2013,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79981 -2014,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80286 -2015,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80874 -2016,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81476 -2017,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81833 -2018,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82316 -2019,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82700 -2020,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82865 -2010,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2011,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,170 -2012,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2013,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,186 -2014,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,180 -2015,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,199 -2016,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2017,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2018,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,186 -2019,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,164 -2020,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,181 -2000,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2001,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2002,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2003,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2004,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2005,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2006,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2007,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2008,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2009,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2010,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2011,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2012,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2013,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2014,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2015,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2016,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2017,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2018,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2019,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2020,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2000,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1732 -2001,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1791 -2002,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1861 -2003,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1875 -2004,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1931 -2005,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2015 -2006,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2160 -2007,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2284 -2008,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2398 -2009,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2534 -2010,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2538 -2011,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2549 -2012,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2706 -2013,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2814 -2014,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2894 -2015,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2987 -2016,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3058 -2017,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3121 -2018,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3215 -2019,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3293 -2020,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3340 -2010,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,127125 -2011,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,126576 -2012,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,126283 -2013,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125714 -2014,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125513 -2015,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125152 -2016,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,124686 -2017,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,123991 -2018,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,123749 -2019,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,123096 -2020,geoId/01097,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,122537 -2000,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,128206 -2001,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,127535 -2002,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,126353 -2003,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,125506 -2004,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,124928 -2005,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,124475 -2006,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,124962 -2007,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,124894 -2008,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,125051 -2009,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,125072 -2010,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,124980 -2011,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,124401 -2012,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,123969 -2013,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,123303 -2014,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,123027 -2015,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,122582 -2016,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,122052 -2017,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,121299 -2018,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,120988 -2019,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,120249 -2020,geoId/01097,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,119649 -2000,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2597 -2001,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2841 -2002,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2991 -2003,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3204 -2004,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3410 -2005,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3701 -2006,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4028 -2007,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4308 -2008,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4763 -2009,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5268 -2010,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5546 -2011,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5651 -2012,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5508 -2013,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5708 -2014,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5875 -2015,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6028 -2016,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6150 -2017,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6133 -2018,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6236 -2019,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6209 -2020,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6257 -2010,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,379 -2011,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,333 -2012,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,321 -2013,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,306 -2014,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,290 -2015,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,276 -2016,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,278 -2017,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,277 -2018,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,279 -2019,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,266 -2020,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,275 -2000,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2001,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2002,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2003,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2004,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2005,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2006,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2007,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,163 -2008,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,171 -2009,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,193 -2010,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,231 -2011,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,210 -2012,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,211 -2013,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2014,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,161 -2015,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2016,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2017,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2018,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,139 -2019,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2020,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2000,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2002,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2003,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2004,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2005,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2006,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2007,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2008,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2009,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2010,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2011,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2012,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2013,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2014,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2015,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2016,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2017,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2018,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2011,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2012,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2013,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2014,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2015,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2016,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2017,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2018,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2019,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2020,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2000,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,362 -2001,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,347 -2002,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,352 -2003,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,346 -2004,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,372 -2005,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,426 -2006,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,417 -2007,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,423 -2008,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,486 -2009,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,515 -2010,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,536 -2011,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,523 -2012,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,494 -2013,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,542 -2014,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,581 -2015,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,632 -2016,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,642 -2017,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,607 -2018,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,593 -2019,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,581 -2020,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,588 -2010,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,663 -2011,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,639 -2012,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,626 -2013,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,656 -2014,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,694 -2015,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,763 -2016,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,782 -2017,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,739 -2018,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,742 -2019,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,721 -2020,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,745 -2010,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2011,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2012,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2013,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2014,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2015,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2016,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2017,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2018,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2019,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2020,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2000,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2001,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2002,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2003,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2004,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2005,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2006,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2007,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2008,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2009,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2010,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2011,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2012,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2013,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2015,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2000,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2001,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2002,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2003,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2004,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,155 -2005,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2006,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,163 -2007,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,178 -2008,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,187 -2009,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,242 -2010,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,258 -2011,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,234 -2012,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,234 -2013,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,240 -2014,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,240 -2015,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,250 -2016,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,268 -2017,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,264 -2018,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,283 -2019,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,280 -2020,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,277 -2000,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2100 -2001,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2271 -2002,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2368 -2003,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2534 -2004,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2662 -2005,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2927 -2006,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3224 -2007,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3438 -2008,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3822 -2009,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4186 -2010,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4357 -2011,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4545 -2012,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4465 -2013,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4655 -2014,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4806 -2015,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4901 -2016,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5012 -2017,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5046 -2018,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5142 -2019,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5139 -2020,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5189 -2010,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4562 -2011,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4729 -2012,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4645 -2013,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4848 -2014,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5009 -2015,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5102 -2016,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5229 -2017,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5255 -2018,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5375 -2019,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5370 -2020,geoId/01097,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5404 -2000,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,188604 -2001,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,188587 -2002,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,187667 -2003,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,187364 -2004,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,187094 -2005,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,187517 -2006,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,189011 -2007,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,190202 -2008,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,191571 -2009,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,192621 -2010,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,192959 -2011,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,192495 -2012,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,192862 -2013,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,192602 -2014,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,192278 -2015,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,192083 -2016,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,192139 -2017,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,191492 -2018,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,191119 -2019,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,190495 -2020,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,189804 -2010,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2815 -2011,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2827 -2012,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2882 -2013,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2948 -2014,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2893 -2015,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2885 -2016,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2928 -2017,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2933 -2018,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2900 -2019,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2880 -2020,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2844 -2000,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1348 -2001,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1308 -2002,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1365 -2003,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1381 -2004,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1403 -2005,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1468 -2006,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1494 -2007,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1556 -2008,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1639 -2009,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1620 -2010,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1712 -2011,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1695 -2012,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1735 -2013,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1758 -2014,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1751 -2015,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1732 -2016,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1741 -2017,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1751 -2018,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1725 -2019,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1688 -2020,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1668 -2000,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2981 -2001,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2962 -2002,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3070 -2003,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3165 -2004,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3306 -2005,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3427 -2006,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3598 -2007,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3674 -2008,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3742 -2009,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3938 -2010,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3848 -2011,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3894 -2012,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3913 -2013,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3866 -2014,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3928 -2015,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3987 -2016,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4055 -2017,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4070 -2018,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4034 -2019,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4040 -2020,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4018 -2010,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4404 -2011,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4471 -2012,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4546 -2013,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4506 -2014,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4588 -2015,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4677 -2016,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4754 -2017,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4811 -2018,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4795 -2019,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4818 -2020,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4833 -2000,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61018 -2001,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61280 -2002,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61236 -2003,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61417 -2004,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61611 -2005,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61991 -2006,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62916 -2007,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,63637 -2008,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,64421 -2009,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65184 -2010,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65620 -2011,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65711 -2012,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66486 -2013,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66888 -2014,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66941 -2015,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67271 -2016,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67584 -2017,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67608 -2018,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67937 -2019,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68225 -2020,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68243 -2010,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66826 -2011,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66971 -2012,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67863 -2013,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68294 -2014,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68378 -2015,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68734 -2016,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69143 -2017,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69230 -2018,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69595 -2019,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69946 -2020,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69978 -2010,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,177 -2011,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,179 -2012,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,176 -2013,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2014,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,170 -2015,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2016,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2017,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2018,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2019,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,153 -2020,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2000,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2001,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2002,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2003,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2004,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2005,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2006,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2007,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2008,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2009,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2010,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2011,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2012,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2013,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2014,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2016,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2017,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2018,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2019,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2020,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2000,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1518 -2001,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1632 -2002,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1698 -2003,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1738 -2004,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1823 -2005,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1870 -2006,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1986 -2007,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2101 -2008,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2226 -2009,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2325 -2010,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2435 -2011,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2526 -2012,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2686 -2013,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2734 -2014,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2777 -2015,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2830 -2016,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2952 -2017,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3050 -2018,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3063 -2019,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3166 -2020,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3193 -2010,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,121348 -2011,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,120774 -2012,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,120285 -2013,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119652 -2014,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119206 -2015,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118679 -2016,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118312 -2017,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,117643 -2018,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,116993 -2019,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,116095 -2020,geoId/01097,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,115426 -2000,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,121699 -2001,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,121356 -2002,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,120244 -2003,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,119604 -2004,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,118886 -2005,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,118699 -2006,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,118943 -2007,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,119167 -2008,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,119465 -2009,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,119488 -2010,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,119257 -2011,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,118583 -2012,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,117962 -2013,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,117275 -2014,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,116799 -2015,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,116186 -2016,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,115742 -2017,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,114962 -2018,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,114316 -2019,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,113325 -2020,geoId/01097,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,112626 -2000,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,99 -2001,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,99 -2002,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,97 -2003,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,101 +1990,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1991,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1992,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1993,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1994,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1995,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1996,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1997,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1998,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1999,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1990,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1991,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1992,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1993,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,12 +1994,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,11 +1995,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,12 +1996,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,12 +1997,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,14 +1998,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1999,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1990,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11669 +1991,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11757 +1992,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11884 +1993,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12041 +1994,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12122 +1995,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12179 +1996,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12196 +1997,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12302 +1998,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12277 +1999,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12194 +1990,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11256 +1991,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11276 +1992,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11276 +1993,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11314 +1994,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11276 +1995,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11223 +1996,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11139 +1997,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11085 +1998,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,10971 +1999,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,10831 +1990,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,17 +1992,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1993,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1994,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1995,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1996,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1997,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1999,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1990,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1992,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1993,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1995,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1996,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1997,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1998,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1999,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1990,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1993,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1994,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1995,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1996,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1997,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1998,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1999,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1990,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,60 +1991,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,58 +1992,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,58 +1993,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,61 +1994,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,65 +1995,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,74 +1996,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,84 +1997,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,99 +1998,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,105 +1999,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,110 +1990,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,57 +1991,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,52 +1992,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1993,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1994,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,49 +1995,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,50 +1996,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1997,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,48 +1998,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,44 +1999,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,44 +1990,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,33 +1991,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,33 +1992,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,33 +1993,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,34 +1994,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,37 +1995,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,38 +1996,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,43 +1997,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,43 +1998,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,48 +1999,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,47 +1990,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,968 +1991,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,978 +1992,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,993 +1993,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1006 +1994,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1031 +1995,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1074 +1996,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1129 +1997,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1151 +1998,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1149 +1999,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1153 +1990,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28704 +1991,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28435 +1992,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28561 +1993,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28787 +1994,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28956 +1995,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,29242 +1996,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,29570 +1997,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,29564 +1998,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,29502 +1999,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,29100 +1990,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1991,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1992,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1993,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1994,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1995,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1996,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1997,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1998,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1999,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1990,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1993,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1994,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1995,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1996,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1997,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1999,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1990,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,280 +1991,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,285 +1992,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,306 +1993,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,346 +1994,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,380 +1995,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,414 +1996,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,455 +1997,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,495 +1998,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,542 +1999,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,583 +1990,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,227 +1991,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,226 +1992,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,225 +1993,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,231 +1994,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,231 +1995,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,231 +1996,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,232 +1997,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,224 +1998,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,221 +1999,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,226 +1990,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,109 +1991,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,114 +1992,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,127 +1993,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,129 +1994,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,140 +1995,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,147 +1996,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,154 +1997,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,156 +1998,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,148 +1999,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,157 +1990,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1088 +1991,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1111 +1992,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1144 +1993,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1185 +1994,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1234 +1995,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1273 +1996,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1308 +1997,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1324 +1998,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1345 +1999,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1365 +1990,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,69309 +1991,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,70053 +1992,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,71454 +1993,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,73154 +1994,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,74679 +1995,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,76048 +1996,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,77160 +1997,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,77736 +1998,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,77921 +1999,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,78179 +1990,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,53 +1991,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,53 +1992,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,49 +1993,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,59 +1994,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,56 +1995,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,62 +1996,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,56 +1997,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,76 +1998,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,74 +1999,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,72 +1990,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,91 +1991,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,94 +1992,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,112 +1993,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,109 +1994,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,118 +1995,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,113 +1996,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,129 +1997,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,108 +1998,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,151 +1999,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,149 +1990,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,426 +1991,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,415 +1992,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,426 +1993,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,443 +1994,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,445 +1995,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,448 +1996,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,466 +1997,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,496 +1998,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,541 +1999,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,530 +1990,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2654 +1991,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2715 +1992,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2832 +1993,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,3061 +1994,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,3290 +1995,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,3532 +1996,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,3827 +1997,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,4185 +1998,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,4540 +1999,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,4808 +1990,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1903 +1991,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1882 +1992,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1821 +1993,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1777 +1994,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1728 +1995,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1708 +1996,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1696 +1997,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1658 +1998,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1594 +1999,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1562 +1990,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3363 +1991,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3508 +1992,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3619 +1993,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3776 +1994,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3877 +1995,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3976 +1996,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4033 +1997,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4075 +1998,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4065 +1999,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4115 +1990,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,117757 +1991,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,119460 +1992,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,121927 +1993,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,124444 +1994,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,126247 +1995,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,127254 +1996,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,128050 +1997,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,129804 +1998,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,130655 +1999,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,131794 +1990,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,252916 +1991,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,254855 +1992,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,257336 +1993,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,260147 +1994,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,260077 +1995,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,258770 +1996,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,258187 +1997,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,257827 +1998,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,257266 +1999,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,256622 2004,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,100 -2005,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,103 -2006,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,105 -2007,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,103 -2008,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,104 -2009,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,103 -2010,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,103 -2011,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,116 -2012,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,124 -2013,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,128 -2014,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,141 -2015,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,150 -2016,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,148 -2017,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,158 -2018,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,172 -2019,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,176 -2020,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,168 -2010,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 2004,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2004,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2001,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2002,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2003,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 2004,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2005,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2007,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2008,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2009,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2017,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2019,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 2004,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 2004,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2001,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2002,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2003,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 2004,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2005,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2006,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2007,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2008,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2009,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2010,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2011,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2012,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2013,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2014,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2015,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2016,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2017,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2018,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2019,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2020,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2010,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2011,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2012,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2013,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2014,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2015,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2016,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2017,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2018,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2019,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2020,geoId/01099,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,129 -2000,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12658 -2001,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12527 -2002,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12425 -2003,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12285 2004,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12266 -2005,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12143 -2006,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12166 -2007,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12045 -2008,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12020 -2009,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11898 -2010,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11812 -2011,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11712 -2012,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11632 -2013,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11435 -2014,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11300 -2015,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11189 -2016,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11090 -2017,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10974 -2018,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10858 -2019,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10672 -2020,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10591 -2010,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,208 -2011,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,213 -2012,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,214 -2013,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,218 -2014,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,216 -2015,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,204 -2016,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,200 -2017,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,199 -2018,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,208 -2019,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,199 -2020,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,201 -2000,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2001,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2002,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2003,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 2004,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2005,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2006,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2007,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2008,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2009,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2010,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2011,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2012,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2013,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2014,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2015,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2016,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2017,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2018,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2019,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2020,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2000,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2001,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2002,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2003,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 2004,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2005,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2006,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2007,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2008,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2009,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2010,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2011,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2017,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2019,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2020,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2011,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2012,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2013,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2014,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2015,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2016,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2017,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2018,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2020,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2000,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5210 -2001,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5167 -2002,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5136 -2003,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5092 2004,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5106 -2005,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5051 -2006,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5098 -2007,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5072 -2008,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5094 -2009,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5061 -2010,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5065 -2011,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5002 -2012,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4967 -2013,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4920 -2014,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4886 -2015,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4804 -2016,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4786 -2017,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4768 -2018,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4719 -2019,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4593 -2020,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4585 -2010,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5147 -2011,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5089 -2012,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5049 -2013,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5007 -2014,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4967 -2015,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4890 -2016,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4881 -2017,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4858 -2018,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4806 -2019,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4693 -2020,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4677 -2010,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 2004,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2001,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2002,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2003,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 2004,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2005,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2006,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,134 -2007,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2008,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,160 -2009,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,170 -2010,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2011,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,171 -2012,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,169 -2013,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,172 -2014,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,167 -2015,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,168 -2016,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,176 -2017,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,176 -2018,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,176 -2019,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,178 -2020,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,181 -2010,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6558 -2011,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6521 -2012,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6473 -2013,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6325 -2014,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6230 -2015,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6187 -2016,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6106 -2017,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6025 -2018,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5949 -2019,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5892 -2020,geoId/01099,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5822 -2000,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7196 -2001,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7102 -2002,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,7019 -2003,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6912 2004,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6875 -2005,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6804 -2006,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6775 -2007,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6662 -2008,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6613 -2009,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6507 -2010,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6415 -2011,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6365 -2012,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6319 -2013,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6170 -2014,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6075 -2015,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6041 -2016,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5954 -2017,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5864 -2018,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5790 -2019,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5733 -2020,geoId/01099,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5660 -2000,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,91 -2001,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,95 -2002,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,90 -2003,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,92 +1990,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1991,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,17 +1992,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1993,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1994,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1995,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1996,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1997,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1998,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1999,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1990,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,74 +1991,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,74 +1992,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,72 +1993,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,76 +1994,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,83 +1995,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,91 +1996,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,105 +1997,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,118 +1998,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,130 +1999,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,139 2004,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,91 -2005,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,97 -2006,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,105 -2007,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,110 -2008,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,107 -2009,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,117 -2010,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,113 -2011,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,111 -2012,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,117 -2013,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,135 -2014,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,144 -2015,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,136 -2016,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,141 -2017,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,152 -2018,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,167 -2019,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,177 -2020,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,172 -2010,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 2004,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 2004,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2001,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2002,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2003,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 2004,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2006,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2008,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2010,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2004,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 2004,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2001,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2002,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2003,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 2004,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2005,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2006,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2007,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2008,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2009,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2010,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2011,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2012,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2013,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2014,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2015,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2016,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2017,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2018,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2019,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2020,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2010,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2011,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2012,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2013,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2014,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2015,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2016,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2017,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2018,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2019,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2020,geoId/01099,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2000,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11471 -2001,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11399 -2002,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11410 -2003,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11375 2004,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11312 -2005,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11340 -2006,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11226 -2007,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11179 -2008,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11162 -2009,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11100 -2010,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10976 -2011,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10860 -2012,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10709 -2013,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10476 -2014,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10342 -2015,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10245 -2016,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10174 -2017,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10010 -2018,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9838 -2019,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9664 -2020,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9528 -2010,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,196 -2011,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,200 -2012,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,197 -2013,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,202 -2014,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,209 -2015,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,200 -2016,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,209 -2017,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,202 -2018,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,195 -2019,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,206 -2020,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,197 -2000,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2001,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2002,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2003,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 2004,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2005,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2006,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2007,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2008,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2009,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2010,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2011,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2012,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2013,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2014,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2015,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2016,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2017,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2018,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2019,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2020,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2000,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2001,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2002,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2003,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 2004,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2005,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2008,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2009,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2010,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2014,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2016,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2018,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2019,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2020,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2010,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2011,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2013,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2014,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2015,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2016,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2017,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2018,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2019,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2020,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2000,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4506 -2001,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4508 -2002,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4561 -2003,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4548 2004,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4563 -2005,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4573 -2006,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4559 -2007,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4545 -2008,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4516 -2009,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4550 -2010,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4499 -2011,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4415 -2012,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4361 -2013,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4230 -2014,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4144 -2015,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4109 -2016,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4041 -2017,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3982 -2018,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3940 -2019,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3844 -2020,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3812 -2010,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4560 -2011,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4490 -2012,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4427 -2013,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4302 -2014,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4225 -2015,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4183 -2016,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4126 -2017,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4070 -2018,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4033 -2019,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3943 -2020,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3899 -2010,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 2004,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2001,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2002,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2003,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 2004,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2005,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2006,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2007,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2008,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2009,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,139 -2010,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,141 -2011,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,153 -2012,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,140 -2013,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,154 -2014,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2015,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,154 -2016,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,167 -2017,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,169 -2018,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,172 -2019,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2020,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,169 -2010,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6305 -2011,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6255 -2012,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6165 -2013,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6067 -2014,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6013 -2015,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5948 -2016,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5947 -2017,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5839 -2018,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5702 -2019,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5624 -2020,geoId/01099,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5528 -2000,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6754 -2001,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6677 -2002,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6626 -2003,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6584 2004,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6496 -2005,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6494 -2006,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6395 -2007,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6347 -2008,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6356 -2009,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6247 -2010,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6178 -2011,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6120 -2012,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,6037 -2013,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5923 -2014,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5864 -2015,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5803 -2016,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5792 -2017,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5680 -2018,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5546 -2019,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5469 -2020,geoId/01099,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5375 -2000,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1212 -2001,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1397 -2002,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1562 -2003,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1738 -2004,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2010 -2005,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2215 -2006,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2515 -2007,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2836 -2008,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3130 -2009,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3332 -2010,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3569 -2011,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3477 -2012,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3439 -2013,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3431 -2014,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3482 -2015,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3549 -2016,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3637 -2017,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3729 -2018,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3789 -2019,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3948 -2020,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4034 -2010,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,181 -2011,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2012,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,201 -2013,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,203 -2014,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,192 -2015,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,190 -2016,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,220 -2017,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,240 -2018,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,226 -2019,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,221 -2020,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,235 -2000,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2001,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2002,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2003,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2004,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2005,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2006,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2007,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2008,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2009,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2010,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2011,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2012,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2013,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2014,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2015,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2016,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2017,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2018,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2019,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2020,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2000,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2002,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2003,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2004,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2005,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2006,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2007,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2008,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2009,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2012,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2014,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2016,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2017,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2019,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2020,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2011,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2012,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2013,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2014,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2015,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2016,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2017,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2018,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2019,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2020,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2000,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,279 -2001,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,280 -2002,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,277 -2003,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,285 -2004,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,314 -2005,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,301 -2006,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,339 -2007,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,360 -2008,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,403 -2009,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,399 -2010,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,430 -2011,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,437 -2012,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,446 -2013,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,450 -2014,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,481 -2015,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,496 -2016,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,498 -2017,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,489 -2018,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,499 -2019,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,543 -2020,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,532 -2010,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,516 -2011,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,512 -2012,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,515 -2013,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,539 -2014,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,563 -2015,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,579 -2016,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,606 -2017,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,619 -2018,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,646 -2019,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,678 -2020,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,696 -2010,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2011,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2012,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2013,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2014,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2015,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2016,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2017,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2018,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2019,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2020,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2000,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2002,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2004,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2005,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2006,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2007,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2008,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2009,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2010,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2011,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2012,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2013,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2014,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2015,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2016,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2017,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2018,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2019,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2020,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2000,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2001,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2002,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2003,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2004,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2005,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2006,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2007,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2008,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2009,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2010,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2011,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,142 -2012,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2013,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2014,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,151 -2015,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,144 -2016,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,186 -2017,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,220 -2018,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,228 -2019,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,217 -2020,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,265 -2000,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,842 -2001,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,972 -2002,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1122 -2003,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1251 -2004,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1476 -2005,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1690 -2006,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1938 -2007,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2195 -2008,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2423 -2009,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2584 -2010,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2767 -2011,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2683 -2012,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2630 -2013,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2618 -2014,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2637 -2015,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2690 -2016,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2719 -2017,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2778 -2018,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2846 -2019,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2973 -2020,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3025 -2010,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2883 -2011,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2795 -2012,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2743 -2013,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2713 -2014,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2760 -2015,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2797 -2016,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2865 -2017,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2954 -2018,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3033 -2019,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3144 -2020,geoId/01101,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3233 -2000,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,115889 -2001,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,115603 -2002,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,115692 -2003,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,115312 -2004,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,115318 -2005,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,115413 -2006,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,116542 -2007,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,116715 -2008,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,116170 -2009,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,116173 -2010,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,116605 -2011,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,116834 -2012,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,116792 -2013,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,116765 -2014,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,116430 -2015,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,116130 -2016,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,116183 -2017,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,116391 -2018,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,115953 -2019,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,115819 -2020,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,115030 -2010,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,725 -2011,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,725 -2012,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,721 -2013,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,735 -2014,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,786 -2015,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,746 -2016,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,734 -2017,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,730 -2018,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,748 -2019,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,741 -2020,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,721 -2000,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,225 -2001,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,218 -2002,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2003,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,231 -2004,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,219 -2005,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,228 -2006,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,223 -2007,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,249 -2008,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,275 -2009,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,274 -2010,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,253 -2011,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,240 -2012,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,241 -2013,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,244 -2014,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,260 -2015,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,255 -2016,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,253 -2017,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,247 -2018,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,247 -2019,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,240 -2020,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,240 -2000,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1248 -2001,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1329 -2002,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1413 -2003,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1519 -2004,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1615 -2005,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1786 -2006,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1936 -2007,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2081 -2008,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2179 -2009,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2350 -2010,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2490 -2011,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2548 -2012,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2756 -2013,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2938 -2014,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3127 -2015,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3293 -2016,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3502 -2017,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3636 -2018,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3678 -2019,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3825 -2020,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3829 -2010,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2904 -2011,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2977 -2012,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3189 -2013,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3395 -2014,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3609 -2015,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3759 -2016,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3981 -2017,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4112 -2018,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4156 -2019,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4340 -2020,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4361 -2000,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,58167 -2001,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,58632 -2002,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,59596 -2003,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60267 -2004,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61386 -2005,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62522 -2006,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,64070 -2007,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65077 -2008,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65640 -2009,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66596 -2010,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67421 -2011,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68274 -2012,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68685 -2013,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,69382 -2014,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,69711 -2015,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,70014 -2016,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,70504 -2017,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,71451 -2018,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,71889 -2019,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72267 -2020,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72562 -2010,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68260 -2011,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69143 -2012,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69575 -2013,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70327 -2014,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70672 -2015,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70985 -2016,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71484 -2017,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72441 -2018,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72870 -2019,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73267 -2020,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73606 -2010,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2011,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2012,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,123 -2013,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2014,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2015,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2016,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,134 -2017,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2018,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2019,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2020,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2000,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2001,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2002,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2003,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2004,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2005,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2006,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2007,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2008,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2009,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2010,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2011,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2013,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2014,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2015,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2016,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2018,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2019,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2020,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2000,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,823 -2001,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,899 -2002,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,991 -2003,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,983 -2004,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1024 -2005,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1041 -2006,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1128 -2007,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1166 -2008,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1206 -2009,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1274 -2010,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1317 -2011,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1370 -2012,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1392 -2013,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1460 -2014,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1509 -2015,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1483 -2016,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1494 -2017,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1528 -2018,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1518 -2019,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1558 -2020,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1603 -2010,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46061 -2011,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45414 -2012,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44720 -2013,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43813 -2014,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42935 -2015,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42174 -2016,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41528 -2017,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40658 -2018,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39743 -2019,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39085 -2020,geoId/01101,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37979 -2000,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,55383 -2001,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,54479 -2002,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,53426 -2003,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,52266 -2004,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,51035 -2005,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,49795 -2006,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,49142 -2007,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,48097 -2008,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,46826 -2009,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45634 -2010,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45075 -2011,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44354 -2012,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43666 -2013,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42694 -2014,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41775 -2015,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41041 -2016,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40385 -2017,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39480 -2018,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38575 -2019,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37882 -2020,geoId/01101,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36747 -2000,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1521 -2001,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1803 -2002,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2061 -2003,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2302 -2004,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2607 -2005,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2892 -2006,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3251 -2007,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3681 -2008,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4071 -2009,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4379 -2010,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4667 -2011,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4356 -2012,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4224 -2013,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4004 -2014,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3904 -2015,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3938 -2016,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4044 -2017,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4133 -2018,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4136 -2019,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4237 -2020,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4306 -2010,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,242 -2011,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,235 -2012,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,229 -2013,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,230 -2014,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,213 -2015,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,190 -2016,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,212 -2017,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,212 -2018,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,214 -2019,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,215 -2020,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,236 -2000,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2001,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2002,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2003,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2004,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2005,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2006,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2007,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2008,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2009,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2010,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2011,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2012,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2013,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,146 -2014,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2015,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2016,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2017,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2018,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2019,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2020,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2000,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2002,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2003,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2004,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2005,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2006,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2007,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2008,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2009,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2010,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2012,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2013,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2014,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2015,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2018,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2020,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2010,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,123 -2011,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2012,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2013,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2014,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2015,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2016,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2017,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2018,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2019,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2020,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2000,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,268 -2001,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,266 -2002,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,292 -2003,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2004,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,327 -2005,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,362 -2006,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,372 -2007,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,416 -2008,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,444 -2009,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,474 -2010,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,533 -2011,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,512 -2012,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,525 -2013,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,522 -2014,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,501 -2015,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,526 -2016,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,501 -2017,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,518 -2018,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,510 -2019,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,524 -2020,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,522 -2010,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,632 -2011,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,598 -2012,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,610 -2013,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,614 -2014,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,599 -2015,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,614 -2016,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,606 -2017,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,624 -2018,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,625 -2019,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,636 -2020,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,676 -2010,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2011,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2012,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2013,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2014,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2015,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2016,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2017,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2018,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2019,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2020,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2000,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2002,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2003,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2004,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2005,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2006,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2007,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2008,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2009,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2010,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2011,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2012,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2013,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2014,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2015,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2016,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2017,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2018,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2019,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2020,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2000,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2001,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2002,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2003,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2004,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2005,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2006,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2007,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2008,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2009,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2010,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2011,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2012,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2013,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,155 -2014,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,163 -2015,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2016,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,174 -2017,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,192 -2018,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,196 -2019,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,196 -2020,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,231 -2000,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1180 -2001,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1380 -2002,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1582 -2003,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1787 -2004,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2005 -2005,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2271 -2006,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2588 -2007,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2905 -2008,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3236 -2009,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3444 -2010,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3626 -2011,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3362 -2012,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3248 -2013,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3038 -2014,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2977 -2015,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3018 -2016,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3120 -2017,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3175 -2018,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3201 -2019,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3276 -2020,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3304 -2010,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3768 -2011,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3488 -2012,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3363 -2013,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3166 -2014,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3111 -2015,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3140 -2016,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3253 -2017,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3333 -2018,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3359 -2019,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3433 -2020,geoId/01101,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3492 -2000,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,104806 -2001,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,104245 -2002,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,103870 -2003,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,103328 -2004,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,103067 -2005,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,103088 -2006,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,104983 -2007,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,104656 -2008,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,104090 -2009,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,103723 -2010,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,104657 -2011,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,104551 -2012,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,104468 -2013,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,104061 -2014,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,103831 -2015,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,103803 -2016,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,103534 -2017,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,103261 -2018,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,102753 -2019,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,102070 -2020,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,101269 -2010,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,626 -2011,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,617 -2012,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,605 -2013,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,627 -2014,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,607 -2015,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,628 -2016,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,637 -2017,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,606 -2018,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,598 -2019,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,605 -2020,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,583 -2000,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,311 -2001,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,307 -2002,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,280 -2003,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,299 -2004,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,299 -2005,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,291 -2006,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,302 -2007,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,289 -2008,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,284 -2009,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,286 -2010,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,274 -2011,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,254 -2012,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,237 -2013,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,247 -2014,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,228 -2015,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,238 -2016,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,255 -2017,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,239 -2018,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,227 -2019,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,232 -2020,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,224 -2000,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1009 -2001,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1095 -2002,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1177 -2003,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1292 -2004,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1421 -2005,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1541 -2006,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1743 -2007,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1951 -2008,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2034 -2009,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2234 -2010,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2358 -2011,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2444 -2012,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2637 -2013,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2817 -2014,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2974 -2015,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3128 -2016,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3345 -2017,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3484 -2018,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3531 -2019,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3642 -2020,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3649 -2010,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2690 -2011,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2788 -2012,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3011 -2013,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3186 -2014,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3373 -2015,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3522 -2016,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3751 -2017,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3913 -2018,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3964 -2019,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4054 -2020,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4089 -2000,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,50352 -2001,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,50688 -2002,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51203 -2003,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51635 -2004,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,52400 -2005,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53512 -2006,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55394 -2007,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55957 -2008,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56437 -2009,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56918 -2010,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,58087 -2011,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,58530 -2012,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,58786 -2013,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,59274 -2014,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,59519 -2015,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,59984 -2016,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60282 -2017,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60635 -2018,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60922 -2019,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60870 -2020,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61107 -2010,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58718 -2011,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59194 -2012,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59509 -2013,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60013 -2014,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60277 -2015,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60741 -2016,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61090 -2017,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61435 -2018,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61753 -2019,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61686 -2020,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61933 -2010,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2011,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2012,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2013,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2014,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2015,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2016,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2017,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2018,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2019,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2020,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2000,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2001,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2002,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2003,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2004,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2005,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2006,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2007,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2008,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2009,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2011,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2012,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2014,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2015,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2016,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2018,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2000,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,830 -2001,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,891 -2002,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,917 -2003,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,928 -2004,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,938 -2005,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,979 -2006,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1039 -2007,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1008 -2008,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1026 -2009,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1011 -2010,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1040 -2011,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1088 -2012,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1163 -2013,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1185 -2014,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1223 -2015,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1231 -2016,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1270 -2017,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1291 -2018,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1302 -2019,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1297 -2020,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1316 -2010,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43678 -2011,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43061 -2012,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42529 -2013,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41445 -2014,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40820 -2015,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40183 -2016,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39360 -2017,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38609 -2018,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37762 -2019,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37026 -2020,geoId/01101,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35994 -2000,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,52280 -2001,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,51238 -2002,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,50263 -2003,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,49140 -2004,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,47973 -2005,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,46734 -2006,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,46472 -2007,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45419 -2008,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44275 -2009,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43232 -2010,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42859 -2011,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,42195 -2012,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,41605 -2013,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,40499 -2014,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39846 -2015,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39181 -2016,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38346 -2017,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37564 -2018,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36729 -2019,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,35985 -2020,geoId/01101,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,34923 -2000,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1531 -2001,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1724 -2002,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1881 -2003,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2082 -2004,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2291 -2005,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2642 -2006,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2871 -2007,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3241 -2008,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3522 -2009,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3824 -2010,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4033 -2011,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4131 -2012,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4093 -2013,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4088 -2014,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4167 -2015,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4233 -2016,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4378 -2017,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4495 -2018,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4618 -2019,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4699 -2020,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4841 -2010,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,221 -2011,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,216 -2012,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,207 -2013,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,205 -2014,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,196 -2015,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,218 -2016,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,222 -2017,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,221 -2018,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,225 -2019,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,214 -2020,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,226 -2000,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2001,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2002,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2003,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2004,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2005,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2006,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2007,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2008,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2009,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,157 -2010,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2011,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,168 -2012,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,156 -2013,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2014,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2015,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,162 -2016,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,162 -2017,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2018,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,152 -2019,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,152 -2020,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,163 -2000,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2004,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2005,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2006,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2008,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2012,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2015,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2020,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2000,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2001,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2002,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2003,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2004,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2005,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2006,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2007,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2008,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2009,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2010,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,152 -2011,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2012,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,168 -2013,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,168 -2014,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,171 -2015,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,185 -2016,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,185 -2017,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,199 -2018,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,197 -2019,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,199 -2020,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,208 -2010,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2011,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,213 -2012,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,207 -2013,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,206 -2014,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,220 -2015,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,234 -2016,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,234 -2017,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,251 -2018,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,262 -2019,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,260 -2020,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,263 -2010,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2011,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2012,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2013,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2014,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2015,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2016,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2017,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2018,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2019,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2020,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2000,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2003,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2005,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2006,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2007,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2008,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2009,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2010,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2011,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2012,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2014,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2019,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2000,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2003,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2004,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2005,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2006,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2007,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2008,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2009,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2010,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2011,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2012,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2013,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2014,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2015,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2016,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2017,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2018,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2019,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2020,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2000,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1406 -2001,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1578 -2002,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1703 -2003,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1886 -2004,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2060 -2005,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2361 -2006,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2555 -2007,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2886 -2008,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3120 -2009,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3389 -2010,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3565 -2011,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3642 -2012,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3621 -2013,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3622 -2014,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3702 -2015,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3726 -2016,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3857 -2017,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3960 -2018,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4074 -2019,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4149 -2020,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4273 -2010,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3640 -2011,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3712 -2012,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3694 -2013,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3692 -2014,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3789 -2015,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3818 -2016,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3952 -2017,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4062 -2018,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4190 -2019,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4253 -2020,geoId/01103,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4379 -2000,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,55136 -2001,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,55209 -2002,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,55069 -2003,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,55383 -2004,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,55225 -2005,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,55421 -2006,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,55941 -2007,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,55997 -2008,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,56401 -2009,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,56619 -2010,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,56662 -2011,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,56752 -2012,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,56865 -2013,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,56668 -2014,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,56505 -2015,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,56289 -2016,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,56077 -2017,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,55939 -2018,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,55937 -2019,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,56134 -2020,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,56138 -2010,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,966 -2011,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,959 -2012,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,961 -2013,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,979 -2014,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,996 -2015,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,989 -2016,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,997 -2017,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,986 -2018,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1013 -2019,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1019 -2020,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1037 -2000,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,350 -2001,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,392 -2002,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,369 -2003,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,388 -2004,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,384 -2005,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,393 -2006,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,404 -2007,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,416 -2008,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,467 -2009,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,458 -2010,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,455 -2011,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,446 -2012,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,446 -2013,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,440 -2014,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,434 -2015,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,444 -2016,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,444 -2017,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,434 -2018,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,451 -2019,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,447 -2020,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,468 -2000,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,280 -2001,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,302 -2002,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,300 -2003,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,324 -2004,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,349 -2005,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,330 -2006,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,344 -2007,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,369 -2008,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,364 -2009,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,377 -2010,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,381 -2011,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,397 -2012,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,422 -2013,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,430 -2014,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,434 -2015,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,442 -2016,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,445 -2017,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,439 -2018,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,447 -2019,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,436 -2020,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,431 -2010,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,497 -2011,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,516 -2012,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,542 -2013,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,558 -2014,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,583 -2015,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,588 -2016,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,595 -2017,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,587 -2018,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,600 -2019,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,604 -2020,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,613 -2000,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6536 -2001,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6613 -2002,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6683 -2003,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6817 -2004,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6846 -2005,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6893 -2006,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7022 -2007,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7083 -2008,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7216 -2009,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7330 -2010,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7413 -2011,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7468 -2012,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7494 -2013,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7516 -2014,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7520 -2015,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7577 -2016,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7686 -2017,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7739 -2018,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7845 -2019,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7931 -2020,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7970 -2010,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7833 -2011,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7898 -2012,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7941 -2013,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8001 -2014,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8021 -2015,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8094 -2016,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8223 -2017,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8287 -2018,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8398 -2019,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8518 -2020,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8579 -2010,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2011,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2012,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2013,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2014,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2015,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2017,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2018,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2019,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2020,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2000,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2002,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2003,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2007,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2008,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2011,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2016,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2000,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,568 -2001,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,572 -2002,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,631 -2003,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,667 -2004,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,698 -2005,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,725 -2006,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,793 -2007,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,850 -2008,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,890 -2009,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,927 -2010,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,978 -2011,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,999 -2012,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1039 -2013,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1080 -2014,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1130 -2015,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1135 -2016,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1159 -2017,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1184 -2018,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1188 -2019,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1234 -2020,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1279 -2010,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48324 -2011,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48361 -2012,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48427 -2013,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48193 -2014,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48030 -2015,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47723 -2016,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47393 -2017,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47233 -2018,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47094 -2019,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47211 -2020,geoId/01103,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47161 -2000,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,47390 -2001,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,47316 -2002,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,47071 -2003,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,47178 -2004,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,46932 -2005,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,47058 -2006,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,47357 -2007,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,47255 -2008,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,47443 -2009,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,47501 -2010,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,47406 -2011,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,47413 -2012,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,47434 -2013,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,47170 -2014,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,46956 -2015,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,46657 -2016,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,46308 -2017,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,46110 -2018,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45971 -2019,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,46049 -2020,geoId/01103,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45954 -2000,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2153 -2001,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2420 -2002,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2622 -2003,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2900 -2004,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3139 -2005,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3428 -2006,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3752 -2007,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4141 -2008,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4525 -2009,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4832 -2010,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5132 -2011,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5177 -2012,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5075 -2013,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5010 -2014,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5041 -2015,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5084 -2016,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5281 -2017,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5340 -2018,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5448 -2019,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5579 -2020,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5620 -2010,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,273 -2011,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,260 -2012,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,239 -2013,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,226 -2014,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,214 -2015,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,218 -2016,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,228 -2017,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,240 -2018,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,237 -2019,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,236 -2020,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,243 -2000,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2001,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2002,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2003,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2004,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2005,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2006,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2007,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2008,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2009,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,197 -2010,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,213 -2011,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,203 -2012,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2013,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2014,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2015,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2016,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,177 -2017,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,184 -2018,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,183 -2019,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 -2020,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,193 -2000,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2003,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2004,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2005,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2006,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2007,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2010,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2010,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2011,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2012,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2013,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2014,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2019,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2020,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2000,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2001,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2002,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2003,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2004,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2005,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2006,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2007,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,186 -2008,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,205 -2009,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,226 -2010,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2011,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,240 -2012,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2013,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2014,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,221 -2015,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,218 -2016,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,224 -2017,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,238 -2018,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,243 -2019,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,243 -2020,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,248 -2010,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,274 -2011,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,274 -2012,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,279 -2013,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,254 -2014,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,262 -2015,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,256 -2016,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,258 -2017,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,281 -2018,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,288 -2019,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,289 -2020,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,305 -2010,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2011,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2013,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2014,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2015,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2016,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2017,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2019,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2000,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2001,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2002,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2003,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2004,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2005,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2006,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2007,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2008,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2009,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2010,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2011,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2012,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2013,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2014,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2015,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2016,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2017,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2018,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2019,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2020,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2000,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2002,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2004,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2005,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2006,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2007,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2008,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2009,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2010,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2011,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2012,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2013,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2014,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2015,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2016,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2017,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2018,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2019,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2020,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2000,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1956 -2001,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2188 -2002,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2359 -2003,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2586 -2004,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2799 -2005,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3056 -2006,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3321 -2007,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3667 -2008,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3998 -2009,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4240 -2010,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4507 -2011,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4561 -2012,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4484 -2013,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4442 -2014,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4486 -2015,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4534 -2016,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4713 -2017,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4744 -2018,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4831 -2019,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4956 -2020,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4969 -2010,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4595 -2011,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4639 -2012,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4560 -2013,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4511 -2014,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4553 -2015,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4604 -2016,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4783 -2017,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4828 -2018,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4919 -2019,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5038 -2020,geoId/01103,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5063 -2000,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,52401 -2001,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,52329 -2002,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,52194 -2003,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,52533 -2004,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,52351 -2005,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,52473 -2006,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,52927 -2007,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53018 -2008,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53246 -2009,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53679 -2010,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53815 -2011,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53998 -2012,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,54115 -2013,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53859 -2014,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53783 -2015,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53710 -2016,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53354 -2017,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53166 -2018,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53213 -2019,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53218 -2020,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,53284 -2010,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,961 -2011,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,973 -2012,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,998 -2013,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1002 -2014,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1009 -2015,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1019 -2016,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1018 -2017,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1013 -2018,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1038 -2019,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1037 -2020,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1024 -2000,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,379 -2001,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,374 -2002,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,405 -2003,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,420 -2004,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,406 -2005,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,415 -2006,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,450 -2007,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,467 -2008,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,464 -2009,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,482 -2010,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,483 -2011,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,481 -2012,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,496 -2013,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,481 -2014,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,482 -2015,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,499 -2016,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,495 -2017,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,491 -2018,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,504 -2019,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,508 -2020,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,508 -2000,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2001,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,235 -2002,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,241 -2003,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,244 -2004,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,248 -2005,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,296 -2006,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,295 -2007,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,300 -2008,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,311 -2009,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,287 -2010,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,320 -2011,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,330 -2012,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,347 -2013,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,325 -2014,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,325 -2015,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,315 -2016,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,327 -2017,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,319 -2018,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,330 -2019,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,318 -2020,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,319 -2010,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,425 -2011,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,443 -2012,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,465 -2013,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,444 -2014,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,455 -2015,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,459 -2016,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,468 -2017,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,476 -2018,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,498 -2019,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,470 -2020,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,498 -2000,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5898 -2001,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5949 -2002,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5930 -2003,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6071 -2004,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6053 -2005,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6102 -2006,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6251 -2007,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6313 -2008,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6451 -2009,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6652 -2010,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6709 -2011,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6760 -2012,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6819 -2013,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6863 -2014,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6963 -2015,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7054 -2016,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7139 -2017,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7148 -2018,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7220 -2019,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7233 -2020,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7309 -2010,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7071 -2011,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7151 -2012,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7268 -2013,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7317 -2014,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7452 -2015,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7540 -2016,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7656 -2017,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7696 -2018,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7803 -2019,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7803 -2020,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7922 -2010,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2011,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2012,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2013,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2014,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2016,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2017,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2018,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2019,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2020,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2000,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2001,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2004,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2005,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2006,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2008,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2009,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2010,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2011,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2014,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2016,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2018,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2019,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2000,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,502 -2001,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,523 -2002,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,545 -2003,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,583 -2004,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,621 -2005,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,682 -2006,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,688 -2007,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,732 -2008,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,774 -2009,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,813 -2010,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,894 -2011,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,929 -2012,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1009 -2013,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1044 -2014,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1084 -2015,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1085 -2016,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1108 -2017,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1163 -2018,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1206 -2019,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1188 -2020,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1232 -2010,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46220 -2011,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46337 -2012,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46363 -2013,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46099 -2014,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45931 -2015,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45754 -2016,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45292 -2017,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45108 -2018,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45045 -2019,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45057 -2020,geoId/01103,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45046 -2000,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45387 -2001,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45237 -2002,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45054 -2003,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45195 -2004,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45001 -2005,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44951 -2006,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45213 -2007,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45173 -2008,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45204 -2009,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45407 -2010,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45368 -2011,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45456 -2012,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45402 -2013,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,45109 -2014,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44892 -2015,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44713 -2016,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44239 -2017,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,44000 -2018,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43898 -2019,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43923 -2020,geoId/01103,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,43870 -2000,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,52 -2001,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,53 -2002,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,52 -2003,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,55 -2004,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,56 -2005,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,50 -2006,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,44 -2007,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,48 -2008,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,53 -2009,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,54 -2010,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,58 -2011,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,63 -2012,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,65 -2013,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,72 -2014,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,65 -2015,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,77 -2016,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,79 -2017,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,86 -2018,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,64 -2019,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,73 -2020,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,80 -2010,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2001,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2002,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2003,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2004,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2005,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2006,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2007,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2005,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2008,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2009,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2011,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2012,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2013,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2016,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2017,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2018,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2020,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2010,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2011,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2012,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2013,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2014,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2015,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2016,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2017,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2018,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2020,geoId/01105,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2000,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6353 -2001,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6257 -2002,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6186 -2003,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6052 -2004,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5933 -2005,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5804 -2006,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5691 -2007,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5703 -2008,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5681 -2009,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5588 -2010,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5535 -2011,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5476 -2012,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5364 -2013,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5232 -2014,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5144 -2015,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5021 -2016,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4966 -2017,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4893 -2018,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4773 -2019,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4705 -2020,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,4576 -2010,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4423 -2001,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4394 -2002,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4344 -2003,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4304 -2004,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4226 -2005,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4147 -2006,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4068 -2007,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4050 -2008,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4020 -2009,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3930 -2010,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3921 -2011,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3857 -2012,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3783 -2013,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3686 -2014,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3594 -2015,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3519 -2016,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3472 -2017,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3391 -2018,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3340 -2019,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3273 -2020,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3180 -2010,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3928 -2011,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3874 -2012,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3800 -2013,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3708 -2014,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3612 -2015,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3536 -2016,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3495 -2017,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3412 -2018,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3360 -2019,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3301 -2020,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3211 -2010,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2004,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2005,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2014,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2018,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2020,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2010,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1591 -2011,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1592 -2012,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1555 -2013,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1511 -2014,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1521 -2015,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1470 -2016,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1465 -2017,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1475 -2018,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1407 -2019,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1402 -2020,geoId/01105,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1367 -2000,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1905 -2001,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1838 -2002,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1817 -2003,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1720 -2004,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1680 -2005,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1620 -2006,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1592 -2007,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1619 -2008,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1627 -2009,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1625 -2010,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1577 -2011,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1566 -2012,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1527 -2013,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1484 -2014,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1488 -2015,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1434 -2016,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1430 -2017,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1440 -2018,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1369 -2019,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1362 -2020,geoId/01105,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1324 -2000,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,50 -2001,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,56 -2002,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,51 -2003,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,50 -2004,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,49 -2005,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,52 -2006,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,49 -2007,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,56 -2008,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,58 -2009,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,58 -2010,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,61 -2011,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,70 -2012,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,68 -2013,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,75 -2014,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,69 -2015,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,71 -2016,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,72 -2017,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,68 -2018,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,64 -2019,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,70 -2020,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,68 -2010,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2001,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2004,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2006,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2002,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2004,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2005,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2006,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2007,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2008,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2009,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2010,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2011,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2012,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2013,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2014,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2015,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2016,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2017,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2018,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2019,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2020,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2010,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2011,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2012,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2013,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2014,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2015,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2016,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2017,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2018,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2019,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2020,geoId/01105,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2000,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5354 -2001,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5279 -2002,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5260 -2003,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5144 -2004,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5115 -2005,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4975 -2006,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4893 -2007,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4967 -2008,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4930 -2009,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4990 -2010,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4910 -2011,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4843 -2012,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4669 -2013,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4626 -2014,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4531 -2015,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4481 -2016,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4421 -2017,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4257 -2018,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4148 -2019,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4092 -2020,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,3963 -2010,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2006,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2009,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2018,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2019,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2010,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2015,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2020,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2000,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3614 -2001,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3563 -2002,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3532 -2003,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3486 -2004,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3491 -2005,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3383 -2006,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3348 -2007,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3361 -2008,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3328 -2009,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3340 -2010,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3309 -2011,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3269 -2012,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3150 -2013,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3120 -2014,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3054 -2015,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3022 -2016,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2976 -2017,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2837 -2018,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2806 -2019,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2749 -2020,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2638 -2010,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3315 -2011,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3278 -2012,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3156 -2013,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3126 -2014,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3064 -2015,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3029 -2016,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2981 -2017,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2846 -2018,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2815 -2019,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2763 -2020,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2653 -2010,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2001,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2002,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2003,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2004,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2005,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2006,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2009,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1562 -2011,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1530 -2012,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1476 -2013,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1461 -2014,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1425 -2015,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1401 -2016,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1391 -2017,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1364 -2018,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1283 -2019,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1281 -2020,geoId/01105,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1262 -2000,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1705 -2001,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1681 -2002,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1693 -2003,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1620 -2004,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1582 -2005,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1553 -2006,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1503 -2007,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1557 -2008,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1553 -2009,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1599 -2010,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1547 -2011,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1515 -2012,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1460 -2013,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1446 -2014,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1413 -2015,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1390 -2016,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1378 -2017,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1349 -2018,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1268 -2019,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1264 -2020,geoId/01105,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1241 -2000,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,75 -2001,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,74 -2002,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,79 -2003,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,90 -2004,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,88 -2005,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,106 -2006,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,101 -2007,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,112 -2008,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,113 -2009,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,121 -2010,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,124 -2011,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,135 -2012,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,145 -2013,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,170 -2014,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,265 -2015,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,310 -2016,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,319 -2017,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,333 -2018,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,361 -2019,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,381 -2020,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,401 -2010,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2001,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2002,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2003,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2004,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2005,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2008,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2009,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2015,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2010,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2015,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2016,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2017,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2018,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2019,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2020,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2010,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2006,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2001,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2002,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2003,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2004,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2005,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2006,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2007,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2008,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2009,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2010,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2011,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2012,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2013,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2014,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,207 -2015,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,250 -2016,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,254 -2017,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,262 -2018,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,289 -2019,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,300 -2020,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,319 -2010,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2011,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2012,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2013,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2014,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,208 -2015,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,251 -2016,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,256 -2017,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,264 -2018,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,292 -2019,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,302 -2020,geoId/01107,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,322 -2000,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11019 -2001,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10993 -2002,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10946 -2003,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10711 -2004,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10642 -2005,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10497 -2006,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10434 -2007,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10369 -2008,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10370 -2009,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10220 -2010,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,10180 -2011,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9958 -2012,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9910 -2013,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9858 -2014,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9942 -2015,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9994 -2016,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9872 -2017,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9794 -2018,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9629 -2019,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9550 -2020,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9490 -2010,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2011,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2013,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2015,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2020,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2000,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2005,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2008,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2001,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2002,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2006,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2008,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2013,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2018,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2019,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2020,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2000,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4953 -2001,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4944 -2002,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4858 -2003,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4734 -2004,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4698 -2005,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4614 -2006,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4528 -2007,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4580 -2008,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4611 -2009,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4480 -2010,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4479 -2011,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4370 -2012,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4340 -2013,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4312 -2014,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4349 -2015,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4399 -2016,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4321 -2017,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4268 -2018,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4185 -2019,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4130 -2020,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4122 -2010,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4521 -2011,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4423 -2012,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4391 -2013,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4371 -2014,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4402 -2015,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4452 -2016,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4384 -2017,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4332 -2018,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4233 -2019,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4188 -2020,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4187 -2010,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2001,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2002,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2003,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2004,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2005,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2006,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2007,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2008,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2009,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2010,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2011,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2012,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2013,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2014,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2015,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2016,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2017,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2018,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2019,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2020,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2010,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5656 -2011,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5545 -2012,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5523 -2013,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5489 -2014,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5538 -2015,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5539 -2016,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5493 -2017,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5468 -2018,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5389 -2019,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5360 -2020,geoId/01107,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5312 -2000,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5977 -2001,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5960 -2002,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5993 -2003,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5884 -2004,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5847 -2005,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5786 -2006,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5810 -2007,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5686 -2008,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5652 -2009,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5633 -2010,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5593 -2011,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5479 -2012,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5449 -2013,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5413 -2014,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5464 -2015,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5464 -2016,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5407 -2017,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5388 -2018,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5311 -2019,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5280 -2020,geoId/01107,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5225 -2000,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,73 -2001,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,79 -2002,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,93 -2003,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,110 -2004,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,124 -2005,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,147 -2006,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,153 -2007,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,172 -2008,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,173 -2009,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,192 -2010,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,193 -2011,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,199 -2012,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,195 -2013,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,252 -2014,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,565 -2015,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,711 -2016,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,621 -2017,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,604 -2018,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,613 -2019,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,655 -2020,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,660 -2010,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2001,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2002,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2003,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2004,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2006,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2007,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2008,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2016,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2020,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2010,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2016,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2020,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2011,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2012,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2016,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2000,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2006,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2007,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2008,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2009,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2010,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2011,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2012,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2016,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2000,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2001,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2002,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2003,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2004,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2005,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2006,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2007,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2008,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2009,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2010,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2011,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2012,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2013,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,176 -2014,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,483 -2015,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,626 -2016,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,536 -2017,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,520 -2018,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,525 -2019,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,568 -2020,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,571 -2010,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2011,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2012,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,126 -2013,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,177 -2014,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,484 -2015,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,627 -2016,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,537 -2017,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,521 -2018,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,526 -2019,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,569 -2020,geoId/01107,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,571 -2000,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9714 -2001,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9727 -2002,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9717 -2003,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9616 -2004,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9526 -2005,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9442 -2006,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9440 -2007,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9336 -2008,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9295 -2009,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9281 -2010,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9252 -2011,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9065 -2012,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9064 -2013,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9029 -2014,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9511 -2015,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9773 -2016,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9525 -2017,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9493 -2018,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9346 -2019,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9354 -2020,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,9242 -2010,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2011,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2012,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2014,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2015,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2017,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2018,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2019,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2020,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2000,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2001,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2002,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2000,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2010,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2016,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2000,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4005 -2001,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3989 -2002,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3993 -2003,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3961 -2004,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3930 -2005,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3824 -2006,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3795 -2007,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3748 -2008,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3765 -2009,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3707 -2010,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3697 -2011,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3620 -2012,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3628 -2013,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3605 -2014,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3841 -2015,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3947 -2016,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3849 -2017,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3820 -2018,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3764 -2019,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3759 -2020,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3733 -2010,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3747 -2011,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3678 -2012,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3692 -2013,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3668 -2014,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3902 -2015,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4009 -2016,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3908 -2017,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3887 -2018,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3849 -2019,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3846 -2020,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3812 -2010,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2001,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2002,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2003,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2004,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2005,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2006,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2007,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2008,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2009,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2010,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2011,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2012,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2013,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2014,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2015,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2016,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2017,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2018,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2019,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2020,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2010,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5521 -2011,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5410 -2012,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5397 -2013,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5381 -2014,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5622 -2015,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5762 -2016,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5611 -2017,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5606 -2018,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5514 -2019,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5530 -2020,geoId/01107,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5439 -2000,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5635 -2001,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5662 -2002,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5644 -2003,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5571 -2004,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5506 -2005,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5535 -2006,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5561 -2007,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5494 -2008,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5432 -2009,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5465 -2010,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5444 -2011,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5327 -2012,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5311 -2013,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5283 -2014,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5535 -2015,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5674 -2016,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5527 -2017,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5519 -2018,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5408 -2019,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5412 -2020,geoId/01107,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5330 -2000,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,184 -2001,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,194 -2002,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,220 -2003,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,236 -2004,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,249 -2005,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,270 -2006,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,278 -2007,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,287 -2008,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,329 -2009,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,311 -2010,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,334 -2011,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,340 -2012,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,329 -2013,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,341 -2014,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,344 -2015,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,341 -2016,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,337 -2017,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,346 -2018,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,376 -2019,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,381 -2020,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,383 -2010,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2000,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2001,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2002,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2003,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2004,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2005,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2006,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2007,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2008,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2009,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2010,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2011,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2012,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2013,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2014,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2015,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2016,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2017,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2018,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2019,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2020,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2010,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2011,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2012,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2013,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2014,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2015,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2016,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2017,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2018,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2019,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2020,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2010,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2000,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2001,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2002,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2003,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,177 -2004,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,186 -2005,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,196 -2006,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,198 -2007,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,202 -2008,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,239 -2009,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2010,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,237 -2011,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,241 -2012,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,217 -2013,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,223 -2014,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,225 -2015,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2016,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,216 -2017,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,219 -2018,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,248 -2019,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,249 -2020,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,237 -2010,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,247 -2011,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,257 -2012,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,239 -2013,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,246 -2014,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,249 -2015,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,239 -2016,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,239 -2017,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,247 -2018,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,272 -2019,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,275 -2020,geoId/01109,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,267 -2000,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15515 -2001,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15524 -2002,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15439 -2003,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15575 -2004,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15803 -2005,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,15729 -2006,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16007 -2007,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16361 -2008,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16463 -2009,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16685 -2010,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16906 -2011,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16914 -2012,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17004 -2013,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17222 -2014,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16907 -2015,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17090 -2016,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,17065 -2017,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16955 -2018,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16912 -2019,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16769 -2020,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,16806 -2010,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,190 -2011,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,199 -2012,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,181 -2013,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,190 -2014,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,191 -2015,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,201 -2016,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,191 -2017,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,202 -2018,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,203 -2019,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,203 -2020,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,191 -2000,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2001,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2002,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2003,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2004,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2005,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2006,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2007,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2008,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2009,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2010,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2011,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2012,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2013,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2014,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2015,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2016,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2017,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2018,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2019,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2020,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2000,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2001,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2002,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2003,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2004,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,151 -2005,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2006,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,194 -2007,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,223 -2008,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,247 -2009,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,269 -2010,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,291 -2011,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,260 -2012,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,273 -2013,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,262 -2014,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,258 -2015,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,288 -2016,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,316 -2017,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,334 -2018,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,295 -2019,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,291 -2020,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,282 -2010,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,334 -2011,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,309 -2012,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,318 -2013,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,301 -2014,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,312 -2015,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,336 -2016,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,369 -2017,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,387 -2018,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,342 -2019,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,354 -2020,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,342 -2000,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5957 -2001,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6006 -2002,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6068 -2003,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6080 -2004,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6127 -2005,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6062 -2006,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6218 -2007,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6350 -2008,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6428 -2009,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6489 -2010,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6635 -2011,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6654 -2012,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6733 -2013,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6813 -2014,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6677 -2015,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6783 -2016,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6784 -2017,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6719 -2018,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6780 -2019,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6727 -2020,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6788 -2010,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6741 -2011,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6763 -2012,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6849 -2013,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6938 -2014,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6794 -2015,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6921 -2016,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6921 -2017,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6865 -2018,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6911 -2019,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6874 -2020,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6940 -2010,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2001,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,165 -2002,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2003,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,174 -2004,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,178 -2005,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,171 -2006,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,179 -2007,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,195 -2008,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,195 -2009,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,194 -2010,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,212 -2011,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,213 -2012,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,218 -2013,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,227 -2014,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,228 -2015,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,248 -2016,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,251 -2017,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,263 -2018,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,252 -2019,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,277 -2020,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,273 -2010,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9842 -2011,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9870 -2012,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9869 -2013,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10016 -2014,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9842 -2015,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9871 -2016,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9823 -2017,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9755 -2018,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9702 -2019,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9608 -2020,geoId/01109,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9598 -2000,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9237 -2001,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9174 -2002,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8991 -2003,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9091 -2004,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9251 -2005,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9220 -2006,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9324 -2007,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9496 -2008,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9503 -2009,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9634 -2010,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9670 -2011,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9690 -2012,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9683 -2013,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9822 -2014,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9644 -2015,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9665 -2016,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9608 -2017,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9529 -2018,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9479 -2019,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9365 -2020,geoId/01109,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9359 -2000,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,188 -2001,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,219 -2002,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,219 -2003,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,233 -2004,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,254 -2005,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,296 -2006,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,343 -2007,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,338 -2008,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,372 -2009,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,393 -2010,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,415 -2011,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,441 -2012,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,411 -2013,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,402 -2014,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,389 -2015,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,373 -2016,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,379 -2017,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,375 -2018,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,403 -2019,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,415 -2020,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,423 -2010,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2000,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2001,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2002,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2003,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2004,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2005,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2006,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2007,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2008,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2009,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2010,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2011,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2013,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2014,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2015,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2016,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2017,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2018,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2019,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2010,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2011,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2012,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2013,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2014,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2015,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2016,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2017,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2018,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2019,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2020,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2010,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2006,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2008,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2001,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,173 -2002,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,172 -2003,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 -2004,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,207 -2005,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,226 -2006,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,266 -2007,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,257 -2008,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,289 -2009,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,302 -2010,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,315 -2011,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,328 -2012,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,299 -2013,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,290 -2014,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,276 -2015,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,256 -2016,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,267 -2017,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,262 -2018,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,290 -2019,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2020,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,302 -2010,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,336 -2011,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,351 -2012,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,321 -2013,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,309 -2014,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,296 -2015,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,275 -2016,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,289 -2017,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,284 -2018,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,312 -2019,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,316 -2020,geoId/01109,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,328 -2000,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13861 -2001,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13907 -2002,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,13817 -2003,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14006 -2004,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14287 -2005,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14477 -2006,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14681 -2007,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14775 -2008,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,14985 -2009,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15171 -2010,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15317 -2011,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15336 -2012,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15481 -2013,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15763 -2014,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15577 -2015,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15714 -2016,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15759 -2017,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15765 -2018,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15699 -2019,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15469 -2020,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,15354 -2010,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,195 -2011,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,203 -2012,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2013,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,204 -2014,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,216 -2015,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,218 -2016,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,219 -2017,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,217 -2018,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,215 -2019,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,207 -2020,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,203 -2000,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2001,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2002,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2003,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2004,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2005,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2006,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2007,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2008,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2009,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2010,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2011,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2012,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2013,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2014,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2015,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2016,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2017,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2018,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2019,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2020,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2000,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2001,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2002,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,153 -2003,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,192 -2004,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,206 -2005,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,238 -2006,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,267 -2007,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,293 -2008,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,317 -2009,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,343 -2010,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,377 -2011,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,378 -2012,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,411 -2013,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,396 -2014,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,366 -2015,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,372 -2016,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,398 -2017,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,411 -2018,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,414 -2019,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,342 -2020,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,318 -2010,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,427 -2011,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,428 -2012,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,469 -2013,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,447 -2014,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,434 -2015,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,439 -2016,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,462 -2017,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,483 -2018,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,496 -2019,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,411 -2020,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,392 -2000,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4906 -2001,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4981 -2002,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4945 -2003,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4965 -2004,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5115 -2005,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5177 -2006,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5250 -2007,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5279 -2008,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5364 -2009,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5385 -2010,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5418 -2011,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5414 -2012,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5540 -2013,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5700 -2014,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5632 -2015,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5729 -2016,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5736 -2017,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5740 -2018,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5716 -2019,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5665 -2020,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5664 -2010,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5522 -2011,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5518 -2012,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5651 -2013,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5815 -2014,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5755 -2015,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5867 -2016,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5878 -2017,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5889 -2018,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5871 -2019,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5810 -2020,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5808 -2010,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2000,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2001,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2002,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,164 -2003,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,177 -2004,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2005,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2006,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,181 -2007,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2008,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,201 -2009,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,223 -2010,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,226 -2011,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,228 -2012,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,234 -2013,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,246 -2014,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,265 -2015,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,281 -2016,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,284 -2017,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,289 -2018,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,292 -2019,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,289 -2020,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,280 -2010,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9394 -2011,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9409 -2012,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9401 -2013,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9533 -2014,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9449 -2015,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9474 -2016,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9482 -2017,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9460 -2018,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9412 -2019,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9326 -2020,geoId/01109,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9233 -2000,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8598 -2001,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8544 -2002,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8461 -2003,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8569 -2004,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8680 -2005,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8786 -2006,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8885 -2007,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8914 -2008,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9010 -2009,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9126 -2010,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9200 -2011,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9213 -2012,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9197 -2013,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9316 -2014,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9209 -2015,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9227 -2016,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9237 -2017,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9218 -2018,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9168 -2019,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,9075 -2020,geoId/01109,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8992 -2000,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,128 -2001,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,148 -2002,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,162 -2003,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,179 -2004,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,193 -2005,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,209 -2006,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,236 -2007,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,245 -2008,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,260 -2009,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,281 -2010,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,291 -2011,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,296 -2012,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,311 -2013,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,319 -2014,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,304 -2015,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,328 -2016,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,311 -2017,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,309 -2018,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,305 -2019,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,319 -2020,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,317 -2010,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2002,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2004,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2001,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2002,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2003,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,162 -2004,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,175 -2005,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,191 -2006,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,221 -2007,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,229 -2008,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,244 -2009,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,266 -2010,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,276 -2011,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,279 -2012,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,289 -2013,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,289 -2014,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,270 -2015,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,290 -2016,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,270 -2017,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,265 -2018,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,260 -2019,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,277 -2020,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,274 -2010,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,282 -2011,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,286 -2012,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,297 -2013,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,300 -2014,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,281 -2015,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,302 -2016,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,282 -2017,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,276 -2018,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,274 -2019,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,287 -2020,geoId/01111,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,288 -2000,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11429 -2001,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11430 -2002,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11393 -2003,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11329 -2004,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11376 -2005,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11434 -2006,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11460 -2007,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11438 -2008,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11587 -2009,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11502 -2010,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11533 -2011,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11415 -2012,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11341 -2013,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11290 -2014,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11200 -2015,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11341 -2016,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11281 -2017,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11351 -2018,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11356 -2019,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11384 -2020,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11493 -2010,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2011,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2012,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2013,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2014,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2015,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2016,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2017,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2018,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2019,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2020,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2000,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2001,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2003,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2006,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2007,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2008,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2009,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2010,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2011,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2015,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2017,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2018,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2019,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2020,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2000,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2001,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2002,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2003,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2004,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2005,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2006,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2007,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2008,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2009,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2012,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2013,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2014,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2015,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2016,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2017,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2019,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2020,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2010,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2011,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2012,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2013,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2014,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2015,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2016,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2017,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2018,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2019,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2020,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2000,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2599 -2001,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2559 -2002,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2526 -2003,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2503 -2004,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2506 -2005,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2525 -2006,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2494 -2007,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2476 -2008,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2534 -2009,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2492 -2010,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2445 -2011,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2412 -2012,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2351 -2013,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2375 -2014,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2330 -2015,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2368 -2016,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2346 -2017,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2350 -2018,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2330 -2019,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2295 -2020,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2298 -2010,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2511 -2011,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2480 -2012,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2421 -2013,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2458 -2014,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2410 -2015,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2452 -2016,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2444 -2017,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2449 -2018,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2426 -2019,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2405 -2020,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2407 -2010,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2001,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2002,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2003,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2004,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2005,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2006,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2007,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2008,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2009,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2010,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2011,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2012,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2013,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2014,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,141 -2015,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,151 -2016,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2017,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,165 -2018,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,178 -2019,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,187 -2020,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2010,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8996 -2011,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8901 -2012,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8892 -2013,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8804 -2014,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8763 -2015,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8859 -2016,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8819 -2017,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8887 -2018,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8907 -2019,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8956 -2020,geoId/01111,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9066 -2000,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8726 -2001,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8766 -2002,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8755 -2003,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8701 -2004,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8736 -2005,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8754 -2006,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8796 -2007,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8784 -2008,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8868 -2009,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8823 -2010,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8890 -2011,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8802 -2012,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8775 -2013,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8681 -2014,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8635 -2015,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8721 -2016,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8677 -2017,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8733 -2018,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8741 -2019,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8786 -2020,geoId/01111,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8895 -2000,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,144 -2001,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,189 -2002,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,198 -2003,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,208 -2004,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,216 -2005,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,263 -2006,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,265 -2007,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,289 -2008,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,307 -2009,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,348 -2010,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,358 -2011,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,341 -2012,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,338 -2013,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,340 -2014,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,334 -2015,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,343 -2016,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,344 -2017,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,338 -2018,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,349 -2019,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,360 -2020,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,363 -2010,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2001,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,172 -2002,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2003,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 -2004,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,194 -2005,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2006,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2007,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,261 -2008,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,275 -2009,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,310 -2010,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,321 -2011,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,305 -2012,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2013,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,296 -2014,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,285 -2015,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,292 -2016,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,288 -2017,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,280 -2018,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,292 -2019,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,303 -2020,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,308 -2010,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,337 -2011,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,321 -2012,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,316 -2013,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,317 -2014,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,304 -2015,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,313 -2016,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,312 -2017,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,300 -2018,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,310 -2019,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,322 -2020,geoId/01111,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,328 -2000,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10676 -2001,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10698 -2002,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10711 -2003,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10643 -2004,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10740 -2005,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10752 -2006,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10734 -2007,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10690 -2008,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10792 -2009,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10733 -2010,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10755 -2011,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10699 -2012,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10551 -2013,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10609 -2014,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10524 -2015,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10591 -2016,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10579 -2017,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10704 -2018,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10732 -2019,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10718 -2020,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,10747 -2010,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2011,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2012,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2013,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2014,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2015,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2016,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2017,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2018,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2019,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2020,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2000,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2001,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2004,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2005,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2006,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2007,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2008,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2009,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2013,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2020,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2000,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2001,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2002,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2004,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2005,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2009,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2017,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2019,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2012,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2016,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2018,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2019,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2020,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2000,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2367 -2001,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2317 -2002,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2304 -2003,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2255 -2004,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2279 -2005,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2262 -2006,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2203 -2007,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2165 -2008,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2211 -2009,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2186 -2010,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2145 -2011,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2118 -2012,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2058 -2013,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2102 -2014,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2074 -2015,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2048 -2016,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2057 -2017,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2076 -2018,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2049 -2019,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2035 -2020,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2020 -2010,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2206 -2011,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2179 -2012,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2127 -2013,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2167 -2014,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2152 -2015,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2131 -2016,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2133 -2017,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2169 -2018,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2152 -2019,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2132 -2020,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2117 -2010,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2001,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2002,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2003,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2004,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2005,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2006,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2007,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2008,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2009,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2010,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2011,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2012,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2013,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2014,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2015,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,145 -2016,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2017,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2018,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,160 -2019,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2020,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,167 -2010,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8545 -2011,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8504 -2012,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8421 -2013,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8428 -2014,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8375 -2015,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8464 -2016,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8434 -2017,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8536 -2018,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8579 -2019,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8577 -2020,geoId/01111,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8615 -2000,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8206 -2001,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8277 -2002,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8297 -2003,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8266 -2004,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8334 -2005,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8372 -2006,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8390 -2007,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8374 -2008,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8421 -2009,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8379 -2010,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8441 -2011,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8400 -2012,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8300 -2013,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8306 -2014,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8249 -2015,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8327 -2016,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8308 -2017,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8390 -2018,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8434 -2019,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8419 -2020,geoId/01111,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,8464 -2000,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,350 -2001,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,438 -2002,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,458 -2003,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,511 -2004,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,557 -2005,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,565 -2006,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,648 -2007,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,733 -2008,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,829 -2009,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,876 -2010,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,936 -2011,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1092 -2012,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1251 -2013,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1319 -2014,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1442 -2015,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1496 -2016,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1517 -2017,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1476 -2018,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1575 -2019,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1676 -2020,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1713 -2010,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2011,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2012,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2013,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2014,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2015,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2016,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2017,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2018,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2019,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2020,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2000,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2006,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2007,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2008,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2009,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2010,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2011,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2013,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2014,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2015,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2016,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2017,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2018,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2019,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2020,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2000,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2014,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2019,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2020,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2000,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2001,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2002,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2003,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2004,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2005,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2006,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2007,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2008,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2009,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,151 -2010,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,163 -2011,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,190 -2012,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,244 -2013,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,256 -2014,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,288 -2015,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,300 -2016,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,292 -2017,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,280 -2018,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,279 -2019,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,267 -2020,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,270 -2010,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,191 -2011,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,229 -2012,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,279 -2013,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,300 -2014,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,334 -2015,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,340 -2016,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,331 -2017,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,328 -2018,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,345 -2019,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,342 -2020,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,336 -2010,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2000,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2004,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2005,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2006,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2007,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2008,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2009,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2010,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2011,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2012,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2013,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2014,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2015,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2016,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2018,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2019,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2020,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2000,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,233 -2001,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,320 -2002,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,323 -2003,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,358 -2004,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,390 -2005,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,383 -2006,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,451 -2007,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,522 -2008,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,585 -2009,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,626 -2010,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,663 -2011,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,768 -2012,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,854 -2013,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,899 -2014,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,981 -2015,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1038 -2016,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1066 -2017,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1024 -2018,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1095 -2019,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1169 -2020,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1230 -2010,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,714 -2011,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,824 -2012,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,910 -2013,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,960 -2014,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1056 -2015,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1101 -2016,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1133 -2017,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1098 -2018,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1192 -2019,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1290 -2020,geoId/01113,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1327 -2000,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25727 -2001,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25575 -2002,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25522 -2003,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25255 -2004,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25552 -2005,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25533 -2006,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,25806 -2007,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26065 -2008,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26225 -2009,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26474 -2010,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,26866 -2011,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,27296 -2012,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,28044 -2013,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,28846 -2014,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,28980 -2015,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,28751 -2016,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,28540 -2017,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,28138 -2018,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,28545 -2019,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,28587 -2020,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,28761 -2010,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,276 -2011,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,292 -2012,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,289 -2013,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,308 -2014,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,301 -2015,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,326 -2016,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,318 -2017,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,302 -2018,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,323 -2019,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,336 -2020,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,348 -2000,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2001,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2002,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2003,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2004,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2005,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2006,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2007,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2008,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2009,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2010,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2011,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2012,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2013,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2014,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2015,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2016,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2017,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2018,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2019,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2020,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2000,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2001,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2002,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2003,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2004,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2005,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,140 -2006,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2007,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2008,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2009,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2010,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,147 -2011,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,173 -2012,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,237 -2013,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,276 -2014,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,265 -2015,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,294 -2016,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,292 -2017,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,292 -2018,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,283 -2019,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,283 -2020,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,285 -2010,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,269 -2011,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,290 -2012,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,383 -2013,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,422 -2014,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,423 -2015,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,456 -2016,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,453 -2017,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,442 -2018,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,458 -2019,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,464 -2020,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,455 -2000,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10952 -2001,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11019 -2002,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11161 -2003,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11001 -2004,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11146 -2005,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11127 -2006,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11276 -2007,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11532 -2008,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11709 -2009,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11739 -2010,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11875 -2011,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12055 -2012,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12404 -2013,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12811 -2014,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13161 -2015,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13359 -2016,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13495 -2017,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13572 -2018,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13853 -2019,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13840 -2020,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14026 -2010,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12133 -2011,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12323 -2012,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12705 -2013,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13136 -2014,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13488 -2015,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13708 -2016,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13854 -2017,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13900 -2018,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14227 -2019,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14205 -2020,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14425 -2010,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2011,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2012,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2013,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2014,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2015,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2016,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2017,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2018,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2019,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2020,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2000,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2003,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2004,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2005,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2006,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2007,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2008,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2009,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2010,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2011,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2012,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2013,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2014,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2015,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2016,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2017,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2018,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2019,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2000,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,233 -2001,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,241 -2002,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,268 -2003,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,286 -2004,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,305 -2005,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,339 -2006,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,365 -2007,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,406 -2008,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,420 -2009,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,436 -2010,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,474 -2011,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,509 -2012,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,556 -2013,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,595 -2014,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,583 -2015,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,617 -2016,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,629 -2017,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,593 -2018,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,660 -2019,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,659 -2020,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,666 -2010,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14628 -2011,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14860 -2012,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15173 -2013,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15521 -2014,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15316 -2015,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14812 -2016,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14485 -2017,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14020 -2018,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14136 -2019,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14179 -2020,geoId/01113,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14143 -2000,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14315 -2001,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14068 -2002,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13838 -2003,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13701 -2004,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13847 -2005,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13808 -2006,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13898 -2007,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13854 -2008,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13829 -2009,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14032 -2010,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14226 -2011,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14406 -2012,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14686 -2013,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14990 -2014,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14797 -2015,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14279 -2016,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13942 -2017,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13504 -2018,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13562 -2019,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13602 -2020,geoId/01113,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13564 -2000,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,397 -2001,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,455 -2002,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,510 -2003,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,569 -2004,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,595 -2005,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,638 -2006,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,725 -2007,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,833 -2008,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,874 -2009,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,953 -2010,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1055 -2011,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1205 -2012,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1408 -2013,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1531 -2014,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1590 -2015,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1666 -2016,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1627 -2017,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1601 -2018,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1717 -2019,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1719 -2020,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1730 -2010,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2011,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2012,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2013,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2014,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2015,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2016,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2017,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2018,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2019,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2020,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,140 -2000,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2004,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2012,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2015,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2016,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2017,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2018,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2020,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2000,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2014,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2015,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2016,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2017,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2018,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2019,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2000,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2001,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2002,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2003,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2004,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2005,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2006,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2007,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2008,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2009,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,155 -2010,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2011,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,186 -2012,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,240 -2013,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,266 -2014,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,270 -2015,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,314 -2016,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,301 -2017,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,299 -2018,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2019,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,276 -2020,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,275 -2010,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,187 -2011,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,217 -2012,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,281 -2013,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,321 -2014,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,327 -2015,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,362 -2016,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,358 -2017,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,355 -2018,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,363 -2019,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,351 -2020,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,351 -2010,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2000,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2001,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2002,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2007,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2008,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2009,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2010,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2011,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2012,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2013,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2014,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2015,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2016,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2017,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2018,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2019,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2020,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2000,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,302 -2001,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,356 -2002,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,405 -2003,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,445 -2004,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,464 -2005,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,484 -2006,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,546 -2007,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,623 -2008,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,660 -2009,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,708 -2010,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,804 -2011,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,898 -2012,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1025 -2013,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1092 -2014,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1135 -2015,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1160 -2016,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1138 -2017,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1108 -2018,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1186 -2019,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1193 -2020,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1211 -2010,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,843 -2011,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,945 -2012,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1088 -2013,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1177 -2014,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1224 -2015,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1241 -2016,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1225 -2017,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1185 -2018,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1280 -2019,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1302 -2020,geoId/01113,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1325 -2000,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23331 -2001,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23154 -2002,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,22999 -2003,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,22730 -2004,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,22794 -2005,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,22995 -2006,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23280 -2007,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23443 -2008,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23506 -2009,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,23859 -2010,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,24470 -2011,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25291 -2012,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,26846 -2013,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,27523 -2014,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,27298 -2015,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,27033 -2016,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,26606 -2017,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,25919 -2018,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,26096 -2019,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,26116 -2020,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,26033 -2010,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,259 -2011,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,269 -2012,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,300 -2013,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,309 -2014,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,292 -2015,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,299 -2016,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,308 -2017,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,287 -2018,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,306 -2019,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,324 -2020,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,311 -2000,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2001,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2002,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2003,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2004,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2005,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2006,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2007,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2008,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2009,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2010,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2011,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2012,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2013,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2014,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2015,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2016,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2017,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2018,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2019,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2020,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2000,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2001,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2002,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2003,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2004,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2005,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2006,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2007,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2008,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2009,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2010,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2011,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2012,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2013,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 -2014,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,145 -2015,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,152 -2016,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,151 -2017,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2018,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,157 -2019,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,168 -2020,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,184 -2010,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2011,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,226 -2012,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,298 -2013,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,304 -2014,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,304 -2015,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,310 -2016,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,310 -2017,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,314 -2018,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,328 -2019,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,348 -2020,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,380 -2000,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9313 -2001,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9373 -2002,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9487 -2003,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9367 -2004,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9411 -2005,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9473 -2006,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9566 -2007,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9684 -2008,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9714 -2009,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9939 -2010,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10207 -2011,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10615 -2012,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11322 -2013,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11779 -2014,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11965 -2015,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12104 -2016,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12111 -2017,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11968 -2018,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12152 -2019,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12107 -2020,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12122 -2010,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10426 -2011,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10871 -2012,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11626 -2013,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12089 -2014,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12288 -2015,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12436 -2016,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12450 -2017,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12286 -2018,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12501 -2019,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12481 -2020,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12506 -2010,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2011,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2012,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2013,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2014,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2015,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2016,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2017,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2018,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2019,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2020,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2000,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2002,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2003,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2004,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2005,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2006,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2007,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2008,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2009,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2010,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2011,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2012,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2013,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2014,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2015,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2016,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2017,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2018,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2000,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,197 -2001,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,205 -2002,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,234 -2003,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,244 -2004,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,259 -2005,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,277 -2006,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,310 -2007,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,324 -2008,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,367 -2009,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,378 -2010,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,408 -2011,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,469 -2012,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,554 -2013,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,569 -2014,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,575 -2015,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,593 -2016,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,602 -2017,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,550 -2018,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,605 -2019,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,664 -2020,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,685 -2010,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13959 -2011,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14338 -2012,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15132 -2013,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15335 -2014,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14949 -2015,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14529 -2016,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14077 -2017,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13527 -2018,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13537 -2019,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13582 -2020,geoId/01113,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13469 -2000,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13661 -2001,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13407 -2002,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13091 -2003,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12931 -2004,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12926 -2005,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13034 -2006,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13189 -2007,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13214 -2008,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13178 -2009,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13307 -2010,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13601 -2011,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13929 -2012,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14644 -2013,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14828 -2014,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14433 -2015,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13991 -2016,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13550 -2017,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13051 -2018,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12993 -2019,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12975 -2020,geoId/01113,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12848 -2000,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,298 -2001,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,329 -2002,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,380 -2003,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,402 -2004,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,442 -2005,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,498 -2006,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,575 -2007,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,667 -2008,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,740 -2009,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,791 -2010,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,791 -2011,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,815 -2012,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,849 -2013,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,870 -2014,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,915 -2015,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,959 -2016,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1005 -2017,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1051 -2018,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1098 -2019,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1083 -2020,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1139 -2010,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2012,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2013,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2014,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2016,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2017,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2018,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2019,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2000,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2008,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2018,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2000,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2005,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2006,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2007,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2008,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2009,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2012,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2017,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2018,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2019,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2020,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2010,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2011,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2012,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2013,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2014,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2015,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2016,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2017,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2018,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2019,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2020,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2010,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2006,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2007,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2008,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2009,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2010,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2011,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2017,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2019,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2000,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,282 -2001,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,313 -2002,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,356 -2003,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,371 -2004,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,402 -2005,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,434 -2006,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,501 -2007,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,578 -2008,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,642 -2009,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,691 -2010,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,689 -2011,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,702 -2012,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,727 -2013,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,738 -2014,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,790 -2015,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,820 -2016,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,859 -2017,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,899 -2018,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,940 -2019,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,925 -2020,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,978 -2010,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,715 -2011,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,734 -2012,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,757 -2013,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,773 -2014,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,825 -2015,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,859 -2016,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,895 -2017,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,936 -2018,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,983 -2019,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,968 -2020,geoId/01115,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1012 -2000,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31953 -2001,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,32411 -2002,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,32938 -2003,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,33510 -2004,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,34460 -2005,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,35469 -2006,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,37123 -2007,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,38794 -2008,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,39690 -2009,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40548 -2010,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40903 -2011,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41156 -2012,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41571 -2013,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,42140 -2014,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,42127 -2015,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,42336 -2016,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,42843 -2017,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,43252 -2018,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,43652 -2019,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,44270 -2020,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,44762 -2010,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,346 -2011,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,349 -2012,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,331 -2013,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,354 -2014,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,356 -2015,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,355 -2016,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,358 -2017,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,358 -2018,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,378 -2019,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,393 -2020,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,416 -2000,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2001,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2002,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2003,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2004,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2005,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2006,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2007,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2008,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2009,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2010,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2011,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2012,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2013,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2014,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2015,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2016,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2017,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2018,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2019,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2020,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2000,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2001,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2002,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2003,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,139 -2004,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2005,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2006,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,207 -2007,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,242 -2008,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,262 -2009,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,273 -2010,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,295 -2011,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,310 -2012,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,338 -2013,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,379 -2014,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,366 -2015,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,393 -2016,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,384 -2017,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,399 -2018,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,427 -2019,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,456 -2020,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,463 -2010,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,364 -2011,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,375 -2012,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,415 -2013,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,459 -2014,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,448 -2015,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,480 -2016,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,471 -2017,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,489 -2018,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,536 -2019,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,573 -2020,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,577 -2000,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2341 -2001,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2349 -2002,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2389 -2003,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2457 -2004,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2495 -2005,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2552 -2006,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2723 -2007,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2959 -2008,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3040 -2009,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3146 -2010,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3175 -2011,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3239 -2012,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3356 -2013,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3506 -2014,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3576 -2015,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3580 -2016,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3710 -2017,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3821 -2018,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3882 -2019,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4045 -2020,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4205 -2010,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3362 -2011,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3453 -2012,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3562 -2013,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3748 -2014,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3819 -2015,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3835 -2016,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3967 -2017,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4099 -2018,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4195 -2019,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4381 -2020,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4559 -2010,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2014,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2016,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2000,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2000,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,234 -2001,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,245 -2002,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,271 -2003,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,295 -2004,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,312 -2005,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,338 -2006,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,367 -2007,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,408 -2008,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,420 -2009,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,458 -2010,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,443 -2011,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,482 -2012,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,479 -2013,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,512 -2014,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,516 -2015,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,519 -2016,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,534 -2017,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,562 -2018,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,631 -2019,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,661 -2020,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,692 -2010,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37257 -2011,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37451 -2012,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37721 -2013,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38078 -2014,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38008 -2015,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38175 -2016,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38569 -2017,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38841 -2018,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39151 -2019,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39560 -2020,geoId/01115,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39872 -2000,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29178 -2001,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29584 -2002,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30022 -2003,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30493 -2004,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,31369 -2005,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,32267 -2006,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33694 -2007,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,35059 -2008,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,35838 -2009,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36547 -2010,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36856 -2011,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36999 -2012,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37272 -2013,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37602 -2014,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37531 -2015,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37698 -2016,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38073 -2017,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38331 -2018,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38573 -2019,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,38952 -2020,geoId/01115,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,39225 -2000,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,390 -2001,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,416 -2002,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,446 -2003,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,494 -2004,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,545 -2005,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,608 -2006,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,703 -2007,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,821 -2008,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,836 -2009,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,884 -2010,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,916 -2011,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,931 -2012,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,964 -2013,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,999 -2014,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1004 -2015,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1056 -2016,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1063 -2017,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1088 -2018,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1126 -2019,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1100 -2020,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1136 -2010,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2011,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2012,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2013,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2014,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2016,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2017,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2019,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2020,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2000,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2008,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2000,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2000,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2007,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2008,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2009,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2010,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2011,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2012,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2014,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2015,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2016,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2017,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2018,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2019,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2020,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2010,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2011,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2012,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2013,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2014,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2015,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2016,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2017,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2018,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2019,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2020,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2010,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2008,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2009,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2000,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,372 -2001,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,398 -2002,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,423 -2003,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,464 -2004,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,509 -2005,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,548 -2006,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,622 -2007,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,729 -2008,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,738 -2009,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,780 -2010,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,814 -2011,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,822 -2012,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,847 -2013,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,867 -2014,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,876 -2015,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,922 -2016,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,928 -2017,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,949 -2018,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,975 -2019,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,952 -2020,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,981 -2010,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,834 -2011,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,840 -2012,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,867 -2013,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,891 -2014,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,899 -2015,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,944 -2016,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,951 -2017,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,974 -2018,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1000 -2019,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,978 -2020,geoId/01115,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1008 -2000,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,32439 -2001,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,32937 -2002,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,33510 -2003,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,34223 -2004,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,34969 -2005,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,36021 -2006,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37547 -2007,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39066 -2008,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39957 -2009,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,40786 -2010,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,40977 -2011,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,41090 -2012,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,41395 -2013,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,41822 -2014,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,41968 -2015,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,42218 -2016,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,42431 -2017,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,42594 -2018,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,42966 -2019,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43282 -2020,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,43702 -2010,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,385 -2011,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,367 -2012,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,378 -2013,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,384 -2014,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,375 -2015,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,364 -2016,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,383 -2017,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,381 -2018,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,399 -2019,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,420 -2020,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,423 -2000,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2001,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2002,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2003,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2004,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2005,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,133 -2006,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2007,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2008,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2009,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2010,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,138 -2011,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2012,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2013,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2014,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2015,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2016,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2017,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2018,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2019,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,152 -2020,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2000,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2001,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2002,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2003,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2004,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2005,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2006,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,147 -2007,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,182 -2008,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,202 -2009,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,227 -2010,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,232 -2011,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,238 -2012,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,255 -2013,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,277 -2014,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,281 -2015,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,324 -2016,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,317 -2017,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,322 -2018,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,342 -2019,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,363 -2020,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,372 -2010,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,309 -2011,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,316 -2012,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,337 -2013,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,357 -2014,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,369 -2015,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,419 -2016,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,408 -2017,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,421 -2018,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,455 -2019,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,478 -2020,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,497 -2000,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2919 -2001,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2963 -2002,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3028 -2003,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3165 -2004,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3221 -2005,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3324 -2006,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3513 -2007,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3700 -2008,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3799 -2009,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3874 -2010,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3915 -2011,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3973 -2012,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4023 -2013,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4157 -2014,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4209 -2015,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4229 -2016,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4193 -2017,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4256 -2018,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4354 -2019,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4446 -2020,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4638 -2010,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4117 -2011,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4192 -2012,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4244 -2013,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4380 -2014,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4449 -2015,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4456 -2016,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4437 -2017,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4520 -2018,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4657 -2019,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4737 -2020,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4951 -2010,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2012,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2014,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2016,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2000,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2001,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2005,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2000,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,262 -2001,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,281 -2002,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,321 -2003,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,320 -2004,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,314 -2005,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,342 -2006,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,381 -2007,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,420 -2008,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,454 -2009,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,483 -2010,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,490 -2011,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,515 -2012,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,519 -2013,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,530 -2014,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,529 -2015,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,518 -2016,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,547 -2017,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,574 -2018,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,610 -2019,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,632 -2020,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,649 -2010,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36637 -2011,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36701 -2012,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36939 -2013,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37212 -2014,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37294 -2015,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37479 -2016,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37731 -2017,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37828 -2018,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38067 -2019,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38271 -2020,geoId/01115,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38464 -2000,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29093 -2001,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29473 -2002,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29936 -2003,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30488 -2004,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,31165 -2005,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,32065 -2006,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33358 -2007,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,34611 -2008,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,35351 -2009,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36035 -2010,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36181 -2011,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36226 -2012,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36450 -2013,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36701 -2014,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36798 -2015,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,36990 -2016,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37218 -2017,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37288 -2018,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37498 -2019,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37670 -2020,geoId/01115,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,37855 -2000,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1224 -2001,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1502 -2002,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1798 -2003,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2085 -2004,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2467 -2005,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2893 -2006,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3440 -2007,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3873 -2008,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4349 -2009,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4874 -2010,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5193 -2011,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5283 -2012,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5337 -2013,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5528 -2014,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5501 -2015,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5548 -2016,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5744 -2017,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5815 -2018,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,5982 -2019,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,6084 -2020,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,6252 -2010,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2011,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2012,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2013,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,164 -2014,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2015,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,165 -2016,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,187 -2017,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,167 -2018,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,179 -2019,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2020,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2000,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2001,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2002,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2003,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2004,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2005,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2006,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2007,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2008,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2009,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2010,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2011,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2012,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2013,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2014,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2015,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2016,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2017,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2018,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2019,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2020,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2000,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2002,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2004,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2005,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2006,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2008,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2009,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2010,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2011,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2012,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2013,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2017,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2019,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2010,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2011,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2012,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2013,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2015,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2016,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2017,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2018,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2019,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2000,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2001,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2002,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2003,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2004,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2005,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2006,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2007,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2008,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2009,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2010,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,146 -2011,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,137 -2012,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,150 -2013,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2014,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2015,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2016,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,178 -2017,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2018,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,182 -2019,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 -2020,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,215 -2010,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,199 -2011,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,191 -2012,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,200 -2013,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2014,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,195 -2015,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,204 -2016,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,237 -2017,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,248 -2018,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,229 -2019,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,241 -2020,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,275 -2010,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2013,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2000,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2005,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2002,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2003,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2004,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2005,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2006,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2007,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2008,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2009,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2010,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2011,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2012,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2013,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2014,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2015,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2016,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2017,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2018,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2019,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2020,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,117 -2000,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1144 -2001,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1367 -2002,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1634 -2003,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1886 -2004,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2220 -2005,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2627 -2006,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3146 -2007,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3543 -2008,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3972 -2009,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4459 -2010,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4762 -2011,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4877 -2012,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4908 -2013,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5114 -2014,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5087 -2015,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5111 -2016,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5255 -2017,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5338 -2018,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5511 -2019,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5594 -2020,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5726 -2010,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4855 -2011,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4957 -2012,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4990 -2013,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5197 -2014,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5167 -2015,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5208 -2016,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5353 -2017,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5433 -2018,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5605 -2019,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5693 -2020,geoId/01117,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5813 -2000,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,72496 -2001,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,74563 -2002,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,76588 -2003,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,79140 -2004,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,81883 -2005,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,84660 -2006,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,87836 -2007,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,89723 -2008,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,91776 -2009,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,93352 -2010,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,94895 -2011,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,95956 -2012,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,97612 -2013,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,99292 -2014,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,100504 -2015,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,102091 -2016,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,103420 -2017,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,104582 -2018,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,105613 -2019,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,106781 -2020,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,108203 -2010,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,616 -2011,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,650 -2012,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,699 -2013,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,717 -2014,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,719 -2015,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,713 -2016,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,740 -2017,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,738 -2018,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,725 -2019,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,745 -2020,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,770 -2000,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,239 -2001,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,216 -2002,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,237 -2003,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,241 -2004,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,232 -2005,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,232 -2006,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,244 -2007,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,245 -2008,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,255 -2009,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,238 -2010,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,246 -2011,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,261 -2012,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,295 -2013,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2014,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2015,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,293 -2016,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,304 -2017,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,304 -2018,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,291 -2019,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,294 -2020,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,307 -2000,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,793 -2001,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,880 -2002,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,927 -2003,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1035 -2004,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1199 -2005,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1365 -2006,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1518 -2007,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1597 -2008,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1778 -2009,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1946 -2010,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1994 -2011,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2066 -2012,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2168 -2013,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2243 -2014,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2333 -2015,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2415 -2016,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2523 -2017,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2627 -2018,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2731 -2019,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2812 -2020,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2885 -2010,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2305 -2011,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2384 -2012,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2517 -2013,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2612 -2014,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2712 -2015,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2830 -2016,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2951 -2017,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3061 -2018,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3184 -2019,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3287 -2020,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3386 -2000,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5677 -2001,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6076 -2002,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6398 -2003,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6986 -2004,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7673 -2005,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8239 -2006,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9016 -2007,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9525 -2008,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10058 -2009,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10617 -2010,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11112 -2011,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11563 -2012,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11969 -2013,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12408 -2014,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12725 -2015,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13273 -2016,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13714 -2017,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14256 -2018,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14794 -2019,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15344 -2020,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15978 -2010,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11554 -2011,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12021 -2012,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12461 -2013,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12950 -2014,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13269 -2015,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13856 -2016,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14365 -2017,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14903 -2018,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15432 -2019,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16043 -2020,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16727 -2010,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2011,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2012,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2013,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2014,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2015,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2016,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2017,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2018,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,109 -2019,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2020,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2000,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2002,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2003,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2004,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2016,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2017,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,387 -2001,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,491 -2002,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,554 -2003,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,602 -2004,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,623 -2005,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,709 -2006,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,762 -2007,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,821 -2008,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,877 -2009,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,963 -2010,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,996 -2011,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1052 -2012,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1121 -2013,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1189 -2014,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1191 -2015,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1268 -2016,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1341 -2017,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1350 -2018,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1372 -2019,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1458 -2020,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1540 -2010,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81436 -2011,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81966 -2012,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83061 -2013,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84221 -2014,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85030 -2015,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85965 -2016,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86736 -2017,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87249 -2018,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87649 -2019,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88191 -2020,geoId/01117,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88897 -2000,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,65388 -2001,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,66879 -2002,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,68455 -2003,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,70260 -2004,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,72140 -2005,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,74094 -2006,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,76280 -2007,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,77522 -2008,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,78787 -2009,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,79569 -2010,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,80523 -2011,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,80989 -2012,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,82031 -2013,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,83126 -2014,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,83922 -2015,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,84800 -2016,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,85494 -2017,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,86006 -2018,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,86382 -2019,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,86831 -2020,geoId/01117,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,87454 -2000,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1805 -2001,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2138 -2002,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2428 -2003,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2863 -2004,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3229 -2005,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3639 -2006,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4178 -2007,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4762 -2008,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,5378 -2009,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6006 -2010,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6363 -2011,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6302 -2012,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6314 -2013,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6331 -2014,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6282 -2015,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6178 -2016,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6212 -2017,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6242 -2018,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6339 -2019,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6416 -2020,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,6681 -2010,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,200 -2011,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,206 -2012,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,204 -2013,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,203 -2014,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,201 -2015,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,206 -2016,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,223 -2017,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,210 -2018,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,229 -2019,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,216 -2020,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,238 -2000,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2002,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2003,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2004,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2005,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2006,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2007,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2008,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2009,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2010,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2011,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2012,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,155 -2013,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2014,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2015,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,156 -2016,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2017,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2018,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,176 -2019,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,170 -2020,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,181 -2000,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2002,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2003,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2004,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2005,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2006,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2007,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2008,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2009,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2010,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2011,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2012,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2011,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2012,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2013,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2015,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2016,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2017,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2018,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2019,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2020,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2000,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2001,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2002,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2003,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2004,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2005,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2006,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2007,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2008,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2009,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2010,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2011,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2012,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,145 -2013,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,150 -2014,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2015,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 -2016,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,169 -2017,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,180 -2018,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 -2019,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 -2020,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,191 -2010,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,197 -2011,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,190 -2012,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2013,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2014,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,209 -2015,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,208 -2016,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,222 -2017,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,236 -2018,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,217 -2019,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,254 -2020,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,256 -2010,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2011,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2009,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2001,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2002,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2003,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2004,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2005,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2006,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2007,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2008,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2009,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2010,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2011,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2012,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2013,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2014,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2015,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2016,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,111 -2017,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2018,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2019,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,120 -2020,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,123 -2000,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1735 -2001,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1991 -2002,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2259 -2003,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2655 -2004,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2970 -2005,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3380 -2006,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3867 -2007,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4405 -2008,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,4974 -2009,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5553 -2010,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5880 -2011,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5826 -2012,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5847 -2013,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5863 -2014,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5813 -2015,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5702 -2016,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5712 -2017,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5749 -2018,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5843 -2019,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,5896 -2020,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6142 -2010,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5974 -2011,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5919 -2012,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5932 -2013,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5947 -2014,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5887 -2015,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5781 -2016,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5807 -2017,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5835 -2018,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5934 -2019,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6004 -2020,geoId/01117,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6238 -2000,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,69149 -2001,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,71155 -2002,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,73162 -2003,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,75616 -2004,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,78178 -2005,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,80499 -2006,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,83387 -2007,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,85133 -2008,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,87031 -2009,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,88476 -2010,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,89585 -2011,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,90427 -2012,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,91686 -2013,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,92937 -2014,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,94059 -2015,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,95230 -2016,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,96162 -2017,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,97215 -2018,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,97943 -2019,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,98895 -2020,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,100292 -2010,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,598 -2011,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,611 -2012,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,645 -2013,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,640 -2014,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,674 -2015,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,687 -2016,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,715 -2017,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,695 -2018,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,724 -2019,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,750 -2020,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,740 -2000,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,204 -2001,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,204 -2002,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2003,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,219 -2004,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,205 -2005,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,198 -2006,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,217 -2007,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,209 -2008,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,226 -2009,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,195 -2010,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,208 -2011,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,216 -2012,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,229 -2013,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,225 -2014,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,236 -2015,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,247 -2016,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,262 -2017,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,266 -2018,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,266 -2019,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,284 -2020,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,275 -2000,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,731 -2001,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,790 -2002,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,887 -2003,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1013 -2004,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1137 -2005,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1255 -2006,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1427 -2007,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1551 -2008,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1662 -2009,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1744 -2010,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1782 -2011,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1829 -2012,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1915 -2013,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1962 -2014,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2018 -2015,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2047 -2016,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2034 -2017,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2094 -2018,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2125 -2019,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2180 -2020,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2246 -2010,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2106 -2011,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2163 -2012,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2275 -2013,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2333 -2014,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2420 -2015,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2473 -2016,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2453 -2017,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2539 -2018,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2597 -2019,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2655 -2020,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2745 -2000,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5008 -2001,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5340 -2002,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5809 -2003,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6354 -2004,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6951 -2005,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7463 -2006,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8019 -2007,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8460 -2008,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8975 -2009,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9453 -2010,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9808 -2011,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10171 -2012,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10543 -2013,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10858 -2014,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11212 -2015,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11633 -2016,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11960 -2017,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12383 -2018,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12777 -2019,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13291 -2020,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13962 -2010,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10245 -2011,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10632 -2012,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11041 -2013,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11377 -2014,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11758 -2015,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12207 -2016,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12560 -2017,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13003 -2018,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13430 -2019,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13938 -2020,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14621 -2010,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2011,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2012,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2013,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2014,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2015,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2016,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 -2017,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2018,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2019,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2020,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2000,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2003,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2004,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2007,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2008,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2009,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2010,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2011,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2013,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2014,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2015,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2016,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2017,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2019,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2020,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2000,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,385 -2001,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,449 -2002,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,508 -2003,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,579 -2004,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,635 -2005,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,734 -2006,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,781 -2007,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,826 -2008,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,882 -2009,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,980 -2010,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1015 -2011,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1065 -2012,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1142 -2013,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1191 -2014,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1234 -2015,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1286 -2016,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1309 -2017,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1346 -2018,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1401 -2019,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1427 -2020,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1463 -2010,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77663 -2011,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78100 -2012,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78886 -2013,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79782 -2014,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80483 -2015,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81171 -2016,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81763 -2017,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82341 -2018,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82640 -2019,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83004 -2020,geoId/01117,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83681 -2000,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,62813 -2001,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,64361 -2002,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,65721 -2003,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,67432 -2004,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,69230 -2005,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,70828 -2006,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,72918 -2007,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,74059 -2008,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,75260 -2009,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,76076 -2010,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,76732 -2011,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,77109 -2012,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,77820 -2013,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,78666 -2014,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,79325 -2015,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,79973 -2016,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,80549 -2017,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,81084 -2018,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,81327 -2019,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,81664 -2020,geoId/01117,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,82304 -2000,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,83 -2001,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,76 -2002,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,73 -2003,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,66 -2004,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,65 -2005,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,54 -2006,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,49 -2007,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,47 -2008,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,39 -2009,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,33 -2010,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,40 -2011,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,43 -2012,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,56 -2013,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,56 -2014,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,67 -2015,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,66 -2016,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,60 -2017,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,63 -2018,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,70 -2019,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,73 -2020,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,80 -2010,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2001,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2002,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2003,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2004,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2005,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2006,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2008,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2010,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2010,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2001,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2002,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2005,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2020,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2010,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2015,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2016,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2017,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2020,geoId/01119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2000,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7911 -2001,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7905 -2002,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7789 -2003,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7765 -2004,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7718 -2005,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7624 -2006,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7603 -2007,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7553 -2008,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7581 -2009,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7466 -2010,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7452 -2011,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7325 -2012,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7327 -2013,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7273 -2014,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7174 -2015,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,7130 -2016,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6987 -2017,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6870 -2018,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6828 -2019,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6638 -2020,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6557 -2010,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2019,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2004,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2006,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2007,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2008,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2009,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2012,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2013,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2015,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2016,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2017,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2018,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2019,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2020,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2010,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2013,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2014,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2015,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2016,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2017,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2018,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2019,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2020,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2000,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5891 -2001,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5922 -2002,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5825 -2003,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5843 -2004,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5835 -2005,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5732 -2006,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5755 -2007,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5750 -2008,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5805 -2009,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5648 -2010,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5607 -2011,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5491 -2012,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5455 -2013,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5395 -2014,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5332 -2015,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5242 -2016,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5130 -2017,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5016 -2018,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4976 -2019,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4802 -2020,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4702 -2010,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5622 -2011,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5506 -2012,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5468 -2013,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5421 -2014,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5354 -2015,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5264 -2016,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5155 -2017,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5047 -2018,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5007 -2019,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4842 -2020,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4744 -2010,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2001,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2002,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2003,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2004,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2005,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2006,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2007,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2008,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2018,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2019,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2020,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2010,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1806 -2011,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1783 -2012,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1811 -2013,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1791 -2014,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1748 -2015,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1773 -2016,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1732 -2017,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1722 -2018,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1709 -2019,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1691 -2020,geoId/01119,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1701 -2000,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1962 -2001,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1927 -2002,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1910 -2003,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1869 -2004,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1828 -2005,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1838 -2006,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1795 -2007,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1747 -2008,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1722 -2009,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1764 -2010,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1789 -2011,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1759 -2012,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1781 -2013,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1761 -2014,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1716 -2015,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1742 -2016,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1700 -2017,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1681 -2018,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1663 -2019,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1636 -2020,geoId/01119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1645 -2000,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,82 -2001,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,77 -2002,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,70 -2003,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,68 -2004,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,66 -2005,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,67 -2006,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,61 -2007,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,58 -2008,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,52 -2009,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,52 -2010,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,54 -2011,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,59 -2012,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,70 -2013,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,73 -2014,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,75 -2015,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,78 -2016,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,71 -2017,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,72 -2018,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,77 -2019,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,79 -2020,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,84 -2010,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2001,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2002,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2003,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2004,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2005,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2006,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2008,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2009,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2001,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2002,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2003,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2004,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2005,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2006,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2008,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2009,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2011,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2013,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2014,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2016,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2017,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2019,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2020,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2010,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2012,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2013,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2014,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2015,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2016,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2017,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2018,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2019,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2020,geoId/01119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2000,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6670 -2001,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6572 -2002,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6444 -2003,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6430 -2004,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6475 -2005,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6398 -2006,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6346 -2007,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6268 -2008,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6210 -2009,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6195 -2010,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6184 -2011,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,6064 -2012,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5991 -2013,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5996 -2014,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5960 -2015,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5938 -2016,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5855 -2017,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5751 -2018,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5686 -2019,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5568 -2020,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5504 -2010,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2013,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2015,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2016,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2017,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2018,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2019,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2020,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2010,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2013,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2014,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2016,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2017,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2019,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2020,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2000,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4785 -2001,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4753 -2002,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4693 -2003,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4716 -2004,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4763 -2005,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4711 -2006,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4682 -2007,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4626 -2008,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4595 -2009,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4589 -2010,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4616 -2011,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4507 -2012,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4406 -2013,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4359 -2014,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4331 -2015,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4284 -2016,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4221 -2017,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4128 -2018,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4084 -2019,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3979 -2020,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3908 -2010,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4625 -2011,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4519 -2012,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4423 -2013,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4372 -2014,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4349 -2015,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4299 -2016,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4242 -2017,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4153 -2018,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4107 -2019,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4005 -2020,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3938 -2010,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2001,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2002,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2003,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2004,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2008,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2009,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2010,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1553 -2011,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1522 -2012,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1527 -2013,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1556 -2014,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1540 -2015,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1566 -2016,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1560 -2017,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1543 -2018,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1516 -2019,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1501 -2020,geoId/01119,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1504 -2000,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1847 -2001,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1782 -2002,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1714 -2003,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1681 -2004,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1684 -2005,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1651 -2006,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1631 -2007,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1606 -2008,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1584 -2009,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1573 -2010,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1537 -2011,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1506 -2012,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1506 -2013,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1533 -2014,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1513 -2015,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1535 -2016,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1531 -2017,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1512 -2018,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1480 -2019,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1462 -2020,geoId/01119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1461 -2000,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,267 -2001,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,303 -2002,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,338 -2003,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,354 -2004,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,387 -2005,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,427 -2006,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,503 -2007,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,519 -2008,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,550 -2009,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,566 -2010,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,595 -2011,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,612 -2012,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,647 -2013,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,665 -2014,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,686 -2015,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,686 -2016,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,706 -2017,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,730 -2018,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,753 -2019,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,782 -2020,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,794 -2010,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2011,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2012,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2014,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2015,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2017,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2018,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2020,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2000,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2000,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2000,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2001,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2002,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2003,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2004,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2005,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2006,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2007,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2008,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2009,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2010,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2011,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2012,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2013,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2014,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2015,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2016,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2017,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2018,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2019,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2020,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2010,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2011,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2012,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2013,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2014,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2015,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2016,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2017,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2018,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2019,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2020,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2010,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2006,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2007,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2008,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2009,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2010,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2011,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2012,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2013,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2014,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2015,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2016,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2017,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2018,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2019,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2020,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2000,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 -2001,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,226 -2002,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,257 -2003,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,269 -2004,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2005,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,324 -2006,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,385 -2007,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,406 -2008,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,425 -2009,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,439 -2010,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,464 -2011,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,487 -2012,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,511 -2013,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,509 -2014,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,525 -2015,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,529 -2016,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,544 -2017,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,568 -2018,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,580 -2019,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,589 -2020,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,591 -2010,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,499 -2011,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,523 -2012,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,547 -2013,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,546 -2014,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,562 -2015,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,573 -2016,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,586 -2017,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,606 -2018,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,619 -2019,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,641 -2020,geoId/01121,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,636 -2000,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41023 -2001,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41078 -2002,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41145 -2003,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40918 -2004,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41087 -2005,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41204 -2006,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41485 -2007,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41637 -2008,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41868 -2009,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41912 -2010,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41532 -2011,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41459 -2012,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41656 -2013,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41355 -2014,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41361 -2015,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,41209 -2016,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40895 -2017,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40720 -2018,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40954 -2019,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40787 -2020,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,40636 -2010,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,336 -2011,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,347 -2012,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,356 -2013,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,350 -2014,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,353 -2015,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,352 -2016,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,359 -2017,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,356 -2018,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,386 -2019,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,378 -2020,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,370 -2000,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2001,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2002,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2003,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2004,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2005,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2006,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2007,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2008,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2009,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2010,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2011,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2012,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2013,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2014,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2015,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2016,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2017,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2018,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2019,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2020,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2000,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2001,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,103 -2002,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2003,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2004,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2005,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2006,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2007,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,162 -2008,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,160 -2009,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,187 -2010,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,169 -2011,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2012,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,194 -2013,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,198 -2014,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,211 -2015,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,225 -2016,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,244 -2017,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,257 -2018,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,264 -2019,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,279 -2020,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,257 -2010,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,231 -2011,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,235 -2012,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,267 -2013,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,274 -2014,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,293 -2015,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,303 -2016,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,325 -2017,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,351 -2018,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,361 -2019,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,369 -2020,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,360 -2000,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13004 -2001,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13100 -2002,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13154 -2003,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13156 -2004,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13221 -2005,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13286 -2006,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13472 -2007,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13582 -2008,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13710 -2009,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13692 -2010,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13616 -2011,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13591 -2012,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13895 -2013,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13863 -2014,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13984 -2015,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14011 -2016,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13835 -2017,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13846 -2018,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14111 -2019,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14115 -2020,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14084 -2010,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13877 -2011,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13865 -2012,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14175 -2013,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14169 -2014,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14291 -2015,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14326 -2016,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14184 -2017,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14203 -2018,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14501 -2019,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14495 -2020,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14475 -2010,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2016,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2020,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,235 -2001,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,247 -2002,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,270 -2003,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,301 -2004,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,326 -2005,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,355 -2006,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,376 -2007,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,402 -2008,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,432 -2009,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,474 -2010,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,483 -2011,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,505 -2012,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,522 -2013,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,550 -2014,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,568 -2015,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,561 -2016,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,590 -2017,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,622 -2018,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,669 -2019,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,652 -2020,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,677 -2010,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27589 -2011,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27530 -2012,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27389 -2013,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27117 -2014,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27003 -2015,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26794 -2016,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26631 -2017,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26453 -2018,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26393 -2019,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26215 -2020,geoId/01121,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26117 -2000,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27600 -2001,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27536 -2002,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27518 -2003,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27231 -2004,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27299 -2005,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27333 -2006,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27405 -2007,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27386 -2008,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27454 -2009,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27437 -2010,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27152 -2011,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27066 -2012,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26917 -2013,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26629 -2014,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26481 -2015,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26297 -2016,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26110 -2017,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25883 -2018,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25786 -2019,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25620 -2020,geoId/01121,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25498 -2000,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,545 -2001,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,571 -2002,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,622 -2003,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,667 -2004,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,661 -2005,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,782 -2006,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,871 -2007,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,930 -2008,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,996 -2009,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1030 -2010,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1062 -2011,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1064 -2012,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1078 -2013,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1091 -2014,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1090 -2015,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1095 -2016,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1059 -2017,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1122 -2018,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1160 -2019,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1192 -2020,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1210 -2010,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2011,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2012,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2013,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2014,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2015,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2016,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2017,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2018,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2019,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2020,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2000,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2006,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2007,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2008,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2009,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2010,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2011,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2012,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2014,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2015,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2016,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2017,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2018,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2019,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2020,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2000,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2000,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2001,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2002,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2003,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2004,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2005,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2006,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2007,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2008,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2009,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2010,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2011,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2012,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2013,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2014,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2015,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2016,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2017,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2018,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2019,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2020,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2010,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2011,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2012,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,148 -2013,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2014,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,141 -2015,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,136 -2016,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,134 -2017,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,147 -2018,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,162 -2019,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,174 -2020,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,176 -2010,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2006,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2007,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2008,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2009,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2010,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2011,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2012,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2016,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2017,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2018,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2019,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2020,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,63 -2000,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,440 -2001,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,471 -2002,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,518 -2003,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,550 -2004,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,540 -2005,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,628 -2006,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,704 -2007,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,751 -2008,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,808 -2009,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,826 -2010,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,852 -2011,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,853 -2012,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,863 -2013,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,866 -2014,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,865 -2015,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,865 -2016,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,832 -2017,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,882 -2018,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,894 -2019,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,907 -2020,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,923 -2010,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,886 -2011,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,891 -2012,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,897 -2013,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,892 -2014,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,900 -2015,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,906 -2016,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,878 -2017,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,922 -2018,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,940 -2019,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,953 -2020,geoId/01121,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,972 -2000,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38937 -2001,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38987 -2002,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38990 -2003,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38961 -2004,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39004 -2005,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39133 -2006,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39132 -2007,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39140 -2008,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39321 -2009,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,39166 -2010,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38986 -2011,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38740 -2012,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38789 -2013,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38493 -2014,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38413 -2015,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,38178 -2016,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37938 -2017,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37620 -2018,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37352 -2019,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37465 -2020,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,37345 -2010,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,329 -2011,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,339 -2012,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,340 -2013,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,341 -2014,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,357 -2015,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,343 -2016,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,362 -2017,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,348 -2018,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,351 -2019,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,366 -2020,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,359 -2000,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2001,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2002,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2003,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2004,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2005,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2006,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2007,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2008,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2009,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2010,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2011,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2012,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2013,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2014,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2015,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2016,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2017,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,123 -2018,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2019,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2020,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2000,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2001,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2002,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2003,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2004,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2005,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,139 -2006,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,135 -2007,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2008,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2009,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,156 -2010,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2011,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,161 -2012,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,200 -2013,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,211 -2014,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2015,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,246 -2016,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,209 -2017,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,197 -2018,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,196 -2019,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,194 -2020,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,202 -2010,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,223 -2011,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,226 -2012,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,271 -2013,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,281 -2014,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,311 -2015,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,331 -2016,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,293 -2017,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,288 -2018,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,304 -2019,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,291 -2020,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,317 -2000,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12307 -2001,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12386 -2002,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12319 -2003,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12333 -2004,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12322 -2005,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12309 -2006,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12355 -2007,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12400 -2008,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12457 -2009,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12368 -2010,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12341 -2011,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12257 -2012,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12371 -2013,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12334 -2014,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12302 -2015,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12237 -2016,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12230 -2017,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12216 -2018,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12130 -2019,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12245 -2020,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12205 -2010,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12590 -2011,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12520 -2012,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12648 -2013,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12633 -2014,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12611 -2015,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12568 -2016,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12571 -2017,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12573 -2018,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12530 -2019,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12639 -2020,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12606 -2010,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2000,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,232 -2001,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,242 -2002,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,275 -2003,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,300 -2004,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,321 -2005,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,339 -2006,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,358 -2007,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,404 -2008,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,425 -2009,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,446 -2010,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,463 -2011,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,487 -2012,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,505 -2013,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,533 -2014,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,550 -2015,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,567 -2016,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,589 -2017,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,595 -2018,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,649 -2019,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,657 -2020,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,669 -2010,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26317 -2011,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26144 -2012,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26041 -2013,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25766 -2014,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25694 -2015,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25513 -2016,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25301 -2017,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25017 -2018,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24838 -2019,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24838 -2020,geoId/01121,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24741 -2000,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26222 -2001,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26164 -2002,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26192 -2003,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26117 -2004,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26137 -2005,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26239 -2006,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26172 -2007,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26095 -2008,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26182 -2009,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,26083 -2010,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25904 -2011,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25709 -2012,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25585 -2013,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25287 -2014,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,25196 -2015,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24996 -2016,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24776 -2017,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24481 -2018,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24249 -2019,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24234 -2020,geoId/01121,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,24133 -2000,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,107 -2001,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,145 -2002,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,176 -2003,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,215 -2004,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,254 -2005,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,270 -2006,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,290 -2007,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,331 -2008,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,374 -2009,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,401 -2010,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,427 -2011,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,434 -2012,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,444 -2013,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,449 -2014,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,430 -2015,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,429 -2016,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,449 -2017,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,437 -2018,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,446 -2019,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,456 -2020,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,476 -2010,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2001,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2002,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2003,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2004,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2005,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2006,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2007,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2008,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2009,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2010,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2011,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2012,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2013,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2014,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2015,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2016,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2017,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2018,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2019,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2020,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2010,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2011,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2012,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2013,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2016,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2017,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2018,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2019,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2020,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2010,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2007,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2008,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2009,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2000,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2001,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,110 -2002,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,139 -2003,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,173 -2004,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,204 -2005,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,206 -2006,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,218 -2007,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,245 -2008,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,280 -2009,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,308 -2010,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,333 -2011,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,333 -2012,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,345 -2013,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,343 -2014,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,318 -2015,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,312 -2016,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,330 -2017,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,323 -2018,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,331 -2019,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,342 -2020,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,351 -2010,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,357 -2011,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,357 -2012,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,368 -2013,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,370 -2014,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,340 -2015,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,328 -2016,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,355 -2017,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,345 -2018,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,360 -2019,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,369 -2020,geoId/01123,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,372 -2000,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,21608 -2001,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,21470 -2002,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,21203 -2003,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,21027 -2004,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,21008 -2005,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20927 -2006,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,21070 -2007,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,21035 -2008,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,21145 -2009,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,21150 -2010,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20927 -2011,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20869 -2012,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20660 -2013,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20661 -2014,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20598 -2015,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20446 -2016,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20407 -2017,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20418 -2018,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20389 -2019,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20316 -2020,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,20199 -2010,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,147 -2011,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,154 -2012,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2013,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2014,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2015,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,155 -2016,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,147 -2017,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2018,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,165 -2019,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2020,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,165 -2000,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2001,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2002,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2003,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2004,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2005,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2006,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2007,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2008,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2009,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2010,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2011,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2012,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2013,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2014,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2015,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2016,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2018,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2019,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2020,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2000,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2001,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2002,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2003,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2004,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2005,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2006,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2007,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,97 -2008,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2009,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,107 -2010,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2011,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2012,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2013,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2014,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,118 -2015,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,120 -2016,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2017,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2018,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2019,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2020,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,131 -2010,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2011,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2012,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2013,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2014,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,151 -2015,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2016,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,153 -2017,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,163 -2018,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2019,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,163 -2020,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,169 -2000,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5764 -2001,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5833 -2002,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5791 -2003,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5758 -2004,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5787 -2005,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5806 -2006,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5884 -2007,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5926 -2008,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6004 -2009,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5977 -2010,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5930 -2011,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5928 -2012,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5826 -2013,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5892 -2014,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5890 -2015,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5806 -2016,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5750 -2017,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5765 -2018,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5792 -2019,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5738 -2020,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5721 -2010,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6028 -2011,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6025 -2012,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5949 -2013,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6028 -2014,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6014 -2015,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5939 -2016,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5885 -2017,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5906 -2018,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5936 -2019,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5895 -2020,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5881 -2010,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2000,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2001,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2002,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2003,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2004,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2005,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2006,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,142 -2007,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2008,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,160 -2009,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2010,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2011,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2012,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,200 -2013,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,212 -2014,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,211 -2015,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,209 -2016,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,206 -2017,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,221 -2018,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,230 -2019,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,242 -2020,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,253 -2010,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14797 -2011,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14733 -2012,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14621 -2013,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14546 -2014,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14492 -2015,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14416 -2016,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14425 -2017,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14420 -2018,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14362 -2019,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14339 -2020,geoId/01123,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14234 -2000,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15637 -2001,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15416 -2002,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15173 -2003,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,15016 -2004,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14956 -2005,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14852 -2006,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14894 -2007,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14799 -2008,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14821 -2009,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14836 -2010,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14642 -2011,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14566 -2012,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14447 -2013,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14362 -2014,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14300 -2015,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14230 -2016,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14249 -2017,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14225 -2018,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14156 -2019,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14129 -2020,geoId/01123,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14005 -2000,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,140 -2001,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,187 -2002,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,243 -2003,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,284 -2004,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,304 -2005,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,358 -2006,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,426 -2007,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,471 -2008,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,518 -2009,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,568 -2010,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,610 -2011,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,586 -2012,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,569 -2013,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,552 -2014,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,489 -2015,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,505 -2016,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,520 -2017,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,533 -2018,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,520 -2019,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,540 -2020,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,539 -2010,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2016,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2000,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2003,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2004,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2005,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2006,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2007,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2008,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2009,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2010,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2011,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2012,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2013,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2014,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2015,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2016,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2017,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2018,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2019,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2020,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,95 -2010,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2011,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2012,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2013,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2014,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2015,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2016,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2017,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2018,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2019,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2020,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2010,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2006,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2007,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2008,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2009,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2010,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2014,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2016,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2017,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2018,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2019,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2020,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2000,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,117 -2001,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2002,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,211 -2003,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,238 -2004,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,253 -2005,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,278 -2006,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,332 -2007,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,373 -2008,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,405 -2009,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,449 -2010,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,490 -2011,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,453 -2012,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,435 -2013,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,406 -2014,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,350 -2015,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,355 -2016,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,356 -2017,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,363 -2018,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,347 -2019,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,365 -2020,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,355 -2010,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,520 -2011,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,485 -2012,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,469 -2013,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,434 -2014,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,381 -2015,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,390 -2016,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,398 -2017,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,399 -2018,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,392 -2019,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,409 -2020,geoId/01123,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,402 -2000,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19834 -2001,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19604 -2002,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19422 -2003,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19372 -2004,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19338 -2005,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19302 -2006,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19457 -2007,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19577 -2008,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19631 -2009,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19712 -2010,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19516 -2011,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19525 -2012,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19387 -2013,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19377 -2014,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19381 -2015,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19248 -2016,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19231 -2017,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19236 -2018,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19195 -2019,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,19025 -2020,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,18919 -2010,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,144 -2011,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2012,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,142 -2013,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2014,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,140 -2015,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2016,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2017,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2018,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2019,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2020,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2000,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2001,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2002,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2003,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2004,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2005,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2006,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2007,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2008,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2009,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2010,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2011,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2012,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2013,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2014,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2015,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2016,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2017,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2018,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2019,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2020,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2000,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2001,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2002,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2003,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2004,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2005,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2006,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2007,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2008,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2009,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,85 -2010,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2011,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2012,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2013,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2014,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2015,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2016,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2017,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,104 -2018,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2019,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2020,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2010,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2011,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,129 -2012,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,113 -2013,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,121 -2014,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,115 -2015,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2016,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,123 -2017,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2018,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,147 -2019,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2020,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,137 -2000,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4950 -2001,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4936 -2002,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4906 -2003,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4931 -2004,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4937 -2005,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4968 -2006,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5057 -2007,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5083 -2008,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5081 -2009,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5144 -2010,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5093 -2011,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5082 -2012,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5040 -2013,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5121 -2014,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5175 -2015,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5142 -2016,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5078 -2017,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5072 -2018,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5092 -2019,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5039 -2020,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4980 -2010,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5185 -2011,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5174 -2012,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5151 -2013,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5227 -2014,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5282 -2015,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5259 -2016,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5198 -2017,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5201 -2018,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5238 -2019,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5181 -2020,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5124 -2010,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2001,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2002,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,107 -2003,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2004,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2005,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2006,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2007,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,139 -2008,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2009,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2010,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,169 -2011,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2012,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,199 -2013,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,194 -2014,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,189 -2015,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,194 -2016,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,208 -2017,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,219 -2018,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,231 -2019,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,234 -2020,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,237 -2010,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14252 -2011,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14273 -2012,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14185 -2013,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14085 -2014,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14040 -2015,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13923 -2016,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13974 -2017,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13974 -2018,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13894 -2019,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13792 -2020,geoId/01123,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13745 -2000,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14718 -2001,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14487 -2002,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14318 -2003,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14227 -2004,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14171 -2005,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14096 -2006,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14153 -2007,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14232 -2008,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14275 -2009,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14272 -2010,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14102 -2011,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14103 -2012,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,14004 -2013,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13916 -2014,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13867 -2015,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13749 -2016,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13785 -2017,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13773 -2018,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13689 -2019,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13575 -2020,geoId/01123,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,13526 -2000,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,944 -2001,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1076 -2002,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1202 -2003,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1318 -2004,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1449 -2005,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1570 -2006,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1775 -2007,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1941 -2008,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2148 -2009,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2322 -2010,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2562 -2011,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2674 -2012,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2786 -2013,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,2941 -2014,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3114 -2015,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3219 -2016,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3468 -2017,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3590 -2018,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3754 -2019,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,3903 -2020,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,4013 -2010,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2011,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2012,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2013,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2014,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2015,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2016,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2017,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2018,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2019,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2020,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2000,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2003,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2004,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2005,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2006,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2007,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2008,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2009,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2010,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2011,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2012,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2013,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2014,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2015,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2016,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2017,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2018,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2019,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2020,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2000,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2020,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2010,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2012,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2015,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2016,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2017,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2018,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2019,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2020,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2000,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2001,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2002,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2003,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,128 -2004,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2005,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,127 -2006,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,146 -2007,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2008,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2009,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,147 -2010,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,192 -2011,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,199 -2012,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,211 -2013,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,226 -2014,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,219 -2015,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2016,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,239 -2017,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,244 -2018,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,255 -2019,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,264 -2020,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,288 -2010,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,233 -2011,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,237 -2012,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,247 -2013,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,265 -2014,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,263 -2015,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,270 -2016,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,292 -2017,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,308 -2018,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,318 -2019,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,328 -2020,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,354 -2010,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2012,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2014,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2016,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2017,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2020,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2000,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2000,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2002,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2003,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2004,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2005,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2006,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2007,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2008,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2009,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2010,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2011,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,69 -2012,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2013,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2014,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2015,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2016,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2017,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2018,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2019,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2020,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,119 -2000,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,796 -2001,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,915 -2002,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1013 -2003,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1122 -2004,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1237 -2005,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1352 -2006,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1527 -2007,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1687 -2008,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1868 -2009,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2028 -2010,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2208 -2011,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2308 -2012,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2407 -2013,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2528 -2014,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2695 -2015,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2776 -2016,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2995 -2017,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3113 -2018,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3254 -2019,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3370 -2020,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3443 -2010,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2268 -2011,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2366 -2012,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2463 -2013,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2594 -2014,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2761 -2015,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2855 -2016,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3078 -2017,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3202 -2018,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3344 -2019,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3472 -2020,geoId/01125,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3541 -2000,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,84857 -2001,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,85506 -2002,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,85979 -2003,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,86639 -2004,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,87590 -2005,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,89093 -2006,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,91772 -2007,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,92925 -2008,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,94809 -2009,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,97016 -2010,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,97938 -2011,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,98832 -2012,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,99950 -2013,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,101040 -2014,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,101906 -2015,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,102816 -2016,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,103617 -2017,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,104033 -2018,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,104335 -2019,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,105253 -2020,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,105530 -2010,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,566 -2011,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,558 -2012,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,583 -2013,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,588 -2014,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,584 -2015,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,588 -2016,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,602 -2017,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,607 -2018,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,614 -2019,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,605 -2020,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,605 -2000,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,193 -2001,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,196 -2002,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,199 -2003,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,212 -2004,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,206 -2005,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,207 -2006,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2007,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,222 -2008,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2009,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,226 -2010,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,236 -2011,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,230 -2012,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,240 -2013,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,244 -2014,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,236 -2015,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,233 -2016,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,251 -2017,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,254 -2018,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,244 -2019,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,240 -2020,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,227 -2000,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,794 -2001,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,834 -2002,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,845 -2003,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,844 -2004,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,906 -2005,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,947 -2006,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1011 -2007,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1030 -2008,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1114 -2009,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1143 -2010,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1197 -2011,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1277 -2012,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1361 -2013,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1505 -2014,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1582 -2015,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1594 -2016,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1634 -2017,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1629 -2018,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1632 -2019,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1665 -2020,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1721 -2010,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1442 -2011,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1532 -2012,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1640 -2013,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1787 -2014,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1884 -2015,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1906 -2016,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1956 -2017,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1984 -2018,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2007 -2019,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2048 -2020,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2120 -2000,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26587 -2001,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26744 -2002,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26887 -2003,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27104 -2004,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27406 -2005,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28019 -2006,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29108 -2007,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29473 -2008,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30115 -2009,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30973 -2010,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31283 -2011,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31912 -2012,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32579 -2013,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33287 -2014,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33895 -2015,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34684 -2016,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35456 -2017,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36043 -2018,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36440 -2019,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37193 -2020,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37608 -2010,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31739 -2011,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32383 -2012,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33077 -2013,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33818 -2014,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34469 -2015,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35279 -2016,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36095 -2017,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36714 -2018,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37123 -2019,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37899 -2020,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38362 -2010,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2011,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2012,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2013,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2014,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2015,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2016,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2017,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,104 -2018,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,114 -2019,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2020,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2000,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2004,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2005,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2006,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2008,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2009,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2010,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2011,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2012,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2016,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2017,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2019,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2000,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,571 -2001,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,630 -2002,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,640 -2003,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,662 -2004,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,691 -2005,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,705 -2006,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,719 -2007,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,744 -2008,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,768 -2009,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,799 -2010,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,881 -2011,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,931 -2012,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,960 -2013,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1002 -2014,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1063 -2015,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1107 -2016,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1156 -2017,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1206 -2018,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1248 -2019,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1273 -2020,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1350 -2010,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65088 -2011,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65273 -2012,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65613 -2013,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65848 -2014,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66042 -2015,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66146 -2016,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66107 -2017,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65924 -2018,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65843 -2019,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65989 -2020,geoId/01125,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65803 -2000,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,56701 -2001,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,57087 -2002,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,57395 -2003,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,57798 -2004,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,58359 -2005,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,59192 -2006,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,60682 -2007,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,61423 -2008,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,62545 -2009,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,63835 -2010,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,64298 -2011,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,64439 -2012,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,64765 -2013,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,64957 -2014,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,65086 -2015,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,65157 -2016,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,65077 -2017,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,64855 -2018,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,64720 -2019,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,64840 -2020,geoId/01125,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,64583 -2000,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1234 -2001,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1480 -2002,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1591 -2003,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1770 -2004,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1996 -2005,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2172 -2006,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2457 -2007,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2711 -2008,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,2986 -2009,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3268 -2010,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3445 -2011,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3480 -2012,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3459 -2013,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3564 -2014,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3649 -2015,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3763 -2016,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,3971 -2017,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4045 -2018,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4262 -2019,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4359 -2020,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,4469 -2010,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2011,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2012,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,134 -2013,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,154 -2014,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,140 -2015,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2016,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,188 -2017,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,214 -2018,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,223 -2019,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,232 -2020,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,243 -2000,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2003,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2004,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2005,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,54 -2006,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2007,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2008,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,89 -2009,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2010,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2011,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2012,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2013,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,108 -2014,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2015,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,109 -2016,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,150 -2017,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,169 -2018,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,186 -2019,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,187 -2020,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,194 -2000,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2004,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2016,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2017,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2018,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2020,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2010,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2011,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2013,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2015,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2017,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2018,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2019,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2020,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2000,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2001,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2002,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2003,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2004,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,144 -2005,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2006,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2007,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,179 -2008,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,188 -2009,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,202 -2010,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,228 -2011,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,214 -2012,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,211 -2013,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,218 -2014,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,229 -2015,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,224 -2016,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,227 -2017,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,224 -2018,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,223 -2019,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,244 -2020,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,256 -2010,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,267 -2011,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,252 -2012,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,261 -2013,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,265 -2014,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,271 -2015,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,273 -2016,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,270 -2017,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,273 -2018,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,266 -2019,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,303 -2020,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,322 -2010,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2011,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2012,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2013,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2019,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2000,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2001,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2002,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2003,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2004,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2005,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2006,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2007,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2008,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2009,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2010,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2011,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2000,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2001,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2003,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2004,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2005,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2006,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2007,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2008,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2009,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2010,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2011,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2012,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2013,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2014,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,78 -2016,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2017,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2018,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2019,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2020,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2000,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1062 -2001,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1267 -2002,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1358 -2003,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1524 -2004,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1703 -2005,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1885 -2006,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2137 -2007,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2355 -2008,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2593 -2009,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2842 -2010,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,2979 -2011,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3034 -2012,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3026 -2013,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3107 -2014,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3174 -2015,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3280 -2016,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3444 -2017,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3486 -2018,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3672 -2019,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3727 -2020,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,3817 -2010,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3037 -2011,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3096 -2012,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3094 -2013,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3169 -2014,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3247 -2015,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3352 -2016,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3508 -2017,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3552 -2018,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3740 -2019,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3815 -2020,geoId/01125,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3909 -2000,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,78379 -2001,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,78889 -2002,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,79382 -2003,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,79998 -2004,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,80925 -2005,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,82896 -2006,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,85379 -2007,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,86773 -2008,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,88150 -2009,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,90186 -2010,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,91063 -2011,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,91802 -2012,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,92689 -2013,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,93647 -2014,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,94559 -2015,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,95155 -2016,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,95681 -2017,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,96181 -2018,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,96256 -2019,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,96806 -2020,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,96746 -2010,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,527 -2011,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,528 -2012,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,529 -2013,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,556 -2014,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,581 -2015,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,568 -2016,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,568 -2017,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,588 -2018,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,589 -2019,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,586 -2020,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,608 -2000,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,165 -2001,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,185 -2002,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,173 -2003,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,182 -2004,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,198 -2005,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,184 -2006,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,198 -2007,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,221 -2008,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,206 -2009,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,220 -2010,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,228 -2011,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,224 -2012,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,215 -2013,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,235 -2014,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,239 -2015,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,239 -2016,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,226 -2017,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,224 -2018,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,226 -2019,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,227 -2020,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,231 -2000,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,840 -2001,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,830 -2002,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,832 -2003,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,889 -2004,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,961 -2005,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1029 -2006,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1051 -2007,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1090 -2008,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1141 -2009,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1135 -2010,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1217 -2011,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1266 -2012,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1351 -2013,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1460 -2014,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1511 -2015,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1520 -2016,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1589 -2017,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1624 -2018,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1659 -2019,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1715 -2020,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1751 -2010,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1468 -2011,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1528 -2012,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1622 -2013,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1747 -2014,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1813 -2015,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1858 -2016,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1930 -2017,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2001 -2018,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2039 -2019,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2105 -2020,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2143 -2000,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21804 -2001,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21986 -2002,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22238 -2003,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22320 -2004,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22657 -2005,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23225 -2006,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24145 -2007,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24762 -2008,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25233 -2009,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25941 -2010,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26321 -2011,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26803 -2012,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27336 -2013,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28056 -2014,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28640 -2015,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29202 -2016,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29708 -2017,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30098 -2018,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30297 -2019,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30757 -2020,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30925 -2010,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26742 -2011,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27237 -2012,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27783 -2013,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28553 -2014,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29161 -2015,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29769 -2016,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30310 -2017,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30753 -2018,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30981 -2019,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31425 -2020,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31608 -2010,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2011,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2012,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2013,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2014,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,75 -2015,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2016,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2017,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2018,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,89 -2019,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2020,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2000,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2003,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2004,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2005,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2006,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2007,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2008,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2009,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2011,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2012,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2013,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2016,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2000,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,482 -2001,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,504 -2002,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,524 -2003,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,572 -2004,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,579 -2005,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,660 -2006,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,688 -2007,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,708 -2008,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,721 -2009,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,766 -2010,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,834 -2011,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,872 -2012,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,909 -2013,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,974 -2014,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1014 -2015,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1077 -2016,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1153 -2017,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1218 -2018,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1249 -2019,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1255 -2020,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1288 -2010,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63165 -2011,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63392 -2012,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63668 -2013,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63755 -2014,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64045 -2015,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64048 -2016,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64023 -2017,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,64080 -2018,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63920 -2019,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63963 -2020,geoId/01125,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,63690 -2000,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,55080 -2001,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,55373 -2002,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,55600 -2003,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,56016 -2004,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,56512 -2005,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,57774 -2006,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,59270 -2007,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,59965 -2008,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,60820 -2009,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,62091 -2010,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,62429 -2011,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,62602 -2012,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,62837 -2013,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,62882 -2014,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,63117 -2015,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,63081 -2016,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,62969 -2017,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,62977 -2018,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,62780 -2019,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,62816 -2020,geoId/01125,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,62505 -2000,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,278 -2001,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,312 -2002,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,317 -2003,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,331 -2004,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,377 -2005,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,417 -2006,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,461 -2007,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,473 -2008,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,525 -2009,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,540 -2010,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,540 -2011,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,582 -2012,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,603 -2013,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,610 -2014,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,627 -2015,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,669 -2016,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,678 -2017,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,716 -2018,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,752 -2019,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,764 -2020,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,794 -2010,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2014,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2015,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2016,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2017,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2018,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2020,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2000,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2010,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2020,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2000,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2001,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2002,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2003,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2004,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2010,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2013,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2015,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2016,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2017,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2019,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2020,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2010,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2014,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2016,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2017,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2018,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2019,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2020,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2000,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,246 -2001,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,278 -2002,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,282 -2003,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,295 -2004,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,335 -2005,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,362 -2006,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,395 -2007,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,399 -2008,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,444 -2009,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,458 -2010,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,452 -2011,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,489 -2012,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,508 -2013,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,502 -2014,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,509 -2015,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,535 -2016,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,539 -2017,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,565 -2018,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,597 -2019,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,607 -2020,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,627 -2010,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,473 -2011,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,508 -2012,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,531 -2013,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,534 -2014,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,541 -2015,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,579 -2016,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,580 -2017,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,609 -2018,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,644 -2019,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,647 -2020,geoId/01127,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,670 -2000,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,36270 -2001,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,36105 -2002,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,35731 -2003,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,35327 -2004,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,34998 -2005,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,34843 -2006,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,34630 -2007,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,34265 -2008,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,34304 -2009,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,34012 -2010,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,33797 -2011,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,33529 -2012,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,33263 -2013,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,33074 -2014,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,32873 -2015,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,32640 -2016,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,32332 -2017,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31973 -2018,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31853 -2019,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31837 -2020,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,31618 -2010,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,291 -2011,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,295 -2012,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,291 -2013,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,297 -2014,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,296 -2015,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,300 -2016,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,302 -2017,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,288 -2018,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,291 -2019,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,294 -2020,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,285 -2000,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2001,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2002,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2003,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2004,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,99 -2005,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2006,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2007,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,106 -2008,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2009,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2010,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2011,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2012,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2013,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2014,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2015,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2016,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,129 -2017,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2018,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2019,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,119 -2020,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2000,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2001,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2002,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2003,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,90 -2004,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,101 -2005,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2006,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,91 -2007,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2008,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2009,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2010,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,111 -2011,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,121 -2012,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2013,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,136 -2014,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,155 -2015,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2016,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,158 -2017,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,161 -2018,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,163 -2019,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,164 -2020,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,159 -2010,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2011,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2012,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2013,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,171 -2014,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,203 -2015,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,198 -2016,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,204 -2017,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,204 -2018,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,210 -2019,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,209 -2020,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,199 -2000,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2281 -2001,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2284 -2002,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2276 -2003,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2219 -2004,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2161 -2005,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2168 -2006,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2142 -2007,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2079 -2008,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2091 -2009,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2014 -2010,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2026 -2011,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2021 -2012,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2044 -2013,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2058 -2014,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2074 -2015,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2051 -2016,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2074 -2017,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2045 -2018,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2026 -2019,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2032 -2020,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2030 -2010,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2216 -2011,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2217 -2012,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2261 -2013,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2281 -2014,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2304 -2015,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2302 -2016,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2325 -2017,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2304 -2018,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2284 -2019,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2287 -2020,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2296 -2010,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2000,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,205 -2001,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,215 -2002,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,229 -2003,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,251 -2004,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,260 -2005,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,272 -2006,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,289 -2007,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,309 -2008,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,338 -2009,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,353 -2010,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,373 -2011,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,390 -2012,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,402 -2013,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,406 -2014,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,413 -2015,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,445 -2016,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,437 -2017,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,445 -2018,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,445 -2019,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,443 -2020,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,454 -2010,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31516 -2011,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31241 -2012,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30934 -2013,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30723 -2014,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30477 -2015,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30276 -2016,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29932 -2017,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29612 -2018,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29510 -2019,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29487 -2020,geoId/01127,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29280 -2000,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33612 -2001,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33424 -2002,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,33044 -2003,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,32669 -2004,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,32368 -2005,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,32202 -2006,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,32000 -2007,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,31664 -2008,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,31668 -2009,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,31430 -2010,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,31165 -2011,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30873 -2012,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30560 -2013,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30342 -2014,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30091 -2015,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29854 -2016,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29523 -2017,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29197 -2018,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29092 -2019,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29068 -2020,geoId/01127,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28849 -2000,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,328 -2001,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,378 -2002,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,423 -2003,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,459 -2004,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,509 -2005,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,576 -2006,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,598 -2007,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,661 -2008,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,736 -2009,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,772 -2010,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,763 -2011,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,799 -2012,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,778 -2013,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,798 -2014,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,781 -2015,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,821 -2016,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,856 -2017,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,878 -2018,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,905 -2019,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,943 -2020,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1002 -2010,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2011,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2012,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2014,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2015,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2016,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2017,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2018,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,57 -2019,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2020,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2000,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2007,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2008,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2009,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2011,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,41 -2016,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2019,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2000,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2010,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2001,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2002,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2003,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2004,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2005,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2006,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2008,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2009,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2010,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2012,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2013,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2016,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2010,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2011,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2013,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2014,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2015,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2016,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2017,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2018,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2019,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2020,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2010,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2000,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2009,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2000,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2006,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2009,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,286 -2001,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,337 -2002,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,369 -2003,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,401 -2004,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,448 -2005,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,489 -2006,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,496 -2007,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,554 -2008,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,617 -2009,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,645 -2010,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,640 -2011,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,673 -2012,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,653 -2013,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,675 -2014,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,649 -2015,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,661 -2016,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,691 -2017,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,719 -2018,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,745 -2019,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,774 -2020,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,818 -2010,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,661 -2011,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,696 -2012,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,677 -2013,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,698 -2014,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,677 -2015,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,685 -2016,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,719 -2017,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,741 -2018,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,775 -2019,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,805 -2020,geoId/01127,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,851 -2000,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,33726 -2001,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,33569 -2002,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,33294 -2003,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,32988 -2004,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,32745 -2005,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,32664 -2006,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,32545 -2007,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,32296 -2008,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,32270 -2009,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,32023 -2010,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,31895 -2011,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,31676 -2012,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,31466 -2013,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,31308 -2014,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,31073 -2015,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,30820 -2016,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,30693 -2017,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,30362 -2018,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,30191 -2019,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,30136 -2020,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,29729 -2010,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,326 -2011,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,330 -2012,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,345 -2013,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,336 -2014,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,343 -2015,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,343 -2016,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,361 -2017,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,363 -2018,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,373 -2019,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,376 -2020,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,386 -2000,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2001,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2002,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2003,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2004,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,114 -2005,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,112 -2006,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2007,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,113 -2008,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2009,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,130 -2010,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2011,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2012,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2013,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2014,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2015,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2016,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,141 -2017,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,140 -2018,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,143 -2019,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,148 -2020,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,149 -2000,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2001,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2002,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2003,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2004,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2005,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2006,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2007,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2008,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2009,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2010,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2011,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,96 -2012,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,105 -2013,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,116 -2014,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,125 -2015,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2016,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,134 -2017,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,140 -2018,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2019,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,124 -2020,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,132 -2010,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2011,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,129 -2012,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2013,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,157 -2014,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,162 -2015,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,178 -2016,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2017,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2018,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,176 -2019,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,179 -2020,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2000,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2034 -2001,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2024 -2002,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1979 -2003,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1950 -2004,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1928 -2005,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1919 -2006,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1886 -2007,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1884 -2008,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1889 -2009,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1850 -2010,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1855 -2011,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1842 -2012,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1853 -2013,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1859 -2014,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1854 -2015,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1810 -2016,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1835 -2017,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1816 -2018,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1803 -2019,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1804 -2020,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1768 -2010,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2018 -2011,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2017 -2012,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2046 -2013,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2058 -2014,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2064 -2015,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2038 -2016,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2076 -2017,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2060 -2018,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2065 -2019,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2080 -2020,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2062 -2010,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2017,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,193 -2001,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,204 -2002,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,225 -2003,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,243 -2004,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,259 -2005,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,278 -2006,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,304 -2007,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,320 -2008,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,323 -2009,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,344 -2010,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,365 -2011,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,387 -2012,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,416 -2013,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,419 -2014,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,433 -2015,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,448 -2016,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,485 -2017,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,478 -2018,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,505 -2019,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,522 -2020,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,550 -2010,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29790 -2011,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29575 -2012,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29339 -2013,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29157 -2014,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28929 -2015,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28700 -2016,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28544 -2017,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28215 -2018,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28079 -2019,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28015 -2020,geoId/01127,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27641 -2000,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,31322 -2001,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,31149 -2002,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30903 -2003,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30609 -2004,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30371 -2005,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30278 -2006,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,30147 -2007,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29896 -2008,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29850 -2009,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29612 -2010,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29452 -2011,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,29209 -2012,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28947 -2013,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28764 -2014,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28512 -2015,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28281 -2016,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,28081 -2017,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27771 -2018,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27600 -2019,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27520 -2020,geoId/01127,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,27113 -2000,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,77 -2001,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,74 -2002,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,81 -2003,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,74 -2004,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,75 -2005,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,61 -2006,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,62 -2007,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,62 -2008,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,60 -2009,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,64 -2010,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,69 -2011,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,85 -2012,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,99 -2013,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,99 -2014,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,95 -2015,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,101 -2016,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,106 -2017,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,120 -2018,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,119 -2019,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,124 -2020,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,128 -2010,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2000,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2002,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2003,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2006,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2001,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2002,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2003,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2004,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2005,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2006,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2007,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2008,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2009,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2010,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,42 -2011,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2012,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2013,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2014,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2015,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2016,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2017,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2018,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,77 -2020,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,82 -2010,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2013,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2014,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2015,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2016,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2017,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2018,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2019,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2020,geoId/01129,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2000,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9152 -2001,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9054 -2002,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9041 -2003,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9061 -2004,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,9034 -2005,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8961 -2006,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8966 -2007,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8843 -2008,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8844 -2009,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8802 -2010,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8882 -2011,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8745 -2012,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8603 -2013,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8525 -2014,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8506 -2015,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8518 -2016,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8365 -2017,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8290 -2018,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8206 -2019,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8224 -2020,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,8046 -2010,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,794 -2011,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,761 -2012,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,747 -2013,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,731 -2014,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,747 -2015,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,763 -2016,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,744 -2017,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,730 -2018,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,744 -2019,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,751 -2020,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,725 -2000,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,671 -2001,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,655 -2002,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,677 -2003,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,655 -2004,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,686 -2005,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,700 -2006,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,710 -2007,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,718 -2008,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,722 -2009,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,724 -2010,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,734 -2011,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,695 -2012,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,685 -2013,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,677 -2014,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,687 -2015,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,696 -2016,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,673 -2017,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,669 -2018,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,671 -2019,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,677 -2020,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,663 -2000,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2014,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2015,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2016,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2017,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,56 -2018,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2019,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2020,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2000,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2526 -2001,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2493 -2002,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2455 -2003,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2457 -2004,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2434 -2005,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2368 -2006,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2359 -2007,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2301 -2008,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2302 -2009,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2254 -2010,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2275 -2011,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2227 -2012,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2169 -2013,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2173 -2014,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2156 -2015,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2133 -2016,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2072 -2017,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2021 -2018,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1960 -2019,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1985 -2020,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1935 -2010,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2318 -2011,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2267 -2012,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2218 -2013,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2215 -2014,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2203 -2015,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2188 -2016,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2132 -2017,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2069 -2018,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2014 -2019,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2044 -2020,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1998 -2010,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,77 -2001,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2002,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2003,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2004,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,87 -2005,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2006,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2007,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2008,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2009,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2010,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2011,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,108 -2012,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2013,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2014,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2015,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,125 -2016,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2017,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,122 -2018,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,131 -2019,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2020,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,139 -2010,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5843 -2011,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5791 -2012,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5702 -2013,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5632 -2014,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5614 -2015,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5632 -2016,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5565 -2017,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5546 -2018,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5511 -2019,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5501 -2020,geoId/01129,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5385 -2000,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5868 -2001,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5823 -2002,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5821 -2003,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5856 -2004,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5815 -2005,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5774 -2006,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5784 -2007,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5709 -2008,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5703 -2009,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5702 -2010,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5747 -2011,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5695 -2012,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5618 -2013,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5539 -2014,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5514 -2015,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5530 -2016,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5453 -2017,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5440 -2018,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5402 -2019,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5380 -2020,geoId/01129,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5262 -2000,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,83 -2001,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,82 -2002,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,80 -2003,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,84 -2004,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,83 -2005,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,83 -2006,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,80 -2007,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,76 -2008,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,77 -2009,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,85 -2010,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,90 -2011,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,103 -2012,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,108 -2013,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,106 -2014,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,117 -2015,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,115 -2016,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,123 -2017,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,129 -2018,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,132 -2019,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,129 -2020,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,134 -2010,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2000,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2001,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2002,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2003,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2004,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2005,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2010,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2001,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2002,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2003,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2004,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2005,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2006,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,44 -2007,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2008,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2009,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,49 -2010,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2011,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2012,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2013,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2014,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2015,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2016,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2017,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2018,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,87 -2019,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,83 -2020,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2010,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,59 -2011,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2012,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2013,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2014,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2015,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,81 -2016,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2017,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2018,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2019,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,93 -2020,geoId/01129,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2000,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8789 -2001,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8723 -2002,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8693 -2003,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8691 -2004,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8609 -2005,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8585 -2006,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8597 -2007,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8510 -2008,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8515 -2009,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8542 -2010,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8586 -2011,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8423 -2012,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8337 -2013,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8168 -2014,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8150 -2015,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8097 -2016,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,8013 -2017,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7945 -2018,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7879 -2019,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7802 -2020,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,7668 -2010,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,709 -2011,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,682 -2012,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,652 -2013,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,646 -2014,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,656 -2015,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,644 -2016,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,624 -2017,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,605 -2018,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,609 -2019,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,595 -2020,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,589 -2000,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,607 -2001,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,619 -2002,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,632 -2003,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,651 -2004,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,637 -2005,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,632 -2006,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,633 -2007,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,668 -2008,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,682 -2009,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,666 -2010,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,666 -2011,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,640 -2012,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,608 -2013,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,596 -2014,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,609 -2015,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,595 -2016,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,576 -2017,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,555 -2018,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,555 -2019,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,548 -2020,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,540 -2000,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2014,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2015,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,88 -2016,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2017,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2018,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,80 -2019,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,84 -2020,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2010,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2013,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2014,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,80 -2015,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,106 -2016,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 -2017,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2018,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,100 -2019,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,99 -2020,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2000,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2307 -2001,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2265 -2002,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2221 -2003,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2178 -2004,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2141 -2005,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2125 -2006,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2130 -2007,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2068 -2008,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2081 -2009,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2090 -2010,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2107 -2011,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2067 -2012,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1999 -2013,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1957 -2014,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1912 -2015,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1892 -2016,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1892 -2017,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1875 -2018,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1857 -2019,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1799 -2020,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1762 -2010,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2135 -2011,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2092 -2012,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2030 -2013,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1987 -2014,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1948 -2015,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1925 -2016,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1923 -2017,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1906 -2018,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1888 -2019,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1835 -2020,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1799 -2010,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,65 -2001,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,60 -2002,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2003,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2004,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2005,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,64 -2006,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2007,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,68 -2008,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2009,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,70 -2010,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2011,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2012,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,76 -2013,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2014,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,84 -2015,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,88 -2016,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 -2017,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,86 -2018,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,95 -2019,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,90 -2020,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,97 -2010,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5799 -2011,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5695 -2012,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5682 -2013,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5559 -2014,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5547 -2015,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5502 -2016,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5449 -2017,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5419 -2018,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5373 -2019,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5356 -2020,geoId/01129,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5267 -2000,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5804 -2001,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5773 -2002,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5770 -2003,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5789 -2004,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5762 -2005,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5758 -2006,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5763 -2007,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5701 -2008,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5681 -2009,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5711 -2010,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5737 -2011,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5629 -2012,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5619 -2013,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5483 -2014,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5471 -2015,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5428 -2016,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5370 -2017,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5342 -2018,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5286 -2019,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5275 -2020,geoId/01129,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,5178 -2000,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,62 -2001,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,60 -2002,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,60 -2003,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,59 -2004,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,59 -2005,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,43 -2006,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,36 -2007,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,35 -2008,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,33 -2009,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,34 -2010,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,34 -2011,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,36 -2012,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,39 -2013,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,42 -2014,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,46 -2015,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,45 -2016,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,53 -2017,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,63 -2018,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,68 -2019,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,71 -2020,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,74 -2010,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2001,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2002,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2003,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2004,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2005,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2006,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2007,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2008,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2019,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2002,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2003,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2004,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2005,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2019,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01131,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,41 -2000,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6911 -2001,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6824 -2002,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6763 -2003,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6688 -2004,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6619 -2005,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6506 -2006,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6403 -2007,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6419 -2008,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6406 -2009,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6202 -2010,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,6066 -2011,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5995 -2012,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5945 -2013,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5807 -2014,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5686 -2015,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5660 -2016,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5650 -2017,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5541 -2018,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5506 -2019,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5415 -2020,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,5340 -2010,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2000,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,5052 -2001,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4995 -2002,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4962 -2003,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4904 -2004,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4859 -2005,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4788 -2006,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4721 -2007,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4744 -2008,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4752 -2009,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4573 -2010,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4462 -2011,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4420 -2012,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4342 -2013,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4238 -2014,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4144 -2015,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4109 -2016,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4096 -2017,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4016 -2018,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4017 -2019,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3936 -2020,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3849 -2010,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4474 -2011,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4427 -2012,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4354 -2013,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4253 -2014,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4156 -2015,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4125 -2016,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4118 -2017,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4034 -2018,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4043 -2019,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3955 -2020,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3875 -2010,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2002,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2005,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2008,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2009,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2016,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2017,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2018,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2020,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2010,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1591 -2011,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1559 -2012,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1584 -2013,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1550 -2014,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1519 -2015,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1524 -2016,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1523 -2017,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1497 -2018,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1459 -2019,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1450 -2020,geoId/01131,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1464 -2000,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1832 -2001,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1802 -2002,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1776 -2003,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1756 -2004,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1729 -2005,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1692 -2006,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1655 -2007,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1645 -2008,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1624 -2009,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1598 -2010,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1574 -2011,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1542 -2012,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1562 -2013,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1528 -2014,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1496 -2015,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1495 -2016,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1490 -2017,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1462 -2018,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1423 -2019,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1415 -2020,geoId/01131,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1423 -2000,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,35 -2001,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,34 -2002,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,31 -2003,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,32 -2004,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,33 -2005,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,36 -2006,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,35 -2007,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,37 -2008,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,35 -2009,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,40 -2010,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,40 -2011,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,44 -2012,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,48 -2013,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,58 -2014,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,65 -2015,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,68 -2016,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,84 -2017,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,92 -2018,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,86 -2019,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,86 -2020,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,86 -2010,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2002,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2003,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2004,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2008,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2010,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2017,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2005,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2017,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2018,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2019,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2020,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2010,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2017,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2018,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2019,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2020,geoId/01131,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2000,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5931 -2001,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5888 -2002,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5924 -2003,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5821 -2004,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5782 -2005,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5784 -2006,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5747 -2007,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5717 -2008,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5674 -2009,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5594 -2010,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5420 -2011,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5363 -2012,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5272 -2013,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5241 -2014,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5153 -2015,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5127 -2016,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5073 -2017,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,5008 -2018,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4932 -2019,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4824 -2020,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,4706 -2010,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2019,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2020,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2000,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2000,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4205 -2001,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4188 -2002,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4223 -2003,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4144 -2004,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4110 -2005,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4099 -2006,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4075 -2007,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4065 -2008,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4052 -2009,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3977 -2010,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3874 -2011,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3858 -2012,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3745 -2013,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3717 -2014,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3653 -2015,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3628 -2016,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3587 -2017,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3525 -2018,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3467 -2019,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3387 -2020,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3280 -2010,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3885 -2011,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3872 -2012,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3761 -2013,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3736 -2014,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3669 -2015,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3651 -2016,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3602 -2017,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3549 -2018,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3498 -2019,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3423 -2020,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3317 -2010,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2008,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2009,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,35 -2014,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2017,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2018,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,58 -2019,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2020,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2010,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1534 -2011,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1494 -2012,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1514 -2013,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1507 -2014,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1485 -2015,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1476 -2016,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1460 -2017,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1453 -2018,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1427 -2019,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1398 -2020,geoId/01131,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1394 -2000,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1703 -2001,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1678 -2002,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1678 -2003,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1656 -2004,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1651 -2005,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1653 -2006,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1636 -2007,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1617 -2008,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1588 -2009,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1582 -2010,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1512 -2011,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1469 -2012,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1489 -2013,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1478 -2014,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1449 -2015,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1443 -2016,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1426 -2017,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1415 -2018,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1383 -2019,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1350 -2020,geoId/01131,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1333 -2000,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,137 -2001,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,153 -2002,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,159 -2003,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,188 -2004,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,181 -2005,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,198 -2006,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,221 -2007,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,252 -2008,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,259 -2009,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,266 -2010,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,288 -2011,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,292 -2012,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,310 -2013,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,308 -2014,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,306 -2015,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,332 -2016,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,329 -2017,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,334 -2018,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,339 -2019,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,353 -2020,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,361 -2010,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2017,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2000,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,15 -2006,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2000,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,126 -2001,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,142 -2002,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,147 -2003,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2004,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,154 -2005,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,166 -2006,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,185 -2007,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,213 -2008,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,209 -2009,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,210 -2010,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,234 -2011,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,239 -2012,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,260 -2013,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,255 -2014,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,250 -2015,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,272 -2016,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,269 -2017,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,269 -2018,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,273 -2019,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,283 -2020,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,285 -2010,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,244 -2011,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,247 -2012,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,267 -2013,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,267 -2014,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,263 -2015,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,285 -2016,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,279 -2017,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,282 -2018,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,285 -2019,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,299 -2020,geoId/01133,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,297 -2000,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12555 -2001,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12367 -2002,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12362 -2003,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12370 -2004,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12384 -2005,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12345 -2006,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12383 -2007,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12337 -2008,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12253 -2009,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12243 -2010,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12147 -2011,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,12081 -2012,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11952 -2013,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11963 -2014,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11930 -2015,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11787 -2016,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11771 -2017,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11702 -2018,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11681 -2019,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11690 -2020,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,11593 -2010,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,149 -2011,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,144 -2012,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2013,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2014,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,162 -2015,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,154 -2016,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,164 -2017,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,165 -2018,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,175 -2019,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,185 -2020,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2000,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,50 -2001,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2002,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2003,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2004,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2005,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,59 -2006,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2007,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2008,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2009,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2010,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2011,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2012,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2013,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2014,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2015,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2016,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2017,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2018,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,73 -2019,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2020,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2000,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2002,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2004,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2005,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2006,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2007,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2008,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2009,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2014,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2020,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,43 -2010,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2011,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,50 -2013,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,55 -2014,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2015,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,61 -2016,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71 -2017,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,66 -2018,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 -2019,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 -2020,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72 -2000,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 -2001,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,47 -2002,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2003,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2004,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2005,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2006,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2007,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2008,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2009,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2010,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,56 -2011,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2012,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,64 -2013,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,75 -2015,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,78 -2016,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,74 -2017,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2018,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,92 -2019,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2020,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,93 -2010,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 -2011,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2012,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2013,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2014,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,129 -2015,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,138 -2016,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,128 -2017,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,147 -2018,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2019,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,161 -2020,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,164 -2010,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,85 -2001,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,82 -2002,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,94 -2003,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,96 -2004,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2005,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2006,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,112 -2007,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,118 -2008,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,124 -2009,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2010,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,132 -2011,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,134 -2012,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,133 -2013,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2014,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2015,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,146 -2016,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,154 -2017,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2018,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,167 -2019,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,182 -2020,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,183 -2010,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11975 -2011,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11899 -2012,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11769 -2013,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11767 -2014,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11722 -2015,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11573 -2016,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11557 -2017,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11481 -2018,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11450 -2019,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11458 -2020,geoId/01133,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11375 -2000,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12350 -2001,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12170 -2002,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12136 -2003,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12143 -2004,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12145 -2005,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12083 -2006,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12113 -2007,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,12060 -2008,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11958 -2009,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11948 -2010,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11851 -2011,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11774 -2012,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11649 -2013,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11638 -2014,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11592 -2015,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11447 -2016,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11421 -2017,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11336 -2018,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11301 -2019,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11290 -2020,geoId/01133,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11201 -2000,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,237 -2001,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,241 -2002,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,273 -2003,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,278 -2004,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,288 -2005,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,316 -2006,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,342 -2007,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,380 -2008,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,389 -2009,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,397 -2010,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,356 -2011,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,363 -2012,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,367 -2013,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,369 -2014,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,383 -2015,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,395 -2016,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,385 -2017,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,392 -2018,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,395 -2019,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,406 -2020,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,426 -2010,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,39 -2011,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,43 -2015,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2016,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,47 -2018,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2000,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2008,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2009,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2010,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,35 -2011,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,34 -2012,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,37 -2018,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2019,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,38 -2020,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 -2000,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2008,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 -2009,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2019,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2000,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,226 -2001,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,228 -2002,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,254 -2003,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,249 -2004,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,257 -2005,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,268 -2006,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,291 -2007,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,321 -2008,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,321 -2009,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,318 -2010,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,278 -2011,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,285 -2012,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,288 -2013,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,287 -2014,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,298 -2015,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,304 -2016,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,296 -2017,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,300 -2018,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,299 -2019,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,310 -2020,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,330 -2010,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,285 -2011,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,293 -2012,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,297 -2013,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,297 -2014,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,310 -2015,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,315 -2016,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,308 -2017,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,313 -2018,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,312 -2019,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,326 -2020,geoId/01133,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,344 -2000,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11928 -2001,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11836 -2002,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11806 -2003,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11740 -2004,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11761 -2005,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11770 -2006,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11850 -2007,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11889 -2008,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11795 -2009,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11785 -2010,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11621 -2011,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11626 -2012,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11565 -2013,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11550 -2014,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11522 -2015,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11415 -2016,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11426 -2017,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11325 -2018,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11275 -2019,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11251 -2020,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,11128 -2010,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2011,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,166 -2012,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,169 -2013,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,158 -2014,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,164 -2015,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,155 -2016,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,167 -2017,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,171 -2018,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,168 -2019,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,172 -2020,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,177 -2000,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2001,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2002,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,58 -2003,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,61 -2004,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,62 -2005,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 -2006,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2007,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2008,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,65 -2009,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2010,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2012,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2013,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,68 -2014,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2015,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,67 -2016,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,69 -2017,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2018,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,72 -2019,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,66 -2020,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,71 -2000,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,12 -2004,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2007,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,20 -2008,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,29 -2017,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,46 -2012,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,48 -2014,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,51 -2016,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,53 -2017,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2018,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,52 -2019,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,54 -2020,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,49 -2000,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2001,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,46 -2002,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,51 -2003,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2004,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,60 -2005,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,53 -2006,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 -2007,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,57 -2008,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2009,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2010,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,55 -2011,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,79 -2012,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,76 -2013,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,81 -2014,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,86 -2015,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,94 -2016,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,102 -2017,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,98 -2018,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,100 -2019,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,122 -2020,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,115 -2010,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,103 -2011,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,123 -2012,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,123 -2013,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,130 -2014,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2015,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,151 -2016,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,155 -2017,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,150 -2018,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,155 -2019,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2020,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,173 -2010,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,73 -2001,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,74 -2002,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,79 -2003,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 -2004,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,101 -2005,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,102 -2006,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,110 -2007,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,116 -2008,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,127 -2009,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,135 -2010,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,143 -2011,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,147 -2012,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,152 -2013,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,154 -2014,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,156 -2015,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2016,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,162 -2017,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,163 -2018,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,159 -2019,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,184 -2020,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,174 -2010,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11452 -2011,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11438 -2012,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11374 -2013,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11360 -2014,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11325 -2015,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11212 -2016,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11208 -2017,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11107 -2018,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11057 -2019,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11016 -2020,geoId/01133,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,10900 -2000,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11743 -2001,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11648 -2002,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11605 -2003,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11521 -2004,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11526 -2005,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11535 -2006,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11598 -2007,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11628 -2008,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11524 -2009,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11500 -2010,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11327 -2011,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11298 -2012,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11236 -2013,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11217 -2014,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11178 -2015,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11067 -2016,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,11058 -2017,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10959 -2018,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10910 -2019,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10847 -2020,geoId/01133,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,10738 +1990,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,215 +1991,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,211 +1992,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,200 +1993,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,194 +1994,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,194 +1995,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,192 +1996,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,197 +1997,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,183 +1998,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,179 +1999,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,169 +1990,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,53 +1991,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,53 +1992,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,53 +1993,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,55 +1994,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,57 +1995,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,61 +1996,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,61 +1997,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,62 +1998,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,61 +1999,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,62 +1990,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9438 +1991,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9360 +1992,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9488 +1993,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9650 +1994,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9767 +1995,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9836 +1996,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9844 +1997,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9820 +1998,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9799 +1999,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9834 +1990,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14324 +1991,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14148 +1992,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14178 +1993,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14265 +1994,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14273 +1995,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14253 +1996,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14165 +1997,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13946 +1998,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13814 +1999,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,13733 +1990,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1991,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1992,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1993,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1994,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1995,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1996,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,17 +1997,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1998,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1999,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,26 +1990,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,68 +1991,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,75 +1992,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,66 +1993,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,74 +1994,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,74 +1995,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,83 +1996,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,77 +1997,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,112 +1998,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,75 +1999,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,104 +1990,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,313 +1991,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,307 +1992,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,302 +1993,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,313 +1994,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,324 +1995,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,343 +1996,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,341 +1997,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,373 +1998,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,379 +1999,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,399 +1990,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1238 +1991,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1301 +1992,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1365 +1993,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1465 +1994,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1575 +1995,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1691 +1996,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1822 +1997,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1969 +1998,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2113 +1999,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,2209 +1990,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,407 +1991,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,409 +1992,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,394 +1993,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,395 +1994,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,391 +1995,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,382 +1996,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,376 +1997,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,369 +1998,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,356 +1999,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,357 +1990,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1502 +1991,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1563 +1992,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1603 +1993,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1680 +1994,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1717 +1995,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1786 +1996,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1790 +1997,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1814 +1998,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1786 +1999,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1801 +1990,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,87185 +1991,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,88498 +1992,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,90039 +1993,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,91362 +1994,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,92528 +1995,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,93138 +1996,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,93521 +1997,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,94153 +1998,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,94435 +1999,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,94172 +1990,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,118617 +1991,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,119517 +1992,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,120122 +1993,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,120674 +1994,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,120701 +1995,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,120197 +1996,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,119661 +1997,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,118906 +1998,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,118220 +1999,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,116745 +1990,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1991,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1992,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1993,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1994,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1995,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1996,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1997,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1998,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1999,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1990,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1991,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1992,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1993,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1995,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1996,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1997,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1998,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,8 +1999,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1990,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,44 +1991,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,50 +1992,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,49 +1993,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,55 +1994,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1995,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,61 +1996,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1997,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,59 +1998,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,55 +1999,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,68 +1990,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,533 +1991,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,566 +1992,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,595 +1993,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,652 +1994,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,707 +1995,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,775 +1996,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,848 +1997,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,924 +1998,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1017 +1999,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1081 +1990,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,307 +1991,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,313 +1992,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,308 +1993,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,301 +1994,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,296 +1995,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,293 +1996,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,296 +1997,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,289 +1998,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,277 +1999,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,271 +1990,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,367 +1991,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,393 +1992,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,411 +1993,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,428 +1994,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,439 +1995,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,462 +1996,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,473 +1997,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,490 +1998,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,492 +1999,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,509 +1990,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10113 +1991,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10299 +1992,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10556 +1993,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10815 +1994,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11022 +1995,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11218 +1996,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11385 +1997,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11630 +1998,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11809 +1999,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11956 +1990,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,89116 +1991,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,90272 +1992,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,91467 +1993,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,92718 +1994,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,93320 +1995,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,93887 +1996,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,94336 +1997,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,94973 +1998,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,95556 +1999,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,95765 +1990,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1991,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1992,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1993,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1994,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1995,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1996,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1997,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1998,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1999,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1990,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1991,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1992,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1993,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1994,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1995,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1996,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1997,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1998,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1999,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1990,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1991,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1992,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1993,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1994,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1995,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1996,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1997,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1998,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1999,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1990,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,14 +1991,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,14 +1992,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,13 +1993,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,15 +1994,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,15 +1995,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,22 +1996,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,15 +1997,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,15 +1998,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,16 +1999,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,15 +1990,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8160 +1991,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8034 +1992,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8044 +1993,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8117 +1994,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8193 +1995,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8282 +1996,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8269 +1997,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8316 +1998,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8367 +1999,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8329 +1990,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4480 +1991,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4347 +1992,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4265 +1993,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4303 +1994,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4325 +1995,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4429 +1996,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4273 +1997,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4226 +1998,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4253 +1999,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4224 +1990,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1991,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1992,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1993,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1994,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1995,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1996,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1997,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1998,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1999,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1990,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1991,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1992,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1993,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,31 +1994,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,33 +1995,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1996,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1997,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,42 +1998,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,49 +1999,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1990,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1991,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1992,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1993,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1994,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1995,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1996,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1997,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1998,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,17 +1999,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1990,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,27 +1991,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,26 +1992,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,28 +1993,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,29 +1994,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,30 +1995,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,32 +1996,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,32 +1997,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,32 +1998,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,35 +1999,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,34 +1990,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8630 +1991,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8665 +1992,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8796 +1993,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8864 +1994,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8870 +1995,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8923 +1996,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8997 +1997,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9033 +1998,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9101 +1999,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9143 +1990,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11954 +1991,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11974 +1992,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12035 +1993,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,12016 +1994,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11926 +1995,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11860 +1996,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11868 +1997,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11804 +1998,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11787 +1999,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11756 +1990,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1992,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1993,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1994,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1995,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1996,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1997,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1999,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1990,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1992,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1993,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1994,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1995,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1996,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1997,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1998,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1999,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1990,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,37 +1991,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,41 +1992,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,41 +1993,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1994,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1995,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,42 +1996,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1997,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,48 +1998,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,49 +1999,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,52 +1990,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,68 +1991,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,66 +1992,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,68 +1993,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,75 +1994,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,81 +1995,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,86 +1996,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,97 +1997,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,98 +1998,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,108 +1999,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,109 +1990,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,144 +1991,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,140 +1992,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,139 +1993,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,136 +1994,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,138 +1995,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,131 +1996,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,127 +1997,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,131 +1998,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,122 +1999,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,123 +1990,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,68 +1991,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,71 +1992,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,75 +1993,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,83 +1994,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,90 +1995,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,87 +1996,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,87 +1997,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,85 +1998,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,88 +1999,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,89 +1990,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9532 +1991,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9682 +1992,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9799 +1993,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9944 +1994,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10217 +1995,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10307 +1996,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10291 +1997,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10456 +1998,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10500 +1999,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10492 +1990,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,17783 +1991,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,17987 +1992,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,18012 +1993,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,18070 +1994,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,18176 +1995,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,17900 +1996,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,17708 +1997,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,17718 +1998,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,17775 +1999,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,17599 +1990,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1991,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1992,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1993,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1994,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1995,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1996,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1997,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1998,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1999,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1990,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,38 +1991,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1992,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,40 +1993,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,42 +1994,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,48 +1995,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,47 +1996,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,54 +1997,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,59 +1998,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,64 +1999,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,71 +1990,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1991,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1992,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1993,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,26 +1994,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1995,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1996,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1997,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1998,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1999,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1990,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,21 +1991,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,21 +1992,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,21 +1993,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,22 +1994,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,22 +1995,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,23 +1996,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,24 +1997,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,26 +1998,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,24 +1999,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,26 +1990,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4675 +1991,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4727 +1992,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4820 +1993,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4875 +1994,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4905 +1995,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4930 +1996,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4967 +1997,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4961 +1998,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4997 +1999,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5100 +1990,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15164 +1991,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15202 +1992,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15329 +1993,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15329 +1994,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15223 +1995,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15144 +1996,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15125 +1997,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14874 +1998,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,14904 +1999,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,15024 +1990,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1991,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1992,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1993,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1994,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1995,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1996,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1997,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1998,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1999,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1990,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1991,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1992,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,8 +1993,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,8 +1994,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1995,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,10 +1996,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1997,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1998,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1999,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1990,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1991,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,53 +1992,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,57 +1993,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,52 +1994,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,59 +1995,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,54 +1996,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,58 +1997,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,67 +1998,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,60 +1999,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,58 +1990,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,237 +1991,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,245 +1992,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,262 +1993,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,292 +1994,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,328 +1995,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,344 +1996,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,371 +1997,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,390 +1998,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,419 +1999,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,438 +1990,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,85 +1991,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,86 +1992,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,86 +1993,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,83 +1994,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,87 +1995,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,83 +1996,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,82 +1997,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,85 +1998,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,73 +1999,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,73 +1990,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,111 +1991,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,113 +1992,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,125 +1993,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,137 +1994,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,144 +1995,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,146 +1996,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,145 +1997,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,145 +1998,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,143 +1999,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,146 +1990,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,18108 +1991,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,18458 +1992,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19099 +1993,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19621 +1994,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20398 +1995,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20489 +1996,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20691 +1997,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20486 +1998,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20444 +1999,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20449 +1990,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28359 +1991,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28724 +1992,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,29335 +1993,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,29745 +1994,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,30467 +1995,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,30241 +1996,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,30243 +1997,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,29550 +1998,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,29215 +1999,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28892 +1990,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1993,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1994,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1995,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1996,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1997,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1998,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1999,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1990,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1993,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1994,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1995,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1997,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1998,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1999,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1991,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1992,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1993,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,26 +1994,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1995,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1996,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,31 +1997,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,31 +1998,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,36 +1999,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,35 +1990,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,184 +1991,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,191 +1992,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,206 +1993,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,231 +1994,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,266 +1995,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,289 +1996,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,327 +1997,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,358 +1998,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,403 +1999,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,439 +1990,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,134 +1991,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,137 +1992,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,137 +1993,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,145 +1994,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,143 +1995,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,147 +1996,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,148 +1997,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,145 +1998,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,147 +1999,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,148 +1990,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,76 +1991,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,83 +1992,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,84 +1993,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,96 +1994,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,104 +1995,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,107 +1996,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,116 +1997,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,119 +1998,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,121 +1999,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,125 +1990,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4518 +1991,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4661 +1992,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4901 +1993,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5159 +1994,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5351 +1995,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5536 +1996,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5728 +1997,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5897 +1998,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6071 +1999,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,6299 +1990,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,45152 +1991,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,46277 +1992,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,47538 +1993,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,48865 +1994,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,50120 +1995,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,51700 +1996,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,53026 +1997,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,54094 +1998,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,55236 +1999,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,56803 +1990,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1992,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1993,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1994,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1995,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1997,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1999,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1990,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1992,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1993,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1994,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1995,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1996,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1997,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1998,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1999,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1990,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1991,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1992,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1993,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1994,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1995,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,34 +1996,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,40 +1997,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,40 +1998,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,47 +1999,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,47 +1990,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,503 +1991,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,546 +1992,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,592 +1993,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,655 +1994,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,753 +1995,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,854 +1996,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,958 +1997,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1103 +1998,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1236 +1999,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1368 +1990,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,263 +1991,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,279 +1992,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,281 +1993,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,284 +1994,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,291 +1995,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,303 +1996,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,308 +1997,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,319 +1998,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,319 +1999,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,324 +1990,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,579 +1991,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,638 +1992,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,676 +1993,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,738 +1994,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,805 +1995,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,871 +1996,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,920 +1997,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,977 +1998,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1016 +1999,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1064 +1990,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,7788 +1991,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8073 +1992,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,8475 +1993,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9046 +1994,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9704 +1995,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10252 +1996,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10712 +1997,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11316 +1998,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11826 +1999,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12432 +1990,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,90972 +1991,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,93810 +1992,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,97495 +1993,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,102848 +1994,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,108398 +1995,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,113003 +1996,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,117212 +1997,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,122049 +1998,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,126401 +1999,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,131148 +1990,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1997,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1999,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1992,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1993,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1994,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1995,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1996,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,8 +1997,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1998,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,8 +1999,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1990,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,56 +1991,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,50 +1992,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1993,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1994,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,49 +1995,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,49 +1996,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,48 +1997,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,54 +1998,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,53 +1999,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,60 +1990,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1991,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1992,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1993,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1994,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1995,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1996,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,32 +1997,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,32 +1998,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,38 +1999,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,40 +1990,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1991,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1992,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1993,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1994,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1995,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1996,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1997,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1998,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1999,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1990,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,29 +1991,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,29 +1992,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,30 +1993,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,30 +1994,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,32 +1995,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,31 +1996,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,33 +1997,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,31 +1998,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,34 +1999,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,30 +1990,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11322 +1991,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11334 +1992,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11311 +1993,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11283 +1994,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11511 +1995,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11514 +1996,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11489 +1997,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11355 +1998,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11255 +1999,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11164 +1990,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4731 +1991,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4789 +1992,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4705 +1993,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4657 +1994,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4681 +1995,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4591 +1996,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4546 +1997,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4421 +1998,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4370 +1999,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4311 +1990,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1992,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1993,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1994,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1995,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1996,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1997,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1998,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1999,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1990,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1991,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1992,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1993,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1994,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1995,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1996,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1997,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1998,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1999,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1990,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,166 +1991,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,175 +1992,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,188 +1993,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,195 +1994,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,201 +1995,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,218 +1996,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,227 +1997,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,235 +1998,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,238 +1999,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,236 +1990,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,328 +1991,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,335 +1992,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,349 +1993,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,359 +1994,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,378 +1995,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,398 +1996,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,426 +1997,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,454 +1998,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,481 +1999,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,507 +1990,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,172 +1991,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,169 +1992,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,165 +1993,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,158 +1994,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,159 +1995,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,155 +1996,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,156 +1997,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,158 +1998,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,149 +1999,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,154 +1990,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,111 +1991,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,110 +1992,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,113 +1993,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,114 +1994,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,120 +1995,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,127 +1996,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,129 +1997,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,136 +1998,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,138 +1999,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,136 +1990,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22651 +1991,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22836 +1992,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,23252 +1993,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,23619 +1994,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,23856 +1995,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,24048 +1996,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,24195 +1997,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,24452 +1998,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,24701 +1999,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,25021 +1990,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,50686 +1991,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,50816 +1992,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,50845 +1993,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,51003 +1994,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,51016 +1995,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,51108 +1996,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,51277 +1997,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,51202 +1998,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,51307 +1999,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,51457 +1990,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1997,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1999,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1990,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1991,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1992,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,22 +1993,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1994,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,25 +1995,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1996,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,27 +1997,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1998,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,31 +1999,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,40 +1990,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,41 +1991,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,42 +1992,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,42 +1993,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,42 +1994,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,48 +1995,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,53 +1996,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,63 +1997,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,72 +1998,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,74 +1999,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,82 +1990,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,61 +1991,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,59 +1992,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,57 +1993,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1994,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1995,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,49 +1996,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1997,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1998,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,48 +1999,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1990,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,37 +1991,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,38 +1992,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,39 +1993,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,42 +1994,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,43 +1995,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,45 +1996,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,47 +1997,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,47 +1998,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,48 +1999,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,53 +1990,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10223 +1991,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10368 +1992,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10501 +1993,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10611 +1994,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10746 +1995,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10818 +1996,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11046 +1997,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11229 +1998,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11314 +1999,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11377 +1990,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28500 +1991,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28683 +1992,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28677 +1993,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28704 +1994,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28658 +1995,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28525 +1996,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28842 +1997,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28860 +1998,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28844 +1999,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,28730 +1990,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1991,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1992,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1993,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,9 +1994,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1995,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1996,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1997,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1998,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1999,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,24 +1990,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,38 +1991,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,45 +1992,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,46 +1993,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,48 +1994,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,48 +1995,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,53 +1996,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,58 +1997,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,66 +1998,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,62 +1999,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,61 +1990,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,136 +1991,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,151 +1992,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,143 +1993,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,144 +1994,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,150 +1995,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,152 +1996,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,159 +1997,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,160 +1998,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,176 +1999,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,179 +1990,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,766 +1991,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,796 +1992,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,819 +1993,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,883 +1994,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,958 +1995,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1040 +1996,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1133 +1997,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1227 +1998,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1333 +1999,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,1424 +1990,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,242 +1991,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,241 +1992,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,234 +1993,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,224 +1994,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,224 +1995,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,228 +1996,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,227 +1997,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,226 +1998,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,227 +1999,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,223 +1990,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1251 +1991,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1304 +1992,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1329 +1993,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1394 +1994,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1417 +1995,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1472 +1996,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1464 +1997,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1455 +1998,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1453 +1999,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1464 +1990,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,39418 +1991,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,40162 +1992,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,40506 +1993,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,41201 +1994,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,42091 +1995,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,43297 +1996,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,43412 +1997,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,44246 +1998,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,44599 +1999,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,45100 +1990,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,109151 +1991,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,110403 +1992,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,110098 +1993,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,110616 +1994,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,110990 +1995,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,112447 +1996,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,112042 +1997,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,112486 +1998,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,112890 +1999,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,112960 +1990,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1993,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1994,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1995,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1996,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1997,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1998,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1999,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1990,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1991,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1992,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1993,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1994,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,8 +1995,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1996,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1997,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,8 +1998,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,9 +1999,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,7 +1990,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1991,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1992,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1993,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1994,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1995,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1996,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1997,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1998,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1999,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1990,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,205 +1991,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,203 +1992,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,214 +1993,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,231 +1994,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,257 +1995,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,268 +1996,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,308 +1997,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,343 +1998,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,373 +1999,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,402 +1990,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,84 +1991,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,86 +1992,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,87 +1993,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,84 +1994,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,85 +1995,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,90 +1996,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,89 +1997,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,94 +1998,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,95 +1999,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,89 +1990,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,101 +1991,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,103 +1992,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,107 +1993,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,111 +1994,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,116 +1995,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,122 +1996,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,127 +1997,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,135 +1998,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,135 +1999,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,143 +1990,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4388 +1991,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4477 +1992,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4538 +1993,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4609 +1994,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4676 +1995,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4759 +1996,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4853 +1997,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4951 +1998,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4998 +1999,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5070 +1990,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,62855 +1991,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,63131 +1992,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,63355 +1993,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,63615 +1994,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,63766 +1995,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,64202 +1996,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,64780 +1997,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,65132 +1998,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,65381 +1999,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,65588 +1990,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1991,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1992,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1993,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1994,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,10 +1995,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1996,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1997,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,13 +1998,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1999,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1990,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1997,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1991,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1992,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,11 +1993,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,12 +1994,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1995,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1996,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1997,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,17 +1998,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,14 +1999,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1990,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1991,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,29 +1992,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,32 +1993,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,35 +1994,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,35 +1995,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,39 +1996,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,41 +1997,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,51 +1998,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,52 +1999,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,52 +1990,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1052 +1991,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1033 +1992,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,993 +1993,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,972 +1994,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,941 +1995,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,932 +1996,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,940 +1997,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,926 +1998,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,896 +1999,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,872 +1990,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,14 +1991,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,14 +1992,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,14 +1993,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,14 +1994,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,14 +1995,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,15 +1996,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,16 +1997,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,16 +1998,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,16 +1999,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,18 +1990,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4612 +1991,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4675 +1992,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4729 +1993,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4847 +1994,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4898 +1995,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,4995 +1996,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5077 +1997,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5178 +1998,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5241 +1999,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,5302 +1990,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,10965 +1991,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11002 +1992,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11022 +1993,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11164 +1994,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11158 +1995,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11253 +1996,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11321 +1997,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11384 +1998,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11429 +1999,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,11460 +1990,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1992,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1993,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1995,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1997,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1998,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1999,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,9 +1992,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1993,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1994,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1995,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1996,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1997,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1998,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1999,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1990,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1991,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1992,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,17 +1993,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1994,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,15 +1995,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,16 +1996,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1997,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1998,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1999,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,21 +1990,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1991,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,17 +1992,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1993,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,18 +1994,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,20 +1995,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,19 +1996,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1997,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,23 +1998,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,28 +1999,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,30 +1990,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1991,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1992,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1993,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1994,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1995,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1996,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,6 +1997,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1998,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1999,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1990,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1991,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1992,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1993,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1994,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1995,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1996,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1997,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1998,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1999,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,5 +1990,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9289 +1991,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9463 +1992,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9441 +1993,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9477 +1994,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9488 +1995,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9510 +1996,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9488 +1997,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9409 +1998,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9425 +1999,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,9418 +1990,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4170 +1991,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4237 +1992,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4195 +1993,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4180 +1994,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4147 +1995,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4085 +1996,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,4060 +1997,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3992 +1998,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3965 +1999,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,3935 +1990,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1991,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1993,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1994,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,3 +1995,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,4 +1996,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1997,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,7 +1998,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,5 +1999,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,8 +1990,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,2 +1991,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,0 +1992,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,1 +1993,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1994,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1995,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1996,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1997,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,4 +1998,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,3 +1999,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,6 +1990,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1991,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1992,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1993,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1994,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1995,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1996,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,2 +1997,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1998,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1999,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,1 +1990,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,56 +1991,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,56 +1992,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,60 +1993,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,66 +1994,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,76 +1995,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,85 +1996,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,91 +1997,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,102 +1998,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,110 +1999,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_RaceUpto1999,123 +1990,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,42 +1991,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1992,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,42 +1993,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,41 +1994,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,43 +1995,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,42 +1996,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1997,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1998,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,46 +1999,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_RaceUpto1999,47 +1990,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,24 +1991,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,25 +1992,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,26 +1993,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,26 +1994,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,32 +1995,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,31 +1996,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,33 +1997,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,33 +1998,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,33 +1999,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:CensusPEPSurvey_RaceUpto1999,36 +1990,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,70 +1991,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,83 +1992,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,85 +1993,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,83 +1994,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,84 +1995,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,84 +1996,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,86 +1997,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,93 +1998,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,95 +1999,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_RaceUpto1999,95 +1990,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,21910 +1991,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,21801 +1992,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,22036 +1993,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,22400 +1994,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,22863 +1995,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,23082 +1996,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,23464 +1997,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,23684 +1998,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,23837 +1999,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_RaceUpto1999,24143 +2020,geoId/23019,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,1343 +2020,geoId/23019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 +2020,geoId/23019,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,39 +2020,geoId/23019,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,16 +2020,geoId/23019,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 +2020,geoId/23019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,48 +2020,geoId/23019,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,83 +2020,geoId/23019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,17 +2020,geoId/23019,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,4 +2020,geoId/23019,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,91 +2020,geoId/23019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1145 +2020,geoId/23019,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1231 +2020,geoId/23019,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,75080 +2020,geoId/23019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1557 +2020,geoId/23019,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,901 +2020,geoId/23019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,946 +2020,geoId/23019,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1255 +2020,geoId/23019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,568 +2020,geoId/23019,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,948 +2020,geoId/23019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,67 +2020,geoId/23019,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,23 +2020,geoId/23019,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1295 +2020,geoId/23019,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,72620 +2020,geoId/23019,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,71347 +2020,geoId/23019,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,1391 +2020,geoId/23019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,98 +2020,geoId/23019,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,52 +2020,geoId/23019,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,26 +2020,geoId/23019,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,40 +2020,geoId/23019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,63 +2020,geoId/23019,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,105 +2020,geoId/23019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 +2020,geoId/23019,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 +2020,geoId/23019,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,92 +2020,geoId/23019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,1155 +2020,geoId/23019,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1245 +2020,geoId/23019,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,74355 +2020,geoId/23019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1551 +2020,geoId/23019,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,922 +2020,geoId/23019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,824 +2020,geoId/23019,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1137 +2020,geoId/23019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,835 +2020,geoId/23019,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1211 +2020,geoId/23019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,62 +2020,geoId/23019,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 +2020,geoId/23019,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,1260 +2020,geoId/23019,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,71725 +2020,geoId/23019,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,70492 +2020,geoId/31091,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,12 +2020,geoId/31091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2020,geoId/31091,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2020,geoId/31091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2020,geoId/31091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 +2020,geoId/31091,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 +2020,geoId/31091,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,348 +2020,geoId/31091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 +2020,geoId/31091,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2020,geoId/31091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2020,geoId/31091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 +2020,geoId/31091,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,346 +2020,geoId/31091,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,343 +2020,geoId/31091,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,8 +2020,geoId/31091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2020,geoId/31091,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2020,geoId/31091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 +2020,geoId/31091,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 +2020,geoId/31091,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,337 +2020,geoId/31091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2020,geoId/31091,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 +2020,geoId/31091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2020,geoId/31091,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 +2020,geoId/31091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2020,geoId/31091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 +2020,geoId/31091,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,334 +2020,geoId/31091,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,330 +2023,geoId/46049,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,34 +2023,geoId/46049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,9 +2023,geoId/46049,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,9 +2023,geoId/46049,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 +2023,geoId/46049,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2023,geoId/46049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,24 +2023,geoId/46049,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 +2023,geoId/46049,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,1032 +2023,geoId/46049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 +2023,geoId/46049,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 +2023,geoId/46049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 +2023,geoId/46049,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 +2023,geoId/46049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 +2023,geoId/46049,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 +2023,geoId/46049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 +2023,geoId/46049,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1018 +2023,geoId/46049,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1012 +2023,geoId/46049,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,29 +2023,geoId/46049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2023,geoId/46049,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2023,geoId/46049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,27 +2023,geoId/46049,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,27 +2023,geoId/46049,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,1056 +2023,geoId/46049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,11 +2023,geoId/46049,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,7 +2023,geoId/46049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2023,geoId/46049,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,3 +2023,geoId/46049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 +2023,geoId/46049,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 +2023,geoId/46049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2023,geoId/46049,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,6 +2023,geoId/46049,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1040 +2023,geoId/46049,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,1035 +2022,geoId/46119,dcid:Count_Person_Female_HispanicOrLatino,dcs:CensusPEPSurvey,18 +2022,geoId/46119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,8 +2022,geoId/46119,dcid:Count_Person_Female_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,6 +2022,geoId/46119,dcid:Count_Person_Female_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46119,dcid:Count_Person_Female_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46119,dcid:Count_Person_Female_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2022,geoId/46119,dcid:Count_Person_Female_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46119,dcid:Count_Person_Female_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2022,geoId/46119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,10 +2022,geoId/46119,dcid:Count_Person_Female_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 +2022,geoId/46119,dcid:Count_Person_Female_NotHispanicOrLatino,dcs:CensusPEPSurvey,682 +2022,geoId/46119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,25 +2022,geoId/46119,dcid:Count_Person_Female_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,19 +2022,geoId/46119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46119,dcid:Count_Person_Female_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2022,geoId/46119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,3 +2022,geoId/46119,dcid:Count_Person_Female_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 +2022,geoId/46119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46119,dcid:Count_Person_Female_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46119,dcid:Count_Person_Female_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,12 +2022,geoId/46119,dcid:Count_Person_Female_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,660 +2022,geoId/46119,dcid:Count_Person_Female_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,648 +2022,geoId/46119,dcid:Count_Person_Male_HispanicOrLatino,dcs:CensusPEPSurvey,25 +2022,geoId/46119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 +2022,geoId/46119,dcid:Count_Person_Male_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,2 +2022,geoId/46119,dcid:Count_Person_Male_HispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 +2022,geoId/46119,dcid:Count_Person_Male_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2022,geoId/46119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46119,dcid:Count_Person_Male_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,2 +2022,geoId/46119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46119,dcid:Count_Person_Male_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46119,dcid:Count_Person_Male_HispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,4 +2022,geoId/46119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAlone,dcs:CensusPEPSurvey_Race2000Onwards,18 +2022,geoId/46119,dcid:Count_Person_Male_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,22 +2022,geoId/46119,dcid:Count_Person_Male_NotHispanicOrLatino,dcs:CensusPEPSurvey,757 +2022,geoId/46119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,34 +2022,geoId/46119,dcid:Count_Person_Male_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:CensusPEPSurvey_Race2000Onwards,28 +2022,geoId/46119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAlone,dcs:CensusPEPSurvey_Race2000Onwards,1 +2022,geoId/46119,dcid:Count_Person_Male_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,1 +2022,geoId/46119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:CensusPEPSurvey_Race2000Onwards,22 +2022,geoId/46119,dcid:Count_Person_Male_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,24 +2022,geoId/46119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46119,dcid:Count_Person_Male_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46119,dcid:Count_Person_Male_NotHispanicOrLatino_TwoOrMoreRaces,dcs:CensusPEPSurvey_Race2000Onwards,7 +2022,geoId/46119,dcid:Count_Person_Male_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:CensusPEPSurvey_Race2000Onwards,706 +2022,geoId/46119,dcid:Count_Person_Male_WhiteAloneNotHispanicOrLatino,dcs:CensusPEPSurvey_Race2000Onwards,699 diff --git a/scripts/us_census/pep/pep_by_srh/testdata/expected_results/population_estimate_by_srh_agg.csv b/scripts/us_census/pep/pep_by_srh/testdata/expected_results/population_estimate_by_srh_agg.csv index 6e6c788eca..0f938b04da 100644 --- a/scripts/us_census/pep/pep_by_srh/testdata/expected_results/population_estimate_by_srh_agg.csv +++ b/scripts/us_census/pep/pep_by_srh/testdata/expected_results/population_estimate_by_srh_agg.csv @@ -18,38 +18,20 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39340 1998,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,42559 1999,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,45349 -2000,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77016 -2001,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,85722 -2002,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,94179 -2003,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,103472 -2004,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,113284 -2005,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,124822 -2006,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,137842 -2007,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,150652 -2008,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,163709 -2009,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,176518 -2010,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,186094 -2011,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,189328 -2012,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,189889 -2013,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,192088 -2014,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,194360 -2015,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,198121 -2016,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,203666 -2017,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,208724 -2018,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,215281 -2019,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,220789 -2020,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,226557 -2010,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9881 -2011,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9723 -2012,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9713 -2013,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9673 -2014,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9594 -2015,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9676 -2016,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9967 -2017,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10161 -2018,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10479 -2019,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10765 -2020,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11192 +2000,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,152 +2003,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,349 +2004,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,191 +2006,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,140 +2012,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,156 +2019,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,660 +2020,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2754 +2022,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,43 +2023,country/USA,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,63 +2012,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 +2019,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 +2020,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 +2022,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 +2023,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 1981,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,164 1982,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,176 1983,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,194 @@ -69,59 +51,29 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,542 1998,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,591 1999,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,632 -2000,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1306 -2001,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1801 -2002,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2317 -2003,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2818 -2004,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3307 -2005,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3807 -2006,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4363 -2007,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4880 -2008,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5508 -2009,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6256 -2010,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6746 -2011,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6581 -2012,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6555 -2013,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6418 -2014,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6371 -2015,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6426 -2016,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6624 -2017,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6721 -2018,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6925 -2019,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7136 -2020,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7406 -2000,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,566 -2001,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,681 -2002,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,744 -2003,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,844 -2004,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,979 -2005,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1044 -2006,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1140 -2007,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1310 -2008,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1312 -2009,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1503 -2010,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1635 -2011,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1605 -2012,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1460 -2013,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1464 -2014,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1488 -2015,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1619 -2016,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1690 -2017,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1812 -2018,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1957 -2019,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1961 -2020,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2013 -2010,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2883 -2011,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2886 -2012,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2750 -2013,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2813 -2014,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2843 -2015,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3023 -2016,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3136 -2017,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3319 -2018,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3536 -2019,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3604 -2020,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3753 +2000,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 +2003,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 +2004,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2006,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2012,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2019,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 +2020,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 +2022,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 +2023,country/USA,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 +2000,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2003,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2004,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2006,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2012,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2019,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 +2020,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 +2022,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2023,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2012,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2019,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 +2020,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 +2022,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2023,country/USA,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 1981,country/USA,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,375 1982,country/USA,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,402 1983,country/USA,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,440 @@ -160,91 +112,43 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4205 1998,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4388 1999,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4575 -2000,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7345 -2001,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7654 -2002,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8018 -2003,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8408 -2004,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8838 -2005,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9458 -2006,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10131 -2007,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10695 -2008,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11521 -2009,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12291 -2010,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12944 -2011,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13125 -2012,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13532 -2013,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13839 -2014,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14067 -2015,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14476 -2016,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14733 -2017,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14974 -2018,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15248 -2019,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15518 -2020,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15997 -2010,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15786 -2011,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16031 -2012,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16498 -2013,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16947 -2014,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17196 -2015,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17692 -2016,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18124 -2017,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18504 -2018,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18969 -2019,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19386 -2020,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20052 -2010,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3818 -2011,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3654 -2012,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3504 -2013,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3388 -2014,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3359 -2015,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3335 -2016,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3385 -2017,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3426 -2018,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3483 -2019,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3557 -2020,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3724 -2000,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,525 -2001,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,802 -2002,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1039 -2003,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1299 -2004,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1559 -2005,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1821 -2006,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2092 -2007,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2337 -2008,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2641 -2009,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2942 -2010,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3142 -2011,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2984 -2012,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2813 -2013,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2666 -2014,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2647 -2015,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2609 -2016,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2624 -2017,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2643 -2018,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2666 -2019,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2713 -2020,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2850 -2000,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1427 -2001,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1836 -2002,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2233 -2003,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2720 -2004,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3094 -2005,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3646 -2006,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4117 -2007,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4584 -2008,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5129 -2009,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5648 -2010,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6047 -2011,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6141 -2012,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6218 -2013,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6448 -2014,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6448 -2015,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6590 -2016,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6877 -2017,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7097 -2018,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7420 -2019,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7662 -2020,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8015 +2000,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 +2003,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 +2004,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 +2006,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 +2012,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 +2019,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 +2020,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 +2022,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2012,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 +2019,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 +2020,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 +2022,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2023,country/USA,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2012,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2019,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 +2020,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 +2022,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2023,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2000,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2003,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2004,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2006,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2012,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2019,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 +2020,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 +2022,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,country/USA,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2000,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2003,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2004,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 +2006,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 +2012,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2019,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 +2020,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,187 +2022,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2023,country/USA,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 1981,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19722 1982,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19608 1983,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19561 @@ -264,38 +168,20 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,33515 1998,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,36437 1999,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38953 -2000,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65847 -2001,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72948 -2002,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79828 -2003,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87383 -2004,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95507 -2005,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105046 -2006,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115999 -2007,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126846 -2008,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137598 -2009,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147878 -2010,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155580 -2011,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158892 -2012,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159311 -2013,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161253 -2014,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163339 -2015,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166401 -2016,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171118 -2017,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175477 -2018,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181065 -2019,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185799 -2020,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190276 -2010,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160678 -2011,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164098 -2012,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164571 -2013,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166702 -2014,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168809 -2015,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171985 -2016,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176950 -2017,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181503 -2018,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,187367 -2019,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192318 -2020,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197089 +2000,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 +2003,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,300 +2004,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 +2006,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 +2012,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 +2019,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,506 +2020,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2316 +2022,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 +2023,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 +2012,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 +2019,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,522 +2020,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2496 +2022,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 +2023,country/USA,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 1981,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3887242 1982,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3894866 1983,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3904587 @@ -315,38 +201,20 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4280941 1998,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4308478 1999,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4324513 -2000,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4375157 -2001,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4381912 -2002,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4385910 -2003,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4400019 -2004,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4417445 -2005,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4444983 -2006,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4491139 -2007,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4522188 -2008,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4554497 -2009,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4581420 -2010,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4599420 -2011,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4610314 -2012,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4626743 -2013,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4639498 -2014,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4649377 -2015,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4656682 -2016,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4663158 -2017,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4669265 -2018,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4676347 -2019,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4687176 -2020,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4694975 -2010,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53146 -2011,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53632 -2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54276 -2013,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54803 -2014,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55333 -2015,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55879 -2016,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56261 -2017,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56681 -2018,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57156 -2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57786 -2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58450 +2000,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18360 +2003,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36511 +2004,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23578 +2006,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16287 +2012,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15210 +2019,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30836 +2020,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,150120 +2022,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1439 +2023,country/USA,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2088 +2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 +2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 +2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3114 +2022,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 +2023,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 1981,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8308 1982,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8985 1983,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9724 @@ -366,59 +234,29 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14696 1998,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14232 1999,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13967 -2000,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21956 -2001,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22283 -2002,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22649 -2003,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23102 -2004,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23448 -2005,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23799 -2006,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24303 -2007,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24786 -2008,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25214 -2009,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25569 -2010,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26120 -2011,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26147 -2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26225 -2013,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26358 -2014,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26553 -2015,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26694 -2016,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26737 -2017,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26823 -2018,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26913 -2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27167 -2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27491 -2000,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31978 -2001,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33290 -2002,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35066 -2003,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37085 -2004,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39733 -2005,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42362 -2006,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44890 -2007,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47144 -2008,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49371 -2009,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52244 -2010,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54103 -2011,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56036 -2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59533 -2013,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61841 -2014,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63841 -2015,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66017 -2016,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68442 -2017,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70342 -2018,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71453 -2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72747 -2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73538 -2010,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66081 -2011,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68662 -2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72867 -2013,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75782 -2014,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78419 -2015,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81195 -2016,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84242 -2017,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86841 -2018,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88591 -2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90592 -2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92045 +2000,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 +2003,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 +2004,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,258 +2006,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 +2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 +2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 +2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1826 +2022,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 +2023,country/USA,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 +2000,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 +2003,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 +2004,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 +2006,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 +2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 +2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 +2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1772 +2022,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2023,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 +2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 +2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 +2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2395 +2022,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2023,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 1981,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11963 1982,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13064 1983,country/USA,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14060 @@ -457,102 +295,48 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1116323 1998,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1126299 1999,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1134151 -2000,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1154109 -2001,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1159749 -2002,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1163654 -2003,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1169990 -2004,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1177537 -2005,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1187604 -2006,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1205350 -2007,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1216925 -2008,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1230092 -2009,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1240016 -2010,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1248338 -2011,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1254207 -2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1262757 -2013,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1271477 -2014,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1277797 -2015,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1284438 -2016,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1288753 -2017,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1292877 -2018,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1296845 -2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1300338 -2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1303754 -2010,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1275285 -2011,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1282759 -2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1292988 -2013,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1303065 -2014,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1310774 -2015,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1318809 -2016,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1324613 -2017,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1330220 -2018,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1335747 -2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1340745 -2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1345507 -2010,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4134 -2011,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4247 -2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4452 -2013,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4616 -2014,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4736 -2015,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4909 -2016,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5017 -2017,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5158 -2018,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5299 -2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5360 -2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5514 -2000,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1083 -2001,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1161 -2002,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1233 -2003,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1326 -2004,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1424 -2005,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1469 -2006,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1618 -2007,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1659 -2008,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1802 -2009,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1854 -2010,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2024 -2011,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2049 -2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2172 -2013,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2257 -2014,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2299 -2015,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2375 -2016,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2403 -2017,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2468 -2018,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2502 -2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2495 -2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2543 -2000,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35003 -2001,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36990 -2002,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38857 -2003,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40820 -2004,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43038 -2005,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45352 -2006,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47921 -2007,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50515 -2008,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53475 -2009,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56371 -2010,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58814 -2011,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61297 -2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63962 -2013,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66154 -2014,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68293 -2015,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70490 -2016,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72740 -2017,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75019 -2018,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77374 -2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79743 -2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81872 -2010,country/USA,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3262805 -2011,country/USA,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3265678 -2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3269645 -2013,country/USA,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3271001 -2014,country/USA,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3272165 -2015,country/USA,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3270271 -2016,country/USA,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3269782 -2017,country/USA,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3269551 -2018,country/USA,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3271262 -2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3276900 -2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3279924 +2000,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2198 +2003,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4510 +2004,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9669 +2006,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9679 +2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8953 +2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14910 +2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1403 +2022,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 +2023,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 +2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8985 +2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15050 +2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2162 +2022,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 +2023,country/USA,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 +2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 +2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 +2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 +2022,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2000,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2003,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2004,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2006,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 +2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 +2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 +2022,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,country/USA,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2000,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 +2003,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,285 +2004,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 +2006,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 +2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 +2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,260 +2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2562 +2022,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 +2023,country/USA,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 +2012,country/USA,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6175 +2019,country/USA,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15749 +2020,country/USA,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145025 +2022,country/USA,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1366 +2023,country/USA,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2058 1981,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2876126 1982,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2880751 1983,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2887773 @@ -572,27 +356,15 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3123138 1998,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3141015 1999,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3149149 -2000,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3131028 -2001,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3128439 -2002,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3124451 -2003,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3127696 -2004,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3132265 -2005,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3144397 -2006,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3167057 -2007,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3181159 -2008,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3194543 -2009,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3205366 -2010,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3210021 -2011,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3210578 -2012,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3212094 -2013,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3211411 -2014,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3210594 -2015,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3206668 -2016,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3204083 -2017,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3201736 -2018,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3201260 -2019,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3204686 -2020,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3205777 +2000,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16025 +2003,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31436 +2004,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13371 +2006,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6483 +2012,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6108 +2019,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15526 +2020,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142512 +2022,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1347 +2023,country/USA,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2047 1981,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,31278 1982,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30352 1983,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29522 @@ -612,38 +384,14 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39340 1998,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,42559 1999,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,45349 -2000,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77016 -2001,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,85722 -2002,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,94179 -2003,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,103472 -2004,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,113284 -2005,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,124822 -2006,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,137842 -2007,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,150652 -2008,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,163709 -2009,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,176518 -2010,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,186094 -2011,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,189328 -2012,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,189889 -2013,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,192088 -2014,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,194360 -2015,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,198121 -2016,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,203666 -2017,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,208724 -2018,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,215281 -2019,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,220789 -2020,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,226557 -2010,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9881 -2011,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9723 -2012,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9713 -2013,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9673 -2014,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9594 -2015,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9676 -2016,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9967 -2017,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10161 -2018,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10479 -2019,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10765 -2020,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11192 +2000,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,152 +2003,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,349 +2004,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,191 +2006,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,140 +2012,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,156 +2019,geoId/01,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,660 +2012,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 +2019,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 1981,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,164 1982,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,176 1983,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,194 @@ -663,59 +411,20 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,542 1998,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,591 1999,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,632 -2000,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1306 -2001,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1801 -2002,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2317 -2003,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2818 -2004,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3307 -2005,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3807 -2006,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4363 -2007,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4880 -2008,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5508 -2009,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6256 -2010,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6746 -2011,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6581 -2012,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6555 -2013,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6418 -2014,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6371 -2015,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6426 -2016,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6624 -2017,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6721 -2018,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6925 -2019,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7136 -2020,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7406 -2000,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,566 -2001,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,681 -2002,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,744 -2003,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,844 -2004,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,979 -2005,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1044 -2006,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1140 -2007,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1310 -2008,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1312 -2009,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1503 -2010,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1635 -2011,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1605 -2012,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1460 -2013,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1464 -2014,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1488 -2015,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1619 -2016,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1690 -2017,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1812 -2018,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1957 -2019,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1961 -2020,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2013 -2010,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2883 -2011,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2886 -2012,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2750 -2013,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2813 -2014,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2843 -2015,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3023 -2016,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3136 -2017,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3319 -2018,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3536 -2019,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3604 -2020,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3753 +2000,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 +2003,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 +2004,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2006,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2012,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2019,geoId/01,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 +2000,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2003,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2004,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2006,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2012,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2019,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 +2012,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2019,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 1981,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,375 1982,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,402 1983,geoId/01,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,440 @@ -754,91 +463,28 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4205 1998,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4388 1999,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4575 -2000,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7345 -2001,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7654 -2002,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8018 -2003,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8408 -2004,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8838 -2005,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9458 -2006,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10131 -2007,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10695 -2008,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11521 -2009,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12291 -2010,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12944 -2011,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13125 -2012,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13532 -2013,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13839 -2014,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14067 -2015,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14476 -2016,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14733 -2017,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14974 -2018,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15248 -2019,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15518 -2020,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15997 -2010,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15786 -2011,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16031 -2012,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16498 -2013,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16947 -2014,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17196 -2015,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17692 -2016,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18124 -2017,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18504 -2018,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18969 -2019,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19386 -2020,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20052 -2010,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3818 -2011,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3654 -2012,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3504 -2013,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3388 -2014,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3359 -2015,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3335 -2016,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3385 -2017,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3426 -2018,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3483 -2019,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3557 -2020,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3724 -2000,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,525 -2001,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,802 -2002,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1039 -2003,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1299 -2004,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1559 -2005,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1821 -2006,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2092 -2007,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2337 -2008,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2641 -2009,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2942 -2010,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3142 -2011,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2984 -2012,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2813 -2013,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2666 -2014,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2647 -2015,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2609 -2016,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2624 -2017,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2643 -2018,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2666 -2019,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2713 -2020,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2850 -2000,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1427 -2001,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1836 -2002,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2233 -2003,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2720 -2004,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3094 -2005,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3646 -2006,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4117 -2007,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4584 -2008,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5129 -2009,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5648 -2010,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6047 -2011,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6141 -2012,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6218 -2013,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6448 -2014,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6448 -2015,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6590 -2016,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6877 -2017,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7097 -2018,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7420 -2019,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7662 -2020,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8015 +2000,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 +2003,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 +2004,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 +2006,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 +2012,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 +2019,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 +2012,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 +2019,geoId/01,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 +2012,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2019,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 +2000,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2003,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2004,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2006,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2012,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2019,geoId/01,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 +2000,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2003,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2004,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 +2006,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 +2012,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2019,geoId/01,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 1981,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19722 1982,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19608 1983,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19561 @@ -858,38 +504,14 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,33515 1998,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,36437 1999,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38953 -2000,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65847 -2001,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72948 -2002,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79828 -2003,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87383 -2004,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95507 -2005,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105046 -2006,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115999 -2007,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126846 -2008,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137598 -2009,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147878 -2010,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155580 -2011,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158892 -2012,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159311 -2013,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161253 -2014,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163339 -2015,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166401 -2016,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171118 -2017,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175477 -2018,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181065 -2019,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185799 -2020,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190276 -2010,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160678 -2011,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164098 -2012,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164571 -2013,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166702 -2014,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168809 -2015,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171985 -2016,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176950 -2017,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181503 -2018,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,187367 -2019,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192318 -2020,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197089 +2000,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 +2003,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,300 +2004,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 +2006,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 +2012,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 +2019,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,506 +2012,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 +2019,geoId/01,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,522 1981,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3887242 1982,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3894866 1983,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3904587 @@ -909,38 +531,14 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4280941 1998,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4308478 1999,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4324513 -2000,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4375157 -2001,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4381912 -2002,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4385910 -2003,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4400019 -2004,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4417445 -2005,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4444983 -2006,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4491139 -2007,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4522188 -2008,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4554497 -2009,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4581420 -2010,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4599420 -2011,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4610314 -2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4626743 -2013,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4639498 -2014,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4649377 -2015,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4656682 -2016,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4663158 -2017,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4669265 -2018,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4676347 -2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4687176 -2020,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4694975 -2010,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53146 -2011,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53632 -2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54276 -2013,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54803 -2014,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55333 -2015,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55879 -2016,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56261 -2017,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56681 -2018,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57156 -2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57786 -2020,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58450 +2000,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18360 +2003,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36511 +2004,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23578 +2006,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16287 +2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15210 +2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30836 +2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 +2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 1981,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8308 1982,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8985 1983,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9724 @@ -960,59 +558,20 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14696 1998,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14232 1999,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13967 -2000,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21956 -2001,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22283 -2002,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22649 -2003,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23102 -2004,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23448 -2005,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23799 -2006,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24303 -2007,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24786 -2008,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25214 -2009,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25569 -2010,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26120 -2011,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26147 -2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26225 -2013,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26358 -2014,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26553 -2015,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26694 -2016,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26737 -2017,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26823 -2018,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26913 -2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27167 -2020,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27491 -2000,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31978 -2001,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33290 -2002,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35066 -2003,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37085 -2004,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39733 -2005,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42362 -2006,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44890 -2007,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47144 -2008,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49371 -2009,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52244 -2010,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54103 -2011,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56036 -2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59533 -2013,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61841 -2014,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63841 -2015,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66017 -2016,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68442 -2017,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70342 -2018,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71453 -2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72747 -2020,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73538 -2010,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66081 -2011,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68662 -2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72867 -2013,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75782 -2014,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78419 -2015,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81195 -2016,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84242 -2017,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86841 -2018,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88591 -2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90592 -2020,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92045 +2000,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 +2003,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 +2004,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,258 +2006,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 +2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 +2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 +2000,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 +2003,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 +2004,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 +2006,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 +2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 +2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 +2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 +2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 1981,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11963 1982,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13064 1983,geoId/01,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14060 @@ -1051,102 +610,30 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1116323 1998,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1126299 1999,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1134151 -2000,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1154109 -2001,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1159749 -2002,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1163654 -2003,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1169990 -2004,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1177537 -2005,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1187604 -2006,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1205350 -2007,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1216925 -2008,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1230092 -2009,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1240016 -2010,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1248338 -2011,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1254207 -2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1262757 -2013,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1271477 -2014,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1277797 -2015,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1284438 -2016,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1288753 -2017,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1292877 -2018,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1296845 -2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1300338 -2020,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1303754 -2010,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1275285 -2011,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1282759 -2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1292988 -2013,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1303065 -2014,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1310774 -2015,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1318809 -2016,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1324613 -2017,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1330220 -2018,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1335747 -2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1340745 -2020,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1345507 -2010,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4134 -2011,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4247 -2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4452 -2013,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4616 -2014,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4736 -2015,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4909 -2016,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5017 -2017,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5158 -2018,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5299 -2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5360 -2020,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5514 -2000,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1083 -2001,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1161 -2002,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1233 -2003,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1326 -2004,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1424 -2005,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1469 -2006,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1618 -2007,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1659 -2008,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1802 -2009,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1854 -2010,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2024 -2011,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2049 -2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2172 -2013,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2257 -2014,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2299 -2015,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2375 -2016,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2403 -2017,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2468 -2018,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2502 -2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2495 -2020,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2543 -2000,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35003 -2001,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36990 -2002,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38857 -2003,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40820 -2004,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43038 -2005,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45352 -2006,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47921 -2007,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50515 -2008,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53475 -2009,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56371 -2010,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58814 -2011,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61297 -2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63962 -2013,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66154 -2014,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68293 -2015,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70490 -2016,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72740 -2017,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75019 -2018,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77374 -2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79743 -2020,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81872 -2010,geoId/01,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3262805 -2011,geoId/01,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3265678 -2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3269645 -2013,geoId/01,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3271001 -2014,geoId/01,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3272165 -2015,geoId/01,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3270271 -2016,geoId/01,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3269782 -2017,geoId/01,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3269551 -2018,geoId/01,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3271262 -2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3276900 -2020,geoId/01,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3279924 +2000,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2198 +2003,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4510 +2004,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9669 +2006,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9679 +2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8953 +2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14910 +2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8985 +2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15050 +2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 +2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 +2000,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2003,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2004,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2006,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 +2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 +2000,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 +2003,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,285 +2004,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 +2006,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 +2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 +2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,260 +2012,geoId/01,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6175 +2019,geoId/01,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15749 1981,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2876126 1982,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2880751 1983,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2887773 @@ -1166,27 +653,108 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3123138 1998,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3141015 1999,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3149149 -2000,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3131028 -2001,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3128439 -2002,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3124451 -2003,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3127696 -2004,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3132265 -2005,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3144397 -2006,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3167057 -2007,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3181159 -2008,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3194543 -2009,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3205366 -2010,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3210021 -2011,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3210578 -2012,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3212094 -2013,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3211411 -2014,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3210594 -2015,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3206668 -2016,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3204083 -2017,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3201736 -2018,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3201260 -2019,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3204686 -2020,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3205777 +2000,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16025 +2003,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31436 +2004,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13371 +2006,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6483 +2012,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6108 +2019,geoId/01,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15526 +2020,geoId/23,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2734 +2020,geoId/23,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 +2020,geoId/23,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 +2020,geoId/23,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 +2020,geoId/23,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 +2020,geoId/23,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 +2020,geoId/23,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 +2020,geoId/23,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 +2020,geoId/23,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 +2020,geoId/23,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 +2020,geoId/23,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2300 +2020,geoId/23,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2476 +2020,geoId/23,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,149435 +2020,geoId/23,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3108 +2020,geoId/23,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1823 +2020,geoId/23,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1770 +2020,geoId/23,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2392 +2020,geoId/23,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1403 +2020,geoId/23,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2159 +2020,geoId/23,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 +2020,geoId/23,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 +2020,geoId/23,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2555 +2020,geoId/23,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144345 +2020,geoId/23,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141839 +2020,geoId/31,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20 +2020,geoId/31,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2020,geoId/31,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2020,geoId/31,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 +2020,geoId/31,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 +2020,geoId/31,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 +2020,geoId/31,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,685 +2020,geoId/31,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2020,geoId/31,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2020,geoId/31,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2020,geoId/31,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2020,geoId/31,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2020,geoId/31,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 +2020,geoId/31,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,680 +2020,geoId/31,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,673 +2022,geoId/46,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,43 +2023,geoId/46,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,63 +2022,geoId/46,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 +2023,geoId/46,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 +2022,geoId/46,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 +2023,geoId/46,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 +2022,geoId/46,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2023,geoId/46,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2022,geoId/46,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2023,geoId/46,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2022,geoId/46,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2022,geoId/46,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2023,geoId/46,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2022,geoId/46,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2023,geoId/46,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2023,geoId/46,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 +2023,geoId/46,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 +2022,geoId/46,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 +2023,geoId/46,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 +2022,geoId/46,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1439 +2023,geoId/46,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2088 +2022,geoId/46,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 +2023,geoId/46,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 +2022,geoId/46,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 +2023,geoId/46,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 +2022,geoId/46,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2023,geoId/46,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 +2022,geoId/46,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2023,geoId/46,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 +2022,geoId/46,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 +2023,geoId/46,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 +2022,geoId/46,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 +2023,geoId/46,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 +2022,geoId/46,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2022,geoId/46,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 +2023,geoId/46,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 +2022,geoId/46,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1366 +2023,geoId/46,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2058 +2022,geoId/46,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1347 +2023,geoId/46,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2047 1990,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,228 1991,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,244 1992,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,262 @@ -1197,38 +765,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,439 1998,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,466 1999,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,521 -2000,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,612 -2001,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,680 -2002,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,740 -2003,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,792 -2004,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,869 -2005,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,987 -2006,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1043 -2007,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1163 -2008,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1175 -2009,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1267 -2010,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1309 -2011,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1334 -2012,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1308 -2013,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1354 -2014,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1417 -2015,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1458 -2016,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1469 -2017,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1540 -2018,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1604 -2019,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1653 -2020,geoId/01001,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1741 -2010,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2011,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2013,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2015,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2016,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2017,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2018,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2020,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 1990,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -1239,59 +775,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2004,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2006,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2007,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2008,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2009,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2010,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2011,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01001,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2000,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2016,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 1990,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1991,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1992,geoId/01001,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 @@ -1312,91 +795,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,68 1998,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,65 1999,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,67 -2000,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2001,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2002,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2003,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2004,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2005,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2006,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2007,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2008,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2009,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2010,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2011,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2012,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2013,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2014,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2015,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2016,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2017,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2018,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2019,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2020,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2010,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2011,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2012,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2013,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2014,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2015,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2016,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2017,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2018,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2019,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2020,geoId/01001,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2010,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2000,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2006,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2007,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2008,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2009,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01001,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2000,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2004,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2005,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2006,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2007,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2008,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2009,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2010,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2012,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2013,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2015,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2016,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2017,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2018,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2019,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2020,geoId/01001,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 1990,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,184 1991,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,196 1992,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,210 @@ -1407,38 +805,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,359 1998,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,391 1999,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,441 -2000,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,532 -2001,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,600 -2002,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,654 -2003,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,692 -2004,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,764 -2005,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,845 -2006,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,884 -2007,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,991 -2008,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,983 -2009,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1067 -2010,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1126 -2011,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1153 -2012,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1126 -2013,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1128 -2014,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1173 -2015,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1198 -2016,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1197 -2017,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1259 -2018,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1354 -2019,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1374 -2020,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1436 -2010,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1166 -2011,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1196 -2012,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1177 -2013,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1189 -2014,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1230 -2015,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1260 -2016,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1265 -2017,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1318 -2018,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1421 -2019,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1435 -2020,geoId/01001,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1498 1990,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,34128 1991,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,34774 1992,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,35740 @@ -1449,38 +815,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40854 1998,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,41727 1999,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,42619 -2000,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,43409 -2001,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,44209 -2002,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,45169 -2003,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,46008 -2004,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47497 -2005,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48689 -2006,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,50285 -2007,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,51242 -2008,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52102 -2009,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52868 -2010,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53452 -2011,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53895 -2012,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53662 -2013,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53393 -2014,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53505 -2015,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53445 -2016,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53833 -2017,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53908 -2018,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53929 -2019,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,54116 -2020,geoId/01001,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,54404 -2010,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,508 -2011,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,496 -2012,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,527 -2013,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,509 -2014,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,522 -2015,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,486 -2016,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,499 -2017,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,479 -2018,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,502 -2019,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,505 -2020,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,501 1990,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,71 1991,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,74 1992,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,75 @@ -1491,59 +825,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,76 1998,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,77 1999,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,77 -2000,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2001,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 -2002,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2003,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,206 -2004,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,206 -2005,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2006,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2007,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,202 -2008,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2009,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2010,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,220 -2011,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,229 -2012,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2013,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,248 -2014,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243 -2015,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,226 -2016,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,226 -2017,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,223 -2018,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,241 -2019,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,241 -2020,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,239 -2000,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2001,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,238 -2002,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270 -2003,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,287 -2004,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,318 -2005,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,352 -2006,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,367 -2007,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,395 -2008,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,420 -2009,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,453 -2010,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,489 -2011,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,508 -2012,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,548 -2013,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,552 -2014,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,569 -2015,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,591 -2016,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,649 -2017,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,681 -2018,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,657 -2019,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,651 -2020,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,638 -2010,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,680 -2011,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,696 -2012,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,726 -2013,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,760 -2014,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,799 -2015,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,811 -2016,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,895 -2017,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,957 -2018,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,913 -2019,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,918 -2020,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,926 1990,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,118 1991,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,124 1992,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,133 @@ -1564,102 +845,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8684 1998,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8935 1999,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9204 -2000,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7503 -2001,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7626 -2002,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7848 -2003,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8032 -2004,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8337 -2005,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8564 -2006,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8969 -2007,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9215 -2008,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9409 -2009,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9610 -2010,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9672 -2011,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9816 -2012,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9887 -2013,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9890 -2014,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9992 -2015,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10259 -2016,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10483 -2017,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10676 -2018,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10766 -2019,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11109 -2020,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11408 -2010,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10042 -2011,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10185 -2012,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10247 -2013,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10303 -2014,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10423 -2015,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10690 -2016,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10940 -2017,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11169 -2018,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11272 -2019,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11625 -2020,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11931 -2010,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2011,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2012,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2013,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2014,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2015,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2016,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2017,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2018,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2019,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2020,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2000,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2002,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2004,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2015,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2016,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2017,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2018,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2020,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2000,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,346 -2001,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,383 -2002,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,418 -2003,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,447 -2004,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,494 -2005,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,537 -2006,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,582 -2007,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,621 -2008,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,660 -2009,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,703 -2010,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,762 -2011,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,761 -2012,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,751 -2013,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,832 -2014,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,858 -2015,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,843 -2016,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,901 -2017,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,944 -2018,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,936 -2019,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,960 -2020,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1000 -2010,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42979 -2011,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43254 -2012,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42895 -2013,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42607 -2014,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42601 -2015,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42260 -2016,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42373 -2017,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42216 -2018,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42146 -2019,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42002 -2020,geoId/01001,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42018 1990,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27085 1991,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27560 1992,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28257 @@ -1670,27 +855,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,31920 1998,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,32531 1999,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,33151 -2000,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35162 -2001,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35742 -2002,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36415 -2003,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37024 -2004,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38129 -2005,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39017 -2006,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40147 -2007,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40793 -2008,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41376 -2009,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41867 -2010,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42286 -2011,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42548 -2012,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42202 -2013,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41838 -2014,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41807 -2015,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41493 -2016,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41540 -2017,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41347 -2018,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41287 -2019,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41116 -2020,geoId/01001,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41079 1990,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1039 1991,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1097 1992,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1184 @@ -1701,38 +865,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2081 1998,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2287 1999,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2500 -2000,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2495 -2001,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2903 -2002,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3248 -2003,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3649 -2004,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4110 -2005,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4735 -2006,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5468 -2007,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6124 -2008,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6853 -2009,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7516 -2010,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8060 -2011,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8218 -2012,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8319 -2013,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8489 -2014,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8599 -2015,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8838 -2016,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9187 -2017,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9565 -2018,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9989 -2019,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10368 -2020,geoId/01003,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10625 -2010,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,336 -2011,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,355 -2012,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,348 -2013,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,378 -2014,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,384 -2015,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,376 -2016,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,412 -2017,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,430 -2018,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,451 -2019,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,476 -2020,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,490 1990,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 1991,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1992,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 @@ -1743,59 +875,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20 1998,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1999,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15 -2000,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2001,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2002,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2003,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2004,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2005,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2006,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2007,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2008,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2009,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2010,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 -2011,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2012,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2013,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2014,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,195 -2015,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,194 -2016,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2017,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2018,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,226 -2019,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,241 -2020,geoId/01003,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,255 -2000,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2019,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2020,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2011,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2012,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2013,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2014,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2015,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2016,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2017,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2018,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2019,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2020,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 1990,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 1991,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1992,geoId/01003,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 @@ -1816,91 +895,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,89 1998,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,96 1999,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,107 -2000,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2001,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 -2002,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2003,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2004,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 -2005,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2006,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2007,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,211 -2008,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,246 -2009,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,254 -2010,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,257 -2011,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,250 -2012,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,259 -2013,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,251 -2014,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,287 -2015,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,310 -2016,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,344 -2017,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,369 -2018,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,378 -2019,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,388 -2020,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,396 -2010,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,372 -2011,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,358 -2012,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,393 -2013,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,376 -2014,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,438 -2015,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,464 -2016,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,511 -2017,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,542 -2018,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,553 -2019,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,565 -2020,geoId/01003,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,586 -2010,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2011,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2012,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2013,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2014,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2015,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2016,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2017,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2018,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2019,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2020,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2000,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2005,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2008,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2009,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2011,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2012,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2017,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01003,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2000,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2001,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2002,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2003,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2004,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2005,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2006,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2007,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2008,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2009,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,246 -2010,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,268 -2011,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,298 -2012,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,306 -2013,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,308 -2014,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,324 -2015,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,331 -2016,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,365 -2017,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,369 -2018,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,398 -2019,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,419 -2020,geoId/01003,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,432 1990,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,961 1991,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1014 1992,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1099 @@ -1911,38 +905,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1964 1998,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2174 1999,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2367 -2000,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2242 -2001,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2606 -2002,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2881 -2003,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3272 -2004,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3665 -2005,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4251 -2006,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4936 -2007,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5534 -2008,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6193 -2009,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6789 -2010,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7301 -2011,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7436 -2012,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7517 -2013,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7680 -2014,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7739 -2015,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7945 -2016,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8214 -2017,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8550 -2018,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8920 -2019,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9247 -2020,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9463 -2010,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7530 -2011,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7700 -2012,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7778 -2013,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7952 -2014,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8017 -2015,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8235 -2016,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8536 -2017,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8871 -2018,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9260 -2019,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9600 -2020,geoId/01003,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9839 1990,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,97882 1991,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,101132 1992,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,105044 @@ -1953,38 +915,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,126689 1998,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,130570 1999,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,133320 -2000,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,138847 -2001,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,141972 -2002,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,144709 -2003,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,147860 -2004,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,152156 -2005,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,157448 -2006,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,162653 -2007,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,166280 -2008,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,168974 -2009,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,171890 -2010,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,175061 -2011,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,178361 -2012,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,181884 -2013,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,186489 -2014,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,190707 -2015,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,194263 -2016,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,198600 -2017,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,203172 -2018,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,208082 -2019,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,213197 -2020,geoId/01003,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,218662 -2010,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2310 -2011,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2383 -2012,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2512 -2013,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2585 -2014,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2688 -2015,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2748 -2016,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2870 -2017,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2918 -2018,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2979 -2019,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3141 -2020,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3234 1990,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,629 1991,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,646 1992,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,651 @@ -1995,59 +925,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,709 1998,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,721 1999,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,712 -2000,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,761 -2001,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,817 -2002,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,826 -2003,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,886 -2004,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,911 -2005,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,936 -2006,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1011 -2007,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1030 -2008,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1069 -2009,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1143 -2010,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1155 -2011,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1196 -2012,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1233 -2013,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1272 -2014,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1310 -2015,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1320 -2016,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1376 -2017,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1404 -2018,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1410 -2019,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1483 -2020,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1533 -2000,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,540 -2001,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,600 -2002,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,665 -2003,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,708 -2004,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,923 -2005,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,968 -2006,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1017 -2007,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1107 -2008,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1207 -2009,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1311 -2010,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1362 -2011,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1424 -2012,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1621 -2013,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1791 -2014,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1880 -2015,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1997 -2016,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2111 -2017,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2246 -2018,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2315 -2019,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2398 -2020,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2492 -2010,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1799 -2011,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1899 -2012,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2142 -2013,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2354 -2014,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2520 -2015,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2655 -2016,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2819 -2017,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3006 -2018,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3131 -2019,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3284 -2020,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3431 1990,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,216 1991,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,227 1992,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,242 @@ -2068,102 +945,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,17437 1998,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18110 1999,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18630 -2000,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14468 -2001,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14701 -2002,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14859 -2003,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15060 -2004,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15292 -2005,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15646 -2006,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15968 -2007,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16265 -2008,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16442 -2009,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16734 -2010,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17072 -2011,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17270 -2012,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17628 -2013,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18038 -2014,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18439 -2015,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18529 -2016,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18714 -2017,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18860 -2018,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19058 -2019,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19237 -2020,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19441 -2010,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17887 -2011,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18141 -2012,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18607 -2013,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19092 -2014,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19599 -2015,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19778 -2016,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20059 -2017,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20285 -2018,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20572 -2019,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20946 -2020,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21222 -2010,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2011,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2012,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190 -2013,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2014,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2015,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2016,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,223 -2017,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,239 -2018,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,263 -2019,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,266 -2020,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,266 -2000,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2001,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2002,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2003,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2004,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2005,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2006,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2007,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2008,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2009,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2010,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2011,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2012,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2013,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2014,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2015,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2016,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2017,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2018,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2019,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2020,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2000,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1154 -2001,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1228 -2002,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1301 -2003,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1397 -2004,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1506 -2005,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1631 -2006,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1784 -2007,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1849 -2008,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2042 -2009,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2119 -2010,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2201 -2011,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2348 -2012,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2564 -2013,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2722 -2014,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2918 -2015,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3067 -2016,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3248 -2017,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3402 -2018,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3573 -2019,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3903 -2020,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4071 -2010,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155244 -2011,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158233 -2012,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161178 -2013,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165154 -2014,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168822 -2015,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172141 -2016,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176133 -2017,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180378 -2018,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185013 -2019,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189763 -2020,geoId/01003,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,194874 1990,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,84347 1991,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,87062 1992,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,90329 @@ -2174,27 +955,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,108207 1998,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,111390 1999,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,113618 -2000,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121887 -2001,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124589 -2002,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127013 -2003,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129754 -2004,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133471 -2005,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138198 -2006,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142806 -2007,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145967 -2008,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148139 -2009,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,150505 -2010,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153179 -2011,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156034 -2012,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158754 -2013,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162581 -2014,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166073 -2015,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169260 -2016,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173061 -2017,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177155 -2018,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181618 -2019,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186056 -2020,geoId/01003,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191015 1990,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,124 1991,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,120 1992,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,131 @@ -2205,38 +965,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,180 1998,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,190 1999,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,207 -2000,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,478 -2001,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,592 -2002,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,691 -2003,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,778 -2004,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,865 -2005,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,995 -2006,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1137 -2007,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1245 -2008,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1344 -2009,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1358 -2010,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1344 -2011,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1306 -2012,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1224 -2013,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1155 -2014,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1133 -2015,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1100 -2016,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1115 -2017,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1118 -2018,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1073 -2019,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1096 -2020,geoId/01005,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1149 -2010,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2011,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2012,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2013,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2014,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2015,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2016,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2017,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2018,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2019,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2020,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 1990,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 1991,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1992,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 @@ -2247,59 +975,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1998,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 1999,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 -2000,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2002,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2003,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2004,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2005,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2006,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2007,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2008,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2009,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2010,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2011,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2012,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2013,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2014,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2015,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2016,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2017,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2018,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2020,geoId/01005,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2000,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 1990,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1992,geoId/01005,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 @@ -2320,91 +995,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,50 1998,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,50 1999,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,52 -2000,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2001,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2002,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2003,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2004,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2005,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2006,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2007,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2008,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2009,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2010,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2011,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2012,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2013,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2014,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2015,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2016,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2017,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2018,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2019,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2020,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2010,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2011,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2012,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2013,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2014,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2015,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2016,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2017,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2018,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2019,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2020,geoId/01005,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2010,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2000,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01005,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01005,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 1990,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,76 1991,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,78 1992,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,82 @@ -2415,38 +1005,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,125 1998,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,132 1999,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,141 -2000,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,368 -2001,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,478 -2002,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,570 -2003,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,635 -2004,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,711 -2005,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,822 -2006,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,948 -2007,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1040 -2008,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1122 -2009,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1111 -2010,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1109 -2011,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1074 -2012,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,989 -2013,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,936 -2014,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,915 -2015,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,893 -2016,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,903 -2017,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,893 -2018,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,855 -2019,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,868 -2020,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,915 -2010,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1115 -2011,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1081 -2012,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,996 -2013,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,944 -2014,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,921 -2015,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,900 -2016,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,914 -2017,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,908 -2018,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,869 -2019,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,885 -2020,geoId/01005,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,931 1990,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25328 1991,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26107 1992,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26304 @@ -2457,38 +1015,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26567 1998,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26746 1999,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26519 -2000,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,28537 -2001,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,28271 -2002,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27962 -2003,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27816 -2004,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27422 -2005,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27032 -2006,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26724 -2007,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26512 -2008,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26464 -2009,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26299 -2010,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25981 -2011,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26038 -2012,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25948 -2013,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25791 -2014,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25635 -2015,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25200 -2016,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24713 -2017,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24051 -2018,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23814 -2019,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23561 -2020,geoId/01005,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23440 -2010,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2011,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2012,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2013,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2014,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2015,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2016,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2017,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2018,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,194 -2019,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,205 -2020,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 1990,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,40 1991,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,46 1992,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,46 @@ -2499,59 +1025,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,44 1998,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,47 1999,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,43 -2000,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2001,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2002,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2003,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2004,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2005,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2006,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2007,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2008,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2009,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2010,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2011,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2012,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2013,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2014,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2015,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2016,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2017,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2018,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2019,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2020,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2000,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2001,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2002,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2003,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2004,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2005,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2006,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2007,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2008,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2009,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2010,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2011,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2012,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2013,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2014,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2015,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2016,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2017,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2018,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2019,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2020,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2010,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2011,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2012,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,150 -2013,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158 -2014,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2015,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2016,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2017,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2018,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2019,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2020,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 1990,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,43 1991,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,45 1992,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,46 @@ -2572,102 +1045,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12409 1998,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12559 1999,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12517 -2000,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13392 -2001,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13300 -2002,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13351 -2003,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13338 -2004,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13231 -2005,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13107 -2006,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13011 -2007,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12960 -2008,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12968 -2009,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12916 -2010,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12786 -2011,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12799 -2012,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12807 -2013,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12838 -2014,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12727 -2015,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12543 -2016,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12297 -2017,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12019 -2018,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11980 -2019,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11829 -2020,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11756 -2010,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12919 -2011,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12932 -2012,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12953 -2013,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12989 -2014,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12888 -2015,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12728 -2016,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12479 -2017,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12210 -2018,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12198 -2019,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12044 -2020,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11984 -2010,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2016,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2018,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2019,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2000,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2000,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172 -2001,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2002,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2003,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2004,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2005,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2006,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2007,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2008,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2009,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2010,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2011,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 -2012,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,223 -2013,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,234 -2014,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2015,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,267 -2016,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,279 -2017,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,273 -2018,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,299 -2019,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,302 -2020,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,322 -2010,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12944 -2011,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12974 -2012,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12883 -2013,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12696 -2014,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12651 -2015,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12392 -2016,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12155 -2017,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11755 -2018,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11554 -2019,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11436 -2020,geoId/01005,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11398 1990,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14068 1991,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14322 1992,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14364 @@ -2678,27 +1055,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14061 1998,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14088 1999,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13904 -2000,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14764 -2001,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14588 -2002,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14224 -2003,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14085 -2004,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13794 -2005,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13562 -2006,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13342 -2007,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13171 -2008,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13119 -2009,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12999 -2010,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12788 -2011,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12809 -2012,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12706 -2013,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12503 -2014,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12451 -2015,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12185 -2016,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11930 -2017,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11539 -2018,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11314 -2019,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11193 -2020,geoId/01005,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11130 1990,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,38 1991,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39 1992,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40 @@ -2709,38 +1065,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,67 1998,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,71 1999,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77 -2000,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,206 -2001,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,244 -2002,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,260 -2003,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,294 -2004,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,319 -2005,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,327 -2006,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,347 -2007,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,351 -2008,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,363 -2009,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,404 -2010,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,411 -2011,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,465 -2012,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,480 -2013,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,490 -2014,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,483 -2015,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,528 -2016,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,554 -2017,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,583 -2018,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,589 -2019,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,619 -2020,geoId/01007,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,649 -2010,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 1990,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -2751,59 +1075,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01007,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 1990,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01007,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -2824,91 +1095,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 1998,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1999,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 -2000,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2001,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2002,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2003,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2004,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2005,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2007,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2008,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2009,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2010,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2017,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2020,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2010,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2012,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2014,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2016,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2018,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2019,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2020,geoId/01007,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2010,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2006,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01007,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2000,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01007,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 1990,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28 1991,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29 1992,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,31 @@ -2919,38 +1105,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,55 1998,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,58 1999,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,63 -2000,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2001,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2002,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,214 -2003,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,240 -2004,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,263 -2005,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,277 -2006,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,293 -2007,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,299 -2008,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,304 -2009,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,343 -2010,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,349 -2011,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,390 -2012,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,404 -2013,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,417 -2014,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,414 -2015,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,444 -2016,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,473 -2017,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,494 -2018,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,499 -2019,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,515 -2020,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,540 -2010,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,355 -2011,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,400 -2012,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,413 -2013,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,427 -2014,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,420 -2015,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,456 -2016,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,483 -2017,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,505 -2018,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,510 -2019,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,530 -2020,geoId/01007,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,558 1990,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16637 1991,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16917 1992,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17151 @@ -2961,38 +1115,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18572 1998,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18916 1999,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19524 -2000,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19707 -2001,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20784 -2002,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20939 -2003,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21105 -2004,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21402 -2005,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21715 -2006,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21752 -2007,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22087 -2008,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22342 -2009,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22537 -2010,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22447 -2011,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22271 -2012,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22177 -2013,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22020 -2014,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22058 -2015,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22025 -2016,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22036 -2017,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21949 -2018,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21711 -2019,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21694 -2020,geoId/01007,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21487 -2010,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2011,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2012,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2013,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2014,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2015,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2016,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2017,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2018,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2019,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2020,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 1990,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,25 1991,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27 1992,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,26 @@ -3003,59 +1125,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28 1998,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29 1999,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29 -2000,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2001,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2002,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2003,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2004,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2005,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2006,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2007,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2008,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2009,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2010,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2011,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2012,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2013,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2014,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2015,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2016,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2017,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2018,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2019,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2020,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2000,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2002,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2004,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2007,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2020,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2010,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2011,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2012,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2013,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2014,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2015,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2016,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2017,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2018,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2020,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 1990,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 1991,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 1992,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 @@ -3076,102 +1145,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4152 1998,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4253 1999,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4418 -2000,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3976 -2001,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4535 -2002,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4633 -2003,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4652 -2004,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4749 -2005,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4830 -2006,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4810 -2007,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4849 -2008,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4995 -2009,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5057 -2010,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5016 -2011,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4917 -2012,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4871 -2013,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4860 -2014,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4865 -2015,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4914 -2016,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4858 -2017,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4810 -2018,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4696 -2019,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4712 -2020,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4644 -2010,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5091 -2011,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4994 -2012,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4968 -2013,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4952 -2014,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4962 -2015,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5015 -2016,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4959 -2017,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4927 -2018,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4838 -2019,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4872 -2020,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4802 -2010,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2001,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2002,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2003,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2004,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2005,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2006,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158 -2007,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2008,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,167 -2009,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2010,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2011,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2012,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 -2013,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2014,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2015,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2016,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,211 -2017,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,231 -2018,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2019,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270 -2020,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,281 -2010,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17317 -2011,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17221 -2012,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17172 -2013,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17019 -2014,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17056 -2015,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16959 -2016,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17038 -2017,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16983 -2018,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16858 -2019,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16801 -2020,geoId/01007,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16675 1990,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13113 1991,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13300 1992,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13450 @@ -3182,27 +1155,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14374 1998,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14614 1999,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15059 -2000,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15574 -2001,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16093 -2002,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16137 -2003,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16277 -2004,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16466 -2005,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16664 -2006,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16694 -2007,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16982 -2008,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17090 -2009,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17215 -2010,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17157 -2011,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17065 -2012,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16999 -2013,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16849 -2014,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16881 -2015,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16789 -2016,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16846 -2017,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16778 -2018,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16636 -2019,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16571 -2020,geoId/01007,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16420 1990,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,276 1991,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,287 1992,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,302 @@ -3213,38 +1165,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,504 1998,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,564 1999,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,621 -2000,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2732 -2001,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2871 -2002,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3050 -2003,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3169 -2004,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3373 -2005,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3608 -2006,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3793 -2007,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4029 -2008,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4302 -2009,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4473 -2010,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4665 -2011,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4799 -2012,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4832 -2013,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4910 -2014,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4975 -2015,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5015 -2016,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5147 -2017,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5309 -2018,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5371 -2019,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5468 -2020,geoId/01009,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5524 -2010,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2011,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2012,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2013,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2014,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2015,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2016,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2017,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2018,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2019,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2020,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 1990,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1991,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1992,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 @@ -3255,59 +1175,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1998,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1999,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 -2000,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2001,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2002,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2003,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2004,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2005,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2006,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2007,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2008,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2009,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2010,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2011,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2012,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2013,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2014,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2015,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2016,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2017,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2018,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2019,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2020,geoId/01009,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2000,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 1990,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01009,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -3328,91 +1195,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1998,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1999,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 -2000,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2003,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2004,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2005,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2006,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2007,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2008,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2009,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2010,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2011,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2012,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2013,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2014,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2015,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2016,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2017,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2018,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2019,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2020,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2010,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2011,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2012,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2013,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2014,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2015,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2016,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2017,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2018,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2019,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2020,geoId/01009,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2010,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2011,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2012,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2014,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2015,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2016,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2017,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2018,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2019,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2000,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2006,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2007,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2008,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2009,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2011,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2012,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2013,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2016,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2018,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2019,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2020,geoId/01009,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2000,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2003,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2005,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2006,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2007,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2008,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2009,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2010,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2011,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2014,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2016,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2017,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2018,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2019,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2020,geoId/01009,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 1990,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,267 1991,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,277 1992,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,294 @@ -3423,38 +1205,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,492 1998,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,551 1999,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,602 -2000,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2642 -2001,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2776 -2002,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2952 -2003,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3050 -2004,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3234 -2005,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3428 -2006,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3597 -2007,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3822 -2008,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4075 -2009,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4231 -2010,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4424 -2011,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4553 -2012,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4568 -2013,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4629 -2014,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4675 -2015,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4723 -2016,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4844 -2017,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4983 -2018,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5043 -2019,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5125 -2020,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5153 -2010,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4466 -2011,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4593 -2012,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4624 -2013,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4696 -2014,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4747 -2015,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4795 -2016,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4905 -2017,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5055 -2018,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5109 -2019,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5199 -2020,geoId/01009,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5237 1990,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39134 1991,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39581 1992,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39928 @@ -3465,38 +1215,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,44393 1998,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,45728 1999,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,46790 -2000,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48375 -2001,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48974 -2002,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,49501 -2003,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,50288 -2004,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,50751 -2005,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,51016 -2006,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,51692 -2007,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52211 -2008,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52753 -2009,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52868 -2010,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52707 -2011,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52762 -2012,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52753 -2013,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52720 -2014,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52561 -2015,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52520 -2016,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52340 -2017,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52492 -2018,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52399 -2019,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52372 -2020,geoId/01009,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52355 -2010,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,650 -2011,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,645 -2012,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,661 -2013,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,665 -2014,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,645 -2015,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,673 -2016,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,666 -2017,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,683 -2018,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,685 -2019,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,677 -2020,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,658 1990,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,129 1991,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,133 1992,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,130 @@ -3507,59 +1225,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,137 1998,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,135 1999,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,133 -2000,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,223 -2001,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,241 -2002,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2003,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,258 -2004,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,269 -2005,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262 -2006,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,257 -2007,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,274 -2008,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,268 -2009,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,281 -2010,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,288 -2011,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,277 -2012,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,280 -2013,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,277 -2014,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,277 -2015,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,283 -2016,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,261 -2017,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,273 -2018,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,290 -2019,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,272 -2020,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,268 -2000,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2001,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2002,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2003,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2004,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2005,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2006,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2007,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2008,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2009,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2010,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2011,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2012,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2013,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2014,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,154 -2015,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2016,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2017,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2018,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2019,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2020,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2010,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190 -2011,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2012,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,219 -2013,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,241 -2014,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,255 -2015,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2016,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,253 -2017,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,274 -2018,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,298 -2019,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,301 -2020,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,326 1990,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,33 1991,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,34 1992,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,36 @@ -3580,102 +1245,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,672 1998,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,691 1999,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,715 -2000,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,594 -2001,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,694 -2002,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,750 -2003,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,800 -2004,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,828 -2005,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,779 -2006,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,781 -2007,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,812 -2008,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,795 -2009,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,782 -2010,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,731 -2011,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,760 -2012,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,818 -2013,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,860 -2014,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,805 -2015,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,832 -2016,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,807 -2017,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,831 -2018,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,822 -2019,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,876 -2020,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,884 -2010,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,897 -2011,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,930 -2012,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1035 -2013,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1058 -2014,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1026 -2015,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1062 -2016,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1043 -2017,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1084 -2018,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1085 -2019,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1144 -2020,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1156 -2010,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2012,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2013,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2019,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2020,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2000,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,374 -2001,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,393 -2002,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,418 -2003,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,418 -2004,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,437 -2005,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,423 -2006,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,471 -2007,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,483 -2008,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,503 -2009,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,522 -2010,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,560 -2011,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,576 -2012,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,626 -2013,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,627 -2014,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,654 -2015,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,679 -2016,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,714 -2017,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,718 -2018,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,731 -2019,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,736 -2020,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,741 -2010,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51508 -2011,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51539 -2012,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51451 -2013,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51371 -2014,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51268 -2015,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51199 -2016,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51068 -2017,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51154 -2018,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51050 -2019,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50967 -2020,geoId/01009,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50935 1990,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38428 1991,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38863 1992,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,39197 @@ -3686,27 +1255,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,43538 1998,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,44854 1999,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,45892 -2000,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47106 -2001,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47563 -2002,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47997 -2003,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48723 -2004,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49123 -2005,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49441 -2006,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50062 -2007,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50522 -2008,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51061 -2009,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51149 -2010,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50985 -2011,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50998 -2012,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50864 -2013,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50787 -2014,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50650 -2015,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50559 -2016,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50391 -2017,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50487 -2018,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50358 -2019,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50283 -2020,geoId/01009,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50238 1990,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,66 1991,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,64 1992,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,64 @@ -3717,38 +1265,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,87 1998,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,85 1999,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,103 -2000,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,322 -2001,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,406 -2002,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,471 -2003,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,542 -2004,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,590 -2005,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,624 -2006,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,654 -2007,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,713 -2008,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,736 -2009,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,770 -2010,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,775 -2011,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,825 -2012,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,799 -2013,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,761 -2014,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,737 -2015,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,753 -2016,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,764 -2017,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,793 -2018,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,826 -2019,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,848 -2020,geoId/01011,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,885 -2010,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2011,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2012,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2013,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2014,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2015,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2016,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2017,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2018,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2019,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2020,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 1990,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -3759,59 +1275,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2005,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2006,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2007,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2008,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2009,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2010,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2011,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2012,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2014,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2015,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2016,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2017,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2019,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01011,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2000,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 1990,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01011,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -3832,91 +1295,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,46 1998,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,39 1999,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51 -2000,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2001,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2002,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2003,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2004,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2005,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2006,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2007,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2008,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2009,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2010,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2011,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2012,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2013,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2014,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2015,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2016,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2017,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2018,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2019,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2020,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2010,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2011,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2012,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2013,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2014,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2015,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2016,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2017,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2018,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2019,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2020,geoId/01011,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2010,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2011,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2012,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2013,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2014,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2015,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2016,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2017,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2019,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2020,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2000,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2004,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2006,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2007,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2008,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2009,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2010,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2011,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2012,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2013,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2014,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2015,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2016,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2017,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2018,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2019,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01011,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2000,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2008,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2009,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2011,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2012,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2013,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01011,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 1990,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,26 1991,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27 1992,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28 @@ -3927,38 +1305,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,40 1998,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,44 1999,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51 -2000,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,228 -2001,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,307 -2002,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,357 -2003,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,406 -2004,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,443 -2005,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,431 -2006,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,437 -2007,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,484 -2008,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,463 -2009,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,472 -2010,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,484 -2011,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,544 -2012,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,517 -2013,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,485 -2014,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,457 -2015,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,463 -2016,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,469 -2017,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,501 -2018,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,537 -2019,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,559 -2020,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,572 -2010,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,518 -2011,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,577 -2012,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,556 -2013,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,519 -2014,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,491 -2015,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,500 -2016,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,505 -2017,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,533 -2018,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,569 -2019,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,597 -2020,geoId/01011,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,607 1990,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10956 1991,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11075 1992,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10968 @@ -3969,38 +1315,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11223 1998,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11240 1999,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11240 -2000,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11259 -2001,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10952 -2002,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10785 -2003,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10774 -2004,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10466 -2005,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10387 -2006,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10122 -2007,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10298 -2008,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10217 -2009,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10217 -2010,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10101 -2011,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9855 -2012,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9811 -2013,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9796 -2014,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9931 -2015,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9651 -2016,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9633 -2017,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9388 -2018,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9339 -2019,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9296 -2020,geoId/01011,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9091 -2010,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2012,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2013,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2014,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2015,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2016,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2017,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2018,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2019,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2020,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 1990,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 1991,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1992,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 @@ -4011,59 +1325,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1998,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1999,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 -2000,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2001,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2002,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2003,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2004,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2005,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2006,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2017,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2000,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2001,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2002,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2004,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2005,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2006,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2007,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2008,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2009,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 1990,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1991,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1992,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 @@ -4084,102 +1345,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8199 1998,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8226 1999,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8253 -2000,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8401 -2001,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8180 -2002,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8036 -2003,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8015 -2004,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7857 -2005,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7781 -2006,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7645 -2007,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7791 -2008,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7674 -2009,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7667 -2010,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7623 -2011,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7401 -2012,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7349 -2013,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7389 -2014,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7479 -2015,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7261 -2016,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7230 -2017,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7093 -2018,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7061 -2019,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7019 -2020,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6852 -2010,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7652 -2011,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7430 -2012,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7388 -2013,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7424 -2014,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7524 -2015,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7304 -2016,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7277 -2017,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7142 -2018,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7109 -2019,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7078 -2020,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6905 -2010,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2001,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2002,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2003,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2004,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2005,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2006,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2007,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2008,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2009,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2010,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2011,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2012,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2013,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2014,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2015,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2016,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2017,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2018,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2019,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2020,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2010,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2429 -2011,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2409 -2012,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2404 -2013,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2348 -2014,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2385 -2015,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2327 -2016,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2344 -2017,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2240 -2018,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2219 -2019,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2214 -2020,geoId/01011,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2184 1990,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3017 1991,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3069 1992,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3026 @@ -4190,27 +1355,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3003 1998,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2994 1999,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2966 -2000,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2734 -2001,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2649 -2002,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2625 -2003,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2634 -2004,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2484 -2005,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2501 -2006,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2388 -2007,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2413 -2008,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2444 -2009,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2452 -2010,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2384 -2011,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2355 -2012,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2345 -2013,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2289 -2014,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2326 -2015,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2261 -2016,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2266 -2017,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2161 -2018,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2146 -2019,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2134 -2020,geoId/01011,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2104 1990,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,65 1991,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61 1992,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,63 @@ -4221,38 +1365,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,86 1998,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,88 1999,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,97 -2000,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,143 -2001,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,151 -2002,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,151 -2003,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,153 -2004,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,157 -2005,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,168 -2006,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,177 -2007,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,179 -2008,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,176 -2009,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,181 -2010,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,198 -2011,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,227 -2012,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,244 -2013,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,254 -2014,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,250 -2015,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,268 -2016,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,268 -2017,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,280 -2018,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,286 -2019,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,296 -2020,geoId/01013,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,323 -2010,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 1990,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -4263,59 +1375,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01013,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 1990,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01013,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -4336,91 +1395,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 1998,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1999,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,16 -2000,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2001,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2002,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2003,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2004,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2005,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2006,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2007,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2008,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2009,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2010,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2011,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2013,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2014,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2015,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2016,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2017,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2018,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2019,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2010,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2011,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2012,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2013,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2014,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2015,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2016,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2019,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2020,geoId/01013,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2010,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01013,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01013,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 1990,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,50 1991,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,47 1992,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51 @@ -4431,38 +1405,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,72 1998,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,78 1999,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,81 -2000,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2001,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2002,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2003,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2004,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2005,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2006,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2007,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2008,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2009,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2010,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2011,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2012,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158 -2013,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2014,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2015,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2016,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2017,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2018,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2019,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 -2020,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2010,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2011,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2012,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2013,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2014,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2015,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2016,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2017,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2018,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 -2019,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2020,geoId/01013,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,229 1990,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21819 1991,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21681 1992,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21709 @@ -4473,38 +1415,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21683 1998,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21570 1999,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21425 -2000,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21182 -2001,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20988 -2002,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20652 -2003,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20680 -2004,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20713 -2005,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20662 -2006,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20638 -2007,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20715 -2008,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20773 -2009,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20686 -2010,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20735 -2011,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20640 -2012,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20428 -2013,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20105 -2014,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20082 -2015,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19900 -2016,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19772 -2017,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19631 -2018,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19389 -2019,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19205 -2020,geoId/01013,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19181 -2010,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2011,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2012,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2013,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2014,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2015,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2016,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2017,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2018,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2019,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2020,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 1990,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 1991,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23 1992,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22 @@ -4515,59 +1425,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 1998,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,17 1999,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20 -2000,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2001,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2002,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2003,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2004,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2005,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2006,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2007,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2008,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2009,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2010,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2011,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2012,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2014,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2015,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2016,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2017,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2018,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2019,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2000,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2001,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2002,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2003,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2004,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2005,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2006,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2007,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2008,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2009,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2010,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2011,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2012,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2013,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2014,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,223 -2015,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243 -2016,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,277 -2017,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270 -2018,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,272 -2019,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,280 -2020,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,257 -2010,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2011,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,212 -2012,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2013,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,219 -2014,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,247 -2015,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,268 -2016,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,303 -2017,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,302 -2018,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,303 -2019,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,313 -2020,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,284 1990,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 1991,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 1992,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 @@ -4588,102 +1445,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9097 1998,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9083 1999,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9069 -2000,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8666 -2001,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8619 -2002,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8522 -2003,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8602 -2004,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8675 -2005,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8666 -2006,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8777 -2007,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8885 -2008,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9062 -2009,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8999 -2010,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9059 -2011,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9049 -2012,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8960 -2013,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8848 -2014,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8936 -2015,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8889 -2016,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8847 -2017,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8854 -2018,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8765 -2019,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8686 -2020,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8699 -2010,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9132 -2011,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9116 -2012,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9044 -2013,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8924 -2014,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9040 -2015,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8986 -2016,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8941 -2017,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8957 -2018,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8878 -2019,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8796 -2020,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8822 -2010,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2001,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2002,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2003,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2004,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2005,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2006,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2007,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2008,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2009,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2010,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2011,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2012,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2013,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2014,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2015,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2016,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2017,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2018,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2019,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2020,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2010,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11425 -2011,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11319 -2012,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11173 -2013,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10960 -2014,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10832 -2015,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10678 -2016,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10554 -2017,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10410 -2018,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10259 -2019,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10138 -2020,geoId/01013,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10124 1990,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12996 1991,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12893 1992,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12858 @@ -4694,27 +1455,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12546 1998,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12450 1999,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12316 -2000,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12369 -2001,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12209 -2002,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11948 -2003,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11868 -2004,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11809 -2005,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11739 -2006,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11564 -2007,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11521 -2008,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11376 -2009,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11324 -2010,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11299 -2011,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11194 -2012,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11049 -2013,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10832 -2014,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10684 -2015,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10524 -2016,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10386 -2017,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10241 -2018,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10082 -2019,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9972 -2020,geoId/01013,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9943 1990,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1281 1991,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1254 1992,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1314 @@ -4725,38 +1465,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1943 1998,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2094 1999,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2178 -2000,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1755 -2001,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1939 -2002,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2052 -2003,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2238 -2004,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2504 -2005,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2759 -2006,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3034 -2007,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3249 -2008,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3453 -2009,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3752 -2010,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3899 -2011,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3963 -2012,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3913 -2013,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3910 -2014,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3968 -2015,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4025 -2016,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4211 -2017,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4239 -2018,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4407 -2019,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4499 -2020,geoId/01015,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4668 -2010,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2011,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2012,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2013,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 -2014,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,202 -2015,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2016,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,212 -2017,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,229 -2018,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,231 -2019,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,220 -2020,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,220 1990,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 1991,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 1992,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 @@ -4767,59 +1475,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 1998,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1999,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 -2000,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2002,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2003,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2004,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2005,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2006,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2007,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2008,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2009,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2010,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2011,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2012,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2013,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2014,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2015,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2016,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2017,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2018,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2019,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2020,geoId/01015,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2000,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2004,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2006,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2008,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2009,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2010,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2011,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2012,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2013,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2014,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2015,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2016,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2019,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2020,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2010,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2011,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2012,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2013,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2014,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2015,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2016,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2017,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2018,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2019,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2020,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 1990,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,64 1991,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51 1992,geoId/01015,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51 @@ -4840,91 +1495,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,176 1998,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,177 1999,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,188 -2000,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2001,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2002,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2003,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2004,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2005,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2006,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,226 -2007,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,256 -2008,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262 -2009,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,297 -2010,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,310 -2011,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,310 -2012,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,319 -2013,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,318 -2014,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,311 -2015,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,353 -2016,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,356 -2017,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,353 -2018,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,345 -2019,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,358 -2020,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,344 -2010,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,399 -2011,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,409 -2012,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,411 -2013,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,419 -2014,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,418 -2015,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,456 -2016,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,463 -2017,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,472 -2018,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,460 -2019,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,452 -2020,geoId/01015,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,460 -2010,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2011,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2012,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2016,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2017,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2019,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2020,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2000,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01015,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2001,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2002,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2003,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2004,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2005,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2006,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2007,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2008,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,154 -2009,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2010,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 -2011,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,194 -2012,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,187 -2013,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2014,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2015,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,194 -2016,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2017,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2018,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,205 -2019,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2020,geoId/01015,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 1990,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1057 1991,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1062 1992,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1112 @@ -4935,38 +1505,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1670 1998,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1791 1999,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1883 -2000,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1567 -2001,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1723 -2002,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1787 -2003,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1944 -2004,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2165 -2005,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2360 -2006,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2569 -2007,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2726 -2008,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2896 -2009,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3122 -2010,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3248 -2011,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3281 -2012,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3237 -2013,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3237 -2014,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3276 -2015,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3285 -2016,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3457 -2017,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3478 -2018,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3641 -2019,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3728 -2020,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3904 -2010,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3399 -2011,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3450 -2012,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3397 -2013,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3394 -2014,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3451 -2015,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3448 -2016,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3629 -2017,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3658 -2018,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3813 -2019,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3892 -2020,geoId/01015,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4067 1990,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,114834 1991,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,113964 1992,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,114435 @@ -4977,38 +1515,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,115189 1998,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,114989 1999,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,114363 -2000,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,109326 -2001,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,109327 -2002,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,109573 -2003,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,110467 -2004,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,110958 -2005,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,111718 -2006,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,112354 -2007,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,112962 -2008,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,113821 -2009,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,114611 -2010,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,114521 -2011,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,113804 -2012,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,113314 -2013,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,112618 -2014,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,112023 -2015,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,111525 -2016,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,110825 -2017,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,110507 -2018,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,109891 -2019,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,109571 -2020,geoId/01015,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,108801 -2010,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1155 -2011,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1124 -2012,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1137 -2013,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1152 -2014,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1120 -2015,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1156 -2016,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1154 -2017,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1113 -2018,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1162 -2019,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1144 -2020,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1167 1990,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,292 1991,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,287 1992,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,273 @@ -5019,59 +1525,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,267 1998,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,255 1999,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,245 -2000,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,433 -2001,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,448 -2002,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,466 -2003,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,470 -2004,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,451 -2005,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,473 -2006,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,458 -2007,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,498 -2008,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,498 -2009,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,479 -2010,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,484 -2011,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,468 -2012,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,459 -2013,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,467 -2014,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,454 -2015,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,456 -2016,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,453 -2017,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,444 -2018,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,456 -2019,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,464 -2020,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,461 -2000,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,634 -2001,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,662 -2002,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,653 -2003,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,697 -2004,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,731 -2005,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,743 -2006,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,777 -2007,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,801 -2008,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,789 -2009,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,874 -2010,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,854 -2011,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,876 -2012,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,923 -2013,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,959 -2014,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1005 -2015,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1022 -2016,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1064 -2017,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1048 -2018,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1016 -2019,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,959 -2020,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,943 -2010,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1204 -2011,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1233 -2012,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1296 -2013,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1335 -2014,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1406 -2015,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1447 -2016,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1503 -2017,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1508 -2018,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1496 -2019,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1456 -2020,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1440 1990,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,821 1991,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,838 1992,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,859 @@ -5092,102 +1545,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22589 1998,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22677 1999,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22729 -2000,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20668 -2001,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20971 -2002,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21229 -2003,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21561 -2004,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22038 -2005,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22632 -2006,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23018 -2007,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23255 -2008,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23809 -2009,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24164 -2010,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24160 -2011,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23960 -2012,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24085 -2013,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23924 -2014,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23995 -2015,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23945 -2016,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23845 -2017,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23933 -2018,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24038 -2019,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24279 -2020,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24049 -2010,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24982 -2011,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24812 -2012,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25021 -2013,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24852 -2014,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24989 -2015,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25012 -2016,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24933 -2017,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25060 -2018,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25229 -2019,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25518 -2020,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25322 -2010,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2011,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,195 -2012,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190 -2013,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2014,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2015,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2016,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2017,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,225 -2018,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2019,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,247 -2020,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,220 -2000,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2001,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2002,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2003,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2004,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2005,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2006,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2007,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2008,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2009,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2010,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2011,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2012,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2013,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2014,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2015,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2016,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2017,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2018,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2019,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2020,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2000,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,878 -2001,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,931 -2002,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,998 -2003,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1085 -2004,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1148 -2005,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1258 -2006,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1328 -2007,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1442 -2008,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1531 -2009,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1563 -2010,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1654 -2011,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1692 -2012,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1744 -2013,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1789 -2014,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1842 -2015,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1956 -2016,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2022 -2017,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2039 -2018,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2129 -2019,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2200 -2020,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2237 -2010,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88785 -2011,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88266 -2012,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87598 -2013,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87027 -2014,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86311 -2015,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85851 -2016,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85211 -2017,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84809 -2018,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84133 -2019,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83589 -2020,geoId/01015,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83071 1990,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,92207 1991,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,91502 1992,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,91785 @@ -5198,27 +1555,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,91362 1998,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,91093 1999,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,90433 -2000,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86638 -2001,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86246 -2002,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86148 -2003,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86573 -2004,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86503 -2005,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86530 -2006,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86689 -2007,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86880 -2008,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87111 -2009,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87445 -2010,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87271 -2011,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86712 -2012,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86009 -2013,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85385 -2014,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84632 -2015,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84056 -2016,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83350 -2017,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82944 -2018,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82160 -2019,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81571 -2020,geoId/01015,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81012 1990,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,127 1991,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,122 1992,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,120 @@ -5229,38 +1565,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,171 1998,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,188 1999,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,195 -2000,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,280 -2001,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,334 -2002,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,377 -2003,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,398 -2004,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,415 -2005,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,440 -2006,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,473 -2007,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,517 -2008,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,519 -2009,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,531 -2010,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,538 -2011,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,563 -2012,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,614 -2013,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,671 -2014,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,675 -2015,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,694 -2016,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,754 -2017,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,818 -2018,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,858 -2019,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,879 -2020,geoId/01017,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,915 -2010,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2017,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2018,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2020,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 1990,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1991,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1992,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 @@ -5271,59 +1575,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1998,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1999,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 -2000,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01017,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2000,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2019,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 1990,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1992,geoId/01017,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -5344,91 +1595,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38 1998,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,45 1999,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,35 -2000,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2001,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2002,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2003,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2004,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2005,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2006,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2007,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2008,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2009,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2010,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2011,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2012,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2013,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2014,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2015,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2016,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2017,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2018,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2019,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2020,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2010,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2011,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2012,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2013,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2014,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2015,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2016,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2017,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2018,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2019,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2020,geoId/01017,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2010,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01017,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2020,geoId/01017,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 1990,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,81 1991,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,82 1992,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,82 @@ -5439,38 +1605,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,123 1998,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,138 1999,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,150 -2000,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 -2001,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,251 -2002,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,284 -2003,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,301 -2004,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,309 -2005,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,318 -2006,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,349 -2007,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,386 -2008,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,379 -2009,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,382 -2010,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,388 -2011,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,399 -2012,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,436 -2013,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,492 -2014,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,502 -2015,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,497 -2016,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,531 -2017,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,590 -2018,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,624 -2019,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,649 -2020,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,670 -2010,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,397 -2011,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,416 -2012,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,457 -2013,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,513 -2014,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,521 -2015,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,522 -2016,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,565 -2017,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,628 -2018,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,659 -2019,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,687 -2020,geoId/01017,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,712 1990,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36755 1991,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36780 1992,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36905 @@ -5481,38 +1615,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36469 1998,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36518 1999,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36174 -2000,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36291 -2001,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,35940 -2002,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,35588 -2003,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,35282 -2004,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,35048 -2005,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,34839 -2006,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,34472 -2007,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,34330 -2008,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,34044 -2009,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33853 -2010,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33567 -2011,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33453 -2012,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33474 -2013,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33454 -2014,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33289 -2015,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33297 -2016,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32988 -2017,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32898 -2018,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32712 -2019,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32365 -2020,geoId/01017,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,31950 -2010,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172 -2011,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2012,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2013,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2014,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 -2015,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2016,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2017,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2018,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2019,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2020,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 1990,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,36 1991,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,35 1992,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,35 @@ -5523,59 +1625,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,30 1998,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28 1999,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27 -2000,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2001,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2002,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2003,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2004,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2005,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2006,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2007,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2008,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2009,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2010,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2011,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2012,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2013,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2014,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2015,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2016,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2017,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2018,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2019,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2020,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2000,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2001,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2002,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2003,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2004,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2005,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2006,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2007,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134 -2008,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2009,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2010,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2011,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2012,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,225 -2013,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,290 -2014,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,346 -2015,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,381 -2016,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,397 -2017,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,405 -2018,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,401 -2019,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,346 -2020,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,358 -2010,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,225 -2011,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2012,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,263 -2013,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,327 -2014,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,392 -2015,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,422 -2016,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,440 -2017,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,457 -2018,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,444 -2019,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,401 -2020,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,405 1990,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 1991,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 1992,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 @@ -5596,102 +1645,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13764 1998,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13847 1999,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13801 -2000,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13905 -2001,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13809 -2002,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13802 -2003,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13736 -2004,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13666 -2005,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13651 -2006,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13520 -2007,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13513 -2008,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13420 -2009,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13367 -2010,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13168 -2011,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13066 -2012,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13199 -2013,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13255 -2014,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13355 -2015,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13409 -2016,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13299 -2017,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13319 -2018,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13340 -2019,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13265 -2020,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13131 -2010,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13341 -2011,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13255 -2012,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13402 -2013,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13460 -2014,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13567 -2015,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13618 -2016,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13515 -2017,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13572 -2018,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13586 -2019,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13511 -2020,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13370 -2010,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2001,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2002,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2003,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,214 -2004,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,232 -2005,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,228 -2006,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2007,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,275 -2008,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,290 -2009,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,305 -2010,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,313 -2011,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,323 -2012,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,344 -2013,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,353 -2014,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,344 -2015,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,348 -2016,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,370 -2017,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,402 -2018,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,384 -2019,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,385 -2020,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,366 -2010,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20124 -2011,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20096 -2012,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19946 -2013,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19812 -2014,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19482 -2015,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19392 -2016,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19177 -2017,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19065 -2018,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18863 -2019,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18633 -2020,geoId/01017,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18334 1990,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23493 1991,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23462 1992,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23460 @@ -5702,27 +1655,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22661 1998,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22629 1999,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22332 -2000,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22091 -2001,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21818 -2002,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21448 -2003,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21181 -2004,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20989 -2005,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20781 -2006,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20495 -2007,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20348 -2008,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20129 -2009,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19963 -2010,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19834 -2011,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19796 -2012,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19626 -2013,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19479 -2014,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19165 -2015,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19066 -2016,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18835 -2017,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18694 -2018,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18504 -2019,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18283 -2020,geoId/01017,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18005 1990,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,57 1991,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,59 1992,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,56 @@ -5733,38 +1665,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,102 1998,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,108 1999,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,112 -2000,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,202 -2001,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,232 -2002,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,235 -2003,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,243 -2004,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,243 -2005,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,280 -2006,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,279 -2007,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,296 -2008,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,306 -2009,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,316 -2010,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,327 -2011,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,361 -2012,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,394 -2013,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,421 -2014,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,381 -2015,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,390 -2016,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,391 -2017,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,404 -2018,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,431 -2019,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,456 -2020,geoId/01019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,482 -2010,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 1990,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -5775,59 +1675,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2000,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 1990,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01019,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -5848,91 +1695,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 1998,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1999,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 -2000,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 1990,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,53 1991,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,55 1992,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,52 @@ -5943,38 +1705,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,96 1998,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,103 1999,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,108 -2000,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2001,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2002,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2003,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2004,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,225 -2005,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,256 -2006,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,249 -2007,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,265 -2008,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270 -2009,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,280 -2010,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,293 -2011,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,323 -2012,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,346 -2013,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,375 -2014,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,342 -2015,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,338 -2016,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,339 -2017,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,353 -2018,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,361 -2019,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,396 -2020,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,411 -2010,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,302 -2011,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,331 -2012,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,356 -2013,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,386 -2014,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,353 -2015,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,350 -2016,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,351 -2017,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,365 -2018,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,380 -2019,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,407 -2020,geoId/01019,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,425 1990,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19546 1991,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19617 1992,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19758 @@ -5985,38 +1715,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21499 1998,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21719 1999,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21782 -2000,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23804 -2001,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23950 -2002,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24168 -2003,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24348 -2004,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24644 -2005,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24751 -2006,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25187 -2007,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25257 -2008,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25330 -2009,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25538 -2010,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25641 -2011,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25632 -2012,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25567 -2013,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25601 -2014,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25519 -2015,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25349 -2016,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25378 -2017,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25418 -2018,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25604 -2019,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25798 -2020,geoId/01019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25812 -2010,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,305 -2011,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,325 -2012,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,321 -2013,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,335 -2014,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,336 -2015,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,358 -2016,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,384 -2017,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,378 -2018,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,366 -2019,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,374 -2020,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,373 1990,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51 1991,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51 1992,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,50 @@ -6027,59 +1725,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51 1998,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,52 1999,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,53 -2000,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2001,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2002,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2003,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2004,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2005,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2006,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2007,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2008,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2009,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2010,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2011,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2012,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2013,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2014,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2015,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2016,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2017,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2018,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2019,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2020,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2000,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2001,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2002,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2003,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2004,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2005,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2006,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2007,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2008,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2009,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2010,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2011,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2012,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2013,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2014,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2015,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2016,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2018,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2019,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2020,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2010,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2011,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2012,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2013,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2014,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2015,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2016,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2017,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2018,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2019,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2020,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 1990,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 1991,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 1992,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,25 @@ -6100,102 +1745,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1543 1998,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1579 1999,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1596 -2000,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1334 -2001,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1285 -2002,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1299 -2003,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1279 -2004,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1282 -2005,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1244 -2006,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1251 -2007,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1249 -2008,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1244 -2009,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1252 -2010,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1198 -2011,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1186 -2012,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1180 -2013,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1136 -2014,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1119 -2015,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1116 -2016,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1106 -2017,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1075 -2018,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1109 -2019,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1079 -2020,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1081 -2010,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1322 -2011,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1332 -2012,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1330 -2013,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1276 -2014,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1286 -2015,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1273 -2016,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1267 -2017,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1230 -2018,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1274 -2019,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1251 -2020,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1270 -2010,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2001,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2002,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2003,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 -2004,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,238 -2005,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,250 -2006,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,268 -2007,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,286 -2008,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,314 -2009,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,332 -2010,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,337 -2011,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,356 -2012,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,360 -2013,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,362 -2014,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,383 -2015,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,400 -2016,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,408 -2017,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,409 -2018,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,412 -2019,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,410 -2020,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,415 -2010,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24249 -2011,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24244 -2012,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24183 -2013,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24252 -2014,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24168 -2015,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24004 -2016,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24018 -2017,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24081 -2018,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24234 -2019,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24430 -2020,geoId/01019,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24423 1990,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18184 1991,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18227 1992,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18333 @@ -6206,27 +1755,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19875 1998,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20057 1999,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20104 -2000,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22206 -2001,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22390 -2002,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22561 -2003,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22730 -2004,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22992 -2005,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23121 -2006,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23518 -2007,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23567 -2008,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23611 -2009,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23782 -2010,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23931 -2011,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23914 -2012,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23845 -2013,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23913 -2014,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23817 -2015,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23621 -2016,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23637 -2017,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23702 -2018,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23842 -2019,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24045 -2020,geoId/01019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24046 1990,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,113 1991,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,114 1992,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,119 @@ -6237,38 +1765,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,208 1998,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,221 1999,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,235 -2000,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1166 -2001,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1273 -2002,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1466 -2003,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1689 -2004,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1904 -2005,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2082 -2006,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2245 -2007,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2588 -2008,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2858 -2009,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3181 -2010,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3425 -2011,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3339 -2012,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3330 -2013,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3265 -2014,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3312 -2015,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3294 -2016,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3327 -2017,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3361 -2018,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3407 -2019,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3492 -2020,geoId/01021,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3524 -2010,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2011,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2012,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2013,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2014,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2015,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2016,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2017,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2018,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2019,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2020,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134 1990,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1992,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 @@ -6279,59 +1775,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1999,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 -2000,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2005,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2006,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2007,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2008,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2009,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2010,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2011,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2012,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2013,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2016,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2017,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2018,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2019,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2020,geoId/01021,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2000,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2002,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2003,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2009,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2016,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 1990,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1991,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1992,geoId/01021,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 @@ -6352,91 +1795,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 1998,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 1999,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 -2000,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2001,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2002,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2003,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2004,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2005,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2006,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2007,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2008,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2009,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,150 -2010,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2011,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2012,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2013,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2014,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2015,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2016,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2017,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 -2018,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 -2019,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2020,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,195 -2010,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2011,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,205 -2012,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,195 -2013,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 -2014,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,212 -2015,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,202 -2016,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2017,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2018,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2019,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2020,geoId/01021,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237 -2010,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2011,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2012,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2013,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2014,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2015,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2016,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2017,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2018,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2019,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2020,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2000,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2004,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2005,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2006,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2007,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2008,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2009,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2010,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2011,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2012,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2013,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2014,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2015,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2016,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2017,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2018,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2019,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2020,geoId/01021,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2000,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2002,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2005,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2006,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2007,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2008,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2009,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2010,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2011,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2012,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2013,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2014,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2015,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2016,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2017,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2018,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2019,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2020,geoId/01021,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 1990,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,97 1991,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,98 1992,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,104 @@ -6447,38 +1805,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,187 1998,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,196 1999,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,209 -2000,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1057 -2001,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1158 -2002,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1323 -2003,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1515 -2004,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1704 -2005,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1823 -2006,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1953 -2007,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2282 -2008,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2516 -2009,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2804 -2010,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3043 -2011,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2954 -2012,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2948 -2013,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2876 -2014,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2908 -2015,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2891 -2016,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2930 -2017,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2949 -2018,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2999 -2019,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3071 -2020,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3064 -2010,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3096 -2011,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3007 -2012,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3006 -2013,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2928 -2014,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2961 -2015,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2948 -2016,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2979 -2017,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3013 -2018,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3056 -2019,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3139 -2020,geoId/01021,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3137 1990,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32407 1991,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32931 1992,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33101 @@ -6489,38 +1815,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36102 1998,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36705 1999,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37369 -2000,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,38731 -2001,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,38924 -2002,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39217 -2003,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39390 -2004,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39630 -2005,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39864 -2006,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40073 -2007,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40293 -2008,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40381 -2009,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40303 -2010,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40220 -2011,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40343 -2012,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40242 -2013,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40352 -2014,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40439 -2015,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40399 -2016,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40527 -2017,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40724 -2018,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40677 -2019,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40821 -2020,geoId/01021,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40873 -2010,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270 -2011,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,297 -2012,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,292 -2013,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,309 -2014,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,298 -2015,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,321 -2016,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,321 -2017,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,328 -2018,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,329 -2019,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,333 -2020,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,350 1990,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,63 1991,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,66 1992,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,61 @@ -6531,59 +1825,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,70 1998,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,69 1999,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,72 -2000,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2001,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2002,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2003,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2004,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2005,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2006,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2007,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2008,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2009,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2010,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2011,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2012,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2013,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2014,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2015,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2016,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2017,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2018,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2019,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,150 -2020,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2000,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2001,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2002,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2003,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2004,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2005,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2006,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2007,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2008,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2009,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2010,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128 -2011,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134 -2012,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2013,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2014,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2015,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2016,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2017,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2018,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2019,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2020,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2010,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2011,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,187 -2012,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2013,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,241 -2014,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,242 -2015,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,239 -2016,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,241 -2017,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,273 -2018,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,279 -2019,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,267 -2020,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,266 1990,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,34 1991,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,36 1992,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38 @@ -6604,102 +1845,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4384 1998,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4499 1999,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4622 -2000,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4135 -2001,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4202 -2002,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4225 -2003,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4208 -2004,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4181 -2005,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4134 -2006,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4151 -2007,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4172 -2008,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4182 -2009,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4183 -2010,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4182 -2011,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4227 -2012,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4224 -2013,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4268 -2014,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4400 -2015,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4363 -2016,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4356 -2017,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4414 -2018,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4383 -2019,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4433 -2020,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4405 -2010,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4375 -2011,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4451 -2012,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4451 -2013,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4506 -2014,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4670 -2015,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4657 -2016,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4650 -2017,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4710 -2018,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4687 -2019,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4755 -2020,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4711 -2010,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2015,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2000,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,202 -2001,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2002,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,227 -2003,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,247 -2004,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,267 -2005,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,263 -2006,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,277 -2007,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,307 -2008,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,319 -2009,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,342 -2010,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,359 -2011,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,393 -2012,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,403 -2013,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,436 -2014,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,471 -2015,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,498 -2016,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,504 -2017,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,514 -2018,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,534 -2019,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,553 -2020,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,522 -2010,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35732 -2011,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35804 -2012,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35672 -2013,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35726 -2014,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35677 -2015,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35672 -2016,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35809 -2017,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35916 -2018,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35907 -2019,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36004 -2020,geoId/01021,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36057 1990,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28630 1991,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29056 1992,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29182 @@ -6710,27 +1855,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,31602 1998,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,32089 1999,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,32626 -2000,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34215 -2001,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34322 -2002,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34565 -2003,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34734 -2004,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34973 -2005,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35244 -2006,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35398 -2007,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35573 -2008,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35632 -2009,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35513 -2010,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35404 -2011,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35441 -2012,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35309 -2013,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35321 -2014,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35247 -2015,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35209 -2016,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35343 -2017,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35452 -2018,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35403 -2019,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35485 -2020,geoId/01021,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35584 1990,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53 1991,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,51 1992,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,49 @@ -6741,38 +1865,8 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,70 1998,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,73 1999,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,75 -2000,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,107 -2001,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,104 -2002,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,99 -2003,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,95 -2004,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,91 -2005,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,83 -2006,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79 -2007,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,82 -2008,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,74 -2009,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,73 -2010,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,74 -2011,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,72 -2012,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,89 -2013,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,96 -2014,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,111 -2015,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,119 -2016,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,125 -2017,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,121 -2018,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,134 2019,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,131 -2020,geoId/01023,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,147 -2010,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 2019,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 1990,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -6783,59 +1877,9 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 2019,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01023,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 2019,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 2019,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 1990,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1991,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1992,geoId/01023,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 @@ -6856,91 +1900,11 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 1998,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28 1999,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,26 -2000,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2001,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2002,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2003,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2004,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2005,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2006,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2007,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2008,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 2019,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 2019,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01023,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 2019,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 2019,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01023,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 2019,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01023,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 1990,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,26 1991,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,25 1992,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27 @@ -6951,38 +1915,8 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,43 1998,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,42 1999,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,46 -2000,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2001,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2002,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2003,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2004,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2005,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2006,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2007,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2008,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2009,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2010,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2011,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2012,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2013,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2016,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2017,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2018,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 2019,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2020,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2010,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2011,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2012,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2016,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2017,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2018,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 2019,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2020,geoId/01023,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 1990,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15931 1991,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15945 1992,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16069 @@ -6993,38 +1927,8 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15813 1998,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15756 1999,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15443 -2000,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15768 -2001,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15573 -2002,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15268 -2003,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15104 -2004,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14839 -2005,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14462 -2006,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14352 -2007,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14134 -2008,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14040 -2009,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13903 -2010,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13774 -2011,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13536 -2012,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13476 -2013,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13305 -2014,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13211 -2015,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13118 -2016,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12924 -2017,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12802 -2018,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12676 2019,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12446 -2020,geoId/01023,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12271 -2010,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2012,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2014,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2015,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2016,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2017,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 2019,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2020,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 1990,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1991,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1992,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 @@ -7035,59 +1939,9 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 1998,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1999,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 -2000,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2001,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2002,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2004,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2005,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2007,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2009,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2010,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 2019,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 2019,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2015,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2018,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 2019,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 1990,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1991,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1992,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 @@ -7108,102 +1962,12 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7264 1998,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7270 1999,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7153 -2000,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7003 -2001,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6887 -2002,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6716 -2003,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6626 -2004,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6507 -2005,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6287 -2006,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6294 -2007,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6171 -2008,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6201 -2009,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6066 -2010,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5970 -2011,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5844 -2012,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5814 -2013,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5703 -2014,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5608 -2015,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5517 -2016,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5427 -2017,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5386 -2018,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5310 2019,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5212 -2020,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5122 -2010,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6004 -2011,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5880 -2012,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5851 -2013,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5743 -2014,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5647 -2015,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5559 -2016,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5470 -2017,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5421 -2018,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5360 2019,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5263 -2020,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5182 -2010,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 2019,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 2019,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2001,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2002,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2003,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2004,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2005,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2006,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2007,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2008,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2009,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2010,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2011,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2013,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2014,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2015,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2016,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2017,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2018,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 2019,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2020,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2010,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7769 -2011,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7651 -2012,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7613 -2013,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7545 -2014,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7547 -2015,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7555 -2016,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7451 -2017,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7366 -2018,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7312 2019,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7180 -2020,geoId/01023,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7090 1990,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8871 1991,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8854 1992,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8891 @@ -7214,27 +1978,7 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8532 1998,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8466 1999,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8273 -2000,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8675 -2001,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8597 -2002,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8465 -2003,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8393 -2004,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8249 -2005,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8097 -2006,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7969 -2007,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7878 -2008,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7752 -2009,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7750 -2010,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7712 -2011,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7594 -2012,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7555 -2013,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7479 -2014,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7484 -2015,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7486 -2016,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7375 -2017,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7293 -2018,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7232 2019,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7102 -2020,geoId/01023,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6999 1990,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,102 1991,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100 1992,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,98 @@ -7245,38 +1989,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,134 1998,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,142 1999,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,149 -2000,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,180 -2001,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,196 -2002,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,188 -2003,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,203 -2004,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,215 -2005,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,222 -2006,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,238 -2007,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,237 -2008,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,249 -2009,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,260 -2010,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,274 -2011,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,291 -2012,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,287 -2013,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,312 -2014,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,336 -2015,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,345 -2016,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,336 -2017,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,321 -2018,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,321 -2019,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,318 -2020,geoId/01025,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,315 -2010,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 1990,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -7287,59 +1999,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01025,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 1990,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01025,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -7360,91 +2019,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,56 1998,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,58 1999,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,61 -2000,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2001,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2002,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2003,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2004,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2005,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2006,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2007,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2008,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2009,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2010,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2011,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2012,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2013,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2014,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2015,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2016,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2017,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2018,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2019,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2010,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2011,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2012,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2013,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2014,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2015,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2016,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2018,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2019,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2020,geoId/01025,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2010,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01025,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01025,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 1990,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,49 1991,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,48 1992,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51 @@ -7455,38 +2029,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,78 1998,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,84 1999,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,88 -2000,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2001,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2002,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2003,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2004,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2005,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2006,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2007,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2008,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2009,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2010,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2011,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190 -2012,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2013,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2014,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237 -2015,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,249 -2016,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2017,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 -2018,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 -2019,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,219 -2020,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,209 -2010,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2011,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,202 -2012,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2013,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,220 -2014,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,250 -2015,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,261 -2016,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2017,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,232 -2018,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,232 -2019,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,227 -2020,geoId/01025,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,221 1990,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27209 1991,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27403 1992,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27629 @@ -7497,38 +2039,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,28472 1998,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,28389 1999,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,28607 -2000,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27639 -2001,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27428 -2002,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27079 -2003,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26887 -2004,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26743 -2005,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26542 -2006,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26517 -2007,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26199 -2008,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26034 -2009,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25778 -2010,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25493 -2011,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25298 -2012,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24874 -2013,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24819 -2014,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24537 -2015,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24366 -2016,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24006 -2017,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23762 -2018,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23644 -2019,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23333 -2020,geoId/01025,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22976 -2010,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2011,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2012,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2013,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158 -2014,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2015,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2016,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2017,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2018,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2019,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,194 -2020,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 1990,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,45 1991,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,44 1992,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,43 @@ -7539,59 +2049,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,39 1998,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,39 1999,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,39 -2000,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2001,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2002,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2003,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2004,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2005,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2006,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2007,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2008,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2009,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2010,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2011,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2012,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2013,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2014,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2015,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2016,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2017,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2018,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2019,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2020,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2000,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2001,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2002,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2003,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2004,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2005,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2006,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2007,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2008,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2009,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2010,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2011,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2012,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2013,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2014,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2015,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2016,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2017,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2018,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2019,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2020,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2010,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2011,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2012,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2013,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2014,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2015,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2016,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2017,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2018,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2019,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2020,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 1990,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,35 1991,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,34 1992,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,36 @@ -7612,102 +2069,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12614 1998,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12630 1999,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12811 -2000,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11940 -2001,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11852 -2002,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11705 -2003,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11654 -2004,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11594 -2005,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11531 -2006,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11590 -2007,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11493 -2008,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11445 -2009,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11382 -2010,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11289 -2011,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11214 -2012,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11001 -2013,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11025 -2014,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10942 -2015,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10864 -2016,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10739 -2017,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10626 -2018,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10596 -2019,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10564 -2020,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10463 -2010,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11370 -2011,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11302 -2012,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11091 -2013,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11122 -2014,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11054 -2015,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10975 -2016,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10857 -2017,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10743 -2018,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10726 -2019,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10696 -2020,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10602 -2010,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2001,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2002,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2003,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2004,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2005,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2006,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2007,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2008,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2009,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2010,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2011,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2012,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2013,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2014,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2015,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,195 -2016,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 -2017,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,202 -2018,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,223 -2019,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,227 -2020,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,228 -2010,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14008 -2011,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13883 -2012,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13664 -2013,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13586 -2014,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13378 -2015,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13291 -2016,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13036 -2017,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12897 -2018,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12806 -2019,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12523 -2020,geoId/01025,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12273 1990,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15527 1991,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15598 1992,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15662 @@ -7718,27 +2079,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15779 1998,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15676 1999,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15717 -2000,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15474 -2001,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15344 -2002,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15135 -2003,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14988 -2004,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14890 -2005,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14738 -2006,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14635 -2007,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14408 -2008,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14285 -2009,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14080 -2010,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13881 -2011,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13741 -2012,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13514 -2013,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13426 -2014,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13216 -2015,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13120 -2016,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12865 -2017,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12726 -2018,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12605 -2019,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12325 -2020,geoId/01025,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12068 1990,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27 1991,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27 1992,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,28 @@ -7749,38 +2089,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,46 1998,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,49 1999,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,50 -2000,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,254 -2001,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,278 -2002,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,293 -2003,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,278 -2004,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,309 -2005,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,338 -2006,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,354 -2007,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,365 -2008,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,379 -2009,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,405 -2010,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,397 -2011,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,389 -2012,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,409 -2013,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,403 -2014,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,413 -2015,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,435 -2016,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,398 -2017,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,410 -2018,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,395 -2019,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,429 -2020,geoId/01027,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,411 -2010,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 1990,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -7791,59 +2099,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01027,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 1990,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01027,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -7864,91 +2119,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1998,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1999,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 -2000,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2003,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2004,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2006,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2008,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2009,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2019,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2020,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01027,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2010,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01027,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01027,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 1990,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,25 1991,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,25 1992,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,26 @@ -7959,38 +2129,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,43 1998,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,47 1999,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,48 -2000,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,229 -2001,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,253 -2002,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,268 -2003,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,251 -2004,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,286 -2005,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,312 -2006,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,333 -2007,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,342 -2008,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,357 -2009,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,378 -2010,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,371 -2011,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,363 -2012,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,376 -2013,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,372 -2014,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,379 -2015,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,395 -2016,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,356 -2017,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,369 -2018,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,348 -2019,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,373 -2020,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,354 -2010,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,372 -2011,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,364 -2012,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,378 -2013,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,374 -2014,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,381 -2015,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,397 -2016,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,357 -2017,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,371 -2018,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,351 -2019,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,376 -2020,geoId/01027,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,358 1990,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13254 1991,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13265 1992,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13358 @@ -8001,38 +2139,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13795 1998,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13917 1999,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13962 -2000,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14009 -2001,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14020 -2002,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13964 -2003,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13925 -2004,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13812 -2005,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13739 -2006,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13699 -2007,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13720 -2008,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13782 -2009,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13601 -2010,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13500 -2011,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13298 -2012,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13024 -2013,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13003 -2014,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13030 -2015,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12980 -2016,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12995 -2017,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12945 -2018,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12906 -2019,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12836 -2020,geoId/01027,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12701 -2010,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2011,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2012,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2013,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2014,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2015,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158 -2016,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2017,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2018,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2019,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2020,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 1990,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23 1991,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22 1992,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 @@ -8043,59 +2149,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 1998,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 1999,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 -2000,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2001,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2002,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2003,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2004,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2005,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2006,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2007,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2008,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2009,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2010,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2011,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2012,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2013,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2014,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2015,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2016,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2017,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2018,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2020,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2000,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2004,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2006,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2007,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2008,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2011,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2012,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2013,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2014,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2015,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2016,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2017,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2018,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2019,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2020,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 1990,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1991,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1992,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 @@ -8116,102 +2169,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2422 1998,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2471 1999,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2497 -2000,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2213 -2001,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2195 -2002,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2199 -2003,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2204 -2004,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2145 -2005,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2167 -2006,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2109 -2007,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2108 -2008,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2169 -2009,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2131 -2010,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2030 -2011,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1992 -2012,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1912 -2013,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1926 -2014,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1921 -2015,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1904 -2016,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1876 -2017,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1840 -2018,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1828 -2019,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1793 -2020,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1776 -2010,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2152 -2011,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2125 -2012,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2032 -2013,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2050 -2014,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2064 -2015,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2054 -2016,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2018 -2017,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1963 -2018,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1976 -2019,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1955 -2020,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1943 -2010,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2001,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2002,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2003,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2004,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2005,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2006,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172 -2007,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2008,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2009,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2010,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2011,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2012,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,209 -2013,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,225 -2014,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,239 -2015,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,250 -2016,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,247 -2017,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,230 -2018,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,246 -2019,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,271 -2020,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262 -2010,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11376 -2011,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11191 -2012,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11001 -2013,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10973 -2014,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10994 -2015,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10970 -2016,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11011 -2017,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10991 -2018,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10970 -2019,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10927 -2020,geoId/01027,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10811 1990,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11057 1991,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11028 1992,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11092 @@ -8222,27 +2179,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11336 1998,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11410 1999,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11425 -2000,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11640 -2001,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11665 -2002,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11592 -2003,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11522 -2004,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11460 -2005,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11352 -2006,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11349 -2007,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11352 -2008,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11336 -2009,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11179 -2010,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11173 -2011,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10986 -2012,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10806 -2013,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10757 -2014,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10770 -2015,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10729 -2016,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10775 -2017,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10776 -2018,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10740 -2019,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10676 -2020,geoId/01027,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10565 1990,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37 1991,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,41 1992,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,41 @@ -8253,38 +2189,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,73 1998,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78 1999,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,89 -2000,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,201 -2001,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,211 -2002,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,238 -2003,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,254 -2004,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,249 -2005,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,261 -2006,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,292 -2007,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,275 -2008,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,292 -2009,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,321 -2010,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,312 -2011,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,318 -2012,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,310 -2013,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,333 -2014,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,353 -2015,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,355 -2016,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,357 -2017,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,355 -2018,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,382 -2019,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,392 -2020,geoId/01029,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,416 -2010,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 1990,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1992,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -8295,59 +2199,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1998,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 -2000,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01029,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 1990,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01029,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -8368,91 +2219,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 1998,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1999,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 -2000,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01029,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2010,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01029,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01029,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 1990,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,34 1991,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,35 1992,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,35 @@ -8463,38 +2229,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,64 1998,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,70 1999,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,76 -2000,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,195 -2001,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,205 -2002,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,230 -2003,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,246 -2004,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,238 -2005,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243 -2006,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,274 -2007,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,254 -2008,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270 -2009,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,297 -2010,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,288 -2011,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,290 -2012,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,282 -2013,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,299 -2014,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,321 -2015,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,322 -2016,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,319 -2017,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,314 -2018,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,331 -2019,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,344 -2020,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,359 -2010,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,294 -2011,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,297 -2012,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,289 -2013,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,306 -2014,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,327 -2015,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,330 -2016,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,327 -2017,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,324 -2018,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,343 -2019,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,353 -2020,geoId/01029,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,372 1990,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12696 1991,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12692 1992,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12900 @@ -8505,38 +2239,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14017 1998,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14205 1999,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14367 -2000,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13971 -2001,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14011 -2002,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14178 -2003,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14184 -2004,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14090 -2005,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14107 -2006,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14246 -2007,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14524 -2008,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14582 -2009,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14597 -2010,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14692 -2011,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14610 -2012,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14579 -2013,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14641 -2014,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14676 -2015,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14568 -2016,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14514 -2017,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14569 -2018,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14665 -2019,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14560 -2020,geoId/01029,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14551 -2010,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2011,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2012,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2013,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2014,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2015,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2016,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2017,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2018,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2019,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2020,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 1990,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20 1991,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20 1992,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22 @@ -8547,59 +2249,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 1998,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20 1999,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 -2000,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2001,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2002,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2003,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2004,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2005,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2006,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2007,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2008,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2009,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2010,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2011,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2012,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2013,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2014,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2015,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2016,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2017,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2018,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2019,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2020,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2000,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2001,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2002,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2004,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2006,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2007,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2008,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2009,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2011,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2012,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2013,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2015,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2017,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2018,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2019,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2020,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 1990,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1991,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1992,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 @@ -8620,102 +2269,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,714 1998,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,731 1999,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,749 -2000,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,517 -2001,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,523 -2002,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,558 -2003,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,560 -2004,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,539 -2005,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,520 -2006,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,526 -2007,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,542 -2008,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,514 -2009,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,512 -2010,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,501 -2011,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,504 -2012,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,504 -2013,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,498 -2014,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,497 -2015,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,478 -2016,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,472 -2017,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,453 -2018,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,426 -2019,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,414 -2020,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,422 -2010,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,582 -2011,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,590 -2012,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,601 -2013,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,594 -2014,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,602 -2015,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,581 -2016,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,566 -2017,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,538 -2018,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,528 -2019,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,514 -2020,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,543 -2010,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2001,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2002,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2003,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2004,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2005,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2006,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2007,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2008,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2009,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2010,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2011,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2012,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2013,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2014,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2015,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2016,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172 -2017,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2018,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2019,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2020,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2010,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14112 -2011,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14012 -2012,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13987 -2013,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14054 -2014,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14085 -2015,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13994 -2016,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13943 -2017,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14012 -2018,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14136 -2019,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14032 -2020,geoId/01029,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14023 1990,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12073 1991,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12060 1992,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12256 @@ -8726,27 +2279,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13265 1998,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13436 1999,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13578 -2000,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13299 -2001,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13332 -2002,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13461 -2003,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13457 -2004,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13386 -2005,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13406 -2006,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13529 -2007,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13787 -2008,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13864 -2009,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13878 -2010,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13977 -2011,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13876 -2012,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13839 -2013,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13903 -2014,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13929 -2015,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13832 -2016,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13779 -2017,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13850 -2018,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13961 -2019,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13870 -2020,geoId/01029,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13836 1990,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,471 1991,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,459 1992,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,496 @@ -8757,38 +2289,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,744 1998,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,803 1999,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,852 -2000,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1186 -2001,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1289 -2002,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1411 -2003,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1608 -2004,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1741 -2005,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1953 -2006,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2111 -2007,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2434 -2008,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2768 -2009,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2949 -2010,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3208 -2011,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3168 -2012,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3196 -2013,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3203 -2014,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3210 -2015,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3344 -2016,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3577 -2017,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3772 -2018,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4032 -2019,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4248 -2020,geoId/01031,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4423 -2010,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2011,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2012,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,211 -2013,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2014,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2015,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2016,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2017,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,238 -2018,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,260 -2019,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,271 -2020,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262 1990,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1991,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1992,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 @@ -8799,59 +2299,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1998,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1999,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 -2000,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2002,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2003,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2004,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2005,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2006,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2007,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2008,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2009,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2010,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2011,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2012,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2013,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2014,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2015,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2016,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2017,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2018,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2019,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158 -2020,geoId/01031,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2000,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2009,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2019,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2010,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2011,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2012,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2013,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2014,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2015,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2016,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2017,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2018,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2019,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2020,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 1990,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 1991,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1992,geoId/01031,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 @@ -8872,91 +2319,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,37 1998,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,37 1999,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,43 -2000,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2001,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2002,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2003,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2004,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2005,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2006,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2007,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158 -2008,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2009,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2010,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2011,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2012,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,195 -2013,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 -2014,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2015,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,234 -2016,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2017,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,279 -2018,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,297 -2019,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,304 -2020,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,321 -2010,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2011,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,252 -2012,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,259 -2013,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,291 -2014,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,288 -2015,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,311 -2016,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,339 -2017,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,373 -2018,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,400 -2019,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,401 -2020,geoId/01031,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,420 -2010,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,194 -2011,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2012,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,167 -2013,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2014,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2015,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2016,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172 -2017,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2018,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,167 -2019,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2020,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2000,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2002,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2003,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2004,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2005,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2006,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2007,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2008,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2009,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2010,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 -2011,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2012,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2013,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2014,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2015,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,154 -2016,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2017,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2018,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2019,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2020,geoId/01031,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2000,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2001,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2002,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2003,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2004,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2005,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2006,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2007,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2008,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2009,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2010,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2011,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2012,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158 -2013,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2014,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2015,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2016,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2017,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,205 -2018,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,228 -2019,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2020,geoId/01031,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 1990,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,422 1991,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,419 1992,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,447 @@ -8967,38 +2329,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,678 1998,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,739 1999,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,782 -2000,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1018 -2001,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1078 -2002,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1161 -2003,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1310 -2004,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1406 -2005,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1552 -2006,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1648 -2007,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1928 -2008,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2185 -2009,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2326 -2010,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2546 -2011,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2532 -2012,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2552 -2013,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2551 -2014,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2537 -2015,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2604 -2016,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2814 -2017,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2982 -2018,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3177 -2019,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3376 -2020,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3523 -2010,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2676 -2011,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2664 -2012,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2687 -2013,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2685 -2014,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2679 -2015,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2775 -2016,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2983 -2017,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3157 -2018,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3375 -2019,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3560 -2020,geoId/01031,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3716 1990,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39785 1991,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39934 1992,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40629 @@ -9009,38 +2339,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,41297 1998,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,41419 1999,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,41276 -2000,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,42394 -2001,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,42427 -2002,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,42519 -2003,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,42707 -2004,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,43312 -2005,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,43651 -2006,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,44117 -2007,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,45024 -2008,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,45748 -2009,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,46491 -2010,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,46996 -2011,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47281 -2012,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47963 -2013,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47506 -2014,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47483 -2015,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47660 -2016,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47704 -2017,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48171 -2018,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48065 -2019,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48391 -2020,geoId/01031,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48807 -2010,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1061 -2011,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1090 -2012,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1090 -2013,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1046 -2014,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1060 -2015,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1054 -2016,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1069 -2017,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1084 -2018,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1094 -2019,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1100 -2020,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1109 1990,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,159 1991,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,159 1992,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,154 @@ -9051,59 +2349,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,139 1998,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,136 1999,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,135 -2000,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,391 -2001,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,421 -2002,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,422 -2003,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,448 -2004,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,464 -2005,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,495 -2006,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,520 -2007,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,510 -2008,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,554 -2009,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,579 -2010,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,609 -2011,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,623 -2012,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,597 -2013,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,568 -2014,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,593 -2015,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,590 -2016,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,575 -2017,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,582 -2018,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,576 -2019,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,573 -2020,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,582 -2000,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,418 -2001,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,461 -2002,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,461 -2003,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,478 -2004,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,509 -2005,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,529 -2006,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,531 -2007,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,549 -2008,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,578 -2009,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,627 -2010,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,641 -2011,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,685 -2012,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,744 -2013,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,745 -2014,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,759 -2015,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,759 -2016,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,767 -2017,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,798 -2018,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,852 -2019,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,847 -2020,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,840 -2010,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,907 -2011,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,960 -2012,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1056 -2013,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1036 -2014,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1063 -2015,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1063 -2016,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1105 -2017,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1175 -2018,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1225 -2019,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1249 -2020,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1259 1990,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,308 1991,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,321 1992,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,326 @@ -9124,102 +2369,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7665 1998,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7749 1999,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7786 -2000,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7961 -2001,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7881 -2002,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7835 -2003,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7818 -2004,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7863 -2005,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7862 -2006,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7944 -2007,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8135 -2008,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8204 -2009,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8232 -2010,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8325 -2011,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8489 -2012,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8657 -2013,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8647 -2014,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8682 -2015,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8777 -2016,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8825 -2017,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8928 -2018,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8934 -2019,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8987 -2020,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9058 -2010,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8732 -2011,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8915 -2012,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9131 -2013,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9087 -2014,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9175 -2015,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9274 -2016,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9377 -2017,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9504 -2018,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9531 -2019,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9636 -2020,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9730 -2010,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2011,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2012,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2013,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2014,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2015,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2016,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2017,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2018,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2019,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2020,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 -2000,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2001,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2002,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2003,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2004,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2005,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2006,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2007,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2008,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2009,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2010,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2011,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2013,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2014,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2015,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2016,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2017,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2019,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2020,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2000,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,581 -2001,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,619 -2002,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,632 -2003,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,684 -2004,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,753 -2005,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,788 -2006,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,824 -2007,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,853 -2008,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,907 -2009,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,963 -2010,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1033 -2011,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1078 -2012,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1163 -2013,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1123 -2014,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1154 -2015,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1169 -2016,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1273 -2017,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1319 -2018,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1371 -2019,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1452 -2020,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1479 -2010,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37291 -2011,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37343 -2012,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37790 -2013,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37397 -2014,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37275 -2015,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37369 -2016,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37353 -2017,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37669 -2018,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37510 -2019,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37794 -2020,geoId/01031,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38106 1990,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,32400 1991,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,32459 1992,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,32971 @@ -9230,27 +2379,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,33130 1998,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,33167 1999,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,32988 -2000,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33001 -2001,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33002 -2002,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33126 -2003,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33238 -2004,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33685 -2005,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33939 -2006,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34253 -2007,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34934 -2008,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35456 -2009,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36034 -2010,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36341 -2011,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36358 -2012,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36744 -2013,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36371 -2014,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36236 -2015,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36302 -2016,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36195 -2017,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36466 -2018,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36264 -2019,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36458 -2020,geoId/01031,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36768 1990,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,187 1991,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,191 1992,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,188 @@ -9261,38 +2389,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,292 1998,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,298 1999,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,329 -2000,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,617 -2001,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,673 -2002,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,704 -2003,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,727 -2004,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,819 -2005,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,865 -2006,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,961 -2007,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1006 -2008,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1063 -2009,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1065 -2010,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1110 -2011,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1174 -2012,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1255 -2013,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1263 -2014,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1242 -2015,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1322 -2016,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1415 -2017,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1484 -2018,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1589 -2019,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1704 -2020,geoId/01033,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1763 -2010,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2011,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2012,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2013,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2014,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2015,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2016,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2017,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2018,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2019,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2020,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 1990,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1991,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1992,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -9303,59 +2399,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1998,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1999,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 -2000,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2012,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2013,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2018,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2020,geoId/01033,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2000,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 1990,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1991,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1992,geoId/01033,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 @@ -9376,91 +2419,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,32 1998,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,30 1999,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,34 -2000,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2001,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2002,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2003,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2004,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2005,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2006,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2007,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2008,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2009,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2010,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2011,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2012,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2013,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128 -2014,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2015,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2016,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2017,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2018,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2019,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2020,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2010,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2011,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2012,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2013,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2014,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2015,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2016,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2017,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2018,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2019,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2020,geoId/01033,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2010,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01033,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2002,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2004,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2005,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2006,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2007,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2008,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2009,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2010,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2011,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2012,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2013,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2015,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2016,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2017,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2018,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2019,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2020,geoId/01033,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 1990,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,156 1991,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,155 1992,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,158 @@ -9471,38 +2429,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,251 1998,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,264 1999,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,282 -2000,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,530 -2001,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,577 -2002,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,607 -2003,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,628 -2004,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,711 -2005,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,733 -2006,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,809 -2007,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,846 -2008,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,889 -2009,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,881 -2010,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,927 -2011,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,972 -2012,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1030 -2013,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1010 -2014,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1009 -2015,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1082 -2016,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1156 -2017,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1242 -2018,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1333 -2019,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1415 -2020,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1459 -2010,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,973 -2011,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1017 -2012,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1076 -2013,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1074 -2014,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1062 -2015,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1144 -2016,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1232 -2017,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1318 -2018,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1407 -2019,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1494 -2020,geoId/01033,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1537 1990,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,51629 1991,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52062 1992,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52091 @@ -9513,38 +2439,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52802 1998,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52626 1999,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52223 -2000,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,54380 -2001,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,54120 -2002,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53832 -2003,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53552 -2004,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53561 -2005,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53494 -2006,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53452 -2007,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53480 -2008,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53410 -2009,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53361 -2010,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53417 -2011,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53371 -2012,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53323 -2013,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53281 -2014,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53242 -2015,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53117 -2016,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53068 -2017,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53198 -2018,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53381 -2019,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53537 -2020,geoId/01033,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53648 -2010,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,600 -2011,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,635 -2012,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,639 -2013,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,646 -2014,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,667 -2015,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,679 -2016,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,684 -2017,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,694 -2018,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,686 -2019,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,717 -2020,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,742 1990,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,133 1991,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,130 1992,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,124 @@ -9555,59 +2449,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,104 1998,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,103 1999,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,96 -2000,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,195 -2001,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2002,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,205 -2003,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,226 -2004,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,223 -2005,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,230 -2006,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,231 -2007,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,232 -2008,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,248 -2009,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,254 -2010,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,266 -2011,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2012,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270 -2013,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,284 -2014,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,285 -2015,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,281 -2016,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,297 -2017,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,296 -2018,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,301 -2019,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,312 -2020,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,325 -2000,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2001,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2002,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2003,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2004,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172 -2005,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2006,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2007,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,194 -2008,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2009,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2010,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,230 -2011,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,244 -2012,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,252 -2013,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,261 -2014,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,274 -2015,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,284 -2016,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,313 -2017,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,338 -2018,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,345 -2019,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,370 -2020,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,370 -2010,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,303 -2011,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,308 -2012,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,326 -2013,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,357 -2014,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,361 -2015,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,365 -2016,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,407 -2017,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,438 -2018,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,450 -2019,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,465 -2020,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,474 1990,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,98 1991,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,96 1992,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,98 @@ -9628,102 +2469,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9408 1998,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9436 1999,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9458 -2000,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9138 -2001,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9054 -2002,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8974 -2003,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8823 -2004,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8796 -2005,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8724 -2006,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8647 -2007,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8670 -2008,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8684 -2009,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8675 -2010,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8757 -2011,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8719 -2012,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8770 -2013,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8764 -2014,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8638 -2015,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8684 -2016,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8599 -2017,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8745 -2018,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8739 -2019,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8815 -2020,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8872 -2010,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9138 -2011,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9137 -2012,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9205 -2013,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9200 -2014,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9140 -2015,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9201 -2016,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9122 -2017,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9276 -2018,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9277 -2019,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9370 -2020,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9476 -2010,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2011,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2015,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2016,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2017,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2019,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2020,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2000,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2000,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,416 -2001,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,460 -2002,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,470 -2003,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,502 -2004,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,525 -2005,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,556 -2006,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,592 -2007,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,621 -2008,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,651 -2009,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,717 -2010,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,758 -2011,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,805 -2012,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,839 -2013,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,859 -2014,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,921 -2015,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,961 -2016,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,959 -2017,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,976 -2018,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1000 -2019,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1010 -2020,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1075 -2010,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44110 -2011,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44089 -2012,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43968 -2013,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43910 -2014,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43951 -2015,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43798 -2016,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43776 -2017,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43739 -2018,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43911 -2019,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43961 -2020,geoId/01033,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43999 1990,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,42766 1991,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,43109 1992,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,43046 @@ -9734,27 +2479,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,43181 1998,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,42976 1999,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,42556 -2000,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44489 -2001,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44243 -2002,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44011 -2003,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43831 -2004,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43834 -2005,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43792 -2006,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43778 -2007,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43752 -2008,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43604 -2009,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43488 -2010,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43392 -2011,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43324 -2012,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43175 -2013,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43092 -2014,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43092 -2015,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42882 -2016,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42875 -2017,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42815 -2018,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42962 -2019,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43000 -2020,geoId/01033,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42977 1990,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,81 1991,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,87 1992,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,74 @@ -9765,38 +2489,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,95 1998,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,106 1999,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,115 -2000,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,102 -2001,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,99 -2002,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,108 -2003,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,114 -2004,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,117 -2005,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,138 -2006,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,137 -2007,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,147 -2008,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,157 -2009,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,159 -2010,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,164 -2011,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,188 -2012,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,201 -2013,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,213 -2014,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,207 -2015,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,228 -2016,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,242 -2017,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,245 -2018,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,272 -2019,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,289 -2020,geoId/01035,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,293 -2010,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 1990,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1991,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1992,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -9807,59 +2499,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1998,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1999,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 -2000,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01035,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 1990,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01035,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -9880,91 +2519,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,33 1998,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,41 1999,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,42 -2000,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2001,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2002,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2003,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2004,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2005,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2006,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2007,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2008,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2009,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2010,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2011,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2012,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2013,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2014,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2015,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2016,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2017,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2018,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2019,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2020,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2010,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2011,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2012,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2013,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2014,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2015,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2016,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2017,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2019,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2020,geoId/01035,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2010,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01035,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2006,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2009,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01035,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 1990,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,39 1991,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38 1992,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38 @@ -9975,38 +2529,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,59 1998,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,63 1999,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,69 -2000,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2001,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2002,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2003,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2004,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2005,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2006,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2007,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2008,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2009,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2010,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2011,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2012,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2013,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2014,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2015,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2016,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,154 -2017,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2018,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2019,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2020,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 -2010,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2011,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2012,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2013,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2014,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2015,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158 -2016,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2017,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2018,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2019,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,194 -2020,geoId/01035,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 1990,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13951 1991,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14188 1992,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14059 @@ -10017,38 +2539,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13937 1998,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13757 1999,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13613 -2000,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13933 -2001,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13841 -2002,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13685 -2003,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13471 -2004,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13313 -2005,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13283 -2006,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13466 -2007,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13294 -2008,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13231 -2009,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13115 -2010,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13070 -2011,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13006 -2012,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12842 -2013,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12695 -2014,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12467 -2015,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12449 -2016,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12253 -2017,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12186 -2018,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11992 -2019,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11766 -2020,geoId/01035,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11558 -2010,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2011,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2012,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2013,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2014,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2015,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2016,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2017,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2018,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2019,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2020,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 1990,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,40 1991,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,40 1992,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,40 @@ -10059,59 +2549,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27 1998,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,25 1999,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23 -2000,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2001,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2002,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2003,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2004,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2005,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2006,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2007,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2008,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2009,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2010,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2012,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2013,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2014,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2015,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2016,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2017,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2018,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2019,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2020,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2000,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2002,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2005,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2006,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2007,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2019,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2012,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2014,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2015,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2016,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2017,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2018,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2019,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2020,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 1990,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1991,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1992,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 @@ -10132,102 +2569,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6102 1998,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6049 1999,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6022 -2000,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6106 -2001,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6156 -2002,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6109 -2003,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6035 -2004,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5996 -2005,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6086 -2006,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6201 -2007,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6129 -2008,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6168 -2009,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6107 -2010,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6142 -2011,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6146 -2012,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6006 -2013,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5904 -2014,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5801 -2015,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5886 -2016,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5825 -2017,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5749 -2018,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5587 -2019,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5469 -2020,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5384 -2010,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6200 -2011,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6208 -2012,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6074 -2013,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5976 -2014,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5883 -2015,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5958 -2016,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5911 -2017,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5820 -2018,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5656 -2019,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5540 -2020,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5468 -2010,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2001,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2002,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2003,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2004,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2005,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2006,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2007,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2008,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2009,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2010,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2011,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2012,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2013,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2014,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2015,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2016,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2017,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2018,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2019,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2020,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2010,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6852 -2011,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6776 -2012,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6757 -2013,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6705 -2014,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6572 -2015,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6473 -2016,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6338 -2017,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6330 -2018,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6302 -2019,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6201 -2020,geoId/01035,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6072 1990,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8025 1991,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8149 1992,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8044 @@ -10238,27 +2579,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7795 1998,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7670 1999,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7555 -2000,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7699 -2001,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7557 -2002,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7444 -2003,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7301 -2004,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7176 -2005,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7054 -2006,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7109 -2007,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7005 -2008,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6898 -2009,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6839 -2010,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6759 -2011,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6660 -2012,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6633 -2013,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6576 -2014,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6449 -2015,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6355 -2016,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6208 -2017,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6201 -2018,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6171 -2019,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6072 -2020,geoId/01035,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5935 1990,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18 1991,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19 1992,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19 @@ -10269,38 +2589,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,28 1998,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29 1999,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29 -2000,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,153 -2001,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,156 -2002,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,160 -2003,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,165 -2004,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,179 -2005,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,194 -2006,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,209 -2007,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,207 -2008,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,211 -2009,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,225 -2010,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,227 -2011,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,225 -2012,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,218 -2013,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,229 -2014,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,235 -2015,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,240 -2016,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,237 -2017,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,252 -2018,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,269 -2019,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,280 -2020,geoId/01037,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,270 -2010,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2019,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 1990,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -10311,59 +2599,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01037,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2000,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 1990,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01037,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -10384,91 +2619,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1998,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 1999,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 -2000,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2004,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2005,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2006,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2007,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2008,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2009,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2011,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2015,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2017,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2010,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2011,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2012,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2014,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2016,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2017,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2018,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2019,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2020,geoId/01037,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2010,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01037,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2010,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2020,geoId/01037,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 1990,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 1991,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 1992,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 @@ -10479,38 +2629,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 1998,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 1999,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23 -2000,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2001,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128 -2002,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2003,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2004,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2005,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2006,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2007,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2008,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2009,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2010,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128 -2011,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2012,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2013,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2014,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2015,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2016,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2017,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2018,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2019,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2020,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2010,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2011,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2012,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2013,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2014,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2015,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2016,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2017,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2018,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2019,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2020,geoId/01037,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 1990,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11042 1991,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11091 1992,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11052 @@ -10521,38 +2639,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11557 1998,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11608 1999,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11683 -2000,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11691 -2001,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11692 -2002,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11580 -2003,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11567 -2004,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11381 -2005,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11273 -2006,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11242 -2007,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11232 -2008,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11282 -2009,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11185 -2010,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11552 -2011,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11258 -2012,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11125 -2013,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11023 -2014,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10802 -2015,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10695 -2016,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10575 -2017,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10472 -2018,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10350 -2019,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10397 -2020,geoId/01037,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10380 -2010,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2011,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2012,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2013,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2014,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2015,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2016,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2017,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2018,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2019,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2020,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 1990,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,34 1991,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,33 1992,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,30 @@ -10563,59 +2649,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 1998,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23 1999,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23 -2000,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2001,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2002,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2003,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2004,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2005,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2006,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2007,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2008,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2009,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2010,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2011,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2012,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2013,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2014,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2017,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2020,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2000,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 1990,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1991,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1992,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 @@ -10636,102 +2669,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4195 1998,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4234 1999,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4301 -2000,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3945 -2001,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3954 -2002,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3917 -2003,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3860 -2004,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3801 -2005,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3723 -2006,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3661 -2007,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3614 -2008,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3666 -2009,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3527 -2010,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3703 -2011,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3619 -2012,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3549 -2013,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3554 -2014,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3474 -2015,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3364 -2016,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3331 -2017,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3269 -2018,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3238 -2019,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3257 -2020,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3201 -2010,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3748 -2011,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3663 -2012,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3598 -2013,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3603 -2014,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3536 -2015,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3428 -2016,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3383 -2017,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3316 -2018,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3292 -2019,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3318 -2020,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3260 -2010,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2001,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2002,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2003,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2004,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2005,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2006,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2007,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2008,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2009,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2010,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2011,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2012,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2013,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2014,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2015,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2016,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2017,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2018,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2019,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2020,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2010,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7789 -2011,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7569 -2012,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7510 -2013,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7399 -2014,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7255 -2015,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7262 -2016,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7174 -2017,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7141 -2018,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7051 -2019,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7068 -2020,geoId/01037,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7098 1990,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7233 1991,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7226 1992,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7182 @@ -10742,27 +2679,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7334 1998,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7346 1999,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7354 -2000,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7632 -2001,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7626 -2002,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7553 -2003,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7593 -2004,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7455 -2005,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7433 -2006,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7447 -2007,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7481 -2008,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7480 -2009,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7519 -2010,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7704 -2011,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7483 -2012,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7406 -2013,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7295 -2014,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7151 -2015,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7136 -2016,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7072 -2017,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7025 -2018,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6932 -2019,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6950 -2020,geoId/01037,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6982 1990,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,130 1991,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,128 1992,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,137 @@ -10773,38 +2689,7 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,196 1998,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,212 1999,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,225 -2000,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,292 -2001,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,308 -2002,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,319 2003,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,349 -2004,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,348 -2005,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,411 -2006,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,459 -2007,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,435 -2008,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,457 -2009,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,479 -2010,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,495 -2011,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,525 -2012,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,555 -2013,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,558 -2014,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,563 -2015,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,586 -2016,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,617 -2017,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,616 -2018,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,657 -2019,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,690 -2020,geoId/01039,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,707 -2010,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2012,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2015,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2020,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 1990,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1991,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1992,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 @@ -10815,59 +2700,8 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1998,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1999,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 -2000,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 2003,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2007,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2008,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2009,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2017,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01039,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2000,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 2003,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 1990,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01039,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -10888,91 +2722,9 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1998,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 1999,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 -2000,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2001,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2002,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 2003,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2004,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2005,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2007,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2008,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2009,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2010,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2011,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2012,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2013,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2014,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2015,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2016,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2017,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2018,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2019,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2020,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2010,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2011,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2012,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2013,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2014,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2015,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2016,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2017,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2018,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2019,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2020,geoId/01039,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2010,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 2003,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01039,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 2003,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01039,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 1990,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,118 1991,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,119 1992,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,123 @@ -10983,38 +2735,7 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,182 1998,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,193 1999,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,209 -2000,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2001,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262 -2002,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,275 2003,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,300 -2004,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,299 -2005,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,346 -2006,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,382 -2007,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,356 -2008,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,373 -2009,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,391 -2010,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,406 -2011,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,416 -2012,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,448 -2013,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,459 -2014,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,459 -2015,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,465 -2016,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,476 -2017,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,469 -2018,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,503 -2019,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,534 -2020,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,539 -2010,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,412 -2011,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,430 -2012,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,466 -2013,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,474 -2014,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,476 -2015,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,483 -2016,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,497 -2017,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,496 -2018,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,535 -2019,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,564 -2020,geoId/01039,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,572 1990,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36379 1991,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36435 1992,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36711 @@ -11025,38 +2746,7 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37236 1998,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37249 1999,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37362 -2000,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37222 -2001,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36761 -2002,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36582 2003,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36511 -2004,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36458 -2005,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36793 -2006,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36982 -2007,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37196 -2008,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37088 -2009,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37169 -2010,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37315 -2011,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37498 -2012,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37254 -2013,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37262 -2014,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37203 -2015,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36980 -2016,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36783 -2017,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36461 -2018,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36336 -2019,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36392 -2020,geoId/01039,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36223 -2010,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,409 -2011,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,440 -2012,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,432 -2013,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,429 -2014,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,430 -2015,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,449 -2016,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,442 -2017,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,447 -2018,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,457 -2019,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,470 -2020,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,457 1990,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,70 1991,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,70 1992,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,70 @@ -11067,59 +2757,8 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,62 1998,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,61 1999,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,60 -2000,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2001,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2002,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 2003,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2004,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2005,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2006,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2007,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2008,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2009,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2010,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2011,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2012,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2013,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2014,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2015,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2016,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2017,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2018,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,223 -2019,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,234 -2020,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237 -2000,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2001,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2002,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 2003,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2004,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2005,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2006,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2007,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2008,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134 -2009,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2010,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2011,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2012,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2013,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2014,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2015,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,167 -2016,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2017,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2018,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158 -2019,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 -2020,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2010,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2011,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2012,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2013,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,206 -2014,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,206 -2015,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2016,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,212 -2017,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2018,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,209 -2019,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,219 -2020,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,225 1990,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,48 1991,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,49 1992,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,47 @@ -11140,102 +2779,9 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5207 1998,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5252 1999,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5313 -2000,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4605 -2001,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4534 -2002,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4497 2003,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4510 -2004,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4485 -2005,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4531 -2006,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4604 -2007,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4669 -2008,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4658 -2009,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4687 -2010,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4707 -2011,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4691 -2012,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4675 -2013,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4727 -2014,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4742 -2015,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4747 -2016,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4690 -2017,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4562 -2018,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4582 -2019,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4618 -2020,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4620 -2010,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4958 -2011,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4947 -2012,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4940 -2013,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4990 -2014,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5007 -2015,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5020 -2016,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4967 -2017,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4855 -2018,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4891 -2019,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4947 -2020,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4949 -2010,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 2003,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2001,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2002,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,247 2003,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,285 -2004,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,313 -2005,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,336 -2006,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,365 -2007,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,394 -2008,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,422 -2009,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,457 -2010,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,482 -2011,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,513 -2012,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,519 -2013,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,516 -2014,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,525 -2015,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,528 -2016,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,531 -2017,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,553 -2018,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,582 -2019,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,590 -2020,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,581 -2010,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32238 -2011,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32423 -2012,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32183 -2013,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32147 -2014,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32073 -2015,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31818 -2016,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31693 -2017,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31489 -2018,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31355 -2019,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31335 -2020,geoId/01039,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31162 1990,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,31493 1991,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,31501 1992,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,31695 @@ -11246,27 +2792,7 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,31914 1998,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,31879 1999,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,31934 -2000,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32171 -2001,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31741 -2002,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31576 2003,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31436 -2004,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31369 -2005,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31622 -2006,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31697 -2007,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31826 -2008,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31687 -2009,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31690 -2010,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31773 -2011,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31931 -2012,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31691 -2013,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31654 -2014,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31575 -2015,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31320 -2016,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31187 -2017,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30964 -2018,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30789 -2019,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30774 -2020,geoId/01039,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30607 1990,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30 1991,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30 1992,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,31 @@ -11277,38 +2803,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,46 1998,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47 1999,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,54 -2000,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,87 -2001,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100 -2002,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,121 -2003,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,120 -2004,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,128 -2005,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,152 -2006,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,162 -2007,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,167 -2008,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,191 -2009,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,200 -2010,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,201 -2011,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,218 -2012,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,217 -2013,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,212 -2014,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,208 -2015,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,247 -2016,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,273 -2017,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,291 -2018,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,311 -2019,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,326 -2020,geoId/01041,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,330 -2010,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 1990,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1991,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 @@ -11319,59 +2813,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1998,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1999,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 -2000,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01041,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 1990,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1992,geoId/01041,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 @@ -11392,91 +2833,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 1998,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1999,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 -2000,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2019,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2010,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2019,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2020,geoId/01041,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2010,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01041,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01041,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 1990,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 1991,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,25 1992,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 @@ -11487,38 +2843,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,35 1998,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,42 1999,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,45 -2000,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2001,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2002,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2003,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2004,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2005,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2006,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134 -2007,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2008,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2009,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2010,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2011,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2012,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2013,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2014,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2015,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,206 -2016,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,223 -2017,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,230 -2018,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,248 -2019,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,247 -2020,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,258 -2010,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 -2011,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2012,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2013,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2014,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2015,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2016,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,232 -2017,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2018,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,258 -2019,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,265 -2020,geoId/01041,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,274 1990,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13568 1991,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13521 1992,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13480 @@ -11529,38 +2853,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13648 1998,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13579 1999,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13565 -2000,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13605 -2001,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13624 -2002,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13514 -2003,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13532 -2004,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13599 -2005,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13547 -2006,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13718 -2007,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13789 -2008,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13731 -2009,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13824 -2010,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13667 -2011,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13676 -2012,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13697 -2013,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13635 -2014,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13643 -2015,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13604 -2016,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13638 -2017,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13580 -2018,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13544 -2019,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13485 -2020,geoId/01041,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13351 -2010,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2011,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2012,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2013,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2014,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2015,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2016,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2017,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2018,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2019,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2020,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 1990,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 1991,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 1992,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 @@ -11571,59 +2863,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 1998,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,16 1999,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 -2000,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2001,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2002,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2003,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2004,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2005,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2006,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2007,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2008,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2009,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2010,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2011,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2012,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2013,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2014,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2015,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2016,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2017,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2018,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2019,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2020,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2000,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2002,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2003,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2004,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2005,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2006,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2007,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2008,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2009,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2010,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2011,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2012,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,214 -2013,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,202 -2014,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2015,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2016,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2017,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2018,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2019,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,167 -2020,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2010,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,221 -2011,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,241 -2012,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,236 -2013,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2014,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,214 -2015,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2016,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 -2017,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2018,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2019,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2020,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 1990,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1991,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1992,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 @@ -11644,102 +2883,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3763 1998,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3766 1999,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3786 -2000,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3388 -2001,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3391 -2002,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3328 -2003,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3311 -2004,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3319 -2005,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3327 -2006,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3377 -2007,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3447 -2008,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3351 -2009,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3339 -2010,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3227 -2011,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3332 -2012,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3335 -2013,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3301 -2014,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3240 -2015,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3270 -2016,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3274 -2017,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3236 -2018,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3211 -2019,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3268 -2020,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3246 -2010,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3338 -2011,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3450 -2012,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3454 -2013,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3431 -2014,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3373 -2015,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3419 -2016,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3423 -2017,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3382 -2018,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3361 -2019,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3439 -2020,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3425 -2010,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2001,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2002,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2003,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2004,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2005,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2006,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2007,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2008,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 -2009,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2010,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2011,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2012,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,214 -2013,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2014,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,221 -2015,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,236 -2016,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,238 -2017,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237 -2018,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,249 -2019,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,269 -2020,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,269 -2010,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10170 -2011,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10049 -2012,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10063 -2013,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10049 -2014,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10133 -2015,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10071 -2016,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10094 -2017,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10095 -2018,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10077 -2019,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9951 -2020,geoId/01041,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9836 1990,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10012 1991,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9945 1992,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9892 @@ -11750,27 +2893,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9855 1998,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9787 1999,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9747 -2000,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10067 -2001,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10057 -2002,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9989 -2003,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9985 -2004,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10021 -2005,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9918 -2006,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10005 -2007,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9981 -2008,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9985 -2009,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10050 -2010,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9991 -2011,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9849 -2012,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9862 -2013,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9844 -2014,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9926 -2015,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9856 -2016,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9876 -2017,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9874 -2018,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9838 -2019,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9697 -2020,geoId/01041,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9586 1990,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,272 1991,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,288 1992,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,315 @@ -11781,38 +2903,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,507 1998,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,532 1999,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,580 -2000,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1684 -2001,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1807 -2002,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1926 -2003,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2062 -2004,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2286 -2005,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2536 -2006,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2810 -2007,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2976 -2008,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3209 -2009,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3335 -2010,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3446 -2011,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3387 -2012,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3325 -2013,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3335 -2014,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3357 -2015,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3426 -2016,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3572 -2017,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3571 -2018,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3669 -2019,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3732 -2020,geoId/01043,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3835 -2010,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2011,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2012,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2013,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2014,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2015,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2016,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2017,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2018,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2019,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2020,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 1990,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1991,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 1992,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 @@ -11823,59 +2913,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18 1998,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1999,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18 -2000,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2001,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2002,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2003,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2004,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2005,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2006,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2007,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2008,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2009,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2010,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2011,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2012,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2014,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2015,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2016,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2017,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2018,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2020,geoId/01043,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2000,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2020,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 1990,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1991,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1992,geoId/01043,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 @@ -11896,91 +2933,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1998,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 1999,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 -2000,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2003,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2004,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2005,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2006,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2007,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2008,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2009,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2010,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2011,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2012,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2013,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2014,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2015,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2016,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2017,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2018,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2019,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2020,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2010,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2011,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2012,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2013,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2014,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2015,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2016,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2017,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2018,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2019,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2020,geoId/01043,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2010,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01043,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2000,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2004,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2005,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2006,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2007,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2008,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2009,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2010,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2011,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2012,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2013,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2014,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2016,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2017,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2018,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2019,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2020,geoId/01043,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 1990,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,253 1991,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,260 1992,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,286 @@ -11991,38 +2943,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,458 1998,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,487 1999,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,530 -2000,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1582 -2001,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1707 -2002,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1823 -2003,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1936 -2004,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2151 -2005,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2355 -2006,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2611 -2007,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2770 -2008,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2977 -2009,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3092 -2010,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3199 -2011,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3139 -2012,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3063 -2013,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3078 -2014,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3099 -2015,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3137 -2016,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3255 -2017,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3251 -2018,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3328 -2019,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3389 -2020,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3470 -2010,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3267 -2011,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3218 -2012,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3148 -2013,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3163 -2014,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3177 -2015,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3223 -2016,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3339 -2017,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3344 -2018,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3426 -2019,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3496 -2020,geoId/01043,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3587 1990,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,67519 1991,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,68281 1992,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,69277 @@ -12033,38 +2953,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,73579 1998,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,74412 1999,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,75081 -2000,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,75789 -2001,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,75608 -2002,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,75517 -2003,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,75595 -2004,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,75845 -2005,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,76156 -2006,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,76234 -2007,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,76600 -2008,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77064 -2009,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77016 -2010,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77010 -2011,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77032 -2012,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,76967 -2013,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77369 -2014,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77724 -2015,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78345 -2016,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78862 -2017,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79259 -2018,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79631 -2019,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79912 -2020,geoId/01043,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,80680 -2010,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,928 -2011,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,921 -2012,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,910 -2013,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,951 -2014,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,984 -2015,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,990 -2016,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1000 -2017,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1016 -2018,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1042 -2019,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1067 -2020,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1111 1990,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,130 1991,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,130 1992,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,132 @@ -12075,59 +2963,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,129 1998,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,129 1999,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,127 -2000,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,278 -2001,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,307 -2002,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,319 -2003,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,310 -2004,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,322 -2005,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,334 -2006,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,348 -2007,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,360 -2008,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,360 -2009,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,386 -2010,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,402 -2011,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,383 -2012,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,387 -2013,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,403 -2014,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,418 -2015,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,425 -2016,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,429 -2017,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,424 -2018,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,447 -2019,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,458 -2020,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,473 -2000,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2001,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2002,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2003,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,230 -2004,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2005,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,233 -2006,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,257 -2007,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,285 -2008,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,301 -2009,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,315 -2010,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,334 -2011,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,374 -2012,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,393 -2013,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,424 -2014,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,447 -2015,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,487 -2016,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,505 -2017,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,477 -2018,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,497 -2019,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,510 -2020,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,531 -2010,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,400 -2011,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,459 -2012,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,485 -2013,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,521 -2014,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,541 -2015,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,590 -2016,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,611 -2017,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,595 -2018,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,620 -2019,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,643 -2020,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,668 1990,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,110 1991,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,118 1992,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,122 @@ -12148,102 +2983,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,678 1998,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,697 1999,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,714 -2000,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,726 -2001,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,791 -2002,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,786 -2003,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,829 -2004,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,835 -2005,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,845 -2006,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,840 -2007,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,866 -2008,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,853 -2009,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,838 -2010,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,823 -2011,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,816 -2012,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,826 -2013,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,871 -2014,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,858 -2015,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,885 -2016,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,936 -2017,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,982 -2018,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,990 -2019,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1040 -2020,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1069 -2010,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1025 -2011,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1025 -2012,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1038 -2013,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1098 -2014,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1113 -2015,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1130 -2016,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1226 -2017,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1284 -2018,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1312 -2019,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1388 -2020,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1422 -2010,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2012,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2015,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2016,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2017,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2018,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2019,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2020,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2000,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2001,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2002,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2003,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2005,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2006,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2008,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2018,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2019,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2020,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2000,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,603 -2001,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,639 -2002,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,623 -2003,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,666 -2004,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,690 -2005,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,691 -2006,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,703 -2007,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,738 -2008,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,755 -2009,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,754 -2010,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,760 -2011,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,800 -2012,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,778 -2013,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,832 -2014,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,867 -2015,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,881 -2016,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,924 -2017,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,962 -2018,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1009 -2019,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1033 -2020,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1066 -2010,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75397 -2011,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75396 -2012,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75291 -2013,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75598 -2014,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75918 -2015,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76464 -2016,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76904 -2017,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77263 -2018,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77585 -2019,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77789 -2020,geoId/01043,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78492 1990,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,66705 1991,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,67449 1992,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,68429 @@ -12254,27 +2993,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,72617 1998,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,73425 1999,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,74080 -2000,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74016 -2001,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73685 -2002,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73570 -2003,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73539 -2004,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73757 -2005,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74030 -2006,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74070 -2007,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74336 -2008,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74779 -2009,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74706 -2010,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74673 -2011,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74641 -2012,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74562 -2013,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74818 -2014,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75105 -2015,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75630 -2016,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76022 -2017,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76350 -2018,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76628 -2019,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76819 -2020,geoId/01043,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77490 1990,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1210 1991,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1234 1992,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1254 @@ -12285,38 +3003,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1747 1998,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1854 1999,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1957 -2000,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1647 -2001,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1756 -2002,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1825 -2003,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1901 -2004,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2068 -2005,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2022 -2006,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2175 -2007,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2456 -2008,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2566 -2009,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2740 -2010,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2850 -2011,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2922 -2012,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2868 -2013,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2818 -2014,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2904 -2015,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2970 -2016,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3127 -2017,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3227 -2018,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3298 -2019,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3375 -2020,geoId/01045,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3396 -2010,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2011,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2012,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2013,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2014,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2015,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172 -2016,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2017,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2018,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190 -2019,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2020,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 1990,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1991,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1992,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 @@ -12327,59 +3013,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 1998,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1999,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 -2000,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2004,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2005,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2006,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2007,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2008,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2009,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2010,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2011,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2012,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2013,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2014,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2015,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2016,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2017,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2018,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2019,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2020,geoId/01045,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2000,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2004,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2011,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2012,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2013,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2014,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2015,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2016,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2017,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2019,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2020,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 1990,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,43 1991,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,52 1992,geoId/01045,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,50 @@ -12400,91 +3033,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,128 1998,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,133 1999,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,139 -2000,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2001,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2002,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2003,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2004,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 -2005,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2006,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2007,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2008,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2009,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2010,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2011,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,223 -2012,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,236 -2013,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2014,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2015,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2016,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,247 -2017,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,261 -2018,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,259 -2019,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,267 -2020,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,276 -2010,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,290 -2011,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,317 -2012,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,324 -2013,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,323 -2014,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,297 -2015,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,292 -2016,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,345 -2017,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,355 -2018,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,375 -2019,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,385 -2020,geoId/01045,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,383 -2010,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2011,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2018,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2019,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2020,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2000,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2003,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01045,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2001,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2002,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2003,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2004,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2005,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2006,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2007,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,154 -2008,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2009,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2010,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2011,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2012,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,187 -2013,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2014,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2015,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2016,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2017,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,195 -2018,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2019,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2020,geoId/01045,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,212 1990,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1035 1991,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1060 1992,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1076 @@ -12495,38 +3043,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1522 1998,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1619 1999,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1722 -2000,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1364 -2001,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1455 -2002,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1522 -2003,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1572 -2004,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1723 -2005,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1664 -2006,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1772 -2007,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2054 -2008,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2129 -2009,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2262 -2010,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2369 -2011,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2389 -2012,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2333 -2013,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2293 -2014,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2404 -2015,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2459 -2016,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2581 -2017,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2632 -2018,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2681 -2019,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2748 -2020,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2782 -2010,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2549 -2011,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2561 -2012,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2498 -2013,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2480 -2014,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2563 -2015,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2618 -2016,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2745 -2017,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2804 -2018,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2863 -2019,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2922 -2020,geoId/01045,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2960 1990,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48389 1991,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48575 1992,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48539 @@ -12537,38 +3053,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47354 1998,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47062 1999,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47170 -2000,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47477 -2001,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47498 -2002,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47548 -2003,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47314 -2004,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47177 -2005,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47028 -2006,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,46902 -2007,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47032 -2008,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47305 -2009,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47114 -2010,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47546 -2011,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47212 -2012,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47445 -2013,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,46989 -2014,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,46561 -2015,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,46458 -2016,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,46349 -2017,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,46240 -2018,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,45970 -2019,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,45919 -2020,geoId/01045,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,45563 -2010,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,783 -2011,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,770 -2012,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,786 -2013,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,747 -2014,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,751 -2015,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,741 -2016,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,737 -2017,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,736 -2018,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,694 -2019,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,701 -2020,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,742 1990,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,235 1991,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,220 1992,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,209 @@ -12579,59 +3063,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,187 1998,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,177 1999,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,174 -2000,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,286 -2001,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,294 -2002,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,324 -2003,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,314 -2004,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,305 -2005,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,305 -2006,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,311 -2007,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,314 -2008,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,321 -2009,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,339 -2010,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,339 -2011,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,343 -2012,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,323 -2013,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,309 -2014,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,323 -2015,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,327 -2016,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,343 -2017,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,329 -2018,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,306 -2019,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,318 -2020,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,337 -2000,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,533 -2001,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,537 -2002,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,549 -2003,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,533 -2004,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,523 -2005,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,515 -2006,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,520 -2007,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,550 -2008,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,532 -2009,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,533 -2010,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,526 -2011,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,543 -2012,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,579 -2013,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,600 -2014,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,601 -2015,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,628 -2016,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,640 -2017,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,677 -2018,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,669 -2019,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,700 -2020,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,697 -2010,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,817 -2011,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,835 -2012,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,910 -2013,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,906 -2014,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,915 -2015,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,942 -2016,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,936 -2017,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,989 -2018,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,982 -2019,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1019 -2020,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1004 1990,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,718 1991,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,747 1992,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,765 @@ -12652,102 +3083,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9004 1998,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8999 1999,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9084 -2000,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9934 -2001,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9914 -2002,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9878 -2003,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9832 -2004,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9817 -2005,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9900 -2006,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9804 -2007,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9721 -2008,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9709 -2009,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9596 -2010,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9584 -2011,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9472 -2012,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9510 -2013,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9494 -2014,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9445 -2015,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9734 -2016,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9801 -2017,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10014 -2018,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10013 -2019,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10051 -2020,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9995 -2010,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10135 -2011,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10029 -2012,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10123 -2013,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10088 -2014,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10029 -2015,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10317 -2016,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10374 -2017,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10628 -2018,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10618 -2019,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10660 -2020,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10586 -2010,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2011,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2012,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2013,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2014,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128 -2015,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2016,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2017,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2018,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2019,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2020,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2000,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2001,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2002,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2003,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2004,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2005,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2006,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2007,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2008,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2009,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2011,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2012,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2013,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2014,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2015,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2016,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2017,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2018,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2019,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2020,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2000,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,805 -2001,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,812 -2002,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,824 -2003,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,866 -2004,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,930 -2005,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,960 -2006,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1013 -2007,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1034 -2008,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1085 -2009,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1122 -2010,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1196 -2011,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1179 -2012,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1260 -2013,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1217 -2014,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1217 -2015,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1201 -2016,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1171 -2017,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1213 -2018,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1217 -2019,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1209 -2020,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1199 -2010,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36957 -2011,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36695 -2012,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36866 -2013,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36402 -2014,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36014 -2015,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35584 -2016,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35378 -2017,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35020 -2018,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34799 -2019,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34678 -2020,geoId/01045,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34351 1990,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38670 1991,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38752 1992,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38620 @@ -12758,27 +3093,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,37339 1998,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,37068 1999,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,37078 -2000,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35852 -2001,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35883 -2002,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35915 -2003,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35714 -2004,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35550 -2005,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35297 -2006,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35211 -2007,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35374 -2008,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35621 -2009,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35487 -2010,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35857 -2011,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35628 -2012,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35727 -2013,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35319 -2014,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34922 -2015,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34502 -2016,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34322 -2017,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33927 -2018,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33690 -2019,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33576 -2020,geoId/01045,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33271 1990,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,131 1991,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,111 1992,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,115 @@ -12789,38 +3103,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,149 1998,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,160 1999,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,174 -2000,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,290 -2001,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,300 -2002,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,305 -2003,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,295 -2004,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,278 -2005,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,294 -2006,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,300 -2007,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,273 -2008,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,282 -2009,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,282 -2010,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,313 -2011,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,346 -2012,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,387 -2013,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,384 -2014,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,379 -2015,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,386 -2016,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,408 -2017,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,404 -2018,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,402 -2019,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,408 -2020,geoId/01047,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,431 -2010,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 1990,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -12831,59 +3113,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01047,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 1990,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01047,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -12904,91 +3133,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,52 1998,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,50 1999,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,58 -2000,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2001,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2002,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2003,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2004,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2005,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2006,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2007,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2008,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2009,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2010,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2011,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2012,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2013,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2014,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2015,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2016,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2017,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2018,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2019,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2020,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2010,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2011,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2012,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2013,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2014,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2015,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2016,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2017,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2018,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2019,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2020,geoId/01047,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2010,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01047,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2002,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2004,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01047,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 1990,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,71 1991,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,69 1992,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,69 @@ -12999,38 +3143,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,97 1998,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,110 1999,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,116 -2000,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2001,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2002,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2003,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2004,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128 -2005,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2006,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2007,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2008,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2009,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2010,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2011,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2012,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,219 -2013,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,214 -2014,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2015,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2016,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2017,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2018,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2019,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,214 -2020,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,227 -2010,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172 -2011,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2012,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2013,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,228 -2014,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,220 -2015,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,219 -2016,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,234 -2017,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2018,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2019,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,229 -2020,geoId/01047,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,244 1990,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47882 1991,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47737 1992,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47819 @@ -13041,38 +3153,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,46960 1998,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,46643 1999,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,46495 -2000,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,45908 -2001,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,45832 -2002,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,45072 -2003,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,44875 -2004,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,44517 -2005,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,44140 -2006,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,44023 -2007,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,43921 -2008,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,43983 -2009,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,43477 -2010,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,43542 -2011,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,42908 -2012,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,42407 -2013,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,41597 -2014,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,41181 -2015,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40561 -2016,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39697 -2017,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,38859 -2018,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37868 -2019,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36774 -2020,geoId/01047,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,35667 -2010,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2011,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 -2012,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2013,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2014,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2015,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,187 -2016,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2017,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2018,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2019,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2020,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 1990,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,41 1991,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,39 1992,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,39 @@ -13083,59 +3163,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,36 1998,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28 1999,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29 -2000,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2001,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2002,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2003,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2004,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2005,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2006,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2007,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2008,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2009,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2010,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2011,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2012,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2013,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2014,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2015,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2016,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2017,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2018,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2019,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2020,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2000,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2001,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2002,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2003,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2004,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2005,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2006,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2007,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2008,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2009,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2010,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2011,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2012,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2013,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2014,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2015,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2016,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2017,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,232 -2018,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,238 -2019,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2020,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2010,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2011,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,212 -2012,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2013,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,209 -2014,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2015,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,236 -2016,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,261 -2017,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,283 -2018,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,285 -2019,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,240 -2020,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 1990,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,129 1991,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,132 1992,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,131 @@ -13156,102 +3183,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27851 1998,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27743 1999,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27783 -2000,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29158 -2001,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29421 -2002,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29263 -2003,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29456 -2004,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29494 -2005,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29531 -2006,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29795 -2007,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30044 -2008,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30386 -2009,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30145 -2010,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30409 -2011,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30035 -2012,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29722 -2013,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29229 -2014,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28953 -2015,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28587 -2016,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28081 -2017,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27529 -2018,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26828 -2019,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26128 -2020,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25415 -2010,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30567 -2011,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30204 -2012,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29915 -2013,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29418 -2014,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29154 -2015,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28788 -2016,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28290 -2017,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27749 -2018,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27048 -2019,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26347 -2020,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25630 -2010,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2016,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2000,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2001,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190 -2002,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2003,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,205 -2004,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2005,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2006,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,227 -2007,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,239 -2008,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2009,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,256 -2010,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,269 -2011,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,285 -2012,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,302 -2013,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,306 -2014,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,328 -2015,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,323 -2016,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,334 -2017,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,324 -2018,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,337 -2019,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,342 -2020,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,329 -2010,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12873 -2011,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12591 -2012,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12383 -2013,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12066 -2014,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11924 -2015,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11646 -2016,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11271 -2017,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10948 -2018,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10669 -2019,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10324 -2020,geoId/01047,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9934 1990,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20012 1991,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19869 1992,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19790 @@ -13262,27 +3193,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18924 1998,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18726 1999,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18534 -2000,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16362 -2001,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16004 -2002,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15403 -2003,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14992 -2004,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14590 -2005,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14176 -2006,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13785 -2007,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13419 -2008,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13126 -2009,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12845 -2010,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12626 -2011,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12337 -2012,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12122 -2013,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11801 -2014,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11631 -2015,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11367 -2016,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10969 -2017,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10676 -2018,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10368 -2019,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10018 -2020,geoId/01047,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9646 1990,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,215 1991,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,234 1992,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,235 @@ -13293,38 +3203,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,386 1998,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,414 1999,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,450 -2000,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3621 -2001,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4320 -2002,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4827 -2003,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5459 -2004,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6093 -2005,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6757 -2006,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7442 -2007,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7995 -2008,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8703 -2009,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9299 -2010,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9676 -2011,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9935 -2012,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9792 -2013,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9838 -2014,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9851 -2015,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9877 -2016,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10066 -2017,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10357 -2018,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10554 -2019,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10736 -2020,geoId/01049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10937 -2010,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,818 -2011,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,766 -2012,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,740 -2013,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,724 -2014,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,718 -2015,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,710 -2016,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,706 -2017,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,688 -2018,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,702 -2019,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,719 -2020,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,718 1990,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1991,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 1992,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 @@ -13335,59 +3213,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29 1998,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 1999,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,30 -2000,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2001,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2002,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 -2003,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,252 -2004,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,308 -2005,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,357 -2006,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,419 -2007,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,477 -2008,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,543 -2009,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,626 -2010,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,669 -2011,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,611 -2012,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,591 -2013,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,578 -2014,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,577 -2015,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,553 -2016,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,554 -2017,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,538 -2018,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,556 -2019,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,569 -2020,geoId/01049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,580 -2000,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2002,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2003,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2004,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2005,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2006,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2007,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2008,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2009,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2010,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2011,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2012,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2013,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2014,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2015,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2016,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2017,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2018,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2019,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2020,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2010,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2011,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2012,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2013,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2014,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2015,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2016,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2017,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2018,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2019,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2020,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 1990,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1992,geoId/01049,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 @@ -13408,91 +3233,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 1998,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1999,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 -2000,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2001,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2002,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2003,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2004,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2005,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2006,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2007,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190 -2008,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,220 -2009,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2010,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 -2011,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,219 -2012,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,225 -2013,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,229 -2014,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,239 -2015,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,249 -2016,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,256 -2017,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,283 -2018,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,297 -2019,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,322 -2020,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,322 -2010,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,289 -2011,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,283 -2012,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,287 -2013,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,298 -2014,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,309 -2015,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,317 -2016,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,321 -2017,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,354 -2018,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,363 -2019,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,392 -2020,geoId/01049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,390 -2010,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,614 -2011,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,555 -2012,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,530 -2013,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,502 -2014,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,475 -2015,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,461 -2016,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,447 -2017,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,431 -2018,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,437 -2019,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,428 -2020,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,432 -2000,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2001,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2002,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2003,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2004,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,255 -2005,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,312 -2006,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,361 -2007,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,416 -2008,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,476 -2009,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,530 -2010,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,574 -2011,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,527 -2012,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,498 -2013,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,470 -2014,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,446 -2015,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,423 -2016,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,410 -2017,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,399 -2018,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,400 -2019,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,397 -2020,geoId/01049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,409 -2000,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2001,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2002,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2003,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2004,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2005,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2006,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2007,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2008,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 -2009,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,214 -2010,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,221 -2011,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,230 -2012,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,223 -2013,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,226 -2014,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,221 -2015,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2016,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,225 -2017,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2018,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2019,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,221 -2020,geoId/01049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 1990,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,199 1991,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,208 1992,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,213 @@ -13503,38 +3243,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,346 1998,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,377 1999,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,407 -2000,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3438 -2001,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3969 -2002,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4326 -2003,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4786 -2004,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5278 -2005,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5758 -2006,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6290 -2007,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6677 -2008,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7190 -2009,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7615 -2010,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7898 -2011,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8264 -2012,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8167 -2013,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8251 -2014,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8282 -2015,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8346 -2016,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8527 -2017,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8797 -2018,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8967 -2019,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9112 -2020,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9307 -2010,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8077 -2011,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8456 -2012,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8349 -2013,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8443 -2014,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8471 -2015,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8523 -2016,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8704 -2017,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8974 -2018,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9140 -2019,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9289 -2020,geoId/01049,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9479 1990,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,54548 1991,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,55108 1992,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,55610 @@ -13545,38 +3253,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,57267 1998,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,57860 1999,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,58498 -2000,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61029 -2001,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61358 -2002,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61034 -2003,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61071 -2004,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61167 -2005,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61037 -2006,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61053 -2007,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61455 -2008,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61525 -2009,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61565 -2010,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61457 -2011,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61400 -2012,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61121 -2013,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61043 -2014,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61112 -2015,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61188 -2016,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61050 -2017,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61084 -2018,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,60876 -2019,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,60770 -2020,geoId/01049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,60721 -2010,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1843 -2011,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1874 -2012,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1855 -2013,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1846 -2014,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1828 -2015,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1829 -2016,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1827 -2017,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1841 -2018,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1852 -2019,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1872 -2020,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1933 1990,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,473 1991,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,477 1992,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,450 @@ -13587,59 +3263,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,409 1998,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,401 1999,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,379 -2000,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,482 -2001,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,518 -2002,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,563 -2003,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,611 -2004,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,663 -2005,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,663 -2006,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,730 -2007,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,722 -2008,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,766 -2009,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,832 -2010,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,857 -2011,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,878 -2012,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,884 -2013,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,862 -2014,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,863 -2015,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,852 -2016,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,848 -2017,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,862 -2018,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,857 -2019,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,866 -2020,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,892 -2000,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2001,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2002,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2003,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2004,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2005,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2006,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2007,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2008,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2009,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2010,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2011,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2012,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2013,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2014,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2015,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,223 -2016,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,238 -2017,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243 -2018,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,253 -2019,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,246 -2020,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,259 -2010,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,247 -2011,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,268 -2012,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,278 -2013,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,303 -2014,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,294 -2015,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,317 -2016,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,334 -2017,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,343 -2018,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,344 -2019,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,351 -2020,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,372 1990,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,76 1991,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,82 1992,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,82 @@ -13660,102 +3283,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1201 1998,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1228 1999,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1257 -2000,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1072 -2001,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1122 -2002,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1078 -2003,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1081 -2004,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1095 -2005,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1081 -2006,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1054 -2007,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1088 -2008,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1091 -2009,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1066 -2010,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1031 -2011,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1037 -2012,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1036 -2013,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1024 -2014,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1039 -2015,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1025 -2016,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,997 -2017,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1015 -2018,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,998 -2019,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1022 -2020,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1030 -2010,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1281 -2011,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1289 -2012,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1294 -2013,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1307 -2014,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1306 -2015,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1310 -2016,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1299 -2017,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1339 -2018,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1328 -2019,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1375 -2020,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1414 -2010,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2011,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2012,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2013,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2014,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2015,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2016,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2017,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2018,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2019,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2000,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2002,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2003,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2005,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2006,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2007,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2008,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2009,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2014,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2000,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,718 -2001,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,776 -2002,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,818 -2003,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,888 -2004,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,927 -2005,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,988 -2006,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1024 -2007,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1096 -2008,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1160 -2009,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1218 -2010,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1264 -2011,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1285 -2012,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1270 -2013,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1321 -2014,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1289 -2015,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1310 -2016,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1334 -2017,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1347 -2018,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1381 -2019,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1414 -2020,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1478 -2010,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59311 -2011,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59206 -2012,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58927 -2013,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58858 -2014,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58925 -2015,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58994 -2016,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58875 -2017,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58858 -2018,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58677 -2019,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58533 -2020,geoId/01049,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58425 1990,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,52967 1991,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,53503 1992,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,54006 @@ -13766,27 +3293,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,55556 1998,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,56127 1999,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,56755 -2000,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58634 -2001,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58796 -2002,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58431 -2003,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58342 -2004,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58320 -2005,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58144 -2006,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58073 -2007,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58377 -2008,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58330 -2009,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58264 -2010,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58095 -2011,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57985 -2012,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57706 -2013,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57597 -2014,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57685 -2015,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57743 -2016,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57597 -2017,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57581 -2018,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57344 -2019,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57178 -2020,geoId/01049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57019 1990,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,270 1991,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,286 1992,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,322 @@ -13797,38 +3303,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,500 1998,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,538 1999,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,580 -2000,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,806 -2001,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,945 -2002,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1034 -2003,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1152 -2004,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1286 -2005,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1439 -2006,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1622 -2007,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1758 -2008,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1937 -2009,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2039 -2010,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2144 -2011,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2177 -2012,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2168 -2013,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2257 -2014,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2265 -2015,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2270 -2016,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2272 -2017,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2400 -2018,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2450 -2019,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2528 -2020,geoId/01051,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2485 -2010,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2011,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2012,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2013,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2014,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2015,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2016,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2017,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2018,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2019,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2020,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158 1990,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1991,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1992,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 @@ -13839,59 +3313,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1998,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15 1999,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 -2000,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2002,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2003,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2004,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2005,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2006,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2007,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2008,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2009,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2010,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2011,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2012,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2013,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2014,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2015,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2016,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2017,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2018,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2019,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2020,geoId/01051,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2000,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2019,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 1990,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1991,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 1992,geoId/01051,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,16 @@ -13912,91 +3333,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,86 1998,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,95 1999,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,95 -2000,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2001,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2002,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2003,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2004,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2005,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2006,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2007,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134 -2008,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2009,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2010,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,154 -2011,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2012,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2013,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2014,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,167 -2015,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2016,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2017,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190 -2018,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2019,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 -2020,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,219 -2010,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190 -2011,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2012,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2013,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2014,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2015,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2016,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,206 -2017,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2018,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,255 -2019,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,261 -2020,geoId/01051,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,263 -2010,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2014,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2017,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2000,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2008,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2009,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2012,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01051,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2000,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2001,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2004,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2005,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2006,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2007,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2008,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2009,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2010,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2011,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2012,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2013,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2014,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2015,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2016,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2017,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2018,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2019,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2020,geoId/01051,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 1990,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,196 1991,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,207 1992,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,228 @@ -14007,38 +3343,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,384 1998,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,415 1999,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,455 -2000,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,640 -2001,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,776 -2002,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,848 -2003,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,952 -2004,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1065 -2005,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1200 -2006,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1351 -2007,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1479 -2008,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1631 -2009,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1720 -2010,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1806 -2011,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1819 -2012,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1819 -2013,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1891 -2014,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1903 -2015,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1905 -2016,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1893 -2017,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1989 -2018,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2008 -2019,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2070 -2020,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1998 -2010,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1877 -2011,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1883 -2012,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1884 -2013,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1966 -2014,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1978 -2015,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1976 -2016,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1967 -2017,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2064 -2018,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2084 -2019,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2162 -2020,geoId/01051,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2089 1990,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,49200 1991,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,50375 1992,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52061 @@ -14049,38 +3353,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,59840 1998,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61447 1999,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,62908 -2000,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,65354 -2001,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,66514 -2002,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,67625 -2003,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,68783 -2004,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,69732 -2005,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,71539 -2006,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,73624 -2007,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,75366 -2008,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,75761 -2009,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,76593 -2010,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77414 -2011,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77828 -2012,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78043 -2013,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78300 -2014,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78298 -2015,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78633 -2016,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78986 -2017,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79052 -2018,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78739 -2019,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79047 -2020,geoId/01051,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79673 -2010,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,676 -2011,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,726 -2012,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,726 -2013,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,734 -2014,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,741 -2015,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,778 -2016,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,765 -2017,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,810 -2018,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,787 -2019,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,775 -2020,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,788 1990,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,131 1991,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,133 1992,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,134 @@ -14091,59 +3363,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,137 1998,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,141 1999,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,143 -2000,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,276 -2001,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,278 -2002,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270 -2003,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,272 -2004,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,302 -2005,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,281 -2006,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,265 -2007,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,269 -2008,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,260 -2009,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,272 -2010,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,267 -2011,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,276 -2012,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270 -2013,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,277 -2014,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,296 -2015,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,308 -2016,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,301 -2017,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,330 -2018,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,317 -2019,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,308 -2020,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,309 -2000,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,232 -2001,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,291 -2002,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,307 -2003,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,317 -2004,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,349 -2005,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,396 -2006,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,410 -2007,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,425 -2008,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,446 -2009,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,501 -2010,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,529 -2011,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,542 -2012,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,561 -2013,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,543 -2014,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,526 -2015,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,559 -2016,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,585 -2017,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,586 -2018,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,585 -2019,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,615 -2020,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,626 -2010,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,734 -2011,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,781 -2012,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,811 -2013,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,821 -2014,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,788 -2015,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,848 -2016,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,883 -2017,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,909 -2018,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,910 -2019,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,961 -2020,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,971 1990,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,124 1991,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,132 1992,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,138 @@ -14164,102 +3383,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14229 1998,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14653 1999,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15075 -2000,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13567 -2001,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14034 -2002,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14249 -2003,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14325 -2004,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14332 -2005,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14609 -2006,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15336 -2007,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15654 -2008,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15522 -2009,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15644 -2010,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15950 -2011,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16369 -2012,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16501 -2013,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16615 -2014,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16717 -2015,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16821 -2016,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17058 -2017,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16985 -2018,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16843 -2019,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16984 -2020,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17222 -2010,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16388 -2011,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16849 -2012,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17038 -2013,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17166 -2014,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17250 -2015,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17398 -2016,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17653 -2017,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17612 -2018,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17490 -2019,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17657 -2020,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17892 -2010,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2011,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2012,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2013,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2014,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2015,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2016,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2017,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2018,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2019,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2020,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2000,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2002,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2004,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2005,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2006,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2007,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2008,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2009,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2010,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2011,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2012,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2013,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2014,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2015,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2016,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2017,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2018,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2020,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2000,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,601 -2001,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,638 -2002,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,659 -2003,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,691 -2004,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,729 -2005,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,751 -2006,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,781 -2007,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,861 -2008,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,876 -2009,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,936 -2010,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,978 -2011,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1066 -2012,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1138 -2013,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1166 -2014,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1151 -2015,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1230 -2016,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1246 -2017,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1305 -2018,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1337 -2019,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1371 -2020,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1364 -2010,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60540 -2011,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60483 -2012,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60553 -2013,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60696 -2014,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60592 -2015,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60772 -2016,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60861 -2017,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60974 -2018,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60819 -2019,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60955 -2020,geoId/01051,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61330 1990,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,37879 1991,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38771 1992,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,39795 @@ -14270,27 +3393,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,45282 1998,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,46454 1999,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,47490 -2000,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50669 -2001,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51260 -2002,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52128 -2003,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53160 -2004,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53996 -2005,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55468 -2006,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56799 -2007,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58118 -2008,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58612 -2009,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59197 -2010,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59639 -2011,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59515 -2012,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59512 -2013,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59637 -2014,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59544 -2015,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59649 -2016,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59726 -2017,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59777 -2018,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59592 -2019,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59703 -2020,geoId/01051,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60083 1990,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,169 1991,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,169 1992,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,185 @@ -14301,38 +3403,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,254 1998,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,292 1999,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,301 -2000,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,379 -2001,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,446 -2002,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,446 -2003,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,472 -2004,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,497 -2005,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,592 -2006,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,642 -2007,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,664 -2008,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,698 -2009,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,711 -2010,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,729 -2011,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,722 -2012,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,724 -2013,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,770 -2014,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,766 -2015,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,787 -2016,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,818 -2017,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,851 -2018,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,887 -2019,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,946 -2020,geoId/01053,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,940 -2010,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2011,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2012,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2013,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2015,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2016,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2017,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2018,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2019,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2020,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 1990,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 1991,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 1992,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 @@ -14343,59 +3413,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1998,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23 1999,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 -2000,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2008,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2018,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2019,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2020,geoId/01053,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2000,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2020,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 1990,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01053,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -14416,91 +3433,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,60 1998,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,69 1999,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,73 -2000,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2001,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2002,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2003,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2004,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2005,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2006,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2007,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2008,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2009,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2010,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2012,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2013,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2014,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2015,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2016,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2017,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2018,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2019,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2020,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2010,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2011,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2012,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2013,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2014,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2015,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2016,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2017,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2018,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2019,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2020,geoId/01053,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2010,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01053,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2008,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2009,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2013,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2019,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2020,geoId/01053,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 1990,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,117 1991,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,119 1992,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,122 @@ -14511,38 +3443,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,185 1998,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,200 1999,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,217 -2000,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,316 -2001,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,387 -2002,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,383 -2003,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,405 -2004,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,419 -2005,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,493 -2006,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,530 -2007,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,540 -2008,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,568 -2009,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,577 -2010,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,590 -2011,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,574 -2012,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,570 -2013,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,604 -2014,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,597 -2015,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,610 -2016,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,632 -2017,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,652 -2018,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,663 -2019,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,707 -2020,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,709 -2010,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,616 -2011,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,602 -2012,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,604 -2013,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,638 -2014,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,630 -2015,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,641 -2016,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,667 -2017,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,692 -2018,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,704 -2019,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,758 -2020,geoId/01053,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,762 1990,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,35316 1991,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,35407 1992,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,35752 @@ -14553,38 +3453,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36368 1998,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36440 1999,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36370 -2000,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37946 -2001,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37751 -2002,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37589 -2003,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37324 -2004,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37216 -2005,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37009 -2006,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37031 -2007,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37175 -2008,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37231 -2009,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37538 -2010,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37623 -2011,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37489 -2012,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37305 -2013,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37005 -2014,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36983 -2015,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36889 -2016,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36682 -2017,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36159 -2018,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,35628 -2019,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,35623 -2020,geoId/01053,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,35341 -2010,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1544 -2011,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1576 -2012,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1546 -2013,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1578 -2014,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1562 -2015,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1599 -2016,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1607 -2017,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1628 -2018,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1639 -2019,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1647 -2020,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1669 1990,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1034 1991,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1014 1992,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,989 @@ -14595,59 +3463,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,913 1998,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,890 1999,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,876 -2000,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1160 -2001,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1185 -2002,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1204 -2003,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1174 -2004,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1182 -2005,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1216 -2006,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1235 -2007,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1272 -2008,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1263 -2009,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1257 -2010,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1279 -2011,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1300 -2012,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1287 -2013,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1297 -2014,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1285 -2015,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1299 -2016,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1307 -2017,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1304 -2018,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1329 -2019,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1336 -2020,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1328 -2000,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2001,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2002,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2003,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2004,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2005,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2006,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2007,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2008,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2009,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2010,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2011,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2012,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2013,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2014,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2015,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2016,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2017,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2018,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2019,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2020,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2010,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2011,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2012,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2013,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2014,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2015,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2016,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2017,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2018,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2019,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2020,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 1990,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,59 1991,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,59 1992,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,61 @@ -14668,102 +3483,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11021 1998,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11090 1999,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11150 -2000,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11767 -2001,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11771 -2002,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11694 -2003,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11640 -2004,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11613 -2005,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11586 -2006,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11660 -2007,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11761 -2008,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11938 -2009,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12094 -2010,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12192 -2011,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12172 -2012,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12128 -2013,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12078 -2014,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12164 -2015,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12050 -2016,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12031 -2017,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11645 -2018,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11465 -2019,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11389 -2020,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11324 -2010,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12435 -2011,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12433 -2012,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12383 -2013,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12351 -2014,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12449 -2015,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12368 -2016,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12387 -2017,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12004 -2018,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11819 -2019,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11762 -2020,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11728 -2010,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2017,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2020,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2000,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2000,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,372 -2001,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,393 -2002,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,392 -2003,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,407 -2004,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,442 -2005,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,458 -2006,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,449 -2007,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,485 -2008,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,499 -2009,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,530 -2010,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,523 -2011,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,544 -2012,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,546 -2013,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,576 -2014,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,596 -2015,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,655 -2016,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,690 -2017,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,714 -2018,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,704 -2019,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,725 -2020,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,766 -2010,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24012 -2011,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23864 -2012,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23749 -2013,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23480 -2014,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23400 -2015,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23379 -2016,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23185 -2017,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23055 -2018,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22666 -2019,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22706 -2020,geoId/01053,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22499 1990,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24213 1991,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24255 1992,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24383 @@ -14774,27 +3493,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24364 1998,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24388 1999,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24273 -2000,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24540 -2001,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24297 -2002,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24197 -2003,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23992 -2004,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23880 -2005,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23652 -2006,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23586 -2007,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23560 -2008,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23425 -2009,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23555 -2010,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23529 -2011,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23370 -2012,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23245 -2013,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22955 -2014,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22841 -2015,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22783 -2016,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22552 -2017,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22398 -2018,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22020 -2019,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22049 -2020,geoId/01053,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21804 1990,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,332 1991,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,331 1992,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,341 @@ -14805,38 +3503,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,519 1998,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,566 1999,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,586 -2000,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1755 -2001,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1985 -2002,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2117 -2003,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2302 -2004,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2475 -2005,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2671 -2006,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2851 -2007,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3041 -2008,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3231 -2009,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3412 -2010,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3426 -2011,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3607 -2012,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3669 -2013,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3677 -2014,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3724 -2015,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3745 -2016,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3923 -2017,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4034 -2018,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4221 -2019,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4328 -2020,geoId/01055,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4427 -2010,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,254 -2011,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,247 -2012,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,267 -2013,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,281 -2014,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,299 -2015,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,313 -2016,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,335 -2017,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,328 -2018,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,358 -2019,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,374 -2020,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,382 1990,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 1991,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1992,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 @@ -14847,59 +3513,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 1998,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15 1999,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 -2000,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2002,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2003,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2004,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2005,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2006,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2007,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2008,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2009,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2010,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2011,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2012,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,202 -2013,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,223 -2014,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,239 -2015,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243 -2016,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270 -2017,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,267 -2018,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,282 -2019,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,296 -2020,geoId/01055,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,302 -2000,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2004,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2005,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2006,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2007,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2008,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2009,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2010,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2011,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2012,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2013,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2014,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2015,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2016,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2017,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2018,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2019,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2020,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2010,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2011,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2012,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2013,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2014,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2015,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2016,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2017,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2018,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2019,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2020,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 1990,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27 1991,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,33 1992,geoId/01055,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 @@ -14920,91 +3533,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,31 1998,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,35 1999,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,31 -2000,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2001,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2002,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2003,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2004,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2005,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2006,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2007,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2008,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2009,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2010,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 -2011,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2012,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2013,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,195 -2014,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2015,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2016,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,219 -2017,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,242 -2018,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,239 -2019,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,240 -2020,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,233 -2010,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2011,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,252 -2012,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,258 -2013,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2014,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,268 -2015,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,267 -2016,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,296 -2017,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,329 -2018,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,316 -2019,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,334 -2020,geoId/01055,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,323 -2010,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,303 -2011,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,292 -2012,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,282 -2013,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,269 -2014,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,260 -2015,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,267 -2016,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,275 -2017,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,285 -2018,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,285 -2019,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,293 -2020,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,299 -2000,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2002,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2003,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2004,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2005,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2006,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,187 -2007,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2008,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,255 -2009,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,292 -2010,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,299 -2011,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,286 -2012,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,276 -2013,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262 -2014,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,255 -2015,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,258 -2016,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,265 -2017,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,277 -2018,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,276 -2019,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,282 -2020,geoId/01055,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,288 -2000,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2001,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2002,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2003,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2004,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2005,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2006,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2007,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2008,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2009,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2010,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2011,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2012,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2013,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2014,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2015,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2016,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2017,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2018,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2019,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2020,geoId/01055,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 1990,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,266 1991,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,268 1992,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,285 @@ -15015,38 +3543,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,437 1998,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,470 1999,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,497 -2000,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1546 -2001,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1743 -2002,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1814 -2003,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1918 -2004,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2049 -2005,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2162 -2006,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2260 -2007,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2395 -2008,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2480 -2009,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2580 -2010,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2561 -2011,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2755 -2012,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2805 -2013,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2807 -2014,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2831 -2015,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2839 -2016,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2938 -2017,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2983 -2018,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3152 -2019,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3257 -2020,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3346 -2010,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2674 -2011,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2869 -2012,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2931 -2013,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2931 -2014,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2960 -2015,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2965 -2016,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3082 -2017,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3122 -2018,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3302 -2019,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3413 -2020,geoId/01055,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3510 1990,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,99467 1991,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,99964 1992,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100491 @@ -15057,38 +3553,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,103239 1998,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,103357 1999,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,102886 -2000,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,101531 -2001,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100991 -2002,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100871 -2003,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100723 -2004,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100605 -2005,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100503 -2006,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100677 -2007,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100852 -2008,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100975 -2009,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100827 -2010,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,101014 -2011,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100749 -2012,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100602 -2013,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100214 -2014,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,99693 -2015,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,99288 -2016,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,99008 -2017,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,99042 -2018,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,98545 -2019,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,98132 -2020,geoId/01055,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,97944 -2010,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1017 -2011,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1023 -2012,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1016 -2013,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1018 -2014,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1018 -2015,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1021 -2016,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1047 -2017,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1057 -2018,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1057 -2019,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1048 -2020,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1135 1990,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,243 1991,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,239 1992,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,238 @@ -15099,59 +3563,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,221 1998,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,209 1999,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,211 -2000,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,331 -2001,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,351 -2002,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,342 -2003,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,333 -2004,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,341 -2005,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,349 -2006,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,352 -2007,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,351 -2008,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,339 -2009,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,359 -2010,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,375 -2011,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,380 -2012,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,359 -2013,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,363 -2014,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,355 -2015,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,362 -2016,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,382 -2017,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,370 -2018,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,377 -2019,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,380 -2020,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,434 -2000,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,436 -2001,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,457 -2002,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,469 -2003,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,488 -2004,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,515 -2005,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,556 -2006,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,553 -2007,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,566 -2008,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,573 -2009,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,606 -2010,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,672 -2011,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,688 -2012,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,726 -2013,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,744 -2014,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,744 -2015,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,744 -2016,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,771 -2017,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,791 -2018,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,793 -2019,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,814 -2020,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,800 -2010,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,806 -2011,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,838 -2012,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,869 -2013,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,918 -2014,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,896 -2015,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,906 -2016,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,952 -2017,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,970 -2018,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,982 -2019,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1019 -2020,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1010 1990,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,409 1991,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,392 1992,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,408 @@ -15172,102 +3583,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15254 1998,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15386 1999,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15452 -2000,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15156 -2001,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15036 -2002,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14964 -2003,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15050 -2004,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15164 -2005,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15174 -2006,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15400 -2007,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15597 -2008,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15583 -2009,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15570 -2010,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15786 -2011,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15785 -2012,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15786 -2013,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15807 -2014,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15735 -2015,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15863 -2016,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15885 -2017,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15957 -2018,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15953 -2019,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15934 -2020,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16021 -2010,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16346 -2011,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16378 -2012,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16400 -2013,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16455 -2014,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16408 -2015,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16520 -2016,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16601 -2017,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16706 -2018,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16735 -2019,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16768 -2020,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16889 -2010,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2011,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2012,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2013,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2014,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2015,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2016,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2017,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2018,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2019,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2020,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2000,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2001,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2002,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2003,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2004,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2005,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2007,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2008,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2015,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2017,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2019,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2000,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,769 -2001,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,803 -2002,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,850 -2003,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,886 -2004,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,945 -2005,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,998 -2006,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1045 -2007,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1077 -2008,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1157 -2009,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1227 -2010,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1292 -2011,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1321 -2012,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1340 -2013,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1387 -2014,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1435 -2015,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1422 -2016,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1494 -2017,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1530 -2018,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1581 -2019,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1638 -2020,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1686 -2010,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84090 -2011,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83785 -2012,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83625 -2013,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83182 -2014,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82756 -2015,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82201 -2016,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81846 -2017,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81797 -2018,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81287 -2019,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80880 -2020,geoId/01055,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80542 1990,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,85013 1991,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,85387 1992,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,85712 @@ -15278,27 +3593,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,87358 1998,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,87360 1999,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,86806 -2000,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84810 -2001,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84315 -2002,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84219 -2003,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83938 -2004,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83607 -2005,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83405 -2006,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83302 -2007,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83235 -2008,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83301 -2009,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83045 -2010,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82861 -2011,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82542 -2012,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82357 -2013,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81880 -2014,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81390 -2015,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80854 -2016,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80428 -2017,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80348 -2018,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79795 -2019,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79322 -2020,geoId/01055,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78953 1990,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78 1991,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,81 1992,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,81 @@ -15310,37 +3604,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1998,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,139 1999,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,145 2000,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,152 -2001,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,163 -2002,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,171 -2003,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,172 -2004,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,175 -2005,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,185 -2006,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,196 -2007,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,196 -2008,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,190 -2009,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,206 -2010,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,203 -2011,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,226 -2012,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,239 -2013,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,265 -2014,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,266 -2015,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,287 -2016,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,275 -2017,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,291 -2018,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,299 -2019,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,329 -2020,geoId/01057,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,333 -2010,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 1990,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1992,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -15352,58 +3615,7 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1998,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 2000,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01057,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 2000,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 1990,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01057,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -15425,90 +3637,8 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1998,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1999,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 2000,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2006,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2009,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01057,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2010,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 2000,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01057,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 2000,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01057,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 1990,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,74 1991,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,75 1992,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,77 @@ -15520,37 +3650,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1998,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,135 1999,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,140 2000,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2001,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2002,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2003,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,154 -2004,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2005,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2006,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2007,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2008,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2009,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,167 -2010,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2011,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2012,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2013,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 -2014,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,221 -2015,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237 -2016,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2017,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237 -2018,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2019,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,266 -2020,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270 -2010,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2011,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,194 -2012,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,206 -2013,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2014,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,223 -2015,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,242 -2016,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,228 -2017,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,241 -2018,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,248 -2019,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,269 -2020,geoId/01057,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,274 1990,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17918 1991,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18030 1992,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18011 @@ -15562,37 +3661,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1998,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17957 1999,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17958 2000,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18360 -2001,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18221 -2002,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18107 -2003,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18006 -2004,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17847 -2005,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17845 -2006,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17571 -2007,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17327 -2008,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17351 -2009,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17104 -2010,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17029 -2011,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16835 -2012,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16716 -2013,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16572 -2014,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16518 -2015,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16424 -2016,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16306 -2017,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16187 -2018,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16152 -2019,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15950 -2020,geoId/01057,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15908 -2010,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2011,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2012,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2013,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2014,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2015,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2016,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2017,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2018,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2019,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2020,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 1990,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1991,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 1992,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 @@ -15604,58 +3672,7 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1998,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1999,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 2000,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2001,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2002,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2003,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2004,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2005,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2006,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2007,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2008,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2009,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2010,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2011,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2012,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2013,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2014,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2015,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2016,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2017,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2019,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 2000,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2001,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2002,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2003,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2004,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2005,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2006,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2007,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2008,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2009,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2017,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2018,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2019,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2020,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2010,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2011,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2012,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2014,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2015,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2016,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2017,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2018,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2019,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2020,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 1990,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 1991,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 1992,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 @@ -15677,101 +3694,8 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1998,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2378 1999,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2401 2000,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2198 -2001,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2194 -2002,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2154 -2003,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2122 -2004,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2093 -2005,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2062 -2006,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2051 -2007,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2023 -2008,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2074 -2009,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1994 -2010,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1961 -2011,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1928 -2012,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1913 -2013,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1888 -2014,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1951 -2015,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1973 -2016,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1940 -2017,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1904 -2018,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1939 -2019,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1891 -2020,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1890 -2010,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2051 -2011,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2017 -2012,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2007 -2013,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1993 -2014,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2059 -2015,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2087 -2016,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2069 -2017,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2040 -2018,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2093 -2019,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2063 -2020,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2043 -2010,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 2000,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 2000,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2001,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2002,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2003,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2004,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2005,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2006,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2007,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2008,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2009,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2010,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2011,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2012,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2013,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2014,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2015,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2016,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2017,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2018,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,236 -2019,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,257 -2020,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,240 -2010,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14974 -2011,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14813 -2012,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14704 -2013,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14583 -2014,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14461 -2015,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14337 -2016,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14241 -2017,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14144 -2018,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14072 -2019,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13917 -2020,geoId/01057,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13869 1990,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15717 1991,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15755 1992,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15726 @@ -15783,26 +3707,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1998,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15547 1999,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15527 2000,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16025 -2001,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15886 -2002,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15802 -2003,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15721 -2004,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15587 -2005,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15592 -2006,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15318 -2007,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15090 -2008,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15056 -2009,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14882 -2010,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14830 -2011,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14661 -2012,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14548 -2013,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14412 -2014,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14294 -2015,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14168 -2016,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14054 -2017,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13940 -2018,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13846 -2019,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13671 -2020,geoId/01057,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13641 1990,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,101 1991,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,103 1992,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,117 @@ -15813,38 +3717,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,180 1998,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,183 1999,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,194 -2000,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2327 -2001,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2385 -2002,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2570 -2003,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2762 -2004,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2947 -2005,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3226 -2006,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3565 -2007,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3879 -2008,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4274 -2009,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4550 -2010,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4733 -2011,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4827 -2012,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4863 -2013,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4919 -2014,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5035 -2015,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5129 -2016,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5347 -2017,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5445 -2018,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5610 -2019,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5720 -2020,geoId/01059,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5797 -2010,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,401 -2011,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,375 -2012,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,383 -2013,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,368 -2014,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,375 -2015,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,389 -2016,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,384 -2017,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,388 -2018,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,415 -2019,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,429 -2020,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,454 1990,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1992,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 @@ -15855,59 +3727,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1998,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1999,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 -2000,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2002,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2003,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2004,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2005,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2006,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2007,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,227 -2008,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270 -2009,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,320 -2010,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,342 -2011,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,326 -2012,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,326 -2013,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,314 -2014,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,306 -2015,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,317 -2016,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,332 -2017,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,336 -2018,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,354 -2019,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,374 -2020,geoId/01059,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,401 -2000,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2008,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2017,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2018,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 1990,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1992,geoId/01059,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 @@ -15928,91 +3747,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1998,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1999,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 -2000,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2001,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2002,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2003,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2004,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2005,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2006,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2007,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2008,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2009,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2010,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2011,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2012,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2013,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2014,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,240 -2015,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,253 -2016,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2017,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,252 -2018,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,214 -2019,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 -2020,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2010,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2011,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,154 -2012,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2013,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,296 -2014,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,280 -2015,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,295 -2016,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,312 -2017,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,309 -2018,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262 -2019,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,263 -2020,geoId/01059,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,241 -2010,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2011,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2017,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2018,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2020,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2000,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2001,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2002,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2003,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2004,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2005,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2006,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2007,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2008,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2009,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2010,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2011,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2012,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2013,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2017,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01059,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2000,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2004,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2005,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2006,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2007,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2008,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2009,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2010,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2011,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2012,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2013,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2014,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2015,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2016,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2017,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2018,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2019,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2020,geoId/01059,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 1990,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,97 1991,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,99 1992,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,113 @@ -16023,38 +3757,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,172 1998,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,176 1999,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,188 -2000,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2222 -2001,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2242 -2002,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2378 -2003,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2520 -2004,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2670 -2005,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2882 -2006,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3182 -2007,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3457 -2008,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3787 -2009,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4000 -2010,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4154 -2011,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4234 -2012,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4188 -2013,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4190 -2014,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4316 -2015,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4377 -2016,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4567 -2017,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4675 -2018,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4862 -2019,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4955 -2020,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5002 -2010,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4258 -2011,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4323 -2012,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4287 -2013,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4300 -2014,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4422 -2015,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4482 -2016,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4672 -2017,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4783 -2018,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4962 -2019,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5058 -2020,geoId/01059,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5109 1990,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27668 1991,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27850 1992,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,28247 @@ -16065,38 +3767,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29426 1998,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29501 1999,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29522 -2000,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,28915 -2001,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,28805 -2002,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,28321 -2003,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,28112 -2004,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27821 -2005,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27742 -2006,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27569 -2007,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27125 -2008,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27185 -2009,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27039 -2010,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27013 -2011,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26949 -2012,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26836 -2013,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26647 -2014,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26537 -2015,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26403 -2016,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26327 -2017,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26225 -2018,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25885 -2019,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25867 -2020,geoId/01059,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25710 -2010,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,294 -2011,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,293 -2012,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,309 -2013,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,321 -2014,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,341 -2015,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,334 -2016,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,336 -2017,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,341 -2018,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,356 -2019,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,338 -2020,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,354 1990,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,57 1991,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,57 1992,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,57 @@ -16107,59 +3777,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,60 1998,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,59 1999,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,54 -2000,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2001,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2002,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2003,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2004,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2005,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2006,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2007,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2008,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2009,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2010,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2011,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2012,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2013,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2014,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2015,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2016,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2017,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2018,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2019,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2020,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2000,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2001,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2002,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2003,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2004,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2005,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2006,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2007,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2008,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2009,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2010,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2011,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2012,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2013,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2014,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2015,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2016,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2017,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2018,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2019,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2020,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2010,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2011,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2012,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2013,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2014,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128 -2015,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2016,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2017,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2018,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2019,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2020,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 1990,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,34 1991,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,33 1992,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,34 @@ -16180,102 +3797,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1459 1998,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1479 1999,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1495 -2000,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1307 -2001,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1264 -2002,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1228 -2003,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1204 -2004,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1178 -2005,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1172 -2006,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1198 -2007,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1202 -2008,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1218 -2009,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1212 -2010,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1229 -2011,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1204 -2012,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1213 -2013,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1215 -2014,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1184 -2015,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1208 -2016,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1198 -2017,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1216 -2018,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1215 -2019,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1188 -2020,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1205 -2010,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1368 -2011,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1351 -2012,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1374 -2013,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1375 -2014,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1357 -2015,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1384 -2016,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1378 -2017,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1395 -2018,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1407 -2019,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1393 -2020,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1407 -2010,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2014,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2015,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2016,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2018,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2000,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2000,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2001,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2002,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2003,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2004,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,227 -2005,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,252 -2006,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262 -2007,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2008,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,300 -2009,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,294 -2010,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,322 -2011,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,320 -2012,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,352 -2013,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,360 -2014,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,378 -2015,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,384 -2016,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,387 -2017,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,390 -2018,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,416 -2019,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,421 -2020,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,424 -2010,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25583 -2011,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25529 -2012,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25386 -2013,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25158 -2014,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25046 -2015,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24893 -2016,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24816 -2017,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24720 -2018,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24384 -2019,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24405 -2020,geoId/01059,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24218 1990,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,26320 1991,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,26462 1992,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,26836 @@ -16286,27 +3807,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27869 1998,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27920 1999,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27935 -2000,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27296 -2001,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27208 -2002,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26765 -2003,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26550 -2004,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26266 -2005,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26165 -2006,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25940 -2007,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25491 -2008,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25501 -2009,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25362 -2010,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25277 -2011,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25228 -2012,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25055 -2013,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24822 -2014,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24686 -2015,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24528 -2016,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24446 -2017,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24353 -2018,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23986 -2019,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23996 -2020,geoId/01059,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23812 1990,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,119 1991,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,122 1992,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,125 @@ -16317,38 +3817,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,205 1998,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,215 1999,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,219 -2000,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,452 -2001,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,484 -2002,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,524 -2003,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,552 -2004,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,608 -2005,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,697 -2006,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,766 -2007,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,803 -2008,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,830 -2009,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,893 -2010,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,937 -2011,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,945 -2012,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,972 -2013,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,956 -2014,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,960 -2015,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1012 -2016,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1029 -2017,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1045 -2018,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1070 -2019,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1092 -2020,geoId/01061,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1144 -2010,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2013,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2014,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2017,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2019,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2020,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 1990,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1991,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1992,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 @@ -16359,59 +3827,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1998,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1999,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 -2000,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2004,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2006,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2008,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2009,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2011,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2013,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2014,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2017,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2018,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2019,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01061,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2000,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 1990,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1991,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1992,geoId/01061,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 @@ -16432,91 +3847,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 1998,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 1999,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 -2000,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2001,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2002,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2006,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2007,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2008,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2009,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2010,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2013,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2014,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2015,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2016,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2017,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2019,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2010,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2012,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2013,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2014,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2015,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2016,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2017,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2018,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2019,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01061,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2010,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01061,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2019,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01061,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 1990,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,103 1991,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,106 1992,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,108 @@ -16527,38 +3857,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,180 1998,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,193 1999,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,196 -2000,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,416 -2001,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,450 -2002,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,489 -2003,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,516 -2004,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,562 -2005,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,627 -2006,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,686 -2007,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,717 -2008,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,742 -2009,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,801 -2010,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,843 -2011,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,844 -2012,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,861 -2013,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,834 -2014,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,827 -2015,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,877 -2016,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,897 -2017,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,910 -2018,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,926 -2019,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,934 -2020,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,979 -2010,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,854 -2011,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,858 -2012,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,878 -2013,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,857 -2014,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,849 -2015,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,895 -2016,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,916 -2017,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,935 -2018,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,949 -2019,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,962 -2020,geoId/01061,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1007 1990,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23600 1991,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23986 1992,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23946 @@ -16569,38 +3867,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24640 1998,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24660 1999,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24749 -2000,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25288 -2001,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25081 -2002,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25056 -2003,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25150 -2004,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25164 -2005,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25291 -2006,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25505 -2007,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25519 -2008,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25816 -2009,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25760 -2010,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25841 -2011,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25813 -2012,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25956 -2013,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25732 -2014,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25645 -2015,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25633 -2016,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25468 -2017,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25359 -2018,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25226 -2019,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25217 -2020,geoId/01061,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25267 -2010,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,374 -2011,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,366 -2012,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,377 -2013,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,403 -2014,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,412 -2015,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,441 -2016,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,416 -2017,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,418 -2018,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,428 -2019,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,455 -2020,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,489 1990,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,90 1991,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,95 1992,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,91 @@ -16611,59 +3877,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,95 1998,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,92 1999,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,87 -2000,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,187 -2001,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2002,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2003,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,195 -2004,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,195 -2005,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2006,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190 -2007,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2008,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2009,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2010,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2011,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,187 -2012,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2013,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,205 -2014,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 -2015,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2016,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2017,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,212 -2018,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,220 -2019,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,240 -2020,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2000,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2001,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2002,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2003,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2004,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2005,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2006,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2007,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2008,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2009,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2010,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2011,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2012,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2013,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2014,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2015,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2016,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2017,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2018,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2019,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2020,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2010,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2011,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2012,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2013,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2014,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2015,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2016,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2017,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2018,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2019,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2020,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,150 1990,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1991,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 1992,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 @@ -16684,102 +3897,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3165 1998,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3189 1999,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3221 -2000,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2724 -2001,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2631 -2002,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2697 -2003,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2653 -2004,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2651 -2005,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2623 -2006,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2630 -2007,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2578 -2008,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2581 -2009,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2526 -2010,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2537 -2011,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2579 -2012,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2592 -2013,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2535 -2014,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2519 -2015,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2454 -2016,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2467 -2017,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2435 -2018,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2430 -2019,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2401 -2020,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2405 -2010,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2712 -2011,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2765 -2012,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2793 -2013,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2752 -2014,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2748 -2015,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2695 -2016,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2702 -2017,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2674 -2018,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2672 -2019,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2676 -2020,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2686 -2010,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2000,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2000,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2001,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2002,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,205 -2003,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2004,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,236 -2005,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,252 -2006,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,285 -2007,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,311 -2008,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,336 -2009,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,349 -2010,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,370 -2011,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,390 -2012,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,418 -2013,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,441 -2014,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,456 -2015,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,486 -2016,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,466 -2017,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,465 -2018,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,487 -2019,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,521 -2020,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,551 -2010,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23016 -2011,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22940 -2012,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23060 -2013,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22862 -2014,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22800 -2015,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22830 -2016,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22663 -2017,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22581 -2018,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22444 -2019,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22447 -2020,geoId/01061,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22482 1990,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20682 1991,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20978 1992,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20925 @@ -16790,27 +3907,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21362 1998,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21360 1999,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21423 -2000,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22179 -2001,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22049 -2002,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21913 -2003,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22047 -2004,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22034 -2005,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22169 -2006,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22335 -2007,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22384 -2008,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22640 -2009,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22631 -2010,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22665 -2011,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22579 -2012,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22671 -2013,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22460 -2014,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22375 -2015,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22381 -2016,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22231 -2017,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22151 -2018,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21993 -2019,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21961 -2020,geoId/01061,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21966 1990,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24 1991,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21 1992,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15 @@ -16821,38 +3917,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29 1998,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25 1999,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33 -2000,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,58 -2001,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,57 -2002,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52 -2003,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61 -2004,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,58 -2005,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,63 -2006,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,66 -2007,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,67 -2008,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,67 -2009,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,69 -2010,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,68 -2011,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77 -2012,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,86 -2013,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,89 -2014,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,86 -2015,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,96 -2016,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,108 -2017,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,126 -2018,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,128 -2019,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,136 -2020,geoId/01063,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,141 -2010,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 1990,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -16863,59 +3927,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1998,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 -2000,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01063,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 1990,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01063,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -16936,91 +3947,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,17 1998,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 1999,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 -2000,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2001,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2002,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2003,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2004,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2005,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2006,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2007,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2008,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2020,geoId/01063,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2010,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01063,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01063,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 1990,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1991,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1992,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 @@ -17031,38 +3957,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1998,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1999,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 -2000,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2005,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2006,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2008,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2009,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2010,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2011,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2012,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2013,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2014,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2016,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2017,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2018,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2019,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2020,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2010,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2013,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2014,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2015,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2016,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2017,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2019,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2020,geoId/01063,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 1990,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10140 1991,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10201 1992,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10191 @@ -17073,38 +3967,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9902 1998,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9818 1999,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9723 -2000,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9844 -2001,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9809 -2002,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9841 -2003,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9744 -2004,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9628 -2005,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9612 -2006,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9295 -2007,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9318 -2008,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9292 -2009,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9113 -2010,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8922 -2011,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8826 -2012,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8763 -2013,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8660 -2014,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8499 -2015,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8413 -2016,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8377 -2017,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8186 -2018,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8084 -2019,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7968 -2020,geoId/01063,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7849 -2010,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2016,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2019,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 1990,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1991,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1992,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 @@ -17115,59 +3977,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1998,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1999,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 -2000,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2004,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2000,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2010,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2016,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2017,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 1990,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -17188,102 +3997,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8044 1998,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7983 1999,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7911 -2000,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7926 -2001,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7903 -2002,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7924 -2003,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7850 -2004,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7793 -2005,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7751 -2006,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7473 -2007,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7558 -2008,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7534 -2009,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7425 -2010,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7299 -2011,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7240 -2012,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7167 -2013,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7070 -2014,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6972 -2015,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6897 -2016,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6837 -2017,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6632 -2018,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6585 -2019,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6470 -2020,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6363 -2010,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7319 -2011,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7269 -2012,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7199 -2013,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7103 -2014,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7004 -2015,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6933 -2016,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6869 -2017,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6665 -2018,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6615 -2019,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6509 -2020,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6403 -2010,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2002,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2004,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2006,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2007,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2008,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2009,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2010,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2012,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2013,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2014,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2015,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2016,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2017,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2019,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2020,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2010,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1597 -2011,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1556 -2012,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1565 -2013,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1543 -2014,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1488 -2015,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1473 -2016,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1493 -2017,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1508 -2018,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1457 -2019,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1453 -2020,geoId/01063,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1436 1990,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1970 1991,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1984 1992,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1970 @@ -17294,27 +4007,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1855 1998,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1832 1999,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1809 -2000,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1876 -2001,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1864 -2002,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1877 -2003,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1849 -2004,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1789 -2005,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1816 -2006,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1764 -2007,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1702 -2008,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1697 -2009,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1626 -2010,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1562 -2011,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1516 -2012,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1521 -2013,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1500 -2014,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1445 -2015,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1420 -2016,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1445 -2017,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1460 -2018,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1409 -2019,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1396 -2020,geoId/01063,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1378 1990,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,57 1991,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,56 1992,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,64 @@ -17325,38 +4017,9 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,75 1998,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,80 1999,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,88 -2000,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,161 -2001,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,163 -2002,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,156 -2003,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,155 -2004,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,153 -2005,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,135 2006,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,140 -2007,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,140 -2008,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,134 -2009,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,140 -2010,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,140 -2011,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,155 2012,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,156 -2013,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,172 -2014,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,195 -2015,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,187 -2016,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,203 -2017,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,215 -2018,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,200 -2019,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,209 -2020,geoId/01065,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,223 -2010,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 2012,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 1990,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -17367,59 +4030,11 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 2006,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 2012,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01065,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 2006,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 2012,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 2012,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 1990,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1992,geoId/01065,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 @@ -17440,91 +4055,14 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,49 1998,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,53 1999,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,56 -2000,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2001,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2002,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2003,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2004,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2005,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 2006,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2007,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2008,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2009,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2010,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2011,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 2012,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2017,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2018,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2019,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2020,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2010,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2011,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 2012,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2013,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2015,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2017,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2018,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2019,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2020,geoId/01065,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2010,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 2012,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 2006,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 2012,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01065,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2002,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 2006,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 2012,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01065,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 1990,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 1991,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1992,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15 @@ -17535,38 +4073,9 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 1998,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 1999,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28 -2000,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2001,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2002,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2003,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2004,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2005,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 2006,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2007,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2008,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2009,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2010,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2011,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 2012,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2013,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2014,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2015,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2016,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2017,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2018,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2019,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2020,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2010,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2011,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 2012,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2013,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2014,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2015,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2016,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2017,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,150 -2018,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2019,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2020,geoId/01065,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 1990,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15472 1991,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15663 1992,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15848 @@ -17577,38 +4086,9 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16367 1998,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16670 1999,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16782 -2000,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18033 -2001,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17705 -2002,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17220 -2003,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16961 -2004,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16612 -2005,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16487 2006,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16287 -2007,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16278 -2008,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16126 -2009,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15885 -2010,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15605 -2011,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15205 2012,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15210 -2013,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15077 -2014,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14852 -2015,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14829 -2016,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14642 -2017,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14597 -2018,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14573 -2019,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14460 -2020,geoId/01065,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14447 -2010,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2011,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 2012,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2013,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2014,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2015,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2016,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2017,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2018,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2019,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2020,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 1990,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20 1991,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20 1992,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 @@ -17619,59 +4099,11 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,16 1998,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18 1999,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15 -2000,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2001,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2002,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2003,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2004,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2005,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 2006,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2007,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2008,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2009,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 2012,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2000,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2001,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2002,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2004,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 2006,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2007,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2008,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2009,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2010,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2011,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 2012,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2013,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2014,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2017,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2018,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2020,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2010,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 2012,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2013,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2014,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2015,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2016,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2017,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2018,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2019,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2020,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 1990,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 1991,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 1992,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 @@ -17692,102 +4124,15 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9963 1998,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10191 1999,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10286 -2000,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10796 -2001,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10577 -2002,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10263 -2003,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10147 -2004,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9917 -2005,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9804 2006,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9679 -2007,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9594 -2008,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9572 -2009,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9416 -2010,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9253 -2011,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8989 2012,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8953 -2013,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8865 -2014,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8723 -2015,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8681 -2016,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8580 -2017,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8552 -2018,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8544 -2019,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8484 -2020,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8452 -2010,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9282 -2011,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9021 2012,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8985 -2013,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8901 -2014,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8764 -2015,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8727 -2016,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8624 -2017,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8589 -2018,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8586 -2019,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8530 -2020,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8500 -2010,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 2012,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 2006,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 2012,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2001,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2002,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2003,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2004,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2005,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 2006,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2007,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2008,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2009,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2010,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2011,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 2012,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2013,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2014,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2015,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2016,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2017,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2018,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2019,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2020,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2010,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6288 -2011,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6144 2012,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6175 -2013,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6128 -2014,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6050 -2015,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6072 -2016,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5975 -2017,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5955 -2018,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5937 -2019,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5883 -2020,geoId/01065,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5898 1990,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6249 1991,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6308 1992,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6341 @@ -17798,27 +4143,8 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6378 1998,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6450 1999,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6471 -2000,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7110 -2001,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7004 -2002,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6841 -2003,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6695 -2004,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6581 -2005,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6552 2006,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6483 -2007,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6557 -2008,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6428 -2009,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6342 -2010,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6227 -2011,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6081 2012,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6108 -2013,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6063 -2014,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5975 -2015,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5986 -2016,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5892 -2017,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5883 -2018,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5859 -2019,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5800 -2020,geoId/01065,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5803 1990,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,92 1991,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,90 1992,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,91 @@ -17829,38 +4155,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,122 1998,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,121 1999,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,141 -2000,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,250 -2001,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,271 -2002,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,270 -2003,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,314 -2004,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,339 -2005,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,345 -2006,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,366 -2007,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,358 -2008,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,352 -2009,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,381 -2010,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,394 -2011,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,391 -2012,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,400 -2013,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,422 -2014,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,420 -2015,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,439 -2016,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,429 -2017,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,455 -2018,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,452 -2019,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,464 -2020,geoId/01067,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,464 -2010,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 1990,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1992,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 @@ -17871,59 +4165,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1998,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 -2000,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01067,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2012,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2019,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 1990,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1991,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1992,geoId/01067,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 @@ -17944,91 +4185,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,39 1998,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,37 1999,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,43 -2000,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2001,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2002,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2003,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2004,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2005,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2006,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2007,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2008,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2009,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2010,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2011,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2012,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2014,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2015,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2016,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2017,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2018,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2019,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2020,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2010,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2011,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2012,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2013,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2015,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2016,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2017,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2018,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2019,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2020,geoId/01067,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2010,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01067,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01067,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 1990,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,50 1991,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,53 1992,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51 @@ -18039,38 +4195,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,78 1998,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,81 1999,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,93 -2000,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2001,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237 -2002,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,233 -2003,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,275 -2004,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,298 -2005,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,299 -2006,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,309 -2007,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,295 -2008,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,288 -2009,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,309 -2010,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,323 -2011,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,316 -2012,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,318 -2013,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,334 -2014,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,329 -2015,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,345 -2016,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,338 -2017,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,359 -2018,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,346 -2019,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,351 -2020,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,351 -2010,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,327 -2011,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,322 -2012,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,323 -2013,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,340 -2014,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,334 -2015,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,351 -2016,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,345 -2017,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,366 -2018,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,354 -2019,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,363 -2020,geoId/01067,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,362 1990,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15325 1991,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15550 1992,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15492 @@ -18081,38 +4205,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15577 1998,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15677 1999,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15646 -2000,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16091 -2001,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16087 -2002,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16177 -2003,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16249 -2004,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16353 -2005,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16407 -2006,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16587 -2007,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16750 -2008,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16777 -2009,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16862 -2010,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16899 -2011,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16986 -2012,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16752 -2013,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16706 -2014,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16654 -2015,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16658 -2016,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16633 -2017,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16650 -2018,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16648 -2019,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16661 -2020,geoId/01067,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16759 -2010,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2011,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2012,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2013,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2014,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2015,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2016,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2017,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2018,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2019,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2020,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 1990,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29 1991,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29 1992,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27 @@ -18123,59 +4215,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,25 1998,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 1999,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,26 -2000,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2001,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2002,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2003,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2004,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2005,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2006,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2007,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2008,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2009,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2010,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2011,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2012,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2013,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2014,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2015,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2016,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2017,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2018,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2019,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2000,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2004,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2006,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2007,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2008,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2009,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2010,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2011,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2012,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2013,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2014,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2015,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2016,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2017,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2018,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2019,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2020,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2010,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2011,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2012,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2013,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2014,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2015,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2016,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2017,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2018,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2019,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2020,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 1990,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1991,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 1992,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 @@ -18196,102 +4235,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5744 1998,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5803 1999,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5838 -2000,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5283 -2001,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5295 -2002,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5285 -2003,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5188 -2004,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5232 -2005,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5163 -2006,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5140 -2007,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5154 -2008,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5096 -2009,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4981 -2010,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4910 -2011,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4848 -2012,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4773 -2013,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4680 -2014,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4570 -2015,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4553 -2016,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4517 -2017,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4462 -2018,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4418 -2019,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4374 -2020,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4326 -2010,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4998 -2011,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4965 -2012,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4887 -2013,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4800 -2014,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4696 -2015,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4690 -2016,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4645 -2017,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4613 -2018,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4559 -2019,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4540 -2020,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4466 -2010,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2000,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2001,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2002,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2003,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2004,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2005,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2006,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2007,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2008,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2009,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2010,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2011,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2012,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2013,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,195 -2014,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,206 -2015,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2016,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 -2017,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,248 -2018,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,242 -2019,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,275 -2020,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,256 -2010,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11873 -2011,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11990 -2012,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11836 -2013,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11874 -2014,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11925 -2015,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11948 -2016,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11960 -2017,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12034 -2018,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12072 -2019,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12120 -2020,geoId/01067,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12265 1990,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9916 1991,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10011 1992,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9943 @@ -18302,27 +4245,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9801 1998,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9844 1999,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9775 -2000,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10662 -2001,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10641 -2002,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10739 -2003,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10896 -2004,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10931 -2005,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11028 -2006,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11224 -2007,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11367 -2008,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11440 -2009,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11628 -2010,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11729 -2011,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11817 -2012,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11658 -2013,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11696 -2014,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11736 -2015,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11755 -2016,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11751 -2017,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11801 -2018,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11849 -2019,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11866 -2020,geoId/01067,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12028 1990,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,465 1991,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,478 1992,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,505 @@ -18333,38 +4255,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,739 1998,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,787 1999,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,864 -2000,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1126 -2001,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1254 -2002,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1412 -2003,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1587 -2004,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1739 -2005,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1940 -2006,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2106 -2007,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2333 -2008,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2551 -2009,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2756 -2010,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3022 -2011,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3096 -2012,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3180 -2013,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3226 -2014,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3318 -2015,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3338 -2016,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3374 -2017,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3462 -2018,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3571 -2019,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3637 -2020,geoId/01069,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3713 -2010,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 -2011,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2012,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2013,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 -2014,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,220 -2015,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,214 -2016,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,238 -2017,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,227 -2018,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,227 -2019,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,229 -2020,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,265 1990,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1991,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1992,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 @@ -18375,59 +4265,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1998,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1999,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 -2000,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2004,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2005,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2006,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2007,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2008,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2009,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2010,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2011,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2012,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2013,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2014,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2015,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2016,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2017,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2018,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2019,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2020,geoId/01069,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2000,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2005,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2006,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2007,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2008,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2009,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2010,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2011,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2012,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2015,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2019,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2020,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2010,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2011,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2012,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2013,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2014,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2015,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2016,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2017,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2019,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2020,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 1990,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27 1991,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28 1992,geoId/01069,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,35 @@ -18448,91 +4285,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,81 1998,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,83 1999,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,90 -2000,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2001,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2002,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2003,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2004,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2005,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2006,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2007,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2008,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2009,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2010,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,248 -2011,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,256 -2012,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,256 -2013,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,277 -2014,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,260 -2015,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,267 -2016,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,278 -2017,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,287 -2018,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,318 -2019,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,308 -2020,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,319 -2010,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,346 -2011,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,356 -2012,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,349 -2013,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,360 -2014,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,353 -2015,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,361 -2016,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,376 -2017,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,386 -2018,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,416 -2019,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,421 -2020,geoId/01069,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,425 -2010,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2011,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2012,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2013,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2015,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2016,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2017,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2018,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2019,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2020,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2000,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2009,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2010,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2018,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2020,geoId/01069,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2000,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2001,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2002,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2003,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2004,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2005,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2006,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2007,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2008,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2009,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,187 -2010,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2011,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,205 -2012,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2013,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2014,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2015,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2016,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,205 -2017,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2018,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,195 -2019,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2020,geoId/01069,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 1990,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,369 1991,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,378 1992,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,403 @@ -18543,38 +4295,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,601 1998,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,651 1999,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,713 -2000,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,907 -2001,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1008 -2002,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1137 -2003,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1271 -2004,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1389 -2005,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1533 -2006,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1662 -2007,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1853 -2008,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2021 -2009,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2197 -2010,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2412 -2011,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2472 -2012,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2548 -2013,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2579 -2014,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2659 -2015,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2676 -2016,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2667 -2017,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2761 -2018,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2830 -2019,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2887 -2020,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2912 -2010,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2585 -2011,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2651 -2012,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2730 -2013,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2745 -2014,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2827 -2015,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2833 -2016,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2840 -2017,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2927 -2018,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2998 -2019,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3058 -2020,geoId/01069,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3097 1990,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,81146 1991,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,81880 1992,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,82749 @@ -18585,38 +4305,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,84394 1998,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,84826 1999,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,85252 -2000,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,87817 -2001,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,88236 -2002,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,88528 -2003,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,89734 -2004,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,90854 -2005,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,91963 -2006,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,93740 -2007,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,95394 -2008,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,96632 -2009,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,97744 -2010,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,98778 -2011,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,99413 -2012,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100230 -2013,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100465 -2014,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100898 -2015,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100988 -2016,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100981 -2017,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,101010 -2018,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,101372 -2019,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,102603 -2020,geoId/01069,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,102867 -2010,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,955 -2011,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,961 -2012,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1024 -2013,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1006 -2014,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1026 -2015,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1039 -2016,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1046 -2017,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1094 -2018,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1085 -2019,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1117 -2020,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1130 1990,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,283 1991,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,286 1992,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,280 @@ -18627,59 +4315,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,270 1998,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,265 1999,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,261 -2000,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,324 -2001,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,368 -2002,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,361 -2003,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,347 -2004,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,339 -2005,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,373 -2006,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,386 -2007,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,371 -2008,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,365 -2009,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,372 -2010,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,394 -2011,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,391 -2012,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,409 -2013,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,394 -2014,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,389 -2015,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,389 -2016,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,386 -2017,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,412 -2018,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,413 -2019,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,432 -2020,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,431 -2000,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,551 -2001,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,598 -2002,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,583 -2003,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,603 -2004,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,622 -2005,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,681 -2006,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,696 -2007,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,717 -2008,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,760 -2009,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,767 -2010,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,816 -2011,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,846 -2012,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,872 -2013,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,867 -2014,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,897 -2015,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,923 -2016,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,982 -2017,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1042 -2018,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1073 -2019,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1133 -2020,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1152 -2010,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1065 -2011,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1121 -2012,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1164 -2013,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1189 -2014,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1209 -2015,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1256 -2016,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1336 -2017,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1406 -2018,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1460 -2019,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1545 -2020,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1581 1990,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,446 1991,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,459 1992,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,480 @@ -18700,102 +4335,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20936 1998,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21183 1999,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21463 -2000,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21844 -2001,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21983 -2002,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22182 -2003,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22762 -2004,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23249 -2005,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23709 -2006,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24206 -2007,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24793 -2008,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25403 -2009,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25907 -2010,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26152 -2011,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26464 -2012,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26978 -2013,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27131 -2014,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27568 -2015,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27590 -2016,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27788 -2017,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27900 -2018,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28313 -2019,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28825 -2020,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29243 -2010,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26881 -2011,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27262 -2012,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27836 -2013,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28038 -2014,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28501 -2015,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28518 -2016,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28797 -2017,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28955 -2018,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29435 -2019,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30001 -2020,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30440 -2010,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2011,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2012,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2013,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2014,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2015,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2016,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2017,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2018,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2019,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2020,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2000,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2003,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2004,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2006,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2007,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2008,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2009,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2011,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2012,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2014,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2015,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2016,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2017,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2018,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2019,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2000,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,663 -2001,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,730 -2002,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,777 -2003,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,849 -2004,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,950 -2005,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1003 -2006,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1072 -2007,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1172 -2008,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1242 -2009,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1358 -2010,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1403 -2011,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1492 -2012,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1590 -2013,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1656 -2014,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1718 -2015,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1740 -2016,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1841 -2017,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1901 -2018,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1974 -2019,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2072 -2020,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2111 -2010,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71211 -2011,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71488 -2012,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71731 -2013,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71826 -2014,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71791 -2015,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71826 -2016,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71576 -2017,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71391 -2018,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71276 -2019,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71917 -2020,geoId/01069,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71733 1990,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,61437 1991,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,61906 1992,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,62391 @@ -18806,27 +4345,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,62627 1998,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,62806 1999,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,62961 -2000,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64421 -2001,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64542 -2002,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64608 -2003,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65155 -2004,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65673 -2005,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66166 -2006,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67349 -2007,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68308 -2008,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68829 -2009,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69308 -2010,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69971 -2011,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70176 -2012,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70332 -2013,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70363 -2014,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70273 -2015,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70296 -2016,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69935 -2017,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69704 -2018,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69541 -2019,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70083 -2020,geoId/01069,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69870 1990,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,208 1991,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,209 1992,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,220 @@ -18837,38 +4355,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,330 1998,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,357 1999,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,383 -2000,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,611 -2001,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,682 -2002,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,748 -2003,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,839 -2004,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,896 -2005,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,969 -2006,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1074 -2007,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1134 -2008,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1253 -2009,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1284 -2010,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1340 -2011,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1382 -2012,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1373 -2013,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1424 -2014,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1481 -2015,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1482 -2016,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1480 -2017,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1529 -2018,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1510 -2019,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1584 -2020,geoId/01071,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1606 -2010,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2011,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 -2012,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2013,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2014,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 -2015,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2016,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2017,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172 -2018,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2019,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2020,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 1990,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 1991,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1992,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 @@ -18879,59 +4365,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 1998,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18 1999,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,17 -2000,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2001,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2002,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2003,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2004,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2005,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2006,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2007,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2008,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2009,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2010,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2011,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2012,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2013,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134 -2014,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2015,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2016,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2017,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134 -2018,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2019,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2020,geoId/01071,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2000,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2005,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2006,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2007,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2008,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2009,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2010,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2011,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2012,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2014,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2015,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2016,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2017,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2018,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2019,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2010,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2011,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2012,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2013,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2014,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2015,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2016,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2017,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2018,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2019,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2020,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 1990,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1992,geoId/01071,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 @@ -18952,91 +4385,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15 1998,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 1999,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15 -2000,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2001,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2002,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2004,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2005,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2006,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2007,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2008,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2009,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2010,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2011,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2012,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2013,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2014,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2015,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2016,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2017,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2018,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2020,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2010,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2011,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2012,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2013,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2014,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2015,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2016,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2017,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2018,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2019,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2020,geoId/01071,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2010,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2011,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2012,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2000,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2007,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2008,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2009,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2010,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2012,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2020,geoId/01071,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2000,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2002,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2003,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2004,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2005,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2006,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2007,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2008,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2009,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2010,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2011,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2012,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2013,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2014,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2015,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2016,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2017,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2018,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2019,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2020,geoId/01071,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 1990,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,184 1991,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,186 1992,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,196 @@ -19047,38 +4395,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,299 1998,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,323 1999,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,350 -2000,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,550 -2001,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,619 -2002,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,661 -2003,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,720 -2004,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,763 -2005,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,756 -2006,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,830 -2007,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,876 -2008,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,949 -2009,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,966 -2010,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1003 -2011,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1046 -2012,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1037 -2013,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1080 -2014,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1121 -2015,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1121 -2016,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1126 -2017,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1163 -2018,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1137 -2019,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1200 -2020,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1207 -2010,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1068 -2011,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1109 -2012,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1098 -2013,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1142 -2014,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1189 -2015,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1179 -2016,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1191 -2017,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1234 -2018,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1210 -2019,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1274 -2020,geoId/01071,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1294 1990,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47694 1991,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48157 1992,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48603 @@ -19089,38 +4405,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,50374 1998,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,50982 1999,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,51152 -2000,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53368 -2001,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53315 -2002,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53010 -2003,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52872 -2004,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52629 -2005,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52363 -2006,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52409 -2007,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52199 -2008,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52272 -2009,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52177 -2010,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,51867 -2011,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,51858 -2012,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,51734 -2013,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,51562 -2014,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,51111 -2015,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,50747 -2016,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,50578 -2017,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,50336 -2018,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,50139 -2019,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,50088 -2020,geoId/01071,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,49976 -2010,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1624 -2011,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1620 -2012,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1636 -2013,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1597 -2014,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1601 -2015,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1636 -2016,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1610 -2017,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1611 -2018,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1635 -2019,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1639 -2020,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1638 1990,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1004 1991,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1015 1992,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,974 @@ -19131,59 +4415,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,867 1998,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,832 1999,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,800 -2000,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,932 -2001,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,875 -2002,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,835 -2003,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,816 -2004,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,826 -2005,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,757 -2006,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,757 -2007,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,735 -2008,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,736 -2009,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,714 -2010,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,680 -2011,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,673 -2012,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,688 -2013,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,670 -2014,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,675 -2015,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,693 -2016,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,686 -2017,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,693 -2018,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,706 -2019,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,700 -2020,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,698 -2000,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2001,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2002,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2003,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2004,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2005,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2006,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2007,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,150 -2008,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2009,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2010,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2011,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2012,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2013,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,214 -2014,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2015,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,226 -2016,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,221 -2017,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,229 -2018,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,242 -2019,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,244 -2020,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243 -2010,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,240 -2011,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,254 -2012,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,274 -2013,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,299 -2014,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,284 -2015,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,300 -2016,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,298 -2017,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,312 -2018,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,327 -2019,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,331 -2020,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,334 1990,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,89 1991,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,89 1992,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,92 @@ -19204,102 +4435,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2284 1998,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2332 1999,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2368 -2000,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2003 -2001,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2010 -2002,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1930 -2003,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1954 -2004,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1903 -2005,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1922 -2006,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1851 -2007,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1855 -2008,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1843 -2009,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1816 -2010,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1783 -2011,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1749 -2012,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1733 -2013,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1709 -2014,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1721 -2015,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1708 -2016,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1691 -2017,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1706 -2018,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1717 -2019,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1694 -2020,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1683 -2010,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2081 -2011,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2057 -2012,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2045 -2013,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2044 -2014,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2048 -2015,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2043 -2016,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2018 -2017,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2064 -2018,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2099 -2019,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2081 -2020,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2070 -2010,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2011,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2012,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2013,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2014,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2015,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2016,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2017,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2018,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2019,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2020,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2000,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2004,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2005,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2007,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2009,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2020,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2000,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,976 -2001,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1012 -2002,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1048 -2003,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1048 -2004,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1075 -2005,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1097 -2006,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1147 -2007,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1163 -2008,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1166 -2009,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1275 -2010,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1273 -2011,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1290 -2012,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1301 -2013,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1301 -2014,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1275 -2015,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1314 -2016,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1307 -2017,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1326 -2018,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1365 -2019,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1373 -2020,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1375 -2010,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49151 -2011,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49173 -2012,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49038 -2013,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48878 -2014,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48410 -2015,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48042 -2016,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47914 -2017,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47635 -2018,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47396 -2019,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47373 -2020,geoId/01071,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47263 1990,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,44617 1991,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,45013 1992,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,45448 @@ -19310,27 +4445,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,47111 1998,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,47700 1999,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,47866 -2000,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49321 -2001,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49276 -2002,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49051 -2003,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48903 -2004,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48663 -2005,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48436 -2006,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48475 -2007,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48279 -2008,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48341 -2009,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48192 -2010,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47930 -2011,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47932 -2012,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47785 -2013,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47640 -2014,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47197 -2015,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46778 -2016,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46645 -2017,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46352 -2018,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46079 -2019,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46047 -2020,geoId/01071,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45944 1990,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2779 1991,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2778 1992,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2902 @@ -19341,38 +4455,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4016 1998,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4322 1999,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4587 -2000,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10708 -2001,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11718 -2002,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13178 -2003,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14618 -2004,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16048 -2005,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17604 -2006,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19344 -2007,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20854 -2008,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22401 -2009,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23962 -2010,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25332 -2011,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25175 -2012,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24502 -2013,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24060 -2014,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23862 -2015,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24091 -2016,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24563 -2017,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25112 -2018,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,25840 -2019,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26441 -2020,geoId/01073,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,26824 -2010,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1227 -2011,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1090 -2012,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,995 -2013,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,935 -2014,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,815 -2015,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,767 -2016,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,741 -2017,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,709 -2018,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,737 -2019,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,755 -2020,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,766 1990,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28 1991,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 1992,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29 @@ -19383,59 +4465,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,40 1998,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38 1999,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,46 -2000,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,228 -2001,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,278 -2002,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,375 -2003,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,404 -2004,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,507 -2005,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,511 -2006,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,576 -2007,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,652 -2008,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,706 -2009,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,809 -2010,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,935 -2011,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,827 -2012,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,752 -2013,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,685 -2014,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,589 -2015,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,553 -2016,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,538 -2017,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,529 -2018,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,542 -2019,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,540 -2020,geoId/01073,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,552 -2000,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2001,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2002,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2003,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2004,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2005,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2006,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2007,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2008,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2009,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2010,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2011,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2012,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2013,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2014,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2015,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2016,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2017,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2018,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2019,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2020,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2010,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2011,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2012,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,202 -2013,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2014,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,194 -2015,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2016,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2017,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2018,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,231 -2019,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237 -2020,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 1990,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,88 1991,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,77 1992,geoId/01073,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,89 @@ -19456,91 +4485,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,419 1998,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,437 1999,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,462 -2000,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1226 -2001,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1283 -2002,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1319 -2003,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1433 -2004,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1436 -2005,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1691 -2006,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1752 -2007,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1816 -2008,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2017 -2009,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2172 -2010,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2330 -2011,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2232 -2012,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2178 -2013,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2105 -2014,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2039 -2015,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2063 -2016,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2034 -2017,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1960 -2018,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2011 -2019,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2041 -2020,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2126 -2010,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2642 -2011,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2527 -2012,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2463 -2013,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2394 -2014,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2296 -2015,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2291 -2016,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2290 -2017,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2200 -2018,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2259 -2019,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2325 -2020,geoId/01073,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2400 -2010,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,371 -2011,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,329 -2012,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,273 -2013,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2014,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,240 -2015,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,219 -2016,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,223 -2017,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,230 -2018,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2019,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,225 -2020,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,253 -2000,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2001,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2002,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2003,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2004,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,220 -2005,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2006,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,187 -2007,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,202 -2008,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2009,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,252 -2010,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,300 -2011,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2012,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,202 -2013,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2014,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2015,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2016,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 -2017,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2018,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2019,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2020,geoId/01073,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2000,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2001,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,303 -2002,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,365 -2003,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,428 -2004,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,442 -2005,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,342 -2006,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,442 -2007,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,477 -2008,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,463 -2009,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,521 -2010,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,627 -2011,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,593 -2012,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,563 -2013,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,554 -2014,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,508 -2015,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,476 -2016,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,471 -2017,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,468 -2018,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,485 -2019,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,518 -2020,geoId/01073,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,518 1990,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2273 1991,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2307 1992,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2414 @@ -19551,38 +4495,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3441 1998,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3727 1999,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3965 -2000,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8843 -2001,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9594 -2002,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10794 -2003,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12025 -2004,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13307 -2005,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14793 -2006,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16266 -2007,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17571 -2008,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18867 -2009,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20059 -2010,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21008 -2011,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21150 -2012,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20726 -2013,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20452 -2014,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20466 -2015,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20758 -2016,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21262 -2017,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21878 -2018,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22528 -2019,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23063 -2020,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23332 -2010,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21513 -2011,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21645 -2012,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21188 -2013,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20910 -2014,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20879 -2015,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21150 -2016,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21642 -2017,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22263 -2018,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22938 -2019,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23491 -2020,geoId/01073,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23768 1990,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,649330 1991,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,653350 1992,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,656453 @@ -19593,38 +4505,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,656186 1998,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,655717 1999,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,652835 -2000,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,651325 -2001,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,648479 -2002,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,644340 -2003,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,642895 -2004,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,639975 -2005,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,637315 -2006,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,636549 -2007,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,634309 -2008,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,634109 -2009,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,634479 -2010,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,632898 -2011,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,633000 -2012,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,633681 -2013,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,635374 -2014,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,636323 -2015,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,636626 -2016,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,635944 -2017,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,634780 -2018,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,633832 -2019,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,632098 -2020,geoId/01073,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,628518 -2010,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3835 -2011,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3843 -2012,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3881 -2013,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3882 -2014,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3992 -2015,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3967 -2016,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3942 -2017,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3988 -2018,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3947 -2019,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3915 -2020,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3924 1990,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,870 1991,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,844 1992,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,831 @@ -19635,59 +4515,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,772 1998,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,760 1999,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,733 -2000,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1381 -2001,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1390 -2002,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1390 -2003,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1415 -2004,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1409 -2005,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1531 -2006,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1482 -2007,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1511 -2008,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1564 -2009,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1522 -2010,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1465 -2011,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1466 -2012,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1432 -2013,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1427 -2014,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1451 -2015,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1420 -2016,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1387 -2017,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1370 -2018,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1318 -2019,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1289 -2020,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1288 -2000,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6082 -2001,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6172 -2002,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6530 -2003,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6779 -2004,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7355 -2005,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7759 -2006,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8114 -2007,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8486 -2008,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8632 -2009,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9031 -2010,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9244 -2011,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9455 -2012,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10000 -2013,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10197 -2014,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10355 -2015,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10626 -2016,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10958 -2017,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11337 -2018,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11632 -2019,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11772 -2020,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11898 -2010,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10734 -2011,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11046 -2012,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11650 -2013,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11940 -2014,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12196 -2015,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12552 -2016,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12976 -2017,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13443 -2018,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13807 -2019,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14066 -2020,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14258 1990,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3198 1991,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3286 1992,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3349 @@ -19708,102 +4535,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,242286 1998,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,243526 1999,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,244152 -2000,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,260667 -2001,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,261809 -2002,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262405 -2003,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264131 -2004,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,265438 -2005,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,267068 -2006,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,269713 -2007,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270823 -2008,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,272734 -2009,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,275006 -2010,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,276175 -2011,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,277448 -2012,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,278801 -2013,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,281105 -2014,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,282328 -2015,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,283723 -2016,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,284024 -2017,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,284408 -2018,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,284421 -2019,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,284489 -2020,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,284178 -2010,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,279181 -2011,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,280640 -2012,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,282163 -2013,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,284619 -2014,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,286068 -2015,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,287652 -2016,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,288079 -2017,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,288714 -2018,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,288902 -2019,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,289179 -2020,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,288973 -2010,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,332 -2011,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,309 -2012,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,355 -2013,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,394 -2014,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,393 -2015,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,384 -2016,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,403 -2017,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,398 -2018,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,411 -2019,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,418 -2020,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,444 -2000,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2001,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2002,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2003,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2004,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2005,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2006,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2007,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2008,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2009,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2010,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2011,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2012,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2013,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2014,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2015,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2016,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2017,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 -2018,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2019,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2020,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2000,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3993 -2001,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4110 -2002,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4125 -2003,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4291 -2004,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4438 -2005,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4645 -2006,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4744 -2007,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4893 -2008,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5168 -2009,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5469 -2010,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5804 -2011,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6079 -2012,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6327 -2013,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6576 -2014,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6922 -2015,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7196 -2016,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7390 -2017,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7742 -2018,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7980 -2019,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8265 -2020,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8409 -2010,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,344986 -2011,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,343580 -2012,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,342380 -2013,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,341536 -2014,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,341014 -2015,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,339681 -2016,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,338401 -2017,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,336448 -2018,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,335202 -2019,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,333268 -2020,geoId/01073,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,329844 1990,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,416692 1991,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,418303 1992,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,418584 @@ -19814,27 +4545,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,409421 1998,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,407759 1999,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,404269 -2000,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,379077 -2001,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,374849 -2002,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,369745 -2003,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,366142 -2004,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,361187 -2005,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,356212 -2006,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,352344 -2007,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,348440 -2008,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,345831 -2009,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,343292 -2010,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,340066 -2011,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,338428 -2012,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,336974 -2013,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,335898 -2014,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,335094 -2015,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,333486 -2016,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,332004 -2017,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,329744 -2018,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,328310 -2019,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,326106 -2020,geoId/01073,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,322562 1990,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,71 1991,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,74 1992,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,66 @@ -19845,38 +4555,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,104 1998,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,116 1999,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,126 -2000,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,207 -2001,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,206 -2002,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,204 -2003,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,202 -2004,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,200 -2005,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,187 -2006,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,181 -2007,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,183 -2008,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,176 -2009,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,193 -2010,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,179 -2011,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,198 -2012,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,204 -2013,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,204 -2014,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,208 -2015,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,203 -2016,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,213 -2017,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,218 -2018,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,233 -2019,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,262 -2020,geoId/01075,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,275 -2010,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 1990,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -19887,59 +4565,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01075,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 1990,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1991,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1992,geoId/01075,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -19960,91 +4585,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1998,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1999,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 -2000,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2004,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2009,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2010,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2012,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01075,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01075,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2019,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01075,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 1990,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,66 1991,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,70 1992,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,64 @@ -20055,38 +4595,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,100 1998,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,111 1999,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,119 -2000,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2001,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2002,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2003,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2004,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2005,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2006,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2007,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2008,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2009,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2010,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2011,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2012,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2013,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2014,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2015,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2016,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172 -2017,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2018,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2019,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 -2020,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2010,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2011,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2012,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172 -2013,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2014,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2015,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2016,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2017,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2018,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2019,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2020,geoId/01075,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 1990,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15635 1991,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15662 1992,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15621 @@ -20097,38 +4605,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15853 1998,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15896 1999,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15908 -2000,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15716 -2001,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15426 -2002,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15242 -2003,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15056 -2004,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14875 -2005,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14822 -2006,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14635 -2007,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14718 -2008,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14623 -2009,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14496 -2010,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14317 -2011,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14094 -2012,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14046 -2013,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14010 -2014,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13863 -2015,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13728 -2016,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13713 -2017,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13667 -2018,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13645 -2019,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13555 -2020,geoId/01075,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13489 -2010,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2011,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2012,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2013,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2014,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2015,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2016,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2017,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2018,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2019,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2020,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 1990,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23 1991,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23 1992,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22 @@ -20139,59 +4615,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18 1998,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,17 1999,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,16 -2000,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2003,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2006,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2000,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2014,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2016,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2017,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2019,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2020,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 1990,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1991,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1992,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 @@ -20212,102 +4635,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2014 1998,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2038 1999,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2061 -2000,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1882 -2001,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1818 -2002,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1803 -2003,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1752 -2004,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1734 -2005,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1745 -2006,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1723 -2007,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1752 -2008,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1718 -2009,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1659 -2010,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1625 -2011,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1572 -2012,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1562 -2013,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1546 -2014,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1523 -2015,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1465 -2016,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1451 -2017,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1456 -2018,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1427 -2019,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1409 -2020,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1401 -2010,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1703 -2011,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1680 -2012,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1659 -2013,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1652 -2014,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1622 -2015,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1583 -2016,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1559 -2017,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1574 -2018,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1548 -2019,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1528 -2020,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1519 -2010,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2001,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2002,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2003,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2004,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2005,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2006,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2007,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2008,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2009,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2010,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2011,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2012,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2013,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,194 -2014,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2015,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2016,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2017,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2018,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,231 -2019,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 -2020,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,225 -2010,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12648 -2011,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12468 -2012,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12430 -2013,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12414 -2014,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12295 -2015,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12212 -2016,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12210 -2017,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12155 -2018,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12161 -2019,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12091 -2020,geoId/01075,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12025 1990,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13745 1991,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13731 1992,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13679 @@ -20318,27 +4645,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13810 1998,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13830 1999,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13820 -2000,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13739 -2001,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13507 -2002,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13333 -2003,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13188 -2004,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13016 -2005,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12934 -2006,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12751 -2007,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12790 -2008,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12714 -2009,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12638 -2010,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12494 -2011,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12306 -2012,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12264 -2013,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12232 -2014,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12114 -2015,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12008 -2016,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12010 -2017,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11952 -2018,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11947 -2019,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11881 -2020,geoId/01075,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11818 1990,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,315 1991,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,321 1992,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,344 @@ -20349,38 +4655,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,509 1998,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,549 1999,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,583 -2000,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,894 -2001,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,999 -2002,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1056 -2003,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1153 -2004,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1269 -2005,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1394 -2006,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1530 -2007,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1690 -2008,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1835 -2009,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2007 -2010,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2094 -2011,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2129 -2012,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2066 -2013,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2134 -2014,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2159 -2015,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2241 -2016,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2325 -2017,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2470 -2018,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2594 -2019,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2657 -2020,geoId/01077,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2765 -2010,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2011,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2012,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2013,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2014,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2015,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2016,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2017,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2018,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2019,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2020,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 1990,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1991,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1992,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 @@ -20391,59 +4665,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1998,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1999,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 -2000,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2012,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2013,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2014,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2015,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2016,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2017,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2018,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2019,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2020,geoId/01077,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2000,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2005,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2006,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2007,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2008,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2009,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2010,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2011,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2012,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2013,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2014,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2015,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2016,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2017,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2018,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2019,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2010,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2011,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2013,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2014,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2015,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2016,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2017,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2018,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2019,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2020,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 1990,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1991,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1992,geoId/01077,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 @@ -20464,91 +4685,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29 1998,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29 1999,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29 -2000,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2001,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2002,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2003,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2004,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2005,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2006,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2007,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2008,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2009,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2010,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2011,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2012,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2013,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128 -2014,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2015,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2016,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2017,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2018,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2019,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2020,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2010,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2011,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2012,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2013,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,187 -2014,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 -2015,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190 -2016,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2017,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2018,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,242 -2019,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,234 -2020,geoId/01077,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,251 -2010,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2015,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2016,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2017,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2020,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2000,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2007,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2008,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2009,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2019,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01077,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2000,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2002,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2004,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2005,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2006,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2007,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2008,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2009,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2010,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2011,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2012,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2013,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2014,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2015,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2016,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2017,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2018,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2019,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2020,geoId/01077,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 1990,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,285 1991,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,292 1992,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,315 @@ -20559,38 +4695,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,476 1998,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,513 1999,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,545 -2000,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,819 -2001,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,922 -2002,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,965 -2003,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1033 -2004,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1128 -2005,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1203 -2006,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1304 -2007,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1432 -2008,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1554 -2009,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1711 -2010,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1768 -2011,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1772 -2012,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1707 -2013,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1763 -2014,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1765 -2015,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1842 -2016,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1916 -2017,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2039 -2018,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2144 -2019,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2197 -2020,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2274 -2010,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1858 -2011,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1870 -2012,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1808 -2013,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1859 -2014,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1859 -2015,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1943 -2016,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2029 -2017,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2160 -2018,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2256 -2019,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2313 -2020,geoId/01077,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2393 1990,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79566 1991,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,80434 1992,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,81236 @@ -20601,38 +4705,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,83400 1998,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,83657 1999,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,83744 -2000,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,87145 -2001,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,86792 -2002,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,86571 -2003,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,86950 -2004,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,87463 -2005,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,87964 -2006,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,88764 -2007,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,89417 -2008,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,90367 -2009,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,90519 -2010,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,90644 -2011,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,90486 -2012,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,90621 -2013,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,90604 -2014,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,90890 -2015,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,90283 -2016,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,90196 -2017,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,90231 -2018,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,90139 -2019,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,90371 -2020,geoId/01077,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,90603 -2010,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,819 -2011,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,824 -2012,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,844 -2013,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,829 -2014,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,860 -2015,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,859 -2016,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,843 -2017,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,861 -2018,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,865 -2019,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,897 -2020,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,883 1990,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,162 1991,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,166 1992,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,160 @@ -20643,59 +4715,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,167 1998,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,154 1999,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,153 -2000,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,220 -2001,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2002,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,249 -2003,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,251 -2004,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,258 -2005,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270 -2006,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,289 -2007,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,309 -2008,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,313 -2009,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,309 -2010,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,338 -2011,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,347 -2012,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,352 -2013,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,353 -2014,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,361 -2015,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,358 -2016,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,328 -2017,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,330 -2018,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,343 -2019,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,341 -2020,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,336 -2000,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,314 -2001,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,346 -2002,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,390 -2003,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,423 -2004,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,456 -2005,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,490 -2006,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,542 -2007,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,561 -2008,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,609 -2009,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,662 -2010,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,677 -2011,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,682 -2012,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,724 -2013,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,709 -2014,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,713 -2015,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,700 -2016,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,713 -2017,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,727 -2018,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,720 -2019,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,762 -2020,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,789 -2010,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,820 -2011,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,831 -2012,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,885 -2013,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,866 -2014,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,874 -2015,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,880 -2016,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,905 -2017,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,916 -2018,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,920 -2019,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,965 -2020,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1002 1990,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,195 1991,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,198 1992,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,211 @@ -20716,102 +4735,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8674 1998,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8758 1999,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8846 -2000,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8661 -2001,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8583 -2002,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8573 -2003,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8600 -2004,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8623 -2005,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8734 -2006,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8892 -2007,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8941 -2008,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9066 -2009,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9208 -2010,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9182 -2011,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9196 -2012,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9284 -2013,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9224 -2014,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9364 -2015,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9178 -2016,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9187 -2017,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9157 -2018,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9165 -2019,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9171 -2020,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9192 -2010,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9757 -2011,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9821 -2012,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9914 -2013,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9850 -2014,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10024 -2015,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9871 -2016,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9943 -2017,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9984 -2018,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10005 -2019,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10006 -2020,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10053 -2010,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2011,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2012,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2014,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2015,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2016,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2017,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2018,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2019,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2020,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2000,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2001,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2004,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2005,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2012,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,548 -2001,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,612 -2002,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,658 -2003,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,693 -2004,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,786 -2005,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,824 -2006,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,904 -2007,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,958 -2008,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1021 -2009,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1085 -2010,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1137 -2011,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1182 -2012,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1205 -2013,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1189 -2014,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1255 -2015,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1304 -2016,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1396 -2017,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1464 -2018,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1498 -2019,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1504 -2020,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1533 -2010,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80347 -2011,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80156 -2012,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80148 -2013,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80219 -2014,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80349 -2015,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79936 -2016,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79855 -2017,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79906 -2018,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79794 -2019,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79960 -2020,geoId/01077,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80140 1990,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,71446 1991,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,72216 1992,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,72843 @@ -20822,27 +4745,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,74308 1998,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,74491 1999,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,74486 -2000,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77389 -2001,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76994 -2002,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76689 -2003,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76963 -2004,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77323 -2005,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77629 -2006,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78118 -2007,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78629 -2008,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79337 -2009,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79234 -2010,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79287 -2011,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79057 -2012,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79033 -2013,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79106 -2014,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79173 -2015,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78719 -2016,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78544 -2017,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78527 -2018,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78386 -2019,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78559 -2020,geoId/01077,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78714 1990,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,102 1991,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,109 1992,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,128 @@ -20853,38 +4755,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,203 1998,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,212 1999,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,224 -2000,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,371 -2001,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,424 -2002,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,454 -2003,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,456 -2004,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,479 -2005,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,497 -2006,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,504 -2007,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,510 -2008,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,541 -2009,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,576 -2010,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,576 -2011,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,608 -2012,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,672 -2013,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,695 -2014,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,697 -2015,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,678 -2016,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,695 -2017,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,725 -2018,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,732 -2019,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,768 -2020,geoId/01079,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,805 -2010,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2011,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2012,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2013,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2014,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2016,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2017,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2018,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2019,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2020,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 1990,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 1991,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 1992,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 @@ -20895,59 +4765,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,34 1998,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,36 1999,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,36 -2000,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2001,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2002,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2003,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2004,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2005,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2006,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2007,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2008,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2009,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2010,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2011,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2013,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2014,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2015,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2016,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2017,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2018,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01079,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2000,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 1990,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01079,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 @@ -20968,91 +4785,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 1998,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1999,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 -2000,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2001,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2002,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2003,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2004,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2005,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2006,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2007,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2008,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2009,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2014,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2015,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2020,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2010,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2013,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2014,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2015,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2017,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2018,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2019,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2020,geoId/01079,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2010,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01079,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2002,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2004,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2009,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2015,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2020,geoId/01079,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 1990,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,87 1991,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,88 1992,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,93 @@ -21063,38 +4795,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,150 1998,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,159 1999,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,172 -2000,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,287 -2001,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,340 -2002,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,370 -2003,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,365 -2004,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,391 -2005,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,402 -2006,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,409 -2007,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,411 -2008,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,433 -2009,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,462 -2010,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,466 -2011,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,489 -2012,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,549 -2013,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,564 -2014,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,556 -2015,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,551 -2016,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,569 -2017,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,588 -2018,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,595 -2019,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,623 -2020,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,645 -2010,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,488 -2011,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,513 -2012,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,574 -2013,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,588 -2014,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,589 -2015,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,578 -2016,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,595 -2017,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,617 -2018,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,627 -2019,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,654 -2020,geoId/01079,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,691 1990,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,31484 1991,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,31974 1992,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32032 @@ -21105,38 +4805,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33075 1998,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33235 1999,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33571 -2000,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,34503 -2001,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,34446 -2002,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,34244 -2003,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,34032 -2004,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33839 -2005,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33938 -2006,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33524 -2007,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33783 -2008,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33655 -2009,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33739 -2010,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33738 -2011,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33418 -2012,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,33110 -2013,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32858 -2014,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32726 -2015,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32438 -2016,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32501 -2017,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32310 -2018,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32173 -2019,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32083 -2020,geoId/01079,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32052 -2010,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3113 -2011,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3088 -2012,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3066 -2013,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3041 -2014,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3030 -2015,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3023 -2016,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3066 -2017,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3041 -2018,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3029 -2019,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3039 -2020,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3078 1990,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2126 1991,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2105 1992,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1993 @@ -21147,59 +4815,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1709 1998,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1607 1999,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1559 -2000,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1850 -2001,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1812 -2002,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1820 -2003,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1860 -2004,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1844 -2005,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1843 -2006,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1841 -2007,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1825 -2008,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1843 -2009,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1853 -2010,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1934 -2011,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1900 -2012,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1890 -2013,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1883 -2014,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1872 -2015,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1854 -2016,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1866 -2017,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1831 -2018,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1825 -2019,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1820 -2020,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1836 -2000,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2001,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2002,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2003,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2004,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2005,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2006,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2007,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2008,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2009,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2010,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2011,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2012,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2013,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2014,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2015,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2016,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2017,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2018,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2019,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2020,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2010,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2011,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2012,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2013,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2014,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2015,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2016,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,150 -2017,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2018,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2019,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2020,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 1990,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 1991,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20 1992,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 @@ -21220,102 +4835,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5531 1998,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5610 1999,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5719 -2000,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4636 -2001,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4528 -2002,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4424 -2003,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4239 -2004,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4200 -2005,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4158 -2006,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4052 -2007,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4057 -2008,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4043 -2009,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3942 -2010,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3920 -2011,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3871 -2012,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3846 -2013,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3760 -2014,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3740 -2015,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3593 -2016,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3580 -2017,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3527 -2018,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3529 -2019,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3515 -2020,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3451 -2010,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4132 -2011,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4104 -2012,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4060 -2013,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3989 -2014,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3969 -2015,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3834 -2016,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3815 -2017,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3784 -2018,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3795 -2019,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3799 -2020,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3746 -2010,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2000,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1024 -2001,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1078 -2002,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1126 -2003,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1162 -2004,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1194 -2005,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1258 -2006,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1305 -2007,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1334 -2008,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1383 -2009,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1401 -2010,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1416 -2011,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1435 -2012,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1416 -2013,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1409 -2014,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1406 -2015,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1444 -2016,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1469 -2017,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1492 -2018,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1519 -2019,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1530 -2020,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1575 -2010,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27788 -2011,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27522 -2012,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27253 -2013,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27098 -2014,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26998 -2015,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26869 -2016,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26924 -2017,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26829 -2018,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26684 -2019,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26595 -2020,geoId/01079,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26607 1990,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24527 1991,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24897 1992,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24984 @@ -21326,27 +4845,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,25811 1998,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,25993 1999,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,26265 -2000,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26957 -2001,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26992 -2002,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26839 -2003,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26735 -2004,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26566 -2005,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26639 -2006,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26281 -2007,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26524 -2008,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26341 -2009,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26499 -2010,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26420 -2011,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26151 -2012,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25900 -2013,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25746 -2014,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25643 -2015,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25482 -2016,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25512 -2017,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25391 -2018,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25220 -2019,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25140 -2020,geoId/01079,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25102 1990,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,557 1991,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,564 1992,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,595 @@ -21357,38 +4855,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,927 1998,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1024 1999,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1107 -2000,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1682 -2001,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1932 -2002,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2160 -2003,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2325 -2004,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2637 -2005,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2902 -2006,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3263 -2007,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3690 -2008,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4061 -2009,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4395 -2010,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4641 -2011,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4997 -2012,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5322 -2013,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5588 -2014,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5659 -2015,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5678 -2016,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5824 -2017,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5942 -2018,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6244 -2019,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6158 -2020,geoId/01081,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6296 -2010,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2011,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,221 -2012,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,244 -2013,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237 -2014,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237 -2015,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,260 -2016,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,254 -2017,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,277 -2018,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,292 -2019,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,295 -2020,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,298 1990,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1991,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1992,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 @@ -21399,59 +4865,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1998,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1999,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 -2000,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2001,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2002,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2003,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2004,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2005,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2006,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2007,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2008,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2009,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2010,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2011,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2012,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2013,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2014,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2015,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2016,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2017,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172 -2018,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,195 -2019,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 -2020,geoId/01081,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2000,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2003,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2004,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2005,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2006,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2007,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2008,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2009,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2010,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2011,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2012,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2013,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2014,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2015,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2016,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2017,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2018,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2019,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2020,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2010,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2011,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2012,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2013,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2014,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2015,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2016,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2017,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2018,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2019,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2020,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134 1990,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23 1991,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,25 1992,geoId/01081,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 @@ -21472,91 +4885,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,71 1998,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,71 1999,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,77 -2000,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,154 -2001,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2002,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 -2003,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2004,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,239 -2005,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243 -2006,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,296 -2007,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,336 -2008,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,360 -2009,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,405 -2010,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,424 -2011,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,446 -2012,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,451 -2013,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,475 -2014,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,463 -2015,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,464 -2016,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,484 -2017,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,473 -2018,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,499 -2019,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,469 -2020,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,475 -2010,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,513 -2011,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,540 -2012,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,548 -2013,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,588 -2014,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,580 -2015,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,577 -2016,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,593 -2017,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,577 -2018,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,612 -2019,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,591 -2020,geoId/01081,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,594 -2010,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2011,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2012,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2013,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2014,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2015,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2016,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2017,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2018,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2019,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2020,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2000,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2002,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2003,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2004,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2005,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2006,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2007,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2008,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2009,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2010,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2011,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2012,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2013,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2014,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2015,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2016,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2017,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2018,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2019,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01081,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2000,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2001,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2002,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2003,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2004,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2005,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2006,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2007,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2008,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2009,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2010,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2011,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,206 -2012,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2013,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2014,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,211 -2015,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,223 -2016,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 -2017,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2018,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2019,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,233 -2020,geoId/01081,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243 1990,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,476 1991,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,486 1992,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,521 @@ -21567,38 +4895,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,819 1998,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,910 1999,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,983 -2000,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1448 -2001,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1608 -2002,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1790 -2003,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1929 -2004,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2170 -2005,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2384 -2006,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2657 -2007,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2996 -2008,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3298 -2009,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3527 -2010,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3721 -2011,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4031 -2012,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4346 -2013,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4581 -2014,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4661 -2015,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4667 -2016,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4815 -2017,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4904 -2018,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5162 -2019,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5113 -2020,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5234 -2010,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3897 -2011,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4214 -2012,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4518 -2013,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4772 -2014,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4825 -2015,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4847 -2016,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4996 -2017,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5101 -2018,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5352 -2019,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5314 -2020,geoId/01081,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5442 1990,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,86931 1991,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,87679 1992,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,88695 @@ -21609,38 +4905,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,97511 1998,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,99457 1999,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,101057 -2000,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,113748 -2001,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,114887 -2002,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,116232 -2003,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,117746 -2004,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,119637 -2005,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,123231 -2006,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,125984 -2007,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,128244 -2008,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,130463 -2009,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,134171 -2010,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,136174 -2011,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,139197 -2012,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,143348 -2013,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,146355 -2014,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,149023 -2015,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,151484 -2016,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,153622 -2017,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,155866 -2018,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,157962 -2019,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,158857 -2020,geoId/01081,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,160535 -2010,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,981 -2011,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,955 -2012,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,984 -2013,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,988 -2014,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1020 -2015,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1062 -2016,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1049 -2017,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1088 -2018,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1100 -2019,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1073 -2020,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1131 1990,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,128 1991,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,130 1992,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,129 @@ -21651,59 +4915,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,138 1998,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,132 1999,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,138 -2000,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,281 -2001,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,324 -2002,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,338 -2003,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,356 -2004,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,347 -2005,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,334 -2006,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,355 -2007,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,366 -2008,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,371 -2009,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,378 -2010,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,406 -2011,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,397 -2012,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,383 -2013,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,373 -2014,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,389 -2015,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,412 -2016,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,395 -2017,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,411 -2018,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,409 -2019,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,397 -2020,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,419 -2000,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1929 -2001,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1994 -2002,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2148 -2003,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2301 -2004,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2482 -2005,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2721 -2006,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2886 -2007,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3049 -2008,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3181 -2009,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3479 -2010,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3707 -2011,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4073 -2012,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4654 -2013,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5093 -2014,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5473 -2015,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5881 -2016,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6268 -2017,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6604 -2018,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6775 -2019,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6869 -2020,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6877 -2010,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4296 -2011,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4691 -2012,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5325 -2013,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5791 -2014,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6205 -2015,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6671 -2016,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7097 -2017,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7435 -2018,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7624 -2019,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7753 -2020,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7782 1990,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1596 1991,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1651 1992,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1698 @@ -21724,102 +4935,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24968 1998,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,25676 1999,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,26325 -2000,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26135 -2001,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26488 -2002,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26895 -2003,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27290 -2004,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27761 -2005,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28775 -2006,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29399 -2007,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29894 -2008,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30555 -2009,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31357 -2010,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31893 -2011,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32641 -2012,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33913 -2013,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34834 -2014,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35719 -2015,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36358 -2016,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36787 -2017,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37224 -2018,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37440 -2019,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37433 -2020,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37767 -2010,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32725 -2011,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33561 -2012,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34868 -2013,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35847 -2014,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36791 -2015,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37494 -2016,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37986 -2017,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38451 -2018,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38702 -2019,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38696 -2020,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39081 -2010,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2011,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2012,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2013,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2014,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2015,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2016,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190 -2017,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2018,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2019,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2020,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,211 -2000,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2002,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2003,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2004,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2005,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2006,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2007,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2008,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2009,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2010,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2012,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2013,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2014,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2015,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2016,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2017,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2018,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2019,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2020,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2000,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,874 -2001,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,967 -2002,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1015 -2003,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1090 -2004,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1182 -2005,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1329 -2006,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1357 -2007,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1452 -2008,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1606 -2009,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1702 -2010,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1789 -2011,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1876 -2012,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2009 -2013,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2098 -2014,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2216 -2015,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2317 -2016,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2423 -2017,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2490 -2018,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2544 -2019,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2562 -2020,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2656 -2010,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99905 -2011,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101805 -2012,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104104 -2013,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105754 -2014,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107128 -2015,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108525 -2016,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109864 -2017,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111329 -2018,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112994 -2019,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113819 -2020,geoId/01081,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115108 1990,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,64774 1991,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,65196 1992,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,65672 @@ -21830,27 +4945,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,70386 1998,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,71620 1999,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,72529 -2000,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84510 -2001,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85088 -2002,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85809 -2003,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86677 -2004,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87823 -2005,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90031 -2006,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91941 -2007,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93428 -2008,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94696 -2009,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97194 -2010,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98309 -2011,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100142 -2012,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102305 -2013,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103876 -2014,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105146 -2015,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106441 -2016,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107675 -2017,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109062 -2018,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110718 -2019,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111516 -2020,geoId/01081,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112727 1990,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,261 1991,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,278 1992,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,302 @@ -21861,38 +4955,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,464 1998,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,515 1999,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,563 -2000,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1753 -2001,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1975 -2002,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2201 -2003,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2385 -2004,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2513 -2005,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2883 -2006,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3216 -2007,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3557 -2008,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3853 -2009,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4351 -2010,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4589 -2011,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4708 -2012,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4794 -2013,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4904 -2014,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5051 -2015,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5229 -2016,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5377 -2017,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5634 -2018,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5838 -2019,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6018 -2020,geoId/01083,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6338 -2010,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,364 -2011,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,373 -2012,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,383 -2013,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,357 -2014,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,353 -2015,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,358 -2016,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,364 -2017,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,372 -2018,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,376 -2019,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,382 -2020,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,386 1990,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1991,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1992,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 @@ -21903,59 +4965,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1998,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 1999,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 -2000,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2001,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2002,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2003,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2004,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101 -2005,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2006,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2007,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2008,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2009,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 -2010,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,228 -2011,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 -2012,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,225 -2013,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,206 -2014,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2015,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2016,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2017,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2018,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,226 -2019,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2020,geoId/01083,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,240 -2000,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2007,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2009,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2013,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2017,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2018,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2019,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2020,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2010,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2011,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2012,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2013,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2014,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2015,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2016,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2017,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2018,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2019,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2020,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 1990,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1991,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1992,geoId/01083,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 @@ -21976,91 +4985,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,39 1998,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38 1999,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,44 -2000,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2001,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2002,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2003,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2004,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2005,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2006,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2007,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2008,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2009,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,209 -2010,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 -2011,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,251 -2012,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,257 -2013,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,267 -2014,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,274 -2015,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,288 -2016,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,290 -2017,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,317 -2018,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,329 -2019,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,346 -2020,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,344 -2010,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,299 -2011,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,358 -2012,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,363 -2013,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,374 -2014,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,392 -2015,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,404 -2016,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,410 -2017,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,426 -2018,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,459 -2019,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,477 -2020,geoId/01083,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,483 -2010,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2011,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2012,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2013,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2014,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2015,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2016,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2017,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2018,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2019,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2020,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2000,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2002,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2003,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2004,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2005,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2006,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2007,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2008,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2009,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2010,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2011,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2012,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2013,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2014,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2015,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2016,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2017,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2018,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2019,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2020,geoId/01083,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2000,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2001,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2002,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2003,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2004,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2005,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128 -2006,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2007,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2008,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2009,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,211 -2010,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,228 -2011,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262 -2012,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,279 -2013,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,276 -2014,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,288 -2015,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,283 -2016,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,295 -2017,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,294 -2018,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,308 -2019,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,286 -2020,geoId/01083,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,308 1990,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,229 1991,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,246 1992,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,259 @@ -22071,38 +4995,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,416 1998,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,464 1999,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,502 -2000,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1627 -2001,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1799 -2002,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1946 -2003,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2076 -2004,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2156 -2005,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2416 -2006,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2682 -2007,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2966 -2008,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3171 -2009,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3580 -2010,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3780 -2011,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3840 -2012,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3891 -2013,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4023 -2014,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4154 -2015,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4311 -2016,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4439 -2017,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4650 -2018,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4811 -2019,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4997 -2020,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5287 -2010,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3983 -2011,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4071 -2012,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4133 -2013,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4271 -2014,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4410 -2015,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4569 -2016,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4706 -2017,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4911 -2018,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5077 -2019,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5252 -2020,geoId/01083,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5559 1990,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,54059 1991,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,55175 1992,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,56451 @@ -22113,38 +5005,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,60671 1998,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61732 1999,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,62474 -2000,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,64213 -2001,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,64961 -2002,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,65476 -2003,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,66193 -2004,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,67080 -2005,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,68420 -2006,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,70435 -2007,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,72506 -2008,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,74982 -2009,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,76975 -2010,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78579 -2011,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,80845 -2012,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,82542 -2013,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,84027 -2014,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,85571 -2015,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,86367 -2016,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,87519 -2017,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,88510 -2018,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,90361 -2019,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,93118 -2020,geoId/01083,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,95890 -2010,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1060 -2011,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1077 -2012,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1135 -2013,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1170 -2014,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1213 -2015,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1218 -2016,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1241 -2017,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1286 -2018,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1316 -2019,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1398 -2020,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1468 1990,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,144 1991,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,155 1992,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,151 @@ -22155,59 +5015,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,159 1998,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,152 1999,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,157 -2000,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,294 -2001,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,340 -2002,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,362 -2003,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,376 -2004,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,388 -2005,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,403 -2006,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,418 -2007,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,422 -2008,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,464 -2009,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,464 -2010,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,489 -2011,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,497 -2012,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,509 -2013,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,527 -2014,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,530 -2015,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,520 -2016,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,515 -2017,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,537 -2018,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,543 -2019,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,588 -2020,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,614 -2000,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,232 -2001,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,306 -2002,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,342 -2003,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,373 -2004,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,393 -2005,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,432 -2006,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,519 -2007,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,599 -2008,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,715 -2009,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,819 -2010,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,962 -2011,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1025 -2012,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1131 -2013,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1203 -2014,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1244 -2015,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1293 -2016,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1355 -2017,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1429 -2018,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1484 -2019,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1616 -2020,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1782 -2010,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1187 -2011,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1285 -2012,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1396 -2013,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1482 -2014,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1537 -2015,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1613 -2016,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1692 -2017,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1781 -2018,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1872 -2019,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2029 -2020,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2223 1990,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,154 1991,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,162 1992,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,171 @@ -22228,102 +5035,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8719 1998,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8936 1999,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9128 -2000,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8753 -2001,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8825 -2002,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8816 -2003,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8871 -2004,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8867 -2005,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9008 -2006,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9246 -2007,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9518 -2008,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9955 -2009,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10180 -2010,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10488 -2011,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10999 -2012,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11186 -2013,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11505 -2014,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11895 -2015,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11985 -2016,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12308 -2017,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12439 -2018,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12976 -2019,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13473 -2020,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13883 -2010,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10979 -2011,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11568 -2012,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11776 -2013,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12159 -2014,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12576 -2015,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12725 -2016,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13098 -2017,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13297 -2018,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13896 -2019,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14455 -2020,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14935 -2010,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2011,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2012,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2013,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2014,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2015,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2016,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2017,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2018,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2019,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2020,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2000,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2008,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2009,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2012,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2013,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2014,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2015,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2017,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2019,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2020,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2000,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,478 -2001,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,528 -2002,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,607 -2003,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,676 -2004,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,719 -2005,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,812 -2006,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,857 -2007,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,948 -2008,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1049 -2009,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1145 -2010,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1202 -2011,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1305 -2012,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1396 -2013,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1472 -2014,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1559 -2015,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1632 -2016,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1724 -2017,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1849 -2018,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1950 -2019,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2052 -2020,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2185 -2010,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66525 -2011,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68175 -2012,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69575 -2013,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70629 -2014,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71731 -2015,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72405 -2016,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73157 -2017,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73917 -2018,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75144 -2019,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77219 -2020,geoId/01083,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79390 1990,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,46620 1991,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,47598 1992,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,48602 @@ -22334,27 +5045,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51579 1998,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,52427 1999,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,52972 -2000,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54445 -2001,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54951 -2002,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55339 -2003,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55884 -2004,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56701 -2005,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57749 -2006,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59373 -2007,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60998 -2008,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62779 -2009,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64345 -2010,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65411 -2011,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66978 -2012,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68270 -2013,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69262 -2014,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70286 -2015,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70877 -2016,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71554 -2017,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72178 -2018,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73332 -2019,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75305 -2020,geoId/01083,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77343 1990,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,60 1991,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,60 1992,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,49 @@ -22365,38 +5055,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,62 1998,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,68 1999,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,75 -2000,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,85 -2001,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,84 -2002,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,80 -2003,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79 -2004,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78 -2005,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,82 -2006,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,84 -2007,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,87 -2008,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77 -2009,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,85 -2010,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,95 -2011,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,121 -2012,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,132 -2013,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,138 -2014,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,151 -2015,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,160 -2016,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,169 -2017,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,172 -2018,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,172 -2019,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,185 -2020,geoId/01085,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,195 -2010,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 1990,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1992,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -22407,59 +5065,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1998,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1999,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 -2000,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01085,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 1990,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01085,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -22480,91 +5085,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,47 1998,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,52 1999,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,57 -2000,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2001,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2002,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2003,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2004,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2005,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2006,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2007,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2008,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2009,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2011,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2012,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2013,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2014,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2015,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2016,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2017,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2018,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2019,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2020,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2010,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2011,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2012,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2013,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2014,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2015,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2016,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2017,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2018,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2019,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2020,geoId/01085,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2010,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01085,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01085,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 1990,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1991,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1992,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 @@ -22575,38 +5095,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 1998,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15 1999,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,16 -2000,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2001,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2002,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2003,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2004,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2005,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2006,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2007,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2008,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2009,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2010,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2012,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2013,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2014,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2015,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2016,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2017,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2018,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2020,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2010,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2011,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2012,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2013,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2014,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2015,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2016,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2017,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2018,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2019,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2020,geoId/01085,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 1990,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12601 1991,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12609 1992,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12633 @@ -22617,38 +5105,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12814 1998,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12916 1999,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12954 -2000,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13386 -2001,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13245 -2002,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13151 -2003,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12917 -2004,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12545 -2005,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12315 -2006,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12040 -2007,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11886 -2008,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11736 -2009,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11401 -2010,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11199 -2011,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11023 -2012,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10725 -2013,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10528 -2014,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10346 -2015,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10190 -2016,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10076 -2017,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9928 -2018,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9797 -2019,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9541 -2020,geoId/01085,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9446 -2010,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2011,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2012,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2014,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2015,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2016,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2017,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2018,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2019,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2020,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 1990,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1991,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1992,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 @@ -22659,59 +5115,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1998,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1999,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 -2000,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2003,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2004,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2006,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2007,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2008,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2009,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2012,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2015,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2018,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2000,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2003,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2004,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2012,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2015,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2017,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2015,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2017,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 1990,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1991,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1992,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 @@ -22732,102 +5135,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9709 1998,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9809 1999,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9858 -2000,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9843 -2001,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9770 -2002,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9684 -2003,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9529 -2004,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9293 -2005,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9053 -2006,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8846 -2007,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8734 -2008,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8671 -2009,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8434 -2010,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8264 -2011,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8183 -2012,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7978 -2013,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7840 -2014,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7711 -2015,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7585 -2016,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7486 -2017,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7312 -2018,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7192 -2019,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6994 -2020,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6958 -2010,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8286 -2011,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8205 -2012,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8002 -2013,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7869 -2014,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7739 -2015,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7616 -2016,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7514 -2017,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7343 -2018,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7213 -2019,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7020 -2020,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6981 -2010,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2001,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2002,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2003,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2004,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2005,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2006,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2007,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2008,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2009,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2010,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2011,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2012,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2013,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2014,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2015,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2016,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2017,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2018,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2019,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2020,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2010,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2890 -2011,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2787 -2012,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2696 -2013,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2636 -2014,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2585 -2015,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2553 -2016,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2524 -2017,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2550 -2018,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2535 -2019,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2471 -2020,geoId/01085,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2416 1990,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3184 1991,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3188 1992,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3158 @@ -22838,27 +5145,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3093 1998,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3096 1999,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3086 -2000,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3453 -2001,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3386 -2002,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3378 -2003,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3304 -2004,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3168 -2005,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3172 -2006,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3112 -2007,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3069 -2008,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2984 -2009,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2885 -2010,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2851 -2011,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2740 -2012,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2650 -2013,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2585 -2014,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2530 -2015,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2498 -2016,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2475 -2017,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2497 -2018,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2486 -2019,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2426 -2020,geoId/01085,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2368 1990,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,103 1991,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,95 1992,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,96 @@ -22869,38 +5155,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,140 1998,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,139 1999,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,148 -2000,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,173 -2001,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,174 -2002,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,170 -2003,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,179 -2004,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,186 -2005,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,205 -2006,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,215 -2007,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,222 -2008,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,219 -2009,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,230 -2010,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,246 -2011,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,316 -2012,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,328 -2013,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,283 -2014,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,301 -2015,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,336 -2016,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,331 -2017,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,338 -2018,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,342 -2019,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,348 -2020,geoId/01087,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,385 -2010,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2011,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2019,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 1990,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 @@ -22911,59 +5165,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1998,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1999,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 -2000,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01087,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2017,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 1990,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23 1991,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23 1992,geoId/01087,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,17 @@ -22984,91 +5185,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,45 1998,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,52 1999,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51 -2000,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2001,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2002,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2003,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2004,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2005,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2006,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2007,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2008,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2009,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2010,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2011,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2012,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2013,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2014,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2015,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2016,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2017,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2018,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2019,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2020,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2010,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2011,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2012,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2013,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2014,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2015,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2016,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2017,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,150 -2018,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2019,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2020,geoId/01087,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2010,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01087,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2005,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2006,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2007,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2008,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2009,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2010,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2012,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2013,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2016,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2017,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01087,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 1990,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27 1991,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27 1992,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27 @@ -23079,38 +5195,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,32 1998,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,37 1999,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,40 -2000,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2001,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2002,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2003,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2004,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2005,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2006,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2007,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2008,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2009,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2010,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2011,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2012,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2013,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2014,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2015,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2016,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2017,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2018,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2019,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,154 -2020,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2010,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2011,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2012,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2013,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2014,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2015,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2016,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2017,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2018,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2019,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2020,geoId/01087,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 1990,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24779 1991,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24391 1992,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24559 @@ -23121,38 +5205,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22934 1998,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23068 1999,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22845 -2000,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23874 -2001,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23751 -2002,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23393 -2003,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22931 -2004,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22499 -2005,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22183 -2006,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22012 -2007,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21720 -2008,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21378 -2009,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20960 -2010,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21269 -2011,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20983 -2012,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20297 -2013,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19760 -2014,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19369 -2015,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18995 -2016,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18746 -2017,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18490 -2018,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17978 -2019,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17717 -2020,geoId/01087,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17510 -2010,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2011,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2012,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2013,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2014,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2015,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2016,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2017,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2018,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134 -2019,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2020,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 1990,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23 1991,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23 1992,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22 @@ -23163,59 +5215,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1998,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1999,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 -2000,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2001,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2002,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2003,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2004,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2005,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2006,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2007,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2008,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2009,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2010,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2018,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2020,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2000,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2001,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2002,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2003,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2004,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2005,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2006,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2007,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2008,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2009,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2010,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2011,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2012,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2013,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2014,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2015,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2016,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2017,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2018,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2019,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2020,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2010,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2011,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2012,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2013,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2014,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2015,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2016,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2017,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2018,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2019,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2020,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 1990,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,76 1991,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,74 1992,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,76 @@ -23236,102 +5235,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19863 1998,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20049 1999,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19886 -2000,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20307 -2001,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20076 -2002,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19707 -2003,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19317 -2004,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18898 -2005,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18572 -2006,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18474 -2007,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18171 -2008,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17900 -2009,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17415 -2010,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17635 -2011,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17393 -2012,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16720 -2013,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16388 -2014,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15999 -2015,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15662 -2016,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15399 -2017,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15156 -2018,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14636 -2019,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14396 -2020,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14184 -2010,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17755 -2011,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17525 -2012,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16857 -2013,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16515 -2014,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16121 -2015,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15806 -2016,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15537 -2017,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15292 -2018,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14756 -2019,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14523 -2020,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14319 -2010,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2000,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2001,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2002,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2003,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2004,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,154 -2005,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2006,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2007,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2008,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2009,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2010,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,212 -2011,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2012,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237 -2013,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2014,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,226 -2015,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,242 -2016,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,231 -2017,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,234 -2018,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2019,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2020,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2010,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3475 -2011,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3440 -2012,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3422 -2013,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3220 -2014,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3223 -2015,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3166 -2016,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3151 -2017,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3146 -2018,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3146 -2019,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3131 -2020,geoId/01087,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3142 1990,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3438 1991,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3352 1992,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3339 @@ -23342,27 +5245,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2978 1998,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2929 1999,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2873 -2000,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3282 -2001,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3398 -2002,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3406 -2003,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3343 -2004,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3327 -2005,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3303 -2006,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3238 -2007,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3244 -2008,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3170 -2009,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3240 -2010,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3312 -2011,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3278 -2012,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3235 -2013,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3052 -2014,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3040 -2015,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2972 -2016,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2980 -2017,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2960 -2018,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2985 -2019,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2969 -2020,geoId/01087,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2972 1990,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3034 1991,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3114 1992,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3292 @@ -23373,38 +5255,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4978 1998,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5473 1999,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5821 -2000,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5390 -2001,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5912 -2002,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6640 -2003,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7410 -2004,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8338 -2005,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9246 -2006,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10300 -2007,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11537 -2008,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12861 -2009,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14244 -2010,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15501 -2011,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15728 -2012,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15714 -2013,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15908 -2014,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16071 -2015,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16594 -2016,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17104 -2017,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17652 -2018,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18362 -2019,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19032 -2020,geoId/01089,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19911 -2010,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,813 -2011,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,787 -2012,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,777 -2013,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,759 -2014,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,732 -2015,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,713 -2016,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,737 -2017,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,719 -2018,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,721 -2019,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,756 -2020,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,807 1990,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,54 1991,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,61 1992,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,53 @@ -23415,59 +5265,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,78 1998,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,102 1999,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,102 -2000,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2001,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2002,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2003,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2004,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,297 -2005,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,300 -2006,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,311 -2007,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,375 -2008,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,408 -2009,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,442 -2010,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,533 -2011,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,502 -2012,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,481 -2013,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,473 -2014,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,452 -2015,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,436 -2016,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,430 -2017,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,415 -2018,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,426 -2019,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,426 -2020,geoId/01089,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,439 -2000,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2001,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2002,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2003,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2004,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2005,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2006,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2007,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2008,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2009,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2010,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2011,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2012,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2013,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2014,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2015,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2016,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2018,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2019,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2020,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2010,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,305 -2011,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,290 -2012,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,246 -2013,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,236 -2014,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,254 -2015,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,255 -2016,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,248 -2017,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,288 -2018,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262 -2019,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,286 -2020,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,295 1990,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,109 1991,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,104 1992,geoId/01089,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,113 @@ -23488,91 +5285,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,439 1998,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,468 1999,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,479 -2000,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,664 -2001,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,667 -2002,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,735 -2003,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,828 -2004,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,911 -2005,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1034 -2006,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1109 -2007,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1198 -2008,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1326 -2009,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1465 -2010,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1612 -2011,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1531 -2012,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1515 -2013,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1506 -2014,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1548 -2015,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1582 -2016,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1617 -2017,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1686 -2018,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1721 -2019,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1754 -2020,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1848 -2010,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1846 -2011,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1799 -2012,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1797 -2013,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1801 -2014,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1834 -2015,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1877 -2016,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1921 -2017,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1991 -2018,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2053 -2019,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2101 -2020,geoId/01089,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2235 -2010,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2011,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2012,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2013,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2014,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2015,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2016,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2017,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2018,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2019,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2020,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2000,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2001,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2002,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2003,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2004,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2005,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2006,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2007,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2008,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2009,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2010,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2011,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2012,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2013,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2014,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2015,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2016,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2017,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2018,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2019,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2020,geoId/01089,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2000,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2001,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,248 -2002,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,281 -2003,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,304 -2004,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,317 -2005,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,293 -2006,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,338 -2007,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,374 -2008,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,395 -2009,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,493 -2010,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,544 -2011,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,561 -2012,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,583 -2013,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,603 -2014,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,597 -2015,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,613 -2016,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,622 -2017,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,646 -2018,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,667 -2019,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,705 -2020,geoId/01089,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,782 1990,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2488 1991,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2581 1992,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2751 @@ -23583,38 +5295,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4315 1998,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4725 1999,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5050 -2000,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4363 -2001,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4676 -2002,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5258 -2003,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5863 -2004,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6614 -2005,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7456 -2006,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8377 -2007,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9403 -2008,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10561 -2009,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11643 -2010,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12530 -2011,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12885 -2012,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12929 -2013,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13153 -2014,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13303 -2015,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13801 -2016,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14282 -2017,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14736 -2018,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15386 -2019,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15975 -2020,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16678 -2010,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12982 -2011,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13337 -2012,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13384 -2013,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13646 -2014,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13787 -2015,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14312 -2016,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14792 -2017,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15268 -2018,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15946 -2019,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16571 -2020,geoId/01089,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17334 1990,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,237108 1991,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,243946 1992,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,251958 @@ -23625,38 +5305,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,267404 1998,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,272535 1999,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,274560 -2000,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,272616 -2001,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,275605 -2002,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,279799 -2003,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,283932 -2004,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,287317 -2005,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,292228 -2006,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,298870 -2007,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,304322 -2008,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,310665 -2009,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,316612 -2010,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,320613 -2011,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,323895 -2012,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,327109 -2013,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,330856 -2014,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,333902 -2015,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,336600 -2016,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,339881 -2017,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,344409 -2018,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,349024 -2019,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,353515 -2020,geoId/01089,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,359542 -2010,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5224 -2011,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5264 -2012,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5273 -2013,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5389 -2014,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5441 -2015,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5537 -2016,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5544 -2017,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5653 -2018,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5707 -2019,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5796 -2020,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5864 1990,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1572 1991,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1590 1992,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1563 @@ -23667,59 +5315,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1416 1998,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1369 1999,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1338 -2000,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2133 -2001,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2064 -2002,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2108 -2003,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2136 -2004,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2222 -2005,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2268 -2006,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2272 -2007,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2330 -2008,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2301 -2009,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2329 -2010,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2347 -2011,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2350 -2012,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2362 -2013,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2372 -2014,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2403 -2015,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2444 -2016,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2426 -2017,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2458 -2018,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2480 -2019,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2509 -2020,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2515 -2000,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5258 -2001,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5246 -2002,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5548 -2003,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5921 -2004,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6253 -2005,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6570 -2006,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6946 -2007,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7194 -2008,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7646 -2009,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8090 -2010,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8330 -2011,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8307 -2012,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8622 -2013,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8839 -2014,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9088 -2015,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9230 -2016,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9474 -2017,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9706 -2018,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9778 -2019,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9956 -2020,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10025 -2010,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10421 -2011,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10503 -2012,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10851 -2013,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11211 -2014,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11557 -2015,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11785 -2016,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12128 -2017,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12443 -2018,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12668 -2019,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12977 -2020,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13192 1990,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4227 1991,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4442 1992,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4705 @@ -23740,102 +5335,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,57513 1998,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,59113 1999,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,59989 -2000,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63248 -2001,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64345 -2002,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65544 -2003,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67196 -2004,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68538 -2005,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70358 -2006,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72707 -2007,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74475 -2008,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76636 -2009,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78765 -2010,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79970 -2011,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80794 -2012,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82193 -2013,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83374 -2014,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84275 -2015,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85611 -2016,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86859 -2017,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88818 -2018,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90190 -2019,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90807 -2020,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92436 -2010,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83174 -2011,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84171 -2012,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85642 -2013,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87025 -2014,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88027 -2015,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89497 -2016,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90855 -2017,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92978 -2018,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94573 -2019,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95319 -2020,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97217 -2010,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,595 -2011,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,560 -2012,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,578 -2013,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,580 -2014,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,612 -2015,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,609 -2016,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,650 -2017,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,650 -2018,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,678 -2019,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,657 -2020,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,657 -2000,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2001,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2002,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2003,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2004,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,233 -2005,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,232 -2006,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,263 -2007,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,291 -2008,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,307 -2009,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,327 -2010,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,348 -2011,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,316 -2012,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,323 -2013,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,325 -2014,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,331 -2015,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,333 -2016,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,353 -2017,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,349 -2018,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,366 -2019,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,330 -2020,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,317 -2000,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4282 -2001,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4482 -2002,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4668 -2003,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4813 -2004,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5036 -2005,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5219 -2006,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5507 -2007,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5837 -2008,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6361 -2009,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6725 -2010,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6987 -2011,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7278 -2012,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7426 -2013,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7767 -2014,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7970 -2015,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8219 -2016,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8397 -2017,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8717 -2018,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9059 -2019,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9352 -2020,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9757 -2010,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,228786 -2011,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,231269 -2012,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,232748 -2013,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235050 -2014,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,236884 -2015,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,238077 -2016,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,239828 -2017,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,242114 -2018,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245203 -2019,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,248902 -2020,geoId/01089,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,253190 1990,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,183172 1991,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,188031 1992,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,193902 @@ -23846,27 +5345,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,202934 1998,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,206417 1999,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,207533 -2000,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197548 -2001,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199288 -2002,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201734 -2003,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203650 -2004,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,205035 -2005,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207581 -2006,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,211175 -2007,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,214195 -2008,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217414 -2009,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,220376 -2010,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222631 -2011,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224850 -2012,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,226183 -2013,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,228179 -2014,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,229835 -2015,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,230763 -2016,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,232372 -2017,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,234361 -2018,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237151 -2019,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,240561 -2020,geoId/01089,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,244492 1990,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,75 1991,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,66 1992,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,70 @@ -23877,38 +5355,8 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,98 1998,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,106 1999,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,111 -2000,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,219 -2001,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,254 -2002,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,279 -2003,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,293 -2004,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,294 -2005,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,320 -2006,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,318 -2007,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,332 -2008,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,332 -2009,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,379 -2010,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,354 -2011,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,373 -2012,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,436 -2013,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,469 -2014,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,462 -2015,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,437 -2016,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,453 -2017,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,477 -2018,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,489 2019,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,529 -2020,geoId/01091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,527 -2010,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 2019,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 1990,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1992,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 @@ -23919,59 +5367,9 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1999,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 -2000,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 2019,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2000,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 2019,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2010,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 2019,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 1990,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01091,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -23992,91 +5390,11 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,41 1998,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,41 1999,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,45 -2000,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2001,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2002,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2003,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2004,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2005,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2006,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2007,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2008,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2009,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2010,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2011,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2012,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2013,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2014,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2015,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2017,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2018,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 2019,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2020,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2010,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2011,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2012,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2013,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2014,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2015,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2016,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2017,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2018,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 2019,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2020,geoId/01091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2010,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2017,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 2019,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2000,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2008,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2009,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2010,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2013,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2018,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 2019,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2000,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 2019,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 1990,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,36 1991,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,36 1992,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,36 @@ -24087,38 +5405,8 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,57 1998,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,62 1999,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,63 -2000,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2001,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2002,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,202 -2003,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2004,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,209 -2005,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,231 -2006,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2007,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,234 -2008,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,232 -2009,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,280 -2010,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,251 -2011,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,271 -2012,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,342 -2013,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,360 -2014,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,350 -2015,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,330 -2016,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,339 -2017,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,366 -2018,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,374 2019,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,403 -2020,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,398 -2010,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,259 -2011,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,280 -2012,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,352 -2013,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,371 -2014,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,362 -2015,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,344 -2016,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,352 -2017,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,378 -2018,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,386 2019,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,418 -2020,geoId/01091,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,413 1990,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22946 1991,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23054 1992,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23181 @@ -24129,38 +5417,8 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23410 1998,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23269 1999,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23047 -2000,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22345 -2001,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21949 -2002,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21938 -2003,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21732 -2004,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21483 -2005,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21249 -2006,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21213 -2007,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21143 -2008,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20999 -2009,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20791 -2010,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20601 -2011,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20290 -2012,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19942 -2013,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19654 -2014,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19528 -2015,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19335 -2016,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19083 -2017,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18934 -2018,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18604 2019,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18390 -2020,geoId/01091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18206 -2010,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2011,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2012,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2013,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2014,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2015,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2016,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2017,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2018,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 2019,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2020,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 1990,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1991,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 1992,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 @@ -24171,59 +5429,9 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1998,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 1999,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 -2000,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2004,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2005,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2006,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2007,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2008,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2009,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2013,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2015,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2017,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2018,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 2019,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2000,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2001,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2002,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2003,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2004,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2005,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2006,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2007,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2008,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2009,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2010,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2011,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2012,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2013,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2014,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2016,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2017,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2018,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 2019,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2020,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2010,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2011,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2012,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2013,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2014,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2015,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2016,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2017,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2018,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 2019,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2020,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 1990,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 1991,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 1992,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 @@ -24244,102 +5452,12 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12302 1998,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12277 1999,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12194 -2000,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11625 -2001,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11422 -2002,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11431 -2003,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11367 -2004,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11266 -2005,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11152 -2006,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11170 -2007,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11058 -2008,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11071 -2009,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10923 -2010,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10795 -2011,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10602 -2012,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10400 -2013,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10251 -2014,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10168 -2015,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10123 -2016,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10040 -2017,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9905 -2018,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9726 2019,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9698 -2020,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9626 -2010,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10861 -2011,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10690 -2012,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10479 -2013,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10332 -2014,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10254 -2015,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10213 -2016,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10138 -2017,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10009 -2018,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9823 2019,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9787 -2020,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9723 -2010,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2016,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 2019,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 2019,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2001,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2002,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2003,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2004,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2005,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2006,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2007,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2008,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2009,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2010,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2011,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2012,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2013,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2014,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2015,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2016,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2017,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2018,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 2019,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172 -2020,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2010,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9698 -2011,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9571 -2012,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9432 -2013,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9287 -2014,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9232 -2015,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9081 -2016,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8908 -2017,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8904 -2018,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8760 2019,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8569 -2020,geoId/01091,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8452 1990,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11256 1991,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11276 1992,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11276 @@ -24350,27 +5468,7 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11085 1998,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10971 1999,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10831 -2000,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10572 -2001,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10380 -2002,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10356 -2003,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10203 -2004,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10042 -2005,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9908 -2006,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9850 -2007,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9881 -2008,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9710 -2009,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9644 -2010,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9583 -2011,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9448 -2012,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9305 -2013,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9154 -2014,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9085 -2015,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8935 -2016,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8764 -2017,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8750 -2018,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8599 2019,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8424 -2020,geoId/01091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8301 1990,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,64 1991,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,81 1992,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,68 @@ -24381,38 +5479,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,108 1998,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,114 1999,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,120 -2000,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,357 -2001,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,393 -2002,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,399 -2003,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,452 -2004,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,458 -2005,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,521 -2006,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,577 -2007,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,580 -2008,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,586 -2009,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,614 -2010,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,640 -2011,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,683 -2012,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,689 -2013,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,727 -2014,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,702 -2015,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,731 -2016,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,765 -2017,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,772 -2018,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,774 -2019,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,756 -2020,geoId/01093,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,763 -2010,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2017,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 1990,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,17 1992,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 @@ -24423,59 +5489,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1998,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1999,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 -2000,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2012,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2018,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2020,geoId/01093,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2001,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2002,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2016,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2017,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2020,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 1990,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1991,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1992,geoId/01093,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 @@ -24496,91 +5509,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1998,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1999,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 -2000,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2016,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2017,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2010,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2012,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2013,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2016,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2018,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2019,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2020,geoId/01093,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2010,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2007,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2009,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01093,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2006,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2007,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2008,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2009,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2010,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2015,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2017,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2019,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2020,geoId/01093,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 1990,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,60 1991,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,58 1992,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,58 @@ -24591,38 +5519,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,99 1998,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,105 1999,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,110 -2000,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,312 -2001,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,349 -2002,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,357 -2003,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,412 -2004,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,418 -2005,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,474 -2006,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,522 -2007,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,523 -2008,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,528 -2009,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,553 -2010,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,577 -2011,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,612 -2012,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,611 -2013,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,638 -2014,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,615 -2015,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,628 -2016,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,664 -2017,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,674 -2018,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,660 -2019,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,641 -2020,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,641 -2010,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,602 -2011,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,637 -2012,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,639 -2013,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,668 -2014,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,644 -2015,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,661 -2016,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,692 -2017,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,699 -2018,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,692 -2019,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,680 -2020,geoId/01093,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,687 1990,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29762 1991,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29498 1992,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29638 @@ -24633,38 +5529,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30806 1998,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30743 1999,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30344 -2000,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30780 -2001,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30384 -2002,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30209 -2003,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30102 -2004,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30058 -2005,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29973 -2006,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30202 -2007,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30269 -2008,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30332 -2009,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30032 -2010,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30182 -2011,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29978 -2012,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29806 -2013,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29509 -2014,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29513 -2015,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29406 -2016,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29193 -2017,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29053 -2018,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29002 -2019,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29070 -2020,geoId/01093,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,28940 -2010,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2011,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243 -2012,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,259 -2013,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243 -2014,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,255 -2015,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,265 -2016,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,256 -2017,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,269 -2018,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,269 -2019,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,285 -2020,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,294 1990,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,57 1991,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,52 1992,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51 @@ -24675,59 +5539,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,48 1998,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,44 1999,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,44 -2000,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2001,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2002,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2003,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2004,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2005,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2006,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2007,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2008,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2009,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2010,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2011,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2012,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2013,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2014,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2015,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2016,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2017,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2018,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2019,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2020,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2000,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2001,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2002,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2003,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2004,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2005,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2006,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2007,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2008,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2009,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2010,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2011,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2013,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2014,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2015,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2016,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2017,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2018,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2019,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2020,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2010,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2011,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2012,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2013,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2014,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2015,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2016,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2017,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2018,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2019,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2020,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128 1990,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,33 1991,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,33 1992,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,33 @@ -24748,102 +5559,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1151 1998,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1149 1999,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1153 -2000,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1125 -2001,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1166 -2002,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1148 -2003,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1136 -2004,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1123 -2005,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1146 -2006,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1190 -2007,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1225 -2008,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1226 -2009,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1217 -2010,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1183 -2011,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1182 -2012,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1165 -2013,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1166 -2014,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1141 -2015,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1135 -2016,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1114 -2017,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1097 -2018,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1118 -2019,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1157 -2020,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1135 -2010,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1295 -2011,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1313 -2012,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1303 -2013,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1304 -2014,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1267 -2015,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1274 -2016,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1270 -2017,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1266 -2018,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1272 -2019,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1314 -2020,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1307 -2010,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2017,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2000,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2001,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2002,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190 -2003,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2004,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,211 -2005,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2006,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,221 -2007,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243 -2008,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,246 -2009,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,259 -2010,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,273 -2011,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,279 -2012,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,298 -2013,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,294 -2014,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,301 -2015,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,312 -2016,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,322 -2017,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,356 -2018,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,337 -2019,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,345 -2020,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,356 -2010,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28823 -2011,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28604 -2012,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28430 -2013,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28133 -2014,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28154 -2015,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28042 -2016,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27860 -2017,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27737 -2018,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27666 -2019,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27688 -2020,geoId/01093,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27555 1990,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28704 1991,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28435 1992,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28561 @@ -24854,27 +5569,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29564 1998,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29502 1999,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29100 -2000,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29341 -2001,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28893 -2002,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28726 -2003,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28619 -2004,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28581 -2005,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28468 -2006,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28643 -2007,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28654 -2008,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28714 -2009,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28410 -2010,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28570 -2011,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28347 -2012,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28151 -2013,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27857 -2014,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27872 -2015,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27751 -2016,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27560 -2017,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27401 -2018,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27353 -2019,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27368 -2020,geoId/01093,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27230 1990,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,287 1991,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,295 1992,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,318 @@ -24885,38 +5579,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,511 1998,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,557 1999,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,597 -2000,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4700 -2001,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5133 -2002,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5806 -2003,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6419 -2004,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6914 -2005,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7656 -2006,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8504 -2007,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9133 -2008,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9885 -2009,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10796 -2010,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11299 -2011,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11652 -2012,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11818 -2013,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11996 -2014,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12064 -2015,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12334 -2016,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12769 -2017,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13104 -2018,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13597 -2019,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13990 -2020,geoId/01095,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14517 -2010,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,681 -2011,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,664 -2012,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,650 -2013,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,619 -2014,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,624 -2015,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,616 -2016,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,623 -2017,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,657 -2018,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,677 -2019,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,683 -2020,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,744 1990,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1991,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 1992,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 @@ -24927,59 +5589,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1998,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 1999,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 -2000,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2001,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2002,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2003,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 -2004,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,240 -2005,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,285 -2006,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,327 -2007,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,372 -2008,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,429 -2009,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,503 -2010,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,528 -2011,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,506 -2012,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,484 -2013,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,452 -2014,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,453 -2015,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,453 -2016,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,448 -2017,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,479 -2018,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,484 -2019,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,484 -2020,geoId/01095,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,538 -2000,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2001,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2002,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2004,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2005,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2006,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2007,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2008,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2009,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2010,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2011,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2012,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2014,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2015,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2016,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2017,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2018,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2019,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2020,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2010,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2011,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2012,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2013,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2014,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2015,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2016,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2017,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2018,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2019,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2020,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 1990,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1991,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1992,geoId/01095,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 @@ -25000,91 +5609,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2001,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2002,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2003,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2004,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,154 -2005,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 -2006,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,227 -2007,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,269 -2008,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,330 -2009,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,371 -2010,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,364 -2011,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,433 -2012,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,531 -2013,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,551 -2014,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,570 -2015,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,557 -2016,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,533 -2017,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,527 -2018,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,540 -2019,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,536 -2020,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,546 -2010,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,465 -2011,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,538 -2012,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,655 -2013,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,671 -2014,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,704 -2015,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,698 -2016,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,681 -2017,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,698 -2018,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,717 -2019,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,717 -2020,geoId/01095,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,738 -2010,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2011,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2012,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2013,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,167 -2014,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2015,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2016,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,206 -2017,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,219 -2018,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,248 -2019,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,252 -2020,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,280 -2000,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2001,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2002,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2003,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2004,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2005,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2006,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2007,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2008,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2009,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2010,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2011,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2012,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,154 -2013,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2014,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2015,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2016,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2017,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2018,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2019,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2020,geoId/01095,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,236 -2000,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2001,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2002,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2003,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2004,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,150 -2005,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2006,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2007,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,195 -2008,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,227 -2009,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,246 -2010,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2011,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,266 -2012,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,280 -2013,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,288 -2014,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,297 -2015,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,306 -2016,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,339 -2017,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,351 -2018,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,379 -2019,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,389 -2020,geoId/01095,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,408 1990,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,280 1991,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,285 1992,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,306 @@ -25095,38 +5619,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,495 1998,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,542 1999,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,583 -2000,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4483 -2001,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4803 -2002,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5363 -2003,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5868 -2004,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6259 -2005,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6868 -2006,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7618 -2007,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8126 -2008,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8722 -2009,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9478 -2010,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9941 -2011,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10241 -2012,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10327 -2013,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10524 -2014,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10537 -2015,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10797 -2016,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11198 -2017,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11481 -2018,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11875 -2019,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12258 -2020,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12669 -2010,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10174 -2011,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10474 -2012,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10563 -2013,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10770 -2014,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10784 -2015,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11061 -2016,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11486 -2017,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11777 -2018,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12208 -2019,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12589 -2020,geoId/01095,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13020 1990,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,70733 1991,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,71504 1992,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,72950 @@ -25137,38 +5629,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79440 1998,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79635 1999,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79927 -2000,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77729 -2001,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77344 -2002,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77611 -2003,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77929 -2004,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78217 -2005,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78860 -2006,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79705 -2007,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,80472 -2008,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,81187 -2009,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,81417 -2010,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,81820 -2011,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,82247 -2012,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,82446 -2013,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,82362 -2014,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,82198 -2015,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,82254 -2016,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,82354 -2017,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,82485 -2018,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,82633 -2019,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,82761 -2020,geoId/01095,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,82473 -2010,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1193 -2011,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1171 -2012,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1174 -2013,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1177 -2014,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1194 -2015,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1215 -2016,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1219 -2017,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1229 -2018,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1208 -2019,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1227 -2020,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1227 1990,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,227 1991,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,226 1992,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,225 @@ -25179,59 +5639,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,224 1998,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,221 1999,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,226 -2000,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,409 -2001,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,442 -2002,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,447 -2003,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,454 -2004,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,469 -2005,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,513 -2006,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,509 -2007,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,534 -2008,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,532 -2009,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,532 -2010,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,573 -2011,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,572 -2012,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,544 -2013,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,559 -2014,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,547 -2015,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,555 -2016,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,559 -2017,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,561 -2018,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,541 -2019,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,551 -2020,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,556 -2000,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2001,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,253 -2002,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,286 -2003,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,302 -2004,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,323 -2005,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,340 -2006,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,374 -2007,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,397 -2008,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,444 -2009,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,467 -2010,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,486 -2011,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,550 -2012,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,588 -2013,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,606 -2014,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,607 -2015,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,605 -2016,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,599 -2017,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,589 -2018,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,615 -2019,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,629 -2020,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,637 -2010,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,590 -2011,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,670 -2012,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,708 -2013,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,723 -2014,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,726 -2015,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,749 -2016,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,752 -2017,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,730 -2018,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,774 -2019,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,786 -2020,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,808 1990,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,109 1991,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,114 1992,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,127 @@ -25252,102 +5659,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1324 1998,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1345 1999,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1365 -2000,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1190 -2001,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1237 -2002,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1289 -2003,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1315 -2004,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1295 -2005,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1264 -2006,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1339 -2007,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1352 -2008,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1381 -2009,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1370 -2010,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1397 -2011,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1498 -2012,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1547 -2013,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1680 -2014,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1840 -2015,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1995 -2016,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2135 -2017,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2206 -2018,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2292 -2019,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2456 -2020,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2484 -2010,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1859 -2011,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1971 -2012,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2061 -2013,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2199 -2014,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2388 -2015,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2587 -2016,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2775 -2017,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2868 -2018,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2958 -2019,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3141 -2020,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3199 -2010,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2011,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2012,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2013,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2014,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2015,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2016,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2017,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2018,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2019,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2020,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2000,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2002,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2003,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2004,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2005,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2006,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2007,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2008,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2009,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2010,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2011,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2012,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2013,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2014,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2015,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2016,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2017,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2018,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2019,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2020,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2000,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,597 -2001,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,614 -2002,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,681 -2003,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,726 -2004,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,815 -2005,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,855 -2006,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,945 -2007,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1000 -2008,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1022 -2009,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1087 -2010,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1141 -2011,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1142 -2012,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1209 -2013,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1211 -2014,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1254 -2015,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1331 -2016,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1389 -2017,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1420 -2018,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1415 -2019,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1437 -2020,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1483 -2010,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79237 -2011,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79485 -2012,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79603 -2013,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79355 -2014,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79041 -2015,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78942 -2016,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78899 -2017,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78971 -2018,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79016 -2019,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78936 -2020,geoId/01095,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78603 1990,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,69309 1991,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,70053 1992,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,71454 @@ -25358,27 +5669,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,77736 1998,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,77921 1999,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,78179 -2000,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75316 -2001,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74777 -2002,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74882 -2003,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75102 -2004,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75282 -2005,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75844 -2006,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76488 -2007,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77139 -2008,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77751 -2009,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77906 -2010,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78158 -2011,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78401 -2012,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78461 -2013,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78204 -2014,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77860 -2015,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77686 -2016,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77591 -2017,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77624 -2018,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77684 -2019,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77584 -2020,geoId/01095,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77204 1990,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3224 1991,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3277 1992,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3419 @@ -25389,38 +5679,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4865 1998,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5306 1999,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5559 -2000,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4984 -2001,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5384 -2002,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5641 -2003,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6011 -2004,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6338 -2005,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6791 -2006,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7429 -2007,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8063 -2008,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8772 -2009,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9537 -2010,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10034 -2011,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10340 -2012,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10298 -2013,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10802 -2014,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11190 -2015,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11460 -2016,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11706 -2017,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11764 -2018,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12000 -2019,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12132 -2020,geoId/01097,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12367 -2010,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,636 -2011,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,580 -2012,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,570 -2013,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,560 -2014,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,536 -2015,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,508 -2016,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,503 -2017,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,499 -2018,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,500 -2019,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,473 -2020,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,478 1990,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,53 1991,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,53 1992,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,49 @@ -25431,59 +5689,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,76 1998,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,74 1999,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,72 -2000,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2001,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2002,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2003,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 -2004,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2005,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2006,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2007,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,256 -2008,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2009,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,304 -2010,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,369 -2011,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,340 -2012,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,333 -2013,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,308 -2014,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,285 -2015,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,268 -2016,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,255 -2017,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2018,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,229 -2019,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2020,geoId/01097,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,205 -2000,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2001,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2002,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2003,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2004,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2005,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2006,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2007,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2008,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2009,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2010,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2011,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2012,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2013,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2015,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2016,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2017,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2018,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2019,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2020,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2010,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,248 -2011,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,236 -2012,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2013,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2014,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2015,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2016,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,205 -2017,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,212 -2018,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2019,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,233 -2020,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237 1990,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,91 1991,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,94 1992,geoId/01097,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,112 @@ -25504,91 +5709,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,496 1998,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,541 1999,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,530 -2000,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,782 -2001,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,765 -2002,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,765 -2003,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,778 -2004,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,805 -2005,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,896 -2006,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,900 -2007,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,919 -2008,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1011 -2009,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1044 -2010,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1067 -2011,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1047 -2012,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1015 -2013,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1089 -2014,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1131 -2015,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1205 -2016,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1228 -2017,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1181 -2018,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1172 -2019,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1161 -2020,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1199 -2010,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1303 -2011,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1271 -2012,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1259 -2013,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1324 -2014,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1359 -2015,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1463 -2016,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1496 -2017,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1437 -2018,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1468 -2019,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1442 -2020,geoId/01097,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1490 -2010,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2011,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2012,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2013,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2014,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2015,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2016,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2017,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2018,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2019,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2020,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2000,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2001,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2002,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2003,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2004,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2005,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2006,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2007,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2008,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2009,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2010,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2011,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2012,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2013,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2014,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2015,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2017,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2018,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2019,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2020,geoId/01097,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2000,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2001,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2002,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2003,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,267 -2004,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,292 -2005,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,271 -2006,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,316 -2007,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,351 -2008,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,371 -2009,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,450 -2010,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,487 -2011,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,456 -2012,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,460 -2013,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,471 -2014,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,466 -2015,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,492 -2016,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,506 -2017,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,507 -2018,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,542 -2019,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,533 -2020,geoId/01097,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,542 1990,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2654 1991,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2715 1992,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2832 @@ -25599,38 +5719,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4185 1998,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4540 1999,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4808 -2000,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3949 -2001,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4216 -2002,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4401 -2003,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4656 -2004,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4886 -2005,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5294 -2006,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5859 -2007,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6378 -2008,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6974 -2009,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7542 -2010,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7884 -2011,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8299 -2012,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8334 -2013,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8796 -2014,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9173 -2015,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9363 -2016,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9586 -2017,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9694 -2018,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9895 -2019,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10056 -2020,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10259 -2010,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8263 -2011,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8657 -2012,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8695 -2013,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9161 -2014,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9547 -2015,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9751 -2016,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9994 -2017,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10097 -2018,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10325 -2019,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10489 -2020,geoId/01097,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10692 1990,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,375939 1991,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,379705 1992,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,384703 @@ -25641,38 +5729,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,393364 1998,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,393580 1999,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,394093 -2000,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,395089 -2001,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,394745 -2002,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,392908 -2003,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,392071 -2004,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,391621 -2005,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,392151 -2006,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,395487 -2007,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,397652 -2008,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,400424 -2009,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,402457 -2010,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,403294 -2011,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,402786 -2012,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,403595 -2013,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,403223 -2014,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,403108 -2015,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,403194 -2016,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,403463 -2017,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,402445 -2018,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,402275 -2019,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,401384 -2020,geoId/01097,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,400349 -2010,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5809 -2011,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5824 -2012,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5932 -2013,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6040 -2014,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5986 -2015,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5981 -2016,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6034 -2017,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6064 -2018,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6023 -2019,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6030 -2020,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6004 1990,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1903 1991,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1882 1992,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1821 @@ -25683,59 +5739,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1658 1998,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1594 1999,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1562 -2000,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2704 -2001,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2656 -2002,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2736 -2003,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2838 -2004,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2897 -2005,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2995 -2006,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3077 -2007,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3232 -2008,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3333 -2009,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3405 -2010,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3553 -2011,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3551 -2012,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3612 -2013,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3657 -2014,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3639 -2015,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3607 -2016,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3650 -2017,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3672 -2018,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3628 -2019,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3589 -2020,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3596 -2000,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5723 -2001,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5721 -2002,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5924 -2003,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6092 -2004,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6374 -2005,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6594 -2006,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6886 -2007,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7127 -2008,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7322 -2009,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7656 -2010,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7621 -2011,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7804 -2012,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7919 -2013,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7922 -2014,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8141 -2015,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8330 -2016,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8494 -2017,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8508 -2018,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8506 -2019,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8582 -2020,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8609 -2010,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8746 -2011,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8964 -2012,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9169 -2013,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9211 -2014,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9479 -2015,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9720 -2016,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9933 -2017,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9996 -2018,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10056 -2019,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10176 -2020,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10262 1990,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3363 1991,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3508 1992,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3619 @@ -25756,102 +5759,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,129804 1998,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,130655 1999,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,131794 -2000,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133424 -2001,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133955 -2002,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133981 -2003,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134303 -2004,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134659 -2005,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135385 -2006,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137331 -2007,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138717 -2008,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140479 -2009,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141832 -2010,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142742 -2011,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143209 -2012,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144588 -2013,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145357 -2014,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145673 -2015,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146507 -2016,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147374 -2017,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147714 -2018,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148452 -2019,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149074 -2020,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149218 -2010,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145268 -2011,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145797 -2012,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147390 -2013,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148275 -2014,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148664 -2015,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149608 -2016,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,150619 -2017,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151063 -2018,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151911 -2019,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152646 -2020,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152843 -2010,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,352 -2011,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,349 -2012,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,334 -2013,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,334 -2014,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,350 -2015,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,383 -2016,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,350 -2017,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,335 -2018,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,329 -2019,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,317 -2020,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,339 -2000,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2001,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2002,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2003,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2004,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2005,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2006,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2007,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2008,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,150 -2009,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2010,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2011,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2012,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2013,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2014,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158 -2015,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2016,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2017,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2018,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2019,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2020,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2000,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3250 -2001,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3423 -2002,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3559 -2003,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3613 -2004,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3754 -2005,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3885 -2006,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4146 -2007,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4385 -2008,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4624 -2009,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4859 -2010,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4973 -2011,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5075 -2012,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5392 -2013,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5548 -2014,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5671 -2015,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5817 -2016,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6010 -2017,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6171 -2018,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6278 -2019,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6459 -2020,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6533 -2010,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,248473 -2011,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,247350 -2012,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,246568 -2013,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245366 -2014,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,244719 -2015,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243831 -2016,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,242998 -2017,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,241634 -2018,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,240742 -2019,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,239191 -2020,geoId/01097,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237963 1990,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,252916 1991,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,254855 1992,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,257336 @@ -25862,27 +5769,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,257827 1998,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,257266 1999,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,256622 -2000,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,249905 -2001,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,248891 -2002,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,246597 -2003,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245110 -2004,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243814 -2005,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243174 -2006,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243905 -2007,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,244061 -2008,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,244516 -2009,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,244560 -2010,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,244237 -2011,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,242984 -2012,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,241931 -2013,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,240578 -2014,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,239826 -2015,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,238768 -2016,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237794 -2017,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,236261 -2018,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235304 -2019,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,233574 -2020,geoId/01097,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,232275 1990,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,93 1991,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,91 1992,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,91 @@ -25893,38 +5779,7 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,136 1998,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,152 1999,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,162 -2000,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,190 -2001,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,194 -2002,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,187 -2003,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,193 2004,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,191 -2005,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,200 -2006,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,210 -2007,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,213 -2008,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,211 -2009,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,220 -2010,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,216 -2011,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,227 -2012,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,241 -2013,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,263 -2014,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,285 -2015,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,286 -2016,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,289 -2017,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,310 -2018,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,339 -2019,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,353 -2020,geoId/01099,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,340 -2010,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 1990,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -25935,59 +5790,8 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 2004,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2009,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2019,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01099,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2000,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 2004,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2011,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 1990,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01099,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -26008,91 +5812,9 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18 1998,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22 1999,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23 -2000,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2001,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2002,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2003,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 2004,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2005,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2006,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2007,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2008,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2009,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2010,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2011,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2012,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2014,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2015,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2016,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2017,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2018,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2019,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2020,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2010,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2011,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2013,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2014,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2016,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2017,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2018,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2019,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2020,geoId/01099,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2010,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2000,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 2004,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01099,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 2004,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2006,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2008,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2016,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2019,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01099,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 1990,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,74 1991,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,74 1992,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,72 @@ -26103,38 +5825,7 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,118 1998,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,130 1999,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,139 -2000,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2001,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2002,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2003,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 2004,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2005,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2006,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134 -2007,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2008,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2009,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2010,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,150 -2011,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158 -2012,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2013,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2014,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2015,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2016,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2017,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,227 -2018,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,246 -2019,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262 -2020,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,244 -2010,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2011,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2012,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2013,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 -2014,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2015,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2016,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2017,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237 -2018,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,260 -2019,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,276 -2020,geoId/01099,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262 1990,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24030 1991,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23772 1992,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23919 @@ -26145,38 +5836,7 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24011 1998,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23853 1999,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23798 -2000,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24129 -2001,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23926 -2002,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23835 -2003,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23660 2004,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23578 -2005,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23483 -2006,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23392 -2007,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23224 -2008,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23182 -2009,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22998 -2010,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22788 -2011,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22572 -2012,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22341 -2013,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21911 -2014,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21642 -2015,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21434 -2016,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21264 -2017,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20984 -2018,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20696 -2019,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20336 -2020,geoId/01099,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20119 -2010,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,404 -2011,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,413 -2012,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,411 -2013,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,420 -2014,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,425 -2015,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,404 -2016,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,409 -2017,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,401 -2018,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,403 -2019,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,405 -2020,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,398 1990,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,215 1991,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,211 1992,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,200 @@ -26187,59 +5847,8 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,183 1998,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,179 1999,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,169 -2000,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,234 -2001,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,233 -2002,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243 -2003,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,250 2004,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,258 -2005,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,249 -2006,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,240 -2007,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2008,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,238 -2009,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,252 -2010,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,254 -2011,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2012,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,267 -2013,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2014,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,268 -2015,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,260 -2016,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,252 -2017,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,253 -2018,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,254 -2019,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,248 -2020,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,246 -2000,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2001,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2002,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2003,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 2004,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2005,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2006,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2007,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2008,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2009,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2010,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2011,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2012,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2013,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2015,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2016,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2017,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2018,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2019,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2020,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2010,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2011,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2012,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2013,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2014,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2015,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2016,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2017,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2018,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2019,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128 -2020,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 1990,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,53 1991,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,53 1992,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,53 @@ -26260,102 +5869,9 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9820 1998,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9799 1999,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9834 -2000,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9716 -2001,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9675 -2002,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9697 -2003,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9640 2004,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9669 -2005,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9624 -2006,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9657 -2007,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9617 -2008,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9610 -2009,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9611 -2010,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9564 -2011,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9417 -2012,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9328 -2013,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9150 -2014,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9030 -2015,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8913 -2016,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8827 -2017,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8750 -2018,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8659 -2019,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8437 -2020,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8397 -2010,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9707 -2011,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9579 -2012,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9476 -2013,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9309 -2014,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9192 -2015,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9073 -2016,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9007 -2017,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8928 -2018,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8839 -2019,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8636 -2020,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8576 -2010,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 2004,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2001,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2002,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2003,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 2004,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 -2005,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243 -2006,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,253 -2007,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,279 -2008,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,297 -2009,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,309 -2010,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,307 -2011,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,324 -2012,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,309 -2013,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,326 -2014,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,326 -2015,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,322 -2016,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,343 -2017,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,345 -2018,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,348 -2019,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,353 -2020,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,350 -2010,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12863 -2011,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12776 -2012,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12638 -2013,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12392 -2014,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12243 -2015,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12135 -2016,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12053 -2017,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11864 -2018,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11651 -2019,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11516 -2020,geoId/01099,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11350 1990,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14324 1991,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14148 1992,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14178 @@ -26366,27 +5882,7 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13946 1998,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13814 1999,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13733 -2000,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13950 -2001,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13779 -2002,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13645 -2003,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13496 2004,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13371 -2005,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13298 -2006,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13170 -2007,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13009 -2008,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12969 -2009,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12754 -2010,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12593 -2011,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12485 -2012,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12356 -2013,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12093 -2014,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11939 -2015,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11844 -2016,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11746 -2017,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11544 -2018,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11336 -2019,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11202 -2020,geoId/01099,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11035 1990,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1633 1991,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1698 1992,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1747 @@ -26397,38 +5893,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2473 1998,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2595 1999,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2738 -2000,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2733 -2001,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3200 -2002,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3623 -2003,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4040 -2004,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4617 -2005,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5107 -2006,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5766 -2007,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6517 -2008,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7201 -2009,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7711 -2010,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8236 -2011,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7833 -2012,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7663 -2013,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7435 -2014,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7386 -2015,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7487 -2016,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7681 -2017,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7862 -2018,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7925 -2019,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8185 -2020,geoId/01101,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8340 -2010,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,423 -2011,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,419 -2012,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,430 -2013,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,433 -2014,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,405 -2015,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,380 -2016,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,432 -2017,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,452 -2018,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,440 -2019,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,436 -2020,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,471 1990,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 1991,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15 1992,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 @@ -26439,59 +5903,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 1998,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28 1999,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,26 -2000,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2001,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2002,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2003,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2004,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2005,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128 -2006,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2007,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2008,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2009,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2010,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,253 -2011,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2012,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,280 -2013,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,283 -2014,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,253 -2015,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,246 -2016,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2017,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2018,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,249 -2019,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,255 -2020,geoId/01101,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,253 -2000,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2001,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2002,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2003,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2004,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2005,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2006,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2007,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2008,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2009,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2010,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2011,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2012,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2013,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2014,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2015,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2016,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2017,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2018,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2019,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2020,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2010,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2011,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 -2012,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2013,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2014,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2015,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2016,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2017,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 -2018,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2019,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2020,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,247 1990,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,68 1991,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,75 1992,geoId/01101,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,66 @@ -26512,91 +5923,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,373 1998,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,379 1999,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,399 -2000,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,547 -2001,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,546 -2002,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,569 -2003,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,583 -2004,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,641 -2005,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,663 -2006,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,711 -2007,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,776 -2008,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,847 -2009,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,873 -2010,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,963 -2011,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,949 -2012,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,971 -2013,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,972 -2014,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,982 -2015,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1022 -2016,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,999 -2017,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1007 -2018,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1009 -2019,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1067 -2020,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1054 -2010,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1148 -2011,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1110 -2012,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1125 -2013,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1153 -2014,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1162 -2015,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1193 -2016,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1212 -2017,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1243 -2018,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1271 -2019,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1314 -2020,geoId/01101,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1372 -2010,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,230 -2011,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2012,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2013,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2014,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2015,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2016,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2017,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2018,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2019,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2020,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2000,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2002,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2003,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2004,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2005,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2006,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2007,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2008,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2009,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2010,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2011,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2012,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2013,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2014,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2015,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2016,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2017,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2018,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2019,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2020,geoId/01101,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2000,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2001,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2002,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2003,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2004,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2005,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,202 -2006,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 -2007,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,246 -2008,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,269 -2009,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,315 -2010,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,329 -2011,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,299 -2012,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,286 -2013,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,291 -2014,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,314 -2015,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,300 -2016,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,360 -2017,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,412 -2018,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,424 -2019,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,413 -2020,geoId/01101,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,496 1990,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1238 1991,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1301 1992,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1365 @@ -26607,38 +5933,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1969 1998,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2113 1999,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2209 -2000,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2022 -2001,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2352 -2002,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2704 -2003,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3038 -2004,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3481 -2005,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3961 -2006,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4526 -2007,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5100 -2008,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5659 -2009,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6028 -2010,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6393 -2011,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6045 -2012,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5878 -2013,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5656 -2014,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5614 -2015,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5708 -2016,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5839 -2017,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5953 -2018,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6047 -2019,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6249 -2020,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6329 -2010,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6651 -2011,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6283 -2012,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6106 -2013,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5879 -2014,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5871 -2015,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5937 -2016,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6118 -2017,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6287 -2018,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6392 -2019,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6577 -2020,geoId/01101,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6725 1990,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,207711 1991,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,209987 1992,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,212158 @@ -26649,38 +5943,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,215242 1998,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,214797 1999,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,213075 -2000,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,220695 -2001,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,219848 -2002,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,219562 -2003,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,218640 -2004,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,218385 -2005,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,218501 -2006,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,221525 -2007,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,221371 -2008,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,220260 -2009,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,219896 -2010,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,221262 -2011,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,221385 -2012,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,221260 -2013,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,220826 -2014,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,220261 -2015,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,219933 -2016,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,219717 -2017,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,219652 -2018,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,218706 -2019,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,217889 -2020,geoId/01101,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,216299 -2010,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1351 -2011,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1342 -2012,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1326 -2013,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1362 -2014,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1393 -2015,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1374 -2016,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1371 -2017,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1336 -2018,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1346 -2019,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1346 -2020,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1304 1990,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,407 1991,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,409 1992,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,394 @@ -26691,59 +5953,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,369 1998,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,356 1999,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,357 -2000,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,536 -2001,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,525 -2002,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,502 -2003,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,530 -2004,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,518 -2005,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,519 -2006,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,525 -2007,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,538 -2008,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,559 -2009,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,560 -2010,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,527 -2011,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,494 -2012,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,478 -2013,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,491 -2014,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,488 -2015,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,493 -2016,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,508 -2017,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,486 -2018,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,474 -2019,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,472 -2020,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,464 -2000,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2257 -2001,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2424 -2002,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2590 -2003,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2811 -2004,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3036 -2005,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3327 -2006,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3679 -2007,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4032 -2008,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4213 -2009,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4584 -2010,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4848 -2011,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4992 -2012,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5393 -2013,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5755 -2014,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6101 -2015,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6421 -2016,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6847 -2017,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7120 -2018,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7209 -2019,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7467 -2020,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7478 -2010,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5594 -2011,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5765 -2012,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6200 -2013,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6581 -2014,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6982 -2015,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7281 -2016,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7732 -2017,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8025 -2018,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8120 -2019,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8394 -2020,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8450 1990,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1502 1991,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1563 1992,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1603 @@ -26764,102 +5973,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,94153 1998,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,94435 1999,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,94172 -2000,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108519 -2001,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109320 -2002,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110799 -2003,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111902 -2004,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113786 -2005,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116034 -2006,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119464 -2007,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121034 -2008,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122077 -2009,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123514 -2010,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125508 -2011,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126804 -2012,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127471 -2013,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128656 -2014,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129230 -2015,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129998 -2016,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130786 -2017,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132086 -2018,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132811 -2019,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133137 -2020,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133669 -2010,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126978 -2011,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128337 -2012,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129084 -2013,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130340 -2014,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130949 -2015,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131726 -2016,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132574 -2017,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133876 -2018,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134623 -2019,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134953 -2020,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135539 -2010,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2011,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,205 -2012,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 -2013,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2014,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,212 -2015,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2016,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,227 -2017,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,226 -2018,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2019,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,233 -2020,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,229 -2000,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2001,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2002,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2003,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2004,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2005,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2006,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2007,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2008,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2009,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2010,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2011,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2012,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2013,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2014,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2015,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2016,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2017,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2018,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2019,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2020,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2000,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1653 -2001,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1790 -2002,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1908 -2003,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1911 -2004,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1962 -2005,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2020 -2006,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2167 -2007,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2174 -2008,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2232 -2009,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2285 -2010,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2357 -2011,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2458 -2012,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2555 -2013,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2645 -2014,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2732 -2015,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2714 -2016,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2764 -2017,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2819 -2018,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2820 -2019,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2855 -2020,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2919 -2010,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89739 -2011,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88475 -2012,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87249 -2013,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85258 -2014,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83755 -2015,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82357 -2016,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80888 -2017,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79267 -2018,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77505 -2019,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76111 -2020,geoId/01101,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73973 1990,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,118617 1991,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,119517 1992,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,120122 @@ -26870,27 +5983,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,118906 1998,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,118220 1999,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,116745 -2000,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107663 -2001,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105717 -2002,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103689 -2003,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,101406 -2004,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99008 -2005,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96529 -2006,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95614 -2007,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93516 -2008,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91101 -2009,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88866 -2010,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87934 -2011,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86549 -2012,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85271 -2013,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83193 -2014,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81621 -2015,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80222 -2016,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78731 -2017,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77044 -2018,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75304 -2019,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73867 -2020,geoId/01101,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71670 1990,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,586 1991,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,627 1992,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,652 @@ -26901,38 +5993,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,995 1998,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1084 1999,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1164 -2000,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3684 -2001,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4144 -2002,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4503 -2003,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4982 -2004,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5430 -2005,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6070 -2006,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6623 -2007,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7382 -2008,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8047 -2009,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8656 -2010,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9165 -2011,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9308 -2012,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9168 -2013,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9098 -2014,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9208 -2015,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9317 -2016,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9659 -2017,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9835 -2018,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10066 -2019,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10278 -2020,geoId/01103,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10461 -2010,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,494 -2011,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,476 -2012,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,446 -2013,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,431 -2014,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,410 -2015,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,436 -2016,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,450 -2017,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,461 -2018,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,462 -2019,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,450 -2020,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,469 1990,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1991,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1992,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 @@ -26943,59 +6003,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1998,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1999,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 -2000,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2001,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2002,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2003,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2004,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2005,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2006,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,242 -2007,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262 -2008,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,308 -2009,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,354 -2010,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,378 -2011,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,371 -2012,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,337 -2013,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,328 -2014,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,311 -2015,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,337 -2016,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,339 -2017,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,343 -2018,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,335 -2019,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,340 -2020,geoId/01103,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,356 -2000,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2001,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2002,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2003,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2004,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2005,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2006,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2007,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2008,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2009,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2010,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2011,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2012,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2013,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2014,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2015,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2016,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2017,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2018,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2019,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2020,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2010,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2011,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2012,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2013,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2014,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2015,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2016,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2017,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2018,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2019,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2020,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 1990,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1991,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1992,geoId/01103,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 @@ -27016,91 +6023,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,59 1998,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,55 1999,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,68 -2000,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2001,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2002,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2003,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 -2004,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2005,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,241 -2006,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,276 -2007,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,313 -2008,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,340 -2009,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,367 -2010,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,386 -2011,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,410 -2012,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,402 -2013,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,388 -2014,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,392 -2015,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,403 -2016,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,409 -2017,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,437 -2018,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,440 -2019,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,442 -2020,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,456 -2010,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,462 -2011,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,487 -2012,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,486 -2013,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,460 -2014,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,482 -2015,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,490 -2016,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,492 -2017,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,532 -2018,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,550 -2019,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,549 -2020,geoId/01103,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,568 -2010,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2011,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2012,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2013,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2014,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2015,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2016,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2017,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2018,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2019,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2020,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2000,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2001,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2002,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2003,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2004,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2005,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2006,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2007,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2008,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2009,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2010,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2011,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2012,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2013,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2014,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2015,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2016,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2017,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2018,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2019,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2020,geoId/01103,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2000,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2001,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2002,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2003,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2004,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2005,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2006,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2007,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2008,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2009,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2010,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2011,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2012,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2013,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,167 -2014,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 -2015,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2016,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190 -2017,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,209 -2018,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,226 -2019,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2020,geoId/01103,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 1990,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,533 1991,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,566 1992,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,595 @@ -27111,38 +6033,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,924 1998,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1017 1999,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1081 -2000,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3362 -2001,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3766 -2002,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4062 -2003,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4472 -2004,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4859 -2005,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5417 -2006,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5876 -2007,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6553 -2008,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7118 -2009,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7629 -2010,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8072 -2011,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8203 -2012,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8105 -2013,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8064 -2014,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8188 -2015,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8260 -2016,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8570 -2017,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8704 -2018,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8905 -2019,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9105 -2020,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9242 -2010,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8235 -2011,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8351 -2012,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8254 -2013,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8203 -2014,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8342 -2015,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8422 -2016,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8735 -2017,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8890 -2018,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9109 -2019,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9291 -2020,geoId/01103,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9442 1990,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,99903 1991,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,101277 1992,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,102742 @@ -27153,38 +6043,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,107382 1998,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,108134 1999,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,108501 -2000,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,107537 -2001,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,107538 -2002,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,107263 -2003,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,107916 -2004,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,107576 -2005,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,107894 -2006,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,108868 -2007,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,109015 -2008,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,109647 -2009,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,110298 -2010,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,110477 -2011,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,110750 -2012,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,110980 -2013,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,110527 -2014,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,110288 -2015,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,109999 -2016,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,109431 -2017,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,109105 -2018,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,109150 -2019,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,109352 -2020,geoId/01103,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,109422 -2010,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1927 -2011,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1932 -2012,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1959 -2013,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1981 -2014,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2005 -2015,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2008 -2016,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2015 -2017,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1999 -2018,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2051 -2019,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2056 -2020,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2061 1990,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,307 1991,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,313 1992,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,308 @@ -27195,59 +6053,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,289 1998,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,277 1999,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,271 -2000,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,729 -2001,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,766 -2002,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,774 -2003,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,808 -2004,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,790 -2005,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,808 -2006,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,854 -2007,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,883 -2008,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,931 -2009,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,940 -2010,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,938 -2011,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,927 -2012,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,942 -2013,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,921 -2014,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,916 -2015,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,943 -2016,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,939 -2017,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,925 -2018,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,955 -2019,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,955 -2020,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,976 -2000,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,502 -2001,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,537 -2002,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,541 -2003,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,568 -2004,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,597 -2005,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,626 -2006,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,639 -2007,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,669 -2008,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,675 -2009,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,664 -2010,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,701 -2011,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,727 -2012,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,769 -2013,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,755 -2014,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,759 -2015,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,757 -2016,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,772 -2017,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,758 -2018,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,777 -2019,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,754 -2020,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,750 -2010,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,922 -2011,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,959 -2012,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1007 -2013,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1002 -2014,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1038 -2015,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1047 -2016,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1063 -2017,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1063 -2018,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1098 -2019,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1074 -2020,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1111 1990,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,367 1991,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,393 1992,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,411 @@ -27268,102 +6073,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11630 1998,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11809 1999,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11956 -2000,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12434 -2001,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12562 -2002,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12613 -2003,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12888 -2004,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12899 -2005,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12995 -2006,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13273 -2007,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13396 -2008,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13667 -2009,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13982 -2010,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14122 -2011,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14228 -2012,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14313 -2013,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14379 -2014,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14483 -2015,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14631 -2016,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14825 -2017,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14887 -2018,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15065 -2019,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15164 -2020,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15279 -2010,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14904 -2011,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15049 -2012,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15209 -2013,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15318 -2014,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15473 -2015,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15634 -2016,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15879 -2017,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15983 -2018,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16201 -2019,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16321 -2020,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16501 -2010,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2011,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2012,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2013,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2014,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2015,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2016,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2017,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2018,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2019,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2020,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2000,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2001,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2002,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2003,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2004,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2005,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2006,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2007,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2008,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2009,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2010,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2012,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2013,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2015,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2016,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2017,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2019,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2020,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2000,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1070 -2001,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1095 -2002,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1176 -2003,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1250 -2004,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1319 -2005,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1407 -2006,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1481 -2007,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1582 -2008,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1664 -2009,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1740 -2010,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1872 -2011,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1928 -2012,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2048 -2013,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2124 -2014,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2214 -2015,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2220 -2016,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2267 -2017,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2347 -2018,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2394 -2019,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2422 -2020,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2511 -2010,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94544 -2011,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94698 -2012,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94790 -2013,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94292 -2014,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93961 -2015,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93477 -2016,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92685 -2017,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92341 -2018,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92139 -2019,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92268 -2020,geoId/01103,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92207 1990,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,89116 1991,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,90272 1992,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,91467 @@ -27374,27 +6083,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,94973 1998,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,95556 1999,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,95765 -2000,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92777 -2001,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92553 -2002,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92125 -2003,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92373 -2004,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91933 -2005,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92009 -2006,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92570 -2007,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92428 -2008,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92647 -2009,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92908 -2010,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92774 -2011,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92869 -2012,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92836 -2013,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92279 -2014,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91848 -2015,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91370 -2016,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90547 -2017,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90110 -2018,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89869 -2019,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89972 -2020,geoId/01103,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89824 1990,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,36 1991,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32 1992,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32 @@ -27405,38 +6093,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,37 1998,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39 1999,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,35 -2000,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,102 -2001,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,109 -2002,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,103 -2003,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,105 -2004,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,105 -2005,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,102 -2006,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,93 -2007,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,104 -2008,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,111 -2009,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,112 -2010,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,119 -2011,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,133 -2012,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,133 -2013,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,147 -2014,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,134 -2015,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,148 -2016,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,151 -2017,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,154 -2018,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,128 -2019,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,143 -2020,geoId/01105,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,148 -2010,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2018,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 1990,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -27447,59 +6103,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01105,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 1990,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01105,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -27520,91 +6123,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 1998,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,25 1999,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22 -2000,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2001,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2002,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2003,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2004,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2005,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2006,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2007,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2008,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2009,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2010,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2012,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2013,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2016,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2017,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2018,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2019,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2011,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2012,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2014,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2016,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2018,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2019,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2020,geoId/01105,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2010,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01105,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2001,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2002,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2003,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2004,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2018,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01105,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 1990,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 1991,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 1992,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10 @@ -27615,38 +6133,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1998,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 1999,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 -2000,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2001,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2002,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2003,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2004,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2005,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2006,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2007,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2008,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2009,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2010,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2011,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2012,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2013,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2014,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2015,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2016,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2017,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2018,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2019,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2020,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2010,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2011,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2012,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2013,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2014,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2015,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2016,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2017,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2018,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2019,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2020,geoId/01105,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 1990,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12670 1991,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12411 1992,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12337 @@ -27657,38 +6143,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12568 1998,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12643 1999,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12575 -2000,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11707 -2001,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11536 -2002,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11446 -2003,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11196 -2004,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11048 -2005,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10779 -2006,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10584 -2007,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10670 -2008,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10611 -2009,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10578 -2010,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10445 -2011,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10319 -2012,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10033 -2013,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9858 -2014,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9675 -2015,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9502 -2016,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9387 -2017,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9150 -2018,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8921 -2019,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8797 -2020,geoId/01105,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8539 -2010,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2012,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2015,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2016,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2017,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2018,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 1990,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,16 1991,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,16 1992,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15 @@ -27699,59 +6153,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 1998,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1999,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 -2000,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2005,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2009,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2012,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2006,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2008,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2009,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2010,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2015,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2016,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2017,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2018,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2019,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2020,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2010,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2011,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2012,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2013,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2014,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2015,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2016,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2017,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2018,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2020,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 1990,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 1991,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 1992,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 @@ -27772,102 +6173,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8316 1998,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8367 1999,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8329 -2000,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8037 -2001,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7957 -2002,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7876 -2003,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7790 -2004,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7717 -2005,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7530 -2006,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7416 -2007,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7411 -2008,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7348 -2009,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7270 -2010,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7230 -2011,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7126 -2012,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6933 -2013,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6806 -2014,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6648 -2015,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6541 -2016,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6448 -2017,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6228 -2018,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6146 -2019,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6022 -2020,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5818 -2010,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7243 -2011,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7152 -2012,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6956 -2013,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6834 -2014,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6676 -2015,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6565 -2016,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6476 -2017,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6258 -2018,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6175 -2019,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6064 -2020,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5864 -2010,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2020,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2001,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2002,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2003,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2004,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2005,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2006,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2007,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2008,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2009,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2011,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2013,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2014,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2015,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2016,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2017,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2018,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2019,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2020,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2010,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3153 -2011,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3122 -2012,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3031 -2013,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2972 -2014,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2946 -2015,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2871 -2016,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2856 -2017,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2839 -2018,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2690 -2019,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2683 -2020,geoId/01105,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2629 1990,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4480 1991,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4347 1992,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4265 @@ -27878,27 +6183,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4226 1998,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4253 1999,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4224 -2000,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3610 -2001,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3519 -2002,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3510 -2003,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3340 -2004,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3262 -2005,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3173 -2006,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3095 -2007,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3176 -2008,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3180 -2009,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3224 -2010,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3124 -2011,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3081 -2012,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2987 -2013,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2930 -2014,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2901 -2015,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2824 -2016,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2808 -2017,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2789 -2018,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2637 -2019,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2626 -2020,geoId/01105,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2565 1990,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,49 1991,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,54 1992,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,51 @@ -27909,38 +6193,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,63 1998,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79 1999,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79 -2000,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,148 -2001,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,153 -2002,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,172 -2003,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,200 -2004,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,212 -2005,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,253 -2006,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,254 -2007,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,284 -2008,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,286 -2009,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,313 -2010,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,317 -2011,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,334 -2012,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,340 -2013,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,422 -2014,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,830 -2015,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1021 -2016,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,940 -2017,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,937 -2018,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,974 -2019,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1036 -2020,geoId/01107,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1061 -2010,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 1990,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -27951,59 +6203,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01107,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 1990,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01107,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -28024,91 +6223,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 1998,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,30 1999,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28 -2000,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2001,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2002,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2003,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2004,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2005,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2006,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2007,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2008,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2009,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2010,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2011,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2012,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2013,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2014,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2015,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2016,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2017,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2019,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2020,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2010,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2011,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2012,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2013,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2014,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2015,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2016,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2018,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2019,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2020,geoId/01107,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2010,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2012,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2013,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2014,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2015,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2016,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2017,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2018,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2019,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2020,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2000,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2004,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2006,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2007,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2008,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2009,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2010,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2011,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2012,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2013,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2014,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2015,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2016,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2017,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2018,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2019,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2020,geoId/01107,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2000,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01107,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 1990,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,30 1991,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29 1992,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,30 @@ -28119,38 +6233,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,42 1998,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,49 1999,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51 -2000,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2001,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2002,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2003,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2004,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2005,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,150 -2006,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,154 -2007,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2008,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172 -2009,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2010,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2011,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,209 -2012,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2013,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,293 -2014,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,690 -2015,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,876 -2016,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,790 -2017,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,782 -2018,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,814 -2019,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,868 -2020,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,890 -2010,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,194 -2011,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,212 -2012,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,220 -2013,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,295 -2014,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,692 -2015,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,878 -2016,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,793 -2017,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,785 -2018,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,818 -2019,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,871 -2020,geoId/01107,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,893 1990,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20633 1991,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20687 1992,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20879 @@ -28161,38 +6243,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20883 1998,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20940 1999,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20949 -2000,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20733 -2001,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20720 -2002,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20663 -2003,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20327 -2004,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20168 -2005,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19939 -2006,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19874 -2007,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19705 -2008,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19665 -2009,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19501 -2010,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19432 -2011,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19023 -2012,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18974 -2013,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18887 -2014,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19453 -2015,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19767 -2016,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19397 -2017,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19287 -2018,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18975 -2019,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18904 -2020,geoId/01107,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,18732 -2010,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2011,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2012,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2013,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2014,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2015,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2016,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2017,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2018,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2019,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2020,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 1990,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22 1991,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22 1992,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20 @@ -28203,59 +6253,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 1998,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,17 1999,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,16 -2000,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2001,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2002,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2003,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2004,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2005,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2006,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2007,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2008,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2009,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2010,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2015,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2016,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2018,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2019,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2020,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2000,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2003,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2004,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2005,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2008,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2009,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2010,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2012,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2013,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2014,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2015,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2016,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2017,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2018,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2019,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2020,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2010,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2011,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2013,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2015,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2016,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2017,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2019,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2020,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 1990,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,27 1991,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,26 1992,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28 @@ -28276,102 +6273,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9033 1998,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9101 1999,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9143 -2000,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8958 -2001,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8933 -2002,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8851 -2003,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8695 -2004,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8628 -2005,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8438 -2006,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8323 -2007,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8328 -2008,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8376 -2009,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8187 -2010,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8176 -2011,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7990 -2012,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7968 -2013,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7917 -2014,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8190 -2015,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8346 -2016,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8170 -2017,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8088 -2018,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7949 -2019,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7889 -2020,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7855 -2010,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8268 -2011,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8101 -2012,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8083 -2013,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8039 -2014,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8304 -2015,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8461 -2016,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8292 -2017,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8219 -2018,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8082 -2019,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8034 -2020,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7999 -2010,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2001,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2002,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2003,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2004,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2005,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2006,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2007,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2008,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2009,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2010,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2011,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2012,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2013,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2014,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2015,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 -2016,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2017,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2018,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2019,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2020,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,211 -2010,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11177 -2011,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10955 -2012,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10920 -2013,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10870 -2014,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11160 -2015,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11301 -2016,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11104 -2017,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11074 -2018,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10903 -2019,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10890 -2020,geoId/01107,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10751 1990,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11954 1991,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11974 1992,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12035 @@ -28382,27 +6283,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11804 1998,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11787 1999,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11756 -2000,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11612 -2001,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11622 -2002,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11637 -2003,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11455 -2004,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11353 -2005,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11321 -2006,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11371 -2007,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11180 -2008,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11084 -2009,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11098 -2010,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11037 -2011,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10806 -2012,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10760 -2013,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10696 -2014,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10999 -2015,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11138 -2016,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10934 -2017,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10907 -2018,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10719 -2019,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10692 -2020,geoId/01107,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10555 1990,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,108 1991,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,109 1992,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,114 @@ -28413,38 +6293,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,150 1998,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,163 1999,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,166 -2000,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,372 -2001,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,413 -2002,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,439 -2003,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,469 -2004,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,503 -2005,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,566 -2006,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,621 -2007,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,625 -2008,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,701 -2009,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,704 -2010,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,749 -2011,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,781 -2012,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,740 -2013,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,743 -2014,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,733 -2015,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,714 -2016,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,716 -2017,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,721 -2018,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,779 -2019,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,796 -2020,geoId/01109,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,806 -2010,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2011,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2015,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2017,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2018,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2019,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 1990,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1991,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1992,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 @@ -28455,59 +6303,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1998,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1999,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 -2000,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2016,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01109,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2000,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2006,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2007,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2008,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2009,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2010,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2013,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2014,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2011,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2015,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2016,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2019,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 1990,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1992,geoId/01109,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 @@ -28528,91 +6323,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,48 1998,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,49 1999,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,52 -2000,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2001,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2002,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2003,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2004,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2005,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2006,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2007,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2008,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2009,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2010,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2011,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2012,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2013,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2014,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2015,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2016,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2017,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2018,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2019,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2020,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2010,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2011,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2012,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2013,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144 -2014,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2015,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2016,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2017,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2018,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2019,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2020,geoId/01109,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2010,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2013,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2000,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2007,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2009,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2011,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2016,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2017,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2019,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01109,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2000,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2006,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2007,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2008,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2009,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2012,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2014,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2015,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2016,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2017,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2019,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2020,geoId/01109,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 1990,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,68 1991,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,66 1992,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,68 @@ -28623,38 +6333,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,98 1998,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,108 1999,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,109 -2000,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,271 -2001,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,317 -2002,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,337 -2003,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,365 -2004,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,393 -2005,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,422 -2006,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,464 -2007,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,459 -2008,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,528 -2009,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,522 -2010,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,552 -2011,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,569 -2012,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,516 -2013,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,513 -2014,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,501 -2015,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,476 -2016,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,483 -2017,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,481 -2018,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,538 -2019,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,547 -2020,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,539 -2010,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,583 -2011,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,608 -2012,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,560 -2013,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,555 -2014,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,545 -2015,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,514 -2016,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,528 -2017,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,531 -2018,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,584 -2019,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,591 -2020,geoId/01109,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,595 1990,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27527 1991,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,27880 1992,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,28025 @@ -28665,38 +6343,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,28390 1998,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,28485 1999,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,28303 -2000,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29376 -2001,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29431 -2002,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29256 -2003,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,29581 -2004,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30090 -2005,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30206 -2006,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,30688 -2007,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,31136 -2008,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,31448 -2009,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,31856 -2010,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32223 -2011,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32250 -2012,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32485 -2013,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32985 -2014,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32484 -2015,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32804 -2016,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32824 -2017,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32720 -2018,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32611 -2019,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32238 -2020,geoId/01109,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,32160 -2010,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,385 -2011,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,402 -2012,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,374 -2013,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,394 -2014,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,407 -2015,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,419 -2016,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,410 -2017,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,419 -2018,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,418 -2019,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,410 -2020,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,394 1990,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,144 1991,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,140 1992,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,139 @@ -28707,59 +6353,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,131 1998,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,122 1999,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,123 -2000,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2001,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2002,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2003,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2004,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2005,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2006,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2007,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2008,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2009,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2010,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2011,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2012,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2013,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,195 -2014,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2015,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,205 -2016,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,205 -2017,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2018,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2019,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2020,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2000,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2001,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,206 -2002,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,258 -2003,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,319 -2004,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,357 -2005,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,419 -2006,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,461 -2007,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,516 -2008,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,564 -2009,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,612 -2010,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,668 -2011,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,638 -2012,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,684 -2013,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,658 -2014,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,624 -2015,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,660 -2016,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,714 -2017,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,745 -2018,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,709 -2019,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,633 -2020,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,600 -2010,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,761 -2011,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,737 -2012,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,787 -2013,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,748 -2014,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,746 -2015,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,775 -2016,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,831 -2017,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,870 -2018,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,838 -2019,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,765 -2020,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,734 1990,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,68 1991,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,71 1992,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,75 @@ -28780,102 +6373,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10456 1998,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10500 1999,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10492 -2000,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10863 -2001,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10987 -2002,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11013 -2003,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11045 -2004,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11242 -2005,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11239 -2006,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11468 -2007,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11629 -2008,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11792 -2009,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11874 -2010,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12053 -2011,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12068 -2012,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12273 -2013,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12513 -2014,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12309 -2015,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12512 -2016,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12520 -2017,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12459 -2018,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12496 -2019,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12392 -2020,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12452 -2010,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12263 -2011,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12281 -2012,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12500 -2013,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12753 -2014,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12549 -2015,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12788 -2016,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12799 -2017,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12754 -2018,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12782 -2019,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12684 -2020,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12748 -2010,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2011,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2014,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2015,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2017,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2000,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2000,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,327 -2001,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,322 -2002,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,346 -2003,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,351 -2004,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,367 -2005,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,354 -2006,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,360 -2007,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,388 -2008,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,396 -2009,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,417 -2010,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,438 -2011,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,441 -2012,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,452 -2013,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,473 -2014,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,493 -2015,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,529 -2016,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,535 -2017,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,552 -2018,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,544 -2019,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,566 -2020,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,553 -2010,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19236 -2011,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19279 -2012,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19270 -2013,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19549 -2014,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19291 -2015,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19345 -2016,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19305 -2017,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19215 -2018,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19114 -2019,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18934 -2020,geoId/01109,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18831 1990,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,17783 1991,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,17987 1992,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18012 @@ -28886,27 +6383,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,17718 1998,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,17775 1999,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,17599 -2000,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17835 -2001,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17718 -2002,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17452 -2003,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17660 -2004,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17931 -2005,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18006 -2006,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18209 -2007,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18410 -2008,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18513 -2009,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18760 -2010,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18870 -2011,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18903 -2012,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18880 -2013,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19138 -2014,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18853 -2015,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18892 -2016,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18845 -2017,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18747 -2018,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18647 -2019,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18440 -2020,geoId/01109,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18351 1990,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53 1991,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,58 1992,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,55 @@ -28917,38 +6393,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78 1998,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79 1999,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,89 -2000,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,272 -2001,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,337 -2002,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,360 -2003,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,387 -2004,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,409 -2005,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,472 -2006,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,501 -2007,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,534 -2008,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,567 -2009,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,629 -2010,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,649 -2011,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,637 -2012,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,649 -2013,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,659 -2014,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,638 -2015,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,671 -2016,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,655 -2017,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,647 -2018,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,654 -2019,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,679 -2020,geoId/01111,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,680 -2010,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2014,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2015,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2020,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 1990,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -28959,59 +6403,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2010,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2011,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2018,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01111,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2000,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2005,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2017,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2020,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 1990,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01111,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -29032,91 +6423,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 1998,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15 1999,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18 -2000,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2001,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2002,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2003,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2004,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2005,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2007,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2015,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2018,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2019,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2014,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2015,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2016,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2017,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2018,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2019,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2020,geoId/01111,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2010,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2015,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01111,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2005,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2006,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2007,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2008,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2009,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2010,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2014,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2015,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2016,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2019,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01111,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 1990,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38 1991,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,39 1992,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,40 @@ -29127,38 +6433,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,59 1998,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,64 1999,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,71 -2000,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,236 -2001,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,301 -2002,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,323 -2003,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,350 -2004,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,369 -2005,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,425 -2006,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,455 -2007,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,490 -2008,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,519 -2009,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,576 -2010,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,597 -2011,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,584 -2012,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,587 -2013,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,585 -2014,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,555 -2015,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,582 -2016,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,558 -2017,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,545 -2018,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,552 -2019,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,580 -2020,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,582 -2010,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,619 -2011,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,607 -2012,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,613 -2013,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,617 -2014,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,585 -2015,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,615 -2016,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,594 -2017,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,576 -2018,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,584 -2019,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,609 -2020,geoId/01111,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,616 1990,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19889 1991,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19979 1992,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20198 @@ -29169,38 +6443,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19884 1998,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,19946 1999,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20174 -2000,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22105 -2001,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22128 -2002,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22104 -2003,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21972 -2004,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22116 -2005,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22186 -2006,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22194 -2007,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22128 -2008,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22379 -2009,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22235 -2010,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22288 -2011,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22114 -2012,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21892 -2013,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21899 -2014,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21724 -2015,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21932 -2016,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21860 -2017,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22055 -2018,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22088 -2019,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22102 -2020,geoId/01111,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22240 -2010,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2011,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2012,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 -2013,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2014,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2015,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2016,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,187 -2017,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,206 -2018,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,214 -2019,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 -2020,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,221 1990,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29 1991,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29 1992,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28 @@ -29211,59 +6453,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23 1998,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 1999,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 -2000,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2001,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2002,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2003,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2004,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2005,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2006,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2007,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2008,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2009,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2010,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2011,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2012,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2013,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2014,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2015,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2016,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2017,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2018,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2019,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2020,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2000,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2001,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2002,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2003,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2004,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2005,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2006,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2007,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2008,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2009,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2010,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2011,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2012,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2013,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2015,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2016,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2017,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2018,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2019,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2020,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2010,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2011,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2012,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2013,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2014,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2015,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2016,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2017,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2018,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2019,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2020,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 1990,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 1991,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 1992,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 @@ -29284,102 +6473,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4961 1998,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4997 1999,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5100 -2000,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4966 -2001,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4876 -2002,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4830 -2003,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4758 -2004,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4785 -2005,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4787 -2006,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4697 -2007,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4641 -2008,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4745 -2009,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4678 -2010,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4590 -2011,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4530 -2012,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4409 -2013,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4477 -2014,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4404 -2015,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4416 -2016,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4403 -2017,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4426 -2018,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4379 -2019,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4330 -2020,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4318 -2010,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4717 -2011,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4659 -2012,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4548 -2013,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4625 -2014,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4562 -2015,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4583 -2016,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4577 -2017,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4618 -2018,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4578 -2019,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4537 -2020,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4524 -2010,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2012,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2000,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2014,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2016,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2020,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2000,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2001,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2002,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2003,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2004,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2005,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,154 -2006,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2007,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2008,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 -2009,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,214 -2010,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,228 -2011,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,225 -2012,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,252 -2013,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2014,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,277 -2015,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,296 -2016,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,292 -2017,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,321 -2018,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,338 -2019,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,353 -2020,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,349 -2010,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17541 -2011,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17405 -2012,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17313 -2013,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17232 -2014,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17138 -2015,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17323 -2016,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17253 -2017,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17423 -2018,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17486 -2019,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17533 -2020,geoId/01111,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17681 1990,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15164 1991,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15202 1992,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15329 @@ -29390,27 +6483,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14874 1998,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14904 1999,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15024 -2000,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16932 -2001,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17043 -2002,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17052 -2003,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16967 -2004,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17070 -2005,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17126 -2006,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17186 -2007,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17158 -2008,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17289 -2009,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17202 -2010,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17331 -2011,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17202 -2012,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17075 -2013,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16987 -2014,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16884 -2015,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17048 -2016,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16985 -2017,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17123 -2018,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17175 -2019,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17205 -2020,geoId/01111,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17359 1990,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,301 1991,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,309 1992,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,333 @@ -29421,38 +6493,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,471 1998,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,493 1999,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,511 -2000,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,747 -2001,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,893 -2002,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,968 -2003,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1080 -2004,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1152 -2005,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1203 -2006,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1373 -2007,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1566 -2008,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1703 -2009,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1829 -2010,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1991 -2011,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2297 -2012,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2659 -2013,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2850 -2014,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3032 -2015,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3162 -2016,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3144 -2017,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3077 -2018,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3292 -2019,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3395 -2020,geoId/01113,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3443 -2010,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2011,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2012,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2013,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2014,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2015,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2016,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2017,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2018,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2019,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2020,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,244 1990,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1991,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1992,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 @@ -29463,59 +6503,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1998,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1999,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 -2000,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2001,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2002,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2003,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2004,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2005,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2006,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2007,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2008,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2009,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2010,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2011,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2012,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2013,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2014,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2015,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2016,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2017,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2018,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2019,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2020,geoId/01113,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2000,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2010,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2015,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2016,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2017,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2018,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2019,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2020,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2010,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2011,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2012,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2013,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2014,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2015,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2016,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2017,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2018,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2019,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128 -2020,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 1990,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 1991,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1992,geoId/01113,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 @@ -29536,91 +6523,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,67 1998,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,60 1999,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,58 -2000,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2001,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,154 -2002,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2003,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2004,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 -2005,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 -2006,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2007,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2008,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,282 -2009,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,306 -2010,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,323 -2011,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,376 -2012,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,484 -2013,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,522 -2014,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,558 -2015,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,614 -2016,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,593 -2017,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,579 -2018,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,577 -2019,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,543 -2020,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,545 -2010,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,378 -2011,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,446 -2012,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,560 -2013,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,621 -2014,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,661 -2015,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,702 -2016,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,689 -2017,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,683 -2018,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,708 -2019,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,693 -2020,geoId/01113,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,687 -2010,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2011,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2012,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2013,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2014,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2015,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2016,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2018,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2020,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2000,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2002,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2003,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2006,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2007,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2008,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2009,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2012,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2014,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2017,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2018,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01113,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2001,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2002,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2003,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2004,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2005,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2006,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2007,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2008,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2009,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2010,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2011,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2012,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2013,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2014,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190 -2015,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 -2016,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2017,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2018,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,231 -2019,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,268 -2020,geoId/01113,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,257 1990,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,237 1991,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,245 1992,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,262 @@ -29631,38 +6533,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,390 1998,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,419 1999,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,438 -2000,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,535 -2001,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,676 -2002,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,728 -2003,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,803 -2004,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,854 -2005,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,867 -2006,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,997 -2007,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1145 -2008,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1245 -2009,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1334 -2010,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1467 -2011,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1666 -2012,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1879 -2013,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1991 -2014,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2116 -2015,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2198 -2016,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2204 -2017,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2132 -2018,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2281 -2019,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2362 -2020,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2441 -2010,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1557 -2011,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1769 -2012,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1998 -2013,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2137 -2014,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2280 -2015,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2342 -2016,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2358 -2017,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2283 -2018,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2472 -2019,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2592 -2020,geoId/01113,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2652 1990,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,46663 1991,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47381 1992,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48645 @@ -29673,38 +6543,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,50266 1998,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,49875 1999,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,49560 -2000,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,49058 -2001,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48729 -2002,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48521 -2003,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,47985 -2004,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48346 -2005,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,48528 -2006,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,49086 -2007,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,49508 -2008,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,49731 -2009,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,50333 -2010,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,51336 -2011,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52587 -2012,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,54890 -2013,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,56369 -2014,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,56278 -2015,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,55784 -2016,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,55146 -2017,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,54057 -2018,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,54641 -2019,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,54703 -2020,geoId/01113,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,54794 -2010,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,535 -2011,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,561 -2012,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,589 -2013,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,617 -2014,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,593 -2015,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,625 -2016,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,626 -2017,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,589 -2018,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,629 -2019,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,660 -2020,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,659 1990,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,85 1991,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,86 1992,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,86 @@ -29715,59 +6553,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,85 1998,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,73 1999,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,73 -2000,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2001,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2002,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,187 -2003,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2004,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2005,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2006,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2007,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 -2008,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2009,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2010,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2011,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,202 -2012,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,214 -2013,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,220 -2014,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,209 -2015,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,229 -2016,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,229 -2017,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2018,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237 -2019,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,268 -2020,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,268 -2000,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,187 -2001,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,214 -2002,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2003,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2004,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,209 -2005,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,221 -2006,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,221 -2007,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,231 -2008,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,228 -2009,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2010,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,232 -2011,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,282 -2012,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,386 -2013,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,440 -2014,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,410 -2015,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,446 -2016,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,443 -2017,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,457 -2018,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,440 -2019,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,451 -2020,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,469 -2010,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,451 -2011,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,516 -2012,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,681 -2013,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,726 -2014,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,727 -2015,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,766 -2016,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,763 -2017,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,756 -2018,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,786 -2019,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,812 -2020,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,835 1990,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,111 1991,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,113 1992,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,125 @@ -29788,102 +6573,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20486 1998,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20444 1999,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20449 -2000,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20265 -2001,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20392 -2002,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20648 -2003,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20368 -2004,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20557 -2005,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20600 -2006,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20842 -2007,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21216 -2008,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21423 -2009,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21678 -2010,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22082 -2011,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22670 -2012,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23726 -2013,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24590 -2014,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25126 -2015,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25463 -2016,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25606 -2017,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25540 -2018,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26005 -2019,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25947 -2020,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26148 -2010,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22559 -2011,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23194 -2012,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24331 -2013,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25225 -2014,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25776 -2015,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26144 -2016,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26304 -2017,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26186 -2018,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26728 -2019,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26686 -2020,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26931 -2010,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2011,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 -2012,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2013,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2014,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2015,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,225 -2016,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2017,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 -2018,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,206 -2019,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,210 -2020,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,224 -2000,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2001,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2002,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2003,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2004,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2005,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2006,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2007,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2008,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2009,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2010,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2011,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2012,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2013,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2014,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2015,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2016,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2017,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2018,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,139 -2019,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2020,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2000,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,430 -2001,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,446 -2002,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,502 -2003,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,530 -2004,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,564 -2005,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,616 -2006,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,675 -2007,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,730 -2008,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,787 -2009,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,814 -2010,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,882 -2011,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,978 -2012,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1110 -2013,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1164 -2014,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1158 -2015,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1210 -2016,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1231 -2017,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1143 -2018,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1265 -2019,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1323 -2020,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1351 -2010,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28587 -2011,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29198 -2012,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30305 -2013,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30856 -2014,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30265 -2015,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29341 -2016,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28562 -2017,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27547 -2018,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27673 -2019,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27761 -2020,geoId/01113,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27612 1990,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28359 1991,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28724 1992,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29335 @@ -29894,27 +6583,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29550 1998,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29215 1999,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28892 -2000,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27976 -2001,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27475 -2002,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26929 -2003,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26632 -2004,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26773 -2005,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26842 -2006,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27087 -2007,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27068 -2008,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27007 -2009,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27339 -2010,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27827 -2011,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28335 -2012,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29330 -2013,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29818 -2014,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29230 -2015,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28270 -2016,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27492 -2017,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26555 -2018,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26555 -2019,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26577 -2020,geoId/01113,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26412 1990,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,209 1991,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,218 1992,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,236 @@ -29925,38 +6593,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,393 1998,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,443 1999,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,477 -2000,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,688 -2001,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,745 -2002,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,826 -2003,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,896 -2004,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,987 -2005,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1106 -2006,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1278 -2007,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1488 -2008,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1576 -2009,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1675 -2010,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1707 -2011,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1746 -2012,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1813 -2013,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1869 -2014,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1919 -2015,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2015 -2016,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2068 -2017,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2139 -2018,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2224 -2019,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2183 -2020,geoId/01115,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2275 -2010,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2011,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2012,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2013,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2014,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2015,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2016,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2017,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2018,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2019,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2020,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 1990,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1991,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1992,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 @@ -29967,59 +6603,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1998,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1999,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 -2000,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2005,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2006,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2007,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2008,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2009,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2010,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2011,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2012,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2013,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2014,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2015,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2016,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2017,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2018,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2019,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2020,geoId/01115,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2000,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2004,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2016,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2018,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2019,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2011,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2012,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2013,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2015,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2018,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 1990,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01115,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 @@ -30040,91 +6623,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,31 1998,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,36 1999,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,35 -2000,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2001,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2002,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2003,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2005,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2006,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2007,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2008,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2009,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2010,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2011,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2012,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2013,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2014,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2015,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2016,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2017,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2018,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2019,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2020,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2010,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2011,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2012,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2013,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134 -2014,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2015,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2016,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2017,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2018,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2019,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2020,geoId/01115,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2010,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2013,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2014,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2017,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2020,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2000,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2016,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2017,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2018,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01115,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2000,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2006,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2007,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2008,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2009,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2010,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2011,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2012,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2013,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2014,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2015,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2016,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2017,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2018,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2019,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2020,geoId/01115,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 1990,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,184 1991,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,191 1992,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,206 @@ -30135,38 +6633,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,358 1998,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,403 1999,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,439 -2000,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,654 -2001,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,711 -2002,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,779 -2003,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,835 -2004,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,911 -2005,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,982 -2006,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1123 -2007,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1307 -2008,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1380 -2009,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1471 -2010,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1503 -2011,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1524 -2012,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1574 -2013,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1605 -2014,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1666 -2015,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1742 -2016,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1787 -2017,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1848 -2018,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1915 -2019,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1877 -2020,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1959 -2010,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1549 -2011,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1574 -2012,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1624 -2013,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1664 -2014,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1724 -2015,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1803 -2016,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1846 -2017,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1910 -2018,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1983 -2019,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1946 -2020,geoId/01115,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2020 1990,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,49880 1991,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,51158 1992,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,52660 @@ -30177,38 +6643,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,60255 1998,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61575 1999,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,63375 -2000,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,64392 -2001,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,65348 -2002,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,66448 -2003,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,67733 -2004,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,69429 -2005,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,71490 -2006,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,74670 -2007,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77860 -2008,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79647 -2009,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,81334 -2010,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,81880 -2011,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,82246 -2012,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,82966 -2013,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,83962 -2014,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,84095 -2015,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,84554 -2016,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,85274 -2017,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,85846 -2018,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,86618 -2019,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,87552 -2020,geoId/01115,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,88464 -2010,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,731 -2011,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,716 -2012,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,709 -2013,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,738 -2014,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,731 -2015,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,719 -2016,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,741 -2017,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,739 -2018,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,777 -2019,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,813 -2020,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,839 1990,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,134 1991,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,137 1992,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,137 @@ -30219,59 +6653,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,145 1998,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,147 1999,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,148 -2000,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,234 -2001,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,250 -2002,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2003,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,249 -2004,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,241 -2005,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,253 -2006,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,250 -2007,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,249 -2008,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,248 -2009,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,250 -2010,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,256 -2011,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,227 -2012,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,236 -2013,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,255 -2014,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,250 -2015,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,260 -2016,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,259 -2017,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,249 -2018,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,259 -2019,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,285 -2020,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,314 -2000,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2001,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2002,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2003,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2004,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,284 -2005,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,321 -2006,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,354 -2007,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,424 -2008,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,464 -2009,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,500 -2010,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,527 -2011,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,548 -2012,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,593 -2013,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,656 -2014,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,647 -2015,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,717 -2016,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,701 -2017,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,721 -2018,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,769 -2019,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,819 -2020,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,835 -2010,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,673 -2011,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,691 -2012,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,752 -2013,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,816 -2014,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,817 -2015,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,899 -2016,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,879 -2017,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,910 -2018,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,991 -2019,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1051 -2020,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1074 1990,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,76 1991,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,83 1992,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,84 @@ -30292,102 +6673,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5897 1998,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6071 1999,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6299 -2000,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5260 -2001,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5312 -2002,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5417 -2003,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5622 -2004,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5716 -2005,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5876 -2006,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6236 -2007,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6659 -2008,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6839 -2009,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7020 -2010,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7090 -2011,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7212 -2012,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7379 -2013,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7663 -2014,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7785 -2015,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7809 -2016,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7903 -2017,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8077 -2018,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8236 -2019,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8491 -2020,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8843 -2010,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7479 -2011,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7645 -2012,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7806 -2013,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8128 -2014,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8268 -2015,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8291 -2016,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8404 -2017,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8619 -2018,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8852 -2019,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9118 -2020,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9510 -2010,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2011,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2012,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2013,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2015,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2016,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2017,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2018,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2019,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2020,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2000,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2001,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2002,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2003,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2005,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2006,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2007,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2008,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2009,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2010,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2011,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2013,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2017,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2018,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2019,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2020,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2000,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,496 -2001,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,526 -2002,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,592 -2003,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,615 -2004,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,626 -2005,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,680 -2006,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,748 -2007,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,828 -2008,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,874 -2009,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,941 -2010,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,933 -2011,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,997 -2012,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,998 -2013,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1042 -2014,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1045 -2015,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1037 -2016,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1081 -2017,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1136 -2018,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1241 -2019,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1293 -2020,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1341 -2010,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73894 -2011,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74152 -2012,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74660 -2013,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75290 -2014,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75302 -2015,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75654 -2016,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76300 -2017,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76669 -2018,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77218 -2019,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77831 -2020,geoId/01115,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78336 1990,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,45152 1991,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,46277 1992,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,47538 @@ -30398,27 +6683,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,54094 1998,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,55236 1999,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,56803 -2000,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58271 -2001,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59057 -2002,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59958 -2003,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60981 -2004,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62534 -2005,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64332 -2006,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67052 -2007,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69670 -2008,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71189 -2009,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72582 -2010,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73037 -2011,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73225 -2012,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73722 -2013,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74303 -2014,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74329 -2015,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74688 -2016,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75291 -2017,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75619 -2018,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76071 -2019,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76622 -2020,geoId/01115,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77080 1990,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,528 1991,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,575 1992,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,620 @@ -30429,38 +6693,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1144 1998,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1291 1999,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1424 -2000,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3029 -2001,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3640 -2002,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4226 -2003,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4948 -2004,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5696 -2005,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6532 -2006,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7618 -2007,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8635 -2008,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,9727 -2009,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10880 -2010,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11556 -2011,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11585 -2012,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11651 -2013,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11859 -2014,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11783 -2015,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11726 -2016,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11956 -2017,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12057 -2018,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12321 -2019,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12500 -2020,geoId/01117,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12933 -2010,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,358 -2011,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,349 -2012,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,363 -2013,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,367 -2014,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,357 -2015,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,371 -2016,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,410 -2017,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,377 -2018,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,408 -2019,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,404 -2020,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,431 1990,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1992,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 @@ -30471,59 +6703,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1999,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 -2000,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2001,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2002,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2003,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2004,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134 -2005,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2006,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2007,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2008,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2009,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2010,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,236 -2011,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,238 -2012,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2013,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,265 -2014,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2015,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270 -2016,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,284 -2017,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,281 -2018,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,295 -2019,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,296 -2020,geoId/01117,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,317 -2000,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2002,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2003,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2004,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2005,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2006,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2007,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2008,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2009,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2010,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2011,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2012,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2013,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2014,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2015,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2016,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2017,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2018,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2019,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2010,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2011,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,167 -2012,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2013,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2014,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134 -2015,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2016,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2017,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134 -2018,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2019,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2020,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 1990,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1991,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1992,geoId/01117,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 @@ -30544,91 +6723,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,40 1998,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,47 1999,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,47 -2000,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2001,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2002,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2003,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2004,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2005,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 -2006,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2007,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2008,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,275 -2009,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,296 -2010,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,289 -2011,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,278 -2012,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,295 -2013,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,292 -2014,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,307 -2015,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,308 -2016,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,347 -2017,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,361 -2018,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,346 -2019,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,376 -2020,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,406 -2010,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,396 -2011,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,381 -2012,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,393 -2013,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,382 -2014,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,404 -2015,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,412 -2016,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,459 -2017,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,484 -2018,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,446 -2019,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,495 -2020,geoId/01117,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,531 -2010,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2011,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2012,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2013,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2014,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2015,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2016,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2017,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2018,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2019,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2020,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2000,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2001,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2003,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2004,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2005,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2006,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2008,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2009,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2010,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2011,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2012,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2013,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2014,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2016,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2017,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2019,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01117,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2000,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2001,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2002,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2003,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2004,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2005,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2006,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2007,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2008,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2009,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2010,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 -2011,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2012,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2013,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2014,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2015,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,209 -2016,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,233 -2017,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2018,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2019,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,236 -2020,geoId/01117,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,240 1990,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,503 1991,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,546 1992,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,592 @@ -30639,38 +6733,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1103 1998,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1236 1999,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1368 -2000,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2879 -2001,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3358 -2002,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3893 -2003,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4541 -2004,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5190 -2005,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6007 -2006,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7013 -2007,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7948 -2008,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8946 -2009,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10012 -2010,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10642 -2011,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10703 -2012,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10755 -2013,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10977 -2014,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10900 -2015,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10813 -2016,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10967 -2017,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11087 -2018,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11354 -2019,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11490 -2020,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11868 -2010,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10829 -2011,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10876 -2012,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10922 -2013,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11144 -2014,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11054 -2015,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10989 -2016,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11160 -2017,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11268 -2018,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11539 -2019,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11697 -2020,geoId/01117,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12051 1990,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,99602 1991,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,102800 1992,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,106927 @@ -30681,38 +6743,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,134661 1998,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,139562 1999,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,144968 -2000,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,141645 -2001,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,145718 -2002,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,149750 -2003,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,154756 -2004,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,160061 -2005,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,165159 -2006,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,171223 -2007,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,174856 -2008,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,178807 -2009,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,181828 -2010,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,184480 -2011,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,186383 -2012,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,189298 -2013,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,192229 -2014,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,194563 -2015,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,197321 -2016,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,199582 -2017,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,201797 -2018,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,203556 -2019,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,205676 -2020,geoId/01117,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,208495 -2010,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1214 -2011,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1261 -2012,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1344 -2013,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1357 -2014,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1393 -2015,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1400 -2016,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1455 -2017,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1433 -2018,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1449 -2019,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1495 -2020,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1510 1990,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,263 1991,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,279 1992,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,281 @@ -30723,59 +6753,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,319 1998,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,319 1999,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,324 -2000,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,443 -2001,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,420 -2002,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,457 -2003,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,460 -2004,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,437 -2005,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,430 -2006,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,461 -2007,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,454 -2008,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,481 -2009,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,433 -2010,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,454 -2011,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,477 -2012,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,524 -2013,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,523 -2014,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,534 -2015,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,540 -2016,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,566 -2017,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,570 -2018,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,557 -2019,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,578 -2020,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,582 -2000,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1524 -2001,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1670 -2002,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1814 -2003,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2048 -2004,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2336 -2005,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2620 -2006,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2945 -2007,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3148 -2008,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3440 -2009,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3690 -2010,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3776 -2011,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3895 -2012,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4083 -2013,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4205 -2014,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4351 -2015,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4462 -2016,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4557 -2017,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4721 -2018,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4856 -2019,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4992 -2020,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5131 -2010,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4411 -2011,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4547 -2012,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4792 -2013,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4945 -2014,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5132 -2015,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5303 -2016,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5404 -2017,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5600 -2018,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5781 -2019,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5942 -2020,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6131 1990,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,579 1991,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,638 1992,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,676 @@ -30796,102 +6773,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11316 1998,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11826 1999,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12432 -2000,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10685 -2001,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11416 -2002,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12207 -2003,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13340 -2004,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14624 -2005,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15702 -2006,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17035 -2007,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17985 -2008,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19033 -2009,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20070 -2010,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20920 -2011,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21734 -2012,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22512 -2013,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23266 -2014,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23937 -2015,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24906 -2016,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25674 -2017,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26639 -2018,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27571 -2019,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28635 -2020,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29940 -2010,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21799 -2011,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22653 -2012,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23502 -2013,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24327 -2014,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25027 -2015,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26063 -2016,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26925 -2017,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27906 -2018,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28862 -2019,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29981 -2020,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31348 -2010,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2011,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2012,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2013,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2014,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2015,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,201 -2016,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2017,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2018,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,202 -2019,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2020,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2000,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2002,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2003,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2004,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2005,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2006,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2007,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2008,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2009,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2010,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2011,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2012,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2013,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2014,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2015,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2016,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2017,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2018,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2019,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2020,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2000,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,772 -2001,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,940 -2002,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1062 -2003,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1181 -2004,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1258 -2005,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1443 -2006,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1543 -2007,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1647 -2008,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1759 -2009,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1943 -2010,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2011 -2011,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2117 -2012,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2263 -2013,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2380 -2014,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2425 -2015,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2554 -2016,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2650 -2017,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2696 -2018,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2773 -2019,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2885 -2020,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3003 -2010,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159099 -2011,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160066 -2012,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161947 -2013,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164003 -2014,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165513 -2015,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,167136 -2016,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168499 -2017,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169590 -2018,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170289 -2019,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171195 -2020,geoId/01117,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172578 1990,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,90972 1991,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,93810 1992,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,97495 @@ -30902,27 +6783,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,122049 1998,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,126401 1999,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,131148 -2000,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128201 -2001,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131240 -2002,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134176 -2003,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137692 -2004,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141370 -2005,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144922 -2006,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149198 -2007,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151581 -2008,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,154047 -2009,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155645 -2010,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157255 -2011,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158098 -2012,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159851 -2013,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161792 -2014,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163247 -2015,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164773 -2016,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166043 -2017,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,167090 -2018,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,167709 -2019,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168495 -2020,geoId/01117,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169758 1990,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78 1991,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,73 1992,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,66 @@ -30933,38 +6793,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,88 1998,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,102 1999,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,104 -2000,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,165 -2001,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,153 -2002,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,143 -2003,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,134 -2004,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,131 -2005,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,121 -2006,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,110 -2007,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,105 -2008,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,91 -2009,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,85 -2010,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,94 -2011,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,102 -2012,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,126 -2013,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,129 -2014,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,142 -2015,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,144 -2016,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,131 -2017,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,135 -2018,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,147 -2019,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,152 -2020,geoId/01119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,164 -2010,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2016,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2020,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 1990,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -30975,59 +6803,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1999,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2017,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2019,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2020,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2015,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 1990,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1992,geoId/01119,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 @@ -31048,91 +6823,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,54 1998,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,53 1999,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,60 -2000,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2001,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2002,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2003,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2004,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2005,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2006,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2007,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2008,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2009,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2010,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2011,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2013,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2014,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2015,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2016,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2017,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2018,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2019,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2020,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2010,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2011,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2012,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2013,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2015,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2016,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2017,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2018,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2019,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2020,geoId/01119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2010,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2012,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2008,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2000,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 1990,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 1991,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22 1992,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22 @@ -31143,38 +6833,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,32 1998,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38 1999,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,40 -2000,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2001,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2002,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2003,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2004,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2005,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2006,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2007,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2008,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2009,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2010,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2011,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2012,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2013,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2014,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2015,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2016,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2018,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2019,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2020,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2010,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2011,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2012,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2013,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2014,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2015,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2016,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2017,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2018,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2019,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2020,geoId/01119,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 1990,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16088 1991,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16158 1992,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16052 @@ -31185,38 +6843,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15813 1998,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15663 1999,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15511 -2000,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14581 -2001,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14477 -2002,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14233 -2003,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14195 -2004,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14193 -2005,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,14022 -2006,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13949 -2007,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13821 -2008,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13791 -2009,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13661 -2010,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13636 -2011,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13389 -2012,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13318 -2013,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13269 -2014,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13134 -2015,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13068 -2016,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12842 -2017,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12621 -2018,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12514 -2019,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12206 -2020,geoId/01119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12061 -2010,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2011,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2012,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2013,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2014,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2015,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2016,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2017,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2018,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2019,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2020,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 1990,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 1991,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 1992,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 @@ -31227,59 +6853,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 1998,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1999,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 -2000,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2002,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2003,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2009,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2015,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2016,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2000,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2002,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2004,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2005,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2006,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2007,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2008,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2009,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2010,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2011,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2012,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2013,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2014,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2015,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2016,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2017,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2018,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2019,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2020,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,212 -2010,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2011,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2012,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2013,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2014,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2015,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2016,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2017,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2018,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2019,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,221 -2020,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,223 1990,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29 1991,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29 1992,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,30 @@ -31300,102 +6873,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11355 1998,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11255 1999,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11164 -2000,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10676 -2001,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10675 -2002,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10518 -2003,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10559 -2004,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10598 -2005,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10443 -2006,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10437 -2007,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10376 -2008,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10400 -2009,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10237 -2010,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10223 -2011,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9998 -2012,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9861 -2013,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9754 -2014,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9663 -2015,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9526 -2016,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9351 -2017,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9144 -2018,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9060 -2019,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8781 -2020,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8610 -2010,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10247 -2011,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10025 -2012,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9891 -2013,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9793 -2014,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9703 -2015,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9563 -2016,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9397 -2017,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9200 -2018,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9114 -2019,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8847 -2020,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8682 -2010,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2001,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2002,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2003,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2004,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2005,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2006,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2007,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2008,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2009,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2010,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2011,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2013,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2014,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2015,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2016,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2017,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2018,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2019,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2020,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2010,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3359 -2011,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3305 -2012,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3338 -2013,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3347 -2014,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3288 -2015,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3339 -2016,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3292 -2017,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3265 -2018,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3225 -2019,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3192 -2020,geoId/01119,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3205 1990,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4731 1991,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4789 1992,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4705 @@ -31406,27 +6883,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4421 1998,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4370 1999,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4311 -2000,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3809 -2001,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3709 -2002,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3624 -2003,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3550 -2004,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3512 -2005,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3489 -2006,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3426 -2007,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3353 -2008,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3306 -2009,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3337 -2010,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3326 -2011,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3265 -2012,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3287 -2013,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3294 -2014,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3229 -2015,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3277 -2016,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3231 -2017,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3193 -2018,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3143 -2019,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3098 -2020,geoId/01119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3106 1990,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,499 1991,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,515 1992,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,542 @@ -31437,38 +6893,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,700 1998,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,730 1999,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,753 -2000,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,812 -2001,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,874 -2002,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,960 -2003,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1021 -2004,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1048 -2005,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1209 -2006,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1374 -2007,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1449 -2008,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1546 -2009,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1596 -2010,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1657 -2011,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1676 -2012,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1725 -2013,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1756 -2014,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1776 -2015,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1781 -2016,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1765 -2017,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1852 -2018,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1913 -2019,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1974 -2020,geoId/01121,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2004 -2010,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2011,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2012,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2013,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2014,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2015,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128 -2016,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2017,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2018,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2019,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2020,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 1990,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1991,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1992,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 @@ -31479,59 +6903,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1998,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 1999,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 -2000,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2001,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2002,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2003,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2004,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2005,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2006,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2007,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2008,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2009,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2010,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2011,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2012,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2013,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2015,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2016,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2017,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2018,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2019,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2020,geoId/01121,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2000,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2005,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2006,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2009,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2010,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2014,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2019,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2011,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2015,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2017,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2019,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2020,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 1990,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1991,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1992,geoId/01121,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 @@ -31552,91 +6923,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,235 1998,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,238 1999,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,236 -2000,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2001,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2002,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2003,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2004,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2005,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2006,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2007,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,159 -2008,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2009,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2010,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 -2011,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2012,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2013,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2014,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2015,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2016,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2017,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 -2018,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,226 -2019,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,239 -2020,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243 -2010,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2011,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2012,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,244 -2013,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,248 -2014,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,257 -2015,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,248 -2016,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,240 -2017,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,259 -2018,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,281 -2019,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,299 -2020,geoId/01121,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,309 -2010,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2011,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2012,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2014,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2017,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2020,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2000,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2018,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01121,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2006,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2007,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2008,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2009,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2010,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2011,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2012,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2013,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2014,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2015,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2016,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2017,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2018,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2019,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2020,geoId/01121,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 1990,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,328 1991,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,335 1992,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,349 @@ -31647,38 +6933,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,454 1998,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,481 1999,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,507 -2000,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,628 -2001,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,697 -2002,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,775 -2003,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,819 -2004,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,838 -2005,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,952 -2006,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1089 -2007,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1157 -2008,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1233 -2009,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1265 -2010,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1316 -2011,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1340 -2012,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1374 -2013,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1375 -2014,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1390 -2015,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1394 -2016,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1376 -2017,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1450 -2018,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1474 -2019,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1496 -2020,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1514 -2010,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1385 -2011,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1414 -2012,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1444 -2013,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1438 -2014,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1462 -2015,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1479 -2016,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1464 -2017,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1528 -2018,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1559 -2019,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1594 -2020,geoId/01121,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1608 1990,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,73620 1991,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,73931 1992,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,74375 @@ -31689,38 +6943,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,75948 1998,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,76295 1999,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,76768 -2000,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79960 -2001,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,80065 -2002,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,80135 -2003,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79879 -2004,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,80091 -2005,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,80337 -2006,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,80617 -2007,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,80777 -2008,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,81189 -2009,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,81078 -2010,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,80518 -2011,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,80199 -2012,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,80445 -2013,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79848 -2014,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79774 -2015,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79387 -2016,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78833 -2017,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78340 -2018,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78306 -2019,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,78252 -2020,geoId/01121,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,77981 -2010,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,665 -2011,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,686 -2012,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,696 -2013,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,691 -2014,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,710 -2015,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,695 -2016,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,721 -2017,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,704 -2018,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,737 -2019,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,744 -2020,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,729 1990,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,172 1991,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,169 1992,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,165 @@ -31731,59 +6953,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,158 1998,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,149 1999,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,154 -2000,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 -2001,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172 -2002,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2003,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2004,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,191 -2005,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,196 -2006,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2007,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2008,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2009,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,230 -2010,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,226 -2011,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,232 -2012,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243 -2013,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,232 -2014,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,238 -2015,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237 -2016,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,238 -2017,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,231 -2018,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,234 -2019,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,240 -2020,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,243 -2000,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2001,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2002,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2003,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,233 -2004,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,256 -2005,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270 -2006,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,269 -2007,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,294 -2008,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,309 -2009,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,343 -2010,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,327 -2011,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,340 -2012,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,394 -2013,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,409 -2014,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,445 -2015,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,471 -2016,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,453 -2017,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,454 -2018,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,460 -2019,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,473 -2020,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,459 -2010,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,454 -2011,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,461 -2012,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,538 -2013,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,555 -2014,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,604 -2015,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,634 -2016,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,618 -2017,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,639 -2018,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,665 -2019,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,660 -2020,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,677 1990,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,111 1991,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,110 1992,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,113 @@ -31804,102 +6973,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24452 1998,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24701 1999,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,25021 -2000,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25311 -2001,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25486 -2002,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25473 -2003,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25489 -2004,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25543 -2005,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25595 -2006,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25827 -2007,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25982 -2008,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26167 -2009,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26060 -2010,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25957 -2011,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25848 -2012,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26266 -2013,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26197 -2014,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26286 -2015,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26248 -2016,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26065 -2017,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26062 -2018,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26241 -2019,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26360 -2020,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26289 -2010,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26467 -2011,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26385 -2012,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26823 -2013,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26802 -2014,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26902 -2015,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26894 -2016,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26755 -2017,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26776 -2018,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27031 -2019,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27134 -2020,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27081 -2010,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2012,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2013,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2014,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2015,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2016,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2017,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2018,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,70 -2019,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2020,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2000,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2001,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2002,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2005,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2007,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2008,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2009,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2016,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2019,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2020,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,467 -2001,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,489 -2002,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,545 -2003,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,601 -2004,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,647 -2005,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,694 -2006,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,734 -2007,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,806 -2008,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,857 -2009,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,920 -2010,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,946 -2011,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,992 -2012,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1027 -2013,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1083 -2014,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1118 -2015,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1128 -2016,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1179 -2017,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1217 -2018,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1318 -2019,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1309 -2020,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1346 -2010,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53906 -2011,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53674 -2012,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53430 -2013,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52883 -2014,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52697 -2015,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52307 -2016,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51932 -2017,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51470 -2018,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51231 -2019,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51053 -2020,geoId/01121,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50858 1990,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,50686 1991,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,50816 1992,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,50845 @@ -31910,27 +6983,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51202 1998,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51307 1999,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51457 -2000,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53822 -2001,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53700 -2002,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53710 -2003,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53348 -2004,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53436 -2005,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53572 -2006,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53577 -2007,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53481 -2008,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53636 -2009,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53520 -2010,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53056 -2011,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52775 -2012,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52502 -2013,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51916 -2014,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51677 -2015,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51293 -2016,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50886 -2017,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50364 -2018,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50035 -2019,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49854 -2020,geoId/01121,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49631 1990,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,70 1991,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,63 1992,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,64 @@ -31941,38 +6993,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100 1998,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,106 1999,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,123 -2000,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,247 -2001,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,332 -2002,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,419 -2003,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,499 -2004,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,558 -2005,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,628 -2006,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,716 -2007,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,802 -2008,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,892 -2009,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,969 -2010,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1037 -2011,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1020 -2012,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1013 -2013,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1001 -2014,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,919 -2015,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,934 -2016,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,969 -2017,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,970 -2018,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,966 -2019,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,996 -2020,geoId/01123,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1015 -2010,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2011,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2012,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2014,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2015,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2016,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2017,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2018,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2019,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2020,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 1990,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -31983,59 +7003,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1999,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 -2000,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2003,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2013,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2015,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2017,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2018,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01123,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2000,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2011,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2018,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2019,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2020,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2013,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2017,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2020,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 1990,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01123,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -32056,91 +7023,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28 1998,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,31 1999,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,40 -2000,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2001,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2002,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2003,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2004,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2005,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2006,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2007,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2008,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2009,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2010,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2011,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 -2012,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2013,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2014,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2015,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2016,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2017,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158 -2018,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2019,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,152 -2020,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2010,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,150 -2011,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2012,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,170 -2013,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 -2014,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 -2015,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2016,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2017,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2018,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2019,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,190 -2020,geoId/01123,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2010,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2011,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2013,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2017,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2019,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2000,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2007,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2008,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2010,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2011,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2013,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2014,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2019,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01123,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2000,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2001,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2005,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2006,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2007,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2008,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2009,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2010,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2011,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2012,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2013,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2015,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2016,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2018,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2019,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2020,geoId/01123,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 1990,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,41 1991,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,42 1992,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,42 @@ -32151,38 +7033,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,72 1998,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,74 1999,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,82 -2000,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2001,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,276 -2002,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,350 -2003,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,411 -2004,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,457 -2005,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,484 -2006,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,550 -2007,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,618 -2008,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,685 -2009,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,757 -2010,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,823 -2011,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,786 -2012,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,780 -2013,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,749 -2014,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,668 -2015,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,667 -2016,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,686 -2017,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,686 -2018,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,678 -2019,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,707 -2020,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,706 -2010,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,877 -2011,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,842 -2012,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,837 -2013,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,804 -2014,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,721 -2015,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,718 -2016,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,753 -2017,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,744 -2018,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,752 -2019,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,778 -2020,geoId/01123,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,774 1990,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,38821 1991,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39148 1992,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39274 @@ -32193,38 +7043,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40187 1998,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40254 1999,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40206 -2000,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,41442 -2001,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,41074 -2002,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40625 -2003,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40399 -2004,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40346 -2005,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40229 -2006,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40527 -2007,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40612 -2008,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40776 -2009,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40862 -2010,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40443 -2011,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40394 -2012,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40047 -2013,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40038 -2014,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39979 -2015,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39694 -2016,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39638 -2017,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39654 -2018,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39584 -2019,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39341 -2020,geoId/01123,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39118 -2010,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,291 -2011,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,291 -2012,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,300 -2013,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,286 -2014,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,292 -2015,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,287 -2016,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,293 -2017,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,306 -2018,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,323 -2019,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,311 -2020,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,317 1990,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,61 1991,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,59 1992,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,57 @@ -32235,59 +7053,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51 1998,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,48 1999,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,46 -2000,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2001,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2002,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2003,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,109 -2004,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119 -2005,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2006,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2007,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2008,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2009,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2010,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126 -2011,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2012,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,131 -2013,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2014,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2015,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2016,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2017,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2018,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2019,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2020,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2000,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2001,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2002,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2003,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2004,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2005,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2006,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2007,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,167 -2008,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2009,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2010,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2011,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,216 -2012,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,198 -2013,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,212 -2014,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2015,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,220 -2016,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,212 -2017,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,233 -2018,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,239 -2019,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,226 -2020,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,232 -2010,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,245 -2011,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,266 -2012,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,246 -2013,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,267 -2014,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,266 -2015,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,281 -2016,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,276 -2017,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,298 -2018,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,308 -2019,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,295 -2020,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,306 1990,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,37 1991,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38 1992,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,39 @@ -32308,102 +7073,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11229 1998,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11314 1999,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11377 -2000,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10714 -2001,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10769 -2002,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10697 -2003,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10689 -2004,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10724 -2005,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10774 -2006,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10941 -2007,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11009 -2008,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11085 -2009,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11121 -2010,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11023 -2011,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11010 -2012,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10866 -2013,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11013 -2014,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11065 -2015,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10948 -2016,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10828 -2017,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10837 -2018,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10884 -2019,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10777 -2020,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10701 -2010,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11213 -2011,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11199 -2012,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11100 -2013,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11255 -2014,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11296 -2015,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11198 -2016,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11083 -2017,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11107 -2018,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11174 -2019,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11076 -2020,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11005 -2010,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2013,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2014,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2016,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2018,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2020,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2000,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2002,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2003,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2004,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2014,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2018,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2001,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,199 -2002,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2003,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237 -2004,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,249 -2005,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,251 -2006,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,269 -2007,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,291 -2008,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,303 -2009,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,322 -2010,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,344 -2011,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,365 -2012,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,399 -2013,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,406 -2014,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,400 -2015,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,403 -2016,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,414 -2017,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,440 -2018,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,461 -2019,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,476 -2020,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,490 -2010,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29049 -2011,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29006 -2012,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28806 -2013,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28631 -2014,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28532 -2015,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28339 -2016,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28399 -2017,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28394 -2018,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28256 -2019,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28131 -2020,geoId/01123,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27979 1990,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28500 1991,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28683 1992,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28677 @@ -32414,27 +7083,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28860 1998,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28844 1999,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28730 -2000,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30355 -2001,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29903 -2002,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29491 -2003,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29243 -2004,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29127 -2005,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28948 -2006,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29047 -2007,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29031 -2008,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29096 -2009,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29108 -2010,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28744 -2011,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28669 -2012,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28451 -2013,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28278 -2014,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28167 -2015,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27979 -2016,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28034 -2017,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27998 -2018,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27845 -2019,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27704 -2020,geoId/01123,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27531 1990,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,953 1991,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1003 1992,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1021 @@ -32445,38 +7093,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1465 1998,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1592 1999,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1688 -2000,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2178 -2001,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2556 -2002,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2793 -2003,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3088 -2004,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3445 -2005,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,3742 -2006,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4232 -2007,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,4652 -2008,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5134 -2009,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,5590 -2010,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6007 -2011,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6154 -2012,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6245 -2013,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6505 -2014,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6763 -2015,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,6982 -2016,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7439 -2017,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,7635 -2018,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8016 -2019,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8262 -2020,geoId/01125,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,8482 -2010,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,251 -2011,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,251 -2012,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,239 -2013,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,282 -2014,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,258 -2015,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,265 -2016,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,319 -2017,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,339 -2018,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,341 -2019,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,362 -2020,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,371 1990,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1991,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 1992,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 @@ -32487,59 +7103,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 1998,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 1999,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 -2000,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2002,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2003,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2004,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2005,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2006,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2007,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116 -2008,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2009,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2010,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,175 -2011,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2012,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2013,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2014,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2015,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,186 -2016,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,233 -2017,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,246 -2018,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262 -2019,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,266 -2020,geoId/01125,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,269 -2000,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2001,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2002,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2003,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2004,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2005,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2008,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2009,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2010,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2011,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2012,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2013,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2014,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2015,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2016,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2017,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2018,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2019,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2020,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,120 -2010,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2011,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2012,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2013,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2014,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2015,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2016,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,132 -2017,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2018,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2019,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 -2020,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,182 1990,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,38 1991,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,45 1992,geoId/01125,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,46 @@ -32560,91 +7123,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,160 1998,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,176 1999,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,179 -2000,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2001,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,239 -2002,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,256 -2003,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262 -2004,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,260 -2005,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270 -2006,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,311 -2007,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,315 -2008,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,332 -2009,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,349 -2010,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,420 -2011,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,413 -2012,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,422 -2013,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,444 -2014,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,448 -2015,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,444 -2016,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,466 -2017,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,468 -2018,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,478 -2019,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,508 -2020,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,544 -2010,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,500 -2011,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,489 -2012,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,508 -2013,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,530 -2014,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,534 -2015,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,543 -2016,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,562 -2017,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,581 -2018,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,584 -2019,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,631 -2020,geoId/01125,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,676 -2010,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2011,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2012,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2013,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2014,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2015,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2016,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2017,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2018,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2019,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2020,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2000,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2001,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2002,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2003,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2004,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2005,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2006,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2007,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2008,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2009,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2010,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2011,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2012,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2013,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2015,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2016,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2017,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2018,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2019,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2020,geoId/01125,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2000,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2001,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2002,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2003,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2004,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2005,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 -2006,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2007,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2008,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2009,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127 -2010,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2011,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2012,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2013,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2014,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,167 -2015,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,171 -2016,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2017,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2018,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,189 -2019,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2020,geoId/01125,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,225 1990,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,766 1991,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,796 1992,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,819 @@ -32655,38 +7133,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1227 1998,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1333 1999,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1424 -2000,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1858 -2001,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2182 -2002,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2371 -2003,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2646 -2004,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2940 -2005,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3237 -2006,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3664 -2007,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4042 -2008,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4461 -2009,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4870 -2010,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5187 -2011,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5342 -2012,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5433 -2013,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5635 -2014,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5869 -2015,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6056 -2016,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6439 -2017,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6599 -2018,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6926 -2019,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7097 -2020,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7260 -2010,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5305 -2011,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5462 -2012,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5557 -2013,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5763 -2014,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6008 -2015,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6207 -2016,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6586 -2017,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6754 -2018,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7084 -2019,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7287 -2020,geoId/01125,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7450 1990,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,150062 1991,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,152110 1992,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,152167 @@ -32697,38 +7143,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,158413 1998,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,159169 1999,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,159747 -2000,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,163236 -2001,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,164395 -2002,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,165361 -2003,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,166637 -2004,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,168515 -2005,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,171989 -2006,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,177151 -2007,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,179698 -2008,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,182959 -2009,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,187202 -2010,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,189001 -2011,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,190634 -2012,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,192639 -2013,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,194687 -2014,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,196465 -2015,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,197971 -2016,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,199298 -2017,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,200214 -2018,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,200591 -2019,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,202059 -2020,geoId/01125,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,202276 -2010,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1093 -2011,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1086 -2012,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1112 -2013,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1144 -2014,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1165 -2015,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1156 -2016,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1170 -2017,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1195 -2018,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1203 -2019,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1191 -2020,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1213 1990,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,242 1991,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,241 1992,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,234 @@ -32739,59 +7153,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,226 1998,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,227 1999,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,223 -2000,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,358 -2001,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,381 -2002,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,372 -2003,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,394 -2004,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,404 -2005,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,391 -2006,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,420 -2007,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,443 -2008,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,440 -2009,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,446 -2010,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,464 -2011,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,454 -2012,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,455 -2013,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,479 -2014,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,475 -2015,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,472 -2016,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,477 -2017,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,478 -2018,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,470 -2019,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,467 -2020,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,458 -2000,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1634 -2001,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1664 -2002,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1677 -2003,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1733 -2004,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1867 -2005,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1976 -2006,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2062 -2007,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2120 -2008,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2255 -2009,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2278 -2010,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2414 -2011,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2543 -2012,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2712 -2013,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2965 -2014,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3093 -2015,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3114 -2016,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3223 -2017,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3253 -2018,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3291 -2019,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3380 -2020,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3472 -2010,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2910 -2011,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3060 -2012,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3262 -2013,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3534 -2014,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3697 -2015,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3764 -2016,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3886 -2017,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3985 -2018,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4046 -2019,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4153 -2020,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4263 1990,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1251 1991,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1304 1992,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1329 @@ -32812,102 +7173,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,44246 1998,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,44599 1999,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,45100 -2000,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48391 -2001,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48730 -2002,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49125 -2003,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49424 -2004,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50063 -2005,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51244 -2006,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53253 -2007,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54235 -2008,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55348 -2009,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56914 -2010,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57604 -2011,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58715 -2012,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59915 -2013,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61343 -2014,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62535 -2015,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63886 -2016,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65164 -2017,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66141 -2018,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66737 -2019,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67950 -2020,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68533 -2010,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58481 -2011,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59620 -2012,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60860 -2013,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62371 -2014,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63630 -2015,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65048 -2016,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66405 -2017,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67467 -2018,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68104 -2019,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69324 -2020,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69970 -2010,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,150 -2011,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2012,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 -2013,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172 -2014,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,162 -2015,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2016,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 -2017,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2018,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,203 -2019,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,211 -2020,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2000,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2001,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2002,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2003,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2004,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2005,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2006,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2007,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2008,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2009,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2010,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2011,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2012,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2013,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2014,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2015,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2016,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2018,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2019,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2020,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2000,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1053 -2001,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1134 -2002,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1164 -2003,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1234 -2004,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1270 -2005,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1365 -2006,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1407 -2007,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1452 -2008,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1489 -2009,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1565 -2010,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1715 -2011,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1803 -2012,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1869 -2013,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1976 -2014,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2077 -2015,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2184 -2016,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2309 -2017,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2424 -2018,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2497 -2019,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2528 -2020,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2638 -2010,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128253 -2011,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128665 -2012,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129281 -2013,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129603 -2014,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130087 -2015,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130194 -2016,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130130 -2017,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130004 -2018,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129763 -2019,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129952 -2020,geoId/01125,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129493 1990,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,109151 1991,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,110403 1992,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,110098 @@ -32918,27 +7183,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,112486 1998,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,112890 1999,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,112960 -2000,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111781 -2001,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112460 -2002,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112995 -2003,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113814 -2004,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114871 -2005,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,116966 -2006,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,119952 -2007,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121388 -2008,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123365 -2009,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125926 -2010,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,126727 -2011,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127041 -2012,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127602 -2013,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127839 -2014,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128203 -2015,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128238 -2016,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128046 -2017,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127832 -2018,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127500 -2019,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127656 -2020,geoId/01125,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,127088 1990,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,224 1991,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,219 1992,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,231 @@ -32949,38 +7193,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,365 1998,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,397 1999,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,428 -2000,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,606 -2001,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,690 -2002,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,740 -2003,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,790 -2004,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,886 -2005,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,993 -2006,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1059 -2007,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1134 -2008,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1261 -2009,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1312 -2010,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1303 -2011,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1381 -2012,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1381 -2013,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1408 -2014,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1408 -2015,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1490 -2016,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1534 -2017,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1594 -2018,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1657 -2019,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1707 -2020,geoId/01127,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1796 -2010,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2011,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,77 -2012,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 -2013,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2014,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,92 -2015,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2016,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2017,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2018,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2019,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2020,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 1990,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1991,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 @@ -32991,59 +7203,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1998,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1999,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 -2000,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2002,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2005,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2006,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2007,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2008,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2009,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2010,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2011,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2012,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2013,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2014,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2015,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2016,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2017,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2018,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2019,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2020,geoId/01127,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,88 -2000,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2006,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2007,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2008,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2010,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2011,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2012,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2013,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2014,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2015,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2016,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2018,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2019,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2020,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2010,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2013,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2014,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2015,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2016,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2017,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2018,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2019,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2020,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 1990,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 1991,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 1992,geoId/01127,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 @@ -33064,91 +7223,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 1998,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1999,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15 -2000,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2001,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2002,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2003,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2004,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2005,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2006,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2007,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2008,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2009,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2010,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2011,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2012,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2013,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2014,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2015,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2016,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2017,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,67 -2018,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2010,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2011,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2012,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,82 -2013,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2014,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,99 -2015,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,113 -2016,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,102 -2017,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2018,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2019,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2020,geoId/01127,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,123 -2010,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2011,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2012,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2014,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2015,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2016,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2017,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2018,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2019,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2020,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2000,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2005,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2007,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2008,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2009,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2010,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2011,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2012,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2013,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2014,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2015,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2017,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2018,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2020,geoId/01127,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2000,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2002,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2003,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2004,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2005,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2006,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2007,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2008,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2009,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2010,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2011,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2012,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2013,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2014,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2015,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2016,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2017,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2018,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2019,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2020,geoId/01127,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,89 1990,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,205 1991,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,203 1992,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,214 @@ -33159,38 +7233,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,343 1998,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,373 1999,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,402 -2000,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,532 -2001,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,615 -2002,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,651 -2003,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,696 -2004,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,783 -2005,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,851 -2006,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,891 -2007,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,953 -2008,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1061 -2009,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1103 -2010,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1092 -2011,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1162 -2012,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1161 -2013,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1177 -2014,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1158 -2015,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1196 -2016,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1230 -2017,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1284 -2018,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1342 -2019,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1381 -2020,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1445 -2010,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1134 -2011,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1204 -2012,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1208 -2013,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1232 -2014,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1218 -2015,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1264 -2016,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1299 -2017,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1350 -2018,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1419 -2019,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1452 -2020,geoId/01127,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1521 1990,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,67428 1991,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,67797 1992,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,68087 @@ -33201,38 +7243,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,70312 1998,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,70609 1999,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,70890 -2000,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,69996 -2001,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,69674 -2002,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,69025 -2003,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,68315 -2004,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,67743 -2005,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,67507 -2006,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,67175 -2007,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,66561 -2008,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,66574 -2009,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,66035 -2010,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,65692 -2011,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,65205 -2012,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,64729 -2013,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,64382 -2014,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,63946 -2015,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,63460 -2016,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,63025 -2017,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,62335 -2018,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,62044 -2019,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61973 -2020,geoId/01127,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,61347 -2010,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,617 -2011,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,625 -2012,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,636 -2013,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,633 -2014,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,639 -2015,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,643 -2016,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,663 -2017,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,651 -2018,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,664 -2019,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,670 -2020,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,671 1990,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,84 1991,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,86 1992,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,87 @@ -33243,59 +7253,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,94 1998,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,95 1999,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,89 -2000,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,197 -2001,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,211 -2002,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,209 -2003,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,207 -2004,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2005,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,212 -2006,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,225 -2007,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,219 -2008,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,218 -2009,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2010,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,238 -2011,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,239 -2012,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,237 -2013,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,254 -2014,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262 -2015,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,253 -2016,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,270 -2017,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,254 -2018,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,259 -2019,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,267 -2020,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,264 -2000,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2001,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2002,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,149 -2003,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2004,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2005,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2006,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,163 -2007,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2008,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2009,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,180 -2010,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,193 -2011,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,217 -2012,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,241 -2013,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,252 -2014,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,280 -2015,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,291 -2016,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,292 -2017,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,301 -2018,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,285 -2019,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,288 -2020,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,291 -2010,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,271 -2011,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,286 -2012,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,321 -2013,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,328 -2014,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,365 -2015,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,376 -2016,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,388 -2017,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,397 -2018,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,386 -2019,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,388 -2020,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,383 1990,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,101 1991,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,103 1992,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,107 @@ -33316,102 +7273,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4951 1998,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4998 1999,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5070 -2000,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4315 -2001,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4308 -2002,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4255 -2003,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4169 -2004,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4089 -2005,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4087 -2006,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4028 -2007,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3963 -2008,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3980 -2009,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3864 -2010,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3881 -2011,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3863 -2012,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3897 -2013,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3917 -2014,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3928 -2015,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3861 -2016,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3909 -2017,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3861 -2018,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3829 -2019,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3836 -2020,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3798 -2010,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4234 -2011,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4234 -2012,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4307 -2013,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4339 -2014,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4368 -2015,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4340 -2016,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4401 -2017,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4364 -2018,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4349 -2019,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4367 -2020,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4358 -2010,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2011,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2012,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2014,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2015,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2016,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2017,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2018,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2019,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2020,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2000,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2001,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2002,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2004,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2005,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2006,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2008,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2009,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2012,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2013,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2020,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2000,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,398 -2001,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,419 -2002,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,454 -2003,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,494 -2004,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,519 -2005,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,550 -2006,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,593 -2007,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,629 -2008,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,661 -2009,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,697 -2010,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,738 -2011,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,777 -2012,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,818 -2013,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,825 -2014,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,846 -2015,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,893 -2016,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,922 -2017,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,923 -2018,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,950 -2019,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,965 -2020,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1004 -2010,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61306 -2011,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60816 -2012,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60273 -2013,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59880 -2014,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59406 -2015,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58976 -2016,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58476 -2017,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57827 -2018,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57589 -2019,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57502 -2020,geoId/01127,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56921 1990,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,62855 1991,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,63131 1992,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,63355 @@ -33422,27 +7283,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,65132 1998,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,65381 1999,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,65588 -2000,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64934 -2001,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64573 -2002,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63947 -2003,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63278 -2004,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62739 -2005,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62480 -2006,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62147 -2007,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61560 -2008,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61518 -2009,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61042 -2010,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60617 -2011,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60082 -2012,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59507 -2013,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59106 -2014,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58603 -2015,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58135 -2016,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57604 -2017,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56968 -2018,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56692 -2019,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56588 -2020,geoId/01127,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55962 1990,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,51 1991,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,53 1992,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,56 @@ -33453,38 +7293,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,81 1998,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,81 1999,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,90 -2000,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,160 -2001,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,156 -2002,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,161 -2003,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,158 -2004,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,158 -2005,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,144 -2006,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,142 -2007,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,138 -2008,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,137 -2009,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,149 -2010,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,159 -2011,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,188 -2012,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,207 -2013,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,205 -2014,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,212 -2015,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,216 -2016,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,229 -2017,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,249 -2018,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,251 -2019,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,253 -2020,geoId/01129,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,262 -2010,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2011,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2012,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2013,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2014,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2015,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2017,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2018,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2019,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2020,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 1990,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11 1991,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,12 1992,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 @@ -33495,59 +7303,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,13 1998,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,15 1999,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 -2000,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2004,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2008,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2009,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2010,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2013,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2014,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2016,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2017,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2018,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2019,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2020,geoId/01129,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2000,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2009,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2015,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2016,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2017,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2019,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2010,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2014,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2016,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 1990,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01129,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -33568,91 +7323,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,17 1998,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 1999,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,19 -2000,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2001,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2002,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2003,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2004,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2005,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2006,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2007,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2008,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2009,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2011,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2013,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2014,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2015,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2016,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2018,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2019,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2020,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2010,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2011,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2013,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2014,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2015,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2016,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2017,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2018,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2020,geoId/01129,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2010,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2012,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2013,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2017,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2018,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2019,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2000,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2008,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2012,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2019,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01129,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2000,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2002,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2003,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2004,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2005,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2006,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2007,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2008,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2009,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2010,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2012,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2014,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2015,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2017,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2019,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2020,geoId/01129,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 1990,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28 1991,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,29 1992,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,32 @@ -33663,38 +7333,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,51 1998,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,52 1999,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,52 -2000,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2001,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2002,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2003,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2004,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,100 -2005,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2006,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2007,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2008,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2009,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,85 -2010,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,97 -2011,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2012,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2013,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2014,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2015,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2016,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2017,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,168 -2018,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2019,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,160 -2020,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2010,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2011,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134 -2012,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2013,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2014,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2015,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,157 -2016,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,166 -2017,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2018,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2019,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,174 -2020,geoId/01129,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,177 1990,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16643 1991,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16724 1992,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16758 @@ -33705,38 +7343,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17504 1998,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17582 1999,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17652 -2000,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17941 -2001,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17777 -2002,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17734 -2003,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17752 -2004,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17643 -2005,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17546 -2006,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17563 -2007,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17353 -2008,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17359 -2009,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17344 -2010,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17468 -2011,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,17168 -2012,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16940 -2013,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16693 -2014,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16656 -2015,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16615 -2016,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16378 -2017,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16235 -2018,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16085 -2019,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,16026 -2020,geoId/01129,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,15714 -2010,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1503 -2011,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1443 -2012,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1399 -2013,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1377 -2014,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1403 -2015,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1407 -2016,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1368 -2017,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1335 -2018,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1353 -2019,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1346 -2020,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1314 1990,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1052 1991,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1033 1992,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,993 @@ -33747,59 +7353,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,926 1998,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,896 1999,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,872 -2000,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1278 -2001,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1274 -2002,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1309 -2003,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1306 -2004,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1323 -2005,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1332 -2006,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1343 -2007,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1386 -2008,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1404 -2009,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1390 -2010,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1400 -2011,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1335 -2012,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1293 -2013,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1273 -2014,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1296 -2015,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1291 -2016,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1249 -2017,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1224 -2018,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1226 -2019,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1225 -2020,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1203 -2000,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2001,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2003,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2006,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2007,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2008,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2009,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2010,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2011,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2012,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2013,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2014,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,96 -2015,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2016,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2017,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2018,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2019,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2020,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,125 -2010,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2011,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2012,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,86 -2013,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,108 -2014,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,130 -2015,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,153 -2016,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2017,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2018,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2019,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2020,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 1990,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 1991,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 1992,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,14 @@ -33820,102 +7373,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5178 1998,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5241 1999,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5302 -2000,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4833 -2001,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4758 -2002,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4676 -2003,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4635 -2004,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4575 -2005,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4493 -2006,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4489 -2007,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4369 -2008,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4383 -2009,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4344 -2010,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4382 -2011,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4294 -2012,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4168 -2013,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4130 -2014,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4068 -2015,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4025 -2016,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3964 -2017,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3896 -2018,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3817 -2019,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3784 -2020,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3697 -2010,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4453 -2011,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4359 -2012,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4248 -2013,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4202 -2014,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4151 -2015,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4113 -2016,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4055 -2017,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3975 -2018,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3902 -2019,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3879 -2020,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3797 -2010,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2013,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2016,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2018,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2019,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2020,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2000,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2001,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2002,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2003,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2004,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2006,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2007,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2008,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2010,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2011,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2013,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2017,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2018,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2020,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2000,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2001,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,134 -2002,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2003,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,148 -2004,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,151 -2005,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2006,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2007,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,164 -2008,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,165 -2009,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,169 -2010,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2011,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,179 -2012,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,178 -2013,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,185 -2014,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,200 -2015,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,213 -2016,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2017,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2018,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,226 -2019,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,228 -2020,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,236 -2010,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11642 -2011,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11486 -2012,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11384 -2013,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11191 -2014,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11161 -2015,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11134 -2016,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11014 -2017,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10965 -2018,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10884 -2019,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10857 -2020,geoId/01129,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10652 1990,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,10965 1991,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11002 1992,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11022 @@ -33926,27 +7383,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11384 1998,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11429 1999,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,11460 -2000,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11672 -2001,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11596 -2002,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11591 -2003,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11645 -2004,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11577 -2005,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11532 -2006,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11547 -2007,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11410 -2008,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11384 -2009,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11413 -2010,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11484 -2011,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11324 -2012,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11237 -2013,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11022 -2014,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10985 -2015,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10958 -2016,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10823 -2017,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10782 -2018,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10688 -2019,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10655 -2020,geoId/01129,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10440 1990,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,40 1991,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,49 1992,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,39 @@ -33957,38 +7393,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,44 1998,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,51 1999,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,51 -2000,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,97 -2001,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,94 -2002,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,91 -2003,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,91 -2004,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,92 -2005,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,79 -2006,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,71 -2007,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,72 -2008,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,68 -2009,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,74 -2010,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,74 -2011,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,80 -2012,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,87 -2013,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,100 -2014,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,111 -2015,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,113 -2016,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,137 -2017,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,155 -2018,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,154 -2019,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,157 -2020,geoId/01131,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,160 -2010,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2013,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2014,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2015,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2016,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2017,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2018,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 1990,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3 1992,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 @@ -33999,59 +7403,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1998,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1999,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 -2000,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2006,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2013,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2014,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2015,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2016,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2018,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2019,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2020,geoId/01131,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2000,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2001,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2002,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2004,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2005,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2006,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2007,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2008,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2009,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2010,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2012,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2014,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2018,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2020,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2011,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2013,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2015,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2017,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2018,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2019,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2020,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 1990,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1991,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9 1992,geoId/01131,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4 @@ -34072,91 +7423,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,20 1998,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 1999,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21 -2000,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2001,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2002,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2003,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2004,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2005,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2006,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2007,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,52 -2008,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,44 -2009,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2010,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2011,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2012,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2013,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2014,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2015,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2016,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2017,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2018,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2019,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,62 -2020,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2010,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2011,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2012,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,49 -2013,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2014,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,55 -2015,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2016,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,61 -2017,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2018,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2020,geoId/01131,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2010,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2012,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2017,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2019,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2020,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2001,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2002,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2003,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2004,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 -2005,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2006,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01131,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2005,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2007,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2010,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2011,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2012,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2013,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2015,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2016,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2020,geoId/01131,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 1990,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18 1991,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,17 1992,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,18 @@ -34167,38 +7433,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23 1998,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,28 1999,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,30 -2000,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2001,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2002,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2003,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2004,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2005,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2006,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2007,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2008,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2009,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2011,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2012,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2013,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2015,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2016,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2017,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2018,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 -2019,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,81 -2020,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,83 -2010,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2011,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2012,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,37 -2013,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,48 -2014,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2015,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2016,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2017,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 -2018,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,84 -2019,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,90 -2020,geoId/01131,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 1990,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13470 1991,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13711 1992,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13647 @@ -34209,38 +7443,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13411 1998,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13400 1999,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,13363 -2000,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12842 -2001,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12712 -2002,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12687 -2003,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12509 -2004,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12401 -2005,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12290 -2006,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12150 -2007,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12136 -2008,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,12080 -2009,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11796 -2010,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11486 -2011,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11358 -2012,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11217 -2013,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,11048 -2014,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10839 -2015,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10787 -2016,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10723 -2017,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10549 -2018,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10438 -2019,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10239 -2020,geoId/01131,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,10046 -2010,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2011,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2012,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2014,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2015,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2016,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2017,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2018,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2019,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,69 -2020,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,78 1990,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 1991,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 1992,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,6 @@ -34251,59 +7453,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1998,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1999,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 -2000,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2001,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2002,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2003,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2004,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2006,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2008,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2009,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2010,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2012,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2013,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2014,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2015,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2016,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2017,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2018,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2019,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2020,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2000,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2001,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2003,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2004,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2005,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2006,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2008,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2009,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2010,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2011,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2014,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2015,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2016,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2018,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2019,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2010,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2011,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2013,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2014,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2015,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2016,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2017,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2018,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2019,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,50 -2020,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 1990,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1991,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1992,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 @@ -34324,102 +7473,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9409 1998,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9425 1999,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,9418 -2000,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9257 -2001,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9183 -2002,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9185 -2003,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9048 -2004,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8969 -2005,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8887 -2006,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8796 -2007,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8809 -2008,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8804 -2009,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8550 -2010,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8336 -2011,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8278 -2012,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8087 -2013,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7955 -2014,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7797 -2015,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7737 -2016,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7683 -2017,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7541 -2018,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7484 -2019,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7323 -2020,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7129 -2010,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8359 -2011,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8299 -2012,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8115 -2013,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7989 -2014,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7825 -2015,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7776 -2016,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7720 -2017,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7583 -2018,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7541 -2019,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7378 -2020,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7192 -2010,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2013,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2014,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2015,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2016,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2017,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2019,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2020,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2000,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2006,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2007,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2008,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2009,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2010,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2011,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2012,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2013,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2014,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2015,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2016,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2017,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2018,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2019,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2020,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2000,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2001,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2002,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2003,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2004,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2005,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2006,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2007,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2008,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2009,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 -2010,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2011,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2012,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2013,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2014,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2015,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,74 -2016,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2017,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,87 -2018,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,98 -2019,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2020,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2010,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3125 -2011,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3053 -2012,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3098 -2013,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3057 -2014,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3004 -2015,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3000 -2016,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2983 -2017,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2950 -2018,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2886 -2019,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2848 -2020,geoId/01131,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2858 1990,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4170 1991,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4237 1992,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,4195 @@ -34430,27 +7483,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3992 1998,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3965 1999,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,3935 -2000,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3535 -2001,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3480 -2002,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3454 -2003,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3412 -2004,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3380 -2005,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3345 -2006,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3291 -2007,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3262 -2008,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3212 -2009,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3180 -2010,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3086 -2011,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3011 -2012,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3051 -2013,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3006 -2014,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2945 -2015,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2938 -2016,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2916 -2017,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2877 -2018,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2806 -2019,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2765 -2020,geoId/01131,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2756 1990,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,59 1991,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,57 1992,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,63 @@ -34461,38 +7493,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,114 1998,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,119 1999,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,138 -2000,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,374 -2001,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,394 -2002,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,432 -2003,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,466 -2004,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,469 -2005,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,514 -2006,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,563 -2007,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,632 -2008,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,648 -2009,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,663 -2010,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,644 -2011,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,655 -2012,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,677 -2013,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,677 -2014,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,689 -2015,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,727 -2016,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,714 -2017,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,726 -2018,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,734 -2019,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,759 -2020,geoId/01133,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,787 -2010,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,71 -2011,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2012,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2013,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2014,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2015,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2016,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2017,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 -2018,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2019,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,76 -2020,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,79 1990,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1991,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 @@ -34503,59 +7503,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,7 1998,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,5 1999,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,8 -2000,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2001,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2002,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2003,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2004,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 -2005,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2006,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2007,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2008,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 -2009,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2010,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2011,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,56 -2012,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2013,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2014,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2015,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2016,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2017,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2018,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2019,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,58 -2020,geoId/01133,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,60 -2000,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2004,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2005,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2006,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2007,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2008,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2009,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2010,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2011,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2013,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2018,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2019,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2020,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2010,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2011,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2012,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2013,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2014,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2015,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2016,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2017,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2018,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2020,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 1990,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,2 1991,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,0 1992,geoId/01133,dcid:Count_Person_HispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 @@ -34576,91 +7523,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1998,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 1999,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,1 -2000,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2001,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2002,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2003,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2004,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 -2005,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2007,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2009,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2010,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2011,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2012,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2013,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2014,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2015,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2016,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 -2017,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2018,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2019,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2020,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2010,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2011,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2012,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2013,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2014,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22 -2015,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,29 -2016,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2017,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2018,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,36 -2019,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01133,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,38 -2010,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2011,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2012,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2013,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2014,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2016,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 -2017,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2018,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,46 -2019,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2020,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,43 -2000,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2001,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2003,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2004,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2005,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2006,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2007,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 -2008,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2009,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2010,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,41 -2011,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2012,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2013,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,40 -2014,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2015,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2016,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2017,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2018,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2019,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2020,geoId/01133,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,39 -2000,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2001,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,11 -2002,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2003,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 -2004,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 -2005,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2006,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2007,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2008,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2009,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21 -2010,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2011,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2012,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2014,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,26 -2015,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2016,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,27 -2017,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 -2018,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 -2019,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2020,geoId/01133,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,33 1990,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,56 1991,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,56 1992,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,60 @@ -34671,38 +7533,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,102 1998,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,110 1999,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,123 -2000,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,352 -2001,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,370 -2002,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,401 -2003,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,415 -2004,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,411 -2005,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,434 -2006,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,476 -2007,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,534 -2008,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,530 -2009,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,528 -2010,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,512 -2011,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,524 -2012,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,548 -2013,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,542 -2014,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,548 -2015,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,576 -2016,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,565 -2017,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,569 -2018,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,572 -2019,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,593 -2020,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,615 -2010,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,529 -2011,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,540 -2012,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,564 -2013,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,564 -2014,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,573 -2015,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,600 -2016,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,587 -2017,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,595 -2018,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,597 -2019,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,625 -2020,geoId/01133,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,641 1990,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22046 1991,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,21952 1992,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22189 @@ -34713,38 +7543,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23856 1998,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24011 1999,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24321 -2000,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24483 -2001,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24203 -2002,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24168 -2003,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24110 -2004,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24145 -2005,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24115 -2006,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24233 -2007,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24226 -2008,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24048 -2009,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,24028 -2010,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23768 -2011,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23707 -2012,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23517 -2013,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23513 -2014,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23452 -2015,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23202 -2016,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23197 -2017,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,23027 -2018,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22956 -2019,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22941 -2020,geoId/01133,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,22721 -2010,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,308 -2011,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,310 -2012,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,321 -2013,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,308 -2014,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,326 -2015,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,309 -2016,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,331 -2017,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,336 -2018,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,343 -2019,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,357 -2020,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,338 1990,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,42 1991,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,43 1992,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,42 @@ -34755,59 +7553,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,46 1998,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,46 1999,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,47 -2000,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2001,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,104 -2002,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,110 -2003,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2004,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2005,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,122 -2006,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128 -2007,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,128 -2008,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,133 -2009,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,138 -2010,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2011,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,136 -2012,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2013,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,135 -2014,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,143 -2015,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,137 -2016,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,142 -2017,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,147 -2018,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,145 -2019,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2020,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141 -2000,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2001,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,30 -2002,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,32 -2003,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,35 -2004,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 -2005,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 -2006,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,53 -2007,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,54 -2008,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,57 -2009,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2010,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 -2011,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,65 -2012,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2013,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,63 -2014,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,64 -2015,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,66 -2016,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,75 -2017,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2018,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,73 -2019,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,72 -2020,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,68 -2010,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2011,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2012,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,95 -2013,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,103 -2014,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,105 -2015,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,112 -2016,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,124 -2017,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,118 -2018,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2019,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 -2020,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,121 1990,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24 1991,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,25 1992,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_AsianOrPacificIslander,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,26 @@ -34828,102 +7573,6 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,93 1998,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,95 1999,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,95 -2000,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,94 -2001,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,93 -2002,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,107 -2003,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,106 -2004,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2005,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,114 -2006,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2007,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2008,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,117 -2009,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,115 -2010,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 -2011,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,146 -2012,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,140 -2013,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,155 -2014,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,161 -2015,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,172 -2016,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,176 -2017,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,184 -2018,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,192 -2019,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,215 -2020,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2010,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,208 -2011,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,233 -2012,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,235 -2013,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,260 -2014,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,272 -2015,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,289 -2016,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,283 -2017,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,297 -2018,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,314 -2019,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,345 -2020,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,337 -2010,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 -2011,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2012,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,18 -2013,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24 -2014,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,14 -2015,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2016,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 -2017,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23 -2018,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2019,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 -2020,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 -2000,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2001,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 -2002,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2003,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 -2004,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2005,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2006,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 -2007,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,5 -2008,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2009,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 -2010,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2011,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2012,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 -2013,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2014,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2015,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2016,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2017,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2018,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 -2019,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 -2020,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 -2000,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,158 -2001,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,156 -2002,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,173 -2003,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 -2004,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,204 -2005,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,212 -2006,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,222 -2007,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,234 -2008,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,251 -2009,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,262 -2010,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,275 -2011,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,281 -2012,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,285 -2013,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,297 -2014,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,306 -2015,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,305 -2016,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,316 -2017,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,319 -2018,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,326 -2019,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,366 -2020,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,357 -2010,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23427 -2011,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23337 -2012,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23143 -2013,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23127 -2014,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23047 -2015,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22785 -2016,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22765 -2017,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22588 -2018,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22507 -2019,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22474 -2020,geoId/01133,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22275 1990,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21910 1991,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,21801 1992,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,22036 @@ -34934,24 +7583,99 @@ YEAR,LOCATION,SV,MEASUREMENT_METHOD,OBSERVATION 1997,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23684 1998,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,23837 1999,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_RaceUpto1999,24143 -2000,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,24093 -2001,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23818 -2002,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23741 -2003,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23664 -2004,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23671 -2005,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23618 -2006,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23711 -2007,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23688 -2008,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23482 -2009,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23448 -2010,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23178 -2011,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,23072 -2012,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22885 -2013,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22855 -2014,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22770 -2015,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22514 -2016,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22479 -2017,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22295 -2018,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22211 -2019,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,22137 -2020,geoId/01133,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,21939 +2020,geoId/23019,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2734 +2020,geoId/23019,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,181 +2020,geoId/23019,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,91 +2020,geoId/23019,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,42 +2020,geoId/23019,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,80 +2020,geoId/23019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,111 +2020,geoId/23019,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,188 +2020,geoId/23019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 +2020,geoId/23019,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 +2020,geoId/23019,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,183 +2020,geoId/23019,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2300 +2020,geoId/23019,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2476 +2020,geoId/23019,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,149435 +2020,geoId/23019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3108 +2020,geoId/23019,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1823 +2020,geoId/23019,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1770 +2020,geoId/23019,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2392 +2020,geoId/23019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1403 +2020,geoId/23019,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2159 +2020,geoId/23019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,129 +2020,geoId/23019,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,45 +2020,geoId/23019,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2555 +2020,geoId/23019,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,144345 +2020,geoId/23019,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,141839 +2020,geoId/31091,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,20 +2020,geoId/31091,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2020,geoId/31091,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2020,geoId/31091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,4 +2020,geoId/31091,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,16 +2020,geoId/31091,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,20 +2020,geoId/31091,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,685 +2020,geoId/31091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2020,geoId/31091,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2020,geoId/31091,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2020,geoId/31091,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2020,geoId/31091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2020,geoId/31091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2020,geoId/31091,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,7 +2020,geoId/31091,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,680 +2020,geoId/31091,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,673 +2023,geoId/46049,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,63 +2023,geoId/46049,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 +2023,geoId/46049,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 +2023,geoId/46049,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2023,geoId/46049,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2023,geoId/46049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2023,geoId/46049,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2023,geoId/46049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 +2023,geoId/46049,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,51 +2023,geoId/46049,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,2088 +2023,geoId/46049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,17 +2023,geoId/46049,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 +2023,geoId/46049,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 +2023,geoId/46049,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,10 +2023,geoId/46049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,9 +2023,geoId/46049,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,15 +2023,geoId/46049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2023,geoId/46049,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2023,geoId/46049,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,13 +2023,geoId/46049,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2058 +2023,geoId/46049,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2047 +2022,geoId/46119,dcid:Count_Person_HispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,43 +2022,geoId/46119,dcid:Count_Person_HispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,12 +2022,geoId/46119,dcid:Count_Person_HispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,8 +2022,geoId/46119,dcid:Count_Person_HispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2022,geoId/46119,dcid:Count_Person_HispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2022,geoId/46119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46119,dcid:Count_Person_HispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,2 +2022,geoId/46119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2022,geoId/46119,dcid:Count_Person_HispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46119,dcid:Count_Person_HispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,6 +2022,geoId/46119,dcid:Count_Person_HispanicOrLatino_WhiteAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,28 +2022,geoId/46119,dcid:Count_Person_HispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,34 +2022,geoId/46119,dcid:Count_Person_NotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey,1439 +2022,geoId/46119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianAndAlaskaNativeAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,59 +2022,geoId/46119,dcid:Count_Person_NotHispanicOrLatino_AmericanIndianOrAlaskaNativeAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,47 +2022,geoId/46119,dcid:Count_Person_NotHispanicOrLatino_AsianAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1 +2022,geoId/46119,dcid:Count_Person_NotHispanicOrLatino_AsianAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,3 +2022,geoId/46119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,25 +2022,geoId/46119,dcid:Count_Person_NotHispanicOrLatino_BlackOrAfricanAmericanAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,31 +2022,geoId/46119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianAndOtherPacificIslanderAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46119,dcid:Count_Person_NotHispanicOrLatino_NativeHawaiianOrOtherPacificIslanderAlone,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,0 +2022,geoId/46119,dcid:Count_Person_NotHispanicOrLatino_TwoOrMoreRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,19 +2022,geoId/46119,dcid:Count_Person_NotHispanicOrLatino_WhiteAloneOrInCombinationWithOneOrMoreOtherRaces,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1366 +2022,geoId/46119,dcid:Count_Person_WhiteAloneNotHispanicOrLatino,dcs:dcAggregate/CensusPEPSurvey_Race2000Onwards,1347 diff --git a/scripts/us_census/pep/pep_by_srh/testdata/input_files/2000_2010/county/co-est00int-alldata-01.csv b/scripts/us_census/pep/pep_by_srh/testdata/input_files/2000_2010/county/co-est00int-alldata-01.csv index c530faa860..90b35d46f1 100644 --- a/scripts/us_census/pep/pep_by_srh/testdata/input_files/2000_2010/county/co-est00int-alldata-01.csv +++ b/scripts/us_census/pep/pep_by_srh/testdata/input_files/2000_2010/county/co-est00int-alldata-01.csv @@ -1,17421 +1,258 @@ SUMLEV,STATE,COUNTY,STNAME,CTYNAME,YEAR,AGEGRP,TOT_POP,TOT_MALE,TOT_FEMALE,WA_MALE,WA_FEMALE,BA_MALE,BA_FEMALE,IA_MALE,IA_FEMALE,AA_MALE,AA_FEMALE,NA_MALE,NA_FEMALE,TOM_MALE,TOM_FEMALE,NH_MALE,NH_FEMALE,NHWA_MALE,NHWA_FEMALE,NHBA_MALE,NHBA_FEMALE,NHIA_MALE,NHIA_FEMALE,NHAA_MALE,NHAA_FEMALE,NHNA_MALE,NHNA_FEMALE,NHTOM_MALE,NHTOM_FEMALE,H_MALE,H_FEMALE,HWA_MALE,HWA_FEMALE,HBA_MALE,HBA_FEMALE,HIA_MALE,HIA_FEMALE,HAA_MALE,HAA_FEMALE,HNA_MALE,HNA_FEMALE,HTOM_MALE,HTOM_FEMALE -050,01,001,Alabama,Autauga County,1,0,576,263,313,215,248,43,60,0,2,3,0,0,0,2,3,261,304,213,239,43,60,0,2,3,0,0,0,2,3,2,9,2,9,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,1,1,2445,1237,1208,971,954,245,227,2,4,3,5,0,1,16,17,1219,1186,953,937,245,224,2,4,3,5,0,1,16,15,18,22,18,17,0,3,0,0,0,0,0,0,0,2 -050,01,001,Alabama,Autauga County,1,2,3622,1875,1747,1494,1389,352,327,9,6,4,4,0,1,16,20,1851,1722,1476,1369,349,324,8,4,3,4,0,1,15,20,24,25,18,20,3,3,1,2,1,0,0,0,1,0 -050,01,001,Alabama,Autauga County,1,3,3744,1959,1785,1553,1382,375,364,9,11,1,10,0,2,21,16,1925,1754,1526,1356,368,363,9,11,1,7,0,1,21,16,34,31,27,26,7,1,0,0,0,3,0,1,0,0 -050,01,001,Alabama,Autauga County,1,4,3266,1679,1587,1279,1195,359,359,10,8,5,4,0,0,26,21,1643,1559,1250,1169,356,358,7,8,5,4,0,0,25,20,36,28,29,26,3,1,3,0,0,0,0,0,1,1 -050,01,001,Alabama,Autauga County,1,5,2344,1182,1162,915,869,239,267,10,7,5,7,2,0,11,12,1136,1143,870,853,239,266,9,6,5,6,2,0,11,12,46,19,45,16,0,1,1,1,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,1,6,2710,1277,1433,1044,1120,210,291,6,6,9,7,0,0,8,9,1242,1410,1010,1100,210,289,5,6,9,7,0,0,8,8,35,23,34,20,0,2,1,0,0,0,0,0,0,1 -050,01,001,Alabama,Autauga County,1,7,3033,1471,1562,1252,1265,202,267,8,6,2,14,0,1,7,9,1445,1549,1228,1253,201,267,7,6,2,13,0,1,7,9,26,13,24,12,1,0,1,0,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,1,8,4002,1941,2061,1652,1706,257,312,9,12,5,19,1,1,17,11,1910,2031,1625,1679,254,309,9,12,4,19,1,1,17,11,31,30,27,27,3,3,0,0,1,0,0,0,0,0 -050,01,001,Alabama,Autauga County,1,9,3678,1784,1894,1484,1505,270,341,6,12,9,18,0,1,15,17,1759,1872,1461,1485,268,340,6,12,9,17,0,1,15,17,25,22,23,20,2,1,0,0,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,1,10,3028,1501,1527,1244,1224,239,271,5,11,5,13,0,1,8,7,1482,1514,1230,1213,236,270,5,10,5,13,0,1,6,7,19,13,14,11,3,1,0,1,0,0,0,0,2,0 -050,01,001,Alabama,Autauga County,1,11,2610,1241,1369,1062,1130,164,208,7,7,2,11,0,0,6,13,1236,1357,1058,1120,163,206,7,7,2,11,0,0,6,13,5,12,4,10,1,2,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,1,12,2301,1085,1216,934,1034,135,152,5,6,3,10,0,1,8,13,1080,1207,931,1025,134,152,4,6,3,10,0,1,8,13,5,9,3,9,1,0,1,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,1,13,1904,931,973,808,838,114,121,4,2,2,11,0,0,3,1,920,967,798,833,113,120,4,2,2,11,0,0,3,1,11,6,10,5,1,1,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,1,14,1549,711,838,620,693,78,129,3,1,5,8,1,0,4,7,706,829,617,685,77,128,3,1,4,8,1,0,4,7,5,9,3,8,1,1,0,0,1,0,0,0,0,0 -050,01,001,Alabama,Autauga County,1,15,1153,498,655,426,535,70,114,1,1,0,5,0,0,1,0,496,654,424,534,70,114,1,1,0,5,0,0,1,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,1,16,835,330,505,271,408,58,92,0,2,0,0,0,0,1,3,326,503,268,408,57,90,0,2,0,0,0,0,1,3,4,2,3,0,1,2,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,1,17,516,172,344,146,271,25,72,0,0,0,0,0,0,1,1,169,341,143,268,25,72,0,0,0,0,0,0,1,1,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,1,18,435,115,320,86,253,29,66,0,0,0,0,0,0,0,1,113,319,84,252,29,66,0,0,0,0,0,0,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,1,99,43751,21252,22499,17456,18019,3464,4040,94,104,63,146,4,9,171,181,20919,22221,17165,17778,3437,4018,86,100,60,140,4,8,167,177,333,278,291,241,27,22,8,4,3,6,0,1,4,4 -050,01,001,Alabama,Autauga County,2,0,586,267,319,217,252,44,60,0,2,3,0,0,0,3,5,265,310,215,243,44,60,0,2,3,0,0,0,3,5,2,9,2,9,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,2,1,2443,1236,1207,969,955,243,226,2,4,3,5,0,1,19,16,1218,1185,951,938,243,223,2,4,3,5,0,1,19,14,18,22,18,17,0,3,0,0,0,0,0,0,0,2 -050,01,001,Alabama,Autauga County,2,2,3619,1874,1745,1494,1389,351,326,9,6,4,4,0,1,16,19,1850,1720,1476,1369,348,323,8,4,3,4,0,1,15,19,24,25,18,20,3,3,1,2,1,0,0,0,1,0 -050,01,001,Alabama,Autauga County,2,3,3776,1976,1800,1565,1393,379,367,9,11,1,10,0,2,22,17,1942,1769,1538,1367,372,366,9,11,1,7,0,1,22,17,34,31,27,26,7,1,0,0,0,3,0,1,0,0 -050,01,001,Alabama,Autauga County,2,4,3297,1698,1599,1293,1207,362,361,10,8,5,4,0,0,28,19,1662,1570,1264,1181,359,360,7,8,5,4,0,0,27,17,36,29,29,26,3,1,3,0,0,0,0,0,1,2 -050,01,001,Alabama,Autauga County,2,5,2366,1193,1173,925,880,242,268,10,7,5,7,2,0,9,11,1147,1154,880,864,242,267,9,6,5,6,2,0,9,11,46,19,45,16,0,1,1,1,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,2,6,2701,1274,1427,1039,1114,212,291,6,6,9,7,0,0,8,9,1239,1404,1005,1094,212,289,5,6,9,7,0,0,8,8,35,23,34,20,0,2,1,0,0,0,0,0,0,1 -050,01,001,Alabama,Autauga County,2,7,3043,1477,1566,1256,1268,203,268,8,6,2,14,0,1,8,9,1451,1553,1232,1256,202,268,7,6,2,13,0,1,8,9,26,13,24,12,1,0,1,0,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,2,8,4002,1942,2060,1651,1705,259,314,9,12,5,19,1,1,17,9,1911,2030,1624,1678,256,311,9,12,4,19,1,1,17,9,31,30,27,27,3,3,0,0,1,0,0,0,0,0 -050,01,001,Alabama,Autauga County,2,9,3698,1791,1907,1489,1514,272,345,6,12,9,18,0,1,15,17,1766,1885,1466,1494,270,344,6,12,9,17,0,1,15,17,25,22,23,20,2,1,0,0,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,2,10,3060,1518,1542,1258,1236,242,274,5,11,5,13,0,1,8,7,1499,1529,1244,1225,239,273,5,10,5,13,0,1,6,7,19,13,14,11,3,1,0,1,0,0,0,0,2,0 -050,01,001,Alabama,Autauga County,2,11,2649,1260,1389,1077,1148,168,211,7,7,2,11,0,0,6,12,1255,1377,1073,1138,167,209,7,7,2,11,0,0,6,12,5,12,4,10,1,2,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,2,12,2326,1097,1229,945,1047,136,152,5,6,3,10,0,1,8,13,1092,1220,942,1038,135,152,4,6,3,10,0,1,8,13,5,9,3,9,1,0,1,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,2,13,1924,940,984,817,848,114,121,4,2,2,11,0,0,3,2,929,978,807,843,113,120,4,2,2,11,0,0,3,2,11,6,10,5,1,1,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,2,14,1560,716,844,623,697,80,130,3,1,5,8,1,0,4,8,711,835,620,689,79,129,3,1,4,8,1,0,4,8,5,9,3,8,1,1,0,0,1,0,0,0,0,0 -050,01,001,Alabama,Autauga County,2,15,1160,501,659,429,538,70,115,1,1,0,5,0,0,1,0,499,658,427,537,70,115,1,1,0,5,0,0,1,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,2,16,843,334,509,275,410,58,94,0,2,0,0,0,0,1,3,330,507,272,410,57,92,0,2,0,0,0,0,1,3,4,2,3,0,1,2,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,2,17,525,173,352,147,277,25,74,0,0,0,0,0,0,1,1,170,349,144,274,25,74,0,0,0,0,0,0,1,1,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,2,18,443,118,325,89,258,29,66,0,0,0,0,0,0,0,1,116,324,87,257,29,66,0,0,0,0,0,0,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,2,99,44021,21385,22636,17558,18136,3489,4063,94,104,63,146,4,9,177,178,21052,22357,17267,17895,3462,4041,86,100,60,140,4,8,173,173,333,279,291,241,27,22,8,4,3,6,0,1,4,5 -050,01,001,Alabama,Autauga County,3,0,621,303,318,244,251,51,58,0,2,2,0,0,0,6,7,297,314,238,247,51,58,0,2,2,0,0,0,6,7,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,3,1,2499,1223,1276,956,986,240,256,2,4,4,8,0,1,21,21,1203,1232,936,946,240,253,2,4,4,8,0,1,21,20,20,44,20,40,0,3,0,0,0,0,0,0,0,1 -050,01,001,Alabama,Autauga County,3,2,3541,1807,1734,1425,1347,349,352,9,6,6,7,0,1,18,21,1777,1705,1401,1323,346,349,8,4,5,7,0,1,17,21,30,29,24,24,3,3,1,2,1,0,0,0,1,0 -050,01,001,Alabama,Autauga County,3,3,3896,2028,1868,1598,1468,390,360,12,11,6,9,0,2,22,18,1993,1837,1570,1441,383,359,12,11,6,7,0,1,22,18,35,31,28,27,7,1,0,0,0,2,0,1,0,0 -050,01,001,Alabama,Autauga County,3,4,3306,1716,1590,1306,1209,362,348,11,9,8,3,0,0,29,21,1679,1558,1274,1179,360,347,8,9,8,3,0,0,29,20,37,32,32,30,2,1,3,0,0,0,0,0,0,1 -050,01,001,Alabama,Autauga County,3,5,2485,1255,1230,978,927,242,278,16,8,6,5,2,0,11,12,1207,1209,931,909,242,277,15,7,6,4,2,0,11,12,48,21,47,18,0,1,1,1,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,3,6,2591,1214,1377,990,1048,196,304,6,6,13,10,0,0,9,9,1180,1355,957,1029,196,302,5,6,13,10,0,0,9,8,34,22,33,19,0,2,1,0,0,0,0,0,0,1 -050,01,001,Alabama,Autauga County,3,7,3120,1520,1600,1294,1306,206,265,8,6,5,12,0,1,7,10,1487,1581,1263,1288,205,265,7,6,5,11,0,1,7,10,33,19,31,18,1,0,1,0,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,3,8,3975,1967,2008,1653,1646,275,323,8,12,9,18,1,1,21,8,1937,1987,1627,1628,272,320,8,12,8,18,1,1,21,8,30,21,26,18,3,3,0,0,1,0,0,0,0,0 -050,01,001,Alabama,Autauga County,3,9,3821,1829,1992,1518,1601,279,335,9,12,8,27,0,1,15,16,1801,1965,1492,1580,277,334,9,12,8,22,0,1,15,16,28,27,26,21,2,1,0,0,0,5,0,0,0,0 -050,01,001,Alabama,Autauga County,3,10,3187,1585,1602,1311,1282,252,283,6,12,7,13,0,2,9,10,1563,1589,1294,1271,249,282,6,11,7,13,0,2,7,10,22,13,17,11,3,1,0,1,0,0,0,0,2,0 -050,01,001,Alabama,Autauga County,3,11,2807,1370,1437,1172,1177,183,218,6,10,2,14,0,0,7,18,1362,1422,1165,1165,182,216,6,10,2,14,0,0,7,17,8,15,7,12,1,2,0,0,0,0,0,0,0,1 -050,01,001,Alabama,Autauga County,3,12,2360,1098,1262,948,1060,135,171,6,6,3,12,0,1,6,12,1091,1249,943,1047,134,171,5,6,3,12,0,1,6,12,7,13,5,13,1,0,1,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,3,13,2013,992,1021,860,886,122,119,4,3,3,10,0,0,3,3,981,1015,850,881,121,118,4,3,3,10,0,0,3,3,11,6,10,5,1,1,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,3,14,1605,746,859,652,722,81,118,3,2,5,9,1,0,4,8,741,847,649,711,80,117,3,2,4,9,1,0,4,8,5,12,3,11,1,1,0,0,1,0,0,0,0,0 -050,01,001,Alabama,Autauga County,3,15,1236,538,698,471,575,65,116,1,1,0,6,0,0,1,0,536,697,469,574,65,116,1,1,0,6,0,0,1,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,3,16,886,344,542,294,430,50,107,0,2,0,0,0,0,0,3,340,540,291,430,49,105,0,2,0,0,0,0,0,3,4,2,3,0,1,2,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,3,17,496,158,338,132,268,24,69,0,0,0,0,0,0,2,1,156,336,130,266,24,69,0,0,0,0,0,0,2,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,3,18,444,120,324,89,262,31,61,0,0,0,0,0,0,0,1,118,322,87,260,31,61,0,0,0,0,0,0,0,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,3,99,44889,21813,23076,17891,18451,3533,4141,107,112,87,163,4,10,191,199,21449,22760,17567,18175,3507,4119,99,108,84,154,4,9,188,195,364,316,324,276,26,22,8,4,3,9,0,1,3,4 -050,01,001,Alabama,Autauga County,4,0,587,269,318,207,262,55,49,0,1,1,0,0,0,6,6,266,311,204,255,55,49,0,1,1,0,0,0,6,6,3,7,3,7,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,4,1,2604,1237,1367,945,1059,259,262,2,4,5,14,0,0,26,28,1211,1322,921,1019,257,259,2,4,5,14,0,0,26,26,26,45,24,40,2,3,0,0,0,0,0,0,0,2 -050,01,001,Alabama,Autauga County,4,2,3596,1844,1752,1456,1346,353,364,9,6,7,9,0,1,19,26,1804,1716,1421,1315,350,361,8,4,7,9,0,1,18,26,40,36,35,31,3,3,1,2,0,0,0,0,1,0 -050,01,001,Alabama,Autauga County,4,3,4016,2135,1881,1674,1493,417,346,10,11,8,11,1,1,25,19,2102,1848,1648,1465,410,345,10,11,8,8,1,0,25,19,33,33,26,28,7,1,0,0,0,3,0,1,0,0 -050,01,001,Alabama,Autauga County,4,4,3408,1784,1624,1351,1218,382,370,11,6,12,4,0,0,28,26,1742,1595,1316,1192,379,368,8,6,12,4,0,0,27,25,42,29,35,26,3,2,3,0,0,0,0,0,1,1 -050,01,001,Alabama,Autauga County,4,5,2505,1241,1264,957,971,248,262,14,11,6,6,2,0,14,14,1198,1241,916,952,248,260,13,10,6,5,2,0,13,14,43,23,41,19,0,2,1,1,0,1,0,0,1,0 -050,01,001,Alabama,Autauga County,4,6,2567,1232,1335,1003,1001,204,304,5,6,7,13,1,0,12,11,1195,1309,968,978,204,302,4,6,7,13,0,0,12,10,37,26,35,23,0,2,1,0,0,0,1,0,0,1 -050,01,001,Alabama,Autauga County,4,7,3165,1536,1629,1285,1313,227,291,8,6,7,7,0,1,9,11,1495,1607,1246,1292,226,290,7,6,7,7,0,1,9,11,41,22,39,21,1,1,1,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,4,8,3892,1895,1997,1608,1648,253,307,8,12,10,19,1,0,15,11,1862,1969,1578,1623,251,304,8,12,9,19,1,0,15,11,33,28,30,25,2,3,0,0,1,0,0,0,0,0 -050,01,001,Alabama,Autauga County,4,9,4072,2011,2061,1674,1655,300,343,13,12,11,33,0,2,13,16,1984,2036,1649,1634,298,342,13,12,11,31,0,1,13,16,27,25,25,21,2,1,0,0,0,2,0,1,0,0 -050,01,001,Alabama,Autauga County,4,10,3264,1602,1662,1314,1323,262,300,5,12,11,13,0,1,10,13,1577,1644,1294,1307,259,299,5,11,11,13,0,1,8,13,25,18,20,16,3,1,0,1,0,0,0,0,2,0 -050,01,001,Alabama,Autauga County,4,11,2823,1388,1435,1165,1163,205,243,7,9,4,8,0,0,7,12,1379,1422,1157,1152,204,241,7,9,4,8,0,0,7,12,9,13,8,11,1,2,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,4,12,2526,1196,1330,1034,1121,145,182,7,5,3,9,0,1,7,12,1185,1319,1025,1110,144,182,6,5,3,9,0,1,7,12,11,11,9,11,1,0,1,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,4,13,2067,1025,1042,883,906,130,118,5,3,3,11,0,0,4,4,1015,1031,874,897,129,116,5,3,3,11,0,0,4,4,10,11,9,9,1,2,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,4,14,1685,784,901,681,757,90,119,3,3,5,12,1,0,4,10,779,891,678,748,89,118,3,3,4,12,1,0,4,10,5,10,3,9,1,1,0,0,1,0,0,0,0,0 -050,01,001,Alabama,Autauga County,4,15,1253,530,723,465,606,63,108,1,2,0,7,0,0,1,0,528,722,463,605,63,108,1,2,0,7,0,0,1,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,4,16,890,357,533,309,425,48,100,0,3,0,1,0,0,0,4,353,531,306,425,47,98,0,3,0,1,0,0,0,4,4,2,3,0,1,2,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,4,17,546,175,371,143,293,30,76,0,0,0,1,0,0,2,1,173,369,141,291,30,76,0,0,0,1,0,0,2,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,4,18,443,121,322,91,264,30,57,0,0,0,0,0,0,0,1,119,319,89,261,30,57,0,0,0,0,0,0,0,1,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,4,99,45909,22362,23547,18245,18824,3701,4201,108,112,100,178,6,7,202,225,21967,23202,17894,18521,3673,4175,100,108,98,172,5,5,197,221,395,345,351,303,28,26,8,4,2,6,1,2,5,4 -050,01,001,Alabama,Autauga County,5,0,605,294,311,236,250,48,52,0,1,3,0,0,0,7,8,280,301,222,240,48,52,0,1,3,0,0,0,7,8,14,10,14,10,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,5,1,2587,1234,1353,915,1052,277,257,3,4,6,12,0,0,33,28,1207,1312,893,1016,275,254,2,4,6,12,0,0,31,26,27,41,22,36,2,3,1,0,0,0,0,0,2,2 -050,01,001,Alabama,Autauga County,5,2,3630,1831,1799,1412,1363,377,385,10,7,7,11,0,1,25,32,1790,1757,1375,1328,375,382,9,4,7,11,0,1,24,31,41,42,37,35,2,3,1,3,0,0,0,0,1,1 -050,01,001,Alabama,Autauga County,5,3,4072,2158,1914,1700,1517,411,352,12,12,9,11,0,2,26,20,2115,1880,1666,1488,404,351,11,11,9,9,0,1,25,20,43,34,34,29,7,1,1,1,0,2,0,1,1,0 -050,01,001,Alabama,Autauga County,5,4,3578,1856,1722,1390,1304,415,376,10,6,11,10,0,0,30,26,1814,1697,1355,1282,412,374,7,6,11,10,0,0,29,25,42,25,35,22,3,2,3,0,0,0,0,0,1,1 -050,01,001,Alabama,Autauga County,5,5,2598,1278,1320,969,1000,276,294,8,8,7,6,2,0,16,12,1245,1295,938,981,276,291,7,6,7,5,2,0,15,12,33,25,31,19,0,3,1,2,0,1,0,0,1,0 -050,01,001,Alabama,Autauga County,5,6,2550,1236,1314,1019,986,191,299,5,6,10,13,1,0,10,10,1190,1287,977,962,189,297,4,6,10,13,0,0,10,9,46,27,42,24,2,2,1,0,0,0,1,0,0,1 -050,01,001,Alabama,Autauga County,5,7,3187,1537,1650,1282,1315,230,306,7,6,10,9,0,2,8,12,1494,1616,1241,1283,229,305,6,6,10,8,0,2,8,12,43,34,41,32,1,1,1,0,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,5,8,3918,1914,2004,1622,1643,257,316,9,10,8,19,1,1,17,15,1877,1979,1589,1622,255,312,8,10,7,19,1,1,17,15,37,25,33,21,2,4,1,0,1,0,0,0,0,0 -050,01,001,Alabama,Autauga County,5,9,4058,1975,2083,1656,1685,284,337,11,13,11,28,0,2,13,18,1948,2059,1631,1665,282,336,11,12,11,27,0,1,13,18,27,24,25,20,2,1,0,1,0,1,0,1,0,0 -050,01,001,Alabama,Autauga County,5,10,3462,1677,1785,1359,1427,288,317,11,12,8,14,1,1,10,14,1655,1759,1343,1404,285,314,10,12,8,14,1,1,8,14,22,26,16,23,3,3,1,0,0,0,0,0,2,0 -050,01,001,Alabama,Autauga County,5,11,2840,1406,1434,1167,1166,215,237,9,9,7,11,0,0,8,11,1399,1420,1161,1155,214,235,9,9,7,11,0,0,8,10,7,14,6,11,1,2,0,0,0,0,0,0,0,1 -050,01,001,Alabama,Autauga County,5,12,2573,1251,1322,1083,1104,151,190,7,8,4,8,0,0,6,12,1238,1313,1072,1095,150,190,6,8,4,8,0,0,6,12,13,9,11,9,1,0,1,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,5,13,2148,1017,1131,877,984,128,126,4,4,3,12,0,0,5,5,1005,1121,866,975,127,125,4,4,3,12,0,0,5,5,12,10,11,9,1,1,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,5,14,1759,828,931,724,795,91,110,3,3,4,13,1,0,5,10,822,920,720,785,90,109,3,3,3,13,1,0,5,10,6,11,4,10,1,1,0,0,1,0,0,0,0,0 -050,01,001,Alabama,Autauga County,5,15,1294,593,701,522,587,69,104,1,2,0,7,0,0,1,1,590,698,519,584,69,104,1,2,0,7,0,0,1,1,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,5,16,919,366,553,321,447,44,98,0,4,0,1,0,0,1,3,361,549,317,444,43,97,0,4,0,1,0,0,1,3,5,4,4,3,1,1,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,5,17,587,196,391,164,321,31,68,0,0,0,1,0,0,1,1,194,389,162,319,31,68,0,0,0,1,0,0,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,5,18,435,113,322,91,261,22,60,0,0,0,0,0,0,0,1,111,321,89,260,22,60,0,0,0,0,0,0,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,5,99,46800,22760,24040,18509,19207,3805,4284,110,115,108,186,6,9,222,239,22335,23673,18136,18888,3776,4256,98,108,106,181,5,7,214,233,425,367,373,319,29,28,12,7,2,5,1,2,8,6 -050,01,001,Alabama,Autauga County,6,0,618,291,327,230,269,50,50,0,1,1,0,0,0,10,7,285,320,224,262,50,50,0,1,1,0,0,0,10,7,6,7,6,7,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,6,1,2735,1333,1402,1005,1075,282,269,4,4,6,13,0,0,36,41,1289,1358,965,1037,280,266,3,4,6,13,0,0,35,38,44,44,40,38,2,3,1,0,0,0,0,0,1,3 -050,01,001,Alabama,Autauga County,6,2,3692,1858,1834,1451,1403,358,380,9,6,10,11,0,2,30,32,1818,1796,1416,1371,356,377,8,3,10,11,0,2,28,32,40,38,35,32,2,3,1,3,0,0,0,0,2,0 -050,01,001,Alabama,Autauga County,6,3,4166,2147,2019,1685,1579,412,391,12,12,10,11,1,2,27,24,2109,1979,1657,1543,405,390,11,11,10,10,1,1,25,24,38,40,28,36,7,1,1,1,0,1,0,1,2,0 -050,01,001,Alabama,Autauga County,6,4,3775,1984,1791,1506,1357,423,396,9,5,16,6,1,1,29,26,1935,1762,1464,1333,420,392,6,5,16,6,0,1,29,25,49,29,42,24,3,4,3,0,0,0,1,0,0,1 -050,01,001,Alabama,Autauga County,6,5,2771,1382,1389,1041,1032,300,322,12,11,7,10,2,0,20,14,1331,1351,992,1001,300,319,11,9,7,8,2,0,19,14,51,38,49,31,0,3,1,2,0,2,0,0,1,0 -050,01,001,Alabama,Autauga County,6,6,2695,1315,1380,1077,1040,212,308,4,6,7,17,1,0,14,9,1271,1346,1036,1009,211,306,3,6,7,17,0,0,14,8,44,34,41,31,1,2,1,0,0,0,1,0,0,1 -050,01,001,Alabama,Autauga County,6,7,3270,1536,1734,1274,1377,236,317,6,7,12,19,0,0,8,14,1493,1695,1232,1340,236,316,5,7,12,18,0,0,8,14,43,39,42,37,0,1,1,0,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,6,8,3919,1957,1962,1658,1564,256,353,13,10,13,17,1,0,16,18,1914,1931,1619,1538,254,349,12,10,12,17,1,0,16,17,43,31,39,26,2,4,1,0,1,0,0,0,0,1 -050,01,001,Alabama,Autauga County,6,9,4074,1979,2095,1657,1713,285,326,9,13,12,22,0,2,16,19,1951,2068,1631,1690,283,325,9,12,12,21,0,1,16,19,28,27,26,23,2,1,0,1,0,1,0,1,0,0 -050,01,001,Alabama,Autauga County,6,10,3663,1778,1885,1461,1504,284,330,8,12,10,21,1,1,14,17,1754,1860,1444,1482,281,328,7,11,10,21,1,1,11,17,24,25,17,22,3,2,1,1,0,0,0,0,3,0 -050,01,001,Alabama,Autauga County,6,11,2957,1471,1486,1200,1206,247,255,11,9,5,6,0,0,8,10,1461,1473,1191,1196,246,253,11,9,5,6,0,0,8,9,10,13,9,10,1,2,0,0,0,0,0,0,0,1 -050,01,001,Alabama,Autauga County,6,12,2609,1261,1348,1081,1131,164,187,6,6,4,12,0,1,6,11,1252,1334,1075,1117,162,187,5,6,4,12,0,1,6,11,9,14,6,14,2,0,1,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,6,13,2232,1059,1173,910,1007,136,140,4,4,5,14,0,0,4,8,1049,1164,901,999,135,139,4,4,5,14,0,0,4,8,10,9,9,8,1,1,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,6,14,1811,839,972,734,825,92,120,2,3,4,15,1,0,6,9,835,958,732,813,92,119,2,3,3,14,1,0,5,9,4,14,2,12,0,1,0,0,1,1,0,0,1,0 -050,01,001,Alabama,Autauga County,6,15,1317,590,727,521,602,66,114,2,2,0,7,0,0,1,2,587,724,518,599,66,114,2,2,0,7,0,0,1,2,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,6,16,974,389,585,350,480,39,96,0,4,0,2,0,0,0,3,384,581,346,477,38,95,0,4,0,2,0,0,0,3,5,4,4,3,1,1,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,6,17,635,217,418,173,339,43,78,0,0,0,1,0,0,1,0,213,415,169,336,43,78,0,0,0,1,0,0,1,0,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,6,18,453,126,327,102,274,24,52,0,0,0,0,0,0,0,1,125,326,101,273,24,52,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,6,99,48366,23512,24854,19116,19777,3909,4484,111,115,122,204,8,9,246,265,23056,24441,18713,19416,3882,4455,99,107,120,198,6,7,236,258,456,413,403,361,27,29,12,8,2,6,2,2,10,7 -050,01,001,Alabama,Autauga County,7,0,659,334,325,257,270,66,45,0,1,3,1,0,0,8,8,324,312,247,257,66,45,0,1,3,1,0,0,8,8,10,13,10,13,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,7,1,2828,1397,1431,1059,1126,288,249,2,2,8,9,0,1,40,44,1349,1386,1016,1084,286,246,1,2,8,9,0,1,38,44,48,45,43,42,2,3,1,0,0,0,0,0,2,0 -050,01,001,Alabama,Autauga County,7,2,3719,1868,1851,1439,1442,376,351,11,5,9,11,1,2,32,40,1818,1795,1397,1393,374,349,9,2,9,11,0,2,29,38,50,56,42,49,2,2,2,3,0,0,1,0,3,2 -050,01,001,Alabama,Autauga County,7,3,4238,2163,2075,1662,1602,433,414,16,11,17,15,3,1,32,32,2119,2013,1632,1550,424,412,15,9,17,13,2,0,29,29,44,62,30,52,9,2,1,2,0,2,1,1,3,3 -050,01,001,Alabama,Autauga County,7,4,4008,2099,1909,1602,1469,437,396,7,9,19,8,3,1,31,26,2043,1879,1558,1445,431,393,5,7,17,8,1,1,31,25,56,30,44,24,6,3,2,2,2,0,2,0,0,1 -050,01,001,Alabama,Autauga County,7,5,2797,1393,1404,1054,1042,303,323,7,8,6,5,3,2,20,24,1354,1366,1018,1009,302,321,7,7,6,5,2,1,19,23,39,38,36,33,1,2,0,1,0,0,1,1,1,1 -050,01,001,Alabama,Autauga County,7,6,2810,1378,1432,1114,1069,236,329,2,2,6,21,4,3,16,8,1318,1397,1062,1038,232,327,2,2,5,21,1,1,16,8,60,35,52,31,4,2,0,0,1,0,3,2,0,0 -050,01,001,Alabama,Autauga County,7,7,3294,1554,1740,1256,1378,263,319,5,10,19,17,2,0,9,16,1516,1696,1223,1339,261,316,5,8,19,17,0,0,8,16,38,44,33,39,2,3,0,2,0,0,2,0,1,0 -050,01,001,Alabama,Autauga County,7,8,3840,1881,1959,1594,1579,244,328,9,12,18,23,1,3,15,14,1831,1929,1551,1555,241,326,7,10,18,23,0,2,14,13,50,30,43,24,3,2,2,2,0,0,1,1,1,1 -050,01,001,Alabama,Autauga County,7,9,4170,2053,2117,1713,1732,298,326,11,13,12,28,1,2,18,16,2016,2089,1682,1708,295,325,10,12,12,27,0,1,17,16,37,28,31,24,3,1,1,1,0,1,1,1,1,0 -050,01,001,Alabama,Autauga County,7,10,3832,1886,1946,1534,1553,312,344,10,12,15,17,2,1,13,19,1859,1915,1513,1527,310,340,9,11,14,17,2,1,11,19,27,31,21,26,2,4,1,1,1,0,0,0,2,0 -050,01,001,Alabama,Autauga County,7,11,3075,1529,1546,1255,1241,246,274,11,8,7,11,0,0,10,12,1515,1532,1242,1231,245,272,11,7,7,11,0,0,10,11,14,14,13,10,1,2,0,1,0,0,0,0,0,1 -050,01,001,Alabama,Autauga County,7,12,2747,1330,1417,1136,1176,171,216,7,7,4,8,1,0,11,10,1314,1406,1123,1165,169,216,7,7,4,8,1,0,10,10,16,11,13,11,2,0,0,0,0,0,0,0,1,0 -050,01,001,Alabama,Autauga County,7,13,2286,1072,1214,912,1035,144,151,6,8,4,12,0,0,6,8,1064,1204,904,1026,144,150,6,8,4,12,0,0,6,8,8,10,8,9,0,1,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,7,14,1834,865,969,756,828,100,120,1,3,3,12,0,0,5,6,859,956,751,816,100,120,1,3,3,11,0,0,4,6,6,13,5,12,0,0,0,0,0,1,0,0,1,0 -050,01,001,Alabama,Autauga County,7,15,1411,636,775,554,651,77,112,3,3,0,6,0,0,2,3,631,769,549,646,77,112,3,2,0,6,0,0,2,3,5,6,5,5,0,0,0,1,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,7,16,1022,408,614,359,500,47,103,0,4,1,3,0,0,1,4,406,609,357,496,47,102,0,4,1,3,0,0,1,4,2,5,2,4,0,1,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,7,17,633,226,407,192,335,33,69,0,0,0,2,0,0,1,1,224,405,190,333,33,69,0,0,0,2,0,0,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,7,18,473,128,345,100,286,28,58,0,0,0,0,0,0,0,1,127,344,99,285,28,58,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,7,99,49676,24200,25476,19548,20314,4102,4527,108,118,151,209,21,16,270,292,23687,25002,19114,19903,4065,4499,98,102,147,205,9,10,254,283,513,474,434,411,37,28,10,16,4,4,12,6,16,9 -050,01,001,Alabama,Autauga County,8,0,637,330,307,261,254,57,42,0,1,1,1,0,0,11,9,304,296,235,243,57,42,0,1,1,1,0,0,11,9,26,11,26,11,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,8,1,2855,1452,1403,1083,1081,307,266,2,2,8,14,1,0,51,40,1384,1339,1025,1021,302,262,1,2,8,14,0,0,48,40,68,64,58,60,5,4,1,0,0,0,1,0,3,0 -050,01,001,Alabama,Autauga County,8,2,3972,2021,1951,1572,1508,386,380,12,7,16,15,1,2,34,39,1967,1898,1526,1463,384,378,10,2,16,15,0,2,31,38,54,53,46,45,2,2,2,5,0,0,1,0,3,1 -050,01,001,Alabama,Autauga County,8,3,4175,2111,2064,1613,1576,440,421,12,11,11,13,3,1,32,42,2065,2015,1584,1538,430,418,10,9,11,12,2,0,28,38,46,49,29,38,10,3,2,2,0,1,1,1,4,4 -050,01,001,Alabama,Autauga County,8,4,4247,2215,2032,1670,1556,481,429,7,9,23,8,3,2,31,28,2162,1994,1628,1526,474,426,7,7,21,8,1,1,31,26,53,38,42,30,7,3,0,2,2,0,2,1,0,2 -050,01,001,Alabama,Autauga County,8,5,2808,1436,1372,1070,1024,325,312,11,8,6,5,3,1,21,22,1392,1337,1030,993,323,310,11,7,6,5,2,1,20,21,44,35,40,31,2,2,0,1,0,0,1,0,1,1 -050,01,001,Alabama,Autauga County,8,6,2971,1402,1569,1109,1171,266,368,2,2,6,16,5,3,14,9,1351,1531,1066,1138,263,365,2,2,5,16,1,1,14,9,51,38,43,33,3,3,0,0,1,0,4,2,0,0 -050,01,001,Alabama,Autauga County,8,7,3295,1568,1727,1254,1332,276,347,3,9,21,20,3,1,11,18,1529,1689,1220,1300,274,344,3,7,21,20,1,1,10,17,39,38,34,32,2,3,0,2,0,0,2,0,1,1 -050,01,001,Alabama,Autauga County,8,8,4017,1962,2055,1666,1654,251,340,9,11,18,24,1,3,17,23,1908,2012,1619,1619,249,338,7,9,17,23,0,1,16,22,54,43,47,35,2,2,2,2,1,1,1,2,1,1 -050,01,001,Alabama,Autauga County,8,9,4214,2034,2180,1691,1759,299,358,13,13,12,30,1,2,18,18,2004,2153,1666,1735,297,357,12,11,12,30,0,2,17,18,30,27,25,24,2,1,1,2,0,0,1,0,1,0 -050,01,001,Alabama,Autauga County,8,10,3973,1948,2025,1609,1627,301,352,10,11,15,16,2,0,11,19,1913,2000,1581,1606,298,348,8,11,15,16,2,0,9,19,35,25,28,21,3,4,2,0,0,0,0,0,2,0 -050,01,001,Alabama,Autauga County,8,11,3248,1633,1615,1317,1295,288,287,9,7,7,9,0,0,12,17,1616,1600,1303,1284,286,285,8,6,7,9,0,0,12,16,17,15,14,11,2,2,1,1,0,0,0,0,0,1 -050,01,001,Alabama,Autauga County,8,12,2862,1406,1456,1198,1204,186,224,8,9,5,9,1,0,8,10,1391,1444,1186,1193,184,224,8,9,5,9,1,0,7,9,15,12,12,11,2,0,0,0,0,0,0,0,1,1 -050,01,001,Alabama,Autauga County,8,13,2384,1090,1294,939,1095,133,167,6,7,5,11,0,0,7,14,1081,1283,930,1086,133,166,6,6,5,11,0,0,7,14,9,11,9,9,0,1,0,1,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,8,14,1952,922,1030,804,867,108,139,3,6,4,9,0,0,3,9,914,1019,798,857,106,139,3,6,4,8,0,0,3,9,8,11,6,10,2,0,0,0,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,8,15,1482,671,811,582,694,81,106,2,3,2,5,0,0,4,3,666,806,577,689,81,106,2,3,2,5,0,0,4,3,5,5,5,5,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,8,16,1109,432,677,390,554,40,110,0,5,1,5,0,0,1,3,430,672,388,549,40,110,0,5,1,5,0,0,1,3,2,5,2,5,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,8,17,656,248,408,217,342,30,63,0,0,0,3,0,0,1,0,245,406,214,340,30,63,0,0,0,3,0,0,1,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,8,18,471,107,364,82,311,25,52,0,0,0,0,0,0,0,1,106,363,81,310,25,52,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,8,99,51328,24988,26340,20127,20904,4280,4763,109,121,161,213,24,15,287,324,24428,25857,19657,20490,4236,4733,98,103,157,210,10,9,270,312,560,483,470,414,44,30,11,18,4,3,14,6,17,12 -050,01,001,Alabama,Autauga County,9,0,663,335,328,265,277,53,41,0,0,1,1,0,0,16,9,312,314,242,263,53,41,0,0,1,1,0,0,16,9,23,14,23,14,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,9,1,2822,1418,1404,1088,1087,267,254,4,3,9,19,1,0,49,41,1336,1342,1016,1031,263,250,2,2,9,19,0,0,46,40,82,62,72,56,4,4,2,1,0,0,1,0,3,1 -050,01,001,Alabama,Autauga County,9,2,4076,2031,2045,1570,1567,392,412,12,7,12,16,1,2,44,41,1964,1986,1511,1518,390,410,10,2,12,16,0,2,41,38,67,59,59,49,2,2,2,5,0,0,1,0,3,3 -050,01,001,Alabama,Autauga County,9,3,4220,2122,2098,1645,1595,418,431,10,9,12,15,3,1,34,47,2067,2040,1608,1548,408,428,8,7,12,14,2,0,29,43,55,58,37,47,10,3,2,2,0,1,1,1,5,4 -050,01,001,Alabama,Autauga County,9,4,4406,2316,2090,1735,1601,514,437,10,8,20,8,3,2,34,34,2264,2053,1693,1571,508,434,10,6,18,8,1,1,34,33,52,37,42,30,6,3,0,2,2,0,2,1,0,1 -050,01,001,Alabama,Autauga County,9,5,2852,1430,1422,1074,1087,317,298,7,7,7,4,3,2,22,24,1384,1395,1033,1065,315,296,7,6,7,4,2,1,20,23,46,27,41,22,2,2,0,1,0,0,1,1,2,1 -050,01,001,Alabama,Autauga County,9,6,2990,1420,1570,1117,1178,276,353,1,3,6,24,5,3,15,9,1367,1519,1073,1132,273,350,1,3,4,24,1,1,15,9,53,51,44,46,3,3,0,0,2,0,4,2,0,0 -050,01,001,Alabama,Autauga County,9,7,3305,1574,1731,1258,1321,288,357,1,10,14,21,2,1,11,21,1530,1685,1220,1285,285,351,1,8,14,21,0,0,10,20,44,46,38,36,3,6,0,2,0,0,2,1,1,1 -050,01,001,Alabama,Autauga County,9,8,4168,2060,2108,1713,1655,290,383,11,10,24,32,1,3,21,25,2005,2058,1663,1613,289,381,9,8,24,31,0,1,20,24,55,50,50,42,1,2,2,2,0,1,1,2,1,1 -050,01,001,Alabama,Autauga County,9,9,4121,1941,2180,1613,1769,290,340,9,14,11,37,1,1,17,19,1898,2147,1575,1740,288,339,8,12,11,36,0,1,16,19,43,33,38,29,2,1,1,2,0,1,1,0,1,0 -050,01,001,Alabama,Autauga County,9,10,4173,2112,2061,1726,1642,350,368,11,11,12,20,2,0,11,20,2078,2026,1699,1613,347,364,9,11,12,19,2,0,9,19,34,35,27,29,3,4,2,0,0,1,0,0,2,1 -050,01,001,Alabama,Autauga County,9,11,3337,1644,1693,1312,1331,301,321,12,11,7,14,0,0,12,16,1627,1676,1298,1318,299,319,11,10,7,14,0,0,12,15,17,17,14,13,2,2,1,1,0,0,0,0,0,1 -050,01,001,Alabama,Autauga County,9,12,2890,1413,1477,1190,1198,203,256,7,7,4,7,1,0,8,9,1399,1464,1179,1186,201,256,7,7,4,7,1,0,7,8,14,13,11,12,2,0,0,0,0,0,0,0,1,1 -050,01,001,Alabama,Autauga County,9,13,2531,1175,1356,1006,1154,150,171,7,10,5,10,0,0,7,11,1167,1343,998,1143,150,170,7,9,5,10,0,0,7,11,8,13,8,11,0,1,0,1,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,9,14,2008,922,1086,809,914,101,147,3,7,4,9,0,0,5,9,912,1073,801,902,100,147,3,7,4,8,0,0,4,9,10,13,8,12,1,0,0,0,0,1,0,0,1,0 -050,01,001,Alabama,Autauga County,9,15,1563,725,838,620,715,95,110,4,2,2,6,0,0,4,5,719,831,614,709,95,109,4,2,2,6,0,0,4,5,6,7,6,6,0,1,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,9,16,1092,429,663,397,553,30,96,0,5,1,6,0,0,1,3,426,657,394,547,30,96,0,5,1,6,0,0,1,3,3,6,3,6,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,9,17,656,265,391,224,319,40,68,0,0,0,4,0,0,1,0,262,388,221,316,40,68,0,0,0,4,0,0,1,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,9,18,532,136,396,109,350,27,45,0,0,0,0,0,0,0,1,135,393,108,347,27,45,0,0,0,0,0,0,0,1,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,9,99,52405,25468,26937,20471,21313,4402,4888,109,124,151,253,23,15,312,344,24852,26390,19946,20847,4361,4854,97,105,147,248,9,7,292,329,616,547,525,466,41,34,12,19,4,5,14,8,20,15 -050,01,001,Alabama,Autauga County,10,0,689,345,344,278,286,55,48,0,0,2,1,0,0,10,9,324,334,257,276,55,48,0,0,2,1,0,0,10,9,21,10,21,10,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,10,1,2748,1407,1341,1078,1031,258,243,4,3,9,18,1,0,57,46,1348,1288,1031,984,253,239,2,2,9,18,0,0,53,45,59,53,47,47,5,4,2,1,0,0,1,0,4,1 -050,01,001,Alabama,Autauga County,10,2,4091,2051,2040,1571,1576,411,395,14,7,13,13,1,3,41,46,1979,1971,1505,1518,410,393,12,2,13,13,0,3,39,42,72,69,66,58,1,2,2,5,0,0,1,0,2,4 -050,01,001,Alabama,Autauga County,10,3,4337,2219,2118,1705,1623,444,418,13,11,17,16,3,1,37,49,2163,2054,1670,1573,434,415,10,8,16,16,2,0,31,42,56,64,35,50,10,3,3,3,1,0,1,1,6,7 -050,01,001,Alabama,Autauga County,10,4,4517,2361,2156,1759,1633,530,463,14,8,18,10,3,3,37,39,2305,2111,1713,1597,524,459,14,6,16,10,1,2,37,37,56,45,46,36,6,4,0,2,2,0,2,1,0,2 -050,01,001,Alabama,Autauga County,10,5,2893,1455,1438,1123,1083,292,314,6,9,7,4,3,2,24,26,1405,1397,1078,1049,290,311,6,7,7,4,2,1,22,25,50,41,45,34,2,3,0,2,0,0,1,1,2,1 -050,01,001,Alabama,Autauga County,10,6,3035,1442,1593,1144,1187,271,363,1,3,4,28,5,3,17,9,1392,1561,1103,1160,267,360,1,3,3,28,1,1,17,9,50,32,41,27,4,3,0,0,1,0,4,2,0,0 -050,01,001,Alabama,Autauga County,10,7,3263,1537,1726,1242,1310,275,362,1,10,6,20,3,1,10,23,1489,1668,1200,1261,272,357,1,8,6,20,1,0,9,22,48,58,42,49,3,5,0,2,0,0,2,1,1,1 -050,01,001,Alabama,Autauga County,10,8,4094,1980,2114,1625,1652,287,389,10,10,34,31,2,3,22,29,1935,2070,1586,1617,285,386,8,8,34,30,1,1,21,28,45,44,39,35,2,3,2,2,0,1,1,2,1,1 -050,01,001,Alabama,Autauga County,10,9,4223,2027,2196,1686,1752,292,373,11,15,17,34,1,3,20,19,1985,2158,1650,1720,290,372,10,12,17,34,0,1,18,19,42,38,36,32,2,1,1,3,0,0,1,2,2,0 -050,01,001,Alabama,Autauga County,10,10,4253,2127,2126,1756,1701,327,366,14,11,15,23,3,0,12,25,2089,2089,1728,1671,324,361,11,11,14,22,3,0,9,24,38,37,28,30,3,5,3,0,1,1,0,0,3,1 -050,01,001,Alabama,Autauga County,10,11,3550,1699,1851,1359,1449,309,356,10,14,9,14,0,0,12,18,1682,1834,1345,1437,307,354,9,13,9,14,0,0,12,16,17,17,14,12,2,2,1,1,0,0,0,0,0,2 -050,01,001,Alabama,Autauga County,10,12,2921,1433,1488,1183,1198,230,269,6,7,5,7,1,0,8,7,1412,1473,1165,1184,228,269,6,7,5,7,1,0,7,6,21,15,18,14,2,0,0,0,0,0,0,0,1,1 -050,01,001,Alabama,Autauga County,10,13,2607,1229,1378,1061,1146,150,197,5,12,6,12,0,0,7,11,1220,1365,1052,1135,150,196,5,11,6,12,0,0,7,11,9,13,9,11,0,1,0,1,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,10,14,2097,928,1169,799,989,117,153,3,6,4,9,0,0,5,12,918,1154,791,975,115,153,3,6,4,8,0,0,5,12,10,15,8,14,2,0,0,0,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,10,15,1619,735,884,629,744,96,121,4,4,2,9,0,0,4,6,729,877,623,738,96,120,4,4,2,9,0,0,4,6,6,7,6,6,0,1,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,10,16,1125,485,640,448,515,35,109,0,6,1,7,0,0,1,3,482,635,445,510,35,109,0,6,1,7,0,0,1,3,3,5,3,5,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,10,17,670,265,405,238,343,26,59,0,0,0,3,0,0,1,0,261,403,234,341,26,59,0,0,0,3,0,0,1,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,10,18,545,148,397,117,340,31,56,0,0,0,0,0,0,0,1,147,395,116,338,31,56,0,0,0,0,0,0,0,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,10,99,53277,25873,27404,20801,21558,4436,5054,116,136,169,259,26,19,325,378,25265,26837,20292,21084,4392,5017,102,114,164,256,12,9,303,357,608,567,509,474,44,37,14,22,5,3,14,10,22,21 -050,01,001,Alabama,Autauga County,11,0,708,360,348,274,280,66,56,0,0,3,1,0,0,17,11,338,337,252,269,66,56,0,0,3,1,0,0,17,11,22,11,22,11,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,11,1,2876,1510,1366,1160,1039,271,253,5,3,11,21,1,0,62,50,1430,1312,1093,991,266,249,2,2,11,21,0,0,58,49,80,54,67,48,5,4,3,1,0,0,1,0,4,1 -050,01,001,Alabama,Autauga County,11,2,4020,2023,1997,1525,1538,420,378,14,8,16,19,1,4,47,50,1945,1919,1454,1473,419,376,12,2,16,19,0,4,44,45,78,78,71,65,1,2,2,6,0,0,1,0,3,5 -050,01,001,Alabama,Autauga County,11,3,4307,2218,2089,1679,1593,466,409,16,12,20,15,4,1,33,59,2150,2035,1632,1553,456,406,13,9,19,15,3,0,27,52,68,54,47,40,10,3,3,3,1,0,1,1,6,7 -050,01,001,Alabama,Autauga County,11,4,4611,2362,2249,1746,1724,541,466,13,6,21,8,4,3,37,42,2305,2196,1701,1680,534,462,13,4,19,8,1,2,37,40,57,53,45,44,7,4,0,2,2,0,3,1,0,2 -050,01,001,Alabama,Autauga County,11,5,2919,1469,1450,1138,1092,291,317,4,8,7,7,3,2,26,24,1412,1415,1086,1065,289,313,4,6,7,7,2,1,24,23,57,35,52,27,2,4,0,2,0,0,1,1,2,1 -050,01,001,Alabama,Autauga County,11,6,3088,1469,1619,1180,1218,257,363,1,3,7,20,6,3,18,12,1412,1576,1135,1180,252,360,1,3,5,20,1,1,18,12,57,43,45,38,5,3,0,0,2,0,5,2,0,0 -050,01,001,Alabama,Autauga County,11,7,3253,1558,1695,1258,1265,278,371,1,10,9,27,2,1,10,21,1505,1646,1211,1224,275,366,1,8,9,27,0,0,9,21,53,49,47,41,3,5,0,2,0,0,2,1,1,0 -050,01,001,Alabama,Autauga County,11,8,4149,1992,2157,1611,1654,314,423,11,9,32,34,1,3,23,34,1943,2108,1569,1614,312,420,8,7,32,34,0,1,22,32,49,49,42,40,2,3,3,2,0,0,1,2,1,2 -050,01,001,Alabama,Autauga County,11,9,4147,2015,2132,1667,1672,301,389,13,14,13,37,1,2,20,18,1967,2092,1625,1637,299,388,12,11,13,37,0,1,18,18,48,40,42,35,2,1,1,3,0,0,1,1,2,0 -050,01,001,Alabama,Autauga County,11,10,4285,2131,2154,1771,1745,315,356,12,11,17,22,4,0,12,20,2098,2110,1747,1707,312,351,9,11,16,22,4,0,10,19,33,44,24,38,3,5,3,0,1,0,0,0,2,1 -050,01,001,Alabama,Autauga County,11,11,3746,1801,1945,1441,1530,327,367,9,16,10,18,0,0,14,14,1779,1925,1422,1514,325,365,8,15,10,18,0,0,14,13,22,20,19,16,2,2,1,1,0,0,0,0,0,1 -050,01,001,Alabama,Autauga County,11,12,3017,1494,1523,1232,1210,241,293,7,7,6,6,1,0,7,7,1480,1508,1221,1196,239,293,7,7,6,6,1,0,6,6,14,15,11,14,2,0,0,0,0,0,0,0,1,1 -050,01,001,Alabama,Autauga County,11,13,2667,1243,1424,1063,1187,158,203,6,9,7,12,0,0,9,13,1235,1410,1055,1175,158,202,6,8,7,12,0,0,9,13,8,14,8,12,0,1,0,1,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,11,14,2209,994,1215,858,1027,123,157,3,8,4,8,0,0,6,15,982,1199,849,1012,121,157,3,8,4,7,0,0,5,15,12,16,9,15,2,0,0,0,0,1,0,0,1,0 -050,01,001,Alabama,Autauga County,11,15,1673,764,909,659,778,95,112,4,4,2,9,0,0,4,6,758,900,653,771,95,111,4,3,2,9,0,0,4,6,6,9,6,7,0,1,0,1,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,11,16,1187,527,660,479,549,46,96,0,6,1,6,0,0,1,3,524,653,476,542,46,96,0,6,1,6,0,0,1,3,3,7,3,7,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,11,17,715,277,438,254,364,22,70,0,0,0,4,0,0,1,0,273,436,250,362,22,70,0,0,0,4,0,0,1,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,11,18,558,157,401,127,347,30,53,0,0,0,0,0,0,0,1,156,399,126,345,30,53,0,0,0,0,0,0,0,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,11,99,54135,26364,27771,21122,21812,4562,5132,119,134,186,274,28,19,347,400,25692,27176,20557,21310,4516,5094,103,110,180,273,12,10,324,379,672,595,565,502,46,38,16,24,6,1,16,9,23,21 -050,01,001,Alabama,Autauga County,12,0,647,329,318,246,256,68,51,0,0,2,1,0,0,13,10,311,310,228,248,68,51,0,0,2,1,0,0,13,10,18,8,18,8,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,12,1,2932,1537,1395,1165,1060,294,266,5,3,11,14,1,0,61,52,1467,1341,1109,1012,288,262,2,2,11,14,0,0,57,51,70,54,56,48,6,4,3,1,0,0,1,0,4,1 -050,01,001,Alabama,Autauga County,12,2,3991,2001,1990,1521,1526,399,374,14,8,17,21,1,3,49,58,1933,1916,1460,1465,398,372,12,2,17,21,0,3,46,53,68,74,61,61,1,2,2,6,0,0,1,0,3,5 -050,01,001,Alabama,Autauga County,12,3,4290,2171,2119,1658,1620,431,406,15,12,23,18,4,1,40,62,2105,2055,1613,1570,421,403,12,9,22,18,3,0,34,55,66,64,45,50,10,3,3,3,1,0,1,1,6,7 -050,01,001,Alabama,Autauga County,12,4,4290,2213,2077,1628,1585,502,424,12,7,25,14,4,2,42,45,2153,2026,1580,1543,495,420,12,5,23,14,1,1,42,43,60,51,48,42,7,4,0,2,2,0,3,1,0,2 -050,01,001,Alabama,Autauga County,12,5,3080,1539,1541,1201,1184,293,312,6,9,8,7,3,2,28,27,1474,1499,1141,1151,291,308,6,7,8,6,2,1,26,26,65,42,60,33,2,4,0,2,0,1,1,1,2,1 -050,01,001,Alabama,Autauga County,12,6,3157,1543,1614,1234,1223,277,350,1,3,7,23,6,3,18,12,1477,1570,1180,1184,272,347,1,3,5,23,1,1,18,12,66,44,54,39,5,3,0,0,2,0,5,2,0,0 -050,01,001,Alabama,Autauga County,12,7,3330,1594,1736,1289,1298,276,378,1,10,12,25,3,1,13,24,1533,1674,1234,1245,273,373,1,8,12,25,1,0,12,23,61,62,55,53,3,5,0,2,0,0,2,1,1,1 -050,01,001,Alabama,Autauga County,12,8,4157,2004,2153,1596,1645,338,432,11,9,30,30,2,3,27,34,1948,2108,1547,1610,336,429,8,7,30,29,1,1,26,32,56,45,49,35,2,3,3,2,0,1,1,2,1,2 -050,01,001,Alabama,Autauga County,12,9,4086,1974,2112,1625,1658,303,384,9,14,16,36,1,2,20,18,1923,2073,1580,1624,301,383,8,11,16,36,0,1,18,18,51,39,45,34,2,1,1,3,0,0,1,1,2,0 -050,01,001,Alabama,Autauga County,12,10,4332,2174,2158,1810,1744,315,353,14,11,19,27,3,0,13,23,2140,2111,1785,1704,312,348,11,11,18,26,3,0,11,22,34,47,25,40,3,5,3,0,1,1,0,0,2,1 -050,01,001,Alabama,Autauga County,12,11,3873,1866,2007,1508,1573,323,385,11,12,10,17,0,0,14,20,1842,1986,1487,1557,321,383,10,11,10,17,0,0,14,18,24,21,21,16,2,2,1,1,0,0,0,0,0,2 -050,01,001,Alabama,Autauga County,12,12,3083,1524,1559,1265,1232,237,302,7,9,6,9,1,0,8,7,1504,1546,1248,1220,235,302,7,9,6,9,1,0,7,6,20,13,17,12,2,0,0,0,0,0,0,0,1,1 -050,01,001,Alabama,Autauga County,12,13,2777,1279,1498,1086,1237,171,220,6,13,7,13,0,1,9,14,1270,1483,1077,1225,171,218,6,12,7,13,0,1,9,14,9,15,9,12,0,2,0,1,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,12,14,2277,1014,1263,873,1056,128,177,3,8,4,9,0,0,6,13,1002,1246,864,1040,126,177,3,8,4,8,0,0,5,13,12,17,9,16,2,0,0,0,0,1,0,0,1,0 -050,01,001,Alabama,Autauga County,12,15,1736,807,929,688,796,109,114,4,5,2,8,0,0,4,6,801,920,682,789,109,113,4,4,2,8,0,0,4,6,6,9,6,7,0,1,0,1,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,12,16,1251,546,705,498,597,46,92,0,6,1,7,0,0,1,3,543,698,495,590,46,92,0,6,1,7,0,0,1,3,3,7,3,7,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,12,17,731,295,436,268,368,26,63,0,0,0,5,0,0,1,0,291,434,264,366,26,63,0,0,0,5,0,0,1,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,12,18,551,159,392,136,344,23,47,0,0,0,0,0,0,0,1,158,390,135,342,23,47,0,0,0,0,0,0,0,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,12,99,54571,26569,28002,21295,22002,4559,5130,119,139,200,284,29,18,367,429,25875,27386,20709,21485,4512,5091,103,115,194,280,13,9,344,406,694,616,586,517,47,39,16,24,6,4,16,9,23,23 -050,01,001,Alabama,Autauga County,13,0,650,331,319,247,256,68,52,0,0,2,1,1,0,13,10,312,310,229,248,68,51,0,0,2,1,0,0,13,10,19,9,18,8,0,1,0,0,0,0,1,0,0,0 -050,01,001,Alabama,Autauga County,13,1,2931,1532,1399,1160,1057,294,270,5,3,12,16,2,1,59,52,1461,1340,1104,1009,289,264,2,2,12,15,0,0,54,50,71,59,56,48,5,6,3,1,0,1,2,1,5,2 -050,01,001,Alabama,Autauga County,13,2,3991,2005,1986,1522,1524,402,373,16,9,17,21,1,1,47,58,1934,1915,1459,1462,400,372,13,4,17,21,0,1,45,55,71,71,63,62,2,1,3,5,0,0,1,0,2,3 -050,01,001,Alabama,Autauga County,13,3,4284,2167,2117,1655,1620,431,408,15,11,24,19,4,0,38,59,2102,2055,1609,1567,422,405,12,8,23,19,3,0,33,56,65,62,46,53,9,3,3,3,1,0,1,0,5,3 -050,01,001,Alabama,Autauga County,13,4,4262,2196,2066,1619,1575,500,424,13,8,25,15,4,2,35,42,2132,2013,1570,1533,493,419,10,5,23,15,1,1,35,40,64,53,49,42,7,5,3,3,2,0,3,1,0,2 -050,01,001,Alabama,Autauga County,13,5,3091,1540,1551,1201,1188,298,314,9,12,9,7,1,2,22,28,1473,1506,1141,1154,296,310,7,8,8,6,1,1,20,27,67,45,60,34,2,4,2,4,1,1,0,1,2,1 -050,01,001,Alabama,Autauga County,13,6,3181,1559,1622,1241,1227,281,352,2,3,10,24,6,3,19,13,1489,1577,1186,1188,276,349,1,3,8,23,0,1,18,13,70,45,55,39,5,3,1,0,2,1,6,2,1,0 -050,01,001,Alabama,Autauga County,13,7,3353,1605,1748,1298,1306,280,382,1,11,11,25,3,1,12,23,1542,1686,1242,1254,276,377,1,8,11,25,1,0,11,22,63,62,56,52,4,5,0,3,0,0,2,1,1,1 -050,01,001,Alabama,Autauga County,13,8,4126,1992,2134,1585,1630,338,434,10,9,30,29,2,2,27,30,1934,2086,1534,1594,336,429,7,7,30,29,1,0,26,27,58,48,51,36,2,5,3,2,0,0,1,2,1,3 -050,01,001,Alabama,Autauga County,13,9,4081,1972,2109,1625,1657,304,383,9,17,16,35,1,2,17,15,1920,2068,1579,1622,302,383,8,12,16,35,0,1,15,15,52,41,46,35,2,0,1,5,0,0,1,1,2,0 -050,01,001,Alabama,Autauga County,13,10,4308,2159,2149,1801,1736,315,354,14,11,17,27,2,0,10,21,2126,2101,1775,1696,312,347,11,11,17,26,2,0,9,21,33,48,26,40,3,7,3,0,0,1,0,0,1,0 -050,01,001,Alabama,Autauga County,13,11,3882,1871,2011,1511,1575,325,387,11,12,11,17,0,0,13,20,1847,1990,1490,1559,323,385,10,11,11,17,0,0,13,18,24,21,21,16,2,2,1,1,0,0,0,0,0,2 -050,01,001,Alabama,Autauga County,13,12,3103,1535,1568,1271,1239,239,302,9,11,7,9,1,0,8,7,1515,1555,1254,1227,237,302,9,11,7,9,1,0,7,6,20,13,17,12,2,0,0,0,0,0,0,0,1,1 -050,01,001,Alabama,Autauga County,13,13,2805,1291,1514,1096,1249,175,224,6,13,7,13,0,0,7,15,1282,1500,1087,1237,175,222,6,13,7,13,0,0,7,15,9,14,9,12,0,2,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,13,14,2297,1024,1273,879,1062,129,179,3,10,5,9,0,0,8,13,1013,1256,870,1046,128,179,3,10,5,8,0,0,7,13,11,17,9,16,1,0,0,0,0,1,0,0,1,0 -050,01,001,Alabama,Autauga County,13,15,1744,810,934,691,800,110,115,5,5,1,7,0,0,3,7,803,925,684,793,110,113,5,5,1,7,0,0,3,7,7,9,7,7,0,2,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,13,16,1246,544,702,496,595,46,93,0,6,1,6,0,0,1,2,541,695,493,588,46,93,0,6,1,6,0,0,1,2,3,7,3,7,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,13,17,743,303,440,274,370,26,65,1,0,1,4,0,0,1,1,297,437,268,367,26,65,1,0,1,4,0,0,1,1,6,3,6,3,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,13,18,554,160,394,137,345,23,48,0,0,0,0,0,0,0,1,159,392,136,343,23,48,0,0,0,0,0,0,0,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,13,99,54632,26596,28036,21309,22011,4584,5159,129,151,206,284,28,14,340,417,25882,27407,20710,21487,4538,5113,106,124,200,279,10,5,318,399,714,629,599,524,46,46,23,27,6,5,18,9,22,18 -050,01,003,Alabama,Baldwin County,1,0,1696,876,820,746,670,105,115,4,3,4,5,0,1,17,26,853,796,726,651,103,114,4,3,4,5,0,1,16,22,23,24,20,19,2,1,0,0,0,0,0,0,1,4 -050,01,003,Alabama,Baldwin County,1,1,6925,3509,3416,2911,2824,493,500,21,21,19,26,1,0,64,45,3410,3326,2832,2746,478,493,18,18,19,26,1,0,62,43,99,90,79,78,15,7,3,3,0,0,0,0,2,2 -050,01,003,Alabama,Baldwin County,1,2,9488,4938,4550,4142,3795,682,651,22,23,20,24,3,2,69,55,4835,4450,4051,3711,678,640,18,19,20,24,3,2,65,54,103,100,91,84,4,11,4,4,0,0,0,0,4,1 -050,01,003,Alabama,Baldwin County,1,3,10145,5212,4933,4375,4156,749,668,31,30,16,21,3,3,38,55,5128,4810,4299,4048,744,660,29,25,16,20,3,3,37,54,84,123,76,108,5,8,2,5,0,1,0,0,1,1 -050,01,003,Alabama,Baldwin County,1,4,9463,4882,4581,4050,3799,719,691,43,34,17,18,1,1,52,38,4751,4497,3929,3727,713,685,40,32,17,18,1,1,51,34,131,84,121,72,6,6,3,2,0,0,0,0,1,4 -050,01,003,Alabama,Baldwin County,1,5,7090,3605,3485,2978,2895,552,517,25,26,14,16,0,1,36,30,3438,3396,2820,2817,548,512,22,23,13,15,0,1,35,28,167,89,158,78,4,5,3,3,1,1,0,0,1,2 -050,01,003,Alabama,Baldwin County,1,6,8088,3994,4094,3401,3535,517,477,26,26,17,21,0,0,33,35,3848,4012,3269,3460,508,472,24,25,16,21,0,0,31,34,146,82,132,75,9,5,2,1,1,0,0,0,2,1 -050,01,003,Alabama,Baldwin County,1,7,8934,4424,4510,3905,3917,436,484,31,33,22,40,1,4,29,32,4311,4437,3795,3850,434,480,31,31,22,40,1,4,28,32,113,73,110,67,2,4,0,2,0,0,0,0,1,0 -050,01,003,Alabama,Baldwin County,1,8,10750,5303,5447,4659,4746,547,593,36,31,21,32,1,5,39,40,5191,5342,4560,4656,542,585,28,28,21,31,1,5,39,37,112,105,99,90,5,8,8,3,0,1,0,0,0,3 -050,01,003,Alabama,Baldwin County,1,9,11159,5378,5781,4761,5060,519,595,34,42,21,30,1,1,42,53,5278,5699,4669,4985,515,593,32,38,20,30,0,1,42,52,100,82,92,75,4,2,2,4,1,0,1,0,0,1 -050,01,003,Alabama,Baldwin County,1,10,10232,5000,5232,4464,4662,450,470,40,30,15,33,1,1,30,36,4931,5168,4400,4606,447,463,40,29,14,33,1,1,29,36,69,64,64,56,3,7,0,1,1,0,0,0,1,0 -050,01,003,Alabama,Baldwin County,1,11,9374,4570,4804,4162,4371,332,355,36,27,8,14,0,0,32,37,4511,4749,4108,4324,327,350,36,25,8,14,0,0,32,36,59,55,54,47,5,5,0,2,0,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,1,12,8274,3947,4327,3632,3955,237,295,33,28,9,17,1,2,35,30,3903,4272,3589,3904,237,294,32,26,9,17,1,2,35,29,44,55,43,51,0,1,1,2,0,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,1,13,7095,3399,3696,3144,3401,212,246,13,19,3,11,0,0,27,19,3360,3675,3106,3382,212,244,12,19,3,11,0,0,27,19,39,21,38,19,0,2,1,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,1,14,6622,3277,3345,3056,3095,191,209,9,10,2,18,1,1,18,12,3248,3316,3030,3071,188,204,9,10,2,18,1,1,18,12,29,29,26,24,3,5,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,1,15,5733,2746,2987,2611,2757,119,191,5,8,0,9,2,0,9,22,2729,2970,2596,2740,117,191,5,8,0,9,2,0,9,22,17,17,15,17,2,0,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,1,16,4429,1966,2463,1857,2304,92,138,6,10,1,2,0,0,10,9,1963,2449,1854,2291,92,138,6,10,1,2,0,0,10,8,3,14,3,13,0,0,0,0,0,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,1,17,2755,1157,1598,1076,1471,74,120,1,1,0,1,0,0,6,5,1152,1589,1071,1463,74,120,1,1,0,0,0,0,6,5,5,9,5,8,0,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,1,18,2164,665,1499,599,1375,63,118,2,2,0,0,0,0,1,4,663,1494,598,1370,63,118,1,2,0,0,0,0,1,4,2,5,1,5,0,0,1,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,1,99,140416,68848,71568,60529,62788,7089,7433,418,404,209,338,16,22,587,583,67503,70447,59302,61802,7020,7356,388,372,205,334,15,22,573,561,1345,1121,1227,986,69,77,30,32,4,4,1,0,14,22 -050,01,003,Alabama,Baldwin County,2,0,1717,884,833,755,680,106,117,4,3,4,5,0,1,15,27,860,808,734,660,104,116,4,3,4,5,0,1,14,23,24,25,21,20,2,1,0,0,0,0,0,0,1,4 -050,01,003,Alabama,Baldwin County,2,1,6925,3507,3418,2914,2830,490,497,21,21,19,26,1,0,62,44,3408,3328,2835,2752,475,490,18,18,19,26,1,0,60,42,99,90,79,78,15,7,3,3,0,0,0,0,2,2 -050,01,003,Alabama,Baldwin County,2,2,9482,4930,4552,4144,3800,673,642,22,23,20,24,3,2,68,61,4827,4452,4053,3716,669,631,18,19,20,24,3,2,64,60,103,100,91,84,4,11,4,4,0,0,0,0,4,1 -050,01,003,Alabama,Baldwin County,2,3,10235,5255,4980,4415,4194,752,672,31,30,16,21,3,3,38,60,5170,4855,4338,4084,747,664,29,25,16,20,3,3,37,59,85,125,77,110,5,8,2,5,0,1,0,0,1,1 -050,01,003,Alabama,Baldwin County,2,4,9537,4920,4617,4087,3829,723,694,43,34,17,19,1,1,49,40,4786,4534,3963,3758,717,688,40,32,17,19,1,1,48,36,134,83,124,71,6,6,3,2,0,0,0,0,1,4 -050,01,003,Alabama,Baldwin County,2,5,7177,3648,3529,3015,2929,558,522,25,26,14,17,0,1,36,34,3475,3440,2851,2851,554,517,22,23,13,16,0,1,35,32,173,89,164,78,4,5,3,3,1,1,0,0,1,2 -050,01,003,Alabama,Baldwin County,2,6,8048,3981,4067,3387,3514,518,476,26,26,17,21,0,0,33,30,3831,3981,3251,3435,509,471,24,25,16,21,0,0,31,29,150,86,136,79,9,5,2,1,1,0,0,0,2,1 -050,01,003,Alabama,Baldwin County,2,7,8965,4440,4525,3922,3931,438,484,31,33,22,40,1,4,26,33,4326,4451,3811,3863,436,480,31,31,22,40,1,4,25,33,114,74,111,68,2,4,0,2,0,0,0,0,1,0 -050,01,003,Alabama,Baldwin County,2,8,10753,5304,5449,4658,4743,549,596,36,31,21,31,1,5,39,43,5191,5343,4558,4652,544,588,28,28,21,30,1,5,39,40,113,106,100,91,5,8,8,3,0,1,0,0,0,3 -050,01,003,Alabama,Baldwin County,2,9,11234,5413,5821,4792,5092,524,602,34,42,21,30,1,1,41,54,5311,5737,4698,5015,520,600,32,38,20,30,0,1,41,53,102,84,94,77,4,2,2,4,1,0,1,0,0,1 -050,01,003,Alabama,Baldwin County,2,10,10348,5058,5290,4508,4707,457,477,40,30,15,33,1,1,37,42,4989,5226,4444,4651,454,470,40,29,14,33,1,1,36,42,69,64,64,56,3,7,0,1,1,0,0,0,1,0 -050,01,003,Alabama,Baldwin County,2,11,9516,4640,4876,4224,4434,339,362,37,27,8,14,0,0,32,39,4581,4820,4170,4386,334,357,37,25,8,14,0,0,32,38,59,56,54,48,5,5,0,2,0,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,2,12,8365,3988,4377,3672,3998,241,300,33,28,9,17,1,2,32,32,3945,4322,3630,3947,241,299,32,26,9,17,1,2,32,31,43,55,42,51,0,1,1,2,0,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,2,13,7157,3427,3730,3169,3430,216,251,13,19,3,11,0,0,26,19,3388,3709,3131,3411,216,249,12,19,3,11,0,0,26,19,39,21,38,19,0,2,1,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,2,14,6662,3299,3363,3073,3109,195,213,9,10,2,18,1,1,19,12,3270,3334,3047,3085,192,208,9,10,2,18,1,1,19,12,29,29,26,24,3,5,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,2,15,5771,2769,3002,2634,2770,120,193,5,8,0,9,2,0,8,22,2752,2985,2619,2753,118,193,5,8,0,9,2,0,8,22,17,17,15,17,2,0,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,2,16,4475,1988,2487,1874,2324,96,142,6,10,1,2,0,0,11,9,1985,2473,1871,2311,96,142,6,10,1,2,0,0,11,8,3,14,3,13,0,0,0,0,0,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,2,17,2797,1178,1619,1095,1490,76,122,1,1,0,1,0,0,6,5,1173,1610,1090,1482,76,122,1,1,0,0,0,0,6,5,5,9,5,8,0,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,2,18,2178,673,1505,607,1380,63,118,2,2,0,0,0,0,1,5,671,1500,606,1375,63,118,1,2,0,0,0,0,1,5,2,5,1,5,0,0,1,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,2,99,141342,69302,72040,60945,63184,7134,7480,419,404,209,339,16,22,579,611,67939,70908,59700,62187,7065,7403,389,372,205,335,15,22,565,589,1363,1132,1245,997,69,77,30,32,4,4,1,0,14,22 -050,01,003,Alabama,Baldwin County,3,0,1894,926,968,788,802,106,133,3,1,3,5,0,1,26,26,892,929,756,767,105,132,3,1,3,5,0,1,25,23,34,39,32,35,1,1,0,0,0,0,0,0,1,3 -050,01,003,Alabama,Baldwin County,3,1,6993,3511,3482,2923,2869,471,508,23,24,22,21,1,0,71,60,3398,3379,2832,2776,455,503,21,21,22,21,1,0,67,58,113,103,91,93,16,5,2,3,0,0,0,0,4,2 -050,01,003,Alabama,Baldwin County,3,2,9487,4851,4636,4090,3887,640,643,23,24,23,25,3,1,72,56,4718,4506,3972,3774,634,633,19,19,23,25,3,1,67,54,133,130,118,113,6,10,4,5,0,0,0,0,5,2 -050,01,003,Alabama,Baldwin County,3,3,10540,5387,5153,4528,4313,748,718,35,34,26,20,2,3,48,65,5288,5010,4438,4189,743,706,33,29,26,19,2,3,46,64,99,143,90,124,5,12,2,5,0,1,0,0,2,1 -050,01,003,Alabama,Baldwin County,3,4,9641,5018,4623,4197,3836,716,695,41,29,16,20,1,0,47,43,4871,4510,4060,3742,710,683,38,27,16,20,1,0,46,38,147,113,137,94,6,12,3,2,0,0,0,0,1,5 -050,01,003,Alabama,Baldwin County,3,5,7588,3808,3780,3109,3155,609,544,34,28,15,23,0,1,41,29,3610,3697,2922,3087,604,535,30,25,14,22,0,1,40,27,198,83,187,68,5,9,4,3,1,1,0,0,1,2 -050,01,003,Alabama,Baldwin County,3,6,7815,3918,3897,3340,3361,497,466,30,31,14,15,0,0,37,24,3724,3777,3163,3250,487,461,28,28,13,15,0,0,33,23,194,120,177,111,10,5,2,3,1,0,0,0,4,1 -050,01,003,Alabama,Baldwin County,3,7,9096,4444,4652,3902,4067,461,477,26,28,24,40,2,3,29,37,4310,4559,3774,3981,457,472,25,26,24,40,2,3,28,37,134,93,128,86,4,5,1,2,0,0,0,0,1,0 -050,01,003,Alabama,Baldwin County,3,8,10636,5239,5397,4603,4674,521,596,48,37,32,35,1,5,34,50,5105,5278,4483,4574,516,584,39,34,32,34,1,5,34,47,134,119,120,100,5,12,9,3,0,1,0,0,0,3 -050,01,003,Alabama,Baldwin County,3,9,11522,5605,5917,4952,5192,557,603,30,40,22,30,1,1,43,51,5498,5831,4854,5116,552,599,28,36,21,29,0,1,43,50,107,86,98,76,5,4,2,4,1,1,1,0,0,1 -050,01,003,Alabama,Baldwin County,3,10,10742,5251,5491,4668,4842,480,533,48,36,15,40,1,3,39,37,5187,5420,4609,4782,477,523,47,35,15,40,1,3,38,37,64,71,59,60,3,10,1,1,0,0,0,0,1,0 -050,01,003,Alabama,Baldwin County,3,11,10039,4912,5127,4461,4651,370,380,36,31,11,20,0,0,34,45,4839,5066,4394,4598,365,375,36,30,10,20,0,0,34,43,73,61,67,53,5,5,0,1,1,0,0,0,0,2 -050,01,003,Alabama,Baldwin County,3,12,8655,4093,4562,3748,4178,270,297,34,29,11,19,2,2,28,37,4054,4508,3710,4130,270,296,33,26,11,19,2,2,28,35,39,54,38,48,0,1,1,3,0,0,0,0,0,2 -050,01,003,Alabama,Baldwin County,3,13,7642,3666,3976,3387,3644,224,270,15,22,5,15,0,0,35,25,3625,3947,3347,3618,224,267,14,22,5,15,0,0,35,25,41,29,40,26,0,3,1,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,3,14,6813,3368,3445,3145,3196,186,205,11,14,4,18,1,1,21,11,3340,3417,3119,3173,184,200,11,14,4,18,1,1,21,11,28,28,26,23,2,5,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,3,15,5949,2889,3060,2738,2813,133,210,5,9,0,11,2,0,11,17,2870,3039,2721,2792,131,210,5,9,0,11,2,0,11,17,19,21,17,21,2,0,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,3,16,4619,2081,2538,1955,2376,104,135,7,11,1,7,0,0,14,9,2075,2523,1949,2362,104,135,7,11,1,7,0,0,14,8,6,15,6,14,0,0,0,0,0,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,3,17,2959,1262,1697,1191,1559,64,128,1,2,0,1,0,0,6,7,1254,1684,1183,1547,64,128,1,2,0,0,0,0,6,7,8,13,8,12,0,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,3,18,2245,682,1563,620,1435,56,121,2,3,0,0,0,0,4,4,677,1557,616,1429,56,121,1,3,0,0,0,0,4,4,5,6,4,6,0,0,1,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,3,99,144875,70911,73964,62345,64850,7213,7662,452,433,244,365,17,21,640,633,69335,72637,60902,63687,7138,7563,419,398,240,360,16,21,620,608,1576,1327,1443,1163,75,99,33,35,4,5,1,0,20,25 -050,01,003,Alabama,Baldwin County,4,0,1757,882,875,739,724,115,116,3,5,2,2,0,1,23,27,850,839,711,691,113,116,3,5,2,2,0,1,21,24,32,36,28,33,2,0,0,0,0,0,0,0,2,3 -050,01,003,Alabama,Baldwin County,4,1,7207,3628,3579,3026,2945,483,517,16,20,23,21,2,0,78,76,3489,3468,2917,2852,465,511,12,16,23,21,2,0,70,68,139,111,109,93,18,6,4,4,0,0,0,0,8,8 -050,01,003,Alabama,Baldwin County,4,2,9466,4794,4672,4051,3923,617,632,25,30,20,22,4,2,77,63,4643,4527,3919,3800,611,620,19,24,20,22,3,2,71,59,151,145,132,123,6,12,6,6,0,0,1,0,6,4 -050,01,003,Alabama,Baldwin County,4,3,10711,5482,5229,4605,4357,760,729,33,35,28,28,2,3,54,77,5372,5075,4509,4221,751,722,30,29,28,27,2,3,52,73,110,154,96,136,9,7,3,6,0,1,0,0,2,4 -050,01,003,Alabama,Baldwin County,4,4,9829,5091,4738,4264,3932,713,693,47,35,20,29,1,2,46,47,4943,4625,4127,3839,707,684,44,31,20,28,1,1,44,42,148,113,137,93,6,9,3,4,0,1,0,1,2,5 -050,01,003,Alabama,Baldwin County,4,5,7814,3918,3896,3217,3250,603,554,34,27,16,29,4,1,44,35,3682,3780,3001,3149,595,547,28,23,15,28,3,1,40,32,236,116,216,101,8,7,6,4,1,1,1,0,4,3 -050,01,003,Alabama,Baldwin County,4,6,7585,3849,3736,3253,3212,507,454,30,25,23,16,3,1,33,28,3635,3586,3060,3075,498,445,23,22,22,16,3,1,29,27,214,150,193,137,9,9,7,3,1,0,0,0,4,1 -050,01,003,Alabama,Baldwin County,4,7,9393,4617,4776,4065,4170,464,493,21,31,25,42,2,4,40,36,4445,4675,3905,4079,459,488,17,27,25,42,2,4,37,35,172,101,160,91,5,5,4,4,0,0,0,0,3,1 -050,01,003,Alabama,Baldwin County,4,8,10434,5067,5367,4477,4637,485,590,47,43,18,40,1,4,39,53,4920,5238,4345,4526,480,580,39,40,18,39,1,4,37,49,147,129,132,111,5,10,8,3,0,1,0,0,2,4 -050,01,003,Alabama,Baldwin County,4,9,11656,5709,5947,5000,5205,595,617,36,41,34,32,1,2,43,50,5583,5856,4885,5126,589,614,33,35,33,32,0,2,43,47,126,91,115,79,6,3,3,6,1,0,1,0,0,3 -050,01,003,Alabama,Baldwin County,4,10,11247,5450,5797,4835,5098,511,578,39,36,19,39,1,1,45,45,5373,5716,4767,5027,508,569,36,35,19,39,1,1,42,45,77,81,68,71,3,9,3,1,0,0,0,0,3,0 -050,01,003,Alabama,Baldwin County,4,11,10125,4938,5187,4447,4656,395,422,52,31,9,29,0,1,35,48,4868,5123,4384,4604,390,415,51,29,9,29,0,1,34,45,70,64,63,52,5,7,1,2,0,0,0,0,1,3 -050,01,003,Alabama,Baldwin County,4,12,9476,4490,4986,4143,4605,267,298,35,32,13,17,1,2,31,32,4439,4923,4095,4548,267,297,33,28,13,17,1,2,30,31,51,63,48,57,0,1,2,4,0,0,0,0,1,1 -050,01,003,Alabama,Baldwin County,4,13,7957,3826,4131,3540,3808,220,258,22,21,7,16,0,0,37,28,3792,4098,3506,3776,220,257,22,21,7,16,0,0,37,28,34,33,34,32,0,1,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,4,14,7101,3512,3589,3278,3325,193,212,13,15,7,21,0,1,21,15,3483,3565,3252,3306,191,207,12,15,7,21,0,1,21,15,29,24,26,19,2,5,1,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,4,15,6061,2958,3103,2797,2859,141,204,7,10,1,13,2,0,10,17,2935,3083,2776,2839,139,204,7,10,1,13,2,0,10,17,23,20,21,20,2,0,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,4,16,4727,2162,2565,2040,2387,100,147,8,11,1,8,0,0,13,12,2154,2549,2032,2372,100,147,8,11,1,8,0,0,13,11,8,16,8,15,0,0,0,0,0,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,4,17,3125,1323,1802,1252,1661,65,129,1,3,0,2,0,0,5,7,1314,1789,1243,1649,65,129,1,3,0,1,0,0,5,7,9,13,9,12,0,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,4,18,2286,703,1583,647,1464,50,109,2,3,0,1,0,0,4,6,697,1577,642,1458,50,109,1,3,0,1,0,0,4,6,6,6,5,6,0,0,1,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,4,99,147957,72399,75558,63676,66218,7284,7752,471,454,266,407,24,25,678,702,70617,74092,62076,64937,7198,7661,419,407,263,402,21,24,640,661,1782,1466,1600,1281,86,91,52,47,3,5,3,1,38,41 -050,01,003,Alabama,Baldwin County,5,0,1810,923,887,778,745,107,107,4,5,3,5,1,0,30,25,891,845,750,706,106,107,3,5,3,5,1,0,28,22,32,42,28,39,1,0,1,0,0,0,0,0,2,3 -050,01,003,Alabama,Baldwin County,5,1,7282,3687,3595,3065,2952,494,508,18,22,16,26,1,0,93,87,3540,3461,2942,2832,481,504,16,20,16,26,1,0,84,79,147,134,123,120,13,4,2,2,0,0,0,0,9,8 -050,01,003,Alabama,Baldwin County,5,2,9507,4758,4749,4024,4016,587,605,29,29,29,29,4,2,85,68,4593,4595,3884,3883,576,595,23,22,29,29,3,2,78,64,165,154,140,133,11,10,6,7,0,0,1,0,7,4 -050,01,003,Alabama,Baldwin County,5,3,10778,5566,5212,4672,4341,767,721,37,33,29,31,3,3,58,83,5427,5050,4546,4202,760,710,34,28,29,30,3,3,55,77,139,162,126,139,7,11,3,5,0,1,0,0,3,6 -050,01,003,Alabama,Baldwin County,5,4,10066,5210,4856,4336,4023,734,715,62,44,19,25,2,3,57,46,5053,4739,4193,3924,727,708,59,40,19,24,1,2,54,41,157,117,143,99,7,7,3,4,0,1,1,1,3,5 -050,01,003,Alabama,Baldwin County,5,5,8197,4166,4031,3408,3360,644,566,42,33,22,32,4,2,46,38,3897,3895,3163,3236,635,559,34,30,21,32,3,2,41,36,269,136,245,124,9,7,8,3,1,0,1,0,5,2 -050,01,003,Alabama,Baldwin County,5,6,7711,3880,3831,3298,3269,500,484,28,30,15,17,2,1,37,30,3632,3652,3072,3100,490,480,21,26,15,17,2,1,32,28,248,179,226,169,10,4,7,4,0,0,0,0,5,2 -050,01,003,Alabama,Baldwin County,5,7,9491,4698,4793,4138,4212,474,468,29,27,24,42,4,6,29,38,4481,4666,3933,4096,470,462,25,23,24,42,4,6,25,37,217,127,205,116,4,6,4,4,0,0,0,0,4,1 -050,01,003,Alabama,Baldwin County,5,8,10185,4915,5270,4338,4573,467,569,42,32,20,46,1,3,47,47,4765,5140,4202,4461,461,560,37,29,20,45,1,3,44,42,150,130,136,112,6,9,5,3,0,1,0,0,3,5 -050,01,003,Alabama,Baldwin County,5,9,11747,5769,5978,5069,5206,584,632,40,45,31,34,3,3,42,58,5641,5868,4953,5114,577,624,37,39,30,34,2,3,42,54,128,110,116,92,7,8,3,6,1,0,1,0,0,4 -050,01,003,Alabama,Baldwin County,5,10,11657,5636,6021,4964,5282,551,614,47,43,23,41,1,1,50,40,5537,5937,4874,5206,548,607,44,42,23,41,1,1,47,40,99,84,90,76,3,7,3,1,0,0,0,0,3,0 -050,01,003,Alabama,Baldwin County,5,11,10413,5082,5331,4579,4779,415,445,42,31,8,24,0,1,38,51,5011,5258,4516,4717,411,439,41,29,8,24,0,1,35,48,71,73,63,62,4,6,1,2,0,0,0,0,3,3 -050,01,003,Alabama,Baldwin County,5,12,9993,4775,5218,4387,4778,297,344,36,29,12,22,2,2,41,43,4716,5153,4332,4720,296,342,34,27,12,22,2,2,40,40,59,65,55,58,1,2,2,2,0,0,0,0,1,3 -050,01,003,Alabama,Baldwin County,5,13,8559,4094,4465,3784,4143,232,246,22,27,12,19,1,0,43,30,4055,4422,3746,4103,232,244,22,26,11,19,1,0,43,30,39,43,38,40,0,2,0,1,1,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,5,14,7360,3597,3763,3377,3484,174,228,14,15,6,19,1,1,25,16,3566,3736,3349,3462,172,223,13,15,6,19,1,1,25,16,31,27,28,22,2,5,1,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,5,15,6164,3019,3145,2845,2910,155,190,5,12,1,16,2,0,11,17,2997,3117,2824,2883,154,189,5,12,1,16,2,0,11,17,22,28,21,27,1,1,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,5,16,4883,2249,2634,2139,2437,91,165,7,10,1,11,0,0,11,11,2237,2619,2127,2424,91,165,7,9,1,11,0,0,11,10,12,15,12,13,0,0,0,1,0,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,5,17,3313,1410,1903,1340,1759,62,132,2,2,1,2,0,0,5,8,1405,1885,1335,1742,62,132,2,2,1,1,0,0,5,8,5,18,5,17,0,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,5,18,2393,768,1625,708,1508,54,107,2,4,0,2,0,0,4,4,761,1617,702,1500,54,107,1,4,0,2,0,0,4,4,7,8,6,8,0,0,1,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,5,99,151509,74202,77307,65249,67777,7389,7846,508,473,272,443,32,28,752,740,72205,75655,63443,66311,7303,7757,458,428,269,439,28,27,704,693,1997,1652,1806,1466,86,89,50,45,3,4,4,1,48,47 -050,01,003,Alabama,Baldwin County,6,0,1872,972,900,810,746,115,117,2,2,4,4,1,1,40,30,929,859,771,709,114,116,2,2,4,4,0,1,38,27,43,41,39,37,1,1,0,0,0,0,1,0,2,3 -050,01,003,Alabama,Baldwin County,6,1,7545,3817,3728,3171,3060,502,525,19,27,19,24,2,0,104,92,3665,3573,3044,2923,488,522,16,23,19,24,2,0,96,81,152,155,127,137,14,3,3,4,0,0,0,0,8,11 -050,01,003,Alabama,Baldwin County,6,2,9667,4862,4805,4126,4062,577,610,32,32,31,31,5,3,91,67,4667,4653,3959,3933,566,597,25,27,31,31,4,3,82,62,195,152,167,129,11,13,7,5,0,0,1,0,9,5 -050,01,003,Alabama,Baldwin County,6,3,11005,5724,5281,4791,4401,792,707,31,45,27,32,4,4,79,92,5553,5087,4641,4234,781,695,28,38,26,31,3,3,74,86,171,194,150,167,11,12,3,7,1,1,1,1,5,6 -050,01,003,Alabama,Baldwin County,6,4,10326,5253,5073,4385,4232,737,718,48,40,24,34,5,2,54,47,5079,4920,4231,4101,729,707,43,34,24,34,2,1,50,43,174,153,154,131,8,11,5,6,0,0,3,1,4,4 -050,01,003,Alabama,Baldwin County,6,5,8318,4284,4034,3515,3330,634,582,51,37,31,38,5,1,48,46,3994,3910,3252,3221,624,573,42,34,30,37,4,1,42,44,290,124,263,109,10,9,9,3,1,1,1,0,6,2 -050,01,003,Alabama,Baldwin County,6,6,8081,4050,4031,3398,3436,500,474,36,31,69,54,5,1,42,35,3760,3837,3135,3256,491,467,29,27,68,53,3,1,34,33,290,194,263,180,9,7,7,4,1,1,2,0,8,2 -050,01,003,Alabama,Baldwin County,6,7,9684,4816,4868,4213,4253,466,492,29,31,72,46,2,2,34,44,4587,4693,4000,4092,460,487,24,25,72,46,1,2,30,41,229,175,213,161,6,5,5,6,0,0,1,0,4,3 -050,01,003,Alabama,Baldwin County,6,8,10159,4918,5241,4340,4537,462,566,36,34,27,52,3,4,50,48,4759,5093,4197,4411,458,553,31,31,27,52,1,3,45,43,159,148,143,126,4,13,5,3,0,0,2,1,5,5 -050,01,003,Alabama,Baldwin County,6,9,11994,5910,6084,5199,5292,595,648,37,49,32,39,4,2,43,54,5748,5961,5054,5183,585,644,34,43,31,38,2,2,42,51,162,123,145,109,10,4,3,6,1,1,2,0,1,3 -050,01,003,Alabama,Baldwin County,6,10,12028,5778,6250,5129,5499,529,613,45,49,22,38,0,2,53,49,5655,6156,5017,5414,526,606,41,48,22,38,0,2,49,48,123,94,112,85,3,7,4,1,0,0,0,0,4,1 -050,01,003,Alabama,Baldwin County,6,11,10856,5240,5616,4703,4988,439,510,45,30,15,32,1,2,37,54,5161,5534,4631,4918,435,504,45,29,15,32,0,2,35,49,79,82,72,70,4,6,0,1,0,0,1,0,2,5 -050,01,003,Alabama,Baldwin County,6,12,10523,5009,5514,4614,5069,298,359,38,26,15,22,3,1,41,37,4947,5444,4557,5003,296,358,36,24,15,22,3,1,40,36,62,70,57,66,2,1,2,2,0,0,0,0,1,1 -050,01,003,Alabama,Baldwin County,6,13,9259,4467,4792,4108,4437,280,283,28,23,11,18,1,0,39,31,4418,4742,4060,4391,280,281,28,22,10,18,1,0,39,30,49,50,48,46,0,2,0,1,1,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,6,14,7760,3778,3982,3531,3683,186,227,18,15,7,24,0,3,36,30,3752,3955,3508,3663,184,222,17,15,7,24,0,3,36,28,26,27,23,20,2,5,1,0,0,0,0,0,0,2 -050,01,003,Alabama,Baldwin County,6,15,6337,3108,3229,2933,2987,149,197,7,15,2,16,2,0,15,14,3083,3202,2910,2961,148,196,7,15,2,16,2,0,14,14,25,27,23,26,1,1,0,0,0,0,0,0,1,0 -050,01,003,Alabama,Baldwin County,6,16,4969,2306,2663,2190,2465,96,167,6,12,2,11,0,0,12,8,2292,2647,2176,2452,96,167,6,11,2,11,0,0,12,6,14,16,14,13,0,0,0,1,0,0,0,0,0,2 -050,01,003,Alabama,Baldwin County,6,17,3414,1465,1949,1395,1827,61,106,2,3,2,3,0,0,5,10,1459,1929,1389,1808,61,106,2,3,2,2,0,0,5,10,6,20,6,19,0,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,6,18,2469,790,1679,735,1546,50,119,1,3,1,3,0,0,3,8,784,1669,729,1537,50,119,1,3,1,2,0,0,3,8,6,10,6,9,0,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,6,99,156266,76547,79719,67286,69850,7468,8020,511,504,413,521,43,28,826,796,74292,77864,65261,68210,7372,7920,457,454,408,515,28,25,766,740,2255,1855,2025,1640,96,100,54,50,5,6,15,3,60,56 -050,01,003,Alabama,Baldwin County,7,0,2055,1024,1031,852,879,121,109,3,1,9,4,1,1,38,37,954,943,789,798,119,107,2,1,9,4,0,1,35,32,70,88,63,81,2,2,1,0,0,0,1,0,3,5 -050,01,003,Alabama,Baldwin County,7,1,7848,3963,3885,3289,3190,504,543,24,25,17,24,4,1,125,102,3788,3691,3142,3017,491,539,21,20,17,24,3,0,114,91,175,194,147,173,13,4,3,5,0,0,1,1,11,11 -050,01,003,Alabama,Baldwin County,7,2,10105,5175,4930,4393,4175,595,585,36,38,33,34,4,3,114,95,4946,4742,4195,4016,583,575,28,32,33,34,3,2,104,83,229,188,198,159,12,10,8,6,0,0,1,1,10,12 -050,01,003,Alabama,Baldwin County,7,3,11081,5731,5350,4813,4441,779,741,32,43,28,38,2,4,77,83,5540,5149,4640,4269,770,726,29,38,28,36,2,4,71,76,191,201,173,172,9,15,3,5,0,2,0,0,6,7 -050,01,003,Alabama,Baldwin County,7,4,10621,5421,5200,4529,4323,747,728,49,44,24,38,4,5,68,62,5231,5018,4355,4171,742,716,46,38,23,36,2,2,63,55,190,182,174,152,5,12,3,6,1,2,2,3,5,7 -050,01,003,Alabama,Baldwin County,7,5,8565,4381,4184,3661,3491,605,573,37,33,28,41,8,1,42,45,4058,4039,3366,3361,596,565,28,29,27,41,6,1,35,42,323,145,295,130,9,8,9,4,1,0,2,0,7,3 -050,01,003,Alabama,Baldwin County,7,6,8570,4264,4306,3613,3670,527,507,26,34,45,57,4,1,49,37,3901,4105,3279,3484,518,501,19,29,44,57,3,1,38,33,363,201,334,186,9,6,7,5,1,0,1,0,11,4 -050,01,003,Alabama,Baldwin County,7,7,9755,4819,4936,4200,4286,477,515,34,26,63,53,4,5,41,51,4540,4733,3937,4101,472,503,27,23,63,53,4,5,37,48,279,203,263,185,5,12,7,3,0,0,0,0,4,3 -050,01,003,Alabama,Baldwin County,7,8,10505,5115,5390,4542,4687,447,540,34,41,36,58,6,4,50,60,4958,5227,4403,4539,443,532,28,39,36,58,3,4,45,55,157,163,139,148,4,8,6,2,0,0,3,0,5,5 -050,01,003,Alabama,Baldwin County,7,9,12234,6049,6185,5324,5362,602,671,36,45,33,50,2,4,52,53,5870,6047,5163,5245,592,661,32,38,33,49,1,4,49,50,179,138,161,117,10,10,4,7,0,1,1,0,3,3 -050,01,003,Alabama,Baldwin County,7,10,12358,5924,6434,5230,5667,573,625,46,49,27,36,1,4,47,53,5785,6315,5104,5554,570,621,41,48,26,36,1,4,43,52,139,119,126,113,3,4,5,1,1,0,0,0,4,1 -050,01,003,Alabama,Baldwin County,7,11,11539,5577,5962,4969,5299,472,538,65,37,22,43,1,3,48,42,5495,5882,4896,5231,468,532,64,35,22,43,1,3,44,38,82,80,73,68,4,6,1,2,0,0,0,0,4,4 -050,01,003,Alabama,Baldwin County,7,12,11206,5362,5844,4935,5345,336,391,33,37,13,23,1,0,44,48,5289,5772,4868,5278,334,390,32,34,12,23,1,0,42,47,73,72,67,67,2,1,1,3,1,0,0,0,2,1 -050,01,003,Alabama,Baldwin County,7,13,9836,4699,5137,4345,4739,268,312,31,25,15,25,1,2,39,34,4637,5079,4286,4683,268,311,29,24,14,25,1,2,39,34,62,58,59,56,0,1,2,1,1,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,7,14,8071,3881,4190,3601,3889,223,241,22,16,6,14,1,2,28,28,3850,4158,3574,3864,220,236,21,15,6,14,1,2,28,27,31,32,27,25,3,5,1,1,0,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,7,15,6681,3301,3380,3117,3129,159,206,7,13,2,18,1,0,15,14,3281,3358,3099,3108,158,205,7,13,2,18,1,0,14,14,20,22,18,21,1,1,0,0,0,0,0,0,1,0 -050,01,003,Alabama,Baldwin County,7,16,5078,2406,2672,2299,2478,83,156,4,14,3,12,1,0,16,12,2386,2654,2279,2463,83,155,4,13,3,12,1,0,16,11,20,18,20,15,0,1,0,1,0,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,7,17,3518,1460,2058,1382,1938,70,106,1,4,2,3,0,0,5,7,1451,2041,1374,1921,69,106,1,4,2,3,0,0,5,7,9,17,8,17,1,0,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,7,18,2557,864,1693,810,1557,47,122,2,2,0,3,0,0,5,9,851,1684,797,1549,47,122,2,2,0,2,0,0,5,9,13,9,13,8,0,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,7,99,162183,79416,82767,69904,72545,7635,8209,522,527,406,574,46,40,903,872,76811,80637,67546,70652,7543,8103,461,475,400,568,34,35,827,804,2605,2130,2358,1893,92,106,61,52,6,6,12,5,76,68 -050,01,003,Alabama,Baldwin County,8,0,2250,1134,1116,953,941,127,124,2,2,6,5,1,0,45,44,1039,1016,865,845,123,123,2,2,6,5,1,0,42,41,95,100,88,96,4,1,0,0,0,0,0,0,3,3 -050,01,003,Alabama,Baldwin County,8,1,8191,4131,4060,3409,3365,527,518,30,28,25,29,2,1,138,119,3907,3831,3217,3155,515,515,26,23,25,29,2,1,122,108,224,229,192,210,12,3,4,5,0,0,0,0,16,11 -050,01,003,Alabama,Baldwin County,8,2,10535,5326,5209,4538,4420,594,610,30,31,26,39,5,2,133,107,5082,4998,4327,4234,584,599,22,26,26,39,4,2,119,98,244,211,211,186,10,11,8,5,0,0,1,0,14,9 -050,01,003,Alabama,Baldwin County,8,3,11395,5805,5590,4903,4638,755,730,32,57,27,48,0,5,88,112,5567,5357,4687,4439,743,714,29,51,26,47,0,4,82,102,238,233,216,199,12,16,3,6,1,1,0,1,6,10 -050,01,003,Alabama,Baldwin County,8,4,11031,5651,5380,4708,4442,780,780,50,46,39,37,5,5,69,70,5432,5192,4511,4280,774,770,45,41,38,36,3,2,61,63,219,188,197,162,6,10,5,5,1,1,2,3,8,7 -050,01,003,Alabama,Baldwin County,8,5,8802,4561,4241,3778,3523,631,570,64,36,28,49,9,2,51,61,4199,4048,3450,3352,619,558,53,30,28,49,7,2,42,57,362,193,328,171,12,12,11,6,0,0,2,0,9,4 -050,01,003,Alabama,Baldwin County,8,6,9304,4605,4699,3932,4058,553,514,26,37,38,47,4,1,52,42,4193,4454,3552,3833,544,509,17,29,38,46,4,1,38,36,412,245,380,225,9,5,9,8,0,1,0,0,14,6 -050,01,003,Alabama,Baldwin County,8,7,9725,4845,4880,4237,4224,466,515,38,35,56,49,5,8,43,49,4515,4643,3931,4004,458,508,32,28,56,49,3,8,35,46,330,237,306,220,8,7,6,7,0,0,2,0,8,3 -050,01,003,Alabama,Baldwin County,8,8,10998,5347,5651,4766,4973,459,531,32,31,41,58,5,1,44,57,5161,5453,4595,4790,455,523,28,31,41,58,3,1,39,50,186,198,171,183,4,8,4,0,0,0,2,0,5,7 -050,01,003,Alabama,Baldwin County,8,9,12149,5929,6220,5246,5370,550,671,43,63,35,62,4,4,51,50,5740,6065,5071,5233,542,665,40,56,35,61,3,4,49,46,189,155,175,137,8,6,3,7,0,1,1,0,2,4 -050,01,003,Alabama,Baldwin County,8,10,12812,6173,6639,5432,5858,606,642,48,48,28,32,0,2,59,57,6025,6507,5300,5737,603,636,42,47,26,31,0,2,54,54,148,132,132,121,3,6,6,1,2,1,0,0,5,3 -050,01,003,Alabama,Baldwin County,8,11,12025,5784,6241,5174,5541,494,579,50,41,22,37,1,2,43,41,5694,6154,5093,5467,490,573,48,38,22,37,1,2,40,37,90,87,81,74,4,6,2,3,0,0,0,0,3,4 -050,01,003,Alabama,Baldwin County,8,12,11881,5715,6166,5232,5611,381,425,40,45,15,33,0,1,47,51,5627,6079,5152,5529,379,424,39,43,14,33,0,1,43,49,88,87,80,82,2,1,1,2,1,0,0,0,4,2 -050,01,003,Alabama,Baldwin County,8,13,10174,4823,5351,4446,4940,292,314,32,25,11,31,1,2,41,39,4754,5285,4382,4880,290,311,30,23,10,31,1,2,41,38,69,66,64,60,2,3,2,2,1,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,8,14,8461,4074,4387,3776,4064,225,252,25,18,7,18,0,2,41,33,4044,4352,3751,4038,222,247,24,16,7,18,0,2,40,31,30,35,25,26,3,5,1,2,0,0,0,0,1,2 -050,01,003,Alabama,Baldwin County,8,15,6855,3407,3448,3226,3185,149,212,10,13,2,26,0,0,20,12,3385,3424,3207,3162,147,211,10,13,2,26,0,0,19,12,22,24,19,23,2,1,0,0,0,0,0,0,1,0 -050,01,003,Alabama,Baldwin County,8,16,5253,2479,2774,2362,2571,94,170,3,12,3,12,1,0,16,9,2457,2745,2340,2545,94,169,3,11,3,12,1,0,16,8,22,29,22,26,0,1,0,1,0,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,8,17,3584,1461,2123,1391,2002,63,102,1,6,2,4,0,0,4,9,1450,2106,1381,1986,62,102,1,6,2,3,0,0,4,9,11,17,10,16,1,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,8,18,2696,942,1754,891,1616,42,125,3,3,1,2,0,0,5,8,931,1742,880,1605,42,125,3,3,1,1,0,0,5,8,11,12,11,11,0,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,8,99,168121,82192,85929,72400,75342,7788,8384,559,577,412,618,43,38,990,970,79202,83451,69692,73114,7686,8282,494,517,406,611,33,34,891,893,2990,2478,2708,2228,102,102,65,60,6,7,10,4,99,77 -050,01,003,Alabama,Baldwin County,9,0,2329,1158,1171,983,984,114,128,2,6,8,8,2,0,49,45,1039,1055,871,873,113,127,1,6,8,8,1,0,45,41,119,116,112,111,1,1,1,0,0,0,1,0,4,4 -050,01,003,Alabama,Baldwin County,9,1,8491,4318,4173,3594,3522,529,472,27,18,32,27,4,2,132,132,4034,3900,3344,3274,514,467,23,14,32,27,3,1,118,117,284,273,250,248,15,5,4,4,0,0,1,1,14,15 -050,01,003,Alabama,Baldwin County,9,2,10882,5442,5440,4615,4590,623,642,43,35,34,45,4,1,123,127,5168,5168,4380,4353,608,628,35,28,34,45,3,1,108,113,274,272,235,237,15,14,8,7,0,0,1,0,15,14 -050,01,003,Alabama,Baldwin County,9,3,11550,5892,5658,4965,4711,751,728,37,59,34,54,2,5,103,101,5641,5399,4740,4480,739,718,33,52,33,52,1,4,95,93,251,259,225,231,12,10,4,7,1,2,1,1,8,8 -050,01,003,Alabama,Baldwin County,9,4,11330,5796,5534,4817,4560,817,807,51,46,37,39,5,4,69,78,5544,5293,4587,4352,811,794,47,38,36,38,2,1,61,70,252,241,230,208,6,13,4,8,1,1,3,3,8,8 -050,01,003,Alabama,Baldwin County,9,5,9051,4611,4440,3849,3711,614,590,56,28,26,54,12,1,54,56,4228,4208,3503,3497,604,581,43,22,26,54,8,1,44,53,383,232,346,214,10,9,13,6,0,0,4,0,10,3 -050,01,003,Alabama,Baldwin County,9,6,9636,4757,4879,4085,4235,554,514,28,42,27,39,4,1,59,48,4372,4606,3731,3983,546,509,19,33,26,38,4,1,46,42,385,273,354,252,8,5,9,9,1,1,0,0,13,6 -050,01,003,Alabama,Baldwin County,9,7,9662,4822,4840,4229,4172,468,503,41,39,38,67,5,3,41,56,4468,4592,3900,3947,461,491,32,33,38,67,3,2,34,52,354,248,329,225,7,12,9,6,0,0,2,1,7,4 -050,01,003,Alabama,Baldwin County,9,8,11516,5611,5905,4974,5199,501,540,32,31,48,66,7,2,49,67,5369,5681,4757,4991,494,533,26,31,48,66,3,2,41,58,242,224,217,208,7,7,6,0,0,0,4,0,8,9 -050,01,003,Alabama,Baldwin County,9,9,11993,5819,6174,5174,5340,502,638,50,64,35,66,4,4,54,62,5602,6009,4974,5196,493,633,46,56,35,65,3,4,51,55,217,165,200,144,9,5,4,8,0,1,1,0,3,7 -050,01,003,Alabama,Baldwin County,9,10,12922,6279,6643,5509,5839,637,663,41,43,34,41,0,2,58,55,6139,6491,5385,5697,634,658,35,42,33,41,0,2,52,51,140,152,124,142,3,5,6,1,1,0,0,0,6,4 -050,01,003,Alabama,Baldwin County,9,11,12604,6035,6569,5370,5813,540,621,50,45,30,41,1,3,44,46,5917,6472,5266,5730,535,614,47,42,29,41,1,3,39,42,118,97,104,83,5,7,3,3,1,0,0,0,5,4 -050,01,003,Alabama,Baldwin County,9,12,11797,5629,6168,5094,5543,420,477,45,50,20,39,0,1,50,58,5541,6078,5015,5463,417,474,44,48,19,39,0,1,46,53,88,90,79,80,3,3,1,2,1,0,0,0,4,5 -050,01,003,Alabama,Baldwin County,9,13,10991,5229,5762,4864,5336,278,318,36,30,10,32,2,1,39,45,5147,5686,4787,5265,276,316,35,27,9,32,2,1,38,45,82,76,77,71,2,2,1,3,1,0,0,0,1,0 -050,01,003,Alabama,Baldwin County,9,14,8772,4222,4550,3902,4215,247,255,27,22,13,21,0,3,33,34,4189,4518,3873,4189,245,251,26,21,13,21,0,3,32,33,33,32,29,26,2,4,1,1,0,0,0,0,1,1 -050,01,003,Alabama,Baldwin County,9,15,6963,3462,3501,3267,3260,166,199,10,9,3,21,0,0,16,12,3442,3479,3249,3239,165,198,10,9,3,21,0,0,15,12,20,22,18,21,1,1,0,0,0,0,0,0,1,0 -050,01,003,Alabama,Baldwin County,9,16,5351,2515,2836,2389,2623,104,177,2,11,3,16,1,0,16,9,2493,2812,2367,2602,104,176,2,10,3,16,1,0,16,8,22,24,22,21,0,1,0,1,0,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,9,17,3727,1581,2146,1502,2011,72,110,1,6,2,7,0,0,4,12,1569,2124,1491,1990,71,110,1,6,2,6,0,0,4,12,12,22,11,21,1,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,9,18,2837,995,1842,946,1709,39,118,3,4,1,3,0,0,6,8,978,1829,929,1697,39,118,3,4,1,2,0,0,6,8,17,13,17,12,0,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,9,99,172404,84173,88231,74128,77373,7976,8500,582,588,435,686,53,33,999,1051,80880,85400,71149,74818,7869,8396,508,522,428,679,35,27,891,958,3293,2831,2979,2555,107,104,74,66,7,7,18,6,108,93 -050,01,003,Alabama,Baldwin County,10,0,2321,1158,1163,970,976,113,126,1,6,10,8,1,0,63,47,1038,1031,855,849,112,124,1,6,10,8,0,0,60,44,120,132,115,127,1,2,0,0,0,0,1,0,3,3 -050,01,003,Alabama,Baldwin County,10,1,8779,4414,4365,3694,3654,536,505,26,26,26,32,3,1,129,147,4066,4007,3379,3325,524,499,22,18,26,32,2,0,113,133,348,358,315,329,12,6,4,8,0,0,1,1,16,14 -050,01,003,Alabama,Baldwin County,10,2,11101,5630,5471,4734,4649,647,587,55,33,38,54,6,3,150,145,5307,5165,4454,4375,632,576,44,27,38,54,4,2,135,131,323,306,280,274,15,11,11,6,0,0,2,1,15,14 -050,01,003,Alabama,Baldwin County,10,3,11634,5906,5728,4995,4781,715,711,37,54,52,47,2,5,105,130,5619,5461,4737,4550,703,694,32,48,51,45,1,4,95,120,287,267,258,231,12,17,5,6,1,2,1,1,10,10 -050,01,003,Alabama,Baldwin County,10,4,11512,5880,5632,4863,4599,845,842,46,56,39,45,4,6,83,84,5590,5380,4600,4383,836,827,42,47,38,43,1,3,73,77,290,252,263,216,9,15,4,9,1,2,3,3,10,7 -050,01,003,Alabama,Baldwin County,10,5,9069,4588,4481,3814,3706,616,613,47,32,39,63,13,1,59,66,4190,4222,3455,3472,605,596,34,27,39,63,9,1,48,63,398,259,359,234,11,17,13,5,0,0,4,0,11,3 -050,01,003,Alabama,Baldwin County,10,6,9918,4989,4929,4254,4268,601,527,32,39,28,46,9,2,65,47,4540,4635,3846,3994,589,522,21,29,27,45,8,2,49,43,449,294,408,274,12,5,11,10,1,1,1,0,16,4 -050,01,003,Alabama,Baldwin County,10,7,9909,4919,4990,4313,4294,474,520,37,46,38,64,6,6,51,60,4539,4700,3963,4036,466,504,27,38,38,63,4,5,41,54,380,290,350,258,8,16,10,8,0,1,2,1,10,6 -050,01,003,Alabama,Baldwin County,10,8,11646,5693,5953,5042,5246,498,537,40,24,52,72,7,2,54,72,5407,5705,4781,5017,490,529,36,24,52,72,3,1,45,62,286,248,261,229,8,8,4,0,0,0,4,1,9,10 -050,01,003,Alabama,Baldwin County,10,9,11927,5794,6133,5159,5330,501,608,33,58,39,77,5,3,57,57,5553,5968,4939,5194,490,599,28,49,39,75,4,3,53,48,241,165,220,136,11,9,5,9,0,2,1,0,4,9 -050,01,003,Alabama,Baldwin County,10,10,13012,6313,6699,5571,5865,609,667,46,58,28,44,0,5,59,60,6177,6512,5450,5690,606,660,41,57,28,44,0,4,52,57,136,187,121,175,3,7,5,1,0,0,0,1,7,3 -050,01,003,Alabama,Baldwin County,10,11,13051,6226,6825,5505,6028,574,639,53,49,41,53,2,6,51,50,6067,6715,5358,5931,571,632,50,47,41,53,1,6,46,46,159,110,147,97,3,7,3,2,0,0,1,0,5,4 -050,01,003,Alabama,Baldwin County,10,12,11822,5618,6204,5086,5565,426,502,38,49,16,30,1,0,51,58,5522,6107,5001,5478,423,498,36,47,15,30,1,0,46,54,96,97,85,87,3,4,2,2,1,0,0,0,5,4 -050,01,003,Alabama,Baldwin County,10,13,11369,5416,5953,5018,5500,300,351,40,31,16,26,2,1,40,44,5338,5886,4945,5437,298,349,39,29,15,26,2,1,39,44,78,67,73,63,2,2,1,2,1,0,0,0,1,0 -050,01,003,Alabama,Baldwin County,10,14,9349,4509,4840,4157,4508,255,239,33,23,16,31,0,2,48,37,4474,4797,4129,4472,252,235,30,22,16,31,0,2,47,35,35,43,28,36,3,4,3,1,0,0,0,0,1,2 -050,01,003,Alabama,Baldwin County,10,15,7227,3488,3739,3309,3453,140,235,18,16,3,19,0,0,18,16,3468,3716,3290,3431,140,234,18,16,3,19,0,0,17,16,20,23,19,22,0,1,0,0,0,0,0,0,1,0 -050,01,003,Alabama,Baldwin County,10,16,5334,2519,2815,2378,2621,116,155,5,16,3,15,1,0,16,8,2503,2790,2362,2599,116,154,5,15,3,15,1,0,16,7,16,25,16,22,0,1,0,1,0,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,10,17,3872,1674,2198,1592,2045,73,132,1,7,3,5,0,0,5,9,1664,2171,1583,2019,72,132,1,7,3,4,0,0,5,9,10,27,9,26,1,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,10,18,2975,1063,1912,1019,1771,35,118,4,5,0,4,0,0,5,14,1045,1899,1001,1759,35,118,4,5,0,3,0,0,5,14,18,13,18,12,0,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,10,99,175827,85797,90030,75473,78859,8074,8614,592,628,487,735,62,43,1109,1151,82107,86867,72128,76011,7960,8482,511,558,482,725,41,34,985,1057,3690,3163,3345,2848,114,132,81,70,5,10,21,9,124,94 -050,01,003,Alabama,Baldwin County,11,0,2201,1123,1078,907,886,140,129,3,7,12,7,2,0,59,49,1009,972,804,786,136,126,1,7,12,7,1,0,55,46,114,106,103,100,4,3,2,0,0,0,1,0,4,3 -050,01,003,Alabama,Baldwin County,11,1,9047,4514,4533,3788,3814,524,487,26,35,25,31,3,2,148,164,4081,4120,3394,3435,513,479,20,29,25,31,2,1,127,145,433,413,394,379,11,8,6,6,0,0,1,1,21,19 -050,01,003,Alabama,Baldwin County,11,2,11323,5720,5603,4842,4728,629,610,55,45,34,60,6,3,154,157,5353,5252,4520,4419,613,595,44,38,34,60,4,2,138,138,367,351,322,309,16,15,11,7,0,0,2,1,16,19 -050,01,003,Alabama,Baldwin County,11,3,11776,5951,5825,5014,4843,713,733,42,53,63,69,2,4,117,123,5640,5542,4735,4599,699,715,37,46,62,67,1,3,106,112,311,283,279,244,14,18,5,7,1,2,1,1,11,11 -050,01,003,Alabama,Baldwin County,11,4,11683,5990,5693,4910,4668,874,809,57,52,45,59,5,5,99,100,5670,5426,4617,4437,864,797,54,42,44,57,2,1,89,92,320,267,293,231,10,12,3,10,1,2,3,4,10,8 -050,01,003,Alabama,Baldwin County,11,5,9197,4649,4548,3878,3744,614,640,34,32,48,67,15,2,60,63,4181,4269,3457,3491,599,622,19,27,48,67,10,2,48,60,468,279,421,253,15,18,15,5,0,0,5,0,12,3 -050,01,003,Alabama,Baldwin County,11,6,10051,5091,4960,4319,4278,625,539,50,45,28,42,6,2,63,54,4641,4643,3914,3986,614,531,36,34,27,41,4,2,46,49,450,317,405,292,11,8,14,11,1,1,2,0,17,5 -050,01,003,Alabama,Baldwin County,11,7,10412,5167,5245,4509,4550,509,515,41,46,48,61,7,10,53,63,4716,4921,4093,4257,501,499,28,39,48,60,5,9,41,57,451,324,416,293,8,16,13,7,0,1,2,1,12,6 -050,01,003,Alabama,Baldwin County,11,8,11602,5743,5859,5077,5128,510,551,39,32,50,67,6,2,61,79,5429,5604,4787,4891,503,545,35,32,50,67,2,1,52,68,314,255,290,237,7,6,4,0,0,0,4,1,9,11 -050,01,003,Alabama,Baldwin County,11,9,11857,5806,6051,5155,5255,501,589,43,61,46,85,4,6,57,55,5550,5872,4920,5104,490,582,38,50,46,83,3,6,53,47,256,179,235,151,11,7,5,11,0,2,1,0,4,8 -050,01,003,Alabama,Baldwin County,11,10,13321,6528,6793,5750,5940,627,684,65,56,32,55,0,6,54,52,6352,6602,5599,5758,624,680,52,55,30,55,0,5,47,49,176,191,151,182,3,4,13,1,2,0,0,1,7,3 -050,01,003,Alabama,Baldwin County,11,11,13336,6382,6954,5666,6146,581,638,46,45,31,58,1,4,57,63,6211,6829,5510,6038,577,631,41,41,31,58,0,4,52,57,171,125,156,108,4,7,5,4,0,0,1,0,5,6 -050,01,003,Alabama,Baldwin County,11,12,12127,5735,6392,5170,5693,445,547,45,58,23,40,1,0,51,54,5639,6292,5084,5602,442,545,43,55,23,39,1,0,46,51,96,100,86,91,3,2,2,3,0,1,0,0,5,3 -050,01,003,Alabama,Baldwin County,11,13,11700,5572,6128,5153,5654,316,367,47,30,20,28,1,2,35,47,5484,6056,5070,5589,314,364,46,28,19,28,1,2,34,45,88,72,83,65,2,3,1,2,1,0,0,0,1,2 -050,01,003,Alabama,Baldwin County,11,14,9926,4753,5173,4391,4800,276,272,43,25,15,26,0,3,28,47,4710,5119,4354,4751,273,270,41,24,15,26,0,3,27,45,43,54,37,49,3,2,2,1,0,0,0,0,1,2 -050,01,003,Alabama,Baldwin County,11,15,7405,3587,3818,3396,3551,150,218,12,13,4,15,0,0,25,21,3568,3796,3378,3530,150,217,12,13,4,15,0,0,24,21,19,22,18,21,0,1,0,0,0,0,0,0,1,0 -050,01,003,Alabama,Baldwin County,11,16,5428,2555,2873,2412,2675,120,160,6,14,3,17,1,0,13,7,2543,2844,2400,2649,120,159,6,13,3,17,1,0,13,6,12,29,12,26,0,1,0,1,0,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,11,17,3886,1694,2192,1620,2034,65,136,1,6,4,5,0,0,4,11,1682,2170,1609,2013,64,136,1,6,4,4,0,0,4,11,12,22,11,21,1,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,11,18,3128,1141,1987,1090,1860,38,107,5,5,1,4,0,0,7,11,1128,1974,1077,1848,38,107,5,5,1,3,0,0,7,11,13,13,13,12,0,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,11,99,179406,87701,91705,77047,80247,8257,8731,660,660,532,796,60,51,1145,1220,83587,88303,73322,77183,8134,8600,559,584,526,785,37,41,1009,1110,4114,3402,3725,3064,123,131,101,76,6,11,23,10,136,110 -050,01,003,Alabama,Baldwin County,12,0,2103,1067,1036,869,856,130,128,3,8,14,8,2,0,49,36,970,942,784,769,125,124,1,8,14,8,1,0,45,33,97,94,85,87,5,4,2,0,0,0,1,0,4,3 -050,01,003,Alabama,Baldwin County,12,1,9055,4547,4508,3797,3780,543,488,27,34,25,33,3,2,152,171,4095,4104,3386,3410,531,482,21,26,25,33,2,1,130,152,452,404,411,370,12,6,6,8,0,0,1,1,22,19 -050,01,003,Alabama,Baldwin County,12,2,11599,5832,5767,4959,4885,630,611,50,38,31,64,7,3,155,166,5430,5383,4601,4539,617,600,38,30,31,64,5,2,138,148,402,384,358,346,13,11,12,8,0,0,2,1,17,18 -050,01,003,Alabama,Baldwin County,12,3,11926,6076,5850,5128,4856,709,725,51,53,59,61,2,6,127,149,5743,5546,4829,4592,693,709,46,46,58,59,1,5,116,135,333,304,299,264,16,16,5,7,1,2,1,1,11,14 -050,01,003,Alabama,Baldwin County,12,4,11600,5930,5670,4860,4636,863,818,53,50,47,64,6,7,101,95,5604,5407,4562,4412,855,805,49,40,46,62,2,3,90,85,326,263,298,224,8,13,4,10,1,2,4,4,11,10 -050,01,003,Alabama,Baldwin County,12,5,9449,4793,4656,3991,3830,645,660,39,33,39,69,15,1,64,63,4270,4341,3516,3542,630,643,23,27,39,69,10,1,52,59,523,315,475,288,15,17,16,6,0,0,5,0,12,4 -050,01,003,Alabama,Baldwin County,12,6,10247,5183,5064,4425,4362,617,543,34,43,32,54,10,2,65,60,4659,4719,3949,4040,605,538,20,32,31,53,8,2,46,54,524,345,476,322,12,5,14,11,1,1,2,0,19,6 -050,01,003,Alabama,Baldwin County,12,7,10709,5317,5392,4615,4667,546,543,42,47,42,59,8,8,64,68,4859,5065,4193,4368,536,532,29,39,42,58,6,7,53,61,458,327,422,299,10,11,13,8,0,1,2,1,11,7 -050,01,003,Alabama,Baldwin County,12,8,11558,5725,5833,5051,5065,508,572,44,33,54,78,8,2,60,83,5387,5570,4738,4823,500,563,40,33,54,78,4,1,51,72,338,263,313,242,8,9,4,0,0,0,4,1,9,11 -050,01,003,Alabama,Baldwin County,12,9,11995,5895,6100,5239,5324,500,562,40,63,55,86,5,5,56,60,5618,5895,4985,5150,487,554,35,51,55,84,3,5,53,51,277,205,254,174,13,8,5,12,0,2,2,0,3,9 -050,01,003,Alabama,Baldwin County,12,10,13431,6622,6809,5822,5924,642,699,62,59,36,66,0,5,60,56,6415,6614,5640,5742,639,693,50,58,34,65,0,4,52,52,207,195,182,182,3,6,12,1,2,1,0,1,8,4 -050,01,003,Alabama,Baldwin County,12,11,13490,6425,7065,5671,6236,601,655,54,56,34,46,2,4,63,68,6246,6916,5508,6105,597,648,49,51,33,46,1,4,58,62,179,149,163,131,4,7,5,5,1,0,1,0,5,6 -050,01,003,Alabama,Baldwin County,12,12,12523,5943,6580,5347,5870,474,562,41,48,27,47,1,0,53,53,5839,6489,5254,5790,471,559,39,45,26,46,1,0,48,49,104,91,93,80,3,3,2,3,1,1,0,0,5,4 -050,01,003,Alabama,Baldwin County,12,13,12012,5728,6284,5279,5780,350,393,42,40,18,24,2,2,37,45,5632,6208,5188,5713,348,390,41,36,17,24,2,2,36,43,96,76,91,67,2,3,1,4,1,0,0,0,1,2 -050,01,003,Alabama,Baldwin County,12,14,10174,4895,5279,4535,4900,261,291,47,26,15,24,0,2,37,36,4850,5222,4496,4849,258,288,45,25,15,24,0,2,36,34,45,57,39,51,3,3,2,1,0,0,0,0,1,2 -050,01,003,Alabama,Baldwin County,12,15,7629,3663,3966,3456,3678,165,238,17,18,4,14,0,0,21,18,3637,3936,3431,3649,165,237,17,18,4,14,0,0,20,18,26,30,25,29,0,1,0,0,0,0,0,0,1,0 -050,01,003,Alabama,Baldwin County,12,16,5598,2644,2954,2503,2750,107,158,11,14,3,22,1,0,19,10,2630,2927,2490,2726,107,157,10,13,3,22,1,0,19,9,14,27,13,24,0,1,1,1,0,0,0,0,0,1 -050,01,003,Alabama,Baldwin County,12,17,3934,1735,2199,1662,2051,64,122,1,9,4,6,0,0,4,11,1724,2174,1652,2027,63,122,1,9,4,5,0,0,4,11,11,25,10,24,1,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,12,18,3233,1176,2057,1125,1926,41,110,4,5,1,4,0,0,5,12,1163,2044,1112,1914,41,110,4,5,1,3,0,0,5,12,13,13,13,12,0,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,12,99,182265,89196,93069,78334,81376,8396,8878,662,677,540,829,72,49,1192,1260,84771,89502,74314,78160,8268,8754,558,592,532,817,47,39,1052,1140,4425,3567,4020,3216,128,124,104,85,8,12,25,10,140,120 -050,01,003,Alabama,Baldwin County,13,0,2112,1071,1041,872,859,131,129,3,8,14,9,2,0,49,36,973,945,787,772,126,124,1,8,14,8,0,0,45,33,98,96,85,87,5,5,2,0,0,1,2,0,4,3 -050,01,003,Alabama,Baldwin County,13,1,9079,4556,4523,3799,3783,546,494,25,32,27,35,4,3,155,176,4098,4111,3384,3410,535,487,20,24,26,34,2,1,131,155,458,412,415,373,11,7,5,8,1,1,2,2,24,21 -050,01,003,Alabama,Baldwin County,13,2,11644,5864,5780,4975,4895,634,612,52,38,33,64,8,3,162,168,5452,5397,4613,4547,620,602,39,30,32,64,6,3,142,151,412,383,362,348,14,10,13,8,1,0,2,0,20,17 -050,01,003,Alabama,Baldwin County,13,3,11964,6094,5870,5142,4869,710,728,50,51,59,62,3,6,130,154,5759,5562,4839,4601,695,712,45,45,59,60,2,6,119,138,335,308,303,268,15,16,5,6,0,2,1,0,11,16 -050,01,003,Alabama,Baldwin County,13,4,11575,5916,5659,4849,4625,863,820,53,48,47,65,5,5,99,96,5587,5393,4550,4399,855,806,47,38,46,63,1,2,88,85,329,266,299,226,8,14,6,10,1,2,4,3,11,11 -050,01,003,Alabama,Baldwin County,13,5,9507,4820,4687,4011,3852,654,667,41,35,39,72,14,2,61,59,4294,4367,3533,3562,639,650,24,27,39,71,10,1,49,56,526,320,478,290,15,17,17,8,0,1,4,1,12,3 -050,01,003,Alabama,Baldwin County,13,6,10330,5234,5096,4463,4387,623,547,33,44,38,55,11,2,66,61,4703,4748,3983,4062,611,542,19,32,34,54,9,2,47,56,531,348,480,325,12,5,14,12,4,1,2,0,19,5 -050,01,003,Alabama,Baldwin County,13,7,10826,5370,5456,4663,4718,554,551,41,48,42,59,7,10,63,70,4911,5127,4239,4419,543,539,29,39,42,58,6,8,52,64,459,329,424,299,11,12,12,9,0,1,1,2,11,6 -050,01,003,Alabama,Baldwin County,13,8,11521,5705,5816,5030,5040,509,576,42,32,55,80,7,3,62,85,5365,5546,4713,4795,501,565,38,32,55,80,4,1,54,73,340,270,317,245,8,11,4,0,0,0,3,2,8,12 -050,01,003,Alabama,Baldwin County,13,9,12035,5916,6119,5254,5337,502,565,39,66,56,85,5,6,60,60,5635,5909,4998,5162,489,557,34,51,56,83,2,5,56,51,281,210,256,175,13,8,5,15,0,2,3,1,4,9 -050,01,003,Alabama,Baldwin County,13,10,13426,6620,6806,5818,5918,644,702,63,58,36,66,0,5,59,57,6410,6607,5633,5734,641,694,51,57,34,65,0,4,51,53,210,199,185,184,3,8,12,1,2,1,0,1,8,4 -050,01,003,Alabama,Baldwin County,13,11,13569,6460,7109,5700,6269,606,661,54,57,35,46,3,4,62,72,6282,6960,5537,6138,602,654,49,51,34,46,2,4,58,67,178,149,163,131,4,7,5,6,1,0,1,0,4,5 -050,01,003,Alabama,Baldwin County,13,12,12639,5997,6642,5395,5925,479,567,42,50,27,47,1,0,53,53,5894,6550,5302,5844,476,564,40,47,26,46,1,0,49,49,103,92,93,81,3,3,2,3,1,1,0,0,4,4 -050,01,003,Alabama,Baldwin County,13,13,12176,5808,6368,5352,5857,358,402,42,39,18,24,2,2,36,44,5711,6292,5260,5790,356,398,41,36,17,24,2,2,35,42,97,76,92,67,2,4,1,3,1,0,0,0,1,2 -050,01,003,Alabama,Baldwin County,13,14,10278,4945,5333,4583,4948,263,295,46,28,15,24,0,2,38,36,4900,5274,4544,4897,260,290,44,27,15,24,0,2,37,34,45,59,39,51,3,5,2,1,0,0,0,0,1,2 -050,01,003,Alabama,Baldwin County,13,15,7697,3696,4001,3487,3709,168,239,18,19,4,13,0,0,19,21,3670,3970,3461,3680,168,237,18,19,4,13,0,0,19,21,26,31,26,29,0,2,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,13,16,5599,2643,2956,2507,2753,106,160,9,13,3,22,0,0,18,8,2631,2930,2495,2729,106,159,9,12,3,22,0,0,18,8,12,26,12,24,0,1,0,1,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,13,17,3954,1751,2203,1677,2057,64,124,3,7,4,7,0,0,3,8,1738,2178,1665,2032,63,124,3,7,4,7,0,0,3,8,13,25,12,25,1,0,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,13,18,3264,1189,2075,1138,1942,41,112,4,5,1,4,0,0,5,12,1176,2062,1125,1930,41,112,4,5,1,3,0,0,5,12,13,13,13,12,0,0,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,13,99,183195,89655,93540,78715,81743,8455,8951,660,678,553,839,72,53,1200,1276,85189,89928,74661,78503,8327,8816,555,587,541,825,47,41,1058,1156,4466,3612,4054,3240,128,135,105,91,12,14,25,12,142,120 -050,01,005,Alabama,Barbour County,1,0,354,185,169,85,77,100,90,0,0,0,0,0,0,0,2,183,165,84,74,99,89,0,0,0,0,0,0,0,2,2,4,1,3,1,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,1,1434,745,689,335,270,403,403,0,3,1,3,0,0,6,10,730,676,322,262,401,400,0,2,1,3,0,0,6,9,15,13,13,8,2,3,0,1,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,1,2,2056,1075,981,472,397,585,568,3,2,2,4,1,1,12,9,1062,973,465,393,580,564,2,2,2,4,1,1,12,9,13,8,7,4,5,4,1,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,3,2156,1081,1075,455,469,609,597,9,5,4,0,0,0,4,4,1071,1064,448,463,606,593,9,4,4,0,0,0,4,4,10,11,7,6,3,4,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,4,2148,1117,1031,481,452,620,568,5,3,2,2,0,0,9,6,1089,1013,457,437,617,566,5,2,2,2,0,0,8,6,28,18,24,15,3,2,0,1,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,1,5,1929,1184,745,539,327,622,410,12,4,3,1,0,0,8,3,1120,721,482,307,618,407,10,3,3,1,0,0,7,3,64,24,57,20,4,3,2,1,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,1,6,2058,1229,829,614,400,585,421,8,0,7,7,1,0,14,1,1159,819,556,390,575,421,7,0,7,7,0,0,14,1,70,10,58,10,10,0,1,0,0,0,1,0,0,0 -050,01,005,Alabama,Barbour County,1,7,2008,1156,852,596,418,533,421,9,3,6,5,1,1,11,4,1117,836,564,408,527,416,9,3,6,5,0,0,11,4,39,16,32,10,6,5,0,0,0,0,1,1,0,0 -050,01,005,Alabama,Barbour County,1,8,2350,1309,1041,684,518,591,511,14,2,7,6,0,0,13,4,1274,1029,657,508,587,509,13,2,4,6,0,0,13,4,35,12,27,10,4,2,1,0,3,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,9,2185,1192,993,650,522,516,461,11,3,3,3,1,2,11,2,1178,988,639,520,513,458,11,3,3,3,1,2,11,2,14,5,11,2,3,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,10,1956,986,970,545,509,432,450,5,4,1,3,0,0,3,4,977,963,539,505,429,448,5,3,1,3,0,0,3,4,9,7,6,4,3,2,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,11,1970,1002,968,615,555,375,400,3,3,2,5,0,0,7,5,989,965,605,553,372,399,3,3,2,5,0,0,7,5,13,3,10,2,3,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,12,1423,696,727,472,460,217,258,2,3,2,3,0,1,3,2,689,723,467,457,216,258,1,2,2,3,0,1,3,2,7,4,5,3,1,0,1,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,13,1141,534,607,384,401,146,200,2,3,0,1,0,0,2,2,531,606,382,401,145,200,2,3,0,1,0,0,2,1,3,1,2,0,1,0,0,0,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,1,14,1061,493,568,353,360,135,202,4,1,1,1,0,0,0,4,491,566,351,358,135,202,4,1,1,1,0,0,0,4,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,15,978,400,578,290,325,110,249,0,1,0,0,0,0,0,3,396,574,288,324,108,246,0,1,0,0,0,0,0,3,4,4,2,1,2,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,16,806,288,518,198,345,88,169,1,2,1,0,0,0,0,2,288,515,198,342,88,169,1,2,1,0,0,0,0,2,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,17,517,179,338,104,215,74,119,0,0,0,1,0,0,1,3,179,337,104,215,74,119,0,0,0,1,0,0,1,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,1,18,512,123,389,60,219,62,169,0,1,0,0,0,0,1,0,122,386,59,219,62,166,0,1,0,0,0,0,1,0,1,3,1,0,0,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,99,29042,14974,14068,7932,7239,6803,6666,88,43,42,45,4,5,105,70,14645,13919,7667,7136,6752,6630,82,37,39,45,2,4,103,67,329,149,265,103,51,36,6,6,3,0,2,1,2,3 -050,01,005,Alabama,Barbour County,2,0,356,186,170,85,77,101,91,0,0,0,0,0,0,0,2,184,166,84,74,100,90,0,0,0,0,0,0,0,2,2,4,1,3,1,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,1,1425,740,685,330,268,402,401,0,3,1,3,0,0,7,10,725,672,317,260,400,398,0,2,1,3,0,0,7,9,15,13,13,8,2,3,0,1,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,2,2,2035,1063,972,464,392,581,564,3,2,2,4,1,1,12,9,1050,964,457,388,576,560,2,2,2,4,1,1,12,9,13,8,7,4,5,4,1,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,3,2161,1083,1078,453,468,613,600,9,5,4,0,0,0,4,5,1073,1067,446,462,610,596,9,4,4,0,0,0,4,5,10,11,7,6,3,4,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,4,2147,1117,1030,482,451,619,568,5,3,2,2,0,0,9,6,1089,1012,458,436,616,566,5,2,2,2,0,0,8,6,28,18,24,15,3,2,0,1,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,2,5,1933,1183,750,538,329,622,413,12,4,3,1,0,0,8,3,1119,726,481,309,618,410,10,3,3,1,0,0,7,3,64,24,57,20,4,3,2,1,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,2,6,2041,1220,821,608,394,582,419,8,0,7,7,1,0,14,1,1150,811,550,384,572,419,7,0,7,7,0,0,14,1,70,10,58,10,10,0,1,0,0,0,1,0,0,0 -050,01,005,Alabama,Barbour County,2,7,2008,1157,851,595,417,535,421,9,3,6,5,1,1,11,4,1118,835,563,407,529,416,9,3,6,5,0,0,11,4,39,16,32,10,6,5,0,0,0,0,1,1,0,0 -050,01,005,Alabama,Barbour County,2,8,2340,1303,1037,679,515,590,510,14,2,7,6,0,0,13,4,1268,1025,652,505,586,508,13,2,4,6,0,0,13,4,35,12,27,10,4,2,1,0,3,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,9,2182,1190,992,648,520,516,462,11,3,3,3,1,2,11,2,1176,987,637,518,513,459,11,3,3,3,1,2,11,2,14,5,11,2,3,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,10,1963,989,974,546,511,434,452,5,4,1,3,0,0,3,4,980,967,540,507,431,450,5,3,1,3,0,0,3,4,9,7,6,4,3,2,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,11,1987,1011,976,619,558,380,405,3,3,2,5,0,0,7,5,998,973,609,556,377,404,3,3,2,5,0,0,7,5,13,3,10,2,3,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,12,1427,699,728,474,461,218,258,2,3,2,3,0,1,3,2,692,724,469,458,217,258,1,2,2,3,0,1,3,2,7,4,5,3,1,0,1,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,13,1141,534,607,384,401,146,200,2,3,0,1,0,0,2,2,531,606,382,401,145,200,2,3,0,1,0,0,2,1,3,1,2,0,1,0,0,0,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,2,14,1053,490,563,350,356,135,201,4,1,1,1,0,0,0,4,488,561,348,354,135,201,4,1,1,1,0,0,0,4,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,15,973,399,574,289,322,110,248,0,1,0,0,0,0,0,3,395,570,287,321,108,245,0,1,0,0,0,0,0,3,4,4,2,1,2,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,16,806,287,519,197,345,88,170,1,2,1,0,0,0,0,2,287,516,197,342,88,170,1,2,1,0,0,0,0,2,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,17,522,181,341,106,217,74,120,0,0,0,1,0,0,1,3,181,340,106,217,74,120,0,0,0,1,0,0,1,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,2,18,515,122,393,60,223,61,169,0,1,0,0,0,0,1,0,121,390,59,223,61,166,0,1,0,0,0,0,1,0,1,3,1,0,0,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,99,29015,14954,14061,7907,7225,6807,6672,88,43,42,45,4,5,106,71,14625,13912,7642,7122,6756,6636,82,37,39,45,2,4,104,68,329,149,265,103,51,36,6,6,3,0,2,1,2,3 -050,01,005,Alabama,Barbour County,3,0,420,214,206,110,81,102,123,0,0,0,0,0,0,2,2,194,198,93,74,99,122,0,0,0,0,0,0,2,2,20,8,17,7,3,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,1,1438,754,684,331,297,415,371,0,3,1,3,0,0,7,10,733,665,312,283,413,368,0,2,1,3,0,0,7,9,21,19,19,14,2,3,0,1,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,3,2,1937,998,939,431,369,549,551,2,2,2,4,0,1,14,12,982,924,421,358,544,547,1,2,2,4,0,1,14,12,16,15,10,11,5,4,1,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,3,2123,1067,1056,451,452,600,595,8,5,4,0,0,0,4,4,1057,1043,444,444,597,591,8,4,4,0,0,0,4,4,10,13,7,8,3,4,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,4,2115,1089,1026,474,434,599,581,5,3,2,2,0,0,9,6,1058,1008,446,419,597,579,5,2,2,2,0,0,8,6,31,18,28,15,2,2,0,1,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,3,5,1947,1187,760,512,335,652,417,12,4,3,1,0,0,8,3,1127,729,459,308,648,414,10,3,3,1,0,0,7,3,60,31,53,27,4,3,2,1,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,3,6,1947,1169,778,589,402,550,367,9,1,7,7,1,0,13,1,1087,756,520,381,541,367,6,0,7,7,0,0,13,1,82,22,69,21,9,0,3,1,0,0,1,0,0,0 -050,01,005,Alabama,Barbour County,3,7,2033,1167,866,613,426,526,427,10,3,6,5,1,1,11,4,1108,845,562,410,520,423,9,3,6,5,0,0,11,4,59,21,51,16,6,4,1,0,0,0,1,1,0,0 -050,01,005,Alabama,Barbour County,3,8,2273,1257,1016,637,506,587,498,13,2,8,6,0,0,12,4,1232,999,620,491,583,496,12,2,5,6,0,0,12,4,25,17,17,15,4,2,1,0,3,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,9,2120,1155,965,629,499,500,456,11,3,3,3,1,2,11,2,1133,955,610,492,497,453,11,3,3,3,1,2,11,2,22,10,19,7,3,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,10,2038,1039,999,581,539,449,449,5,4,1,3,0,0,3,4,1028,990,573,533,446,447,5,3,1,3,0,0,3,4,11,9,8,6,3,2,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,11,1976,1018,958,603,531,403,414,3,3,2,5,0,0,7,5,1007,954,595,529,400,412,3,3,2,5,0,0,7,5,11,4,8,2,3,2,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,12,1514,739,775,497,486,235,280,2,3,2,3,0,1,3,2,732,770,492,482,234,280,1,2,2,3,0,1,3,2,7,5,5,4,1,0,1,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,13,1158,556,602,397,392,155,202,2,3,0,2,0,0,2,3,553,601,395,392,154,202,2,3,0,2,0,0,2,2,3,1,2,0,1,0,0,0,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,3,14,1056,486,570,355,359,126,205,4,1,1,1,0,0,0,4,484,567,353,356,126,205,4,1,1,1,0,0,0,4,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,15,973,408,565,291,344,117,217,0,1,0,0,0,0,0,3,404,561,289,343,115,214,0,1,0,0,0,0,0,3,4,4,2,1,2,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,16,780,290,490,201,301,87,185,1,2,1,0,0,0,0,2,290,487,201,298,87,185,1,2,1,0,0,0,0,2,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,17,520,178,342,112,221,65,117,0,0,0,1,0,0,1,3,178,341,112,221,65,117,0,0,0,1,0,0,1,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,3,18,495,122,373,64,214,57,158,0,1,0,0,0,0,1,0,121,370,63,214,57,155,0,1,0,0,0,0,1,0,1,3,1,0,0,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,99,28863,14893,13970,7878,7188,6774,6613,87,44,43,46,3,5,108,74,14508,13763,7560,7028,6723,6577,78,37,40,46,1,4,106,71,385,207,318,160,51,36,9,7,3,0,2,1,2,3 -050,01,005,Alabama,Barbour County,4,0,364,187,177,98,82,87,93,0,0,0,0,0,0,2,2,171,158,83,64,86,92,0,0,0,0,0,0,2,2,16,19,15,18,1,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,1,1423,732,691,325,291,398,382,1,5,1,3,0,0,7,10,704,664,301,272,395,378,0,2,1,3,0,0,7,9,28,27,24,19,3,4,1,3,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,4,2,1891,987,904,407,364,563,523,2,2,2,4,1,1,12,10,970,885,396,348,558,520,1,2,2,4,1,1,12,10,17,19,11,16,5,3,1,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,3,2074,1028,1046,439,431,572,605,8,4,4,1,0,0,5,5,1014,1031,428,420,569,602,8,3,4,1,0,0,5,5,14,15,11,11,3,3,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,4,2062,1072,990,470,417,584,561,6,4,3,2,0,1,9,5,1038,969,440,400,582,559,5,3,3,2,0,0,8,5,34,21,30,17,2,2,1,1,0,0,0,1,1,0 -050,01,005,Alabama,Barbour County,4,5,1988,1200,788,508,345,666,433,14,6,3,1,0,0,9,3,1127,752,445,315,662,430,9,3,3,1,0,0,8,3,73,36,63,30,4,3,5,3,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,4,6,1873,1166,707,569,347,564,350,10,2,6,7,3,0,14,1,1075,681,491,324,557,349,6,0,6,7,1,0,14,1,91,26,78,23,7,1,4,2,0,0,2,0,0,0 -050,01,005,Alabama,Barbour County,4,7,2053,1213,840,611,416,577,412,9,3,6,5,1,0,9,4,1150,815,556,395,571,408,8,3,6,5,0,0,9,4,63,25,55,21,6,4,1,0,0,0,1,0,0,0 -050,01,005,Alabama,Barbour County,4,8,2207,1235,972,623,464,578,496,12,2,9,6,0,0,13,4,1204,951,599,445,574,494,11,2,7,6,0,0,13,4,31,21,24,19,4,2,1,0,2,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,9,2131,1149,982,606,495,519,475,10,4,3,3,1,2,10,3,1122,972,582,488,516,472,10,4,3,3,1,2,10,3,27,10,24,7,3,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,10,2045,1077,968,595,513,472,444,6,4,1,3,0,0,3,4,1065,957,587,505,468,442,6,3,1,3,0,0,3,4,12,11,8,8,4,2,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,11,1991,1031,960,604,524,414,424,3,2,3,5,0,0,7,5,1019,954,595,520,411,422,3,2,3,5,0,0,7,5,12,6,9,4,3,2,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,12,1632,801,831,531,507,263,314,2,3,2,4,0,1,3,2,792,825,524,502,262,314,1,2,2,4,0,1,3,2,9,6,7,5,1,0,1,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,13,1159,551,608,375,397,172,202,2,3,0,3,0,0,2,3,548,607,373,397,171,202,2,3,0,3,0,0,2,2,3,1,2,0,1,0,0,0,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,4,14,1034,484,550,360,348,119,196,3,1,2,1,0,0,0,4,482,548,358,346,119,196,3,1,2,1,0,0,0,4,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,15,978,407,571,288,349,119,218,0,1,0,0,0,0,0,3,403,567,286,348,117,215,0,1,0,0,0,0,0,3,4,4,2,1,2,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,16,753,306,447,215,265,89,178,1,2,1,0,0,0,0,2,306,444,215,262,89,178,1,2,1,0,0,0,0,2,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,17,535,174,361,107,233,65,124,0,0,0,1,0,0,2,3,174,360,107,233,65,124,0,0,0,1,0,0,2,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,4,18,460,120,340,68,207,51,132,0,1,0,0,0,0,1,0,119,339,67,207,51,131,0,1,0,0,0,0,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,99,28653,14920,13733,7799,6995,6872,6562,89,49,46,49,6,5,108,73,14483,13479,7433,6791,6823,6528,74,37,44,49,3,4,106,70,437,254,366,204,49,34,15,12,2,0,3,1,2,3 -050,01,005,Alabama,Barbour County,5,0,346,172,174,74,94,96,79,0,0,1,0,0,0,1,1,154,145,57,66,95,78,0,0,1,0,0,0,1,1,18,29,17,28,1,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,5,1,1383,719,664,336,283,373,365,2,5,1,2,0,0,7,9,684,626,307,253,369,361,0,2,1,2,0,0,7,8,35,38,29,30,4,4,2,3,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,5,2,1780,926,854,375,349,534,488,2,2,3,4,0,1,12,10,905,831,360,330,529,484,1,2,3,4,0,1,12,10,21,23,15,19,5,4,1,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,5,3,2108,1061,1047,459,434,587,600,6,4,4,2,0,0,5,7,1048,1029,449,420,584,597,6,3,4,2,0,0,5,7,13,18,10,14,3,3,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,5,4,2012,1036,976,457,393,560,569,5,4,3,2,0,1,11,7,998,955,424,377,558,566,4,3,3,2,0,0,9,7,38,21,33,16,2,3,1,1,0,0,0,1,2,0 -050,01,005,Alabama,Barbour County,5,5,2032,1225,807,484,361,711,433,15,7,4,1,3,2,8,3,1151,766,422,327,707,430,9,3,4,1,2,2,7,3,74,41,62,34,4,3,6,4,0,0,1,0,1,0 -050,01,005,Alabama,Barbour County,5,6,1868,1190,678,579,318,575,349,11,3,7,7,3,0,15,1,1096,645,502,290,566,347,5,0,7,7,1,0,15,1,94,33,77,28,9,2,6,3,0,0,2,0,0,0 -050,01,005,Alabama,Barbour County,5,7,2080,1231,849,597,424,606,413,9,3,6,6,1,0,12,3,1165,817,540,396,600,409,7,3,6,6,0,0,12,3,66,32,57,28,6,4,2,0,0,0,1,0,0,0 -050,01,005,Alabama,Barbour County,5,8,2102,1220,882,601,423,585,449,13,2,9,5,0,0,12,3,1182,858,573,401,581,447,10,2,6,5,0,0,12,3,38,24,28,22,4,2,3,0,3,0,0,0,0,0 -050,01,005,Alabama,Barbour County,5,9,2205,1191,1014,646,515,523,486,8,4,3,3,1,3,10,3,1165,1003,623,509,520,482,8,4,3,3,1,2,10,3,26,11,23,6,3,4,0,0,0,0,0,1,0,0 -050,01,005,Alabama,Barbour County,5,10,2053,1113,940,610,504,493,425,6,3,1,4,0,0,3,4,1100,928,601,494,489,423,6,3,1,4,0,0,3,4,13,12,9,10,4,2,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,5,11,1972,1026,946,596,487,414,447,4,2,3,5,0,0,9,5,1013,940,588,483,411,445,3,2,3,5,0,0,8,5,13,6,8,4,3,2,1,0,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,5,12,1728,855,873,565,532,283,329,2,4,2,4,0,1,3,3,845,868,557,528,282,329,1,3,2,4,0,1,3,3,10,5,8,4,1,0,1,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,5,13,1223,599,624,401,414,193,199,3,3,0,3,0,0,2,5,594,622,398,413,191,199,3,3,0,3,0,0,2,4,5,2,3,1,2,0,0,0,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,5,14,1022,461,561,336,357,118,200,3,0,3,1,0,0,1,3,459,558,334,354,118,200,3,0,3,1,0,0,1,3,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,5,15,938,418,520,291,321,127,195,0,1,0,0,0,0,0,3,415,516,289,320,126,192,0,1,0,0,0,0,0,3,3,4,2,1,1,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,5,16,775,306,469,223,279,81,187,1,1,1,0,0,0,0,2,306,466,223,276,81,187,1,1,1,0,0,0,0,2,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,5,17,538,159,379,100,233,58,143,0,0,0,0,0,0,1,3,159,377,100,233,58,142,0,0,0,0,0,0,1,2,0,2,0,0,0,1,0,0,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,5,18,429,113,316,69,200,42,114,0,1,1,1,0,0,1,0,112,315,68,200,42,113,0,1,1,1,0,0,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,5,99,28594,15021,13573,7799,6921,6959,6470,90,49,52,50,8,8,113,75,14551,13265,7415,6670,6907,6431,67,36,49,50,4,6,109,72,470,308,384,251,52,39,23,13,3,0,4,2,4,3 -050,01,005,Alabama,Barbour County,6,0,297,156,141,75,71,78,69,0,0,1,0,0,0,2,1,130,119,50,50,77,68,0,0,1,0,0,0,2,1,26,22,25,21,1,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,6,1,1458,727,731,329,332,385,381,3,5,1,2,0,0,9,11,686,670,293,278,383,378,0,2,1,2,0,0,9,10,41,61,36,54,2,3,3,3,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,6,2,1707,909,798,363,321,529,462,2,2,3,4,0,0,12,9,883,769,343,297,524,457,1,2,3,4,0,0,12,9,26,29,20,24,5,5,1,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,6,3,1955,1001,954,439,393,546,549,6,5,4,1,0,0,6,6,988,940,429,384,543,546,6,3,4,1,0,0,6,6,13,14,10,9,3,3,0,2,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,6,4,1977,997,980,431,411,545,555,7,4,4,2,0,1,10,7,955,956,394,392,543,552,5,3,4,2,0,0,9,7,42,24,37,19,2,3,2,1,0,0,0,1,1,0 -050,01,005,Alabama,Barbour County,6,5,2008,1202,806,470,356,700,437,16,7,4,1,3,2,9,3,1132,760,412,317,696,434,10,3,4,1,2,2,8,3,70,46,58,39,4,3,6,4,0,0,1,0,1,0 -050,01,005,Alabama,Barbour County,6,6,1846,1165,681,552,315,575,354,12,4,7,7,3,0,16,1,1058,638,462,278,567,352,5,0,7,7,1,0,16,1,107,43,90,37,8,2,7,4,0,0,2,0,0,0 -050,01,005,Alabama,Barbour County,6,7,2079,1256,823,614,419,612,391,10,4,7,6,1,0,12,3,1176,789,544,389,606,388,7,3,7,6,0,0,12,3,80,34,70,30,6,3,3,1,0,0,1,0,0,0 -050,01,005,Alabama,Barbour County,6,8,1967,1132,835,557,392,545,433,12,2,9,5,0,0,9,3,1105,810,540,370,541,430,9,2,6,5,0,0,9,3,27,25,17,22,4,3,3,0,3,0,0,0,0,0 -050,01,005,Alabama,Barbour County,6,9,2221,1220,1001,644,501,555,488,8,4,2,3,1,2,10,3,1192,989,620,494,551,484,8,4,2,3,1,1,10,3,28,12,24,7,4,4,0,0,0,0,0,1,0,0 -050,01,005,Alabama,Barbour County,6,10,2034,1093,941,596,496,487,432,6,5,1,4,0,0,3,4,1078,928,587,487,481,430,6,4,1,4,0,0,3,3,15,13,9,9,6,2,0,1,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,6,11,1950,1010,940,576,480,418,448,4,2,3,5,0,1,9,4,996,933,567,476,415,445,3,2,3,5,0,1,8,4,14,7,9,4,3,3,1,0,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,6,12,1784,906,878,582,505,318,361,1,4,1,4,0,1,4,3,895,872,574,500,316,361,0,3,1,4,0,1,4,3,11,6,8,5,2,0,1,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,6,13,1279,614,665,414,437,194,218,3,3,0,3,0,0,3,4,609,663,411,436,192,218,3,3,0,3,0,0,3,3,5,2,3,1,2,0,0,0,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,6,14,1065,497,568,354,364,138,199,1,1,3,1,0,0,1,3,494,565,351,361,138,199,1,1,3,1,0,0,1,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,6,15,892,378,514,273,320,105,191,0,1,0,0,0,0,0,2,373,510,271,319,102,188,0,1,0,0,0,0,0,2,5,4,2,1,3,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,6,16,773,309,464,224,284,82,176,1,1,1,0,0,1,1,2,309,461,224,281,82,176,1,1,1,0,0,1,1,2,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,6,17,593,175,418,114,260,57,156,2,0,0,0,0,0,2,2,175,416,114,259,57,155,2,0,0,0,0,0,2,2,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,6,18,402,107,295,66,175,39,118,0,1,1,1,0,0,1,0,106,294,65,175,39,117,0,1,1,1,0,0,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,6,99,28287,14854,13433,7673,6832,6908,6418,94,55,52,49,8,8,119,71,14340,13082,7251,6543,6853,6378,67,38,49,49,4,6,116,68,514,351,422,289,55,40,27,17,3,0,4,2,3,3 -050,01,005,Alabama,Barbour County,7,0,356,178,178,84,103,91,72,0,1,1,0,0,0,2,2,157,146,64,73,90,71,0,0,1,0,0,0,2,2,21,32,20,30,1,1,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,7,1,1422,706,716,343,307,352,394,3,3,1,3,1,0,6,9,637,657,281,254,349,391,0,0,1,3,1,0,5,9,69,59,62,53,3,3,3,3,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,7,2,1592,833,759,330,316,489,433,1,0,5,3,1,1,7,6,804,725,305,289,485,428,1,0,5,3,1,0,7,5,29,34,25,27,4,5,0,0,0,0,0,1,0,1 -050,01,005,Alabama,Barbour County,7,3,1929,978,951,441,386,520,550,7,2,4,3,0,1,6,9,961,925,428,367,518,545,5,1,4,3,0,0,6,9,17,26,13,19,2,5,2,1,0,0,0,1,0,0 -050,01,005,Alabama,Barbour County,7,4,1909,960,949,418,411,518,522,9,6,4,1,2,2,9,7,914,922,380,390,515,520,7,4,4,1,1,0,7,7,46,27,38,21,3,2,2,2,0,0,1,2,2,0 -050,01,005,Alabama,Barbour County,7,5,1983,1207,776,480,333,690,424,16,10,5,5,5,1,11,3,1114,722,401,288,687,421,8,4,5,5,3,1,10,3,93,54,79,45,3,3,8,6,0,0,2,0,1,0 -050,01,005,Alabama,Barbour County,7,6,1837,1153,684,528,313,590,360,13,6,3,3,6,0,13,2,1046,641,445,279,581,357,4,0,3,3,2,0,11,2,107,43,83,34,9,3,9,6,0,0,4,0,2,0 -050,01,005,Alabama,Barbour County,7,7,2057,1256,801,611,400,619,391,7,3,8,6,2,0,9,1,1166,761,533,364,612,389,4,1,8,6,1,0,8,1,90,40,78,36,7,2,3,2,0,0,1,0,1,0 -050,01,005,Alabama,Barbour County,7,8,1890,1089,801,549,403,520,390,8,2,6,3,0,1,6,2,1065,772,533,379,516,387,5,1,5,3,0,0,6,2,24,29,16,24,4,3,3,1,1,0,0,1,0,0 -050,01,005,Alabama,Barbour County,7,9,2190,1198,992,632,492,547,487,4,5,4,2,2,3,9,3,1166,974,603,480,545,484,4,4,4,2,1,1,9,3,32,18,29,12,2,3,0,1,0,0,1,2,0,0 -050,01,005,Alabama,Barbour County,7,10,2067,1123,944,605,487,505,444,4,6,2,3,1,0,6,4,1098,931,586,476,501,443,4,5,2,3,0,0,5,4,25,13,19,11,4,1,0,1,0,0,1,0,1,0 -050,01,005,Alabama,Barbour County,7,11,1918,981,937,562,498,403,427,4,2,3,4,0,1,9,5,968,929,553,493,401,424,3,2,3,4,0,1,8,5,13,8,9,5,2,3,1,0,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,7,12,1857,950,907,581,499,363,397,1,3,1,5,0,0,4,3,940,901,572,494,362,396,1,3,1,5,0,0,4,3,10,6,9,5,1,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,7,13,1328,628,700,424,452,196,238,3,3,1,2,0,0,4,5,620,697,418,449,194,238,3,3,1,2,0,0,4,5,8,3,6,3,2,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,7,14,1049,486,563,350,367,131,191,1,0,3,3,0,0,1,2,485,560,349,364,131,191,1,0,3,3,0,0,1,2,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,7,15,912,415,497,295,316,118,178,0,1,1,1,1,0,0,1,410,494,292,316,116,175,0,1,1,1,1,0,0,1,5,3,3,0,2,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,7,16,742,285,457,199,269,84,183,0,2,1,0,0,2,1,1,285,454,199,266,84,183,0,2,1,0,0,2,1,1,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,7,17,583,184,399,115,243,65,152,2,0,0,0,0,0,2,4,184,397,115,243,65,151,2,0,0,0,0,0,2,3,0,2,0,0,0,1,0,0,0,0,0,0,0,1 -050,01,005,Alabama,Barbour County,7,18,406,103,303,59,183,43,119,0,0,1,1,0,0,0,0,102,302,58,183,43,118,0,0,1,1,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,7,99,28027,14713,13314,7606,6778,6844,6352,83,55,54,48,21,12,105,69,14122,12910,7115,6447,6795,6312,52,31,53,48,11,5,96,67,591,404,491,331,49,40,31,24,1,0,10,7,9,2 -050,01,005,Alabama,Barbour County,8,0,338,172,166,78,91,90,73,0,0,1,0,0,0,3,2,139,125,46,51,89,72,0,0,1,0,0,0,3,2,33,41,32,40,1,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,8,1,1379,710,669,333,298,363,355,5,3,1,3,1,0,7,10,629,608,261,244,359,351,1,0,1,3,1,0,6,10,81,61,72,54,4,4,4,3,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,8,2,1621,831,790,338,336,476,441,3,3,5,3,1,1,8,6,800,744,313,298,470,438,3,0,5,3,1,0,8,5,31,46,25,38,6,3,0,3,0,0,0,1,0,1 -050,01,005,Alabama,Barbour County,8,3,1822,923,899,408,369,495,514,7,2,4,2,1,1,8,11,902,875,392,352,493,509,4,1,4,2,1,0,8,11,21,24,16,17,2,5,3,1,0,0,0,1,0,0 -050,01,005,Alabama,Barbour County,8,4,1922,997,925,433,384,540,522,8,8,5,1,2,2,9,8,950,899,393,364,537,520,6,6,5,1,1,0,8,8,47,26,40,20,3,2,2,2,0,0,1,2,1,0 -050,01,005,Alabama,Barbour County,8,5,1914,1158,756,467,318,656,422,15,8,3,5,5,1,12,2,1057,697,382,269,651,419,7,1,3,5,3,1,11,2,101,59,85,49,5,3,8,7,0,0,2,0,1,0 -050,01,005,Alabama,Barbour County,8,6,1919,1209,710,547,320,628,373,12,11,3,3,7,1,12,2,1080,655,442,277,619,369,3,3,3,3,3,1,10,2,129,55,105,43,9,4,9,8,0,0,4,0,2,0 -050,01,005,Alabama,Barbour County,8,7,1916,1183,733,575,370,581,353,7,3,7,6,1,0,12,1,1096,686,501,327,575,351,2,1,7,6,0,0,11,1,87,47,74,43,6,2,5,2,0,0,1,0,1,0 -050,01,005,Alabama,Barbour County,8,8,1908,1098,810,563,408,512,392,8,2,5,3,1,1,9,4,1059,776,533,378,508,390,5,1,4,3,0,0,9,4,39,34,30,30,4,2,3,1,1,0,1,1,0,0 -050,01,005,Alabama,Barbour County,8,9,2141,1178,963,602,460,559,491,4,4,4,2,1,3,8,3,1145,940,572,444,558,487,3,3,4,2,0,1,8,3,33,23,30,16,1,4,1,1,0,0,1,2,0,0 -050,01,005,Alabama,Barbour County,8,10,2042,1127,915,598,472,515,434,4,3,3,3,1,0,6,3,1096,900,575,460,510,432,3,3,3,3,0,0,5,2,31,15,23,12,5,2,1,0,0,0,1,0,1,1 -050,01,005,Alabama,Barbour County,8,11,1943,1003,940,570,520,417,408,4,2,3,4,1,1,8,5,989,931,561,513,415,406,2,2,3,4,1,1,7,5,14,9,9,7,2,2,2,0,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,8,12,1861,947,914,571,504,367,399,2,3,2,5,0,0,5,3,936,908,561,499,366,398,2,3,2,5,0,0,5,3,11,6,10,5,1,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,8,13,1452,684,768,451,478,224,280,4,4,1,2,0,0,4,4,677,763,446,475,222,279,4,3,1,2,0,0,4,4,7,5,5,3,2,1,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,8,14,1065,516,549,368,354,141,189,2,0,3,4,0,0,2,2,511,546,365,351,140,189,1,0,3,4,0,0,2,2,5,3,3,3,1,0,1,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,8,15,913,400,513,287,324,110,186,0,1,1,1,1,0,1,1,397,511,285,323,109,185,0,1,1,1,1,0,1,1,3,2,2,1,1,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,8,16,742,299,443,216,276,82,163,0,2,0,0,0,2,1,0,299,440,216,273,82,163,0,2,0,0,0,2,1,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,8,17,529,183,346,121,204,59,139,2,0,0,0,0,0,1,3,182,344,120,203,59,138,2,0,0,0,0,0,1,3,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,8,18,434,100,334,65,213,34,120,0,0,1,1,0,0,0,0,99,333,64,213,34,119,0,0,1,1,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,8,99,27861,14718,13143,7591,6699,6849,6254,87,59,52,48,23,13,116,70,14043,12681,7028,6314,6796,6215,48,30,51,48,12,6,108,68,675,462,563,385,53,39,39,29,1,0,11,7,8,2 -050,01,005,Alabama,Barbour County,9,0,386,213,173,105,91,104,79,0,1,1,0,0,0,3,2,171,134,63,54,104,78,0,0,1,0,0,0,3,2,42,39,42,37,0,1,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,9,1,1367,680,687,335,301,332,363,5,5,1,2,1,0,6,16,580,603,244,226,328,359,1,0,1,2,1,0,5,16,100,84,91,75,4,4,4,5,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,9,2,1645,861,784,348,345,495,427,2,3,5,3,1,1,10,5,822,729,315,298,489,424,2,0,5,3,1,0,10,4,39,55,33,47,6,3,0,3,0,0,0,1,0,1 -050,01,005,Alabama,Barbour County,9,3,1695,858,837,375,347,464,474,7,1,4,3,0,1,8,11,833,807,355,324,462,469,4,0,4,3,0,0,8,11,25,30,20,23,2,5,3,1,0,0,0,1,0,0 -050,01,005,Alabama,Barbour County,9,4,1896,975,921,431,372,519,530,9,8,5,1,2,2,9,8,916,892,380,350,516,527,6,6,5,1,1,0,8,8,59,29,51,22,3,3,3,2,0,0,1,2,1,0 -050,01,005,Alabama,Barbour County,9,5,1872,1110,762,445,329,628,416,15,8,3,5,5,2,14,2,1025,697,377,275,623,412,6,1,3,5,3,2,13,2,85,65,68,54,5,4,9,7,0,0,2,0,1,0 -050,01,005,Alabama,Barbour County,9,6,1939,1192,747,527,325,629,405,14,11,3,3,6,1,13,2,1062,677,423,268,620,400,3,3,3,3,2,1,11,2,130,70,104,57,9,5,11,8,0,0,4,0,2,0 -050,01,005,Alabama,Barbour County,9,7,1828,1164,664,560,340,575,315,7,3,8,6,2,0,12,0,1070,623,481,303,568,313,1,1,8,6,1,0,11,0,94,41,79,37,7,2,6,2,0,0,1,0,1,0 -050,01,005,Alabama,Barbour County,9,8,1893,1099,794,570,408,506,374,8,2,6,3,1,2,8,5,1047,754,528,373,501,372,5,1,5,3,0,0,8,5,52,40,42,35,5,2,3,1,1,0,1,2,0,0 -050,01,005,Alabama,Barbour County,9,9,2027,1122,905,565,426,541,467,2,5,4,2,1,2,9,3,1093,886,540,414,540,463,1,4,4,2,0,0,8,3,29,19,25,12,1,4,1,1,0,0,1,2,1,0 -050,01,005,Alabama,Barbour County,9,10,2074,1125,949,597,488,513,452,5,3,3,3,1,0,6,3,1098,934,577,476,509,450,4,3,3,3,0,0,5,2,27,15,20,12,4,2,1,0,0,0,1,0,1,1 -050,01,005,Alabama,Barbour County,9,11,1931,1003,928,564,509,422,406,4,2,3,4,1,2,9,5,989,919,555,502,420,404,2,2,3,4,1,2,8,5,14,9,9,7,2,2,2,0,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,9,12,1880,959,921,563,498,387,412,1,3,2,5,0,0,6,3,948,914,553,492,386,411,1,3,2,5,0,0,6,3,11,7,10,6,1,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,9,13,1569,721,848,475,510,237,328,4,4,1,2,0,0,4,4,714,843,470,507,235,327,4,3,1,2,0,0,4,4,7,5,5,3,2,1,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,9,14,1099,526,573,374,374,145,192,2,0,3,4,0,0,2,3,521,571,371,372,144,192,1,0,3,4,0,0,2,3,5,2,3,2,1,0,1,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,9,15,924,413,511,300,309,110,199,0,1,1,1,1,0,1,1,410,508,298,308,109,197,0,1,1,1,1,0,1,1,3,3,2,1,1,2,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,9,16,745,297,448,202,290,94,154,0,2,0,0,0,2,1,0,297,445,202,287,94,154,0,2,0,0,0,2,1,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,9,17,549,200,349,143,188,53,157,2,1,0,0,0,0,2,3,199,347,142,187,53,156,2,1,0,0,0,0,2,3,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,9,18,438,103,335,68,214,34,119,0,1,1,1,0,0,0,0,102,332,67,214,34,117,0,0,1,1,0,0,0,0,1,3,1,0,0,2,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,9,99,27757,14621,13136,7547,6664,6788,6269,87,64,54,48,22,15,123,76,13897,12615,6941,6230,6735,6225,43,31,53,48,11,7,114,74,724,521,606,434,53,44,44,33,1,0,11,8,9,2 -050,01,005,Alabama,Barbour County,10,0,381,194,187,84,91,102,94,1,1,2,0,0,0,5,1,162,158,54,64,101,93,0,0,2,0,0,0,5,1,32,29,30,27,1,1,1,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,10,1,1416,746,670,390,308,343,346,5,5,1,2,1,0,6,9,599,573,252,222,339,340,1,0,1,2,1,0,5,9,147,97,138,86,4,6,4,5,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,10,2,1677,868,809,352,365,496,432,2,3,6,3,1,1,11,5,822,745,311,312,491,426,2,0,6,3,1,0,11,4,46,64,41,53,5,6,0,3,0,0,0,1,0,1 -050,01,005,Alabama,Barbour County,10,3,1637,855,782,373,323,464,445,5,1,4,2,1,1,8,10,827,762,350,309,462,441,2,0,4,2,1,0,8,10,28,20,23,14,2,4,3,1,0,0,0,1,0,0 -050,01,005,Alabama,Barbour County,10,4,1862,987,875,439,360,521,495,8,8,6,1,2,2,11,9,923,843,384,335,518,492,5,6,6,1,1,0,9,9,64,32,55,25,3,3,3,2,0,0,1,2,2,0 -050,01,005,Alabama,Barbour County,10,5,1830,1074,756,438,314,596,425,16,9,4,5,8,1,12,2,974,686,354,256,593,421,6,1,4,5,5,1,12,2,100,70,84,58,3,4,10,8,0,0,3,0,0,0 -050,01,005,Alabama,Barbour County,10,6,1972,1214,758,524,332,650,408,14,12,4,3,9,1,13,2,1088,688,427,277,640,402,2,3,4,3,4,1,11,2,126,70,97,55,10,6,12,9,0,0,5,0,2,0 -050,01,005,Alabama,Barbour County,10,7,1802,1161,641,549,320,585,311,7,3,8,7,2,0,10,0,1073,585,477,267,578,310,0,1,8,7,1,0,9,0,88,56,72,53,7,1,7,2,0,0,1,0,1,0 -050,01,005,Alabama,Barbour County,10,8,1864,1063,801,551,413,493,377,7,2,3,2,1,2,8,5,1019,762,517,379,489,375,2,1,3,2,0,0,8,5,44,39,34,34,4,2,5,1,0,0,1,2,0,0 -050,01,005,Alabama,Barbour County,10,9,1917,1090,827,541,398,535,416,1,5,3,2,1,3,9,3,1055,804,511,382,534,413,0,4,3,2,0,0,7,3,35,23,30,16,1,3,1,1,0,0,1,3,2,0 -050,01,005,Alabama,Barbour County,10,10,2135,1157,978,621,494,521,475,6,3,3,4,1,0,5,2,1123,962,595,481,516,473,5,3,3,4,0,0,4,1,34,16,26,13,5,2,1,0,0,0,1,0,1,1 -050,01,005,Alabama,Barbour County,10,11,1935,1030,905,576,505,434,387,5,1,4,4,1,3,10,5,1014,894,567,497,431,384,2,1,4,4,1,3,9,5,16,11,9,8,3,3,3,0,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,10,12,1884,946,938,531,486,407,438,2,4,1,6,0,0,5,4,932,932,519,481,406,437,1,4,1,6,0,0,5,4,14,6,12,5,1,1,1,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,10,13,1676,787,889,520,543,256,334,5,4,1,3,0,0,5,5,780,883,515,539,254,333,5,3,1,3,0,0,5,5,7,6,5,4,2,1,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,10,14,1157,565,592,397,386,160,200,1,0,5,4,0,0,2,2,560,589,394,383,159,200,0,0,5,4,0,0,2,2,5,3,3,3,1,0,1,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,10,15,913,396,517,287,319,106,195,0,1,1,1,1,0,1,1,393,514,285,318,105,193,0,1,1,1,1,0,1,1,3,3,2,1,1,2,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,10,16,715,320,395,223,263,96,129,0,1,0,0,0,2,1,0,320,392,223,260,96,129,0,1,0,0,0,2,1,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,10,17,598,202,396,150,211,48,181,2,1,0,0,0,0,2,3,201,394,149,210,48,180,2,1,0,0,0,0,2,3,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,10,18,437,119,318,73,191,44,124,0,1,2,2,0,0,0,0,118,315,72,191,44,122,0,0,2,2,0,0,0,0,1,3,1,0,0,2,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,10,99,27808,14774,13034,7619,6622,6857,6212,87,65,58,51,29,16,124,68,13983,12481,6956,6163,6804,6164,35,30,58,51,16,7,114,66,791,553,663,459,53,48,52,35,0,0,13,9,10,2 -050,01,005,Alabama,Barbour County,11,0,330,169,161,65,77,96,81,1,2,2,0,0,0,5,1,151,131,50,50,94,80,0,0,2,0,0,0,5,1,18,30,15,27,2,1,1,2,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,11,1,1378,692,686,305,303,369,357,9,7,1,2,1,0,7,17,595,609,223,238,363,352,1,0,1,2,1,0,6,17,97,77,82,65,6,5,8,7,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,11,2,1628,823,805,349,352,458,442,2,3,6,3,1,1,7,4,763,739,295,296,452,437,2,0,6,3,1,0,7,3,60,66,54,56,6,5,0,3,0,0,0,1,0,1 -050,01,005,Alabama,Barbour County,11,3,1631,853,778,365,320,471,442,4,1,4,3,1,1,8,11,826,748,343,296,469,438,1,0,4,3,1,0,8,11,27,30,22,24,2,4,3,1,0,0,0,1,0,0 -050,01,005,Alabama,Barbour County,11,4,1812,973,839,439,349,507,468,8,9,6,1,2,3,11,9,909,801,384,319,504,465,5,7,6,1,1,0,9,9,64,38,55,30,3,3,3,2,0,0,1,3,2,0 -050,01,005,Alabama,Barbour County,11,5,1818,1059,759,418,319,600,418,17,11,4,5,8,4,12,2,949,681,327,255,596,414,5,1,4,5,5,4,12,2,110,78,91,64,4,4,12,10,0,0,3,0,0,0 -050,01,005,Alabama,Barbour County,11,6,1985,1200,785,506,332,653,434,16,14,3,3,7,0,15,2,1084,714,422,279,643,427,1,3,3,3,2,0,13,2,116,71,84,53,10,7,15,11,0,0,5,0,2,0 -050,01,005,Alabama,Barbour County,11,7,1806,1152,654,535,325,590,319,8,3,8,7,2,0,9,0,1054,593,454,267,583,318,0,1,8,7,1,0,8,0,98,61,81,58,7,1,8,2,0,0,1,0,1,0 -050,01,005,Alabama,Barbour County,11,8,1879,1077,802,564,420,492,371,6,2,6,2,1,2,8,5,1024,758,522,381,487,369,1,1,6,2,0,0,8,5,53,44,42,39,5,2,5,1,0,0,1,2,0,0 -050,01,005,Alabama,Barbour County,11,9,1878,1095,783,558,371,524,398,1,5,3,2,1,3,8,4,1054,755,522,351,523,394,0,4,3,2,0,0,6,4,41,28,36,20,1,4,1,1,0,0,1,3,2,0 -050,01,005,Alabama,Barbour County,11,10,2153,1188,965,643,481,530,475,6,3,3,4,1,0,5,2,1143,946,607,465,524,473,5,3,3,4,0,0,4,1,45,19,36,16,6,2,1,0,0,0,1,0,1,1 -050,01,005,Alabama,Barbour County,11,11,1918,999,919,564,504,415,404,5,1,4,4,1,1,10,5,982,907,554,495,412,401,2,1,4,4,1,1,9,5,17,12,10,9,3,3,3,0,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,11,12,1849,925,924,507,487,410,423,2,4,1,6,0,0,5,4,910,916,494,480,409,422,1,4,1,6,0,0,5,4,15,8,13,7,1,1,1,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,11,13,1722,816,906,531,539,274,352,5,4,1,4,0,0,5,7,810,900,527,535,272,351,5,3,1,4,0,0,5,7,6,6,4,4,2,1,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,11,14,1246,611,635,426,417,177,212,1,0,5,4,0,0,2,2,606,633,423,415,176,212,0,0,5,4,0,0,2,2,5,2,3,2,1,0,1,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,11,15,950,428,522,305,334,120,185,0,1,1,1,1,0,1,1,425,519,303,333,119,183,0,1,1,1,1,0,1,1,3,3,2,1,1,2,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,11,16,669,285,384,203,256,81,125,0,1,0,0,0,2,1,0,285,381,203,253,81,125,0,1,0,0,0,2,1,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,11,17,559,213,346,149,211,60,131,2,1,0,0,0,0,2,3,212,344,148,210,60,130,2,1,0,0,0,0,2,3,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,11,18,446,130,316,89,192,39,121,0,1,2,2,0,0,0,0,129,313,88,192,39,119,0,0,2,2,0,0,0,0,1,3,1,0,0,2,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,11,99,27657,14688,12969,7521,6589,6866,6158,93,73,60,53,27,17,121,79,13911,12388,6889,6110,6806,6110,31,31,60,53,14,7,111,77,777,581,632,479,60,48,62,42,0,0,13,10,10,2 -050,01,005,Alabama,Barbour County,12,0,319,174,145,65,67,101,75,1,2,2,0,0,0,5,1,155,120,50,45,98,74,0,0,2,0,0,0,5,1,19,25,15,22,3,1,1,2,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,12,1,1383,673,710,281,322,372,364,9,7,1,2,1,0,9,15,595,610,219,236,365,357,1,0,1,2,1,0,8,15,78,100,62,86,7,7,8,7,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,12,2,1642,826,816,353,358,455,445,2,3,6,3,1,1,9,6,765,748,298,300,449,440,2,0,6,3,1,0,9,5,61,68,55,58,6,5,0,3,0,0,0,1,0,1 -050,01,005,Alabama,Barbour County,12,3,1599,820,779,359,319,443,443,4,1,4,3,1,1,9,12,789,750,333,296,441,439,1,0,4,3,1,0,9,12,31,29,26,23,2,4,3,1,0,0,0,1,0,0 -050,01,005,Alabama,Barbour County,12,4,1731,919,812,426,336,466,454,8,9,6,1,2,3,11,9,854,774,370,306,463,451,5,7,6,1,1,0,9,9,65,38,56,30,3,3,3,2,0,0,1,3,2,0 -050,01,005,Alabama,Barbour County,12,5,1794,1048,746,425,322,582,403,17,11,4,5,8,3,12,2,934,664,330,254,578,399,5,1,4,5,5,3,12,2,114,82,95,68,4,4,12,10,0,0,3,0,0,0 -050,01,005,Alabama,Barbour County,12,6,2010,1212,798,517,337,653,441,16,14,3,3,9,1,14,2,1082,715,419,271,643,435,1,3,3,3,4,1,12,2,130,83,98,66,10,6,15,11,0,0,5,0,2,0 -050,01,005,Alabama,Barbour County,12,7,1808,1162,646,523,305,612,331,8,3,8,7,2,0,9,0,1064,595,442,257,605,330,0,1,8,7,1,0,8,0,98,51,81,48,7,1,8,2,0,0,1,0,1,0 -050,01,005,Alabama,Barbour County,12,8,1819,1046,773,548,402,478,360,6,2,5,2,1,2,8,5,989,729,502,363,473,358,1,1,5,2,0,0,8,5,57,44,46,39,5,2,5,1,0,0,1,2,0,0 -050,01,005,Alabama,Barbour County,12,9,1809,1069,740,556,351,501,375,1,5,3,2,1,3,7,4,1030,712,521,331,500,371,0,4,3,2,0,0,6,4,39,28,35,20,1,4,1,1,0,0,1,3,1,0 -050,01,005,Alabama,Barbour County,12,10,2108,1164,944,613,467,536,468,6,3,3,4,1,0,5,2,1132,922,590,448,530,466,5,3,3,4,0,0,4,1,32,22,23,19,6,2,1,0,0,0,1,0,1,1 -050,01,005,Alabama,Barbour County,12,11,1910,1000,910,567,489,413,409,5,1,4,4,1,2,10,5,980,898,554,480,410,406,2,1,4,4,1,2,9,5,20,12,13,9,3,3,3,0,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,12,12,1817,910,907,492,482,410,411,2,4,1,6,0,0,5,4,895,899,479,475,409,410,1,4,1,6,0,0,5,4,15,8,13,7,1,1,1,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,12,13,1799,859,940,543,555,305,370,5,4,1,4,0,0,5,7,851,934,537,551,303,369,5,3,1,4,0,0,5,7,8,6,6,4,2,1,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,12,14,1290,631,659,436,427,187,226,1,0,5,4,0,0,2,2,626,656,433,424,186,226,0,0,5,4,0,0,2,2,5,3,3,3,1,0,1,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,12,15,948,436,512,315,335,118,174,0,1,1,1,1,0,1,1,433,509,313,334,117,172,0,1,1,1,1,0,1,1,3,3,2,1,1,2,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,12,16,685,303,382,218,252,84,127,0,1,0,0,0,2,1,0,303,379,218,249,84,127,0,1,0,0,0,2,1,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,12,17,543,195,348,135,204,56,140,2,1,0,0,0,0,2,3,194,346,134,203,56,139,2,1,0,0,0,0,2,3,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,12,18,443,129,314,91,194,36,117,0,1,2,2,0,0,0,0,128,311,90,194,36,115,0,0,2,2,0,0,0,0,1,3,1,0,0,2,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,12,99,27457,14576,12881,7463,6524,6808,6133,93,73,59,53,29,18,124,80,13799,12271,6832,6017,6746,6084,31,31,59,53,16,8,115,78,777,610,631,507,62,49,62,42,0,0,13,10,9,2 -050,01,005,Alabama,Barbour County,13,0,315,173,142,64,65,101,74,1,2,1,1,1,0,5,0,154,117,50,44,98,73,0,0,1,0,0,0,5,0,19,25,14,21,3,1,1,2,0,1,1,0,0,0 -050,01,005,Alabama,Barbour County,13,1,1384,671,713,279,320,369,363,8,7,3,3,1,1,11,19,594,611,217,234,365,358,1,0,2,2,0,0,9,17,77,102,62,86,4,5,7,7,1,1,1,1,2,2 -050,01,005,Alabama,Barbour County,13,2,1648,836,812,352,354,455,442,3,2,6,2,3,1,17,11,767,749,296,296,448,438,2,1,5,2,2,1,14,11,69,63,56,58,7,4,1,1,1,0,1,0,3,0 -050,01,005,Alabama,Barbour County,13,3,1600,821,779,358,315,440,438,2,2,4,3,2,0,15,21,787,750,332,293,438,436,1,1,4,3,0,0,12,17,34,29,26,22,2,2,1,1,0,0,2,0,3,4 -050,01,005,Alabama,Barbour County,13,4,1710,906,804,421,332,461,451,8,5,6,2,0,2,10,12,842,768,367,303,459,448,3,4,5,2,0,0,8,11,64,36,54,29,2,3,5,1,1,0,0,2,2,1 -050,01,005,Alabama,Barbour County,13,5,1783,1043,740,423,320,586,402,14,8,2,3,6,1,12,6,931,662,328,253,582,399,4,1,2,2,4,1,11,6,112,78,95,67,4,3,10,7,0,1,2,0,1,0 -050,01,005,Alabama,Barbour County,13,6,2008,1210,798,517,336,650,438,13,11,7,4,6,4,17,5,1082,717,419,270,643,433,1,3,4,3,3,3,12,5,128,81,98,66,7,5,12,8,3,1,3,1,5,0 -050,01,005,Alabama,Barbour County,13,7,1813,1162,651,523,304,613,332,7,3,5,7,1,2,13,3,1065,601,443,258,607,330,0,2,5,7,0,1,10,3,97,50,80,46,6,2,7,1,0,0,1,1,3,0 -050,01,005,Alabama,Barbour County,13,8,1809,1042,767,545,395,476,360,4,3,6,2,0,1,11,6,986,724,498,356,472,358,0,3,6,2,0,0,10,5,56,43,47,39,4,2,4,0,0,0,0,1,1,1 -050,01,005,Alabama,Barbour County,13,9,1803,1066,737,553,347,498,373,2,8,4,2,2,1,7,6,1030,712,520,329,498,370,2,5,4,2,0,0,6,6,36,25,33,18,0,3,0,3,0,0,2,1,1,0 -050,01,005,Alabama,Barbour County,13,10,2093,1157,936,609,463,533,464,6,3,3,2,1,0,5,4,1128,916,586,445,529,462,6,3,3,2,0,0,4,4,29,20,23,18,4,2,0,0,0,0,1,0,1,0 -050,01,005,Alabama,Barbour County,13,11,1908,995,913,566,489,411,408,4,3,3,3,1,2,10,8,977,901,553,480,409,406,2,2,3,3,1,2,9,8,18,12,13,9,2,2,2,1,0,0,0,0,1,0 -050,01,005,Alabama,Barbour County,13,12,1817,912,905,492,484,410,408,3,5,3,6,0,0,4,2,897,897,479,476,409,408,2,5,3,6,0,0,4,2,15,8,13,8,1,0,1,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,13,13,1805,862,943,543,556,309,375,5,2,1,4,0,0,4,6,856,939,538,553,308,374,5,2,1,4,0,0,4,6,6,4,5,3,1,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,13,14,1295,631,664,436,428,187,229,0,2,5,3,0,0,3,2,629,659,434,425,187,227,0,2,5,3,0,0,3,2,2,5,2,3,0,2,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,13,15,953,434,519,313,337,118,174,1,3,1,1,0,0,1,4,432,516,311,335,118,173,1,3,1,1,0,0,1,4,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,13,16,681,299,382,215,251,82,128,0,1,0,1,0,0,2,1,299,377,215,246,82,128,0,1,0,1,0,0,2,1,0,5,0,5,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,13,17,544,195,349,137,205,54,141,1,0,1,2,0,0,2,1,193,347,135,203,54,141,1,0,1,2,0,0,2,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,13,18,442,129,313,91,194,36,117,0,0,2,2,0,0,0,0,128,312,90,194,36,116,0,0,2,2,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,13,99,27411,14544,12867,7437,6495,6789,6117,82,70,63,53,24,15,149,117,13777,12275,6811,5993,6742,6078,31,38,57,49,10,8,126,109,767,592,626,502,47,39,51,32,6,4,14,7,23,8 -050,01,007,Alabama,Bibb County,1,0,327,179,148,147,115,30,32,0,0,0,0,0,0,2,1,174,146,142,115,30,30,0,0,0,0,0,0,2,1,5,2,5,0,0,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,1,1120,596,524,438,410,152,110,0,2,0,0,0,0,6,2,591,517,434,406,151,107,0,2,0,0,0,0,6,2,5,7,4,4,1,3,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,2,1525,764,761,552,527,203,222,2,2,0,3,0,0,7,7,755,750,545,518,201,221,2,1,0,3,0,0,7,7,9,11,7,9,2,1,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,3,1452,698,754,502,552,191,199,0,2,0,0,0,0,5,1,689,750,494,550,190,197,0,2,0,0,0,0,5,1,9,4,8,2,1,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,4,1369,725,644,535,480,186,159,0,0,1,2,0,0,3,3,716,637,530,474,182,158,0,0,1,2,0,0,3,3,9,7,5,6,4,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,5,1263,621,642,462,482,150,156,3,1,1,1,1,0,4,2,607,635,450,477,148,154,3,1,1,1,1,0,4,2,14,7,12,5,2,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,6,1406,702,704,580,549,117,149,2,2,0,2,0,0,3,2,691,700,570,545,116,149,2,2,0,2,0,0,3,2,11,4,10,4,1,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,7,1492,750,742,603,598,139,142,4,1,2,0,0,0,2,1,737,732,591,590,138,140,4,1,2,0,0,0,2,1,13,10,12,8,1,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,8,1458,724,734,579,581,140,150,2,2,0,0,1,0,2,1,715,725,570,573,140,149,2,2,0,0,1,0,2,1,9,9,9,8,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,9,1456,740,716,588,564,150,141,0,4,0,2,0,0,2,5,734,712,582,560,150,141,0,4,0,2,0,0,2,5,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,10,1336,689,647,569,517,115,124,2,1,0,1,0,0,3,4,682,645,563,515,114,124,2,1,0,1,0,0,3,4,7,2,6,2,1,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,11,1270,632,638,521,532,107,100,1,2,0,0,0,0,3,4,628,633,518,527,106,100,1,2,0,0,0,0,3,4,4,5,3,5,1,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,12,1076,547,529,472,458,70,65,4,1,1,0,0,0,0,5,541,528,470,458,67,64,3,1,1,0,0,0,0,5,6,1,2,0,3,1,1,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,13,899,427,472,361,410,62,58,1,3,1,0,0,0,2,1,424,470,360,409,61,57,1,3,1,0,0,0,1,1,3,2,1,1,1,1,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,1,14,690,334,356,291,303,42,51,0,0,0,0,0,0,1,2,331,353,289,301,42,50,0,0,0,0,0,0,0,2,3,3,2,2,0,1,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,1,15,629,293,336,253,284,37,51,1,1,0,0,0,0,2,0,291,334,252,282,37,51,0,1,0,0,0,0,2,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,16,504,181,323,158,268,21,51,0,2,0,0,0,0,2,2,178,321,155,267,21,50,0,2,0,0,0,0,2,2,3,2,3,1,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,17,251,84,167,66,134,17,33,1,0,0,0,0,0,0,0,84,167,66,134,17,33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,18,333,102,231,76,185,25,45,1,0,0,0,0,0,0,1,100,227,75,184,24,43,1,0,0,0,0,0,0,0,2,4,1,1,1,2,0,0,0,0,0,0,0,1 -050,01,007,Alabama,Bibb County,1,99,19856,9788,10068,7753,7949,1954,2038,24,26,6,11,2,0,49,44,9668,9982,7656,7885,1935,2018,22,25,6,11,2,0,47,43,120,86,97,64,19,20,2,1,0,0,0,0,2,1 -050,01,007,Alabama,Bibb County,2,0,331,181,150,149,116,30,32,0,0,0,0,0,0,2,2,176,148,144,116,30,30,0,0,0,0,0,0,2,2,5,2,5,0,0,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,1,1116,593,523,435,410,152,109,0,2,0,0,0,0,6,2,588,516,431,406,151,106,0,2,0,0,0,0,6,2,5,7,4,4,1,3,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,2,1516,760,756,549,523,202,221,2,2,0,3,0,0,7,7,751,745,542,514,200,220,2,1,0,3,0,0,7,7,9,11,7,9,2,1,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,3,1463,702,761,505,556,192,202,0,2,0,0,0,0,5,1,693,757,497,554,191,200,0,2,0,0,0,0,5,1,9,4,8,2,1,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,4,1379,732,647,539,481,189,161,0,0,1,2,0,0,3,3,723,640,534,475,185,160,0,0,1,2,0,0,3,3,9,7,5,6,4,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,5,1274,627,647,465,485,153,158,3,1,1,1,1,0,4,2,613,640,453,480,151,156,3,1,1,1,1,0,4,2,14,7,12,5,2,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,6,1400,701,699,578,544,118,149,2,2,0,2,0,0,3,2,690,695,568,540,117,149,2,2,0,2,0,0,3,2,11,4,10,4,1,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,7,1494,754,740,604,596,142,142,4,1,2,0,0,0,2,1,741,730,592,588,141,140,4,1,2,0,0,0,2,1,13,10,12,8,1,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,8,1451,720,731,575,578,140,150,2,2,0,0,1,0,2,1,711,722,566,570,140,149,2,2,0,0,1,0,2,1,9,9,9,8,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,9,1460,742,718,589,566,151,141,0,4,0,2,0,0,2,5,736,714,583,562,151,141,0,4,0,2,0,0,2,5,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,10,1351,700,651,576,520,119,125,2,1,0,1,0,0,3,4,693,649,570,518,118,125,2,1,0,1,0,0,3,4,7,2,6,2,1,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,11,1286,641,645,528,538,109,101,1,2,0,0,0,0,3,4,637,640,525,533,108,101,1,2,0,0,0,0,3,4,4,5,3,5,1,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,12,1084,551,533,476,462,70,65,4,1,1,0,0,0,0,5,545,532,474,462,67,64,3,1,1,0,0,0,0,5,6,1,2,0,3,1,1,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,13,905,429,476,363,414,62,58,1,3,1,0,0,0,2,1,426,474,362,413,61,57,1,3,1,0,0,0,1,1,3,2,1,1,1,1,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,2,14,687,333,354,290,301,42,51,0,0,0,0,0,0,1,2,330,351,288,299,42,50,0,0,0,0,0,0,0,2,3,3,2,2,0,1,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,2,15,628,293,335,253,283,37,51,1,1,0,0,0,0,2,0,291,333,252,281,37,51,0,1,0,0,0,0,2,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,16,503,181,322,158,267,21,51,0,2,0,0,0,0,2,2,178,320,155,266,21,50,0,2,0,0,0,0,2,2,3,2,3,1,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,17,255,84,171,66,138,17,33,1,0,0,0,0,0,0,0,84,171,66,138,17,33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,18,330,101,229,75,184,25,44,1,0,0,0,0,0,0,1,99,225,74,183,24,42,1,0,0,0,0,0,0,0,2,4,1,1,1,2,0,0,0,0,0,0,0,1 -050,01,007,Alabama,Bibb County,2,99,19913,9825,10088,7773,7962,1971,2044,24,26,6,11,2,0,49,45,9705,10002,7676,7898,1952,2024,22,25,6,11,2,0,47,44,120,86,97,64,19,20,2,1,0,0,0,0,2,1 -050,01,007,Alabama,Bibb County,3,0,278,145,133,109,100,34,32,0,0,0,0,0,0,2,1,140,131,104,100,34,30,0,0,0,0,0,0,2,1,5,2,5,0,0,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,1,1151,608,543,458,408,144,130,0,2,0,0,0,0,6,3,601,535,452,403,143,127,0,2,0,0,0,0,6,3,7,8,6,5,1,3,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,2,1474,750,724,546,529,195,183,2,2,0,3,0,0,7,7,737,714,535,521,193,182,2,1,0,3,0,0,7,7,13,10,11,8,2,1,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,3,1539,752,787,551,570,196,214,0,2,0,0,0,0,5,1,740,780,540,565,195,212,0,2,0,0,0,0,5,1,12,7,11,5,1,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,4,1354,735,619,520,470,210,144,0,0,1,2,1,0,3,3,724,612,514,464,206,143,0,0,1,2,0,0,3,3,11,7,6,6,4,1,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,3,5,1415,721,694,503,519,209,171,3,1,1,1,1,0,4,2,698,688,482,514,207,170,3,1,1,1,1,0,4,2,23,6,21,5,2,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,6,1492,833,659,584,525,244,128,2,2,0,2,0,0,3,2,816,654,568,520,243,128,2,2,0,2,0,0,3,2,17,5,16,5,1,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,7,1633,890,743,645,608,236,133,5,1,2,0,0,0,2,1,869,733,625,600,235,131,5,1,2,0,0,0,2,1,21,10,20,8,1,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,8,1648,885,763,648,591,232,169,2,2,0,0,1,0,2,1,875,754,638,583,232,168,2,2,0,0,1,0,2,1,10,9,10,8,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,9,1541,835,706,632,563,201,132,0,4,0,2,0,0,2,5,830,701,627,558,201,132,0,4,0,2,0,0,2,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,10,1452,771,681,589,533,177,142,2,1,0,1,0,0,3,4,763,679,582,531,176,142,2,1,0,1,0,0,3,4,8,2,7,2,1,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,11,1383,709,674,569,571,136,97,1,2,0,0,0,0,3,4,705,669,566,566,135,97,1,2,0,0,0,0,3,4,4,5,3,5,1,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,12,1131,587,544,493,475,89,65,4,1,1,0,0,0,0,3,581,543,491,475,86,64,3,1,1,0,0,0,0,3,6,1,2,0,3,1,1,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,13,932,460,472,383,409,73,59,1,3,1,0,0,0,2,1,457,470,382,408,72,58,1,3,1,0,0,0,1,1,3,2,1,1,1,1,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,3,14,733,352,381,304,325,47,54,0,0,0,0,0,0,1,2,349,378,302,323,47,53,0,0,0,0,0,0,0,2,3,3,2,2,0,1,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,3,15,647,298,349,259,293,36,55,1,1,0,0,0,0,2,0,296,347,258,291,36,55,0,1,0,0,0,0,2,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,16,522,176,346,153,289,21,53,0,2,0,0,0,0,2,2,174,344,151,288,21,52,0,2,0,0,0,0,2,2,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,17,307,99,208,82,171,16,37,1,0,0,0,0,0,0,0,99,208,82,171,16,37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,18,396,109,287,82,233,26,53,1,0,0,0,0,0,0,1,107,283,81,232,25,51,1,0,0,0,0,0,0,0,2,4,1,1,1,2,0,0,0,0,0,0,0,1 -050,01,007,Alabama,Bibb County,3,99,21028,10715,10313,8110,8182,2522,2051,25,26,6,11,3,0,49,43,10561,10223,7980,8113,2503,2032,23,25,6,11,2,0,47,42,154,90,130,69,19,19,2,1,0,0,1,0,2,1 -050,01,007,Alabama,Bibb County,4,0,304,163,141,135,102,25,37,1,0,0,0,0,0,2,2,158,140,130,102,25,36,1,0,0,0,0,0,2,2,5,1,5,0,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,1,1174,626,548,474,411,144,133,0,1,0,0,0,0,8,3,618,540,467,406,143,130,0,1,0,0,0,0,8,3,8,8,7,5,1,3,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,2,1458,752,706,565,517,177,178,2,2,0,2,0,0,8,7,742,694,557,507,175,177,2,1,0,2,0,0,8,7,10,12,8,10,2,1,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,3,1553,756,797,544,575,206,219,1,2,0,0,0,0,5,1,747,791,536,571,205,217,1,2,0,0,0,0,5,1,9,6,8,4,1,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,4,1377,758,619,540,464,212,149,1,0,1,2,1,0,3,4,744,612,531,458,208,148,1,0,1,2,0,0,3,4,14,7,9,6,4,1,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,4,5,1381,723,658,491,494,224,159,2,1,1,1,1,0,4,3,701,651,471,488,222,158,2,1,1,1,1,0,4,3,22,7,20,6,2,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,6,1489,814,675,554,531,255,137,2,2,0,2,0,0,3,3,795,670,537,526,253,137,2,2,0,2,0,0,3,3,19,5,17,5,2,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,7,1610,884,726,635,590,240,134,4,1,2,0,0,0,3,1,855,717,608,583,239,132,4,1,2,0,0,0,2,1,29,9,27,7,1,2,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,4,8,1652,928,724,678,566,245,154,2,3,0,0,1,0,2,1,914,716,664,559,245,153,2,3,0,0,1,0,2,1,14,8,14,7,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,9,1543,811,732,623,568,186,153,0,5,0,2,0,0,2,4,804,727,616,563,186,153,0,5,0,2,0,0,2,4,7,5,7,5,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,10,1528,817,711,602,562,209,143,2,1,0,1,0,0,4,4,811,707,597,558,208,143,2,1,0,1,0,0,4,4,6,4,5,4,1,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,11,1371,711,660,564,555,143,98,1,3,0,0,0,0,3,4,706,655,560,550,142,98,1,3,0,0,0,0,3,4,5,5,4,5,1,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,12,1187,601,586,487,516,108,64,4,1,1,0,0,0,1,5,594,585,484,516,105,63,3,1,1,0,0,0,1,5,7,1,3,0,3,1,1,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,13,998,497,501,420,431,73,66,1,3,1,0,0,0,2,1,493,498,418,429,72,65,1,3,1,0,0,0,1,1,4,3,2,2,1,1,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,4,14,756,367,389,304,336,62,51,0,0,0,0,0,0,1,2,364,386,302,334,62,50,0,0,0,0,0,0,0,2,3,3,2,2,0,1,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,4,15,632,290,342,256,292,31,49,1,1,0,0,0,0,2,0,288,340,255,290,31,49,0,1,0,0,0,0,2,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,16,539,192,347,170,279,20,64,0,2,0,0,0,0,2,2,190,345,168,278,20,63,0,2,0,0,0,0,2,2,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,17,306,95,211,78,175,15,36,1,0,0,0,0,0,1,0,95,211,78,175,15,36,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,18,341,96,245,73,194,22,50,1,0,0,0,0,0,0,1,94,241,72,193,21,48,1,0,0,0,0,0,0,0,2,4,1,1,1,2,0,0,0,0,0,0,0,1 -050,01,007,Alabama,Bibb County,4,99,21199,10881,10318,8193,8158,2597,2074,26,28,6,10,3,0,56,48,10713,10226,8051,8086,2577,2056,24,27,6,10,2,0,53,47,168,92,142,72,20,18,2,1,0,0,1,0,3,1 -050,01,007,Alabama,Bibb County,5,0,259,140,119,123,92,13,24,1,0,0,0,1,0,2,3,135,118,118,92,13,23,1,0,0,0,1,0,2,3,5,1,5,0,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,5,1,1195,644,551,495,414,141,129,0,1,0,0,0,0,8,7,633,541,485,408,140,125,0,1,0,0,0,0,8,7,11,10,10,6,1,4,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,5,2,1448,780,668,587,506,183,150,2,3,0,2,0,0,8,7,767,659,576,499,181,149,2,2,0,2,0,0,8,7,13,9,11,7,2,1,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,5,3,1529,753,776,535,558,212,215,1,2,1,0,1,0,3,1,740,768,524,552,211,213,1,2,1,0,0,0,3,1,13,8,11,6,1,2,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,5,4,1418,741,677,542,505,193,166,1,1,1,2,1,0,3,3,725,670,531,499,189,165,1,1,1,2,0,0,3,3,16,7,11,6,4,1,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,5,5,1431,764,667,504,506,250,156,3,1,1,1,2,0,4,3,735,659,479,499,247,155,3,1,1,1,1,0,4,3,29,8,25,7,3,1,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,5,6,1526,840,686,571,535,262,143,2,2,0,2,1,1,4,3,814,680,548,530,260,143,2,2,0,2,0,0,4,3,26,6,23,5,2,0,0,0,0,0,1,1,0,0 -050,01,007,Alabama,Bibb County,5,7,1575,874,701,626,566,240,132,4,1,1,0,0,0,3,2,848,691,602,558,239,130,4,1,1,0,0,0,2,2,26,10,24,8,1,2,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,5,8,1666,932,734,670,579,255,151,3,3,0,0,1,0,3,1,918,727,656,573,255,150,3,3,0,0,1,0,3,1,14,7,14,6,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,5,9,1534,805,729,603,567,199,153,0,4,0,2,0,0,3,3,797,723,595,561,199,153,0,4,0,2,0,0,3,3,8,6,8,6,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,5,10,1590,878,712,660,558,212,149,1,1,0,1,0,0,5,3,871,707,654,553,211,149,1,1,0,1,0,0,5,3,7,5,6,5,1,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,5,11,1361,723,638,574,532,146,100,1,3,0,0,0,0,2,3,716,634,569,528,144,100,1,3,0,0,0,0,2,3,7,4,5,4,2,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,5,12,1235,611,624,490,544,113,74,4,1,1,0,0,0,3,5,603,623,487,544,110,73,3,1,1,0,0,0,2,5,8,1,3,0,3,1,1,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,5,13,1051,522,529,452,463,65,63,2,2,1,0,0,0,2,1,516,526,448,461,64,62,2,2,1,0,0,0,1,1,6,3,4,2,1,1,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,5,14,768,368,400,314,347,53,50,0,0,0,0,0,0,1,3,365,397,312,345,53,49,0,0,0,0,0,0,0,3,3,3,2,2,0,1,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,5,15,655,298,357,250,305,44,51,2,1,0,0,0,0,2,0,296,355,249,303,44,51,1,1,0,0,0,0,2,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,5,16,541,200,341,174,270,25,67,0,2,0,0,0,0,1,2,198,339,172,269,25,66,0,2,0,0,0,0,1,2,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,5,17,333,109,224,88,182,19,42,1,0,0,0,0,0,1,0,108,224,88,182,19,42,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,5,18,284,83,201,67,163,15,37,1,0,0,0,0,0,0,1,81,198,66,162,14,36,1,0,0,0,0,0,0,0,2,3,1,1,1,1,0,0,0,0,0,0,0,1 -050,01,007,Alabama,Bibb County,5,99,21399,11065,10334,8325,8192,2640,2052,29,28,6,10,7,1,58,51,10866,10239,8159,8118,2618,2034,27,27,6,10,3,0,53,50,199,95,166,74,22,18,2,1,0,0,4,1,5,1 -050,01,007,Alabama,Bibb County,6,0,295,156,139,132,109,21,27,1,0,0,0,0,0,2,3,151,138,127,109,21,26,1,0,0,0,0,0,2,3,5,1,5,0,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,6,1,1154,615,539,476,407,127,122,1,1,0,0,0,0,11,9,607,529,469,401,126,118,1,1,0,0,0,0,11,9,8,10,7,6,1,4,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,6,2,1457,779,678,582,519,187,146,2,3,0,2,0,0,8,8,763,669,568,513,185,144,2,2,0,2,0,0,8,8,16,9,14,6,2,2,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,6,3,1552,778,774,575,571,196,200,2,2,1,0,1,0,3,1,765,768,564,567,195,198,2,2,1,0,0,0,3,1,13,6,11,4,1,2,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,6,4,1413,738,675,546,498,184,171,1,1,1,2,3,0,3,3,721,669,535,492,181,171,1,1,1,2,0,0,3,3,17,6,11,6,3,0,0,0,0,0,3,0,0,0 -050,01,007,Alabama,Bibb County,6,5,1469,807,662,535,496,263,161,3,1,1,1,2,0,3,3,775,655,507,490,260,160,3,1,1,1,1,0,3,3,32,7,28,6,3,1,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,6,6,1530,864,666,559,509,298,149,2,2,0,2,1,1,4,3,832,661,530,505,296,149,2,2,0,2,0,0,4,3,32,5,29,4,2,0,0,0,0,0,1,1,0,0 -050,01,007,Alabama,Bibb County,6,7,1610,931,679,650,548,272,127,4,2,1,0,0,0,4,2,904,668,625,539,271,125,4,2,1,0,0,0,3,2,27,11,25,9,1,2,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,6,8,1658,904,754,643,600,256,150,3,3,0,0,0,0,2,1,888,746,627,593,256,149,3,3,0,0,0,0,2,1,16,8,16,7,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,6,9,1583,841,742,628,588,209,144,0,4,0,2,1,0,3,4,828,735,616,581,209,144,0,4,0,2,0,0,3,4,13,7,12,7,0,0,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,6,10,1636,895,741,663,585,225,150,1,1,0,1,0,0,6,4,883,735,653,579,223,150,1,1,0,1,0,0,6,4,12,6,10,6,2,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,6,11,1430,776,654,619,535,153,113,1,3,0,0,0,0,3,3,767,650,612,531,152,113,1,3,0,0,0,0,2,3,9,4,7,4,1,0,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,6,12,1288,650,638,504,553,137,81,4,1,1,0,0,0,4,3,641,638,500,553,134,81,3,1,1,0,0,0,3,3,9,0,4,0,3,0,1,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,6,13,1056,526,530,451,460,71,66,2,3,1,0,0,0,1,1,520,528,447,458,70,66,2,3,1,0,0,0,0,1,6,2,4,2,1,0,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,6,14,795,374,421,331,367,42,51,0,0,0,0,0,0,1,3,371,418,329,365,42,50,0,0,0,0,0,0,0,3,3,3,2,2,0,1,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,6,15,649,296,353,250,304,42,48,2,1,0,0,0,0,2,0,294,351,249,302,42,48,1,1,0,0,0,0,2,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,6,16,527,195,332,172,263,21,65,0,2,0,0,0,0,2,2,193,330,170,262,21,64,0,2,0,0,0,0,2,2,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,6,17,367,112,255,92,207,17,47,1,0,0,0,0,0,2,1,110,255,91,207,17,47,1,0,0,0,0,0,1,1,2,0,1,0,0,0,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,6,18,252,77,175,61,141,14,33,1,0,0,0,0,0,1,1,74,172,60,140,13,32,1,0,0,0,0,0,0,0,3,3,1,1,1,1,0,0,0,0,0,0,1,1 -050,01,007,Alabama,Bibb County,6,99,21721,11314,10407,8469,8260,2735,2051,31,30,6,10,8,1,65,55,11087,10315,8279,8187,2714,2035,29,29,6,10,1,0,58,54,227,92,190,73,21,16,2,1,0,0,7,1,7,1 -050,01,007,Alabama,Bibb County,7,0,270,151,119,129,85,18,32,1,0,0,0,1,0,2,2,146,117,124,84,18,31,1,0,0,0,1,0,2,2,5,2,5,1,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,7,1,1124,565,559,441,437,116,109,1,1,0,0,0,0,7,12,559,548,435,428,116,108,1,1,0,0,0,0,7,11,6,11,6,9,0,1,0,0,0,0,0,0,0,1 -050,01,007,Alabama,Bibb County,7,2,1452,791,661,604,506,176,143,2,1,2,3,1,0,6,8,776,652,592,500,174,140,2,1,2,3,0,0,6,8,15,9,12,6,2,3,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,7,3,1567,795,772,594,568,191,202,3,0,1,0,1,0,5,2,783,763,583,562,191,199,3,0,1,0,0,0,5,2,12,9,11,6,0,3,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,7,4,1485,740,745,539,553,187,181,2,1,2,2,4,0,6,8,724,740,529,550,185,180,2,1,2,2,0,0,6,7,16,5,10,3,2,1,0,0,0,0,4,0,0,1 -050,01,007,Alabama,Bibb County,7,5,1421,809,612,527,451,271,157,3,0,0,0,6,0,2,4,776,603,498,443,269,156,3,0,0,0,4,0,2,4,33,9,29,8,2,1,0,0,0,0,2,0,0,0 -050,01,007,Alabama,Bibb County,7,6,1553,883,670,559,509,315,153,2,2,0,0,3,1,4,5,848,664,528,504,314,153,2,2,0,0,0,0,4,5,35,6,31,5,1,0,0,0,0,0,3,1,0,0 -050,01,007,Alabama,Bibb County,7,7,1618,963,655,670,522,282,127,4,2,2,1,2,0,3,3,928,644,639,512,281,126,4,2,2,1,0,0,2,3,35,11,31,10,1,1,0,0,0,0,2,0,1,0 -050,01,007,Alabama,Bibb County,7,8,1722,928,794,656,648,267,141,1,3,1,1,1,0,2,1,909,785,638,641,266,139,1,3,1,1,1,0,2,1,19,9,18,7,1,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,7,9,1602,854,748,641,589,209,150,0,3,1,0,0,1,3,5,842,739,629,582,209,149,0,3,1,0,0,0,3,5,12,9,12,7,0,1,0,0,0,0,0,1,0,0 -050,01,007,Alabama,Bibb County,7,10,1655,931,724,669,572,251,143,2,3,0,0,0,0,9,6,920,718,658,567,251,142,2,3,0,0,0,0,9,6,11,6,11,5,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,7,11,1509,804,705,651,579,148,117,1,3,0,1,0,0,4,5,794,701,643,576,147,117,1,3,0,1,0,0,3,4,10,4,8,3,1,0,0,0,0,0,0,0,1,1 -050,01,007,Alabama,Bibb County,7,12,1335,684,651,520,547,151,96,5,1,2,1,0,0,6,6,679,649,517,545,150,96,5,1,2,1,0,0,5,6,5,2,3,2,1,0,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,7,13,1084,541,543,467,466,71,73,2,3,0,0,0,0,1,1,535,542,462,465,70,73,2,3,0,0,0,0,1,1,6,1,5,1,1,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,7,14,868,415,453,346,399,66,53,1,0,1,0,0,0,1,1,412,451,343,397,66,53,1,0,1,0,0,0,1,1,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,7,15,635,298,337,258,288,37,44,1,1,0,1,0,0,2,3,297,335,257,286,37,44,1,1,0,1,0,0,2,3,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,7,16,534,211,323,185,267,24,54,0,1,0,0,0,0,2,1,210,323,184,267,24,54,0,1,0,0,0,0,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,7,17,368,116,252,101,206,13,43,0,0,0,0,0,0,2,3,114,251,100,205,13,43,0,0,0,0,0,0,1,3,2,1,1,1,0,0,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,7,18,240,69,171,52,140,16,31,0,0,0,0,0,0,1,0,69,169,52,139,16,30,0,0,0,0,0,0,1,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,7,99,22042,11548,10494,8609,8332,2809,2049,31,25,12,10,19,2,68,76,11321,10394,8411,8253,2797,2033,31,25,12,10,6,0,64,73,227,100,198,79,12,16,0,0,0,0,13,2,4,3 -050,01,007,Alabama,Bibb County,8,0,296,164,132,131,90,29,40,2,0,0,0,1,0,1,2,159,130,126,89,29,39,2,0,0,0,1,0,1,2,5,2,5,1,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,8,1,1078,556,522,454,403,92,105,1,2,0,0,0,0,9,12,548,508,447,392,91,104,1,1,0,0,0,0,9,11,8,14,7,11,1,1,0,1,0,0,0,0,0,1 -050,01,007,Alabama,Bibb County,8,2,1436,787,649,599,497,177,140,2,1,2,3,1,0,6,8,768,638,585,490,173,136,2,1,2,3,0,0,6,8,19,11,14,7,4,4,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,8,3,1495,753,742,578,580,163,159,3,0,1,0,1,0,7,3,739,732,565,573,163,156,3,0,1,0,0,0,7,3,14,10,13,7,0,3,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,8,4,1538,798,740,575,538,208,189,3,2,2,2,5,0,5,9,781,736,565,535,206,189,3,2,2,2,0,0,5,8,17,4,10,3,2,0,0,0,0,0,5,0,0,1 -050,01,007,Alabama,Bibb County,8,5,1357,782,575,506,436,266,134,2,0,0,0,6,0,2,5,748,567,475,429,265,133,2,0,0,0,4,0,2,5,34,8,31,7,1,1,0,0,0,0,2,0,0,0 -050,01,007,Alabama,Bibb County,8,6,1583,900,683,563,520,325,154,2,4,1,0,4,1,5,4,860,676,529,514,323,154,2,4,1,0,0,0,5,4,40,7,34,6,2,0,0,0,0,0,4,1,0,0 -050,01,007,Alabama,Bibb County,8,7,1577,939,638,634,514,298,116,1,2,2,1,2,0,2,5,902,630,600,506,297,116,1,2,2,1,0,0,2,5,37,8,34,8,1,0,0,0,0,0,2,0,0,0 -050,01,007,Alabama,Bibb County,8,8,1733,957,776,676,637,274,132,1,4,1,1,1,0,4,2,938,768,658,630,273,131,1,4,1,1,1,0,4,2,19,8,18,7,1,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,8,9,1639,864,775,665,606,196,160,0,3,1,0,0,1,2,5,851,766,652,599,196,159,0,3,1,0,0,0,2,5,13,9,13,7,0,1,0,0,0,0,0,1,0,0 -050,01,007,Alabama,Bibb County,8,10,1637,948,689,682,539,256,141,2,3,0,0,0,0,8,6,936,682,671,533,255,140,2,3,0,0,0,0,8,6,12,7,11,6,1,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,8,11,1523,795,728,634,586,156,131,1,3,0,1,0,0,4,7,785,724,626,584,155,131,1,3,0,1,0,0,3,5,10,4,8,2,1,0,0,0,0,0,0,0,1,2 -050,01,007,Alabama,Bibb County,8,12,1408,719,689,546,580,158,100,5,2,1,1,0,0,9,6,715,687,542,578,158,100,5,2,1,1,0,0,9,6,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,8,13,1107,570,537,492,473,73,61,3,2,0,0,0,0,2,1,564,536,486,472,73,61,3,2,0,0,0,0,2,1,6,1,6,1,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,8,14,862,395,467,325,404,65,61,1,1,1,0,0,0,3,1,393,466,323,403,65,61,1,1,1,0,0,0,3,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,8,15,665,313,352,272,300,36,46,2,1,0,1,0,0,3,4,312,350,271,298,36,46,2,1,0,1,0,0,3,4,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,8,16,538,231,307,200,259,27,47,0,0,1,0,0,0,3,1,229,306,198,259,27,46,0,0,1,0,0,0,3,1,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,8,17,371,119,252,102,198,14,49,1,0,0,0,0,0,2,5,117,251,101,197,14,49,1,0,0,0,0,0,1,5,2,1,1,1,0,0,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,8,18,256,73,183,56,137,15,46,0,0,0,0,0,0,2,0,72,182,56,137,15,45,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,8,99,22099,11663,10436,8690,8297,2828,2011,32,30,13,10,21,2,79,86,11417,10335,8476,8218,2814,1996,32,29,13,10,6,0,76,82,246,101,214,79,14,15,0,1,0,0,15,2,3,4 -050,01,007,Alabama,Bibb County,9,0,292,161,131,125,89,32,40,2,0,0,0,1,0,1,2,156,130,120,88,32,40,2,0,0,0,1,0,1,2,5,1,5,1,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,9,1,1102,573,529,470,407,93,105,1,2,0,0,0,1,9,14,569,515,467,396,92,104,1,1,0,0,0,1,9,13,4,14,3,11,1,1,0,1,0,0,0,0,0,1 -050,01,007,Alabama,Bibb County,9,2,1462,775,687,594,543,170,132,2,1,2,3,1,0,6,8,752,677,576,537,166,128,2,1,2,3,0,0,6,8,23,10,18,6,4,4,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,9,3,1518,775,743,605,578,159,162,3,0,1,0,1,0,6,3,761,735,592,572,159,160,3,0,1,0,0,0,6,3,14,8,13,6,0,2,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,9,4,1531,797,734,560,550,221,170,3,3,2,2,6,0,5,9,781,730,551,547,220,170,3,3,2,2,0,0,5,8,16,4,9,3,1,0,0,0,0,0,6,0,0,1 -050,01,007,Alabama,Bibb County,9,5,1436,814,622,529,480,274,137,2,0,0,0,6,0,3,5,781,618,499,476,273,137,2,0,0,0,4,0,3,5,33,4,30,4,1,0,0,0,0,0,2,0,0,0 -050,01,007,Alabama,Bibb County,9,6,1589,935,654,592,503,331,140,2,4,1,0,4,1,5,6,887,646,550,496,329,140,2,4,1,0,0,0,5,6,48,8,42,7,2,0,0,0,0,0,4,1,0,0 -050,01,007,Alabama,Bibb County,9,7,1592,929,663,608,537,312,118,2,2,2,1,2,0,3,5,895,654,578,528,311,118,2,2,2,1,0,0,2,5,34,9,30,9,1,0,0,0,0,0,2,0,1,0 -050,01,007,Alabama,Bibb County,9,8,1733,975,758,693,602,276,148,1,5,1,1,1,0,3,2,952,751,671,596,275,147,1,5,1,1,1,0,3,2,23,7,22,6,1,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,9,9,1626,891,735,684,590,204,136,0,3,1,0,0,1,2,5,876,725,669,582,204,135,0,3,1,0,0,0,2,5,15,10,15,8,0,1,0,0,0,0,0,1,0,0 -050,01,007,Alabama,Bibb County,9,10,1671,942,729,682,563,250,156,1,3,0,0,0,0,9,7,932,721,673,557,249,155,1,3,0,0,0,0,9,6,10,8,9,6,1,1,0,0,0,0,0,0,0,1 -050,01,007,Alabama,Bibb County,9,11,1551,801,750,631,610,165,129,1,3,0,1,0,0,4,7,790,746,622,608,164,129,1,3,0,1,0,0,3,5,11,4,9,2,1,0,0,0,0,0,0,0,1,2 -050,01,007,Alabama,Bibb County,9,12,1378,725,653,547,546,163,99,5,2,1,1,0,0,9,5,720,651,542,544,163,99,5,2,1,1,0,0,9,5,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,9,13,1178,584,594,500,529,79,61,3,2,0,0,0,0,2,2,577,592,493,527,79,61,3,2,0,0,0,0,2,2,7,2,7,2,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,9,14,894,407,487,356,413,45,72,1,1,1,0,0,0,4,1,404,486,353,412,45,72,1,1,1,0,0,0,4,1,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,9,15,704,338,366,292,307,41,53,3,1,0,1,0,0,2,4,337,364,291,305,41,53,3,1,0,1,0,0,2,4,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,9,16,532,226,306,199,262,23,43,0,0,1,0,0,0,3,1,225,305,198,262,23,42,0,0,1,0,0,0,3,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,9,17,385,130,255,109,199,19,51,0,0,0,0,0,0,2,5,130,254,109,198,19,51,0,0,0,0,0,0,2,5,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,9,18,264,71,193,54,143,15,50,0,0,0,0,0,0,2,0,70,192,54,143,15,49,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,9,99,22438,11849,10589,8830,8451,2872,2002,32,32,13,10,22,3,80,91,11595,10492,8608,8374,2859,1990,32,31,13,10,6,1,77,86,254,97,222,77,13,12,0,1,0,0,16,2,3,5 -050,01,007,Alabama,Bibb County,10,0,287,166,121,128,89,35,30,2,0,0,0,0,0,1,2,161,120,123,88,35,30,2,0,0,0,0,0,1,2,5,1,5,1,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,10,1,1113,582,531,457,395,115,119,1,1,0,0,0,0,9,16,575,521,451,389,114,117,1,0,0,0,0,0,9,15,7,10,6,6,1,2,0,1,0,0,0,0,0,1 -050,01,007,Alabama,Bibb County,10,2,1447,758,689,602,548,145,129,2,2,2,2,1,0,6,8,736,679,585,542,141,125,2,2,2,2,0,0,6,8,22,10,17,6,4,4,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,10,3,1489,789,700,606,559,171,138,3,0,2,0,2,0,5,3,772,691,591,552,171,136,3,0,2,0,0,0,5,3,17,9,15,7,0,2,0,0,0,0,2,0,0,0 -050,01,007,Alabama,Bibb County,10,4,1559,814,745,572,536,226,195,3,3,2,2,6,0,5,9,797,741,562,533,225,195,3,3,2,2,0,0,5,8,17,4,10,3,1,0,0,0,0,0,6,0,0,1 -050,01,007,Alabama,Bibb County,10,5,1467,802,665,525,508,264,151,2,0,0,0,7,0,4,6,769,659,496,502,263,151,2,0,0,0,4,0,4,6,33,6,29,6,1,0,0,0,0,0,3,0,0,0 -050,01,007,Alabama,Bibb County,10,6,1582,951,631,600,481,337,138,2,4,1,0,5,2,6,6,909,624,565,476,335,138,2,4,1,0,0,0,6,6,42,7,35,5,2,0,0,0,0,0,5,2,0,0 -050,01,007,Alabama,Bibb County,10,7,1604,946,658,605,530,334,119,2,2,1,1,2,0,2,6,910,650,572,522,333,119,2,2,1,1,0,0,2,6,36,8,33,8,1,0,0,0,0,0,2,0,0,0 -050,01,007,Alabama,Bibb County,10,8,1716,968,748,682,592,279,148,1,5,1,1,1,0,4,2,946,741,661,586,278,147,1,5,1,1,1,0,4,2,22,7,21,6,1,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,10,9,1645,910,735,695,596,211,132,0,3,1,0,0,1,3,3,893,724,678,587,211,131,0,3,1,0,0,0,3,3,17,11,17,9,0,1,0,0,0,0,0,1,0,0 -050,01,007,Alabama,Bibb County,10,10,1722,960,762,681,588,268,165,1,3,0,0,0,0,10,6,947,750,669,578,267,164,1,3,0,0,0,0,10,5,13,12,12,10,1,1,0,0,0,0,0,0,0,1 -050,01,007,Alabama,Bibb County,10,11,1575,844,731,662,593,178,127,1,4,0,1,0,0,3,6,831,728,652,592,176,127,1,4,0,1,0,0,2,4,13,3,10,1,2,0,0,0,0,0,0,0,1,2 -050,01,007,Alabama,Bibb County,10,12,1383,726,657,547,537,162,112,4,2,1,1,0,0,12,5,720,655,542,535,162,112,4,2,1,1,0,0,11,5,6,2,5,2,0,0,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,10,13,1274,630,644,525,566,99,75,4,1,0,0,0,0,2,2,623,642,518,564,99,75,4,1,0,0,0,0,2,2,7,2,7,2,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,10,14,943,441,502,376,435,59,64,1,1,1,0,0,0,4,2,438,501,373,434,59,64,1,1,1,0,0,0,4,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,10,15,703,332,371,293,306,34,59,3,1,0,1,0,0,2,4,331,369,292,304,34,59,3,1,0,1,0,0,2,4,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,10,16,558,223,335,191,285,29,49,0,0,1,0,0,0,2,1,222,334,190,285,29,48,0,0,1,0,0,0,2,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,10,17,370,128,242,107,189,18,49,0,0,0,0,0,0,3,4,126,241,106,188,18,49,0,0,0,0,0,0,2,4,2,1,1,1,0,0,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,10,18,268,70,198,53,154,15,44,0,0,0,0,0,0,2,0,69,197,53,154,15,43,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,10,99,22705,12040,10665,8907,8487,2979,2043,32,32,13,9,24,3,85,91,11775,10567,8679,8411,2965,2030,32,31,13,9,5,0,81,86,265,98,228,76,14,13,0,1,0,0,19,3,4,5 -050,01,007,Alabama,Bibb County,11,0,283,130,153,105,117,20,34,3,0,0,0,1,0,1,2,125,152,100,116,20,34,3,0,0,0,1,0,1,2,5,1,5,1,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,11,1,1093,598,495,465,359,122,119,1,1,0,0,0,0,10,16,592,486,460,354,121,117,1,0,0,0,0,0,10,15,6,9,5,5,1,2,0,1,0,0,0,0,0,1 -050,01,007,Alabama,Bibb County,11,2,1441,779,662,631,535,136,115,2,2,2,2,1,0,7,8,760,651,617,528,132,111,2,2,2,2,0,0,7,8,19,11,14,7,4,4,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,11,3,1466,772,694,579,547,180,144,4,0,2,0,2,0,5,3,754,681,563,537,180,141,4,0,2,0,0,0,5,3,18,13,16,10,0,3,0,0,0,0,2,0,0,0 -050,01,007,Alabama,Bibb County,11,4,1589,838,751,604,557,218,180,3,3,2,2,6,0,5,9,817,747,590,554,217,180,3,3,2,2,0,0,5,8,21,4,14,3,1,0,0,0,0,0,6,0,0,1 -050,01,007,Alabama,Bibb County,11,5,1504,824,680,521,508,290,166,2,0,0,0,7,0,4,6,788,676,489,504,289,166,2,0,0,0,4,0,4,6,36,4,32,4,1,0,0,0,0,0,3,0,0,0 -050,01,007,Alabama,Bibb County,11,6,1638,1009,629,625,484,370,133,2,4,1,0,5,2,6,6,955,619,578,476,368,133,2,4,1,0,0,0,6,6,54,10,47,8,2,0,0,0,0,0,5,2,0,0 -050,01,007,Alabama,Bibb County,11,7,1652,1010,642,643,510,359,122,2,3,1,1,2,0,3,6,964,633,600,501,358,122,2,3,1,1,0,0,3,6,46,9,43,9,1,0,0,0,0,0,2,0,0,0 -050,01,007,Alabama,Bibb County,11,8,1724,986,738,689,593,289,137,2,5,1,1,1,0,4,2,963,730,667,586,288,136,2,5,1,1,1,0,4,2,23,8,22,7,1,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,11,9,1633,896,737,678,599,213,131,0,3,1,0,1,1,3,3,879,725,662,589,213,130,0,3,1,0,0,0,3,3,17,12,16,10,0,1,0,0,0,0,1,1,0,0 -050,01,007,Alabama,Bibb County,11,10,1775,1012,763,722,597,279,157,1,3,0,0,0,0,10,6,995,753,706,589,278,156,1,3,0,0,0,0,10,5,17,10,16,8,1,1,0,0,0,0,0,0,0,1 -050,01,007,Alabama,Bibb County,11,11,1572,851,721,666,582,181,128,1,4,0,1,0,0,3,6,837,718,655,581,179,128,1,4,0,1,0,0,2,4,14,3,11,1,2,0,0,0,0,0,0,0,1,2 -050,01,007,Alabama,Bibb County,11,12,1376,723,653,544,535,163,111,4,2,1,1,0,0,11,4,716,651,538,533,163,111,4,2,1,1,0,0,10,4,7,2,6,2,0,0,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,11,13,1313,668,645,547,556,115,86,4,1,0,0,0,0,2,2,659,643,538,554,115,86,4,1,0,0,0,0,2,2,9,2,9,2,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,11,14,964,463,501,391,440,66,58,1,1,1,0,0,0,4,2,460,500,388,439,66,58,1,1,1,0,0,0,4,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,11,15,722,330,392,295,335,29,51,3,1,0,1,0,0,3,4,329,390,294,333,29,51,3,1,0,1,0,0,3,4,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,11,16,553,241,312,204,273,34,38,0,0,1,0,0,0,2,1,240,311,203,273,34,37,0,0,1,0,0,0,2,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,11,17,365,132,233,110,192,19,36,0,0,0,0,0,0,3,5,130,232,109,191,19,36,0,0,0,0,0,0,2,5,2,1,1,1,0,0,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,11,18,278,71,207,54,166,15,41,0,0,0,0,0,0,2,0,70,206,54,166,15,40,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,11,99,22941,12333,10608,9073,8485,3098,1987,35,33,13,9,26,3,88,91,12033,10504,8811,8404,3084,1973,35,32,13,9,6,0,84,86,300,104,262,81,14,14,0,1,0,0,20,3,4,5 -050,01,007,Alabama,Bibb County,12,0,268,134,134,104,98,25,34,3,0,0,0,1,0,1,2,129,133,99,97,25,34,3,0,0,0,1,0,1,2,5,1,5,1,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,12,1,1110,578,532,447,397,119,117,1,1,0,0,0,1,11,16,572,518,442,387,118,115,1,0,0,0,0,1,11,15,6,14,5,10,1,2,0,1,0,0,0,0,0,1 -050,01,007,Alabama,Bibb County,12,2,1405,759,646,615,516,132,117,2,2,2,2,1,1,7,8,739,634,600,509,128,113,2,2,2,2,0,0,7,8,20,12,15,7,4,4,0,0,0,0,1,1,0,0 -050,01,007,Alabama,Bibb County,12,3,1440,771,669,588,535,170,131,4,0,2,0,2,0,5,3,758,658,577,527,170,128,4,0,2,0,0,0,5,3,13,11,11,8,0,3,0,0,0,0,2,0,0,0 -050,01,007,Alabama,Bibb County,12,4,1543,806,737,592,542,197,181,3,3,2,2,7,0,5,9,785,733,579,539,196,181,3,3,2,2,0,0,5,8,21,4,13,3,1,0,0,0,0,0,7,0,0,1 -050,01,007,Alabama,Bibb County,12,5,1491,811,680,514,501,284,173,2,0,0,0,7,0,4,6,777,674,484,495,283,173,2,0,0,0,4,0,4,6,34,6,30,6,1,0,0,0,0,0,3,0,0,0 -050,01,007,Alabama,Bibb County,12,6,1603,987,616,589,474,384,130,2,4,1,0,5,2,6,6,932,608,541,468,382,130,2,4,1,0,0,0,6,6,55,8,48,6,2,0,0,0,0,0,5,2,0,0 -050,01,007,Alabama,Bibb County,12,7,1646,1013,633,640,507,364,116,2,3,1,1,2,0,4,6,970,625,601,499,363,116,2,3,1,1,0,0,3,6,43,8,39,8,1,0,0,0,0,0,2,0,1,0 -050,01,007,Alabama,Bibb County,12,8,1747,1003,744,700,594,295,142,2,5,1,1,1,0,4,2,978,737,676,588,294,141,2,5,1,1,1,0,4,2,25,7,24,6,1,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,12,9,1635,892,743,663,608,223,128,0,3,1,0,2,1,3,3,871,731,644,598,223,127,0,3,1,0,0,0,3,3,21,12,19,10,0,1,0,0,0,0,2,1,0,0 -050,01,007,Alabama,Bibb County,12,10,1805,1036,769,746,597,279,163,1,3,0,0,0,0,10,6,1019,757,730,587,278,162,1,3,0,0,0,0,10,5,17,12,16,10,1,1,0,0,0,0,0,0,0,1 -050,01,007,Alabama,Bibb County,12,11,1581,847,734,664,598,179,125,1,4,0,1,0,0,3,6,833,731,653,597,177,125,1,4,0,1,0,0,2,4,14,3,11,1,2,0,0,0,0,0,0,0,1,2 -050,01,007,Alabama,Bibb County,12,12,1401,734,667,550,542,167,117,4,2,1,1,0,0,12,5,727,665,544,540,167,117,4,2,1,1,0,0,11,5,7,2,6,2,0,0,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,12,13,1334,684,650,568,553,110,94,4,1,0,0,0,0,2,2,675,648,559,551,110,94,4,1,0,0,0,0,2,2,9,2,9,2,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,12,14,966,456,510,397,447,53,60,1,1,1,0,0,0,4,2,453,509,394,446,53,60,1,1,1,0,0,0,4,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,12,15,757,347,410,304,357,37,47,3,1,0,1,0,0,3,4,346,408,303,355,37,47,3,1,0,1,0,0,3,4,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,12,16,549,232,317,199,274,30,42,0,0,1,0,0,0,2,1,231,316,198,274,30,41,0,0,1,0,0,0,2,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,12,17,355,138,217,117,190,18,22,0,0,0,0,0,0,3,5,136,216,116,189,18,22,0,0,0,0,0,0,2,5,2,1,1,1,0,0,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,12,18,279,73,206,58,164,13,42,0,0,0,0,0,0,2,0,72,205,58,164,13,41,0,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,12,99,22915,12301,10614,9055,8494,3079,1981,35,33,13,9,28,5,91,92,12003,10506,8798,8410,3065,1967,35,32,13,9,6,1,86,87,298,108,257,84,14,14,0,1,0,0,22,4,5,5 -050,01,007,Alabama,Bibb County,13,0,266,133,133,104,97,25,34,3,0,0,0,0,0,1,2,128,131,99,96,25,33,3,0,0,0,0,0,1,2,5,2,5,1,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,13,1,1104,575,529,446,396,118,119,1,0,1,1,0,0,9,13,568,516,439,386,118,116,1,0,1,1,0,0,9,13,7,13,7,10,0,3,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,13,2,1402,761,641,614,513,132,114,3,3,2,1,0,0,10,10,739,630,598,505,127,111,2,3,2,1,0,0,10,10,22,11,16,8,5,3,1,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,13,3,1440,770,670,585,530,170,130,5,1,4,1,1,0,5,8,756,659,574,522,169,127,4,1,4,1,0,0,5,8,14,11,11,8,1,3,1,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,13,4,1525,795,730,584,537,196,180,6,4,2,2,3,0,4,7,776,724,573,533,194,180,3,3,2,2,0,0,4,6,19,6,11,4,2,0,3,1,0,0,3,0,0,1 -050,01,007,Alabama,Bibb County,13,5,1490,809,681,511,500,287,174,4,0,0,1,4,0,3,6,776,674,482,494,286,174,3,0,0,0,2,0,3,6,33,7,29,6,1,0,1,0,0,1,2,0,0,0 -050,01,007,Alabama,Bibb County,13,6,1606,987,619,588,472,386,132,3,4,2,4,2,1,6,6,934,611,541,467,383,131,2,4,2,3,0,0,6,6,53,8,47,5,3,1,1,0,0,1,2,1,0,0 -050,01,007,Alabama,Bibb County,13,7,1652,1013,639,642,508,365,119,2,5,1,2,1,0,2,5,973,628,604,501,364,116,2,4,1,2,0,0,2,5,40,11,38,7,1,3,0,1,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,13,8,1738,999,739,693,586,296,143,1,4,4,2,0,1,5,3,973,731,669,580,294,142,1,4,4,2,0,0,5,3,26,8,24,6,2,1,0,0,0,0,0,1,0,0 -050,01,007,Alabama,Bibb County,13,9,1633,893,740,662,606,223,126,2,5,2,0,1,0,3,3,873,730,643,596,223,126,2,5,2,0,0,0,3,3,20,10,19,10,0,0,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,13,10,1789,1027,762,740,592,278,160,1,3,2,1,0,0,6,6,1011,751,724,582,278,159,1,3,2,1,0,0,6,6,16,11,16,10,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,13,11,1576,848,728,663,598,178,124,2,3,1,0,0,0,4,3,834,726,652,596,176,124,2,3,1,0,0,0,3,3,14,2,11,2,2,0,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,13,12,1399,732,667,551,544,167,115,4,3,2,3,0,0,8,2,726,664,545,541,167,115,4,3,2,3,0,0,8,2,6,3,6,3,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,13,13,1346,690,656,570,557,112,96,5,2,0,0,0,0,3,1,681,654,561,555,112,96,5,2,0,0,0,0,3,1,9,2,9,2,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,13,14,970,458,512,399,448,55,60,1,2,0,0,0,0,3,2,455,511,396,447,55,60,1,2,0,0,0,0,3,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,13,15,758,346,412,303,358,38,49,3,1,0,1,0,0,2,3,344,409,301,356,38,48,3,1,0,1,0,0,2,3,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,13,16,544,227,317,195,275,29,42,0,0,1,0,0,0,2,0,227,315,195,273,29,42,0,0,1,0,0,0,2,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,13,17,350,136,214,117,191,17,21,0,0,0,0,0,0,2,2,136,212,117,189,17,21,0,0,0,0,0,0,2,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,13,18,279,73,206,58,164,13,42,0,0,0,0,0,0,2,0,72,206,58,164,13,42,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0 -050,01,007,Alabama,Bibb County,13,99,22867,12272,10595,9025,8472,3085,1980,46,40,24,19,12,2,80,82,11982,10482,8771,8383,3068,1963,39,38,24,17,2,0,78,81,290,113,254,89,17,17,7,2,0,2,10,2,2,1 -050,01,009,Alabama,Blount County,1,0,690,343,347,327,335,9,4,2,2,2,1,1,0,2,5,309,292,295,281,8,4,1,2,2,0,1,0,2,5,34,55,32,54,1,0,1,0,0,1,0,0,0,0 -050,01,009,Alabama,Blount County,1,1,2839,1493,1346,1456,1298,15,20,9,8,0,8,0,0,13,12,1344,1215,1314,1174,13,17,6,7,0,7,0,0,11,10,149,131,142,124,2,3,3,1,0,1,0,0,2,2 -050,01,009,Alabama,Blount County,1,2,3632,1906,1726,1851,1671,25,23,18,8,2,2,0,1,10,21,1739,1600,1687,1547,25,22,16,7,2,2,0,1,9,21,167,126,164,124,0,1,2,1,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,1,3,3656,1881,1775,1821,1714,27,33,21,12,1,2,0,1,11,13,1778,1671,1721,1616,27,32,19,8,1,1,0,1,10,13,103,104,100,98,0,1,2,4,0,1,0,0,1,0 -050,01,009,Alabama,Blount County,1,4,3372,1725,1647,1677,1586,22,20,11,13,3,4,1,3,11,21,1591,1525,1549,1472,22,20,7,11,2,2,0,2,11,18,134,122,128,114,0,0,4,2,1,2,1,1,0,3 -050,01,009,Alabama,Blount County,1,5,3033,1569,1464,1531,1434,20,14,4,2,1,5,0,0,13,9,1330,1335,1297,1309,20,13,2,1,0,4,0,0,11,8,239,129,234,125,0,1,2,1,1,1,0,0,2,1 -050,01,009,Alabama,Blount County,1,6,3482,1823,1659,1778,1613,22,17,12,6,2,8,1,1,8,14,1628,1564,1590,1519,21,17,7,5,2,8,0,1,8,14,195,95,188,94,1,0,5,1,0,0,1,0,0,0 -050,01,009,Alabama,Blount County,1,7,3681,1868,1813,1832,1771,14,16,9,9,7,2,0,1,6,14,1697,1717,1663,1680,14,15,7,7,7,2,0,0,6,13,171,96,169,91,0,1,2,2,0,0,0,1,0,1 -050,01,009,Alabama,Blount County,1,8,3963,2030,1933,1980,1879,25,26,12,14,2,3,0,0,11,11,1913,1845,1868,1793,24,25,8,13,2,3,0,0,11,11,117,88,112,86,1,1,4,1,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,1,9,3772,1920,1852,1875,1788,21,23,6,12,2,5,0,0,16,24,1817,1801,1774,1741,21,23,5,11,1,4,0,0,16,22,103,51,101,47,0,0,1,1,1,1,0,0,0,2 -050,01,009,Alabama,Blount County,1,10,3571,1848,1723,1796,1675,26,21,13,7,0,3,1,1,12,16,1785,1687,1736,1640,25,21,12,7,0,3,0,0,12,16,63,36,60,35,1,0,1,0,0,0,1,1,0,0 -050,01,009,Alabama,Blount County,1,11,3330,1600,1730,1566,1682,14,24,10,10,1,5,0,0,9,9,1564,1709,1531,1661,14,24,9,10,1,5,0,0,9,9,36,21,35,21,0,0,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,1,12,2919,1405,1514,1370,1481,11,12,10,6,1,4,0,0,13,11,1388,1501,1354,1469,11,12,9,5,1,4,0,0,13,11,17,13,16,12,0,0,1,1,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,1,13,2482,1259,1223,1234,1197,10,13,5,1,2,2,0,0,8,10,1244,1215,1220,1189,10,13,4,1,2,2,0,0,8,10,15,8,14,8,0,0,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,1,14,2039,966,1073,947,1051,8,11,5,3,1,0,0,0,5,8,951,1065,932,1043,8,11,5,3,1,0,0,0,5,8,15,8,15,8,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,1,15,1727,784,943,764,925,11,9,0,4,0,0,0,0,9,5,770,939,750,921,11,9,0,4,0,0,0,0,9,5,14,4,14,4,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,1,16,1207,483,724,472,698,5,13,1,3,0,1,0,0,5,9,474,719,463,693,5,13,1,3,0,1,0,0,5,9,9,5,9,5,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,1,17,871,321,550,314,530,5,14,0,0,0,0,0,0,2,6,312,544,305,524,5,14,0,0,0,0,0,0,2,6,9,6,9,6,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,1,18,716,230,486,224,478,5,6,0,0,0,0,0,0,1,2,212,473,206,465,5,6,0,0,0,0,0,0,1,2,18,13,18,13,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,1,99,50982,25454,25528,24815,24806,295,319,148,120,27,55,4,8,165,220,23846,24417,23255,23737,289,311,118,105,24,48,1,5,159,211,1608,1111,1560,1069,6,8,30,15,3,7,3,3,6,9 -050,01,009,Alabama,Blount County,2,0,699,347,352,331,341,9,4,2,2,2,1,1,0,2,4,312,295,298,285,8,4,1,2,2,0,1,0,2,4,35,57,33,56,1,0,1,0,0,1,0,0,0,0 -050,01,009,Alabama,Blount County,2,1,2835,1492,1343,1455,1297,15,20,9,8,0,8,0,0,13,10,1342,1212,1312,1173,13,17,6,7,0,7,0,0,11,8,150,131,143,124,2,3,3,1,0,1,0,0,2,2 -050,01,009,Alabama,Blount County,2,2,3627,1902,1725,1849,1670,23,21,18,8,2,2,0,1,10,23,1735,1598,1685,1545,23,20,16,7,2,2,0,1,9,23,167,127,164,125,0,1,2,1,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,2,3,3675,1892,1783,1831,1723,27,32,21,12,1,2,0,1,12,13,1788,1678,1730,1624,27,31,19,8,1,1,0,1,11,13,104,105,101,99,0,1,2,4,0,1,0,0,1,0 -050,01,009,Alabama,Blount County,2,4,3397,1742,1655,1692,1593,21,20,11,13,3,4,1,3,14,22,1606,1534,1562,1480,21,20,7,11,2,2,0,2,14,19,136,121,130,113,0,0,4,2,1,2,1,1,0,3 -050,01,009,Alabama,Blount County,2,5,3055,1579,1476,1542,1446,20,14,4,2,1,5,0,0,12,9,1339,1347,1307,1321,20,13,2,1,0,4,0,0,10,8,240,129,235,125,0,1,2,1,1,1,0,0,2,1 -050,01,009,Alabama,Blount County,2,6,3457,1812,1645,1767,1599,22,17,12,6,2,8,1,1,8,14,1615,1550,1577,1505,21,17,7,5,2,8,0,1,8,14,197,95,190,94,1,0,5,1,0,0,1,0,0,0 -050,01,009,Alabama,Blount County,2,7,3675,1865,1810,1829,1768,14,16,9,9,7,2,0,1,6,14,1693,1713,1659,1676,14,15,7,7,7,2,0,0,6,13,172,97,170,92,0,1,2,2,0,0,0,1,0,1 -050,01,009,Alabama,Blount County,2,8,3944,2021,1923,1971,1869,25,26,12,14,2,3,0,0,11,11,1903,1835,1858,1783,24,25,8,13,2,3,0,0,11,11,118,88,113,86,1,1,4,1,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,2,9,3775,1921,1854,1877,1790,21,23,6,12,2,5,0,0,15,24,1818,1803,1776,1743,21,23,5,11,1,4,0,0,15,22,103,51,101,47,0,0,1,1,1,1,0,0,0,2 -050,01,009,Alabama,Blount County,2,10,3592,1858,1734,1807,1686,26,21,13,7,0,3,1,1,11,16,1795,1698,1747,1651,25,21,12,7,0,3,0,0,11,16,63,36,60,35,1,0,1,0,0,0,1,1,0,0 -050,01,009,Alabama,Blount County,2,11,3360,1613,1747,1579,1698,14,24,10,10,1,5,0,0,9,10,1577,1726,1544,1677,14,24,9,10,1,5,0,0,9,10,36,21,35,21,0,0,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,2,12,2937,1412,1525,1379,1490,11,12,10,6,1,4,0,0,11,13,1395,1512,1363,1478,11,12,9,5,1,4,0,0,11,13,17,13,16,12,0,0,1,1,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,2,13,2497,1267,1230,1242,1204,10,13,5,1,2,2,0,0,8,10,1252,1222,1228,1196,10,13,4,1,2,2,0,0,8,10,15,8,14,8,0,0,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,2,14,2041,968,1073,948,1051,8,11,5,3,1,0,0,0,6,8,953,1065,933,1043,8,11,5,3,1,0,0,0,6,8,15,8,15,8,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,2,15,1727,786,941,766,923,11,9,0,4,0,0,0,0,9,5,772,937,752,919,11,9,0,4,0,0,0,0,9,5,14,4,14,4,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,2,16,1212,485,727,474,701,5,13,1,3,0,1,0,0,5,9,476,722,465,696,5,13,1,3,0,1,0,0,5,9,9,5,9,5,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,2,17,880,326,554,319,534,5,14,0,0,0,0,0,0,2,6,317,548,310,528,5,14,0,0,0,0,0,0,2,6,9,6,9,6,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,2,18,722,231,491,225,482,5,6,0,0,0,0,0,0,1,3,214,478,208,469,5,6,0,0,0,0,0,0,1,3,17,13,17,13,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,2,99,51107,25519,25588,24883,24865,292,316,148,120,27,55,4,8,165,224,23902,24473,23314,23792,286,308,118,105,24,48,1,5,159,215,1617,1115,1569,1073,6,8,30,15,3,7,3,3,6,9 -050,01,009,Alabama,Blount County,3,0,694,362,332,348,325,5,2,2,2,2,1,1,0,4,2,295,284,283,278,4,2,1,2,2,0,1,0,4,2,67,48,65,47,1,0,1,0,0,1,0,0,0,0 -050,01,009,Alabama,Blount County,3,1,2819,1470,1349,1420,1280,27,39,9,8,0,8,0,0,14,14,1308,1213,1265,1150,25,37,6,7,0,7,0,0,12,12,162,136,155,130,2,2,3,1,0,1,0,0,2,2 -050,01,009,Alabama,Blount County,3,2,3748,1972,1776,1909,1707,30,31,17,8,2,5,0,1,14,24,1800,1640,1740,1574,30,29,15,7,2,5,0,1,13,24,172,136,169,133,0,2,2,1,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,3,3,3765,1940,1825,1872,1751,33,40,23,14,1,2,0,1,11,17,1823,1709,1758,1641,33,39,21,10,1,1,0,1,10,17,117,116,114,110,0,1,2,4,0,1,0,0,1,0 -050,01,009,Alabama,Blount County,3,4,3400,1726,1674,1668,1610,24,24,16,14,3,6,1,1,14,19,1593,1560,1543,1504,24,24,10,12,2,4,0,0,14,16,133,114,125,106,0,0,6,2,1,2,1,1,0,3 -050,01,009,Alabama,Blount County,3,5,3147,1649,1498,1607,1461,24,18,4,3,1,7,0,0,13,9,1420,1364,1383,1331,24,17,2,2,0,6,0,0,11,8,229,134,224,130,0,1,2,1,1,1,0,0,2,1 -050,01,009,Alabama,Blount County,3,6,3367,1749,1618,1700,1567,24,25,14,5,2,7,1,1,8,13,1538,1506,1500,1456,22,25,6,4,2,7,0,1,8,13,211,112,200,111,2,0,8,1,0,0,1,0,0,0 -050,01,009,Alabama,Blount County,3,7,3705,1911,1794,1862,1752,27,18,9,9,7,2,0,1,6,12,1757,1691,1710,1654,27,17,7,7,7,2,0,0,6,11,154,103,152,98,0,1,2,2,0,0,0,1,0,1 -050,01,009,Alabama,Blount County,3,8,3957,2030,1927,1975,1874,25,22,12,14,2,4,0,0,16,13,1897,1833,1847,1782,24,21,8,13,2,4,0,0,16,13,133,94,128,92,1,1,4,1,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,3,9,3850,1977,1873,1916,1807,31,23,10,13,2,4,0,0,18,26,1885,1818,1826,1755,31,23,9,12,1,4,0,0,18,24,92,55,90,52,0,0,1,1,1,0,0,0,0,2 -050,01,009,Alabama,Blount County,3,10,3717,1887,1830,1834,1781,26,22,13,6,0,3,1,1,13,17,1819,1790,1769,1742,25,22,12,6,0,3,0,0,13,17,68,40,65,39,1,0,1,0,0,0,1,1,0,0 -050,01,009,Alabama,Blount County,3,11,3490,1696,1794,1664,1745,12,24,10,11,1,5,0,0,9,9,1643,1771,1612,1722,12,24,9,11,1,5,0,0,9,9,53,23,52,23,0,0,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,3,12,3017,1462,1555,1415,1518,19,13,13,6,1,4,0,0,14,14,1437,1540,1391,1504,19,13,12,5,1,4,0,0,14,14,25,15,24,14,0,0,1,1,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,3,13,2504,1246,1258,1216,1234,11,12,9,1,2,2,0,0,8,9,1233,1244,1204,1220,11,12,8,1,2,2,0,0,8,9,13,14,12,14,0,0,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,3,14,2097,1008,1089,988,1067,6,14,5,3,1,0,0,0,8,5,996,1079,976,1057,6,14,5,3,1,0,0,0,8,5,12,10,12,10,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,3,15,1717,772,945,755,931,11,5,0,4,0,0,0,0,6,5,754,939,737,925,11,5,0,4,0,0,0,0,6,5,18,6,18,6,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,3,16,1249,499,750,489,726,5,12,1,3,0,1,0,0,4,8,490,744,480,720,5,12,1,3,0,1,0,0,4,8,9,6,9,6,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,3,17,838,327,511,319,496,6,10,0,0,0,0,0,0,2,5,319,506,311,491,6,10,0,0,0,0,0,0,2,5,8,5,8,5,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,3,18,764,240,524,235,515,4,5,0,0,0,0,0,0,1,4,224,512,219,503,4,5,0,0,0,0,0,0,1,4,16,12,16,12,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,3,99,51845,25923,25922,25192,25147,350,359,167,124,27,61,4,6,183,225,24231,24743,23554,24009,343,351,132,109,24,55,1,3,177,216,1692,1179,1638,1138,7,8,35,15,3,6,3,3,6,9 -050,01,009,Alabama,Blount County,4,0,701,361,340,349,332,4,3,1,1,2,1,1,0,4,3,313,287,302,280,3,3,1,1,2,0,1,0,4,3,48,53,47,52,1,0,0,0,0,1,0,0,0,0 -050,01,009,Alabama,Blount County,4,1,2816,1464,1352,1398,1271,39,52,9,7,0,7,0,0,18,15,1290,1201,1231,1128,37,48,6,6,0,6,0,0,16,13,174,151,167,143,2,4,3,1,0,1,0,0,2,2 -050,01,009,Alabama,Blount County,4,2,3808,1979,1829,1909,1747,35,42,16,9,3,5,0,1,16,25,1804,1684,1737,1604,35,41,14,8,3,5,0,1,15,25,175,145,172,143,0,1,2,1,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,4,3,3860,1955,1905,1889,1833,32,38,21,14,1,2,0,1,12,17,1822,1782,1759,1716,32,36,19,10,1,2,0,1,11,17,133,123,130,117,0,2,2,4,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,4,4,3384,1748,1636,1689,1578,26,20,16,12,3,4,0,3,14,19,1620,1522,1567,1470,26,20,11,10,2,3,0,2,14,17,128,114,122,108,0,0,5,2,1,1,0,1,0,2 -050,01,009,Alabama,Blount County,4,5,3085,1597,1488,1557,1453,20,16,4,3,2,6,0,0,14,10,1367,1353,1333,1323,19,14,2,2,1,5,0,0,12,9,230,135,224,130,1,2,2,1,1,1,0,0,2,1 -050,01,009,Alabama,Blount County,4,6,3373,1742,1631,1688,1579,29,26,12,8,2,7,1,1,10,10,1488,1517,1444,1467,26,26,6,6,2,7,0,1,10,10,254,114,244,112,3,0,6,2,0,0,1,0,0,0 -050,01,009,Alabama,Blount County,4,7,3765,1937,1828,1891,1783,24,19,9,9,7,3,0,1,6,13,1768,1712,1725,1673,23,17,7,7,7,3,0,0,6,12,169,116,166,110,1,2,2,2,0,0,0,1,0,1 -050,01,009,Alabama,Blount County,4,8,3950,2018,1932,1959,1877,33,23,13,14,2,5,0,0,11,13,1876,1827,1822,1774,32,22,9,13,2,5,0,0,11,13,142,105,137,103,1,1,4,1,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,4,9,3916,2029,1887,1959,1817,34,21,11,16,2,6,1,0,22,27,1933,1833,1866,1768,34,21,10,15,1,4,0,0,22,25,96,54,93,49,0,0,1,1,1,2,1,0,0,2 -050,01,009,Alabama,Blount County,4,10,3825,1915,1910,1866,1856,22,23,12,8,0,3,1,1,14,19,1851,1851,1805,1798,21,23,11,8,0,3,0,0,14,19,64,59,61,58,1,0,1,0,0,0,1,1,0,0 -050,01,009,Alabama,Blount County,4,11,3458,1716,1742,1680,1684,16,29,9,9,1,6,0,0,10,14,1657,1715,1622,1657,16,29,8,9,1,6,0,0,10,14,59,27,58,27,0,0,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,4,12,3117,1480,1637,1438,1593,20,19,8,8,1,5,0,0,13,12,1452,1622,1411,1579,20,19,7,7,1,5,0,0,13,12,28,15,27,14,0,0,1,1,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,4,13,2693,1320,1373,1292,1343,9,13,11,4,2,2,0,0,6,11,1303,1356,1276,1326,9,13,10,4,2,2,0,0,6,11,17,17,16,17,0,0,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,4,14,2182,1064,1118,1041,1096,7,11,7,3,1,1,0,1,8,6,1050,1106,1027,1084,7,11,7,3,1,1,0,1,8,6,14,12,14,12,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,4,15,1743,794,949,772,934,14,5,0,3,0,0,0,0,8,7,777,943,755,928,14,5,0,3,0,0,0,0,8,7,17,6,17,6,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,4,16,1301,525,776,515,753,5,11,1,3,0,1,0,0,4,8,517,770,507,747,5,11,1,3,0,1,0,0,4,8,8,6,8,6,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,4,17,819,302,517,291,498,7,14,1,0,0,0,0,0,3,5,293,512,282,493,7,14,1,0,0,0,0,0,3,5,9,5,9,5,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,4,18,755,229,526,222,517,6,5,0,0,0,0,0,0,1,4,213,514,206,505,6,5,0,0,0,0,0,0,1,4,16,12,16,12,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,4,99,52551,26175,26376,25405,25544,382,390,161,131,29,64,4,9,194,238,24394,25107,23677,24320,372,378,130,115,26,58,1,6,188,230,1781,1269,1728,1224,10,12,31,16,3,6,3,3,6,8 -050,01,009,Alabama,Blount County,5,0,699,344,355,333,345,3,4,1,1,1,1,1,0,5,4,291,302,282,294,2,3,1,1,1,0,1,0,4,4,53,53,51,51,1,1,0,0,0,1,0,0,1,0 -050,01,009,Alabama,Blount County,5,1,2878,1470,1408,1411,1321,37,56,7,7,0,6,1,1,14,17,1294,1244,1243,1164,33,53,5,7,0,5,0,0,13,15,176,164,168,157,4,3,2,0,0,1,1,1,1,2 -050,01,009,Alabama,Blount County,5,2,3842,2039,1803,1971,1719,31,43,18,8,3,3,1,1,15,29,1849,1646,1786,1566,31,41,15,7,3,3,0,1,14,28,190,157,185,153,0,2,3,1,0,0,1,0,1,1 -050,01,009,Alabama,Blount County,5,3,3875,1937,1938,1862,1856,42,47,19,14,1,3,0,1,13,17,1798,1797,1727,1722,41,45,17,10,1,2,0,1,12,17,139,141,135,134,1,2,2,4,0,1,0,0,1,0 -050,01,009,Alabama,Blount County,5,4,3594,1885,1709,1817,1653,25,15,20,15,3,4,1,3,19,19,1731,1587,1672,1539,24,15,14,12,2,3,0,1,19,17,154,122,145,114,1,0,6,3,1,1,1,2,0,2 -050,01,009,Alabama,Blount County,5,5,3049,1588,1461,1545,1427,23,14,4,5,2,5,1,0,13,10,1361,1325,1324,1298,22,11,2,3,1,4,1,0,11,9,227,136,221,129,1,3,2,2,1,1,0,0,2,1 -050,01,009,Alabama,Blount County,5,6,3374,1741,1633,1689,1578,28,24,14,11,1,7,1,1,8,12,1511,1510,1472,1458,24,24,6,8,1,7,0,1,8,12,230,123,217,120,4,0,8,3,0,0,1,0,0,0 -050,01,009,Alabama,Blount County,5,7,3790,1936,1854,1887,1803,27,26,9,10,7,3,0,1,6,11,1775,1736,1731,1692,24,23,7,8,7,3,0,0,6,10,161,118,156,111,3,3,2,2,0,0,0,1,0,1 -050,01,009,Alabama,Blount County,5,8,3980,2015,1965,1955,1910,33,22,12,12,2,6,1,0,12,15,1861,1855,1807,1802,32,21,9,11,2,6,0,0,11,15,154,110,148,108,1,1,3,1,0,0,1,0,1,0 -050,01,009,Alabama,Blount County,5,9,4034,2080,1954,2015,1874,32,35,15,15,3,5,1,0,14,25,1982,1890,1921,1813,32,35,13,15,2,4,0,0,14,23,98,64,94,61,0,0,2,0,1,1,1,0,0,2 -050,01,009,Alabama,Blount County,5,10,3854,1937,1917,1885,1858,23,26,11,10,0,4,1,0,17,19,1866,1854,1817,1795,22,26,11,10,0,4,0,0,16,19,71,63,68,63,1,0,0,0,0,0,1,0,1,0 -050,01,009,Alabama,Blount County,5,11,3514,1754,1760,1713,1708,19,29,10,10,2,5,0,0,10,8,1697,1726,1657,1674,19,29,9,10,2,5,0,0,10,8,57,34,56,34,0,0,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,5,12,3201,1490,1711,1441,1664,21,19,10,8,2,5,0,0,16,15,1456,1696,1408,1650,21,19,9,7,2,5,0,0,16,15,34,15,33,14,0,0,1,1,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,5,13,2809,1392,1417,1355,1386,17,14,7,4,2,2,0,0,11,11,1374,1405,1338,1374,17,14,6,4,2,2,0,0,11,11,18,12,17,12,0,0,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,5,14,2303,1132,1171,1110,1147,8,10,6,5,1,2,0,0,7,7,1119,1157,1097,1133,8,10,6,5,1,2,0,0,7,7,13,14,13,14,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,5,15,1789,824,965,805,941,11,14,1,3,0,0,0,0,7,7,808,959,789,935,11,14,1,3,0,0,0,0,7,7,16,6,16,6,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,5,16,1311,534,777,524,755,5,10,1,3,0,1,0,0,4,8,527,772,517,750,5,10,1,3,0,1,0,0,4,8,7,5,7,5,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,5,17,838,300,538,290,511,7,22,2,0,0,0,0,0,1,5,293,535,283,508,7,22,2,0,0,0,0,0,1,5,7,3,7,3,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,5,18,723,210,513,204,505,5,5,0,0,0,0,0,0,1,3,196,503,190,495,5,5,0,0,0,0,0,0,1,3,14,10,14,10,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,5,99,53457,26608,26849,25812,25961,397,435,167,141,30,62,9,8,193,242,24789,25499,24061,24662,380,420,134,124,27,56,2,4,185,233,1819,1350,1751,1299,17,15,33,17,3,6,7,4,8,9 -050,01,009,Alabama,Blount County,6,0,732,366,366,354,357,5,2,1,1,1,1,0,0,5,5,316,302,306,295,4,1,1,1,1,0,0,0,4,5,50,64,48,62,1,1,0,0,0,1,0,0,1,0 -050,01,009,Alabama,Blount County,6,1,2901,1451,1450,1379,1354,47,65,8,7,0,5,1,1,16,18,1252,1264,1189,1179,43,60,5,6,0,5,0,0,15,14,199,186,190,175,4,5,3,1,0,0,1,1,1,4 -050,01,009,Alabama,Blount County,6,2,3873,2029,1844,1954,1759,32,43,17,7,3,3,1,1,22,31,1832,1683,1764,1602,32,41,13,6,3,3,0,1,20,30,197,161,190,157,0,2,4,1,0,0,1,0,2,1 -050,01,009,Alabama,Blount County,6,3,3894,2021,1873,1943,1785,45,48,19,19,1,4,0,0,13,17,1875,1726,1801,1646,44,46,17,14,1,3,0,0,12,17,146,147,142,139,1,2,2,5,0,1,0,0,1,0 -050,01,009,Alabama,Blount County,6,4,3651,1912,1739,1839,1680,26,17,26,14,3,6,2,2,16,20,1753,1607,1688,1557,25,17,21,11,2,4,1,0,16,18,159,132,151,123,1,0,5,3,1,2,1,2,0,2 -050,01,009,Alabama,Blount County,6,5,3048,1538,1510,1501,1472,14,14,5,7,2,5,1,0,15,12,1336,1378,1305,1346,13,12,3,5,1,4,1,0,13,11,202,132,196,126,1,2,2,2,1,1,0,0,2,1 -050,01,009,Alabama,Blount County,6,6,3409,1784,1625,1721,1570,37,23,14,8,1,7,1,2,10,15,1513,1495,1466,1444,31,22,6,5,1,7,0,2,9,15,271,130,255,126,6,1,8,3,0,0,1,0,1,0 -050,01,009,Alabama,Blount County,6,7,3735,1934,1801,1880,1747,30,29,10,10,7,3,0,1,7,11,1747,1686,1698,1639,27,26,8,8,7,3,0,0,7,10,187,115,182,108,3,3,2,2,0,0,0,1,0,1 -050,01,009,Alabama,Blount County,6,8,4019,2010,2009,1956,1949,26,26,12,13,3,6,1,0,12,15,1839,1888,1791,1830,25,25,9,12,3,6,0,0,11,15,171,121,165,119,1,1,3,1,0,0,1,0,1,0 -050,01,009,Alabama,Blount County,6,9,4056,2093,1963,2027,1887,32,35,14,13,3,4,1,0,16,24,1985,1889,1923,1816,32,34,12,13,2,4,0,0,16,22,108,74,104,71,0,1,2,0,1,0,1,0,0,2 -050,01,009,Alabama,Blount County,6,10,3802,1920,1882,1868,1822,25,24,11,11,0,4,1,1,15,20,1847,1825,1798,1767,24,24,11,11,0,4,0,0,14,19,73,57,70,55,1,0,0,0,0,0,1,1,1,1 -050,01,009,Alabama,Blount County,6,11,3606,1815,1791,1774,1737,19,27,9,10,2,5,1,0,10,12,1756,1749,1715,1697,19,25,9,10,2,5,1,0,10,12,59,42,59,40,0,2,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,6,12,3384,1581,1803,1532,1752,18,26,12,8,2,5,1,0,16,12,1541,1785,1494,1735,18,26,11,7,2,5,0,0,16,12,40,18,38,17,0,0,1,1,0,0,1,0,0,0 -050,01,009,Alabama,Blount County,6,13,2869,1406,1463,1363,1428,21,16,12,5,2,3,0,0,8,11,1389,1446,1348,1412,20,16,11,5,2,2,0,0,8,11,17,17,15,16,1,0,1,0,0,1,0,0,0,0 -050,01,009,Alabama,Blount County,6,14,2344,1153,1191,1125,1167,13,11,4,4,1,2,0,1,10,6,1142,1176,1115,1153,13,10,4,4,1,2,0,1,9,6,11,15,10,14,0,1,0,0,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,6,15,1833,850,983,828,958,12,14,0,3,0,0,0,1,10,7,833,976,812,951,11,14,0,3,0,0,0,1,10,7,17,7,16,7,1,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,6,16,1362,541,821,530,801,5,9,2,2,0,1,0,0,4,8,534,816,523,796,5,9,2,2,0,1,0,0,4,8,7,5,7,5,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,6,17,862,317,545,307,527,6,13,3,0,0,0,0,0,1,5,308,542,298,524,6,13,3,0,0,0,0,0,1,5,9,3,9,3,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,6,18,744,212,532,204,520,7,8,0,0,0,0,0,0,1,4,198,522,190,510,7,8,0,0,0,0,0,0,1,4,14,10,14,10,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,6,99,54124,26933,27191,26085,26272,420,450,179,142,31,64,11,10,207,253,24996,25755,24224,24899,399,429,146,123,28,58,3,5,196,241,1937,1436,1861,1373,21,21,33,19,3,6,8,5,11,12 -050,01,009,Alabama,Blount County,7,0,749,365,384,352,372,4,2,1,1,1,2,1,0,6,7,302,324,292,314,3,1,1,1,1,1,1,0,4,7,63,60,60,58,1,1,0,0,0,1,0,0,2,0 -050,01,009,Alabama,Blount County,7,1,2900,1449,1451,1387,1363,37,58,6,6,2,4,1,1,16,19,1232,1238,1181,1159,33,54,3,6,2,4,0,0,13,15,217,213,206,204,4,4,3,0,0,0,1,1,3,4 -050,01,009,Alabama,Blount County,7,2,3843,2013,1830,1938,1754,31,37,15,6,5,3,4,1,20,29,1838,1659,1774,1588,30,35,11,5,5,3,1,1,17,27,175,171,164,166,1,2,4,1,0,0,3,0,3,2 -050,01,009,Alabama,Blount County,7,3,3972,2073,1899,1988,1815,49,37,15,16,2,5,2,3,17,23,1898,1723,1819,1646,46,35,14,14,2,5,0,1,17,22,175,176,169,169,3,2,1,2,0,0,2,2,0,1 -050,01,009,Alabama,Blount County,7,4,3698,1928,1770,1854,1708,27,25,24,14,2,1,3,3,18,19,1763,1633,1703,1581,25,24,17,11,2,1,1,0,15,16,165,137,151,127,2,1,7,3,0,0,2,3,3,3 -050,01,009,Alabama,Blount County,7,5,3046,1520,1526,1475,1485,16,13,10,8,2,4,3,2,14,14,1329,1387,1295,1357,13,10,6,4,1,3,2,0,12,13,191,139,180,128,3,3,4,4,1,1,1,2,2,1 -050,01,009,Alabama,Blount County,7,6,3398,1767,1631,1714,1583,28,23,13,7,1,4,2,2,9,12,1439,1499,1405,1456,21,22,6,5,1,4,0,1,6,11,328,132,309,127,7,1,7,2,0,0,2,1,3,1 -050,01,009,Alabama,Blount County,7,7,3637,1904,1733,1840,1674,35,31,13,11,6,6,3,1,7,10,1713,1603,1658,1552,32,27,10,9,6,6,1,0,6,9,191,130,182,122,3,4,3,2,0,0,2,1,1,1 -050,01,009,Alabama,Blount County,7,8,4034,2027,2007,1981,1953,20,18,9,13,1,9,2,1,14,13,1849,1874,1812,1826,18,17,6,10,1,9,0,0,12,12,178,133,169,127,2,1,3,3,0,0,2,1,2,1 -050,01,009,Alabama,Blount County,7,9,4105,2098,2007,2023,1925,37,34,17,13,4,7,3,2,14,26,1980,1924,1911,1846,34,33,16,13,4,6,1,0,14,26,118,83,112,79,3,1,1,0,0,1,2,2,0,0 -050,01,009,Alabama,Blount County,7,10,3861,1931,1930,1879,1864,25,30,10,10,3,4,1,0,13,22,1856,1867,1807,1801,24,30,10,10,3,4,0,0,12,22,75,63,72,63,1,0,0,0,0,0,1,0,1,0 -050,01,009,Alabama,Blount County,7,11,3664,1865,1799,1822,1751,20,25,7,8,4,4,0,0,12,11,1797,1762,1754,1717,20,23,7,8,4,4,0,0,12,10,68,37,68,34,0,2,0,0,0,0,0,0,0,1 -050,01,009,Alabama,Blount County,7,12,3432,1620,1812,1574,1757,23,27,8,9,2,6,0,0,13,13,1581,1787,1536,1733,23,26,7,9,2,6,0,0,13,13,39,25,38,24,0,1,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,7,13,2983,1426,1557,1383,1516,22,20,9,7,1,3,0,0,11,11,1407,1541,1366,1501,21,20,9,7,1,2,0,0,10,11,19,16,17,15,1,0,0,0,0,1,0,0,1,0 -050,01,009,Alabama,Blount County,7,14,2407,1196,1211,1173,1187,8,8,6,5,2,3,0,1,7,7,1185,1197,1163,1174,8,7,6,5,2,3,0,1,6,7,11,14,10,13,0,1,0,0,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,7,15,1808,835,973,818,954,7,9,2,4,0,0,0,1,8,5,823,965,806,946,7,9,2,4,0,0,0,1,8,5,12,8,12,8,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,7,16,1438,601,837,590,819,5,8,3,3,0,1,0,0,3,6,593,830,582,812,5,8,3,3,0,1,0,0,3,6,8,7,8,7,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,7,17,873,322,551,311,537,5,9,3,0,0,0,1,0,2,5,314,548,304,534,5,9,3,0,0,0,0,0,2,5,8,3,7,3,0,0,0,0,0,0,1,0,0,0 -050,01,009,Alabama,Blount County,7,18,776,212,564,206,544,6,15,0,1,0,0,0,0,0,4,200,556,194,536,6,15,0,1,0,0,0,0,0,4,12,8,12,8,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,7,99,54624,27152,27472,26308,26561,405,429,171,142,38,66,26,18,204,256,25099,25917,24362,25079,374,405,137,125,37,62,7,5,182,241,2053,1555,1946,1482,31,24,34,17,1,4,19,13,22,15 -050,01,009,Alabama,Blount County,8,0,749,383,366,368,354,5,3,1,1,1,2,1,0,7,6,313,294,301,284,4,2,1,1,1,1,1,0,5,6,70,72,67,70,1,1,0,0,0,1,0,0,2,0 -050,01,009,Alabama,Blount County,8,1,2897,1430,1467,1364,1386,39,51,8,8,2,4,1,2,16,16,1212,1243,1161,1171,32,48,4,7,2,4,0,0,13,13,218,224,203,215,7,3,4,1,0,0,1,2,3,3 -050,01,009,Alabama,Blount County,8,2,3828,1982,1846,1903,1762,28,42,19,7,5,5,4,1,23,29,1785,1667,1720,1588,27,40,12,6,5,5,1,1,20,27,197,179,183,174,1,2,7,1,0,0,3,0,3,2 -050,01,009,Alabama,Blount County,8,3,4047,2131,1916,2043,1826,48,42,12,15,2,6,2,2,24,25,1945,1728,1863,1645,45,40,11,14,2,6,0,0,24,23,186,188,180,181,3,2,1,1,0,0,2,2,0,2 -050,01,009,Alabama,Blount County,8,4,3798,1962,1836,1884,1770,32,24,22,15,2,2,3,3,19,22,1790,1689,1725,1632,30,22,16,12,2,2,1,0,16,21,172,147,159,138,2,2,6,3,0,0,2,3,3,1 -050,01,009,Alabama,Blount County,8,5,3009,1499,1510,1450,1467,20,13,7,9,3,3,3,2,16,16,1294,1355,1257,1322,14,11,4,5,2,2,2,1,15,14,205,155,193,145,6,2,3,4,1,1,1,1,1,2 -050,01,009,Alabama,Blount County,8,6,3390,1781,1609,1735,1561,22,19,10,6,2,4,2,2,10,17,1510,1482,1482,1440,15,17,4,4,2,4,0,1,7,16,271,127,253,121,7,2,6,2,0,0,2,1,3,1 -050,01,009,Alabama,Blount County,8,7,3542,1823,1719,1763,1656,35,33,11,10,5,6,3,1,6,13,1593,1568,1543,1514,32,28,8,9,5,6,0,0,5,11,230,151,220,142,3,5,3,1,0,0,3,1,1,2 -050,01,009,Alabama,Blount County,8,8,4031,2042,1989,1994,1927,23,22,10,12,1,9,3,1,11,18,1862,1860,1825,1804,21,21,6,9,1,9,0,0,9,17,180,129,169,123,2,1,4,3,0,0,3,1,2,1 -050,01,009,Alabama,Blount County,8,9,4184,2138,2046,2063,1968,30,31,17,11,5,7,3,2,20,27,2014,1953,1946,1879,27,30,15,11,5,6,1,0,20,27,124,93,117,89,3,1,2,0,0,1,2,2,0,0 -050,01,009,Alabama,Blount County,8,10,3958,1995,1963,1936,1898,30,32,10,8,3,6,2,1,14,18,1913,1899,1856,1835,30,32,10,8,3,6,1,1,13,17,82,64,80,63,0,0,0,0,0,0,1,0,1,1 -050,01,009,Alabama,Blount County,8,11,3765,1861,1904,1817,1847,17,24,7,9,4,4,1,0,15,20,1794,1861,1751,1808,17,22,7,9,4,4,1,0,14,18,67,43,66,39,0,2,0,0,0,0,0,0,1,2 -050,01,009,Alabama,Blount County,8,12,3581,1713,1868,1660,1812,24,28,11,9,2,6,1,0,15,13,1661,1841,1611,1786,23,27,10,9,2,6,0,0,15,13,52,27,49,26,1,1,1,0,0,0,1,0,0,0 -050,01,009,Alabama,Blount County,8,13,3080,1487,1593,1444,1550,18,19,10,6,1,5,0,0,14,13,1461,1573,1420,1532,17,19,10,5,1,4,0,0,13,13,26,20,24,18,1,0,0,1,0,1,0,0,1,0 -050,01,009,Alabama,Blount County,8,14,2501,1222,1279,1199,1253,8,6,8,6,2,4,0,2,5,8,1212,1263,1189,1239,8,5,8,6,2,4,0,1,5,8,10,16,10,14,0,1,0,0,0,0,0,1,0,0 -050,01,009,Alabama,Blount County,8,15,1969,914,1055,894,1032,8,13,1,4,0,0,0,0,11,6,899,1047,880,1024,7,13,1,4,0,0,0,0,11,6,15,8,14,8,1,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,8,16,1422,596,826,588,808,5,8,2,4,0,0,0,0,1,6,586,821,578,803,5,8,2,4,0,0,0,0,1,6,10,5,10,5,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,8,17,961,355,606,345,585,4,16,4,0,0,0,1,0,1,5,346,603,337,582,4,16,4,0,0,0,0,0,1,5,9,3,8,3,0,0,0,0,0,0,1,0,0,0 -050,01,009,Alabama,Blount County,8,18,773,214,559,207,540,7,15,0,1,0,0,0,0,0,3,203,552,196,533,7,15,0,1,0,0,0,0,0,3,11,7,11,7,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,8,99,55485,27528,27957,26657,27002,403,441,170,141,40,73,30,19,228,281,25393,26299,24641,25421,365,416,133,124,39,69,8,5,207,264,2135,1658,2016,1581,38,25,37,17,1,4,22,14,21,17 -050,01,009,Alabama,Blount County,9,0,779,399,380,385,370,5,3,1,0,1,2,0,0,7,5,319,302,308,294,4,2,1,0,1,1,0,0,5,5,80,78,77,76,1,1,0,0,0,1,0,0,2,0 -050,01,009,Alabama,Blount County,9,1,2787,1379,1408,1310,1329,43,46,7,7,2,3,2,2,15,21,1158,1187,1103,1116,37,43,4,7,2,3,0,0,12,18,221,221,207,213,6,3,3,0,0,0,2,2,3,3 -050,01,009,Alabama,Blount County,9,2,3880,1990,1890,1905,1805,28,41,19,7,5,5,4,1,29,31,1788,1685,1720,1607,27,37,12,6,5,5,1,1,23,29,202,205,185,198,1,4,7,1,0,0,3,0,6,2 -050,01,009,Alabama,Blount County,9,3,4058,2129,1929,2043,1832,47,43,11,16,2,6,2,2,24,30,1925,1732,1845,1642,44,41,10,15,2,6,0,0,24,28,204,197,198,190,3,2,1,1,0,0,2,2,0,2 -050,01,009,Alabama,Blount County,9,4,3953,2067,1886,1980,1818,38,26,22,15,2,1,3,3,22,23,1884,1730,1811,1672,36,24,16,12,2,1,1,0,18,21,183,156,169,146,2,2,6,3,0,0,2,3,4,2 -050,01,009,Alabama,Blount County,9,5,2988,1507,1481,1445,1436,23,13,12,10,3,4,3,2,21,16,1289,1333,1239,1299,17,11,9,6,2,3,2,0,20,14,218,148,206,137,6,2,3,4,1,1,1,2,1,2 -050,01,009,Alabama,Blount County,9,6,3445,1823,1622,1770,1576,28,21,11,10,1,4,2,1,11,10,1517,1486,1486,1447,18,19,4,7,1,4,0,0,8,9,306,136,284,129,10,2,7,3,0,0,2,1,3,1 -050,01,009,Alabama,Blount County,9,7,3477,1763,1714,1706,1654,33,30,10,11,5,6,3,1,6,12,1538,1551,1490,1499,30,25,7,10,5,6,1,0,5,11,225,163,216,155,3,5,3,1,0,0,2,1,1,1 -050,01,009,Alabama,Blount County,9,8,4034,2056,1978,2008,1917,21,20,11,11,1,10,3,1,12,19,1877,1837,1839,1783,20,19,7,8,1,10,0,0,10,17,179,141,169,134,1,1,4,3,0,0,3,1,2,2 -050,01,009,Alabama,Blount County,9,9,4249,2158,2091,2078,2009,37,35,14,14,5,7,3,2,21,24,2030,1984,1956,1907,34,33,13,14,5,6,1,0,21,24,128,107,122,102,3,2,1,0,0,1,2,2,0,0 -050,01,009,Alabama,Blount County,9,10,3961,2001,1960,1933,1895,35,29,9,10,3,6,1,0,20,20,1908,1901,1843,1837,35,29,9,10,3,6,0,0,18,19,93,59,90,58,0,0,0,0,0,0,1,0,2,1 -050,01,009,Alabama,Blount County,9,11,3914,1924,1990,1883,1934,17,26,7,9,4,4,1,0,12,17,1852,1930,1812,1878,17,24,7,9,4,4,1,0,11,15,72,60,71,56,0,2,0,0,0,0,0,0,1,2 -050,01,009,Alabama,Blount County,9,12,3539,1726,1813,1673,1749,22,34,11,9,2,6,0,2,18,13,1664,1786,1613,1723,21,33,10,9,2,6,0,2,18,13,62,27,60,26,1,1,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,9,13,3294,1567,1727,1506,1683,31,22,15,6,1,5,1,0,13,11,1538,1704,1480,1663,30,21,15,5,1,4,0,0,12,11,29,23,26,20,1,1,0,1,0,1,1,0,1,0 -050,01,009,Alabama,Blount County,9,14,2666,1289,1377,1264,1354,7,5,8,6,3,4,0,2,7,6,1272,1351,1248,1329,7,5,8,6,3,4,0,1,6,6,17,26,16,25,0,0,0,0,0,0,0,1,1,0 -050,01,009,Alabama,Blount County,9,15,2034,951,1083,932,1056,7,16,2,3,0,0,0,1,10,7,934,1074,916,1047,6,16,2,3,0,0,0,1,10,7,17,9,16,9,1,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,9,16,1423,624,799,616,782,5,7,3,4,0,0,0,0,0,6,618,795,610,778,5,7,3,4,0,0,0,0,0,6,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,9,17,986,371,615,359,599,4,11,5,0,0,0,1,0,2,5,362,614,351,598,4,11,5,0,0,0,0,0,2,5,9,1,8,1,0,0,0,0,0,0,1,0,0,0 -050,01,009,Alabama,Blount County,9,18,773,217,556,211,539,6,14,0,1,0,0,0,0,0,2,206,550,200,533,6,14,0,1,0,0,0,0,0,2,11,6,11,6,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,9,99,56240,27941,28299,27007,27337,437,442,178,149,40,73,29,20,250,278,25679,26532,24870,25652,398,414,142,132,39,69,7,5,223,260,2262,1767,2137,1685,39,28,36,17,1,4,22,15,27,18 -050,01,009,Alabama,Blount County,10,0,823,430,393,413,382,5,3,1,0,0,2,0,0,11,6,355,325,342,316,4,2,1,0,0,1,0,0,8,6,75,68,71,66,1,1,0,0,0,1,0,0,3,0 -050,01,009,Alabama,Blount County,10,1,2853,1420,1433,1366,1363,30,38,7,8,2,2,2,3,13,19,1187,1190,1147,1129,25,35,3,7,2,2,0,0,10,17,233,243,219,234,5,3,4,1,0,0,2,3,3,2 -050,01,009,Alabama,Blount County,10,2,3846,1917,1929,1838,1847,26,35,17,6,6,5,5,1,25,35,1702,1694,1640,1618,25,32,10,5,6,5,1,1,20,33,215,235,198,229,1,3,7,1,0,0,4,0,5,2 -050,01,009,Alabama,Blount County,10,3,4126,2188,1938,2099,1840,44,45,14,16,2,6,3,2,26,29,1977,1732,1894,1644,41,41,13,15,2,6,1,0,26,26,211,206,205,196,3,4,1,1,0,0,2,2,0,3 -050,01,009,Alabama,Blount County,10,4,3971,2071,1900,1975,1822,42,28,25,16,2,2,3,4,24,28,1873,1736,1793,1669,39,26,18,12,2,2,1,0,20,27,198,164,182,153,3,2,7,4,0,0,2,4,4,1 -050,01,009,Alabama,Blount County,10,5,3118,1598,1520,1530,1476,32,13,10,10,3,2,4,3,19,16,1348,1360,1293,1329,25,10,7,5,2,1,3,1,18,14,250,160,237,147,7,3,3,5,1,1,1,2,1,2 -050,01,009,Alabama,Blount County,10,6,3466,1827,1639,1770,1581,31,26,11,13,1,4,2,3,12,12,1486,1499,1452,1449,20,24,4,9,1,4,0,2,9,11,341,140,318,132,11,2,7,4,0,0,2,1,3,1 -050,01,009,Alabama,Blount County,10,7,3482,1758,1724,1694,1658,37,38,12,10,5,6,4,1,6,11,1516,1541,1464,1484,32,32,9,9,5,6,1,0,5,10,242,183,230,174,5,6,3,1,0,0,3,1,1,1 -050,01,009,Alabama,Blount County,10,8,4077,2059,2018,1998,1958,30,18,11,10,1,11,4,1,15,20,1868,1863,1819,1810,28,17,8,7,1,11,0,0,12,18,191,155,179,148,2,1,3,3,0,0,4,1,3,2 -050,01,009,Alabama,Blount County,10,9,4180,2117,2063,2040,1986,32,28,15,17,6,8,3,2,21,22,1981,1952,1912,1881,29,26,12,17,6,6,1,0,21,22,136,111,128,105,3,2,3,0,0,2,2,2,0,0 -050,01,009,Alabama,Blount County,10,10,4093,2089,2004,2029,1944,30,28,8,7,3,5,2,0,17,20,1988,1934,1931,1875,30,28,8,7,3,5,1,0,15,19,101,70,98,69,0,0,0,0,0,0,1,0,2,1 -050,01,009,Alabama,Blount County,10,11,3905,1954,1951,1909,1895,18,26,7,9,5,4,1,0,14,17,1874,1895,1830,1843,18,24,7,9,5,4,1,0,13,15,80,56,79,52,0,2,0,0,0,0,0,0,1,2 -050,01,009,Alabama,Blount County,10,12,3611,1761,1850,1707,1793,21,26,11,9,3,7,0,1,19,14,1703,1818,1651,1762,20,25,10,9,3,7,0,1,19,14,58,32,56,31,1,1,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,10,13,3377,1558,1819,1506,1777,25,17,11,7,1,5,1,0,14,13,1528,1794,1479,1754,24,16,11,7,1,4,0,0,13,13,30,25,27,23,1,1,0,0,0,1,1,0,1,0 -050,01,009,Alabama,Blount County,10,14,2762,1351,1411,1311,1379,24,12,5,7,3,5,0,1,8,7,1336,1384,1296,1354,24,11,5,7,3,5,0,0,8,7,15,27,15,25,0,1,0,0,0,0,0,1,0,0 -050,01,009,Alabama,Blount County,10,15,2138,994,1144,977,1117,5,15,3,3,0,0,0,0,9,9,982,1136,966,1109,4,15,3,3,0,0,0,0,9,9,12,8,11,8,1,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,10,16,1461,649,812,642,798,5,5,2,3,0,0,0,0,0,6,644,808,637,794,5,5,2,3,0,0,0,0,0,6,5,4,5,4,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,10,17,969,384,585,369,573,7,7,5,0,0,0,1,0,2,5,377,585,363,573,7,7,5,0,0,0,0,0,2,5,7,0,6,0,0,0,0,0,0,0,1,0,0,0 -050,01,009,Alabama,Blount County,10,18,797,233,564,226,548,7,12,0,1,0,0,0,0,0,3,223,559,216,543,7,12,0,1,0,0,0,0,0,3,10,5,10,5,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,10,99,57055,28358,28697,27399,27737,451,420,175,152,43,74,35,22,255,292,25948,26805,25125,25936,407,388,136,132,42,69,10,5,228,275,2410,1892,2274,1801,44,32,39,20,1,5,25,17,27,17 -050,01,009,Alabama,Blount County,11,0,727,367,360,349,347,6,4,1,1,0,2,0,0,11,6,295,305,281,296,5,2,1,0,0,1,0,0,8,6,72,55,68,51,1,2,0,1,0,1,0,0,3,0 -050,01,009,Alabama,Blount County,11,1,2914,1451,1463,1388,1384,34,42,7,8,2,2,2,3,18,24,1209,1214,1160,1150,29,34,3,7,2,2,0,0,15,21,242,249,228,234,5,8,4,1,0,0,2,3,3,3 -050,01,009,Alabama,Blount County,11,2,3877,1938,1939,1859,1856,23,33,18,7,6,5,5,2,27,36,1687,1682,1627,1605,22,30,10,6,6,5,1,2,21,34,251,257,232,251,1,3,8,1,0,0,4,0,6,2 -050,01,009,Alabama,Blount County,11,3,4115,2144,1971,2070,1881,33,36,8,17,2,7,3,2,28,28,1921,1757,1854,1676,29,33,7,16,2,7,1,0,28,25,223,214,216,205,4,3,1,1,0,0,2,2,0,3 -050,01,009,Alabama,Blount County,11,4,3955,2089,1866,1991,1788,44,25,22,18,2,1,3,4,27,30,1869,1684,1787,1617,41,23,15,14,2,1,1,0,23,29,220,182,204,171,3,2,7,4,0,0,2,4,4,1 -050,01,009,Alabama,Blount County,11,5,3137,1583,1554,1526,1507,26,16,8,10,4,2,4,3,15,16,1335,1386,1291,1352,19,13,5,5,3,1,3,1,14,14,248,168,235,155,7,3,3,5,1,1,1,2,1,2 -050,01,009,Alabama,Blount County,11,6,3424,1738,1686,1678,1633,35,25,11,13,1,3,2,1,11,11,1460,1537,1425,1492,22,23,4,9,1,3,0,0,8,10,278,149,253,141,13,2,7,4,0,0,2,1,3,1 -050,01,009,Alabama,Blount County,11,7,3462,1739,1723,1676,1661,36,31,12,10,5,7,4,1,6,13,1481,1530,1430,1478,31,24,9,9,5,7,1,0,5,12,258,193,246,183,5,7,3,1,0,0,3,1,1,1 -050,01,009,Alabama,Blount County,11,8,4068,2087,1981,2025,1916,33,21,10,10,1,12,4,1,14,21,1867,1834,1817,1776,31,20,7,7,1,12,0,0,11,19,220,147,208,140,2,1,3,3,0,0,4,1,3,2 -050,01,009,Alabama,Blount County,11,9,4159,2096,2063,2016,1983,32,33,19,18,6,7,4,2,19,20,1953,1944,1881,1869,29,31,17,18,6,6,1,0,19,20,143,119,135,114,3,2,2,0,0,1,3,2,0,0 -050,01,009,Alabama,Blount County,11,10,4138,2096,2042,2033,1979,33,25,8,10,3,8,2,1,17,19,1992,1950,1932,1888,33,25,8,10,3,8,1,1,15,18,104,92,101,91,0,0,0,0,0,0,1,0,2,1 -050,01,009,Alabama,Blount County,11,11,3898,1969,1929,1915,1864,24,34,6,8,6,4,2,0,16,19,1881,1871,1829,1810,24,32,6,8,6,4,2,0,14,17,88,58,86,54,0,2,0,0,0,0,0,0,2,2 -050,01,009,Alabama,Blount County,11,12,3626,1767,1859,1714,1794,22,28,11,11,3,7,0,1,17,18,1713,1826,1662,1762,21,27,10,11,3,7,0,1,17,18,54,33,52,32,1,1,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,11,13,3533,1646,1887,1587,1839,25,21,15,10,1,5,0,0,18,12,1616,1858,1560,1813,23,20,15,9,1,4,0,0,17,12,30,29,27,26,2,1,0,1,0,1,0,0,1,0 -050,01,009,Alabama,Blount County,11,14,2826,1352,1474,1317,1436,16,11,7,10,3,6,0,1,9,10,1337,1450,1303,1414,16,10,7,10,3,6,0,0,8,10,15,24,14,22,0,1,0,0,0,0,0,1,1,0 -050,01,009,Alabama,Blount County,11,15,2148,1011,1137,993,1111,5,14,3,3,0,0,0,0,10,9,995,1127,978,1101,4,14,3,3,0,0,0,0,10,9,16,10,15,10,1,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,11,16,1521,696,825,688,811,5,5,3,3,0,0,0,0,0,6,689,821,681,807,5,5,3,3,0,0,0,0,0,6,7,4,7,4,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,11,17,987,387,600,372,587,7,8,5,0,0,0,1,0,2,5,379,600,365,587,7,8,5,0,0,0,0,0,2,5,8,0,7,0,0,0,0,0,0,0,1,0,0,0 -050,01,009,Alabama,Blount County,11,18,826,239,587,232,574,7,10,0,1,0,0,0,0,0,2,231,582,224,569,7,10,0,1,0,0,0,0,0,2,8,5,8,5,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,11,99,57341,28395,28946,27429,27951,446,422,174,168,45,78,36,22,265,305,25910,26958,25087,26062,398,384,135,146,44,74,11,5,235,287,2485,1988,2342,1889,48,38,39,22,1,4,25,17,30,18 -050,01,009,Alabama,Blount County,12,0,719,369,350,352,337,5,4,1,1,0,2,0,0,11,6,300,286,287,277,4,2,1,0,0,1,0,0,8,6,69,64,65,60,1,2,0,1,0,1,0,0,3,0 -050,01,009,Alabama,Blount County,12,1,2897,1436,1461,1372,1391,31,33,9,9,2,2,2,3,20,23,1187,1223,1141,1164,24,29,3,8,2,2,0,0,17,20,249,238,231,227,7,4,6,1,0,0,2,3,3,3 -050,01,009,Alabama,Blount County,12,2,3880,1936,1944,1855,1860,20,29,18,7,6,5,5,2,32,41,1663,1666,1601,1589,19,26,10,6,6,5,1,1,26,39,273,278,254,271,1,3,8,1,0,0,4,1,6,2 -050,01,009,Alabama,Blount County,12,3,4084,2113,1971,2031,1872,34,39,12,19,2,7,3,2,31,32,1883,1742,1808,1652,30,36,11,18,2,7,1,0,31,29,230,229,223,220,4,3,1,1,0,0,2,2,0,3 -050,01,009,Alabama,Blount County,12,4,4033,2139,1894,2039,1815,46,23,22,19,2,2,3,4,27,31,1897,1701,1815,1633,43,21,13,15,2,2,1,0,23,30,242,193,224,182,3,2,9,4,0,0,2,4,4,1 -050,01,009,Alabama,Blount County,12,5,3107,1577,1530,1510,1475,29,18,9,12,4,4,4,3,21,18,1329,1380,1275,1338,22,15,6,7,3,3,3,1,20,16,248,150,235,137,7,3,3,5,1,1,1,2,1,2 -050,01,009,Alabama,Blount County,12,6,3436,1735,1701,1679,1647,30,23,11,14,1,3,2,2,12,12,1434,1517,1404,1471,16,21,4,10,1,3,0,1,9,11,301,184,275,176,14,2,7,4,0,0,2,1,3,1 -050,01,009,Alabama,Blount County,12,7,3441,1730,1711,1673,1655,30,25,12,12,5,7,4,1,6,11,1472,1522,1428,1476,24,18,9,11,5,7,1,0,5,10,258,189,245,179,6,7,3,1,0,0,3,1,1,1 -050,01,009,Alabama,Blount County,12,8,3892,1989,1903,1929,1838,30,21,10,10,1,12,4,1,15,21,1791,1744,1743,1686,28,20,7,7,1,12,0,0,12,19,198,159,186,152,2,1,3,3,0,0,4,1,3,2 -050,01,009,Alabama,Blount County,12,9,4033,2033,2000,1963,1926,26,29,17,14,6,7,4,2,17,22,1887,1885,1826,1816,23,27,14,14,6,6,1,0,17,22,146,115,137,110,3,2,3,0,0,1,3,2,0,0 -050,01,009,Alabama,Blount County,12,10,4163,2096,2067,2039,2005,25,22,8,11,3,7,2,1,19,21,1988,1978,1934,1917,25,22,8,11,3,7,1,1,17,20,108,89,105,88,0,0,0,0,0,0,1,0,2,1 -050,01,009,Alabama,Blount County,12,11,3922,1972,1950,1916,1888,27,32,6,9,6,4,2,0,15,17,1879,1879,1824,1821,27,30,6,9,6,4,2,0,14,15,93,71,92,67,0,2,0,0,0,0,0,0,1,2 -050,01,009,Alabama,Blount County,12,12,3694,1810,1884,1749,1822,27,26,11,11,3,7,1,1,19,17,1752,1854,1694,1793,26,25,10,11,3,7,0,1,19,17,58,30,55,29,1,1,1,0,0,0,1,0,0,0 -050,01,009,Alabama,Blount County,12,13,3582,1700,1882,1645,1830,24,25,13,10,1,5,1,0,16,12,1667,1858,1616,1809,22,24,13,9,1,4,0,0,15,12,33,24,29,21,2,1,0,1,0,1,1,0,1,0 -050,01,009,Alabama,Blount County,12,14,2892,1352,1540,1320,1503,12,12,7,8,3,6,0,2,10,9,1329,1513,1298,1478,12,11,7,8,3,6,0,1,9,9,23,27,22,25,0,1,0,0,0,0,0,1,1,0 -050,01,009,Alabama,Blount County,12,15,2187,1039,1148,1019,1120,7,15,3,3,0,0,0,1,10,9,1021,1139,1002,1111,6,15,3,3,0,0,0,1,10,9,18,9,17,9,1,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,12,16,1517,684,833,676,820,5,4,3,3,0,0,0,0,0,6,677,828,669,815,5,4,3,3,0,0,0,0,0,6,7,5,7,5,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,12,17,1035,418,617,402,604,7,8,6,0,0,0,1,0,2,5,410,617,395,604,7,8,6,0,0,0,0,0,2,5,8,0,7,0,0,0,0,0,0,0,1,0,0,0 -050,01,009,Alabama,Blount County,12,18,808,234,574,229,562,5,9,0,1,0,0,0,0,0,2,227,571,222,559,5,9,0,1,0,0,0,0,0,2,7,3,7,3,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,12,99,57322,28362,28960,27398,27970,420,397,178,173,45,80,38,25,283,315,25793,26903,24982,26009,368,363,134,151,44,76,11,7,254,297,2569,2057,2416,1961,52,34,44,22,1,4,27,18,29,18 -050,01,009,Alabama,Blount County,13,0,718,369,349,352,337,5,4,1,1,0,2,0,0,11,5,302,285,287,277,4,2,1,0,0,1,0,0,10,5,67,64,65,60,1,2,0,1,0,1,0,0,1,0 -050,01,009,Alabama,Blount County,13,1,2895,1433,1462,1367,1387,29,33,7,6,4,4,3,4,23,28,1184,1223,1135,1160,25,30,2,6,2,3,0,0,20,24,249,239,232,227,4,3,5,0,2,1,3,4,3,4 -050,01,009,Alabama,Blount County,13,2,3877,1942,1935,1855,1856,21,28,14,4,8,4,8,2,36,41,1666,1657,1598,1584,19,24,8,4,7,4,4,1,30,40,276,278,257,272,2,4,6,0,1,0,4,1,6,1 -050,01,009,Alabama,Blount County,13,3,4087,2117,1970,2028,1869,35,40,11,17,3,8,3,2,37,34,1878,1739,1803,1648,31,37,9,16,3,8,0,1,32,29,239,231,225,221,4,3,2,1,0,0,3,1,5,5 -050,01,009,Alabama,Blount County,13,4,3985,2113,1872,2026,1801,44,21,18,15,2,4,2,1,21,30,1874,1680,1803,1619,41,19,10,12,1,4,1,0,18,26,239,192,223,182,3,2,8,3,1,0,1,1,3,4 -050,01,009,Alabama,Blount County,13,5,3103,1575,1528,1511,1478,31,18,7,7,6,6,1,0,19,19,1328,1380,1275,1340,25,15,5,4,5,3,1,0,17,18,247,148,236,138,6,3,2,3,1,3,0,0,2,1 -050,01,009,Alabama,Blount County,13,6,3453,1741,1712,1686,1648,27,25,8,13,5,5,3,6,12,15,1440,1524,1410,1471,17,22,3,10,2,4,1,4,7,13,301,188,276,177,10,3,5,3,3,1,2,2,5,2 -050,01,009,Alabama,Blount County,13,7,3465,1737,1728,1684,1665,31,25,9,14,3,7,1,3,9,14,1481,1538,1438,1486,25,18,8,12,3,7,0,2,7,13,256,190,246,179,6,7,1,2,0,0,1,1,2,1 -050,01,009,Alabama,Blount County,13,8,3869,1977,1892,1915,1822,31,24,8,7,5,15,4,4,14,20,1775,1729,1727,1667,28,22,4,6,4,13,0,2,12,19,202,163,188,155,3,2,4,1,1,2,4,2,2,1 -050,01,009,Alabama,Blount County,13,9,4035,2035,2000,1961,1927,27,27,16,15,8,8,4,1,19,22,1885,1881,1823,1813,24,26,13,13,8,7,0,0,17,22,150,119,138,114,3,1,3,2,0,1,4,1,2,0 -050,01,009,Alabama,Blount County,13,10,4136,2084,2052,2029,1992,25,22,6,10,5,6,1,1,18,21,1974,1962,1922,1904,25,20,6,10,5,6,0,1,16,21,110,90,107,88,0,2,0,0,0,0,1,0,2,0 -050,01,009,Alabama,Blount County,13,11,3926,1974,1952,1918,1890,27,32,6,9,6,4,2,0,15,17,1882,1882,1826,1823,27,31,6,8,6,4,2,0,15,16,92,70,92,67,0,1,0,1,0,0,0,0,0,1 -050,01,009,Alabama,Blount County,13,12,3713,1820,1893,1756,1829,28,25,12,10,4,10,0,0,20,19,1762,1863,1701,1800,27,24,10,10,4,10,0,0,20,19,58,30,55,29,1,1,2,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,13,13,3611,1716,1895,1660,1845,28,29,12,9,1,4,1,0,14,8,1682,1871,1630,1824,25,26,12,9,1,4,0,0,14,8,34,24,30,21,3,3,0,0,0,0,1,0,0,0 -050,01,009,Alabama,Blount County,13,14,2908,1360,1548,1329,1511,15,15,6,8,2,4,0,1,8,9,1337,1521,1307,1487,14,12,6,8,2,4,0,1,8,9,23,27,22,24,1,3,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,13,15,2190,1038,1152,1019,1124,7,17,4,4,0,0,0,0,8,7,1022,1143,1004,1116,6,16,4,4,0,0,0,0,8,7,16,9,15,8,1,1,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,13,16,1516,681,835,672,819,4,6,2,3,1,1,0,0,2,6,676,829,667,813,4,6,2,3,1,1,0,0,2,6,5,6,5,6,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,13,17,1039,418,621,402,608,8,10,4,0,1,2,1,0,2,1,413,618,398,606,8,9,4,0,1,2,0,0,2,1,5,3,4,2,0,1,0,0,0,0,1,0,0,0 -050,01,009,Alabama,Blount County,13,18,812,235,577,230,564,5,10,0,1,0,0,0,0,0,2,228,574,223,561,5,10,0,1,0,0,0,0,0,2,7,3,7,3,0,0,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,13,99,57338,28365,28973,27400,27972,428,411,151,153,64,94,34,25,288,318,25789,26899,24977,25999,380,369,113,136,55,85,9,12,255,298,2576,2074,2423,1973,48,42,38,17,9,9,25,13,33,20 -050,01,011,Alabama,Bullock County,1,0,138,69,69,12,9,57,60,0,0,0,0,0,0,0,0,66,67,10,8,56,59,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,1,595,304,291,55,56,245,233,2,0,2,1,0,0,0,1,297,284,50,52,243,230,2,0,2,1,0,0,0,1,7,7,5,4,2,3,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,2,864,455,409,57,47,393,359,0,0,3,1,0,0,2,2,453,405,56,46,392,356,0,0,3,1,0,0,2,2,2,4,1,1,1,3,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,3,864,417,447,50,64,363,379,2,0,0,0,0,0,2,4,410,439,50,64,357,371,1,0,0,0,0,0,2,4,7,8,0,0,6,8,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,4,882,457,425,88,51,367,369,1,0,0,2,0,0,1,3,427,409,63,41,363,363,0,0,0,2,0,0,1,3,30,16,25,10,4,6,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,5,879,530,349,150,70,376,277,3,0,0,0,0,0,1,2,476,333,100,57,372,274,3,0,0,0,0,0,1,2,54,16,50,13,4,3,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,6,856,524,332,147,63,372,264,2,2,0,1,0,0,3,2,490,317,119,52,367,261,1,1,0,1,0,0,3,2,34,15,28,11,5,3,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,7,738,431,307,132,48,290,252,6,1,1,2,0,0,2,4,408,300,114,45,286,249,5,0,1,2,0,0,2,4,23,7,18,3,4,3,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,8,886,512,374,155,69,348,299,6,1,1,2,0,0,2,3,497,369,144,66,345,297,5,1,1,2,0,0,2,3,15,5,11,3,3,2,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,9,911,512,399,172,92,332,303,5,1,0,1,1,0,2,2,494,394,158,88,329,302,5,1,0,1,0,0,2,2,18,5,14,4,3,1,0,0,0,0,1,0,0,0 -050,01,011,Alabama,Bullock County,1,10,798,442,356,138,86,298,265,4,0,0,2,0,1,2,2,429,347,128,83,295,259,4,0,0,2,0,1,2,2,13,9,10,3,3,6,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,11,693,365,328,131,88,228,235,4,1,0,0,0,0,2,4,363,325,130,86,227,234,4,1,0,0,0,0,2,4,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,12,525,257,268,92,82,163,184,1,1,0,0,0,0,1,1,253,267,90,81,161,184,1,1,0,0,0,0,1,1,4,1,2,1,2,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,13,439,224,215,86,82,135,131,0,0,0,0,0,0,3,2,224,214,86,82,135,130,0,0,0,0,0,0,3,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,14,374,163,211,63,79,99,130,0,0,0,1,0,0,1,1,160,210,61,79,98,129,0,0,0,1,0,0,1,1,3,1,2,0,1,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,15,310,119,191,59,72,60,118,0,0,0,0,0,0,0,1,118,190,59,71,59,118,0,0,0,0,0,0,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,16,315,117,198,60,68,55,127,0,0,1,0,0,0,1,3,117,197,60,68,55,127,0,0,1,0,0,0,1,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,011,Alabama,Bullock County,1,17,261,95,166,35,48,59,116,1,0,0,0,0,0,0,2,94,166,35,48,58,116,1,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,18,275,84,191,32,72,52,117,0,0,0,0,0,0,0,2,82,190,30,72,52,116,0,0,0,0,0,0,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,99,11603,6077,5526,1714,1246,4292,4218,37,7,8,13,1,1,25,41,5858,5423,1543,1189,4250,4175,32,5,8,13,0,1,25,40,219,103,171,57,42,43,5,2,0,0,1,0,0,1 -050,01,011,Alabama,Bullock County,2,0,138,69,69,12,9,57,60,0,0,0,0,0,0,0,0,66,67,10,8,56,59,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,1,590,302,288,55,55,243,231,2,0,2,1,0,0,0,1,295,281,50,51,241,228,2,0,2,1,0,0,0,1,7,7,5,4,2,3,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,2,854,450,404,57,47,388,354,0,0,3,1,0,0,2,2,448,400,56,46,387,351,0,0,3,1,0,0,2,2,2,4,1,1,1,3,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,3,862,416,446,50,64,362,378,2,0,0,0,0,0,2,4,409,438,50,64,356,370,1,0,0,0,0,0,2,4,7,8,0,0,6,8,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,4,879,454,425,88,51,364,369,1,0,0,2,0,0,1,3,424,409,63,41,360,363,0,0,0,2,0,0,1,3,30,16,25,10,4,6,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,5,879,529,350,150,70,375,278,3,0,0,0,0,0,1,2,475,334,100,57,371,275,3,0,0,0,0,0,1,2,54,16,50,13,4,3,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,6,849,520,329,147,63,368,261,2,2,0,1,0,0,3,2,486,314,119,52,363,258,1,1,0,1,0,0,3,2,34,15,28,11,5,3,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,7,735,430,305,132,48,289,250,6,1,1,2,0,0,2,4,407,298,114,45,285,247,5,0,1,2,0,0,2,4,23,7,18,3,4,3,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,8,883,510,373,155,69,346,298,6,1,1,2,0,0,2,3,495,368,144,66,343,296,5,1,1,2,0,0,2,3,15,5,11,3,3,2,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,9,910,511,399,172,92,331,303,5,1,0,1,1,0,2,2,493,394,158,88,328,302,5,1,0,1,0,0,2,2,18,5,14,4,3,1,0,0,0,0,1,0,0,0 -050,01,011,Alabama,Bullock County,2,10,802,445,357,140,86,299,266,4,0,0,2,0,1,2,2,432,348,130,83,296,260,4,0,0,2,0,1,2,2,13,9,10,3,3,6,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,11,699,368,331,131,88,231,238,4,1,0,0,0,0,2,4,366,328,130,86,230,237,4,1,0,0,0,0,2,4,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,12,526,258,268,93,82,163,184,1,1,0,0,0,0,1,1,254,267,91,81,161,184,1,1,0,0,0,0,1,1,4,1,2,1,2,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,13,439,224,215,86,82,135,131,0,0,0,0,0,0,3,2,224,214,86,82,135,130,0,0,0,0,0,0,3,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,14,373,162,211,63,79,98,130,0,0,0,1,0,0,1,1,159,210,61,79,97,129,0,0,0,1,0,0,1,1,3,1,2,0,1,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,15,310,119,191,59,72,60,118,0,0,0,0,0,0,0,1,118,190,59,71,59,118,0,0,0,0,0,0,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,16,316,117,199,60,68,55,128,0,0,1,0,0,0,1,3,117,198,60,68,55,128,0,0,1,0,0,0,1,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,011,Alabama,Bullock County,2,17,262,95,167,35,48,59,117,1,0,0,0,0,0,0,2,94,167,35,48,58,117,1,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,18,275,83,192,32,72,51,118,0,0,0,0,0,0,0,2,81,191,30,72,51,117,0,0,0,0,0,0,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,99,11581,6062,5519,1717,1245,4274,4212,37,7,8,13,1,1,25,41,5843,5416,1546,1188,4232,4169,32,5,8,13,0,1,25,40,219,103,171,57,42,43,5,2,0,0,1,0,0,1 -050,01,011,Alabama,Bullock County,3,0,154,80,74,20,21,60,53,0,0,0,0,0,0,0,0,69,59,10,7,59,52,0,0,0,0,0,0,0,0,11,15,10,14,1,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,1,573,303,270,62,55,237,213,2,0,2,1,0,0,0,1,289,260,51,48,234,210,2,0,2,1,0,0,0,1,14,10,11,7,3,3,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,2,787,413,374,54,52,354,318,0,0,3,1,0,1,2,2,407,363,49,45,353,315,0,0,3,1,0,0,2,2,6,11,5,7,1,3,0,0,0,0,0,1,0,0 -050,01,011,Alabama,Bullock County,3,3,825,395,430,42,57,349,369,2,0,0,0,0,0,2,4,387,421,40,56,344,361,1,0,0,0,0,0,2,4,8,9,2,1,5,8,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,4,884,458,426,98,53,358,368,1,0,0,2,0,0,1,3,430,411,75,44,354,362,0,0,0,2,0,0,1,3,28,15,23,9,4,6,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,5,858,522,336,148,62,370,273,3,0,0,0,0,0,1,1,460,319,92,48,364,270,3,0,0,0,0,0,1,1,62,17,56,14,6,3,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,6,820,496,324,151,67,339,251,3,3,0,1,0,0,3,2,440,298,102,47,334,247,1,1,0,1,0,0,3,2,56,26,49,20,5,4,2,2,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,7,738,435,303,135,52,291,244,6,1,1,2,0,0,2,4,414,293,119,46,287,241,5,0,1,2,0,0,2,4,21,10,16,6,4,3,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,8,839,477,362,150,59,318,297,6,1,1,2,0,0,2,3,461,357,138,56,315,295,5,1,1,2,0,0,2,3,16,5,12,3,3,2,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,9,862,475,387,162,91,305,292,5,1,0,1,1,0,2,2,457,382,148,87,302,291,5,1,0,1,0,0,2,2,18,5,14,4,3,1,0,0,0,0,1,0,0,0 -050,01,011,Alabama,Bullock County,3,10,806,470,336,149,78,315,253,4,0,0,2,0,1,2,2,458,326,140,74,312,247,4,0,0,2,0,1,2,2,12,10,9,4,3,6,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,11,749,393,356,141,95,246,256,4,1,0,0,0,0,2,4,391,353,140,93,245,255,4,1,0,0,0,0,2,4,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,12,497,250,247,89,69,159,176,1,1,0,0,0,0,1,1,246,246,87,68,157,176,1,1,0,0,0,0,1,1,4,1,2,1,2,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,13,442,226,216,83,84,140,130,0,0,0,0,0,0,3,2,226,215,83,84,140,129,0,0,0,0,0,0,3,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,14,378,174,204,66,82,107,120,0,0,0,1,0,0,1,1,171,203,64,82,106,119,0,0,0,1,0,0,1,1,3,1,2,0,1,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,15,328,135,193,65,76,70,116,0,0,0,0,0,0,0,1,134,192,65,75,69,116,0,0,0,0,0,0,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,16,289,99,190,41,59,56,129,0,0,1,0,0,0,1,2,99,190,41,59,56,129,0,0,1,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,17,249,98,151,44,46,53,103,1,0,0,0,0,0,0,2,97,151,44,46,52,103,1,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,18,280,86,194,31,67,55,125,0,0,0,0,0,0,0,2,84,193,29,67,55,124,0,0,0,0,0,0,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,99,11358,5985,5373,1731,1225,4182,4086,38,8,8,13,1,2,25,39,5720,5232,1517,1132,4138,4042,32,5,8,13,0,1,25,39,265,141,214,93,44,44,6,3,0,0,1,1,0,0 -050,01,011,Alabama,Bullock County,4,0,138,77,61,18,14,59,47,0,0,0,0,0,0,0,0,67,52,9,6,58,46,0,0,0,0,0,0,0,0,10,9,9,8,1,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,4,1,568,291,277,66,71,221,202,2,0,2,1,0,2,0,1,275,252,53,51,218,199,2,0,2,1,0,0,0,1,16,25,13,20,3,3,0,0,0,0,0,2,0,0 -050,01,011,Alabama,Bullock County,4,2,750,391,359,51,54,333,301,0,0,3,1,0,1,4,2,383,346,44,45,332,298,0,0,3,1,0,0,4,2,8,13,7,9,1,3,0,0,0,0,0,1,0,0 -050,01,011,Alabama,Bullock County,4,3,811,393,418,43,56,346,358,2,0,0,0,0,0,2,4,383,408,40,53,340,351,1,0,0,0,0,0,2,4,10,10,3,3,6,7,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,4,4,845,421,424,79,58,340,361,1,0,0,2,0,0,1,3,393,408,56,47,336,356,0,0,0,2,0,0,1,3,28,16,23,11,4,5,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,4,5,812,498,314,147,50,344,261,4,0,0,0,2,1,1,2,433,293,90,34,339,257,3,0,0,0,0,0,1,2,65,21,57,16,5,4,1,0,0,0,2,1,0,0 -050,01,011,Alabama,Bullock County,4,6,831,523,308,176,56,338,244,3,3,0,1,2,2,4,2,440,283,104,39,332,240,1,1,0,1,0,0,3,2,83,25,72,17,6,4,2,2,0,0,2,2,1,0 -050,01,011,Alabama,Bullock County,4,7,749,442,307,139,62,294,237,6,1,1,2,0,1,2,4,419,288,122,48,289,234,5,0,1,2,0,0,2,4,23,19,17,14,5,3,1,1,0,0,0,1,0,0 -050,01,011,Alabama,Bullock County,4,8,799,467,332,155,64,302,261,6,2,1,2,1,0,2,3,449,327,143,61,298,259,5,2,1,2,0,0,2,3,18,5,12,3,4,2,1,0,0,0,1,0,0,0 -050,01,011,Alabama,Bullock County,4,9,853,477,376,161,81,308,291,5,1,0,1,1,0,2,2,460,370,148,76,305,290,5,1,0,1,0,0,2,2,17,6,13,5,3,1,0,0,0,0,1,0,0,0 -050,01,011,Alabama,Bullock County,4,10,820,478,342,145,75,327,263,4,0,0,2,0,0,2,2,466,332,136,71,324,257,4,0,0,2,0,0,2,2,12,10,9,4,3,6,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,4,11,734,380,354,137,100,237,249,4,1,0,0,0,0,2,4,378,351,136,98,236,248,4,1,0,0,0,0,2,4,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,4,12,538,293,245,102,74,189,169,1,1,0,0,0,0,1,1,289,244,100,73,187,169,1,1,0,0,0,0,1,1,4,1,2,1,2,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,4,13,461,231,230,87,75,141,154,0,0,0,0,0,0,3,1,231,229,87,75,141,153,0,0,0,0,0,0,3,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,4,14,391,189,202,72,78,116,122,0,0,0,1,0,0,1,1,185,201,69,78,115,121,0,0,0,1,0,0,1,1,4,1,3,0,1,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,4,15,320,138,182,62,75,76,106,0,0,0,0,0,0,0,1,137,181,62,74,75,106,0,0,0,0,0,0,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,4,16,291,108,183,49,57,57,124,0,0,1,0,0,0,1,2,108,183,49,57,57,124,0,0,1,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,4,17,264,94,170,43,53,50,115,1,0,0,0,0,0,0,2,93,170,43,53,49,115,1,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,4,18,281,84,197,33,64,51,132,0,0,0,0,0,0,0,1,82,196,31,64,51,131,0,0,0,0,0,0,0,1,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,4,99,11256,5975,5281,1765,1217,4129,3997,39,9,8,13,6,7,28,38,5671,5114,1522,1103,4082,3954,32,6,8,13,0,0,27,38,304,167,243,114,47,43,7,3,0,0,6,7,1,0 -050,01,011,Alabama,Bullock County,5,0,129,71,58,25,12,44,45,1,1,0,0,1,0,0,0,50,50,7,6,43,44,0,0,0,0,0,0,0,0,21,8,18,6,1,1,1,1,0,0,1,0,0,0 -050,01,011,Alabama,Bullock County,5,1,555,282,273,64,83,213,186,3,0,1,1,0,2,1,1,256,240,45,55,208,183,2,0,1,1,0,0,0,1,26,33,19,28,5,3,1,0,0,0,0,2,1,0 -050,01,011,Alabama,Bullock County,5,2,742,395,347,55,55,331,287,0,0,3,1,0,1,6,3,383,333,47,44,328,285,0,0,3,1,0,0,5,3,12,14,8,11,3,2,0,0,0,0,0,1,1,0 -050,01,011,Alabama,Bullock County,5,3,815,406,409,50,52,352,353,2,0,0,0,0,0,2,4,395,398,45,48,347,346,1,0,0,0,0,0,2,4,11,11,5,4,5,7,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,5,4,824,399,425,69,53,328,367,1,1,0,1,0,0,1,3,371,410,46,44,324,362,0,0,0,1,0,0,1,3,28,15,23,9,4,5,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,5,5,848,530,318,161,53,360,260,4,3,0,0,3,1,2,1,462,292,104,35,353,256,3,0,0,0,0,0,2,1,68,26,57,18,7,4,1,3,0,0,3,1,0,0 -050,01,011,Alabama,Bullock County,5,6,837,548,289,198,63,340,216,3,4,0,1,3,3,4,2,445,256,106,40,335,213,1,1,0,1,0,0,3,1,103,33,92,23,5,3,2,3,0,0,3,3,1,1 -050,01,011,Alabama,Bullock County,5,7,746,449,297,131,62,306,226,6,1,1,2,2,1,3,5,428,277,117,48,302,222,5,0,1,2,0,0,3,5,21,20,14,14,4,4,1,1,0,0,2,1,0,0 -050,01,011,Alabama,Bullock County,5,8,759,451,308,155,59,286,243,6,2,1,2,1,0,2,2,434,302,144,55,282,241,5,2,1,2,0,0,2,2,17,6,11,4,4,2,1,0,0,0,1,0,0,0 -050,01,011,Alabama,Bullock County,5,9,858,478,380,153,76,317,299,5,2,0,1,1,0,2,2,463,372,142,69,314,298,5,2,0,1,0,0,2,2,15,8,11,7,3,1,0,0,0,0,1,0,0,0 -050,01,011,Alabama,Bullock County,5,10,817,471,346,129,81,336,259,4,1,0,2,0,1,2,2,463,336,123,77,334,254,4,0,0,2,0,1,2,2,8,10,6,4,2,5,0,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,5,11,793,431,362,155,100,270,258,4,1,0,0,0,0,2,3,426,358,152,98,269,256,3,1,0,0,0,0,2,3,5,4,3,2,1,2,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,5,12,583,312,271,119,84,191,185,1,1,0,0,0,0,1,1,307,269,117,82,188,185,1,1,0,0,0,0,1,1,5,2,2,2,3,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,5,13,470,245,225,99,67,143,156,0,0,0,0,0,1,3,1,245,224,99,67,143,156,0,0,0,0,0,0,3,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0 -050,01,011,Alabama,Bullock County,5,14,409,195,214,71,77,122,135,1,0,0,1,0,0,1,1,190,213,68,77,121,134,0,0,0,1,0,0,1,1,5,1,3,0,1,1,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,5,15,330,150,180,66,77,84,102,0,0,0,0,0,0,0,1,150,179,66,76,84,102,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,5,16,280,110,170,49,54,59,114,0,0,1,0,0,0,1,2,109,170,49,54,58,114,0,0,1,0,0,0,1,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,5,17,263,83,180,37,56,45,121,1,1,0,0,0,0,0,2,82,180,37,56,44,121,1,1,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,5,18,258,81,177,34,56,47,120,0,0,0,0,0,0,0,1,80,176,33,56,47,119,0,0,0,0,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,5,99,11316,6087,5229,1820,1220,4174,3932,42,18,7,12,11,10,33,37,5739,5035,1547,1087,4124,3891,31,8,7,12,0,1,30,36,348,194,273,133,50,41,11,10,0,0,11,9,3,1 -050,01,011,Alabama,Bullock County,6,0,140,77,63,20,12,56,50,0,1,0,0,1,0,0,0,62,54,7,5,55,49,0,0,0,0,0,0,0,0,15,9,13,7,1,1,0,1,0,0,1,0,0,0 -050,01,011,Alabama,Bullock County,6,1,533,278,255,76,76,193,175,5,0,1,1,1,2,2,1,238,220,44,46,188,172,3,0,1,1,1,0,1,1,40,35,32,30,5,3,2,0,0,0,0,2,1,0 -050,01,011,Alabama,Bullock County,6,2,687,354,333,45,49,300,278,0,0,3,1,0,2,6,3,341,316,37,36,296,276,0,0,3,1,0,0,5,3,13,17,8,13,4,2,0,0,0,0,0,2,1,0 -050,01,011,Alabama,Bullock County,6,3,824,403,421,55,56,345,361,2,0,0,0,0,0,1,4,390,410,48,52,340,354,1,0,0,0,0,0,1,4,13,11,7,4,5,7,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,6,4,788,398,390,68,49,328,336,1,1,0,1,0,0,1,3,371,375,46,40,324,331,0,0,0,1,0,0,1,3,27,15,22,9,4,5,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,6,5,823,497,326,141,39,346,281,4,3,0,0,3,1,3,2,425,299,80,21,340,276,3,0,0,0,0,0,2,2,72,27,61,18,6,5,1,3,0,0,3,1,1,0 -050,01,011,Alabama,Bullock County,6,6,809,517,292,195,61,310,220,4,5,0,1,3,4,5,1,407,258,100,39,303,216,1,1,0,1,0,1,3,0,110,34,95,22,7,4,3,4,0,0,3,3,2,1 -050,01,011,Alabama,Bullock County,6,7,694,425,269,121,63,291,197,6,1,1,2,2,1,4,5,397,243,101,43,287,193,5,0,1,2,0,0,3,5,28,26,20,20,4,4,1,1,0,0,2,1,1,0 -050,01,011,Alabama,Bullock County,6,8,713,427,286,145,45,273,235,5,2,1,2,1,0,2,2,407,281,130,42,270,233,4,2,1,2,0,0,2,2,20,5,15,3,3,2,1,0,0,0,1,0,0,0 -050,01,011,Alabama,Bullock County,6,9,854,465,389,149,81,308,303,6,2,0,1,1,0,1,2,450,381,138,73,305,303,6,2,0,1,0,0,1,2,15,8,11,8,3,0,0,0,0,0,1,0,0,0 -050,01,011,Alabama,Bullock County,6,10,809,472,337,138,75,328,256,4,1,0,2,0,1,2,2,463,328,132,71,325,252,4,0,0,2,0,1,2,2,9,9,6,4,3,4,0,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,6,11,783,426,357,144,90,276,263,4,1,0,0,0,0,2,3,421,352,141,88,275,260,3,1,0,0,0,0,2,3,5,5,3,2,1,3,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,6,12,593,318,275,112,75,204,198,1,1,0,0,0,0,1,1,312,273,110,73,200,198,1,1,0,0,0,0,1,1,6,2,2,2,4,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,6,13,498,250,248,98,74,150,171,0,0,0,0,0,1,2,2,250,247,98,74,150,171,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0 -050,01,011,Alabama,Bullock County,6,14,408,206,202,77,59,127,141,1,0,0,1,0,0,1,1,201,200,74,59,126,139,0,0,0,1,0,0,1,1,5,2,3,0,1,2,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,6,15,337,151,186,65,78,86,107,0,0,0,0,0,0,0,1,150,185,64,77,86,107,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,6,16,272,115,157,49,67,64,89,0,0,1,0,0,0,1,1,114,157,49,67,63,89,0,0,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,6,17,234,75,159,38,54,36,103,1,1,0,0,0,0,0,1,74,159,38,54,35,103,1,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,6,18,257,78,179,36,52,42,126,0,0,0,0,0,0,0,1,77,178,35,52,42,125,0,0,0,0,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,6,99,11056,5932,5124,1772,1155,4063,3890,44,19,7,12,12,12,34,36,5550,4916,1472,1012,4010,3847,32,8,7,12,1,2,28,35,382,208,300,143,53,43,12,11,0,0,11,10,6,1 -050,01,011,Alabama,Bullock County,7,0,138,84,54,26,11,55,41,1,1,0,0,1,0,1,1,62,45,8,4,54,41,0,0,0,0,0,0,0,0,22,9,18,7,1,0,1,1,0,0,1,0,1,1 -050,01,011,Alabama,Bullock County,7,1,482,259,223,72,61,175,157,2,0,1,0,3,3,6,2,225,195,48,37,170,156,1,0,1,0,1,0,4,2,34,28,24,24,5,1,1,0,0,0,2,3,2,0 -050,01,011,Alabama,Bullock County,7,2,671,342,329,52,49,278,269,1,0,2,0,2,4,7,7,317,307,35,37,275,266,0,0,2,0,0,0,5,4,25,22,17,12,3,3,1,0,0,0,2,4,2,3 -050,01,011,Alabama,Bullock County,7,3,790,395,395,61,53,328,336,1,1,1,0,2,1,2,4,377,382,52,47,322,331,1,0,1,0,0,0,1,4,18,13,9,6,6,5,0,1,0,0,2,1,1,0 -050,01,011,Alabama,Bullock County,7,4,772,365,407,61,54,299,347,2,2,0,1,2,1,1,2,336,392,40,48,295,341,0,0,0,1,0,0,1,2,29,15,21,6,4,6,2,2,0,0,2,1,0,0 -050,01,011,Alabama,Bullock County,7,5,832,491,341,144,50,335,281,3,4,1,0,6,3,2,3,422,310,93,31,327,276,0,1,1,0,0,0,1,2,69,31,51,19,8,5,3,3,0,0,6,3,1,1 -050,01,011,Alabama,Bullock County,7,6,863,554,309,211,65,327,230,5,6,1,1,5,6,5,1,427,263,106,34,319,225,0,1,1,1,0,2,1,0,127,46,105,31,8,5,5,5,0,0,5,4,4,1 -050,01,011,Alabama,Bullock County,7,7,686,417,269,119,50,289,207,4,5,0,2,3,2,2,3,390,247,100,39,286,202,2,1,0,2,1,0,1,3,27,22,19,11,3,5,2,4,0,0,2,2,1,0 -050,01,011,Alabama,Bullock County,7,8,673,416,257,144,40,266,214,2,2,0,1,1,0,3,0,398,251,132,34,262,214,1,2,0,1,0,0,3,0,18,6,12,6,4,0,1,0,0,0,1,0,0,0 -050,01,011,Alabama,Bullock County,7,9,810,434,376,135,78,293,291,2,3,2,2,1,0,1,2,426,370,129,74,292,290,2,3,2,2,0,0,1,1,8,6,6,4,1,1,0,0,0,0,1,0,0,1 -050,01,011,Alabama,Bullock County,7,10,853,493,360,150,80,339,274,2,1,0,2,0,0,2,3,487,355,145,79,338,271,2,0,0,2,0,0,2,3,6,5,5,1,1,3,0,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,7,11,791,449,342,142,84,303,254,3,1,1,0,0,0,0,3,444,334,139,80,302,250,2,1,1,0,0,0,0,3,5,8,3,4,1,4,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,7,12,646,344,302,116,82,225,218,1,0,0,1,0,0,2,1,338,300,115,80,221,218,0,0,0,1,0,0,2,1,6,2,1,2,4,0,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,7,13,498,248,250,86,73,160,176,0,0,0,0,1,0,1,1,247,250,86,73,160,176,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0 -050,01,011,Alabama,Bullock County,7,14,407,211,196,89,64,116,130,2,1,0,0,0,0,4,1,206,192,87,63,115,127,0,1,0,0,0,0,4,1,5,4,2,1,1,3,2,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,7,15,373,166,207,66,85,100,122,0,0,0,0,0,0,0,0,165,205,66,84,99,121,0,0,0,0,0,0,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,7,16,269,107,162,50,65,56,95,0,0,0,1,0,0,1,1,106,160,50,63,55,95,0,0,0,1,0,0,1,1,1,2,0,2,1,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,7,17,196,51,145,26,53,24,90,1,1,0,0,0,0,0,1,51,145,26,53,24,90,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,7,18,261,75,186,30,55,45,130,0,0,0,0,0,0,0,1,74,186,29,55,45,130,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,7,99,11011,5901,5110,1780,1152,4013,3862,32,28,9,11,27,20,40,37,5498,4889,1486,1015,3961,3820,12,11,9,11,2,2,28,30,403,221,294,137,52,42,20,17,0,0,25,18,12,7 -050,01,011,Alabama,Bullock County,8,0,184,118,66,43,13,72,51,0,1,0,0,1,0,2,1,92,55,21,4,71,51,0,0,0,0,0,0,0,0,26,11,22,9,1,0,0,1,0,0,1,0,2,1 -050,01,011,Alabama,Bullock County,8,1,494,256,238,59,60,182,169,3,1,1,0,5,5,6,3,228,203,45,34,176,167,1,0,1,0,1,0,4,2,28,35,14,26,6,2,2,1,0,0,4,5,2,1 -050,01,011,Alabama,Bullock County,8,2,610,312,298,50,46,247,238,2,1,2,0,3,5,8,8,284,271,32,33,244,235,0,0,2,0,0,0,6,3,28,27,18,13,3,3,2,1,0,0,3,5,2,5 -050,01,011,Alabama,Bullock County,8,3,748,387,361,61,51,320,304,1,2,1,0,2,1,2,3,369,349,52,45,314,301,1,0,1,0,0,0,1,3,18,12,9,6,6,3,0,2,0,0,2,1,1,0 -050,01,011,Alabama,Bullock County,8,4,790,377,413,60,52,314,356,1,2,0,1,2,1,0,1,350,393,40,42,310,350,0,0,0,1,0,0,0,0,27,20,20,10,4,6,1,2,0,0,2,1,0,1 -050,01,011,Alabama,Bullock County,8,5,776,461,315,134,48,312,256,3,4,1,0,7,4,4,3,390,281,84,27,304,251,0,1,1,0,0,0,1,2,71,34,50,21,8,5,3,3,0,0,7,4,3,1 -050,01,011,Alabama,Bullock County,8,6,813,497,316,166,61,313,240,5,6,2,1,6,5,5,3,402,271,96,33,303,235,0,1,2,1,0,1,1,0,95,45,70,28,10,5,5,5,0,0,6,4,4,3 -050,01,011,Alabama,Bullock County,8,7,682,403,279,117,60,277,208,3,4,0,2,3,2,3,3,365,245,89,35,274,204,1,1,0,2,0,0,1,3,38,34,28,25,3,4,2,3,0,0,3,2,2,0 -050,01,011,Alabama,Bullock County,8,8,675,416,259,151,39,259,217,2,1,0,1,2,0,2,1,387,253,129,33,255,217,1,1,0,1,0,0,2,1,29,6,22,6,4,0,1,0,0,0,2,0,0,0 -050,01,011,Alabama,Bullock County,8,9,781,413,368,125,72,284,290,1,3,2,2,1,0,0,1,404,362,118,68,283,289,1,3,2,2,0,0,0,0,9,6,7,4,1,1,0,0,0,0,1,0,0,1 -050,01,011,Alabama,Bullock County,8,10,790,450,340,139,73,308,262,0,1,1,2,0,0,2,2,442,334,133,71,307,259,0,0,1,2,0,0,1,2,8,6,6,2,1,3,0,1,0,0,0,0,1,0 -050,01,011,Alabama,Bullock County,8,11,812,468,344,142,89,322,251,2,1,1,0,0,0,1,3,463,335,139,84,321,247,1,1,1,0,0,0,1,3,5,9,3,5,1,4,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,8,12,685,356,329,123,85,228,242,1,1,0,1,1,0,3,0,351,326,122,82,226,242,0,1,0,1,0,0,3,0,5,3,1,3,2,0,1,0,0,0,1,0,0,0 -050,01,011,Alabama,Bullock County,8,13,488,250,238,87,68,160,167,0,1,0,0,2,0,1,2,247,238,86,68,160,167,0,1,0,0,0,0,1,2,3,0,1,0,0,0,0,0,0,0,2,0,0,0 -050,01,011,Alabama,Bullock County,8,14,413,207,206,76,70,127,134,1,1,0,0,0,0,3,1,203,203,74,69,126,132,0,1,0,0,0,0,3,1,4,3,2,1,1,2,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,8,15,349,156,193,64,83,92,110,0,0,0,0,0,0,0,0,155,192,63,83,92,109,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,8,16,274,112,162,47,58,65,104,0,0,0,0,0,0,0,0,109,160,46,56,63,104,0,0,0,0,0,0,0,0,3,2,1,2,2,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,8,17,158,47,111,24,42,23,68,0,1,0,0,0,0,0,0,47,110,24,42,23,67,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,8,18,254,78,176,34,53,44,122,0,0,0,0,0,0,0,1,77,176,33,53,44,122,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,8,99,10776,5764,5012,1702,1123,3949,3789,25,31,11,10,35,23,42,36,5365,4757,1426,962,3896,3749,6,12,11,10,1,1,25,23,399,255,276,161,53,40,19,19,0,0,34,22,17,13 -050,01,011,Alabama,Bullock County,9,0,178,113,65,36,9,73,53,1,2,0,0,1,0,2,1,81,56,8,3,73,53,0,0,0,0,0,0,0,0,32,9,28,6,0,0,1,2,0,0,1,0,2,1 -050,01,011,Alabama,Bullock County,9,1,500,254,246,68,59,172,176,3,3,1,0,5,5,5,3,219,205,48,29,164,174,1,0,1,0,1,0,4,2,35,41,20,30,8,2,2,3,0,0,4,5,1,1 -050,01,011,Alabama,Bullock County,9,2,592,299,293,45,61,239,217,2,2,2,0,3,5,8,8,274,255,30,37,236,215,0,0,2,0,0,0,6,3,25,38,15,24,3,2,2,2,0,0,3,5,2,5 -050,01,011,Alabama,Bullock County,9,3,716,370,346,66,47,298,293,1,2,1,0,2,1,2,3,349,334,55,40,291,291,1,0,1,0,0,0,1,3,21,12,11,7,7,2,0,2,0,0,2,1,1,0 -050,01,011,Alabama,Bullock County,9,4,820,387,433,60,52,324,376,1,2,0,1,2,1,0,1,361,412,41,40,320,371,0,0,0,1,0,0,0,0,26,21,19,12,4,5,1,2,0,0,2,1,0,1 -050,01,011,Alabama,Bullock County,9,5,788,449,339,131,53,303,275,3,4,1,0,7,4,4,3,373,302,75,30,296,269,0,1,1,0,0,0,1,2,76,37,56,23,7,6,3,3,0,0,7,4,3,1 -050,01,011,Alabama,Bullock County,9,6,838,521,317,181,66,320,235,6,7,2,1,6,4,6,4,421,264,108,34,310,228,0,1,2,1,0,0,1,0,100,53,73,32,10,7,6,6,0,0,6,4,5,4 -050,01,011,Alabama,Bullock County,9,7,718,441,277,139,56,293,209,3,4,0,2,3,3,3,3,397,245,104,34,290,205,1,1,0,2,1,0,1,3,44,32,35,22,3,4,2,3,0,0,2,3,2,0 -050,01,011,Alabama,Bullock County,9,8,711,438,273,161,37,270,233,2,1,0,1,2,0,3,1,407,266,137,30,266,233,1,1,0,1,0,0,3,1,31,7,24,7,4,0,1,0,0,0,2,0,0,0 -050,01,011,Alabama,Bullock County,9,9,760,427,333,135,66,288,260,1,4,2,2,1,0,0,1,418,328,128,63,287,259,1,4,2,2,0,0,0,0,9,5,7,3,1,1,0,0,0,0,1,0,0,1 -050,01,011,Alabama,Bullock County,9,10,832,484,348,151,61,330,282,0,1,1,2,0,0,2,2,476,341,145,58,329,279,0,0,1,2,0,0,1,2,8,7,6,3,1,3,0,1,0,0,0,0,1,0 -050,01,011,Alabama,Bullock County,9,11,830,480,350,137,78,339,268,2,1,1,0,0,0,1,3,475,340,134,73,338,263,1,1,1,0,0,0,1,3,5,10,3,5,1,5,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,9,12,710,365,345,129,98,231,245,1,1,0,1,1,0,3,0,359,342,128,95,228,245,0,1,0,1,0,0,3,0,6,3,1,3,3,0,1,0,0,0,1,0,0,0 -050,01,011,Alabama,Bullock County,9,13,546,293,253,98,74,191,175,0,1,0,0,2,0,2,3,290,253,97,74,191,175,0,1,0,0,0,0,2,3,3,0,1,0,0,0,0,0,0,0,2,0,0,0 -050,01,011,Alabama,Bullock County,9,14,428,214,214,80,58,129,154,2,1,0,0,0,0,3,1,208,212,78,57,127,153,0,1,0,0,0,0,3,1,6,2,2,1,2,1,2,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,9,15,363,170,193,69,77,101,116,0,0,0,0,0,0,0,0,168,192,68,77,100,115,0,0,0,0,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,9,16,275,117,158,47,62,70,95,0,0,0,1,0,0,0,0,115,156,46,60,69,95,0,0,0,1,0,0,0,0,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,9,17,165,57,108,31,33,26,74,0,1,0,0,0,0,0,0,57,107,31,33,26,73,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,9,18,241,79,162,33,53,46,108,0,0,0,0,0,0,0,1,78,162,32,53,46,108,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,9,99,11011,5958,5053,1797,1100,4043,3844,28,37,11,11,35,23,44,38,5526,4772,1493,920,3987,3804,6,13,11,11,2,0,27,24,432,281,304,180,56,40,22,24,0,0,33,23,17,14 -050,01,011,Alabama,Bullock County,10,0,169,106,63,28,7,72,53,2,2,0,0,2,0,2,1,75,55,5,2,70,53,0,0,0,0,0,0,0,0,31,8,23,5,2,0,2,2,0,0,2,0,2,1 -050,01,011,Alabama,Bullock County,10,1,526,281,245,70,63,193,169,4,3,0,0,5,7,9,3,237,197,46,28,184,167,1,0,0,0,1,0,5,2,44,48,24,35,9,2,3,3,0,0,4,7,4,1 -050,01,011,Alabama,Bullock County,10,2,567,261,306,45,65,198,223,2,2,2,0,3,6,11,10,234,263,30,38,194,221,0,0,2,0,0,0,8,4,27,43,15,27,4,2,2,2,0,0,3,6,3,6 -050,01,011,Alabama,Bullock County,10,3,729,381,348,68,49,306,293,1,2,1,0,2,1,3,3,356,335,54,41,299,291,1,0,1,0,0,0,1,3,25,13,14,8,7,2,0,2,0,0,2,1,2,0 -050,01,011,Alabama,Bullock County,10,4,767,368,399,62,53,302,341,1,3,0,0,2,1,1,1,339,377,43,41,296,336,0,0,0,0,0,0,0,0,29,22,19,12,6,5,1,3,0,0,2,1,1,1 -050,01,011,Alabama,Bullock County,10,5,762,445,317,124,50,303,253,4,7,1,0,8,4,5,3,368,277,74,27,291,247,0,1,1,0,0,0,2,2,77,40,50,23,12,6,4,6,0,0,8,4,3,1 -050,01,011,Alabama,Bullock County,10,6,813,492,321,142,69,327,229,6,8,2,1,8,10,7,4,421,260,103,34,315,221,0,1,2,1,0,3,1,0,71,61,39,35,12,8,6,7,0,0,8,7,6,4 -050,01,011,Alabama,Bullock County,10,7,726,443,283,152,62,279,207,3,4,0,2,6,4,3,4,394,246,115,37,276,202,1,1,0,2,1,0,1,4,49,37,37,25,3,5,2,3,0,0,5,4,2,0 -050,01,011,Alabama,Bullock County,10,8,722,448,274,157,48,282,222,2,2,0,1,3,0,4,1,417,262,134,36,278,222,1,2,0,1,0,0,4,1,31,12,23,12,4,0,1,0,0,0,3,0,0,0 -050,01,011,Alabama,Bullock County,10,9,694,407,287,129,47,274,233,1,4,2,2,1,0,0,1,401,282,125,44,273,232,1,4,2,2,0,0,0,0,6,5,4,3,1,1,0,0,0,0,1,0,0,1 -050,01,011,Alabama,Bullock County,10,10,875,514,361,160,63,351,292,0,2,1,2,0,0,2,2,508,354,156,59,350,291,0,0,1,2,0,0,1,2,6,7,4,4,1,1,0,2,0,0,0,0,1,0 -050,01,011,Alabama,Bullock County,10,11,803,463,340,128,76,332,261,1,1,1,0,0,0,1,2,456,330,123,71,331,256,0,1,1,0,0,0,1,2,7,10,5,5,1,5,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,10,12,746,401,345,145,104,252,239,1,1,0,1,0,0,3,0,396,342,144,101,249,239,0,1,0,1,0,0,3,0,5,3,1,3,3,0,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,10,13,564,299,265,105,72,190,189,0,1,0,0,2,1,2,2,296,264,104,72,190,189,0,1,0,0,0,0,2,2,3,1,1,0,0,0,0,0,0,0,2,1,0,0 -050,01,011,Alabama,Bullock County,10,14,451,229,222,94,68,131,152,1,1,0,0,0,0,3,1,224,220,92,67,129,151,0,1,0,0,0,0,3,1,5,2,2,1,2,1,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,10,15,371,168,203,73,70,95,133,0,0,0,0,0,0,0,0,166,202,72,70,94,132,0,0,0,0,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,10,16,249,112,137,44,57,68,79,0,0,0,1,0,0,0,0,110,135,43,55,67,79,0,0,0,1,0,0,0,0,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,10,17,184,64,120,40,37,24,82,0,1,0,0,0,0,0,0,64,119,40,37,24,81,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,10,18,235,75,160,29,52,46,108,0,0,0,0,0,0,0,0,75,160,29,52,46,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,10,99,10953,5957,4996,1795,1112,4025,3758,29,44,10,10,42,34,56,38,5537,4680,1532,912,3956,3718,5,14,10,10,2,3,32,23,420,316,263,200,69,40,24,30,0,0,40,31,24,15 -050,01,011,Alabama,Bullock County,11,0,162,94,68,25,4,62,59,3,4,0,0,2,0,2,1,69,60,8,1,61,59,0,0,0,0,0,0,0,0,25,8,17,3,1,0,3,4,0,0,2,0,2,1 -050,01,011,Alabama,Bullock County,11,1,545,295,250,69,60,206,176,6,4,0,0,5,7,9,3,243,206,39,30,197,174,1,0,0,0,1,0,5,2,52,44,30,30,9,2,5,4,0,0,4,7,4,1 -050,01,011,Alabama,Bullock County,11,2,610,310,300,53,64,239,217,2,2,2,0,3,7,11,10,273,257,30,38,233,215,0,0,2,0,0,0,8,4,37,43,23,26,6,2,2,2,0,0,3,7,3,6 -050,01,011,Alabama,Bullock County,11,3,695,359,336,71,48,281,282,1,2,1,0,2,1,3,3,334,321,56,38,275,280,1,0,1,0,0,0,1,3,25,15,15,10,6,2,0,2,0,0,2,1,2,0 -050,01,011,Alabama,Bullock County,11,4,777,381,396,67,54,310,337,1,3,0,0,2,1,1,1,352,376,48,43,304,333,0,0,0,0,0,0,0,0,29,20,19,11,6,4,1,3,0,0,2,1,1,1 -050,01,011,Alabama,Bullock County,11,5,718,413,305,115,51,278,239,4,7,1,0,10,5,5,3,335,262,67,26,265,233,0,1,1,0,0,0,2,2,78,43,48,25,13,6,4,6,0,0,10,5,3,1 -050,01,011,Alabama,Bullock County,11,6,839,512,327,159,72,326,233,7,9,2,1,9,7,9,5,415,260,100,34,312,224,0,1,2,1,0,0,1,0,97,67,59,38,14,9,7,8,0,0,9,7,8,5 -050,01,011,Alabama,Bullock County,11,7,732,456,276,155,61,288,201,3,4,0,2,6,4,4,4,416,241,126,38,286,196,1,1,0,2,1,0,2,4,40,35,29,23,2,5,2,3,0,0,5,4,2,0 -050,01,011,Alabama,Bullock County,11,8,699,435,264,149,45,277,215,2,2,0,1,3,0,4,1,403,257,127,38,271,215,1,2,0,1,0,0,4,1,32,7,22,7,6,0,1,0,0,0,3,0,0,0 -050,01,011,Alabama,Bullock County,11,9,673,386,287,123,44,259,236,1,4,2,2,1,0,0,1,380,282,119,41,258,235,1,4,2,2,0,0,0,0,6,5,4,3,1,1,0,0,0,0,1,0,0,1 -050,01,011,Alabama,Bullock County,11,10,873,510,363,164,68,343,289,0,2,1,2,0,0,2,2,505,357,161,65,342,288,0,0,1,2,0,0,1,2,5,6,3,3,1,1,0,2,0,0,0,0,1,0 -050,01,011,Alabama,Bullock County,11,11,826,467,359,127,80,336,276,2,1,1,0,0,0,1,2,459,349,122,75,335,271,0,1,1,0,0,0,1,2,8,10,5,5,1,5,2,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,11,12,761,429,332,153,84,270,246,1,1,0,1,2,0,3,0,422,328,152,80,267,246,0,1,0,1,0,0,3,0,7,4,1,4,3,0,1,0,0,0,2,0,0,0 -050,01,011,Alabama,Bullock County,11,13,588,306,282,114,75,188,203,0,1,0,0,2,1,2,2,303,281,113,75,188,203,0,1,0,0,0,0,2,2,3,1,1,0,0,0,0,0,0,0,2,1,0,0 -050,01,011,Alabama,Bullock County,11,14,467,230,237,91,77,134,158,2,1,0,0,0,0,3,1,223,234,88,76,132,156,0,1,0,0,0,0,3,1,7,3,3,1,2,2,2,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,11,15,371,168,203,73,65,95,138,0,0,0,0,0,0,0,0,166,202,72,65,94,137,0,0,0,0,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,11,16,270,121,149,48,63,73,85,0,0,0,1,0,0,0,0,119,147,47,61,72,85,0,0,0,1,0,0,0,0,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,11,17,170,69,101,45,42,24,57,0,2,0,0,0,0,0,0,69,100,45,42,24,56,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,11,18,211,66,145,26,40,40,105,0,0,0,0,0,0,0,0,66,145,26,40,40,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,11,99,10987,6007,4980,1827,1097,4029,3752,35,49,10,10,47,33,59,39,5552,4665,1546,906,3956,3711,5,15,10,10,2,0,33,23,455,315,281,191,73,41,30,34,0,0,45,33,26,16 -050,01,011,Alabama,Bullock County,12,0,146,87,59,19,3,60,50,4,5,0,0,2,0,2,1,65,51,7,1,58,50,0,0,0,0,0,0,0,0,22,8,12,2,2,0,4,5,0,0,2,0,2,1 -050,01,011,Alabama,Bullock County,12,1,596,315,281,67,72,227,195,7,4,0,0,5,7,9,3,263,224,38,29,218,193,1,0,0,0,1,0,5,2,52,57,29,43,9,2,6,4,0,0,4,7,4,1 -050,01,011,Alabama,Bullock County,12,2,570,295,275,52,67,225,188,2,2,2,0,3,8,11,10,257,226,28,36,219,186,0,0,2,0,0,0,8,4,38,49,24,31,6,2,2,2,0,0,3,8,3,6 -050,01,011,Alabama,Bullock County,12,3,675,337,338,71,48,259,284,1,2,1,0,2,1,3,3,311,323,55,38,253,282,1,0,1,0,0,0,1,3,26,15,16,10,6,2,0,2,0,0,2,1,2,0 -050,01,011,Alabama,Bullock County,12,4,726,365,361,63,49,298,307,1,3,0,0,2,1,1,1,337,341,45,38,292,303,0,0,0,0,0,0,0,0,28,20,18,11,6,4,1,3,0,0,2,1,1,1 -050,01,011,Alabama,Bullock County,12,5,711,392,319,107,56,265,248,4,7,1,0,10,5,5,3,315,273,60,29,252,241,0,1,1,0,0,0,2,2,77,46,47,27,13,7,4,6,0,0,10,5,3,1 -050,01,011,Alabama,Bullock County,12,6,822,500,322,145,70,328,228,7,9,2,1,9,9,9,5,414,255,97,30,314,221,0,1,2,1,0,2,1,0,86,67,48,40,14,7,7,8,0,0,9,7,8,5 -050,01,011,Alabama,Bullock County,12,7,733,444,289,139,59,292,216,3,4,0,2,6,4,4,4,405,253,112,35,289,211,1,1,0,2,1,0,2,4,39,36,27,24,3,5,2,3,0,0,5,4,2,0 -050,01,011,Alabama,Bullock County,12,8,712,440,272,151,44,280,224,2,2,0,1,3,0,4,1,409,264,129,36,275,224,1,2,0,1,0,0,4,1,31,8,22,8,5,0,1,0,0,0,3,0,0,0 -050,01,011,Alabama,Bullock County,12,9,650,376,274,123,39,249,228,1,4,2,2,1,0,0,1,370,269,119,36,248,227,1,4,2,2,0,0,0,0,6,5,4,3,1,1,0,0,0,0,1,0,0,1 -050,01,011,Alabama,Bullock County,12,10,845,500,345,156,64,341,275,0,2,1,2,0,0,2,2,495,340,153,62,340,274,0,0,1,2,0,0,1,2,5,5,3,2,1,1,0,2,0,0,0,0,1,0 -050,01,011,Alabama,Bullock County,12,11,852,472,380,135,79,333,298,2,1,1,0,0,0,1,2,464,370,130,74,332,293,0,1,1,0,0,0,1,2,8,10,5,5,1,5,2,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,12,12,768,433,335,145,87,283,246,1,1,0,1,1,0,3,0,427,331,144,83,280,246,0,1,0,1,0,0,3,0,6,4,1,4,3,0,1,0,0,0,1,0,0,0 -050,01,011,Alabama,Bullock County,12,13,639,330,309,118,85,208,220,0,1,0,0,2,1,2,2,327,308,117,85,208,220,0,1,0,0,0,0,2,2,3,1,1,0,0,0,0,0,0,0,2,1,0,0 -050,01,011,Alabama,Bullock County,12,14,476,223,253,87,78,131,173,2,1,0,0,0,0,3,1,216,250,84,77,129,171,0,1,0,0,0,0,3,1,7,3,3,1,2,2,2,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,12,15,359,170,189,75,68,95,121,0,0,0,0,0,0,0,0,168,188,74,68,94,120,0,0,0,0,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,12,16,275,117,158,50,59,67,98,0,0,0,1,0,0,0,0,114,156,49,57,65,98,0,0,0,1,0,0,0,0,3,2,1,2,2,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,12,17,151,54,97,35,38,19,57,0,2,0,0,0,0,0,0,54,96,35,38,19,56,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,12,18,208,62,146,23,42,39,104,0,0,0,0,0,0,0,0,62,146,23,42,39,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,12,99,10914,5912,5002,1761,1107,3999,3760,37,50,10,10,46,36,59,39,5473,4664,1499,894,3924,3720,5,15,10,10,2,2,33,23,439,338,262,213,75,40,32,35,0,0,44,34,26,16 -050,01,011,Alabama,Bullock County,13,0,140,82,58,18,1,58,50,4,5,0,1,1,0,1,1,65,49,7,0,57,49,0,0,0,0,0,0,1,0,17,9,11,1,1,1,4,5,0,1,1,0,0,1 -050,01,011,Alabama,Bullock County,13,1,587,307,280,66,71,224,194,6,2,2,2,2,4,7,7,260,229,36,29,217,192,1,0,1,1,0,0,5,7,47,51,30,42,7,2,5,2,1,1,2,4,2,0 -050,01,011,Alabama,Bullock County,13,2,561,298,263,51,62,224,184,3,3,1,0,4,5,15,9,256,224,26,32,217,183,1,1,1,0,1,1,10,7,42,39,25,30,7,1,2,2,0,0,3,4,5,2 -050,01,011,Alabama,Bullock County,13,3,685,341,344,69,45,256,284,3,1,3,1,2,1,8,12,315,327,53,36,252,281,2,1,3,1,0,0,5,8,26,17,16,9,4,3,1,0,0,0,2,1,3,4 -050,01,011,Alabama,Bullock County,13,4,721,360,361,58,45,295,304,3,4,1,2,0,0,3,6,338,345,43,35,291,301,2,2,1,2,0,0,1,5,22,16,15,10,4,3,1,2,0,0,0,0,2,1 -050,01,011,Alabama,Bullock County,13,5,697,387,310,103,52,266,246,5,5,1,2,6,3,6,2,318,270,57,27,254,240,1,0,1,1,0,0,5,2,69,40,46,25,12,6,4,5,0,1,6,3,1,0 -050,01,011,Alabama,Bullock County,13,6,797,489,308,146,68,324,226,5,6,5,2,6,4,3,2,415,255,97,29,313,220,0,1,2,2,1,1,2,2,74,53,49,39,11,6,5,5,3,0,5,3,1,0 -050,01,011,Alabama,Bullock County,13,7,734,443,291,137,58,293,217,1,5,1,2,4,3,7,6,408,260,113,36,290,212,0,3,1,2,0,1,4,6,35,31,24,22,3,5,1,2,0,0,4,2,3,0 -050,01,011,Alabama,Bullock County,13,8,719,441,278,150,39,278,227,2,3,3,2,1,1,7,6,410,267,127,32,273,225,0,3,3,2,0,0,7,5,31,11,23,7,5,2,2,0,0,0,1,1,0,1 -050,01,011,Alabama,Bullock County,13,9,657,377,280,121,39,248,226,2,8,2,2,1,0,3,5,372,273,118,34,247,226,2,6,2,2,0,0,3,5,5,7,3,5,1,0,0,2,0,0,1,0,0,0 -050,01,011,Alabama,Bullock County,13,10,850,504,346,157,65,341,273,2,3,2,1,0,0,2,4,497,338,151,61,340,270,2,2,2,1,0,0,2,4,7,8,6,4,1,3,0,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,13,11,855,473,382,135,78,332,297,1,2,2,0,1,0,2,5,467,373,130,73,332,294,0,1,2,0,1,0,2,5,6,9,5,5,0,3,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,13,12,770,434,336,144,87,281,243,2,2,2,3,0,0,5,1,431,332,143,83,279,243,2,2,2,3,0,0,5,1,3,4,1,4,2,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,13,13,642,334,308,119,85,211,221,1,1,0,0,0,0,3,1,332,308,117,85,211,221,1,1,0,0,0,0,3,1,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,13,14,480,223,257,89,80,130,172,1,3,0,0,0,0,3,2,217,254,85,79,129,170,0,3,0,0,0,0,3,2,6,3,4,1,1,2,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,13,15,361,170,191,74,69,94,120,1,1,0,0,0,0,1,1,168,189,72,68,94,119,1,1,0,0,0,0,1,1,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,13,16,271,112,159,46,58,64,99,0,1,0,1,0,0,2,0,111,155,46,54,63,99,0,1,0,1,0,0,2,0,1,4,0,4,1,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,13,17,154,55,99,35,40,18,56,0,1,1,2,0,0,1,0,54,97,34,38,18,56,0,1,1,2,0,0,1,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,13,18,209,63,146,23,41,40,105,0,0,0,0,0,0,0,0,63,146,23,41,40,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,13,99,10890,5893,4997,1741,1083,3977,3744,42,56,26,23,28,21,79,70,5497,4691,1478,872,3917,3706,15,29,22,20,3,3,62,61,396,306,263,211,60,38,27,27,4,3,25,18,17,9 -050,01,013,Alabama,Butler County,1,0,277,148,129,69,66,76,63,0,0,1,0,0,0,2,0,148,127,69,66,76,61,0,0,1,0,0,0,2,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,1,1081,531,550,238,271,285,272,2,2,2,0,0,0,4,5,528,547,236,269,285,271,2,2,2,0,0,0,3,5,3,3,2,2,0,1,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,1,2,1539,818,721,408,344,399,372,1,0,3,3,0,0,7,2,810,717,401,342,399,372,1,0,3,2,0,0,6,1,8,4,7,2,0,0,0,0,0,1,0,0,1,1 -050,01,013,Alabama,Butler County,1,3,1699,880,819,425,401,449,411,0,1,1,0,0,0,5,6,877,816,424,400,447,410,0,1,1,0,0,0,5,5,3,3,1,1,2,1,0,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,1,4,1803,887,916,442,447,441,465,2,0,0,0,0,0,2,4,884,911,441,446,439,461,2,0,0,0,0,0,2,4,3,5,1,1,2,4,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,5,1187,555,632,275,278,279,351,0,0,1,0,0,0,0,3,549,628,273,275,275,351,0,0,1,0,0,0,0,2,6,4,2,3,4,0,0,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,1,6,1154,520,634,330,334,187,294,2,3,0,2,0,0,1,1,515,631,326,331,186,294,2,3,0,2,0,0,1,1,5,3,4,3,1,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,7,1182,562,620,347,331,211,282,3,2,0,3,0,0,1,2,556,619,344,331,208,281,3,2,0,3,0,0,1,2,6,1,3,0,3,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,8,1472,656,816,425,454,224,348,2,2,5,6,0,0,0,6,656,810,425,449,224,347,2,2,5,6,0,0,0,6,0,6,0,5,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,9,1569,762,807,489,459,267,344,3,3,2,1,0,0,1,0,755,805,485,459,264,342,3,3,2,1,0,0,1,0,7,2,4,0,3,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,10,1547,735,812,452,453,280,354,0,3,1,0,0,0,2,2,733,806,451,449,279,352,0,3,1,0,0,0,2,2,2,6,1,4,1,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,11,1338,671,667,446,418,222,242,0,4,1,1,0,0,2,2,660,660,441,418,216,236,0,3,1,1,0,0,2,2,11,7,5,0,6,6,0,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,12,1100,528,572,364,404,159,163,2,1,1,2,0,0,2,2,521,570,363,404,154,161,2,1,1,2,0,0,1,2,7,2,1,0,5,2,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,1,13,942,442,500,313,328,126,170,1,2,1,0,0,0,1,0,440,495,312,325,126,168,1,2,1,0,0,0,0,0,2,5,1,3,0,2,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,1,14,907,388,519,274,355,113,164,0,0,0,0,0,0,1,0,383,515,272,352,110,163,0,0,0,0,0,0,1,0,5,4,2,3,3,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,15,849,355,494,254,347,100,144,1,0,0,1,0,0,0,2,352,491,251,346,100,142,1,0,0,1,0,0,0,2,3,3,3,1,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,16,661,243,418,189,293,54,125,0,0,0,0,0,0,0,0,242,413,188,291,54,122,0,0,0,0,0,0,0,0,1,5,1,2,0,3,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,17,563,194,369,145,272,47,95,1,1,0,0,0,0,1,1,192,368,143,271,47,95,1,1,0,0,0,0,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,18,524,141,383,93,272,47,109,1,0,0,0,0,0,0,2,141,380,93,271,47,107,1,0,0,0,0,0,0,2,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,99,21394,10016,11378,5978,6527,3966,4768,21,24,19,19,0,0,32,40,9942,11309,5938,6495,3936,4736,21,23,19,18,0,0,28,37,74,69,40,32,30,32,0,1,0,1,0,0,4,3 -050,01,013,Alabama,Butler County,2,0,277,148,129,69,66,76,63,0,0,1,0,0,0,2,0,148,127,69,66,76,61,0,0,1,0,0,0,2,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,1,1070,524,546,235,268,281,270,2,2,2,0,0,0,4,6,521,543,233,266,281,269,2,2,2,0,0,0,3,6,3,3,2,2,0,1,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,2,2,1518,807,711,401,338,395,368,1,0,3,3,0,0,7,2,799,707,394,336,395,368,1,0,3,2,0,0,6,1,8,4,7,2,0,0,0,0,0,1,0,0,1,1 -050,01,013,Alabama,Butler County,2,3,1697,877,820,422,399,449,414,0,1,1,0,0,0,5,6,874,817,421,398,447,413,0,1,1,0,0,0,5,5,3,3,1,1,2,1,0,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,2,4,1802,890,912,440,444,446,464,2,0,0,0,0,0,2,4,887,907,439,443,444,460,2,0,0,0,0,0,2,4,3,5,1,1,2,4,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,5,1189,557,632,274,277,282,352,0,0,1,0,0,0,0,3,551,628,272,274,278,352,0,0,1,0,0,0,0,2,6,4,2,3,4,0,0,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,2,6,1137,511,626,324,328,184,292,2,3,0,2,0,0,1,1,506,623,320,325,183,292,2,3,0,2,0,0,1,1,5,3,4,3,1,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,7,1170,558,612,345,326,209,279,3,2,0,3,0,0,1,2,552,611,342,326,206,278,3,2,0,3,0,0,1,2,6,1,3,0,3,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,8,1460,650,810,422,449,221,347,2,2,5,6,0,0,0,6,650,804,422,444,221,346,2,2,5,6,0,0,0,6,0,6,0,5,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,9,1565,760,805,486,458,268,343,3,3,2,1,0,0,1,0,753,803,482,458,265,341,3,3,2,1,0,0,1,0,7,2,4,0,3,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,10,1550,740,810,453,451,284,354,0,3,1,0,0,0,2,2,738,804,452,447,283,352,0,3,1,0,0,0,2,2,2,6,1,4,1,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,11,1346,675,671,448,420,224,244,0,4,1,1,0,0,2,2,664,664,443,420,218,238,0,3,1,1,0,0,2,2,11,7,5,0,6,6,0,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,12,1100,529,571,364,403,160,163,2,1,1,2,0,0,2,2,522,569,363,403,155,161,2,1,1,2,0,0,1,2,7,2,1,0,5,2,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,2,13,943,444,499,315,327,126,170,1,2,1,0,0,0,1,0,442,494,314,324,126,168,1,2,1,0,0,0,0,0,2,5,1,3,0,2,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,2,14,902,388,514,273,351,114,163,0,0,0,0,0,0,1,0,383,510,271,348,111,162,0,0,0,0,0,0,1,0,5,4,2,3,3,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,15,845,354,491,253,345,100,143,1,0,0,1,0,0,0,2,351,488,250,344,100,141,1,0,0,1,0,0,0,2,3,3,3,1,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,16,658,242,416,188,291,54,125,0,0,0,0,0,0,0,0,241,411,187,289,54,122,0,0,0,0,0,0,0,0,1,5,1,2,0,3,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,17,567,196,371,147,274,47,95,1,1,0,0,0,0,1,1,194,370,145,273,47,95,1,1,0,0,0,0,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,18,529,142,387,93,274,48,111,1,0,0,0,0,0,0,2,142,384,93,273,48,109,1,0,0,0,0,0,0,2,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,99,21325,9992,11333,5952,6489,3968,4760,21,24,19,19,0,0,32,41,9918,11264,5912,6457,3938,4728,21,23,19,18,0,0,28,38,74,69,40,32,30,32,0,1,0,1,0,0,4,3 -050,01,013,Alabama,Butler County,3,0,283,145,138,64,70,78,68,0,0,1,0,0,0,2,0,145,136,64,70,78,66,0,0,1,0,0,0,2,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,1,1042,528,514,248,255,269,251,2,2,3,0,0,0,6,6,520,510,241,253,269,249,2,2,3,0,0,0,5,6,8,4,7,2,0,2,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,3,2,1471,775,696,375,320,387,368,1,0,4,4,0,0,8,4,764,692,365,318,387,368,1,0,4,3,0,0,7,3,11,4,10,2,0,0,0,0,0,1,0,0,1,1 -050,01,013,Alabama,Butler County,3,3,1627,830,797,385,371,437,420,0,1,3,0,0,0,5,5,827,795,384,370,435,419,0,1,3,0,0,0,5,5,3,2,1,1,2,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,4,1741,866,875,440,423,422,448,2,0,0,0,0,0,2,4,862,870,438,422,420,444,2,0,0,0,0,0,2,4,4,5,2,1,2,4,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,5,1271,589,682,287,323,301,356,0,0,1,0,0,0,0,3,582,677,284,319,297,356,0,0,1,0,0,0,0,2,7,5,3,4,4,0,0,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,3,6,1068,503,565,301,283,199,275,2,3,0,3,0,0,1,1,497,562,296,280,198,275,2,3,0,3,0,0,1,1,6,3,5,3,1,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,7,1174,554,620,358,315,192,298,3,2,0,3,0,0,1,2,548,619,355,315,189,297,3,2,0,3,0,0,1,2,6,1,3,0,3,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,8,1361,625,736,389,410,228,311,2,2,6,7,0,0,0,6,625,730,389,405,228,310,2,2,6,7,0,0,0,6,0,6,0,5,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,9,1542,731,811,460,464,265,343,3,3,2,1,0,0,1,0,724,809,456,464,262,341,3,3,2,1,0,0,1,0,7,2,4,0,3,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,10,1571,746,825,454,462,289,357,0,3,1,1,0,0,2,2,744,819,453,458,288,355,0,3,1,1,0,0,2,2,2,6,1,4,1,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,11,1388,694,694,460,430,230,258,1,3,1,1,0,0,2,2,682,689,455,430,223,253,1,3,1,1,0,0,2,2,12,5,5,0,7,5,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,12,1138,550,588,385,414,162,169,2,1,1,2,0,0,0,2,545,586,384,414,158,167,2,1,1,2,0,0,0,2,5,2,1,0,4,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,13,955,448,507,304,338,141,167,1,2,1,0,0,0,1,0,446,502,303,335,141,165,1,2,1,0,0,0,0,0,2,5,1,3,0,2,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,3,14,889,384,505,281,355,102,150,0,0,0,0,0,0,1,0,379,501,279,352,99,149,0,0,0,0,0,0,1,0,5,4,2,3,3,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,15,839,362,477,257,326,104,148,1,0,0,1,0,0,0,2,359,474,254,325,104,146,1,0,0,1,0,0,0,2,3,3,3,1,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,16,694,256,438,186,308,70,130,0,0,0,0,0,0,0,0,255,434,185,306,70,128,0,0,0,0,0,0,0,0,1,4,1,2,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,17,555,193,362,149,270,42,91,1,0,0,0,0,0,1,1,191,361,147,269,42,91,1,0,0,0,0,0,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,18,530,134,396,91,282,42,112,1,0,0,0,0,0,0,2,134,393,91,281,42,110,1,0,0,0,0,0,0,2,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,99,21139,9913,11226,5874,6419,3960,4720,22,22,24,23,0,0,33,42,9829,11159,5823,6386,3930,4689,22,22,24,22,0,0,30,40,84,67,51,33,30,31,0,0,0,1,0,0,3,2 -050,01,013,Alabama,Butler County,4,0,263,142,121,59,56,80,65,0,0,1,0,0,0,2,0,142,119,59,56,80,63,0,0,1,0,0,0,2,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,1,1039,517,522,229,255,276,255,2,3,3,2,0,0,7,7,511,519,224,253,276,254,2,3,3,2,0,0,6,7,6,3,5,2,0,1,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,4,2,1375,708,667,343,305,350,352,1,1,5,5,0,0,9,4,699,661,335,300,350,352,1,1,5,5,0,0,8,3,9,6,8,5,0,0,0,0,0,0,0,0,1,1 -050,01,013,Alabama,Butler County,4,3,1665,853,812,399,386,446,417,0,2,3,1,0,0,5,6,850,809,398,385,444,416,0,2,3,1,0,0,5,5,3,3,1,1,2,1,0,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,4,4,1632,802,830,414,401,383,425,2,0,0,0,0,0,3,4,798,826,412,400,381,422,2,0,0,0,0,0,3,4,4,4,2,1,2,3,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,5,1283,609,674,297,310,311,361,0,0,1,0,0,0,0,3,601,670,293,307,307,361,0,0,1,0,0,0,0,2,8,4,4,3,4,0,0,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,4,6,1031,492,539,271,250,219,281,1,3,0,4,0,0,1,1,485,536,265,247,218,281,1,3,0,4,0,0,1,1,7,3,6,3,1,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,7,1145,542,603,352,310,186,286,3,2,0,3,0,0,1,2,536,602,349,310,183,285,3,2,0,3,0,0,1,2,6,1,3,0,3,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,8,1265,574,691,364,380,200,295,2,2,8,8,0,0,0,6,574,685,364,375,200,294,2,2,8,8,0,0,0,6,0,6,0,5,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,9,1473,703,770,443,432,254,333,3,3,2,1,0,1,1,0,696,768,439,432,251,331,3,3,2,1,0,1,1,0,7,2,4,0,3,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,10,1577,733,844,445,488,285,350,0,3,1,1,0,0,2,2,731,838,444,484,284,348,0,3,1,1,0,0,2,2,2,6,1,4,1,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,11,1478,747,731,487,427,255,297,1,3,2,2,0,0,2,2,735,725,481,427,249,291,1,3,2,2,0,0,2,2,12,6,6,0,6,6,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,12,1179,565,614,405,440,156,169,2,1,1,2,0,0,1,2,560,611,404,440,152,166,2,1,1,2,0,0,1,2,5,3,1,0,4,3,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,13,988,463,525,314,342,146,181,1,2,1,0,0,0,1,0,461,520,313,339,146,179,1,2,1,0,0,0,0,0,2,5,1,3,0,2,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,4,14,885,410,475,290,355,118,119,0,0,0,0,0,0,2,1,405,471,288,352,116,118,0,0,0,0,0,0,1,1,5,4,2,3,2,1,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,4,15,810,341,469,239,306,101,160,1,0,0,1,0,0,0,2,338,466,236,305,101,158,1,0,0,1,0,0,0,2,3,3,3,1,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,16,704,267,437,194,304,73,133,0,0,0,0,0,0,0,0,266,432,193,301,73,131,0,0,0,0,0,0,0,0,1,5,1,3,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,17,511,186,325,146,246,38,77,1,1,0,0,0,0,1,1,184,324,144,245,38,77,1,1,0,0,0,0,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,18,500,127,373,87,263,39,108,1,0,0,0,0,0,0,2,127,371,87,262,39,107,1,0,0,0,0,0,0,2,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,99,20803,9781,11022,5778,6256,3916,4664,21,26,28,30,0,1,38,45,9699,10953,5728,6220,3888,4634,21,26,28,30,0,1,34,42,82,69,50,36,28,30,0,0,0,0,0,0,4,3 -050,01,013,Alabama,Butler County,5,0,264,150,114,72,53,74,61,0,0,1,0,1,0,2,0,150,113,72,53,74,60,0,0,1,0,1,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,1,1090,561,529,260,255,288,262,2,3,3,2,0,0,8,7,554,525,255,253,287,260,2,3,3,2,0,0,7,7,7,4,5,2,1,2,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,5,2,1354,692,662,313,302,363,349,1,1,6,6,0,0,9,4,682,657,304,299,363,349,1,1,6,5,0,0,8,3,10,5,9,3,0,0,0,0,0,1,0,0,1,1 -050,01,013,Alabama,Butler County,5,3,1630,816,814,380,377,428,427,0,2,3,2,0,0,5,6,813,810,379,374,426,426,0,2,3,2,0,0,5,6,3,4,1,3,2,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,4,1557,776,781,399,360,370,415,2,0,1,2,0,0,4,4,770,777,395,359,368,412,2,0,1,2,0,0,4,4,6,4,4,1,2,3,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,5,1312,625,687,312,317,310,366,0,1,1,0,0,0,2,3,618,683,308,314,307,366,0,1,1,0,0,0,2,2,7,4,4,3,3,0,0,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,5,6,1046,468,578,242,271,222,300,1,3,2,3,0,0,1,1,461,575,236,268,221,300,1,3,2,3,0,0,1,1,7,3,6,3,1,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,7,1164,556,608,357,305,193,291,3,2,2,8,0,0,1,2,550,606,354,304,190,290,3,2,2,8,0,0,1,2,6,2,3,1,3,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,8,1198,563,635,358,348,194,272,2,2,9,8,0,0,0,5,563,630,358,344,194,271,2,2,9,8,0,0,0,5,0,5,0,4,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,9,1449,672,777,403,433,261,339,3,3,4,1,0,1,1,0,666,773,400,431,258,337,3,3,4,1,0,1,1,0,6,4,3,2,3,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,10,1610,769,841,481,487,283,347,0,2,3,2,0,0,2,3,767,835,480,483,282,345,0,2,3,2,0,0,2,3,2,6,1,4,1,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,11,1473,715,758,446,434,263,314,1,5,3,2,0,0,2,3,706,751,442,434,258,308,1,4,3,2,0,0,2,3,9,7,4,0,5,6,0,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,12,1206,600,606,427,427,170,174,2,1,1,2,0,0,0,2,594,604,426,427,165,172,2,1,1,2,0,0,0,2,6,2,1,0,5,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,13,1031,479,552,328,366,148,184,1,2,1,0,0,0,1,0,476,549,327,364,147,183,1,2,1,0,0,0,0,0,3,3,1,2,1,1,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,5,14,871,412,459,287,335,122,123,0,0,1,0,0,0,2,1,407,455,285,332,120,122,0,0,1,0,0,0,1,1,5,4,2,3,2,1,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,5,15,821,336,485,237,327,98,154,1,0,0,1,0,0,0,3,333,482,234,326,98,152,1,0,0,1,0,0,0,3,3,3,3,1,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,16,732,279,453,199,311,80,142,0,0,0,0,0,0,0,0,278,448,198,308,80,140,0,0,0,0,0,0,0,0,1,5,1,3,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,17,525,187,338,149,252,37,84,0,1,0,0,0,0,1,1,185,336,147,250,37,84,0,1,0,0,0,0,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,18,500,133,367,89,257,43,108,1,0,0,0,0,0,0,2,133,365,89,256,43,107,1,0,0,0,0,0,0,2,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,99,20833,9789,11044,5739,6217,3947,4712,20,28,41,39,1,1,41,47,9706,10974,5689,6179,3918,4684,20,27,41,38,1,1,37,45,83,70,50,38,29,28,0,1,0,1,0,0,4,2 -050,01,013,Alabama,Butler County,6,0,265,159,106,76,52,80,54,0,0,1,0,0,0,2,0,159,105,76,52,80,53,0,0,1,0,0,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,1,1114,587,527,278,258,296,256,3,3,3,2,1,0,6,8,579,523,272,256,295,254,3,3,3,2,1,0,5,8,8,4,6,2,1,2,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,6,2,1354,687,667,302,300,368,354,1,1,6,6,0,0,10,6,681,663,297,297,368,354,1,1,6,6,0,0,9,5,6,4,5,3,0,0,0,0,0,0,0,0,1,1 -050,01,013,Alabama,Butler County,6,3,1568,809,759,379,351,419,397,0,2,5,2,0,0,6,7,806,755,378,349,417,396,0,2,5,2,0,0,6,6,3,4,1,2,2,1,0,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,6,4,1570,773,797,385,360,381,431,2,0,1,2,0,0,4,4,767,793,381,359,379,428,2,0,1,2,0,0,4,4,6,4,4,1,2,3,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,5,1339,621,718,320,335,298,378,0,2,1,0,0,0,2,3,614,712,315,331,296,377,0,2,1,0,0,0,2,2,7,6,5,4,2,1,0,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,6,6,1053,487,566,252,248,231,309,1,3,2,4,0,0,1,2,478,562,244,245,230,308,1,3,2,4,0,0,1,2,9,4,8,3,1,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,7,1165,540,625,364,314,170,297,3,2,2,8,0,1,1,3,534,623,361,313,167,296,3,2,2,8,0,1,1,3,6,2,3,1,3,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,8,1174,541,633,329,333,199,285,2,1,11,9,0,0,0,5,541,628,329,329,199,284,2,1,11,9,0,0,0,5,0,5,0,4,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,9,1445,655,790,408,450,239,334,3,3,4,1,0,1,1,1,648,787,405,448,235,333,3,3,4,1,0,1,1,1,7,3,3,2,4,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,10,1563,763,800,460,465,298,329,0,2,3,2,0,0,2,2,760,794,459,461,296,327,0,2,3,2,0,0,2,2,3,6,1,4,2,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,11,1524,731,793,462,441,262,343,2,4,3,2,0,0,2,3,722,787,458,441,257,337,2,4,3,2,0,0,2,3,9,6,4,0,5,6,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,12,1250,619,631,421,439,191,186,3,1,1,2,0,0,3,3,613,628,420,439,187,183,3,1,1,2,0,0,2,3,6,3,1,0,4,3,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,6,13,1057,496,561,334,363,159,195,1,2,1,0,0,0,1,1,492,557,333,361,157,193,1,2,1,0,0,0,0,1,4,4,1,2,2,2,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,6,14,883,424,459,297,332,125,126,0,0,1,0,0,0,1,1,421,454,295,328,124,125,0,0,1,0,0,0,1,1,3,5,2,4,1,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,15,818,344,474,242,317,102,153,0,0,0,1,0,0,0,3,341,471,239,316,102,151,0,0,0,1,0,0,0,3,3,3,3,1,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,16,723,255,468,181,318,74,150,0,0,0,0,0,0,0,0,253,463,179,315,74,148,0,0,0,0,0,0,0,0,2,5,2,3,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,17,478,169,309,136,229,31,79,1,1,0,0,0,0,1,0,167,307,134,227,31,79,1,1,0,0,0,0,1,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,18,527,154,373,107,261,46,110,1,0,0,0,0,0,0,2,154,371,107,260,46,109,1,0,0,0,0,0,0,2,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,99,20870,9814,11056,5733,6166,3969,4766,23,27,45,41,1,2,43,54,9730,10983,5682,6127,3940,4735,23,27,45,41,1,2,39,51,84,73,51,39,29,31,0,0,0,0,0,0,4,3 -050,01,013,Alabama,Butler County,7,0,241,132,109,62,52,66,56,0,0,1,0,2,0,1,1,130,108,61,52,66,55,0,0,1,0,1,0,1,1,2,1,1,0,0,1,0,0,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,7,1,1110,606,504,295,253,299,234,1,2,4,5,1,1,6,9,595,499,287,250,296,232,1,2,4,5,1,1,6,9,11,5,8,3,3,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,2,1358,689,669,285,315,386,340,2,1,8,6,0,1,8,6,681,658,279,305,386,339,2,1,6,6,0,1,8,6,8,11,6,10,0,1,0,0,2,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,3,1532,786,746,386,345,384,392,2,2,7,3,0,0,7,4,782,743,384,342,383,392,2,2,7,3,0,0,6,4,4,3,2,3,1,0,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,7,4,1525,775,750,365,349,402,397,1,0,3,3,0,0,4,1,766,746,358,347,400,395,1,0,3,3,0,0,4,1,9,4,7,2,2,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,5,1328,639,689,330,323,302,358,0,4,4,3,0,0,3,1,631,681,325,318,300,355,0,4,4,3,0,0,2,1,8,8,5,5,2,3,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,7,6,1140,513,627,258,287,251,331,1,2,3,6,0,0,0,1,507,620,254,282,250,330,1,2,2,5,0,0,0,1,6,7,4,5,1,1,0,0,1,1,0,0,0,0 -050,01,013,Alabama,Butler County,7,7,1143,519,624,342,313,172,294,3,4,2,8,0,1,0,4,511,621,338,311,169,294,2,4,2,8,0,1,0,3,8,3,4,2,3,0,1,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,7,8,1173,539,634,327,343,198,279,2,1,12,10,0,0,0,1,536,627,325,337,198,278,2,1,11,10,0,0,0,1,3,7,2,6,0,1,0,0,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,9,1422,634,788,388,422,239,356,1,3,6,4,0,1,0,2,627,786,385,420,236,356,1,3,5,4,0,1,0,2,7,2,3,2,3,0,0,0,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,10,1532,731,801,455,450,270,339,3,2,3,4,0,0,0,6,728,794,452,446,270,337,3,2,3,4,0,0,0,5,3,7,3,4,0,2,0,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,7,11,1554,770,784,481,456,279,320,3,2,6,4,0,0,1,2,760,778,477,456,273,314,3,2,6,4,0,0,1,2,10,6,4,0,6,6,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,12,1318,633,685,429,443,198,237,4,3,1,0,0,0,1,2,630,682,428,442,196,235,4,3,1,0,0,0,1,2,3,3,1,1,2,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,13,1057,512,545,343,382,165,161,0,1,1,0,0,0,3,1,510,542,343,380,163,160,0,1,1,0,0,0,3,1,2,3,0,2,2,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,14,871,406,465,286,320,118,141,0,0,1,2,0,0,1,2,404,463,285,318,117,141,0,0,1,2,0,0,1,2,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,15,820,347,473,234,317,111,151,1,1,0,1,0,0,1,3,346,471,233,317,111,149,1,1,0,1,0,0,1,3,1,2,1,0,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,16,715,262,453,182,305,76,147,1,1,0,0,0,0,3,0,261,450,181,303,76,146,1,1,0,0,0,0,3,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,17,474,154,320,120,242,34,77,0,0,0,0,0,0,0,1,153,319,119,241,34,77,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,18,517,154,363,112,246,42,116,0,0,0,0,0,0,0,1,154,362,112,246,42,115,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,99,20830,9801,11029,5680,6163,3992,4726,25,29,62,59,3,4,39,48,9712,10950,5626,6113,3966,4700,24,29,57,58,2,4,37,46,89,79,54,50,26,26,1,0,5,1,1,0,2,2 -050,01,013,Alabama,Butler County,8,0,270,151,119,74,63,73,54,0,1,1,0,2,0,1,1,149,118,73,63,73,53,0,1,1,0,1,0,1,1,2,1,1,0,0,1,0,0,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,8,1,1085,595,490,278,242,300,232,1,2,5,6,1,1,10,7,586,482,274,239,296,228,1,2,4,5,1,1,10,7,9,8,4,3,4,4,0,0,1,1,0,0,0,0 -050,01,013,Alabama,Butler County,8,2,1329,666,663,275,309,370,339,2,2,9,7,0,0,10,6,655,650,267,298,369,338,2,1,7,7,0,0,10,6,11,13,8,11,1,1,0,1,2,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,3,1510,787,723,383,312,385,397,3,3,8,4,0,0,8,7,783,719,381,309,384,397,3,3,8,4,0,0,7,6,4,4,2,3,1,0,0,0,0,0,0,0,1,1 -050,01,013,Alabama,Butler County,8,4,1499,769,730,344,332,416,393,1,0,3,3,0,0,5,2,761,726,339,330,413,391,1,0,3,3,0,0,5,2,8,4,5,2,3,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,5,1297,618,679,306,312,305,359,0,4,4,3,0,0,3,1,610,670,302,307,302,355,0,4,4,3,0,0,2,1,8,9,4,5,3,4,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,8,6,1221,545,676,270,321,270,347,2,2,3,6,0,0,0,0,536,668,263,316,269,345,2,2,2,5,0,0,0,0,9,8,7,5,1,2,0,0,1,1,0,0,0,0 -050,01,013,Alabama,Butler County,8,7,1090,493,597,310,289,179,291,2,3,2,8,0,1,0,5,485,594,306,287,176,291,1,3,2,8,0,1,0,4,8,3,4,2,3,0,1,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,8,8,1175,556,619,339,321,199,283,2,1,14,11,0,0,2,3,553,613,337,316,199,282,2,1,13,11,0,0,2,3,3,6,2,5,0,1,0,0,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,9,1347,597,750,370,386,220,353,0,2,7,4,0,2,0,3,590,748,367,384,217,353,0,2,6,4,0,2,0,3,7,2,3,2,3,0,0,0,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,10,1531,720,811,440,460,273,339,4,2,2,4,0,0,1,6,714,803,436,455,271,337,4,2,2,4,0,0,1,5,6,8,4,5,2,2,0,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,8,11,1596,780,816,483,467,283,340,4,2,6,4,0,0,4,3,770,811,479,467,277,335,4,2,6,4,0,0,4,3,10,5,4,0,6,5,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,12,1358,658,700,434,450,217,244,4,4,1,0,0,0,2,2,655,697,433,449,215,242,4,4,1,0,0,0,2,2,3,3,1,1,2,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,13,1106,542,564,369,389,165,173,0,0,3,1,0,0,5,1,540,562,369,388,164,172,0,0,3,1,0,0,4,1,2,2,0,1,1,1,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,8,14,905,423,482,280,320,138,155,1,1,1,2,0,0,3,4,419,481,279,319,136,155,1,1,1,2,0,0,2,4,4,1,1,1,2,0,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,8,15,789,333,456,237,322,92,129,0,2,1,1,0,0,3,2,332,456,236,322,92,129,0,2,1,1,0,0,3,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,16,709,264,445,173,297,87,146,0,1,1,0,0,0,3,1,262,444,171,296,87,146,0,1,1,0,0,0,3,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,17,492,165,327,125,235,40,92,0,0,0,0,0,0,0,0,165,326,125,234,40,92,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,18,506,140,366,99,249,41,116,0,0,0,0,0,0,0,1,140,365,99,249,41,115,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,99,20815,9802,11013,5589,6076,4053,4782,26,32,71,64,3,4,60,55,9705,10933,5536,6028,4021,4756,25,31,65,62,2,4,56,52,97,80,53,48,32,26,1,1,6,2,1,0,4,3 -050,01,013,Alabama,Butler County,9,0,282,142,140,74,72,64,66,0,1,1,0,2,0,1,1,140,139,73,72,64,65,0,1,1,0,1,0,1,1,2,1,1,0,0,1,0,0,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,9,1,1078,587,491,275,245,293,227,1,3,4,5,1,1,13,10,575,482,269,242,288,223,1,2,3,4,1,1,13,10,12,9,6,3,5,4,0,1,1,1,0,0,0,0 -050,01,013,Alabama,Butler County,9,2,1343,672,671,271,304,381,349,2,3,8,7,0,0,10,8,661,663,263,298,380,348,2,2,6,7,0,0,10,8,11,8,8,6,1,1,0,1,2,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,3,1459,784,675,380,296,384,365,3,3,10,4,0,0,7,7,780,670,378,292,383,365,3,3,10,4,0,0,6,6,4,5,2,4,1,0,0,0,0,0,0,0,1,1 -050,01,013,Alabama,Butler County,9,4,1527,786,741,335,342,442,394,1,0,3,3,0,0,5,2,779,737,330,340,440,392,1,0,3,3,0,0,5,2,7,4,5,2,2,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,5,1263,583,680,288,317,288,354,0,5,4,3,0,0,3,1,576,670,284,311,286,350,0,5,4,3,0,0,2,1,7,10,4,6,2,4,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,9,6,1256,578,678,282,301,292,367,1,2,3,7,0,0,0,1,568,670,274,296,291,365,1,2,2,6,0,0,0,1,10,8,8,5,1,2,0,0,1,1,0,0,0,0 -050,01,013,Alabama,Butler County,9,7,1122,510,612,292,290,214,305,2,3,2,8,0,1,0,5,502,609,288,288,211,305,1,3,2,8,0,1,0,4,8,3,4,2,3,0,1,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,9,8,1183,553,630,344,328,191,288,2,0,14,11,0,0,2,3,550,623,342,322,191,287,2,0,13,11,0,0,2,3,3,7,2,6,0,1,0,0,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,9,1291,572,719,362,377,203,332,0,2,7,4,0,1,0,3,565,716,359,374,200,332,0,2,6,4,0,1,0,3,7,3,3,3,3,0,0,0,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,10,1476,688,788,417,441,263,335,4,2,3,4,0,0,1,6,682,780,413,436,261,333,4,2,3,4,0,0,1,5,6,8,4,5,2,2,0,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,9,11,1609,781,828,486,476,281,343,4,2,6,4,0,0,4,3,771,823,482,476,275,338,4,2,6,4,0,0,4,3,10,5,4,0,6,5,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,12,1434,692,742,442,448,243,289,4,3,1,0,0,0,2,2,689,739,441,447,241,287,4,3,1,0,0,0,2,2,3,3,1,1,2,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,13,1165,571,594,391,415,172,177,0,0,3,1,0,0,5,1,570,592,391,414,171,176,0,0,3,1,0,0,5,1,1,2,0,1,1,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,14,910,435,475,282,312,146,156,1,1,2,2,0,0,4,4,432,473,281,310,146,156,1,1,2,2,0,0,2,4,3,2,1,2,0,0,0,0,0,0,0,0,2,0 -050,01,013,Alabama,Butler County,9,15,831,376,455,254,329,117,120,0,1,1,1,0,0,4,4,375,455,253,329,117,120,0,1,1,1,0,0,4,4,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,16,665,236,429,154,279,77,148,1,1,1,0,0,0,3,1,234,427,152,278,77,147,1,1,1,0,0,0,3,1,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,17,513,170,343,130,250,40,93,0,0,0,0,0,0,0,0,170,342,130,249,40,93,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,18,487,138,349,101,243,37,105,0,0,0,0,0,0,0,1,138,348,101,243,37,104,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,99,20894,9854,11040,5560,6065,4128,4813,26,32,73,64,3,3,64,63,9757,10958,5504,6017,4099,4786,25,30,67,62,2,3,60,60,97,82,56,48,29,27,1,2,6,2,1,0,4,3 -050,01,013,Alabama,Butler County,10,0,303,167,136,91,66,73,68,0,1,1,0,1,0,1,1,165,135,90,66,73,67,0,1,1,0,0,0,1,1,2,1,1,0,0,1,0,0,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,10,1,1042,551,491,271,265,264,209,1,3,5,4,1,1,9,9,542,482,268,262,259,205,1,2,4,3,1,1,9,9,9,9,3,3,5,4,0,1,1,1,0,0,0,0 -050,01,013,Alabama,Butler County,10,2,1345,674,671,271,288,378,360,2,3,10,8,0,0,13,12,666,662,267,281,377,359,2,2,8,8,0,0,12,12,8,9,4,7,1,1,0,1,2,0,0,0,1,0 -050,01,013,Alabama,Butler County,10,3,1481,769,712,354,297,394,398,3,4,10,6,0,0,8,7,765,707,352,293,393,398,3,4,10,6,0,0,7,6,4,5,2,4,1,0,0,0,0,0,0,0,1,1 -050,01,013,Alabama,Butler County,10,4,1468,782,686,336,316,436,363,1,0,4,5,0,0,5,2,774,683,330,314,434,362,1,0,4,5,0,0,5,2,8,3,6,2,2,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,10,5,1211,540,671,271,297,261,365,0,5,4,3,0,0,4,1,530,662,265,292,258,361,0,5,4,3,0,0,3,1,10,9,6,5,3,4,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,10,6,1318,615,703,306,313,303,381,1,2,5,6,0,0,0,1,603,695,296,308,302,379,1,2,4,5,0,0,0,1,12,8,10,5,1,2,0,0,1,1,0,0,0,0 -050,01,013,Alabama,Butler County,10,7,1151,505,646,279,299,220,326,2,3,4,13,0,0,0,5,496,642,275,296,216,326,1,3,4,13,0,0,0,4,9,4,4,3,4,0,1,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,10,8,1183,550,633,344,327,187,291,2,0,15,12,0,0,2,3,547,626,342,321,187,290,2,0,14,12,0,0,2,3,3,7,2,6,0,1,0,0,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,10,9,1245,561,684,334,346,219,328,0,2,8,4,0,1,0,3,555,680,332,342,216,328,0,2,7,4,0,1,0,3,6,4,2,4,3,0,0,0,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,10,10,1461,668,793,394,438,265,343,4,1,4,5,0,0,1,6,662,785,390,433,263,341,4,1,4,5,0,0,1,5,6,8,4,5,2,2,0,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,10,11,1619,802,817,511,468,276,339,4,2,7,4,0,0,4,4,795,812,509,468,271,334,4,2,7,4,0,0,4,4,7,5,2,0,5,5,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,10,12,1473,681,792,408,450,266,336,4,4,1,0,0,0,2,2,679,789,407,449,265,334,4,4,1,0,0,0,2,2,2,3,1,1,1,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,10,13,1235,612,623,428,421,176,200,0,0,3,1,0,0,5,1,610,622,428,421,174,199,0,0,3,1,0,0,5,1,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,10,14,950,442,508,289,329,147,172,1,1,2,2,0,0,3,4,439,506,288,327,146,172,1,1,2,2,0,0,2,4,3,2,1,2,1,0,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,10,15,793,339,454,229,297,105,150,0,2,1,1,0,0,4,4,338,453,228,297,105,149,0,2,1,1,0,0,4,4,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,10,16,677,243,434,158,287,80,145,1,1,1,0,0,0,3,1,241,432,156,285,80,145,1,1,1,0,0,0,3,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,10,17,494,166,328,119,238,47,90,0,0,0,0,0,0,0,0,166,327,119,237,47,90,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,10,18,500,147,353,100,242,47,110,0,0,0,0,0,0,0,1,147,353,100,242,47,110,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,10,99,20949,9814,11135,5493,5984,4144,4974,26,34,85,74,2,2,64,67,9720,11053,5442,5934,4113,4949,25,32,79,72,1,2,60,64,94,82,51,50,31,25,1,2,6,2,1,0,4,3 -050,01,013,Alabama,Butler County,11,0,260,144,116,68,47,72,67,0,1,1,0,2,0,1,1,142,115,67,47,72,66,0,1,1,0,1,0,1,1,2,1,1,0,0,1,0,0,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,11,1,1096,569,527,294,259,257,248,1,4,6,5,1,1,10,10,557,517,288,256,252,243,1,3,5,4,1,1,10,10,12,10,6,3,5,5,0,1,1,1,0,0,0,0 -050,01,013,Alabama,Butler County,11,2,1350,709,641,289,291,391,326,2,3,12,10,0,0,15,11,699,632,283,284,390,325,2,2,10,10,0,0,14,11,10,9,6,7,1,1,0,1,2,0,0,0,1,0 -050,01,013,Alabama,Butler County,11,3,1489,757,732,353,313,381,401,3,4,12,6,0,0,8,8,753,728,351,310,380,401,3,4,12,6,0,0,7,7,4,4,2,3,1,0,0,0,0,0,0,0,1,1 -050,01,013,Alabama,Butler County,11,4,1392,742,650,328,293,402,350,1,0,4,5,0,0,7,2,732,647,320,291,400,349,1,0,4,5,0,0,7,2,10,3,8,2,2,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,5,1177,521,656,249,296,264,351,0,5,4,3,0,0,4,1,511,646,242,290,262,347,0,5,4,3,0,0,3,1,10,10,7,6,2,4,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,11,6,1295,574,721,287,326,281,385,1,2,5,7,0,0,0,1,564,713,279,321,280,383,1,2,4,6,0,0,0,1,10,8,8,5,1,2,0,0,1,1,0,0,0,0 -050,01,013,Alabama,Butler County,11,7,1195,550,645,310,275,234,349,2,3,4,13,0,0,0,5,542,641,306,272,231,349,1,3,4,13,0,0,0,4,8,4,4,3,3,0,1,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,11,8,1182,542,640,330,339,190,285,2,0,18,13,0,0,2,3,539,634,328,334,190,284,2,0,17,13,0,0,2,3,3,6,2,5,0,1,0,0,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,9,1194,549,645,322,319,218,315,0,2,9,4,0,2,0,3,543,641,320,315,215,315,0,2,8,4,0,2,0,3,6,4,2,4,3,0,0,0,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,10,1457,661,796,403,443,249,340,4,1,4,7,0,0,1,5,655,788,399,438,247,338,4,1,4,7,0,0,1,4,6,8,4,5,2,2,0,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,11,11,1602,792,810,491,464,285,334,4,3,8,5,0,0,4,4,783,805,488,464,279,329,4,3,8,5,0,0,4,4,9,5,3,0,6,5,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,12,1503,695,808,433,442,255,360,4,4,1,0,0,0,2,2,693,805,432,441,254,358,4,4,1,0,0,0,2,2,2,3,1,1,1,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,13,1218,602,616,408,413,186,201,0,0,3,1,0,0,5,1,601,615,408,413,185,200,0,0,3,1,0,0,5,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,14,961,459,502,312,334,141,160,1,1,2,2,0,0,3,5,456,500,311,332,140,160,1,1,2,2,0,0,2,5,3,2,1,2,1,0,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,11,15,827,350,477,230,314,115,156,0,2,1,1,0,0,4,4,349,476,229,314,115,155,0,2,1,1,0,0,4,4,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,16,674,254,420,172,282,77,136,1,1,1,0,0,0,3,1,252,418,170,280,77,136,1,1,1,0,0,0,3,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,17,488,149,339,114,242,35,97,0,0,0,0,0,0,0,0,149,338,114,241,35,97,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,18,507,138,369,97,249,41,119,0,0,0,0,0,0,0,1,138,369,97,249,41,119,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,99,20867,9757,11110,5490,5941,4074,4980,26,36,95,82,3,3,69,68,9658,11028,5432,5892,4045,4954,25,34,89,80,2,3,65,65,99,82,58,49,29,26,1,2,6,2,1,0,4,3 -050,01,013,Alabama,Butler County,12,0,257,136,121,62,51,70,68,0,1,1,0,2,0,1,1,134,120,61,51,70,67,0,1,1,0,1,0,1,1,2,1,1,0,0,1,0,0,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,12,1,1115,578,537,290,264,267,251,1,4,6,7,1,1,13,10,566,527,284,261,262,246,1,3,5,6,1,1,13,10,12,10,6,3,5,5,0,1,1,1,0,0,0,0 -050,01,013,Alabama,Butler County,12,2,1351,726,625,296,279,401,321,2,3,12,10,0,1,15,11,716,616,290,272,400,320,2,2,10,10,0,1,14,11,10,9,6,7,1,1,0,1,2,0,0,0,1,0 -050,01,013,Alabama,Butler County,12,3,1465,750,715,335,319,392,378,3,4,12,6,0,0,8,8,746,709,333,314,391,378,3,4,12,6,0,0,7,7,4,6,2,5,1,0,0,0,0,0,0,0,1,1 -050,01,013,Alabama,Butler County,12,4,1391,744,647,343,277,389,363,1,0,4,5,0,0,7,2,733,644,335,275,386,362,1,0,4,5,0,0,7,2,11,3,8,2,3,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,5,1170,534,636,251,288,275,339,0,5,4,3,0,0,4,1,523,626,243,282,273,335,0,5,4,3,0,0,3,1,11,10,8,6,2,4,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,12,6,1283,578,705,282,321,290,373,1,2,5,8,0,0,0,1,566,697,272,316,289,371,1,2,4,7,0,0,0,1,12,8,10,5,1,2,0,0,1,1,0,0,0,0 -050,01,013,Alabama,Butler County,12,7,1244,574,670,321,288,247,360,2,3,4,13,0,1,0,5,565,666,317,285,243,360,1,3,4,13,0,1,0,4,9,4,4,3,4,0,1,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,12,8,1162,541,621,322,328,196,277,2,0,19,13,0,0,2,3,538,615,320,323,196,276,2,0,18,13,0,0,2,3,3,6,2,5,0,1,0,0,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,9,1215,550,665,324,334,217,320,0,2,9,4,0,2,0,3,544,661,322,330,214,320,0,2,8,4,0,2,0,3,6,4,2,4,3,0,0,0,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,10,1428,638,790,382,429,247,346,4,1,4,8,0,0,1,6,632,782,378,424,245,344,4,1,4,8,0,0,1,5,6,8,4,5,2,2,0,0,0,0,0,0,0,1 -050,01,013,Alabama,Butler County,12,11,1552,763,789,480,443,266,334,5,3,8,5,0,0,4,4,754,784,477,443,260,329,5,3,8,5,0,0,4,4,9,5,3,0,6,5,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,12,1531,714,817,440,462,267,349,4,4,1,0,0,0,2,2,712,814,439,461,266,347,4,4,1,0,0,0,2,2,2,3,1,1,1,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,13,1294,628,666,414,416,206,248,0,0,3,1,0,0,5,1,626,665,414,416,204,247,0,0,3,1,0,0,5,1,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,14,1004,492,512,337,348,148,156,1,1,2,2,0,0,4,5,488,510,336,346,147,156,1,1,2,2,0,0,2,5,4,2,1,2,1,0,0,0,0,0,0,0,2,0 -050,01,013,Alabama,Butler County,12,15,825,347,478,234,311,108,160,0,2,1,1,0,0,4,4,346,477,233,311,108,159,0,2,1,1,0,0,4,4,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,16,660,253,407,171,285,77,120,1,1,1,0,0,0,3,1,251,405,169,283,77,120,1,1,1,0,0,0,3,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,17,488,155,333,119,245,36,88,0,0,0,0,0,0,0,0,155,331,119,243,36,88,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,18,512,137,375,95,256,42,118,0,0,0,0,0,0,0,1,137,375,95,256,42,118,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,99,20947,9838,11109,5498,5944,4141,4969,27,36,96,86,3,5,73,69,9732,11024,5437,5892,4109,4943,26,34,90,84,2,5,68,66,106,85,61,52,32,26,1,2,6,2,1,0,5,3 -050,01,013,Alabama,Butler County,13,0,252,133,119,62,50,70,67,0,1,0,0,0,0,1,1,132,118,61,50,70,66,0,1,0,0,0,0,1,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,1,1104,570,534,289,264,263,251,1,2,4,6,1,0,12,11,559,526,281,261,261,247,1,1,4,6,0,0,12,11,11,8,8,3,2,4,0,1,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,13,2,1346,728,618,298,277,402,317,3,2,10,9,1,0,14,13,713,610,289,269,399,317,2,2,9,9,0,0,14,13,15,8,9,8,3,0,1,0,1,0,1,0,0,0 -050,01,013,Alabama,Butler County,13,3,1461,747,714,335,317,392,377,3,3,11,7,0,0,6,10,742,708,333,312,390,376,2,3,11,7,0,0,6,10,5,6,2,5,2,1,1,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,4,1391,741,650,341,275,388,360,3,3,2,7,0,0,7,5,730,646,334,272,385,360,2,2,2,7,0,0,7,5,11,4,7,3,3,0,1,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,5,1171,537,634,250,289,279,338,2,3,1,2,0,0,5,2,526,623,242,282,277,335,1,3,1,1,0,0,5,2,11,11,8,7,2,3,1,0,0,1,0,0,0,0 -050,01,013,Alabama,Butler County,13,6,1287,581,706,284,321,290,374,1,2,4,7,1,0,1,2,568,697,273,315,289,371,1,2,4,7,0,0,1,2,13,9,11,6,1,3,0,0,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,13,7,1253,575,678,321,292,249,366,1,3,4,12,0,1,0,4,566,671,317,288,245,363,0,3,4,12,0,1,0,4,9,7,4,4,4,3,1,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,8,1161,538,623,321,325,196,278,0,2,17,14,0,1,4,3,533,614,317,318,195,277,0,2,17,14,0,0,4,3,5,9,4,7,1,1,0,0,0,0,0,1,0,0 -050,01,013,Alabama,Butler County,13,9,1213,552,661,323,332,217,319,2,2,8,4,0,1,2,3,548,656,321,327,215,319,2,2,8,4,0,1,2,3,4,5,2,5,2,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,10,1419,635,784,380,428,245,343,3,2,6,6,0,0,1,5,631,777,376,422,245,342,3,2,6,6,0,0,1,5,4,7,4,6,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,11,1553,759,794,481,445,265,336,3,3,8,5,0,0,2,5,750,789,477,444,260,332,3,3,8,5,0,0,2,5,9,5,4,1,5,4,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,12,1538,718,820,441,464,267,349,4,3,3,2,0,0,3,2,716,816,440,462,266,347,4,3,3,2,0,0,3,2,2,4,1,2,1,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,13,1305,634,671,417,419,210,249,1,1,3,1,0,0,3,1,633,671,417,419,209,249,1,1,3,1,0,0,3,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,14,1008,494,514,339,350,149,157,1,2,1,1,0,0,4,4,491,512,337,348,149,157,1,2,1,1,0,0,3,4,3,2,2,2,0,0,0,0,0,0,0,0,1,0 -050,01,013,Alabama,Butler County,13,15,824,347,477,234,313,108,160,1,2,1,0,0,0,3,2,345,476,232,312,108,160,1,2,1,0,0,0,3,2,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,16,657,250,407,170,286,76,121,1,0,1,0,0,0,2,0,247,403,167,282,76,121,1,0,1,0,0,0,2,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,17,494,157,337,121,249,35,88,0,0,0,0,0,0,1,0,156,333,120,245,35,88,0,0,0,0,0,0,1,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,18,514,138,376,95,256,43,120,0,0,0,0,0,0,0,0,138,376,95,256,43,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,99,20951,9834,11117,5502,5952,4144,4970,30,36,84,83,3,3,71,73,9724,11022,5429,5884,4117,4947,25,34,83,82,0,2,70,73,110,95,73,68,27,23,5,2,1,1,3,1,1,0 -050,01,015,Alabama,Calhoun County,1,0,1321,662,659,494,484,144,156,2,3,6,4,0,0,16,12,637,637,474,464,141,155,1,2,5,4,0,0,16,12,25,22,20,20,3,1,1,1,1,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,1,1,5566,2783,2783,2090,2036,618,681,6,8,11,14,2,0,56,44,2710,2709,2030,1970,608,677,6,8,10,11,2,0,54,43,73,74,60,66,10,4,0,0,1,3,0,0,2,1 -050,01,015,Alabama,Calhoun County,1,2,7378,3736,3642,2717,2637,944,929,15,15,17,14,3,1,40,46,3676,3556,2665,2562,940,922,13,13,16,12,3,1,39,46,60,86,52,75,4,7,2,2,1,2,0,0,1,0 -050,01,015,Alabama,Calhoun County,1,3,7442,3833,3609,2874,2665,879,862,15,16,21,11,4,5,40,50,3780,3553,2832,2616,872,857,14,16,21,10,3,5,38,49,53,56,42,49,7,5,1,0,0,1,1,0,2,1 -050,01,015,Alabama,Calhoun County,1,4,8166,4175,3991,3083,2946,995,952,21,25,27,20,5,5,44,43,4067,3921,2983,2889,990,943,21,24,26,20,5,5,42,40,108,70,100,57,5,9,0,1,1,0,0,0,2,3 -050,01,015,Alabama,Calhoun County,1,5,8117,3955,4162,3050,3101,812,989,22,13,31,25,3,3,37,31,3792,4062,2898,3008,808,984,17,13,29,25,3,3,37,29,163,100,152,93,4,5,5,0,2,0,0,0,0,2 -050,01,015,Alabama,Calhoun County,1,6,7071,3569,3502,2825,2709,669,733,19,16,32,23,2,2,22,19,3436,3438,2702,2648,664,732,17,16,31,23,2,2,20,17,133,64,123,61,5,1,2,0,1,0,0,0,2,2 -050,01,015,Alabama,Calhoun County,1,7,7292,3575,3717,2927,2904,592,753,15,14,21,25,0,1,20,20,3473,3650,2831,2847,589,746,14,12,20,25,0,1,19,19,102,67,96,57,3,7,1,2,1,0,0,0,1,1 -050,01,015,Alabama,Calhoun County,1,8,8103,3998,4105,3252,3179,669,835,14,17,22,34,7,5,34,35,3936,4062,3193,3143,667,830,14,16,22,33,7,5,33,35,62,43,59,36,2,5,0,1,0,1,0,0,1,0 -050,01,015,Alabama,Calhoun County,1,9,8653,4156,4497,3375,3482,715,901,17,25,18,54,2,3,29,32,4098,4446,3320,3440,713,893,17,25,18,54,1,2,29,32,58,51,55,42,2,8,0,0,0,0,1,1,0,0 -050,01,015,Alabama,Calhoun County,1,10,8292,4052,4240,3308,3364,678,777,28,23,12,51,5,2,21,23,4015,4196,3277,3330,674,770,28,22,11,49,5,2,20,23,37,44,31,34,4,7,0,1,1,2,0,0,1,0 -050,01,015,Alabama,Calhoun County,1,11,7625,3752,3873,3180,3183,505,589,27,11,14,55,2,6,24,29,3720,3854,3152,3165,504,588,26,11,14,55,1,6,23,29,32,19,28,18,1,1,1,0,0,0,1,0,1,0 -050,01,015,Alabama,Calhoun County,1,12,5907,2773,3134,2395,2654,337,415,19,18,6,26,2,2,14,19,2757,3113,2380,2633,337,415,19,18,5,26,2,2,14,19,16,21,15,21,0,0,0,0,1,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,1,13,5101,2412,2689,2093,2264,296,380,6,5,4,18,1,2,12,20,2394,2670,2075,2249,296,377,6,4,4,18,1,2,12,20,18,19,18,15,0,3,0,1,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,1,14,4757,2112,2645,1852,2241,236,376,10,3,4,14,0,2,10,9,2103,2624,1844,2220,235,376,10,3,4,14,0,2,10,9,9,21,8,21,1,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,1,15,4181,1676,2505,1480,2132,183,353,2,2,2,9,0,0,9,9,1669,2496,1473,2125,183,351,2,2,2,9,0,0,9,9,7,9,7,7,0,2,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,1,16,3206,1167,2039,1035,1762,122,262,0,1,1,5,0,0,9,9,1160,2032,1028,1756,122,261,0,1,1,5,0,0,9,9,7,7,7,6,0,1,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,1,17,2059,697,1362,597,1163,97,192,0,0,0,2,0,0,3,5,695,1355,596,1156,97,192,0,0,0,2,0,0,2,5,2,7,1,7,0,0,0,0,0,0,0,0,1,0 -050,01,015,Alabama,Calhoun County,1,18,1645,443,1202,375,1010,63,181,1,1,0,2,1,1,3,7,440,1197,373,1005,62,181,1,1,0,2,1,1,3,7,3,5,2,5,1,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,1,99,111882,53526,58356,43002,45916,9554,11316,239,216,249,406,39,40,443,462,52558,57571,42126,45226,9502,11250,226,207,239,397,36,39,429,452,968,785,876,690,52,66,13,9,10,9,3,1,14,10 -050,01,015,Alabama,Calhoun County,2,0,1312,657,655,490,481,144,156,2,3,6,4,0,0,15,11,632,633,470,461,141,155,1,2,5,4,0,0,15,11,25,22,20,20,3,1,1,1,1,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,2,1,5468,2729,2739,2056,2002,606,670,6,8,11,14,2,0,48,45,2656,2665,1996,1936,596,666,6,8,10,11,2,0,46,44,73,74,60,66,10,4,0,0,1,3,0,0,2,1 -050,01,015,Alabama,Calhoun County,2,2,7254,3672,3582,2668,2591,928,911,15,15,17,14,3,1,41,50,3612,3496,2616,2516,924,904,13,13,16,12,3,1,40,50,60,86,52,75,4,7,2,2,1,2,0,0,1,0 -050,01,015,Alabama,Calhoun County,2,3,7380,3803,3577,2846,2643,878,858,15,16,21,11,4,5,39,44,3750,3521,2804,2594,871,853,14,16,21,10,3,5,37,43,53,56,42,49,7,5,1,0,0,1,1,0,2,1 -050,01,015,Alabama,Calhoun County,2,4,8132,4158,3974,3066,2925,996,953,21,25,26,20,5,5,44,46,4050,3905,2967,2869,991,944,21,24,25,20,5,5,41,43,108,69,99,56,5,9,0,1,1,0,0,0,3,3 -050,01,015,Alabama,Calhoun County,2,5,8146,3967,4179,3054,3110,817,994,22,13,30,24,3,3,41,35,3804,4079,2902,3017,813,989,17,13,28,24,3,3,41,33,163,100,152,93,4,5,5,0,2,0,0,0,0,2 -050,01,015,Alabama,Calhoun County,2,6,6930,3499,3431,2771,2650,659,721,19,16,32,23,2,2,16,19,3363,3367,2645,2589,654,720,17,16,31,23,2,2,14,17,136,64,126,61,5,1,2,0,1,0,0,0,2,2 -050,01,015,Alabama,Calhoun County,2,7,7195,3527,3668,2884,2862,585,746,15,14,21,25,0,1,22,20,3425,3601,2788,2805,582,739,14,12,20,25,0,1,21,19,102,67,96,57,3,7,1,2,1,0,0,0,1,1 -050,01,015,Alabama,Calhoun County,2,8,7981,3937,4044,3199,3124,661,829,14,17,22,35,7,5,34,34,3875,4001,3140,3088,659,824,14,16,22,34,7,5,33,34,62,43,59,36,2,5,0,1,0,1,0,0,1,0 -050,01,015,Alabama,Calhoun County,2,9,8578,4119,4459,3342,3448,714,897,17,25,18,54,2,3,26,32,4061,4408,3287,3406,712,889,17,25,18,54,1,2,26,32,58,51,55,42,2,8,0,0,0,0,1,1,0,0 -050,01,015,Alabama,Calhoun County,2,10,8255,4034,4221,3289,3344,678,776,28,23,12,51,5,2,22,25,3997,4177,3258,3310,674,769,28,22,11,49,5,2,21,25,37,44,31,34,4,7,0,1,1,2,0,0,1,0 -050,01,015,Alabama,Calhoun County,2,11,7623,3753,3870,3175,3178,511,592,27,11,14,55,2,6,24,28,3721,3851,3147,3160,510,591,26,11,14,55,1,6,23,28,32,19,28,18,1,1,1,0,0,0,1,0,1,0 -050,01,015,Alabama,Calhoun County,2,12,5885,2762,3123,2384,2642,337,414,19,18,6,26,2,2,14,21,2746,3102,2369,2621,337,414,19,18,5,26,2,2,14,21,16,21,15,21,0,0,0,0,1,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,2,13,5073,2397,2676,2079,2251,295,379,6,5,4,18,1,2,12,21,2379,2657,2061,2236,295,376,6,4,4,18,1,2,12,21,18,19,18,15,0,3,0,1,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,2,14,4753,2111,2642,1849,2234,237,379,10,3,4,14,0,2,11,10,2102,2621,1841,2213,236,379,10,3,4,14,0,2,11,10,9,21,8,21,1,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,2,15,4178,1680,2498,1481,2125,186,354,2,2,2,9,0,0,9,8,1673,2489,1474,2118,186,352,2,2,2,9,0,0,9,8,7,9,7,7,0,2,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,2,16,3215,1169,2046,1037,1766,122,265,0,1,1,5,0,0,9,9,1162,2039,1030,1760,122,264,0,1,1,5,0,0,9,9,7,7,7,6,0,1,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,2,17,2074,705,1369,604,1168,98,194,0,0,0,2,0,0,3,5,703,1362,603,1161,98,194,0,0,0,2,0,0,2,5,2,7,1,7,0,0,0,0,0,0,0,0,1,0 -050,01,015,Alabama,Calhoun County,2,18,1649,445,1204,376,1011,64,182,1,1,0,2,1,1,3,7,442,1199,374,1006,63,182,1,1,0,2,1,1,3,7,3,5,2,5,1,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,2,99,111081,53124,57957,42650,45555,9516,11270,239,216,247,406,39,40,433,470,52153,57173,41772,44866,9464,11204,226,207,237,397,36,39,418,460,971,784,878,689,52,66,13,9,10,9,3,1,15,10 -050,01,015,Alabama,Calhoun County,3,0,1519,774,745,569,528,176,193,1,3,4,2,0,0,24,19,740,717,539,504,174,191,0,2,3,2,0,0,24,18,34,28,30,24,2,2,1,1,1,0,0,0,0,1 -050,01,015,Alabama,Calhoun County,3,1,5507,2770,2737,2075,2002,611,661,7,7,16,17,3,0,58,50,2695,2662,2010,1935,605,656,7,7,15,16,3,0,55,48,75,75,65,67,6,5,0,0,1,1,0,0,3,2 -050,01,015,Alabama,Calhoun County,3,2,6998,3551,3447,2604,2506,874,860,13,15,13,15,2,1,45,50,3473,3352,2537,2425,867,852,11,13,12,11,2,1,44,50,78,95,67,81,7,8,2,2,1,4,0,0,1,0 -050,01,015,Alabama,Calhoun County,3,3,7448,3817,3631,2811,2678,928,870,17,11,15,19,6,5,40,48,3749,3554,2759,2609,916,864,16,11,15,18,5,5,38,47,68,77,52,69,12,6,1,0,0,1,1,0,2,1 -050,01,015,Alabama,Calhoun County,3,4,7890,4043,3847,2964,2767,983,985,16,26,30,14,5,6,45,49,3942,3775,2873,2708,976,976,16,25,29,14,5,6,43,46,101,72,91,59,7,9,0,1,1,0,0,0,2,3 -050,01,015,Alabama,Calhoun County,3,5,8614,4168,4446,3168,3297,899,1067,25,19,28,26,3,2,45,35,4009,4339,3022,3202,893,1058,20,19,26,26,3,2,45,32,159,107,146,95,6,9,5,0,2,0,0,0,0,3 -050,01,015,Alabama,Calhoun County,3,6,6722,3368,3354,2687,2530,618,757,12,15,31,25,1,2,19,25,3215,3268,2544,2449,613,754,10,15,30,25,1,2,17,23,153,86,143,81,5,3,2,0,1,0,0,0,2,2 -050,01,015,Alabama,Calhoun County,3,7,7149,3512,3637,2852,2809,602,752,11,19,25,33,1,1,21,23,3397,3570,2745,2753,598,745,9,16,24,33,1,1,20,22,115,67,107,56,4,7,2,3,1,0,0,0,1,1 -050,01,015,Alabama,Calhoun County,3,8,7766,3834,3932,3119,3068,636,770,14,21,26,36,5,5,34,32,3771,3878,3059,3022,634,764,14,20,26,35,5,5,33,32,63,54,60,46,2,6,0,1,0,1,0,0,1,0 -050,01,015,Alabama,Calhoun County,3,9,8523,4090,4433,3304,3396,726,924,13,22,18,55,2,3,27,33,4033,4369,3250,3341,724,916,13,22,18,55,1,2,27,33,57,64,54,55,2,8,0,0,0,0,1,1,0,0 -050,01,015,Alabama,Calhoun County,3,10,8397,4128,4269,3359,3389,700,795,28,22,12,40,4,1,25,22,4082,4213,3318,3342,696,788,28,21,12,39,4,1,24,22,46,56,41,47,4,7,0,1,0,1,0,0,1,0 -050,01,015,Alabama,Calhoun County,3,11,7806,3793,4013,3166,3261,560,641,32,19,12,65,1,3,22,24,3756,3994,3135,3246,558,637,31,19,11,65,0,3,21,24,37,19,31,15,2,4,1,0,1,0,1,0,1,0 -050,01,015,Alabama,Calhoun County,3,12,6022,2877,3145,2481,2644,353,423,17,22,5,32,2,2,19,22,2856,3128,2462,2627,352,423,17,22,4,32,2,2,19,22,21,17,19,17,1,0,0,0,1,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,3,13,5079,2370,2709,2060,2263,283,400,13,4,4,17,0,3,10,22,2352,2691,2043,2249,283,396,13,4,3,17,0,3,10,22,18,18,17,14,0,4,0,0,1,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,3,14,4758,2151,2607,1872,2219,251,357,13,4,5,15,0,2,10,10,2140,2588,1862,2200,250,357,13,4,5,15,0,2,10,10,11,19,10,19,1,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,3,15,4192,1734,2458,1527,2080,192,359,2,2,4,11,0,0,9,6,1725,2445,1518,2069,192,357,2,2,4,11,0,0,9,6,9,13,9,11,0,2,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,3,16,3175,1161,2014,1021,1747,127,252,3,1,1,5,0,0,9,9,1155,2010,1015,1743,127,252,3,1,1,5,0,0,9,9,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,3,17,2147,735,1412,651,1204,81,200,0,0,0,3,0,0,3,5,733,1404,650,1196,81,200,0,0,0,3,0,0,2,5,2,8,1,8,0,0,0,0,0,0,0,0,1,0 -050,01,015,Alabama,Calhoun County,3,18,1554,415,1139,342,949,68,179,1,1,0,2,1,1,3,7,412,1135,340,945,67,179,1,1,0,2,1,1,3,7,3,4,2,4,1,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,3,99,111266,53291,57975,42632,45337,9668,11445,238,233,249,432,36,37,468,491,52235,57092,41681,44565,9606,11365,224,224,238,424,33,36,453,478,1056,883,951,772,62,80,14,9,11,8,3,1,15,13 -050,01,015,Alabama,Calhoun County,4,0,1441,733,708,541,516,166,169,1,2,2,2,0,0,23,19,707,677,517,489,165,166,1,2,1,2,0,0,23,18,26,31,24,27,1,3,0,0,1,0,0,0,0,1 -050,01,015,Alabama,Calhoun County,4,1,5578,2807,2771,2071,2012,637,685,7,7,17,15,3,0,72,52,2708,2685,1990,1937,626,681,6,7,17,12,3,0,66,48,99,86,81,75,11,4,1,0,0,3,0,0,6,4 -050,01,015,Alabama,Calhoun County,4,2,7092,3584,3508,2668,2529,829,894,16,15,14,14,3,1,54,55,3492,3401,2596,2434,815,886,12,13,13,12,3,1,53,55,92,107,72,95,14,8,4,2,1,2,0,0,1,0 -050,01,015,Alabama,Calhoun County,4,3,7392,3803,3589,2777,2667,948,844,18,13,15,12,3,5,42,48,3734,3520,2725,2605,936,839,16,13,15,11,2,5,40,47,69,69,52,62,12,5,2,0,0,1,1,0,2,1 -050,01,015,Alabama,Calhoun County,4,4,7786,3987,3799,2884,2730,1008,977,15,23,31,20,4,7,45,42,3903,3730,2814,2673,997,970,15,22,29,20,4,6,44,39,84,69,70,57,11,7,0,1,2,0,0,1,1,3 -050,01,015,Alabama,Calhoun County,4,5,8752,4255,4497,3204,3297,946,1104,27,26,28,26,3,1,47,43,4090,4382,3056,3200,937,1092,21,23,26,26,3,1,47,40,165,115,148,97,9,12,6,3,2,0,0,0,0,3 -050,01,015,Alabama,Calhoun County,4,6,6859,3409,3450,2706,2590,636,794,14,14,27,22,4,3,22,27,3248,3355,2560,2503,630,788,10,14,26,22,4,3,18,25,161,95,146,87,6,6,4,0,1,0,0,0,4,2 -050,01,015,Alabama,Calhoun County,4,7,7131,3512,3619,2840,2773,603,768,12,25,25,24,1,1,31,28,3370,3550,2710,2717,597,761,10,22,22,22,1,1,30,27,142,69,130,56,6,7,2,3,3,2,0,0,1,1 -050,01,015,Alabama,Calhoun County,4,8,7505,3684,3821,3002,2965,600,769,17,20,27,26,6,6,32,35,3616,3765,2940,2917,597,763,16,19,27,26,6,5,30,35,68,56,62,48,3,6,1,1,0,0,0,1,2,0 -050,01,015,Alabama,Calhoun County,4,9,8458,4114,4344,3297,3322,749,910,15,18,25,58,2,4,26,32,4056,4289,3243,3277,747,903,14,17,25,58,1,3,26,31,58,55,54,45,2,7,1,1,0,0,1,1,0,1 -050,01,015,Alabama,Calhoun County,4,10,8425,4125,4300,3332,3381,713,834,35,27,13,33,5,2,27,23,4081,4238,3293,3329,709,827,35,25,13,32,5,2,26,23,44,62,39,52,4,7,0,2,0,1,0,0,1,0 -050,01,015,Alabama,Calhoun County,4,11,7814,3779,4035,3134,3241,578,670,30,20,14,70,2,7,21,27,3737,4014,3097,3223,576,667,29,20,14,70,1,7,20,27,42,21,37,18,2,3,1,0,0,0,1,0,1,0 -050,01,015,Alabama,Calhoun County,4,12,6424,3095,3329,2650,2811,391,445,23,15,7,35,3,1,21,22,3072,3305,2630,2789,390,444,22,14,6,35,3,1,21,22,23,24,20,22,1,1,1,1,1,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,4,13,5185,2428,2757,2111,2328,277,386,16,5,8,16,1,3,15,19,2411,2743,2096,2317,276,383,16,5,7,16,1,3,15,19,17,14,15,11,1,3,0,0,1,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,4,14,4715,2158,2557,1864,2152,262,369,12,5,5,18,1,1,14,12,2147,2538,1853,2133,262,369,12,5,5,18,1,1,14,12,11,19,11,19,0,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,4,15,4216,1727,2489,1522,2113,188,354,2,2,3,10,0,0,12,10,1720,2474,1515,2100,188,352,2,2,3,10,0,0,12,10,7,15,7,13,0,2,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,4,16,3191,1166,2025,1027,1758,126,250,3,1,1,6,0,0,9,10,1157,2018,1018,1751,126,250,3,1,1,6,0,0,9,10,9,7,9,7,0,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,4,17,2148,728,1420,642,1210,83,202,0,0,0,3,0,0,3,5,724,1411,639,1201,83,202,0,0,0,3,0,0,2,5,4,9,3,9,0,0,0,0,0,0,0,0,1,0 -050,01,015,Alabama,Calhoun County,4,18,1513,432,1081,359,909,69,161,1,1,0,2,1,1,2,7,429,1076,357,904,68,161,1,1,0,2,1,1,2,7,3,5,2,5,1,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,4,99,111625,53526,58099,42631,45304,9809,11585,264,239,262,412,42,43,518,516,52402,57171,41649,44499,9725,11504,241,225,250,403,39,40,498,500,1124,928,982,805,84,81,23,14,12,9,3,3,20,16 -050,01,015,Alabama,Calhoun County,5,0,1372,721,651,537,467,144,152,2,3,3,3,1,0,34,26,676,615,496,436,142,149,1,2,2,3,1,0,34,25,45,36,41,31,2,3,1,1,1,0,0,0,0,1 -050,01,015,Alabama,Calhoun County,5,1,5780,2918,2862,2143,2076,671,692,8,6,16,19,4,0,76,69,2812,2768,2054,1996,663,687,7,5,15,16,4,0,69,64,106,94,89,80,8,5,1,1,1,3,0,0,7,5 -050,01,015,Alabama,Calhoun County,5,2,7019,3546,3473,2655,2543,786,841,19,14,16,12,3,1,67,62,3460,3366,2585,2453,778,830,15,12,15,10,3,1,64,60,86,107,70,90,8,11,4,2,1,2,0,0,3,2 -050,01,015,Alabama,Calhoun County,5,3,7620,3926,3694,2844,2694,998,907,14,15,18,15,7,3,45,60,3836,3607,2777,2616,979,902,12,15,18,14,6,3,44,57,90,87,67,78,19,5,2,0,0,1,1,0,1,3 -050,01,015,Alabama,Calhoun County,5,4,7691,3899,3792,2824,2727,983,968,21,21,26,21,4,5,41,50,3825,3709,2762,2658,975,960,21,20,24,21,4,4,39,46,74,83,62,69,8,8,0,1,2,0,0,1,2,4 -050,01,015,Alabama,Calhoun County,5,5,8824,4312,4512,3215,3275,990,1139,30,23,30,29,2,3,45,43,4149,4388,3070,3174,980,1124,24,19,29,29,2,3,44,39,163,124,145,101,10,15,6,4,1,0,0,0,1,4 -050,01,015,Alabama,Calhoun County,5,6,7173,3568,3605,2830,2693,677,827,14,17,22,30,2,4,23,34,3381,3505,2657,2600,671,822,9,16,22,30,2,4,20,33,187,100,173,93,6,5,5,1,0,0,0,0,3,1 -050,01,015,Alabama,Calhoun County,5,7,7133,3551,3582,2849,2717,615,784,22,25,33,24,1,3,31,29,3415,3508,2725,2653,611,778,19,22,30,23,1,3,29,29,136,74,124,64,4,6,3,3,3,1,0,0,2,0 -050,01,015,Alabama,Calhoun County,5,8,7356,3586,3770,2927,2971,580,714,17,19,23,30,5,6,34,30,3511,3705,2858,2915,577,708,16,18,23,30,5,5,32,29,75,65,69,56,3,6,1,1,0,0,0,1,2,1 -050,01,015,Alabama,Calhoun County,5,9,8343,4053,4290,3258,3272,725,910,15,16,23,55,3,3,29,34,3985,4227,3195,3218,722,903,14,16,23,55,2,2,29,33,68,63,63,54,3,7,1,0,0,0,1,1,0,1 -050,01,015,Alabama,Calhoun County,5,10,8645,4232,4413,3388,3415,764,894,31,26,17,43,4,2,28,33,4182,4346,3343,3362,760,885,31,23,17,41,4,2,27,33,50,67,45,53,4,9,0,3,0,2,0,0,1,0 -050,01,015,Alabama,Calhoun County,5,11,7877,3808,4069,3096,3235,635,724,33,20,15,62,2,3,27,25,3760,4039,3053,3210,633,719,31,20,15,62,2,3,26,25,48,30,43,25,2,5,2,0,0,0,0,0,1,0 -050,01,015,Alabama,Calhoun County,5,12,6691,3287,3404,2823,2858,412,458,21,15,8,49,4,1,19,23,3262,3384,2803,2839,409,457,20,15,7,49,4,1,19,23,25,20,20,19,3,1,1,0,1,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,5,13,5314,2472,2842,2150,2407,287,394,15,5,7,13,1,3,12,20,2454,2823,2135,2391,285,391,15,5,6,13,1,3,12,20,18,19,15,16,2,3,0,0,1,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,5,14,4736,2177,2559,1868,2173,275,352,8,4,5,18,2,1,19,11,2160,2543,1853,2157,274,352,8,4,5,18,2,1,18,11,17,16,15,16,1,0,0,0,0,0,0,0,1,0 -050,01,015,Alabama,Calhoun County,5,15,4108,1691,2417,1492,2051,181,341,5,3,3,13,1,0,9,9,1683,2400,1485,2036,180,339,5,3,3,13,1,0,9,9,8,17,7,15,1,2,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,5,16,3259,1210,2049,1071,1766,126,265,4,1,2,8,0,0,7,9,1203,2039,1064,1757,126,264,4,1,2,8,0,0,7,9,7,10,7,9,0,1,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,5,17,2203,736,1467,654,1258,79,200,0,0,0,3,0,0,3,6,732,1459,651,1250,79,200,0,0,0,3,0,0,2,6,4,8,3,8,0,0,0,0,0,0,0,0,1,0 -050,01,015,Alabama,Calhoun County,5,18,1561,444,1117,368,927,72,177,1,1,0,3,1,1,2,8,441,1109,366,920,71,176,1,1,0,3,1,1,2,8,3,8,2,7,1,1,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,5,99,112705,54137,58568,42992,45525,10000,11739,280,234,267,450,47,39,551,581,52927,57540,41932,44641,9915,11646,253,217,256,441,45,36,526,559,1210,1028,1060,884,85,93,27,17,11,9,2,3,25,22 -050,01,015,Alabama,Calhoun County,6,0,1471,761,710,553,511,171,166,2,2,2,4,1,0,32,27,716,682,513,487,169,164,1,1,2,4,0,0,31,26,45,28,40,24,2,2,1,1,0,0,1,0,1,1 -050,01,015,Alabama,Calhoun County,6,1,5692,2927,2765,2165,1980,656,686,8,7,19,21,3,0,76,71,2778,2648,2040,1879,640,679,7,6,19,17,3,0,69,67,149,117,125,101,16,7,1,1,0,4,0,0,7,4 -050,01,015,Alabama,Calhoun County,6,2,7048,3563,3485,2661,2561,789,817,15,13,22,17,2,1,74,76,3449,3380,2568,2473,776,806,11,11,21,16,2,1,71,73,114,105,93,88,13,11,4,2,1,1,0,0,3,3 -050,01,015,Alabama,Calhoun County,6,3,7671,3909,3762,2827,2734,995,938,16,9,19,10,5,4,47,67,3802,3659,2742,2643,979,930,14,9,19,9,4,4,44,64,107,103,85,91,16,8,2,0,0,1,1,0,3,3 -050,01,015,Alabama,Calhoun County,6,4,7883,4019,3864,2902,2730,1023,1039,19,19,25,19,4,9,46,48,3929,3775,2827,2655,1015,1031,16,17,23,19,4,8,44,45,90,89,75,75,8,8,3,2,2,0,0,1,2,3 -050,01,015,Alabama,Calhoun County,6,5,8699,4243,4456,3065,3164,1070,1176,24,24,33,33,3,2,48,57,4082,4336,2926,3067,1058,1161,18,20,31,33,3,2,46,53,161,120,139,97,12,15,6,4,2,0,0,0,2,4 -050,01,015,Alabama,Calhoun County,6,6,7542,3751,3791,2975,2850,703,847,16,19,21,34,4,5,32,36,3550,3661,2790,2738,698,836,11,16,20,33,4,5,27,33,201,130,185,112,5,11,5,3,1,1,0,0,5,3 -050,01,015,Alabama,Calhoun County,6,7,7030,3546,3484,2833,2640,624,768,22,24,34,23,1,1,32,28,3385,3387,2687,2557,618,761,19,20,31,21,1,1,29,27,161,97,146,83,6,7,3,4,3,2,0,0,3,1 -050,01,015,Alabama,Calhoun County,6,8,7312,3539,3773,2880,2923,576,758,16,20,31,33,5,5,31,34,3447,3703,2795,2863,573,752,15,19,30,33,5,4,29,32,92,70,85,60,3,6,1,1,1,0,0,1,2,2 -050,01,015,Alabama,Calhoun County,6,9,8221,4012,4209,3215,3227,725,867,18,17,25,47,4,6,25,45,3947,4134,3156,3164,721,860,17,17,25,47,3,4,25,42,65,75,59,63,4,7,1,0,0,0,1,2,0,3 -050,01,015,Alabama,Calhoun County,6,10,8601,4188,4413,3341,3388,765,917,29,24,19,48,4,3,30,33,4135,4347,3291,3334,762,909,29,22,19,46,4,3,30,33,53,66,50,54,3,8,0,2,0,2,0,0,0,0 -050,01,015,Alabama,Calhoun County,6,11,7971,3873,4098,3137,3235,672,754,27,19,13,57,2,4,22,29,3824,4058,3092,3202,670,751,26,19,12,56,2,4,22,26,49,40,45,33,2,3,1,0,1,1,0,0,0,3 -050,01,015,Alabama,Calhoun County,6,12,7002,3424,3578,2912,2955,458,523,17,17,11,56,3,1,23,26,3400,3558,2893,2936,455,522,16,17,10,56,3,1,23,26,24,20,19,19,3,1,1,0,1,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,6,13,5509,2579,2930,2231,2484,311,399,16,10,8,14,1,3,12,20,2559,2906,2214,2464,309,396,16,10,7,14,1,3,12,19,20,24,17,20,2,3,0,0,1,0,0,0,0,1 -050,01,015,Alabama,Calhoun County,6,14,4703,2167,2536,1858,2161,274,339,8,4,6,18,2,1,19,13,2156,2523,1848,2149,274,338,8,4,6,18,2,1,18,13,11,13,10,12,0,1,0,0,0,0,0,0,1,0 -050,01,015,Alabama,Calhoun County,6,15,4069,1699,2370,1507,2014,173,330,7,3,4,15,0,1,8,7,1688,2350,1498,1996,171,328,7,3,4,15,0,1,8,7,11,20,9,18,2,2,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,6,16,3278,1223,2055,1070,1751,137,287,5,2,3,6,0,0,8,9,1217,2046,1064,1742,137,287,5,2,3,6,0,0,8,9,6,9,6,9,0,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,6,17,2200,727,1473,640,1273,85,188,0,0,0,4,0,2,2,6,725,1464,638,1264,85,188,0,0,0,4,0,2,2,6,2,9,2,9,0,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,6,18,1560,425,1135,366,949,55,175,1,1,0,2,1,1,2,7,422,1130,364,944,54,175,1,1,0,2,1,1,2,7,3,5,2,5,1,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,6,99,113462,54575,58887,43138,45530,10262,11974,266,234,295,461,45,49,569,639,53211,57747,41946,44557,10164,11874,237,214,282,449,42,45,540,608,1364,1140,1192,973,98,100,29,20,13,12,3,4,29,31 -050,01,015,Alabama,Calhoun County,7,0,1462,758,704,548,507,169,159,3,2,3,3,2,0,33,33,701,661,498,470,167,157,1,1,3,3,1,0,31,30,57,43,50,37,2,2,2,1,0,0,1,0,2,3 -050,01,015,Alabama,Calhoun County,7,1,5853,3008,2845,2177,2002,710,706,10,7,16,27,3,0,92,103,2853,2716,2047,1893,696,698,9,5,15,24,2,0,84,96,155,129,130,109,14,8,1,2,1,3,1,0,8,7 -050,01,015,Alabama,Calhoun County,7,2,7104,3591,3513,2671,2599,789,803,15,13,24,20,2,3,90,75,3470,3391,2570,2498,780,791,9,11,24,18,1,3,86,70,121,122,101,101,9,12,6,2,0,2,1,0,4,5 -050,01,015,Alabama,Calhoun County,7,3,7619,3893,3726,2776,2685,1012,952,18,9,23,15,6,1,58,64,3771,3619,2681,2590,994,946,14,9,22,13,6,1,54,60,122,107,95,95,18,6,4,0,1,2,0,0,4,4 -050,01,015,Alabama,Calhoun County,7,4,8068,4096,3972,2939,2801,1063,1083,19,18,25,17,5,6,45,47,3997,3872,2855,2715,1053,1077,18,16,23,16,4,5,44,43,99,100,84,86,10,6,1,2,2,1,1,1,1,4 -050,01,015,Alabama,Calhoun County,7,5,8652,4209,4443,2965,3079,1135,1247,29,18,33,35,4,1,43,63,4056,4315,2832,2978,1125,1230,21,14,33,35,4,1,41,57,153,128,133,101,10,17,8,4,0,0,0,0,2,6 -050,01,015,Alabama,Calhoun County,7,6,7785,3866,3919,3056,2911,720,903,20,22,23,32,4,6,43,45,3625,3791,2839,2797,712,896,14,19,20,32,3,6,37,41,241,128,217,114,8,7,6,3,3,0,1,0,6,4 -050,01,015,Alabama,Calhoun County,7,7,6929,3492,3437,2734,2614,652,733,27,23,43,27,2,2,34,38,3318,3340,2579,2533,645,726,23,19,40,24,2,2,29,36,174,97,155,81,7,7,4,4,3,3,0,0,5,2 -050,01,015,Alabama,Calhoun County,7,8,7292,3518,3774,2852,2896,567,795,20,17,36,27,6,6,37,33,3400,3692,2746,2825,565,788,19,16,35,27,4,6,31,30,118,82,106,71,2,7,1,1,1,0,2,0,6,3 -050,01,015,Alabama,Calhoun County,7,9,8030,3948,4082,3149,3144,726,825,14,18,25,47,3,5,31,43,3870,4013,3083,3088,722,817,11,16,24,47,2,4,28,41,78,69,66,56,4,8,3,2,1,0,1,1,3,2 -050,01,015,Alabama,Calhoun County,7,10,8548,4130,4418,3286,3378,761,941,27,24,16,34,4,3,36,38,4059,4349,3223,3319,756,935,26,20,16,34,3,3,35,38,71,69,63,59,5,6,1,4,0,0,1,0,1,0 -050,01,015,Alabama,Calhoun County,7,11,8148,3951,4197,3174,3293,703,792,32,27,13,53,3,4,26,28,3913,4147,3141,3250,701,788,31,27,12,51,3,3,25,28,38,50,33,43,2,4,1,0,1,2,0,1,1,0 -050,01,015,Alabama,Calhoun County,7,12,7366,3585,3781,3025,3088,485,593,29,17,16,56,3,0,27,27,3557,3751,3004,3068,481,588,29,15,15,55,3,0,25,25,28,30,21,20,4,5,0,2,1,1,0,0,2,2 -050,01,015,Alabama,Calhoun County,7,13,5624,2635,2989,2257,2551,340,380,13,13,8,23,1,3,16,19,2611,2964,2237,2528,338,378,13,13,7,23,1,3,15,19,24,25,20,23,2,2,0,0,1,0,0,0,1,0 -050,01,015,Alabama,Calhoun County,7,14,4707,2191,2516,1878,2125,278,354,9,6,5,19,1,1,20,11,2173,2505,1863,2115,278,353,9,6,4,19,1,1,18,11,18,11,15,10,0,1,0,0,1,0,0,0,2,0 -050,01,015,Alabama,Calhoun County,7,15,4098,1764,2334,1568,1982,178,331,3,4,4,9,0,1,11,7,1752,2312,1559,1960,175,331,3,4,4,9,0,1,11,7,12,22,9,22,3,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,7,16,3350,1247,2103,1089,1792,144,292,6,3,2,7,0,1,6,8,1241,2094,1083,1783,144,292,6,3,2,7,0,1,6,8,6,9,6,9,0,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,7,17,2204,727,1477,650,1283,73,180,0,1,1,4,0,1,3,8,722,1467,646,1274,73,180,0,1,1,4,0,1,2,7,5,10,4,9,0,0,0,0,0,0,0,0,1,1 -050,01,015,Alabama,Calhoun County,7,18,1638,446,1192,376,990,65,193,1,1,0,2,1,0,3,6,443,1187,374,986,64,192,1,1,0,2,1,0,3,6,3,5,2,4,1,1,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,7,99,114477,55055,59422,43170,45720,10570,12262,295,243,316,457,50,44,654,696,53532,58186,41860,44670,10469,12163,257,216,300,443,41,41,605,653,1523,1236,1310,1050,101,99,38,27,16,14,9,3,49,43 -050,01,015,Alabama,Calhoun County,8,0,1437,720,717,533,513,147,161,2,1,2,4,2,0,34,38,659,659,478,460,144,160,1,1,2,4,1,0,33,34,61,58,55,53,3,1,1,0,0,0,1,0,1,4 -050,01,015,Alabama,Calhoun County,8,1,5801,2994,2807,2158,1979,696,697,12,11,17,32,4,0,107,88,2819,2658,2010,1854,683,688,10,9,17,29,3,0,96,78,175,149,148,125,13,9,2,2,0,3,1,0,11,10 -050,01,015,Alabama,Calhoun County,8,2,7330,3723,3607,2742,2621,838,854,15,14,26,17,2,3,100,98,3582,3471,2628,2506,823,843,10,12,25,16,1,3,95,91,141,136,114,115,15,11,5,2,1,1,1,0,5,7 -050,01,015,Alabama,Calhoun County,8,3,7479,3854,3625,2794,2640,956,890,17,9,21,13,5,3,61,70,3722,3517,2688,2545,941,885,13,8,20,12,3,3,57,64,132,108,106,95,15,5,4,1,1,1,2,0,4,6 -050,01,015,Alabama,Calhoun County,8,4,8263,4181,4082,2952,2815,1132,1166,27,23,17,19,5,8,48,51,4065,3981,2855,2731,1119,1160,24,19,16,18,4,6,47,47,116,101,97,84,13,6,3,4,1,1,1,2,1,4 -050,01,015,Alabama,Calhoun County,8,5,8623,4246,4377,2991,3005,1143,1246,30,23,35,32,4,2,43,69,4078,4228,2849,2885,1129,1228,22,19,34,32,4,1,40,63,168,149,142,120,14,18,8,4,1,0,0,1,3,6 -050,01,015,Alabama,Calhoun County,8,6,8096,3943,4153,3081,3069,769,963,21,19,25,46,4,5,43,51,3712,4022,2877,2959,760,954,14,15,22,44,3,5,36,45,231,131,204,110,9,9,7,4,3,2,1,0,7,6 -050,01,015,Alabama,Calhoun County,8,7,6684,3361,3323,2625,2467,639,784,17,17,39,18,2,3,39,34,3165,3205,2451,2366,630,777,12,12,37,16,2,3,33,31,196,118,174,101,9,7,5,5,2,2,0,0,6,3 -050,01,015,Alabama,Calhoun County,8,8,7368,3548,3820,2874,2938,585,801,15,16,35,33,5,5,34,27,3421,3732,2759,2862,582,795,14,16,34,33,3,4,29,22,127,88,115,76,3,6,1,0,1,0,2,1,5,5 -050,01,015,Alabama,Calhoun County,8,9,7882,3894,3988,3115,3097,699,774,20,22,27,49,3,5,30,41,3813,3916,3049,3040,695,767,16,19,26,49,3,4,24,37,81,72,66,57,4,7,4,3,1,0,0,1,6,4 -050,01,015,Alabama,Calhoun County,8,10,8574,4101,4473,3244,3386,762,977,28,22,18,37,5,2,44,49,4020,4401,3176,3327,756,970,27,18,17,36,4,2,40,48,81,72,68,59,6,7,1,4,1,1,1,0,4,1 -050,01,015,Alabama,Calhoun County,8,11,8369,4101,4268,3294,3361,714,803,31,19,20,48,3,4,39,33,4056,4200,3254,3307,711,794,31,19,19,46,3,3,38,31,45,68,40,54,3,9,0,0,1,2,0,1,1,2 -050,01,015,Alabama,Calhoun County,8,12,7668,3658,4010,3048,3242,537,658,26,13,14,66,3,1,30,30,3617,3981,3016,3225,531,652,25,11,13,65,3,1,29,27,41,29,32,17,6,6,1,2,1,1,0,0,1,3 -050,01,015,Alabama,Calhoun County,8,13,5861,2794,3067,2391,2608,371,399,12,13,8,22,1,2,11,23,2769,3036,2370,2579,369,397,12,13,7,22,1,2,10,23,25,31,21,29,2,2,0,0,1,0,0,0,1,0 -050,01,015,Alabama,Calhoun County,8,14,4736,2176,2560,1879,2136,260,383,10,5,6,24,1,0,20,12,2160,2545,1866,2123,260,381,10,5,5,24,1,0,18,12,16,15,13,13,0,2,0,0,1,0,0,0,2,0 -050,01,015,Alabama,Calhoun County,8,15,4062,1772,2290,1566,1959,185,303,6,3,4,16,2,1,9,8,1761,2271,1558,1940,182,303,6,3,4,16,2,1,9,8,11,19,8,19,3,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,8,16,3320,1286,2034,1114,1723,157,290,6,3,2,7,0,1,7,10,1279,2023,1107,1712,157,290,6,3,2,7,0,1,7,10,7,11,7,11,0,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,8,17,2197,730,1467,648,1275,79,174,0,2,1,4,1,3,1,9,724,1456,643,1265,78,174,0,2,1,4,1,3,1,8,6,11,5,10,1,0,0,0,0,0,0,0,0,1 -050,01,015,Alabama,Calhoun County,8,18,1638,436,1202,374,1001,59,193,1,0,0,3,0,0,2,5,433,1197,372,997,58,192,1,0,0,3,0,0,2,5,3,5,2,4,1,1,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,8,99,115388,55518,59870,43423,45835,10728,12516,296,235,317,490,52,48,702,746,53855,58499,42006,44683,10608,12410,254,204,301,476,42,42,644,684,1663,1371,1417,1152,120,106,42,31,16,14,10,6,58,62 -050,01,015,Alabama,Calhoun County,9,0,1460,720,740,516,518,154,170,3,2,2,6,2,0,43,44,664,686,466,470,153,169,1,1,2,6,1,0,41,40,56,54,50,48,1,1,2,1,0,0,1,0,2,4 -050,01,015,Alabama,Calhoun County,9,1,5715,2967,2748,2150,1899,679,701,12,8,19,32,4,0,103,108,2776,2576,1988,1751,662,694,10,5,18,29,3,0,95,97,191,172,162,148,17,7,2,3,1,3,1,0,8,11 -050,01,015,Alabama,Calhoun County,9,2,7329,3730,3599,2741,2626,837,814,15,13,30,37,3,4,104,105,3567,3452,2611,2506,819,798,9,11,29,36,2,4,97,97,163,147,130,120,18,16,6,2,1,1,1,0,7,8 -050,01,015,Alabama,Calhoun County,9,3,7611,3881,3730,2817,2698,929,921,23,13,21,14,7,3,84,81,3741,3610,2712,2594,909,917,19,11,19,12,5,3,77,73,140,120,105,104,20,4,4,2,2,2,2,0,7,8 -050,01,015,Alabama,Calhoun County,9,4,8324,4199,4125,2935,2838,1174,1199,22,15,17,16,4,9,47,48,4066,4017,2822,2750,1161,1191,19,11,15,15,3,7,46,43,133,108,113,88,13,8,3,4,2,1,1,2,1,5 -050,01,015,Alabama,Calhoun County,9,5,8641,4305,4336,3030,2947,1166,1255,26,21,31,34,4,4,48,75,4124,4176,2878,2825,1151,1230,18,17,29,34,4,3,44,67,181,160,152,122,15,25,8,4,2,0,0,1,4,8 -050,01,015,Alabama,Calhoun County,9,6,8133,3963,4170,3064,3072,790,964,22,23,30,43,3,4,54,64,3742,4023,2877,2948,778,953,15,19,26,41,2,4,44,58,221,147,187,124,12,11,7,4,4,2,1,0,10,6 -050,01,015,Alabama,Calhoun County,9,7,6638,3302,3336,2566,2460,638,794,19,20,42,23,1,2,36,37,3097,3207,2386,2351,628,786,13,15,39,20,1,2,30,33,205,129,180,109,10,8,6,5,3,3,0,0,6,4 -050,01,015,Alabama,Calhoun County,9,8,7417,3565,3852,2849,2946,622,817,15,20,40,28,4,5,35,36,3432,3760,2728,2866,619,811,14,20,39,28,2,4,30,31,133,92,121,80,3,6,1,0,1,0,2,1,5,5 -050,01,015,Alabama,Calhoun County,9,9,7725,3805,3920,3105,3035,632,773,16,22,20,40,3,5,29,45,3718,3834,3032,2966,628,764,13,20,19,40,3,4,23,40,87,86,73,69,4,9,3,2,1,0,0,1,6,5 -050,01,015,Alabama,Calhoun County,9,10,8487,4081,4406,3224,3318,763,970,23,26,19,43,4,5,48,44,4002,4337,3157,3262,757,964,21,22,18,41,3,5,46,43,79,69,67,56,6,6,2,4,1,2,1,0,2,1 -050,01,015,Alabama,Calhoun County,9,11,8508,4173,4335,3333,3378,748,838,33,39,17,44,3,2,39,34,4124,4262,3288,3318,745,832,33,39,17,42,3,1,38,30,49,73,45,60,3,6,0,0,0,2,0,1,1,4 -050,01,015,Alabama,Calhoun County,9,12,7720,3645,4075,3010,3272,553,687,30,18,16,68,3,2,33,28,3589,4038,2965,3246,546,681,29,17,15,67,3,2,31,25,56,37,45,26,7,6,1,1,1,1,0,0,2,3 -050,01,015,Alabama,Calhoun County,9,13,6281,2991,3290,2537,2782,408,439,17,18,10,31,1,3,18,17,2965,3259,2517,2753,404,437,17,18,9,31,1,3,17,17,26,31,20,29,4,2,0,0,1,0,0,0,1,0 -050,01,015,Alabama,Calhoun County,9,14,4885,2273,2612,1982,2208,252,362,9,11,7,19,2,0,21,12,2256,2601,1967,2198,252,361,9,11,6,19,2,0,20,12,17,11,15,10,0,1,0,0,1,0,0,0,1,0 -050,01,015,Alabama,Calhoun County,9,15,4085,1796,2289,1572,1937,203,325,4,4,5,13,1,1,11,9,1781,2266,1560,1914,200,325,4,4,5,13,1,1,11,9,15,23,12,23,3,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,9,16,3308,1279,2029,1118,1714,143,288,8,3,2,10,0,1,8,13,1274,2020,1113,1705,143,288,8,3,2,10,0,1,8,13,5,9,5,9,0,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,9,17,2272,796,1476,714,1278,79,181,0,1,2,4,1,2,0,10,790,1466,709,1269,78,181,0,1,2,4,1,2,0,9,6,10,5,9,1,0,0,0,0,0,0,0,0,1 -050,01,015,Alabama,Calhoun County,9,18,1672,440,1232,375,1042,62,181,1,0,0,4,0,0,2,5,437,1227,373,1039,61,179,1,0,0,4,0,0,2,5,3,5,2,3,1,2,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,9,99,116211,55911,60300,43638,45968,10832,12679,298,277,330,509,50,52,763,815,54145,58817,42149,44731,10694,12561,253,245,309,492,40,46,700,742,1766,1483,1489,1237,138,118,45,32,21,17,10,6,63,73 -050,01,015,Alabama,Calhoun County,10,0,1484,759,725,544,479,168,187,3,2,3,3,1,0,40,54,694,673,486,437,166,183,1,1,3,3,0,0,38,49,65,52,58,42,2,4,2,1,0,0,1,0,2,5 -050,01,015,Alabama,Calhoun County,10,1,5813,2999,2814,2142,1956,687,715,11,9,18,28,6,0,135,106,2822,2646,1997,1814,672,708,9,6,17,25,5,0,122,93,177,168,145,142,15,7,2,3,1,3,1,0,13,13 -050,01,015,Alabama,Calhoun County,10,2,7364,3734,3630,2696,2585,884,876,16,14,29,26,2,3,107,126,3550,3466,2543,2455,868,856,9,11,29,25,2,3,99,116,184,164,153,130,16,20,7,3,0,1,0,0,8,10 -050,01,015,Alabama,Calhoun County,10,3,7497,3779,3718,2747,2703,912,900,14,6,20,21,7,2,79,86,3639,3594,2632,2597,902,896,9,4,19,19,5,2,72,76,140,124,115,106,10,4,5,2,1,2,2,0,7,10 -050,01,015,Alabama,Calhoun County,10,4,8683,4456,4227,3081,2847,1274,1273,25,26,16,15,3,10,57,56,4285,4119,2937,2756,1257,1268,22,22,13,14,2,8,54,51,171,108,144,91,17,5,3,4,3,1,1,2,3,5 -050,01,015,Alabama,Calhoun County,10,5,8687,4272,4415,3017,3006,1146,1283,35,25,28,27,3,2,43,72,4085,4236,2860,2870,1131,1257,26,17,27,27,3,1,38,64,187,179,157,136,15,26,9,8,1,0,0,1,5,8 -050,01,015,Alabama,Calhoun County,10,6,8078,3968,4110,3042,2992,809,993,25,23,30,30,5,8,57,64,3705,3953,2814,2861,796,979,17,18,27,29,4,8,47,58,263,157,228,131,13,14,8,5,3,1,1,0,10,6 -050,01,015,Alabama,Calhoun County,10,7,6842,3374,3468,2596,2537,671,831,20,27,41,32,2,1,44,40,3164,3332,2411,2422,661,823,14,21,39,29,2,1,37,36,210,136,185,115,10,8,6,6,2,3,0,0,7,4 -050,01,015,Alabama,Calhoun County,10,8,7446,3597,3849,2895,2924,605,842,16,24,42,24,7,5,32,30,3466,3749,2777,2839,602,835,14,24,41,24,5,3,27,24,131,100,118,85,3,7,2,0,1,0,2,2,5,6 -050,01,015,Alabama,Calhoun County,10,9,7500,3707,3793,2992,2945,641,732,15,26,25,43,4,4,30,43,3616,3705,2918,2875,635,723,11,23,24,43,4,3,24,38,91,88,74,70,6,9,4,3,1,0,0,1,6,5 -050,01,015,Alabama,Calhoun County,10,10,8366,4032,4334,3210,3278,721,941,24,23,25,36,4,3,48,53,3948,4257,3136,3213,715,934,23,19,25,36,3,3,46,52,84,77,74,65,6,7,1,4,0,0,1,0,2,1 -050,01,015,Alabama,Calhoun County,10,11,8656,4249,4407,3337,3415,810,871,33,28,22,51,2,1,45,41,4197,4337,3290,3355,807,866,32,28,22,49,2,0,44,39,52,70,47,60,3,5,1,0,0,2,0,1,1,2 -050,01,015,Alabama,Calhoun County,10,12,7798,3708,4090,3020,3263,605,724,28,15,15,57,3,1,37,30,3647,4044,2972,3229,598,719,25,13,14,55,3,1,35,27,61,46,48,34,7,5,3,2,1,2,0,0,2,3 -050,01,015,Alabama,Calhoun County,10,13,6515,3131,3384,2680,2839,407,466,17,14,11,40,1,2,15,23,3105,3352,2660,2811,403,463,17,14,10,40,1,2,14,22,26,32,20,28,4,3,0,0,1,0,0,0,1,1 -050,01,015,Alabama,Calhoun County,10,14,5005,2321,2684,2012,2272,265,371,12,12,8,16,3,0,21,13,2307,2666,2001,2256,265,369,12,12,7,16,3,0,19,13,14,18,11,16,0,2,0,0,1,0,0,0,2,0 -050,01,015,Alabama,Calhoun County,10,15,4177,1837,2340,1593,1990,222,323,5,5,4,12,1,0,12,10,1822,2323,1582,1973,218,323,5,5,4,12,1,0,12,10,15,17,11,17,4,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,10,16,3263,1274,1989,1135,1699,121,264,8,3,3,10,0,1,7,12,1266,1977,1127,1687,121,264,8,3,3,10,0,1,7,12,8,12,8,12,0,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,10,17,2342,801,1541,724,1330,74,194,0,2,2,3,1,1,0,11,793,1530,718,1320,72,194,0,2,2,3,1,1,0,10,8,11,6,10,2,0,0,0,0,0,0,0,0,1 -050,01,015,Alabama,Calhoun County,10,18,1758,464,1294,390,1094,72,191,1,0,0,4,0,0,1,5,461,1290,388,1092,71,189,1,0,0,4,0,0,1,5,3,4,2,2,1,2,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,10,99,117274,56462,60812,43853,46154,11094,12977,308,284,342,478,55,44,810,875,54572,59249,42249,44862,10960,12849,255,243,326,463,46,37,736,795,1890,1563,1604,1292,134,128,53,41,16,15,9,7,74,80 -050,01,015,Alabama,Calhoun County,11,0,1400,695,705,483,462,163,190,3,2,2,5,2,0,42,46,631,656,427,422,160,187,1,1,2,5,1,0,40,41,64,49,56,40,3,3,2,1,0,0,1,0,2,5 -050,01,015,Alabama,Calhoun County,11,1,5833,3043,2790,2151,1922,712,716,13,7,28,30,6,0,133,115,2847,2588,1994,1751,694,706,9,3,27,28,5,0,118,100,196,202,157,171,18,10,4,4,1,2,1,0,15,15 -050,01,015,Alabama,Calhoun County,11,2,7471,3833,3638,2720,2583,939,874,21,14,26,44,3,3,124,120,3634,3468,2556,2447,921,857,13,11,26,42,2,3,116,108,199,170,164,136,18,17,8,3,0,2,1,0,8,12 -050,01,015,Alabama,Calhoun County,11,3,7660,3905,3755,2840,2725,938,905,16,13,23,17,6,3,82,92,3758,3622,2724,2612,923,898,11,11,21,15,4,3,75,83,147,133,116,113,15,7,5,2,2,2,2,0,7,9 -050,01,015,Alabama,Calhoun County,11,4,8754,4398,4356,3034,2915,1265,1338,14,14,20,14,4,11,61,64,4217,4235,2884,2813,1244,1332,11,10,17,13,3,9,58,58,181,121,150,102,21,6,3,4,3,1,1,2,3,6 -050,01,015,Alabama,Calhoun County,11,5,8849,4394,4455,3106,3008,1179,1305,27,22,35,36,3,3,44,81,4187,4263,2933,2862,1160,1276,18,14,34,36,3,2,39,73,207,192,173,146,19,29,9,8,1,0,0,1,5,8 -050,01,015,Alabama,Calhoun County,11,6,7842,3828,4014,2891,2874,814,1002,35,21,29,41,3,4,56,72,3593,3855,2693,2745,803,986,25,16,25,39,2,4,45,65,235,159,198,129,11,16,10,5,4,2,1,0,11,7 -050,01,015,Alabama,Calhoun County,11,7,7182,3533,3649,2721,2685,698,860,22,25,45,36,3,3,44,40,3276,3495,2494,2555,687,853,15,19,41,29,3,3,36,36,257,154,227,130,11,7,7,6,4,7,0,0,8,4 -050,01,015,Alabama,Calhoun County,11,8,7306,3567,3739,2857,2850,613,805,16,20,46,27,4,6,31,31,3418,3626,2724,2752,608,798,14,20,45,27,2,4,25,25,149,113,133,98,5,7,2,0,1,0,2,2,6,6 -050,01,015,Alabama,Calhoun County,11,9,7488,3681,3807,2968,2942,635,761,15,23,34,40,4,4,25,37,3573,3714,2876,2868,630,753,11,20,33,40,4,3,19,30,108,93,92,74,5,8,4,3,1,0,0,1,6,7 -050,01,015,Alabama,Calhoun County,11,10,8387,4119,4268,3305,3235,705,916,31,22,26,34,4,5,48,56,4017,4187,3217,3168,699,908,28,18,25,33,4,5,44,55,102,81,88,67,6,8,3,4,1,1,0,0,4,1 -050,01,015,Alabama,Calhoun County,11,11,8696,4181,4515,3293,3476,783,913,29,32,20,54,2,1,54,39,4118,4441,3236,3416,779,906,28,32,20,52,2,0,53,35,63,74,57,60,4,7,1,0,0,2,0,1,1,4 -050,01,015,Alabama,Calhoun County,11,12,7911,3798,4113,3062,3275,654,740,25,16,17,53,4,0,36,29,3739,4056,3017,3232,646,733,22,14,16,51,4,0,34,26,59,57,45,43,8,7,3,2,1,2,0,0,2,3 -050,01,015,Alabama,Calhoun County,11,13,6782,3233,3549,2743,2956,442,515,21,8,11,43,1,2,15,25,3202,3514,2721,2926,436,512,21,8,9,43,1,2,14,23,31,35,22,30,6,3,0,0,2,0,0,0,1,2 -050,01,015,Alabama,Calhoun County,11,14,5230,2437,2793,2089,2374,305,357,10,20,8,26,3,1,22,15,2421,2774,2076,2357,305,355,10,20,7,26,3,1,20,15,16,19,13,17,0,2,0,0,1,0,0,0,2,0 -050,01,015,Alabama,Calhoun County,11,15,4103,1825,2278,1602,1958,202,293,6,5,4,13,1,0,10,9,1809,2258,1591,1938,197,293,6,5,4,13,1,0,10,9,16,20,11,20,5,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,11,16,3337,1317,2020,1178,1729,121,260,8,3,3,14,0,1,7,13,1307,2007,1168,1716,121,260,8,3,3,14,0,1,7,13,10,13,10,13,0,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,11,17,2361,832,1529,744,1291,85,218,0,2,2,7,1,1,0,10,824,1518,738,1281,83,218,0,2,2,7,1,1,0,9,8,11,6,10,2,0,0,0,0,0,0,0,0,1 -050,01,015,Alabama,Calhoun County,11,18,1771,460,1311,391,1129,67,173,1,0,0,4,0,0,1,5,456,1307,388,1127,66,171,1,0,0,4,0,0,1,5,4,4,3,2,1,2,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,11,99,118363,57079,61284,44178,46389,11320,13141,313,269,379,538,54,48,835,899,55027,59584,42457,44988,11162,13002,252,227,357,517,45,41,754,809,2052,1700,1721,1401,158,139,61,42,22,21,9,7,81,90 -050,01,015,Alabama,Calhoun County,12,0,1377,685,692,470,453,167,189,5,2,2,5,2,0,39,43,620,641,417,414,162,184,1,1,2,5,1,0,37,37,65,51,53,39,5,5,4,1,0,0,1,0,2,6 -050,01,015,Alabama,Calhoun County,12,1,5827,3020,2807,2096,1910,726,739,14,9,28,30,6,0,150,119,2809,2609,1931,1748,702,725,10,5,27,27,5,0,134,104,211,198,165,162,24,14,4,4,1,3,1,0,16,15 -050,01,015,Alabama,Calhoun County,12,2,7521,3881,3640,2745,2571,961,879,19,14,27,32,3,4,126,140,3673,3455,2576,2423,940,860,11,11,26,29,2,4,118,128,208,185,169,148,21,19,8,3,1,3,1,0,8,12 -050,01,015,Alabama,Calhoun County,12,3,7719,3936,3783,2848,2767,951,885,17,11,26,20,7,2,87,98,3772,3629,2716,2634,935,878,12,9,24,18,5,2,80,88,164,154,132,133,16,7,5,2,2,2,2,0,7,10 -050,01,015,Alabama,Calhoun County,12,4,8607,4343,4264,3013,2860,1217,1297,22,14,22,20,4,10,65,63,4154,4139,2849,2755,1202,1291,19,10,19,19,3,7,62,57,189,125,164,105,15,6,3,4,3,1,1,3,3,6 -050,01,015,Alabama,Calhoun County,12,5,9022,4474,4548,3167,3059,1193,1352,25,24,35,26,3,3,51,84,4254,4337,2984,2896,1171,1322,16,16,34,26,3,2,46,75,220,211,183,163,22,30,9,8,1,0,0,1,5,9 -050,01,015,Alabama,Calhoun County,12,6,7601,3711,3890,2813,2783,781,973,29,23,24,33,5,7,59,71,3448,3720,2589,2641,767,959,19,18,20,31,4,7,49,64,263,170,224,142,14,14,10,5,4,2,1,0,10,7 -050,01,015,Alabama,Calhoun County,12,7,7186,3517,3669,2710,2686,701,876,24,20,33,38,3,3,46,46,3303,3502,2528,2540,688,869,17,14,28,34,3,3,39,42,214,167,182,146,13,7,7,6,5,4,0,0,7,4 -050,01,015,Alabama,Calhoun County,12,8,7232,3524,3708,2797,2836,628,784,19,16,42,36,6,6,32,30,3370,3599,2658,2742,624,777,17,16,41,36,4,4,26,24,154,109,139,94,4,7,2,0,1,0,2,2,6,6 -050,01,015,Alabama,Calhoun County,12,9,7395,3637,3758,2940,2888,622,770,16,21,30,34,3,5,26,40,3525,3665,2846,2814,616,762,11,17,29,34,3,4,20,34,112,93,94,74,6,8,5,4,1,0,0,1,6,6 -050,01,015,Alabama,Calhoun County,12,10,8291,4086,4205,3282,3204,701,886,28,25,24,33,5,5,46,52,3979,4128,3190,3142,695,878,25,20,23,32,4,5,42,51,107,77,92,62,6,8,3,5,1,1,1,0,4,1 -050,01,015,Alabama,Calhoun County,12,11,8695,4172,4523,3297,3470,779,925,24,35,22,48,4,1,46,44,4100,4453,3232,3414,775,918,23,35,21,46,4,0,45,40,72,70,65,56,4,7,1,0,1,2,0,1,1,4 -050,01,015,Alabama,Calhoun County,12,12,8024,3858,4166,3088,3302,681,766,28,16,17,51,4,1,40,30,3807,4103,3051,3253,673,759,25,14,16,49,4,1,38,27,51,63,37,49,8,7,3,2,1,2,0,0,2,3 -050,01,015,Alabama,Calhoun County,12,13,7085,3372,3713,2857,3069,463,553,21,14,12,46,1,2,18,29,3333,3686,2826,3047,458,550,21,14,10,46,1,2,17,27,39,27,31,22,5,3,0,0,2,0,0,0,1,2 -050,01,015,Alabama,Calhoun County,12,14,5337,2470,2867,2110,2445,310,364,12,16,9,26,2,1,27,15,2451,2849,2094,2429,310,362,12,16,8,26,2,1,25,15,19,18,16,16,0,2,0,0,1,0,0,0,2,0 -050,01,015,Alabama,Calhoun County,12,15,4100,1849,2251,1617,1934,207,286,6,5,7,14,1,1,11,11,1835,2230,1607,1913,203,286,6,5,7,14,1,1,11,11,14,21,10,21,4,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,12,16,3374,1336,2038,1191,1737,124,267,11,3,3,17,0,1,7,13,1328,2022,1183,1721,124,267,11,3,3,17,0,1,7,13,8,16,8,16,0,0,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,12,17,2375,838,1537,749,1305,86,212,0,2,2,6,1,1,0,11,830,1525,742,1294,85,212,0,2,2,6,1,1,0,10,8,12,7,11,1,0,0,0,0,0,0,0,0,1 -050,01,015,Alabama,Calhoun County,12,18,1804,467,1337,396,1151,69,177,1,0,0,4,0,0,1,5,463,1333,393,1149,68,175,1,0,0,4,0,0,1,5,4,4,3,2,1,2,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,12,99,118572,57176,61396,44186,46430,11367,13180,321,270,365,519,60,53,877,944,55054,59625,42412,44969,11198,13034,257,226,340,499,50,45,797,852,2122,1771,1774,1461,169,146,64,44,25,20,10,8,80,92 -050,01,015,Alabama,Calhoun County,13,0,1376,682,694,470,452,167,188,5,3,1,6,0,0,39,45,618,640,417,413,162,183,1,1,1,5,0,0,37,38,64,54,53,39,5,5,4,2,0,1,0,0,2,7 -050,01,015,Alabama,Calhoun County,13,1,5820,3013,2807,2085,1899,725,740,15,5,28,30,6,2,154,131,2791,2606,1919,1738,703,728,10,2,27,28,3,0,129,110,222,201,166,161,22,12,5,3,1,2,3,2,25,21 -050,01,015,Alabama,Calhoun County,13,2,7541,3899,3642,2740,2564,960,876,16,12,31,32,6,5,146,153,3670,3446,2568,2414,938,856,10,10,27,28,4,5,123,133,229,196,172,150,22,20,6,2,4,4,2,0,23,20 -050,01,015,Alabama,Calhoun County,13,3,7691,3923,3768,2838,2756,946,880,15,10,25,20,7,3,92,99,3759,3616,2706,2624,932,876,12,7,24,20,2,2,83,87,164,152,132,132,14,4,3,3,1,0,5,1,9,12 -050,01,015,Alabama,Calhoun County,13,4,8534,4312,4222,2989,2834,1210,1287,18,10,19,24,4,6,72,61,4120,4099,2826,2730,1197,1283,17,8,17,21,1,2,62,55,192,123,163,104,13,4,1,2,2,3,3,4,10,6 -050,01,015,Alabama,Calhoun County,13,5,9020,4471,4549,3167,3059,1202,1356,22,20,34,27,2,3,44,84,4252,4341,2983,2895,1180,1327,14,14,34,25,2,3,39,77,219,208,184,164,22,29,8,6,0,2,0,0,5,7 -050,01,015,Alabama,Calhoun County,13,6,7586,3711,3875,2820,2782,782,974,26,19,20,28,6,7,57,65,3454,3708,2596,2639,772,960,18,17,18,28,5,6,45,58,257,167,224,143,10,14,8,2,2,0,1,1,12,7 -050,01,015,Alabama,Calhoun County,13,7,7225,3531,3694,2723,2700,707,882,24,19,28,38,2,6,47,49,3319,3525,2541,2555,694,875,17,14,26,35,2,3,39,43,212,169,182,145,13,7,7,5,2,3,0,3,8,6 -050,01,015,Alabama,Calhoun County,13,8,7183,3496,3687,2771,2804,626,783,18,15,42,40,5,8,34,37,3331,3571,2630,2709,622,776,16,15,40,37,2,5,21,29,165,116,141,95,4,7,2,0,2,3,3,3,13,8 -050,01,015,Alabama,Calhoun County,13,9,7383,3638,3745,2930,2882,623,766,16,19,33,36,4,4,32,38,3520,3649,2836,2805,617,760,11,16,31,35,2,1,23,32,118,96,94,77,6,6,5,3,2,1,2,3,9,6 -050,01,015,Alabama,Calhoun County,13,10,8226,4058,4168,3261,3183,696,882,25,21,26,32,3,5,47,45,3948,4087,3168,3121,693,874,23,18,23,29,3,4,38,41,110,81,93,62,3,8,2,3,3,3,0,1,9,4 -050,01,015,Alabama,Calhoun County,13,11,8699,4173,4526,3296,3469,781,930,23,35,24,48,6,2,43,42,4098,4453,3230,3412,778,923,22,35,23,47,4,1,41,35,75,73,66,57,3,7,1,0,1,1,2,1,2,7 -050,01,015,Alabama,Calhoun County,13,12,8063,3882,4181,3101,3316,685,767,30,16,17,49,6,2,43,31,3826,4120,3062,3265,677,762,25,14,16,49,6,2,40,28,56,61,39,51,8,5,5,2,1,0,0,0,3,3 -050,01,015,Alabama,Calhoun County,13,13,7143,3399,3744,2878,3091,470,559,22,16,12,50,1,1,16,27,3360,3716,2846,3068,466,557,21,15,10,49,1,1,16,26,39,28,32,23,4,2,1,1,2,1,0,0,0,1 -050,01,015,Alabama,Calhoun County,13,14,5368,2483,2885,2120,2456,314,364,13,19,7,25,1,0,28,21,2459,2865,2102,2440,312,363,11,17,7,25,1,0,26,20,24,20,18,16,2,1,2,2,0,0,0,0,2,1 -050,01,015,Alabama,Calhoun County,13,15,4105,1851,2254,1619,1939,206,287,5,5,6,13,0,1,15,9,1837,2232,1610,1918,203,287,4,4,6,13,0,1,14,9,14,22,9,21,3,0,1,1,0,0,0,0,1,0 -050,01,015,Alabama,Calhoun County,13,16,3361,1332,2029,1185,1730,126,270,11,3,3,15,0,1,7,10,1321,2011,1178,1714,123,269,10,2,3,15,0,1,7,10,11,18,7,16,3,1,1,1,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,13,17,2371,841,1530,746,1301,87,213,1,2,3,6,1,0,3,8,834,1519,742,1292,85,212,0,2,3,6,1,0,3,7,7,11,4,9,2,1,1,0,0,0,0,0,0,1 -050,01,015,Alabama,Calhoun County,13,18,1815,472,1343,398,1155,69,178,1,0,0,5,0,0,4,5,469,1339,395,1152,69,177,1,0,0,5,0,0,4,5,3,4,3,3,0,1,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,13,99,118510,57167,61343,44137,46372,11382,13182,306,249,359,524,60,56,923,960,54986,59543,42355,44904,11223,13048,243,211,336,500,39,37,790,843,2181,1800,1782,1468,159,134,63,38,23,24,21,19,133,117 -050,01,017,Alabama,Chambers County,1,0,453,229,224,138,132,86,88,1,0,3,0,0,0,1,4,223,221,134,130,84,88,1,0,3,0,0,0,1,3,6,3,4,2,2,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,1,1,1979,1027,952,558,501,454,440,0,0,3,2,0,0,12,9,1011,939,546,490,450,438,0,0,3,2,0,0,12,9,16,13,12,11,4,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,1,2,2605,1288,1317,687,656,591,649,1,2,2,1,0,0,7,9,1274,1308,675,650,589,646,1,2,2,1,0,0,7,9,14,9,12,6,2,3,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,1,3,2477,1267,1210,666,617,591,581,1,1,2,2,0,0,7,9,1257,1205,657,615,590,579,1,1,2,2,0,0,7,8,10,5,9,2,1,2,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,1,4,2480,1275,1205,663,587,605,608,1,1,1,5,0,0,5,4,1267,1196,659,581,602,605,1,1,1,5,0,0,4,4,8,9,4,6,3,3,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,1,5,2187,1050,1137,580,597,464,530,1,4,0,1,0,0,5,5,1040,1121,571,588,464,523,1,4,0,1,0,0,4,5,10,16,9,9,0,7,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,1,6,2389,1133,1256,718,733,403,512,1,2,8,6,0,0,3,3,1118,1238,706,721,400,506,1,2,8,6,0,0,3,3,15,18,12,12,3,6,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,1,7,2363,1211,1152,762,665,445,480,0,3,1,2,0,0,3,2,1201,1146,755,659,443,480,0,3,1,2,0,0,2,2,10,6,7,6,2,0,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,1,8,2505,1225,1280,748,700,462,562,1,0,4,4,0,0,10,14,1214,1277,742,698,457,562,1,0,4,4,0,0,10,13,11,3,6,2,5,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,1,9,2615,1257,1358,748,779,501,570,1,0,1,3,0,0,6,6,1247,1344,745,772,496,563,0,0,1,3,0,0,5,6,10,14,3,7,5,7,1,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,1,10,2533,1249,1284,775,767,463,500,7,3,3,6,0,0,1,8,1240,1282,769,767,460,499,7,3,3,6,0,0,1,7,9,2,6,0,3,1,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,1,11,2437,1148,1289,792,828,345,453,3,1,2,1,0,0,6,6,1144,1281,788,821,345,452,3,1,2,1,0,0,6,6,4,8,4,7,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,1,12,1987,942,1045,663,694,267,345,3,3,2,1,0,0,7,2,941,1039,662,690,267,343,3,3,2,1,0,0,7,2,1,6,1,4,0,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,1,13,1662,775,887,570,602,200,279,3,1,0,1,0,0,2,4,771,878,567,596,199,276,3,1,0,1,0,0,2,4,4,9,3,6,1,3,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,1,14,1595,702,893,532,639,167,246,2,1,0,3,0,0,1,4,698,890,529,638,166,244,2,1,0,3,0,0,1,4,4,3,3,1,1,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,1,15,1396,563,833,434,605,126,224,1,1,0,0,0,0,2,3,560,831,432,603,126,224,1,1,0,0,0,0,1,3,3,2,2,2,0,0,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,1,16,1211,429,782,345,575,83,202,1,0,0,0,0,0,0,5,427,777,343,571,83,201,1,0,0,0,0,0,0,5,2,5,2,4,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,1,17,908,311,597,236,445,73,149,1,0,0,0,0,0,1,3,307,595,232,443,73,149,1,0,0,0,0,0,1,3,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,1,18,818,211,607,148,446,62,160,1,0,0,0,0,0,0,1,210,602,147,443,62,158,1,0,0,0,0,0,0,1,1,5,1,3,0,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,1,99,36600,17292,19308,10763,11568,6388,7578,30,23,32,38,0,0,79,101,17150,19170,10659,11476,6356,7536,29,23,32,38,0,0,74,97,142,138,104,92,32,42,1,0,0,0,0,0,5,4 -050,01,017,Alabama,Chambers County,2,0,456,230,226,138,133,87,89,1,0,3,0,0,0,1,4,224,223,134,131,85,89,1,0,3,0,0,0,1,3,6,3,4,2,2,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,2,1,1960,1016,944,552,496,450,437,0,0,3,2,0,0,11,9,1000,931,540,485,446,435,0,0,3,2,0,0,11,9,16,13,12,11,4,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,2,2,2583,1278,1305,678,648,587,645,1,2,2,1,0,0,10,9,1264,1296,666,642,585,642,1,2,2,1,0,0,10,9,14,9,12,6,2,3,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,2,3,2480,1269,1211,664,616,595,584,1,1,2,2,0,0,7,8,1259,1206,655,614,594,582,1,1,2,2,0,0,7,7,10,5,9,2,1,2,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,2,4,2483,1278,1205,664,587,607,608,1,1,1,5,0,0,5,4,1270,1196,660,581,604,605,1,1,1,5,0,0,4,4,8,9,4,6,3,3,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,2,5,2204,1060,1144,585,602,469,532,1,4,0,1,0,0,5,5,1050,1128,576,593,469,525,1,4,0,1,0,0,4,5,10,16,9,9,0,7,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,2,6,2361,1120,1241,707,722,401,508,1,2,8,6,0,0,3,3,1105,1223,695,710,398,502,1,2,8,6,0,0,3,3,15,18,12,12,3,6,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,2,7,2353,1206,1147,759,661,443,479,0,3,1,2,0,0,3,2,1196,1141,752,655,441,479,0,3,1,2,0,0,2,2,10,6,7,6,2,0,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,2,8,2495,1221,1274,743,694,463,562,1,0,4,4,0,0,10,14,1210,1271,737,692,458,562,1,0,4,4,0,0,10,13,11,3,6,2,5,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,2,9,2612,1255,1357,747,776,500,572,1,0,1,3,0,0,6,6,1245,1343,744,769,495,565,0,0,1,3,0,0,5,6,10,14,3,7,5,7,1,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,2,10,2549,1259,1290,781,770,467,502,7,3,3,6,0,0,1,9,1250,1288,775,770,464,501,7,3,3,6,0,0,1,8,9,2,6,0,3,1,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,2,11,2463,1160,1303,799,836,350,459,3,1,2,1,0,0,6,6,1156,1295,795,829,350,458,3,1,2,1,0,0,6,6,4,8,4,7,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,2,12,1994,946,1048,667,696,267,346,3,3,2,1,0,0,7,2,945,1042,666,692,267,344,3,3,2,1,0,0,7,2,1,6,1,4,0,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,2,13,1664,776,888,571,603,200,279,3,1,0,1,0,0,2,4,772,879,568,597,199,276,3,1,0,1,0,0,2,4,4,9,3,6,1,3,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,2,14,1584,698,886,528,633,167,245,2,1,0,3,0,0,1,4,694,883,525,632,166,243,2,1,0,3,0,0,1,4,4,3,3,1,1,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,2,15,1385,560,825,431,599,126,222,1,1,0,0,0,0,2,3,557,823,429,597,126,222,1,1,0,0,0,0,1,3,3,2,2,2,0,0,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,2,16,1207,429,778,345,570,83,203,1,0,0,0,0,0,0,5,427,773,343,566,83,202,1,0,0,0,0,0,0,5,2,5,2,4,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,2,17,912,312,600,237,448,73,149,1,0,0,0,0,0,1,3,308,598,233,446,73,149,1,0,0,0,0,0,1,3,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,2,18,826,212,614,150,451,61,162,1,0,0,0,0,0,0,1,211,609,149,448,61,160,1,0,0,0,0,0,0,1,1,5,1,3,0,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,2,99,36571,17285,19286,10746,11541,6396,7583,30,23,32,38,0,0,81,101,17143,19148,10642,11449,6364,7541,29,23,32,38,0,0,76,97,142,138,104,92,32,42,1,0,0,0,0,0,5,4 -050,01,017,Alabama,Chambers County,3,0,446,248,198,133,97,108,96,1,0,3,0,0,0,3,5,242,194,129,94,106,96,1,0,3,0,0,0,3,4,6,4,4,3,2,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,3,1,1848,961,887,537,449,408,426,0,0,4,2,0,0,12,10,942,878,521,442,405,424,0,0,4,2,0,0,12,10,19,9,16,7,3,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,3,2,2622,1286,1336,682,678,592,642,1,2,2,1,0,0,9,13,1270,1319,668,664,590,639,1,2,2,1,0,0,9,13,16,17,14,14,2,3,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,3,3,2502,1286,1216,685,630,591,574,1,1,2,2,0,0,7,9,1275,1208,676,624,589,572,1,1,2,2,0,0,7,9,11,8,9,6,2,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,3,4,2356,1202,1154,625,547,569,597,1,1,1,5,0,0,6,4,1193,1143,620,539,566,594,1,1,1,5,0,0,5,4,9,11,5,8,3,3,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,3,5,2212,1086,1126,608,607,471,508,1,4,1,1,0,0,5,6,1067,1111,591,598,471,502,1,4,0,1,0,0,4,6,19,15,17,9,0,6,0,0,1,0,0,0,1,0 -050,01,017,Alabama,Chambers County,3,6,2284,1084,1200,661,677,411,511,1,2,8,7,0,0,3,3,1062,1178,642,662,408,504,1,2,8,7,0,0,3,3,22,22,19,15,3,7,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,3,7,2305,1171,1134,766,674,398,453,0,2,4,3,0,0,3,2,1153,1126,751,666,396,453,0,2,4,3,0,0,2,2,18,8,15,8,2,0,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,3,8,2502,1229,1273,733,701,479,555,1,0,6,4,0,0,10,13,1214,1267,724,696,473,555,1,0,6,4,0,0,10,12,15,6,9,5,6,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,3,9,2597,1255,1342,747,762,500,571,1,0,1,3,0,0,6,6,1241,1330,740,756,495,565,0,0,1,3,0,0,5,6,14,12,7,6,5,6,1,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,3,10,2548,1259,1289,788,773,460,497,7,3,3,6,0,0,1,10,1248,1285,780,773,457,496,7,3,3,6,0,0,1,7,11,4,8,0,3,1,0,0,0,0,0,0,0,3 -050,01,017,Alabama,Chambers County,3,11,2520,1216,1304,818,836,388,460,3,1,2,1,0,0,5,6,1210,1299,812,832,388,459,3,1,2,1,0,0,5,6,6,5,6,4,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,3,12,1989,930,1059,652,685,266,367,3,4,2,1,0,0,7,2,928,1054,650,681,266,366,3,4,2,1,0,0,7,2,2,5,2,4,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,3,13,1701,786,915,573,620,207,289,3,1,0,1,0,0,3,4,781,907,569,615,206,286,3,1,0,1,0,0,3,4,5,8,4,5,1,3,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,3,14,1594,703,891,534,634,167,249,1,1,0,3,0,0,1,4,698,889,530,633,166,248,1,1,0,3,0,0,1,4,5,2,4,1,1,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,3,15,1358,576,782,442,576,131,202,1,1,1,0,0,0,1,3,575,780,441,574,131,202,1,1,1,0,0,0,1,3,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,3,16,1187,429,758,340,543,88,210,1,0,0,0,0,0,0,5,427,754,338,540,88,209,1,0,0,0,0,0,0,5,2,4,2,3,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,3,17,903,306,597,240,432,64,162,1,0,0,0,0,0,1,3,303,595,237,430,64,162,1,0,0,0,0,0,1,3,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,3,18,800,209,591,146,438,62,152,1,0,0,0,0,0,0,1,208,586,145,435,62,150,1,0,0,0,0,0,0,1,1,5,1,3,0,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,3,99,36274,17222,19052,10710,11359,6360,7521,29,23,40,40,0,0,83,109,17037,18903,10564,11254,6327,7482,28,23,39,40,0,0,79,104,185,149,146,105,33,39,1,0,1,0,0,0,4,5 -050,01,017,Alabama,Chambers County,4,0,430,228,202,134,112,89,84,1,0,2,0,0,0,2,6,222,197,130,108,87,84,1,0,2,0,0,0,2,5,6,5,4,4,2,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,4,1,1832,976,856,555,427,402,414,0,0,3,2,0,0,16,13,948,845,531,418,398,412,0,0,3,2,0,0,16,13,28,11,24,9,4,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,2,2571,1276,1295,658,667,602,612,1,3,2,1,0,0,13,12,1257,1279,642,654,599,609,1,3,2,1,0,0,13,12,19,16,16,13,3,3,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,3,2576,1306,1270,701,626,590,631,1,1,3,2,0,0,11,10,1289,1257,686,616,588,629,1,1,3,2,0,0,11,9,17,13,15,10,2,2,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,4,4,2218,1151,1067,601,523,539,531,1,1,2,5,0,0,8,7,1139,1057,594,517,536,527,1,1,1,5,0,0,7,7,12,10,7,6,3,4,0,0,1,0,0,0,1,0 -050,01,017,Alabama,Chambers County,4,5,2219,1093,1126,600,594,487,520,1,4,1,2,0,0,4,6,1080,1109,590,584,486,513,1,4,0,2,0,0,3,6,13,17,10,10,1,7,0,0,1,0,0,0,1,0 -050,01,017,Alabama,Chambers County,4,6,2168,1040,1128,624,605,402,510,1,2,11,8,0,0,2,3,1014,1107,603,591,397,503,1,2,11,8,0,0,2,3,26,21,21,14,5,7,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,7,2333,1156,1177,779,696,371,473,0,2,3,4,0,0,3,2,1131,1169,759,688,367,473,0,2,3,4,0,0,2,2,25,8,20,8,4,0,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,4,8,2395,1181,1214,687,656,476,543,1,0,8,3,0,0,9,12,1165,1208,677,651,470,543,1,0,8,3,0,0,9,11,16,6,10,5,6,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,4,9,2598,1273,1325,752,766,512,550,2,0,1,3,0,0,6,6,1260,1310,746,757,508,544,0,0,1,3,0,0,5,6,13,15,6,9,4,6,2,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,4,10,2569,1227,1342,754,791,462,533,6,3,3,6,0,0,2,9,1217,1339,747,790,459,532,6,3,3,6,0,0,2,8,10,3,7,1,3,1,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,4,11,2429,1181,1248,750,760,421,479,2,1,2,2,0,0,6,6,1175,1240,744,753,421,478,2,1,2,2,0,0,6,6,6,8,6,7,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,12,2158,1020,1138,723,760,287,372,2,3,2,1,0,0,6,2,1017,1133,721,756,286,371,2,3,2,1,0,0,6,2,3,5,2,4,1,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,13,1717,797,920,586,630,205,284,3,1,0,1,0,0,3,4,792,912,582,624,204,282,3,1,0,1,0,0,3,4,5,8,4,6,1,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,14,1619,709,910,534,622,171,279,2,1,0,4,0,0,2,4,704,906,530,620,170,277,2,1,0,4,0,0,2,4,5,4,4,2,1,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,15,1342,590,752,449,551,137,197,1,1,1,0,0,0,2,3,586,750,446,549,137,197,1,1,1,0,0,0,1,3,4,2,3,2,0,0,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,4,16,1127,398,729,312,511,85,212,1,0,0,0,0,0,0,6,396,725,310,508,85,211,1,0,0,0,0,0,0,6,2,4,2,3,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,17,880,299,581,236,434,60,144,1,0,0,0,0,0,2,3,296,579,233,432,60,144,1,0,0,0,0,0,2,3,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,18,784,209,575,145,421,63,153,1,0,0,0,0,0,0,1,208,570,144,417,63,152,1,0,0,0,0,0,0,1,1,5,1,4,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,99,35965,17110,18855,10580,11152,6361,7521,28,23,44,44,0,0,97,115,16896,18692,10415,11033,6321,7481,26,23,42,44,0,0,92,111,214,163,165,119,40,40,2,0,2,0,0,0,5,4 -050,01,017,Alabama,Chambers County,5,0,436,222,214,125,130,90,77,1,0,2,0,0,0,4,7,217,208,121,125,89,77,1,0,2,0,0,0,4,6,5,6,4,5,1,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,5,1,1791,956,835,550,417,387,404,0,0,4,1,0,0,15,13,928,823,527,407,382,402,0,0,4,1,0,0,15,13,28,12,23,10,5,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,2,2509,1267,1242,646,625,599,596,1,3,2,3,0,0,19,15,1247,1226,630,612,595,593,1,3,2,3,0,0,19,15,20,16,16,13,4,3,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,3,2581,1310,1271,701,638,594,619,1,2,3,3,0,0,11,9,1292,1261,685,630,592,617,1,2,3,3,0,0,11,9,18,10,16,8,2,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,4,2227,1133,1094,582,534,541,549,1,1,1,4,0,0,8,6,1122,1082,573,526,539,545,1,1,1,4,0,0,8,6,11,12,9,8,2,4,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,5,2226,1103,1123,596,601,498,507,1,5,4,3,1,0,3,7,1085,1106,586,591,495,501,1,4,1,3,0,0,2,7,18,17,10,10,3,6,0,1,3,0,1,0,1,0 -050,01,017,Alabama,Chambers County,5,6,2097,1004,1093,596,600,396,482,1,2,9,6,0,0,2,3,973,1072,570,585,392,476,1,2,8,6,0,0,2,3,31,21,26,15,4,6,0,0,1,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,7,2279,1120,1159,736,671,375,479,1,2,4,6,0,0,4,1,1091,1149,712,661,371,479,1,2,4,6,0,0,3,1,29,10,24,10,4,0,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,5,8,2302,1146,1156,675,630,453,506,1,0,10,8,0,0,7,12,1131,1149,666,624,447,506,1,0,10,8,0,0,7,11,15,7,9,6,6,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,5,9,2560,1263,1297,767,738,487,548,1,2,2,3,0,0,6,6,1251,1285,760,731,483,543,0,2,2,3,0,0,6,6,12,12,7,7,4,5,1,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,10,2565,1230,1335,739,781,482,534,5,2,3,7,0,0,1,11,1221,1329,733,779,479,533,5,2,3,7,0,0,1,8,9,6,6,2,3,1,0,0,0,0,0,0,0,3 -050,01,017,Alabama,Chambers County,5,11,2465,1223,1242,754,744,457,489,3,1,2,2,0,0,7,6,1212,1234,745,737,455,488,3,1,2,2,0,0,7,6,11,8,9,7,2,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,12,2233,1035,1198,739,808,286,382,2,4,2,1,0,0,6,3,1031,1194,737,805,284,381,2,4,2,1,0,0,6,3,4,4,2,3,2,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,13,1745,830,915,614,621,211,288,2,1,0,1,0,0,3,4,824,906,609,615,210,285,2,1,0,1,0,0,3,4,6,9,5,6,1,3,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,14,1594,715,879,519,590,192,279,2,1,0,4,0,0,2,5,710,876,515,588,191,278,2,1,0,4,0,0,2,5,5,3,4,2,1,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,15,1301,548,753,417,544,128,201,1,2,1,0,0,0,1,6,545,749,414,542,128,201,1,2,1,0,0,0,1,4,3,4,3,2,0,0,0,0,0,0,0,0,0,2 -050,01,017,Alabama,Chambers County,5,16,1140,412,728,323,524,88,197,1,0,0,1,0,0,0,6,410,723,321,520,88,196,1,0,0,1,0,0,0,6,2,5,2,4,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,17,874,292,582,234,436,56,144,1,0,0,0,0,0,1,2,290,580,232,434,56,144,1,0,0,0,0,0,1,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,18,755,188,567,127,410,60,156,1,0,0,0,0,0,0,1,187,563,126,407,60,155,1,0,0,0,0,0,0,1,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,99,35680,16997,18683,10440,11042,6380,7437,27,28,49,53,1,0,100,123,16767,18515,10262,10919,6336,7400,26,27,45,53,0,0,98,116,230,168,178,123,44,37,1,1,4,0,1,0,2,7 -050,01,017,Alabama,Chambers County,6,0,426,207,219,121,123,81,89,1,0,2,0,0,0,2,7,202,213,117,118,80,89,1,0,2,0,0,0,2,6,5,6,4,5,1,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,6,1,1782,955,827,545,430,389,371,0,0,4,1,0,0,17,25,929,812,524,418,384,369,0,0,4,1,0,0,17,24,26,15,21,12,5,2,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,6,2,2434,1246,1188,645,577,578,589,1,3,2,3,0,0,20,16,1221,1176,624,569,574,585,1,3,2,3,0,0,20,16,25,12,21,8,4,4,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,6,3,2580,1271,1309,688,642,567,652,1,2,3,3,0,0,12,10,1252,1299,671,635,565,650,1,2,3,3,0,0,12,9,19,10,17,7,2,2,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,6,4,2227,1151,1076,588,534,550,530,1,1,2,4,0,0,10,7,1139,1064,580,526,547,526,1,1,1,4,0,0,10,7,12,12,8,8,3,4,0,0,1,0,0,0,0,0 -050,01,017,Alabama,Chambers County,6,5,2149,1060,1089,576,554,473,519,1,5,5,4,1,0,4,7,1043,1073,568,544,470,514,1,4,1,4,0,0,3,7,17,16,8,10,3,5,0,1,4,0,1,0,1,0 -050,01,017,Alabama,Chambers County,6,6,2065,985,1080,584,602,388,467,1,2,10,6,0,0,2,3,962,1054,567,585,383,458,1,2,9,6,0,0,2,3,23,26,17,17,5,9,0,0,1,0,0,0,0,0 -050,01,017,Alabama,Chambers County,6,7,2249,1094,1155,706,673,377,467,1,3,6,9,0,1,4,2,1063,1144,680,662,373,467,1,3,6,9,0,1,3,2,31,11,26,11,4,0,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,6,8,2280,1146,1134,682,614,447,504,1,0,9,6,0,0,7,10,1126,1128,668,609,441,504,1,0,9,6,0,0,7,9,20,6,14,5,6,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,6,9,2511,1225,1286,767,742,448,532,1,2,2,3,0,0,7,7,1213,1274,761,735,444,527,0,2,2,3,0,0,6,7,12,12,6,7,4,5,1,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,6,10,2548,1237,1311,730,753,496,538,5,3,3,7,0,0,3,10,1222,1305,718,750,493,537,5,3,3,7,0,0,3,8,15,6,12,3,3,1,0,0,0,0,0,0,0,2 -050,01,017,Alabama,Chambers County,6,11,2492,1239,1253,753,760,474,483,3,1,2,2,0,1,7,6,1226,1244,742,752,472,482,3,1,2,2,0,1,7,6,13,9,11,8,2,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,6,12,2298,1053,1245,737,822,307,413,2,6,2,1,0,0,5,3,1049,1240,735,819,305,411,2,6,2,1,0,0,5,3,4,5,2,3,2,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,6,13,1827,854,973,628,654,221,313,2,1,0,1,0,0,3,4,848,962,623,646,220,310,2,1,0,1,0,0,3,4,6,11,5,8,1,3,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,6,14,1570,717,853,524,577,189,266,2,1,0,4,0,0,2,5,713,848,520,574,189,264,2,1,0,4,0,0,2,5,4,5,4,3,0,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,6,15,1330,568,762,420,533,144,223,0,2,2,0,0,0,2,4,565,759,417,531,144,223,0,2,2,0,0,0,2,3,3,3,3,2,0,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,6,16,1087,402,685,312,502,89,176,1,0,0,1,0,0,0,6,399,682,310,499,88,176,1,0,0,1,0,0,0,6,3,3,2,3,1,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,6,17,853,279,574,230,413,48,159,1,0,0,0,0,0,0,2,277,572,228,411,48,159,1,0,0,0,0,0,0,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,6,18,755,196,559,145,412,50,146,1,0,0,0,0,0,0,1,195,555,144,409,50,145,1,0,0,0,0,0,0,1,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,6,99,35463,16885,18578,10381,10917,6316,7437,26,32,54,55,1,2,107,135,16644,18404,10197,10792,6270,7396,25,31,48,55,0,2,104,128,241,174,184,125,46,41,1,1,6,0,1,0,3,7 -050,01,017,Alabama,Chambers County,7,0,403,188,215,104,112,78,95,0,0,1,0,0,0,5,8,182,209,99,106,77,95,0,0,1,0,0,0,5,8,6,6,5,6,1,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,7,1,1756,919,837,524,449,374,364,0,0,5,3,0,0,16,21,895,824,505,439,369,363,0,0,5,3,0,0,16,19,24,13,19,10,5,1,0,0,0,0,0,0,0,2 -050,01,017,Alabama,Chambers County,7,2,2364,1213,1151,639,571,558,559,0,1,1,5,1,0,14,15,1187,1130,617,555,554,554,0,1,1,5,1,0,14,15,26,21,22,16,4,5,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,7,3,2554,1241,1313,659,642,560,660,2,1,6,3,1,0,13,7,1221,1303,644,633,555,659,2,1,6,3,1,0,13,7,20,10,15,9,5,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,7,4,2256,1140,1116,608,569,517,531,2,1,2,5,0,0,11,10,1129,1105,600,562,515,527,2,1,1,5,0,0,11,10,11,11,8,7,2,4,0,0,1,0,0,0,0,0 -050,01,017,Alabama,Chambers County,7,5,2059,1022,1037,538,503,469,518,2,5,5,5,3,1,5,5,997,1022,526,494,465,514,1,4,1,5,0,0,4,5,25,15,12,9,4,4,1,1,4,0,3,1,1,0 -050,01,017,Alabama,Chambers County,7,6,2039,974,1065,580,584,375,474,3,0,8,6,2,0,6,1,937,1046,558,571,368,468,0,0,6,6,0,0,5,1,37,19,22,13,7,6,3,0,2,0,2,0,1,0 -050,01,017,Alabama,Chambers County,7,7,2184,1049,1135,653,659,384,463,1,4,7,6,0,1,4,2,1019,1120,629,648,381,460,1,3,6,6,0,1,2,2,30,15,24,11,3,3,0,1,1,0,0,0,2,0 -050,01,017,Alabama,Chambers County,7,8,2287,1168,1119,701,615,447,483,0,1,11,10,0,1,9,9,1148,1103,688,602,440,482,0,1,11,10,0,1,9,7,20,16,13,13,7,1,0,0,0,0,0,0,0,2 -050,01,017,Alabama,Chambers County,7,9,2457,1187,1270,726,722,448,532,3,5,3,6,0,0,7,5,1173,1257,717,714,446,528,1,4,3,6,0,0,6,5,14,13,9,8,2,4,2,1,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,7,10,2539,1217,1322,710,756,493,543,4,4,3,7,0,0,7,12,1209,1317,702,753,493,542,4,4,3,7,0,0,7,11,8,5,8,3,0,1,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,7,11,2491,1218,1273,746,771,462,492,3,1,1,3,0,1,6,5,1207,1266,739,765,459,491,3,1,1,3,0,1,5,5,11,7,7,6,3,1,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,7,12,2402,1116,1286,778,827,330,446,4,5,1,3,0,0,3,5,1108,1280,773,823,327,444,4,5,1,3,0,0,3,5,8,6,5,4,3,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,7,13,1922,897,1025,639,692,248,327,3,1,2,1,0,0,5,4,891,1015,634,684,247,325,3,1,2,1,0,0,5,4,6,10,5,8,1,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,7,14,1554,727,827,524,553,198,266,2,0,0,4,0,0,3,4,722,821,520,549,197,264,2,0,0,4,0,0,3,4,5,6,4,4,1,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,7,15,1325,588,737,437,525,145,207,1,1,2,2,0,0,3,2,586,734,435,523,145,207,1,1,2,2,0,0,3,1,2,3,2,2,0,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,7,16,1090,399,691,296,495,102,190,0,0,0,2,0,0,1,4,397,689,295,493,101,190,0,0,0,2,0,0,1,4,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,7,17,814,264,550,223,395,40,152,0,0,0,1,0,0,1,2,262,550,221,395,40,152,0,0,0,1,0,0,1,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,7,18,783,197,586,145,429,52,156,0,1,0,0,0,0,0,0,196,582,144,426,52,155,0,1,0,0,0,0,0,0,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,7,99,35279,16724,18555,10230,10869,6280,7458,30,31,58,72,7,4,119,121,16466,18373,10046,10735,6231,7420,24,28,50,72,2,3,113,115,258,182,184,134,49,38,6,3,8,0,5,1,6,6 -050,01,017,Alabama,Chambers County,8,0,392,176,216,96,115,74,92,0,0,1,0,0,0,5,9,170,209,91,108,73,92,0,0,1,0,0,0,5,9,6,7,5,7,1,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,8,1,1666,869,797,485,429,357,344,0,0,6,3,0,0,21,21,848,787,470,420,351,343,0,0,6,3,0,0,21,21,21,10,15,9,6,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,8,2,2278,1197,1081,634,511,540,544,0,1,1,5,1,0,21,20,1161,1053,603,490,535,538,0,1,1,5,1,0,21,19,36,28,31,21,5,6,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,8,3,2550,1240,1310,647,673,570,623,1,1,6,3,1,1,15,9,1216,1296,629,660,564,622,1,1,6,3,1,1,15,9,24,14,18,13,6,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,8,4,2307,1185,1122,636,549,531,553,2,2,2,5,1,0,13,13,1168,1111,622,542,530,549,2,2,1,5,0,0,13,13,17,11,14,7,1,4,0,0,1,0,1,0,0,0 -050,01,017,Alabama,Chambers County,8,5,1983,989,994,531,485,441,493,3,4,5,4,3,1,6,7,970,978,523,474,438,490,2,3,1,4,0,0,6,7,19,16,8,11,3,3,1,1,4,0,3,1,0,0 -050,01,017,Alabama,Chambers County,8,6,2042,993,1049,585,575,388,466,3,0,8,6,2,0,7,2,956,1029,564,561,380,460,0,0,6,6,0,0,6,2,37,20,21,14,8,6,3,0,2,0,2,0,1,0 -050,01,017,Alabama,Chambers County,8,7,2100,1000,1100,607,596,379,490,2,4,8,9,0,1,4,0,967,1082,581,583,376,486,1,3,7,9,0,1,2,0,33,18,26,13,3,4,1,1,1,0,0,0,2,0 -050,01,017,Alabama,Chambers County,8,8,2190,1118,1072,690,595,408,455,0,1,11,10,0,1,9,10,1094,1057,673,583,401,454,0,1,11,10,0,1,9,8,24,15,17,12,7,1,0,0,0,0,0,0,0,2 -050,01,017,Alabama,Chambers County,8,9,2411,1153,1258,705,710,434,534,3,5,3,6,0,0,8,3,1139,1247,696,702,432,532,1,4,3,6,0,0,7,3,14,11,9,8,2,2,2,1,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,8,10,2550,1243,1307,722,762,505,526,4,3,4,5,0,0,8,11,1233,1302,712,759,505,525,4,3,4,5,0,0,8,10,10,5,10,3,0,1,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,8,11,2529,1231,1298,751,786,469,501,3,2,1,3,0,1,7,5,1216,1291,741,781,465,499,3,2,1,3,0,1,6,5,15,7,10,5,4,2,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,8,12,2425,1150,1275,794,818,348,443,3,6,1,3,0,0,4,5,1143,1269,790,814,345,441,3,6,1,3,0,0,4,5,7,6,4,4,3,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,8,13,1947,912,1035,637,684,263,343,4,1,3,1,0,0,5,6,907,1027,632,678,263,341,4,1,3,1,0,0,5,6,5,8,5,6,0,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,8,14,1607,753,854,548,563,197,279,4,1,0,5,0,0,4,6,748,847,543,560,197,276,4,0,0,5,0,0,4,6,5,7,5,3,0,3,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,8,15,1325,591,734,441,513,142,218,2,1,3,2,0,0,3,0,588,732,438,511,142,218,2,1,3,2,0,0,3,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,8,16,1062,406,656,307,470,98,181,0,0,0,2,0,0,1,3,404,653,305,467,98,181,0,0,0,2,0,0,1,3,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,8,17,780,253,527,208,386,42,138,1,0,1,1,0,0,1,2,252,526,207,386,42,138,1,0,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,8,18,801,195,606,153,447,42,157,0,1,0,1,0,0,0,0,194,602,152,444,42,156,0,1,0,1,0,0,0,0,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,8,99,34945,16654,18291,10177,10667,6228,7380,35,33,64,74,8,5,142,132,16374,18098,9972,10523,6179,7341,28,29,56,74,2,4,137,127,280,193,205,144,49,39,7,4,8,0,6,1,5,5 -050,01,017,Alabama,Chambers County,9,0,383,184,199,93,102,86,87,0,0,1,0,0,0,4,10,178,191,88,94,85,87,0,0,1,0,0,0,4,10,6,8,5,8,1,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,9,1,1609,782,827,433,457,323,344,0,0,6,2,0,0,20,24,765,812,422,445,317,343,0,0,6,2,0,0,20,22,17,15,11,12,6,1,0,0,0,0,0,0,0,2 -050,01,017,Alabama,Chambers County,9,2,2227,1213,1014,649,476,541,512,1,1,1,5,1,0,20,20,1168,990,610,459,536,506,0,1,1,5,1,0,20,19,45,24,39,17,5,6,1,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,9,3,2491,1199,1292,636,671,538,607,1,1,6,3,1,1,17,9,1175,1272,618,652,532,606,1,1,6,3,1,1,17,9,24,20,18,19,6,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,9,4,2374,1218,1156,670,561,528,572,2,2,3,5,1,0,14,16,1199,1140,655,550,527,567,2,2,1,5,0,0,14,16,19,16,15,11,1,5,0,0,2,0,1,0,0,0 -050,01,017,Alabama,Chambers County,9,5,1869,954,915,512,471,424,428,3,3,6,5,3,1,6,7,930,900,501,460,420,426,2,2,1,5,0,0,6,7,24,15,11,11,4,2,1,1,5,0,3,1,0,0 -050,01,017,Alabama,Chambers County,9,6,2035,987,1048,575,551,393,488,3,0,7,7,2,0,7,2,948,1030,553,537,384,484,0,0,5,7,0,0,6,2,39,18,22,14,9,4,3,0,2,0,2,0,1,0 -050,01,017,Alabama,Chambers County,9,7,2037,988,1049,580,568,390,468,2,4,10,8,0,1,6,0,956,1027,555,551,386,464,1,3,9,8,0,1,5,0,32,22,25,17,4,4,1,1,1,0,0,0,1,0 -050,01,017,Alabama,Chambers County,9,8,2242,1119,1123,703,626,391,478,0,1,15,7,0,1,10,10,1096,1101,687,607,384,477,0,1,15,7,0,1,10,8,23,22,16,19,7,1,0,0,0,0,0,0,0,2 -050,01,017,Alabama,Chambers County,9,9,2341,1139,1202,662,665,464,522,2,5,3,6,0,0,8,4,1125,1191,652,658,462,519,1,4,3,6,0,0,7,4,14,11,10,7,2,3,1,1,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,9,10,2540,1257,1283,722,773,519,494,3,3,4,5,0,0,9,8,1249,1278,714,769,519,493,3,3,4,5,0,0,9,8,8,5,8,4,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,9,11,2630,1242,1388,762,834,469,544,3,2,1,3,0,0,7,5,1224,1379,750,827,464,542,3,2,1,3,0,0,6,5,18,9,12,7,5,2,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,9,12,2363,1152,1211,767,737,377,459,3,7,1,3,0,0,4,5,1140,1207,759,734,373,458,3,7,1,3,0,0,4,5,12,4,8,3,4,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,9,13,2132,995,1137,700,774,283,356,4,1,3,1,0,0,5,5,990,1128,695,767,283,354,4,1,3,1,0,0,5,5,5,9,5,7,0,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,9,14,1608,748,860,553,586,185,262,4,1,0,5,0,0,6,6,742,853,548,582,184,260,4,0,0,5,0,0,6,6,6,7,5,4,1,2,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,9,15,1377,622,755,450,512,165,238,2,1,3,2,0,0,2,2,618,751,446,510,165,237,2,1,3,2,0,0,2,1,4,4,4,2,0,1,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,9,16,1042,410,632,310,437,98,188,0,0,0,4,0,0,2,3,408,629,308,434,98,188,0,0,0,4,0,0,2,3,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,9,17,749,231,518,199,364,30,151,0,0,1,1,0,0,1,2,229,517,197,364,30,151,0,0,1,1,0,0,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,9,18,798,199,599,147,446,52,151,0,1,0,1,0,0,0,0,198,596,146,444,52,150,0,1,0,1,0,0,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,9,99,34847,16639,18208,10123,10611,6256,7349,33,33,71,73,8,4,148,138,16338,17992,9904,10444,6201,7312,26,29,61,73,2,3,144,131,301,216,219,167,55,37,7,4,10,0,6,1,4,7 -050,01,017,Alabama,Chambers County,10,0,401,200,201,102,108,93,83,0,0,0,0,0,0,5,10,194,192,97,99,92,83,0,0,0,0,0,0,5,10,6,9,5,9,1,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,10,1,1564,772,792,402,434,347,332,0,0,6,2,0,0,17,24,753,778,389,423,341,331,0,0,6,2,0,0,17,22,19,14,13,11,6,1,0,0,0,0,0,0,0,2 -050,01,017,Alabama,Chambers County,10,2,2148,1149,999,626,498,495,468,1,2,1,7,2,0,24,24,1111,974,595,480,489,462,0,2,1,7,2,0,24,23,38,25,31,18,6,6,1,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,10,3,2403,1200,1203,619,628,555,559,1,1,6,4,1,0,18,11,1179,1192,604,618,549,558,1,1,6,4,1,0,18,11,21,11,15,10,6,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,10,4,2352,1206,1146,648,560,537,564,2,2,1,4,1,0,17,16,1189,1123,633,542,536,559,2,2,1,4,0,0,17,16,17,23,15,18,1,5,0,0,0,0,1,0,0,0 -050,01,017,Alabama,Chambers County,10,5,1847,929,918,499,460,409,439,3,4,9,5,4,1,5,9,899,903,484,449,406,438,2,2,2,5,0,0,5,9,30,15,15,11,3,1,1,2,7,0,4,1,0,0 -050,01,017,Alabama,Chambers County,10,6,2002,965,1037,563,553,381,475,3,0,9,7,2,0,7,2,917,1020,534,541,371,470,0,0,6,7,0,0,6,2,48,17,29,12,10,5,3,0,3,0,2,0,1,0 -050,01,017,Alabama,Chambers County,10,7,1968,977,991,571,538,387,442,3,3,9,8,0,0,7,0,946,969,548,521,383,438,2,2,8,8,0,0,5,0,31,22,23,17,4,4,1,1,1,0,0,0,2,0 -050,01,017,Alabama,Chambers County,10,8,2211,1082,1129,686,622,374,483,0,1,14,13,0,1,8,9,1054,1110,666,606,366,482,0,1,14,13,0,1,8,7,28,19,20,16,8,1,0,0,0,0,0,0,0,2 -050,01,017,Alabama,Chambers County,10,9,2276,1118,1158,664,653,438,488,3,7,4,6,0,0,9,4,1107,1145,657,645,437,484,1,6,4,6,0,0,8,4,11,13,7,8,1,4,2,1,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,10,10,2483,1238,1245,733,739,491,487,2,2,4,6,0,0,8,11,1227,1238,722,734,491,486,2,2,4,6,0,0,8,10,11,7,11,5,0,1,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,10,11,2649,1241,1408,742,839,486,557,4,2,1,3,0,2,8,5,1225,1397,733,830,480,555,4,2,1,3,0,2,7,5,16,11,9,9,6,2,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,10,12,2436,1188,1248,771,732,411,500,2,7,1,3,0,0,3,6,1180,1244,768,729,406,499,2,7,1,3,0,0,3,6,8,4,3,3,5,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,10,13,2177,994,1183,704,808,277,367,3,1,3,1,0,0,7,6,987,1176,697,802,277,366,3,1,3,1,0,0,7,6,7,7,7,6,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,10,14,1675,787,888,571,600,206,274,4,1,0,6,0,0,6,7,781,881,566,595,205,273,4,0,0,6,0,0,6,7,6,7,5,5,1,1,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,10,15,1360,633,727,447,482,178,239,2,2,4,2,0,0,2,2,630,722,444,480,178,238,2,2,4,2,0,0,2,0,3,5,3,2,0,1,0,0,0,0,0,0,0,2 -050,01,017,Alabama,Chambers County,10,16,1037,400,637,296,448,102,183,0,0,0,3,0,0,2,3,397,635,294,446,101,183,0,0,0,3,0,0,2,3,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,10,17,765,256,509,206,359,49,148,0,0,0,1,0,0,1,1,255,508,205,359,49,148,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,10,18,809,190,619,146,451,44,166,0,1,0,1,0,0,0,0,189,617,145,449,44,166,0,1,0,1,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,10,99,34563,16525,18038,9996,10512,6260,7254,33,36,72,82,10,4,154,150,16220,17824,9781,10348,6201,7219,25,31,61,82,3,3,149,141,305,214,215,164,59,35,8,5,11,0,7,1,5,9 -050,01,017,Alabama,Chambers County,11,0,405,185,220,100,109,81,100,0,0,0,0,0,0,4,11,179,211,95,100,80,100,0,0,0,0,0,0,4,11,6,9,5,9,1,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,11,1,1547,797,750,412,400,361,321,1,0,6,2,0,0,17,27,763,738,386,391,354,320,0,0,6,2,0,0,17,25,34,12,26,9,7,1,1,0,0,0,0,0,0,2 -050,01,017,Alabama,Chambers County,11,2,2100,1117,983,602,491,486,459,1,2,1,7,2,0,25,24,1081,955,574,470,479,453,0,2,1,7,2,0,25,23,36,28,28,21,7,6,1,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,11,3,2346,1194,1152,625,594,539,539,1,2,7,4,1,1,21,12,1169,1141,606,584,533,538,1,2,7,4,1,1,21,12,25,11,19,10,6,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,11,4,2322,1150,1172,624,572,501,575,2,2,3,4,1,0,19,19,1133,1156,611,561,500,570,2,2,1,4,0,0,19,19,17,16,13,11,1,5,0,0,2,0,1,0,0,0 -050,01,017,Alabama,Chambers County,11,5,1871,955,916,513,458,420,436,3,4,10,7,4,1,5,10,918,900,495,446,414,435,2,2,2,7,0,0,5,10,37,16,18,12,6,1,1,2,8,0,4,1,0,0 -050,01,017,Alabama,Chambers County,11,6,1932,929,1003,527,525,378,466,3,0,12,10,2,0,7,2,886,981,505,506,366,463,0,0,9,10,0,0,6,2,43,22,22,19,12,3,3,0,3,0,2,0,1,0 -050,01,017,Alabama,Chambers County,11,7,1907,932,975,553,534,361,429,3,3,9,9,0,0,6,0,906,962,534,526,357,425,2,2,8,9,0,0,5,0,26,13,19,8,4,4,1,1,1,0,0,0,1,0 -050,01,017,Alabama,Chambers County,11,8,2178,1047,1131,653,614,371,496,0,1,15,10,0,1,8,9,1022,1114,639,600,360,495,0,1,15,10,0,1,8,7,25,17,14,14,11,1,0,0,0,0,0,0,0,2 -050,01,017,Alabama,Chambers County,11,9,2305,1163,1142,702,640,446,485,2,7,4,6,0,0,9,4,1143,1131,685,632,445,483,1,6,4,6,0,0,8,4,20,11,17,8,1,2,1,1,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,11,10,2452,1215,1237,741,730,460,488,2,2,4,6,0,0,8,11,1205,1229,731,724,460,487,2,2,4,6,0,0,8,10,10,8,10,6,0,1,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,11,11,2641,1257,1384,738,806,507,566,3,2,1,4,0,1,8,5,1237,1371,725,795,501,564,3,2,1,4,0,1,7,5,20,13,13,11,6,2,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,11,12,2459,1176,1283,752,765,418,501,2,8,1,3,0,0,3,6,1168,1279,749,762,413,500,2,8,1,3,0,0,3,6,8,4,3,3,5,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,11,13,2228,1019,1209,721,800,286,401,3,1,3,1,0,0,6,6,1012,1203,714,795,286,400,3,1,3,1,0,0,6,6,7,6,7,5,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,11,14,1763,815,948,597,636,207,298,4,1,0,6,0,0,7,7,808,943,591,634,206,296,4,0,0,6,0,0,7,7,7,5,6,2,1,2,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,11,15,1324,631,693,454,466,168,220,2,2,5,2,0,0,2,3,628,688,451,464,168,219,2,2,5,2,0,0,2,1,3,5,3,2,0,1,0,0,0,0,0,0,0,2 -050,01,017,Alabama,Chambers County,11,16,1091,417,674,308,458,107,209,0,0,0,4,0,0,2,3,414,671,306,455,106,209,0,0,0,4,0,0,2,3,3,3,2,3,1,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,11,17,724,231,493,183,345,46,146,0,0,1,1,0,0,1,1,230,492,182,345,46,146,0,0,1,1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,11,18,789,200,589,167,430,33,157,0,1,0,1,0,0,0,0,199,587,166,428,33,157,0,1,0,1,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,11,99,34384,16430,17954,9972,10373,6176,7292,32,38,82,87,10,4,158,160,16101,17752,9745,10218,6107,7260,24,33,68,87,3,3,154,151,329,202,227,155,69,32,8,5,14,0,7,1,4,9 -050,01,017,Alabama,Chambers County,12,0,390,180,210,95,104,80,95,0,0,0,0,0,0,5,11,174,200,90,94,79,95,0,0,0,0,0,0,5,11,6,10,5,10,1,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,12,1,1563,801,762,403,400,371,336,1,0,7,2,0,0,19,24,773,746,383,387,364,335,0,0,7,2,0,0,19,22,28,16,20,13,7,1,1,0,0,0,0,0,0,2 -050,01,017,Alabama,Chambers County,12,2,2045,1081,964,581,481,470,447,1,2,1,7,2,0,26,27,1049,937,557,461,463,441,0,2,1,7,2,0,26,26,32,27,24,20,7,6,1,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,12,3,2237,1134,1103,600,590,504,494,1,2,7,4,1,1,21,12,1110,1091,583,579,497,493,1,2,7,4,1,1,21,12,24,12,17,11,7,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,12,4,2298,1168,1130,626,540,515,565,2,2,4,4,1,0,20,19,1146,1116,609,531,514,560,2,2,1,4,0,0,20,19,22,14,17,9,1,5,0,0,3,0,1,0,0,0 -050,01,017,Alabama,Chambers County,12,5,1925,1003,922,557,484,424,416,3,4,10,7,4,1,5,10,961,906,535,472,417,415,2,2,2,7,0,0,5,10,42,16,22,12,7,1,1,2,8,0,4,1,0,0 -050,01,017,Alabama,Chambers County,12,6,1887,902,985,511,516,366,460,3,0,13,7,2,0,7,2,858,968,488,503,354,456,0,0,10,7,0,0,6,2,44,17,23,13,12,4,3,0,3,0,2,0,1,0 -050,01,017,Alabama,Chambers County,12,7,1914,922,992,539,535,363,442,3,3,11,11,0,1,6,0,893,974,518,522,358,438,2,2,10,11,0,1,5,0,29,18,21,13,5,4,1,1,1,0,0,0,1,0 -050,01,017,Alabama,Chambers County,12,8,2147,1032,1115,626,598,378,492,0,1,20,14,0,1,8,9,1004,1097,607,583,369,491,0,1,20,14,0,1,8,7,28,18,19,15,9,1,0,0,0,0,0,0,0,2 -050,01,017,Alabama,Chambers County,12,9,2285,1157,1128,718,638,423,473,3,7,4,6,0,0,9,4,1144,1117,709,630,422,471,1,6,4,6,0,0,8,4,13,11,9,8,1,2,2,1,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,12,10,2402,1168,1234,705,728,449,485,2,2,4,6,0,0,8,13,1158,1226,695,722,449,484,2,2,4,6,0,0,8,12,10,8,10,6,0,1,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,12,11,2647,1262,1385,750,807,500,566,3,2,1,4,0,1,8,5,1241,1376,736,800,494,564,3,2,1,4,0,1,7,5,21,9,14,7,6,2,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,12,12,2467,1165,1302,745,783,414,502,2,8,1,3,0,0,3,6,1155,1298,740,780,409,501,2,8,1,3,0,0,3,6,10,4,5,3,5,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,12,13,2302,1077,1225,759,806,306,411,3,1,3,1,0,0,6,6,1070,1219,752,801,306,410,3,1,3,1,0,0,6,6,7,6,7,5,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,12,14,1823,830,993,602,664,217,315,4,1,0,6,0,0,7,7,823,985,596,659,216,313,4,0,0,6,0,0,7,7,7,8,6,5,1,2,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,12,15,1285,626,659,451,442,166,210,2,2,5,2,0,0,2,3,623,654,448,440,166,209,2,2,5,2,0,0,2,1,3,5,3,2,0,1,0,0,0,0,0,0,0,2 -050,01,017,Alabama,Chambers County,12,16,1085,419,666,320,466,97,192,0,0,0,4,0,0,2,4,416,663,318,463,96,192,0,0,0,4,0,0,2,4,3,3,2,3,1,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,12,17,742,247,495,195,346,50,147,0,0,1,1,0,0,1,1,246,494,194,346,50,147,0,0,1,1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1 -050,01,017,Alabama,Chambers County,12,18,771,189,582,157,428,32,152,0,1,0,1,0,0,0,0,188,580,156,426,32,152,0,1,0,1,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,12,99,34215,16363,17852,9940,10356,6125,7200,33,38,92,90,10,5,163,163,16032,17647,9714,10199,6055,7167,24,33,77,90,3,4,159,154,331,205,226,157,70,33,9,5,15,0,7,1,4,9 -050,01,017,Alabama,Chambers County,13,0,391,181,210,95,103,80,95,0,0,0,1,0,0,6,11,175,196,90,93,79,94,0,0,0,0,0,0,6,9,6,14,5,10,1,1,0,0,0,1,0,0,0,2 -050,01,017,Alabama,Chambers County,13,1,1561,798,763,401,397,368,338,0,0,8,2,3,1,18,25,767,747,380,385,364,336,0,0,7,1,0,0,16,25,31,16,21,12,4,2,0,0,1,1,3,1,2,0 -050,01,017,Alabama,Chambers County,13,2,2047,1082,965,581,480,468,443,3,4,3,6,3,2,24,30,1044,936,555,458,461,438,2,3,2,6,2,2,22,29,38,29,26,22,7,5,1,1,1,0,1,0,2,1 -050,01,017,Alabama,Chambers County,13,3,2234,1133,1101,596,584,500,490,4,3,6,3,1,1,26,20,1104,1085,579,575,495,489,2,2,6,3,0,0,22,16,29,16,17,9,5,1,2,1,0,0,1,1,4,4 -050,01,017,Alabama,Chambers County,13,4,2278,1161,1117,620,532,512,558,3,5,5,5,1,0,20,17,1137,1103,604,524,511,554,2,3,2,5,0,0,18,17,24,14,16,8,1,4,1,2,3,0,1,0,2,0 -050,01,017,Alabama,Chambers County,13,5,1921,1003,918,554,482,427,415,2,4,11,6,2,0,7,11,965,900,532,470,421,414,2,1,4,5,0,0,6,10,38,18,22,12,6,1,0,3,7,1,2,0,1,1 -050,01,017,Alabama,Chambers County,13,6,1885,894,991,511,515,364,461,2,0,10,6,1,4,6,5,859,972,488,502,356,456,1,0,8,6,1,3,5,5,35,19,23,13,8,5,1,0,2,0,0,1,1,0 -050,01,017,Alabama,Chambers County,13,7,1924,924,1000,539,538,365,445,3,2,8,10,0,3,9,2,897,982,519,525,361,441,2,2,8,10,0,2,7,2,27,18,20,13,4,4,1,0,0,0,0,1,2,0 -050,01,017,Alabama,Chambers County,13,8,2128,1020,1108,619,590,375,493,1,2,19,13,1,2,5,8,989,1087,600,574,367,490,0,2,19,13,0,0,3,8,31,21,19,16,8,3,1,0,0,0,1,2,2,0 -050,01,017,Alabama,Chambers County,13,9,2275,1152,1123,713,634,421,470,6,6,4,6,0,0,8,7,1139,1111,705,625,420,469,3,4,4,6,0,0,7,7,13,12,8,9,1,1,3,2,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,13,10,2382,1159,1223,701,723,447,483,2,2,5,3,0,1,4,11,1147,1215,690,717,447,481,2,2,5,3,0,1,3,11,12,8,11,6,0,2,0,0,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,13,11,2647,1259,1388,748,806,499,569,2,3,1,3,2,1,7,6,1242,1379,735,799,495,567,2,3,1,3,2,1,7,6,17,9,13,7,4,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,13,12,2470,1170,1300,745,786,416,501,2,6,2,2,0,0,5,5,1160,1295,740,782,411,500,2,6,2,2,0,0,5,5,10,5,5,4,5,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,13,13,2318,1086,1232,763,811,311,414,3,2,3,1,0,0,6,4,1079,1226,756,806,311,413,3,2,3,1,0,0,6,4,7,6,7,5,0,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,13,14,1823,831,992,603,666,219,314,3,2,0,5,0,0,6,5,823,986,596,661,218,313,3,2,0,5,0,0,6,5,8,6,7,5,1,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,13,15,1281,622,659,449,443,166,210,1,3,4,2,0,0,2,1,619,657,446,441,166,210,1,3,4,2,0,0,2,1,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,13,16,1076,413,663,316,463,94,193,0,1,0,3,0,0,3,3,412,659,315,459,94,193,0,1,0,3,0,0,3,3,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,13,17,742,243,499,192,350,50,147,0,0,1,2,0,0,0,0,243,496,192,347,50,147,0,0,1,2,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,13,18,774,190,584,157,428,33,154,0,1,0,1,0,0,0,0,189,582,156,426,33,154,0,1,0,1,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,13,99,34157,16321,17836,9903,10331,6115,7193,37,46,90,80,14,15,162,171,15990,17614,9678,10169,6060,7159,27,37,76,77,5,9,144,163,331,222,225,162,55,34,10,9,14,3,9,6,18,8 -050,01,019,Alabama,Cherokee County,1,0,295,151,144,140,128,9,12,1,0,0,0,0,0,1,4,149,139,138,124,9,12,1,0,0,0,0,0,1,3,2,5,2,4,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,1,1,1133,597,536,543,492,44,37,0,3,0,0,0,0,10,4,584,520,530,476,44,37,0,3,0,0,0,0,10,4,13,16,13,16,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,2,1513,803,710,736,666,53,39,3,2,0,0,0,0,11,3,795,700,729,656,52,39,3,2,0,0,0,0,11,3,8,10,7,10,1,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,3,1498,799,699,731,643,55,46,3,0,0,2,0,0,10,8,787,693,720,639,55,46,3,0,0,0,0,0,9,8,12,6,11,4,0,0,0,0,0,2,0,0,1,0 -050,01,019,Alabama,Cherokee County,1,4,1411,701,710,633,653,56,45,2,3,5,3,0,0,5,6,688,705,622,648,56,45,2,3,4,3,0,0,4,6,13,5,11,5,0,0,0,0,1,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,1,5,1280,622,658,565,598,51,54,2,0,1,2,0,0,3,4,615,649,558,589,51,54,2,0,1,2,0,0,3,4,7,9,7,9,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,6,1544,799,745,757,690,38,46,0,2,0,2,0,0,4,5,788,740,747,685,38,46,0,2,0,2,0,0,3,5,11,5,10,5,0,0,0,0,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,1,7,1594,817,777,766,732,39,37,4,3,0,2,0,0,8,3,805,773,754,728,39,37,4,3,0,2,0,0,8,3,12,4,12,4,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,8,1683,840,843,797,784,36,50,5,3,0,1,0,0,2,5,833,838,790,780,36,50,5,3,0,1,0,0,2,4,7,5,7,4,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,1,9,1788,893,895,827,825,56,57,3,4,3,3,0,0,4,6,891,888,825,821,56,55,3,4,3,3,0,0,4,5,2,7,2,4,0,2,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,1,10,1656,830,826,767,760,49,49,3,6,1,3,0,0,10,8,823,825,761,760,49,49,3,5,1,3,0,0,9,8,7,1,6,0,0,0,0,1,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,1,11,1746,864,882,815,827,42,50,3,2,1,0,0,0,3,3,862,880,813,825,42,50,3,2,1,0,0,0,3,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,12,1551,720,831,679,785,32,33,3,5,1,1,0,0,5,7,716,822,676,776,32,33,3,5,0,1,0,0,5,7,4,9,3,9,0,0,0,0,1,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,13,1407,712,695,672,652,30,36,1,0,2,1,0,0,7,6,707,690,667,647,30,36,1,0,2,1,0,0,7,6,5,5,5,5,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,14,1265,607,658,580,625,20,28,2,0,1,1,0,0,4,4,606,658,579,625,20,28,2,0,1,1,0,0,4,4,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,15,992,440,552,429,519,10,29,0,0,0,0,0,0,1,4,440,549,429,517,10,29,0,0,0,0,0,0,1,3,0,3,0,2,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,1,16,684,275,409,266,394,8,13,0,0,0,0,0,0,1,2,275,407,266,392,8,13,0,0,0,0,0,0,1,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,17,474,170,304,166,290,4,11,0,0,0,0,0,0,0,3,170,303,166,289,4,11,0,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,18,395,115,280,107,259,8,20,0,0,0,0,0,0,0,1,115,280,107,259,8,20,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,99,23909,11755,12154,10976,11322,640,692,35,33,15,21,0,0,89,86,11649,12059,10877,11236,639,690,35,32,13,19,0,0,85,82,106,95,99,86,1,2,0,1,2,2,0,0,4,4 -050,01,019,Alabama,Cherokee County,2,0,296,152,144,141,129,9,12,1,0,0,0,0,0,1,3,150,139,139,125,9,12,1,0,0,0,0,0,1,2,2,5,2,4,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,2,1,1132,598,534,545,491,44,36,0,3,0,0,0,0,9,4,585,518,532,475,44,36,0,3,0,0,0,0,9,4,13,16,13,16,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,2,1513,804,709,736,665,53,39,3,2,0,0,0,0,12,3,796,699,729,655,52,39,3,2,0,0,0,0,12,3,8,10,7,10,1,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,3,1505,802,703,734,647,55,46,3,0,0,2,0,0,10,8,790,697,723,643,55,46,3,0,0,0,0,0,9,8,12,6,11,4,0,0,0,0,0,2,0,0,1,0 -050,01,019,Alabama,Cherokee County,2,4,1418,705,713,637,656,56,45,2,3,5,3,0,0,5,6,692,708,626,651,56,45,2,3,4,3,0,0,4,6,13,5,11,5,0,0,0,0,1,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,2,5,1296,629,667,572,607,51,54,2,0,1,2,0,0,3,4,622,658,565,598,51,54,2,0,1,2,0,0,3,4,7,9,7,9,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,6,1535,793,742,751,687,38,46,0,2,0,2,0,0,4,5,781,737,740,682,38,46,0,2,0,2,0,0,3,5,12,5,11,5,0,0,0,0,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,2,7,1595,819,776,768,731,39,37,4,3,0,2,0,0,8,3,807,772,756,727,39,37,4,3,0,2,0,0,8,3,12,4,12,4,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,8,1680,838,842,795,783,36,50,5,3,0,1,0,0,2,5,831,837,788,779,36,50,5,3,0,1,0,0,2,4,7,5,7,4,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,2,9,1798,900,898,833,827,57,58,3,4,3,3,0,0,4,6,898,891,831,823,57,56,3,4,3,3,0,0,4,5,2,7,2,4,0,2,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,2,10,1671,838,833,775,767,49,49,3,6,1,3,0,0,10,8,831,832,769,767,49,49,3,5,1,3,0,0,9,8,7,1,6,0,0,0,0,1,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,2,11,1773,878,895,828,839,43,51,3,2,1,0,0,0,3,3,876,893,826,837,43,51,3,2,1,0,0,0,3,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,12,1564,726,838,685,792,33,33,3,5,1,1,0,0,4,7,722,829,682,783,33,33,3,5,0,1,0,0,4,7,4,9,3,9,0,0,0,0,1,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,13,1415,717,698,677,655,30,36,1,0,2,1,0,0,7,6,712,693,672,650,30,36,1,0,2,1,0,0,7,6,5,5,5,5,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,14,1264,607,657,579,624,21,28,2,0,1,1,0,0,4,4,606,657,578,624,21,28,2,0,1,1,0,0,4,4,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,15,993,441,552,430,519,10,29,0,0,0,0,0,0,1,4,441,549,430,517,10,29,0,0,0,0,0,0,1,3,0,3,0,2,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,2,16,687,276,411,267,396,8,13,0,0,0,0,0,0,1,2,276,409,267,394,8,13,0,0,0,0,0,0,1,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,17,477,172,305,168,291,4,11,0,0,0,0,0,0,0,3,172,304,168,290,4,11,0,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,18,394,115,279,107,258,8,20,0,0,0,0,0,0,0,1,115,279,107,258,8,20,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,99,24006,11810,12196,11028,11364,644,693,35,33,15,21,0,0,88,85,11703,12101,10928,11278,643,691,35,32,13,19,0,0,84,81,107,95,100,86,1,2,0,1,2,2,0,0,4,4 -050,01,019,Alabama,Cherokee County,3,0,289,141,148,126,135,12,10,1,0,0,0,0,0,2,3,139,143,124,131,12,10,1,0,0,0,0,0,2,2,2,5,2,4,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,3,1,1130,581,549,540,503,32,38,0,3,0,0,0,0,9,5,567,527,526,481,32,38,0,3,0,0,0,0,9,5,14,22,14,22,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,2,1522,820,702,752,661,52,36,3,2,0,0,0,0,13,3,808,691,741,650,51,36,3,2,0,0,0,0,13,3,12,11,11,11,1,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,3,1505,801,704,731,649,56,45,3,0,0,2,0,0,11,8,788,696,719,643,56,45,3,0,0,0,0,0,10,8,13,8,12,6,0,0,0,0,0,2,0,0,1,0 -050,01,019,Alabama,Cherokee County,3,4,1381,706,675,649,633,44,30,3,3,5,3,0,0,5,6,689,670,634,628,44,30,3,3,4,3,0,0,4,6,17,5,15,5,0,0,0,0,1,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,3,5,1323,671,652,613,599,52,48,2,0,1,2,0,0,3,3,659,643,601,590,52,48,2,0,1,2,0,0,3,3,12,9,12,9,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,6,1456,721,735,678,687,39,39,0,2,0,2,0,0,4,5,709,726,667,678,39,39,0,2,0,2,0,0,3,5,12,9,11,9,0,0,0,0,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,3,7,1603,836,767,786,720,38,39,4,3,0,2,0,0,8,3,827,763,777,716,38,39,4,3,0,2,0,0,8,3,9,4,9,4,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,8,1704,842,862,802,797,33,56,5,3,0,1,0,0,2,5,834,855,794,791,33,56,5,3,0,1,0,0,2,4,8,7,8,6,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,3,9,1770,901,869,844,806,47,49,3,4,3,3,0,0,4,7,897,863,840,802,47,48,3,4,3,3,0,0,4,6,4,6,4,4,0,1,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,3,10,1746,856,890,795,820,47,53,3,6,1,3,0,0,10,8,847,889,787,820,47,53,3,5,1,3,0,0,9,8,9,1,8,0,0,0,0,1,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,3,11,1839,919,920,861,866,51,48,3,2,1,0,0,0,3,4,917,918,859,864,51,48,3,2,1,0,0,0,3,4,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,12,1574,732,842,692,793,31,36,3,5,1,1,0,0,5,7,728,834,689,785,31,36,3,5,0,1,0,0,5,7,4,8,3,8,0,0,0,0,1,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,13,1478,755,723,713,682,31,34,2,0,2,1,0,0,7,6,750,718,708,677,31,34,2,0,2,1,0,0,7,6,5,5,5,5,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,14,1281,623,658,593,626,23,28,2,0,1,1,0,0,4,3,622,658,592,626,23,28,2,0,1,1,0,0,4,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,15,1029,461,568,447,536,12,26,1,0,0,0,0,0,1,6,461,565,447,534,12,26,1,0,0,0,0,0,1,5,0,3,0,2,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,3,16,690,280,410,271,385,7,23,0,0,0,0,0,0,2,2,280,408,271,383,7,23,0,0,0,0,0,0,2,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,17,456,162,294,158,276,4,15,0,0,0,0,0,0,0,3,162,293,158,275,4,15,0,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,18,406,116,290,110,272,6,17,0,0,0,0,0,0,0,1,116,290,110,272,6,17,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,99,24182,11924,12258,11161,11446,617,670,38,33,15,21,0,0,93,88,11800,12150,11044,11346,616,669,38,32,13,19,0,0,89,84,124,108,117,100,1,1,0,1,2,2,0,0,4,4 -050,01,019,Alabama,Cherokee County,4,0,270,128,142,113,132,12,7,1,0,0,0,0,0,2,3,125,138,110,129,12,7,1,0,0,0,0,0,2,2,3,4,3,3,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,4,1,1181,603,578,550,521,41,49,1,3,0,0,0,0,11,5,588,558,535,501,41,49,1,3,0,0,0,0,11,5,15,20,15,20,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,2,1514,817,697,752,657,49,32,3,3,0,1,0,0,13,4,805,683,741,643,48,32,3,3,0,1,0,0,13,4,12,14,11,14,1,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,3,1543,820,723,748,665,53,47,4,0,0,2,0,0,15,9,811,714,740,658,53,47,4,0,0,0,0,0,14,9,9,9,8,7,0,0,0,0,0,2,0,0,1,0 -050,01,019,Alabama,Cherokee County,4,4,1364,677,687,621,642,41,31,3,3,5,3,0,0,7,8,656,681,603,636,41,31,3,3,4,3,0,0,5,8,21,6,18,6,0,0,0,0,1,0,0,0,2,0 -050,01,019,Alabama,Cherokee County,4,5,1349,690,659,628,603,51,51,3,0,1,2,0,0,7,3,680,648,619,592,51,51,2,0,1,2,0,0,7,3,10,11,9,11,0,0,1,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,6,1383,684,699,647,657,33,33,0,2,0,2,0,0,4,5,675,692,639,650,33,33,0,2,0,2,0,0,3,5,9,7,8,7,0,0,0,0,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,4,7,1582,827,755,781,710,34,36,4,3,0,2,0,0,8,4,814,751,768,706,34,36,4,3,0,2,0,0,8,4,13,4,13,4,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,8,1691,852,839,812,775,33,55,5,3,0,1,0,0,2,5,844,833,804,770,33,55,5,3,0,1,0,0,2,4,8,6,8,5,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,4,9,1764,879,885,818,822,49,48,4,4,3,3,0,0,5,8,874,878,813,818,49,46,4,4,3,3,0,0,5,7,5,7,5,4,0,2,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,4,10,1828,918,910,844,841,58,51,4,6,1,3,0,0,11,9,911,909,838,841,58,51,4,5,1,3,0,0,10,9,7,1,6,0,0,0,0,1,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,4,11,1818,899,919,841,862,49,50,4,3,1,0,0,0,4,4,896,917,838,860,49,50,4,3,1,0,0,0,4,4,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,12,1740,852,888,806,835,36,39,3,5,1,1,0,0,6,8,848,879,803,826,36,39,3,5,0,1,0,0,6,8,4,9,3,9,0,0,0,0,1,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,13,1472,734,738,692,695,31,36,3,1,2,1,0,0,6,5,729,734,687,691,31,36,3,1,2,1,0,0,6,5,5,4,5,4,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,14,1321,660,661,624,631,26,26,2,0,1,1,0,0,7,3,659,661,623,631,26,26,2,0,1,1,0,0,7,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,15,1008,445,563,431,531,12,27,0,0,0,0,0,0,2,5,444,560,430,529,12,27,0,0,0,0,0,0,2,4,1,3,1,2,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,4,16,712,293,419,282,394,9,23,0,0,0,0,0,0,2,2,293,418,282,393,9,23,0,0,0,0,0,0,2,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,17,470,167,303,162,286,5,14,0,0,0,0,0,0,0,3,167,302,162,285,5,14,0,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,18,393,107,286,100,267,7,18,0,0,0,0,0,0,0,1,107,286,100,267,7,18,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,99,24403,12052,12351,11252,11526,629,673,44,36,15,22,0,0,112,94,11926,12242,11135,11426,628,671,43,35,13,20,0,0,107,90,126,109,117,100,1,2,1,1,2,2,0,0,5,4 -050,01,019,Alabama,Cherokee County,5,0,262,132,130,119,121,9,5,1,0,0,0,0,0,3,4,129,126,116,118,9,5,1,0,0,0,0,0,3,3,3,4,3,3,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,5,1,1178,603,575,547,513,41,53,1,3,0,0,0,0,14,6,588,558,532,496,41,53,1,3,0,0,0,0,14,6,15,17,15,17,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,2,1483,768,715,709,670,40,32,3,3,1,2,0,0,15,8,756,700,698,655,39,32,3,3,1,2,0,0,15,8,12,15,11,15,1,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,3,1598,872,726,805,669,48,45,4,0,0,2,0,0,15,10,863,716,797,661,48,45,4,0,0,0,0,0,14,10,9,10,8,8,0,0,0,0,0,2,0,0,1,0 -050,01,019,Alabama,Cherokee County,5,4,1401,691,710,633,666,40,30,3,3,4,2,0,0,11,9,674,702,620,658,40,30,3,3,3,2,0,0,8,9,17,8,13,8,0,0,0,0,1,0,0,0,3,0 -050,01,019,Alabama,Cherokee County,5,5,1326,673,653,609,600,52,49,4,0,1,2,0,0,7,2,663,644,601,591,52,49,2,0,1,2,0,0,7,2,10,9,8,9,0,0,2,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,6,1351,687,664,648,623,34,33,0,1,1,2,0,0,4,5,677,650,639,609,34,33,0,1,1,2,0,0,3,5,10,14,9,14,0,0,0,0,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,5,7,1579,805,774,757,724,37,39,3,3,0,2,0,0,8,6,795,770,747,720,37,39,3,3,0,2,0,0,8,6,10,4,10,4,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,8,1710,874,836,832,782,37,46,3,3,0,1,0,0,2,4,865,827,823,774,37,46,3,3,0,1,0,0,2,3,9,9,9,8,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,5,9,1763,884,879,831,820,41,42,5,5,2,3,0,0,5,9,877,871,824,814,41,41,5,5,2,3,0,0,5,8,7,8,7,6,0,1,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,5,10,1866,940,926,866,854,59,54,4,6,1,3,0,0,10,9,932,924,859,853,59,54,4,5,1,3,0,0,9,9,8,2,7,1,0,0,0,1,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,5,11,1777,886,891,824,830,52,51,5,4,1,1,0,0,4,5,883,888,821,827,52,51,5,4,1,1,0,0,4,5,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,12,1781,872,909,821,852,40,42,4,5,1,1,0,0,6,9,868,903,818,846,40,42,4,5,0,1,0,0,6,9,4,6,3,6,0,0,0,0,1,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,13,1569,753,816,710,770,30,38,4,1,2,1,0,0,7,6,749,812,706,766,30,38,4,1,2,1,0,0,7,6,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,14,1318,653,665,618,632,24,24,3,1,1,1,0,0,7,7,652,665,617,632,24,24,3,1,1,1,0,0,7,7,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,15,1021,463,558,446,528,14,25,1,0,0,0,0,0,2,5,462,554,445,525,14,25,1,0,0,0,0,0,2,4,1,4,1,3,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,5,16,731,306,425,292,398,12,25,0,0,0,0,0,0,2,2,306,423,292,396,12,25,0,0,0,0,0,0,2,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,17,495,175,320,169,304,5,14,0,0,0,0,0,0,1,2,175,319,169,303,5,14,0,0,0,0,0,0,1,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,18,382,103,279,97,265,6,13,0,0,0,0,0,0,0,1,103,279,97,265,6,13,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,99,24591,12140,12451,11333,11621,621,660,48,38,15,23,0,0,123,109,12017,12331,11221,11509,620,659,46,37,13,21,0,0,117,105,123,120,112,112,1,1,2,1,2,2,0,0,6,4 -050,01,019,Alabama,Cherokee County,6,0,285,135,150,126,139,5,6,1,0,0,0,0,0,3,5,132,147,123,137,5,6,1,0,0,0,0,0,3,4,3,3,3,2,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,6,1,1118,568,550,507,489,42,50,1,3,0,0,0,0,18,8,554,529,493,468,42,50,1,3,0,0,0,0,18,8,14,21,14,21,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,2,1516,790,726,729,680,41,31,3,3,1,2,0,0,16,10,780,708,720,662,40,31,3,3,1,2,0,0,16,10,10,18,9,18,1,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,3,1616,859,757,785,700,54,44,4,1,0,2,0,0,16,10,851,746,778,691,54,44,4,1,0,0,0,0,15,10,8,11,7,9,0,0,0,0,0,2,0,0,1,0 -050,01,019,Alabama,Cherokee County,6,4,1469,724,745,665,693,40,37,4,4,4,2,0,0,11,9,704,737,649,685,40,37,4,4,3,2,0,0,8,9,20,8,16,8,0,0,0,0,1,0,0,0,3,0 -050,01,019,Alabama,Cherokee County,6,5,1298,653,645,589,604,50,36,5,1,1,2,0,0,8,2,638,636,576,595,50,36,3,1,1,2,0,0,8,2,15,9,13,9,0,0,2,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,6,1305,648,657,605,616,39,33,0,1,1,2,0,0,3,5,640,649,598,608,39,33,0,1,1,2,0,0,2,5,8,8,7,8,0,0,0,0,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,6,7,1608,827,781,780,725,37,44,3,3,0,2,0,0,7,7,817,777,770,721,37,44,3,3,0,2,0,0,7,7,10,4,10,4,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,8,1645,824,821,781,770,37,42,4,4,0,1,0,0,2,4,816,812,773,762,37,42,4,4,0,1,0,0,2,3,8,9,8,8,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,6,9,1797,914,883,865,821,36,44,5,5,2,3,1,0,5,10,907,875,858,815,36,43,5,5,2,3,1,0,5,9,7,8,7,6,0,1,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,6,10,1901,947,954,874,881,58,56,4,6,1,3,0,0,10,8,939,953,867,880,58,56,4,6,1,3,0,0,9,8,8,1,7,1,0,0,0,0,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,6,11,1821,906,915,848,851,48,54,5,4,1,1,0,0,4,5,903,912,845,848,48,54,5,4,1,1,0,0,4,5,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,12,1851,915,936,859,880,42,38,6,5,1,2,0,0,7,11,911,930,856,874,42,38,6,5,0,2,0,0,7,11,4,6,3,6,0,0,0,0,1,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,13,1644,774,870,731,822,31,40,4,1,2,1,0,0,6,6,770,866,727,818,31,40,4,1,2,1,0,0,6,6,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,14,1351,677,674,641,642,24,26,4,1,1,1,0,0,7,4,676,674,640,642,24,26,4,1,1,1,0,0,7,4,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,15,1050,476,574,457,538,13,29,1,0,0,0,0,0,5,7,474,571,455,536,13,29,1,0,0,0,0,0,5,6,2,3,2,2,0,0,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,6,16,751,315,436,300,406,12,26,1,0,0,0,0,0,2,4,315,435,300,405,12,26,1,0,0,0,0,0,2,4,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,17,499,173,326,167,307,5,17,1,0,0,0,0,0,0,2,173,325,167,306,5,17,1,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,18,362,102,260,97,247,5,12,0,0,0,0,0,0,0,1,102,260,97,247,5,12,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,99,24887,12227,12660,11406,11811,619,665,56,42,15,24,1,0,130,118,12102,12542,11292,11700,618,664,54,42,13,22,1,0,124,114,125,118,114,111,1,1,2,0,2,2,0,0,6,4 -050,01,019,Alabama,Cherokee County,7,0,267,122,145,111,136,6,4,1,0,0,1,0,0,4,4,118,143,107,134,6,4,1,0,0,1,0,0,4,4,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,1,1101,531,570,476,516,35,41,1,1,1,2,0,0,18,10,516,542,462,490,35,41,1,1,1,1,0,0,17,9,15,28,14,26,0,0,0,0,0,1,0,0,1,1 -050,01,019,Alabama,Cherokee County,7,2,1492,777,715,722,667,39,30,2,1,2,3,0,0,12,14,766,694,711,646,39,30,2,1,2,3,0,0,12,14,11,21,11,21,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,3,1606,825,781,751,723,53,39,6,4,1,4,0,0,14,11,817,764,744,710,53,39,5,2,1,3,0,0,14,10,8,17,7,13,0,0,1,2,0,1,0,0,0,1 -050,01,019,Alabama,Cherokee County,7,4,1502,780,722,711,677,50,33,6,1,3,1,0,0,10,10,758,712,691,667,50,33,6,1,3,1,0,0,8,10,22,10,20,10,0,0,0,0,0,0,0,0,2,0 -050,01,019,Alabama,Cherokee County,7,5,1254,608,646,556,595,38,40,5,2,1,1,0,0,8,8,594,637,544,586,38,40,3,2,1,1,0,0,8,8,14,9,12,9,0,0,2,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,6,1330,667,663,620,614,38,40,2,1,2,1,2,1,3,6,656,652,612,604,38,40,2,1,2,1,0,0,2,6,11,11,8,10,0,0,0,0,0,0,2,1,1,0 -050,01,019,Alabama,Cherokee County,7,7,1544,787,757,744,703,36,43,3,2,0,3,0,0,4,6,781,752,738,699,36,43,3,1,0,3,0,0,4,6,6,5,6,4,0,0,0,1,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,8,1637,831,806,787,767,36,32,4,2,0,1,1,0,3,4,817,795,775,757,36,32,3,2,0,0,0,0,3,4,14,11,12,10,0,0,1,0,0,1,1,0,0,0 -050,01,019,Alabama,Cherokee County,7,9,1750,891,859,842,795,37,47,4,5,1,4,1,0,6,8,883,852,834,789,37,46,4,5,1,4,1,0,6,8,8,7,8,6,0,1,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,10,1915,981,934,903,867,61,52,3,7,1,1,0,0,13,7,973,932,896,866,61,52,3,6,1,1,0,0,12,7,8,2,7,1,0,0,0,1,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,7,11,1871,929,942,874,872,44,57,6,6,2,1,0,0,3,6,925,937,870,867,44,57,6,6,2,1,0,0,3,6,4,5,4,5,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,12,1915,948,967,889,902,42,45,5,6,4,3,0,0,8,11,943,963,885,898,42,45,5,6,3,3,0,0,8,11,5,4,4,4,0,0,0,0,1,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,13,1708,805,903,757,862,34,32,5,1,1,0,0,0,8,8,802,900,754,859,34,32,5,1,1,0,0,0,8,8,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,14,1374,703,671,660,640,35,24,3,1,1,0,0,0,4,6,702,668,659,637,35,24,3,1,1,0,0,0,4,6,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,15,1108,517,591,500,558,11,26,2,1,0,0,0,0,4,6,514,590,497,557,11,26,2,1,0,0,0,0,4,6,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,16,777,323,454,313,428,7,23,1,0,0,0,0,0,2,3,323,452,313,426,7,23,1,0,0,0,0,0,2,3,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,17,499,166,333,159,317,4,14,1,0,0,0,0,0,2,2,166,333,159,317,4,14,1,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,18,381,108,273,103,260,5,12,0,0,0,0,0,0,0,1,107,272,102,259,5,12,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,99,25031,12299,12732,11478,11899,611,634,60,41,20,26,4,1,126,131,12161,12590,11353,11768,611,633,56,37,19,23,1,0,121,129,138,142,125,131,0,1,4,4,1,3,3,1,5,2 -050,01,019,Alabama,Cherokee County,8,0,280,138,142,128,134,5,5,1,0,0,1,0,0,4,2,134,141,124,133,5,5,1,0,0,1,0,0,4,2,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,1,1112,534,578,480,532,32,30,2,1,1,2,0,1,19,12,520,558,468,515,31,30,2,1,1,1,0,0,18,11,14,20,12,17,1,0,0,0,0,1,0,1,1,1 -050,01,019,Alabama,Cherokee County,8,2,1551,817,734,762,674,34,37,4,3,2,3,0,0,15,17,801,713,748,654,34,37,3,2,2,3,0,0,14,17,16,21,14,20,0,0,1,1,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,8,3,1602,827,775,745,712,61,40,5,5,1,4,0,0,15,14,818,759,738,701,61,40,3,3,1,4,0,0,15,11,9,16,7,11,0,0,2,2,0,0,0,0,0,3 -050,01,019,Alabama,Cherokee County,8,4,1519,801,718,726,670,53,35,6,1,3,1,0,0,13,11,780,708,707,660,53,35,6,1,3,1,0,0,11,11,21,10,19,10,0,0,0,0,0,0,0,0,2,0 -050,01,019,Alabama,Cherokee County,8,5,1221,603,618,552,575,35,31,5,2,1,1,0,0,10,9,591,607,542,564,35,31,3,2,1,1,0,0,10,9,12,11,10,11,0,0,2,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,6,1356,699,657,648,614,41,32,2,3,4,2,2,1,2,5,685,646,636,604,41,32,2,3,4,2,0,0,2,5,14,11,12,10,0,0,0,0,0,0,2,1,0,0 -050,01,019,Alabama,Cherokee County,8,7,1459,743,716,701,666,36,40,3,1,0,3,0,0,3,6,737,709,695,660,36,40,3,0,0,3,0,0,3,6,6,7,6,6,0,0,0,1,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,8,1667,834,833,789,792,34,34,5,2,0,1,1,0,5,4,824,823,781,783,34,34,4,2,0,0,0,0,5,4,10,10,8,9,0,0,1,0,0,1,1,0,0,0 -050,01,019,Alabama,Cherokee County,8,9,1766,920,846,871,779,36,47,4,5,1,5,1,0,7,10,912,838,863,773,36,46,4,5,1,4,1,0,7,10,8,8,8,6,0,1,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,10,1937,1009,928,927,866,66,49,4,6,1,1,0,0,11,6,1002,926,921,865,66,49,3,5,1,1,0,0,11,6,7,2,6,1,0,0,1,1,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,11,1968,947,1021,893,950,40,56,7,8,2,1,0,0,5,6,943,1016,889,945,40,56,7,8,2,1,0,0,5,6,4,5,4,5,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,12,1983,1000,983,926,918,57,46,5,6,3,3,0,0,9,10,995,979,921,914,57,46,5,6,3,3,0,0,9,10,5,4,5,4,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,13,1755,828,927,781,873,33,44,5,1,1,1,0,0,8,8,825,924,778,870,33,44,5,1,1,1,0,0,8,8,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,14,1448,745,703,700,677,36,19,3,2,0,1,0,0,6,4,742,700,697,674,36,19,3,2,0,1,0,0,6,4,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,15,1131,547,584,523,548,15,30,3,0,0,0,0,0,6,6,543,582,519,546,15,30,3,0,0,0,0,0,6,6,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,16,817,337,480,323,452,11,22,1,1,0,1,0,0,2,4,337,478,323,450,11,22,1,1,0,1,0,0,2,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,17,500,174,326,168,311,4,15,1,0,0,0,0,0,1,0,173,326,167,311,4,15,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,18,394,115,279,112,269,3,9,0,0,0,0,0,0,0,1,114,278,111,268,3,9,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,99,25466,12618,12848,11755,12012,632,621,66,47,20,31,4,2,141,135,12476,12711,11628,11890,631,620,59,42,20,28,1,0,137,131,142,137,127,122,1,1,7,5,0,3,3,2,4,4 -050,01,019,Alabama,Cherokee County,9,0,270,147,123,137,115,4,5,1,0,0,1,0,0,5,2,143,122,133,114,4,5,1,0,0,1,0,0,5,2,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,1,1089,522,567,474,515,28,32,2,2,1,2,0,1,17,15,505,537,459,490,27,31,2,1,1,1,0,0,16,14,17,30,15,25,1,1,0,1,0,1,0,1,1,1 -050,01,019,Alabama,Cherokee County,9,2,1559,807,752,738,691,46,38,4,3,2,3,0,0,17,17,797,728,730,668,46,38,3,2,2,3,0,0,16,17,10,24,8,23,0,0,1,1,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,9,3,1587,838,749,759,693,56,35,5,5,1,4,0,0,17,12,823,730,746,678,56,35,3,3,1,4,0,0,17,10,15,19,13,15,0,0,2,2,0,0,0,0,0,2 -050,01,019,Alabama,Cherokee County,9,4,1560,832,728,760,672,49,40,6,1,3,1,0,0,14,14,809,718,739,662,49,40,6,1,3,1,0,0,12,14,23,10,21,10,0,0,0,0,0,0,0,0,2,0 -050,01,019,Alabama,Cherokee County,9,5,1192,572,620,527,584,30,26,5,2,1,1,0,0,9,7,562,610,519,574,30,26,3,2,1,1,0,0,9,7,10,10,8,10,0,0,2,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,6,1352,704,648,646,606,49,31,2,2,4,2,2,1,1,6,690,636,634,595,49,31,2,2,4,2,0,0,1,6,14,12,12,11,0,0,0,0,0,0,2,1,0,0 -050,01,019,Alabama,Cherokee County,9,7,1409,699,710,660,666,34,34,1,1,0,3,0,0,4,6,695,706,656,663,34,34,1,0,0,3,0,0,4,6,4,4,4,3,0,0,0,1,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,8,1638,820,818,776,775,31,35,4,2,0,1,1,0,8,5,809,808,767,766,31,35,3,2,0,0,0,0,8,5,11,10,9,9,0,0,1,0,0,1,1,0,0,0 -050,01,019,Alabama,Cherokee County,9,9,1759,943,816,887,748,40,48,6,5,1,5,1,0,8,10,934,808,878,742,40,47,6,5,1,4,1,0,8,10,9,8,9,6,0,1,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,10,1947,977,970,902,910,58,48,4,5,1,1,0,0,12,6,969,969,895,909,58,48,3,5,1,1,0,0,12,6,8,1,7,1,0,0,1,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,11,2022,985,1037,918,967,52,55,8,7,2,1,0,0,5,7,981,1032,914,962,52,55,8,7,2,1,0,0,5,7,4,5,4,5,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,12,1925,969,956,902,898,51,39,5,6,3,4,0,0,8,9,964,953,897,896,51,39,5,6,3,3,0,0,8,9,5,3,5,2,0,0,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,13,1858,907,951,854,891,38,49,7,1,1,1,0,0,7,9,904,948,851,888,38,49,7,1,1,1,0,0,7,9,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,14,1468,733,735,693,701,30,22,3,5,0,1,0,0,7,6,730,731,690,697,30,22,3,5,0,1,0,0,7,6,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,15,1196,582,614,554,577,18,29,4,1,0,0,0,0,6,7,578,612,550,575,18,29,4,1,0,0,0,0,6,7,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,16,825,342,483,326,451,12,26,1,1,0,1,0,0,3,4,342,480,326,448,12,26,1,1,0,1,0,0,3,4,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,17,506,178,328,171,312,4,16,1,0,0,0,0,0,2,0,177,328,170,312,4,16,1,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,18,391,121,270,117,259,4,10,0,0,0,0,0,0,0,1,120,269,116,258,4,10,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,99,25553,12678,12875,11801,12031,634,618,69,49,20,32,4,2,150,143,12532,12725,11670,11897,633,616,62,44,20,28,1,0,146,140,146,150,131,134,1,2,7,5,0,4,3,2,4,3 -050,01,019,Alabama,Cherokee County,10,0,262,150,112,139,103,5,6,1,0,0,1,0,0,5,2,146,111,135,102,5,6,1,0,0,1,0,0,5,2,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,1,1097,528,569,491,519,22,30,2,2,1,2,0,1,12,15,514,548,479,503,21,29,2,1,1,1,0,0,11,14,14,21,12,16,1,1,0,1,0,1,0,1,1,1 -050,01,019,Alabama,Cherokee County,10,2,1519,780,739,709,669,41,40,4,4,3,5,0,0,23,21,765,709,696,641,41,40,3,3,3,4,0,0,22,21,15,30,13,28,0,0,1,1,0,1,0,0,1,0 -050,01,019,Alabama,Cherokee County,10,3,1590,820,770,739,708,55,38,6,5,1,4,0,0,19,15,811,745,732,688,55,38,4,3,1,4,0,0,19,12,9,25,7,20,0,0,2,2,0,0,0,0,0,3 -050,01,019,Alabama,Cherokee County,10,4,1594,889,705,808,654,54,34,5,1,2,0,0,0,20,16,870,693,793,642,54,34,5,1,2,0,0,0,16,16,19,12,15,12,0,0,0,0,0,0,0,0,4,0 -050,01,019,Alabama,Cherokee County,10,5,1177,574,603,524,570,32,23,7,2,1,1,0,0,10,7,557,593,511,560,32,23,3,2,1,1,0,0,10,7,17,10,13,10,0,0,4,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,6,1334,678,656,612,615,55,30,2,2,5,2,2,1,2,6,667,641,603,601,55,30,2,2,5,2,0,0,2,6,11,15,9,14,0,0,0,0,0,0,2,1,0,0 -050,01,019,Alabama,Cherokee County,10,7,1361,685,676,645,630,34,33,1,1,0,3,0,0,5,9,678,671,638,626,34,33,1,0,0,3,0,0,5,9,7,5,7,4,0,0,0,1,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,8,1611,809,802,759,767,38,28,3,2,0,1,1,0,8,4,799,791,751,757,38,28,2,2,0,0,0,0,8,4,10,11,8,10,0,0,1,0,0,1,1,0,0,0 -050,01,019,Alabama,Cherokee County,10,9,1781,960,821,906,764,39,36,6,6,0,5,1,0,8,10,949,812,895,756,39,36,6,6,0,4,1,0,8,10,11,9,11,8,0,0,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,10,1927,960,967,893,904,50,50,4,5,1,1,0,0,12,7,952,965,886,902,50,50,3,5,1,1,0,0,12,7,8,2,7,2,0,0,1,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,11,2086,1028,1058,959,980,53,61,8,8,2,2,0,0,6,7,1024,1052,955,974,53,61,8,8,2,2,0,0,6,7,4,6,4,6,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,12,1937,979,958,902,884,59,52,6,6,3,4,0,0,9,12,974,956,897,883,59,52,6,6,3,3,0,0,9,12,5,2,5,1,0,0,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,13,1888,932,956,877,905,40,40,7,2,1,1,0,0,7,8,930,954,875,903,40,40,7,2,1,1,0,0,7,8,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,14,1556,750,806,710,768,28,27,5,5,0,1,0,0,7,5,747,802,707,764,28,27,5,5,0,1,0,0,7,5,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,15,1193,584,609,555,575,17,27,4,0,0,0,0,0,8,7,579,607,550,573,17,27,4,0,0,0,0,0,8,7,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,16,827,349,478,335,449,9,23,1,1,0,1,0,0,4,4,349,476,335,447,9,23,1,1,0,1,0,0,4,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,17,488,169,319,161,300,4,19,1,0,0,0,0,0,3,0,168,319,160,300,4,19,1,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,18,408,124,284,120,273,4,10,0,0,0,0,0,0,0,1,123,283,119,272,4,10,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,99,25636,12748,12888,11844,12037,639,607,73,52,20,34,4,2,168,156,12602,12728,11717,11894,638,606,64,47,20,29,1,0,162,152,146,160,127,143,1,1,9,5,0,5,3,2,6,4 -050,01,019,Alabama,Cherokee County,11,0,274,147,127,135,119,5,4,1,0,0,1,0,0,6,3,142,127,130,119,5,4,1,0,0,1,0,0,6,3,5,0,5,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,1,1080,542,538,504,490,20,28,3,2,1,2,0,1,14,15,523,520,487,477,19,27,3,1,1,1,0,0,13,14,19,18,17,13,1,1,0,1,0,1,0,1,1,1 -050,01,019,Alabama,Cherokee County,11,2,1525,739,786,668,715,41,39,4,4,3,6,0,0,23,22,726,759,657,690,41,39,3,3,3,5,0,0,22,22,13,27,11,25,0,0,1,1,0,1,0,0,1,0 -050,01,019,Alabama,Cherokee County,11,3,1628,821,807,739,748,53,34,6,5,1,4,0,0,22,16,810,783,730,729,53,34,4,3,1,4,0,0,22,13,11,24,9,19,0,0,2,2,0,0,0,0,0,3 -050,01,019,Alabama,Cherokee County,11,4,1655,910,745,820,693,62,35,6,1,2,0,0,0,20,16,885,732,799,680,62,35,6,1,2,0,0,0,16,16,25,13,21,13,0,0,0,0,0,0,0,0,4,0 -050,01,019,Alabama,Cherokee County,11,5,1190,601,589,549,555,34,24,7,2,1,1,0,0,10,7,587,579,539,545,34,24,3,2,1,1,0,0,10,7,14,10,10,10,0,0,4,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,6,1264,614,650,559,609,44,29,2,2,5,2,2,1,2,7,605,633,552,593,44,29,2,2,5,2,0,0,2,7,9,17,7,16,0,0,0,0,0,0,2,1,0,0 -050,01,019,Alabama,Cherokee County,11,7,1350,684,666,641,613,37,40,1,1,0,3,0,0,5,9,678,661,635,609,37,40,1,0,0,3,0,0,5,9,6,5,6,4,0,0,0,1,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,8,1668,851,817,808,777,31,33,3,2,0,1,1,0,8,4,836,802,795,763,31,33,2,2,0,0,0,0,8,4,15,15,13,14,0,0,1,0,0,1,1,0,0,0 -050,01,019,Alabama,Cherokee County,11,9,1780,935,845,875,793,45,30,6,6,0,5,1,0,8,11,925,836,865,785,45,30,6,6,0,4,1,0,8,11,10,9,10,8,0,0,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,10,1922,970,952,903,885,49,55,5,5,1,1,0,0,12,6,962,950,896,883,49,55,4,5,1,1,0,0,12,6,8,2,7,2,0,0,1,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,11,2072,1034,1038,957,962,60,56,9,10,2,2,0,0,6,8,1029,1032,952,956,60,56,9,10,2,2,0,0,6,8,5,6,5,6,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,12,1892,946,946,877,868,48,53,6,6,3,4,0,0,12,15,941,944,872,867,48,53,6,6,3,3,0,0,12,15,5,2,5,1,0,0,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,13,1961,975,986,915,936,43,39,9,2,1,1,0,0,7,8,973,984,913,934,43,39,9,2,1,1,0,0,7,8,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,14,1612,766,846,727,804,27,29,5,5,0,1,0,0,7,7,763,842,724,800,27,29,5,5,0,1,0,0,7,7,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,15,1261,633,628,595,599,26,22,5,1,0,0,0,0,7,6,628,626,590,597,26,22,5,1,0,0,0,0,7,6,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,16,821,346,475,329,439,11,30,1,1,0,1,0,0,5,4,346,473,329,437,11,30,1,1,0,1,0,0,5,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,17,515,194,321,185,302,5,19,1,0,0,0,0,0,3,0,193,321,184,302,5,19,1,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,18,384,120,264,115,254,5,9,0,0,0,0,0,0,0,1,119,263,114,253,5,9,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,99,25854,12828,13026,11901,12161,646,608,80,55,20,35,4,2,177,165,12671,12867,11763,12019,645,607,71,50,20,30,1,0,171,161,157,159,138,142,1,1,9,5,0,5,3,2,6,4 -050,01,019,Alabama,Cherokee County,12,0,254,137,117,123,107,7,6,1,0,0,1,0,0,6,3,132,117,118,107,7,6,1,0,0,1,0,0,6,3,5,0,5,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,1,1136,581,555,540,503,18,29,3,2,1,2,0,1,19,18,562,533,523,486,17,28,3,1,1,1,0,0,18,17,19,22,17,17,1,1,0,1,0,1,0,1,1,1 -050,01,019,Alabama,Cherokee County,12,2,1524,735,789,660,718,46,39,4,4,3,6,0,0,22,22,721,760,648,691,46,39,3,3,3,5,0,0,21,22,14,29,12,27,0,0,1,1,0,1,0,0,1,0 -050,01,019,Alabama,Cherokee County,12,3,1630,829,801,747,733,53,43,6,5,1,4,0,0,22,16,816,777,736,714,53,43,4,3,1,4,0,0,22,13,13,24,11,19,0,0,2,2,0,0,0,0,0,3 -050,01,019,Alabama,Cherokee County,12,4,1670,900,770,809,724,62,29,7,1,2,0,0,0,20,16,878,757,791,711,62,29,7,1,2,0,0,0,16,16,22,13,18,13,0,0,0,0,0,0,0,0,4,0 -050,01,019,Alabama,Cherokee County,12,5,1258,643,615,587,580,35,25,7,2,1,1,0,0,13,7,627,604,575,569,35,25,3,2,1,1,0,0,13,7,16,11,12,11,0,0,4,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,6,1205,581,624,535,587,35,26,2,2,5,2,2,1,2,6,572,610,528,574,35,26,2,2,5,2,0,0,2,6,9,14,7,13,0,0,0,0,0,0,2,1,0,0 -050,01,019,Alabama,Cherokee County,12,7,1338,676,662,641,615,29,34,1,1,0,3,0,0,5,9,670,656,635,610,29,34,1,0,0,3,0,0,5,9,6,6,6,5,0,0,0,1,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,8,1638,828,810,781,773,35,30,3,2,0,1,1,0,8,4,817,796,772,760,35,30,2,2,0,0,0,0,8,4,11,14,9,13,0,0,1,0,0,1,1,0,0,0 -050,01,019,Alabama,Cherokee County,12,9,1742,912,830,858,781,39,26,6,6,0,5,1,0,8,12,900,821,846,773,39,26,6,6,0,4,1,0,8,12,12,9,12,8,0,0,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,10,1919,981,938,918,875,45,51,5,5,1,1,0,0,12,6,973,936,911,873,45,51,4,5,1,1,0,0,12,6,8,2,7,2,0,0,1,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,11,2101,1035,1066,960,985,58,61,9,10,2,2,0,0,6,8,1030,1060,955,979,58,61,9,10,2,2,0,0,6,8,5,6,5,6,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,12,1909,964,945,897,873,47,50,6,6,3,4,0,0,11,12,959,943,892,872,47,50,6,6,3,3,0,0,11,12,5,2,5,1,0,0,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,13,2014,999,1015,933,962,49,42,9,2,1,1,0,0,7,8,997,1013,931,960,49,42,9,2,1,1,0,0,7,8,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,14,1646,774,872,739,831,22,27,5,5,0,1,0,0,8,8,771,868,736,827,22,27,5,5,0,1,0,0,8,8,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,15,1263,635,628,606,592,17,27,5,1,0,0,0,0,7,8,630,626,601,590,17,27,5,1,0,0,0,0,7,8,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,16,838,367,471,351,444,11,21,1,1,0,1,0,0,4,4,367,469,351,442,11,21,1,1,0,1,0,0,4,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,17,525,192,333,183,315,5,18,1,0,0,0,0,0,3,0,191,333,182,315,5,18,1,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,18,379,119,260,114,251,5,8,0,0,0,0,0,0,0,1,118,259,113,250,5,8,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,99,25989,12888,13101,11982,12249,618,592,81,55,20,35,4,2,183,168,12731,12938,11844,12103,617,591,72,50,20,30,1,0,177,164,157,163,138,146,1,1,9,5,0,5,3,2,6,4 -050,01,019,Alabama,Cherokee County,13,0,255,137,118,123,108,7,7,1,0,0,1,0,0,6,2,132,117,118,108,7,6,1,0,0,1,0,0,6,2,5,1,5,0,0,1,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,1,1127,577,550,537,500,18,31,3,0,2,2,2,1,15,16,557,531,519,484,18,29,3,0,2,2,0,0,15,16,20,19,18,16,0,2,0,0,0,0,2,1,0,0 -050,01,019,Alabama,Cherokee County,13,2,1528,743,785,662,717,48,38,4,4,5,5,1,0,23,21,723,754,647,688,46,37,4,3,4,5,0,0,22,21,20,31,15,29,2,1,0,1,1,0,1,0,1,0 -050,01,019,Alabama,Cherokee County,13,3,1621,827,794,745,728,55,42,6,2,1,4,0,0,20,18,812,773,733,711,54,42,4,1,1,4,0,0,20,15,15,21,12,17,1,0,2,1,0,0,0,0,0,3 -050,01,019,Alabama,Cherokee County,13,4,1652,886,766,802,718,62,27,5,5,1,2,0,0,16,14,864,750,785,705,61,26,4,3,1,2,0,0,13,14,22,16,17,13,1,1,1,2,0,0,0,0,3,0 -050,01,019,Alabama,Cherokee County,13,5,1261,646,615,587,581,38,24,7,3,2,3,0,0,12,4,629,600,574,569,38,24,3,1,2,2,0,0,12,4,17,15,13,12,0,0,4,2,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,6,1209,582,627,537,586,38,28,1,2,5,3,0,1,1,7,573,612,529,573,37,27,1,2,5,3,0,0,1,7,9,15,8,13,1,1,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,13,7,1357,683,674,647,622,30,38,0,2,1,3,0,0,5,9,675,664,640,616,29,35,0,1,1,3,0,0,5,9,8,10,7,6,1,3,0,1,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,8,1626,818,808,774,763,35,35,2,2,2,2,0,1,5,5,806,791,764,750,34,32,1,2,2,2,0,0,5,5,12,17,10,13,1,3,1,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,13,9,1738,911,827,857,781,40,25,8,5,1,4,0,0,5,12,897,815,844,771,40,25,7,4,1,3,0,0,5,12,14,12,13,10,0,0,1,1,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,10,1913,978,935,915,872,46,52,5,4,2,1,0,0,10,6,969,929,906,868,46,50,5,4,2,1,0,0,10,6,9,6,9,4,0,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,11,2102,1034,1068,961,985,59,64,7,9,2,2,0,0,5,8,1030,1061,957,979,59,63,7,9,2,2,0,0,5,8,4,7,4,6,0,1,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,12,1917,971,946,901,878,49,51,6,4,5,4,0,0,10,9,966,943,896,876,49,51,6,4,5,3,0,0,10,9,5,3,5,2,0,0,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,13,2028,1009,1019,942,967,52,43,8,2,1,1,0,0,6,6,1008,1017,941,965,52,43,8,2,1,1,0,0,6,6,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,14,1654,779,875,742,835,24,28,5,5,0,1,0,0,8,6,776,872,739,832,24,28,5,5,0,1,0,0,8,6,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,15,1259,631,628,605,594,17,28,3,0,1,0,0,0,5,6,626,626,600,592,17,28,3,0,1,0,0,0,5,6,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,16,836,366,470,350,443,10,22,1,1,0,1,0,0,5,3,365,467,349,440,10,22,1,1,0,1,0,0,5,3,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,17,527,189,338,183,320,5,17,0,0,1,1,0,0,0,0,188,335,182,317,5,17,0,0,1,1,0,0,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,18,381,120,261,114,251,6,9,0,0,0,0,0,0,0,1,119,260,113,250,6,9,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,99,25991,12887,13104,11984,12249,639,609,72,50,32,40,3,3,157,153,12715,12917,11836,12094,632,594,63,42,31,37,0,0,153,150,172,187,148,155,7,15,9,8,1,3,3,3,4,3 -050,01,021,Alabama,Chilton County,1,0,504,268,236,241,205,22,28,0,0,0,0,0,0,5,3,251,220,224,192,22,26,0,0,0,0,0,0,5,2,17,16,17,13,0,2,0,0,0,0,0,0,0,1 -050,01,021,Alabama,Chilton County,1,1,2234,1184,1050,1023,900,147,133,2,5,6,2,0,0,6,10,1133,1007,977,859,145,132,2,5,3,1,0,0,6,10,51,43,46,41,2,1,0,0,3,1,0,0,0,0 -050,01,021,Alabama,Chilton County,1,2,2837,1506,1331,1270,1137,216,177,4,4,4,4,0,1,12,8,1465,1295,1231,1102,214,176,4,4,4,4,0,1,12,8,41,36,39,35,2,1,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,1,3,2897,1472,1425,1234,1197,216,213,5,2,3,2,0,0,14,11,1431,1387,1195,1161,215,211,5,2,2,2,0,0,14,11,41,38,39,36,1,2,0,0,1,0,0,0,0,0 -050,01,021,Alabama,Chilton County,1,4,2714,1436,1278,1234,1073,186,197,7,4,2,2,1,0,6,2,1366,1238,1171,1037,185,193,7,4,1,2,0,0,2,2,70,40,63,36,1,4,0,0,1,0,1,0,4,0 -050,01,021,Alabama,Chilton County,1,5,2585,1263,1322,1114,1166,143,147,0,5,2,1,0,0,4,3,1150,1267,1012,1118,135,142,0,5,1,1,0,0,2,1,113,55,102,48,8,5,0,0,1,0,0,0,2,2 -050,01,021,Alabama,Chilton County,1,6,2760,1397,1363,1243,1194,141,153,4,2,1,10,2,1,6,3,1283,1315,1142,1153,132,149,4,2,1,8,0,0,4,3,114,48,101,41,9,4,0,0,0,2,2,1,2,0 -050,01,021,Alabama,Chilton County,1,7,2729,1350,1379,1240,1208,96,154,6,1,7,4,0,0,1,12,1252,1341,1154,1175,88,152,6,1,3,2,0,0,1,11,98,38,86,33,8,2,0,0,4,2,0,0,0,1 -050,01,021,Alabama,Chilton County,1,8,2980,1522,1458,1371,1268,134,174,4,3,4,7,0,0,9,6,1470,1432,1324,1245,130,172,4,3,4,7,0,0,8,5,52,26,47,23,4,2,0,0,0,0,0,0,1,1 -050,01,021,Alabama,Chilton County,1,9,3018,1524,1494,1350,1329,152,145,8,6,2,3,0,0,12,11,1486,1474,1315,1310,150,144,8,6,2,3,0,0,11,11,38,20,35,19,2,1,0,0,0,0,0,0,1,0 -050,01,021,Alabama,Chilton County,1,10,2717,1361,1356,1215,1192,138,147,2,8,1,3,0,0,5,6,1325,1340,1181,1176,136,147,2,8,1,3,0,0,5,6,36,16,34,16,2,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,1,11,2544,1272,1272,1154,1151,108,107,6,2,1,3,0,0,3,9,1248,1262,1131,1141,107,107,6,2,1,3,0,0,3,9,24,10,23,10,1,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,1,12,2161,1044,1117,965,1020,71,87,3,1,1,3,0,0,4,6,1034,1110,958,1013,69,87,3,1,0,3,0,0,4,6,10,7,7,7,2,0,0,0,1,0,0,0,0,0 -050,01,021,Alabama,Chilton County,1,13,1827,882,945,808,846,64,82,3,6,1,0,0,0,6,11,874,941,800,842,64,82,3,6,1,0,0,0,6,11,8,4,8,4,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,1,14,1599,728,871,655,791,63,70,4,3,0,4,1,0,5,3,721,862,650,784,61,69,4,3,0,3,1,0,5,3,7,9,5,7,2,1,0,0,0,1,0,0,0,0 -050,01,021,Alabama,Chilton County,1,15,1270,583,687,519,623,60,63,0,0,0,0,0,0,4,1,574,683,511,621,59,61,0,0,0,0,0,0,4,1,9,4,8,2,1,2,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,1,16,1009,419,590,387,535,31,51,0,1,0,0,0,0,1,3,415,589,383,534,31,51,0,1,0,0,0,0,1,3,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,1,17,662,227,435,214,407,12,27,0,0,0,0,0,0,1,1,225,431,212,404,12,26,0,0,0,0,0,0,1,1,2,4,2,3,0,1,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,1,18,557,152,405,130,359,19,44,0,0,0,0,0,0,3,2,151,403,129,357,19,44,0,0,0,0,0,0,3,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,1,99,39604,19590,20014,17367,17601,2019,2199,58,53,35,48,4,2,107,111,18854,19597,16700,17224,1974,2171,58,53,24,42,1,1,97,106,736,417,667,377,45,28,0,0,11,6,3,1,10,5 -050,01,021,Alabama,Chilton County,2,0,513,271,242,245,210,23,29,0,0,0,0,0,0,3,3,253,225,227,196,23,27,0,0,0,0,0,0,3,2,18,17,18,14,0,2,0,0,0,0,0,0,0,1 -050,01,021,Alabama,Chilton County,2,1,2240,1186,1054,1025,904,147,132,2,5,6,2,0,0,6,11,1135,1012,979,864,145,131,2,5,3,1,0,0,6,11,51,42,46,40,2,1,0,0,3,1,0,0,0,0 -050,01,021,Alabama,Chilton County,2,2,2840,1508,1332,1274,1140,213,175,4,4,4,4,0,1,13,8,1467,1296,1235,1105,211,174,4,4,4,4,0,1,13,8,41,36,39,35,2,1,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,2,3,2930,1492,1438,1251,1207,219,216,5,2,3,2,0,0,14,11,1450,1400,1211,1171,218,214,5,2,2,2,0,0,14,11,42,38,40,36,1,2,0,0,1,0,0,0,0,0 -050,01,021,Alabama,Chilton County,2,4,2725,1445,1280,1246,1078,183,194,7,4,2,2,1,0,6,2,1375,1240,1183,1042,182,190,7,4,1,2,0,0,2,2,70,40,63,36,1,4,0,0,1,0,1,0,4,0 -050,01,021,Alabama,Chilton County,2,5,2624,1285,1339,1135,1181,144,149,0,5,2,1,0,0,4,3,1170,1284,1031,1133,136,144,0,5,1,1,0,0,2,1,115,55,104,48,8,5,0,0,1,0,0,0,2,2 -050,01,021,Alabama,Chilton County,2,6,2756,1397,1359,1244,1190,140,153,4,2,1,10,2,1,6,3,1283,1310,1143,1148,131,149,4,2,1,8,0,0,4,3,114,49,101,42,9,4,0,0,0,2,2,1,2,0 -050,01,021,Alabama,Chilton County,2,7,2743,1354,1389,1249,1218,91,154,6,1,7,4,0,0,1,12,1254,1347,1161,1181,83,152,6,1,3,2,0,0,1,11,100,42,88,37,8,2,0,0,4,2,0,0,0,1 -050,01,021,Alabama,Chilton County,2,8,2983,1524,1459,1374,1269,133,174,4,3,4,7,0,0,9,6,1471,1432,1326,1245,129,172,4,3,4,7,0,0,8,5,53,27,48,24,4,2,0,0,0,0,0,0,1,1 -050,01,021,Alabama,Chilton County,2,9,3040,1535,1505,1361,1342,152,143,8,6,2,3,0,0,12,11,1497,1485,1326,1323,150,142,8,6,2,3,0,0,11,11,38,20,35,19,2,1,0,0,0,0,0,0,1,0 -050,01,021,Alabama,Chilton County,2,10,2751,1378,1373,1232,1207,138,149,2,8,1,3,0,0,5,6,1342,1357,1198,1191,136,149,2,8,1,3,0,0,5,6,36,16,34,16,2,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,2,11,2584,1292,1292,1175,1169,107,109,6,2,1,3,0,0,3,9,1268,1282,1152,1159,106,109,6,2,1,3,0,0,3,9,24,10,23,10,1,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,2,12,2179,1050,1129,974,1033,68,87,3,1,1,3,0,0,4,5,1040,1122,967,1026,66,87,3,1,0,3,0,0,4,5,10,7,7,7,2,0,0,0,1,0,0,0,0,0 -050,01,021,Alabama,Chilton County,2,13,1841,888,953,814,854,64,82,3,6,1,0,0,0,6,11,880,949,806,850,64,82,3,6,1,0,0,0,6,11,8,4,8,4,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,2,14,1598,730,868,658,787,62,71,4,3,0,4,1,0,5,3,723,859,653,780,60,70,4,3,0,3,1,0,5,3,7,9,5,7,2,1,0,0,0,1,0,0,0,0 -050,01,021,Alabama,Chilton County,2,15,1273,586,687,522,623,60,63,0,0,0,0,0,0,4,1,577,683,514,621,59,61,0,0,0,0,0,0,4,1,9,4,8,2,1,2,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,2,16,1017,420,597,388,542,31,51,0,1,0,0,0,0,1,3,416,596,384,541,31,51,0,1,0,0,0,0,1,3,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,2,17,678,231,447,218,419,12,27,0,0,0,0,0,0,1,1,229,443,216,416,12,26,0,0,0,0,0,0,1,1,2,4,2,3,0,1,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,2,18,582,156,426,135,379,18,45,0,0,0,0,0,0,3,2,155,424,134,377,18,45,0,0,0,0,0,0,3,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,2,99,39897,19728,20169,17520,17752,2005,2203,58,53,35,48,4,2,106,111,18985,19746,16846,17369,1960,2175,58,53,24,42,1,1,96,106,743,423,674,383,45,28,0,0,11,6,3,1,10,5 -050,01,021,Alabama,Chilton County,3,0,554,297,257,259,216,33,37,0,0,0,0,0,0,5,4,273,241,236,202,32,36,0,0,0,0,0,0,5,3,24,16,23,14,1,1,0,0,0,0,0,0,0,1 -050,01,021,Alabama,Chilton County,3,1,2202,1177,1025,1019,877,142,129,2,5,6,2,0,0,8,12,1116,986,964,840,139,128,2,5,3,1,0,0,8,12,61,39,55,37,3,1,0,0,3,1,0,0,0,0 -050,01,021,Alabama,Chilton County,3,2,2861,1480,1381,1258,1187,201,176,4,4,4,4,0,1,13,9,1446,1332,1227,1139,198,175,4,4,4,4,0,1,13,9,34,49,31,48,3,1,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,3,3,2985,1517,1468,1279,1232,215,221,5,2,3,2,0,0,15,11,1473,1428,1237,1195,214,218,5,2,2,2,0,0,15,11,44,40,42,37,1,3,0,0,1,0,0,0,0,0 -050,01,021,Alabama,Chilton County,3,4,2654,1398,1256,1199,1070,183,178,7,4,2,2,1,0,6,2,1327,1223,1136,1041,180,174,7,4,1,2,0,0,3,2,71,33,63,29,3,4,0,0,1,0,1,0,3,0 -050,01,021,Alabama,Chilton County,3,5,2710,1340,1370,1169,1203,163,159,0,5,2,1,2,0,4,2,1217,1313,1060,1152,154,154,0,5,1,1,0,0,2,1,123,57,109,51,9,5,0,0,1,0,2,0,2,1 -050,01,021,Alabama,Chilton County,3,6,2707,1398,1309,1225,1136,158,157,4,2,1,10,4,1,6,3,1262,1247,1103,1081,150,153,4,2,1,8,0,0,4,3,136,62,122,55,8,4,0,0,0,2,4,1,2,0 -050,01,021,Alabama,Chilton County,3,7,2805,1401,1404,1277,1243,112,145,6,1,5,4,0,0,1,11,1299,1346,1185,1190,104,142,6,1,3,3,0,0,1,10,102,58,92,53,8,3,0,0,2,1,0,0,0,1 -050,01,021,Alabama,Chilton County,3,8,2961,1490,1471,1354,1272,117,183,6,3,4,7,0,0,9,6,1425,1437,1294,1241,113,181,6,3,4,7,0,0,8,5,65,34,60,31,4,2,0,0,0,0,0,0,1,1 -050,01,021,Alabama,Chilton County,3,9,3040,1543,1497,1357,1317,162,158,8,6,4,3,0,0,12,13,1514,1477,1331,1298,160,157,8,6,4,3,0,0,11,13,29,20,26,19,2,1,0,0,0,0,0,0,1,0 -050,01,021,Alabama,Chilton County,3,10,2802,1390,1412,1245,1249,136,146,3,8,1,3,0,0,5,6,1350,1397,1207,1234,134,146,3,8,1,3,0,0,5,6,40,15,38,15,2,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,3,11,2652,1349,1303,1228,1176,111,110,6,3,1,3,0,0,3,11,1326,1290,1206,1163,110,110,6,3,1,3,0,0,3,11,23,13,22,13,1,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,3,12,2215,1042,1173,969,1069,65,94,3,1,1,3,0,0,4,6,1025,1162,955,1058,63,94,3,1,0,3,0,0,4,6,17,11,14,11,2,0,0,0,1,0,0,0,0,0 -050,01,021,Alabama,Chilton County,3,13,1869,883,986,801,895,72,76,3,4,1,0,0,0,6,11,874,978,792,887,72,76,3,4,1,0,0,0,6,11,9,8,9,8,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,3,14,1638,775,863,699,782,66,70,4,4,0,4,1,0,5,3,767,854,694,775,63,69,4,4,0,3,1,0,5,3,8,9,5,7,3,1,0,0,0,1,0,0,0,0 -050,01,021,Alabama,Chilton County,3,15,1248,579,669,514,610,61,58,0,0,0,0,0,0,4,1,574,664,510,607,60,56,0,0,0,0,0,0,4,1,5,5,4,3,1,2,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,3,16,1027,430,597,402,539,28,54,0,1,0,0,0,0,0,3,427,596,399,538,28,54,0,1,0,0,0,0,0,3,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,3,17,670,230,440,213,409,15,30,0,0,0,0,0,0,2,1,228,436,211,406,15,29,0,0,0,0,0,0,2,1,2,4,2,3,0,1,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,3,18,597,152,445,132,399,17,44,0,0,0,0,0,0,3,2,151,443,131,397,17,44,0,0,0,0,0,0,3,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,3,99,40197,19871,20326,17599,17881,2057,2225,61,53,35,48,8,2,111,117,19074,19850,16878,17444,2006,2196,61,53,26,43,1,1,102,113,797,476,721,437,51,29,0,0,9,5,7,1,9,4 -050,01,021,Alabama,Chilton County,4,0,519,263,256,232,215,28,36,0,0,0,0,1,0,2,5,234,232,205,194,27,34,0,0,0,0,0,0,2,4,29,24,27,21,1,2,0,0,0,0,1,0,0,1 -050,01,021,Alabama,Chilton County,4,1,2206,1185,1021,1022,880,143,122,2,4,6,2,1,0,11,13,1116,976,961,838,139,120,2,4,3,1,0,0,11,13,69,45,61,42,4,2,0,0,3,1,1,0,0,0 -050,01,021,Alabama,Chilton County,4,2,2916,1493,1423,1280,1219,188,182,5,5,5,4,0,1,15,12,1444,1366,1236,1165,185,180,4,4,4,4,0,1,15,12,49,57,44,54,3,2,1,1,1,0,0,0,0,0 -050,01,021,Alabama,Chilton County,4,3,2955,1516,1439,1265,1206,226,215,6,3,2,2,0,0,17,13,1471,1388,1223,1161,224,210,6,2,2,2,0,0,16,13,45,51,42,45,2,5,0,1,0,0,0,0,1,0 -050,01,021,Alabama,Chilton County,4,4,2712,1430,1282,1215,1092,194,177,8,5,2,5,1,0,10,3,1348,1250,1143,1064,191,173,7,5,1,5,0,0,6,3,82,32,72,28,3,4,1,0,1,0,1,0,4,0 -050,01,021,Alabama,Chilton County,4,5,2725,1375,1350,1193,1178,171,161,1,5,3,2,2,1,5,3,1252,1291,1084,1127,162,156,1,5,2,2,0,0,3,1,123,59,109,51,9,5,0,0,1,0,2,1,2,2 -050,01,021,Alabama,Chilton County,4,6,2737,1394,1343,1247,1171,129,156,4,2,3,10,5,1,6,3,1236,1273,1105,1108,121,152,3,2,3,8,0,0,4,3,158,70,142,63,8,4,1,0,0,2,5,1,2,0 -050,01,021,Alabama,Chilton County,4,7,2862,1429,1433,1282,1263,131,152,7,2,8,5,0,0,1,11,1309,1364,1176,1202,122,148,6,1,4,3,0,0,1,10,120,69,106,61,9,4,1,1,4,2,0,0,0,1 -050,01,021,Alabama,Chilton County,4,8,2926,1461,1465,1323,1270,116,177,7,3,5,8,1,0,9,7,1375,1426,1243,1234,112,175,7,3,5,8,0,0,8,6,86,39,80,36,4,2,0,0,0,0,1,0,1,1 -050,01,021,Alabama,Chilton County,4,9,3071,1570,1501,1386,1313,160,165,8,7,4,3,0,0,12,13,1534,1474,1354,1287,158,164,7,7,4,3,0,0,11,13,36,27,32,26,2,1,1,0,0,0,0,0,1,0 -050,01,021,Alabama,Chilton County,4,10,2870,1425,1445,1272,1291,140,137,4,8,1,3,0,0,8,6,1389,1418,1238,1264,138,137,4,8,1,3,0,0,8,6,36,27,34,27,2,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,4,11,2676,1345,1331,1211,1199,124,116,6,4,1,3,0,0,3,9,1309,1321,1176,1189,123,116,6,4,1,3,0,0,3,9,36,10,35,10,1,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,4,12,2367,1121,1246,1042,1145,71,91,3,2,1,3,0,0,4,5,1105,1232,1029,1131,69,91,3,2,0,3,0,0,4,5,16,14,13,14,2,0,0,0,1,0,0,0,0,0 -050,01,021,Alabama,Chilton County,4,13,1924,908,1016,828,927,70,74,3,5,1,0,0,0,6,10,899,1009,819,920,70,74,3,5,1,0,0,0,6,10,9,7,9,7,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,4,14,1620,759,861,691,780,60,72,3,3,0,3,1,0,4,3,751,853,685,774,58,71,3,3,0,2,1,0,4,3,8,8,6,6,2,1,0,0,0,1,0,0,0,0 -050,01,021,Alabama,Chilton County,4,15,1298,599,699,532,638,63,59,0,0,0,1,0,0,4,1,593,694,527,635,62,57,0,0,0,1,0,0,4,1,6,5,5,3,1,2,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,4,16,1013,425,588,389,530,36,54,0,2,0,0,0,0,0,2,422,587,386,529,36,54,0,2,0,0,0,0,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,4,17,681,245,436,224,397,19,38,0,0,0,0,0,0,2,1,242,432,222,394,18,37,0,0,0,0,0,0,2,1,3,4,2,3,1,1,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,4,18,605,148,457,129,411,17,44,0,0,0,0,0,0,2,2,147,455,128,409,17,44,0,0,0,0,0,0,2,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,4,99,40683,20091,20592,17763,18125,2086,2228,67,60,42,54,12,3,121,122,19176,20041,16940,17625,2032,2193,62,57,31,48,1,1,110,117,915,551,823,500,54,35,5,3,11,6,11,2,11,5 -050,01,021,Alabama,Chilton County,5,0,574,263,311,227,273,31,32,0,0,0,0,1,0,4,6,234,277,200,241,30,31,0,0,0,0,0,0,4,5,29,34,27,32,1,1,0,0,0,0,1,0,0,1 -050,01,021,Alabama,Chilton County,5,1,2211,1167,1044,1000,897,146,126,2,4,4,3,2,0,13,14,1069,981,914,839,140,122,2,4,2,2,0,0,11,14,98,63,86,58,6,4,0,0,2,1,2,0,2,0 -050,01,021,Alabama,Chilton County,5,2,2850,1470,1380,1254,1176,184,183,6,7,5,3,0,0,21,11,1401,1317,1194,1119,179,180,4,4,4,3,0,0,20,11,69,63,60,57,5,3,2,3,1,0,0,0,1,0 -050,01,021,Alabama,Chilton County,5,3,3058,1597,1461,1328,1238,241,201,7,4,3,3,0,0,18,15,1542,1397,1279,1181,238,196,6,3,2,2,0,0,17,15,55,64,49,57,3,5,1,1,1,1,0,0,1,0 -050,01,021,Alabama,Chilton County,5,4,2710,1406,1304,1181,1122,203,169,8,5,3,5,1,0,10,3,1321,1264,1107,1086,199,165,6,5,2,5,0,0,7,3,85,40,74,36,4,4,2,0,1,0,1,0,3,0 -050,01,021,Alabama,Chilton County,5,5,2655,1322,1333,1147,1164,159,159,1,5,4,2,5,1,6,2,1200,1274,1040,1114,152,152,1,5,3,2,0,0,4,1,122,59,107,50,7,7,0,0,1,0,5,1,2,1 -050,01,021,Alabama,Chilton County,5,6,2841,1438,1403,1277,1234,139,152,4,3,4,9,7,2,7,3,1241,1322,1096,1162,133,147,3,3,4,7,0,0,5,3,197,81,181,72,6,5,1,0,0,2,7,2,2,0 -050,01,021,Alabama,Chilton County,5,7,2866,1442,1424,1298,1253,126,153,6,2,8,4,1,0,3,12,1326,1346,1198,1183,117,148,5,1,4,3,0,0,2,11,116,78,100,70,9,5,1,1,4,1,1,0,1,1 -050,01,021,Alabama,Chilton County,5,8,2870,1435,1435,1318,1241,97,176,7,3,4,7,1,0,8,8,1338,1391,1227,1200,93,174,7,3,4,7,0,0,7,7,97,44,91,41,4,2,0,0,0,0,1,0,1,1 -050,01,021,Alabama,Chilton County,5,9,3078,1578,1500,1392,1307,162,170,9,7,3,3,0,0,12,13,1536,1464,1357,1273,158,168,7,7,3,3,0,0,11,13,42,36,35,34,4,2,2,0,0,0,0,0,1,0 -050,01,021,Alabama,Chilton County,5,10,2962,1485,1477,1324,1320,147,143,4,5,1,3,1,0,8,6,1441,1459,1283,1303,145,143,4,4,1,3,0,0,8,6,44,18,41,17,2,0,0,1,0,0,1,0,0,0 -050,01,021,Alabama,Chilton County,5,11,2686,1341,1345,1202,1215,127,111,7,5,2,3,0,0,3,11,1302,1326,1165,1197,125,111,7,5,2,3,0,0,3,10,39,19,37,18,2,0,0,0,0,0,0,0,0,1 -050,01,021,Alabama,Chilton County,5,12,2419,1169,1250,1079,1135,79,102,6,4,1,4,0,0,4,5,1152,1234,1065,1119,77,102,6,4,0,4,0,0,4,5,17,16,14,16,2,0,0,0,1,0,0,0,0,0 -050,01,021,Alabama,Chilton County,5,13,2022,978,1044,896,963,72,66,2,4,1,0,0,0,7,11,965,1037,884,957,72,66,2,4,1,0,0,0,6,10,13,7,12,6,0,0,0,0,0,0,0,0,1,1 -050,01,021,Alabama,Chilton County,5,14,1634,772,862,709,785,55,66,3,3,0,4,1,0,4,4,764,853,702,778,54,65,3,3,0,3,1,0,4,4,8,9,7,7,1,1,0,0,0,1,0,0,0,0 -050,01,021,Alabama,Chilton County,5,15,1351,597,754,539,687,53,65,0,0,0,1,0,0,5,1,591,749,533,684,53,63,0,0,0,1,0,0,5,1,6,5,6,3,0,2,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,5,16,1033,434,599,389,543,44,52,0,2,0,0,0,0,1,2,430,597,385,541,44,52,0,2,0,0,0,0,1,2,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,5,17,663,250,413,231,376,18,36,0,0,0,0,0,0,1,1,247,409,229,373,17,35,0,0,0,0,0,0,1,1,3,4,2,3,1,1,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,5,18,596,150,446,129,400,18,44,0,0,0,0,0,0,3,2,148,445,127,399,18,44,0,0,0,0,0,0,3,2,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,5,99,41079,20294,20785,17920,18329,2101,2206,72,63,43,54,20,3,138,130,19248,20142,16985,17749,2044,2164,63,57,32,48,1,0,123,124,1046,643,935,580,57,42,9,6,11,6,19,3,15,6 -050,01,021,Alabama,Chilton County,6,0,560,268,292,231,250,33,35,0,0,0,0,1,0,3,7,245,263,211,223,31,34,0,0,0,0,0,0,3,6,23,29,20,27,2,1,0,0,0,0,1,0,0,1 -050,01,021,Alabama,Chilton County,6,1,2257,1122,1135,952,978,148,132,2,4,4,4,2,0,14,17,1025,1040,866,890,143,128,2,4,2,3,0,0,12,15,97,95,86,88,5,4,0,0,2,1,2,0,2,2 -050,01,021,Alabama,Chilton County,6,2,2930,1513,1417,1315,1209,164,181,5,7,5,3,0,1,24,16,1431,1343,1243,1142,159,178,3,4,4,3,0,1,22,15,82,74,72,67,5,3,2,3,1,0,0,0,2,1 -050,01,021,Alabama,Chilton County,6,3,3018,1561,1457,1295,1249,238,183,7,5,3,3,0,0,18,17,1499,1384,1239,1186,235,178,6,3,2,2,0,0,17,15,62,73,56,63,3,5,1,2,1,1,0,0,1,2 -050,01,021,Alabama,Chilton County,6,4,2752,1426,1326,1204,1143,199,170,8,5,3,5,2,0,10,3,1320,1286,1112,1107,193,166,6,5,2,5,0,0,7,3,106,40,92,36,6,4,2,0,1,0,2,0,3,0 -050,01,021,Alabama,Chilton County,6,5,2656,1356,1300,1184,1136,154,156,1,4,4,2,6,1,7,1,1224,1230,1070,1075,145,148,1,4,3,2,0,0,5,1,132,70,114,61,9,8,0,0,1,0,6,1,2,0 -050,01,021,Alabama,Chilton County,6,6,2903,1433,1470,1269,1294,138,156,4,3,4,9,9,2,9,6,1224,1374,1079,1209,131,151,3,3,4,7,0,0,7,4,209,96,190,85,7,5,1,0,0,2,9,2,2,2 -050,01,021,Alabama,Chilton County,6,7,2846,1431,1415,1272,1250,141,146,6,3,7,5,1,0,4,11,1302,1322,1160,1166,131,141,5,2,4,3,0,0,2,10,129,93,112,84,10,5,1,1,3,2,1,0,2,1 -050,01,021,Alabama,Chilton County,6,8,2854,1412,1442,1306,1240,84,183,7,4,5,8,1,0,9,7,1316,1385,1217,1187,80,180,7,4,4,7,0,0,8,7,96,57,89,53,4,3,0,0,1,1,1,0,1,0 -050,01,021,Alabama,Chilton County,6,9,3089,1582,1507,1400,1321,158,162,9,7,3,3,0,0,12,14,1516,1473,1342,1289,154,160,7,7,3,3,0,0,10,14,66,34,58,32,4,2,2,0,0,0,0,0,2,0 -050,01,021,Alabama,Chilton County,6,10,2991,1520,1471,1360,1309,139,144,4,8,1,4,1,0,15,6,1476,1444,1322,1283,137,144,4,8,1,3,0,0,12,6,44,27,38,26,2,0,0,0,0,1,1,0,3,0 -050,01,021,Alabama,Chilton County,6,11,2786,1349,1437,1217,1287,121,128,5,7,2,3,0,0,4,12,1304,1415,1174,1266,119,128,5,7,2,3,0,0,4,11,45,22,43,21,2,0,0,0,0,0,0,0,0,1 -050,01,021,Alabama,Chilton County,6,12,2515,1245,1270,1130,1146,104,110,6,2,1,4,0,1,4,7,1223,1253,1111,1129,102,110,6,2,0,4,0,1,4,7,22,17,19,17,2,0,0,0,1,0,0,0,0,0 -050,01,021,Alabama,Chilton County,6,13,2091,995,1096,910,1008,74,72,2,5,1,1,0,0,8,10,983,1088,899,1002,74,72,2,5,1,0,0,0,7,9,12,8,11,6,0,0,0,0,0,1,0,0,1,1 -050,01,021,Alabama,Chilton County,6,14,1632,770,862,713,780,50,70,3,4,0,4,1,0,3,4,763,853,707,772,49,70,3,4,0,3,1,0,3,4,7,9,6,8,1,0,0,0,0,1,0,0,0,0 -050,01,021,Alabama,Chilton County,6,15,1365,594,771,539,701,50,66,0,0,0,1,0,0,5,3,589,766,534,698,50,64,0,0,0,1,0,0,5,3,5,5,5,3,0,2,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,6,16,1008,440,568,388,524,52,40,0,2,0,0,0,0,0,2,436,566,384,522,52,40,0,2,0,0,0,0,0,2,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,6,17,732,270,462,249,423,18,38,1,0,0,0,0,0,2,1,266,457,246,419,17,37,1,0,0,0,0,0,2,1,4,5,3,4,1,1,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,6,18,549,140,409,131,364,7,43,0,0,0,0,0,0,2,2,138,408,129,363,7,43,0,0,0,0,0,0,2,2,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,6,99,41534,20427,21107,18065,18612,2072,2215,70,70,43,59,24,5,153,146,19280,20350,17045,17928,2009,2172,61,64,32,49,1,2,132,135,1147,757,1020,684,63,43,9,6,11,10,23,3,21,11 -050,01,021,Alabama,Chilton County,7,0,613,302,311,260,274,36,29,0,0,1,1,1,0,4,7,265,264,227,229,34,27,0,0,1,1,0,0,3,7,37,47,33,45,2,2,0,0,0,0,1,0,1,0 -050,01,021,Alabama,Chilton County,7,1,2275,1114,1161,922,1004,163,130,2,2,5,4,2,0,20,21,1033,1050,852,900,158,127,2,2,4,3,0,0,17,18,81,111,70,104,5,3,0,0,1,1,2,0,3,3 -050,01,021,Alabama,Chilton County,7,2,2931,1543,1388,1363,1179,145,179,5,6,3,3,2,1,25,20,1421,1306,1255,1107,140,174,2,3,2,2,0,1,22,19,122,82,108,72,5,5,3,3,1,1,2,0,3,1 -050,01,021,Alabama,Chilton County,7,3,2991,1557,1434,1305,1230,224,175,8,6,4,4,0,1,16,18,1496,1361,1255,1170,217,169,6,2,3,4,0,0,15,16,61,73,50,60,7,6,2,4,1,0,0,1,1,2 -050,01,021,Alabama,Chilton County,7,4,2839,1426,1413,1208,1201,192,196,10,7,6,5,3,0,7,4,1311,1351,1111,1149,183,190,5,5,5,4,1,0,6,3,115,62,97,52,9,6,5,2,1,1,2,0,1,1 -050,01,021,Alabama,Chilton County,7,5,2567,1312,1255,1125,1098,163,145,5,2,4,3,8,3,7,4,1182,1185,1016,1036,154,139,2,2,3,3,1,1,6,4,130,70,109,62,9,6,3,0,1,0,7,2,1,0 -050,01,021,Alabama,Chilton County,7,6,2964,1452,1512,1297,1333,132,155,3,3,5,8,9,4,6,9,1274,1404,1138,1239,126,148,2,3,4,8,0,1,4,5,178,108,159,94,6,7,1,0,1,0,9,3,2,4 -050,01,021,Alabama,Chilton County,7,7,2855,1443,1412,1278,1246,145,144,7,7,7,6,2,2,4,7,1310,1308,1165,1156,135,138,5,4,3,4,0,0,2,6,133,104,113,90,10,6,2,3,4,2,2,2,2,1 -050,01,021,Alabama,Chilton County,7,8,2848,1405,1443,1300,1267,85,153,6,7,7,9,1,2,6,5,1275,1374,1180,1207,80,151,6,3,5,9,0,0,4,4,130,69,120,60,5,2,0,4,2,0,1,2,2,1 -050,01,021,Alabama,Chilton County,7,9,3055,1545,1510,1388,1322,132,162,8,8,6,3,1,1,10,14,1464,1469,1320,1288,128,159,4,6,5,3,0,1,7,12,81,41,68,34,4,3,4,2,1,0,1,0,3,2 -050,01,021,Alabama,Chilton County,7,10,3046,1550,1496,1381,1338,148,138,4,8,3,4,1,0,13,8,1500,1468,1336,1313,145,137,4,7,3,4,0,0,12,7,50,28,45,25,3,1,0,1,0,0,1,0,1,1 -050,01,021,Alabama,Chilton County,7,11,2847,1408,1439,1268,1272,129,144,7,9,1,3,0,0,3,11,1363,1421,1226,1255,126,143,7,9,1,3,0,0,3,11,45,18,42,17,3,1,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,7,12,2597,1281,1316,1160,1197,108,106,5,4,2,5,0,0,6,4,1256,1300,1137,1181,106,106,5,4,2,5,0,0,6,4,25,16,23,16,2,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,7,13,2162,1030,1132,946,1038,71,81,3,4,0,1,0,0,10,8,1016,1124,934,1032,71,81,3,4,0,0,0,0,8,7,14,8,12,6,0,0,0,0,0,1,0,0,2,1 -050,01,021,Alabama,Chilton County,7,14,1663,813,850,743,784,62,60,3,3,0,2,0,0,5,1,805,842,736,776,61,60,3,3,0,2,0,0,5,1,8,8,7,8,1,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,7,15,1404,616,788,567,715,44,66,0,1,0,2,0,0,5,4,608,782,559,712,44,63,0,1,0,2,0,0,5,4,8,6,8,3,0,3,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,7,16,1028,449,579,392,512,57,60,0,2,0,1,0,0,0,4,444,578,387,511,57,60,0,2,0,1,0,0,0,4,5,1,5,1,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,7,17,728,258,470,239,434,16,33,1,1,0,0,0,0,2,2,255,468,237,433,15,33,1,1,0,0,0,0,2,1,3,2,2,1,1,0,0,0,0,0,0,0,0,1 -050,01,021,Alabama,Chilton County,7,18,533,137,396,130,351,6,43,0,0,0,0,0,0,1,2,136,395,129,350,6,43,0,0,0,0,0,0,1,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,7,99,41946,20641,21305,18272,18795,2058,2199,77,80,54,64,30,14,150,153,19414,20450,17200,18044,1986,2148,57,61,41,58,2,4,128,135,1227,855,1072,751,72,51,20,19,13,6,28,10,22,18 -050,01,021,Alabama,Chilton County,8,0,598,284,314,243,269,35,37,1,0,1,1,1,0,3,7,235,256,197,213,34,35,1,0,1,1,0,0,2,7,49,58,46,56,1,2,0,0,0,0,1,0,1,0 -050,01,021,Alabama,Chilton County,8,1,2272,1081,1191,891,1032,158,131,3,2,5,3,3,3,21,20,986,1051,809,900,152,128,3,2,4,3,0,0,18,18,95,140,82,132,6,3,0,0,1,0,3,3,3,2 -050,01,021,Alabama,Chilton County,8,2,2971,1606,1365,1415,1173,151,162,6,8,3,2,2,1,29,19,1461,1290,1286,1111,146,156,2,3,2,2,0,1,25,17,145,75,129,62,5,6,4,5,1,0,2,0,4,2 -050,01,021,Alabama,Chilton County,8,3,2982,1547,1435,1288,1213,228,183,9,7,4,8,0,1,18,23,1473,1342,1226,1139,220,175,6,3,4,6,0,0,17,19,74,93,62,74,8,8,3,4,0,2,0,1,1,4 -050,01,021,Alabama,Chilton County,8,4,2900,1494,1406,1270,1193,195,189,10,10,5,5,4,1,10,8,1386,1345,1178,1143,188,184,5,7,4,4,1,0,10,7,108,61,92,50,7,5,5,3,1,1,3,1,0,1 -050,01,021,Alabama,Chilton County,8,5,2438,1255,1183,1069,1044,158,126,6,2,4,3,10,3,8,5,1128,1104,966,974,149,120,3,1,3,3,1,1,6,5,127,79,103,70,9,6,3,1,1,0,9,2,2,0 -050,01,021,Alabama,Chilton County,8,6,2991,1437,1554,1259,1373,151,155,4,5,5,9,10,4,8,8,1291,1438,1139,1269,142,150,2,5,4,9,0,1,4,4,146,116,120,104,9,5,2,0,1,0,10,3,4,4 -050,01,021,Alabama,Chilton County,8,7,2811,1440,1371,1266,1200,154,148,9,7,5,6,3,3,3,7,1286,1259,1133,1104,143,142,5,4,3,4,0,0,2,5,154,112,133,96,11,6,4,3,2,2,3,3,1,2 -050,01,021,Alabama,Chilton County,8,8,2964,1487,1477,1369,1305,93,146,8,7,7,9,2,2,8,8,1341,1391,1237,1228,89,144,5,3,5,9,0,0,5,7,146,86,132,77,4,2,3,4,2,0,2,2,3,1 -050,01,021,Alabama,Chilton County,8,9,2986,1494,1492,1351,1308,119,160,8,7,6,3,2,2,8,12,1409,1449,1279,1272,115,157,4,5,5,3,1,1,5,11,85,43,72,36,4,3,4,2,1,0,1,1,3,1 -050,01,021,Alabama,Chilton County,8,10,3099,1571,1528,1389,1356,156,152,7,9,4,5,2,0,13,6,1529,1492,1355,1325,152,150,7,8,4,4,0,0,11,5,42,36,34,31,4,2,0,1,0,1,2,0,2,1 -050,01,021,Alabama,Chilton County,8,11,2915,1434,1481,1279,1320,140,139,8,8,1,4,1,0,5,10,1385,1460,1233,1300,137,138,8,8,1,4,1,0,5,10,49,21,46,20,3,1,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,8,12,2673,1355,1318,1224,1200,117,103,6,4,2,5,0,1,6,5,1330,1304,1200,1186,116,103,6,4,2,5,0,1,6,5,25,14,24,14,1,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,8,13,2202,1002,1200,925,1099,66,86,3,3,0,3,0,0,8,9,985,1192,911,1093,65,86,3,3,0,2,0,0,6,8,17,8,14,6,1,0,0,0,0,1,0,0,2,1 -050,01,021,Alabama,Chilton County,8,14,1743,849,894,772,807,66,80,5,4,0,2,0,0,6,1,841,888,765,801,65,80,5,4,0,2,0,0,6,1,8,6,7,6,1,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,8,15,1442,667,775,616,709,43,58,1,0,1,3,0,0,6,5,661,771,610,706,43,57,1,0,1,3,0,0,6,5,6,4,6,3,0,1,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,8,16,1025,454,571,406,519,48,45,0,3,0,0,0,0,0,4,448,571,400,519,48,45,0,3,0,0,0,0,0,4,6,0,6,0,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,8,17,779,295,484,276,448,16,33,1,1,0,0,0,0,2,2,290,481,273,446,14,33,1,1,0,0,0,0,2,1,5,3,3,2,2,0,0,0,0,0,0,0,0,1 -050,01,021,Alabama,Chilton County,8,18,527,136,391,128,347,7,43,0,0,0,0,0,0,1,1,134,390,126,346,7,43,0,0,0,0,0,0,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,8,99,42318,20888,21430,18436,18915,2101,2176,95,87,53,71,40,21,163,160,19599,20474,17323,18075,2025,2126,67,64,43,64,4,5,137,140,1289,956,1113,840,76,50,28,23,10,7,36,16,26,20 -050,01,021,Alabama,Chilton County,9,0,627,312,315,266,264,40,42,1,0,1,1,1,0,3,8,253,259,210,210,39,40,1,0,1,1,0,0,2,8,59,56,56,54,1,2,0,0,0,0,1,0,1,0 -050,01,021,Alabama,Chilton County,9,1,2326,1112,1214,911,1060,166,122,4,3,4,4,4,3,23,22,1001,1041,816,896,160,119,3,2,3,4,0,0,19,20,111,173,95,164,6,3,1,1,1,0,4,3,4,2 -050,01,021,Alabama,Chilton County,9,2,2976,1602,1374,1412,1172,145,171,7,8,3,3,2,1,33,19,1444,1268,1271,1079,140,165,2,3,2,2,0,1,29,18,158,106,141,93,5,6,5,5,1,1,2,0,4,1 -050,01,021,Alabama,Chilton County,9,3,3044,1552,1492,1310,1270,208,182,10,7,4,8,0,1,20,24,1462,1381,1234,1178,200,174,6,3,4,6,0,0,18,20,90,111,76,92,8,8,4,4,0,2,0,1,2,4 -050,01,021,Alabama,Chilton County,9,4,2916,1514,1402,1264,1194,215,182,11,10,5,5,5,1,14,10,1403,1329,1170,1133,208,176,6,7,4,4,2,0,13,9,111,73,94,61,7,6,5,3,1,1,3,1,1,1 -050,01,021,Alabama,Chilton County,9,5,2502,1305,1197,1134,1054,143,128,5,2,4,3,11,4,8,6,1127,1114,980,979,135,123,2,1,3,3,1,2,6,6,178,83,154,75,8,5,3,1,1,0,10,2,2,0 -050,01,021,Alabama,Chilton County,9,6,2895,1402,1493,1224,1307,153,158,3,5,5,8,11,4,6,11,1245,1365,1092,1193,145,152,1,5,4,8,0,1,3,6,157,128,132,114,8,6,2,0,1,0,11,3,3,5 -050,01,021,Alabama,Chilton County,9,7,2891,1452,1439,1283,1254,150,164,7,7,6,4,2,4,4,6,1273,1304,1127,1134,138,158,3,4,3,3,0,0,2,5,179,135,156,120,12,6,4,3,3,1,2,4,2,1 -050,01,021,Alabama,Chilton County,9,8,2962,1482,1480,1357,1309,98,143,8,7,7,10,2,2,10,9,1340,1388,1228,1227,95,141,5,3,5,9,0,0,7,8,142,92,129,82,3,2,3,4,2,1,2,2,3,1 -050,01,021,Alabama,Chilton County,9,9,3021,1510,1511,1376,1319,112,164,7,6,5,3,2,2,8,17,1390,1457,1269,1274,108,160,3,4,4,3,1,1,5,15,120,54,107,45,4,4,4,2,1,0,1,1,3,2 -050,01,021,Alabama,Chilton County,9,10,3060,1571,1489,1385,1324,153,144,8,10,4,5,2,0,19,6,1524,1451,1348,1291,149,142,8,9,4,4,0,0,15,5,47,38,37,33,4,2,0,1,0,1,2,0,4,1 -050,01,021,Alabama,Chilton County,9,11,3000,1480,1520,1317,1357,150,140,6,7,1,4,1,0,5,12,1441,1493,1281,1331,147,139,6,7,1,4,1,0,5,12,39,27,36,26,3,1,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,9,12,2707,1356,1351,1218,1220,125,114,5,5,2,6,0,0,6,6,1322,1340,1185,1209,124,114,5,5,2,6,0,0,6,6,34,11,33,11,1,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,9,13,2333,1060,1273,982,1182,67,77,3,3,0,3,0,0,8,8,1040,1260,965,1171,66,77,3,3,0,2,0,0,6,7,20,13,17,11,1,0,0,0,0,1,0,0,2,1 -050,01,021,Alabama,Chilton County,9,14,1824,897,927,815,834,72,86,5,4,0,2,0,0,5,1,891,920,809,827,72,86,5,4,0,2,0,0,5,1,6,7,6,7,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,9,15,1443,669,774,621,719,40,45,1,2,1,3,0,0,6,5,663,767,615,713,40,44,1,2,1,3,0,0,6,5,6,7,6,6,0,1,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,9,16,1048,470,578,425,519,45,52,0,2,0,1,0,0,0,4,466,577,421,518,45,52,0,2,0,1,0,0,0,4,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,9,17,749,279,470,253,442,22,26,1,0,0,0,0,0,3,2,275,466,251,440,20,25,1,0,0,0,0,0,3,1,4,4,2,2,2,1,0,0,0,0,0,0,0,1 -050,01,021,Alabama,Chilton County,9,18,557,157,400,146,356,11,43,0,0,0,0,0,0,0,1,154,399,143,355,11,43,0,0,0,0,0,0,0,1,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,9,99,42881,21182,21699,18699,19156,2115,2183,92,88,52,73,43,22,181,177,19714,20579,17415,18158,2042,2130,61,64,41,65,5,5,150,157,1468,1120,1284,998,73,53,31,24,11,8,38,17,31,20 -050,01,021,Alabama,Chilton County,10,0,690,326,364,289,311,29,42,1,0,1,1,2,0,4,10,246,304,213,252,28,41,1,0,1,1,0,0,3,10,80,60,76,59,1,1,0,0,0,0,2,0,1,0 -050,01,021,Alabama,Chilton County,10,1,2271,1127,1144,927,1009,162,104,4,2,3,3,4,3,27,23,998,967,813,843,157,100,3,1,3,3,0,0,22,20,129,177,114,166,5,4,1,1,0,0,4,3,5,3 -050,01,021,Alabama,Chilton County,10,2,3021,1547,1474,1352,1257,145,181,8,9,4,1,2,1,36,25,1362,1340,1187,1140,139,172,2,3,2,1,0,1,32,23,185,134,165,117,6,9,6,6,2,0,2,0,4,2 -050,01,021,Alabama,Chilton County,10,3,3021,1563,1458,1316,1233,210,181,10,8,4,9,0,1,23,26,1447,1334,1215,1131,202,173,6,3,4,6,0,0,20,21,116,124,101,102,8,8,4,5,0,3,0,1,3,5 -050,01,021,Alabama,Chilton County,10,4,3036,1595,1441,1338,1239,217,172,13,11,7,8,5,1,15,10,1479,1362,1239,1171,212,167,7,8,6,7,2,0,13,9,116,79,99,68,5,5,6,3,1,1,3,1,2,1 -050,01,021,Alabama,Chilton County,10,5,2426,1259,1167,1064,1033,162,119,6,1,6,4,13,4,8,6,1116,1078,947,956,154,111,3,0,5,4,1,1,6,6,143,89,117,77,8,8,3,1,1,0,12,3,2,0 -050,01,021,Alabama,Chilton County,10,6,2798,1351,1447,1192,1260,126,158,4,6,7,8,13,5,9,10,1177,1306,1046,1135,119,150,1,6,6,8,0,1,5,6,174,141,146,125,7,8,3,0,1,0,13,4,4,4 -050,01,021,Alabama,Chilton County,10,7,2999,1482,1517,1312,1328,149,166,7,8,7,4,4,4,3,7,1273,1369,1127,1197,137,159,3,4,4,3,0,0,2,6,209,148,185,131,12,7,4,4,3,1,4,4,1,1 -050,01,021,Alabama,Chilton County,10,8,3027,1543,1484,1402,1297,114,156,10,7,5,10,3,3,9,11,1396,1367,1269,1191,110,154,7,3,4,9,0,0,6,10,147,117,133,106,4,2,3,4,1,1,3,3,3,1 -050,01,021,Alabama,Chilton County,10,9,2967,1500,1467,1360,1297,114,147,9,6,6,3,2,2,9,12,1361,1402,1240,1240,108,143,3,4,5,3,1,1,4,11,139,65,120,57,6,4,6,2,1,0,1,1,5,1 -050,01,021,Alabama,Chilton County,10,10,3027,1533,1494,1360,1335,144,144,6,5,4,4,3,0,16,6,1480,1459,1318,1303,140,142,6,5,4,4,0,0,12,5,53,35,42,32,4,2,0,0,0,0,3,0,4,1 -050,01,021,Alabama,Chilton County,10,11,3099,1533,1566,1369,1388,150,153,7,8,1,6,1,0,5,11,1489,1536,1328,1360,147,152,7,8,1,6,1,0,5,10,44,30,41,28,3,1,0,0,0,0,0,0,0,1 -050,01,021,Alabama,Chilton County,10,12,2701,1331,1370,1186,1236,130,120,6,3,2,6,0,0,7,5,1298,1354,1154,1220,129,120,6,3,2,6,0,0,7,5,33,16,32,16,1,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,10,13,2375,1117,1258,1030,1156,76,88,2,2,0,3,0,0,9,9,1094,1244,1011,1145,75,88,2,2,0,2,0,0,6,7,23,14,19,11,1,0,0,0,0,1,0,0,3,2 -050,01,021,Alabama,Chilton County,10,14,1910,959,951,880,863,70,80,4,4,0,2,0,0,5,2,954,945,875,857,70,80,4,4,0,2,0,0,5,2,5,6,5,6,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,10,15,1469,686,783,636,714,41,60,1,1,1,3,0,0,7,5,681,778,631,711,41,58,1,1,1,3,0,0,7,5,5,5,5,3,0,2,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,10,16,1070,459,611,419,555,40,49,0,3,0,1,0,0,0,3,455,611,415,555,40,49,0,3,0,1,0,0,0,3,4,0,4,0,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,10,17,754,273,481,243,443,26,35,1,1,0,0,0,0,3,2,267,477,240,441,23,34,1,1,0,0,0,0,3,1,6,4,3,2,3,1,0,0,0,0,0,0,0,1 -050,01,021,Alabama,Chilton County,10,18,578,175,403,158,361,17,41,0,0,0,0,0,0,0,1,172,403,155,361,17,41,0,0,0,0,0,0,0,1,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,10,99,43239,21359,21880,18833,19315,2122,2196,99,85,58,76,52,24,195,184,19745,20636,17423,18209,2048,2134,63,59,48,69,5,4,158,161,1614,1244,1410,1106,74,62,36,26,10,7,47,20,37,23 -050,01,021,Alabama,Chilton County,11,0,652,304,348,257,293,39,44,2,0,1,1,2,0,3,10,240,288,199,235,37,42,1,0,1,1,0,0,2,10,64,60,58,58,2,2,1,0,0,0,2,0,1,0 -050,01,021,Alabama,Chilton County,11,1,2373,1181,1192,982,1045,158,113,5,3,3,3,5,3,28,25,989,1010,807,875,152,109,4,1,3,3,0,0,23,22,192,182,175,170,6,4,1,2,0,0,5,3,5,3 -050,01,021,Alabama,Chilton County,11,2,3013,1550,1463,1355,1243,139,180,9,10,4,2,2,1,41,27,1365,1314,1193,1115,131,170,2,3,2,1,0,1,37,24,185,149,162,128,8,10,7,7,2,1,2,0,4,3 -050,01,021,Alabama,Chilton County,11,3,3011,1563,1448,1333,1235,191,167,11,9,4,7,0,1,24,29,1413,1317,1200,1125,181,158,7,4,4,6,0,0,21,24,150,131,133,110,10,9,4,5,0,1,0,1,3,5 -050,01,021,Alabama,Chilton County,11,4,2998,1564,1434,1308,1222,214,181,11,11,7,8,5,1,19,11,1435,1341,1199,1140,206,176,5,8,6,7,2,0,17,10,129,93,109,82,8,5,6,3,1,1,3,1,2,1 -050,01,021,Alabama,Chilton County,11,5,2531,1302,1229,1097,1085,168,129,6,1,6,4,15,4,10,6,1138,1132,963,998,158,123,3,0,5,4,1,1,8,6,164,97,134,87,10,6,3,1,1,0,14,3,2,0 -050,01,021,Alabama,Chilton County,11,6,2769,1371,1398,1206,1208,129,160,4,6,8,8,16,5,8,11,1156,1246,1022,1073,121,152,1,6,7,8,0,1,5,6,215,152,184,135,8,8,3,0,1,0,16,4,3,5 -050,01,021,Alabama,Chilton County,11,7,2985,1475,1510,1289,1332,161,154,8,8,7,6,4,4,6,6,1228,1352,1070,1196,148,144,3,4,4,3,0,0,3,5,247,158,219,136,13,10,5,4,3,3,4,4,3,1 -050,01,021,Alabama,Chilton County,11,8,3003,1525,1478,1369,1290,123,155,14,7,7,11,3,3,9,12,1358,1354,1217,1179,119,153,11,3,5,9,0,0,6,10,167,124,152,111,4,2,3,4,2,2,3,3,3,2 -050,01,021,Alabama,Chilton County,11,9,2936,1501,1435,1372,1275,104,132,7,8,7,3,3,3,8,14,1360,1362,1247,1212,99,128,2,5,6,3,2,2,4,12,141,73,125,63,5,4,5,3,1,0,1,1,4,2 -050,01,021,Alabama,Chilton County,11,10,3014,1526,1488,1348,1320,144,149,8,8,4,5,3,0,19,6,1458,1444,1291,1281,140,147,8,7,4,4,0,0,15,5,68,44,57,39,4,2,0,1,0,1,3,0,4,1 -050,01,021,Alabama,Chilton County,11,11,3131,1575,1556,1414,1380,145,154,9,7,1,3,1,0,5,12,1530,1535,1373,1361,142,153,8,7,1,3,1,0,5,11,45,21,41,19,3,1,1,0,0,0,0,0,0,1 -050,01,021,Alabama,Chilton County,11,12,2776,1338,1438,1188,1282,135,138,7,5,2,6,0,2,6,5,1302,1419,1153,1263,134,138,7,5,2,6,0,2,6,5,36,19,35,19,1,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,11,13,2434,1185,1249,1076,1148,97,89,2,1,0,3,0,0,10,8,1162,1237,1057,1139,96,89,2,1,0,2,0,0,7,6,23,12,19,9,1,0,0,0,0,1,0,0,3,2 -050,01,021,Alabama,Chilton County,11,14,1965,966,999,892,911,65,79,4,5,0,2,0,0,5,2,959,992,885,904,65,79,4,5,0,2,0,0,5,2,7,7,7,7,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,11,15,1460,687,773,635,701,43,62,1,2,1,3,0,0,7,5,682,768,630,698,43,60,1,2,1,3,0,0,7,5,5,5,5,3,0,2,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,11,16,1112,479,633,439,580,40,46,0,3,0,1,0,0,0,3,474,633,434,580,40,46,0,3,0,1,0,0,0,3,5,0,5,0,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,11,17,721,279,442,250,408,25,31,1,1,0,0,0,0,3,2,275,438,247,406,24,30,1,1,0,0,0,0,3,1,4,4,3,2,1,1,0,0,0,0,0,0,0,1 -050,01,021,Alabama,Chilton County,11,18,600,178,422,169,380,9,41,0,0,0,0,0,0,0,1,175,422,166,380,9,41,0,0,0,0,0,0,0,1,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,11,99,43484,21549,21935,18979,19338,2129,2204,109,95,62,76,59,27,211,195,19699,20604,17353,18160,2045,2138,70,65,51,66,6,7,174,168,1850,1331,1626,1178,84,66,39,30,11,10,53,20,37,27 -050,01,021,Alabama,Chilton County,12,0,608,284,324,238,263,38,49,2,0,1,1,2,0,3,11,231,274,193,216,34,46,1,0,1,1,0,0,2,11,53,50,45,47,4,3,1,0,0,0,2,0,1,0 -050,01,021,Alabama,Chilton County,12,1,2388,1190,1198,979,1038,169,124,5,3,3,5,5,3,29,25,996,1008,805,862,160,118,4,1,3,5,0,0,24,22,194,190,174,176,9,6,1,2,0,0,5,3,5,3 -050,01,021,Alabama,Chilton County,12,2,3075,1550,1525,1349,1313,146,168,9,11,4,2,2,1,40,30,1339,1343,1162,1152,138,159,2,3,2,1,0,1,35,27,211,182,187,161,8,9,7,8,2,1,2,0,5,3 -050,01,021,Alabama,Chilton County,12,3,2998,1575,1423,1343,1220,193,155,11,9,4,9,0,1,24,29,1411,1289,1196,1110,183,145,7,4,4,6,0,0,21,24,164,134,147,110,10,10,4,5,0,3,0,1,3,5 -050,01,021,Alabama,Chilton County,12,4,2983,1562,1421,1314,1217,204,173,13,11,7,8,5,1,19,11,1424,1322,1197,1129,196,168,6,8,6,7,2,0,17,10,138,99,117,88,8,5,7,3,1,1,3,1,2,1 -050,01,021,Alabama,Chilton County,12,5,2573,1322,1251,1124,1097,161,138,6,1,6,4,15,5,10,6,1125,1144,958,1001,150,131,3,0,5,4,1,2,8,6,197,107,166,96,11,7,3,1,1,0,14,3,2,0 -050,01,021,Alabama,Chilton County,12,6,2714,1349,1365,1162,1184,151,151,4,6,8,8,16,5,8,11,1136,1208,980,1043,143,144,1,6,7,8,0,1,5,6,213,157,182,141,8,7,3,0,1,0,16,4,3,5 -050,01,021,Alabama,Chilton County,12,7,2982,1476,1506,1295,1326,156,155,8,8,7,7,4,4,6,6,1232,1334,1080,1175,142,145,3,4,4,5,0,0,3,5,244,172,215,151,14,10,5,4,3,2,4,4,3,1 -050,01,021,Alabama,Chilton County,12,8,3023,1539,1484,1390,1297,116,155,14,7,7,10,3,3,9,12,1353,1355,1219,1180,112,153,11,3,5,9,0,0,6,10,186,129,171,117,4,2,3,4,2,1,3,3,3,2 -050,01,021,Alabama,Chilton County,12,9,2887,1457,1430,1326,1280,106,123,8,8,7,3,3,2,7,14,1308,1342,1195,1202,100,119,2,5,6,3,1,1,4,12,149,88,131,78,6,4,6,3,1,0,2,1,3,2 -050,01,021,Alabama,Chilton County,12,10,3017,1531,1486,1363,1313,133,154,8,8,4,5,3,0,20,6,1445,1439,1288,1271,129,152,8,7,4,4,0,0,16,5,86,47,75,42,4,2,0,1,0,1,3,0,4,1 -050,01,021,Alabama,Chilton County,12,11,3180,1600,1580,1421,1401,162,153,9,8,2,6,1,0,5,12,1551,1545,1376,1368,159,152,8,8,2,6,1,0,5,11,49,35,45,33,3,1,1,0,0,0,0,0,0,1 -050,01,021,Alabama,Chilton County,12,12,2807,1370,1437,1220,1271,135,147,7,6,2,6,0,1,6,6,1332,1416,1183,1250,134,147,7,6,2,6,0,1,6,6,38,21,37,21,1,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,12,13,2487,1208,1279,1094,1178,102,89,2,1,0,3,0,0,10,8,1179,1267,1069,1169,101,89,2,1,0,2,0,0,7,6,29,12,25,9,1,0,0,0,0,1,0,0,3,2 -050,01,021,Alabama,Chilton County,12,14,1966,955,1011,887,924,59,78,4,5,0,2,0,0,5,2,949,1003,881,916,59,78,4,5,0,2,0,0,5,2,6,8,6,8,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,12,15,1479,692,787,643,725,40,52,1,2,1,3,0,0,7,5,686,780,637,720,40,50,1,2,1,3,0,0,7,5,6,7,6,5,0,2,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,12,16,1130,489,641,450,584,39,50,0,3,0,1,0,0,0,3,483,639,444,582,39,50,0,3,0,1,0,0,0,3,6,2,6,2,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,12,17,729,284,445,256,405,24,37,1,1,0,0,0,0,3,2,280,441,253,403,23,36,1,1,0,0,0,0,3,1,4,4,3,2,1,1,0,0,0,0,0,0,0,1 -050,01,021,Alabama,Chilton County,12,18,617,175,442,166,400,9,41,0,0,0,0,0,0,0,1,172,442,163,400,9,41,0,0,0,0,0,0,0,1,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,12,99,43643,21608,22035,19020,19436,2143,2192,112,98,63,83,59,26,211,200,19632,20591,17279,18149,2051,2123,71,67,52,73,5,6,174,173,1976,1444,1741,1287,92,69,41,31,11,10,54,20,37,27 -050,01,021,Alabama,Chilton County,13,0,611,284,327,238,264,38,49,2,0,1,2,1,0,4,12,233,274,193,217,34,46,1,0,1,1,0,0,4,10,51,53,45,47,4,3,1,0,0,1,1,0,0,2 -050,01,021,Alabama,Chilton County,13,1,2376,1182,1194,975,1034,168,123,4,1,3,6,7,4,25,26,986,1009,800,859,161,119,3,0,2,6,0,0,20,25,196,185,175,175,7,4,1,1,1,0,7,4,5,1 -050,01,021,Alabama,Chilton County,13,2,3076,1554,1522,1350,1312,147,165,7,9,6,2,5,2,39,32,1339,1341,1160,1149,138,157,2,2,2,2,2,2,35,29,215,181,190,163,9,8,5,7,4,0,3,0,4,3 -050,01,021,Alabama,Chilton County,13,3,2999,1579,1420,1342,1218,193,154,12,6,2,8,2,3,28,31,1410,1288,1193,1108,185,145,7,2,2,7,0,1,23,25,169,132,149,110,8,9,5,4,0,1,2,2,5,6 -050,01,021,Alabama,Chilton County,13,4,2960,1547,1413,1306,1208,202,172,9,10,7,9,3,1,20,13,1409,1313,1188,1120,194,165,4,8,5,8,0,0,18,12,138,100,118,88,8,7,5,2,2,1,3,1,2,1 -050,01,021,Alabama,Chilton County,13,5,2578,1326,1252,1125,1100,162,136,6,1,7,5,13,3,13,7,1131,1144,958,1003,152,130,4,0,6,4,1,1,10,6,195,108,167,97,10,6,2,1,1,1,12,2,3,1 -050,01,021,Alabama,Chilton County,13,6,2727,1354,1373,1168,1187,153,154,4,6,9,7,14,8,6,11,1145,1218,985,1045,145,147,2,6,8,7,1,4,4,9,209,155,183,142,8,7,2,0,1,0,13,4,2,2 -050,01,021,Alabama,Chilton County,13,7,2996,1479,1517,1301,1337,156,155,5,6,5,7,4,5,8,7,1237,1346,1086,1185,142,146,1,3,2,6,0,1,6,5,242,171,215,152,14,9,4,3,3,1,4,4,2,2 -050,01,021,Alabama,Chilton County,13,8,2999,1528,1471,1380,1284,116,157,12,3,7,12,4,3,9,12,1338,1343,1208,1166,111,154,9,3,5,10,1,0,4,10,190,128,172,118,5,3,3,0,2,2,3,3,5,2 -050,01,021,Alabama,Chilton County,13,9,2887,1460,1427,1327,1281,107,123,8,6,8,3,3,1,7,13,1311,1336,1195,1199,101,118,3,4,7,3,1,0,4,12,149,91,132,82,6,5,5,2,1,0,2,1,3,1 -050,01,021,Alabama,Chilton County,13,10,3007,1526,1481,1360,1309,134,154,8,7,5,3,3,1,16,7,1441,1432,1283,1266,130,151,8,6,5,2,0,1,15,6,85,49,77,43,4,3,0,1,0,1,3,0,1,1 -050,01,021,Alabama,Chilton County,13,11,3190,1602,1588,1424,1404,163,157,6,10,3,6,1,0,5,11,1555,1552,1380,1371,160,155,6,9,3,6,1,0,5,11,47,36,44,33,3,2,0,1,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,13,12,2826,1379,1447,1225,1278,136,148,8,5,3,6,0,1,7,9,1340,1426,1188,1257,135,148,7,5,3,6,0,1,7,9,39,21,37,21,1,0,1,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,13,13,2508,1219,1289,1103,1187,106,93,2,1,0,2,0,0,8,6,1190,1278,1078,1178,104,91,2,1,0,2,0,0,6,6,29,11,25,9,2,2,0,0,0,0,0,0,2,0 -050,01,021,Alabama,Chilton County,13,14,1984,961,1023,890,929,62,79,3,7,0,3,0,0,6,5,954,1016,884,922,61,79,3,7,0,3,0,0,6,5,7,7,6,7,1,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,13,15,1475,690,785,642,728,40,52,1,1,1,2,0,0,6,2,685,780,637,724,40,51,1,1,1,2,0,0,6,2,5,5,5,4,0,1,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,13,16,1130,487,643,447,583,38,52,0,3,0,1,0,0,2,4,482,639,442,580,38,51,0,3,0,1,0,0,2,4,5,4,5,3,0,1,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,13,17,732,285,447,255,408,24,36,2,0,1,1,0,0,3,2,283,442,254,405,23,35,2,0,1,1,0,0,3,1,2,5,1,3,1,1,0,0,0,0,0,0,0,1 -050,01,021,Alabama,Chilton County,13,18,621,177,444,167,401,10,42,0,0,0,0,0,0,0,1,174,444,164,401,10,42,0,0,0,0,0,0,0,1,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,13,99,43682,21619,22063,19025,19452,2155,2201,99,82,68,85,60,32,212,211,19643,20621,17276,18155,2064,2130,65,60,53,77,7,11,178,188,1976,1442,1749,1297,91,71,34,22,15,8,53,21,34,23 -050,01,023,Alabama,Choctaw County,1,0,198,94,104,46,54,48,49,0,0,0,0,0,0,0,1,94,102,46,53,48,48,0,0,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,1,906,454,452,239,223,207,225,1,1,1,0,0,0,6,3,451,452,238,223,206,225,1,1,0,0,0,0,6,3,3,0,1,0,1,0,0,0,1,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,2,1074,549,525,248,238,297,283,1,1,0,0,0,0,3,3,546,524,248,238,294,282,1,1,0,0,0,0,3,3,3,1,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,3,1205,592,613,276,261,312,347,1,0,0,0,0,0,3,5,587,610,275,259,309,346,1,0,0,0,0,0,2,5,5,3,1,2,3,1,0,0,0,0,0,0,1,0 -050,01,023,Alabama,Choctaw County,1,4,1164,577,587,271,281,306,305,0,0,0,0,0,0,0,1,574,580,270,279,304,300,0,0,0,0,0,0,0,1,3,7,1,2,2,5,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,5,873,406,467,223,231,180,233,0,1,0,0,0,0,3,2,403,466,220,231,180,232,0,1,0,0,0,0,3,2,3,1,3,0,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,6,968,448,520,260,273,187,245,1,1,0,0,0,0,0,1,447,520,260,273,186,245,1,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,7,944,430,514,252,275,177,239,1,0,0,0,0,0,0,0,427,512,252,275,174,237,1,0,0,0,0,0,0,0,3,2,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,8,1118,531,587,304,308,225,278,2,1,0,0,0,0,0,0,530,581,304,306,224,274,2,1,0,0,0,0,0,0,1,6,0,2,1,4,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,9,1152,563,589,322,279,241,305,0,0,0,2,0,0,0,3,559,587,319,277,240,305,0,0,0,2,0,0,0,3,4,2,3,2,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,10,1109,520,589,275,319,239,267,4,0,1,0,0,0,1,3,519,583,274,316,239,264,4,0,1,0,0,0,1,3,1,6,1,3,0,3,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,11,1104,521,583,323,361,195,221,1,0,0,0,0,0,2,1,517,574,321,355,193,218,1,0,0,0,0,0,2,1,4,9,2,6,2,3,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,12,977,490,487,328,288,153,196,1,1,0,0,0,0,8,2,485,482,323,285,153,194,1,1,0,0,0,0,8,2,5,5,5,3,0,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,13,829,417,412,269,284,146,125,0,0,0,0,0,0,2,3,412,409,266,281,144,125,0,0,0,0,0,0,2,3,5,3,3,3,2,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,14,672,293,379,195,248,96,129,1,0,0,2,0,0,1,0,290,375,194,245,95,128,0,0,0,2,0,0,1,0,3,4,1,3,1,1,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,15,590,239,351,165,227,74,122,0,1,0,0,0,0,0,1,239,348,165,225,74,121,0,1,0,0,0,0,0,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,16,476,191,285,128,182,63,101,0,1,0,0,0,0,0,1,190,284,127,181,63,101,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,17,270,92,178,57,106,33,70,1,1,1,0,0,0,0,1,91,177,56,105,33,70,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,18,324,111,213,56,116,55,95,0,1,0,0,0,0,0,1,110,209,55,113,55,94,0,1,0,0,0,0,0,1,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,99,15953,7518,8435,4237,4554,3234,3835,15,10,3,4,0,0,29,32,7471,8375,4213,4520,3214,3809,14,10,2,4,0,0,28,32,47,60,24,34,20,26,1,0,1,0,0,0,1,0 -050,01,023,Alabama,Choctaw County,2,0,198,94,104,46,54,48,49,0,0,0,0,0,0,0,1,94,102,46,53,48,48,0,0,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,1,897,449,448,236,221,205,223,1,1,1,0,0,0,6,3,446,448,235,221,204,223,1,1,0,0,0,0,6,3,3,0,1,0,1,0,0,0,1,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,2,1055,541,514,244,233,293,277,1,1,0,0,0,0,3,3,538,513,244,233,290,276,1,1,0,0,0,0,3,3,3,1,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,3,1202,590,612,274,261,312,346,1,0,0,0,0,0,3,5,585,609,273,259,309,345,1,0,0,0,0,0,2,5,5,3,1,2,3,1,0,0,0,0,0,0,1,0 -050,01,023,Alabama,Choctaw County,2,4,1159,576,583,271,279,305,303,0,0,0,0,0,0,0,1,573,576,270,277,303,298,0,0,0,0,0,0,0,1,3,7,1,2,2,5,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,5,870,405,465,221,230,181,232,0,1,0,0,0,0,3,2,402,464,218,230,181,231,0,1,0,0,0,0,3,2,3,1,3,0,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,6,957,443,514,256,269,186,243,1,1,0,0,0,0,0,1,442,514,256,269,185,243,1,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,7,937,427,510,250,273,176,237,1,0,0,0,0,0,0,0,424,508,250,273,173,235,1,0,0,0,0,0,0,0,3,2,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,8,1107,526,581,301,304,223,276,2,1,0,0,0,0,0,0,525,575,301,302,222,272,2,1,0,0,0,0,0,0,1,6,0,2,1,4,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,9,1149,561,588,319,277,242,306,0,0,0,2,0,0,0,3,557,586,316,275,241,306,0,0,0,2,0,0,0,3,4,2,3,2,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,10,1108,520,588,274,317,240,268,4,0,1,0,0,0,1,3,519,582,273,314,240,265,4,0,1,0,0,0,1,3,1,6,1,3,0,3,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,11,1110,523,587,323,362,197,224,1,0,0,0,0,0,2,1,519,578,321,356,195,221,1,0,0,0,0,0,2,1,4,9,2,6,2,3,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,12,974,489,485,327,286,153,196,1,1,0,0,0,0,8,2,484,480,322,283,153,194,1,1,0,0,0,0,8,2,5,5,5,3,0,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,13,827,416,411,268,283,146,125,0,0,0,0,0,0,2,3,411,408,265,280,144,125,0,0,0,0,0,0,2,3,5,3,3,3,2,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,14,669,292,377,194,246,96,129,1,0,0,2,0,0,1,0,289,373,193,243,95,128,0,0,0,2,0,0,1,0,3,4,1,3,1,1,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,15,588,239,349,165,226,74,121,0,1,0,0,0,0,0,1,239,346,165,224,74,120,0,1,0,0,0,0,0,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,16,475,191,284,128,181,63,101,0,1,0,0,0,0,0,1,190,283,127,180,63,101,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,17,269,92,177,57,105,33,70,1,1,1,0,0,0,0,1,91,176,56,104,33,70,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,18,324,111,213,56,116,55,95,0,1,0,0,0,0,0,1,110,209,55,113,55,94,0,1,0,0,0,0,0,1,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,99,15875,7485,8390,4210,4523,3228,3821,15,10,3,4,0,0,29,32,7438,8330,4186,4489,3208,3795,14,10,2,4,0,0,28,32,47,60,24,34,20,26,1,0,1,0,0,0,1,0 -050,01,023,Alabama,Choctaw County,3,0,192,102,90,59,42,43,47,0,0,0,0,0,0,0,1,102,88,59,41,43,46,0,0,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,1,805,398,407,198,224,192,179,1,1,1,0,0,0,6,3,395,407,197,224,191,179,1,1,0,0,0,0,6,3,3,0,1,0,1,0,0,0,1,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,2,1098,566,532,265,239,297,289,1,1,0,0,0,0,3,3,563,531,265,239,294,288,1,1,0,0,0,0,3,3,3,1,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,3,1172,566,606,252,270,310,331,1,0,0,0,0,0,3,5,561,603,251,268,307,330,1,0,0,0,0,0,2,5,5,3,1,2,3,1,0,0,0,0,0,0,1,0 -050,01,023,Alabama,Choctaw County,3,4,1152,597,555,281,265,316,289,0,0,0,0,0,0,0,1,594,549,280,263,314,285,0,0,0,0,0,0,0,1,3,6,1,2,2,4,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,5,843,393,450,201,227,189,220,0,1,0,0,0,0,3,2,390,449,198,227,189,219,0,1,0,0,0,0,3,2,3,1,3,0,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,6,888,411,477,238,250,172,225,1,1,0,0,0,0,0,1,410,477,238,250,171,225,1,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,7,902,423,479,254,259,168,220,1,0,0,0,0,0,0,0,420,477,254,259,165,218,1,0,0,0,0,0,0,0,3,2,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,8,1073,510,563,285,282,223,280,2,1,0,0,0,0,0,0,509,558,285,280,222,277,2,1,0,0,0,0,0,0,1,5,0,2,1,3,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,9,1144,553,591,313,304,240,282,0,0,0,2,0,0,0,3,549,589,310,302,239,282,0,0,0,2,0,0,0,3,4,2,3,2,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,10,1150,544,606,296,325,242,278,4,0,1,0,0,0,1,3,543,600,295,322,242,275,4,0,1,0,0,0,1,3,1,6,1,3,0,3,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,11,1088,513,575,298,330,212,244,1,0,0,0,0,0,2,1,509,566,296,324,210,241,1,0,0,0,0,0,2,1,4,9,2,6,2,3,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,12,996,497,499,329,296,160,200,1,1,0,0,0,0,7,2,492,494,324,293,160,198,1,1,0,0,0,0,7,2,5,5,5,3,0,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,13,823,417,406,269,282,146,121,0,0,0,0,0,0,2,3,413,403,266,279,145,121,0,0,0,0,0,0,2,3,4,3,3,3,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,14,701,310,391,213,255,95,134,1,0,0,2,0,0,1,0,307,387,212,252,94,133,0,0,0,2,0,0,1,0,3,4,1,3,1,1,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,15,599,245,354,165,234,80,118,0,1,0,0,0,0,0,1,245,351,165,232,80,117,0,1,0,0,0,0,0,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,16,452,177,275,126,183,51,90,0,1,0,0,0,0,0,1,176,274,125,182,51,90,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,17,291,98,193,62,111,34,80,1,1,1,0,0,0,0,1,97,192,61,110,34,80,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,18,308,99,209,58,115,41,92,0,1,0,0,0,0,0,1,98,205,57,112,41,91,0,1,0,0,0,0,0,1,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,99,15677,7419,8258,4162,4493,3211,3719,15,10,3,4,0,0,28,32,7373,8200,4138,4459,3192,3695,14,10,2,4,0,0,27,32,46,58,24,34,19,24,1,0,1,0,0,0,1,0 -050,01,023,Alabama,Choctaw County,4,0,195,97,98,57,53,40,44,0,0,0,0,0,0,0,1,97,96,57,52,40,43,0,0,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,1,759,369,390,180,204,181,182,1,1,1,0,0,0,6,3,366,390,179,204,180,182,1,1,0,0,0,0,6,3,3,0,1,0,1,0,0,0,1,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,2,1071,567,504,284,233,280,267,1,1,0,0,0,0,2,3,564,503,284,233,277,266,1,1,0,0,0,0,2,3,3,1,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,3,1120,549,571,251,255,294,311,1,0,0,0,0,0,3,5,544,568,250,253,291,310,1,0,0,0,0,0,2,5,5,3,1,2,3,1,0,0,0,0,0,0,1,0 -050,01,023,Alabama,Choctaw County,4,4,1109,571,538,274,242,297,295,0,0,0,0,0,0,0,1,569,532,273,240,296,291,0,0,0,0,0,0,0,1,2,6,1,2,1,4,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,5,817,405,412,201,227,201,182,0,1,0,0,0,0,3,2,402,411,198,227,201,181,0,1,0,0,0,0,3,2,3,1,3,0,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,6,826,375,451,216,230,158,219,1,1,0,0,0,0,0,1,374,451,216,230,157,219,1,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,7,908,437,471,266,252,170,219,1,0,0,0,0,0,0,0,434,469,266,252,167,217,1,0,0,0,0,0,0,0,3,2,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,8,1049,486,563,277,287,207,275,2,1,0,0,0,0,0,0,485,557,277,285,206,271,2,1,0,0,0,0,0,0,1,6,0,2,1,4,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,9,1082,535,547,304,280,231,263,0,0,0,1,0,0,0,3,531,546,301,279,230,263,0,0,0,1,0,0,0,3,4,1,3,1,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,10,1120,537,583,293,298,238,282,4,0,1,0,0,0,1,3,536,577,292,295,238,279,4,0,1,0,0,0,1,3,1,6,1,3,0,3,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,11,1124,516,608,299,346,214,261,1,0,0,0,0,0,2,1,512,600,297,341,212,258,1,0,0,0,0,0,2,1,4,8,2,5,2,3,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,12,996,478,518,311,314,160,201,1,1,0,0,0,0,6,2,474,513,307,311,160,199,1,1,0,0,0,0,6,2,4,5,4,3,0,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,13,847,442,405,276,264,164,138,0,0,0,0,0,0,2,3,436,403,273,262,161,138,0,0,0,0,0,0,2,3,6,2,3,2,3,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,14,687,306,381,212,263,93,116,0,0,0,2,0,0,1,0,304,378,211,261,92,115,0,0,0,2,0,0,1,0,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,15,580,245,335,162,222,83,111,0,1,0,0,0,0,0,1,245,332,162,220,83,110,0,1,0,0,0,0,0,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,16,490,196,294,144,185,52,107,0,1,0,0,0,0,0,1,195,293,143,184,52,107,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,17,321,100,221,66,131,31,88,1,1,1,0,0,0,1,1,99,220,65,130,31,88,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,18,266,74,192,56,102,18,88,0,1,0,0,0,0,0,1,73,189,55,100,18,87,0,1,0,0,0,0,0,1,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,99,15367,7285,8082,4129,4388,3112,3649,14,10,3,3,0,0,27,32,7240,8028,4106,4359,3092,3624,14,10,2,3,0,0,26,32,45,54,23,29,20,25,0,0,1,0,0,0,1,0 -050,01,023,Alabama,Choctaw County,5,0,190,106,84,55,50,51,33,0,0,0,0,0,0,0,1,106,82,55,49,51,32,0,0,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,1,757,375,382,192,187,175,191,1,1,1,0,0,0,6,3,372,382,191,187,174,191,1,1,0,0,0,0,6,3,3,0,1,0,1,0,0,0,1,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,2,1020,532,488,282,230,246,254,1,1,0,0,0,0,3,3,529,487,282,230,243,253,1,1,0,0,0,0,3,3,3,1,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,3,1100,530,570,233,269,293,296,1,0,0,0,0,0,3,5,526,567,232,267,291,295,1,0,0,0,0,0,2,5,4,3,1,2,2,1,0,0,0,0,0,0,1,0 -050,01,023,Alabama,Choctaw County,5,4,1056,557,499,271,225,286,273,0,0,0,0,0,0,0,1,555,494,270,224,285,269,0,0,0,0,0,0,0,1,2,5,1,1,1,4,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,5,836,414,422,200,218,211,202,0,1,0,0,0,0,3,1,411,421,197,218,211,201,0,1,0,0,0,0,3,1,3,1,3,0,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,6,796,364,432,199,216,163,214,1,1,1,0,0,0,0,1,364,432,199,216,163,214,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,7,903,418,485,255,262,162,222,1,0,0,1,0,0,0,0,417,483,255,262,161,220,1,0,0,1,0,0,0,0,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,8,977,460,517,260,277,198,239,2,1,0,0,0,0,0,0,459,511,260,275,197,235,2,1,0,0,0,0,0,0,1,6,0,2,1,4,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,9,1089,519,570,307,291,212,276,0,0,0,1,0,0,0,2,515,569,304,290,211,276,0,0,0,1,0,0,0,2,4,1,3,1,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,10,1116,536,580,303,287,228,290,3,0,1,0,0,0,1,3,535,574,302,284,228,287,3,0,1,0,0,0,1,3,1,6,1,3,0,3,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,11,1087,512,575,284,334,225,240,1,0,0,0,0,0,2,1,508,569,282,330,223,238,1,0,0,0,0,0,2,1,4,6,2,4,2,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,12,1024,489,535,301,327,181,205,1,1,0,0,0,0,6,2,485,530,297,324,181,203,1,1,0,0,0,0,6,2,4,5,4,3,0,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,13,866,454,412,296,249,156,160,0,0,0,0,0,0,2,3,448,408,293,246,153,159,0,0,0,0,0,0,2,3,6,4,3,3,3,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,14,723,343,380,232,269,109,109,1,0,0,2,0,0,1,0,339,377,230,267,108,108,0,0,0,2,0,0,1,0,4,3,2,2,1,1,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,15,566,219,347,153,229,66,116,0,1,0,0,0,0,0,1,219,344,153,227,66,115,0,1,0,0,0,0,0,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,16,518,223,295,159,184,64,109,0,1,0,0,0,0,0,1,222,294,158,183,64,109,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,17,323,96,227,63,140,32,85,1,1,0,0,0,0,0,1,96,226,63,139,32,85,1,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,18,252,77,175,59,96,18,77,0,1,0,0,0,0,0,1,76,172,58,94,18,76,0,1,0,0,0,0,0,1,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,99,15199,7224,7975,4104,4340,3076,3591,14,10,3,4,0,0,27,30,7182,7922,4081,4312,3060,3566,13,10,2,4,0,0,26,30,42,53,23,28,16,25,1,0,1,0,0,0,1,0 -050,01,023,Alabama,Choctaw County,6,0,164,94,70,57,38,37,31,0,0,0,0,0,0,0,1,94,68,57,37,37,30,0,0,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,1,737,390,347,190,181,192,162,1,1,1,0,0,0,6,3,387,347,189,181,191,162,1,1,0,0,0,0,6,3,3,0,1,0,1,0,0,0,1,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,2,976,492,484,258,233,230,247,1,1,0,0,0,0,3,3,490,483,258,233,228,246,1,1,0,0,0,0,3,3,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,3,1096,537,559,252,251,282,303,1,0,0,0,0,0,2,5,533,556,251,249,280,302,1,0,0,0,0,0,1,5,4,3,1,2,2,1,0,0,0,0,0,0,1,0 -050,01,023,Alabama,Choctaw County,6,4,1046,542,504,258,240,284,263,0,0,0,0,0,0,0,1,540,499,257,239,283,259,0,0,0,0,0,0,0,1,2,5,1,1,1,4,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,5,793,372,421,170,220,199,199,0,1,0,0,0,0,3,1,369,420,167,220,199,198,0,1,0,0,0,0,3,1,3,1,3,0,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,6,764,369,395,217,205,150,189,1,1,1,0,0,0,0,0,369,395,217,205,150,189,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,7,886,409,477,236,263,172,213,1,0,0,1,0,0,0,0,407,475,236,263,170,211,1,0,0,1,0,0,0,0,2,2,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,8,932,437,495,249,254,186,240,2,1,0,0,0,0,0,0,437,490,249,252,186,237,2,1,0,0,0,0,0,0,0,5,0,2,0,3,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,9,1052,504,548,296,292,208,253,0,0,0,1,0,0,0,2,500,547,293,291,207,253,0,0,0,1,0,0,0,2,4,1,3,1,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,10,1121,552,569,315,270,232,296,3,0,1,0,0,0,1,3,551,563,314,267,232,293,3,0,1,0,0,0,1,3,1,6,1,3,0,3,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,11,1062,494,568,264,315,227,252,1,0,0,0,0,0,2,1,491,562,262,311,226,250,1,0,0,0,0,0,2,1,3,6,2,4,1,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,12,1030,487,543,306,336,176,204,1,1,0,0,0,0,4,2,483,538,302,333,176,202,1,1,0,0,0,0,4,2,4,5,4,3,0,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,13,889,463,426,296,261,165,163,0,0,0,0,0,0,2,2,457,422,293,258,162,162,0,0,0,0,0,0,2,2,6,4,3,3,3,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,14,732,345,387,235,272,108,113,1,0,0,2,0,0,1,0,342,384,233,270,108,112,0,0,0,2,0,0,1,0,3,3,2,2,0,1,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,15,565,225,340,157,212,67,126,0,1,0,0,0,0,1,1,225,337,157,210,67,125,0,1,0,0,0,0,1,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,16,498,200,298,148,196,51,99,0,1,0,0,0,0,1,2,199,297,147,195,51,99,0,1,0,0,0,0,1,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,17,321,114,207,71,128,42,77,1,1,0,0,0,0,0,1,114,206,71,127,42,77,1,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,18,266,73,193,53,105,20,86,0,1,0,0,0,0,0,1,72,190,52,103,20,85,0,1,0,0,0,0,0,1,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,99,14930,7099,7831,4028,4272,3028,3516,14,10,3,4,0,0,26,29,7060,7779,4005,4244,3015,3492,13,10,2,4,0,0,25,29,39,52,23,28,13,24,1,0,1,0,0,0,1,0 -050,01,023,Alabama,Choctaw County,7,0,178,96,82,52,47,44,35,0,0,0,0,0,0,0,0,96,81,52,47,44,34,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,1,646,351,295,206,154,138,138,0,0,0,0,0,0,7,3,348,294,203,153,138,138,0,0,0,0,0,0,7,3,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,2,953,480,473,245,235,230,235,0,0,0,0,0,0,5,3,477,471,243,233,229,235,0,0,0,0,0,0,5,3,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,3,1005,505,500,251,226,252,272,0,0,1,0,0,0,1,2,501,498,248,225,251,271,0,0,1,0,0,0,1,2,4,2,3,1,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,4,1049,519,530,250,247,267,283,1,0,1,0,0,0,0,0,515,526,247,245,266,281,1,0,1,0,0,0,0,0,4,4,3,2,1,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,5,749,391,358,170,197,220,160,0,0,0,1,0,0,1,0,387,357,166,197,220,159,0,0,0,1,0,0,1,0,4,1,4,0,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,6,711,338,373,192,198,143,174,1,0,1,0,0,0,1,1,336,372,190,197,143,174,1,0,1,0,0,0,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,7,874,419,455,231,244,185,208,2,2,0,1,0,0,1,0,417,453,230,243,184,207,2,2,0,1,0,0,1,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,8,851,376,475,236,260,139,214,1,0,0,1,0,0,0,0,375,468,236,257,138,210,1,0,0,1,0,0,0,0,1,7,0,3,1,4,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,9,1039,501,538,284,284,216,250,1,2,0,1,0,0,0,1,498,535,282,282,215,249,1,2,0,1,0,0,0,1,3,3,2,2,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,10,1134,577,557,323,267,251,287,3,1,0,1,0,0,0,1,576,555,323,266,250,286,3,1,0,1,0,0,0,1,1,2,0,1,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,11,1031,470,561,254,312,213,248,2,0,0,0,0,0,1,1,467,558,251,310,213,247,2,0,0,0,0,0,1,1,3,3,3,2,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,12,1024,488,536,294,320,189,213,1,1,1,0,0,0,3,2,487,532,293,318,189,211,1,1,1,0,0,0,3,2,1,4,1,2,0,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,13,881,440,441,295,263,145,174,0,1,0,0,0,0,0,3,439,437,295,261,144,173,0,1,0,0,0,0,0,2,1,4,0,2,1,1,0,0,0,0,0,0,0,1 -050,01,023,Alabama,Choctaw County,7,14,758,375,383,248,273,125,108,1,0,0,0,0,0,1,2,371,379,246,269,124,108,0,0,0,0,0,0,1,2,4,4,2,4,1,0,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,15,590,238,352,173,214,64,136,0,0,0,0,0,0,1,2,237,351,172,213,64,136,0,0,0,0,0,0,1,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,16,459,183,276,131,189,50,85,0,1,0,0,0,0,2,1,183,276,131,189,50,85,0,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,17,349,124,225,86,147,37,76,0,1,0,0,0,0,1,1,124,224,86,146,37,76,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,18,264,77,187,54,101,23,85,0,1,0,0,0,0,0,0,76,185,53,99,23,85,0,1,0,0,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,99,14545,6948,7597,3975,4178,2931,3381,13,10,4,5,0,0,25,23,6910,7552,3947,4150,2922,3365,12,10,4,5,0,0,25,22,38,45,28,28,9,16,1,0,0,0,0,0,0,1 -050,01,023,Alabama,Choctaw County,8,0,169,91,78,44,52,47,26,0,0,0,0,0,0,0,0,91,77,44,52,47,25,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,1,653,348,305,187,167,154,135,1,0,0,0,0,0,6,3,345,303,184,166,154,134,1,0,0,0,0,0,6,3,3,2,3,1,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,2,890,450,440,237,209,207,228,0,0,0,0,0,0,6,3,447,438,235,207,206,228,0,0,0,0,0,0,6,3,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,3,1022,536,486,273,211,258,272,0,0,1,0,0,0,4,3,532,485,270,210,257,272,0,0,1,0,0,0,4,3,4,1,3,1,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,4,1014,494,520,229,249,263,268,1,0,1,1,0,0,0,2,489,517,226,247,261,267,1,0,1,1,0,0,0,2,5,3,3,2,2,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,5,738,397,341,179,182,218,155,0,0,0,1,0,0,0,3,392,340,175,182,217,154,0,0,0,1,0,0,0,3,5,1,4,0,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,6,689,335,354,191,188,141,165,0,0,1,0,0,0,2,1,333,353,189,187,141,165,0,0,1,0,0,0,2,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,7,841,406,435,220,238,184,194,1,2,0,1,0,0,1,0,405,433,219,237,184,193,1,2,0,1,0,0,1,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,8,821,379,442,241,246,135,195,3,0,0,1,0,0,0,0,378,436,241,243,134,192,3,0,0,1,0,0,0,0,1,6,0,3,1,3,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,9,1036,508,528,279,268,228,255,1,2,0,1,0,0,0,2,505,526,277,266,227,255,1,2,0,1,0,0,0,2,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,10,1124,564,560,315,279,246,279,3,1,0,1,0,0,0,0,563,558,315,278,245,278,3,1,0,1,0,0,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,11,1058,486,572,270,307,212,261,2,0,0,0,0,0,2,4,483,569,267,305,212,260,2,0,0,0,0,0,2,4,3,3,3,2,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,12,1033,507,526,283,294,221,231,0,0,1,0,0,0,2,1,506,523,282,292,221,230,0,0,1,0,0,0,2,1,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,13,890,434,456,286,277,147,176,0,1,0,0,0,0,1,2,432,452,286,275,145,175,0,1,0,0,0,0,1,1,2,4,0,2,2,1,0,0,0,0,0,0,0,1 -050,01,023,Alabama,Choctaw County,8,14,740,370,370,247,258,120,110,0,0,0,0,0,0,3,2,366,367,244,255,119,110,0,0,0,0,0,0,3,2,4,3,3,3,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,15,607,258,349,193,210,64,138,0,0,0,0,0,0,1,1,256,348,191,209,64,138,0,0,0,0,0,0,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,16,475,202,273,134,195,66,76,0,0,0,1,0,0,2,1,202,273,134,195,66,76,0,0,0,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,17,345,124,221,85,136,37,85,1,0,0,0,0,0,1,0,124,221,85,136,37,85,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,18,286,85,201,52,113,33,87,0,1,0,0,0,0,0,0,84,200,51,112,33,87,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,99,14431,6974,7457,3945,4079,2981,3336,13,7,4,7,0,0,31,28,6933,7419,3915,4054,2970,3324,13,7,4,7,0,0,31,27,41,38,30,25,11,12,0,0,0,0,0,0,0,1 -050,01,023,Alabama,Choctaw County,9,0,167,96,71,48,43,48,28,0,0,0,0,0,0,0,0,96,70,48,43,48,27,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,1,683,374,309,182,183,185,123,1,0,0,0,0,0,6,3,371,307,179,182,185,122,1,0,0,0,0,0,6,3,3,2,3,1,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,2,838,402,436,212,210,184,223,0,0,0,0,0,0,6,3,399,434,210,208,183,223,0,0,0,0,0,0,6,3,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,3,1038,553,485,291,230,257,252,0,0,1,0,0,0,4,3,549,484,288,229,256,252,0,0,1,0,0,0,4,3,4,1,3,1,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,4,949,466,483,213,220,251,260,1,0,1,1,0,0,0,2,461,480,210,218,249,259,1,0,1,1,0,0,0,2,5,3,3,2,2,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,5,705,375,330,173,180,202,146,0,0,0,1,0,0,0,3,370,329,169,180,201,145,0,0,0,1,0,0,0,3,5,1,4,0,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,6,682,329,353,179,192,147,160,0,0,1,0,0,0,2,1,327,352,177,191,147,160,0,0,1,0,0,0,2,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,7,788,368,420,208,220,158,197,1,2,0,1,0,0,1,0,367,418,207,219,158,196,1,2,0,1,0,0,1,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,8,840,412,428,268,243,141,184,3,0,0,1,0,0,0,0,411,422,268,240,140,181,3,0,0,1,0,0,0,0,1,6,0,3,1,3,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,9,1002,468,534,257,274,210,256,1,2,0,1,0,0,0,1,465,531,255,272,209,255,1,2,0,1,0,0,0,1,3,3,2,2,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,10,1079,554,525,308,267,243,256,3,1,0,1,0,0,0,0,553,523,308,266,242,255,3,1,0,1,0,0,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,11,1035,483,552,270,286,209,262,2,0,0,0,0,0,2,4,480,550,267,284,209,262,2,0,0,0,0,0,2,4,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,12,1068,519,549,293,300,223,248,0,0,1,0,0,0,2,1,518,546,292,298,223,247,0,0,1,0,0,0,2,1,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,13,890,414,476,267,292,146,181,0,1,0,0,0,0,1,2,413,471,267,290,145,179,0,1,0,0,0,0,1,1,1,5,0,2,1,2,0,0,0,0,0,0,0,1 -050,01,023,Alabama,Choctaw County,9,14,778,384,394,254,257,128,134,0,0,0,0,0,0,2,3,378,390,250,253,126,134,0,0,0,0,0,0,2,3,6,4,4,4,2,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,15,566,250,316,185,214,64,101,0,0,0,0,0,0,1,1,248,315,183,213,64,101,0,0,0,0,0,0,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,16,446,188,258,128,175,60,81,0,0,0,1,0,0,0,1,188,258,128,175,60,81,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,17,387,144,243,101,147,42,96,0,0,0,0,0,0,1,0,144,243,101,147,42,96,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,18,275,81,194,50,115,31,78,0,1,0,0,0,0,0,0,80,193,49,114,31,78,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,99,14216,6860,7356,3887,4048,2929,3266,12,7,4,7,0,0,28,28,6818,7316,3856,4022,2918,3253,12,7,4,7,0,0,28,27,42,40,31,26,11,13,0,0,0,0,0,0,0,1 -050,01,023,Alabama,Choctaw County,10,0,159,85,74,50,47,35,27,0,0,0,0,0,0,0,0,85,73,50,47,35,26,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,1,650,365,285,176,157,182,125,1,0,0,0,0,0,6,3,362,283,173,156,182,124,1,0,0,0,0,0,6,3,3,2,3,1,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,2,841,415,426,224,217,185,206,0,0,0,0,0,0,6,3,412,424,222,215,184,206,0,0,0,0,0,0,6,3,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,3,982,506,476,291,218,210,255,0,0,1,0,0,0,4,3,503,475,288,217,210,255,0,0,1,0,0,0,4,3,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,4,971,481,490,206,226,273,261,1,0,1,1,0,0,0,2,477,488,203,225,272,260,1,0,1,1,0,0,0,2,4,2,3,1,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,5,660,347,313,159,167,188,142,0,0,0,1,0,0,0,3,342,312,155,167,187,141,0,0,0,1,0,0,0,3,5,1,4,0,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,6,698,350,348,184,184,162,163,0,0,2,0,0,0,2,1,348,347,182,183,162,163,0,0,2,0,0,0,2,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,7,742,345,397,190,212,153,181,1,2,0,2,0,0,1,0,344,395,189,211,153,180,1,2,0,2,0,0,1,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,8,822,390,432,267,236,120,195,3,0,0,1,0,0,0,0,389,427,267,233,119,193,3,0,0,1,0,0,0,0,1,5,0,3,1,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,9,930,435,495,234,258,200,234,1,2,0,0,0,0,0,1,432,493,232,257,199,233,1,2,0,0,0,0,0,1,3,2,2,1,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,10,1089,538,551,305,278,231,271,2,1,0,1,0,0,0,0,537,549,305,277,230,270,2,1,0,1,0,0,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,11,1070,501,569,285,286,211,279,2,0,0,0,0,0,3,4,498,569,282,286,211,279,2,0,0,0,0,0,3,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,12,1045,519,526,275,289,243,236,0,0,1,0,0,0,0,1,519,523,275,287,243,235,0,0,1,0,0,0,0,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,13,937,440,497,264,305,175,189,0,1,0,0,0,0,1,2,438,491,264,303,173,186,0,1,0,0,0,0,1,1,2,6,0,2,2,3,0,0,0,0,0,0,0,1 -050,01,023,Alabama,Choctaw County,10,14,796,390,406,269,238,118,165,0,0,0,0,0,0,3,3,385,403,266,235,116,165,0,0,0,0,0,0,3,3,5,3,3,3,2,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,15,590,271,319,189,208,81,110,0,0,0,0,0,0,1,1,269,318,187,207,81,110,0,0,0,0,0,0,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,16,433,161,272,116,188,43,82,0,0,0,1,0,0,2,1,161,272,116,188,43,82,0,0,0,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,17,408,153,255,100,140,52,115,0,0,0,0,0,0,1,0,153,255,100,140,52,115,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,18,291,81,210,52,112,29,97,0,1,0,0,0,0,0,0,80,209,51,111,29,97,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,99,14114,6773,7341,3836,3966,2891,3333,11,7,5,7,0,0,30,28,6734,7306,3807,3945,2881,3320,11,7,5,7,0,0,30,27,39,35,29,21,10,13,0,0,0,0,0,0,0,1 -050,01,023,Alabama,Choctaw County,11,0,144,81,63,41,37,40,26,0,0,0,0,0,0,0,0,81,62,41,37,40,25,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,1,655,364,291,174,166,183,122,1,0,0,0,0,0,6,3,361,289,171,165,183,121,1,0,0,0,0,0,6,3,3,2,3,1,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,2,856,464,392,255,196,203,193,0,0,0,0,0,0,6,3,461,390,253,194,202,193,0,0,0,0,0,0,6,3,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,3,938,475,463,268,232,202,228,0,0,1,0,0,0,4,3,472,462,265,231,202,228,0,0,1,0,0,0,4,3,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,4,954,486,468,219,218,265,247,1,0,1,1,0,0,0,2,482,467,216,217,264,247,1,0,1,1,0,0,0,2,4,1,3,1,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,5,649,344,305,157,167,187,134,0,0,0,1,0,0,0,3,339,304,153,167,186,133,0,0,0,1,0,0,0,3,5,1,4,0,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,6,684,321,363,170,189,147,173,0,0,2,0,0,0,2,1,319,362,168,188,147,173,0,0,2,0,0,0,2,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,7,741,369,372,209,198,158,170,1,2,0,2,0,0,1,0,368,370,208,197,158,169,1,2,0,2,0,0,1,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,8,812,378,434,246,252,129,181,3,0,0,1,0,0,0,0,377,429,246,249,128,179,3,0,0,1,0,0,0,0,1,5,0,3,1,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,9,903,426,477,236,249,189,225,1,2,0,0,0,0,0,1,423,475,234,248,188,224,1,2,0,0,0,0,0,1,3,2,2,1,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,10,1053,516,537,295,276,219,259,2,1,0,1,0,0,0,0,515,535,295,275,218,258,2,1,0,1,0,0,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,11,1090,516,574,283,283,228,287,2,0,0,0,0,0,3,4,513,574,280,283,228,287,2,0,0,0,0,0,3,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,12,1035,506,529,266,278,239,250,0,0,1,0,0,0,0,1,506,526,266,276,239,249,0,0,1,0,0,0,0,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,13,941,435,506,270,316,164,187,0,1,0,0,0,0,1,2,433,500,270,314,162,184,0,1,0,0,0,0,1,1,2,6,0,2,2,3,0,0,0,0,0,0,0,1 -050,01,023,Alabama,Choctaw County,11,14,851,423,428,278,253,142,172,0,0,0,0,0,0,3,3,417,425,274,250,140,172,0,0,0,0,0,0,3,3,6,3,4,3,2,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,15,597,280,317,194,218,85,98,0,0,0,0,0,0,1,1,278,316,192,217,85,98,0,0,0,0,0,0,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,16,438,162,276,118,185,42,89,0,0,0,1,0,0,2,1,162,276,118,185,42,89,0,0,0,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,17,376,150,226,102,140,47,86,0,0,0,0,0,0,1,0,150,226,102,140,47,86,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,18,259,87,172,58,108,29,63,0,1,0,0,0,0,0,0,86,172,57,108,29,63,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,99,13976,6783,7193,3839,3961,2898,3190,11,7,5,7,0,0,30,28,6743,7160,3809,3941,2888,3178,11,7,5,7,0,0,30,27,40,33,30,20,10,12,0,0,0,0,0,0,0,1 -050,01,023,Alabama,Choctaw County,12,0,133,71,62,34,38,37,24,0,0,0,0,0,0,0,0,71,61,34,38,37,23,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,1,616,335,281,164,156,164,122,1,0,0,0,0,0,6,3,332,279,161,155,164,121,1,0,0,0,0,0,6,3,3,2,3,1,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,2,864,469,395,272,200,191,192,0,0,0,0,0,0,6,3,466,393,270,198,190,192,0,0,0,0,0,0,6,3,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,3,954,467,487,262,257,200,227,0,0,1,0,0,0,4,3,464,486,259,256,200,227,0,0,1,0,0,0,4,3,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,4,904,464,440,219,199,243,238,1,0,1,1,0,0,0,2,460,439,216,198,242,238,1,0,1,1,0,0,0,2,4,1,3,1,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,5,670,345,325,155,171,190,150,0,0,0,1,0,0,0,3,340,324,151,171,189,149,0,0,0,1,0,0,0,3,5,1,4,0,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,6,669,328,341,171,179,153,161,0,0,2,0,0,0,2,1,326,340,169,178,153,161,0,0,2,0,0,0,2,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,7,724,353,371,209,202,142,165,1,2,0,2,0,0,1,0,352,369,208,201,142,164,1,2,0,2,0,0,1,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,8,835,402,433,254,245,145,187,3,0,0,1,0,0,0,0,401,428,254,242,144,185,3,0,0,1,0,0,0,0,1,5,0,3,1,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,9,879,405,474,239,256,165,215,1,2,0,0,0,0,0,1,402,472,237,255,164,214,1,2,0,0,0,0,0,1,3,2,2,1,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,10,1044,509,535,285,272,222,261,2,1,0,1,0,0,0,0,508,533,285,271,221,260,2,1,0,1,0,0,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,11,1085,518,567,282,282,231,281,2,0,0,0,0,0,3,4,515,567,279,282,231,281,2,0,0,0,0,0,3,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,12,1020,484,536,252,280,231,255,0,0,1,0,0,0,0,1,484,533,252,278,231,254,0,0,1,0,0,0,0,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,13,943,438,505,266,311,171,190,0,1,0,0,0,0,1,3,436,499,266,309,169,187,0,1,0,0,0,0,1,2,2,6,0,2,2,3,0,0,0,0,0,0,0,1 -050,01,023,Alabama,Choctaw County,12,14,832,399,433,272,252,124,178,0,0,0,0,0,0,3,3,393,430,268,249,122,178,0,0,0,0,0,0,3,3,6,3,4,3,2,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,15,627,302,325,199,219,102,105,0,0,0,0,0,0,1,1,300,324,197,218,102,105,0,0,0,0,0,0,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,16,448,177,271,126,185,49,84,0,0,0,1,0,0,2,1,177,271,126,185,49,84,0,0,0,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,17,329,130,199,85,129,44,70,0,0,0,0,0,0,1,0,130,199,85,129,44,70,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,18,283,92,191,62,116,30,74,0,1,0,0,0,0,0,0,91,191,61,116,30,74,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,99,13859,6688,7171,3808,3949,2834,3179,11,7,5,7,0,0,30,29,6648,7138,3778,3929,2824,3167,11,7,5,7,0,0,30,28,40,33,30,20,10,12,0,0,0,0,0,0,0,1 -050,01,023,Alabama,Choctaw County,13,0,131,71,60,34,38,37,22,0,0,0,0,0,0,0,0,71,60,34,38,37,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,1,606,327,279,161,156,162,120,0,0,0,0,0,0,4,3,324,276,158,154,162,119,0,0,0,0,0,0,4,3,3,3,3,2,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,2,855,464,391,270,196,190,191,0,1,0,0,0,0,4,3,461,389,268,194,189,191,0,1,0,0,0,0,4,3,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,3,948,465,483,260,254,200,225,1,0,0,0,0,0,4,4,462,483,257,254,200,225,1,0,0,0,0,0,4,4,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,4,900,463,437,216,196,240,236,2,2,2,0,0,0,3,3,460,436,214,195,240,236,1,2,2,0,0,0,3,3,3,1,2,1,0,0,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,5,666,346,320,152,170,191,148,1,0,0,0,0,0,2,2,342,319,149,170,190,147,1,0,0,0,0,0,2,2,4,1,3,0,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,6,676,332,344,173,180,154,162,0,0,3,2,0,0,2,0,327,340,169,177,153,161,0,0,3,2,0,0,2,0,5,4,4,3,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,7,729,352,377,208,205,142,166,0,2,1,4,0,0,1,0,352,375,208,204,142,165,0,2,1,4,0,0,1,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,8,831,400,431,252,238,142,186,2,2,1,3,0,0,3,2,397,426,250,235,141,184,2,2,1,3,0,0,3,2,3,5,2,3,1,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,9,878,407,471,238,253,163,212,3,2,1,0,0,0,2,4,404,470,236,252,162,212,3,2,1,0,0,0,2,4,3,1,2,1,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,10,1046,512,534,285,270,221,257,2,2,2,2,0,0,2,3,510,532,283,268,221,257,2,2,2,2,0,0,2,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,11,1085,516,569,282,282,231,282,0,1,0,0,0,0,3,4,514,568,280,281,231,282,0,1,0,0,0,0,3,4,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,12,1026,487,539,251,282,230,253,2,0,2,1,0,0,2,3,487,536,251,279,230,253,2,0,2,1,0,0,2,3,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,13,945,444,501,269,311,172,189,1,1,0,0,0,0,2,0,443,498,269,309,171,188,1,1,0,0,0,0,2,0,1,3,0,2,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,14,827,397,430,273,253,121,177,1,0,0,0,0,0,2,0,392,428,268,251,121,177,1,0,0,0,0,0,2,0,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,15,625,298,327,196,221,101,105,0,0,0,0,0,0,1,1,297,325,195,219,101,105,0,0,0,0,0,0,1,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,16,440,170,270,123,185,47,84,0,0,0,0,0,0,0,1,170,268,123,183,47,84,0,0,0,0,0,0,0,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,17,323,125,198,83,129,42,69,0,0,0,0,0,0,0,0,125,198,83,129,42,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,18,283,92,191,62,115,30,75,0,1,0,0,0,0,0,0,91,191,61,115,30,75,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,99,13820,6668,7152,3788,3934,2816,3159,15,14,12,12,0,0,37,33,6629,7118,3756,3907,2810,3152,14,14,12,12,0,0,37,33,39,34,32,27,6,7,1,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,0,395,195,200,101,83,89,116,1,1,2,0,0,0,2,0,194,199,100,83,89,115,1,1,2,0,0,0,2,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,1,1683,825,858,381,427,431,422,3,0,2,3,0,0,8,6,814,847,374,420,427,418,3,0,2,3,0,0,8,6,11,11,7,7,4,4,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,2,2197,1113,1084,542,494,560,580,4,4,2,1,0,0,5,5,1107,1073,541,490,555,573,4,4,2,1,0,0,5,5,6,11,1,4,5,7,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,3,2191,1140,1051,590,507,535,532,4,5,2,2,0,0,9,5,1133,1046,587,504,531,530,4,5,2,2,0,0,9,5,7,5,3,3,4,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,4,2163,1105,1058,547,489,551,561,1,3,2,0,0,0,4,5,1095,1052,543,485,545,559,1,3,2,0,0,0,4,5,10,6,4,4,6,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,5,1554,731,823,330,374,394,447,4,0,1,1,0,0,2,1,724,815,326,367,391,446,4,0,1,1,0,0,2,1,7,8,4,7,3,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,6,1737,764,973,436,497,322,466,2,2,1,3,0,0,3,5,758,964,435,491,317,463,2,2,1,3,0,0,3,5,6,9,1,6,5,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,7,1790,822,968,474,509,339,451,4,1,3,5,0,0,2,2,819,960,473,504,337,448,4,1,3,5,0,0,2,2,3,8,1,5,2,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,8,2047,963,1084,559,578,389,496,4,2,5,1,0,0,6,7,956,1077,556,574,385,493,4,2,5,1,0,0,6,7,7,7,3,4,4,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,9,2093,1023,1070,604,531,414,526,2,4,1,1,0,0,2,8,1021,1065,603,529,413,524,2,3,1,1,0,0,2,8,2,5,1,2,1,2,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,10,1811,882,929,501,561,378,363,2,1,0,1,0,0,1,3,881,922,501,557,377,360,2,1,0,1,0,0,1,3,1,7,0,4,1,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,11,1667,822,845,570,538,249,303,1,2,1,1,0,0,1,1,821,842,569,538,249,300,1,2,1,1,0,0,1,1,1,3,1,0,0,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,12,1480,700,780,484,522,213,253,1,1,1,1,0,0,1,3,699,773,484,516,212,252,1,1,1,1,0,0,1,3,1,7,0,6,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,13,1301,618,683,440,446,176,232,0,0,0,1,0,1,2,3,615,677,438,443,175,229,0,0,0,1,0,1,2,3,3,6,2,3,1,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,14,1117,502,615,341,397,159,214,1,1,0,0,0,0,1,3,498,615,337,397,159,214,1,1,0,0,0,0,1,3,4,0,4,0,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,15,919,402,517,265,338,136,175,0,0,1,1,0,0,0,3,400,516,263,337,136,175,0,0,1,1,0,0,0,3,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,16,680,252,428,172,291,80,135,0,0,0,0,0,0,0,2,250,423,171,288,79,133,0,0,0,0,0,0,0,2,2,5,1,3,1,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,17,556,189,367,123,261,66,100,0,1,0,0,0,0,0,5,188,365,122,260,66,99,0,1,0,0,0,0,0,5,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,18,489,134,355,79,238,55,117,0,0,0,0,0,0,0,0,133,353,79,238,54,115,0,0,0,0,0,0,0,0,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,99,27870,13182,14688,7539,8081,5536,6489,34,28,24,22,0,1,49,67,13106,14584,7502,8021,5497,6446,34,27,24,22,0,1,49,67,76,104,37,60,39,43,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,0,397,196,201,101,83,90,117,1,1,2,0,0,0,2,0,195,200,100,83,90,116,1,1,2,0,0,0,2,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,1,1669,818,851,378,423,427,419,3,0,2,3,0,0,8,6,807,840,371,416,423,415,3,0,2,3,0,0,8,6,11,11,7,7,4,4,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,2,2177,1103,1074,535,489,557,575,4,4,2,1,0,0,5,5,1097,1063,534,485,552,568,4,4,2,1,0,0,5,5,6,11,1,4,5,7,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,3,2193,1140,1053,588,505,537,536,4,5,2,2,0,0,9,5,1133,1048,585,502,533,534,4,5,2,2,0,0,9,5,7,5,3,3,4,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,4,2166,1108,1058,547,489,554,561,1,3,2,0,0,0,4,5,1098,1052,543,485,548,559,1,3,2,0,0,0,4,5,10,6,4,4,6,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,5,1556,732,824,330,375,395,447,4,0,1,1,0,0,2,1,725,816,326,368,392,446,4,0,1,1,0,0,2,1,7,8,4,7,3,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,6,1713,752,961,427,491,319,460,2,2,1,3,0,0,3,5,746,952,426,485,314,457,2,2,1,3,0,0,3,5,6,9,1,6,5,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,7,1782,818,964,470,506,339,450,4,1,3,5,0,0,2,2,815,956,469,501,337,447,4,1,3,5,0,0,2,2,3,8,1,5,2,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,8,2035,957,1078,554,572,388,496,4,2,5,1,0,0,6,7,950,1071,551,568,384,493,4,2,5,1,0,0,6,7,7,7,3,4,4,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,9,2093,1026,1067,604,528,417,526,2,4,1,1,0,0,2,8,1024,1062,603,526,416,524,2,3,1,1,0,0,2,8,2,5,1,2,1,2,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,10,1817,884,933,501,562,380,366,2,1,0,1,0,0,1,3,883,926,501,558,379,363,2,1,0,1,0,0,1,3,1,7,0,4,1,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,11,1679,828,851,573,540,252,307,1,2,1,1,0,0,1,1,827,848,572,540,252,304,1,2,1,1,0,0,1,1,1,3,1,0,0,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,12,1483,700,783,484,524,213,253,1,1,1,1,0,0,1,4,699,776,484,518,212,252,1,1,1,1,0,0,1,4,1,7,0,6,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,13,1301,619,682,441,446,176,231,0,0,0,1,0,1,2,3,616,676,439,443,175,228,0,0,0,1,0,1,2,3,3,6,2,3,1,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,14,1107,497,610,337,393,158,213,1,1,0,0,0,0,1,3,493,610,333,393,158,213,1,1,0,0,0,0,1,3,4,0,4,0,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,15,915,400,515,263,336,136,175,0,0,1,1,0,0,0,3,398,514,261,335,136,175,0,0,1,1,0,0,0,3,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,16,678,252,426,172,289,80,135,0,0,0,0,0,0,0,2,250,421,171,286,79,133,0,0,0,0,0,0,0,2,2,5,1,3,1,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,17,565,190,375,124,269,66,100,0,1,0,0,0,0,0,5,189,373,123,268,66,99,0,1,0,0,0,0,0,5,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,18,493,133,360,79,243,54,117,0,0,0,0,0,0,0,0,132,358,79,243,53,115,0,0,0,0,0,0,0,0,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,99,27819,13153,14666,7508,8063,5538,6484,34,28,24,22,0,1,49,68,13077,14562,7471,8003,5499,6441,34,27,24,22,0,1,49,68,76,104,37,60,39,43,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,0,427,207,220,104,109,98,109,1,1,2,0,0,0,2,1,206,219,103,109,98,108,1,1,2,0,0,0,2,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,1,1628,795,833,386,396,393,428,3,0,2,3,0,0,11,6,781,823,378,389,387,425,3,0,2,3,0,0,11,6,14,10,8,7,6,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,2,2121,1087,1034,508,452,568,572,4,4,2,1,0,0,5,5,1077,1020,503,445,563,565,4,4,2,1,0,0,5,5,10,14,5,7,5,7,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,3,2220,1151,1069,570,511,563,545,5,6,2,2,0,0,11,5,1143,1063,566,507,559,543,5,6,2,2,0,0,11,5,8,6,4,4,4,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,4,2107,1092,1015,557,472,528,535,1,3,2,0,0,0,4,5,1082,1009,552,468,523,533,1,3,2,0,0,0,4,5,10,6,5,4,5,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,5,1562,738,824,360,376,371,446,4,0,1,1,0,0,2,1,729,816,354,369,368,445,4,0,1,1,0,0,2,1,9,8,6,7,3,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,6,1572,692,880,379,454,307,416,2,2,1,3,0,0,3,5,687,871,378,448,303,413,2,2,1,3,0,0,3,5,5,9,1,6,4,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,7,1769,804,965,459,497,336,460,4,1,3,5,0,0,2,2,801,957,458,492,334,457,4,1,3,5,0,0,2,2,3,8,1,5,2,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,8,2016,937,1079,556,588,366,481,4,2,5,1,0,0,6,7,928,1072,551,584,362,478,4,2,5,1,0,0,6,7,9,7,5,4,4,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,9,2059,1020,1039,602,504,412,522,3,4,1,1,0,0,2,8,1017,1033,600,501,411,520,3,3,1,1,0,0,2,8,3,6,2,3,1,2,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,10,1842,886,956,510,548,373,403,2,1,0,1,0,0,1,3,885,949,510,544,372,400,2,1,0,1,0,0,1,3,1,7,0,4,1,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,11,1776,887,889,596,573,288,312,1,2,1,1,0,0,1,1,886,886,595,573,288,309,1,2,1,1,0,0,1,1,1,3,1,0,0,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,12,1460,671,789,472,533,196,251,1,1,1,1,0,0,1,3,670,782,472,527,195,250,1,1,1,1,0,0,1,3,1,7,0,6,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,13,1314,633,681,448,446,183,230,0,0,0,1,0,1,2,3,630,675,446,443,182,227,0,0,0,1,0,1,2,3,3,6,2,3,1,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,14,1130,510,620,350,401,158,215,1,1,0,0,0,0,1,3,506,620,346,401,158,215,1,1,0,0,0,0,1,3,4,0,4,0,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,15,925,403,522,267,330,135,188,0,0,1,1,0,0,0,3,401,521,265,329,135,188,0,0,1,1,0,0,0,3,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,16,671,270,401,177,267,93,132,0,0,0,0,0,0,0,2,268,396,176,264,92,130,0,0,0,0,0,0,0,2,2,5,1,3,1,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,17,553,173,380,117,265,56,110,0,0,0,0,0,0,0,5,172,378,116,264,56,109,0,0,0,0,0,0,0,5,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,18,472,127,345,80,238,47,107,0,0,0,0,0,0,0,0,126,343,80,238,46,105,0,0,0,0,0,0,0,0,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,99,27624,13083,14541,7498,7960,5471,6462,36,28,24,22,0,1,54,68,12995,14433,7449,7895,5432,6420,36,27,24,22,0,1,54,68,88,108,49,65,39,42,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,0,363,181,182,86,96,90,84,1,1,1,0,0,0,3,1,180,181,85,96,90,83,1,1,1,0,0,0,3,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,1,1566,768,798,374,372,379,416,3,1,4,3,0,0,8,6,757,788,368,365,374,413,3,1,4,3,0,0,8,6,11,10,6,7,5,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,2,2066,1051,1015,496,452,544,554,4,4,2,1,0,0,5,4,1044,1003,494,448,539,546,4,4,2,1,0,0,5,4,7,12,2,4,5,8,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,3,2184,1146,1038,556,507,572,520,6,5,2,1,0,0,10,5,1139,1032,553,503,568,518,6,5,2,1,0,0,10,5,7,6,3,4,4,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,4,2070,1083,987,558,441,517,535,1,4,2,1,0,0,5,6,1074,981,553,437,513,533,1,4,2,1,0,0,5,6,9,6,5,4,4,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,5,1548,721,827,359,367,355,458,4,0,1,1,0,0,2,1,712,820,353,361,352,457,4,0,1,1,0,0,2,1,9,7,6,6,3,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,6,1490,679,811,363,426,310,374,2,2,1,4,0,0,3,5,673,802,360,420,307,371,2,2,1,4,0,0,3,5,6,9,3,6,3,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,7,1751,789,962,447,483,333,470,4,2,3,5,0,0,2,2,784,954,444,478,331,467,4,2,3,5,0,0,2,2,5,8,3,5,2,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,8,1932,875,1057,527,578,334,469,4,2,4,1,0,0,6,7,869,1048,524,572,331,466,4,2,4,1,0,0,6,7,6,9,3,6,3,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,9,2081,1003,1078,581,540,417,525,2,4,1,1,0,0,2,8,1000,1071,579,536,416,523,2,3,1,1,0,0,2,8,3,7,2,4,1,2,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,10,1877,915,962,528,532,381,425,2,1,3,1,0,0,1,3,913,955,527,528,380,422,2,1,3,1,0,0,1,3,2,7,1,4,1,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,11,1694,828,866,535,550,290,312,1,2,1,1,0,0,1,1,827,864,534,550,290,310,1,2,1,1,0,0,1,1,1,2,1,0,0,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,12,1522,717,805,500,542,214,257,1,2,1,1,0,0,1,3,714,797,498,536,213,256,1,1,1,1,0,0,1,3,3,8,2,6,1,1,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,13,1359,643,716,457,476,183,235,1,1,0,1,0,0,2,3,640,711,455,473,182,233,1,1,0,1,0,0,2,3,3,5,2,3,1,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,14,1125,531,594,365,382,164,208,1,1,0,0,0,0,1,3,527,594,361,382,164,208,1,1,0,0,0,0,1,3,4,0,4,0,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,15,920,394,526,267,332,126,189,0,0,1,1,0,0,0,4,392,525,265,331,126,189,0,0,1,1,0,0,0,4,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,16,679,287,392,192,258,95,132,0,0,0,0,0,0,0,2,285,388,191,255,94,131,0,0,0,0,0,0,0,2,2,4,1,3,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,17,559,163,396,109,280,54,110,0,1,0,0,0,0,0,5,162,394,108,279,54,109,0,1,0,0,0,0,0,5,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,18,481,142,339,97,236,45,103,0,0,0,0,0,0,0,0,141,338,97,236,44,102,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,99,27267,12916,14351,7397,7850,5403,6376,37,33,27,23,0,0,52,69,12833,14246,7349,7786,5368,6337,37,31,27,23,0,0,52,69,83,105,48,64,35,39,0,2,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,0,351,184,167,90,95,89,69,1,1,1,0,0,0,3,2,183,165,89,94,89,68,1,1,1,0,0,0,3,2,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,1,1528,734,794,364,378,355,405,3,1,3,4,0,0,9,6,723,785,357,373,351,401,3,1,3,4,0,0,9,6,11,9,7,5,4,4,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,2,2012,1023,989,477,442,535,538,3,4,2,1,0,0,6,4,1013,977,473,436,529,532,3,4,2,1,0,0,6,4,10,12,4,6,6,6,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,3,2152,1119,1033,538,487,561,534,6,4,2,1,0,0,12,7,1106,1026,530,483,556,532,6,4,2,1,0,0,12,6,13,7,8,4,5,2,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,5,4,2044,1066,978,553,431,504,537,2,4,2,1,0,0,5,5,1057,971,548,428,500,533,2,4,2,1,0,0,5,5,9,7,5,3,4,4,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,5,1540,735,805,366,361,363,441,3,1,1,1,0,0,2,1,726,798,360,355,360,440,3,1,1,1,0,0,2,1,9,7,6,6,3,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,6,1418,639,779,326,384,306,384,3,2,1,4,0,0,3,5,632,771,322,378,303,382,3,2,1,4,0,0,3,5,7,8,4,6,3,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,7,1723,779,944,456,478,314,459,4,2,3,4,0,0,2,1,773,938,452,474,312,457,4,2,3,4,0,0,2,1,6,6,4,4,2,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,8,1844,841,1003,503,538,323,454,3,2,6,2,0,0,6,7,834,995,499,534,320,450,3,2,6,2,0,0,6,7,7,8,4,4,3,4,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,9,2076,987,1089,559,564,422,515,3,3,1,1,0,0,2,6,984,1082,557,560,421,513,3,2,1,1,0,0,2,6,3,7,2,4,1,2,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,10,1927,952,975,553,498,394,469,2,1,2,3,0,0,1,4,949,967,552,494,393,465,2,1,1,3,0,0,1,4,3,8,1,4,1,4,0,0,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,11,1675,832,843,516,532,313,306,1,2,1,2,0,0,1,1,829,840,513,531,313,304,1,2,1,2,0,0,1,1,3,3,3,1,0,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,12,1625,772,853,546,570,222,277,1,2,2,1,0,0,1,3,769,846,544,565,221,276,1,1,2,1,0,0,1,3,3,7,2,5,1,1,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,13,1360,637,723,464,485,169,231,2,2,0,1,0,1,2,3,634,718,462,482,168,229,2,2,0,1,0,1,2,3,3,5,2,3,1,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,14,1135,537,598,365,387,171,207,0,1,0,0,0,0,1,3,534,598,362,387,171,207,0,1,0,0,0,0,1,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,15,951,403,548,283,348,119,195,0,0,1,1,0,0,0,4,400,546,280,346,119,195,0,0,1,1,0,0,0,4,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,16,658,282,376,191,245,91,129,0,0,0,0,0,0,0,2,280,372,190,242,90,128,0,0,0,0,0,0,0,2,2,4,1,3,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,17,585,179,406,117,287,62,115,0,0,0,0,0,0,0,4,178,404,116,286,62,114,0,0,0,0,0,0,0,4,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,18,486,145,341,100,234,45,107,0,0,0,0,0,0,0,0,144,340,100,234,44,106,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,99,27090,12846,14244,7367,7744,5358,6372,37,32,28,27,0,1,56,68,12748,14139,7306,7682,5322,6332,37,30,27,27,0,1,56,67,98,105,61,62,36,40,0,2,1,0,0,0,0,1 -050,01,025,Alabama,Clarke County,6,0,355,184,171,80,80,98,88,1,1,1,0,0,0,4,2,183,169,79,79,98,87,1,1,1,0,0,0,4,2,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,1,1468,729,739,379,358,329,368,3,2,4,4,1,0,13,7,714,729,369,353,324,364,3,2,4,4,1,0,13,6,15,10,10,5,5,4,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,6,2,2031,1028,1003,458,457,559,537,2,4,2,1,0,0,7,4,1021,992,455,452,555,531,2,4,2,1,0,0,7,4,7,11,3,5,4,6,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,3,2171,1122,1049,534,506,570,532,5,5,2,1,0,0,11,5,1109,1040,527,500,565,529,5,5,2,1,0,0,10,5,13,9,7,6,5,3,0,0,0,0,0,0,1,0 -050,01,025,Alabama,Clarke County,6,4,2023,1035,988,521,456,505,521,2,4,2,1,0,0,5,6,1026,980,516,453,501,517,2,4,2,1,0,0,5,5,9,8,5,3,4,4,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,6,5,1526,741,785,383,337,351,445,3,1,1,1,0,0,3,1,731,778,376,331,348,444,3,1,1,1,0,0,3,1,10,7,7,6,3,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,6,1363,615,748,300,364,307,372,3,2,1,4,0,0,4,6,608,738,296,357,304,369,3,2,1,4,0,0,4,6,7,10,4,7,3,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,7,1720,753,967,445,495,300,464,4,2,3,5,0,0,1,1,747,958,440,490,299,461,4,2,3,4,0,0,1,1,6,9,5,5,1,3,0,0,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,6,8,1794,826,968,496,522,315,435,4,2,6,2,0,0,5,7,819,961,492,519,312,431,4,2,6,2,0,0,5,7,7,7,4,3,3,4,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,9,2042,980,1062,559,537,416,513,2,4,1,1,0,0,2,7,976,1055,556,533,415,511,2,3,1,1,0,0,2,7,4,7,3,4,1,2,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,10,1924,932,992,545,509,382,475,2,2,2,3,0,0,1,3,928,984,544,505,380,471,2,2,1,3,0,0,1,3,4,8,1,4,2,4,0,0,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,11,1726,842,884,507,560,332,317,1,3,1,2,0,0,1,2,839,880,504,559,332,314,1,3,1,2,0,0,1,2,3,4,3,1,0,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,12,1611,779,832,538,528,237,298,1,1,2,1,0,0,1,4,775,827,536,523,235,298,1,1,2,1,0,0,1,4,4,5,2,5,2,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,13,1388,640,748,461,508,175,234,2,2,0,1,0,1,2,2,637,744,459,505,174,233,2,2,0,1,0,1,2,2,3,4,2,3,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,14,1181,571,610,401,400,168,206,1,1,0,0,0,0,1,3,568,610,398,400,168,206,1,1,0,0,0,0,1,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,15,981,425,556,294,354,129,196,0,0,1,2,0,0,1,4,421,553,290,351,129,196,0,0,1,2,0,0,1,4,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,16,650,278,372,191,253,87,117,0,0,0,0,0,0,0,2,276,368,190,250,86,116,0,0,0,0,0,0,0,2,2,4,1,3,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,17,536,167,369,114,258,53,106,0,1,0,0,0,0,0,4,166,367,113,257,53,105,0,1,0,0,0,0,0,4,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,18,468,137,331,99,234,38,97,0,0,0,0,0,0,0,0,136,330,99,234,37,96,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,99,26958,12784,14174,7305,7716,5351,6321,36,37,29,29,1,1,62,70,12680,14063,7239,7651,5315,6279,36,36,28,28,1,1,61,68,104,111,66,65,36,42,0,1,1,1,0,0,1,2 -050,01,025,Alabama,Clarke County,7,0,355,184,171,103,101,74,67,1,1,1,0,0,0,5,2,183,170,103,100,73,67,1,1,1,0,0,0,5,2,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,1,1408,686,722,358,366,315,345,3,2,2,4,1,0,7,5,674,715,350,362,311,343,3,2,2,4,1,0,7,4,12,7,8,4,4,2,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,7,2,1975,999,976,443,440,544,523,3,4,2,3,1,0,6,6,992,962,440,435,540,516,3,4,2,3,1,0,6,4,7,14,3,5,4,7,0,0,0,0,0,0,0,2 -050,01,025,Alabama,Clarke County,7,3,2098,1088,1010,520,455,552,538,6,5,2,4,0,0,8,8,1076,1001,514,449,547,536,6,5,2,4,0,0,7,7,12,9,6,6,5,2,0,0,0,0,0,0,1,1 -050,01,025,Alabama,Clarke County,7,4,2036,1043,993,499,457,536,523,2,3,2,2,0,0,4,8,1034,984,495,453,531,519,2,3,2,2,0,0,4,7,9,9,4,4,5,4,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,7,5,1513,751,762,388,333,352,420,4,3,3,1,0,0,4,5,741,755,379,329,351,418,4,3,3,1,0,0,4,4,10,7,9,4,1,2,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,7,6,1363,597,766,278,365,313,388,4,4,0,2,0,0,2,7,589,756,273,358,311,386,3,3,0,2,0,0,2,7,8,10,5,7,2,2,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,7,1649,705,944,413,483,285,451,2,4,3,4,0,0,2,2,699,932,407,477,285,446,2,3,3,4,0,0,2,2,6,12,6,6,0,5,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,8,1689,775,914,467,477,298,430,2,2,6,3,0,0,2,2,768,904,463,473,295,424,2,2,6,3,0,0,2,2,7,10,4,4,3,6,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,9,2007,958,1049,553,552,398,487,5,3,1,2,0,0,1,5,950,1041,547,546,396,485,5,3,1,2,0,0,1,5,8,8,6,6,2,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,10,1971,949,1022,563,494,382,518,1,3,1,2,0,0,2,5,946,1014,560,489,382,515,1,3,1,2,0,0,2,5,3,8,3,5,0,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,11,1764,850,914,494,552,351,349,2,4,1,4,0,0,2,5,847,906,492,548,351,346,1,4,1,3,0,0,2,5,3,8,2,4,0,3,1,0,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,7,12,1667,797,870,564,552,229,309,2,4,1,1,0,0,1,4,791,864,560,547,227,309,2,3,1,1,0,0,1,4,6,6,4,5,2,0,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,13,1417,669,748,463,507,198,236,4,2,1,0,1,1,2,2,666,743,461,504,197,234,4,2,1,0,1,1,2,2,3,5,2,3,1,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,14,1188,569,619,403,418,165,199,0,1,0,0,0,0,1,1,568,619,402,418,165,199,0,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,15,981,427,554,295,358,130,190,0,0,0,3,0,0,2,3,423,552,292,356,129,190,0,0,0,3,0,0,2,3,4,2,3,2,1,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,16,702,302,400,206,268,95,128,0,1,0,1,0,0,1,2,302,398,206,266,95,128,0,1,0,1,0,0,1,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,17,493,161,332,124,224,36,104,0,0,1,0,0,0,0,4,161,330,124,223,36,103,0,0,1,0,0,0,0,4,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,18,488,153,335,95,243,55,91,0,0,1,0,0,0,2,1,153,333,95,242,55,90,0,0,1,0,0,0,2,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,99,26764,12663,14101,7229,7645,5308,6296,41,46,28,36,3,1,54,77,12563,13979,7163,7575,5277,6254,39,43,28,35,3,1,53,71,100,122,66,70,31,42,2,3,0,1,0,0,1,6 -050,01,025,Alabama,Clarke County,8,0,316,166,150,75,69,84,78,1,1,1,0,0,0,5,2,165,148,75,68,83,78,1,1,1,0,0,0,5,1,1,2,0,1,1,0,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,8,1,1351,681,670,356,361,310,298,3,3,2,4,1,0,9,4,668,663,347,357,306,296,3,3,2,4,1,0,9,3,13,7,9,4,4,2,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,8,2,1984,993,991,445,454,531,524,5,4,2,4,1,0,9,5,983,977,441,447,526,518,4,4,2,4,1,0,9,4,10,14,4,7,5,6,1,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,8,3,2090,1082,1008,518,441,548,550,4,5,2,4,0,0,10,8,1069,997,510,433,544,548,4,5,2,4,0,0,9,7,13,11,8,8,4,2,0,0,0,0,0,0,1,1 -050,01,025,Alabama,Clarke County,8,4,2044,1050,994,488,447,552,532,2,3,2,2,0,0,6,10,1039,984,482,443,547,527,2,3,2,2,0,0,6,9,11,10,6,4,5,5,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,8,5,1446,737,709,383,316,344,384,3,3,3,1,0,0,4,5,728,702,375,312,343,381,3,3,3,1,0,0,4,5,9,7,8,4,1,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,6,1433,634,799,310,380,314,404,5,4,1,3,0,0,4,8,626,788,305,373,312,401,4,3,1,3,0,0,4,8,8,11,5,7,2,3,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,7,1573,659,914,373,461,279,444,1,4,3,4,0,0,3,1,651,901,366,453,278,440,1,3,3,4,0,0,3,1,8,13,7,8,1,4,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,8,1688,776,912,468,472,297,434,3,3,6,3,0,0,2,0,771,904,464,468,296,430,3,3,6,3,0,0,2,0,5,8,4,4,1,4,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,9,1979,935,1044,547,549,382,486,4,3,1,2,0,0,1,4,927,1037,542,544,379,484,4,3,1,2,0,0,1,4,8,7,5,5,3,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,10,1975,982,993,568,483,408,500,1,2,2,2,1,0,2,6,977,985,565,479,407,497,1,2,1,2,1,0,2,5,5,8,3,4,1,3,0,0,1,0,0,0,0,1 -050,01,025,Alabama,Clarke County,8,11,1841,869,972,502,557,362,400,2,5,1,4,0,0,2,6,865,964,500,553,361,397,1,5,1,3,0,0,2,6,4,8,2,4,1,3,1,0,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,8,12,1750,839,911,571,578,264,326,2,3,1,1,0,0,1,3,832,905,566,572,262,326,2,3,1,1,0,0,1,3,7,6,5,6,2,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,13,1394,657,737,461,501,188,231,5,3,1,1,1,0,1,1,654,733,459,498,187,230,5,3,1,1,1,0,1,1,3,4,2,3,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,14,1197,586,611,415,408,167,201,1,1,1,0,0,0,2,1,584,609,413,407,167,200,1,1,1,0,0,0,2,1,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,15,1022,451,571,313,364,135,200,0,0,0,2,0,0,3,5,448,568,310,361,135,200,0,0,0,2,0,0,3,5,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,16,698,295,403,211,266,83,133,0,2,0,0,0,0,1,2,294,401,210,264,83,133,0,2,0,0,0,0,1,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,17,510,173,337,129,212,43,121,0,0,1,0,0,0,0,4,173,335,129,211,43,120,0,0,1,0,0,0,0,4,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,18,464,126,338,80,254,43,83,0,0,1,0,0,0,2,1,126,336,80,253,43,82,0,0,1,0,0,0,2,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,99,26755,12691,14064,7213,7573,5334,6329,42,49,31,37,4,0,67,76,12580,13937,7139,7496,5302,6288,39,47,30,36,4,0,66,70,111,127,74,77,32,41,3,2,1,1,0,0,1,6 -050,01,025,Alabama,Clarke County,9,0,311,158,153,69,74,82,76,1,1,1,0,0,0,5,2,157,151,69,73,81,76,1,1,1,0,0,0,5,1,1,2,0,1,1,0,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,9,1,1289,652,637,338,338,298,287,3,4,2,4,1,0,10,4,636,631,328,334,292,285,3,4,2,4,1,0,10,4,16,6,10,4,6,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,2,1930,961,969,433,467,512,487,4,5,2,4,1,0,9,6,953,956,431,462,507,481,3,5,2,4,1,0,9,4,8,13,2,5,5,6,1,0,0,0,0,0,0,2 -050,01,025,Alabama,Clarke County,9,3,2027,1010,1017,491,429,503,572,4,5,2,4,0,0,10,7,997,1008,484,423,498,570,4,5,2,4,0,0,9,6,13,9,7,6,5,2,0,0,0,0,0,0,1,1 -050,01,025,Alabama,Clarke County,9,4,2071,1065,1006,480,458,574,531,3,3,2,2,0,0,6,12,1055,994,474,454,570,524,3,3,2,2,0,0,6,11,10,12,6,4,4,7,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,9,5,1393,696,697,372,295,314,392,3,3,3,1,0,0,4,6,686,689,363,291,313,389,3,3,3,1,0,0,4,5,10,8,9,4,1,3,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,9,6,1420,638,782,315,367,312,399,5,4,1,4,0,0,5,8,629,771,309,359,310,397,4,3,1,4,0,0,5,8,9,11,6,8,2,2,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,7,1550,684,866,379,434,299,423,1,4,3,4,0,0,2,1,675,857,371,430,298,419,1,3,3,4,0,0,2,1,9,9,8,4,1,4,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,8,1642,746,896,447,452,289,438,3,3,6,3,0,0,1,0,741,887,443,447,288,434,3,3,6,3,0,0,1,0,5,9,4,5,1,4,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,9,1874,880,994,520,512,354,475,4,3,1,2,0,0,1,2,871,988,514,508,351,473,4,3,1,2,0,0,1,2,9,6,6,4,3,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,10,2011,971,1040,556,525,410,505,1,2,2,2,0,0,2,6,966,1032,553,521,409,502,1,2,1,2,0,0,2,5,5,8,3,4,1,3,0,0,1,0,0,0,0,1 -050,01,025,Alabama,Clarke County,9,11,1848,897,951,517,525,375,410,2,5,1,4,0,0,2,7,893,943,515,521,374,407,1,5,1,3,0,0,2,7,4,8,2,4,1,3,1,0,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,9,12,1681,797,884,520,548,273,327,2,5,1,1,0,0,1,3,790,878,515,543,271,327,2,4,1,1,0,0,1,3,7,6,5,5,2,0,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,13,1466,709,757,497,505,203,246,5,4,1,1,1,0,2,1,706,753,495,502,202,245,5,4,1,1,1,0,2,1,3,4,2,3,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,14,1266,598,668,426,450,168,215,1,2,1,0,0,0,2,1,597,666,425,449,168,214,1,2,1,0,0,0,2,1,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,15,985,459,526,319,339,138,181,0,0,0,2,0,0,2,4,455,523,316,336,137,181,0,0,0,2,0,0,2,4,4,3,3,3,1,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,16,700,301,399,210,266,90,128,0,2,0,1,0,0,1,2,300,397,209,264,90,128,0,2,0,1,0,0,1,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,17,476,157,319,120,200,36,115,0,0,1,0,0,0,0,4,157,317,120,199,36,114,0,0,1,0,0,0,0,4,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,18,496,136,360,90,269,43,90,0,0,1,0,0,0,2,1,136,358,90,268,43,89,0,0,1,0,0,0,2,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,99,26436,12515,13921,7099,7453,5273,6297,42,55,31,39,3,0,67,77,12400,13799,7024,7384,5238,6255,39,52,30,38,3,0,66,70,115,122,75,69,35,42,3,3,1,1,0,0,1,7 -050,01,025,Alabama,Clarke County,10,0,326,168,158,79,75,82,80,1,1,0,0,0,0,6,2,167,155,79,73,81,80,1,1,0,0,0,0,6,1,1,3,0,2,1,0,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,10,1,1231,619,612,305,316,301,282,2,4,1,5,1,0,9,5,604,607,297,314,294,280,2,4,1,5,1,0,9,4,15,5,8,2,7,2,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,10,2,1828,908,920,420,465,471,442,4,4,2,4,1,0,10,5,899,908,416,459,467,438,3,4,2,4,1,0,10,3,9,12,4,6,4,4,1,0,0,0,0,0,0,2 -050,01,025,Alabama,Clarke County,10,3,1986,988,998,480,445,491,537,5,5,2,3,0,0,10,8,971,989,469,439,486,535,5,5,2,3,0,0,9,7,17,9,11,6,5,2,0,0,0,0,0,0,1,1 -050,01,025,Alabama,Clarke County,10,4,2057,1056,1001,475,447,569,537,3,3,2,3,0,0,7,11,1047,990,470,444,565,530,3,3,2,3,0,0,7,10,9,11,5,3,4,7,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,10,5,1359,677,682,352,290,316,381,2,4,3,1,0,0,4,6,666,675,342,287,315,378,2,4,3,1,0,0,4,5,11,7,10,3,1,3,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,10,6,1405,653,752,318,362,324,375,5,4,1,4,0,0,5,7,644,741,311,354,323,373,4,3,1,4,0,0,5,7,9,11,7,8,1,2,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,7,1498,648,850,354,418,287,423,1,4,3,4,0,0,3,1,638,839,345,413,286,419,1,3,3,3,0,0,3,1,10,11,9,5,1,4,0,1,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,10,8,1622,736,886,440,442,285,437,2,3,8,4,0,0,1,0,730,877,435,438,284,432,2,3,8,4,0,0,1,0,6,9,5,4,1,5,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,9,1793,854,939,493,495,356,438,3,2,1,2,0,0,1,2,846,932,488,489,353,437,3,2,1,2,0,0,1,2,8,7,5,6,3,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,10,2000,973,1027,556,527,409,488,1,2,4,4,1,0,2,6,967,1018,553,523,408,484,1,2,2,4,1,0,2,5,6,9,3,4,1,4,0,0,2,0,0,0,0,1 -050,01,025,Alabama,Clarke County,10,11,1935,950,985,547,517,398,451,2,5,1,5,0,0,2,7,944,977,543,512,397,449,1,5,1,4,0,0,2,7,6,8,4,5,1,2,1,0,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,10,12,1641,781,860,484,524,292,327,2,5,2,1,0,0,1,3,772,854,478,519,289,327,2,4,2,1,0,0,1,3,9,6,6,5,3,0,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,13,1564,752,812,528,529,213,276,7,5,1,1,1,0,2,1,749,808,526,526,212,275,7,5,1,1,1,0,2,1,3,4,2,3,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,14,1262,596,666,429,442,163,221,1,2,1,0,0,0,2,1,595,664,428,441,163,220,1,2,1,0,0,0,2,1,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,15,994,456,538,318,346,136,186,0,0,0,2,0,0,2,4,451,535,314,343,135,186,0,0,0,2,0,0,2,4,5,3,4,3,1,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,16,765,327,438,231,291,95,142,0,2,0,1,0,0,1,2,326,436,230,289,95,142,0,2,0,1,0,0,1,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,17,512,191,321,140,203,50,115,0,0,1,0,0,0,0,3,191,318,140,202,50,113,0,0,1,0,0,0,0,3,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,18,505,144,361,96,261,45,99,0,0,1,0,0,0,2,1,144,360,96,260,45,99,0,0,1,0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,99,26283,12477,13806,7045,7395,5283,6237,41,55,34,44,4,0,70,75,12351,13683,6960,7325,5248,6197,38,52,32,42,4,0,69,67,126,123,85,70,35,40,3,3,2,2,0,0,1,8 -050,01,025,Alabama,Clarke County,11,0,300,152,148,75,64,70,80,1,1,0,0,0,0,6,3,151,145,75,62,69,80,1,1,0,0,0,0,6,2,1,3,0,2,1,0,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,11,1,1184,629,555,293,290,319,251,3,4,2,5,1,0,11,5,614,550,285,288,312,249,3,4,2,5,1,0,11,4,15,5,8,2,7,2,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,11,2,1745,844,901,414,459,413,429,4,4,2,4,1,0,10,5,833,888,409,453,408,424,3,4,2,4,1,0,10,3,11,13,5,6,5,5,1,0,0,0,0,0,0,2 -050,01,025,Alabama,Clarke County,11,3,2000,1003,997,465,452,519,529,5,5,2,3,0,0,12,8,987,987,455,445,514,527,5,5,2,3,0,0,11,7,16,10,10,7,5,2,0,0,0,0,0,0,1,1 -050,01,025,Alabama,Clarke County,11,4,2025,1031,994,468,437,551,538,3,4,2,3,0,0,7,12,1020,983,461,434,547,531,3,4,2,3,0,0,7,11,11,11,7,3,4,7,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,11,5,1293,640,653,325,276,306,366,2,4,3,1,0,0,4,6,628,646,314,273,305,363,2,4,3,1,0,0,4,5,12,7,11,3,1,3,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,11,6,1441,672,769,364,370,296,382,6,4,1,5,0,0,5,8,663,758,357,362,295,380,5,3,1,5,0,0,5,8,9,11,7,8,1,2,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,7,1482,673,809,349,401,317,399,1,4,3,4,0,0,3,1,662,798,339,396,316,395,1,3,3,3,0,0,3,1,11,11,10,5,1,4,0,1,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,11,8,1637,726,911,434,439,282,465,2,3,7,4,0,0,1,0,721,902,430,434,281,461,2,3,7,4,0,0,1,0,5,9,4,5,1,4,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,9,1751,840,911,488,480,347,425,3,2,1,2,0,0,1,2,832,902,483,473,344,423,3,2,1,2,0,0,1,2,8,9,5,7,3,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,10,1952,945,1007,538,494,401,501,1,2,2,4,1,0,2,6,940,998,534,490,400,497,1,2,2,4,1,0,2,5,5,9,4,4,1,4,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,11,11,1919,919,1000,515,530,398,452,2,6,2,5,0,0,2,7,912,991,511,525,397,450,1,5,1,4,0,0,2,7,7,9,4,5,1,2,1,1,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,11,12,1690,792,898,474,540,313,349,2,5,2,1,0,0,1,3,782,892,467,535,310,349,2,4,2,1,0,0,1,3,10,6,7,5,3,0,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,13,1529,751,778,506,484,234,288,7,4,1,1,1,0,2,1,748,774,504,481,233,287,7,4,1,1,1,0,2,1,3,4,2,3,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,14,1300,595,705,412,477,179,225,1,2,1,0,0,0,2,1,594,703,411,476,179,224,1,2,1,0,0,0,2,1,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,15,1050,500,550,364,357,133,186,0,0,0,2,0,0,3,5,495,546,360,353,132,186,0,0,0,2,0,0,3,5,5,4,4,4,1,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,16,769,326,443,235,295,90,143,0,2,0,1,0,0,1,2,325,441,234,293,90,143,0,2,0,1,0,0,1,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,17,500,184,316,147,208,36,105,0,0,1,0,0,0,0,3,184,313,147,207,36,103,0,0,1,0,0,0,0,3,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,18,471,131,340,92,233,36,106,0,0,1,0,0,0,2,1,131,339,92,232,36,106,0,0,1,0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,99,26038,12353,13685,6958,7286,5240,6219,43,56,33,45,4,0,75,79,12222,13556,6868,7212,5204,6178,40,52,32,43,4,0,74,71,131,129,90,74,36,41,3,4,1,2,0,0,1,8 -050,01,025,Alabama,Clarke County,12,0,302,153,149,71,67,75,78,1,1,0,0,0,0,6,3,152,146,71,65,74,78,1,1,0,0,0,0,6,2,1,3,0,2,1,0,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,12,1,1166,603,563,278,273,308,275,3,5,2,5,1,0,11,5,586,558,268,271,301,273,3,5,2,5,1,0,11,4,17,5,10,2,7,2,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,12,2,1701,834,867,407,458,410,396,4,4,2,4,1,0,10,5,823,853,402,451,405,391,3,4,2,4,1,0,10,3,11,14,5,7,5,5,1,0,0,0,0,0,0,2 -050,01,025,Alabama,Clarke County,12,3,1945,955,990,454,452,482,522,5,5,2,3,0,0,12,8,940,980,445,445,477,520,5,5,2,3,0,0,11,7,15,10,9,7,5,2,0,0,0,0,0,0,1,1 -050,01,025,Alabama,Clarke County,12,4,1997,1020,977,472,425,536,533,3,4,2,3,0,0,7,12,1007,966,463,422,532,526,3,4,2,3,0,0,7,11,13,11,9,3,4,7,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,12,5,1264,640,624,327,262,304,351,2,4,3,1,0,0,4,6,627,617,315,259,303,348,2,4,3,1,0,0,4,5,13,7,12,3,1,3,0,0,0,0,0,0,0,1 -050,01,025,Alabama,Clarke County,12,6,1372,639,733,347,356,280,359,6,4,1,5,0,0,5,9,629,722,339,348,279,357,5,3,1,5,0,0,5,9,10,11,8,8,1,2,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,7,1502,672,830,338,409,327,411,1,5,3,4,0,0,3,1,661,819,328,404,326,407,1,4,3,3,0,0,3,1,11,11,10,5,1,4,0,1,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,12,8,1590,699,891,406,428,283,456,2,3,7,4,0,0,1,0,693,882,401,424,282,451,2,3,7,4,0,0,1,0,6,9,5,4,1,5,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,9,1710,815,895,466,454,343,435,4,2,1,2,0,0,1,2,805,885,459,446,340,433,4,2,1,2,0,0,1,2,10,10,7,8,3,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,10,1914,913,1001,532,518,374,471,1,2,3,4,1,0,2,6,907,992,528,514,373,467,1,2,2,4,1,0,2,5,6,9,4,4,1,4,0,0,1,0,0,0,0,1 -050,01,025,Alabama,Clarke County,12,11,1960,943,1017,540,516,397,483,2,6,2,5,0,0,2,7,936,1008,536,511,396,481,1,5,1,4,0,0,2,7,7,9,4,5,1,2,1,1,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,12,12,1706,808,898,464,533,339,356,2,5,2,1,0,0,1,3,798,892,457,528,336,356,2,4,2,1,0,0,1,3,10,6,7,5,3,0,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,13,1530,741,789,505,496,225,286,7,5,1,1,1,0,2,1,738,785,503,493,224,285,7,5,1,1,1,0,2,1,3,4,2,3,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,14,1306,607,699,421,468,182,228,1,2,1,0,0,0,2,1,606,697,420,467,182,227,1,2,1,0,0,0,2,1,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,15,1052,491,561,365,367,123,187,0,0,0,2,0,0,3,5,486,557,361,363,122,187,0,0,0,2,0,0,3,5,5,4,4,4,1,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,16,786,339,447,246,304,92,138,0,2,0,1,0,0,1,2,338,445,245,302,92,138,0,2,0,1,0,0,1,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,17,554,208,346,158,219,49,124,0,0,1,0,0,0,0,3,208,343,158,218,49,122,0,0,1,0,0,0,0,3,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,18,476,134,342,92,229,39,112,0,0,1,0,0,0,2,1,134,341,92,228,39,112,0,0,1,0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,99,25833,12214,13619,6889,7234,5168,6201,44,59,34,45,4,0,75,80,12074,13488,6791,7159,5132,6159,41,55,32,43,4,0,74,72,140,131,98,75,36,42,3,4,2,2,0,0,1,8 -050,01,025,Alabama,Clarke County,13,0,304,155,149,71,66,75,78,1,1,1,1,0,0,7,3,154,145,71,65,74,77,1,1,1,0,0,0,7,2,1,4,0,1,1,1,0,0,0,1,0,0,0,1 -050,01,025,Alabama,Clarke County,13,1,1159,598,561,275,270,305,276,3,4,3,3,3,1,9,7,579,557,264,269,301,274,3,4,3,3,0,0,8,7,19,4,11,1,4,2,0,0,0,0,3,1,1,0 -050,01,025,Alabama,Clarke County,13,2,1699,835,864,408,455,412,396,2,4,2,4,2,0,9,5,818,849,400,446,405,391,2,3,1,4,1,0,9,5,17,15,8,9,7,5,0,1,1,0,1,0,0,0 -050,01,025,Alabama,Clarke County,13,3,1928,951,977,452,444,479,518,6,3,2,2,1,1,11,9,934,969,443,440,475,516,4,2,2,2,0,0,10,9,17,8,9,4,4,2,2,1,0,0,1,1,1,0 -050,01,025,Alabama,Clarke County,13,4,1974,1009,965,465,418,529,526,5,6,1,4,0,0,9,11,998,957,458,416,528,521,3,5,1,4,0,0,8,11,11,8,7,2,1,5,2,1,0,0,0,0,1,0 -050,01,025,Alabama,Clarke County,13,5,1256,641,615,325,260,306,349,3,3,3,2,0,0,4,1,628,609,313,258,305,346,3,2,3,2,0,0,4,1,13,6,12,2,1,3,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,6,1366,637,729,347,356,279,359,4,2,3,5,1,0,3,7,628,716,339,347,279,356,4,2,2,5,1,0,3,6,9,13,8,9,0,3,0,0,1,0,0,0,0,1 -050,01,025,Alabama,Clarke County,13,7,1508,673,835,336,412,328,411,1,5,3,4,0,1,5,2,664,827,328,407,327,408,1,5,3,4,0,1,5,2,9,8,8,5,1,3,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,8,1578,693,885,403,418,281,454,2,3,5,3,0,1,2,6,684,876,397,415,279,449,1,3,5,3,0,0,2,6,9,9,6,3,2,5,1,0,0,0,0,1,0,0 -050,01,025,Alabama,Clarke County,13,9,1706,815,891,464,450,341,433,5,2,2,2,0,0,3,4,805,881,458,443,338,431,4,1,2,2,0,0,3,4,10,10,6,7,3,2,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,10,1903,911,992,529,513,372,466,2,4,4,4,0,0,4,5,905,983,523,508,372,463,2,3,4,4,0,0,4,5,6,9,6,5,0,3,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,11,1960,943,1017,540,519,398,485,1,4,1,4,0,0,3,5,937,1007,536,513,397,482,0,4,1,3,0,0,3,5,6,10,4,6,1,3,1,0,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,13,12,1713,814,899,466,535,340,356,3,3,3,1,0,0,2,4,805,894,459,530,338,356,3,3,3,1,0,0,2,4,9,5,7,5,2,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,13,1536,745,791,509,498,228,287,6,4,1,1,0,0,1,1,743,788,507,495,228,287,6,4,1,1,0,0,1,1,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,14,1313,611,702,421,471,184,227,2,3,1,1,0,0,3,0,609,701,420,470,183,227,2,3,1,1,0,0,3,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,15,1051,491,560,365,368,123,188,0,0,1,1,0,0,2,3,485,556,359,364,123,188,0,0,1,1,0,0,2,3,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,16,781,337,444,244,302,90,139,1,1,0,0,0,0,2,2,335,441,242,299,90,139,1,1,0,0,0,0,2,2,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,17,552,206,346,156,221,49,122,0,1,1,1,0,0,0,1,206,342,156,218,49,121,0,1,1,1,0,0,0,1,0,4,0,3,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,18,476,133,343,92,230,40,113,0,0,1,0,0,0,0,0,133,342,92,229,40,113,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,99,25763,12198,13565,6868,7206,5159,6183,47,53,38,43,7,4,79,76,12050,13440,6765,7132,5131,6145,40,47,36,41,2,1,76,74,148,125,103,74,28,38,7,6,2,2,5,3,3,2 -050,01,027,Alabama,Clay County,1,0,170,100,70,79,55,17,13,0,0,0,0,0,0,4,2,96,69,76,54,16,13,0,0,0,0,0,0,4,2,4,1,3,1,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,1,708,373,335,297,277,70,53,2,2,0,0,0,0,4,3,365,328,289,271,70,52,2,2,0,0,0,0,4,3,8,7,8,6,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,2,919,465,454,366,351,92,91,2,2,0,0,0,1,5,9,456,449,358,346,91,91,2,2,0,0,0,1,5,9,9,5,8,5,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,3,978,487,491,383,382,99,104,2,0,1,1,0,0,2,4,478,485,376,376,97,104,2,0,1,1,0,0,2,4,9,6,7,6,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,4,977,540,437,423,320,115,108,0,1,0,0,0,0,2,8,531,433,414,316,115,108,0,1,0,0,0,0,2,8,9,4,9,4,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,5,789,399,390,325,330,69,58,4,0,0,0,1,0,0,2,381,380,308,320,69,58,4,0,0,0,0,0,0,2,18,10,17,10,0,0,0,0,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,1,6,898,454,444,385,348,66,89,0,4,0,0,0,0,3,3,426,433,359,339,64,88,0,4,0,0,0,0,3,2,28,11,26,9,2,1,0,0,0,0,0,0,0,1 -050,01,027,Alabama,Clay County,1,7,911,468,443,381,357,80,84,3,1,0,0,1,0,3,1,451,435,365,349,80,84,3,1,0,0,0,0,3,1,17,8,16,8,0,0,0,0,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,1,8,1047,523,524,437,425,84,92,0,1,1,3,0,0,1,3,511,514,427,417,83,91,0,1,0,2,0,0,1,3,12,10,10,8,1,1,0,0,1,1,0,0,0,0 -050,01,027,Alabama,Clay County,1,9,1045,508,537,432,437,69,94,2,0,3,2,0,0,2,4,499,531,424,432,69,93,1,0,3,2,0,0,2,4,9,6,8,5,0,1,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,10,937,476,461,397,385,73,66,1,3,0,2,0,0,5,5,467,453,388,378,73,65,1,3,0,2,0,0,5,5,9,8,9,7,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,11,946,463,483,400,402,56,75,5,1,0,0,0,0,2,5,454,483,393,402,54,75,5,1,0,0,0,0,2,5,9,0,7,0,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,12,800,379,421,336,351,38,63,2,2,0,0,0,0,3,5,377,416,335,347,37,62,2,2,0,0,0,0,3,5,2,5,1,4,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,13,761,356,405,311,360,44,41,0,1,0,0,0,0,1,3,352,401,309,357,42,40,0,1,0,0,0,0,1,3,4,4,2,3,2,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,14,639,305,334,275,297,27,34,1,1,0,0,0,0,2,2,302,331,272,294,27,34,1,1,0,0,0,0,2,2,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,15,575,251,324,231,294,20,28,0,1,0,1,0,0,0,0,251,324,231,294,20,28,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,16,445,180,265,163,231,16,34,0,0,0,0,0,0,1,0,179,264,162,230,16,34,0,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,17,343,110,233,100,211,9,22,0,0,0,0,0,0,1,0,107,232,97,210,9,22,0,0,0,0,0,0,1,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,18,352,109,243,92,220,16,22,0,0,0,0,0,0,1,1,103,241,86,218,16,22,0,0,0,0,0,0,1,1,6,2,6,2,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,99,14240,6946,7294,5813,6033,1060,1171,24,20,5,9,2,1,42,60,6786,7202,5669,5950,1048,1164,23,20,4,8,0,1,42,59,160,92,144,83,12,7,1,0,1,1,2,0,0,1 -050,01,027,Alabama,Clay County,2,0,170,100,70,79,55,17,13,0,0,0,0,0,0,4,2,96,69,76,54,16,13,0,0,0,0,0,0,4,2,4,1,3,1,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,1,704,371,333,296,275,70,53,2,2,0,0,0,0,3,3,363,326,288,269,70,52,2,2,0,0,0,0,3,3,8,7,8,6,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,2,916,464,452,365,349,92,91,2,2,0,0,0,1,5,9,455,447,357,344,91,91,2,2,0,0,0,1,5,9,9,5,8,5,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,3,980,488,492,384,383,99,104,2,0,1,1,0,0,2,4,479,486,377,377,97,104,2,0,1,1,0,0,2,4,9,6,7,6,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,4,987,548,439,428,322,118,108,0,1,0,0,0,0,2,8,539,435,419,318,118,108,0,1,0,0,0,0,2,8,9,4,9,4,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,5,803,408,395,332,335,71,58,4,0,0,0,1,0,0,2,389,385,314,325,71,58,4,0,0,0,0,0,0,2,19,10,18,10,0,0,0,0,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,2,6,889,448,441,378,345,67,89,0,4,0,0,0,0,3,3,420,430,352,336,65,88,0,4,0,0,0,0,3,2,28,11,26,9,2,1,0,0,0,0,0,0,0,1 -050,01,027,Alabama,Clay County,2,7,906,462,444,379,358,76,84,3,1,0,0,1,0,3,1,445,436,363,350,76,84,3,1,0,0,0,0,3,1,17,8,16,8,0,0,0,0,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,2,8,1046,522,524,434,425,86,92,0,1,1,3,0,0,1,3,509,514,423,417,85,91,0,1,0,2,0,0,1,3,13,10,11,8,1,1,0,0,1,1,0,0,0,0 -050,01,027,Alabama,Clay County,2,9,1041,504,537,433,436,64,95,2,0,3,2,0,0,2,4,495,531,425,431,64,94,1,0,3,2,0,0,2,4,9,6,8,5,0,1,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,10,940,476,464,400,388,70,66,1,3,0,2,0,0,5,5,467,456,391,381,70,65,1,3,0,2,0,0,5,5,9,8,9,7,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,11,956,467,489,404,407,56,76,5,1,0,0,0,0,2,5,458,489,397,407,54,76,5,1,0,0,0,0,2,5,9,0,7,0,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,12,805,383,422,339,352,39,63,2,2,0,0,0,0,3,5,381,417,338,348,38,62,2,2,0,0,0,0,3,5,2,5,1,4,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,13,764,357,407,312,362,44,41,0,1,0,0,0,0,1,3,353,403,310,359,42,40,0,1,0,0,0,0,1,3,4,4,2,3,2,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,14,637,304,333,274,295,27,35,1,1,0,0,0,0,2,2,301,330,271,292,27,35,1,1,0,0,0,0,2,2,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,15,574,252,322,232,292,20,28,0,1,0,1,0,0,0,0,252,322,232,292,20,28,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,16,444,179,265,162,231,16,34,0,0,0,0,0,0,1,0,178,264,161,230,16,34,0,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,17,347,111,236,101,214,9,22,0,0,0,0,0,0,1,0,108,235,98,213,9,22,0,0,0,0,0,0,1,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,18,354,110,244,93,220,16,23,0,0,0,0,0,0,1,1,104,242,87,218,16,23,0,0,0,0,0,0,1,1,6,2,6,2,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,99,14263,6954,7309,5825,6044,1057,1175,24,20,5,9,2,1,41,60,6792,7217,5679,5961,1045,1168,23,20,4,8,0,1,41,59,162,92,146,83,12,7,1,0,1,1,2,0,0,1 -050,01,027,Alabama,Clay County,3,0,195,106,89,83,64,19,22,0,0,0,0,0,0,4,3,99,88,77,63,18,22,0,0,0,0,0,0,4,3,7,1,6,1,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,1,719,389,330,318,260,65,65,2,2,0,0,0,0,4,3,377,320,306,251,65,64,2,2,0,0,0,0,4,3,12,10,12,9,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,2,921,465,456,359,364,97,80,2,2,0,0,0,1,7,9,452,451,347,359,96,80,2,2,0,0,0,1,7,9,13,5,12,5,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,3,967,496,471,383,370,108,96,2,0,1,1,0,0,2,4,487,461,376,360,106,96,2,0,1,1,0,0,2,4,9,10,7,10,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,4,967,513,454,409,333,102,112,0,1,0,0,0,0,2,8,504,448,400,327,102,112,0,1,0,0,0,0,2,8,9,6,9,6,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,5,810,416,394,330,325,81,67,4,0,0,0,1,0,0,2,402,382,317,313,81,67,4,0,0,0,0,0,0,2,14,12,13,12,0,0,0,0,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,3,6,853,416,437,339,354,74,76,0,4,0,0,0,0,3,3,392,428,317,347,72,75,0,4,0,0,0,0,3,2,24,9,22,7,2,1,0,0,0,0,0,0,0,1 -050,01,027,Alabama,Clay County,3,7,909,469,440,396,360,66,78,3,1,0,0,1,0,3,1,453,429,381,349,66,78,3,1,0,0,0,0,3,1,16,11,15,11,0,0,0,0,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,3,8,1039,505,534,420,427,83,100,0,1,1,3,0,0,1,3,491,519,408,414,82,99,0,1,0,2,0,0,1,3,14,15,12,13,1,1,0,0,1,1,0,0,0,0 -050,01,027,Alabama,Clay County,3,9,1042,524,518,448,429,69,84,2,0,3,2,0,0,2,3,514,510,439,422,69,83,1,0,3,2,0,0,2,3,10,8,9,7,0,1,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,10,944,453,491,388,409,59,72,1,3,0,2,0,0,5,5,444,480,379,399,59,71,1,3,0,2,0,0,5,5,9,11,9,10,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,11,1012,512,500,439,420,66,74,5,1,0,0,0,0,2,5,503,499,432,419,64,74,5,1,0,0,0,0,2,5,9,1,7,1,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,12,836,399,437,355,368,39,61,2,3,0,0,0,0,3,5,397,432,354,364,38,60,2,3,0,0,0,0,3,5,2,5,1,4,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,13,729,333,396,293,346,39,46,0,1,0,0,0,0,1,3,329,392,291,343,37,45,0,1,0,0,0,0,1,3,4,4,2,3,2,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,14,634,304,330,269,298,32,29,1,1,0,0,0,0,2,2,301,328,266,296,32,29,1,1,0,0,0,0,2,2,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,15,585,270,315,253,287,17,26,0,1,0,1,0,0,0,0,270,315,253,287,17,26,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,16,433,185,248,166,229,18,19,0,0,0,0,0,0,1,0,184,247,165,228,18,19,0,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,17,359,122,237,104,213,17,24,0,0,0,0,0,0,1,0,119,236,101,212,17,24,0,0,0,0,0,0,1,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,18,344,110,234,95,215,14,18,0,0,0,0,0,0,1,1,105,232,90,213,14,18,0,0,0,0,0,0,1,1,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,99,14298,6987,7311,5847,6071,1065,1149,24,21,5,9,2,1,44,60,6823,7197,5699,5966,1053,1142,23,21,4,8,0,1,44,59,164,114,148,105,12,7,1,0,1,1,2,0,0,1 -050,01,027,Alabama,Clay County,4,0,171,97,74,73,59,19,12,0,0,0,0,0,0,5,3,92,70,69,55,18,12,0,0,0,0,0,0,5,3,5,4,4,4,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,1,743,393,350,329,266,56,78,2,1,0,0,0,0,6,5,381,338,317,255,56,77,2,1,0,0,0,0,6,5,12,12,12,11,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,2,911,464,447,350,356,104,78,2,2,0,0,0,1,8,10,454,442,341,351,103,78,2,2,0,0,0,1,8,10,10,5,9,5,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,3,948,487,461,369,357,112,98,2,0,1,1,0,0,3,5,473,453,357,349,110,98,2,0,1,1,0,0,3,5,14,8,12,8,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,4,956,505,451,408,339,95,102,0,1,0,0,0,0,2,9,493,443,397,331,94,102,0,1,0,0,0,0,2,9,12,8,11,8,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,5,840,420,420,333,337,81,81,4,0,0,0,1,0,1,2,404,404,318,321,81,81,4,0,0,0,0,0,1,2,16,16,15,16,0,0,0,0,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,4,6,793,374,419,299,337,72,75,0,4,0,0,0,0,3,3,353,407,280,327,70,74,0,4,0,0,0,0,3,2,21,12,19,10,2,1,0,0,0,0,0,0,0,1 -050,01,027,Alabama,Clay County,4,7,920,492,428,418,355,67,71,3,1,0,0,1,0,3,1,477,418,404,345,67,71,3,1,0,0,0,0,3,1,15,10,14,10,0,0,0,0,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,4,8,1008,489,519,405,415,82,98,0,1,1,2,0,0,1,3,472,505,390,402,81,97,0,1,0,2,0,0,1,3,17,14,15,13,1,1,0,0,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,9,1015,500,515,430,427,63,81,2,0,3,2,0,0,2,5,488,508,419,421,63,80,1,0,3,2,0,0,2,5,12,7,11,6,0,1,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,10,969,476,493,405,405,66,78,1,3,0,2,0,0,4,5,467,483,396,396,66,77,1,3,0,2,0,0,4,5,9,10,9,9,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,11,1018,503,515,432,444,65,65,4,1,0,0,0,0,2,5,494,514,425,443,63,65,4,1,0,0,0,0,2,5,9,1,7,1,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,12,849,417,432,371,358,41,64,2,3,0,0,0,0,3,7,415,426,370,353,40,63,2,3,0,0,0,0,3,7,2,6,1,5,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,13,750,332,418,293,361,38,52,0,2,0,0,0,0,1,3,328,414,291,358,36,51,0,2,0,0,0,0,1,3,4,4,2,3,2,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,14,673,323,350,280,315,40,32,1,1,0,0,0,0,2,2,320,348,277,313,40,32,1,1,0,0,0,0,2,2,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,15,577,278,299,256,265,22,32,0,1,0,1,0,0,0,0,278,299,256,265,22,32,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,16,441,191,250,175,230,15,20,0,0,0,0,0,0,1,0,190,249,174,229,15,20,0,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,17,360,134,226,116,206,17,20,0,0,0,0,0,0,1,0,131,225,113,205,17,20,0,0,0,0,0,0,1,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,18,315,88,227,78,208,9,18,0,0,0,0,0,0,1,1,83,225,73,206,9,18,0,0,0,0,0,0,1,1,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,99,14257,6963,7294,5820,6040,1064,1155,23,21,5,8,2,1,49,69,6793,7171,5667,5925,1051,1148,22,21,4,8,0,1,49,68,170,123,153,115,13,7,1,0,1,0,2,0,0,1 -050,01,027,Alabama,Clay County,5,0,138,78,60,56,51,17,6,0,0,0,0,0,0,5,3,74,59,53,50,16,6,0,0,0,0,0,0,5,3,4,1,3,1,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,1,728,392,336,321,252,60,77,2,1,0,0,0,0,9,6,377,323,306,240,60,76,2,1,0,0,0,0,9,6,15,13,15,12,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,2,911,461,450,361,362,90,74,1,2,0,0,0,1,9,11,452,444,354,356,88,74,1,2,0,0,0,1,9,11,9,6,7,6,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,3,935,489,446,372,346,106,92,3,0,1,1,0,0,7,7,479,440,364,340,104,92,3,0,1,1,0,0,7,7,10,6,8,6,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,4,952,485,467,382,367,100,90,0,2,0,0,0,0,3,8,474,458,372,358,99,90,0,2,0,0,0,0,3,8,11,9,10,9,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,5,829,433,396,337,305,88,89,4,0,0,0,1,0,3,2,420,381,325,290,88,89,4,0,0,0,0,0,3,2,13,15,12,15,0,0,0,0,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,5,6,761,366,395,293,327,70,61,0,4,0,0,0,0,3,3,345,382,274,316,68,60,0,4,0,0,0,0,3,2,21,13,19,11,2,1,0,0,0,0,0,0,0,1 -050,01,027,Alabama,Clay County,5,7,916,471,445,402,349,61,91,3,1,0,2,1,0,4,2,454,437,386,341,61,91,3,1,0,2,0,0,4,2,17,8,16,8,0,0,0,0,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,5,8,1019,495,524,400,408,93,110,0,1,1,2,0,0,1,3,475,515,382,400,92,109,0,1,0,2,0,0,1,3,20,9,18,8,1,1,0,0,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,9,970,477,493,411,412,59,74,2,1,3,2,0,0,2,4,466,486,401,406,59,73,1,1,3,2,0,0,2,4,11,7,10,6,0,1,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,10,1026,506,520,430,430,69,79,2,3,0,2,0,0,5,6,497,511,422,422,68,78,2,3,0,2,0,0,5,6,9,9,8,8,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,11,983,495,488,414,421,73,62,5,1,0,0,0,0,3,4,487,487,408,420,71,62,5,1,0,0,0,0,3,4,8,1,6,1,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,12,874,433,441,388,362,40,69,2,3,0,0,0,0,3,7,431,435,387,357,39,68,2,3,0,0,0,0,3,7,2,6,1,5,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,13,770,339,431,301,366,37,58,0,3,0,0,0,0,1,4,335,427,299,363,35,57,0,3,0,0,0,0,1,4,4,4,2,3,2,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,14,684,321,363,283,326,34,34,1,1,0,0,0,0,3,2,317,361,279,324,34,34,1,1,0,0,0,0,3,2,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,15,591,292,299,266,268,26,29,0,1,0,1,0,0,0,0,291,299,265,268,26,29,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,16,475,209,266,193,241,15,25,0,0,0,0,0,0,1,0,208,265,192,240,15,25,0,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,17,336,122,214,103,189,18,25,0,0,0,0,0,0,1,0,120,213,101,188,18,25,0,0,0,0,0,0,1,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,18,305,79,226,71,207,7,18,0,0,0,0,0,0,1,1,75,225,67,206,7,18,0,0,0,0,0,0,1,1,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,99,14203,6943,7260,5784,5989,1063,1163,25,24,5,10,2,1,64,73,6777,7148,5637,5885,1048,1156,24,24,4,10,0,1,64,72,166,112,147,104,15,7,1,0,1,0,2,0,0,1 -050,01,027,Alabama,Clay County,6,0,168,94,74,74,62,15,8,0,0,0,0,0,0,5,4,86,69,67,57,14,8,0,0,0,0,0,0,5,4,8,5,7,5,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,1,644,354,290,292,217,54,65,2,1,0,0,0,0,6,7,334,280,272,208,54,64,2,1,0,0,0,0,6,7,20,10,20,9,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,2,900,457,443,362,358,84,72,1,2,0,0,0,0,10,11,445,437,352,352,82,72,1,2,0,0,0,0,10,11,12,6,10,6,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,3,944,485,459,388,370,86,81,3,0,1,1,0,0,7,7,470,450,375,361,84,81,3,0,1,1,0,0,7,7,15,9,13,9,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,4,952,487,465,375,354,109,101,0,2,0,0,0,0,3,8,477,455,366,344,108,101,0,2,0,0,0,0,3,8,10,10,9,10,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,5,802,394,408,320,317,66,89,4,0,0,0,1,0,3,2,380,394,307,303,66,89,4,0,0,0,0,0,3,2,14,14,13,14,0,0,0,0,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,6,6,776,390,386,292,322,95,58,0,4,0,0,0,0,3,2,362,375,265,312,94,57,0,4,0,0,0,0,3,2,28,11,27,10,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,7,862,431,431,373,349,50,77,3,1,0,2,1,0,4,2,411,422,354,340,50,77,3,1,0,2,0,0,4,2,20,9,19,9,0,0,0,0,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,6,8,996,506,490,415,378,88,104,1,2,1,2,0,0,1,4,486,481,396,370,88,103,1,2,0,2,0,0,1,4,20,9,19,8,0,1,0,0,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,9,993,470,523,396,435,66,80,1,2,3,2,0,0,4,4,461,515,387,428,66,79,1,2,3,2,0,0,4,4,9,8,9,7,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,10,1025,501,524,424,432,69,81,2,3,0,2,0,0,6,6,491,513,415,422,68,80,2,3,0,2,0,0,6,6,10,11,9,10,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,11,971,482,489,406,422,67,63,5,1,0,0,0,0,4,3,475,487,400,420,66,63,5,1,0,0,0,0,4,3,7,2,6,2,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,12,890,438,452,387,372,46,70,2,3,0,0,0,0,3,7,435,447,386,368,44,69,2,3,0,0,0,0,3,7,3,5,1,4,2,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,13,795,368,427,331,366,36,53,0,3,0,0,0,0,1,5,364,424,329,363,34,53,0,3,0,0,0,0,1,5,4,3,2,3,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,14,704,332,372,285,335,43,34,1,1,0,0,0,0,3,2,328,370,281,334,43,33,1,1,0,0,0,0,3,2,4,2,4,1,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,15,591,277,314,254,278,23,34,0,1,0,1,0,0,0,0,276,314,253,278,23,34,0,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,16,487,232,255,215,232,15,22,1,0,0,0,0,0,1,1,231,254,214,231,15,22,1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,17,317,110,207,95,186,15,21,0,0,0,0,0,0,0,0,109,205,94,184,15,21,0,0,0,0,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,18,304,80,224,71,206,8,17,0,0,0,0,0,0,1,1,76,223,67,205,8,17,0,0,0,0,0,0,1,1,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,99,14121,6888,7233,5755,5991,1035,1130,26,26,5,10,2,0,65,76,6697,7115,5580,5880,1022,1123,26,26,4,10,0,0,65,76,191,118,175,111,13,7,0,0,1,0,2,0,0,0 -050,01,027,Alabama,Clay County,7,0,141,84,57,62,43,16,10,0,0,1,0,0,0,5,4,82,54,60,40,16,10,0,0,1,0,0,0,5,4,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,1,639,340,299,272,221,57,65,1,1,0,0,0,0,10,12,325,285,258,207,56,65,1,1,0,0,0,0,10,12,15,14,14,14,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,2,925,476,449,376,364,84,74,1,0,2,0,0,0,13,11,456,440,357,355,83,74,1,0,2,0,0,0,13,11,20,9,19,9,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,3,940,477,463,375,375,91,80,3,0,1,0,0,0,7,8,464,449,364,362,89,79,3,0,1,0,0,0,7,8,13,14,11,13,2,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,4,935,479,456,369,352,106,96,1,2,1,0,0,0,2,6,461,445,352,341,105,96,1,2,1,0,0,0,2,6,18,11,17,11,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,5,803,401,402,312,312,82,87,3,0,0,0,0,0,4,3,386,387,298,298,81,86,3,0,0,0,0,0,4,3,15,15,14,14,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,6,749,380,369,295,304,80,57,2,3,0,2,0,0,3,3,354,358,270,294,80,56,2,3,0,2,0,0,2,3,26,11,25,10,0,1,0,0,0,0,0,0,1,0 -050,01,027,Alabama,Clay County,7,7,884,425,459,364,366,53,90,3,0,1,2,0,0,4,1,405,440,347,347,51,90,3,0,0,2,0,0,4,1,20,19,17,19,2,0,0,0,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,8,957,485,472,394,365,90,103,0,2,1,0,0,0,0,2,466,457,377,351,88,102,0,2,1,0,0,0,0,2,19,15,17,14,2,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,9,1018,486,532,402,447,78,76,2,2,0,1,0,0,4,6,472,527,388,442,78,76,2,2,0,1,0,0,4,6,14,5,14,5,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,10,1009,494,515,428,426,59,80,1,2,0,2,0,0,6,5,485,505,420,417,58,79,1,2,0,2,0,0,6,5,9,10,8,9,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,11,934,471,463,398,396,66,60,4,3,1,1,0,0,2,3,465,459,392,393,66,59,4,3,1,1,0,0,2,3,6,4,6,3,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,12,950,472,478,417,395,53,71,1,2,0,2,0,0,1,8,467,473,414,390,51,71,1,2,0,2,0,0,1,8,5,5,3,5,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,13,772,356,416,314,355,36,54,1,2,0,0,0,0,5,5,350,413,311,353,33,53,1,2,0,0,0,0,5,5,6,3,3,2,3,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,14,735,348,387,301,350,44,35,0,0,0,0,0,0,3,2,346,384,299,348,44,34,0,0,0,0,0,0,3,2,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,15,595,272,323,242,283,26,36,2,2,0,1,0,0,2,1,271,323,241,283,26,36,2,2,0,1,0,0,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,16,481,231,250,216,223,12,26,1,0,0,0,0,0,2,1,231,250,216,223,12,26,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,17,316,112,204,100,181,12,23,0,0,0,0,0,0,0,0,111,203,99,180,12,23,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,18,294,77,217,68,201,8,15,0,0,0,0,0,0,1,1,74,216,65,200,8,15,0,0,0,0,0,0,1,1,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,99,14077,6866,7211,5705,5959,1053,1138,26,21,8,11,0,0,74,82,6671,7068,5528,5824,1037,1130,26,21,7,11,0,0,73,82,195,143,177,135,16,8,0,0,1,0,0,0,1,0 -050,01,027,Alabama,Clay County,8,0,181,90,91,64,76,19,10,0,1,1,0,0,0,6,4,84,87,58,72,19,10,0,1,1,0,0,0,6,4,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,1,590,325,265,264,199,50,54,1,2,0,0,0,0,10,10,306,249,246,183,49,54,1,2,0,0,0,0,10,10,19,16,18,16,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,2,936,486,450,393,356,78,81,1,0,2,0,0,0,12,13,462,442,371,348,76,81,1,0,2,0,0,0,12,13,24,8,22,8,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,3,960,489,471,384,384,94,75,2,0,1,0,0,0,8,12,476,458,372,372,93,74,2,0,1,0,0,0,8,12,13,13,12,12,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,4,941,479,462,354,357,116,94,1,2,1,0,0,0,7,9,462,450,339,345,114,94,1,2,1,0,0,0,7,9,17,12,15,12,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,5,764,395,369,317,287,71,78,2,0,0,0,0,0,5,4,377,356,300,275,70,77,2,0,0,0,0,0,5,4,18,13,17,12,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,6,764,361,403,282,327,72,67,2,4,2,2,0,0,3,3,337,393,259,317,72,67,2,4,2,2,0,0,2,3,24,10,23,10,0,0,0,0,0,0,0,0,1,0 -050,01,027,Alabama,Clay County,8,7,806,386,420,328,353,53,64,1,0,1,2,0,0,3,1,366,397,311,330,51,64,1,0,0,2,0,0,3,1,20,23,17,23,2,0,0,0,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,8,953,488,465,406,363,79,95,1,3,1,0,0,0,1,4,469,454,389,352,77,95,1,3,1,0,0,0,1,4,19,11,17,11,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,9,998,477,521,396,431,75,81,2,2,0,1,0,0,4,6,463,516,382,426,75,81,2,2,0,1,0,0,4,6,14,5,14,5,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,10,1024,526,498,459,418,62,75,1,0,0,2,0,0,4,3,514,488,448,408,61,75,1,0,0,2,0,0,4,3,12,10,11,10,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,11,930,457,473,385,396,64,69,3,4,1,1,0,0,4,3,449,469,377,394,64,67,3,4,1,1,0,0,4,3,8,4,8,2,0,2,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,12,988,489,499,431,411,57,76,0,2,0,2,0,0,1,8,484,493,427,405,56,76,0,2,0,2,0,0,1,8,5,6,4,6,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,13,795,360,435,316,370,36,58,2,3,0,0,0,0,6,4,356,433,313,368,35,58,2,3,0,0,0,0,6,4,4,2,3,2,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,14,723,343,380,299,337,39,38,1,1,1,1,0,0,3,3,340,377,296,335,39,37,1,1,1,1,0,0,3,3,3,3,3,2,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,15,604,272,332,232,302,36,27,1,1,0,0,0,0,3,2,271,332,231,302,36,27,1,1,0,0,0,0,3,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,16,476,228,248,217,221,9,25,1,1,0,0,0,0,1,1,228,248,217,221,9,25,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,17,321,123,198,113,181,10,17,0,0,0,0,0,0,0,0,122,196,112,179,10,17,0,0,0,0,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,18,299,74,225,64,209,9,15,0,0,0,0,0,0,1,1,71,224,61,208,9,15,0,0,0,0,0,0,1,1,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,99,14053,6848,7205,5704,5978,1029,1099,22,26,11,11,0,0,82,91,6637,7062,5509,5840,1015,1094,22,26,10,11,0,0,81,91,211,143,195,138,14,5,0,0,1,0,0,0,1,0 -050,01,027,Alabama,Clay County,9,0,176,78,98,56,78,14,14,0,1,1,0,0,0,7,5,73,94,51,74,14,14,0,1,1,0,0,0,7,5,5,4,5,4,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,1,614,342,272,267,213,62,44,1,2,0,0,0,0,12,13,325,257,251,198,61,44,1,2,0,0,0,0,12,13,17,15,16,15,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,2,902,477,425,384,334,77,78,0,0,2,0,0,0,14,13,451,418,360,327,75,78,0,0,2,0,0,0,14,13,26,7,24,7,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,3,968,499,469,395,386,91,71,3,0,1,0,0,0,9,12,488,458,385,376,90,70,3,0,1,0,0,0,9,12,11,11,10,10,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,4,950,484,466,358,350,116,105,1,3,1,0,0,0,8,8,463,452,339,336,114,105,1,3,1,0,0,0,8,8,21,14,19,14,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,5,773,399,374,332,296,59,73,2,0,0,0,0,0,6,5,374,361,308,284,58,72,2,0,0,0,0,0,6,5,25,13,24,12,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,6,735,362,373,277,299,78,64,2,4,2,2,0,0,3,4,339,365,255,291,78,64,2,4,2,2,0,0,2,4,23,8,22,8,0,0,0,0,0,0,0,0,1,0 -050,01,027,Alabama,Clay County,9,7,764,361,403,302,340,54,60,1,0,2,2,0,0,2,1,340,389,286,326,51,60,1,0,0,2,0,0,2,1,21,14,16,14,3,0,0,0,2,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,8,982,505,477,432,373,70,97,1,3,1,0,0,0,1,4,477,462,405,358,69,97,1,3,1,0,0,0,1,4,28,15,27,15,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,9,1005,491,514,413,424,72,80,2,3,0,1,0,0,4,6,475,508,397,418,72,80,2,3,0,1,0,0,4,6,16,6,16,6,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,10,1038,530,508,459,431,65,72,2,0,0,2,0,0,4,3,518,498,449,421,63,72,2,0,0,2,0,0,4,3,12,10,10,10,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,11,941,466,475,398,397,59,70,4,4,1,1,0,0,4,3,460,469,392,393,59,68,4,4,1,1,0,0,4,3,6,6,6,4,0,2,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,12,988,478,510,414,427,63,70,0,2,0,2,0,0,1,9,473,504,410,421,62,70,0,2,0,2,0,0,1,9,5,6,4,6,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,13,827,384,443,336,375,40,61,2,3,0,0,0,0,6,4,379,441,333,373,38,61,2,3,0,0,0,0,6,4,5,2,3,2,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,14,721,335,386,283,335,46,46,1,1,1,1,0,0,4,3,332,384,280,333,46,46,1,1,1,1,0,0,4,3,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,15,617,276,341,242,297,29,40,2,2,0,0,0,0,3,2,274,341,240,297,29,40,2,2,0,0,0,0,3,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,16,454,224,230,211,209,12,19,0,1,0,0,0,0,1,1,224,229,211,208,12,19,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,17,334,133,201,117,184,16,17,0,0,0,0,0,0,0,0,133,199,117,182,16,17,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,18,296,73,223,64,206,8,16,0,0,0,0,0,0,1,1,71,222,62,205,8,16,0,0,0,0,0,0,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,99,14085,6897,7188,5740,5954,1031,1097,24,29,12,11,0,0,90,97,6669,7051,5531,5821,1015,1093,24,29,10,11,0,0,89,97,228,137,209,133,16,4,0,0,2,0,0,0,1,0 -050,01,027,Alabama,Clay County,10,0,173,89,84,66,67,15,11,0,1,1,0,0,0,7,5,83,80,60,63,15,11,0,1,1,0,0,0,7,5,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,1,640,338,302,271,232,52,55,1,1,0,0,0,0,14,14,320,290,254,220,51,55,1,1,0,0,0,0,14,14,18,12,17,12,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,2,874,469,405,363,319,89,73,0,0,2,0,0,0,15,13,447,392,343,306,87,73,0,0,2,0,0,0,15,13,22,13,20,13,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,3,1005,536,469,434,384,86,70,3,0,1,0,0,0,12,15,516,454,415,370,85,69,3,0,1,0,0,0,12,15,20,15,19,14,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,4,934,467,467,340,358,117,98,1,3,1,0,0,0,8,8,445,453,321,344,114,98,1,3,1,0,0,0,8,8,22,14,19,14,3,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,5,779,391,388,312,316,70,67,2,0,0,0,0,0,7,5,370,373,292,302,69,66,2,0,0,0,0,0,7,5,21,15,20,14,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,6,762,365,397,276,300,82,87,2,4,2,2,0,0,3,4,342,390,254,293,82,87,2,4,2,2,0,0,2,4,23,7,22,7,0,0,0,0,0,0,0,0,1,0 -050,01,027,Alabama,Clay County,10,7,758,370,388,306,336,58,46,1,0,1,4,0,0,4,2,351,368,291,316,55,46,1,0,0,4,0,0,4,2,19,20,15,20,3,0,0,0,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,8,949,476,473,402,370,71,96,1,3,1,0,0,0,1,4,446,461,373,358,70,96,1,3,1,0,0,0,1,4,30,12,29,12,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,9,989,485,504,397,408,82,87,2,3,0,1,0,0,4,5,465,496,377,400,82,87,2,3,0,1,0,0,4,5,20,8,20,8,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,10,1032,516,516,451,437,60,73,1,0,0,2,0,0,4,4,507,510,443,431,59,73,1,0,0,2,0,0,4,4,9,6,8,6,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,11,1014,510,504,430,419,71,78,3,4,1,1,0,0,5,2,504,498,424,415,71,76,3,4,1,1,0,0,5,2,6,6,6,4,0,2,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,12,956,468,488,401,406,66,68,0,3,0,2,0,0,1,9,463,481,397,399,65,68,0,3,0,2,0,0,1,9,5,7,4,7,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,13,847,401,446,359,372,34,64,2,5,0,0,0,0,6,5,397,444,356,370,33,64,2,5,0,0,0,0,6,5,4,2,3,2,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,14,741,335,406,285,346,44,55,1,1,1,1,0,0,4,3,331,404,281,345,44,54,1,1,1,1,0,0,4,3,4,2,4,1,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,15,622,281,341,252,293,24,45,2,1,0,0,0,0,3,2,279,341,250,293,24,45,2,1,0,0,0,0,3,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,16,448,217,231,203,202,12,27,1,1,0,0,0,0,1,1,217,230,203,201,12,27,1,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,17,345,139,206,127,187,12,19,0,0,0,0,0,0,0,0,139,204,127,185,12,19,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,18,293,73,220,63,203,9,16,0,0,0,0,0,0,1,1,71,220,61,203,9,16,0,0,0,0,0,0,1,1,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,99,14161,6926,7235,5738,5955,1054,1135,23,30,11,13,0,0,100,102,6693,7089,5522,5814,1039,1130,23,30,10,13,0,0,99,102,233,146,216,141,15,5,0,0,1,0,0,0,1,0 -050,01,027,Alabama,Clay County,11,0,181,100,81,73,60,19,14,0,1,1,0,0,0,7,6,92,72,65,51,19,14,0,1,1,0,0,0,7,6,8,9,8,9,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,1,624,332,292,257,227,56,48,1,1,0,0,0,0,18,16,309,276,235,211,55,48,1,1,0,0,0,0,18,16,23,16,22,16,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,2,833,454,379,349,297,87,67,0,0,2,0,0,0,16,15,429,370,327,288,84,67,0,0,2,0,0,0,16,15,25,9,22,9,3,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,3,982,529,453,422,372,90,66,3,0,1,0,0,0,13,15,510,441,404,361,89,65,3,0,1,0,0,0,13,15,19,12,18,11,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,4,945,476,469,364,365,101,92,1,3,1,0,0,0,9,9,456,452,347,348,98,92,1,3,1,0,0,0,9,9,20,17,17,17,3,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,5,759,383,376,294,307,80,64,2,0,0,0,0,0,7,5,360,359,272,291,79,63,2,0,0,0,0,0,7,5,23,17,22,16,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,6,744,346,398,269,306,70,82,2,4,2,2,0,0,3,4,321,389,245,297,70,82,2,4,2,2,0,0,2,4,25,9,24,9,0,0,0,0,0,0,0,0,1,0 -050,01,027,Alabama,Clay County,11,7,767,374,393,305,323,62,64,1,0,2,4,0,0,4,2,354,375,290,305,59,64,1,0,0,4,0,0,4,2,20,18,15,18,3,0,0,0,2,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,8,926,470,456,397,367,70,82,1,3,1,0,0,0,1,4,438,444,367,355,68,82,1,3,1,0,0,0,1,4,32,12,30,12,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,9,950,469,481,395,387,68,84,2,3,0,1,0,0,4,6,450,476,376,382,68,84,2,3,0,1,0,0,4,6,19,5,19,5,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,10,1052,529,523,441,447,82,70,2,0,0,2,0,0,4,4,517,513,431,437,80,70,2,0,0,2,0,0,4,4,12,10,10,10,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,11,1005,514,491,440,409,65,75,3,4,1,1,0,0,5,2,506,486,432,406,65,73,3,4,1,1,0,0,5,2,8,5,8,3,0,2,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,12,915,443,472,384,392,58,67,0,2,0,2,0,0,1,9,438,465,380,385,57,67,0,2,0,2,0,0,1,9,5,7,4,7,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,13,871,411,460,355,391,48,60,2,4,0,0,0,0,6,5,406,458,352,389,46,60,2,4,0,0,0,0,6,5,5,2,3,2,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,14,765,365,400,310,344,49,51,1,1,1,1,0,0,4,3,361,398,306,343,49,50,1,1,1,1,0,0,4,3,4,2,4,1,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,15,606,282,324,244,285,33,35,2,2,0,0,0,0,3,2,280,324,242,285,33,35,2,2,0,0,0,0,3,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,16,452,215,237,196,213,17,22,1,1,0,0,0,0,1,1,215,236,196,212,17,22,1,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,17,345,158,187,139,171,19,16,0,0,0,0,0,0,0,0,158,185,139,169,19,16,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,18,284,72,212,64,196,7,15,0,0,0,0,0,0,1,1,70,212,62,196,7,15,0,0,0,0,0,0,1,1,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,99,14006,6922,7084,5698,5859,1081,1074,24,29,12,13,0,0,107,109,6670,6931,5468,5711,1062,1069,24,29,10,13,0,0,106,109,252,153,230,148,19,5,0,0,2,0,0,0,1,0 -050,01,027,Alabama,Clay County,12,0,155,84,71,58,52,18,12,0,1,1,0,0,0,7,6,78,64,52,45,18,12,0,1,1,0,0,0,7,6,6,7,6,7,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,1,646,344,302,278,232,50,54,1,1,0,0,0,0,15,15,317,290,252,220,49,54,1,1,0,0,0,0,15,15,27,12,26,12,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,2,783,422,361,328,285,75,61,0,0,2,0,0,0,17,15,400,350,309,274,72,61,0,0,2,0,0,0,17,15,22,11,19,11,3,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,3,990,529,461,420,377,92,69,3,0,1,0,0,0,13,15,512,446,404,363,91,68,3,0,1,0,0,0,13,15,17,15,16,14,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,4,912,453,459,352,359,90,88,1,3,1,0,0,0,9,9,434,441,336,341,87,88,1,3,1,0,0,0,9,9,19,18,16,18,3,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,5,747,369,378,294,314,66,59,2,0,0,0,0,0,7,5,349,363,275,300,65,58,2,0,0,0,0,0,7,5,20,15,19,14,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,6,720,347,373,271,299,69,64,2,4,2,2,0,0,3,4,319,365,244,291,69,64,2,4,2,2,0,0,2,4,28,8,27,8,0,0,0,0,0,0,0,0,1,0 -050,01,027,Alabama,Clay County,12,7,760,364,396,304,327,53,63,1,0,2,4,0,0,4,2,343,376,288,307,50,63,1,0,0,4,0,0,4,2,21,20,16,20,3,0,0,0,2,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,8,904,451,453,381,358,67,88,1,3,1,0,0,0,1,4,428,439,360,344,65,88,1,3,1,0,0,0,1,4,23,14,21,14,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,9,926,450,476,376,387,68,79,2,3,0,1,0,0,4,6,429,470,355,381,68,79,2,3,0,1,0,0,4,6,21,6,21,6,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,10,1078,538,540,453,457,79,77,2,0,0,2,0,0,4,4,525,530,442,447,77,77,2,0,0,2,0,0,4,4,13,10,11,10,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,11,1042,522,520,441,432,72,81,3,4,1,1,0,0,5,2,514,513,433,427,72,79,3,4,1,1,0,0,5,2,8,7,8,5,0,2,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,12,919,450,469,395,389,54,66,0,3,0,2,0,0,1,9,445,462,391,382,53,66,0,3,0,2,0,0,1,9,5,7,4,7,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,13,901,425,476,367,405,50,61,2,5,0,0,0,0,6,5,420,474,364,403,48,61,2,5,0,0,0,0,6,5,5,2,3,2,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,14,767,362,405,308,348,48,52,1,1,1,1,0,0,4,3,358,403,304,347,48,51,1,1,1,1,0,0,4,3,4,2,4,1,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,15,617,287,330,254,289,28,37,2,2,0,0,0,0,3,2,285,330,252,289,28,37,2,2,0,0,0,0,3,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,16,444,206,238,192,215,12,21,1,1,0,0,0,0,1,1,206,237,192,214,12,21,1,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,17,337,150,187,133,174,17,13,0,0,0,0,0,0,0,0,150,185,133,172,17,13,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,18,284,80,204,73,189,6,14,0,0,0,0,0,0,1,1,79,204,72,189,6,14,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,99,13932,6833,7099,5678,5888,1014,1059,24,31,12,13,0,0,105,108,6591,6942,5458,5736,995,1054,24,31,10,13,0,0,104,108,242,157,220,152,19,5,0,0,2,0,0,0,1,0 -050,01,027,Alabama,Clay County,13,0,153,83,70,57,51,18,12,0,1,1,0,0,0,7,6,77,63,51,45,18,11,0,1,1,0,0,0,7,6,6,7,6,6,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,1,643,341,302,274,229,50,56,2,0,1,1,1,0,13,16,314,290,248,218,50,55,2,0,1,1,0,0,13,16,27,12,26,11,0,1,0,0,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,13,2,782,422,360,328,281,77,62,1,1,0,0,0,0,16,16,398,348,308,271,73,61,1,0,0,0,0,0,16,16,24,12,20,10,4,1,0,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,3,981,527,454,417,370,93,69,4,0,0,1,0,0,13,14,509,440,402,359,91,66,3,0,0,1,0,0,13,14,18,14,15,11,2,3,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,4,899,446,453,347,353,86,88,3,4,1,1,0,0,9,7,430,435,333,337,85,86,2,4,1,1,0,0,9,7,16,18,14,16,1,2,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,5,745,370,375,291,313,67,56,2,1,1,0,0,0,9,5,351,360,273,299,66,56,2,0,1,0,0,0,9,5,19,15,18,14,1,0,0,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,6,721,347,374,270,298,70,65,2,3,2,2,0,0,3,6,321,365,244,290,70,64,2,3,2,2,0,0,3,6,26,9,26,8,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,7,765,362,403,302,329,52,66,1,1,3,5,0,0,4,2,346,382,288,310,51,64,1,1,2,5,0,0,4,2,16,21,14,19,1,2,0,0,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,8,894,446,448,377,348,65,89,1,3,1,1,0,1,2,6,423,434,356,336,63,88,1,3,1,1,0,0,2,6,23,14,21,12,2,1,0,0,0,0,0,1,0,0 -050,01,027,Alabama,Clay County,13,9,922,451,471,373,383,67,79,3,3,1,0,0,0,7,6,433,465,355,378,67,78,3,3,1,0,0,0,7,6,18,6,18,5,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,10,1080,539,541,451,453,79,77,3,3,2,3,0,0,4,5,525,530,439,444,77,76,3,2,2,3,0,0,4,5,14,11,12,9,2,1,0,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,11,1044,519,525,440,436,72,81,1,3,2,1,0,0,4,4,512,518,433,430,72,80,1,3,2,1,0,0,4,4,7,7,7,6,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,12,924,456,468,397,390,53,65,1,2,2,2,0,0,3,9,452,461,393,383,53,65,1,2,2,2,0,0,3,9,4,7,4,7,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,13,899,425,474,369,406,49,61,3,4,0,0,0,0,4,3,423,472,367,404,49,61,3,4,0,0,0,0,4,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,14,767,361,406,307,350,50,51,2,3,0,1,0,0,2,1,357,406,303,350,50,51,2,3,0,1,0,0,2,1,4,0,4,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,15,616,285,331,254,291,27,38,1,1,0,0,0,0,3,1,281,330,250,290,27,38,1,1,0,0,0,0,3,1,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,16,438,202,236,190,214,9,21,1,0,0,0,0,0,2,1,201,234,189,212,9,21,1,0,0,0,0,0,2,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,17,338,148,190,131,176,17,12,0,1,0,0,0,0,0,1,148,187,131,173,17,12,0,1,0,0,0,0,0,1,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,18,286,81,205,73,190,7,15,0,0,0,0,0,0,1,0,80,205,72,190,7,15,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,99,13897,6811,7086,5648,5861,1008,1063,31,34,17,18,1,1,106,109,6581,6925,5435,5719,995,1048,29,31,16,18,0,0,106,109,230,161,213,142,13,15,2,3,1,0,1,1,0,0 -050,01,029,Alabama,Cleburne County,1,0,192,107,85,104,79,2,5,0,0,0,0,0,0,1,1,106,81,103,76,2,5,0,0,0,0,0,0,1,0,1,4,1,3,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,1,1,676,370,306,359,285,7,12,0,1,0,0,0,0,4,8,363,301,352,280,7,12,0,1,0,0,0,0,4,8,7,5,7,5,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,2,1000,490,510,458,480,18,17,3,2,1,1,0,0,10,10,479,503,448,473,18,17,3,2,0,1,0,0,10,10,11,7,10,7,0,0,0,0,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,3,986,540,446,501,421,33,23,1,2,0,0,0,0,5,0,534,439,495,414,33,23,1,2,0,0,0,0,5,0,6,7,6,7,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,4,967,494,473,467,446,25,24,1,3,0,0,0,0,1,0,478,468,451,442,25,24,1,2,0,0,0,0,1,0,16,5,16,4,0,0,0,1,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,5,780,401,379,382,358,19,13,0,2,0,1,0,0,0,5,387,372,368,351,19,13,0,2,0,1,0,0,0,5,14,7,14,7,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,6,920,479,441,469,426,9,13,0,1,0,0,0,0,1,1,463,436,453,422,9,12,0,1,0,0,0,0,1,1,16,5,16,4,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,7,1007,491,516,472,486,11,21,2,3,1,1,0,0,5,5,477,505,458,476,11,20,2,3,1,1,0,0,5,5,14,11,14,10,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,8,1108,571,537,548,508,18,25,3,1,0,0,0,1,2,2,560,533,538,504,17,25,3,1,0,0,0,1,2,2,11,4,10,4,1,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,9,995,515,480,488,459,23,18,2,0,0,0,0,0,2,3,511,478,484,457,23,18,2,0,0,0,0,0,2,3,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,10,1027,534,493,516,469,16,16,1,1,0,4,0,0,1,3,530,490,512,466,16,16,1,1,0,4,0,0,1,3,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,11,984,477,507,455,483,14,15,4,2,1,3,0,0,3,4,472,499,450,475,14,15,4,2,1,3,0,0,3,4,5,8,5,8,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,12,855,431,424,410,401,12,18,3,2,3,0,0,0,3,3,427,423,406,400,12,18,3,2,3,0,0,0,3,3,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,13,713,338,375,322,356,13,15,2,1,0,3,0,0,1,0,336,374,320,355,13,15,2,1,0,3,0,0,1,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,14,629,305,324,289,302,15,18,0,0,0,1,0,0,1,3,303,322,287,300,15,18,0,0,0,1,0,0,1,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,15,478,197,281,189,274,8,5,0,0,0,2,0,0,0,0,193,279,185,272,8,5,0,0,0,2,0,0,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,16,344,152,192,151,187,1,5,0,0,0,0,0,0,0,0,151,192,150,187,1,5,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,17,282,95,187,89,182,5,4,0,0,0,0,0,0,1,1,94,186,88,181,5,4,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,18,198,58,140,54,133,3,6,0,0,0,0,0,0,1,1,58,140,54,133,3,6,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,99,14141,7045,7096,6723,6735,252,273,22,21,6,16,0,1,42,50,6922,7021,6602,6664,251,271,22,20,5,16,0,1,42,49,123,75,121,71,1,2,0,1,1,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,2,0,194,108,86,105,80,2,5,0,0,0,0,0,0,1,1,107,82,104,77,2,5,0,0,0,0,0,0,1,0,1,4,1,3,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,2,1,673,367,306,356,285,7,12,0,1,0,0,0,0,4,8,360,301,349,280,7,12,0,1,0,0,0,0,4,8,7,5,7,5,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,2,993,487,506,455,476,18,17,3,2,1,1,0,0,10,10,476,499,445,469,18,17,3,2,0,1,0,0,10,10,11,7,10,7,0,0,0,0,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,3,989,542,447,503,422,33,23,1,2,0,0,0,0,5,0,536,440,497,415,33,23,1,2,0,0,0,0,5,0,6,7,6,7,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,4,973,499,474,472,447,25,24,1,3,0,0,0,0,1,0,482,469,455,443,25,24,1,2,0,0,0,0,1,0,17,5,17,4,0,0,0,1,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,5,785,403,382,387,361,16,13,0,2,0,1,0,0,0,5,388,375,372,354,16,13,0,2,0,1,0,0,0,5,15,7,15,7,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,6,915,481,434,472,419,8,13,0,1,0,0,0,0,1,1,464,429,455,415,8,12,0,1,0,0,0,0,1,1,17,5,17,4,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,7,1008,495,513,476,483,11,21,2,3,1,1,0,0,5,5,481,502,462,473,11,20,2,3,1,1,0,0,5,5,14,11,14,10,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,8,1106,572,534,550,505,17,25,3,1,0,0,0,1,2,2,561,530,540,501,16,25,3,1,0,0,0,1,2,2,11,4,10,4,1,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,9,995,516,479,489,458,23,18,2,0,0,0,0,0,2,3,512,477,485,456,23,18,2,0,0,0,0,0,2,3,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,10,1033,537,496,519,472,16,16,1,1,0,4,0,0,1,3,533,493,515,469,16,16,1,1,0,4,0,0,1,3,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,11,993,481,512,459,488,14,15,4,2,1,3,0,0,3,4,476,504,454,480,14,15,4,2,1,3,0,0,3,4,5,8,5,8,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,12,860,434,426,413,403,12,18,3,2,3,0,0,0,3,3,430,425,409,402,12,18,3,2,3,0,0,0,3,3,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,13,716,338,378,322,359,13,15,2,1,0,3,0,0,1,0,336,377,320,358,13,15,2,1,0,3,0,0,1,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,14,630,307,323,291,301,15,18,0,0,0,1,0,0,1,3,305,321,289,299,15,18,0,0,0,1,0,0,1,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,15,478,197,281,189,274,8,5,0,0,0,2,0,0,0,0,193,279,185,272,8,5,0,0,0,2,0,0,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,16,345,152,193,151,188,1,5,0,0,0,0,0,0,0,0,151,193,150,188,1,5,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,17,284,95,189,89,184,5,4,0,0,0,0,0,0,1,1,94,188,88,183,5,4,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,18,202,59,143,55,136,3,6,0,0,0,0,0,0,1,1,59,143,55,136,3,6,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,99,14172,7070,7102,6753,6741,247,273,22,21,6,16,0,1,42,50,6944,7027,6629,6670,246,271,22,20,5,16,0,1,42,49,126,75,124,71,1,2,0,1,1,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,3,0,180,91,89,88,84,2,4,0,0,0,0,0,0,1,1,90,85,87,81,2,4,0,0,0,0,0,0,1,0,1,4,1,3,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,3,1,710,380,330,359,307,16,14,0,1,0,0,0,0,5,8,374,322,353,299,16,14,0,1,0,0,0,0,5,8,6,8,6,8,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,2,952,478,474,446,441,17,19,3,2,1,1,0,0,11,11,467,466,436,433,17,19,3,2,0,1,0,0,11,11,11,8,10,8,0,0,0,0,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,3,1013,533,480,499,456,28,22,1,2,0,0,0,0,5,0,523,472,489,448,28,22,1,2,0,0,0,0,5,0,10,8,10,8,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,4,913,482,431,460,411,20,17,1,3,0,0,0,0,1,0,466,423,444,404,20,17,1,2,0,0,0,0,1,0,16,8,16,7,0,0,0,1,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,5,824,428,396,409,376,19,13,0,2,0,1,0,0,0,4,411,390,392,370,19,13,0,2,0,1,0,0,0,4,17,6,17,6,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,6,886,460,426,449,407,10,17,0,1,0,0,0,0,1,1,447,421,436,403,10,16,0,1,0,0,0,0,1,1,13,5,13,4,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,7,984,487,497,468,472,11,16,2,3,1,1,0,0,5,5,472,486,453,462,11,15,2,3,1,1,0,0,5,5,15,11,15,10,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,8,1073,556,517,532,495,19,18,3,1,0,0,0,1,2,2,543,513,520,491,18,18,3,1,0,0,0,1,2,2,13,4,12,4,1,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,9,1067,553,514,524,489,25,22,2,0,0,0,0,0,2,3,548,511,519,486,25,22,2,0,0,0,0,0,2,3,5,3,5,3,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,10,1050,534,516,513,486,19,22,1,1,0,4,0,0,1,3,530,513,509,483,19,22,1,1,0,4,0,0,1,3,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,11,1006,503,503,478,478,18,16,3,2,1,3,0,0,3,4,498,496,473,471,18,16,3,2,1,3,0,0,3,4,5,7,5,7,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,12,846,416,430,394,407,13,18,3,2,3,0,0,0,3,3,412,429,390,406,13,18,3,2,3,0,0,0,3,3,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,13,749,371,378,357,359,11,15,2,1,0,3,0,0,1,0,369,377,355,358,11,15,2,1,0,3,0,0,1,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,14,642,309,333,293,317,15,12,0,0,0,1,0,0,1,3,307,331,291,315,15,12,0,0,0,1,0,0,1,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,15,500,210,290,202,281,8,7,0,0,0,2,0,0,0,0,207,288,199,279,8,7,0,0,0,2,0,0,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,16,338,144,194,143,190,1,4,0,0,0,0,0,0,0,0,143,194,142,190,1,4,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,17,277,88,189,82,184,5,4,0,0,0,0,0,0,1,1,87,188,81,183,5,4,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,18,212,56,156,53,148,2,7,0,0,0,0,0,0,1,1,56,156,53,148,2,7,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,99,14222,7079,7143,6749,6788,259,267,21,21,6,16,0,1,44,50,6950,7061,6622,6710,258,265,21,20,5,16,0,1,44,49,129,82,127,78,1,2,0,1,1,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,4,0,154,87,67,84,62,2,3,0,0,0,0,0,0,1,2,85,63,82,59,2,3,0,0,0,0,0,0,1,1,2,4,2,3,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,4,1,755,413,342,378,314,29,19,0,1,0,0,0,0,6,8,405,334,370,306,29,19,0,1,0,0,0,0,6,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,2,956,494,462,462,427,17,19,3,2,1,1,0,0,11,13,482,454,451,419,17,19,3,2,0,1,0,0,11,13,12,8,11,8,0,0,0,0,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,3,1030,518,512,489,484,23,24,1,2,0,0,0,0,5,2,507,503,478,476,23,24,1,2,0,0,0,0,5,1,11,9,11,8,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,4,4,917,495,422,471,403,22,16,1,3,0,0,0,0,1,0,470,415,446,397,22,16,1,2,0,0,0,0,1,0,25,7,25,6,0,0,0,1,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,5,882,451,431,432,406,18,18,0,2,0,1,1,0,0,4,428,424,410,399,18,18,0,2,0,1,0,0,0,4,23,7,22,7,0,0,0,0,0,0,1,0,0,0 -050,01,029,Alabama,Cleburne County,4,6,872,456,416,445,396,10,18,0,1,0,0,0,0,1,1,441,410,430,391,10,17,0,1,0,0,0,0,1,1,15,6,15,5,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,7,967,482,485,463,458,11,18,2,3,1,1,0,0,5,5,469,474,450,448,11,17,2,3,1,1,0,0,5,5,13,11,13,10,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,8,1067,542,525,516,497,21,25,3,1,0,0,0,0,2,2,528,521,503,493,20,25,3,1,0,0,0,0,2,2,14,4,13,4,1,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,9,1098,566,532,545,508,17,21,2,0,0,0,0,0,2,3,560,530,539,506,17,21,2,0,0,0,0,0,2,3,6,2,6,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,10,1065,556,509,527,479,27,23,1,1,0,3,0,0,1,3,550,506,521,476,27,23,1,1,0,3,0,0,1,3,6,3,6,3,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,11,1020,504,516,483,496,14,11,3,2,1,3,0,0,3,4,497,509,476,489,14,11,3,2,1,3,0,0,3,4,7,7,7,7,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,12,866,426,440,405,416,13,19,3,2,2,0,0,0,3,3,423,439,402,415,13,19,3,2,2,0,0,0,3,3,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,13,786,391,395,374,372,12,19,3,1,0,3,0,0,2,0,389,394,372,371,12,19,3,1,0,3,0,0,2,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,14,623,287,336,271,321,15,12,0,0,0,1,0,0,1,2,285,334,269,319,15,12,0,0,0,1,0,0,1,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,15,547,254,293,245,276,9,15,0,0,0,2,0,0,0,0,250,291,241,274,9,15,0,0,0,2,0,0,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,16,331,134,197,133,193,1,4,0,0,0,0,0,0,0,0,133,197,132,193,1,4,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,17,260,90,170,84,165,5,4,0,0,0,0,0,0,1,1,89,169,83,164,5,4,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,18,220,59,161,56,155,2,5,0,0,0,0,0,0,1,1,59,161,56,155,2,5,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,99,14416,7205,7211,6863,6828,268,293,22,21,5,15,1,0,46,54,7050,7128,6711,6750,267,291,22,20,4,15,0,0,46,52,155,83,152,78,1,2,0,1,1,0,1,0,0,2 -050,01,029,Alabama,Cleburne County,5,0,148,72,76,69,71,2,3,0,0,0,0,0,0,1,2,70,71,67,67,2,3,0,0,0,0,0,0,1,1,2,5,2,4,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,5,1,694,378,316,352,289,20,17,0,2,0,0,0,0,6,8,370,308,344,281,20,17,0,2,0,0,0,0,6,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,2,989,525,464,483,429,25,18,3,2,1,1,0,0,13,14,513,453,472,418,25,18,3,2,0,1,0,0,13,14,12,11,11,11,0,0,0,0,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,3,1099,541,558,512,525,21,29,1,2,1,0,0,0,6,2,529,551,500,518,21,29,1,2,1,0,0,0,6,2,12,7,12,7,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,4,886,497,389,469,371,26,15,1,3,0,0,0,0,1,0,471,380,443,363,26,15,1,2,0,0,0,0,1,0,26,9,26,8,0,0,0,1,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,5,866,423,443,402,414,18,22,0,2,0,1,2,0,1,4,408,435,389,406,18,22,0,2,0,1,0,0,1,4,15,8,13,8,0,0,0,0,0,0,2,0,0,0 -050,01,029,Alabama,Cleburne County,5,6,830,424,406,414,389,8,15,1,1,0,0,0,0,1,1,403,396,393,380,8,14,1,1,0,0,0,0,1,1,21,10,21,9,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,7,1018,513,505,493,481,12,17,3,2,1,1,0,0,4,4,499,494,479,471,12,16,3,2,1,1,0,0,4,4,14,11,14,10,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,8,993,494,499,481,473,10,21,2,1,0,0,0,1,1,3,480,493,468,467,9,21,2,1,0,0,0,1,1,3,14,6,13,6,1,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,9,1118,597,521,576,496,16,21,2,0,0,0,0,0,3,4,591,517,570,492,16,21,2,0,0,0,0,0,3,4,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,10,1043,536,507,510,480,23,20,1,1,0,3,0,0,2,3,530,503,504,476,23,20,1,1,0,3,0,0,2,3,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,11,1051,522,529,500,503,16,17,2,3,1,2,0,0,3,4,516,522,494,496,16,17,2,3,1,2,0,0,3,4,6,7,6,7,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,12,885,440,445,419,419,14,22,3,1,2,0,0,0,2,3,437,443,416,417,14,22,3,1,2,0,0,0,2,3,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,13,829,416,413,399,390,13,18,2,1,0,4,0,0,2,0,413,412,396,389,13,18,2,1,0,4,0,0,2,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,14,623,276,347,260,327,14,17,0,0,0,1,0,0,2,2,274,345,258,325,14,17,0,0,0,1,0,0,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,15,541,253,288,245,269,8,17,0,0,0,2,0,0,0,0,249,286,241,267,8,17,0,0,0,2,0,0,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,16,368,148,220,147,212,1,8,0,0,0,0,0,0,0,0,147,220,146,212,1,8,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,17,233,74,159,68,154,5,4,0,0,0,0,0,0,1,1,73,158,67,153,5,4,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,18,224,57,167,52,160,4,6,0,0,0,0,0,0,1,1,57,167,52,160,4,6,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,99,14438,7186,7252,6851,6852,256,307,21,21,6,15,2,1,50,56,7030,7154,6699,6758,255,305,21,20,5,15,0,1,50,55,156,98,152,94,1,2,0,1,1,0,2,0,0,1 -050,01,029,Alabama,Cleburne County,6,0,167,77,90,74,88,2,1,0,0,0,0,0,0,1,1,74,86,71,84,2,1,0,0,0,0,0,0,1,1,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,1,712,365,347,336,315,22,22,0,2,0,0,0,0,7,8,353,339,325,307,22,22,0,2,0,0,0,0,6,8,12,8,11,8,0,0,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,6,2,911,495,416,460,383,18,17,3,2,1,1,0,0,13,13,485,406,452,373,18,17,3,2,0,1,0,0,12,13,10,10,8,10,0,0,0,0,1,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,6,3,1099,528,571,500,536,20,30,1,2,1,0,0,0,6,3,515,563,487,529,20,30,1,2,1,0,0,0,6,2,13,8,13,7,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,6,4,899,502,397,477,379,23,15,1,3,0,0,0,0,1,0,478,391,453,374,23,15,1,2,0,0,0,0,1,0,24,6,24,5,0,0,0,1,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,5,819,404,415,385,396,16,12,0,2,0,1,2,0,1,4,386,408,369,389,16,12,0,2,0,1,0,0,1,4,18,7,16,7,0,0,0,0,0,0,2,0,0,0 -050,01,029,Alabama,Cleburne County,6,6,812,420,392,401,373,17,17,1,1,0,0,0,0,1,1,403,386,384,369,17,15,1,1,0,0,0,0,1,1,17,6,17,4,0,2,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,7,997,504,493,484,464,12,21,3,3,1,1,0,0,4,4,488,484,468,456,12,20,3,3,1,1,0,0,4,4,16,9,16,8,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,8,972,480,492,463,463,14,25,2,1,0,0,0,0,1,3,466,484,449,455,14,25,2,1,0,0,0,0,1,3,14,8,14,8,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,9,1133,591,542,561,522,25,16,2,0,0,0,0,0,3,4,584,539,554,519,25,16,2,0,0,0,0,0,3,4,7,3,7,3,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,10,1011,526,485,504,457,19,20,1,1,0,3,0,0,2,4,521,480,499,453,19,20,1,1,0,3,0,0,2,3,5,5,5,4,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,6,11,1039,533,506,515,481,12,16,2,3,1,2,0,0,3,4,526,500,508,475,12,16,2,3,1,2,0,0,3,4,7,6,7,6,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,12,913,446,467,425,445,14,17,3,1,2,0,0,0,2,4,443,465,422,443,14,17,3,1,2,0,0,0,2,4,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,13,834,410,424,395,406,11,13,2,1,0,4,0,0,2,0,407,423,392,405,11,13,2,1,0,4,0,0,2,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,14,625,289,336,274,322,14,11,0,0,0,1,0,0,1,2,287,334,272,320,14,11,0,0,0,1,0,0,1,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,15,567,279,288,270,270,8,16,0,0,0,2,0,0,1,0,275,286,266,268,8,16,0,0,0,2,0,0,1,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,16,395,145,250,144,244,1,6,0,0,0,0,0,0,0,0,144,250,143,244,1,6,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,17,226,83,143,77,138,5,4,0,0,0,0,0,0,1,1,81,142,75,137,5,4,0,0,0,0,0,0,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,18,208,57,151,53,144,4,6,0,0,0,0,0,0,0,1,57,151,53,144,4,6,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,99,14339,7134,7205,6798,6826,257,285,21,22,6,15,2,0,50,57,6973,7117,6642,6744,257,282,21,21,5,15,0,0,48,55,161,88,156,82,0,3,0,1,1,0,2,0,2,2 -050,01,029,Alabama,Cleburne County,7,0,174,84,90,81,86,1,2,0,0,0,0,0,0,2,2,81,86,78,82,1,2,0,0,0,0,0,0,2,2,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,1,691,349,342,318,323,20,10,0,1,1,1,0,0,10,7,336,332,307,313,19,10,0,1,1,1,0,0,9,7,13,10,11,10,1,0,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,7,2,904,511,393,472,360,20,18,1,3,2,0,1,0,15,12,501,383,463,350,20,18,0,3,2,0,1,0,15,12,10,10,9,10,0,0,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,3,1076,503,573,479,543,17,24,2,1,2,0,0,0,3,5,492,563,468,534,17,24,2,1,2,0,0,0,3,4,11,10,11,9,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,7,4,964,534,430,511,407,21,16,1,1,0,0,0,1,1,5,513,421,490,401,21,16,1,0,0,0,0,0,1,4,21,9,21,6,0,0,0,1,0,0,0,1,0,1 -050,01,029,Alabama,Cleburne County,7,5,824,404,420,386,391,14,24,1,2,0,1,2,0,1,2,387,412,371,383,14,24,1,2,0,1,0,0,1,2,17,8,15,8,0,0,0,0,0,0,2,0,0,0 -050,01,029,Alabama,Cleburne County,7,6,793,413,380,399,365,10,11,2,3,0,1,1,0,1,0,394,374,381,360,10,10,2,3,0,1,0,0,1,0,19,6,18,5,0,1,0,0,0,0,1,0,0,0 -050,01,029,Alabama,Cleburne County,7,7,919,449,470,431,450,13,15,2,3,0,1,0,0,3,1,435,463,417,443,13,15,2,3,0,1,0,0,3,1,14,7,14,7,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,8,952,472,480,455,455,11,18,1,3,0,0,3,1,2,3,452,471,439,446,10,18,1,3,0,0,0,1,2,3,20,9,16,9,1,0,0,0,0,0,3,0,0,0 -050,01,029,Alabama,Cleburne County,7,9,1120,581,539,558,507,16,23,2,1,0,2,0,0,5,6,574,533,552,501,16,23,1,1,0,2,0,0,5,6,7,6,6,6,0,0,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,10,1037,533,504,502,475,24,21,3,2,0,1,0,0,4,5,524,498,493,470,24,21,3,2,0,1,0,0,4,4,9,6,9,5,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,7,11,1033,527,506,506,486,15,15,3,1,0,3,0,0,3,1,521,502,500,482,15,15,3,1,0,3,0,0,3,1,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,12,958,482,476,462,453,14,15,3,2,1,2,0,0,2,4,477,474,458,451,14,15,3,2,1,2,0,0,1,4,5,2,4,2,0,0,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,7,13,823,411,412,397,391,9,15,3,2,0,2,0,0,2,2,407,411,393,390,9,15,3,2,0,2,0,0,2,2,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,14,681,319,362,305,340,13,19,0,0,0,1,0,0,1,2,318,361,304,339,13,19,0,0,0,1,0,0,1,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,15,579,285,294,272,272,12,20,0,0,0,2,0,0,1,0,281,293,268,271,12,20,0,0,0,2,0,0,1,0,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,16,400,143,257,137,250,5,7,1,0,0,0,0,0,0,0,142,256,136,249,5,7,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,17,220,90,130,86,126,4,3,0,0,0,1,0,0,0,0,90,129,86,125,4,3,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,18,220,57,163,53,159,4,4,0,0,0,0,0,0,0,0,57,163,53,159,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,99,14368,7147,7221,6810,6839,243,280,25,25,6,18,7,2,56,57,6982,7125,6657,6749,241,279,23,24,6,18,1,1,54,54,165,96,153,90,2,1,2,1,0,0,6,1,2,3 -050,01,029,Alabama,Cleburne County,8,0,172,93,79,90,75,1,2,0,0,0,0,0,0,2,2,90,75,87,71,1,2,0,0,0,0,0,0,2,2,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,1,693,350,343,317,322,22,11,0,1,1,1,0,0,10,8,331,336,300,315,21,11,0,1,1,1,0,0,9,8,19,7,17,7,1,0,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,8,2,961,530,431,488,395,20,22,2,3,2,0,1,0,17,11,517,418,476,383,20,21,1,3,2,0,1,0,17,11,13,13,12,12,0,1,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,3,1033,510,523,489,493,13,21,1,1,2,0,0,0,5,8,494,513,473,484,13,21,1,1,2,0,0,0,5,7,16,10,16,9,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,8,4,1022,559,463,536,438,20,18,1,0,0,0,0,1,2,6,539,454,516,431,20,18,1,0,0,0,0,0,2,5,20,9,20,7,0,0,0,0,0,0,0,1,0,1 -050,01,029,Alabama,Cleburne County,8,5,774,385,389,366,368,14,20,1,0,0,0,3,0,1,1,365,381,349,360,14,20,1,0,0,0,0,0,1,1,20,8,17,8,0,0,0,0,0,0,3,0,0,0 -050,01,029,Alabama,Cleburne County,8,6,871,454,417,431,388,19,23,2,4,0,1,1,0,1,1,432,406,410,378,19,22,2,4,0,1,0,0,1,1,22,11,21,10,0,1,0,0,0,0,1,0,0,0 -050,01,029,Alabama,Cleburne County,8,7,857,416,441,399,427,13,9,1,3,0,1,0,0,3,1,397,433,380,419,13,9,1,3,0,1,0,0,3,1,19,8,19,8,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,8,974,482,492,467,469,9,17,1,3,0,0,3,0,2,3,461,483,450,460,8,17,1,3,0,0,0,0,2,3,21,9,17,9,1,0,0,0,0,0,3,0,0,0 -050,01,029,Alabama,Cleburne County,8,9,1088,558,530,535,501,18,22,1,1,0,2,0,0,4,4,552,525,530,496,18,22,0,1,0,2,0,0,4,4,6,5,5,5,0,0,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,10,1073,554,519,526,491,20,23,4,1,0,1,0,0,4,3,546,514,518,486,20,23,4,1,0,1,0,0,4,3,8,5,8,5,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,11,1051,529,522,505,503,16,12,3,1,0,3,0,0,5,3,520,519,496,500,16,12,3,1,0,3,0,0,5,3,9,3,9,3,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,12,1006,512,494,488,470,17,17,3,2,1,2,0,0,3,3,507,492,484,468,17,17,3,2,1,2,0,0,2,3,5,2,4,2,0,0,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,8,13,831,412,419,396,394,9,19,4,2,0,2,0,0,3,2,408,418,392,393,9,19,4,2,0,2,0,0,3,2,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,14,716,353,363,339,341,12,21,1,0,0,0,0,0,1,1,352,362,338,340,12,21,1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,15,558,266,292,256,273,10,14,0,1,0,2,0,0,0,2,263,291,253,272,10,14,0,1,0,2,0,0,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,16,426,158,268,152,255,5,12,1,1,0,0,0,0,0,0,157,265,151,252,5,12,1,1,0,0,0,0,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,17,215,79,136,76,132,3,2,0,0,0,2,0,0,0,0,78,136,75,132,3,2,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,18,217,50,167,47,165,3,1,0,0,0,1,0,0,0,0,50,166,47,164,3,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,99,14538,7250,7288,6903,6900,244,286,26,24,6,18,8,1,63,59,7059,7187,6725,6804,242,284,24,24,6,18,1,0,61,57,191,101,178,96,2,2,2,0,0,0,7,1,2,2 -050,01,029,Alabama,Cleburne County,9,0,181,92,89,89,84,1,3,0,0,0,0,0,0,2,2,88,85,85,80,1,3,0,0,0,0,0,0,2,2,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,1,725,366,359,334,339,22,11,0,1,1,1,0,0,9,7,352,348,321,329,21,10,0,1,1,1,0,0,9,7,14,11,13,10,1,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,2,955,542,413,497,378,22,19,2,4,2,0,1,0,18,12,533,400,490,367,22,18,1,4,2,0,1,0,17,11,9,13,7,11,0,1,1,0,0,0,0,0,1,1 -050,01,029,Alabama,Cleburne County,9,3,1044,533,511,511,481,13,22,2,1,2,0,0,0,5,7,525,504,503,475,13,22,2,1,2,0,0,0,5,6,8,7,8,6,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,9,4,1037,544,493,523,470,18,16,1,0,0,0,0,1,2,6,527,483,506,462,18,16,1,0,0,0,0,0,2,5,17,10,17,8,0,0,0,0,0,0,0,1,0,1 -050,01,029,Alabama,Cleburne County,9,5,747,375,372,356,354,13,16,1,0,0,0,3,0,2,2,357,363,341,345,13,16,1,0,0,0,0,0,2,2,18,9,15,9,0,0,0,0,0,0,3,0,0,0 -050,01,029,Alabama,Cleburne County,9,6,888,445,443,425,409,16,28,2,4,0,1,1,0,1,1,427,436,408,403,16,27,2,4,0,1,0,0,1,1,18,7,17,6,0,1,0,0,0,0,1,0,0,0 -050,01,029,Alabama,Cleburne County,9,7,869,431,438,415,420,13,14,1,2,0,1,0,0,2,1,409,429,393,411,13,14,1,2,0,1,0,0,2,1,22,9,22,9,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,8,998,499,499,475,472,17,20,1,3,0,0,3,0,3,4,479,491,459,464,16,20,1,3,0,0,0,0,3,4,20,8,16,8,1,0,0,0,0,0,3,0,0,0 -050,01,029,Alabama,Cleburne County,9,9,1050,524,526,503,500,16,18,1,1,0,2,0,0,4,5,515,521,495,495,16,18,0,1,0,2,0,0,4,5,9,5,8,5,0,0,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,10,1094,565,529,533,501,24,22,4,1,0,1,0,0,4,4,555,523,523,496,24,22,4,1,0,1,0,0,4,3,10,6,10,5,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,9,11,1060,535,525,507,506,21,13,2,1,0,3,0,0,5,2,527,522,499,503,21,13,2,1,0,3,0,0,5,2,8,3,8,3,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,12,1033,517,516,498,491,12,18,3,2,1,2,0,0,3,3,512,514,494,489,12,18,3,2,1,2,0,0,2,3,5,2,4,2,0,0,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,9,13,882,432,450,414,421,11,22,4,2,0,2,0,0,3,3,427,449,409,420,11,22,4,2,0,2,0,0,3,3,5,1,5,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,14,742,374,368,359,350,13,15,1,1,0,0,0,0,1,2,373,367,358,349,13,15,1,1,0,0,0,0,1,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,15,561,253,308,238,289,14,15,0,0,0,2,0,0,1,2,250,307,235,288,14,15,0,0,0,2,0,0,1,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,16,469,195,274,189,258,5,15,1,1,0,0,0,0,0,0,194,270,188,254,5,15,1,1,0,0,0,0,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,17,224,87,137,84,133,3,2,0,0,0,2,0,0,0,0,86,137,83,133,3,2,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,18,240,56,184,53,182,3,1,0,0,0,1,0,0,0,0,56,183,53,181,3,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,99,14799,7365,7434,7003,7038,257,290,26,24,6,18,8,1,65,63,7192,7332,6843,6944,255,287,24,24,6,18,1,0,63,59,173,102,160,94,2,3,2,0,0,0,7,1,2,4 -050,01,029,Alabama,Cleburne County,10,0,182,81,101,78,95,1,3,0,0,0,0,0,0,2,3,77,96,74,90,1,3,0,0,0,0,0,0,2,3,4,5,4,5,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,1,744,373,371,338,347,23,14,0,1,1,1,0,0,11,8,358,362,325,339,22,13,0,1,1,1,0,0,10,8,15,9,13,8,1,1,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,10,2,949,553,396,509,362,21,17,2,3,2,0,1,0,18,14,537,383,495,351,21,16,1,3,2,0,1,0,17,13,16,13,14,11,0,1,1,0,0,0,0,0,1,1 -050,01,029,Alabama,Cleburne County,10,3,1030,537,493,517,464,9,19,2,1,3,0,0,0,6,9,524,484,504,456,9,19,2,1,3,0,0,0,6,8,13,9,13,8,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,10,4,1095,547,548,523,526,21,15,1,0,0,0,0,1,2,6,527,539,503,519,21,15,1,0,0,0,0,0,2,5,20,9,20,7,0,0,0,0,0,0,0,1,0,1 -050,01,029,Alabama,Cleburne County,10,5,758,399,359,378,345,13,12,1,0,0,0,4,0,3,2,377,349,360,335,13,12,1,0,0,0,0,0,3,2,22,10,18,10,0,0,0,0,0,0,4,0,0,0 -050,01,029,Alabama,Cleburne County,10,6,878,428,450,413,425,10,19,3,4,0,1,1,0,1,1,409,444,395,420,10,18,3,4,0,1,0,0,1,1,19,6,18,5,0,1,0,0,0,0,1,0,0,0 -050,01,029,Alabama,Cleburne County,10,7,794,388,406,371,392,13,11,2,2,0,1,0,0,2,0,373,400,356,386,13,11,2,2,0,1,0,0,2,0,15,6,15,6,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,8,1046,522,524,500,500,17,16,0,3,0,0,3,0,2,5,502,514,483,490,17,16,0,3,0,0,0,0,2,5,20,10,17,10,0,0,0,0,0,0,3,0,0,0 -050,01,029,Alabama,Cleburne County,10,9,1052,533,519,506,496,22,14,1,1,0,2,0,0,4,6,520,513,494,490,22,14,0,1,0,2,0,0,4,6,13,6,12,6,0,0,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,10,1082,568,514,531,486,28,22,4,1,0,1,0,0,5,4,558,509,521,482,28,22,4,1,0,1,0,0,5,3,10,5,10,4,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,10,11,1025,508,517,486,497,15,13,2,2,0,2,0,0,5,3,500,514,478,494,15,13,2,2,0,2,0,0,5,3,8,3,8,3,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,12,1050,529,521,506,492,18,23,3,1,0,2,0,0,2,3,525,518,503,489,18,23,3,1,0,2,0,0,1,3,4,3,3,3,0,0,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,10,13,922,451,471,434,446,11,17,3,2,0,3,0,0,3,3,446,470,429,445,11,17,3,2,0,3,0,0,3,3,5,1,5,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,14,787,416,371,401,356,12,13,1,1,0,0,0,0,2,1,415,370,400,355,12,13,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,15,542,227,315,220,289,6,21,0,1,0,2,0,0,1,2,224,314,217,288,6,21,0,1,0,2,0,0,1,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,16,439,178,261,173,248,5,12,0,1,0,0,0,0,0,0,177,257,172,244,5,12,0,1,0,0,0,0,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,17,272,123,149,120,145,3,2,0,0,0,2,0,0,0,0,122,149,119,145,3,2,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,18,227,48,179,44,175,4,3,0,0,0,1,0,0,0,0,48,178,44,174,4,3,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,99,14874,7409,7465,7048,7086,252,266,25,24,6,18,9,1,69,70,7219,7363,6872,6992,251,263,23,24,6,18,1,0,66,66,190,102,176,94,1,3,2,0,0,0,8,1,3,4 -050,01,029,Alabama,Cleburne County,11,0,174,90,84,87,79,1,2,0,0,0,0,0,0,2,3,85,79,82,74,1,2,0,0,0,0,0,0,2,3,5,5,5,5,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,1,742,369,373,342,351,16,12,0,2,1,1,0,0,10,7,352,367,327,346,15,11,0,2,1,1,0,0,9,7,17,6,15,5,1,1,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,11,2,952,541,411,493,374,24,18,2,4,2,0,1,0,19,15,525,396,479,361,24,17,1,4,2,0,1,0,18,14,16,15,14,13,0,1,1,0,0,0,0,0,1,1 -050,01,029,Alabama,Cleburne County,11,3,1010,517,493,497,467,9,15,2,1,3,0,0,0,6,10,499,480,479,455,9,15,2,1,3,0,0,0,6,9,18,13,18,12,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,11,4,1100,568,532,541,508,24,17,1,0,0,0,0,1,2,6,543,521,516,499,24,17,1,0,0,0,0,0,2,5,25,11,25,9,0,0,0,0,0,0,0,1,0,1 -050,01,029,Alabama,Cleburne County,11,5,725,380,345,355,327,16,17,1,0,0,0,5,0,3,1,363,336,343,318,16,17,1,0,0,0,0,0,3,1,17,9,12,9,0,0,0,0,0,0,5,0,0,0 -050,01,029,Alabama,Cleburne County,11,6,890,437,453,422,423,10,24,3,4,0,1,1,0,1,1,410,447,396,418,10,23,3,4,0,1,0,0,1,1,27,6,26,5,0,1,0,0,0,0,1,0,0,0 -050,01,029,Alabama,Cleburne County,11,7,785,391,394,373,383,14,8,2,2,0,1,0,0,2,0,370,390,352,379,14,8,2,2,0,1,0,0,2,0,21,4,21,4,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,8,1057,535,522,515,498,15,16,0,3,0,0,3,0,2,5,512,512,496,488,14,16,0,3,0,0,0,0,2,5,23,10,19,10,1,0,0,0,0,0,3,0,0,0 -050,01,029,Alabama,Cleburne County,11,9,1028,520,508,500,487,15,12,1,1,0,2,0,0,4,6,508,500,489,479,15,12,0,1,0,2,0,0,4,6,12,8,11,8,0,0,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,10,1088,550,538,515,511,26,22,4,1,0,0,0,0,5,4,541,531,506,505,26,22,4,1,0,0,0,0,5,3,9,7,9,6,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,11,11,1015,501,514,479,494,16,13,1,2,0,2,0,0,5,3,492,512,470,492,16,13,1,2,0,2,0,0,5,3,9,2,9,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,12,1051,547,504,520,483,22,15,3,1,0,2,0,0,2,3,543,501,517,480,22,15,3,1,0,2,0,0,1,3,4,3,3,3,0,0,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,11,13,966,478,488,458,466,12,14,4,2,0,3,0,0,4,3,473,487,453,465,12,14,4,2,0,3,0,0,4,3,5,1,5,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,14,815,409,406,394,387,12,17,1,1,0,0,0,0,2,1,408,405,393,386,12,17,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,15,554,244,310,234,282,9,23,0,1,0,2,0,0,1,2,241,309,231,281,9,23,0,1,0,2,0,0,1,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,16,466,206,260,200,246,5,13,1,1,0,0,0,0,0,0,205,256,199,242,5,13,1,1,0,0,0,0,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,17,275,111,164,108,160,3,2,0,0,0,2,0,0,0,0,110,164,107,160,3,2,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,18,225,60,165,56,160,4,4,0,0,0,1,0,0,0,0,60,164,56,159,4,4,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,99,14918,7454,7464,7089,7086,253,264,26,26,6,17,10,1,70,70,7240,7357,6891,6987,251,261,24,26,6,17,1,0,67,66,214,107,198,99,2,3,2,0,0,0,9,1,3,4 -050,01,029,Alabama,Cleburne County,12,0,160,76,84,73,79,1,2,0,0,0,0,0,0,2,3,71,79,68,74,1,2,0,0,0,0,0,0,2,3,5,5,5,5,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,1,778,393,385,365,360,15,14,0,2,1,1,0,0,12,8,371,374,345,350,14,13,0,2,1,1,0,0,11,8,22,11,20,10,1,1,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,12,2,942,522,420,474,385,24,15,2,4,2,0,1,0,19,16,508,405,462,372,24,14,1,4,2,0,1,0,18,15,14,15,12,13,0,1,1,0,0,0,0,0,1,1 -050,01,029,Alabama,Cleburne County,12,3,997,522,475,504,446,7,17,2,1,3,0,0,0,6,11,508,463,490,436,7,17,2,1,3,0,0,0,6,9,14,12,14,10,0,0,0,0,0,0,0,0,0,2 -050,01,029,Alabama,Cleburne County,12,4,1080,540,540,515,518,22,15,1,0,0,0,0,1,2,6,520,529,495,509,22,15,1,0,0,0,0,0,2,5,20,11,20,9,0,0,0,0,0,0,0,1,0,1 -050,01,029,Alabama,Cleburne County,12,5,769,406,363,384,342,13,20,1,0,0,0,5,0,3,1,387,355,370,334,13,20,1,0,0,0,0,0,3,1,19,8,14,8,0,0,0,0,0,0,5,0,0,0 -050,01,029,Alabama,Cleburne County,12,6,859,421,438,405,410,11,22,3,4,0,1,1,0,1,1,401,432,386,405,11,21,3,4,0,1,0,0,1,1,20,6,19,5,0,1,0,0,0,0,1,0,0,0 -050,01,029,Alabama,Cleburne County,12,7,764,379,385,361,376,14,6,2,2,0,1,0,0,2,0,364,379,346,370,14,6,2,2,0,1,0,0,2,0,15,6,15,6,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,8,1014,514,500,496,477,13,15,0,3,0,0,3,0,2,5,490,490,476,467,12,15,0,3,0,0,0,0,2,5,24,10,20,10,1,0,0,0,0,0,3,0,0,0 -050,01,029,Alabama,Cleburne County,12,9,1048,511,537,493,511,13,17,1,1,0,2,0,0,4,6,501,531,484,505,13,17,0,1,0,2,0,0,4,6,10,6,9,6,0,0,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,10,1109,573,536,537,507,27,24,4,1,0,0,0,0,5,4,563,529,527,501,27,24,4,1,0,0,0,0,5,3,10,7,10,6,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,12,11,1040,509,531,484,508,19,16,1,2,0,2,0,0,5,3,500,529,475,506,19,16,1,2,0,2,0,0,5,3,9,2,9,2,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,12,1030,534,496,513,476,16,14,3,1,0,2,0,0,2,3,530,493,510,473,16,14,3,1,0,2,0,0,1,3,4,3,3,3,0,0,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,12,13,1021,507,514,486,490,13,16,4,2,0,3,0,0,4,3,502,513,481,489,13,16,4,2,0,3,0,0,4,3,5,1,5,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,14,817,409,408,394,392,12,14,1,1,0,0,0,0,2,1,408,407,393,391,12,14,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,15,568,262,306,254,286,7,15,0,1,0,2,0,0,1,2,259,305,251,285,7,15,0,1,0,2,0,0,1,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,16,470,204,266,198,251,5,14,1,1,0,0,0,0,0,0,203,262,197,247,5,14,1,1,0,0,0,0,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,17,267,99,168,96,164,3,2,0,0,0,2,0,0,0,0,98,168,95,164,3,2,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,18,239,72,167,69,163,3,3,0,0,0,1,0,0,0,0,72,166,69,162,3,3,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,99,14972,7453,7519,7101,7141,238,261,26,26,6,17,10,1,72,73,7256,7409,6920,7040,236,258,24,26,6,17,1,0,69,68,197,110,181,101,2,3,2,0,0,0,9,1,3,5 -050,01,029,Alabama,Cleburne County,13,0,161,76,85,73,80,1,2,0,0,0,0,0,0,2,3,71,80,68,75,1,2,0,0,0,0,0,0,2,3,5,5,5,5,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,1,773,390,383,361,358,16,15,1,1,1,1,0,0,11,8,370,372,342,349,15,13,1,1,1,1,0,0,11,8,20,11,19,9,1,2,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,2,937,519,418,474,382,28,16,2,4,1,0,0,0,14,16,505,403,462,369,27,15,1,4,1,0,0,0,14,15,14,15,12,13,1,1,1,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,13,3,996,523,473,504,445,8,18,3,1,3,0,0,0,5,9,508,461,489,435,8,17,3,1,3,0,0,0,5,8,15,12,15,10,0,1,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,13,4,1075,540,535,513,515,20,13,2,2,0,0,0,1,5,4,520,524,493,506,20,13,2,2,0,0,0,0,5,3,20,11,20,9,0,0,0,0,0,0,0,1,0,1 -050,01,029,Alabama,Cleburne County,13,5,769,406,363,383,342,13,19,1,0,0,0,5,0,4,2,387,355,369,334,13,19,1,0,0,0,0,0,4,2,19,8,14,8,0,0,0,0,0,0,5,0,0,0 -050,01,029,Alabama,Cleburne County,13,6,866,422,444,406,414,12,23,3,4,0,2,0,0,1,1,403,436,387,407,12,22,3,4,0,2,0,0,1,1,19,8,19,7,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,7,773,381,392,362,380,14,7,2,2,1,3,0,0,2,0,366,384,347,373,14,6,2,2,1,3,0,0,2,0,15,8,15,7,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,8,1003,510,493,493,470,12,15,0,3,0,1,3,0,2,4,486,483,473,460,11,15,0,3,0,1,0,0,2,4,24,10,20,10,1,0,0,0,0,0,3,0,0,0 -050,01,029,Alabama,Cleburne County,13,9,1050,515,535,494,510,12,16,4,1,1,2,0,0,4,6,505,529,485,504,12,16,3,1,1,2,0,0,4,6,10,6,9,6,0,0,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,10,1107,570,537,536,507,26,24,3,2,1,1,0,0,4,3,560,529,526,500,26,24,3,2,1,1,0,0,4,2,10,8,10,7,0,0,0,0,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,13,11,1045,510,535,484,512,21,17,1,2,0,2,0,0,4,2,502,532,476,509,21,17,1,2,0,2,0,0,4,2,8,3,8,3,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,12,1040,540,500,516,480,18,14,3,1,0,2,0,0,3,3,536,497,513,477,18,14,3,1,0,2,0,0,2,3,4,3,3,3,0,0,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,13,13,1034,516,518,492,494,15,17,5,2,0,3,0,0,4,2,511,517,487,493,15,17,5,2,0,3,0,0,4,2,5,1,5,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,14,824,413,411,397,396,12,14,2,1,0,0,0,0,2,0,412,410,396,395,12,14,2,1,0,0,0,0,2,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,15,567,260,307,253,287,6,15,0,1,0,2,0,0,1,2,257,306,250,286,6,15,0,1,0,2,0,0,1,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,16,461,199,262,196,248,3,13,0,1,0,0,0,0,0,0,198,259,195,245,3,13,0,1,0,0,0,0,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,17,267,99,168,96,166,3,1,0,0,0,1,0,0,0,0,98,168,95,166,3,1,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,18,240,72,168,69,164,3,3,0,0,0,1,0,0,0,0,72,167,69,163,3,3,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,99,14988,7461,7527,7102,7150,243,262,32,28,8,21,8,1,68,65,7267,7412,6922,7046,240,256,30,28,8,21,0,0,67,61,194,115,180,104,3,6,2,0,0,0,8,1,1,4 -050,01,031,Alabama,Coffee County,1,0,575,296,279,206,209,75,56,1,1,2,1,1,0,11,12,281,260,194,194,72,52,1,1,2,1,1,0,11,12,15,19,12,15,3,4,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,1,1,2144,1089,1055,790,760,246,249,8,13,7,8,2,1,36,24,1039,1005,752,717,236,245,8,11,7,8,2,1,34,23,50,50,38,43,10,4,0,2,0,0,0,0,2,1 -050,01,031,Alabama,Coffee County,1,2,2951,1521,1430,1073,989,378,382,20,16,7,7,4,4,39,32,1460,1375,1024,944,372,375,19,15,7,6,2,4,36,31,61,55,49,45,6,7,1,1,0,1,2,0,3,1 -050,01,031,Alabama,Coffee County,1,3,3186,1667,1519,1223,1152,361,307,26,15,14,12,3,0,40,33,1607,1471,1174,1116,357,301,23,14,12,11,3,0,38,29,60,48,49,36,4,6,3,1,2,1,0,0,2,4 -050,01,031,Alabama,Coffee County,1,4,3117,1579,1538,1169,1113,341,354,19,23,17,18,0,2,33,28,1510,1477,1111,1060,337,350,19,22,16,18,0,1,27,26,69,61,58,53,4,4,0,1,1,0,0,1,6,2 -050,01,031,Alabama,Coffee County,1,5,2714,1429,1285,1059,922,319,304,15,12,17,15,5,4,14,28,1331,1246,969,889,315,298,15,12,15,15,3,4,14,28,98,39,90,33,4,6,0,0,2,0,2,0,0,0 -050,01,031,Alabama,Coffee County,1,6,2899,1558,1341,1229,1015,272,282,18,12,16,13,4,3,19,16,1504,1292,1180,977,270,274,17,10,16,13,3,3,18,15,54,49,49,38,2,8,1,2,0,0,1,0,1,1 -050,01,031,Alabama,Coffee County,1,7,2768,1357,1411,1068,1091,255,271,11,14,9,20,3,0,11,15,1309,1372,1024,1054,251,269,11,14,9,20,3,0,11,15,48,39,44,37,4,2,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,1,8,3246,1649,1597,1309,1249,295,286,12,17,12,24,2,2,19,19,1610,1575,1273,1230,294,286,12,17,11,24,2,1,18,17,39,22,36,19,1,0,0,0,1,0,0,1,1,2 -050,01,031,Alabama,Coffee County,1,9,3332,1573,1759,1214,1317,319,354,17,21,6,44,1,0,16,23,1533,1706,1176,1275,318,348,17,21,6,43,1,0,15,19,40,53,38,42,1,6,0,0,0,1,0,0,1,4 -050,01,031,Alabama,Coffee County,1,10,3096,1493,1603,1194,1249,240,275,26,21,10,43,1,2,22,13,1452,1567,1157,1217,237,271,26,21,10,43,1,2,21,13,41,36,37,32,3,4,0,0,0,0,0,0,1,0 -050,01,031,Alabama,Coffee County,1,11,2999,1501,1498,1248,1164,219,262,12,8,7,40,3,0,12,24,1484,1474,1231,1142,219,260,12,8,7,40,3,0,12,24,17,24,17,22,0,2,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,1,12,2363,1128,1235,962,1025,145,177,7,7,2,17,0,1,12,8,1107,1225,942,1017,144,177,7,7,2,17,0,1,12,6,21,10,20,8,1,0,0,0,0,0,0,0,0,2 -050,01,031,Alabama,Coffee County,1,13,2074,956,1118,828,947,114,154,4,5,3,6,1,0,6,6,948,1111,822,943,112,153,4,5,3,6,1,0,6,4,8,7,6,4,2,1,0,0,0,0,0,0,0,2 -050,01,031,Alabama,Coffee County,1,14,1835,871,964,771,808,89,128,5,8,1,12,0,0,5,8,858,954,759,800,88,126,5,8,1,12,0,0,5,8,13,10,12,8,1,2,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,1,15,1530,676,854,591,742,79,99,2,0,0,7,0,0,4,6,674,848,589,736,79,99,2,0,0,7,0,0,4,6,2,6,2,6,0,0,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,1,16,1302,514,788,449,665,62,107,2,1,1,7,0,0,0,8,509,784,444,662,62,106,2,1,1,7,0,0,0,8,5,4,5,3,0,1,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,1,17,745,270,475,242,421,28,46,0,2,0,1,0,0,0,5,269,471,241,417,28,46,0,2,0,1,0,0,0,5,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,1,18,763,182,581,150,472,31,106,1,1,0,1,0,0,0,1,180,578,148,470,31,105,1,1,0,1,0,0,0,1,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,1,99,43639,21309,22330,16775,17310,3868,4199,206,197,131,296,30,19,299,309,20665,21791,16210,16860,3822,4141,201,190,125,293,25,17,282,290,644,539,565,450,46,58,5,7,6,3,5,2,17,19 -050,01,031,Alabama,Coffee County,2,0,580,300,280,207,211,76,57,1,1,2,1,1,0,13,10,285,261,195,196,73,53,1,1,2,1,1,0,13,10,15,19,12,15,3,4,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,2,1,2127,1081,1046,785,755,244,246,8,13,7,8,2,1,35,23,1031,996,747,712,234,242,8,11,7,8,2,1,33,22,50,50,38,43,10,4,0,2,0,0,0,0,2,1 -050,01,031,Alabama,Coffee County,2,2,2918,1505,1413,1063,979,373,375,20,16,7,7,4,4,38,32,1444,1358,1014,934,367,368,19,15,7,6,2,4,35,31,61,55,49,45,6,7,1,1,0,1,2,0,3,1 -050,01,031,Alabama,Coffee County,2,3,3190,1669,1521,1221,1151,361,308,26,15,14,12,3,0,44,35,1609,1473,1172,1115,357,302,23,14,12,11,3,0,42,31,60,48,49,36,4,6,3,1,2,1,0,0,2,4 -050,01,031,Alabama,Coffee County,2,4,3119,1583,1536,1169,1111,343,354,19,23,17,18,0,2,35,28,1514,1475,1111,1058,339,350,19,22,16,18,0,1,29,26,69,61,58,53,4,4,0,1,1,0,0,1,6,2 -050,01,031,Alabama,Coffee County,2,5,2733,1438,1295,1064,926,320,306,15,12,17,15,5,4,17,32,1340,1256,974,893,316,300,15,12,15,15,3,4,17,32,98,39,90,33,4,6,0,0,2,0,2,0,0,0 -050,01,031,Alabama,Coffee County,2,6,2867,1544,1323,1215,1001,271,281,18,12,16,13,4,3,20,13,1487,1274,1163,963,269,273,17,10,16,13,3,3,19,12,57,49,52,38,2,8,1,2,0,0,1,0,1,1 -050,01,031,Alabama,Coffee County,2,7,2755,1350,1405,1062,1084,254,271,11,14,9,20,3,0,11,16,1302,1366,1018,1047,250,269,11,14,9,20,3,0,11,16,48,39,44,37,4,2,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,2,8,3215,1632,1583,1295,1237,292,284,12,17,12,24,2,2,19,19,1593,1561,1259,1218,291,284,12,17,11,24,2,1,18,17,39,22,36,19,1,0,0,0,1,0,0,1,1,2 -050,01,031,Alabama,Coffee County,2,9,3334,1573,1761,1213,1315,320,357,17,21,6,44,1,0,16,24,1533,1708,1175,1273,319,351,17,21,6,43,1,0,15,20,40,53,38,42,1,6,0,0,0,1,0,0,1,4 -050,01,031,Alabama,Coffee County,2,10,3102,1496,1606,1196,1252,241,277,26,21,10,43,1,2,22,11,1455,1570,1159,1220,238,273,26,21,10,43,1,2,21,11,41,36,37,32,3,4,0,0,0,0,0,0,1,0 -050,01,031,Alabama,Coffee County,2,11,3013,1508,1505,1253,1169,222,265,12,8,7,40,3,0,11,23,1491,1481,1236,1147,222,263,12,8,7,40,3,0,11,23,17,24,17,22,0,2,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,2,12,2371,1131,1240,965,1028,145,179,7,7,2,17,0,1,12,8,1110,1230,945,1020,144,179,7,7,2,17,0,1,12,6,21,10,20,8,1,0,0,0,0,0,0,0,0,2 -050,01,031,Alabama,Coffee County,2,13,2075,957,1118,829,947,114,154,4,5,3,6,1,0,6,6,949,1111,823,943,112,153,4,5,3,6,1,0,6,4,8,7,6,4,2,1,0,0,0,0,0,0,0,2 -050,01,031,Alabama,Coffee County,2,14,1824,867,957,766,801,90,128,5,8,1,12,0,0,5,8,854,947,754,793,89,126,5,8,1,12,0,0,5,8,13,10,12,8,1,2,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,2,15,1525,673,852,588,740,79,99,2,0,0,7,0,0,4,6,671,846,586,734,79,99,2,0,0,7,0,0,4,6,2,6,2,6,0,0,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,2,16,1304,516,788,451,665,62,107,2,1,1,7,0,0,0,8,511,784,446,662,62,106,2,1,1,7,0,0,0,8,5,4,5,3,0,1,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,2,17,755,274,481,246,426,28,46,0,2,0,1,0,0,0,6,273,477,245,422,28,46,0,2,0,1,0,0,0,6,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,2,18,773,183,590,151,482,31,105,1,1,0,1,0,0,0,1,181,587,149,480,31,104,1,1,0,1,0,0,0,1,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,2,99,43580,21280,22300,16739,17280,3866,4199,206,197,131,296,30,19,308,309,20633,21761,16171,16830,3820,4141,201,190,125,293,25,17,291,290,647,539,568,450,46,58,5,7,6,3,5,2,17,19 -050,01,031,Alabama,Coffee County,3,0,551,276,275,189,213,70,49,2,1,1,1,2,0,12,11,251,257,168,196,67,48,2,1,1,1,1,0,12,11,25,18,21,17,3,1,0,0,0,0,1,0,0,0 -050,01,031,Alabama,Coffee County,3,1,2247,1155,1092,842,776,254,258,7,11,11,8,2,3,39,36,1086,1036,784,731,245,251,7,9,11,8,2,2,37,35,69,56,58,45,9,7,0,2,0,0,0,1,2,1 -050,01,031,Alabama,Coffee County,3,2,2865,1463,1402,1046,982,339,357,20,15,13,9,3,5,42,34,1403,1346,1003,936,329,350,18,14,13,8,1,5,39,33,60,56,43,46,10,7,2,1,0,1,2,0,3,1 -050,01,031,Alabama,Coffee County,3,3,3162,1643,1519,1189,1147,361,307,29,18,16,11,4,0,44,36,1573,1473,1132,1113,355,301,26,17,14,10,4,0,42,32,70,46,57,34,6,6,3,1,2,1,0,0,2,4 -050,01,031,Alabama,Coffee County,3,4,3012,1541,1471,1129,1047,338,340,24,29,18,19,0,2,32,34,1480,1415,1079,1000,335,336,23,27,17,19,0,1,26,32,61,56,50,47,3,4,1,2,1,0,0,1,6,2 -050,01,031,Alabama,Coffee County,3,5,2835,1502,1333,1144,963,293,303,19,15,19,20,10,3,17,29,1389,1281,1050,920,283,294,19,15,17,20,3,3,17,29,113,52,94,43,10,9,0,0,2,0,7,0,0,0 -050,01,031,Alabama,Coffee County,3,6,2848,1496,1352,1161,1011,267,292,16,14,21,19,9,3,22,13,1416,1298,1093,972,263,280,15,12,21,19,3,3,21,12,80,54,68,39,4,12,1,2,0,0,6,0,1,1 -050,01,031,Alabama,Coffee County,3,7,2749,1387,1362,1094,1050,246,265,17,13,12,14,6,1,12,19,1348,1325,1063,1017,242,262,16,13,12,14,3,0,12,19,39,37,31,33,4,3,1,0,0,0,3,1,0,0 -050,01,031,Alabama,Coffee County,3,8,3144,1570,1574,1241,1220,284,292,9,17,16,25,2,2,18,18,1527,1551,1202,1200,283,292,8,17,15,25,2,1,17,16,43,23,39,20,1,0,1,0,1,0,0,1,1,2 -050,01,031,Alabama,Coffee County,3,9,3357,1577,1780,1236,1342,295,358,18,18,10,39,1,0,17,23,1538,1728,1199,1301,294,352,18,18,10,39,1,0,16,18,39,52,37,41,1,6,0,0,0,0,0,0,1,5 -050,01,031,Alabama,Coffee County,3,10,3096,1537,1559,1212,1223,258,271,31,22,11,30,1,1,24,12,1493,1520,1172,1188,256,268,30,22,11,30,1,1,23,11,44,39,40,35,2,3,1,0,0,0,0,0,1,1 -050,01,031,Alabama,Coffee County,3,11,3063,1527,1536,1259,1187,231,272,16,11,8,43,4,0,9,23,1500,1515,1234,1168,230,270,16,11,7,43,4,0,9,23,27,21,25,19,1,2,0,0,1,0,0,0,0,0 -050,01,031,Alabama,Coffee County,3,12,2408,1145,1263,968,1027,147,188,12,8,3,27,0,1,15,12,1123,1248,948,1014,145,188,12,8,3,27,0,1,15,10,22,15,20,13,2,0,0,0,0,0,0,0,0,2 -050,01,031,Alabama,Coffee County,3,13,2095,950,1145,817,963,117,157,5,6,3,10,1,0,7,9,940,1134,809,955,115,156,5,6,3,10,1,0,7,7,10,11,8,8,2,1,0,0,0,0,0,0,0,2 -050,01,031,Alabama,Coffee County,3,14,1860,886,974,778,820,98,124,3,6,1,17,0,0,6,7,873,964,766,812,97,122,3,6,1,17,0,0,6,7,13,10,12,8,1,2,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,3,15,1582,697,885,611,763,81,110,1,0,0,7,0,0,4,5,694,879,608,757,81,110,1,0,0,7,0,0,4,5,3,6,3,6,0,0,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,3,16,1257,506,751,444,639,59,98,2,1,1,5,0,0,0,8,498,748,436,637,59,97,2,1,1,5,0,0,0,8,8,3,8,2,0,1,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,3,17,842,309,533,274,464,35,62,0,1,0,1,0,0,0,5,308,529,273,460,35,62,0,1,0,1,0,0,0,5,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,3,18,743,189,554,156,453,32,96,1,1,0,1,0,0,0,3,187,553,154,452,32,96,1,1,0,1,0,0,0,3,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,3,99,43716,21356,22360,16790,17290,3805,4199,232,207,164,306,45,21,320,337,20627,21800,16173,16829,3746,4135,222,199,157,304,26,17,303,316,729,560,617,461,59,64,10,8,7,2,19,4,17,21 -050,01,031,Alabama,Coffee County,4,0,542,262,280,194,205,49,64,2,1,1,1,3,0,13,9,240,258,176,186,47,61,2,1,1,1,1,0,13,9,22,22,18,19,2,3,0,0,0,0,2,0,0,0 -050,01,031,Alabama,Coffee County,4,1,2200,1132,1068,825,766,252,249,8,14,7,6,5,4,35,29,1039,1011,749,720,240,245,8,12,7,6,2,1,33,27,93,57,76,46,12,4,0,2,0,0,3,3,2,2 -050,01,031,Alabama,Coffee County,4,2,2752,1397,1355,1018,964,305,326,17,18,10,12,4,5,43,30,1336,1303,970,922,299,319,16,17,10,11,1,5,40,29,61,52,48,42,6,7,1,1,0,1,3,0,3,1 -050,01,031,Alabama,Coffee County,4,3,3148,1634,1514,1172,1118,364,324,29,22,14,15,4,0,51,35,1569,1462,1117,1075,360,318,26,21,13,15,4,0,49,33,65,52,55,43,4,6,3,1,1,0,0,0,2,2 -050,01,031,Alabama,Coffee County,4,4,3031,1575,1456,1170,1066,331,317,24,24,15,19,0,2,35,28,1510,1402,1118,1020,327,313,22,22,14,19,0,1,29,27,65,54,52,46,4,4,2,2,1,0,0,1,6,1 -050,01,031,Alabama,Coffee County,4,5,2832,1509,1323,1144,959,299,305,15,13,18,12,12,5,21,29,1381,1270,1041,913,289,299,13,13,16,12,4,4,18,29,128,53,103,46,10,6,2,0,2,0,8,1,3,0 -050,01,031,Alabama,Coffee County,4,6,2967,1591,1376,1257,998,261,313,16,12,20,28,12,6,25,19,1477,1312,1160,956,257,296,15,10,20,28,3,4,22,18,114,64,97,42,4,17,1,2,0,0,9,2,3,1 -050,01,031,Alabama,Coffee County,4,7,2725,1378,1347,1072,1033,254,261,17,19,14,14,7,2,14,18,1329,1307,1037,1002,247,257,16,16,14,14,4,0,11,18,49,40,35,31,7,4,1,3,0,0,3,2,3,0 -050,01,031,Alabama,Coffee County,4,8,3107,1581,1526,1248,1168,288,294,11,19,11,23,3,2,20,20,1527,1493,1199,1140,287,293,10,18,10,23,2,1,19,18,54,33,49,28,1,1,1,1,1,0,1,1,1,2 -050,01,031,Alabama,Coffee County,4,9,3284,1565,1719,1227,1303,291,334,18,20,8,37,1,0,20,25,1524,1669,1193,1266,288,328,16,20,8,35,1,0,18,20,41,50,34,37,3,6,2,0,0,2,0,0,2,5 -050,01,031,Alabama,Coffee County,4,10,3199,1565,1634,1233,1282,270,274,27,21,10,40,1,0,24,17,1517,1598,1190,1250,267,270,26,21,10,40,1,0,23,17,48,36,43,32,3,4,1,0,0,0,0,0,1,0 -050,01,031,Alabama,Coffee County,4,11,2989,1460,1529,1203,1184,221,273,14,12,10,39,2,0,10,21,1435,1504,1180,1161,220,271,14,12,10,39,2,0,9,21,25,25,23,23,1,2,0,0,0,0,0,0,1,0 -050,01,031,Alabama,Coffee County,4,12,2666,1292,1374,1076,1102,186,221,13,9,3,27,0,1,14,14,1277,1356,1062,1087,185,221,13,8,3,27,0,1,14,12,15,18,14,15,1,0,0,1,0,0,0,0,0,2 -050,01,031,Alabama,Coffee County,4,13,2053,942,1111,820,938,104,143,6,6,3,13,1,0,8,11,928,1100,808,930,102,142,6,6,3,13,1,0,8,9,14,11,12,8,2,1,0,0,0,0,0,0,0,2 -050,01,031,Alabama,Coffee County,4,14,1897,896,1001,783,832,102,136,4,9,1,15,0,0,6,9,886,992,774,825,101,134,4,9,1,15,0,0,6,9,10,9,9,7,1,2,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,4,15,1642,725,917,639,799,81,100,1,0,0,13,0,0,4,5,721,910,635,792,81,100,1,0,0,13,0,0,4,5,4,7,4,7,0,0,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,4,16,1302,515,787,456,675,56,96,2,3,1,5,0,0,0,8,509,782,450,672,56,95,2,2,1,5,0,0,0,8,6,5,6,3,0,1,0,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,4,17,861,318,543,276,465,41,69,0,2,0,3,0,0,1,4,317,539,275,461,41,69,0,2,0,3,0,0,1,4,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,4,18,733,202,531,172,445,29,82,1,1,0,1,0,0,0,2,201,528,171,443,29,81,1,1,0,1,0,0,0,2,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,4,99,43930,21539,22391,16985,17302,3784,4181,225,225,146,323,55,27,344,333,20723,21796,16305,16821,3723,4112,211,211,141,320,26,17,317,315,816,595,680,481,61,69,14,14,5,3,29,10,27,18 -050,01,031,Alabama,Coffee County,5,0,581,295,286,217,213,57,56,2,2,1,1,4,0,14,14,262,261,190,192,55,54,2,1,1,1,1,0,13,13,33,25,27,21,2,2,0,1,0,0,3,0,1,1 -050,01,031,Alabama,Coffee County,5,1,2186,1126,1060,836,777,225,224,6,13,12,6,7,5,40,35,1012,994,739,720,216,222,6,12,11,6,4,1,36,33,114,66,97,57,9,2,0,1,1,0,3,4,4,2 -050,01,031,Alabama,Coffee County,5,2,2848,1472,1376,1058,995,321,313,20,18,17,7,4,5,52,38,1400,1321,1007,951,310,308,16,15,17,7,1,4,49,36,72,55,51,44,11,5,4,3,0,0,3,1,3,2 -050,01,031,Alabama,Coffee County,5,3,3175,1620,1555,1164,1121,360,351,26,27,15,16,4,0,51,40,1552,1494,1106,1074,356,343,23,26,14,15,4,0,49,36,68,61,58,47,4,8,3,1,1,1,0,0,2,4 -050,01,031,Alabama,Coffee County,5,4,3032,1585,1447,1160,1061,336,308,24,26,22,14,3,3,40,35,1512,1395,1101,1019,333,305,21,24,21,14,1,0,35,33,73,52,59,42,3,3,3,2,1,0,2,3,5,2 -050,01,031,Alabama,Coffee County,5,5,2877,1515,1362,1145,1003,294,287,21,17,18,13,13,6,24,36,1389,1279,1045,935,286,279,19,15,16,13,3,3,20,34,126,83,100,68,8,8,2,2,2,0,10,3,4,2 -050,01,031,Alabama,Coffee County,5,6,2948,1546,1402,1219,1015,253,312,15,15,19,32,16,5,24,23,1409,1322,1108,950,248,302,13,13,19,32,2,3,19,22,137,80,111,65,5,10,2,2,0,0,14,2,5,1 -050,01,031,Alabama,Coffee County,5,7,2864,1439,1425,1122,1092,249,275,21,20,23,17,8,5,16,16,1365,1379,1068,1058,242,269,17,17,23,17,2,2,13,16,74,46,54,34,7,6,4,3,0,0,6,3,3,0 -050,01,031,Alabama,Coffee County,5,8,3000,1523,1477,1185,1123,287,287,16,20,12,22,3,3,20,22,1462,1433,1133,1086,285,286,13,18,11,22,2,1,18,20,61,44,52,37,2,1,3,2,1,0,1,2,2,2 -050,01,031,Alabama,Coffee County,5,9,3243,1594,1649,1270,1267,275,301,16,21,11,35,2,0,20,25,1554,1602,1238,1231,272,295,14,21,11,34,1,0,18,21,40,47,32,36,3,6,2,0,0,1,1,0,2,4 -050,01,031,Alabama,Coffee County,5,10,3245,1538,1707,1214,1318,264,317,33,17,8,39,1,1,18,15,1498,1673,1179,1288,262,314,32,17,8,39,0,1,17,14,40,34,35,30,2,3,1,0,0,0,1,0,1,1 -050,01,031,Alabama,Coffee County,5,11,2904,1422,1482,1158,1150,223,262,17,13,9,37,2,0,13,20,1385,1461,1125,1131,222,260,16,13,9,37,2,0,11,20,37,21,33,19,1,2,1,0,0,0,0,0,2,0 -050,01,031,Alabama,Coffee County,5,12,2763,1334,1429,1102,1149,197,227,13,8,4,28,0,1,18,16,1314,1410,1085,1133,194,226,13,8,4,28,0,1,18,14,20,19,17,16,3,1,0,0,0,0,0,0,0,2 -050,01,031,Alabama,Coffee County,5,13,2132,978,1154,840,954,119,167,7,7,4,15,1,0,7,11,965,1142,828,945,118,166,7,7,4,15,1,0,7,9,13,12,12,9,1,1,0,0,0,0,0,0,0,2 -050,01,031,Alabama,Coffee County,5,14,1956,938,1018,829,849,96,139,5,9,1,11,1,0,6,10,926,1008,818,842,95,137,5,9,1,11,1,0,6,9,12,10,11,7,1,2,0,0,0,0,0,0,0,1 -050,01,031,Alabama,Coffee County,5,15,1660,763,897,666,792,90,91,4,0,0,9,0,0,3,5,759,889,662,784,90,91,4,0,0,9,0,0,3,5,4,8,4,8,0,0,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,5,16,1280,521,759,461,652,57,91,2,4,1,5,0,0,0,7,516,754,456,649,57,90,2,3,1,5,0,0,0,7,5,5,5,3,0,1,0,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,5,17,922,339,583,292,491,45,83,0,3,0,1,1,0,1,5,337,579,291,487,45,83,0,3,0,1,0,0,1,5,2,4,1,4,0,0,0,0,0,0,1,0,0,0 -050,01,031,Alabama,Coffee County,5,18,699,186,513,161,427,24,79,1,2,0,1,0,0,0,4,184,510,159,425,24,78,1,2,0,1,0,0,0,4,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,5,99,44315,21734,22581,17099,17449,3772,4170,249,242,177,309,70,34,367,377,20801,21906,16338,16900,3710,4108,224,224,171,307,25,16,333,351,933,675,761,549,62,62,25,18,6,2,45,18,34,26 -050,01,031,Alabama,Coffee County,6,0,593,310,283,219,215,60,49,3,1,3,1,4,1,21,16,280,257,196,192,58,48,3,1,3,1,0,0,20,15,30,26,23,23,2,1,0,0,0,0,4,1,1,1 -050,01,031,Alabama,Coffee County,6,1,2254,1149,1105,847,810,240,223,8,15,6,12,6,4,42,41,1029,1034,747,752,230,218,8,13,5,12,2,0,37,39,120,71,100,58,10,5,0,2,1,0,4,4,5,2 -050,01,031,Alabama,Coffee County,6,2,2869,1506,1363,1101,1000,314,297,18,17,16,5,4,4,53,40,1418,1315,1031,964,306,291,14,14,15,4,1,3,51,39,88,48,70,36,8,6,4,3,1,1,3,1,2,1 -050,01,031,Alabama,Coffee County,6,3,3215,1656,1559,1177,1119,377,347,26,25,20,15,2,0,54,53,1584,1494,1117,1070,372,336,23,24,18,14,2,0,52,50,72,65,60,49,5,11,3,1,2,1,0,0,2,3 -050,01,031,Alabama,Coffee County,6,4,3102,1587,1515,1180,1106,326,326,25,25,16,19,3,4,37,35,1514,1449,1120,1053,323,321,22,22,15,19,1,1,33,33,73,66,60,53,3,5,3,3,1,0,2,3,4,2 -050,01,031,Alabama,Coffee County,6,5,2954,1555,1399,1181,1033,291,295,21,14,19,14,18,6,25,37,1431,1315,1090,963,281,288,19,12,17,14,3,3,21,35,124,84,91,70,10,7,2,2,2,0,15,3,4,2 -050,01,031,Alabama,Coffee County,6,6,3038,1631,1407,1268,1029,265,307,17,16,27,27,21,5,33,23,1459,1313,1131,952,257,296,15,13,27,27,2,3,27,22,172,94,137,77,8,11,2,3,0,0,19,2,6,1 -050,01,031,Alabama,Coffee County,6,7,2886,1467,1419,1136,1087,262,257,20,24,20,26,11,4,18,21,1390,1368,1082,1046,254,254,16,21,20,26,4,1,14,20,77,51,54,41,8,3,4,3,0,0,7,3,4,1 -050,01,031,Alabama,Coffee County,6,8,3036,1509,1527,1210,1143,240,312,22,20,15,29,3,2,19,21,1449,1475,1161,1096,238,311,18,18,13,29,2,1,17,20,60,52,49,47,2,1,4,2,2,0,1,1,2,1 -050,01,031,Alabama,Coffee County,6,9,3243,1604,1639,1278,1269,276,290,16,25,12,27,2,1,20,27,1561,1589,1243,1231,273,284,14,25,12,27,1,0,18,22,43,50,35,38,3,6,2,0,0,0,1,1,2,5 -050,01,031,Alabama,Coffee County,6,10,3292,1558,1734,1212,1329,279,318,26,18,14,47,2,3,25,19,1507,1702,1169,1301,277,315,24,18,14,47,0,3,23,18,51,32,43,28,2,3,2,0,0,0,2,0,2,1 -050,01,031,Alabama,Coffee County,6,11,2927,1413,1514,1146,1173,219,269,24,17,6,37,1,0,17,18,1378,1487,1115,1150,217,267,23,17,6,35,1,0,16,18,35,27,31,23,2,2,1,0,0,2,0,0,1,0 -050,01,031,Alabama,Coffee County,6,12,2870,1409,1461,1164,1146,212,255,12,12,6,30,0,1,15,17,1388,1440,1147,1129,208,254,12,11,6,30,0,1,15,15,21,21,17,17,4,1,0,1,0,0,0,0,0,2 -050,01,031,Alabama,Coffee County,6,13,2212,1022,1190,864,995,133,162,8,8,4,13,1,0,12,12,1007,1174,851,982,131,161,8,8,4,13,1,0,12,10,15,16,13,13,2,1,0,0,0,0,0,0,0,2 -050,01,031,Alabama,Coffee County,6,14,2014,937,1077,823,899,99,141,5,9,1,18,1,0,8,10,927,1066,813,892,99,139,5,8,1,18,1,0,8,9,10,11,10,7,0,2,0,1,0,0,0,0,0,1 -050,01,031,Alabama,Coffee County,6,15,1671,771,900,673,787,92,100,3,0,0,8,0,0,3,5,765,891,667,778,92,100,3,0,0,8,0,0,3,5,6,9,6,9,0,0,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,6,16,1272,522,750,466,648,52,86,3,4,1,5,0,0,0,7,516,746,460,645,52,86,3,3,1,5,0,0,0,7,6,4,6,3,0,0,0,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,6,17,919,323,596,271,502,49,85,0,3,0,2,2,0,1,4,320,592,269,498,49,85,0,3,0,2,1,0,1,4,3,4,2,4,0,0,0,0,0,0,1,0,0,0 -050,01,031,Alabama,Coffee County,6,18,686,197,489,172,413,24,69,1,2,0,1,0,0,0,4,196,486,171,411,24,68,1,2,0,1,0,0,0,4,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,6,99,45053,22126,22927,17388,17703,3810,4188,258,255,186,336,81,35,403,410,21119,22193,16580,17105,3741,4122,231,233,177,332,22,16,368,385,1007,734,808,598,69,66,27,22,9,4,59,19,35,25 -050,01,031,Alabama,Coffee County,7,0,630,333,297,246,223,60,56,3,1,1,1,5,1,18,15,294,273,216,201,58,56,3,1,1,1,1,0,15,14,39,24,30,22,2,0,0,0,0,0,4,1,3,1 -050,01,031,Alabama,Coffee County,7,1,2272,1148,1124,848,823,229,227,6,10,11,8,6,4,48,52,1003,1039,724,753,219,223,6,9,10,8,2,0,42,46,145,85,124,70,10,4,0,1,1,0,4,4,6,6 -050,01,031,Alabama,Coffee County,7,2,2940,1582,1358,1170,994,312,289,19,21,18,11,4,5,59,38,1457,1301,1067,950,300,282,16,19,18,10,1,3,55,37,125,57,103,44,12,7,3,2,0,1,3,2,4,1 -050,01,031,Alabama,Coffee County,7,3,3194,1629,1565,1175,1118,355,353,23,26,18,14,4,1,54,53,1557,1498,1116,1068,350,344,22,24,17,14,1,1,51,47,72,67,59,50,5,9,1,2,1,0,3,0,3,6 -050,01,031,Alabama,Coffee County,7,4,3108,1608,1500,1191,1103,329,302,30,31,19,12,3,4,36,48,1531,1425,1129,1045,325,297,26,26,19,12,1,1,31,44,77,75,62,58,4,5,4,5,0,0,2,3,5,4 -050,01,031,Alabama,Coffee County,7,5,2911,1505,1406,1141,1017,263,311,32,13,20,23,19,7,30,35,1389,1317,1062,945,255,304,28,11,18,23,2,3,24,31,116,89,79,72,8,7,4,2,2,0,17,4,6,4 -050,01,031,Alabama,Coffee County,7,6,3043,1642,1401,1261,1014,279,297,20,16,21,34,23,9,38,31,1452,1306,1112,945,273,286,16,12,20,33,2,4,29,26,190,95,149,69,6,11,4,4,1,1,21,5,9,5 -050,01,031,Alabama,Coffee County,7,7,2903,1463,1440,1123,1092,263,275,24,22,18,18,13,6,22,27,1376,1371,1067,1038,253,271,19,18,18,17,5,3,14,24,87,69,56,54,10,4,5,4,0,1,8,3,8,3 -050,01,031,Alabama,Coffee County,7,8,3011,1489,1522,1171,1161,248,292,22,20,19,27,1,1,28,21,1416,1458,1114,1104,245,291,18,18,18,27,0,0,21,18,73,64,57,57,3,1,4,2,1,0,1,1,7,3 -050,01,031,Alabama,Coffee County,7,9,3313,1675,1638,1358,1272,261,274,21,17,8,44,2,0,25,31,1617,1590,1312,1235,258,270,16,17,8,43,1,0,22,25,58,48,46,37,3,4,5,0,0,1,1,0,3,6 -050,01,031,Alabama,Coffee County,7,10,3349,1597,1752,1256,1333,277,336,28,21,10,37,2,2,24,23,1539,1719,1207,1304,274,333,25,21,10,37,1,1,22,23,58,33,49,29,3,3,3,0,0,0,1,1,2,0 -050,01,031,Alabama,Coffee County,7,11,2983,1431,1552,1153,1231,226,251,24,22,11,37,1,0,16,11,1391,1515,1118,1200,224,248,23,21,11,35,1,0,14,11,40,37,35,31,2,3,1,1,0,2,0,0,2,0 -050,01,031,Alabama,Coffee County,7,12,3013,1479,1534,1207,1178,233,283,16,11,7,41,1,1,15,20,1452,1513,1187,1161,229,282,15,10,7,40,1,1,13,19,27,21,20,17,4,1,1,1,0,1,0,0,2,1 -050,01,031,Alabama,Coffee County,7,13,2269,1067,1202,900,1004,137,162,10,8,4,14,1,0,15,14,1052,1189,887,991,136,162,9,8,4,14,1,0,15,14,15,13,13,13,1,0,1,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,7,14,2006,920,1086,793,901,109,153,6,11,3,12,1,0,8,9,914,1079,787,896,109,153,6,10,3,12,1,0,8,8,6,7,6,5,0,0,0,1,0,0,0,0,0,1 -050,01,031,Alabama,Coffee County,7,15,1699,775,924,678,801,89,108,6,2,0,11,0,0,2,2,768,917,672,794,89,108,5,2,0,11,0,0,2,2,7,7,6,7,0,0,1,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,7,16,1299,546,753,488,644,51,89,5,5,1,7,0,0,1,8,539,747,481,640,51,89,5,4,1,7,0,0,1,7,7,6,7,4,0,0,0,1,0,0,0,0,0,1 -050,01,031,Alabama,Coffee County,7,17,948,330,618,289,529,39,78,0,3,0,2,1,0,1,6,326,612,286,523,39,78,0,3,0,2,0,0,1,6,4,6,3,6,0,0,0,0,0,0,1,0,0,0 -050,01,031,Alabama,Coffee County,7,18,713,212,501,178,427,31,68,1,2,0,0,0,0,2,4,211,498,177,425,31,67,1,2,0,0,0,0,2,4,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,7,99,45604,22431,23173,17626,17865,3791,4204,296,262,189,353,87,41,442,448,21284,22367,16721,17218,3718,4144,259,236,183,346,21,17,382,406,1147,806,905,647,73,60,37,26,6,7,66,24,60,42 -050,01,031,Alabama,Coffee County,8,0,633,345,288,245,221,67,52,3,1,1,1,6,1,23,12,303,256,213,191,65,52,3,1,1,1,1,0,20,11,42,32,32,30,2,0,0,0,0,0,5,1,3,1 -050,01,031,Alabama,Coffee County,8,1,2311,1159,1152,862,840,205,225,6,14,16,12,10,9,60,52,1010,1060,739,769,194,221,6,11,14,12,3,1,54,46,149,92,123,71,11,4,0,3,2,0,7,8,6,6 -050,01,031,Alabama,Coffee County,8,2,3002,1601,1401,1188,1049,319,270,21,20,17,7,5,4,51,51,1465,1338,1078,1000,306,264,18,17,17,7,1,1,45,49,136,63,110,49,13,6,3,3,0,0,4,3,6,2 -050,01,031,Alabama,Coffee County,8,3,3145,1584,1561,1157,1104,323,354,24,30,18,12,5,1,57,60,1515,1497,1105,1054,318,348,22,28,16,12,2,1,52,54,69,64,52,50,5,6,2,2,2,0,3,0,5,6 -050,01,031,Alabama,Coffee County,8,4,3183,1651,1532,1216,1120,339,319,34,29,16,13,4,3,42,48,1559,1460,1140,1067,334,313,29,23,16,13,2,0,38,44,92,72,76,53,5,6,5,6,0,0,2,3,4,4 -050,01,031,Alabama,Coffee County,8,5,2856,1520,1336,1141,950,280,292,29,25,21,23,21,7,28,39,1386,1258,1050,890,267,284,25,23,20,23,2,3,22,35,134,78,91,60,13,8,4,2,1,0,19,4,6,4 -050,01,031,Alabama,Coffee County,8,6,3173,1682,1491,1289,1094,286,293,20,18,21,45,28,9,38,32,1472,1389,1131,1019,276,281,15,13,20,44,2,4,28,28,210,102,158,75,10,12,5,5,1,1,26,5,10,4 -050,01,031,Alabama,Coffee County,8,7,2895,1454,1441,1102,1077,271,290,28,22,12,19,17,8,24,25,1334,1348,1017,1005,261,283,22,18,12,18,7,3,15,21,120,93,85,72,10,7,6,4,0,1,10,5,9,4 -050,01,031,Alabama,Coffee County,8,8,3048,1504,1544,1175,1196,260,278,23,19,19,27,2,1,25,23,1432,1489,1121,1148,256,277,18,17,18,26,0,0,19,21,72,55,54,48,4,1,5,2,1,1,2,1,6,2 -050,01,031,Alabama,Coffee County,8,9,3337,1695,1642,1367,1284,270,293,21,17,10,24,2,0,25,24,1632,1587,1317,1240,266,289,16,14,10,23,1,0,22,21,63,55,50,44,4,4,5,3,0,1,1,0,3,3 -050,01,031,Alabama,Coffee County,8,10,3355,1603,1752,1257,1322,275,339,28,24,13,43,3,2,27,22,1547,1713,1212,1288,272,336,23,24,13,43,2,1,25,21,56,39,45,34,3,3,5,0,0,0,1,1,2,1 -050,01,031,Alabama,Coffee County,8,11,3055,1489,1566,1184,1234,241,257,30,24,9,37,2,1,23,13,1451,1533,1154,1207,237,254,29,23,9,35,2,1,20,13,38,33,30,27,4,3,1,1,0,2,0,0,3,0 -050,01,031,Alabama,Coffee County,8,12,3079,1510,1569,1233,1198,238,298,15,10,9,41,2,2,13,20,1473,1549,1203,1184,233,295,14,9,9,40,2,2,12,19,37,20,30,14,5,3,1,1,0,1,0,0,1,1 -050,01,031,Alabama,Coffee County,8,13,2316,1092,1224,910,1032,149,151,13,11,4,16,1,0,15,14,1082,1204,901,1014,149,150,12,10,4,16,1,0,15,14,10,20,9,18,0,1,1,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,8,14,2005,908,1097,780,916,106,147,9,9,5,16,0,0,8,9,898,1091,771,911,106,147,8,9,5,16,0,0,8,8,10,6,9,5,0,0,1,0,0,0,0,0,0,1 -050,01,031,Alabama,Coffee County,8,15,1792,831,961,726,830,97,121,5,2,1,6,0,0,2,2,824,952,720,822,97,120,4,2,1,6,0,0,2,2,7,9,6,8,0,1,1,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,8,16,1333,544,789,480,671,58,102,4,5,0,5,0,0,2,6,534,781,470,665,58,102,4,4,0,5,0,0,2,5,10,8,10,6,0,0,0,1,0,0,0,0,0,1 -050,01,031,Alabama,Coffee County,8,17,930,323,607,292,521,31,72,0,3,0,5,0,0,0,6,320,600,289,514,31,72,0,3,0,5,0,0,0,6,3,7,3,7,0,0,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,8,18,780,245,535,199,439,43,88,1,2,0,1,0,0,2,5,243,532,197,437,43,87,1,2,0,1,0,0,2,5,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,8,99,46228,22740,23488,17803,18098,3858,4241,314,285,192,353,108,48,465,463,21480,22637,16828,17425,3769,4175,269,251,185,346,28,17,401,423,1260,851,975,673,89,66,45,34,7,7,80,31,64,40 -050,01,031,Alabama,Coffee County,9,0,706,378,328,277,244,67,65,4,3,1,1,6,1,23,14,331,288,240,211,66,63,4,1,1,1,0,0,20,12,47,40,37,33,1,2,0,2,0,0,6,1,3,2 -050,01,031,Alabama,Coffee County,9,1,2400,1246,1154,939,867,219,206,7,17,10,8,11,9,60,47,1075,1058,797,791,207,203,6,14,8,8,3,0,54,42,171,96,142,76,12,3,1,3,2,0,8,9,6,5 -050,01,031,Alabama,Coffee County,9,2,3053,1604,1449,1163,1067,334,289,22,21,20,9,5,4,60,59,1450,1363,1036,1000,323,281,18,18,19,8,1,1,53,55,154,86,127,67,11,8,4,3,1,1,4,3,7,4 -050,01,031,Alabama,Coffee County,9,3,3184,1579,1605,1161,1155,319,337,18,36,15,16,4,1,62,60,1494,1524,1093,1091,314,330,16,34,14,16,1,0,56,53,85,81,68,64,5,7,2,2,1,0,3,1,6,7 -050,01,031,Alabama,Coffee County,9,4,3299,1702,1597,1232,1143,363,360,30,31,21,13,5,3,51,47,1605,1509,1155,1073,358,354,24,25,21,13,3,0,44,44,97,88,77,70,5,6,6,6,0,0,2,3,7,3 -050,01,031,Alabama,Coffee County,9,5,2878,1558,1320,1204,980,257,269,25,15,20,14,24,6,28,36,1404,1221,1096,897,245,263,20,13,19,14,2,2,22,32,154,99,108,83,12,6,5,2,1,0,22,4,6,4 -050,01,031,Alabama,Coffee County,9,6,3362,1755,1607,1367,1211,277,294,19,18,19,37,30,8,43,39,1509,1482,1179,1115,266,282,14,13,18,36,1,3,31,33,246,125,188,96,11,12,5,5,1,1,29,5,12,6 -050,01,031,Alabama,Coffee County,9,7,3010,1535,1475,1171,1086,271,308,24,23,25,20,19,10,25,28,1390,1367,1062,1006,259,298,18,17,25,19,10,3,16,24,145,108,109,80,12,10,6,6,0,1,9,7,9,4 -050,01,031,Alabama,Coffee County,9,8,3104,1495,1609,1136,1253,281,282,30,21,19,28,2,2,27,23,1421,1539,1079,1191,278,282,24,18,19,27,0,0,21,21,74,70,57,62,3,0,6,3,0,1,2,2,6,2 -050,01,031,Alabama,Coffee County,9,9,3443,1771,1672,1410,1281,297,318,20,17,15,29,2,0,27,27,1698,1613,1351,1232,293,314,15,15,15,28,1,0,23,24,73,59,59,49,4,4,5,2,0,1,1,0,4,3 -050,01,031,Alabama,Coffee County,9,10,3345,1616,1729,1271,1306,275,336,28,24,14,37,3,3,25,23,1562,1683,1229,1265,273,333,23,24,14,37,1,2,22,22,54,46,42,41,2,3,5,0,0,0,2,1,3,1 -050,01,031,Alabama,Coffee County,9,11,3129,1517,1612,1200,1261,263,274,23,24,7,42,2,0,22,11,1475,1577,1168,1232,258,271,22,22,6,41,2,0,19,11,42,35,32,29,5,3,1,2,1,1,0,0,3,0 -050,01,031,Alabama,Coffee County,9,12,3014,1449,1565,1176,1209,238,288,13,15,8,41,2,1,12,11,1410,1542,1145,1191,233,286,12,14,8,40,2,1,10,10,39,23,31,18,5,2,1,1,0,1,0,0,2,1 -050,01,031,Alabama,Coffee County,9,13,2563,1229,1334,1037,1106,155,177,13,12,4,19,1,0,19,20,1215,1321,1024,1095,155,176,12,11,4,19,1,0,19,20,14,13,13,11,0,1,1,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,9,14,1982,895,1087,780,893,88,151,11,12,5,20,2,0,9,11,885,1080,771,888,88,151,10,11,5,20,2,0,9,10,10,7,9,5,0,0,1,1,0,0,0,0,0,1 -050,01,031,Alabama,Coffee County,9,15,1852,875,977,759,832,108,135,5,2,1,7,0,0,2,1,869,967,754,823,108,134,4,2,1,7,0,0,2,1,6,10,5,9,0,1,1,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,9,16,1370,557,813,493,695,58,95,3,5,0,13,0,0,3,5,544,805,481,689,58,95,3,4,0,13,0,0,2,4,13,8,12,6,0,0,0,1,0,0,0,0,1,1 -050,01,031,Alabama,Coffee County,9,17,988,354,634,317,541,36,80,0,4,0,4,1,0,0,5,351,628,314,535,36,80,0,4,0,4,1,0,0,5,3,6,3,6,0,0,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,9,18,776,241,535,199,440,38,85,2,4,0,1,0,0,2,5,238,531,197,438,37,84,2,3,0,1,0,0,2,5,3,4,2,2,1,1,0,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,9,99,47458,23356,24102,18292,18570,3944,4349,297,304,204,359,119,48,500,472,21926,23098,17171,17763,3855,4280,247,263,197,352,31,12,425,428,1430,1004,1121,807,89,69,50,41,7,7,88,36,75,44 -050,01,031,Alabama,Coffee County,10,0,717,375,342,281,256,58,66,4,2,1,1,6,1,25,16,324,290,241,210,57,65,4,1,1,1,0,0,21,13,51,52,40,46,1,1,0,1,0,0,6,1,4,3 -050,01,031,Alabama,Coffee County,10,1,2449,1315,1134,1001,843,219,198,5,19,10,9,14,10,66,55,1116,1015,834,747,209,196,4,14,7,9,5,0,57,49,199,119,167,96,10,2,1,5,3,0,9,10,9,6 -050,01,031,Alabama,Coffee County,10,2,3083,1615,1468,1192,1078,314,289,24,23,21,8,5,6,59,64,1436,1382,1039,1010,305,283,19,19,20,8,1,2,52,60,179,86,153,68,9,6,5,4,1,0,4,4,7,4 -050,01,031,Alabama,Coffee County,10,3,3314,1667,1647,1217,1192,336,341,24,34,18,13,4,2,68,65,1576,1549,1146,1120,329,326,22,32,16,13,1,1,62,57,91,98,71,72,7,15,2,2,2,0,3,1,6,8 -050,01,031,Alabama,Coffee County,10,4,3322,1684,1638,1249,1156,341,378,26,33,17,17,4,5,47,49,1570,1551,1156,1090,335,372,20,27,17,17,2,0,40,45,114,87,93,66,6,6,6,6,0,0,2,5,7,4 -050,01,031,Alabama,Coffee County,10,5,2996,1596,1400,1217,1037,265,285,33,15,20,13,27,10,34,40,1421,1283,1096,942,253,279,27,11,19,13,2,3,24,35,175,117,121,95,12,6,6,4,1,0,25,7,10,5 -050,01,031,Alabama,Coffee County,10,6,3543,1870,1673,1460,1265,280,289,21,21,29,47,34,11,46,40,1588,1525,1246,1147,267,277,15,16,28,46,1,5,31,34,282,148,214,118,13,12,6,5,1,1,33,6,15,6 -050,01,031,Alabama,Coffee County,10,7,2999,1532,1467,1181,1071,252,312,30,24,19,22,21,11,29,27,1359,1366,1054,998,240,303,21,17,19,21,8,4,17,23,173,101,127,73,12,9,9,7,0,1,13,7,12,4 -050,01,031,Alabama,Coffee County,10,8,3293,1594,1699,1227,1315,266,306,43,22,24,28,4,2,30,26,1506,1605,1161,1232,263,304,35,18,23,27,1,0,23,24,88,94,66,83,3,2,8,4,1,1,3,2,7,2 -050,01,031,Alabama,Coffee County,10,9,3333,1719,1614,1362,1262,292,279,19,17,15,28,3,1,28,27,1642,1546,1301,1208,287,275,14,14,15,27,1,0,24,22,77,68,61,54,5,4,5,3,0,1,2,1,4,5 -050,01,031,Alabama,Coffee County,10,10,3340,1657,1683,1313,1271,270,321,24,23,15,42,5,3,30,23,1602,1640,1271,1232,268,319,19,23,15,42,2,2,27,22,55,43,42,39,2,2,5,0,0,0,3,1,3,1 -050,01,031,Alabama,Coffee County,10,11,3263,1564,1699,1222,1311,277,309,30,27,9,39,2,0,24,13,1514,1659,1184,1278,272,306,28,25,8,37,2,0,20,13,50,40,38,33,5,3,2,2,1,2,0,0,4,0 -050,01,031,Alabama,Coffee County,10,12,2992,1446,1546,1145,1197,256,273,18,23,7,38,2,1,18,14,1398,1522,1107,1180,250,271,16,21,7,36,2,1,16,13,48,24,38,17,6,2,2,2,0,2,0,0,2,1 -050,01,031,Alabama,Coffee County,10,13,2757,1328,1429,1112,1168,173,202,15,12,6,28,1,0,21,19,1313,1410,1098,1151,173,200,14,12,6,28,1,0,21,19,15,19,14,17,0,2,1,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,10,14,2072,943,1129,799,914,115,166,12,12,5,25,2,0,10,12,934,1122,791,909,115,166,11,12,5,25,2,0,10,10,9,7,8,5,0,0,1,0,0,0,0,0,0,2 -050,01,031,Alabama,Coffee County,10,15,1886,887,999,784,847,94,142,6,2,1,7,0,0,2,1,878,988,776,837,94,141,5,2,1,7,0,0,2,1,9,11,8,10,0,1,1,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,10,16,1378,595,783,517,671,72,93,3,5,0,9,0,0,3,5,584,774,507,665,72,93,3,3,0,9,0,0,2,4,11,9,10,6,0,0,0,2,0,0,0,0,1,1 -050,01,031,Alabama,Coffee County,10,17,960,342,618,309,532,32,72,0,5,0,4,0,0,1,5,338,613,305,527,32,72,0,5,0,4,0,0,1,5,4,5,4,5,0,0,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,10,18,819,248,571,198,469,46,91,2,4,0,1,0,0,2,6,244,565,195,465,45,90,2,3,0,1,0,0,2,6,4,6,3,4,1,1,0,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,10,99,48516,23977,24539,18786,18855,3958,4412,339,323,217,379,134,63,543,507,22343,23405,17508,17948,3866,4338,279,275,207,371,31,18,452,455,1634,1134,1278,907,92,74,60,48,10,8,103,45,91,52 -050,01,031,Alabama,Coffee County,11,0,750,383,367,283,272,62,68,5,3,2,1,7,1,24,22,332,329,244,240,61,67,5,1,2,1,0,0,20,20,51,38,39,32,1,1,0,2,0,0,7,1,4,2 -050,01,031,Alabama,Coffee County,11,1,2521,1354,1167,1030,866,224,196,7,16,13,13,13,12,67,64,1156,1034,865,759,215,192,5,13,10,13,3,0,58,57,198,133,165,107,9,4,2,3,3,0,10,12,9,7 -050,01,031,Alabama,Coffee County,11,2,3111,1617,1494,1189,1102,314,284,25,25,18,10,6,7,65,66,1436,1362,1031,993,309,274,19,20,18,9,1,3,58,63,181,132,158,109,5,10,6,5,0,1,5,4,7,3 -050,01,031,Alabama,Coffee County,11,3,3397,1708,1689,1275,1203,322,357,18,42,17,18,5,2,71,67,1589,1582,1176,1122,315,343,16,40,15,18,2,1,65,58,119,107,99,81,7,14,2,2,2,0,3,1,6,9 -050,01,031,Alabama,Coffee County,11,4,3407,1723,1684,1248,1188,365,383,30,35,18,14,6,5,56,59,1602,1591,1152,1117,359,377,22,28,18,14,2,0,49,55,121,93,96,71,6,6,8,7,0,0,4,5,7,4 -050,01,031,Alabama,Coffee County,11,5,3040,1598,1442,1228,1073,250,269,33,23,20,19,31,11,36,47,1424,1320,1110,973,240,263,27,19,19,19,2,4,26,42,174,122,118,100,10,6,6,4,1,0,29,7,10,5 -050,01,031,Alabama,Coffee County,11,6,3634,1949,1685,1519,1297,293,277,20,21,23,38,41,10,53,42,1657,1535,1309,1178,275,264,14,16,22,37,1,3,36,37,292,150,210,119,18,13,6,5,1,1,40,7,17,5 -050,01,031,Alabama,Coffee County,11,7,3168,1632,1536,1268,1136,262,301,29,28,20,32,24,13,29,26,1443,1413,1127,1043,249,290,20,21,20,31,10,5,17,23,189,123,141,93,13,11,9,7,0,1,14,8,12,3 -050,01,031,Alabama,Coffee County,11,8,3316,1617,1699,1243,1313,283,290,34,22,25,41,3,3,29,30,1524,1598,1172,1224,279,288,27,18,24,41,0,0,22,27,93,101,71,89,4,2,7,4,1,0,3,3,7,3 -050,01,031,Alabama,Coffee County,11,9,3336,1679,1657,1336,1292,274,288,23,17,15,33,3,1,28,26,1600,1589,1276,1238,268,284,16,14,15,32,1,0,24,21,79,68,60,54,6,4,7,3,0,1,2,1,4,5 -050,01,031,Alabama,Coffee County,11,10,3360,1714,1646,1359,1277,275,281,27,23,20,41,5,3,28,21,1660,1598,1318,1233,273,279,21,23,20,41,2,2,26,20,54,48,41,44,2,2,6,0,0,0,3,1,2,1 -050,01,031,Alabama,Coffee County,11,11,3295,1569,1726,1217,1311,289,322,31,25,7,50,3,1,22,17,1523,1688,1183,1279,284,319,29,23,7,49,3,1,17,17,46,38,34,32,5,3,2,2,0,1,0,0,5,0 -050,01,031,Alabama,Coffee County,11,12,3051,1467,1584,1157,1216,265,285,21,24,8,40,2,2,14,17,1420,1551,1120,1191,259,282,19,22,8,38,2,2,12,16,47,33,37,25,6,3,2,2,0,2,0,0,2,1 -050,01,031,Alabama,Coffee County,11,13,2859,1392,1467,1161,1184,190,227,17,13,6,26,1,0,17,17,1371,1449,1141,1169,190,225,16,12,6,26,1,0,17,17,21,18,20,15,0,2,1,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,11,14,2158,992,1166,830,965,129,153,13,15,5,22,4,0,11,11,980,1158,819,960,129,153,12,14,5,22,4,0,11,9,12,8,11,5,0,0,1,1,0,0,0,0,0,2 -050,01,031,Alabama,Coffee County,11,15,1888,868,1020,760,865,97,144,8,3,1,7,0,0,2,1,860,1009,753,855,97,143,7,3,1,7,0,0,2,1,8,11,7,10,0,1,1,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,11,16,1404,611,793,541,673,63,94,4,6,0,14,0,0,3,6,601,784,532,667,63,94,4,4,0,14,0,0,2,5,10,9,9,6,0,0,0,2,0,0,0,0,1,1 -050,01,031,Alabama,Coffee County,11,17,924,342,582,301,501,38,69,0,4,0,4,2,0,1,4,337,577,297,496,38,69,0,4,0,4,1,0,1,4,5,5,4,5,0,0,0,0,0,0,1,0,0,0 -050,01,031,Alabama,Coffee County,11,18,821,250,571,209,472,37,88,2,4,0,1,0,0,2,6,245,564,205,467,36,87,2,3,0,1,0,0,2,6,5,7,4,5,1,1,0,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,11,99,49440,24465,24975,19154,19206,4032,4376,347,349,218,424,156,71,558,549,22760,23731,17830,18204,3939,4293,281,298,210,417,35,21,465,498,1705,1244,1324,1002,93,83,66,51,8,7,121,50,93,51 -050,01,031,Alabama,Coffee County,12,0,713,375,338,270,247,65,66,6,3,2,1,8,1,24,20,326,295,234,212,64,64,6,1,2,1,0,0,20,17,49,43,36,35,1,2,0,2,0,0,8,1,4,3 -050,01,031,Alabama,Coffee County,12,1,2590,1352,1238,1023,899,222,225,9,20,12,14,13,12,73,68,1138,1083,849,773,206,219,7,16,9,14,3,0,64,61,214,155,174,126,16,6,2,4,3,0,10,12,9,7 -050,01,031,Alabama,Coffee County,12,2,3187,1676,1511,1223,1130,323,269,25,26,26,12,6,7,73,67,1486,1369,1059,1012,316,260,19,21,25,11,1,2,66,63,190,142,164,118,7,9,6,5,1,1,5,5,7,4 -050,01,031,Alabama,Coffee County,12,3,3457,1745,1712,1303,1227,314,352,23,42,19,17,5,2,81,72,1602,1600,1181,1138,306,341,21,40,17,17,2,1,75,63,143,112,122,89,8,11,2,2,2,0,3,1,6,9 -050,01,031,Alabama,Coffee County,12,4,3370,1703,1667,1230,1162,365,391,31,35,16,15,7,5,54,59,1589,1572,1141,1089,359,385,23,28,16,15,3,0,47,55,114,95,89,73,6,6,8,7,0,0,4,5,7,4 -050,01,031,Alabama,Coffee County,12,5,3073,1625,1448,1239,1097,262,263,31,17,21,14,33,10,39,47,1427,1321,1103,996,248,255,25,13,20,14,2,3,29,40,198,127,136,101,14,8,6,4,1,0,31,7,10,7 -050,01,031,Alabama,Coffee County,12,6,3659,1956,1703,1550,1299,267,290,21,24,24,35,41,11,53,44,1654,1546,1327,1176,252,275,15,19,23,34,1,4,36,38,302,157,223,123,15,15,6,5,1,1,40,7,17,6 -050,01,031,Alabama,Coffee County,12,7,3240,1676,1564,1286,1174,282,291,31,29,23,28,24,13,30,29,1466,1428,1131,1068,266,281,21,22,23,27,7,5,18,25,210,136,155,106,16,10,10,7,0,1,17,8,12,4 -050,01,031,Alabama,Coffee County,12,8,3300,1603,1697,1240,1300,275,305,38,22,16,37,4,3,30,30,1493,1598,1155,1214,270,303,29,18,15,36,1,0,23,27,110,99,85,86,5,2,9,4,1,1,3,3,7,3 -050,01,031,Alabama,Coffee County,12,9,3312,1646,1666,1318,1300,256,280,23,19,17,38,4,1,28,28,1558,1597,1250,1246,250,276,16,15,17,37,1,0,24,23,88,69,68,54,6,4,7,4,0,1,3,1,4,5 -050,01,031,Alabama,Coffee County,12,10,3453,1769,1684,1411,1301,274,291,29,28,20,38,5,3,30,23,1708,1639,1364,1260,272,289,23,28,20,38,2,2,27,22,61,45,47,41,2,2,6,0,0,0,3,1,3,1 -050,01,031,Alabama,Coffee County,12,11,3350,1604,1746,1256,1309,291,336,23,31,9,51,2,1,23,18,1545,1701,1210,1271,285,333,21,29,8,49,2,1,19,18,59,45,46,38,6,3,2,2,1,2,0,0,4,0 -050,01,031,Alabama,Coffee County,12,12,3106,1461,1645,1143,1277,272,275,21,24,10,47,2,2,13,20,1413,1604,1105,1244,266,272,19,22,10,45,2,2,11,19,48,41,38,33,6,3,2,2,0,2,0,0,2,1 -050,01,031,Alabama,Coffee County,12,13,2928,1429,1499,1174,1183,209,248,18,15,6,31,1,0,21,22,1406,1478,1152,1165,209,246,17,14,6,31,1,0,21,22,23,21,22,18,0,2,1,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,12,14,2214,1019,1195,861,981,126,161,13,15,5,25,2,0,12,13,1006,1187,849,976,126,161,12,14,5,25,2,0,12,11,13,8,12,5,0,0,1,1,0,0,0,0,0,2 -050,01,031,Alabama,Coffee County,12,15,1811,817,994,719,844,87,139,8,3,1,7,0,0,2,1,809,983,712,834,87,138,7,3,1,7,0,0,2,1,8,11,7,10,0,1,1,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,12,16,1404,613,791,544,667,62,98,4,7,0,13,0,0,3,6,600,782,532,661,62,98,4,5,0,13,0,0,2,5,13,9,12,6,0,0,0,2,0,0,0,0,1,1 -050,01,031,Alabama,Coffee County,12,17,957,354,603,306,513,45,73,0,5,0,7,2,0,1,5,349,597,302,507,45,73,0,5,0,7,1,0,1,5,5,6,4,6,0,0,0,0,0,0,1,0,0,0 -050,01,031,Alabama,Coffee County,12,18,824,261,563,218,474,39,78,2,4,0,1,0,0,2,6,256,557,214,470,38,77,2,3,0,1,0,0,2,6,5,6,4,4,1,1,0,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,12,99,49948,24684,25264,19314,19384,4036,4431,356,369,227,431,159,71,592,578,22831,23937,17870,18312,3927,4346,287,316,217,422,31,20,499,521,1853,1327,1444,1072,109,85,69,53,10,9,128,51,93,57 -050,01,031,Alabama,Coffee County,13,0,718,377,341,270,248,65,67,6,3,3,2,8,1,25,20,328,295,234,213,64,64,6,1,3,1,0,0,21,16,49,46,36,35,1,3,0,2,0,1,8,1,4,4 -050,01,031,Alabama,Coffee County,13,1,2592,1353,1239,1020,898,223,227,8,19,12,15,16,11,74,69,1138,1084,846,772,208,221,7,14,10,15,3,0,64,62,215,155,174,126,15,6,1,5,2,0,13,11,10,7 -050,01,031,Alabama,Coffee County,13,2,3199,1685,1514,1227,1132,328,270,26,26,26,12,7,6,71,68,1490,1370,1060,1012,320,261,20,20,24,11,1,2,65,64,195,144,167,120,8,9,6,6,2,1,6,4,6,4 -050,01,031,Alabama,Coffee County,13,3,3464,1748,1716,1305,1227,317,353,24,41,17,18,6,3,79,74,1600,1601,1179,1138,309,341,20,38,16,18,2,1,74,65,148,115,126,89,8,12,4,3,1,0,4,2,5,9 -050,01,031,Alabama,Coffee County,13,4,3352,1695,1657,1227,1158,362,391,31,34,15,16,6,4,54,54,1580,1562,1137,1084,357,383,22,27,15,16,2,0,47,52,115,95,90,74,5,8,9,7,0,0,4,4,7,2 -050,01,031,Alabama,Coffee County,13,5,3079,1629,1450,1244,1100,264,263,32,17,22,14,32,9,35,47,1431,1322,1106,998,250,255,26,12,21,14,2,3,26,40,198,128,138,102,14,8,6,5,1,0,30,6,9,7 -050,01,031,Alabama,Coffee County,13,6,3673,1965,1708,1557,1304,269,292,20,24,25,34,40,11,54,43,1666,1549,1334,1179,254,277,15,19,24,33,2,4,37,37,299,159,223,125,15,15,5,5,1,1,38,7,17,6 -050,01,031,Alabama,Coffee County,13,7,3269,1686,1583,1294,1189,284,294,30,28,24,29,23,13,31,30,1478,1444,1139,1080,268,283,21,21,24,28,7,5,19,27,208,139,155,109,16,11,9,7,0,1,16,8,12,3 -050,01,031,Alabama,Coffee County,13,8,3280,1591,1689,1234,1290,275,307,35,21,13,36,4,3,30,32,1480,1589,1148,1204,269,304,27,17,12,35,1,0,23,29,111,100,86,86,6,3,8,4,1,1,3,3,7,3 -050,01,031,Alabama,Coffee County,13,9,3317,1652,1665,1321,1302,257,280,23,18,17,37,4,1,30,27,1562,1594,1252,1247,251,276,15,13,17,36,1,0,26,22,90,71,69,55,6,4,8,5,0,1,3,1,4,5 -050,01,031,Alabama,Coffee County,13,10,3449,1770,1679,1411,1297,275,291,30,29,20,38,5,2,29,22,1707,1631,1361,1254,273,289,24,28,20,38,2,1,27,21,63,48,50,43,2,2,6,1,0,0,3,1,2,1 -050,01,031,Alabama,Coffee County,13,11,3373,1614,1759,1262,1315,295,343,23,31,10,51,2,1,22,18,1555,1712,1216,1277,289,338,20,29,9,49,2,1,19,18,59,47,46,38,6,5,3,2,1,2,0,0,3,0 -050,01,031,Alabama,Coffee County,13,12,3132,1472,1660,1152,1287,276,279,21,24,9,45,2,2,12,23,1425,1618,1114,1253,270,276,19,22,9,43,2,2,11,22,47,42,38,34,6,3,2,2,0,2,0,0,1,1 -050,01,031,Alabama,Coffee County,13,13,2960,1446,1514,1187,1195,214,253,18,15,6,31,1,0,20,20,1423,1493,1165,1177,214,251,17,14,6,31,1,0,20,20,23,21,22,18,0,2,1,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,13,14,2231,1028,1203,868,989,130,162,11,17,5,26,2,0,12,9,1014,1196,855,984,129,162,11,16,5,26,2,0,12,8,14,7,13,5,1,0,0,1,0,0,0,0,0,1 -050,01,031,Alabama,Coffee County,13,15,1825,824,1001,725,849,88,139,7,3,2,8,0,0,2,2,815,991,716,839,88,139,7,3,2,8,0,0,2,2,9,10,9,10,0,0,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,13,16,1398,611,787,542,667,60,98,4,5,0,12,0,0,5,5,598,778,530,660,60,98,4,4,0,12,0,0,4,4,13,9,12,7,0,0,0,1,0,0,0,0,1,1 -050,01,031,Alabama,Coffee County,13,17,961,355,606,306,517,46,72,0,4,1,8,1,0,1,5,351,598,302,509,46,72,0,4,1,8,1,0,1,5,4,8,4,8,0,0,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,13,18,832,264,568,220,477,40,80,2,4,0,1,0,0,2,6,259,562,216,473,39,79,2,3,0,1,0,0,2,6,5,6,4,4,1,1,0,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,13,99,50104,24765,25339,19372,19441,4068,4461,351,363,227,433,159,67,588,574,22900,23989,17910,18353,3958,4369,283,305,218,423,31,19,500,520,1865,1350,1462,1088,110,92,68,58,9,10,128,48,88,54 -050,01,033,Alabama,Colbert County,1,0,689,348,341,265,269,79,62,0,1,0,1,0,1,4,7,340,334,258,263,78,61,0,1,0,1,0,1,4,7,8,7,7,6,1,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,1,1,2669,1379,1290,1070,997,266,248,2,3,8,9,0,0,33,33,1346,1259,1039,969,264,245,2,3,8,9,0,0,33,33,33,31,31,28,2,3,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,1,2,3727,1879,1848,1491,1397,362,416,14,10,3,2,0,0,9,23,1847,1810,1464,1361,357,414,14,10,3,2,0,0,9,23,32,38,27,36,5,2,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,1,3,3733,1924,1809,1494,1368,401,417,10,9,4,2,0,1,15,12,1903,1777,1477,1342,399,413,9,9,4,2,0,1,14,10,21,32,17,26,2,4,1,0,0,0,0,0,1,2 -050,01,033,Alabama,Colbert County,1,4,3645,1849,1796,1420,1376,386,389,11,11,8,4,0,0,24,16,1819,1778,1394,1362,386,386,10,11,7,4,0,0,22,15,30,18,26,14,0,3,1,0,1,0,0,0,2,1 -050,01,033,Alabama,Colbert County,1,5,3072,1489,1583,1146,1279,307,286,8,6,7,3,3,0,18,9,1457,1553,1121,1253,305,283,7,5,5,3,2,0,17,9,32,30,25,26,2,3,1,1,2,0,1,0,1,0 -050,01,033,Alabama,Colbert County,1,6,3392,1670,1722,1409,1381,237,322,10,4,4,7,1,1,9,7,1631,1701,1377,1363,234,320,8,4,3,7,1,1,8,6,39,21,32,18,3,2,2,0,1,0,0,0,1,1 -050,01,033,Alabama,Colbert County,1,7,3593,1767,1826,1505,1458,248,341,2,8,3,10,0,2,9,7,1746,1799,1486,1432,247,340,1,8,3,10,0,2,9,7,21,27,19,26,1,1,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,1,8,4053,1972,2081,1666,1697,277,349,14,11,6,7,0,0,9,17,1948,2061,1644,1680,277,349,13,10,6,7,0,0,8,15,24,20,22,17,0,0,1,1,0,0,0,0,1,2 -050,01,033,Alabama,Colbert County,1,9,4231,2070,2161,1747,1758,287,376,8,12,5,2,1,1,22,12,2042,2145,1723,1743,285,375,8,12,5,2,0,1,21,12,28,16,24,15,2,1,0,0,0,0,1,0,1,0 -050,01,033,Alabama,Colbert County,1,10,3890,1869,2021,1565,1629,281,361,8,8,3,10,0,0,12,13,1851,2008,1548,1619,280,359,8,8,3,10,0,0,12,12,18,13,17,10,1,2,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,1,11,3770,1824,1946,1517,1608,285,312,5,5,4,6,0,1,13,14,1812,1936,1508,1603,282,309,5,5,4,6,0,1,13,12,12,10,9,5,3,3,0,0,0,0,0,0,0,2 -050,01,033,Alabama,Colbert County,1,12,3232,1485,1747,1277,1475,191,252,3,2,5,2,0,0,9,16,1477,1741,1269,1469,191,252,3,2,5,2,0,0,9,16,8,6,8,6,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,1,13,2792,1319,1473,1181,1270,130,188,3,2,1,1,0,0,4,12,1312,1467,1175,1265,130,188,2,2,1,1,0,0,4,11,7,6,6,5,0,0,1,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,1,14,2406,1138,1268,988,1081,138,176,4,2,1,3,0,0,7,6,1129,1263,981,1077,136,175,4,2,1,3,0,0,7,6,9,5,7,4,2,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,1,15,2164,945,1219,832,1042,107,168,2,2,0,1,0,0,4,6,945,1214,832,1037,107,168,2,2,0,1,0,0,4,6,0,5,0,5,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,1,16,1777,686,1091,593,935,86,149,2,0,1,0,0,1,4,6,686,1087,593,934,86,147,2,0,1,0,0,1,4,5,0,4,0,1,0,2,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,1,17,1188,438,750,378,646,57,97,0,2,0,1,0,0,3,4,436,749,376,645,57,97,0,2,0,1,0,0,3,4,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,1,18,956,259,697,222,594,36,99,0,1,0,1,0,0,1,2,257,695,221,593,35,98,0,1,0,1,0,0,1,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,1,99,54979,26310,28669,21766,23260,4161,5008,106,99,63,72,5,8,209,222,25984,28377,21486,23010,4136,4979,98,97,59,72,3,8,202,211,326,292,280,250,25,29,8,2,4,0,2,0,7,11 -050,01,033,Alabama,Colbert County,2,0,694,350,344,266,271,80,63,0,1,0,1,0,1,4,7,342,337,259,265,79,62,0,1,0,1,0,1,4,7,8,7,7,6,1,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,2,1,2644,1364,1280,1062,991,264,246,2,3,8,9,0,0,28,31,1331,1249,1031,963,262,243,2,3,8,9,0,0,28,31,33,31,31,28,2,3,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,2,2,3702,1869,1833,1481,1387,358,409,14,10,3,2,0,0,13,25,1837,1795,1454,1351,353,407,14,10,3,2,0,0,13,25,32,38,27,36,5,2,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,2,3,3745,1928,1817,1494,1369,405,421,10,9,4,2,0,1,15,15,1907,1785,1477,1343,403,417,9,9,4,2,0,1,14,13,21,32,17,26,2,4,1,0,0,0,0,0,1,2 -050,01,033,Alabama,Colbert County,2,4,3650,1853,1797,1426,1376,384,390,11,11,8,4,0,0,24,16,1823,1779,1400,1362,384,387,10,11,7,4,0,0,22,15,30,18,26,14,0,3,1,0,1,0,0,0,2,1 -050,01,033,Alabama,Colbert County,2,5,3091,1496,1595,1152,1289,309,288,8,6,7,3,3,0,17,9,1465,1565,1127,1263,307,285,7,5,5,3,2,0,17,9,31,30,25,26,2,3,1,1,2,0,1,0,0,0 -050,01,033,Alabama,Colbert County,2,6,3351,1650,1701,1390,1362,236,320,10,4,4,7,1,1,9,7,1611,1680,1358,1344,233,318,8,4,3,7,1,1,8,6,39,21,32,18,3,2,2,0,1,0,0,0,1,1 -050,01,033,Alabama,Colbert County,2,7,3579,1759,1820,1498,1452,247,341,2,8,3,10,0,2,9,7,1738,1793,1479,1426,246,340,1,8,3,10,0,2,9,7,21,27,19,26,1,1,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,2,8,4029,1960,2069,1655,1684,276,349,14,11,6,7,0,0,9,18,1936,2049,1633,1667,276,349,13,10,6,7,0,0,8,16,24,20,22,17,0,0,1,1,0,0,0,0,1,2 -050,01,033,Alabama,Colbert County,2,9,4231,2069,2162,1747,1757,288,378,8,12,5,2,1,1,20,12,2042,2146,1723,1742,286,377,8,12,5,2,0,1,20,12,27,16,24,15,2,1,0,0,0,0,1,0,0,0 -050,01,033,Alabama,Colbert County,2,10,3906,1875,2031,1569,1637,283,364,8,8,3,10,0,0,12,12,1857,2018,1552,1627,282,362,8,8,3,10,0,0,12,11,18,13,17,10,1,2,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,2,11,3805,1841,1964,1530,1621,289,316,5,5,4,6,0,1,13,15,1829,1954,1521,1616,286,313,5,5,4,6,0,1,13,13,12,10,9,5,3,3,0,0,0,0,0,0,0,2 -050,01,033,Alabama,Colbert County,2,12,3245,1492,1753,1283,1481,192,253,3,2,5,2,0,0,9,15,1484,1747,1275,1475,192,253,3,2,5,2,0,0,9,15,8,6,8,6,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,2,13,2800,1321,1479,1183,1274,130,188,3,2,1,1,0,0,4,14,1314,1472,1177,1269,130,188,2,2,1,1,0,0,4,12,7,7,6,5,0,0,1,0,0,0,0,0,0,2 -050,01,033,Alabama,Colbert County,2,14,2407,1140,1267,987,1077,140,178,4,2,1,3,0,0,8,7,1131,1262,980,1073,138,177,4,2,1,3,0,0,8,7,9,5,7,4,2,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,2,15,2166,947,1219,834,1041,107,169,2,2,0,1,0,0,4,6,947,1214,834,1036,107,169,2,2,0,1,0,0,4,6,0,5,0,5,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,2,16,1788,690,1098,597,939,86,152,2,0,1,0,0,1,4,6,690,1094,597,938,86,150,2,0,1,0,0,1,4,5,0,4,0,1,0,2,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,2,17,1200,444,756,383,651,58,98,0,2,0,1,0,0,3,4,442,755,381,650,58,98,0,2,0,1,0,0,3,4,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,2,18,964,264,700,226,597,37,100,0,1,0,1,0,0,1,1,262,698,225,596,36,99,0,1,0,1,0,0,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,2,99,54997,26312,28685,21763,23256,4169,5023,106,99,63,72,5,8,206,227,25988,28392,21483,23006,4144,4994,98,97,59,72,3,8,201,215,324,293,280,250,25,29,8,2,4,0,2,0,5,12 -050,01,033,Alabama,Colbert County,3,0,601,309,292,250,224,53,57,0,1,0,1,0,1,6,8,302,286,244,219,52,56,0,1,0,1,0,1,6,8,7,6,6,5,1,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,3,1,2730,1419,1311,1087,1033,292,234,2,3,11,8,0,0,27,33,1387,1271,1058,1000,289,227,2,3,11,8,0,0,27,33,32,40,29,33,3,7,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,3,2,3517,1793,1724,1437,1325,322,360,13,9,5,4,0,0,16,26,1758,1688,1410,1291,314,358,13,9,5,4,0,0,16,26,35,36,27,34,8,2,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,3,3,3799,1936,1863,1498,1398,402,425,11,17,4,4,0,1,21,18,1909,1830,1476,1373,399,419,10,17,4,4,0,1,20,16,27,33,22,25,3,6,1,0,0,0,0,0,1,2 -050,01,033,Alabama,Colbert County,3,4,3579,1841,1738,1418,1334,378,370,11,11,9,4,0,0,25,19,1814,1718,1395,1318,378,367,10,11,8,4,0,0,23,18,27,20,23,16,0,3,1,0,1,0,0,0,2,1 -050,01,033,Alabama,Colbert County,3,5,3208,1543,1665,1203,1330,306,316,7,6,7,3,3,0,17,10,1505,1636,1171,1304,304,314,6,5,5,3,2,0,17,10,38,29,32,26,2,2,1,1,2,0,1,0,0,0 -050,01,033,Alabama,Colbert County,3,6,3130,1531,1599,1263,1276,241,298,10,5,5,7,1,1,11,12,1504,1574,1243,1254,238,296,8,5,4,7,1,1,10,11,27,25,20,22,3,2,2,0,1,0,0,0,1,1 -050,01,033,Alabama,Colbert County,3,7,3588,1783,1805,1521,1449,247,328,3,9,3,10,0,2,9,7,1751,1773,1491,1418,246,327,2,9,3,10,0,2,9,7,32,32,30,31,1,1,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,3,8,3919,1948,1971,1626,1597,288,338,16,11,6,7,0,0,12,18,1921,1953,1601,1582,288,338,15,10,6,7,0,0,11,16,27,18,25,15,0,0,1,1,0,0,0,0,1,2 -050,01,033,Alabama,Colbert County,3,9,4271,2026,2245,1722,1811,273,408,7,11,5,3,1,0,18,12,1988,2227,1687,1794,271,407,7,11,5,3,0,0,18,12,38,18,35,17,2,1,0,0,0,0,1,0,0,0 -050,01,033,Alabama,Colbert County,3,10,3948,1911,2037,1597,1659,291,343,8,7,3,10,0,0,12,18,1890,2023,1577,1648,290,341,8,7,3,10,0,0,12,17,21,14,20,11,1,2,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,3,11,3930,1915,2015,1578,1645,307,338,7,7,7,6,0,0,16,19,1900,2004,1566,1640,304,334,7,7,7,6,0,0,16,17,15,11,12,5,3,4,0,0,0,0,0,0,0,2 -050,01,033,Alabama,Colbert County,3,12,3178,1450,1728,1245,1457,190,250,3,3,5,3,0,0,7,15,1440,1718,1235,1447,190,250,3,3,5,3,0,0,7,15,10,10,10,10,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,3,13,2850,1356,1494,1192,1290,152,186,4,3,1,1,0,0,7,14,1350,1484,1187,1281,152,186,3,3,1,1,0,0,7,13,6,10,5,9,0,0,1,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,3,14,2412,1141,1271,996,1087,133,174,3,2,1,3,0,0,8,5,1133,1266,990,1083,131,173,3,2,1,3,0,0,8,5,8,5,6,4,2,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,3,15,2171,933,1238,829,1050,99,179,1,2,0,1,0,0,4,6,933,1233,829,1045,99,179,1,2,0,1,0,0,4,6,0,5,0,5,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,3,16,1836,750,1086,645,919,99,160,2,0,1,0,0,1,3,6,750,1083,645,918,99,159,2,0,1,0,0,1,3,5,0,3,0,1,0,1,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,3,17,1188,407,781,361,672,42,103,0,2,0,1,0,0,4,3,405,779,359,670,42,103,0,2,0,1,0,0,4,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,3,18,938,279,659,241,555,37,99,0,1,0,1,0,0,1,3,277,657,240,554,36,98,0,1,0,1,0,0,1,3,2,2,1,1,1,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,3,99,54793,26271,28522,21709,23111,4152,4966,108,110,73,77,5,6,224,252,25917,28203,21404,22839,4122,4932,100,108,69,77,3,6,219,241,354,319,305,272,30,34,8,2,4,0,2,0,5,11 -050,01,033,Alabama,Colbert County,4,0,641,314,327,253,254,52,63,1,1,1,1,0,0,7,8,307,317,247,245,51,62,1,1,1,1,0,0,7,8,7,10,6,9,1,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,4,1,2636,1382,1254,1072,984,269,228,2,3,11,8,0,0,28,31,1350,1214,1042,948,267,224,2,3,11,8,0,0,28,31,32,40,30,36,2,4,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,4,2,3448,1762,1686,1416,1308,306,334,11,9,5,8,0,0,24,27,1722,1646,1384,1273,299,329,11,9,5,8,0,0,23,27,40,40,32,35,7,5,0,0,0,0,0,0,1,0 -050,01,033,Alabama,Colbert County,4,3,3792,1943,1849,1516,1397,389,415,11,12,4,5,0,1,23,19,1910,1817,1490,1371,384,411,10,12,4,5,0,1,22,17,33,32,26,26,5,4,1,0,0,0,0,0,1,2 -050,01,033,Alabama,Colbert County,4,4,3512,1802,1710,1380,1312,375,359,11,11,10,6,0,0,26,22,1770,1690,1352,1295,375,357,10,11,9,6,0,0,24,21,32,20,28,17,0,2,1,0,1,0,0,0,2,1 -050,01,033,Alabama,Colbert County,4,5,3223,1572,1651,1218,1316,317,312,8,8,7,4,3,0,19,11,1541,1624,1196,1292,315,310,6,7,5,4,2,0,17,11,31,27,22,24,2,2,2,1,2,0,1,0,2,0 -050,01,033,Alabama,Colbert County,4,6,3027,1444,1583,1201,1282,219,280,9,4,5,7,1,1,9,9,1409,1558,1172,1260,217,278,7,4,4,7,1,1,8,8,35,25,29,22,2,2,2,0,1,0,0,0,1,1 -050,01,033,Alabama,Colbert County,4,7,3587,1780,1807,1511,1446,254,331,3,9,2,11,0,1,10,9,1745,1784,1478,1426,253,328,2,9,2,11,0,1,10,9,35,23,33,20,1,3,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,4,8,3802,1880,1922,1574,1543,277,346,13,10,5,6,0,0,11,17,1850,1897,1547,1520,276,346,12,9,5,6,0,0,10,16,30,25,27,23,1,0,1,1,0,0,0,0,1,1 -050,01,033,Alabama,Colbert County,4,9,4122,1954,2168,1622,1777,298,366,9,9,6,4,1,0,18,12,1917,2144,1587,1754,297,365,9,9,6,4,0,0,18,12,37,24,35,23,1,1,0,0,0,0,1,0,0,0 -050,01,033,Alabama,Colbert County,4,10,4036,1988,2048,1685,1642,279,373,9,9,3,10,0,0,12,14,1967,2033,1665,1630,278,371,9,9,3,10,0,0,12,13,21,15,20,12,1,2,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,4,11,3846,1840,2006,1513,1630,295,345,6,6,10,6,0,1,16,18,1827,1993,1503,1623,292,342,6,6,10,6,0,1,16,15,13,13,10,7,3,3,0,0,0,0,0,0,0,3 -050,01,033,Alabama,Colbert County,4,12,3342,1575,1767,1336,1490,221,254,5,4,5,3,0,0,8,16,1563,1761,1324,1484,221,254,5,4,5,3,0,0,8,16,12,6,12,6,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,4,13,2942,1375,1567,1206,1344,158,202,3,3,2,3,0,0,6,15,1368,1560,1200,1338,158,202,2,3,2,3,0,0,6,14,7,7,6,6,0,0,1,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,4,14,2443,1151,1292,997,1109,143,170,4,2,2,4,0,0,5,7,1143,1286,991,1104,141,169,4,2,2,4,0,0,5,7,8,6,6,5,2,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,4,15,2121,936,1185,817,1009,112,167,2,3,0,1,0,0,5,5,934,1179,815,1003,112,167,2,3,0,1,0,0,5,5,2,6,2,6,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,4,16,1849,756,1093,661,922,88,164,2,0,1,0,0,1,4,6,756,1090,661,921,88,163,2,0,1,0,0,1,4,5,0,3,0,1,0,1,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,4,17,1240,421,819,378,701,39,111,0,2,0,1,0,0,4,4,419,818,376,700,39,111,0,2,0,1,0,0,4,4,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,4,18,927,282,645,244,552,36,88,1,1,0,1,0,0,1,3,280,643,243,551,35,87,1,1,0,1,0,0,1,3,2,2,1,1,1,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,4,99,54536,26157,28379,21600,23018,4127,4908,110,106,79,89,5,5,236,253,25778,28054,21273,22738,4098,4876,101,104,75,89,3,5,228,242,379,325,327,280,29,32,9,2,4,0,2,0,8,11 -050,01,033,Alabama,Colbert County,5,0,607,307,300,250,245,47,42,1,1,1,1,0,0,8,11,293,290,238,237,45,41,1,1,1,1,0,0,8,10,14,10,12,8,2,1,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,5,1,2658,1367,1291,1058,993,270,253,6,5,5,7,0,0,28,33,1327,1249,1023,956,266,248,6,5,5,7,0,0,27,33,40,42,35,37,4,5,0,0,0,0,0,0,1,0 -050,01,033,Alabama,Colbert County,5,2,3354,1750,1604,1416,1280,283,279,11,7,6,5,0,0,34,33,1711,1569,1383,1248,278,276,11,7,6,5,0,0,33,33,39,35,33,32,5,3,0,0,0,0,0,0,1,0 -050,01,033,Alabama,Colbert County,5,3,3771,1960,1811,1532,1380,389,390,10,12,5,4,0,0,24,25,1924,1780,1505,1355,382,385,9,12,5,4,0,0,23,24,36,31,27,25,7,5,1,0,0,0,0,0,1,1 -050,01,033,Alabama,Colbert County,5,4,3498,1783,1715,1376,1284,364,395,10,11,7,5,0,0,26,20,1751,1697,1346,1269,364,393,9,11,7,5,0,0,25,19,32,18,30,15,0,2,1,0,0,0,0,0,1,1 -050,01,033,Alabama,Colbert County,5,5,3127,1500,1627,1185,1291,279,309,10,8,6,5,3,0,17,14,1456,1600,1147,1268,278,306,8,7,5,5,2,0,16,14,44,27,38,23,1,3,2,1,1,0,1,0,1,0 -050,01,033,Alabama,Colbert County,5,6,2943,1395,1548,1157,1248,214,274,8,6,6,8,0,1,10,11,1371,1523,1139,1226,212,272,6,6,5,8,0,1,9,10,24,25,18,22,2,2,2,0,1,0,0,0,1,1 -050,01,033,Alabama,Colbert County,5,7,3532,1751,1781,1494,1421,242,324,4,12,3,12,0,2,8,10,1720,1747,1465,1390,241,321,3,12,3,12,0,2,8,10,31,34,29,31,1,3,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,5,8,3693,1829,1864,1520,1501,280,333,13,10,5,6,0,0,11,14,1798,1843,1492,1482,279,333,12,9,5,6,0,0,10,13,31,21,28,19,1,0,1,1,0,0,0,0,1,1 -050,01,033,Alabama,Colbert County,5,9,4037,1946,2091,1639,1708,275,355,9,11,6,4,1,1,16,12,1912,2067,1607,1687,274,354,9,11,6,4,0,1,16,10,34,24,32,21,1,1,0,0,0,0,1,0,0,2 -050,01,033,Alabama,Colbert County,5,10,4182,2045,2137,1718,1721,301,380,10,10,4,10,0,0,12,16,2025,2120,1699,1707,300,378,10,10,4,10,0,0,12,15,20,17,19,14,1,2,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,5,11,3854,1854,2000,1532,1609,282,359,7,8,11,7,0,0,22,17,1834,1987,1515,1602,279,356,7,8,11,7,0,0,22,14,20,13,17,7,3,3,0,0,0,0,0,0,0,3 -050,01,033,Alabama,Colbert County,5,12,3368,1626,1742,1352,1472,253,245,6,4,5,4,0,0,10,17,1611,1735,1337,1465,253,245,6,4,5,4,0,0,10,17,15,7,15,7,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,5,13,3027,1391,1636,1217,1398,161,217,4,5,3,4,0,0,6,12,1385,1630,1212,1393,161,217,3,5,3,4,0,0,6,11,6,6,5,5,0,0,1,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,5,14,2513,1177,1336,1028,1149,138,174,4,2,2,4,0,0,5,7,1170,1332,1023,1146,136,173,4,2,2,4,0,0,5,7,7,4,5,3,2,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,5,15,2086,924,1162,813,997,104,156,2,3,0,1,0,0,5,5,922,1156,811,991,104,156,2,3,0,1,0,0,5,5,2,6,2,6,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,5,16,1852,755,1097,658,935,88,154,3,0,1,0,0,1,5,7,755,1094,658,934,88,153,3,0,1,0,0,1,5,6,0,3,0,1,0,1,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,5,17,1238,442,796,383,676,56,114,0,2,0,1,0,0,3,3,439,794,380,674,56,114,0,2,0,1,0,0,3,3,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,5,18,939,291,648,259,564,30,78,1,1,0,1,0,0,1,4,289,646,258,563,29,77,1,1,0,1,0,0,1,4,2,2,1,1,1,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,5,99,54279,26093,28186,21587,22872,4056,4831,119,118,76,89,4,5,251,271,25693,27859,21238,22593,4025,4798,110,116,74,89,2,5,244,258,400,327,349,279,31,33,9,2,2,0,2,0,7,13 -050,01,033,Alabama,Colbert County,6,0,563,292,271,240,216,40,40,1,1,1,1,0,1,10,12,283,253,233,200,38,39,1,1,1,1,0,1,10,11,9,18,7,16,2,1,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,6,1,2582,1281,1301,1002,1025,243,229,5,4,6,7,0,0,25,36,1240,1256,966,985,239,224,5,4,6,7,0,0,24,36,41,45,36,40,4,5,0,0,0,0,0,0,1,0 -050,01,033,Alabama,Colbert County,6,2,3375,1786,1589,1436,1276,292,262,10,6,6,10,0,0,42,35,1739,1543,1396,1234,286,259,10,6,6,10,0,0,41,34,47,46,40,42,6,3,0,0,0,0,0,0,1,1 -050,01,033,Alabama,Colbert County,6,3,3796,1948,1848,1515,1401,386,402,11,10,7,5,0,1,29,29,1900,1806,1477,1365,379,397,10,10,6,5,0,1,28,28,48,42,38,36,7,5,1,0,1,0,0,0,1,1 -050,01,033,Alabama,Colbert County,6,4,3513,1803,1710,1401,1288,355,388,10,11,7,5,1,0,29,18,1772,1694,1373,1274,355,386,8,11,7,5,1,0,28,18,31,16,28,14,0,2,2,0,0,0,0,0,1,0 -050,01,033,Alabama,Colbert County,6,5,3166,1564,1602,1221,1262,306,312,9,8,6,5,3,0,19,15,1511,1577,1175,1241,305,309,7,7,5,5,2,0,17,15,53,25,46,21,1,3,2,1,1,0,1,0,2,0 -050,01,033,Alabama,Colbert County,6,6,2947,1378,1569,1149,1273,203,271,8,5,7,9,1,1,10,10,1349,1537,1126,1244,201,269,6,5,6,9,1,1,9,9,29,32,23,29,2,2,2,0,1,0,0,0,1,1 -050,01,033,Alabama,Colbert County,6,7,3403,1679,1724,1420,1381,241,307,5,12,3,12,0,1,10,11,1645,1689,1388,1349,240,304,4,12,3,12,0,1,10,11,34,35,32,32,1,3,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,6,8,3587,1784,1803,1482,1453,275,320,11,9,6,6,0,0,10,15,1753,1778,1455,1431,274,319,10,8,5,6,0,0,9,14,31,25,27,22,1,1,1,1,1,0,0,0,1,1 -050,01,033,Alabama,Colbert County,6,9,4102,2005,2097,1681,1716,292,350,9,11,5,5,1,1,17,14,1961,2073,1639,1695,291,349,9,11,5,5,0,1,17,12,44,24,42,21,1,1,0,0,0,0,1,0,0,2 -050,01,033,Alabama,Colbert County,6,10,4181,2046,2135,1720,1726,299,371,10,11,4,10,0,0,13,17,2017,2119,1692,1713,298,369,10,11,4,10,0,0,13,16,29,16,28,13,1,2,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,6,11,3838,1844,1994,1527,1617,283,341,7,9,11,7,0,1,16,19,1825,1979,1512,1608,280,338,7,9,11,7,0,1,15,16,19,15,15,9,3,3,0,0,0,0,0,0,1,3 -050,01,033,Alabama,Colbert County,6,12,3506,1690,1816,1410,1517,261,276,8,5,4,5,0,0,7,13,1674,1808,1395,1510,260,275,8,5,4,5,0,0,7,13,16,8,15,7,1,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,6,13,3094,1424,1670,1231,1405,179,243,4,6,3,4,0,0,7,12,1417,1664,1225,1400,179,243,3,6,3,4,0,0,7,11,7,6,6,5,0,0,1,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,6,14,2576,1196,1380,1052,1197,133,171,4,2,2,4,0,0,5,6,1190,1376,1048,1194,131,170,4,2,2,4,0,0,5,6,6,4,4,3,2,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,6,15,2061,930,1131,812,957,109,163,2,4,0,1,0,0,7,6,928,1127,810,953,109,163,2,4,0,1,0,0,7,6,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,6,16,1837,740,1097,642,946,90,142,2,0,1,0,0,1,5,8,740,1094,642,945,90,141,2,0,1,0,0,1,5,7,0,3,0,1,0,1,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,6,17,1278,470,808,418,702,49,101,1,2,0,0,0,0,2,3,468,805,416,699,49,101,1,2,0,0,0,0,2,3,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,6,18,975,308,667,266,562,40,99,1,1,0,1,0,0,1,4,306,665,265,561,39,98,1,1,0,1,0,0,1,4,2,2,1,1,1,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,6,99,54380,26168,28212,21625,22920,4076,4788,118,117,79,97,6,7,264,283,25718,27843,21233,22601,4043,4753,108,115,75,97,4,7,255,270,450,369,392,319,33,35,10,2,4,0,2,0,9,13 -050,01,033,Alabama,Colbert County,7,0,633,317,316,252,252,50,53,1,0,2,0,0,0,12,11,299,302,237,239,47,53,1,0,2,0,0,0,12,10,18,14,15,13,3,0,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,7,1,2468,1257,1211,991,944,216,217,3,4,5,8,1,0,41,38,1214,1156,954,899,212,211,3,4,5,7,0,0,40,35,43,55,37,45,4,6,0,0,0,1,1,0,1,3 -050,01,033,Alabama,Colbert County,7,2,3386,1782,1604,1411,1305,309,252,7,8,10,5,1,0,44,34,1729,1560,1368,1266,302,248,7,8,9,5,1,0,42,33,53,44,43,39,7,4,0,0,1,0,0,0,2,1 -050,01,033,Alabama,Colbert County,7,3,3740,1875,1865,1484,1413,344,411,12,8,5,5,1,1,29,27,1826,1816,1444,1371,336,405,12,8,5,5,1,1,28,26,49,49,40,42,8,6,0,0,0,0,0,0,1,1 -050,01,033,Alabama,Colbert County,7,4,3537,1854,1683,1451,1252,355,389,11,13,7,5,2,1,28,23,1826,1664,1426,1237,355,387,9,12,7,5,2,1,27,22,28,19,25,15,0,2,2,1,0,0,0,0,1,1 -050,01,033,Alabama,Colbert County,7,5,3096,1537,1559,1231,1229,272,297,9,9,5,7,1,0,19,17,1490,1531,1194,1205,268,295,6,8,4,7,1,0,17,16,47,28,37,24,4,2,3,1,1,0,0,0,2,1 -050,01,033,Alabama,Colbert County,7,6,3041,1434,1607,1174,1305,232,272,9,8,6,7,0,1,13,14,1388,1569,1132,1272,231,272,7,8,6,7,0,0,12,10,46,38,42,33,1,0,2,0,0,0,0,1,1,4 -050,01,033,Alabama,Colbert County,7,7,3258,1596,1662,1359,1308,216,312,7,12,4,13,0,1,10,16,1561,1628,1326,1280,216,308,5,12,4,13,0,1,10,14,35,34,33,28,0,4,2,0,0,0,0,0,0,2 -050,01,033,Alabama,Colbert County,7,8,3569,1784,1785,1483,1447,271,313,14,8,4,6,0,0,12,11,1751,1756,1457,1423,269,310,11,7,4,6,0,0,10,10,33,29,26,24,2,3,3,1,0,0,0,0,2,1 -050,01,033,Alabama,Colbert County,7,9,4019,1987,2032,1668,1659,283,340,11,9,6,9,2,0,17,15,1939,2014,1626,1647,280,339,10,9,5,8,1,0,17,11,48,18,42,12,3,1,1,0,1,1,1,0,0,4 -050,01,033,Alabama,Colbert County,7,10,4139,2000,2139,1658,1733,309,369,14,9,4,10,0,0,15,18,1980,2118,1639,1715,308,367,14,9,4,10,0,0,15,17,20,21,19,18,1,2,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,7,11,3841,1854,1987,1559,1606,259,348,7,9,12,8,1,0,16,16,1836,1973,1544,1597,258,346,7,8,12,8,1,0,14,14,18,14,15,9,1,2,0,1,0,0,0,0,2,2 -050,01,033,Alabama,Colbert County,7,12,3638,1763,1875,1449,1559,292,288,7,6,6,8,0,0,9,14,1749,1863,1435,1549,292,286,7,6,6,8,0,0,9,14,14,12,14,10,0,2,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,7,13,3140,1429,1711,1219,1436,193,252,5,6,3,6,0,0,9,11,1423,1706,1213,1431,193,252,5,6,3,6,0,0,9,11,6,5,6,5,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,7,14,2623,1215,1408,1071,1227,133,169,2,3,3,3,0,0,6,6,1211,1401,1068,1221,132,168,2,3,3,3,0,0,6,6,4,7,3,6,1,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,7,15,2138,983,1155,850,978,121,162,4,4,0,1,0,0,8,10,981,1150,848,974,121,162,4,4,0,1,0,0,8,9,2,5,2,4,0,0,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,7,16,1824,738,1086,654,940,76,136,3,1,1,1,0,0,4,8,738,1083,654,939,76,135,3,1,1,1,0,0,4,7,0,3,0,1,0,1,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,7,17,1286,465,821,413,705,49,109,1,2,0,1,0,0,2,4,463,819,411,703,49,109,1,2,0,1,0,0,2,4,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,7,18,983,301,682,270,580,29,97,1,0,0,1,0,0,1,4,300,681,269,579,29,97,1,0,0,1,0,0,1,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,7,99,54359,26171,28188,21647,22878,4009,4786,128,119,83,104,9,4,295,297,25704,27790,21245,22547,3974,4750,115,115,80,102,7,3,283,273,467,398,402,331,35,36,13,4,3,2,2,1,12,24 -050,01,033,Alabama,Colbert County,8,0,600,314,286,252,236,46,38,2,0,2,0,0,0,12,12,302,272,241,223,45,38,2,0,2,0,0,0,12,11,12,14,11,13,1,0,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,8,1,2498,1239,1259,947,956,222,246,5,7,9,7,1,1,55,42,1192,1187,911,898,217,238,4,6,6,6,0,0,54,39,47,72,36,58,5,8,1,1,3,1,1,1,1,3 -050,01,033,Alabama,Colbert County,8,2,3321,1767,1554,1404,1264,305,240,8,7,9,8,1,1,40,34,1708,1516,1359,1231,296,237,7,7,8,8,1,0,37,33,59,38,45,33,9,3,1,0,1,0,0,1,3,1 -050,01,033,Alabama,Colbert County,8,3,3608,1838,1770,1453,1353,331,372,12,9,7,6,1,0,34,30,1779,1719,1407,1308,321,366,12,9,6,6,1,0,32,30,59,51,46,45,10,6,0,0,1,0,0,0,2,0 -050,01,033,Alabama,Colbert County,8,4,3575,1831,1744,1426,1305,360,391,8,12,8,7,2,2,27,27,1801,1724,1399,1289,360,390,6,11,8,7,2,2,26,25,30,20,27,16,0,1,2,1,0,0,0,0,1,2 -050,01,033,Alabama,Colbert County,8,5,3061,1528,1533,1227,1219,269,280,7,9,4,7,2,0,19,18,1468,1500,1182,1190,263,278,4,8,3,7,1,0,15,17,60,33,45,29,6,2,3,1,1,0,1,0,4,1 -050,01,033,Alabama,Colbert County,8,6,3075,1454,1621,1197,1314,226,272,9,8,7,7,0,1,15,19,1391,1586,1139,1283,224,272,7,8,7,7,0,0,14,16,63,35,58,31,2,0,2,0,0,0,0,1,1,3 -050,01,033,Alabama,Colbert County,8,7,3085,1492,1593,1257,1261,214,291,8,12,4,13,0,1,9,15,1443,1547,1210,1222,214,286,6,12,4,13,0,1,9,13,49,46,47,39,0,5,2,0,0,0,0,0,0,2 -050,01,033,Alabama,Colbert County,8,8,3614,1799,1815,1510,1469,258,315,14,7,5,7,0,0,12,17,1765,1793,1485,1452,255,312,11,7,4,7,0,0,10,15,34,22,25,17,3,3,3,0,1,0,0,0,2,2 -050,01,033,Alabama,Colbert County,8,9,3978,2002,1976,1675,1630,296,313,10,10,6,10,2,0,13,13,1948,1960,1627,1618,293,313,9,10,5,8,1,0,13,11,54,16,48,12,3,0,1,0,1,2,1,0,0,2 -050,01,033,Alabama,Colbert County,8,10,4221,1995,2226,1668,1797,296,399,12,8,4,10,0,0,15,12,1973,2202,1648,1775,294,398,12,8,4,10,0,0,15,11,22,24,20,22,2,1,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,8,11,3879,1899,1980,1593,1614,273,330,6,10,12,7,1,1,14,18,1884,1968,1581,1606,272,329,6,9,12,7,1,1,12,16,15,12,12,8,1,1,0,1,0,0,0,0,2,2 -050,01,033,Alabama,Colbert County,8,12,3778,1834,1944,1513,1603,293,311,9,5,5,10,0,0,14,15,1816,1930,1496,1591,292,309,9,5,5,10,0,0,14,15,18,14,17,12,1,2,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,8,13,3127,1424,1703,1217,1425,186,248,6,7,3,6,0,0,12,17,1418,1700,1211,1422,186,248,6,7,3,6,0,0,12,17,6,3,6,3,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,8,14,2659,1234,1425,1076,1239,147,173,3,5,4,4,0,0,4,4,1229,1418,1072,1233,146,172,3,5,4,4,0,0,4,4,5,7,4,6,1,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,8,15,2182,996,1186,869,1010,111,162,5,3,1,1,0,0,10,10,993,1181,866,1006,111,162,5,3,1,1,0,0,10,9,3,5,3,4,0,0,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,8,16,1809,720,1089,640,931,73,149,2,1,1,1,0,0,4,7,718,1086,639,929,72,148,2,1,1,1,0,0,4,7,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,8,17,1371,520,851,463,734,55,110,1,1,0,1,0,0,1,5,518,848,461,731,55,110,1,1,0,1,0,0,1,5,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,8,18,972,288,684,258,582,27,98,2,0,0,1,0,0,1,3,286,683,256,581,27,98,2,0,0,1,0,0,1,3,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,8,99,54413,26174,28239,21645,22942,3988,4738,129,121,91,113,10,7,311,318,25632,27820,21190,22588,3943,4704,114,117,83,110,7,4,295,297,542,419,455,354,45,34,15,4,8,3,3,3,16,21 -050,01,033,Alabama,Colbert County,9,0,638,333,305,268,248,48,44,2,0,2,0,0,0,13,13,317,287,255,231,45,44,2,0,2,0,0,0,13,12,16,18,13,17,3,0,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,9,1,2449,1218,1231,948,945,210,225,6,8,9,7,1,1,44,45,1159,1163,901,890,205,218,4,7,6,6,0,0,43,42,59,68,47,55,5,7,2,1,3,1,1,1,1,3 -050,01,033,Alabama,Colbert County,9,2,3296,1717,1579,1363,1275,299,252,7,8,9,8,1,1,38,35,1663,1533,1321,1236,293,248,6,8,8,8,1,0,34,33,54,46,42,39,6,4,1,0,1,0,0,1,4,2 -050,01,033,Alabama,Colbert County,9,3,3658,1888,1770,1490,1344,335,370,11,9,6,8,1,1,45,38,1823,1722,1439,1302,324,364,11,9,5,8,1,1,43,38,65,48,51,42,11,6,0,0,1,0,0,0,2,0 -050,01,033,Alabama,Colbert County,9,4,3585,1825,1760,1414,1322,360,390,10,13,7,7,2,1,32,27,1794,1735,1386,1301,360,389,8,12,7,7,2,1,31,25,31,25,28,21,0,1,2,1,0,0,0,0,1,2 -050,01,033,Alabama,Colbert County,9,5,2975,1506,1469,1196,1164,277,271,8,8,4,7,2,0,19,19,1446,1443,1151,1141,271,270,4,7,3,7,1,0,16,18,60,26,45,23,6,1,4,1,1,0,1,0,3,1 -050,01,033,Alabama,Colbert County,9,6,3081,1468,1613,1223,1304,215,277,8,7,7,7,0,1,15,17,1399,1575,1160,1270,212,277,6,7,7,7,0,0,14,14,69,38,63,34,3,0,2,0,0,0,0,1,1,3 -050,01,033,Alabama,Colbert County,9,7,3064,1485,1579,1241,1241,222,293,8,13,4,13,0,0,10,19,1441,1536,1200,1205,221,288,6,13,4,13,0,0,10,17,44,43,41,36,1,5,2,0,0,0,0,0,0,2 -050,01,033,Alabama,Colbert County,9,8,3604,1765,1839,1488,1507,245,303,13,6,5,7,0,0,14,16,1722,1813,1455,1485,241,300,10,6,4,7,0,0,12,15,43,26,33,22,4,3,3,0,1,0,0,0,2,1 -050,01,033,Alabama,Colbert County,9,9,3837,1925,1912,1616,1549,278,332,11,9,6,10,2,0,12,12,1881,1890,1578,1531,275,332,10,9,5,8,1,0,12,10,44,22,38,18,3,0,1,0,1,2,1,0,0,2 -050,01,033,Alabama,Colbert County,9,10,4102,1948,2154,1603,1773,313,347,12,7,4,10,1,1,15,16,1921,2131,1578,1753,311,345,12,7,4,10,1,1,15,15,27,23,25,20,2,2,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,9,11,4026,1994,2032,1684,1632,270,367,8,10,13,7,1,0,18,16,1972,2017,1666,1619,269,366,8,9,13,7,1,0,15,16,22,15,18,13,1,1,0,1,0,0,0,0,3,0 -050,01,033,Alabama,Colbert County,9,12,3709,1772,1937,1456,1581,287,324,9,7,5,8,0,0,15,17,1756,1923,1441,1570,286,322,9,6,5,8,0,0,15,17,16,14,15,11,1,2,0,1,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,9,13,3242,1512,1730,1281,1452,214,250,5,8,3,6,0,0,9,14,1507,1727,1276,1449,214,250,5,8,3,6,0,0,9,14,5,3,5,3,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,9,14,2771,1262,1509,1096,1302,154,191,3,5,4,6,0,0,5,5,1257,1502,1092,1297,153,190,3,5,4,5,0,0,5,5,5,7,4,5,1,1,0,0,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,9,15,2228,1006,1222,877,1038,114,167,4,3,1,1,0,0,10,13,1003,1216,874,1034,114,166,4,3,1,1,0,0,10,12,3,6,3,4,0,1,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,9,16,1805,730,1075,650,919,70,147,4,1,1,1,0,0,5,7,728,1072,649,917,69,146,4,1,1,1,0,0,5,7,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,9,17,1374,521,853,459,734,60,113,1,0,0,2,0,0,1,4,518,850,456,731,60,113,1,0,0,2,0,0,1,4,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,9,18,1042,326,716,293,622,30,89,2,1,0,1,0,0,1,3,324,714,291,621,30,89,2,0,0,1,0,0,1,3,2,2,2,1,0,0,0,1,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,9,99,54486,26201,28285,21646,22952,4001,4752,132,123,90,116,11,6,321,336,25631,27849,21169,22583,3953,4717,115,117,82,112,8,3,304,317,570,436,477,369,48,35,17,6,8,4,3,3,17,19 -050,01,033,Alabama,Colbert County,10,0,628,341,287,271,222,51,52,2,0,2,0,0,0,15,13,319,276,252,212,48,52,2,0,2,0,0,0,15,12,22,11,19,10,3,0,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,10,1,2481,1251,1230,969,948,219,220,6,7,9,6,1,1,47,48,1183,1145,914,883,213,206,4,6,7,5,0,0,45,45,68,85,55,65,6,14,2,1,2,1,1,1,2,3 -050,01,033,Alabama,Colbert County,10,2,3228,1649,1579,1314,1260,272,264,6,5,10,9,1,1,46,40,1591,1537,1270,1226,265,260,5,5,9,8,1,0,41,38,58,42,44,34,7,4,1,0,1,1,0,1,5,2 -050,01,033,Alabama,Colbert County,10,3,3620,1859,1761,1466,1359,329,344,12,10,9,9,1,1,42,38,1801,1718,1424,1321,317,339,12,10,8,9,1,1,39,38,58,43,42,38,12,5,0,0,1,0,0,0,3,0 -050,01,033,Alabama,Colbert County,10,4,3608,1840,1768,1406,1341,385,379,12,15,6,4,1,2,30,27,1809,1741,1378,1317,385,379,10,14,6,4,1,2,29,25,31,27,28,24,0,0,2,1,0,0,0,0,1,2 -050,01,033,Alabama,Colbert County,10,5,2946,1488,1458,1191,1145,265,272,9,11,3,9,2,0,18,21,1432,1429,1148,1120,260,270,5,10,3,9,1,0,15,20,56,29,43,25,5,2,4,1,0,0,1,0,3,1 -050,01,033,Alabama,Colbert County,10,6,3106,1486,1620,1222,1302,232,281,7,8,9,9,0,1,16,19,1396,1575,1138,1261,229,281,5,8,9,9,0,0,15,16,90,45,84,41,3,0,2,0,0,0,0,1,1,3 -050,01,033,Alabama,Colbert County,10,7,2954,1415,1539,1182,1214,212,275,9,15,4,14,0,0,8,21,1382,1493,1152,1176,211,269,7,15,4,14,0,0,8,19,33,46,30,38,1,6,2,0,0,0,0,0,0,2 -050,01,033,Alabama,Colbert County,10,8,3592,1748,1844,1484,1501,231,311,13,6,5,7,0,0,15,19,1705,1800,1451,1462,227,308,10,6,4,7,0,0,13,17,43,44,33,39,4,3,3,0,1,0,0,0,2,2 -050,01,033,Alabama,Colbert County,10,9,3745,1874,1871,1555,1513,290,325,9,7,6,12,2,0,12,14,1833,1847,1519,1495,288,325,8,7,5,10,1,0,12,10,41,24,36,18,2,0,1,0,1,2,1,0,0,4 -050,01,033,Alabama,Colbert County,10,10,4033,1916,2117,1592,1737,291,345,13,8,5,10,0,1,15,16,1893,2094,1571,1717,289,343,13,8,5,10,0,1,15,15,23,23,21,20,2,2,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,10,11,4217,2057,2160,1719,1741,288,379,10,14,17,8,1,0,22,18,2030,2140,1697,1725,287,378,10,13,17,8,1,0,18,16,27,20,22,16,1,1,0,1,0,0,0,0,4,2 -050,01,033,Alabama,Colbert County,10,12,3753,1796,1957,1482,1581,283,345,10,7,5,8,0,0,16,16,1779,1943,1466,1570,282,343,10,6,5,8,0,0,16,16,17,14,16,11,1,2,0,1,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,10,13,3244,1545,1699,1289,1425,232,243,6,9,5,6,0,0,13,16,1537,1696,1281,1422,232,243,6,9,5,6,0,0,13,16,8,3,8,3,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,10,14,2820,1271,1549,1107,1340,153,193,3,6,5,5,0,0,3,5,1267,1544,1104,1336,152,192,3,6,5,5,0,0,3,5,4,5,3,4,1,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,10,15,2266,1004,1262,860,1071,127,175,5,3,1,1,0,0,11,12,1000,1257,856,1068,127,174,5,3,1,1,0,0,11,11,4,5,4,3,0,1,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,10,16,1780,732,1048,655,893,68,146,3,1,1,1,0,0,5,7,730,1046,654,891,67,146,3,1,1,1,0,0,5,7,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,10,17,1367,504,863,454,740,48,115,1,1,0,2,0,0,1,5,501,860,451,737,48,115,1,1,0,2,0,0,1,5,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,10,18,1085,359,726,325,617,32,102,1,1,0,1,0,0,1,5,357,724,323,616,32,102,1,0,0,1,0,0,1,5,2,2,2,1,0,0,0,1,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,10,99,54473,26135,28338,21543,22950,4008,4766,137,134,102,121,9,7,336,360,25545,27865,21049,22555,3959,4725,120,128,96,117,6,4,315,336,590,473,494,395,49,41,17,6,6,4,3,3,21,24 -050,01,033,Alabama,Colbert County,11,0,619,316,303,240,235,54,53,3,0,3,0,0,0,16,15,301,286,229,220,50,53,3,0,3,0,0,0,16,13,15,17,11,15,4,0,0,0,0,0,0,0,0,2 -050,01,033,Alabama,Colbert County,11,1,2476,1272,1204,976,919,230,223,6,9,6,5,1,1,53,47,1210,1141,929,867,223,218,4,8,3,4,0,0,51,44,62,63,47,52,7,5,2,1,3,1,1,1,2,3 -050,01,033,Alabama,Colbert County,11,2,3130,1597,1533,1260,1222,264,257,5,6,10,10,1,1,57,37,1533,1474,1212,1174,257,249,4,6,8,10,1,0,51,35,64,59,48,48,7,8,1,0,2,0,0,1,6,2 -050,01,033,Alabama,Colbert County,11,3,3580,1845,1735,1459,1335,321,333,12,8,7,7,1,1,45,51,1785,1696,1417,1301,307,328,12,8,6,7,1,1,42,51,60,39,42,34,14,5,0,0,1,0,0,0,3,0 -050,01,033,Alabama,Colbert County,11,4,3638,1825,1813,1416,1379,355,386,12,13,6,4,2,2,34,29,1785,1783,1380,1352,355,386,9,12,6,4,2,2,33,27,40,30,36,27,0,0,3,1,0,0,0,0,1,2 -050,01,033,Alabama,Colbert County,11,5,2933,1468,1465,1185,1149,251,273,8,11,3,9,2,0,19,23,1396,1428,1127,1116,246,271,4,10,3,9,1,0,15,22,72,37,58,33,5,2,4,1,0,0,1,0,4,1 -050,01,033,Alabama,Colbert County,11,6,3114,1523,1591,1253,1280,235,270,7,10,9,9,0,1,19,21,1454,1554,1190,1247,232,270,5,10,9,9,0,0,18,18,69,37,63,33,3,0,2,0,0,0,0,1,1,3 -050,01,033,Alabama,Colbert County,11,7,2972,1425,1547,1174,1226,228,269,9,15,4,15,0,1,10,21,1384,1499,1136,1187,227,262,7,15,4,15,0,1,10,19,41,48,38,39,1,7,2,0,0,0,0,0,0,2 -050,01,033,Alabama,Colbert County,11,8,3440,1663,1777,1400,1447,228,303,15,5,4,6,0,0,16,16,1614,1742,1362,1417,223,300,12,5,3,6,0,0,14,14,49,35,38,30,5,3,3,0,1,0,0,0,2,2 -050,01,033,Alabama,Colbert County,11,9,3633,1822,1811,1507,1464,285,312,10,7,7,15,2,0,11,13,1780,1781,1470,1440,283,312,9,7,6,13,1,0,11,9,42,30,37,24,2,0,1,0,1,2,1,0,0,4 -050,01,033,Alabama,Colbert County,11,10,4100,1956,2144,1624,1748,295,356,16,7,5,10,1,1,15,22,1937,2121,1607,1728,293,354,16,7,5,10,1,1,15,21,19,23,17,20,2,2,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,11,11,4259,2065,2194,1731,1763,283,384,9,14,17,8,1,1,24,24,2043,2179,1717,1751,282,383,8,13,17,8,1,1,18,23,22,15,14,12,1,1,1,1,0,0,0,0,6,1 -050,01,033,Alabama,Colbert County,11,12,3736,1786,1950,1466,1579,290,331,12,9,5,11,0,0,13,20,1769,1934,1450,1566,289,329,12,8,5,11,0,0,13,20,17,16,16,13,1,2,0,1,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,11,13,3378,1603,1775,1331,1471,242,268,6,9,5,8,0,0,19,19,1595,1772,1323,1468,242,268,6,9,5,8,0,0,19,19,8,3,8,3,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,11,14,2904,1312,1592,1133,1350,167,226,3,6,4,6,0,0,5,4,1308,1586,1131,1346,165,225,3,6,4,5,0,0,5,4,4,6,2,4,2,1,0,0,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,11,15,2306,1011,1295,873,1109,120,169,5,4,1,1,0,0,12,12,1007,1289,869,1105,120,168,5,4,1,1,0,0,12,11,4,6,4,4,0,1,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,11,16,1748,752,996,670,855,73,132,3,1,1,1,0,0,5,7,750,994,669,853,72,132,3,1,1,1,0,0,5,7,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,11,17,1320,490,830,436,715,52,108,1,1,0,2,0,0,1,4,488,827,434,712,52,108,1,1,0,2,0,0,1,4,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,11,18,1140,383,757,350,639,31,110,1,1,0,1,0,0,1,6,381,755,348,638,31,110,1,0,0,1,0,0,1,6,2,2,2,1,0,0,0,1,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,11,99,54426,26114,28312,21484,22885,4004,4763,143,136,97,128,11,9,375,391,25520,27841,21000,22488,3949,4726,124,130,89,124,8,6,350,367,594,471,484,397,55,37,19,6,8,4,3,3,25,24 -050,01,033,Alabama,Colbert County,12,0,593,308,285,234,221,51,49,3,0,3,0,0,0,17,15,291,270,221,208,47,49,3,0,3,0,0,0,17,13,17,15,13,13,4,0,0,0,0,0,0,0,0,2 -050,01,033,Alabama,Colbert County,12,1,2541,1317,1224,995,925,242,231,7,9,9,5,1,1,63,53,1250,1160,943,876,235,222,5,8,6,4,0,0,61,50,67,64,52,49,7,9,2,1,3,1,1,1,2,3 -050,01,033,Alabama,Colbert County,12,2,3103,1586,1517,1255,1191,253,259,5,8,13,12,1,1,59,46,1517,1455,1201,1138,246,254,4,8,11,11,1,0,54,44,69,62,54,53,7,5,1,0,2,1,0,1,5,2 -050,01,033,Alabama,Colbert County,12,3,3616,1864,1752,1441,1351,347,330,12,9,9,9,1,1,54,52,1802,1708,1397,1313,333,324,12,9,8,9,1,1,51,52,62,44,44,38,14,6,0,0,1,0,0,0,3,0 -050,01,033,Alabama,Colbert County,12,4,3598,1790,1808,1393,1367,340,387,10,13,8,6,2,2,37,33,1748,1775,1355,1337,340,387,7,12,8,6,2,2,36,31,42,33,38,30,0,0,3,1,0,0,0,0,1,2 -050,01,033,Alabama,Colbert County,12,5,3010,1511,1499,1208,1167,270,288,9,12,3,9,2,0,19,23,1443,1467,1154,1139,265,286,5,11,3,9,1,0,15,22,68,32,54,28,5,2,4,1,0,0,1,0,4,1 -050,01,033,Alabama,Colbert County,12,6,3046,1493,1553,1237,1241,223,272,7,9,9,9,0,1,17,21,1432,1512,1182,1204,220,272,5,9,9,9,0,0,16,18,61,41,55,37,3,0,2,0,0,0,0,1,1,3 -050,01,033,Alabama,Colbert County,12,7,3045,1449,1596,1182,1268,243,274,10,17,4,15,0,1,10,21,1395,1541,1131,1222,242,267,8,17,4,15,0,1,10,19,54,55,51,46,1,7,2,0,0,0,0,0,0,2 -050,01,033,Alabama,Colbert County,12,8,3335,1627,1708,1367,1392,226,287,14,5,4,6,0,0,16,18,1572,1674,1323,1363,221,284,11,5,3,6,0,0,14,16,55,34,44,29,5,3,3,0,1,0,0,0,2,2 -050,01,033,Alabama,Colbert County,12,9,3589,1783,1806,1483,1470,269,302,11,7,7,13,2,0,11,14,1747,1778,1452,1448,267,302,10,7,6,11,1,0,11,10,36,28,31,22,2,0,1,0,1,2,1,0,0,4 -050,01,033,Alabama,Colbert County,12,10,4051,1955,2096,1630,1712,290,350,14,6,5,10,1,1,15,17,1932,2074,1609,1693,288,348,14,6,5,10,1,1,15,16,23,22,21,19,2,2,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,12,11,4208,2032,2176,1700,1746,285,386,9,14,13,8,1,1,24,21,2013,2158,1688,1732,284,385,8,13,13,8,1,1,19,19,19,18,12,14,1,1,1,1,0,0,0,0,5,2 -050,01,033,Alabama,Colbert County,12,12,3733,1805,1928,1496,1567,281,323,12,9,5,11,0,0,11,18,1792,1915,1484,1557,280,321,12,8,5,11,0,0,11,18,13,13,12,10,1,2,0,1,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,12,13,3497,1657,1840,1371,1516,257,289,7,10,5,9,0,0,17,16,1649,1837,1363,1513,257,289,7,10,5,9,0,0,17,16,8,3,8,3,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,12,14,2939,1319,1620,1127,1370,179,231,3,6,5,7,0,0,5,6,1315,1614,1125,1366,177,230,3,6,5,6,0,0,5,6,4,6,2,4,2,1,0,0,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,12,15,2315,1011,1304,881,1124,113,162,5,5,1,1,0,0,11,12,1007,1298,877,1120,113,161,5,5,1,1,0,0,11,11,4,6,4,4,0,1,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,12,16,1770,767,1003,682,860,75,134,4,1,1,1,0,0,5,7,765,1001,681,858,74,134,4,1,1,1,0,0,5,7,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,12,17,1286,490,796,433,693,55,96,1,1,0,2,0,0,1,4,487,792,430,689,55,96,1,1,0,2,0,0,1,4,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,12,18,1153,395,758,348,634,43,117,3,1,0,1,0,0,1,5,393,756,346,633,43,117,3,0,0,1,0,0,1,5,2,2,2,1,0,0,0,1,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,12,99,54428,26159,28269,21463,22815,4042,4767,146,142,104,134,11,9,393,402,25550,27785,20962,22409,3987,4728,127,136,96,129,8,6,370,377,609,484,501,406,55,39,19,6,8,5,3,3,23,25 -050,01,033,Alabama,Colbert County,13,0,595,308,287,233,221,51,49,3,0,3,0,0,1,18,16,291,268,220,208,47,48,3,0,3,0,0,0,18,12,17,19,13,13,4,1,0,0,0,0,0,1,0,4 -050,01,033,Alabama,Colbert County,13,1,2521,1306,1215,988,919,240,230,7,7,7,7,2,1,62,51,1242,1152,936,871,236,223,5,5,6,6,0,0,59,47,64,63,52,48,4,7,2,2,1,1,2,1,3,4 -050,01,033,Alabama,Colbert County,13,2,3103,1590,1513,1254,1188,256,261,4,7,13,12,3,1,60,44,1519,1446,1198,1133,248,253,3,6,11,11,3,1,56,42,71,67,56,55,8,8,1,1,2,1,0,0,4,2 -050,01,033,Alabama,Colbert County,13,3,3613,1859,1754,1438,1346,346,329,12,8,7,12,3,3,53,56,1791,1705,1392,1310,334,323,10,7,7,10,1,1,47,54,68,49,46,36,12,6,2,1,0,2,2,2,6,2 -050,01,033,Alabama,Colbert County,13,4,3567,1777,1790,1381,1354,338,386,9,13,8,7,1,0,40,30,1733,1756,1345,1325,338,384,6,11,6,7,0,0,38,29,44,34,36,29,0,2,3,2,2,0,1,0,2,1 -050,01,033,Alabama,Colbert County,13,5,3013,1509,1504,1211,1171,271,287,6,10,4,10,0,3,17,23,1444,1466,1155,1141,267,285,4,9,4,8,0,3,14,20,65,38,56,30,4,2,2,1,0,2,0,0,3,3 -050,01,033,Alabama,Colbert County,13,6,3053,1496,1557,1240,1240,224,272,5,8,8,10,3,6,16,21,1437,1510,1186,1202,222,271,5,8,8,8,2,4,14,17,59,47,54,38,2,1,0,0,0,2,1,2,2,4 -050,01,033,Alabama,Colbert County,13,7,3066,1461,1605,1187,1281,245,272,8,16,6,16,2,3,13,17,1406,1547,1137,1233,244,266,7,16,5,16,0,1,13,15,55,58,50,48,1,6,1,0,1,0,2,2,0,2 -050,01,033,Alabama,Colbert County,13,8,3300,1608,1692,1355,1376,225,286,11,3,1,9,3,2,13,16,1549,1655,1310,1346,219,284,8,3,1,7,2,1,9,14,59,37,45,30,6,2,3,0,0,2,1,1,4,2 -050,01,033,Alabama,Colbert County,13,9,3588,1785,1803,1482,1468,270,301,10,7,8,14,1,1,14,12,1746,1774,1450,1444,268,300,9,6,7,13,0,1,12,10,39,29,32,24,2,1,1,1,1,1,1,0,2,2 -050,01,033,Alabama,Colbert County,13,10,4030,1947,2083,1622,1702,290,350,13,8,7,9,0,1,15,13,1921,2058,1600,1681,288,348,13,6,6,9,0,1,14,13,26,25,22,21,2,2,0,2,1,0,0,0,1,0 -050,01,033,Alabama,Colbert County,13,11,4223,2034,2189,1703,1751,286,390,7,15,13,10,1,0,24,23,2016,2170,1691,1736,286,388,6,13,13,10,1,0,19,23,18,19,12,15,0,2,1,2,0,0,0,0,5,0 -050,01,033,Alabama,Colbert County,13,12,3754,1819,1935,1504,1573,282,326,13,5,5,9,0,0,15,22,1805,1924,1491,1563,282,325,12,5,5,9,0,0,15,22,14,11,13,10,0,1,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,13,13,3526,1675,1851,1383,1527,264,294,8,8,5,9,0,0,15,13,1664,1845,1375,1523,261,292,8,8,5,9,0,0,15,13,11,6,8,4,3,2,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,13,14,2959,1327,1632,1134,1377,182,233,3,6,3,6,0,0,5,10,1322,1627,1132,1374,179,231,3,6,3,6,0,0,5,10,5,5,2,3,3,2,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,13,15,2315,1013,1302,884,1126,116,163,3,3,1,2,0,0,9,8,1007,1296,880,1122,114,162,3,3,1,2,0,0,9,7,6,6,4,4,2,1,0,0,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,13,16,1759,760,999,679,858,72,135,4,1,1,0,0,0,4,5,759,995,678,855,72,134,4,1,1,0,0,0,4,5,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,13,17,1286,492,794,431,692,56,96,1,2,1,1,0,0,3,3,490,790,429,689,56,95,1,2,1,1,0,0,3,3,2,4,2,3,0,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,13,18,1162,399,763,350,638,44,119,3,0,0,1,0,0,2,5,397,761,348,636,44,119,3,0,0,1,0,0,2,5,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,13,99,54433,26165,28268,21459,22808,4058,4779,130,127,101,144,19,22,398,388,25539,27745,20953,22392,4005,4731,113,115,93,133,9,13,366,361,626,523,506,416,53,48,17,12,8,11,10,9,32,27 -050,01,035,Alabama,Conecuh County,1,0,160,83,77,30,25,52,52,0,0,0,0,1,0,0,0,79,77,29,25,49,52,0,0,0,0,1,0,0,0,4,0,1,0,3,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,1,715,365,350,184,170,177,173,0,0,0,2,0,0,4,5,362,350,183,170,175,173,0,0,0,2,0,0,4,5,3,0,1,0,2,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,2,1074,559,515,232,231,320,278,2,2,1,0,1,1,3,3,555,511,232,231,316,275,2,1,1,0,1,1,3,3,4,4,0,0,4,3,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,3,1044,534,510,222,213,307,287,1,1,0,1,0,0,4,8,531,507,221,212,306,286,0,0,0,1,0,0,4,8,3,3,1,1,1,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,4,1022,535,487,251,228,277,253,0,3,1,0,0,0,6,3,532,483,249,227,276,250,0,3,1,0,0,0,6,3,3,4,2,1,1,3,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,5,798,365,433,187,203,176,225,0,1,0,0,0,0,2,4,364,431,186,202,176,224,0,1,0,0,0,0,2,4,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,6,808,396,412,238,202,155,206,2,1,0,2,0,1,1,0,389,409,234,201,153,204,1,1,0,2,0,1,1,0,7,3,4,1,2,2,1,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,7,841,383,458,234,208,142,242,4,1,1,3,1,0,1,4,378,453,231,207,140,239,4,0,1,3,1,0,1,4,5,5,3,1,2,3,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,8,978,454,524,254,267,194,249,0,2,3,2,0,0,3,4,448,519,249,264,193,247,0,2,3,2,0,0,3,4,6,5,5,3,1,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,9,1004,475,529,296,261,176,264,0,1,0,0,0,0,3,3,471,527,295,259,173,264,0,1,0,0,0,0,3,3,4,2,1,2,3,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,10,993,438,555,266,307,166,243,1,2,0,0,0,0,5,3,438,553,266,306,166,242,1,2,0,0,0,0,5,3,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,11,975,479,496,307,288,169,206,2,2,0,0,0,0,1,0,478,489,306,285,169,202,2,2,0,0,0,0,1,0,1,7,1,3,0,4,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,12,787,384,403,265,263,117,138,0,1,0,0,0,0,2,1,381,402,263,262,116,138,0,1,0,0,0,0,2,1,3,1,2,1,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,13,655,312,343,235,233,75,108,1,1,0,0,0,0,1,1,312,343,235,233,75,108,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,14,602,266,336,194,223,71,111,0,1,0,0,0,0,1,1,264,332,192,219,71,111,0,1,0,0,0,0,1,1,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,15,600,282,318,201,205,81,113,0,0,0,0,0,0,0,0,281,317,200,205,81,112,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,16,443,176,267,122,183,53,83,0,0,0,0,0,1,1,0,176,262,122,181,53,81,0,0,0,0,0,0,1,0,0,5,0,2,0,2,0,0,0,0,0,1,0,0 -050,01,035,Alabama,Conecuh County,1,17,285,93,192,64,137,29,54,0,0,0,0,0,0,0,1,90,189,63,134,27,54,0,0,0,0,0,0,0,1,3,3,1,3,2,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,18,293,81,212,45,127,34,85,0,0,0,0,1,0,1,0,80,212,45,127,34,85,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0 -050,01,035,Alabama,Conecuh County,1,99,14077,6660,7417,3827,3974,2771,3370,13,19,6,10,4,3,39,41,6609,7366,3801,3950,2749,3347,11,16,6,10,3,2,39,41,51,51,26,24,22,23,2,3,0,0,1,1,0,0 -050,01,035,Alabama,Conecuh County,2,0,160,83,77,30,25,52,52,0,0,0,0,1,0,0,0,79,77,29,25,49,52,0,0,0,0,1,0,0,0,4,0,1,0,3,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,1,705,360,345,181,167,175,171,0,0,0,2,0,0,4,5,357,345,180,167,173,171,0,0,0,2,0,0,4,5,3,0,1,0,2,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,2,1059,550,509,226,227,317,276,2,2,1,0,1,1,3,3,546,505,226,227,313,273,2,1,1,0,1,1,3,3,4,4,0,0,4,3,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,3,1047,536,511,221,213,310,288,1,1,0,1,0,0,4,8,533,508,220,212,309,287,0,0,0,1,0,0,4,8,3,3,1,1,1,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,4,1021,535,486,251,227,277,253,0,3,1,0,0,0,6,3,532,482,249,226,276,250,0,3,1,0,0,0,6,3,3,4,2,1,1,3,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,5,800,367,433,187,201,178,227,0,1,0,0,0,0,2,4,366,431,186,200,178,226,0,1,0,0,0,0,2,4,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,6,799,391,408,234,198,154,206,2,1,0,2,0,1,1,0,384,405,230,197,152,204,1,1,0,2,0,1,1,0,7,3,4,1,2,2,1,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,7,836,380,456,232,206,141,242,4,1,1,3,1,0,1,4,375,451,229,205,139,239,4,0,1,3,1,0,1,4,5,5,3,1,2,3,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,8,968,449,519,251,263,192,248,0,2,3,2,0,0,3,4,443,514,246,260,191,246,0,2,3,2,0,0,3,4,6,5,5,3,1,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,9,1002,473,529,294,261,176,264,0,1,0,0,0,0,3,3,469,527,293,259,173,264,0,1,0,0,0,0,3,3,4,2,1,2,3,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,10,995,439,556,265,307,168,244,1,2,0,0,0,0,5,3,439,554,265,306,168,243,1,2,0,0,0,0,5,3,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,11,987,486,501,309,289,174,210,2,2,0,0,0,0,1,0,485,494,308,286,174,206,2,2,0,0,0,0,1,0,1,7,1,3,0,4,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,12,785,384,401,264,261,118,138,0,1,0,0,0,0,2,1,381,400,262,260,117,138,0,1,0,0,0,0,2,1,3,1,2,1,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,13,655,313,342,236,232,75,108,1,1,0,0,0,0,1,1,313,342,236,232,75,108,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,14,598,262,336,191,222,70,112,0,1,0,0,0,0,1,1,260,332,189,218,70,112,0,1,0,0,0,0,1,1,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,15,596,281,315,199,203,82,112,0,0,0,0,0,0,0,0,280,314,198,203,82,111,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,16,444,176,268,122,183,53,84,0,0,0,0,0,1,1,0,176,263,122,181,53,82,0,0,0,0,0,0,1,0,0,5,0,2,0,2,0,0,0,0,0,1,0,0 -050,01,035,Alabama,Conecuh County,2,17,286,93,193,64,136,29,56,0,0,0,0,0,0,0,1,90,190,63,133,27,56,0,0,0,0,0,0,0,1,3,3,1,3,2,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,18,292,81,211,45,126,34,85,0,0,0,0,1,0,1,0,80,211,45,126,34,85,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0 -050,01,035,Alabama,Conecuh County,2,99,14035,6639,7396,3802,3947,2775,3376,13,19,6,10,4,3,39,41,6588,7345,3776,3923,2753,3353,11,16,6,10,3,2,39,41,51,51,26,24,22,23,2,3,0,0,1,1,0,0 -050,01,035,Alabama,Conecuh County,3,0,201,95,106,36,41,58,65,0,0,0,0,1,0,0,0,91,106,34,41,56,65,0,0,0,0,1,0,0,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,1,667,338,329,148,149,186,173,0,0,0,2,0,0,4,5,335,329,147,149,184,173,0,0,0,2,0,0,4,5,3,0,1,0,2,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,2,1015,525,490,221,212,297,272,2,2,1,0,1,1,3,3,521,486,221,212,293,269,2,1,1,0,1,1,3,3,4,4,0,0,4,3,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,3,1061,558,503,225,218,328,275,1,1,0,1,0,0,4,8,555,500,224,217,327,274,0,0,0,1,0,0,4,8,3,3,1,1,1,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,4,993,531,462,221,201,303,255,0,3,1,0,0,0,6,3,528,458,219,200,302,252,0,3,1,0,0,0,6,3,3,4,2,1,1,3,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,5,809,372,437,205,201,165,231,0,1,0,0,0,0,2,4,370,435,203,200,165,230,0,1,0,0,0,0,2,4,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,6,752,356,396,219,203,134,189,2,1,0,2,0,1,1,0,349,393,215,202,132,187,1,1,0,2,0,1,1,0,7,3,4,1,2,2,1,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,7,778,355,423,208,189,140,226,4,1,1,3,1,0,1,4,350,418,205,188,138,223,4,0,1,3,1,0,1,4,5,5,3,1,2,3,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,8,980,469,511,262,252,201,251,0,2,3,2,0,0,3,4,463,506,257,249,200,249,0,2,3,2,0,0,3,4,6,5,5,3,1,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,9,979,447,532,273,257,171,271,0,1,0,0,0,0,3,3,444,530,272,255,169,271,0,1,0,0,0,0,3,3,3,2,1,2,2,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,10,1022,450,572,284,304,160,263,1,2,0,0,0,0,5,3,450,570,284,303,160,262,1,2,0,0,0,0,5,3,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,11,965,490,475,301,273,186,200,2,2,0,0,0,0,1,0,489,469,300,270,186,197,2,2,0,0,0,0,1,0,1,6,1,3,0,3,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,12,813,395,418,266,274,127,142,0,1,0,0,0,0,2,1,392,417,264,273,126,142,0,1,0,0,0,0,2,1,3,1,2,1,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,13,695,340,355,251,234,87,119,1,1,0,0,0,0,1,1,340,355,251,234,87,119,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,14,589,250,339,181,225,68,112,0,1,0,0,0,0,1,1,248,336,179,222,68,112,0,1,0,0,0,0,1,1,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,15,577,270,307,196,199,74,108,0,0,0,0,0,0,0,0,269,306,195,199,74,107,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,16,453,191,262,124,166,66,95,0,0,0,0,0,1,1,0,191,257,124,164,66,93,0,0,0,0,0,0,1,0,0,5,0,2,0,2,0,0,0,0,0,1,0,0 -050,01,035,Alabama,Conecuh County,3,17,313,103,210,68,149,35,60,0,0,0,0,0,0,0,1,101,207,67,146,34,60,0,0,0,0,0,0,0,1,2,3,1,3,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,18,278,80,198,44,128,34,70,0,0,0,0,1,0,1,0,79,198,44,128,34,70,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0 -050,01,035,Alabama,Conecuh County,3,99,13940,6615,7325,3733,3875,2820,3377,13,19,6,10,4,3,39,41,6565,7276,3705,3852,2801,3355,11,16,6,10,3,2,39,41,50,49,28,23,19,22,2,3,0,0,1,1,0,0 -050,01,035,Alabama,Conecuh County,4,0,166,83,83,30,36,51,47,0,0,0,0,1,0,1,0,79,83,28,36,49,47,0,0,0,0,1,0,1,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,1,693,350,343,153,139,192,196,0,0,0,2,0,0,5,6,347,343,152,139,190,196,0,0,0,2,0,0,5,6,3,0,1,0,2,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,2,984,513,471,209,217,296,248,2,2,1,0,1,1,4,3,509,466,208,217,293,244,2,1,1,0,1,1,4,3,4,5,1,0,3,4,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,3,1068,562,506,237,207,320,289,1,1,0,1,0,0,4,8,557,503,235,206,318,288,0,0,0,1,0,0,4,8,5,3,2,1,2,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,4,978,508,470,218,192,283,272,0,3,1,0,0,0,6,3,505,466,216,191,282,269,0,3,1,0,0,0,6,3,3,4,2,1,1,3,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,5,822,404,418,229,197,173,216,0,1,0,0,0,0,2,4,401,416,226,196,173,215,0,1,0,0,0,0,2,4,3,2,3,1,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,6,727,329,398,192,202,134,192,2,1,0,2,0,1,1,0,322,395,188,201,132,190,1,1,0,2,0,1,1,0,7,3,4,1,2,2,1,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,7,762,362,400,220,171,135,222,4,1,1,3,1,0,1,3,357,395,217,170,133,219,4,0,1,3,1,0,1,3,5,5,3,1,2,3,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,8,933,434,499,239,251,189,239,0,2,3,2,0,0,3,5,428,493,234,248,188,237,0,2,3,2,0,0,3,4,6,6,5,3,1,2,0,0,0,0,0,0,0,1 -050,01,035,Alabama,Conecuh County,4,9,957,442,515,265,259,174,252,0,1,0,0,0,0,3,3,439,513,264,257,172,252,0,1,0,0,0,0,3,3,3,2,1,2,2,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,10,1006,438,568,275,305,157,258,1,2,0,0,0,0,5,3,438,566,275,304,157,257,1,2,0,0,0,0,5,3,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,11,946,479,467,292,261,184,204,2,2,0,0,0,0,1,0,478,460,291,258,184,200,2,2,0,0,0,0,1,0,1,7,1,3,0,4,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,12,867,420,447,288,287,130,158,0,1,0,0,0,0,2,1,417,446,286,286,129,158,0,1,0,0,0,0,2,1,3,1,2,1,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,13,696,345,351,242,228,101,121,1,1,0,0,0,0,1,1,345,351,242,228,101,121,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,14,594,268,326,197,212,70,112,0,1,0,0,0,0,1,1,266,322,195,208,70,112,0,1,0,0,0,0,1,1,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,15,539,259,280,192,186,67,94,0,0,0,0,0,0,0,0,258,279,191,186,67,93,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,16,461,181,280,113,168,66,111,1,0,0,0,0,1,1,0,181,275,113,166,66,109,1,0,0,0,0,0,1,0,0,5,0,2,0,2,0,0,0,0,0,1,0,0 -050,01,035,Alabama,Conecuh County,4,17,322,113,209,78,148,35,60,0,0,0,0,0,0,0,1,109,206,77,145,32,60,0,0,0,0,0,0,0,1,4,3,1,3,3,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,18,272,74,198,40,124,32,74,0,0,0,0,1,0,1,0,73,198,40,124,32,74,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0 -050,01,035,Alabama,Conecuh County,4,99,13793,6564,7229,3709,3790,2789,3365,14,19,6,10,4,3,42,42,6509,7176,3678,3766,2768,3341,12,16,6,10,3,2,42,41,55,53,31,24,21,24,2,3,0,0,1,1,0,1 -050,01,035,Alabama,Conecuh County,5,0,177,91,86,41,47,48,39,0,0,0,0,1,0,1,0,86,86,38,47,46,39,0,0,0,0,1,0,1,0,5,0,3,0,2,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,1,675,352,323,154,125,193,190,0,0,0,2,0,0,5,6,349,323,153,125,191,190,0,0,0,2,0,0,5,6,3,0,1,0,2,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,2,898,459,439,197,207,254,226,2,2,1,0,1,1,4,3,454,435,195,207,251,223,2,1,1,0,1,1,4,3,5,4,2,0,3,3,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,3,1065,580,485,238,189,336,287,1,1,0,1,0,0,5,7,575,482,236,188,334,286,0,0,0,1,0,0,5,7,5,3,2,1,2,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,4,954,481,473,200,186,273,279,1,4,1,0,0,0,6,4,478,468,198,184,272,276,1,4,1,0,0,0,6,4,3,5,2,2,1,3,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,5,789,418,371,235,178,181,188,0,1,0,0,0,0,2,4,413,369,230,177,181,187,0,1,0,0,0,0,2,4,5,2,5,1,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,6,716,325,391,184,195,138,191,2,1,0,2,0,1,1,1,316,387,178,194,136,189,1,1,0,2,0,1,1,0,9,4,6,1,2,2,1,0,0,0,0,0,0,1 -050,01,035,Alabama,Conecuh County,5,7,742,367,375,224,161,137,208,3,1,1,2,0,0,2,3,360,369,220,159,135,205,3,0,1,2,0,0,1,3,7,6,4,2,2,3,0,1,0,0,0,0,1,0 -050,01,035,Alabama,Conecuh County,5,8,886,395,491,219,239,171,244,0,1,2,2,0,0,3,5,390,486,215,237,170,242,0,1,2,2,0,0,3,4,5,5,4,2,1,2,0,0,0,0,0,0,0,1 -050,01,035,Alabama,Conecuh County,5,9,928,438,490,260,240,175,245,0,1,0,1,0,0,3,3,435,488,259,238,173,245,0,1,0,1,0,0,3,3,3,2,1,2,2,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,10,1025,481,544,301,284,175,255,1,2,0,0,0,0,4,3,480,541,300,283,175,253,1,2,0,0,0,0,4,3,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,11,933,450,483,276,271,170,209,3,3,0,0,0,0,1,0,449,477,275,268,170,206,3,3,0,0,0,0,1,0,1,6,1,3,0,3,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,12,909,440,469,290,294,149,173,0,1,0,0,0,0,1,1,437,468,288,293,148,173,0,1,0,0,0,0,1,1,3,1,2,1,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,13,722,349,373,246,241,101,128,1,2,0,0,0,0,1,2,349,373,246,241,101,128,1,2,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,14,606,288,318,214,202,72,114,0,1,0,0,0,0,2,1,286,316,212,200,72,114,0,1,0,0,0,0,2,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,15,526,251,275,183,184,68,91,0,0,0,0,0,0,0,0,250,274,182,184,68,90,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,16,450,181,269,117,165,62,103,1,0,0,0,0,1,1,0,181,265,117,163,62,102,1,0,0,0,0,0,1,0,0,4,0,2,0,1,0,0,0,0,0,1,0,0 -050,01,035,Alabama,Conecuh County,5,17,341,124,217,77,145,47,70,0,1,0,0,0,0,0,1,120,214,76,142,44,70,0,1,0,0,0,0,0,1,4,3,1,3,3,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,18,243,77,166,46,107,29,59,0,0,0,0,1,0,1,0,76,166,46,107,29,59,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0 -050,01,035,Alabama,Conecuh County,5,99,13585,6547,7038,3702,3660,2779,3299,15,22,5,10,3,3,43,44,6484,6987,3664,3637,2758,3277,13,19,5,10,2,2,42,42,63,51,38,23,21,22,2,3,0,0,1,1,1,2 -050,01,035,Alabama,Conecuh County,6,0,163,95,68,51,34,43,34,0,0,0,0,0,0,1,0,90,68,48,34,41,34,0,0,0,0,0,0,1,0,5,0,3,0,2,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,1,674,353,321,139,138,208,174,1,0,0,2,0,0,5,7,350,320,138,138,206,174,1,0,0,2,0,0,5,6,3,1,1,0,2,0,0,0,0,0,0,0,0,1 -050,01,035,Alabama,Conecuh County,6,2,825,404,421,179,175,218,241,2,2,1,0,0,0,4,3,400,417,178,175,215,238,2,1,1,0,0,0,4,3,4,4,1,0,3,3,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,3,1095,605,490,248,207,351,274,1,1,0,1,0,0,5,7,600,487,246,206,349,273,0,0,0,1,0,0,5,7,5,3,2,1,2,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,4,927,469,458,189,170,273,280,1,4,1,0,0,0,5,4,465,453,187,168,271,277,1,4,1,0,0,0,5,4,4,5,2,2,2,3,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,5,739,385,354,204,170,177,179,0,1,0,0,0,0,4,4,379,352,199,169,177,178,0,1,0,0,0,0,3,4,6,2,5,1,0,1,0,0,0,0,0,0,1,0 -050,01,035,Alabama,Conecuh County,6,6,713,323,390,188,195,130,190,2,1,0,2,0,0,3,2,311,385,182,194,127,188,1,1,0,2,0,0,1,0,12,5,6,1,3,2,1,0,0,0,0,0,2,2 -050,01,035,Alabama,Conecuh County,6,7,744,358,386,214,184,136,195,3,1,1,2,1,0,3,4,349,381,210,182,133,193,3,0,1,2,1,0,1,4,9,5,4,2,3,2,0,1,0,0,0,0,2,0 -050,01,035,Alabama,Conecuh County,6,8,843,387,456,209,210,173,239,0,1,2,2,0,0,3,4,382,451,205,208,172,237,0,1,2,2,0,0,3,3,5,5,4,2,1,2,0,0,0,0,0,0,0,1 -050,01,035,Alabama,Conecuh County,6,9,883,404,479,235,237,164,237,1,1,0,1,0,0,4,3,401,477,234,235,162,237,1,1,0,1,0,0,4,3,3,2,1,2,2,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,10,1079,519,560,315,282,199,271,1,3,0,0,0,0,4,4,518,557,314,281,199,269,1,3,0,0,0,0,4,4,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,11,916,421,495,257,277,160,215,3,3,0,0,0,0,1,0,420,490,256,274,160,213,3,3,0,0,0,0,1,0,1,5,1,3,0,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,12,944,471,473,308,293,160,177,1,1,0,0,0,0,2,2,468,472,306,292,159,177,1,1,0,0,0,0,2,2,3,1,2,1,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,13,758,355,403,236,258,117,141,1,2,0,0,0,0,1,2,355,403,236,258,117,141,1,2,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,14,628,313,315,234,214,77,99,0,1,0,0,0,0,2,1,311,313,232,212,77,99,0,1,0,0,0,0,2,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,15,477,223,254,159,156,63,98,0,0,0,0,0,0,1,0,222,253,158,156,63,97,0,0,0,0,0,0,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,16,463,189,274,132,177,54,96,2,0,0,0,0,1,1,0,189,271,132,175,54,96,2,0,0,0,0,0,1,0,0,3,0,2,0,0,0,0,0,0,0,1,0,0 -050,01,035,Alabama,Conecuh County,6,17,341,129,212,86,142,43,69,0,0,0,0,0,0,0,1,127,209,86,139,41,69,0,0,0,0,0,0,0,1,2,3,0,3,2,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,18,218,54,164,29,104,23,60,0,0,0,0,1,0,1,0,53,164,29,104,23,60,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0 -050,01,035,Alabama,Conecuh County,6,99,13430,6457,6973,3612,3623,2769,3269,19,22,5,10,2,1,50,48,6390,6923,3576,3600,2746,3250,17,19,5,10,1,0,45,44,67,50,36,23,23,19,2,3,0,0,1,1,5,4 -050,01,035,Alabama,Conecuh County,7,0,157,89,68,41,36,45,31,0,0,0,0,1,0,2,1,84,68,37,36,44,31,0,0,0,0,1,0,2,1,5,0,4,0,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,1,685,361,324,150,149,204,166,1,0,0,0,0,0,6,9,355,322,147,148,202,166,1,0,0,0,0,0,5,8,6,2,3,1,2,0,0,0,0,0,0,0,1,1 -050,01,035,Alabama,Conecuh County,7,2,803,390,413,167,160,218,249,1,0,0,0,1,0,3,4,385,406,165,158,216,245,1,0,0,0,0,0,3,3,5,7,2,2,2,4,0,0,0,0,1,0,0,1 -050,01,035,Alabama,Conecuh County,7,3,1044,553,491,226,205,321,280,1,0,0,0,0,0,5,6,546,487,222,202,319,280,1,0,0,0,0,0,4,5,7,4,4,3,2,0,0,0,0,0,0,0,1,1 -050,01,035,Alabama,Conecuh County,7,4,936,475,461,198,174,270,280,1,2,0,0,0,0,6,5,469,455,196,172,268,276,1,2,0,0,0,0,4,5,6,6,2,2,2,4,0,0,0,0,0,0,2,0 -050,01,035,Alabama,Conecuh County,7,5,748,406,342,196,163,207,169,0,2,1,2,0,0,2,6,395,337,187,162,206,167,0,2,1,2,0,0,1,4,11,5,9,1,1,2,0,0,0,0,0,0,1,2 -050,01,035,Alabama,Conecuh County,7,6,721,331,390,192,178,134,209,0,0,1,2,0,0,4,1,319,385,185,176,132,207,0,0,1,2,0,0,1,0,12,5,7,2,2,2,0,0,0,0,0,0,3,1 -050,01,035,Alabama,Conecuh County,7,7,729,349,380,208,188,135,185,2,1,0,1,0,0,4,5,340,374,204,185,133,184,2,0,0,1,0,0,1,4,9,6,4,3,2,1,0,1,0,0,0,0,3,1 -050,01,035,Alabama,Conecuh County,7,8,796,361,435,201,199,156,232,2,1,1,2,0,0,1,1,355,430,198,196,153,231,2,1,1,2,0,0,1,0,6,5,3,3,3,1,0,0,0,0,0,0,0,1 -050,01,035,Alabama,Conecuh County,7,9,878,412,466,235,233,170,226,2,2,0,2,0,0,5,3,409,464,233,232,169,225,2,2,0,2,0,0,5,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,10,1041,491,550,286,266,198,274,1,3,0,2,0,0,6,5,489,546,285,264,197,272,1,3,0,2,0,0,6,5,2,4,1,2,1,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,11,977,447,530,270,297,173,230,2,1,0,1,0,0,2,1,444,527,269,295,172,229,2,1,0,1,0,0,1,1,3,3,1,2,1,1,0,0,0,0,0,0,1,0 -050,01,035,Alabama,Conecuh County,7,12,974,494,480,302,277,189,196,1,2,0,0,0,0,2,5,492,480,301,277,188,196,1,2,0,0,0,0,2,5,2,0,1,0,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,13,764,368,396,243,251,122,141,3,3,0,0,0,0,0,1,368,394,243,249,122,141,3,3,0,0,0,0,0,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,14,645,322,323,232,225,88,97,0,1,0,0,0,0,2,0,322,321,232,223,88,97,0,1,0,0,0,0,2,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,15,495,215,280,148,171,64,107,0,0,0,0,0,0,3,2,213,277,147,170,63,105,0,0,0,0,0,0,3,2,2,3,1,1,1,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,16,459,213,246,153,159,57,87,2,0,0,0,0,0,1,0,213,245,153,158,57,87,2,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,17,343,129,214,79,126,50,87,0,0,0,0,0,0,0,1,128,214,79,126,49,87,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,18,226,61,165,37,105,22,60,0,0,0,0,1,0,1,0,60,165,37,105,22,60,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0 -050,01,035,Alabama,Conecuh County,7,99,13421,6467,6954,3564,3562,2823,3306,19,18,3,12,3,0,55,56,6386,6897,3520,3534,2800,3286,19,17,3,12,1,0,43,48,81,57,44,28,23,20,0,1,0,0,2,0,12,8 -050,01,035,Alabama,Conecuh County,8,0,191,92,99,42,44,47,53,0,1,0,0,1,0,2,1,87,99,38,44,46,53,0,1,0,0,1,0,2,1,5,0,4,0,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,1,686,388,298,166,145,216,146,3,0,0,0,0,0,3,7,383,294,163,144,214,144,3,0,0,0,0,0,3,6,5,4,3,1,2,2,0,0,0,0,0,0,0,1 -050,01,035,Alabama,Conecuh County,8,2,838,393,445,165,158,223,284,1,0,0,0,1,0,3,3,388,439,163,156,221,281,1,0,0,0,0,0,3,2,5,6,2,2,2,3,0,0,0,0,1,0,0,1 -050,01,035,Alabama,Conecuh County,8,3,1033,549,484,230,205,311,269,2,1,0,0,0,0,6,9,541,479,226,202,308,268,2,1,0,0,0,0,5,8,8,5,4,3,3,1,0,0,0,0,0,0,1,1 -050,01,035,Alabama,Conecuh County,8,4,975,508,467,224,173,276,283,1,1,0,0,0,0,7,10,502,462,222,171,274,280,1,1,0,0,0,0,5,10,6,5,2,2,2,3,0,0,0,0,0,0,2,0 -050,01,035,Alabama,Conecuh County,8,5,724,391,333,181,143,207,182,0,2,1,2,0,0,2,4,379,327,172,141,205,179,0,2,1,2,0,0,1,3,12,6,9,2,2,3,0,0,0,0,0,0,1,1 -050,01,035,Alabama,Conecuh County,8,6,760,338,422,191,198,141,220,0,0,2,3,0,0,4,1,327,418,184,196,139,219,0,0,2,3,0,0,2,0,11,4,7,2,2,1,0,0,0,0,0,0,2,1 -050,01,035,Alabama,Conecuh County,8,7,719,346,373,197,198,144,169,2,0,0,1,0,0,3,5,337,368,193,196,142,168,2,0,0,1,0,0,0,3,9,5,4,2,2,1,0,0,0,0,0,0,3,2 -050,01,035,Alabama,Conecuh County,8,8,783,354,429,195,187,154,238,3,1,1,2,0,0,1,1,349,425,192,184,152,237,3,1,1,2,0,0,1,1,5,4,3,3,2,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,9,883,427,456,248,225,174,226,2,1,0,2,0,0,3,2,423,454,246,224,172,225,2,1,0,2,0,0,3,2,4,2,2,1,2,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,10,1008,461,547,264,262,192,276,1,3,0,2,0,0,4,4,458,544,263,261,190,274,1,3,0,2,0,0,4,4,3,3,1,1,2,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,11,1006,468,538,294,281,171,254,2,1,0,1,0,0,1,1,464,535,293,279,168,253,2,1,0,1,0,0,1,1,4,3,1,2,3,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,12,970,502,468,292,276,206,185,1,2,0,0,0,0,3,5,501,467,291,275,206,185,1,2,0,0,0,0,3,5,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,13,803,384,419,251,265,128,150,3,2,0,0,0,0,2,2,384,416,251,263,128,149,3,2,0,0,0,0,2,2,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,14,702,351,351,245,233,103,117,1,1,0,0,0,0,2,0,351,349,245,231,103,117,1,1,0,0,0,0,2,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,15,508,207,301,144,192,60,105,0,0,0,0,0,0,3,4,205,298,143,190,59,104,0,0,0,0,0,0,3,4,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,16,447,214,233,157,159,54,72,2,0,0,1,0,0,1,1,214,233,157,159,54,72,2,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,17,353,135,218,88,118,47,98,0,1,0,0,0,0,0,1,134,218,88,118,46,98,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,18,214,68,146,49,96,18,50,0,0,0,0,0,0,1,0,68,146,49,96,18,50,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,99,13603,6576,7027,3623,3558,2872,3377,24,17,4,14,2,0,51,61,6495,6971,3579,3530,2845,3356,24,17,4,14,1,0,42,54,81,56,44,28,27,21,0,0,0,0,1,0,9,7 -050,01,035,Alabama,Conecuh County,9,0,197,103,94,46,35,55,57,0,1,0,0,0,0,2,1,97,94,41,35,54,57,0,1,0,0,0,0,2,1,6,0,5,0,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,1,669,368,301,149,148,213,145,3,0,0,0,0,0,3,8,363,297,146,147,211,143,3,0,0,0,0,0,3,7,5,4,3,1,2,2,0,0,0,0,0,0,0,1 -050,01,035,Alabama,Conecuh County,9,2,832,399,433,172,163,222,267,1,0,0,0,1,0,3,3,395,427,170,161,221,264,1,0,0,0,0,0,3,2,4,6,2,2,1,3,0,0,0,0,1,0,0,1 -050,01,035,Alabama,Conecuh County,9,3,965,505,460,199,184,297,266,2,1,0,0,0,0,7,9,496,455,195,181,293,265,2,1,0,0,0,0,6,8,9,5,4,3,4,1,0,0,0,0,0,0,1,1 -050,01,035,Alabama,Conecuh County,9,4,951,484,467,217,173,259,281,1,2,0,0,0,0,7,11,477,461,215,171,256,277,1,2,0,0,0,0,5,11,7,6,2,2,3,4,0,0,0,0,0,0,2,0 -050,01,035,Alabama,Conecuh County,9,5,696,371,325,168,132,201,184,0,2,1,2,0,0,1,5,359,318,158,130,199,181,0,2,1,2,0,0,1,3,12,7,10,2,2,3,0,0,0,0,0,0,0,2 -050,01,035,Alabama,Conecuh County,9,6,734,346,388,185,185,155,199,0,0,2,3,0,0,4,1,335,384,178,183,153,198,0,0,2,3,0,0,2,0,11,4,7,2,2,1,0,0,0,0,0,0,2,1 -050,01,035,Alabama,Conecuh County,9,7,690,322,368,182,192,135,171,1,0,0,1,0,0,4,4,313,362,178,190,133,169,1,0,0,1,0,0,1,2,9,6,4,2,2,2,0,0,0,0,0,0,3,2 -050,01,035,Alabama,Conecuh County,9,8,775,370,405,197,178,167,223,3,1,1,2,0,0,2,1,363,401,194,175,164,222,3,1,1,2,0,0,1,1,7,4,3,3,3,1,0,0,0,0,0,0,1,0 -050,01,035,Alabama,Conecuh County,9,9,821,392,429,237,217,150,207,2,1,0,2,0,0,3,2,388,427,235,216,148,206,2,1,0,2,0,0,3,2,4,2,2,1,2,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,10,999,468,531,265,258,198,264,1,3,0,2,0,0,4,4,465,527,264,257,196,261,1,3,0,2,0,0,4,4,3,4,1,1,2,3,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,11,998,463,535,300,280,159,252,2,1,0,1,0,0,2,1,458,532,299,278,156,251,2,1,0,1,0,0,1,1,5,3,1,2,3,1,0,0,0,0,0,0,1,0 -050,01,035,Alabama,Conecuh County,9,12,994,513,481,282,280,226,194,1,2,0,0,0,0,4,5,512,480,281,279,226,194,1,2,0,0,0,0,4,5,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,13,849,404,445,273,276,126,165,3,2,0,0,0,0,2,2,404,441,273,274,126,163,3,2,0,0,0,0,2,2,0,4,0,2,0,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,14,720,365,355,237,231,124,123,1,1,0,0,0,0,3,0,364,354,237,230,123,123,1,1,0,0,0,0,3,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,15,532,229,303,165,190,61,109,0,0,0,0,0,0,3,4,227,300,164,188,60,108,0,0,0,0,0,0,3,4,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,16,412,200,212,155,149,42,61,2,0,0,1,0,0,1,1,200,212,155,149,42,61,2,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,17,392,133,259,91,144,42,113,0,1,0,0,0,0,0,1,132,259,91,144,41,113,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,18,215,72,143,46,97,25,46,0,0,0,0,0,0,1,0,72,143,46,97,25,46,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,99,13441,6507,6934,3566,3512,2857,3327,23,18,4,14,1,0,56,63,6420,6874,3520,3485,2827,3302,23,18,4,14,0,0,46,55,87,60,46,27,30,25,0,0,0,0,1,0,10,8 -050,01,035,Alabama,Conecuh County,10,0,180,102,78,34,35,65,41,0,1,0,0,0,0,3,1,97,78,29,35,65,41,0,1,0,0,0,0,3,1,5,0,5,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,1,621,341,280,145,136,189,136,3,0,0,0,0,0,4,8,335,276,142,135,187,134,3,0,0,0,0,0,3,7,6,4,3,1,2,2,0,0,0,0,0,0,1,1 -050,01,035,Alabama,Conecuh County,10,2,801,398,403,167,153,226,247,1,0,0,0,1,0,3,3,393,397,164,151,225,244,1,0,0,0,0,0,3,2,5,6,3,2,1,3,0,0,0,0,1,0,0,1 -050,01,035,Alabama,Conecuh County,10,3,920,474,446,203,179,261,258,2,1,0,0,0,0,8,8,464,441,198,176,257,257,2,1,0,0,0,0,7,7,10,5,5,3,4,1,0,0,0,0,0,0,1,1 -050,01,035,Alabama,Conecuh County,10,4,985,524,461,233,167,281,280,2,2,0,0,0,0,8,12,515,455,231,164,277,277,2,2,0,0,0,0,5,12,9,6,2,3,4,3,0,0,0,0,0,0,3,0 -050,01,035,Alabama,Conecuh County,10,5,694,368,326,175,139,190,178,0,2,1,2,0,0,2,5,354,319,164,137,188,175,0,2,1,2,0,0,1,3,14,7,11,2,2,3,0,0,0,0,0,0,1,2 -050,01,035,Alabama,Conecuh County,10,6,728,355,373,176,175,172,193,0,0,2,3,0,0,5,2,341,368,167,173,170,192,0,0,2,3,0,0,2,0,14,5,9,2,2,1,0,0,0,0,0,0,3,2 -050,01,035,Alabama,Conecuh County,10,7,686,300,386,160,180,134,201,1,0,0,0,0,0,5,5,289,379,155,177,132,199,1,0,0,0,0,0,1,3,11,7,5,3,2,2,0,0,0,0,0,0,4,2 -050,01,035,Alabama,Conecuh County,10,8,745,373,372,205,173,163,195,3,0,0,2,0,0,2,2,367,368,203,171,160,194,3,0,0,2,0,0,1,1,6,4,2,2,3,1,0,0,0,0,0,0,1,1 -050,01,035,Alabama,Conecuh County,10,9,803,359,444,211,220,143,219,2,1,0,2,0,0,3,2,356,442,209,219,142,218,2,1,0,2,0,0,3,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,10,1003,501,502,269,245,228,248,1,3,0,2,0,0,3,4,497,498,267,244,226,245,1,3,0,2,0,0,3,4,4,4,2,1,2,3,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,11,1000,479,521,303,261,171,256,3,2,0,1,0,0,2,1,474,519,302,259,168,256,3,2,0,1,0,0,1,1,5,2,1,2,3,0,0,0,0,0,0,0,1,0 -050,01,035,Alabama,Conecuh County,10,12,981,492,489,270,285,217,197,1,2,0,0,0,0,4,5,491,488,269,284,217,197,1,2,0,0,0,0,4,5,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,13,899,422,477,272,281,145,190,3,3,0,0,0,0,2,3,422,473,272,279,145,188,3,3,0,0,0,0,2,3,0,4,0,2,0,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,14,765,386,379,243,238,139,140,1,1,0,0,0,0,3,0,385,379,243,238,138,140,1,1,0,0,0,0,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,15,540,239,301,170,180,66,117,0,0,0,0,0,0,3,4,237,298,169,178,65,116,0,0,0,0,0,0,3,4,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,16,402,190,212,141,148,45,62,3,0,0,1,0,0,1,1,190,212,141,148,45,62,3,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,17,400,141,259,95,154,46,103,0,1,0,0,0,0,0,1,140,259,95,154,45,103,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,18,235,84,151,54,102,29,49,0,0,0,0,0,0,1,0,84,151,54,102,29,49,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,99,13388,6528,6860,3526,3451,2910,3310,26,19,3,13,1,0,62,67,6431,6800,3474,3424,2881,3287,26,19,3,13,0,0,47,57,97,60,52,27,29,23,0,0,0,0,1,0,15,10 -050,01,035,Alabama,Conecuh County,11,0,157,78,79,29,36,46,41,0,1,0,0,0,0,3,1,72,79,23,36,46,41,0,1,0,0,0,0,3,1,6,0,6,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,1,612,350,262,139,125,203,128,3,0,0,0,0,0,5,9,344,258,136,124,201,126,3,0,0,0,0,0,4,8,6,4,3,1,2,2,0,0,0,0,0,0,1,1 -050,01,035,Alabama,Conecuh County,11,2,803,381,422,159,152,216,267,1,0,0,0,1,0,4,3,377,416,157,150,215,264,1,0,0,0,0,0,4,2,4,6,2,2,1,3,0,0,0,0,1,0,0,1 -050,01,035,Alabama,Conecuh County,11,3,889,456,433,198,175,248,249,2,1,0,0,0,0,8,8,448,428,195,172,244,248,2,1,0,0,0,0,7,7,8,5,3,3,4,1,0,0,0,0,0,0,1,1 -050,01,035,Alabama,Conecuh County,11,4,1001,535,466,238,189,287,263,2,2,0,0,0,0,8,12,526,460,236,186,283,260,2,2,0,0,0,0,5,12,9,6,2,3,4,3,0,0,0,0,0,0,3,0 -050,01,035,Alabama,Conecuh County,11,5,643,333,310,164,119,165,182,0,2,1,2,0,0,3,5,316,303,151,117,163,179,0,2,1,2,0,0,1,3,17,7,13,2,2,3,0,0,0,0,0,0,2,2 -050,01,035,Alabama,Conecuh County,11,6,672,336,336,175,141,154,189,0,0,2,3,0,0,5,3,322,330,166,139,152,188,0,0,2,3,0,0,2,0,14,6,9,2,2,1,0,0,0,0,0,0,3,3 -050,01,035,Alabama,Conecuh County,11,7,665,290,375,152,175,132,196,1,0,0,0,0,0,5,4,278,369,147,172,129,194,1,0,0,0,0,0,1,3,12,6,5,3,3,2,0,0,0,0,0,0,4,1 -050,01,035,Alabama,Conecuh County,11,8,761,360,401,209,188,146,209,3,0,0,2,0,0,2,2,353,397,207,186,142,208,3,0,0,2,0,0,1,1,7,4,2,2,4,1,0,0,0,0,0,0,1,1 -050,01,035,Alabama,Conecuh County,11,9,788,370,418,222,201,143,211,2,1,0,3,0,0,3,2,367,416,220,200,142,210,2,1,0,3,0,0,3,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,10,922,439,483,243,229,192,245,1,3,0,2,0,0,3,4,435,479,241,228,190,242,1,3,0,2,0,0,3,4,4,4,2,1,2,3,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,11,1061,530,531,318,263,207,264,3,2,0,1,0,0,2,1,525,529,317,261,204,264,3,2,0,1,0,0,1,1,5,2,1,2,3,0,0,0,0,0,0,0,1,0 -050,01,035,Alabama,Conecuh County,11,12,977,475,502,271,279,199,216,1,2,0,0,0,0,4,5,474,501,270,278,199,216,1,2,0,0,0,0,4,5,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,13,949,466,483,292,283,169,194,3,3,0,0,0,0,2,3,466,479,292,281,169,192,3,3,0,0,0,0,2,3,0,4,0,2,0,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,14,780,375,405,226,249,145,155,1,1,0,0,0,0,3,0,374,405,226,249,144,155,1,1,0,0,0,0,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,15,564,255,309,190,202,62,103,0,0,0,0,0,0,3,4,253,306,189,200,61,102,0,0,0,0,0,0,3,4,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,16,378,172,206,122,131,46,73,3,0,0,1,0,0,1,1,172,206,122,131,46,73,3,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,17,411,148,263,104,167,44,94,0,1,0,0,0,0,0,1,148,263,104,167,44,94,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,18,241,91,150,63,100,27,50,0,0,0,0,0,0,1,0,91,150,63,100,27,50,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,99,13274,6440,6834,3514,3404,2831,3329,26,19,3,14,1,0,65,68,6341,6774,3462,3377,2801,3306,26,19,3,14,0,0,49,58,99,60,52,27,30,23,0,0,0,0,1,0,16,10 -050,01,035,Alabama,Conecuh County,12,0,157,81,76,29,32,49,42,0,1,0,0,0,0,3,1,75,76,23,32,49,42,0,1,0,0,0,0,3,1,6,0,6,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,1,619,334,285,131,121,195,155,3,0,0,0,0,0,5,9,328,281,128,120,193,153,3,0,0,0,0,0,4,8,6,4,3,1,2,2,0,0,0,0,0,0,1,1 -050,01,035,Alabama,Conecuh County,12,2,790,386,404,156,153,224,248,1,0,0,0,1,0,4,3,381,398,153,151,223,245,1,0,0,0,0,0,4,2,5,6,3,2,1,3,0,0,0,0,1,0,0,1 -050,01,035,Alabama,Conecuh County,12,3,879,450,429,193,170,247,250,2,1,0,0,0,0,8,8,440,424,188,167,243,249,2,1,0,0,0,0,7,7,10,5,5,3,4,1,0,0,0,0,0,0,1,1 -050,01,035,Alabama,Conecuh County,12,4,976,515,461,226,183,279,264,2,2,0,0,0,0,8,12,506,455,224,180,275,261,2,2,0,0,0,0,5,12,9,6,2,3,4,3,0,0,0,0,0,0,3,0 -050,01,035,Alabama,Conecuh County,12,5,640,340,300,165,113,172,178,0,2,1,2,0,0,2,5,324,293,152,111,170,175,0,2,1,2,0,0,1,3,16,7,13,2,2,3,0,0,0,0,0,0,1,2 -050,01,035,Alabama,Conecuh County,12,6,655,328,327,165,146,156,176,0,0,2,3,0,0,5,2,314,322,156,144,154,175,0,0,2,3,0,0,2,0,14,5,9,2,2,1,0,0,0,0,0,0,3,2 -050,01,035,Alabama,Conecuh County,12,7,676,291,385,148,171,137,209,1,0,0,0,0,0,5,5,279,378,143,168,134,207,1,0,0,0,0,0,1,3,12,7,5,3,3,2,0,0,0,0,0,0,4,2 -050,01,035,Alabama,Conecuh County,12,8,731,343,388,196,183,142,201,3,0,0,2,0,0,2,2,336,384,194,181,138,200,3,0,0,2,0,0,1,1,7,4,2,2,4,1,0,0,0,0,0,0,1,1 -050,01,035,Alabama,Conecuh County,12,9,768,362,406,213,193,144,207,2,1,0,3,0,0,3,2,359,404,211,192,143,206,2,1,0,3,0,0,3,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,10,979,471,508,259,254,208,245,1,3,0,2,0,0,3,4,467,504,257,253,206,242,1,3,0,2,0,0,3,4,4,4,2,1,2,3,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,11,1031,510,521,303,251,202,266,3,2,0,1,0,0,2,1,505,519,302,249,199,266,3,2,0,1,0,0,1,1,5,2,1,2,3,0,0,0,0,0,0,0,1,0 -050,01,035,Alabama,Conecuh County,12,12,1000,484,516,276,287,203,222,1,2,0,0,0,0,4,5,483,515,275,286,203,222,1,2,0,0,0,0,4,5,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,13,965,483,482,301,273,177,203,3,3,0,0,0,0,2,3,483,478,301,271,177,201,3,3,0,0,0,0,2,3,0,4,0,2,0,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,14,779,372,407,231,247,137,159,1,1,0,0,0,0,3,0,371,407,231,247,136,159,1,1,0,0,0,0,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,15,564,256,308,190,211,63,93,0,0,0,0,0,0,3,4,254,305,189,209,62,92,0,0,0,0,0,0,3,4,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,16,392,167,225,119,144,45,79,2,0,0,1,0,0,1,1,167,225,119,144,45,79,2,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,17,376,142,234,102,152,40,80,0,1,0,0,0,0,0,1,142,234,102,152,40,80,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,18,251,97,154,67,98,29,56,0,0,0,0,0,0,1,0,97,154,67,98,29,56,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,99,13228,6412,6816,3470,3382,2849,3333,25,19,3,14,1,0,64,68,6311,6756,3415,3355,2819,3310,25,19,3,14,0,0,49,58,101,60,55,27,30,23,0,0,0,0,1,0,15,10 -050,01,035,Alabama,Conecuh County,13,0,156,80,76,27,32,49,42,0,1,1,0,0,0,3,1,75,75,22,32,49,41,0,1,1,0,0,0,3,1,5,1,5,0,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,1,620,334,286,128,120,195,154,4,1,1,1,2,0,4,10,327,283,124,119,194,153,4,0,1,1,0,0,4,10,7,3,4,1,1,1,0,1,0,0,2,0,0,0 -050,01,035,Alabama,Conecuh County,13,2,792,386,406,156,152,226,247,1,2,0,0,0,0,3,5,378,397,151,148,223,244,1,1,0,0,0,0,3,4,8,9,5,4,3,3,0,1,0,0,0,0,0,1 -050,01,035,Alabama,Conecuh County,13,3,877,448,429,194,167,246,250,3,3,0,1,0,1,5,7,436,423,186,166,243,247,2,2,0,1,0,0,5,7,12,6,8,1,3,3,1,1,0,0,0,1,0,0 -050,01,035,Alabama,Conecuh County,13,4,964,511,453,225,178,274,262,6,6,0,1,0,0,6,6,506,446,223,176,273,258,4,5,0,1,0,0,6,6,5,7,2,2,1,4,2,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,5,637,342,295,165,113,173,175,1,2,1,1,0,1,2,3,326,289,151,110,171,173,1,1,1,1,0,1,2,3,16,6,14,3,2,2,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,6,647,322,325,162,146,155,174,1,0,2,3,0,0,2,2,313,320,154,142,154,173,1,0,2,3,0,0,2,2,9,5,8,4,1,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,7,677,286,391,146,176,136,208,1,1,2,2,0,0,1,4,280,384,142,171,134,206,1,1,2,2,0,0,1,4,6,7,4,5,2,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,8,724,337,387,196,180,138,200,1,1,0,2,0,0,2,4,332,383,194,177,135,199,1,1,0,2,0,0,2,4,5,4,2,3,3,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,9,767,363,404,214,191,142,207,2,1,1,2,0,0,4,3,361,401,212,190,142,205,2,1,1,2,0,0,4,3,2,3,2,1,0,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,10,977,472,505,258,253,207,243,3,5,2,2,0,0,2,2,467,499,254,250,206,241,3,4,2,2,0,0,2,2,5,6,4,3,1,2,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,11,1038,511,527,305,253,200,268,2,3,1,1,0,0,3,2,508,524,303,251,199,267,2,3,1,1,0,0,3,2,3,3,2,2,1,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,12,1002,486,516,276,288,203,223,2,1,1,0,0,0,4,4,485,514,275,286,203,223,2,1,1,0,0,0,4,4,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,13,963,486,477,305,273,178,201,2,2,0,0,0,0,1,1,486,475,305,271,178,201,2,2,0,0,0,0,1,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,14,784,373,411,232,249,137,159,2,2,0,1,0,0,2,0,372,411,231,249,137,159,2,2,0,1,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,15,564,256,308,190,212,64,93,0,1,0,0,0,0,2,2,254,306,188,210,64,93,0,1,0,0,0,0,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,16,385,162,223,117,145,42,77,1,0,0,0,0,0,2,1,161,221,116,143,42,77,1,0,0,0,0,0,2,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,17,374,138,236,99,154,39,79,0,1,0,1,0,0,0,1,138,234,99,152,39,79,0,1,0,1,0,0,0,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,18,254,98,156,67,99,30,57,0,0,0,0,0,0,1,0,98,156,67,99,30,57,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,99,13202,6391,6811,3462,3381,2834,3319,32,33,12,18,2,2,49,58,6303,6741,3397,3342,2816,3296,29,27,12,18,0,1,49,57,88,70,65,39,18,23,3,6,0,0,2,1,0,1 -050,01,037,Alabama,Coosa County,1,0,144,68,76,45,48,23,27,0,1,0,0,0,0,0,0,67,72,44,45,23,26,0,1,0,0,0,0,0,0,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,1,608,306,302,200,184,106,117,0,0,0,1,0,0,0,0,298,297,194,180,104,116,0,0,0,1,0,0,0,0,8,5,6,4,2,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,2,801,441,360,266,201,174,154,0,4,0,0,0,0,1,1,440,359,266,201,173,153,0,4,0,0,0,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,3,846,464,382,265,222,195,158,1,0,0,0,0,0,3,2,462,380,264,220,194,158,1,0,0,0,0,0,3,2,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,4,809,399,410,214,224,172,181,0,2,0,0,0,0,13,3,390,406,205,222,172,179,0,2,0,0,0,0,13,3,9,4,9,2,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,5,656,348,308,231,216,112,90,0,0,0,0,0,0,5,2,324,305,208,213,112,90,0,0,0,0,0,0,4,2,24,3,23,3,0,0,0,0,0,0,0,0,1,0 -050,01,037,Alabama,Coosa County,1,6,724,350,374,232,233,116,140,0,0,0,1,0,0,2,0,329,373,212,232,115,140,0,0,0,1,0,0,2,0,21,1,20,1,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,7,809,423,386,293,234,128,146,2,4,0,0,0,0,0,2,406,384,277,233,127,145,2,4,0,0,0,0,0,2,17,2,16,1,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,8,901,475,426,320,241,150,178,5,2,0,0,0,0,0,5,459,422,304,238,150,177,5,2,0,0,0,0,0,5,16,4,16,3,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,9,895,441,454,301,287,140,159,0,3,0,1,0,0,0,4,437,454,297,287,140,159,0,3,0,1,0,0,0,4,4,0,4,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,10,857,447,410,310,259,133,147,1,1,0,0,0,0,3,3,446,407,309,257,133,146,1,1,0,0,0,0,3,3,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,11,788,367,421,239,306,121,112,3,0,0,0,0,0,4,3,362,418,236,304,119,111,3,0,0,0,0,0,4,3,5,3,3,2,2,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,12,666,328,338,242,241,80,95,3,1,0,0,0,0,3,1,326,337,241,241,80,94,3,1,0,0,0,0,2,1,2,1,1,0,0,1,0,0,0,0,0,0,1,0 -050,01,037,Alabama,Coosa County,1,13,586,274,312,200,227,72,74,2,2,0,3,0,1,0,5,273,307,200,226,71,72,2,2,0,3,0,0,0,4,1,5,0,1,1,2,0,0,0,0,0,1,0,1 -050,01,037,Alabama,Coosa County,1,14,533,250,283,182,196,64,84,1,1,0,0,0,0,3,2,248,283,181,196,63,84,1,1,0,0,0,0,3,2,2,0,1,0,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,15,471,210,261,159,188,51,72,0,0,0,0,0,0,0,1,210,260,159,188,51,72,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,1,16,352,175,177,146,141,29,36,0,0,0,0,0,0,0,0,175,177,146,141,29,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,17,204,69,135,63,93,6,41,0,0,0,0,0,0,0,1,69,135,63,93,6,41,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,18,192,64,128,39,87,24,41,0,0,0,0,0,0,1,0,64,128,39,87,24,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,99,11842,5899,5943,3947,3828,1896,2052,18,21,0,6,0,1,38,35,5785,5904,3845,3804,1886,2040,18,21,0,6,0,0,36,33,114,39,102,24,10,12,0,0,0,0,0,1,2,2 -050,01,037,Alabama,Coosa County,2,0,144,68,76,45,48,23,27,0,1,0,0,0,0,0,0,67,72,44,45,23,26,0,1,0,0,0,0,0,0,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,1,605,305,300,198,181,107,118,0,0,0,1,0,0,0,0,297,295,192,177,105,117,0,0,0,1,0,0,0,0,8,5,6,4,2,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,2,794,437,357,262,199,174,153,0,4,0,0,0,0,1,1,436,356,262,199,173,152,0,4,0,0,0,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,3,844,463,381,264,221,195,158,1,0,0,0,0,0,3,2,461,379,263,219,194,158,1,0,0,0,0,0,3,2,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,4,813,403,410,216,224,174,181,0,2,0,0,0,0,13,3,394,406,207,222,174,179,0,2,0,0,0,0,13,3,9,4,9,2,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,5,654,347,307,234,215,108,90,0,0,0,0,0,0,5,2,323,304,211,212,108,90,0,0,0,0,0,0,4,2,24,3,23,3,0,0,0,0,0,0,0,0,1,0 -050,01,037,Alabama,Coosa County,2,6,720,350,370,231,230,117,139,0,0,0,1,0,0,2,0,329,369,211,229,116,139,0,0,0,1,0,0,2,0,21,1,20,1,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,7,808,424,384,291,233,131,145,2,4,0,0,0,0,0,2,407,382,275,232,130,144,2,4,0,0,0,0,0,2,17,2,16,1,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,8,898,475,423,320,239,150,177,5,2,0,0,0,0,0,5,459,419,304,236,150,176,5,2,0,0,0,0,0,5,16,4,16,3,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,9,898,444,454,302,286,142,160,0,3,0,1,0,0,0,4,440,454,298,286,142,160,0,3,0,1,0,0,0,4,4,0,4,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,10,861,450,411,310,259,136,148,1,1,0,0,0,0,3,3,449,408,309,257,136,147,1,1,0,0,0,0,3,3,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,11,793,370,423,239,308,124,112,3,0,0,0,0,0,4,3,365,420,236,306,122,111,3,0,0,0,0,0,4,3,5,3,3,2,2,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,12,670,329,341,243,244,80,95,3,1,0,0,0,0,3,1,327,340,242,244,80,94,3,1,0,0,0,0,2,1,2,1,1,0,0,1,0,0,0,0,0,0,1,0 -050,01,037,Alabama,Coosa County,2,13,592,279,313,205,228,72,74,2,2,0,3,0,1,0,5,278,308,205,227,71,72,2,2,0,3,0,0,0,4,1,5,0,1,1,2,0,0,0,0,0,1,0,1 -050,01,037,Alabama,Coosa County,2,14,530,250,280,182,194,64,83,1,1,0,0,0,0,3,2,248,280,181,194,63,83,1,1,0,0,0,0,3,2,2,0,1,0,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,15,473,211,262,159,189,52,72,0,0,0,0,0,0,0,1,211,261,159,189,52,72,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,2,16,351,175,176,145,139,30,37,0,0,0,0,0,0,0,0,175,176,145,139,30,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,17,202,70,132,63,89,7,42,0,0,0,0,0,0,0,1,70,132,63,89,7,42,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,18,194,65,129,39,84,25,45,0,0,0,0,0,0,1,0,65,129,39,84,25,45,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,99,11844,5915,5929,3948,3810,1911,2056,18,21,0,6,0,1,38,35,5801,5890,3846,3786,1901,2044,18,21,0,6,0,0,36,33,114,39,102,24,10,12,0,0,0,0,0,1,2,2 -050,01,037,Alabama,Coosa County,3,0,112,63,49,39,24,24,24,0,1,0,0,0,0,0,0,62,45,38,21,24,23,0,1,0,0,0,0,0,0,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,1,597,308,289,196,174,112,113,0,0,0,1,0,1,0,0,299,283,189,170,110,112,0,0,0,1,0,0,0,0,9,6,7,4,2,1,0,0,0,0,0,1,0,0 -050,01,037,Alabama,Coosa County,3,2,764,409,355,248,203,160,147,0,4,0,0,0,0,1,1,407,354,247,203,159,146,0,4,0,0,0,0,1,1,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,3,844,480,364,276,202,200,160,1,0,0,0,0,0,3,2,478,362,275,200,199,160,1,0,0,0,0,0,3,2,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,4,783,395,388,222,223,160,160,0,2,0,0,0,0,13,3,386,384,213,221,160,158,0,2,0,0,0,0,13,3,9,4,9,2,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,5,690,366,324,234,201,127,121,0,0,0,0,0,0,5,2,345,321,214,198,127,121,0,0,0,0,0,0,4,2,21,3,20,3,0,0,0,0,0,0,0,0,1,0 -050,01,037,Alabama,Coosa County,3,6,661,331,330,219,214,110,115,0,0,0,1,0,0,2,0,310,329,199,213,109,115,0,0,0,1,0,0,2,0,21,1,20,1,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,7,796,398,398,273,241,123,151,2,4,0,0,0,0,0,2,382,396,258,240,122,150,2,4,0,0,0,0,0,2,16,2,15,1,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,8,932,492,440,340,234,147,199,5,2,0,0,0,0,0,5,473,436,321,231,147,198,5,2,0,0,0,0,0,5,19,4,19,3,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,9,894,436,458,290,296,146,154,0,3,0,1,0,0,0,4,431,458,285,296,146,154,0,3,0,1,0,0,0,4,5,0,5,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,10,884,452,432,307,269,141,159,1,1,0,0,0,0,3,3,451,429,306,267,141,158,1,1,0,0,0,0,3,3,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,11,831,395,436,269,311,119,122,3,0,0,0,0,0,4,3,391,433,266,309,118,121,3,0,0,0,0,0,4,3,4,3,3,2,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,12,690,343,347,247,258,90,87,3,1,0,0,0,0,3,1,341,346,246,258,90,86,3,1,0,0,0,0,2,1,2,1,1,0,0,1,0,0,0,0,0,0,1,0 -050,01,037,Alabama,Coosa County,3,13,587,280,307,203,224,75,73,2,2,0,2,0,1,0,5,279,301,203,223,74,70,2,2,0,2,0,0,0,4,1,6,0,1,1,3,0,0,0,0,0,1,0,1 -050,01,037,Alabama,Coosa County,3,14,557,273,284,206,194,64,87,1,1,0,0,0,0,2,2,271,284,205,194,63,87,1,1,0,0,0,0,2,2,2,0,1,0,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,15,465,195,270,143,199,52,70,0,0,0,0,0,0,0,1,195,269,143,199,52,70,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,3,16,335,156,179,129,139,27,40,0,0,0,0,0,0,0,0,156,179,129,139,27,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,17,222,98,124,86,91,12,32,0,0,0,0,0,0,0,1,98,124,86,91,12,32,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,18,204,73,131,44,86,28,45,0,0,0,0,0,0,1,0,73,131,44,86,28,45,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,99,11848,5943,5905,3971,3783,1917,2059,18,21,0,5,0,2,37,35,5828,5864,3867,3759,1908,2046,18,21,0,5,0,0,35,33,115,41,104,24,9,13,0,0,0,0,0,2,2,2 -050,01,037,Alabama,Coosa County,4,0,122,66,56,50,30,16,25,0,1,0,0,0,0,0,0,65,52,49,27,16,24,0,1,0,0,0,0,0,0,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,1,531,285,246,180,147,105,97,0,0,0,1,0,1,0,0,276,240,173,143,103,96,0,0,0,1,0,0,0,0,9,6,7,4,2,1,0,0,0,0,0,1,0,0 -050,01,037,Alabama,Coosa County,4,2,766,408,358,245,206,162,149,0,2,0,0,0,0,1,1,406,355,244,204,161,148,0,2,0,0,0,0,1,1,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,3,853,480,373,281,207,195,164,1,0,0,0,0,0,3,2,478,371,280,205,194,164,1,0,0,0,0,0,3,2,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,4,779,403,376,221,209,170,162,0,2,0,0,0,0,12,3,395,372,213,207,170,160,0,2,0,0,0,0,12,3,8,4,8,2,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,5,672,355,317,229,195,121,119,0,0,0,0,0,1,5,2,335,313,210,192,121,119,0,0,0,0,0,0,4,2,20,4,19,3,0,0,0,0,0,0,0,1,1,0 -050,01,037,Alabama,Coosa County,4,6,601,293,308,187,204,105,103,0,0,0,1,0,0,1,0,273,307,168,203,104,103,0,0,0,1,0,0,1,0,20,1,19,1,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,7,765,375,390,261,237,112,147,2,4,0,0,0,0,0,2,356,388,243,236,111,146,2,4,0,0,0,0,0,2,19,2,18,1,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,8,891,473,418,323,246,145,165,5,2,0,1,0,0,0,4,456,413,306,243,145,163,5,2,0,1,0,0,0,4,17,5,17,3,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,9,900,457,443,310,279,146,155,1,3,0,1,0,0,0,5,450,442,303,279,146,155,1,3,0,1,0,0,0,4,7,1,7,0,0,0,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,4,10,909,458,451,305,279,148,168,1,1,0,0,1,0,3,3,456,448,304,277,148,167,1,1,0,0,0,0,3,3,2,3,1,2,0,1,0,0,0,0,1,0,0,0 -050,01,037,Alabama,Coosa County,4,11,836,403,433,271,295,125,135,3,0,0,0,0,0,4,3,399,430,268,293,124,134,3,0,0,0,0,0,4,3,4,3,3,2,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,12,727,359,368,248,285,105,81,3,1,0,0,0,0,3,1,358,367,247,285,105,80,3,1,0,0,0,0,3,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,13,605,296,309,224,219,70,79,2,2,0,2,0,1,0,6,295,303,224,218,69,77,2,2,0,2,0,0,0,4,1,6,0,1,1,2,0,0,0,0,0,1,0,2 -050,01,037,Alabama,Coosa County,4,14,559,270,289,204,202,63,84,1,1,0,0,0,0,2,2,269,289,203,202,63,84,1,1,0,0,0,0,2,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,15,454,196,258,136,186,60,71,0,0,0,0,0,0,0,1,196,257,136,186,60,71,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,4,16,328,150,178,120,146,30,32,0,0,0,0,0,0,0,0,150,178,120,146,30,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,17,250,118,132,99,95,19,36,0,0,0,0,0,0,0,1,118,132,99,95,19,36,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,18,192,60,132,36,86,23,46,0,0,0,0,0,0,1,0,60,132,36,86,23,46,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,99,11740,5905,5835,3930,3753,1920,2018,19,19,0,6,1,3,35,36,5791,5789,3826,3727,1912,2005,19,19,0,6,0,0,34,32,114,46,104,26,8,13,0,0,0,0,1,3,1,4 -050,01,037,Alabama,Coosa County,5,0,118,60,58,40,37,19,20,0,1,0,0,0,0,1,0,59,55,39,35,19,19,0,1,0,0,0,0,1,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,1,536,288,248,188,148,99,95,0,0,0,1,0,1,1,3,278,240,181,144,97,93,0,0,0,1,0,0,0,2,10,8,7,4,2,2,0,0,0,0,0,1,1,1 -050,01,037,Alabama,Coosa County,5,2,762,403,359,251,213,151,142,0,2,0,0,0,0,1,2,400,356,249,211,150,141,0,2,0,0,0,0,1,2,3,3,2,2,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,3,830,466,364,259,211,203,152,1,0,0,0,0,0,3,1,464,362,258,209,202,152,1,0,0,0,0,0,3,1,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,4,784,403,381,226,206,166,171,0,1,0,0,0,0,11,3,396,377,219,204,166,169,0,1,0,0,0,0,11,3,7,4,7,2,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,5,646,327,319,215,185,106,130,0,0,0,0,0,1,6,3,309,314,198,182,106,130,0,0,0,0,0,0,5,2,18,5,17,3,0,0,0,0,0,0,0,1,1,1 -050,01,037,Alabama,Coosa County,5,6,585,300,285,197,198,101,83,1,0,0,1,0,0,1,3,282,281,181,195,100,83,0,0,0,1,0,0,1,2,18,4,16,3,1,0,1,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,5,7,759,369,390,253,250,114,133,1,4,0,0,0,0,1,3,351,386,237,249,113,131,1,4,0,0,0,0,0,2,18,4,16,1,1,2,0,0,0,0,0,0,1,1 -050,01,037,Alabama,Coosa County,5,8,846,442,404,311,239,128,158,3,2,0,1,0,0,0,4,424,399,293,236,128,156,3,2,0,1,0,0,0,4,18,5,18,3,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,9,905,466,439,314,275,150,154,1,3,0,1,0,0,1,6,460,438,309,275,150,154,1,3,0,1,0,0,0,5,6,1,5,0,0,0,0,0,0,0,0,0,1,1 -050,01,037,Alabama,Coosa County,5,10,918,462,456,305,278,152,174,1,1,0,0,1,0,3,3,460,453,304,276,152,173,1,1,0,0,0,0,3,3,2,3,1,2,0,1,0,0,0,0,1,0,0,0 -050,01,037,Alabama,Coosa County,5,11,832,428,404,288,272,133,129,3,0,0,0,0,0,4,3,424,401,285,270,132,128,3,0,0,0,0,0,4,3,4,3,3,2,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,12,781,351,430,242,332,103,96,3,1,0,0,0,0,3,1,350,428,241,331,103,95,3,1,0,0,0,0,3,1,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,13,630,320,310,237,219,81,81,2,2,0,2,0,1,0,5,318,306,236,218,80,79,2,2,0,2,0,0,0,5,2,4,1,1,1,2,0,0,0,0,0,1,0,0 -050,01,037,Alabama,Coosa County,5,14,529,260,269,197,196,60,70,1,1,0,0,0,0,2,2,258,268,196,195,59,70,1,1,0,0,0,0,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,15,480,220,260,160,189,60,70,0,0,0,0,0,0,0,1,220,259,160,189,60,70,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,5,16,358,160,198,120,154,40,44,0,0,0,0,0,0,0,0,160,198,120,154,40,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,17,249,116,133,97,94,18,38,0,0,0,0,0,0,1,1,116,133,97,94,18,38,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,18,184,50,134,36,87,13,47,0,0,0,0,0,0,1,0,50,134,36,87,13,47,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,99,11732,5891,5841,3936,3783,1897,1987,17,18,0,6,1,3,40,44,5779,5788,3839,3754,1888,1972,16,18,0,6,0,0,36,38,112,53,97,29,9,15,1,0,0,0,1,3,4,6 -050,01,037,Alabama,Coosa County,6,0,132,72,60,56,41,15,18,0,1,0,0,0,0,1,0,71,57,55,39,15,17,0,1,0,0,0,0,1,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,6,1,499,261,238,164,130,97,101,0,0,0,1,0,2,0,4,251,229,156,126,95,99,0,0,0,1,0,0,0,3,10,9,8,4,2,2,0,0,0,0,0,2,0,1 -050,01,037,Alabama,Coosa County,6,2,691,364,327,236,191,127,131,0,2,0,0,0,0,1,3,360,322,233,189,126,129,0,2,0,0,0,0,1,2,4,5,3,2,1,2,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,6,3,842,456,386,258,213,191,172,2,0,0,0,0,0,5,1,453,384,257,211,190,172,2,0,0,0,0,0,4,1,3,2,1,2,1,0,0,0,0,0,0,0,1,0 -050,01,037,Alabama,Coosa County,6,4,792,419,373,245,211,163,157,0,2,0,0,0,0,11,3,412,369,238,209,163,155,0,2,0,0,0,0,11,3,7,4,7,2,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,6,5,602,302,300,178,164,118,132,0,0,0,0,0,1,6,3,284,295,161,161,118,132,0,0,0,0,0,0,5,2,18,5,17,3,0,0,0,0,0,0,0,1,1,1 -050,01,037,Alabama,Coosa County,6,6,540,282,258,193,177,87,76,1,1,0,1,0,0,1,3,263,253,176,174,86,76,0,0,0,1,0,0,1,2,19,5,17,3,1,0,1,1,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,6,7,720,346,374,243,238,101,129,1,4,0,0,0,0,1,3,329,371,228,237,100,128,1,4,0,0,0,0,0,2,17,3,15,1,1,1,0,0,0,0,0,0,1,1 -050,01,037,Alabama,Coosa County,6,8,802,400,402,271,233,123,162,3,3,0,1,0,0,3,3,382,397,255,230,123,160,3,3,0,1,0,0,1,3,18,5,16,3,0,2,0,0,0,0,0,0,2,0 -050,01,037,Alabama,Coosa County,6,9,894,459,435,312,262,145,162,1,4,0,1,0,0,1,6,446,434,300,262,145,162,1,4,0,1,0,0,0,5,13,1,12,0,0,0,0,0,0,0,0,0,1,1 -050,01,037,Alabama,Coosa County,6,10,922,478,444,317,276,155,161,2,3,0,0,1,1,3,3,476,440,316,274,155,160,2,3,0,0,0,0,3,3,2,4,1,2,0,1,0,0,0,0,1,1,0,0 -050,01,037,Alabama,Coosa County,6,11,852,437,415,296,282,135,130,3,0,0,0,0,0,3,3,433,412,293,280,134,129,3,0,0,0,0,0,3,3,4,3,3,2,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,6,12,803,348,455,248,336,95,115,2,1,0,0,0,0,3,3,347,453,247,335,95,114,2,1,0,0,0,0,3,3,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,6,13,673,333,340,247,238,83,91,3,2,0,2,0,1,0,6,330,336,246,237,81,90,3,2,0,2,0,0,0,5,3,4,1,1,2,1,0,0,0,0,0,1,0,1 -050,01,037,Alabama,Coosa County,6,14,541,280,261,206,200,71,59,1,0,0,0,0,0,2,2,279,260,205,199,71,59,1,0,0,0,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,6,15,469,211,258,157,174,53,83,0,0,0,0,0,0,1,1,210,257,157,174,52,83,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,6,16,353,153,200,114,156,39,44,0,0,0,0,0,0,0,0,153,200,114,156,39,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,6,17,266,124,142,102,108,20,33,0,0,0,0,0,0,2,1,124,142,102,108,20,33,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,6,18,167,53,114,41,74,11,40,0,0,0,0,0,0,1,0,53,114,41,74,11,40,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,6,99,11560,5778,5782,3884,3704,1829,1996,19,23,0,6,1,5,45,48,5656,5725,3780,3675,1819,1982,18,22,0,6,0,0,39,40,122,57,104,29,10,14,1,1,0,0,1,5,6,8 -050,01,037,Alabama,Coosa County,7,0,94,41,53,24,34,16,16,0,1,0,0,0,0,1,2,40,50,24,32,15,16,0,1,0,0,0,0,1,1,1,3,0,2,1,0,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,7,1,478,252,226,159,138,92,82,0,0,0,0,1,2,0,4,242,215,151,132,91,80,0,0,0,0,0,0,0,3,10,11,8,6,1,2,0,0,0,0,1,2,0,1 -050,01,037,Alabama,Coosa County,7,2,677,356,321,237,195,115,120,1,2,0,1,0,0,3,3,350,312,232,189,115,117,0,2,0,1,0,0,3,3,6,9,5,6,0,3,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,7,3,788,423,365,249,203,170,158,1,1,0,0,0,0,3,3,418,365,247,203,168,158,1,1,0,0,0,0,2,3,5,0,2,0,2,0,0,0,0,0,0,0,1,0 -050,01,037,Alabama,Coosa County,7,4,776,419,357,237,197,177,156,0,2,1,0,0,0,4,2,416,356,234,197,177,155,0,2,1,0,0,0,4,2,3,1,3,0,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,7,5,602,287,315,171,185,109,124,4,0,1,1,0,2,2,3,270,311,159,184,109,124,1,0,0,1,0,0,1,2,17,4,12,1,0,0,3,0,1,0,0,2,1,1 -050,01,037,Alabama,Coosa County,7,6,535,277,258,177,182,90,68,4,2,1,0,0,0,5,6,257,251,162,178,90,68,1,0,0,0,0,0,4,5,20,7,15,4,0,0,3,2,1,0,0,0,1,1 -050,01,037,Alabama,Coosa County,7,7,684,336,348,239,212,94,130,1,3,0,2,1,0,1,1,320,343,226,210,93,128,1,2,0,2,0,0,0,1,16,5,13,2,1,2,0,1,0,0,1,0,1,0 -050,01,037,Alabama,Coosa County,7,8,766,387,379,267,230,115,141,3,1,0,2,0,1,2,4,371,371,252,225,115,140,3,1,0,2,0,0,1,3,16,8,15,5,0,1,0,0,0,0,0,1,1,1 -050,01,037,Alabama,Coosa County,7,9,880,457,423,310,245,144,168,1,4,1,1,0,0,1,5,446,420,302,243,142,168,1,4,1,1,0,0,0,4,11,3,8,2,2,0,0,0,0,0,0,0,1,1 -050,01,037,Alabama,Coosa County,7,10,918,471,447,307,279,155,161,4,4,0,1,2,0,3,2,465,443,305,277,155,159,3,4,0,1,0,0,2,2,6,4,2,2,0,2,1,0,0,0,2,0,1,0 -050,01,037,Alabama,Coosa County,7,11,903,455,448,323,289,128,156,3,1,0,1,0,0,1,1,449,445,320,287,126,155,2,1,0,1,0,0,1,1,6,3,3,2,2,1,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,7,12,847,373,474,251,358,114,112,3,1,0,0,0,0,5,3,370,471,251,357,112,110,3,1,0,0,0,0,4,3,3,3,0,1,2,2,0,0,0,0,0,0,1,0 -050,01,037,Alabama,Coosa County,7,13,693,367,326,277,229,87,92,2,0,0,1,0,1,1,3,363,321,275,227,85,90,2,0,0,1,0,0,1,3,4,5,2,2,2,2,0,0,0,0,0,1,0,0 -050,01,037,Alabama,Coosa County,7,14,551,267,284,196,222,69,60,1,0,0,1,0,0,1,1,267,283,196,221,69,60,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,7,15,494,230,264,173,181,56,83,0,0,0,0,0,0,1,0,227,264,171,181,55,83,0,0,0,0,0,0,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,7,16,373,161,212,121,159,38,53,2,0,0,0,0,0,0,0,161,212,121,159,38,53,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,7,17,253,123,130,98,104,25,26,0,0,0,0,0,0,0,0,123,130,98,104,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,7,18,155,51,104,39,62,12,41,0,0,0,0,0,0,0,1,51,104,39,62,12,41,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,7,99,11467,5733,5734,3855,3704,1806,1947,30,22,4,11,4,6,34,44,5606,5667,3765,3668,1792,1931,21,19,2,11,0,0,26,38,127,67,90,36,14,16,9,3,2,0,4,6,8,6 -050,01,037,Alabama,Coosa County,8,0,87,43,44,25,26,17,15,0,1,0,0,0,0,1,2,42,41,25,24,16,15,0,1,0,0,0,0,1,1,1,3,0,2,1,0,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,8,1,495,260,235,147,144,110,82,1,1,0,0,1,4,1,4,249,223,139,138,109,80,1,1,0,0,0,0,0,4,11,12,8,6,1,2,0,0,0,0,1,4,1,0 -050,01,037,Alabama,Coosa County,8,2,653,339,314,223,191,111,114,2,2,0,1,0,0,3,6,332,303,218,183,110,112,1,2,0,1,0,0,3,5,7,11,5,8,1,2,1,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,8,3,781,409,372,239,217,165,151,2,1,0,0,0,0,3,3,403,372,237,217,163,151,1,1,0,0,0,0,2,3,6,0,2,0,2,0,1,0,0,0,0,0,1,0 -050,01,037,Alabama,Coosa County,8,4,778,435,343,254,188,174,151,0,3,1,0,0,0,6,1,432,341,251,188,174,149,0,3,1,0,0,0,6,1,3,2,3,0,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,8,5,546,263,283,164,182,91,97,5,0,1,1,0,1,2,2,247,280,153,180,91,97,2,0,0,1,0,0,1,2,16,3,11,2,0,0,3,0,1,0,0,1,1,0 -050,01,037,Alabama,Coosa County,8,6,572,293,279,186,182,97,88,4,2,1,0,0,0,5,7,273,273,171,178,97,88,1,0,0,0,0,0,4,7,20,6,15,4,0,0,3,2,1,0,0,0,1,0 -050,01,037,Alabama,Coosa County,8,7,620,298,322,209,210,85,107,2,2,0,2,2,0,0,1,281,317,196,208,84,105,1,1,0,2,0,0,0,1,17,5,13,2,1,2,1,1,0,0,2,0,0,0 -050,01,037,Alabama,Coosa County,8,8,767,373,394,252,231,112,154,3,1,0,2,1,1,5,5,357,385,238,225,112,153,3,1,0,2,0,0,4,4,16,9,14,6,0,1,0,0,0,0,1,1,1,1 -050,01,037,Alabama,Coosa County,8,9,848,447,401,308,223,137,169,1,4,1,1,0,0,0,4,432,398,295,221,135,169,1,4,1,1,0,0,0,3,15,3,13,2,2,0,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,8,10,924,456,468,294,301,153,160,5,4,0,1,2,0,2,2,449,463,292,299,153,158,3,4,0,1,0,0,1,1,7,5,2,2,0,2,2,0,0,0,2,0,1,1 -050,01,037,Alabama,Coosa County,8,11,938,478,460,345,302,131,153,1,2,0,1,0,0,1,2,472,458,342,300,128,153,1,2,0,1,0,0,1,2,6,2,3,2,3,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,8,12,871,400,471,279,352,113,115,2,1,0,0,0,0,6,3,398,468,279,351,111,113,2,1,0,0,0,0,6,3,2,3,0,1,2,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,8,13,710,372,338,282,258,87,75,2,0,0,2,0,0,1,3,369,332,280,255,86,73,2,0,0,2,0,0,1,2,3,6,2,3,1,2,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,8,14,560,283,277,201,214,79,60,1,0,0,1,0,0,2,2,281,276,200,213,78,60,1,0,0,1,0,0,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,8,15,495,238,257,179,177,58,79,1,0,0,0,0,0,0,1,234,256,177,177,56,78,1,0,0,0,0,0,0,1,4,1,2,0,2,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,8,16,384,147,237,108,180,38,57,1,0,0,0,0,0,0,0,147,236,108,179,38,57,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,8,17,247,110,137,89,106,19,31,0,0,0,0,0,0,2,0,110,137,89,106,19,31,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,8,18,175,63,112,50,65,13,46,0,0,0,0,0,0,0,1,63,112,50,65,13,46,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,8,99,11451,5707,5744,3834,3749,1790,1904,33,24,4,12,6,6,40,49,5571,5671,3740,3707,1773,1888,22,21,2,12,0,0,34,43,136,73,94,42,17,16,11,3,2,0,6,6,6,6 -050,01,037,Alabama,Coosa County,9,0,102,53,49,35,27,17,19,0,1,0,0,0,0,1,2,52,46,35,25,16,19,0,1,0,0,0,0,1,1,1,3,0,2,1,0,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,9,1,507,252,255,154,147,94,99,2,1,0,0,1,4,1,4,239,242,145,141,93,96,1,1,0,0,0,0,0,4,13,13,9,6,1,3,1,0,0,0,1,4,1,0 -050,01,037,Alabama,Coosa County,9,2,601,318,283,220,180,91,94,3,2,0,1,0,0,4,6,309,274,214,175,90,92,1,1,0,1,0,0,4,5,9,9,6,5,1,2,2,1,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,9,3,752,398,354,239,204,154,147,2,1,0,0,0,0,3,2,391,354,237,204,151,147,1,1,0,0,0,0,2,2,7,0,2,0,3,0,1,0,0,0,0,0,1,0 -050,01,037,Alabama,Coosa County,9,4,779,442,337,255,195,179,138,0,3,1,0,0,0,7,1,440,335,253,195,179,136,0,3,1,0,0,0,7,1,2,2,2,0,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,5,540,249,291,150,193,90,92,5,0,1,1,0,2,3,3,235,286,141,191,90,92,2,0,0,1,0,0,2,2,14,5,9,2,0,0,3,0,1,0,0,2,1,1 -050,01,037,Alabama,Coosa County,9,6,576,293,283,188,183,95,91,4,2,1,0,0,0,5,7,273,277,174,179,94,91,1,0,0,0,0,0,4,7,20,6,14,4,1,0,3,2,1,0,0,0,1,0 -050,01,037,Alabama,Coosa County,9,7,602,292,310,199,207,90,98,1,2,0,2,1,0,1,1,272,305,183,205,89,96,0,1,0,2,0,0,0,1,20,5,16,2,1,2,1,1,0,0,1,0,1,0 -050,01,037,Alabama,Coosa County,9,8,754,361,393,256,231,97,153,2,1,0,2,1,1,5,5,347,384,244,225,97,152,2,1,0,2,0,0,4,4,14,9,12,6,0,1,0,0,0,0,1,1,1,1 -050,01,037,Alabama,Coosa County,9,9,826,432,394,313,222,117,162,1,5,1,1,0,0,0,4,420,391,303,220,115,162,1,5,1,1,0,0,0,3,12,3,10,2,2,0,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,9,10,939,479,460,295,293,175,160,5,4,0,1,2,0,2,2,473,455,294,291,175,158,3,4,0,1,0,0,1,1,6,5,1,2,0,2,2,0,0,0,2,0,1,1 -050,01,037,Alabama,Coosa County,9,11,937,475,462,336,298,137,159,1,2,0,1,0,0,1,2,470,460,333,296,135,159,1,2,0,1,0,0,1,2,5,2,3,2,2,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,12,911,418,493,284,341,126,148,2,1,0,0,0,0,6,3,416,490,284,340,124,146,2,1,0,0,0,0,6,3,2,3,0,1,2,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,13,746,384,362,287,289,94,69,2,0,0,2,0,0,1,2,381,357,285,286,93,67,2,0,0,2,0,0,1,2,3,5,2,3,1,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,14,594,304,290,231,215,70,71,1,1,0,1,0,0,2,2,303,289,230,214,70,71,1,1,0,1,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,15,509,249,260,181,186,66,73,1,0,0,0,0,0,1,1,245,259,179,186,64,72,1,0,0,0,0,0,1,1,4,1,2,0,2,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,16,333,133,200,103,146,28,54,2,0,0,0,0,0,0,0,133,198,103,144,28,54,2,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,17,245,103,142,79,118,22,24,0,0,0,0,0,0,2,0,103,142,79,118,22,24,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,18,186,77,109,61,69,16,39,0,0,0,0,0,0,0,1,77,109,61,69,16,39,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,99,11439,5712,5727,3866,3744,1758,1890,34,26,4,12,5,7,45,48,5579,5653,3777,3704,1741,1873,21,22,2,12,0,0,38,42,133,74,89,40,17,17,13,4,2,0,5,7,7,6 -050,01,037,Alabama,Coosa County,10,0,107,56,51,39,30,15,18,0,1,0,0,0,0,2,2,55,49,39,29,14,18,0,1,0,0,0,0,2,1,1,2,0,1,1,0,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,10,1,476,232,244,145,140,83,92,2,1,0,0,1,4,1,7,220,229,137,134,82,88,1,1,0,0,0,0,0,6,12,15,8,6,1,4,1,0,0,0,1,4,1,1 -050,01,037,Alabama,Coosa County,10,2,626,328,298,227,183,94,106,3,1,0,1,0,0,4,7,318,288,220,177,93,104,1,0,0,1,0,0,4,6,10,10,7,6,1,2,2,1,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,10,3,736,392,344,240,206,147,135,2,1,0,0,0,0,3,2,385,344,238,206,144,135,1,1,0,0,0,0,2,2,7,0,2,0,3,0,1,0,0,0,0,0,1,0 -050,01,037,Alabama,Coosa County,10,4,795,445,350,244,199,195,148,0,2,1,0,0,0,5,1,444,348,243,199,195,146,0,2,1,0,0,0,5,1,1,2,1,0,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,10,5,534,249,285,153,195,87,84,5,0,1,1,0,2,3,3,237,280,146,193,87,84,2,0,0,1,0,0,2,2,12,5,7,2,0,0,3,0,1,0,0,2,1,1 -050,01,037,Alabama,Coosa County,10,6,582,272,310,168,197,93,102,5,2,1,0,0,0,5,9,253,301,156,191,92,102,1,0,0,0,0,0,4,8,19,9,12,6,1,0,4,2,1,0,0,0,1,1 -050,01,037,Alabama,Coosa County,10,7,572,280,292,186,202,90,85,1,2,0,2,2,0,1,1,259,286,170,200,89,82,0,1,0,2,0,0,0,1,21,6,16,2,1,3,1,1,0,0,2,0,1,0 -050,01,037,Alabama,Coosa County,10,8,748,357,391,233,227,116,156,2,1,0,2,1,1,5,4,345,381,223,221,116,154,2,1,0,2,0,0,4,3,12,10,10,6,0,2,0,0,0,0,1,1,1,1 -050,01,037,Alabama,Coosa County,10,9,809,397,412,286,235,108,166,2,5,1,1,0,0,0,5,389,409,280,233,106,166,2,5,1,1,0,0,0,4,8,3,6,2,2,0,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,10,10,921,476,445,301,283,166,154,5,4,0,1,2,1,2,2,469,439,299,281,166,152,3,4,0,1,0,0,1,1,7,6,2,2,0,2,2,0,0,0,2,1,1,1 -050,01,037,Alabama,Coosa County,10,11,976,488,488,345,316,140,167,2,2,0,1,0,0,1,2,482,486,342,314,138,167,1,2,0,1,0,0,1,2,6,2,3,2,2,0,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,10,12,891,438,453,290,328,141,121,1,1,0,0,0,0,6,3,436,449,290,326,139,119,1,1,0,0,0,0,6,3,2,4,0,2,2,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,10,13,805,381,424,280,322,98,98,2,0,0,2,0,0,1,2,377,420,277,319,97,97,2,0,0,2,0,0,1,2,4,4,3,3,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,10,14,608,314,294,235,213,77,77,1,1,0,1,0,0,1,2,312,292,234,211,76,77,1,1,0,1,0,0,1,2,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,10,15,489,218,271,156,198,60,72,1,0,0,0,0,0,1,1,215,270,154,198,59,71,1,0,0,0,0,0,1,1,3,1,2,0,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,10,16,345,143,202,113,149,29,53,1,0,0,0,0,0,0,0,143,200,113,147,29,53,1,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,10,17,284,121,163,89,120,30,43,0,0,0,0,0,0,2,0,121,163,89,120,30,43,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,10,18,189,75,114,56,75,19,38,0,0,0,0,0,0,0,1,74,114,56,75,18,38,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,10,99,11493,5662,5831,3786,3818,1788,1915,35,24,4,12,6,8,43,54,5534,5748,3706,3774,1770,1896,20,20,2,12,0,0,36,46,128,83,80,44,18,19,15,4,2,0,6,8,7,8 -050,01,037,Alabama,Coosa County,11,0,100,55,45,38,27,15,15,0,1,0,0,0,0,2,2,54,43,38,26,14,15,0,1,0,0,0,0,2,1,1,2,0,1,1,0,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,11,1,452,216,236,129,136,82,86,3,2,0,0,1,5,1,7,201,219,119,130,81,82,1,1,0,0,0,0,0,6,15,17,10,6,1,4,2,1,0,0,1,5,1,1 -050,01,037,Alabama,Coosa County,11,2,609,322,287,229,187,86,91,3,1,0,1,0,0,4,7,311,275,221,179,85,89,1,0,0,1,0,0,4,6,11,12,8,8,1,2,2,1,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,11,3,718,383,335,245,202,133,130,2,1,0,0,0,0,3,2,376,335,243,202,130,130,1,1,0,0,0,0,2,2,7,0,2,0,3,0,1,0,0,0,0,0,1,0 -050,01,037,Alabama,Coosa County,11,4,762,417,345,240,201,171,141,0,2,1,0,0,0,5,1,416,343,239,201,171,139,0,2,1,0,0,0,5,1,1,2,1,0,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,11,5,536,267,269,169,190,89,73,5,0,1,1,0,2,3,3,257,264,164,188,89,73,2,0,0,1,0,0,2,2,10,5,5,2,0,0,3,0,1,0,0,2,1,1 -050,01,037,Alabama,Coosa County,11,6,567,262,305,159,188,92,106,5,2,1,0,0,0,5,9,244,296,148,182,91,106,1,0,0,0,0,0,4,8,18,9,11,6,1,0,4,2,1,0,0,0,1,1 -050,01,037,Alabama,Coosa County,11,7,565,283,282,196,193,83,83,1,2,0,2,2,0,1,2,264,275,182,191,82,80,0,1,0,2,0,0,0,1,19,7,14,2,1,3,1,1,0,0,2,0,1,1 -050,01,037,Alabama,Coosa County,11,8,763,378,385,253,234,118,142,1,1,0,3,1,1,5,4,363,375,240,228,118,140,1,1,0,3,0,0,4,3,15,10,13,6,0,2,0,0,0,0,1,1,1,1 -050,01,037,Alabama,Coosa County,11,9,786,382,404,272,237,106,154,2,6,1,1,0,0,1,6,371,399,264,235,104,154,2,5,1,1,0,0,0,4,11,5,8,2,2,0,0,1,0,0,0,0,1,2 -050,01,037,Alabama,Coosa County,11,10,853,433,420,280,253,143,160,5,4,0,1,3,0,2,2,425,415,278,251,143,158,3,4,0,1,0,0,1,1,8,5,2,2,0,2,2,0,0,0,3,0,1,1 -050,01,037,Alabama,Coosa County,11,11,1005,531,474,375,313,153,156,2,2,0,1,0,0,1,2,525,472,372,311,151,156,1,2,0,1,0,0,1,2,6,2,3,2,2,0,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,11,12,918,454,464,305,346,141,114,1,1,0,0,0,0,7,3,452,460,305,344,139,112,1,1,0,0,0,0,7,3,2,4,0,2,2,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,11,13,823,385,438,290,325,91,109,3,0,0,1,0,0,1,3,381,434,287,322,90,108,3,0,0,1,0,0,1,3,4,4,3,3,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,11,14,647,324,323,244,232,78,87,1,1,0,1,0,0,1,2,322,321,243,230,77,87,1,1,0,1,0,0,1,2,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,11,15,501,234,267,162,207,70,59,1,0,0,0,0,0,1,1,229,266,160,207,67,58,1,0,0,0,0,0,1,1,5,1,2,0,3,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,11,16,336,136,200,104,131,30,69,2,0,0,0,0,0,0,0,136,198,104,129,30,69,2,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,11,17,277,127,150,98,119,27,31,0,0,0,0,0,0,2,0,127,150,98,119,27,31,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,11,18,192,70,122,54,85,16,36,0,0,0,0,0,0,0,1,69,122,54,85,15,36,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,11,99,11410,5659,5751,3842,3806,1724,1842,37,26,4,12,7,8,45,57,5523,5662,3759,3760,1704,1823,21,20,2,12,0,0,37,47,136,89,83,46,20,19,16,6,2,0,7,8,8,10 -050,01,037,Alabama,Coosa County,12,0,94,53,41,34,24,17,14,0,1,0,0,0,0,2,2,52,39,34,23,16,14,0,1,0,0,0,0,2,1,1,2,0,1,1,0,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,12,1,467,230,237,134,131,90,92,3,2,0,0,1,5,2,7,214,220,124,125,89,88,1,1,0,0,0,0,0,6,16,17,10,6,1,4,2,1,0,0,1,5,2,1 -050,01,037,Alabama,Coosa County,12,2,618,331,287,217,182,107,96,3,1,0,1,0,0,4,7,320,276,209,175,106,94,1,0,0,1,0,0,4,6,11,11,8,7,1,2,2,1,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,12,3,707,360,347,234,213,121,131,2,1,0,0,0,0,3,2,353,347,232,213,118,131,1,1,0,0,0,0,2,2,7,0,2,0,3,0,1,0,0,0,0,0,1,0 -050,01,037,Alabama,Coosa County,12,4,781,438,343,255,198,177,142,0,2,1,0,0,0,5,1,437,341,254,198,177,140,0,2,1,0,0,0,5,1,1,2,1,0,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,12,5,555,279,276,171,197,99,72,5,0,1,1,0,3,3,3,269,270,166,195,99,72,2,0,0,1,0,0,2,2,10,6,5,2,0,0,3,0,1,0,0,3,1,1 -050,01,037,Alabama,Coosa County,12,6,543,255,288,159,180,85,96,5,2,1,0,0,0,5,10,237,279,148,174,84,96,1,0,0,0,0,0,4,9,18,9,11,6,1,0,4,2,1,0,0,0,1,1 -050,01,037,Alabama,Coosa County,12,7,606,305,301,209,210,92,85,1,2,0,2,2,0,1,2,286,294,195,208,91,82,0,1,0,2,0,0,0,1,19,7,14,2,1,3,1,1,0,0,2,0,1,1 -050,01,037,Alabama,Coosa County,12,8,746,355,391,240,233,107,149,1,1,0,3,1,1,6,4,336,381,224,227,107,147,1,1,0,3,0,0,4,3,19,10,16,6,0,2,0,0,0,0,1,1,2,1 -050,01,037,Alabama,Coosa County,12,9,787,392,395,283,233,105,149,2,6,1,1,0,0,1,6,381,390,275,231,103,149,2,5,1,1,0,0,0,4,11,5,8,2,2,0,0,1,0,0,0,0,1,2 -050,01,037,Alabama,Coosa County,12,10,863,439,424,282,249,147,167,5,4,0,1,3,1,2,2,431,418,280,247,147,165,3,4,0,1,0,0,1,1,8,6,2,2,0,2,2,0,0,0,3,1,1,1 -050,01,037,Alabama,Coosa County,12,11,1005,512,493,357,333,152,155,2,2,0,1,0,0,1,2,506,491,354,331,150,155,1,2,0,1,0,0,1,2,6,2,3,2,2,0,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,12,12,943,475,468,329,332,138,132,1,1,0,0,0,0,7,3,473,464,329,330,136,130,1,1,0,0,0,0,7,3,2,4,0,2,2,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,12,13,854,412,442,296,336,112,102,3,0,0,1,0,0,1,3,408,438,293,333,111,101,3,0,0,1,0,0,1,3,4,4,3,3,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,12,14,656,340,316,263,233,75,79,1,1,0,1,0,0,1,2,338,314,262,231,74,79,1,1,0,1,0,0,1,2,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,12,15,504,219,285,160,218,57,66,1,0,0,0,0,0,1,1,215,284,158,218,55,65,1,0,0,0,0,0,1,1,4,1,2,0,2,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,12,16,343,142,201,107,146,33,55,2,0,0,0,0,0,0,0,142,199,107,144,33,55,2,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,12,17,276,121,155,98,120,21,35,0,0,0,0,0,0,2,0,121,155,98,120,21,35,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,12,18,191,69,122,56,88,13,33,0,0,0,0,0,0,0,1,68,122,56,88,12,33,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,12,99,11539,5727,5812,3884,3856,1748,1850,37,26,4,12,7,10,47,58,5587,5722,3798,3811,1729,1831,21,20,2,12,0,0,37,48,140,90,86,45,19,19,16,6,2,0,7,10,10,10 -050,01,037,Alabama,Coosa County,13,0,96,53,43,33,26,17,15,0,1,1,0,0,0,2,1,52,40,33,24,16,14,0,1,1,0,0,0,2,1,1,3,0,2,1,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,1,457,228,229,129,129,92,91,3,0,1,0,0,3,3,6,215,218,120,124,91,88,2,0,1,0,0,0,1,6,13,11,9,5,1,3,1,0,0,0,0,3,2,0 -050,01,037,Alabama,Coosa County,13,2,617,332,285,218,180,110,96,3,1,0,1,0,0,1,7,320,274,209,173,108,94,2,0,0,1,0,0,1,6,12,11,9,7,2,2,1,1,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,13,3,708,360,348,236,213,122,131,1,1,0,0,0,0,1,3,353,347,231,213,120,130,1,1,0,0,0,0,1,3,7,1,5,0,2,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,4,781,444,337,255,195,176,137,4,3,1,1,0,0,8,1,440,336,253,194,175,137,3,3,1,1,0,0,8,1,4,1,2,1,1,0,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,5,551,279,272,172,197,99,71,4,0,1,1,0,2,3,1,272,268,167,195,99,71,2,0,1,1,0,0,3,1,7,4,5,2,0,0,2,0,0,0,0,2,0,0 -050,01,037,Alabama,Coosa County,13,6,541,254,287,158,179,87,97,4,1,2,3,0,0,3,7,240,278,148,172,86,96,1,0,2,3,0,0,3,7,14,9,10,7,1,1,3,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,7,617,309,308,209,215,92,85,3,3,3,4,1,0,1,1,290,301,195,212,91,82,1,2,3,4,0,0,0,1,19,7,14,3,1,3,2,1,0,0,1,0,1,0 -050,01,037,Alabama,Coosa County,13,8,736,348,388,239,231,106,149,0,0,0,4,0,0,3,4,332,379,223,225,106,147,0,0,0,4,0,0,3,3,16,9,16,6,0,2,0,0,0,0,0,0,0,1 -050,01,037,Alabama,Coosa County,13,9,791,399,392,284,233,106,148,3,3,2,1,0,0,4,7,389,386,276,230,104,147,3,3,2,1,0,0,4,5,10,6,8,3,2,1,0,0,0,0,0,0,0,2 -050,01,037,Alabama,Coosa County,13,10,867,443,424,283,248,147,168,4,4,2,2,3,0,4,2,435,419,279,245,147,166,4,4,2,2,0,0,3,2,8,5,4,3,0,2,0,0,0,0,3,0,1,0 -050,01,037,Alabama,Coosa County,13,11,1014,514,500,358,335,152,157,1,3,0,1,0,0,3,4,509,498,355,333,151,157,0,3,0,1,0,0,3,4,5,2,3,2,1,0,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,12,950,480,470,329,333,140,134,1,0,1,0,0,0,9,3,478,465,329,330,138,132,1,0,1,0,0,0,9,3,2,5,0,3,2,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,13,858,417,441,300,337,111,102,4,0,0,1,0,0,2,1,414,437,297,334,111,101,4,0,0,1,0,0,2,1,3,4,3,3,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,14,658,341,317,265,235,73,79,1,1,0,1,0,0,2,1,339,315,263,233,73,79,1,1,0,1,0,0,2,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,15,508,219,289,160,221,57,65,0,1,0,0,0,0,2,2,216,288,159,220,55,65,0,1,0,0,0,0,2,2,3,1,1,1,2,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,16,338,137,201,105,147,31,53,1,0,0,0,0,0,0,1,137,198,105,144,31,53,1,0,0,0,0,0,0,1,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,17,276,119,157,97,121,21,35,0,0,0,0,0,0,1,1,119,157,97,121,21,35,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,18,192,68,124,56,89,12,34,0,0,0,0,0,0,0,1,68,124,56,89,12,34,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,99,11556,5744,5812,3886,3864,1751,1847,37,22,14,20,4,5,52,54,5618,5728,3795,3811,1735,1828,26,19,14,20,0,0,48,50,126,84,91,53,16,19,11,3,0,0,4,5,4,4 -050,01,039,Alabama,Covington County,1,0,439,208,231,174,180,30,47,2,1,0,0,0,0,2,3,203,229,169,178,30,47,2,1,0,0,0,0,2,3,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,1,1787,935,852,752,674,173,160,3,3,2,4,0,0,5,11,917,843,740,666,169,159,1,3,2,4,0,0,5,11,18,9,12,8,4,1,2,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,2,2462,1262,1200,1028,971,220,218,2,4,2,1,0,0,10,6,1249,1187,1017,960,219,217,2,4,1,1,0,0,10,5,13,13,11,11,1,1,0,0,1,0,0,0,0,1 -050,01,039,Alabama,Covington County,1,3,2593,1317,1276,1100,1075,201,184,7,6,3,1,0,0,6,10,1306,1265,1090,1067,200,182,7,6,3,1,0,0,6,9,11,11,10,8,1,2,0,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,1,4,2571,1291,1280,1083,1043,186,222,11,8,1,2,0,0,10,5,1281,1275,1073,1041,186,219,11,8,1,2,0,0,10,5,10,5,10,2,0,3,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,5,2054,1000,1054,863,849,125,187,7,10,0,3,0,0,5,5,994,1045,857,843,125,185,7,9,0,3,0,0,5,5,6,9,6,6,0,2,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,6,2101,1068,1033,911,857,145,165,5,4,4,4,0,0,3,3,1053,1024,899,849,142,164,5,4,4,4,0,0,3,3,15,9,12,8,3,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,7,2269,1141,1128,996,959,131,149,6,7,4,3,0,0,4,10,1132,1120,990,952,128,149,6,7,4,3,0,0,4,9,9,8,6,7,3,0,0,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,1,8,2635,1319,1316,1162,1139,142,160,3,9,2,4,1,0,9,4,1313,1300,1156,1125,142,158,3,9,2,4,1,0,9,4,6,16,6,14,0,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,9,2836,1393,1443,1222,1247,156,180,5,3,4,4,0,0,6,9,1383,1434,1212,1238,156,180,5,3,4,4,0,0,6,9,10,9,10,9,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,10,2565,1250,1315,1110,1121,122,177,10,7,0,4,0,0,8,6,1242,1303,1102,1110,122,176,10,7,0,4,0,0,8,6,8,12,8,11,0,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,11,2496,1218,1278,1084,1124,118,130,9,14,1,4,1,0,5,6,1212,1265,1079,1112,117,130,9,13,1,4,1,0,5,6,6,13,5,12,1,0,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,12,2094,992,1102,905,981,74,110,6,7,2,1,0,0,5,3,987,1097,901,976,73,110,6,7,2,1,0,0,5,3,5,5,4,5,1,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,13,1997,924,1073,834,952,81,108,2,6,1,2,1,0,5,5,916,1065,828,948,81,106,1,5,1,2,1,0,4,4,8,8,6,4,0,2,1,1,0,0,0,0,1,1 -050,01,039,Alabama,Covington County,1,14,1893,885,1008,804,902,72,102,4,3,0,0,0,0,5,1,881,1004,800,900,72,100,4,3,0,0,0,0,5,1,4,4,4,2,0,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,15,1587,686,901,628,819,49,70,4,5,0,1,0,1,5,5,682,894,624,813,49,70,4,5,0,1,0,0,5,5,4,7,4,6,0,0,0,0,0,0,0,1,0,0 -050,01,039,Alabama,Covington County,1,16,1375,552,823,516,745,33,72,1,1,0,0,1,0,1,5,551,818,516,741,33,71,1,1,0,0,0,0,1,5,1,5,0,4,0,1,0,0,0,0,1,0,0,0 -050,01,039,Alabama,Covington County,1,17,1003,332,671,303,606,27,57,0,1,0,0,0,0,2,7,329,669,301,604,26,57,0,1,0,0,0,0,2,7,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,18,883,223,660,196,612,26,44,0,0,1,0,0,0,0,4,222,658,195,610,26,44,0,0,1,0,0,0,0,4,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,99,37640,17996,19644,15671,16856,2111,2542,87,99,27,38,4,1,96,108,17853,19495,15549,16733,2096,2524,84,96,26,38,3,0,95,104,143,149,122,123,15,18,3,3,1,0,1,1,1,4 -050,01,039,Alabama,Covington County,2,0,438,209,229,174,180,30,47,2,1,0,0,0,0,3,1,204,227,169,178,30,47,2,1,0,0,0,0,3,1,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,1,1763,925,838,744,667,171,156,3,3,2,4,0,0,5,8,907,829,732,659,167,155,1,3,2,4,0,0,5,8,18,9,12,8,4,1,2,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,2,2433,1249,1184,1017,959,218,212,2,4,2,1,0,0,10,8,1236,1171,1006,948,217,211,2,4,1,1,0,0,10,7,13,13,11,11,1,1,0,0,1,0,0,0,0,1 -050,01,039,Alabama,Covington County,2,3,2586,1313,1273,1096,1072,201,184,7,6,3,1,0,0,6,10,1302,1262,1086,1064,200,182,7,6,3,1,0,0,6,9,11,11,10,8,1,2,0,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,2,4,2568,1292,1276,1084,1040,186,221,11,8,1,2,0,0,10,5,1282,1271,1074,1038,186,218,11,8,1,2,0,0,10,5,10,5,10,2,0,3,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,5,2055,1001,1054,864,850,125,186,7,10,0,3,0,0,5,5,995,1045,858,844,125,184,7,9,0,3,0,0,5,5,6,9,6,6,0,2,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,6,2069,1053,1016,896,842,145,163,5,4,4,4,0,0,3,3,1038,1007,884,834,142,162,5,4,4,4,0,0,3,3,15,9,12,8,3,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,7,2255,1136,1119,991,951,131,148,6,7,4,3,0,0,4,10,1127,1111,985,944,128,148,6,7,4,3,0,0,4,9,9,8,6,7,3,0,0,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,2,8,2610,1307,1303,1150,1127,142,159,3,9,2,4,1,0,9,4,1301,1287,1144,1113,142,157,3,9,2,4,1,0,9,4,6,16,6,14,0,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,9,2822,1384,1438,1214,1241,155,180,5,3,4,4,0,0,6,10,1374,1429,1204,1232,155,180,5,3,4,4,0,0,6,10,10,9,10,9,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,10,2567,1251,1316,1109,1121,123,178,10,7,0,4,0,0,9,6,1243,1304,1101,1110,123,177,10,7,0,4,0,0,9,6,8,12,8,11,0,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,11,2510,1224,1286,1090,1130,119,131,9,14,1,4,1,0,4,7,1218,1273,1085,1118,118,131,9,13,1,4,1,0,4,7,6,13,5,12,1,0,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,12,2093,992,1101,905,980,74,110,6,7,2,1,0,0,5,3,987,1096,901,975,73,110,6,7,2,1,0,0,5,3,5,5,4,5,1,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,13,1996,923,1073,833,952,81,108,2,6,1,2,1,0,5,5,915,1065,827,948,81,106,1,5,1,2,1,0,4,4,8,8,6,4,0,2,1,1,0,0,0,0,1,1 -050,01,039,Alabama,Covington County,2,14,1892,885,1007,803,900,72,103,4,3,0,0,0,0,6,1,881,1003,799,898,72,101,4,3,0,0,0,0,6,1,4,4,4,2,0,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,15,1584,686,898,628,816,49,70,4,5,0,1,0,1,5,5,682,891,624,810,49,70,4,5,0,1,0,0,5,5,4,7,4,6,0,0,0,0,0,0,0,1,0,0 -050,01,039,Alabama,Covington County,2,16,1377,554,823,518,745,33,72,1,1,0,0,1,0,1,5,553,818,518,741,33,71,1,1,0,0,0,0,1,5,1,5,0,4,0,1,0,0,0,0,1,0,0,0 -050,01,039,Alabama,Covington County,2,17,1009,335,674,306,608,27,58,0,1,0,0,0,0,2,7,332,672,304,606,26,58,0,1,0,0,0,0,2,7,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,18,887,225,662,198,615,26,44,0,0,1,0,0,0,0,3,224,660,197,613,26,44,0,0,1,0,0,0,0,3,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,99,37514,17944,19570,15620,16796,2108,2530,87,99,27,38,4,1,98,106,17801,19421,15498,16673,2093,2512,84,96,26,38,3,0,97,102,143,149,122,123,15,18,3,3,1,0,1,1,1,4 -050,01,039,Alabama,Covington County,3,0,429,215,214,170,171,38,36,2,1,0,0,0,0,5,6,214,213,169,170,38,36,2,1,0,0,0,0,5,6,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,1,1681,872,809,707,638,151,152,3,4,2,4,0,0,9,11,855,800,696,631,147,150,1,4,2,4,0,0,9,11,17,9,11,7,4,2,2,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,2,2318,1189,1129,967,908,201,208,3,4,2,2,0,0,16,7,1176,1119,956,900,200,207,3,4,1,2,0,0,16,6,13,10,11,8,1,1,0,0,1,0,0,0,0,1 -050,01,039,Alabama,Covington County,3,3,2557,1325,1232,1108,1029,200,186,7,5,3,1,0,0,7,11,1310,1221,1094,1021,199,184,7,5,3,1,0,0,7,10,15,11,14,8,1,2,0,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,3,4,2480,1251,1229,1048,1006,179,208,11,8,2,2,0,0,11,5,1235,1219,1032,999,179,205,11,8,2,2,0,0,11,5,16,10,16,7,0,3,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,5,2140,1056,1084,905,892,138,174,7,10,0,3,0,0,6,5,1048,1074,897,885,138,172,7,9,0,3,0,0,6,5,8,10,8,7,0,2,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,6,1978,994,984,846,808,136,164,5,5,4,4,0,0,3,3,979,970,834,795,133,163,5,5,4,4,0,0,3,3,15,14,12,13,3,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,7,2175,1096,1079,949,915,132,142,6,7,4,5,0,0,5,10,1085,1071,941,908,129,142,6,7,4,5,0,0,5,9,11,8,8,7,3,0,0,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,3,8,2565,1279,1286,1122,1100,140,168,4,9,3,5,1,0,9,4,1270,1274,1113,1090,140,166,4,9,3,5,1,0,9,4,9,12,9,10,0,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,9,2783,1365,1418,1197,1234,153,167,5,3,4,4,0,0,6,10,1356,1411,1188,1227,153,167,5,3,4,4,0,0,6,10,9,7,9,7,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,10,2646,1294,1352,1146,1141,130,192,9,9,1,4,0,0,8,6,1287,1341,1139,1131,130,191,9,9,1,4,0,0,8,6,7,11,7,10,0,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,11,2521,1237,1284,1091,1125,127,134,12,13,2,5,0,0,5,7,1229,1271,1084,1113,126,134,12,12,2,5,0,0,5,7,8,13,7,12,1,0,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,12,2143,1031,1112,949,996,70,102,6,8,2,1,0,0,4,5,1026,1106,945,990,69,102,6,8,2,1,0,0,4,5,5,6,4,6,1,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,13,1944,892,1052,800,930,83,109,2,6,1,2,0,0,6,5,884,1045,794,925,83,108,1,6,1,2,0,0,5,4,8,7,6,5,0,1,1,0,0,0,0,0,1,1 -050,01,039,Alabama,Covington County,3,14,1926,887,1039,808,941,71,94,4,3,0,0,0,0,4,1,882,1033,803,937,71,92,4,3,0,0,0,0,4,1,5,6,5,4,0,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,15,1546,687,859,626,771,52,76,4,5,0,1,0,1,5,5,683,851,622,764,52,76,4,5,0,1,0,0,5,5,4,8,4,7,0,0,0,0,0,0,0,1,0,0 -050,01,039,Alabama,Covington County,3,16,1347,527,820,486,748,38,66,1,1,0,0,1,0,1,5,526,815,486,744,38,65,1,1,0,0,0,0,1,5,1,5,0,4,0,1,0,0,0,0,1,0,0,0 -050,01,039,Alabama,Covington County,3,17,1021,337,684,313,608,21,69,0,1,0,0,0,0,3,6,334,682,311,606,20,69,0,1,0,0,0,0,3,6,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,18,869,227,642,199,605,27,33,0,0,1,0,0,0,0,4,226,640,198,603,27,33,0,0,1,0,0,0,0,4,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,99,37069,17761,19308,15437,16566,2087,2480,91,102,31,43,2,1,113,116,17605,19156,15302,16439,2072,2462,88,100,30,43,1,0,112,112,156,152,135,127,15,18,3,2,1,0,1,1,1,4 -050,01,039,Alabama,Covington County,4,0,418,225,193,186,156,32,34,2,1,0,0,0,0,5,2,223,189,184,152,32,34,2,1,0,0,0,0,5,2,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,1,1690,878,812,709,641,152,148,2,5,2,3,0,0,13,15,862,804,698,635,148,146,1,5,2,3,0,0,13,15,16,8,11,6,4,2,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,2,2279,1180,1099,964,884,194,194,3,5,3,2,0,0,16,14,1164,1091,950,878,193,193,3,5,2,2,0,0,16,13,16,8,14,6,1,1,0,0,1,0,0,0,0,1 -050,01,039,Alabama,Covington County,4,3,2560,1307,1253,1078,1034,206,198,9,4,4,2,0,0,10,15,1291,1243,1063,1027,205,196,9,4,4,2,0,0,10,14,16,10,15,7,1,2,0,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,4,4,2430,1254,1176,1048,983,183,177,9,8,2,2,0,0,12,6,1243,1167,1037,976,183,175,9,8,2,2,0,0,12,6,11,9,11,7,0,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,5,2178,1060,1118,902,921,144,179,7,10,0,3,0,0,7,5,1052,1106,894,912,144,177,7,9,0,3,0,0,7,5,8,12,8,9,0,2,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,6,1907,945,962,818,789,116,159,4,6,4,4,0,0,3,4,929,949,804,777,114,158,4,6,4,4,0,0,3,4,16,13,14,12,2,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,7,2129,1077,1052,928,893,136,141,6,4,4,4,0,0,3,10,1061,1045,915,887,133,141,6,4,4,4,0,0,3,9,16,7,13,6,3,0,0,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,4,8,2494,1262,1232,1112,1044,133,169,4,8,3,6,1,0,9,5,1253,1218,1103,1032,133,167,4,8,3,6,1,0,9,5,9,14,9,12,0,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,9,2700,1309,1391,1143,1209,148,165,6,3,5,5,0,0,7,9,1295,1381,1130,1199,148,165,5,3,5,5,0,0,7,9,14,10,13,10,0,0,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,10,2728,1339,1389,1178,1183,140,190,11,7,3,3,0,0,7,6,1331,1378,1170,1174,140,188,11,7,3,3,0,0,7,6,8,11,8,9,0,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,11,2446,1222,1224,1080,1058,125,144,8,10,2,5,1,0,6,7,1212,1216,1071,1050,124,144,8,10,2,5,1,0,6,7,10,8,9,8,1,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,12,2297,1091,1206,997,1086,77,105,7,9,2,1,0,0,8,5,1086,1198,993,1079,76,105,7,8,2,1,0,0,8,5,5,8,4,7,1,0,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,13,1967,907,1060,818,937,77,109,4,7,1,2,1,0,6,5,899,1053,812,932,77,108,3,7,1,2,1,0,5,4,8,7,6,5,0,1,1,0,0,0,0,0,1,1 -050,01,039,Alabama,Covington County,4,14,1917,886,1031,791,938,84,89,4,3,0,0,0,0,7,1,880,1026,785,935,84,87,4,3,0,0,0,0,7,1,6,5,6,3,0,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,15,1543,693,850,635,762,50,79,3,4,0,1,0,1,5,3,688,843,630,756,50,79,3,4,0,1,0,0,5,3,5,7,5,6,0,0,0,0,0,0,0,1,0,0 -050,01,039,Alabama,Covington County,4,16,1323,514,809,473,737,37,67,1,1,0,0,1,0,2,4,513,806,473,734,37,67,1,1,0,0,0,0,2,4,1,3,0,3,0,0,0,0,0,0,1,0,0,0 -050,01,039,Alabama,Covington County,4,17,1025,361,664,334,601,25,57,0,1,0,0,0,0,2,5,358,662,332,599,24,57,0,1,0,0,0,0,2,5,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,18,870,224,646,199,602,24,41,0,0,1,0,0,0,0,3,223,644,198,600,24,41,0,0,1,0,0,0,0,3,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,99,36901,17734,19167,15393,16458,2083,2445,90,96,36,43,4,1,128,124,17563,19019,15242,16334,2069,2428,87,94,35,43,3,0,127,120,171,148,151,124,14,17,3,2,1,0,1,1,1,4 -050,01,039,Alabama,Covington County,5,0,460,248,212,195,178,48,26,1,1,0,0,0,0,4,7,245,209,192,175,48,26,1,1,0,0,0,0,4,7,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,1,1714,896,818,717,642,155,150,2,6,3,3,0,0,19,17,873,802,699,628,151,148,1,6,3,3,0,0,19,17,23,16,18,14,4,2,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,2,2180,1136,1044,913,848,195,173,4,6,4,3,0,0,20,14,1120,1033,901,838,192,172,4,6,3,3,0,0,20,14,16,11,12,10,3,1,0,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,3,2579,1318,1261,1094,1023,201,213,9,6,3,2,0,0,11,17,1297,1249,1075,1014,200,211,8,6,3,2,0,0,11,16,21,12,19,9,1,2,1,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,5,4,2466,1267,1199,1057,983,187,199,8,7,3,2,0,0,12,8,1257,1189,1047,975,187,197,8,7,3,2,0,0,12,8,10,10,10,8,0,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,5,2144,1050,1094,889,908,142,168,8,11,2,2,0,0,9,5,1038,1084,878,901,142,166,8,10,1,2,0,0,9,5,12,10,11,7,0,2,0,1,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,6,1857,930,927,798,758,118,155,5,5,4,5,0,0,5,4,910,920,780,752,116,154,5,5,4,5,0,0,5,4,20,7,18,6,2,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,7,2099,1070,1029,925,858,130,150,5,4,4,7,0,0,6,10,1055,1021,913,851,127,150,5,4,4,7,0,0,6,9,15,8,12,7,3,0,0,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,5,8,2468,1212,1256,1071,1068,122,168,4,8,6,7,1,0,8,5,1203,1245,1063,1059,122,166,4,8,5,7,1,0,8,5,9,11,8,9,0,2,0,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,9,2623,1294,1329,1133,1150,142,158,6,6,5,6,0,0,8,9,1280,1320,1120,1142,142,158,5,5,5,6,0,0,8,9,14,9,13,8,0,0,1,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,10,2826,1386,1440,1221,1226,144,198,9,8,6,3,0,0,6,5,1378,1429,1213,1217,144,196,9,8,6,3,0,0,6,5,8,11,8,9,0,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,11,2424,1205,1219,1060,1042,124,155,7,12,3,4,1,0,10,6,1197,1212,1053,1036,123,155,7,11,3,4,1,0,10,6,8,7,7,6,1,0,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,12,2360,1119,1241,1014,1113,88,114,8,7,1,2,0,0,8,5,1112,1233,1008,1105,87,114,8,7,1,2,0,0,8,5,7,8,6,8,1,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,13,2008,953,1055,870,943,72,97,4,7,1,4,0,0,6,4,946,1045,865,934,72,96,3,7,1,4,0,0,5,4,7,10,5,9,0,1,1,0,0,0,0,0,1,0 -050,01,039,Alabama,Covington County,5,14,1931,860,1071,769,961,80,103,4,2,0,1,0,0,7,4,855,1062,764,954,80,101,4,2,0,1,0,0,7,4,5,9,5,7,0,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,15,1554,717,837,657,743,52,84,3,4,0,1,0,1,5,4,712,828,652,735,52,84,3,4,0,1,0,0,5,4,5,9,5,8,0,0,0,0,0,0,0,1,0,0 -050,01,039,Alabama,Covington County,5,16,1283,508,775,468,718,35,52,1,1,0,0,1,0,3,4,507,770,468,714,35,51,1,1,0,0,0,0,3,4,1,5,0,4,0,1,0,0,0,0,1,0,0,0 -050,01,039,Alabama,Covington County,5,17,1044,358,686,336,619,20,59,0,1,0,0,0,0,2,7,354,684,333,617,19,59,0,1,0,0,0,0,2,7,4,2,3,2,1,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,18,840,215,625,192,576,22,45,0,0,1,0,0,0,0,4,214,623,191,574,22,45,0,0,1,0,0,0,0,4,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,99,36860,17742,19118,15379,16357,2077,2467,88,102,46,52,3,1,149,139,17553,18958,15215,16221,2061,2449,84,99,43,52,2,0,148,137,189,160,164,136,16,18,4,3,3,0,1,1,1,2 -050,01,039,Alabama,Covington County,6,0,450,240,210,197,169,35,31,1,1,0,0,0,0,7,9,237,207,194,166,35,31,1,1,0,0,0,0,7,9,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,1,1748,935,813,752,659,159,129,3,5,3,3,0,0,18,17,911,796,733,644,155,127,2,5,3,3,0,0,18,17,24,17,19,15,4,2,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,2,2143,1110,1033,901,844,180,164,4,5,4,4,0,0,21,16,1092,1024,887,836,177,163,4,5,3,4,0,0,21,16,18,9,14,8,3,1,0,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,3,2513,1283,1230,1057,978,202,226,9,6,3,3,0,0,12,17,1265,1214,1041,964,201,224,8,6,3,3,0,0,12,17,18,16,16,14,1,2,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,4,2485,1281,1204,1068,999,188,188,8,6,4,2,0,0,13,9,1266,1196,1054,993,188,186,7,6,4,2,0,0,13,9,15,8,14,6,0,2,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,5,2100,1032,1068,861,879,149,171,8,11,2,2,0,0,12,5,1020,1056,850,870,149,169,8,10,1,2,0,0,12,5,12,12,11,9,0,2,0,1,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,6,1910,931,979,790,812,126,152,5,6,5,5,0,0,5,4,917,971,778,805,124,151,5,6,5,5,0,0,5,4,14,8,12,7,2,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,7,2071,1067,1004,935,822,116,159,5,6,5,6,0,0,6,11,1053,994,922,814,115,159,5,5,5,6,0,0,6,10,14,10,13,8,1,0,0,1,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,6,8,2379,1163,1216,1026,1042,119,157,5,7,6,5,1,0,6,5,1153,1206,1017,1034,119,155,5,7,5,5,1,0,6,5,10,10,9,8,0,2,0,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,9,2557,1265,1292,1095,1111,151,158,6,6,5,6,0,0,8,11,1252,1281,1083,1101,151,158,5,5,5,6,0,0,8,11,13,11,12,10,0,0,1,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,10,2814,1375,1439,1208,1225,144,196,9,8,6,4,0,0,8,6,1366,1429,1200,1217,143,194,9,8,6,4,0,0,8,6,9,10,8,8,1,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,11,2504,1251,1253,1083,1067,146,166,10,10,3,4,1,0,8,6,1244,1246,1077,1061,145,165,10,10,3,4,1,0,8,6,7,7,6,6,1,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,12,2434,1185,1249,1068,1122,89,110,13,7,1,2,0,0,14,8,1178,1242,1062,1115,88,110,13,7,1,2,0,0,14,8,7,7,6,7,1,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,13,2065,967,1098,877,976,78,105,5,8,1,3,0,0,6,6,961,1088,873,968,78,104,4,8,1,3,0,0,5,5,6,10,4,8,0,1,1,0,0,0,0,0,1,1 -050,01,039,Alabama,Covington County,6,14,1903,859,1044,770,940,77,96,4,3,0,1,0,0,8,4,853,1037,764,934,77,95,4,3,0,1,0,0,8,4,6,7,6,6,0,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,15,1576,719,857,651,769,61,77,1,4,0,2,0,1,6,4,713,850,645,763,61,77,1,4,0,2,0,0,6,4,6,7,6,6,0,0,0,0,0,0,0,1,0,0 -050,01,039,Alabama,Covington County,6,16,1280,510,770,475,712,29,54,1,1,0,0,1,0,4,3,508,767,475,709,28,54,1,1,0,0,0,0,4,3,2,3,0,3,1,0,0,0,0,0,1,0,0,0 -050,01,039,Alabama,Covington County,6,17,1016,379,637,355,589,21,42,1,1,0,0,0,0,2,5,376,634,353,586,20,42,1,1,0,0,0,0,2,5,3,3,2,3,1,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,18,858,200,658,179,605,20,47,0,0,1,0,0,0,0,6,199,656,178,603,20,47,0,0,1,0,0,0,0,6,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,99,36806,17752,19054,15348,16320,2090,2428,98,101,49,52,3,1,164,152,17564,18894,15186,16183,2074,2411,93,98,46,52,2,0,163,150,188,160,162,137,16,17,5,3,3,0,1,1,1,2 -050,01,039,Alabama,Covington County,7,0,465,235,230,181,194,47,26,1,1,0,0,0,0,6,9,232,227,178,191,47,26,1,1,0,0,0,0,6,9,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,7,1,1864,1021,843,809,669,181,137,2,5,2,4,0,0,27,28,1001,818,791,645,180,136,2,5,2,4,0,0,26,28,20,25,18,24,1,1,0,0,0,0,0,0,1,0 -050,01,039,Alabama,Covington County,7,2,2150,1098,1052,886,866,177,156,3,6,5,4,0,0,27,20,1079,1042,870,856,175,156,3,6,5,4,0,0,26,20,19,10,16,10,2,0,0,0,0,0,0,0,1,0 -050,01,039,Alabama,Covington County,7,3,2526,1278,1248,1049,989,196,227,13,8,6,5,0,0,14,19,1251,1231,1028,976,195,225,9,6,6,5,0,0,13,19,27,17,21,13,1,2,4,2,0,0,0,0,1,0 -050,01,039,Alabama,Covington County,7,4,2500,1293,1207,1074,1004,188,186,10,6,4,3,0,0,17,8,1277,1189,1060,989,188,185,8,4,4,3,0,0,17,8,16,18,14,15,0,1,2,2,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,7,5,2038,995,1043,838,865,136,162,9,10,3,2,0,0,9,4,979,1032,824,856,135,161,9,9,2,2,0,0,9,4,16,11,14,9,1,1,0,1,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,7,6,2021,952,1069,811,880,130,171,6,7,3,5,0,0,2,6,933,1052,796,865,127,170,6,7,2,5,0,0,2,5,19,17,15,15,3,1,0,0,1,0,0,0,0,1 -050,01,039,Alabama,Covington County,7,7,2087,1066,1021,931,841,119,152,6,8,3,11,0,0,7,9,1051,1013,920,835,117,152,6,6,2,11,0,0,6,9,15,8,11,6,2,0,0,2,1,0,0,0,1,0 -050,01,039,Alabama,Covington County,7,8,2287,1140,1147,995,967,126,164,5,5,9,7,0,0,5,4,1126,1137,985,959,125,162,4,5,7,7,0,0,5,4,14,10,10,8,1,2,1,0,2,0,0,0,0,0 -050,01,039,Alabama,Covington County,7,9,2569,1259,1310,1082,1129,154,155,9,7,6,7,0,1,8,11,1243,1297,1070,1118,153,155,7,5,5,7,0,1,8,11,16,13,12,11,1,0,2,2,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,7,10,2830,1383,1447,1223,1220,135,205,7,9,10,7,0,0,8,6,1374,1433,1214,1209,135,204,7,8,10,7,0,0,8,5,9,14,9,11,0,1,0,1,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,7,11,2606,1288,1318,1129,1128,138,169,8,8,4,5,0,0,9,8,1278,1311,1121,1122,137,169,7,8,4,5,0,0,9,7,10,7,8,6,1,0,1,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,7,12,2505,1211,1294,1086,1147,104,129,8,6,1,4,0,0,12,8,1205,1280,1080,1134,104,129,8,5,1,4,0,0,12,8,6,14,6,13,0,0,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,7,13,2066,952,1114,867,1006,72,95,5,5,0,3,0,0,8,5,945,1106,863,1000,70,93,5,5,0,3,0,0,7,5,7,8,4,6,2,2,0,0,0,0,0,0,1,0 -050,01,039,Alabama,Covington County,7,14,1884,872,1012,791,914,71,91,5,1,1,1,0,0,4,5,867,1003,786,906,71,90,5,1,1,1,0,0,4,5,5,9,5,8,0,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,7,15,1644,745,899,674,804,63,83,3,5,1,3,0,0,4,4,738,894,667,799,63,83,3,5,1,3,0,0,4,4,7,5,7,5,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,7,16,1254,497,757,468,697,23,55,2,0,0,0,0,0,4,5,496,753,468,694,23,54,1,0,0,0,0,0,4,5,1,4,0,3,0,1,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,7,17,1025,391,634,369,576,20,51,1,0,0,1,0,0,1,6,389,632,367,574,20,51,1,0,0,1,0,0,1,6,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,7,18,883,216,667,197,612,18,47,0,0,1,1,0,0,0,7,215,664,196,610,18,47,0,0,1,0,0,0,0,7,1,3,1,2,0,0,0,0,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,7,99,37204,17892,19312,15460,16508,2098,2461,103,97,59,73,0,1,172,172,17679,19114,15284,16338,2083,2448,92,86,53,72,0,1,167,169,213,198,176,170,15,13,11,11,6,1,0,0,5,3 -050,01,039,Alabama,Covington County,8,0,465,232,233,195,197,31,26,1,1,0,0,0,0,5,9,229,231,192,195,31,26,1,1,0,0,0,0,5,9,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,8,1,1885,1031,854,806,690,190,124,2,7,2,6,0,0,31,27,1014,826,792,664,189,122,2,7,2,6,0,0,29,27,17,28,14,26,1,2,0,0,0,0,0,0,2,0 -050,01,039,Alabama,Covington County,8,2,2214,1127,1087,901,892,184,161,4,10,6,4,0,0,32,20,1107,1070,886,878,181,161,3,7,6,4,0,0,31,20,20,17,15,14,3,0,1,3,0,0,0,0,1,0 -050,01,039,Alabama,Covington County,8,3,2507,1281,1226,1032,954,212,241,11,7,6,5,0,0,20,19,1263,1205,1021,938,210,238,7,5,6,5,0,0,19,19,18,21,11,16,2,3,4,2,0,0,0,0,1,0 -050,01,039,Alabama,Covington County,8,4,2496,1291,1205,1079,988,182,198,9,6,5,3,0,0,16,10,1272,1183,1062,969,182,197,7,4,5,3,0,0,16,10,19,22,17,19,0,1,2,2,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,8,5,1965,945,1020,786,845,136,155,9,10,3,3,0,0,11,7,924,1008,768,836,134,154,9,9,2,2,0,0,11,7,21,12,18,9,2,1,0,1,1,1,0,0,0,0 -050,01,039,Alabama,Covington County,8,6,2119,1023,1096,873,898,138,175,6,10,3,5,0,0,3,8,1001,1082,855,887,135,174,6,9,2,5,0,0,3,7,22,14,18,11,3,1,0,1,1,0,0,0,0,1 -050,01,039,Alabama,Covington County,8,7,2012,985,1027,853,837,118,166,4,7,2,6,0,0,8,11,967,1013,838,827,117,165,4,5,1,6,0,0,7,10,18,14,15,10,1,1,0,2,1,0,0,0,1,1 -050,01,039,Alabama,Covington County,8,8,2296,1156,1140,1005,960,130,163,7,5,9,6,0,0,5,6,1134,1128,987,950,129,161,6,5,7,6,0,0,5,6,22,12,18,10,1,2,1,0,2,0,0,0,0,0 -050,01,039,Alabama,Covington County,8,9,2563,1253,1310,1073,1129,157,154,9,7,6,7,0,1,8,12,1236,1297,1060,1118,156,154,7,5,5,7,0,1,8,12,17,13,13,11,1,0,2,2,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,8,10,2845,1414,1431,1258,1214,131,197,6,8,10,7,0,0,9,5,1399,1418,1244,1204,130,195,6,7,10,7,0,0,9,5,15,13,14,10,1,2,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,8,11,2740,1345,1395,1177,1195,147,174,10,12,3,5,0,0,8,9,1333,1384,1168,1186,146,173,8,12,3,5,0,0,8,8,12,11,9,9,1,1,2,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,8,12,2519,1223,1296,1087,1129,108,147,16,7,1,4,0,0,11,9,1216,1279,1080,1114,108,147,16,5,1,4,0,0,11,9,7,17,7,15,0,0,0,2,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,8,13,2131,991,1140,914,1032,64,91,4,6,1,3,0,0,8,8,987,1135,910,1028,64,90,4,6,1,3,0,0,8,8,4,5,4,4,0,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,8,14,1867,863,1004,773,899,75,95,7,2,1,3,0,0,7,5,858,997,768,893,75,94,7,2,1,3,0,0,7,5,5,7,5,6,0,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,8,15,1698,742,956,678,860,58,85,2,5,1,2,0,0,3,4,735,948,671,852,58,85,2,5,1,2,0,0,3,4,7,8,7,8,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,8,16,1252,534,718,498,655,29,59,2,0,0,0,0,0,5,4,530,715,495,652,29,59,1,0,0,0,0,0,5,4,4,3,3,3,0,0,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,8,17,973,367,606,347,546,18,54,2,0,0,1,0,0,0,5,364,604,344,544,18,54,2,0,0,1,0,0,0,5,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,8,18,894,225,669,209,615,15,48,1,0,0,1,0,0,0,5,224,666,208,613,15,48,1,0,0,0,0,0,0,5,1,3,1,2,0,0,0,0,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,8,99,37441,18028,19413,15544,16535,2123,2513,112,110,59,71,0,1,190,183,17793,19189,15349,16348,2107,2497,99,94,53,69,0,1,185,180,235,224,195,187,16,16,13,16,6,2,0,0,5,3 -050,01,039,Alabama,Covington County,9,0,459,226,233,188,189,33,31,1,1,0,0,0,0,4,12,223,230,185,186,33,31,1,1,0,0,0,0,4,12,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,9,1,1901,994,907,781,736,177,123,3,7,2,3,0,0,31,38,977,883,768,714,176,121,2,7,2,3,0,0,29,38,17,24,13,22,1,2,1,0,0,0,0,0,2,0 -050,01,039,Alabama,Covington County,9,2,2210,1147,1063,925,861,179,163,5,10,4,5,0,0,34,24,1121,1045,905,846,175,163,4,7,4,5,0,0,33,24,26,18,20,15,4,0,1,3,0,0,0,0,1,0 -050,01,039,Alabama,Covington County,9,3,2482,1261,1221,1020,959,203,228,13,6,6,6,0,0,19,22,1242,1202,1008,945,201,225,9,4,6,6,0,0,18,22,19,19,12,14,2,3,4,2,0,0,0,0,1,0 -050,01,039,Alabama,Covington County,9,4,2561,1324,1237,1092,1012,198,205,8,7,5,3,0,0,21,10,1311,1210,1081,988,198,204,6,5,5,3,0,0,21,10,13,27,11,24,0,1,2,2,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,9,5,1986,983,1003,806,842,154,141,9,10,3,3,0,0,11,7,964,990,790,832,152,140,9,9,2,2,0,0,11,7,19,13,16,10,2,1,0,1,1,1,0,0,0,0 -050,01,039,Alabama,Covington County,9,6,2154,1034,1120,892,904,129,194,7,9,3,5,0,0,3,8,1016,1107,878,894,126,193,7,8,2,5,0,0,3,7,18,13,14,10,3,1,0,1,1,0,0,0,0,1 -050,01,039,Alabama,Covington County,9,7,1969,952,1017,828,825,110,165,4,8,3,9,0,0,7,10,939,1006,818,817,109,164,4,6,2,9,0,0,6,10,13,11,10,8,1,1,0,2,1,0,0,0,1,0 -050,01,039,Alabama,Covington County,9,8,2258,1137,1121,969,940,147,166,6,2,9,6,0,0,6,7,1119,1110,953,931,147,164,5,2,8,6,0,0,6,7,18,11,16,9,0,2,1,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,9,9,2518,1259,1259,1079,1082,157,151,9,7,6,7,0,1,8,11,1246,1244,1070,1069,156,151,7,5,5,7,0,1,8,11,13,15,9,13,1,0,2,2,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,9,10,2819,1379,1440,1223,1236,128,184,8,7,10,7,0,0,10,6,1365,1429,1210,1228,127,182,8,7,10,7,0,0,10,5,14,11,13,8,1,2,0,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,9,11,2809,1407,1402,1216,1198,166,179,10,9,4,4,0,0,11,12,1395,1392,1207,1190,165,178,8,9,4,4,0,0,11,11,12,10,9,8,1,1,2,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,9,12,2497,1225,1272,1080,1094,125,161,8,4,1,4,0,0,11,9,1219,1257,1074,1080,125,161,8,3,1,4,0,0,11,9,6,15,6,14,0,0,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,9,13,2293,1061,1232,976,1122,73,93,5,6,1,3,0,0,6,8,1055,1226,972,1118,71,91,5,6,1,3,0,0,6,8,6,6,4,4,2,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,9,14,1907,877,1030,793,918,68,101,7,2,1,3,0,0,8,6,873,1021,789,910,68,100,7,2,1,3,0,0,8,6,4,9,4,8,0,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,9,15,1689,740,949,670,856,65,82,2,5,1,2,0,0,2,4,734,944,664,851,65,82,2,5,1,2,0,0,2,4,6,5,6,5,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,9,16,1284,561,723,525,655,29,64,2,0,0,0,0,0,5,4,556,720,522,652,28,64,1,0,0,0,0,0,5,4,5,3,3,3,1,0,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,9,17,934,356,578,340,521,14,52,2,0,0,1,0,0,0,4,353,575,337,518,14,52,2,0,0,1,0,0,0,4,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,9,18,901,237,664,221,608,15,52,1,0,0,1,0,0,0,3,236,661,220,606,15,52,1,0,0,0,0,0,0,3,1,3,1,2,0,0,0,0,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,9,99,37631,18160,19471,15624,16558,2170,2535,110,100,59,72,0,1,197,205,17944,19252,15451,16375,2151,2518,96,86,54,70,0,1,192,202,216,219,173,183,19,17,14,14,5,2,0,0,5,3 -050,01,039,Alabama,Covington County,10,0,423,220,203,172,162,40,30,1,1,0,0,0,0,7,10,218,200,170,159,40,30,1,1,0,0,0,0,7,10,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,10,1,1841,933,908,742,741,152,117,3,8,3,3,0,0,33,39,919,887,732,723,151,114,2,8,3,3,0,0,31,39,14,21,10,18,1,3,1,0,0,0,0,0,2,0 -050,01,039,Alabama,Covington County,10,2,2272,1214,1058,959,857,203,158,7,10,7,6,0,0,38,27,1180,1038,931,840,199,158,6,7,7,6,0,0,37,27,34,20,28,17,4,0,1,3,0,0,0,0,1,0 -050,01,039,Alabama,Covington County,10,3,2365,1228,1137,992,886,197,215,11,6,5,6,0,0,23,24,1211,1118,982,872,195,212,7,4,5,6,0,0,22,24,17,19,10,14,2,3,4,2,0,0,0,0,1,0 -050,01,039,Alabama,Covington County,10,4,2552,1314,1238,1083,999,200,217,6,5,6,3,0,0,19,14,1297,1217,1068,980,200,217,4,3,6,3,0,0,19,14,17,21,15,19,0,0,2,2,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,10,5,1967,964,1003,794,843,143,142,9,9,5,2,0,0,13,7,944,989,778,832,141,141,9,8,3,1,0,0,13,7,20,14,16,11,2,1,0,1,2,1,0,0,0,0 -050,01,039,Alabama,Covington County,10,6,2162,1049,1113,908,903,126,187,6,9,4,6,0,0,5,8,1023,1094,886,887,123,186,6,8,3,6,0,0,5,7,26,19,22,16,3,1,0,1,1,0,0,0,0,1 -050,01,039,Alabama,Covington County,10,7,1911,932,979,805,798,113,155,4,7,3,8,0,0,7,11,917,969,793,791,112,154,4,5,2,8,0,0,6,11,15,10,12,7,1,1,0,2,1,0,0,0,1,0 -050,01,039,Alabama,Covington County,10,8,2241,1136,1105,968,912,145,177,6,2,11,6,0,0,6,8,1114,1093,950,902,144,175,5,2,9,6,0,0,6,8,22,12,18,10,1,2,1,0,2,0,0,0,0,0 -050,01,039,Alabama,Covington County,10,9,2425,1152,1273,981,1093,148,151,8,10,7,7,0,1,8,11,1137,1261,970,1084,147,151,6,7,6,7,0,1,8,11,15,12,11,9,1,0,2,3,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,10,10,2759,1378,1381,1232,1186,122,175,7,10,12,5,0,0,5,5,1367,1369,1222,1177,121,173,7,10,12,5,0,0,5,4,11,12,10,9,1,2,0,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,10,11,2921,1478,1443,1274,1240,177,181,10,7,5,4,0,0,12,11,1464,1434,1263,1233,176,180,8,7,5,4,0,0,12,10,14,9,11,7,1,1,2,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,10,12,2501,1239,1262,1089,1074,123,167,11,6,0,4,0,0,16,11,1232,1253,1082,1067,123,167,11,4,0,4,0,0,16,11,7,9,7,7,0,0,0,2,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,10,13,2390,1112,1278,1003,1155,91,101,9,9,1,5,0,0,8,8,1107,1271,999,1150,90,99,9,9,1,5,0,0,8,8,5,7,4,5,1,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,10,14,1967,932,1035,844,929,73,94,6,2,1,3,0,0,8,7,926,1026,838,921,73,93,6,2,1,3,0,0,8,7,6,9,6,8,0,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,10,15,1706,721,985,657,893,58,82,2,4,1,2,0,0,3,4,711,979,647,887,58,82,2,4,1,2,0,0,3,4,10,6,10,6,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,10,16,1314,581,733,544,663,30,67,2,0,0,0,0,0,5,3,576,730,541,660,29,67,1,0,0,0,0,0,5,3,5,3,3,3,1,0,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,10,17,938,365,573,345,528,18,40,2,0,0,1,0,0,0,4,362,570,342,525,18,40,2,0,0,1,0,0,0,4,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,10,18,890,239,651,223,583,14,65,2,0,0,1,0,0,0,2,237,648,222,581,14,65,1,0,0,0,0,0,0,2,2,3,1,2,0,0,1,0,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,10,99,37545,18187,19358,15615,16445,2173,2521,112,105,71,72,0,1,216,214,17942,19146,15416,16271,2154,2504,97,89,64,70,0,1,211,211,245,212,199,174,19,17,15,16,7,2,0,0,5,3 -050,01,039,Alabama,Covington County,11,0,439,231,208,185,171,38,27,2,1,0,0,0,0,6,9,227,204,181,167,38,27,2,1,0,0,0,0,6,9,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,11,1,1816,931,885,737,712,151,120,3,6,3,3,0,0,37,44,914,862,724,692,150,117,2,6,3,3,0,0,35,44,17,23,13,20,1,3,1,0,0,0,0,0,2,0 -050,01,039,Alabama,Covington County,11,2,2303,1229,1074,978,870,196,157,6,11,6,6,0,0,43,30,1196,1055,952,854,191,157,5,8,6,6,0,0,42,30,33,19,26,16,5,0,1,3,0,0,0,0,1,0 -050,01,039,Alabama,Covington County,11,3,2431,1239,1192,988,927,205,226,14,5,6,7,0,0,26,27,1220,1171,977,911,203,223,9,3,6,7,0,0,25,27,19,21,11,16,2,3,5,2,0,0,0,0,1,0 -050,01,039,Alabama,Covington County,11,4,2522,1330,1192,1083,939,214,231,5,5,7,3,0,0,21,14,1320,1170,1075,919,214,231,3,3,7,3,0,0,21,14,10,22,8,20,0,0,2,2,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,11,5,1963,956,1007,777,854,151,135,9,9,5,2,0,0,14,7,932,994,757,844,149,134,9,8,3,1,0,0,14,7,24,13,20,10,2,1,0,1,2,1,0,0,0,0 -050,01,039,Alabama,Covington County,11,6,2132,1025,1107,880,905,129,178,7,9,4,6,0,0,5,9,999,1090,858,891,126,177,7,8,3,6,0,0,5,8,26,17,22,14,3,1,0,1,1,0,0,0,0,1 -050,01,039,Alabama,Covington County,11,7,1950,953,997,833,823,105,143,4,9,3,12,0,0,8,10,940,986,823,815,104,142,4,7,2,12,0,0,7,10,13,11,10,8,1,1,0,2,1,0,0,0,1,0 -050,01,039,Alabama,Covington County,11,8,2258,1133,1125,967,923,141,186,7,2,12,6,0,0,6,8,1105,1109,943,909,140,184,6,2,10,6,0,0,6,8,28,16,24,14,1,2,1,0,2,0,0,0,0,0 -050,01,039,Alabama,Covington County,11,9,2378,1139,1239,963,1062,151,144,9,10,7,9,0,2,9,12,1121,1223,950,1049,150,144,6,7,6,9,0,2,9,12,18,16,13,13,1,0,3,3,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,11,10,2686,1350,1336,1200,1142,128,176,5,8,11,5,0,0,6,5,1337,1327,1188,1136,127,174,5,8,11,5,0,0,6,4,13,9,12,6,1,2,0,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,11,11,2898,1455,1443,1260,1240,169,174,9,11,6,6,0,0,11,12,1441,1436,1249,1235,168,173,7,11,6,6,0,0,11,11,14,7,11,5,1,1,2,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,11,12,2598,1264,1334,1106,1133,130,181,13,6,0,3,0,0,15,11,1257,1323,1099,1124,130,181,13,4,0,3,0,0,15,11,7,11,7,9,0,0,0,2,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,11,13,2394,1137,1257,1029,1138,92,97,7,8,1,5,0,0,8,9,1131,1251,1025,1134,90,95,7,8,1,5,0,0,8,9,6,6,4,4,2,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,11,14,2021,942,1079,858,957,65,109,7,2,1,4,0,0,11,7,935,1068,851,947,65,108,7,2,1,4,0,0,11,7,7,11,7,10,0,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,11,15,1699,716,983,650,892,60,81,2,4,1,2,0,0,3,4,708,976,642,885,60,81,2,4,1,2,0,0,3,4,8,7,8,7,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,11,16,1334,594,740,557,662,29,75,2,0,0,0,0,0,6,3,589,737,554,659,28,75,1,0,0,0,0,0,6,3,5,3,3,3,1,0,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,11,17,940,346,594,328,545,16,44,2,0,0,1,0,0,0,4,343,591,325,542,16,44,2,0,0,1,0,0,0,4,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,11,18,886,254,632,237,570,15,56,2,0,0,1,0,0,0,5,252,629,236,568,15,56,1,0,0,0,0,0,0,5,2,3,1,2,0,0,1,0,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,11,99,37648,18224,19424,15616,16465,2185,2540,115,106,73,81,0,2,235,230,17967,19202,15409,16281,2164,2523,98,90,66,79,0,2,230,227,257,222,207,184,21,17,17,16,7,2,0,0,5,3 -050,01,039,Alabama,Covington County,12,0,439,229,210,179,169,42,31,2,1,0,0,0,0,6,9,225,204,175,163,42,31,2,1,0,0,0,0,6,9,4,6,4,6,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,12,1,1826,960,866,752,703,157,110,3,9,3,3,0,0,45,41,943,844,739,684,156,107,2,9,3,3,0,0,43,41,17,22,13,19,1,3,1,0,0,0,0,0,2,0 -050,01,039,Alabama,Covington County,12,2,2347,1242,1105,978,899,207,153,6,11,6,7,0,0,45,35,1211,1087,954,884,202,153,5,8,6,7,0,0,44,35,31,18,24,15,5,0,1,3,0,0,0,0,1,0 -050,01,039,Alabama,Covington County,12,3,2408,1232,1176,990,916,196,219,14,6,6,7,0,0,26,28,1214,1153,980,898,194,216,9,4,6,7,0,0,25,28,18,23,10,18,2,3,5,2,0,0,0,0,1,0 -050,01,039,Alabama,Covington County,12,4,2482,1295,1187,1048,933,213,232,5,5,7,3,0,0,22,14,1284,1166,1039,914,213,232,3,3,7,3,0,0,22,14,11,21,9,19,0,0,2,2,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,12,5,1961,963,998,784,841,151,139,9,9,5,2,0,0,14,7,941,984,766,830,149,138,9,8,3,1,0,0,14,7,22,14,18,11,2,1,0,1,2,1,0,0,0,0 -050,01,039,Alabama,Covington County,12,6,2099,1021,1078,876,878,129,175,7,10,4,6,0,0,5,9,999,1065,858,868,126,174,7,9,3,6,0,0,5,8,22,13,18,10,3,1,0,1,1,0,0,0,0,1 -050,01,039,Alabama,Covington County,12,7,2011,976,1035,858,860,102,149,4,9,3,7,0,0,9,10,957,1024,842,852,101,148,4,7,2,7,0,0,8,10,19,11,16,8,1,1,0,2,1,0,0,0,1,0 -050,01,039,Alabama,Covington County,12,8,2258,1121,1137,954,941,141,178,8,2,12,8,0,0,6,8,1100,1123,937,929,140,176,7,2,10,8,0,0,6,8,21,14,17,12,1,2,1,0,2,0,0,0,0,0 -050,01,039,Alabama,Covington County,12,9,2260,1093,1167,920,997,148,138,9,10,7,9,0,1,9,12,1074,1151,906,984,147,138,6,7,6,9,0,1,9,12,19,16,14,13,1,0,3,3,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,12,10,2731,1359,1372,1195,1167,137,184,7,9,13,7,0,0,7,5,1348,1356,1185,1156,136,181,7,8,13,7,0,0,7,4,11,16,10,11,1,3,0,1,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,12,11,2920,1455,1465,1258,1253,168,182,10,11,6,6,0,0,13,13,1438,1455,1244,1245,167,181,8,11,6,6,0,0,13,12,17,10,14,8,1,1,2,0,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,12,12,2626,1276,1350,1121,1155,127,173,13,6,0,5,0,0,15,11,1267,1339,1112,1146,127,173,13,4,0,5,0,0,15,11,9,11,9,9,0,0,0,2,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,12,13,2458,1175,1283,1050,1153,109,107,7,9,1,5,0,0,8,9,1169,1274,1046,1146,107,105,7,9,1,5,0,0,8,9,6,9,4,7,2,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,12,14,2030,944,1086,862,973,63,99,7,2,1,4,0,0,11,8,937,1075,855,963,63,98,7,2,1,4,0,0,11,8,7,11,7,10,0,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,12,15,1695,726,969,657,869,63,90,2,4,1,2,0,0,3,4,718,962,649,862,63,90,2,4,1,2,0,0,3,4,8,7,8,7,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,12,16,1372,602,770,564,705,29,62,2,0,0,0,0,0,7,3,597,767,561,702,28,62,1,0,0,0,0,0,7,3,5,3,3,3,1,0,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,12,17,937,356,581,337,539,17,37,2,0,0,1,0,0,0,4,353,578,334,536,17,37,2,0,0,1,0,0,0,4,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,12,18,905,263,642,245,577,16,59,2,0,0,1,0,0,0,5,261,639,244,575,16,59,1,0,0,0,0,0,0,5,2,3,1,2,0,0,1,0,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,12,99,37765,18288,19477,15628,16528,2215,2517,119,113,75,83,0,1,251,235,18036,19246,15426,16337,2194,2499,102,96,68,81,0,1,246,232,252,231,202,191,21,18,17,17,7,2,0,0,5,3 -050,01,039,Alabama,Covington County,13,0,444,230,214,178,171,42,32,2,1,1,0,0,0,7,10,226,204,174,164,42,31,2,1,1,0,0,0,7,8,4,10,4,7,0,1,0,0,0,0,0,0,0,2 -050,01,039,Alabama,Covington County,13,1,1822,958,864,746,699,158,109,4,7,3,6,2,0,45,43,938,839,733,681,158,107,3,6,2,5,0,0,42,40,20,25,13,18,0,2,1,1,1,1,2,0,3,3 -050,01,039,Alabama,Covington County,13,2,2347,1239,1108,979,899,210,154,4,12,6,8,0,1,40,34,1204,1085,953,882,204,153,4,8,5,8,0,1,38,33,35,23,26,17,6,1,0,4,1,0,0,0,2,1 -050,01,039,Alabama,Covington County,13,3,2411,1234,1177,988,914,199,220,13,6,4,6,0,2,30,29,1209,1151,976,897,196,215,8,4,4,6,0,0,25,29,25,26,12,17,3,5,5,2,0,0,0,2,5,0 -050,01,039,Alabama,Covington County,13,4,2468,1291,1177,1041,923,212,231,7,7,7,4,1,0,23,12,1273,1156,1032,905,211,229,4,6,5,4,0,0,21,12,18,21,9,18,1,2,3,1,2,0,1,0,2,0 -050,01,039,Alabama,Covington County,13,5,1963,965,998,787,841,152,139,7,6,6,3,0,2,13,7,942,983,767,829,150,138,7,5,5,3,0,2,13,6,23,15,20,12,2,1,0,1,1,0,0,0,0,1 -050,01,039,Alabama,Covington County,13,6,2106,1023,1083,877,879,130,175,6,9,4,6,2,2,4,12,1002,1064,859,867,128,173,6,9,4,4,1,2,4,9,21,19,18,12,2,2,0,0,0,2,1,0,0,3 -050,01,039,Alabama,Covington County,13,7,2026,984,1042,861,871,102,149,4,7,4,7,2,1,11,7,964,1029,845,861,101,148,3,6,4,7,0,0,11,7,20,13,16,10,1,1,1,1,0,0,2,1,0,0 -050,01,039,Alabama,Covington County,13,8,2231,1104,1127,945,931,141,177,7,1,8,7,0,0,3,11,1084,1114,928,919,139,176,7,1,7,7,0,0,3,11,20,13,17,12,2,1,0,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,13,9,2251,1096,1155,922,995,149,137,9,7,7,8,0,0,9,8,1075,1138,907,981,148,136,5,5,6,8,0,0,9,8,21,17,15,14,1,1,4,2,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,13,10,2713,1351,1362,1191,1161,136,184,5,9,13,6,0,0,6,2,1338,1347,1178,1149,136,182,5,8,13,6,0,0,6,2,13,15,13,12,0,2,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,13,11,2931,1459,1472,1260,1258,168,186,10,11,8,7,0,0,13,10,1440,1460,1245,1249,168,183,7,11,8,7,0,0,12,10,19,12,15,9,0,3,3,0,0,0,0,0,1,0 -050,01,039,Alabama,Covington County,13,12,2636,1281,1355,1125,1160,129,177,12,4,1,3,0,0,14,11,1272,1345,1116,1151,129,177,12,3,1,3,0,0,14,11,9,10,9,9,0,0,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,13,13,2475,1189,1286,1062,1161,110,107,8,7,1,5,0,0,8,6,1182,1277,1058,1154,107,105,8,7,1,5,0,0,8,6,7,9,4,7,3,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,13,14,2036,946,1090,866,977,65,101,7,2,0,4,0,0,8,6,938,1080,859,968,64,100,7,2,0,4,0,0,8,6,8,10,7,9,1,1,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,13,15,1703,729,974,658,872,65,91,0,3,2,3,0,0,4,5,721,967,650,865,65,91,0,3,2,3,0,0,4,5,8,7,8,7,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,13,16,1366,598,768,562,704,28,60,3,0,0,0,0,0,5,4,594,765,560,701,27,60,2,0,0,0,0,0,5,4,4,3,2,3,1,0,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,13,17,938,357,581,335,539,18,37,2,1,0,1,0,0,2,3,355,579,333,537,18,37,2,1,0,1,0,0,2,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,13,18,909,265,644,246,579,17,60,2,0,0,0,0,0,0,5,263,642,245,577,17,60,1,0,0,0,0,0,0,5,2,2,1,2,0,0,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,13,99,37776,18299,19477,15629,16534,2231,2526,112,100,75,84,7,8,245,225,18020,19225,15418,16337,2208,2501,93,86,68,81,1,5,232,215,279,252,211,197,23,25,19,14,7,3,6,3,13,10 -050,01,041,Alabama,Crenshaw County,1,0,149,78,71,64,45,14,24,0,1,0,0,0,0,0,1,77,71,63,45,14,24,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,1,653,336,317,218,230,107,82,2,1,1,0,0,0,8,4,330,315,214,228,105,82,2,1,1,0,0,0,8,4,6,2,4,2,2,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,2,971,507,464,356,319,142,142,4,1,0,1,0,0,5,1,499,458,350,314,142,141,4,1,0,1,0,0,3,1,8,6,6,5,0,1,0,0,0,0,0,0,2,0 -050,01,041,Alabama,Crenshaw County,1,3,984,533,451,380,324,145,113,4,7,0,0,0,0,4,7,529,448,376,321,145,113,4,7,0,0,0,0,4,7,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,4,952,491,461,329,309,149,148,6,2,0,0,0,0,7,2,487,460,326,308,149,148,6,2,0,0,0,0,6,2,4,1,3,1,0,0,0,0,0,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,1,5,746,365,381,266,251,97,129,1,1,1,0,0,0,0,0,364,380,265,250,97,129,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,6,848,401,447,327,322,73,119,0,2,1,2,0,0,0,2,398,444,325,320,72,118,0,2,1,2,0,0,0,2,3,3,2,2,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,7,775,345,430,282,305,59,121,2,0,0,1,0,0,2,3,340,425,278,301,58,120,2,0,0,1,0,0,2,3,5,5,4,4,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,8,985,461,524,352,388,103,129,3,2,0,0,0,0,3,5,458,523,351,387,101,129,3,2,0,0,0,0,3,5,3,1,1,1,2,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,9,988,501,487,394,330,102,145,2,4,1,1,0,0,2,7,499,483,393,327,102,145,2,4,1,1,0,0,1,6,2,4,1,3,0,0,0,0,0,0,0,0,1,1 -050,01,041,Alabama,Crenshaw County,1,10,940,442,498,329,372,106,121,4,0,1,1,0,0,2,4,441,497,328,371,106,121,4,0,1,1,0,0,2,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,11,948,443,505,343,388,95,110,1,3,1,1,1,0,2,3,442,503,343,388,94,108,1,3,1,1,1,0,2,3,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,12,737,384,353,314,274,68,77,1,0,0,2,0,0,1,0,381,348,312,270,67,76,1,0,0,2,0,0,1,0,3,5,2,4,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,13,645,259,386,198,285,60,100,0,0,0,0,0,0,1,1,256,382,196,283,59,98,0,0,0,0,0,0,1,1,3,4,2,2,1,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,14,614,290,324,229,253,60,71,0,0,0,0,0,0,1,0,290,324,229,253,60,71,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,15,550,235,315,187,248,48,65,0,0,0,0,0,0,0,2,235,315,187,248,48,65,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,16,520,195,325,153,255,42,68,0,1,0,0,0,0,0,1,194,325,153,255,41,68,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,17,341,104,237,87,191,17,43,0,1,0,0,0,0,0,2,103,236,86,190,17,43,0,1,0,0,0,0,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,18,311,90,221,56,155,34,65,0,0,0,0,0,0,0,1,90,220,56,155,34,64,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,99,13657,6460,7197,4864,5244,1521,1872,30,26,6,9,1,0,38,46,6413,7157,4831,5214,1511,1863,30,26,6,9,1,0,34,45,47,40,33,30,10,9,0,0,0,0,0,0,4,1 -050,01,041,Alabama,Crenshaw County,2,0,149,78,71,64,45,14,24,0,1,0,0,0,0,0,1,77,71,63,45,14,24,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,1,652,336,316,218,230,107,82,2,1,1,0,0,0,8,3,330,314,214,228,105,82,2,1,1,0,0,0,8,3,6,2,4,2,2,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,2,967,505,462,354,317,142,142,4,1,0,1,0,0,5,1,497,456,348,312,142,141,4,1,0,1,0,0,3,1,8,6,6,5,0,1,0,0,0,0,0,0,2,0 -050,01,041,Alabama,Crenshaw County,2,3,984,533,451,380,324,145,113,4,7,0,0,0,0,4,7,529,448,376,321,145,113,4,7,0,0,0,0,4,7,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,4,957,496,461,332,309,151,148,6,2,0,0,0,0,7,2,492,460,329,308,151,148,6,2,0,0,0,0,6,2,4,1,3,1,0,0,0,0,0,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,2,5,756,369,387,269,255,98,131,1,1,1,0,0,0,0,0,368,386,268,254,98,131,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,6,843,399,444,325,319,73,119,0,2,1,2,0,0,0,2,396,441,323,317,72,118,0,2,1,2,0,0,0,2,3,3,2,2,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,7,775,345,430,281,305,60,121,2,0,0,1,0,0,2,3,340,425,277,301,59,120,2,0,0,1,0,0,2,3,5,5,4,4,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,8,984,462,522,352,386,104,129,3,2,0,0,0,0,3,5,459,521,351,385,102,129,3,2,0,0,0,0,3,5,3,1,1,1,2,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,9,992,503,489,395,331,103,146,2,4,1,1,0,0,2,7,501,485,394,328,103,146,2,4,1,1,0,0,1,6,2,4,1,3,0,0,0,0,0,0,0,0,1,1 -050,01,041,Alabama,Crenshaw County,2,10,949,447,502,333,375,107,122,4,0,1,1,0,0,2,4,446,501,332,374,107,122,4,0,1,1,0,0,2,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,11,960,448,512,346,394,97,111,1,3,1,1,1,0,2,3,447,510,346,394,96,109,1,3,1,1,1,0,2,3,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,12,743,388,355,318,276,68,77,1,0,0,2,0,0,1,0,385,350,316,272,67,76,1,0,0,2,0,0,1,0,3,5,2,4,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,13,646,259,387,198,286,60,100,0,0,0,0,0,0,1,1,256,383,196,284,59,98,0,0,0,0,0,0,1,1,3,4,2,2,1,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,14,610,289,321,228,250,60,71,0,0,0,0,0,0,1,0,289,321,228,250,60,71,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,15,549,235,314,187,247,48,65,0,0,0,0,0,0,0,2,235,314,187,247,48,65,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,16,519,195,324,153,254,42,68,0,1,0,0,0,0,0,1,194,324,153,254,41,68,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,17,343,104,239,87,193,17,43,0,1,0,0,0,0,0,2,103,238,86,192,17,43,0,1,0,0,0,0,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,18,314,90,224,56,158,34,65,0,0,0,0,0,0,0,1,90,223,56,158,34,64,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,99,13692,6481,7211,4876,5254,1530,1877,30,26,6,9,1,0,38,45,6434,7171,4843,5224,1520,1868,30,26,6,9,1,0,34,44,47,40,33,30,10,9,0,0,0,0,0,0,4,1 -050,01,041,Alabama,Crenshaw County,3,0,164,82,82,62,51,19,28,0,1,0,0,0,0,1,2,81,82,61,51,19,28,0,1,0,0,0,0,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,1,672,344,328,218,236,112,84,2,1,4,0,0,0,8,7,338,324,214,232,110,84,2,1,4,0,0,0,8,7,6,4,4,4,2,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,2,937,506,431,338,307,157,119,4,1,1,2,0,0,6,2,496,425,330,302,157,118,4,1,1,2,0,0,4,2,10,6,8,5,0,1,0,0,0,0,0,0,2,0 -050,01,041,Alabama,Crenshaw County,3,3,1023,534,489,379,344,146,131,4,7,0,0,0,0,5,7,529,486,374,341,146,131,4,7,0,0,0,0,5,7,5,3,5,3,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,4,942,502,440,341,297,149,138,6,2,0,1,0,0,6,2,498,438,337,295,149,138,6,2,0,1,0,0,6,2,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,5,734,352,382,251,258,99,122,1,1,1,1,0,0,0,0,349,381,248,257,99,122,1,1,1,1,0,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,6,829,391,438,318,305,71,127,0,2,2,2,0,0,0,2,384,435,312,303,70,126,0,2,2,2,0,0,0,2,7,3,6,2,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,7,794,370,424,303,305,61,113,2,0,2,3,0,0,2,3,365,419,299,301,60,112,2,0,2,3,0,0,2,3,5,5,4,4,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,8,955,448,507,342,381,99,118,3,2,1,1,0,0,3,5,444,506,340,380,97,118,3,2,1,1,0,0,3,5,4,1,2,1,2,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,9,1003,505,498,401,335,97,151,2,4,3,1,0,0,2,7,503,494,400,332,97,151,2,4,3,1,0,0,1,6,2,4,1,3,0,0,0,0,0,0,0,0,1,1 -050,01,041,Alabama,Crenshaw County,3,10,949,434,515,321,383,106,127,4,0,1,1,0,0,2,4,433,514,320,382,106,127,4,0,1,1,0,0,2,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,11,998,482,516,364,400,112,109,1,3,2,1,1,0,2,3,481,514,364,400,111,107,1,3,2,1,1,0,2,3,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,12,763,399,364,329,282,68,80,1,0,0,2,0,0,1,0,396,359,327,278,67,79,1,0,0,2,0,0,1,0,3,5,2,4,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,13,628,254,374,199,281,54,92,0,0,0,0,0,0,1,1,251,370,197,279,53,90,0,0,0,0,0,0,1,1,3,4,2,2,1,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,14,630,281,349,220,266,60,83,0,0,0,0,0,0,1,0,281,349,220,266,60,83,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,15,554,232,322,189,252,43,68,0,0,0,0,0,0,0,2,232,322,189,252,43,68,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,16,462,178,284,141,217,37,65,0,1,0,0,0,0,0,1,177,284,141,217,36,65,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,17,379,122,257,95,208,27,46,0,1,0,0,0,0,0,2,121,256,94,207,27,46,0,1,0,0,0,0,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,18,308,88,220,57,158,31,61,0,0,0,0,0,0,0,1,88,219,57,158,31,60,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,99,13724,6504,7220,4868,5266,1548,1862,30,26,17,15,1,0,40,51,6447,7177,4824,5233,1538,1853,30,26,17,15,1,0,37,50,57,43,44,33,10,9,0,0,0,0,0,0,3,1 -050,01,041,Alabama,Crenshaw County,4,0,174,91,83,67,65,22,16,0,1,0,0,0,0,2,1,90,83,66,65,22,16,0,1,0,0,0,0,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,1,674,355,319,243,229,97,84,2,1,4,0,0,0,9,5,345,314,235,224,95,84,2,1,4,0,0,0,9,5,10,5,8,5,2,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,2,905,474,431,322,300,138,125,4,1,3,3,0,0,7,2,464,422,314,292,138,124,4,1,3,3,0,0,5,2,10,9,8,8,0,1,0,0,0,0,0,0,2,0 -050,01,041,Alabama,Crenshaw County,4,3,1029,548,481,377,331,159,135,4,7,1,1,0,0,7,7,543,478,372,328,159,135,4,7,1,1,0,0,7,7,5,3,5,3,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,4,956,499,457,344,306,141,144,6,3,0,2,0,0,8,2,494,454,340,303,141,144,6,3,0,2,0,0,7,2,5,3,4,3,0,0,0,0,0,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,4,5,745,368,377,252,265,113,110,1,1,1,0,0,0,1,1,359,376,244,264,113,110,1,1,1,0,0,0,0,1,9,1,8,1,0,0,0,0,0,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,4,6,798,368,430,292,304,73,120,0,2,3,2,0,0,0,2,362,425,287,300,72,119,0,2,3,2,0,0,0,2,6,5,5,4,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,7,780,380,400,318,292,56,101,1,0,3,4,0,0,2,3,374,395,313,288,55,100,1,0,3,4,0,0,2,3,6,5,5,4,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,8,929,425,504,317,379,99,118,3,2,3,1,0,0,3,4,420,503,314,378,97,118,3,2,3,1,0,0,3,4,5,1,3,1,2,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,9,974,491,483,387,329,98,140,1,4,4,2,0,0,1,8,490,479,386,326,98,140,1,4,4,2,0,0,1,7,1,4,1,3,0,0,0,0,0,0,0,0,0,1 -050,01,041,Alabama,Crenshaw County,4,10,957,444,513,331,376,105,131,4,0,2,2,0,0,2,4,442,512,329,375,105,131,4,0,2,2,0,0,2,4,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,11,976,483,493,362,376,116,108,1,4,2,2,0,0,2,3,482,491,362,376,115,106,1,4,2,2,0,0,2,3,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,12,813,410,403,339,316,68,82,2,1,0,3,0,0,1,1,407,398,337,312,67,81,2,1,0,3,0,0,1,1,3,5,2,4,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,13,651,271,380,218,290,52,89,0,0,0,0,0,0,1,1,268,375,216,288,51,86,0,0,0,0,0,0,1,1,3,5,2,2,1,3,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,14,602,272,330,206,246,65,84,0,0,0,0,0,0,1,0,272,330,206,246,65,84,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,15,540,228,312,182,250,46,60,0,0,0,0,0,0,0,2,228,312,182,250,46,60,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,16,447,186,261,146,203,40,56,0,1,0,0,0,0,0,1,184,261,146,203,38,56,0,1,0,0,0,0,0,1,2,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,17,370,117,253,95,209,22,42,0,1,0,0,0,0,0,1,116,252,94,208,22,42,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,18,315,84,231,52,168,32,62,0,0,0,0,0,0,0,1,84,230,52,168,32,61,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,99,13635,6494,7141,4850,5234,1542,1807,29,29,26,22,0,0,47,49,6424,7090,4795,5194,1531,1797,29,29,26,22,0,0,43,48,70,51,55,40,11,10,0,0,0,0,0,0,4,1 -050,01,041,Alabama,Crenshaw County,5,0,162,91,71,72,59,16,9,0,1,0,0,0,0,3,2,90,71,71,59,16,9,0,1,0,0,0,0,3,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,1,705,364,341,246,248,102,84,2,1,5,1,0,0,9,7,359,335,242,242,101,84,2,1,5,1,0,0,9,7,5,6,4,6,1,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,2,887,447,440,297,285,132,145,4,1,4,3,0,0,10,6,439,435,291,281,132,144,4,1,4,3,0,0,8,6,8,5,6,4,0,1,0,0,0,0,0,0,2,0 -050,01,041,Alabama,Crenshaw County,5,3,1007,504,503,355,344,136,145,4,6,2,1,0,0,7,7,497,499,348,340,136,145,4,6,2,1,0,0,7,7,7,4,7,4,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,4,938,513,425,358,296,140,121,6,3,0,2,0,0,9,3,507,422,353,293,140,121,6,3,0,2,0,0,8,3,6,3,5,3,0,0,0,0,0,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,5,5,784,388,396,281,279,103,113,1,1,2,1,0,0,1,2,382,395,276,278,103,113,1,1,2,1,0,0,0,2,6,1,5,1,0,0,0,0,0,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,5,6,726,342,384,274,278,64,100,0,2,4,2,0,0,0,2,333,379,266,274,63,99,0,2,4,2,0,0,0,2,9,5,8,4,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,7,838,418,420,336,293,75,118,1,0,4,6,0,0,2,3,412,415,331,289,74,117,1,0,4,6,0,0,2,3,6,5,5,4,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,8,879,395,484,298,360,88,116,2,2,5,2,0,0,2,4,388,483,293,359,86,116,2,2,5,2,0,0,2,4,7,1,5,1,2,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,9,991,509,482,393,334,109,133,1,3,5,4,0,0,1,8,507,477,391,331,109,133,1,3,5,3,0,0,1,7,2,5,2,3,0,0,0,0,0,1,0,0,0,1 -050,01,041,Alabama,Crenshaw County,5,10,962,449,513,343,366,96,140,4,1,3,2,0,0,3,4,446,512,340,365,96,140,4,1,3,2,0,0,3,4,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,11,980,484,496,353,371,124,117,2,4,2,2,1,0,2,2,482,493,352,370,123,115,2,4,2,2,1,0,2,2,2,3,1,1,1,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,12,868,428,440,356,350,69,84,2,1,0,3,0,0,1,2,425,435,354,346,68,83,2,1,0,3,0,0,1,2,3,5,2,4,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,13,654,305,349,246,261,56,84,1,0,1,2,0,0,1,2,302,345,243,259,56,82,1,0,1,2,0,0,1,2,3,4,3,2,0,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,14,625,280,345,210,259,67,86,1,0,0,0,0,0,2,0,280,345,210,259,67,86,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,15,529,212,317,165,249,46,66,0,0,0,0,0,0,1,2,212,317,165,249,46,66,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,16,471,207,264,158,214,49,48,0,1,0,0,0,0,0,1,206,264,158,214,48,48,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,17,351,102,249,86,203,16,43,0,1,0,0,0,0,0,2,101,248,85,202,16,43,0,1,0,0,0,0,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,18,295,76,219,49,157,27,61,0,0,0,0,0,0,0,1,76,218,49,157,27,60,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,99,13652,6514,7138,4876,5206,1515,1813,31,28,37,31,1,0,54,60,6444,7088,4818,5167,1507,1804,31,28,37,30,1,0,50,59,70,50,58,39,8,9,0,0,0,1,0,0,4,1 -050,01,041,Alabama,Crenshaw County,6,0,183,97,86,72,66,22,16,0,1,0,0,0,0,3,3,96,86,71,66,22,16,0,1,0,0,0,0,3,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,1,696,355,341,248,250,87,79,3,1,8,1,0,0,9,10,349,335,243,244,86,79,3,1,8,1,0,0,9,10,6,6,5,6,1,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,2,914,476,438,322,283,138,146,4,1,4,4,0,0,8,4,470,432,317,278,138,145,4,1,4,4,0,0,7,4,6,6,5,5,0,1,0,0,0,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,6,3,990,492,498,343,332,135,151,4,6,2,1,0,0,8,8,483,495,334,329,135,151,4,6,2,1,0,0,8,8,9,3,9,3,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,4,948,519,429,363,288,143,132,5,3,0,3,0,0,8,3,514,425,358,284,143,132,5,3,0,3,0,0,8,3,5,4,5,4,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,5,743,355,388,261,279,90,105,1,1,2,1,0,0,1,2,349,387,256,278,90,105,1,1,2,1,0,0,0,2,6,1,5,1,0,0,0,0,0,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,6,6,705,334,371,269,267,58,98,0,2,5,2,0,0,2,2,322,365,258,262,58,97,0,2,5,2,0,0,1,2,12,6,11,5,0,1,0,0,0,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,6,7,844,403,441,319,319,77,112,1,0,5,7,0,0,1,3,397,436,314,315,76,111,1,0,5,7,0,0,1,3,6,5,5,4,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,8,857,392,465,306,341,76,116,2,3,5,3,1,0,2,2,385,464,301,340,74,116,2,3,5,3,1,0,2,2,7,1,5,1,2,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,9,973,506,467,379,334,118,118,1,3,7,3,0,0,1,9,503,463,377,331,117,118,1,3,7,3,0,0,1,8,3,4,2,3,1,0,0,0,0,0,0,0,0,1 -050,01,041,Alabama,Crenshaw County,6,10,993,482,511,374,360,98,142,4,2,3,2,0,0,3,5,479,510,371,359,98,142,4,2,3,2,0,0,3,5,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,11,977,468,509,335,367,125,133,2,4,3,2,1,0,2,3,466,506,334,366,124,131,2,4,3,2,1,0,2,3,2,3,1,1,1,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,12,900,433,467,355,371,74,90,2,1,0,3,0,0,2,2,429,462,353,368,72,88,2,1,0,3,0,0,2,2,4,5,2,3,2,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,13,701,349,352,283,273,61,74,1,0,2,2,0,0,2,3,345,349,280,271,60,73,1,0,2,2,0,0,2,3,4,3,3,2,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,14,612,242,370,183,276,56,94,1,0,0,0,0,0,2,0,242,369,183,276,56,93,1,0,0,0,0,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,15,539,244,295,192,227,51,67,0,0,0,0,0,0,1,1,244,295,192,227,51,67,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,16,469,200,269,153,217,46,50,0,1,0,0,0,0,1,1,199,269,153,217,45,50,0,1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,17,395,108,287,82,226,26,58,0,1,0,0,0,0,0,2,107,285,81,224,26,58,0,1,0,0,0,0,0,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,18,288,75,213,53,157,22,55,0,0,0,0,0,0,0,1,75,212,53,157,22,54,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,99,13727,6530,7197,4892,5233,1503,1836,31,30,46,34,2,0,56,64,6454,7145,4829,5192,1493,1826,31,30,46,34,2,0,53,63,76,52,63,41,10,10,0,0,0,0,0,0,3,1 -050,01,041,Alabama,Crenshaw County,7,0,161,78,83,56,67,18,12,0,0,0,1,0,1,4,2,78,82,56,67,18,12,0,0,0,1,0,0,4,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0 -050,01,041,Alabama,Crenshaw County,7,1,683,344,339,240,253,86,73,1,0,8,2,1,1,8,10,337,328,235,243,85,73,1,0,8,2,0,0,8,10,7,11,5,10,1,0,0,0,0,0,1,1,0,0 -050,01,041,Alabama,Crenshaw County,7,2,879,462,417,310,270,130,134,0,1,9,6,0,0,13,6,456,409,305,264,130,132,0,1,8,6,0,0,13,6,6,8,5,6,0,2,0,0,1,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,3,988,504,484,344,320,147,151,3,4,5,2,0,0,5,7,498,480,339,316,147,151,3,4,4,2,0,0,5,7,6,4,5,4,0,0,0,0,1,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,4,974,514,460,365,304,134,146,5,2,3,4,0,0,7,4,508,453,359,297,134,146,5,2,3,4,0,0,7,4,6,7,6,7,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,5,713,364,349,256,252,100,91,2,1,3,2,0,0,3,3,355,347,250,250,100,91,2,1,2,2,0,0,1,3,9,2,6,2,0,0,0,0,1,0,0,0,2,0 -050,01,041,Alabama,Crenshaw County,7,6,716,339,377,265,271,60,103,2,1,6,2,1,0,5,0,326,369,254,265,60,102,2,0,6,2,0,0,4,0,13,8,11,6,0,1,0,1,0,0,1,0,1,0 -050,01,041,Alabama,Crenshaw County,7,7,836,388,448,299,315,76,120,3,0,8,10,0,0,2,3,383,443,294,311,76,119,3,0,8,10,0,0,2,3,5,5,5,4,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,8,828,385,443,301,311,71,120,2,2,9,5,0,1,2,4,376,440,294,309,69,120,2,2,9,5,0,0,2,4,9,3,7,2,2,0,0,0,0,0,0,1,0,0 -050,01,041,Alabama,Crenshaw County,7,9,977,484,493,363,359,109,119,2,3,9,5,0,0,1,7,479,491,359,357,109,119,2,3,8,5,0,0,1,7,5,2,4,2,0,0,0,0,1,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,10,1008,523,485,403,331,111,143,1,2,4,4,0,0,4,5,520,483,400,330,111,143,1,2,4,4,0,0,4,4,3,2,3,1,0,0,0,0,0,0,0,0,0,1 -050,01,041,Alabama,Crenshaw County,7,11,997,467,530,325,392,133,126,3,4,3,5,0,0,3,3,463,526,321,390,133,124,3,4,3,5,0,0,3,3,4,4,4,2,0,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,12,931,440,491,344,381,90,100,3,3,0,2,0,0,3,5,439,487,343,378,90,99,3,3,0,2,0,0,3,5,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,13,736,386,350,315,270,63,75,1,0,4,2,0,0,3,3,383,347,312,269,63,73,1,0,4,2,0,0,3,3,3,3,3,1,0,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,14,604,243,361,185,274,56,87,1,0,0,0,0,0,1,0,243,359,185,273,56,86,1,0,0,0,0,0,1,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,15,525,248,277,208,214,39,62,0,0,0,0,0,0,1,1,246,275,206,212,39,62,0,0,0,0,0,0,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,16,468,184,284,131,230,52,53,0,0,0,0,0,0,1,1,183,283,131,229,51,53,0,0,0,0,0,0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,17,368,120,248,97,192,23,53,0,0,0,0,0,0,0,3,118,248,95,192,23,53,0,0,0,0,0,0,0,3,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,18,307,74,233,49,180,24,51,0,1,0,0,0,0,1,1,74,232,49,179,24,51,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,99,13699,6547,7152,4856,5186,1522,1819,29,24,71,52,2,3,67,68,6465,7082,4787,5131,1518,1809,29,23,67,52,0,0,64,67,82,70,69,55,4,10,0,1,4,0,2,3,3,1 -050,01,041,Alabama,Crenshaw County,8,0,151,77,74,60,54,13,15,0,0,0,1,0,1,4,3,77,73,60,54,13,15,0,0,0,1,0,0,4,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0 -050,01,041,Alabama,Crenshaw County,8,1,714,368,346,253,265,94,63,1,1,9,2,1,1,10,14,359,339,247,259,93,63,1,1,8,2,0,0,10,14,9,7,6,6,1,0,0,0,1,0,1,1,0,0 -050,01,041,Alabama,Crenshaw County,8,2,900,476,424,325,269,127,138,1,2,9,7,0,0,14,8,471,418,320,264,127,137,1,2,9,7,0,0,14,8,5,6,5,5,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,3,982,514,468,346,316,154,140,1,3,5,2,0,0,8,7,509,461,341,311,154,138,1,3,5,2,0,0,8,7,5,7,5,5,0,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,4,1005,536,469,376,301,146,155,3,2,3,5,0,0,8,6,531,461,371,293,146,155,3,2,3,5,0,0,8,6,5,8,5,8,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,5,726,379,347,260,240,109,99,1,0,3,3,1,0,5,5,369,343,254,236,109,99,1,0,2,3,0,0,3,5,10,4,6,4,0,0,0,0,1,0,1,0,2,0 -050,01,041,Alabama,Crenshaw County,8,6,736,346,390,263,286,68,99,2,2,7,2,1,0,5,1,330,383,249,280,68,99,2,1,7,2,0,0,4,1,16,7,14,6,0,0,0,1,0,0,1,0,1,0 -050,01,041,Alabama,Crenshaw County,8,7,820,371,449,289,315,70,120,2,0,8,10,0,0,2,4,365,444,283,311,70,119,2,0,8,10,0,0,2,4,6,5,6,4,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,8,853,411,442,321,309,76,119,2,2,9,6,1,1,2,5,402,439,314,307,75,119,2,2,9,6,0,0,2,5,9,3,7,2,1,0,0,0,0,0,1,1,0,0 -050,01,041,Alabama,Crenshaw County,8,9,965,478,487,347,352,117,118,2,3,11,6,0,0,1,8,471,484,342,350,116,117,2,3,10,6,0,0,1,8,7,3,5,2,1,1,0,0,1,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,10,1044,533,511,413,352,111,149,2,2,4,4,0,0,3,4,530,509,410,351,111,149,2,2,4,4,0,0,3,3,3,2,3,1,0,0,0,0,0,0,0,0,0,1 -050,01,041,Alabama,Crenshaw County,8,11,976,439,537,319,383,112,141,3,4,4,5,0,0,1,4,435,535,315,381,112,141,3,4,4,5,0,0,1,4,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,12,984,485,499,370,387,108,101,3,4,0,2,0,0,4,5,482,494,369,383,106,100,3,4,0,2,0,0,4,5,3,5,1,4,2,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,13,769,390,379,309,296,72,77,1,0,5,2,0,0,3,4,386,377,305,295,72,76,1,0,5,2,0,0,3,4,4,2,4,1,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,14,602,250,352,192,271,53,79,3,1,0,0,0,0,2,1,248,348,190,268,53,78,3,1,0,0,0,0,2,1,2,4,2,3,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,15,543,263,280,219,222,42,58,1,0,0,0,0,0,1,0,261,278,217,220,42,58,1,0,0,0,0,0,1,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,16,453,178,275,134,220,43,54,0,0,0,0,0,0,1,1,177,274,133,219,43,54,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,17,331,105,226,93,175,12,51,0,0,0,0,0,0,0,0,104,226,92,175,12,51,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,18,326,92,234,56,181,35,52,0,1,0,0,0,0,1,0,92,233,56,180,35,52,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,99,13880,6691,7189,4945,5194,1562,1828,28,27,77,57,4,3,75,80,6599,7119,4868,5137,1557,1820,28,26,74,57,0,0,72,79,92,70,77,57,5,8,0,1,3,0,4,3,3,1 -050,01,041,Alabama,Crenshaw County,9,0,160,81,79,59,61,16,13,0,0,0,1,0,1,6,3,81,78,59,61,16,13,0,0,0,1,0,0,6,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0 -050,01,041,Alabama,Crenshaw County,9,1,716,372,344,266,246,83,81,1,1,12,2,1,1,9,13,365,338,261,241,83,81,1,1,11,2,0,0,9,13,7,6,5,5,0,0,0,0,1,0,1,1,0,0 -050,01,041,Alabama,Crenshaw County,9,2,911,466,445,310,295,131,132,1,2,11,7,0,0,13,9,461,438,306,289,131,131,1,2,10,7,0,0,13,9,5,7,4,6,0,1,0,0,1,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,3,960,506,454,337,304,154,137,1,3,6,2,0,0,8,8,500,447,332,299,154,135,1,3,5,2,0,0,8,8,6,7,5,5,0,2,0,0,1,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,4,1034,554,480,392,307,147,158,4,3,3,5,0,0,8,7,546,473,384,300,147,158,4,3,3,5,0,0,8,7,8,7,8,7,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,5,719,372,347,245,246,116,92,1,0,3,3,1,0,6,6,359,343,236,242,116,92,1,0,2,3,0,0,4,6,13,4,9,4,0,0,0,0,1,0,1,0,2,0 -050,01,041,Alabama,Crenshaw County,9,6,744,353,391,261,281,76,105,2,2,7,2,1,0,6,1,336,384,246,275,76,105,2,1,7,2,0,0,5,1,17,7,15,6,0,0,0,1,0,0,1,0,1,0 -050,01,041,Alabama,Crenshaw County,9,7,799,350,449,276,310,59,123,3,0,10,12,0,0,2,4,344,444,270,306,59,122,3,0,10,12,0,0,2,4,6,5,6,4,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,8,855,426,429,332,299,79,115,2,2,10,6,2,1,1,6,418,426,325,297,79,115,2,2,10,6,1,0,1,6,8,3,7,2,0,0,0,0,0,0,1,1,0,0 -050,01,041,Alabama,Crenshaw County,9,9,943,465,478,335,350,116,110,2,3,11,7,0,0,1,8,459,474,330,348,115,109,2,3,11,6,0,0,1,8,6,4,5,2,1,1,0,0,0,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,10,1058,540,518,405,365,126,143,1,2,4,4,0,0,4,4,537,516,402,364,126,143,1,2,4,4,0,0,4,3,3,2,3,1,0,0,0,0,0,0,0,0,0,1 -050,01,041,Alabama,Crenshaw County,9,11,1014,472,542,342,382,120,148,3,4,5,5,0,0,2,3,468,540,338,380,120,148,3,4,5,5,0,0,2,3,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,12,959,481,478,369,359,105,107,3,4,0,3,0,0,4,5,478,473,368,355,103,106,3,4,0,3,0,0,4,5,3,5,1,4,2,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,13,831,420,411,332,327,78,78,1,0,5,2,0,0,4,4,416,409,328,326,78,77,1,0,5,2,0,0,4,4,4,2,4,1,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,14,622,261,361,201,266,54,92,3,1,0,0,0,0,3,2,259,358,199,263,54,92,3,1,0,0,0,0,3,2,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,15,506,245,261,203,202,40,59,1,0,0,0,0,0,1,0,243,259,201,200,40,59,1,0,0,0,0,0,1,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,16,470,190,280,132,224,57,55,0,0,0,0,0,0,1,1,189,279,131,223,57,55,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,17,311,106,205,85,157,21,47,0,0,0,0,0,0,0,1,104,204,83,156,21,47,0,0,0,0,0,0,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,18,344,93,251,58,200,34,50,0,1,0,0,0,0,1,0,93,250,58,199,34,50,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,99,13956,6753,7203,4940,5181,1612,1845,29,28,87,61,5,3,80,85,6656,7133,4857,5124,1609,1838,29,27,83,60,1,0,77,84,97,70,83,57,3,7,0,1,4,1,4,3,3,1 -050,01,041,Alabama,Crenshaw County,10,0,173,87,86,69,69,12,13,0,0,0,1,0,1,6,2,87,85,69,69,12,13,0,0,0,1,0,0,6,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0 -050,01,041,Alabama,Crenshaw County,10,1,709,348,361,249,259,76,81,1,1,12,3,1,1,9,16,343,353,245,252,76,81,1,1,12,3,0,0,9,16,5,8,4,7,0,0,0,0,0,0,1,1,0,0 -050,01,041,Alabama,Crenshaw County,10,2,925,490,435,330,299,130,115,1,2,11,7,0,0,18,12,482,425,322,290,130,114,1,2,11,7,0,0,18,12,8,10,8,9,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,3,928,476,452,315,300,145,138,1,2,6,3,0,0,9,9,470,444,309,294,145,136,1,2,6,3,0,0,9,9,6,8,6,6,0,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,4,1044,558,486,407,313,136,156,3,3,3,6,0,0,9,8,551,473,400,300,136,156,3,3,3,6,0,0,9,8,7,13,7,13,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,5,690,370,320,239,224,118,85,1,0,4,4,1,0,7,7,358,317,232,221,118,85,1,0,3,4,0,0,4,7,12,3,7,3,0,0,0,0,1,0,1,0,3,0 -050,01,041,Alabama,Crenshaw County,10,6,749,350,399,264,297,69,97,2,2,8,2,1,0,6,1,331,392,247,291,69,97,2,1,8,2,0,0,5,1,19,7,17,6,0,0,0,1,0,0,1,0,1,0 -050,01,041,Alabama,Crenshaw County,10,7,773,352,421,271,293,66,111,2,0,11,13,0,0,2,4,345,416,264,289,66,110,2,0,11,13,0,0,2,4,7,5,7,4,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,8,894,442,452,346,312,82,126,1,2,11,6,1,1,1,5,430,449,336,310,81,126,1,2,11,6,0,0,1,5,12,3,10,2,1,0,0,0,0,0,1,1,0,0 -050,01,041,Alabama,Crenshaw County,10,9,892,419,473,312,339,92,115,1,2,13,8,0,0,1,9,411,469,306,337,91,114,1,2,12,7,0,0,1,9,8,4,6,2,1,1,0,0,1,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,10,1053,536,517,392,373,133,132,2,3,5,5,0,0,4,4,532,515,388,372,133,132,2,3,5,5,0,0,4,3,4,2,4,1,0,0,0,0,0,0,0,0,0,1 -050,01,041,Alabama,Crenshaw County,10,11,1025,481,544,358,373,112,159,4,4,5,5,0,0,2,3,476,541,353,370,112,159,4,4,5,5,0,0,2,3,5,3,5,3,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,12,964,482,482,358,358,117,110,3,4,0,3,0,0,4,7,479,477,357,354,115,109,3,4,0,3,0,0,4,7,3,5,1,4,2,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,13,889,448,441,361,355,75,78,2,0,6,4,0,0,4,4,443,439,356,354,75,77,2,0,6,4,0,0,4,4,5,2,5,1,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,14,595,263,332,213,248,44,81,3,1,0,0,0,0,3,2,261,328,211,245,44,80,3,1,0,0,0,0,3,2,2,4,2,3,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,15,547,249,298,198,215,48,83,1,0,0,0,0,0,2,0,247,296,196,213,48,83,1,0,0,0,0,0,2,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,16,426,173,253,123,213,49,39,0,0,0,0,0,0,1,1,172,252,122,212,49,39,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,17,318,106,212,85,180,21,31,0,0,0,0,0,0,0,1,104,211,83,179,21,31,0,0,0,0,0,0,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,18,328,90,238,54,184,35,53,0,1,0,0,0,0,1,0,90,237,54,183,35,53,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,99,13922,6720,7202,4944,5204,1560,1803,28,27,95,70,4,3,89,95,6612,7119,4850,5135,1556,1795,28,26,93,69,0,0,85,94,108,83,94,69,4,8,0,1,2,1,4,3,4,1 -050,01,041,Alabama,Crenshaw County,11,0,154,81,73,60,52,14,15,0,0,0,1,0,1,7,4,81,72,60,52,14,15,0,0,0,1,0,0,7,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0 -050,01,041,Alabama,Crenshaw County,11,1,711,346,365,248,261,71,81,1,1,15,3,1,1,10,18,338,356,242,253,71,81,1,1,14,3,0,0,10,18,8,9,6,8,0,0,0,0,1,0,1,1,0,0 -050,01,041,Alabama,Crenshaw County,11,2,945,491,454,333,318,123,114,1,2,13,8,0,0,21,12,487,447,329,312,123,113,1,2,13,8,0,0,21,12,4,7,4,6,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,3,929,484,445,328,303,136,128,1,2,8,3,0,0,11,9,476,434,321,294,136,126,1,2,7,3,0,0,11,9,8,11,7,9,0,2,0,0,1,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,4,998,527,471,375,305,137,150,3,1,3,7,0,0,9,8,518,461,366,295,137,150,3,1,3,7,0,0,9,8,9,10,9,10,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,5,732,389,343,258,246,118,85,1,0,4,4,1,0,7,8,372,340,246,243,118,85,1,0,3,4,0,0,4,8,17,3,12,3,0,0,0,0,1,0,1,0,3,0 -050,01,041,Alabama,Crenshaw County,11,6,743,357,386,277,285,62,96,2,2,9,2,1,0,6,1,336,378,258,278,62,96,2,1,9,2,0,0,5,1,21,8,19,7,0,0,0,1,0,0,1,0,1,0 -050,01,041,Alabama,Crenshaw County,11,7,792,343,449,256,315,70,115,2,0,13,15,0,0,2,4,336,444,249,311,70,114,2,0,13,15,0,0,2,4,7,5,7,4,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,8,923,458,465,343,313,96,137,1,2,14,7,3,1,1,5,446,462,333,311,95,137,1,2,14,7,2,0,1,5,12,3,10,2,1,0,0,0,0,0,1,1,0,0 -050,01,041,Alabama,Crenshaw County,11,9,900,434,466,329,329,88,117,1,2,15,9,0,0,1,9,427,462,323,327,87,116,1,2,15,8,0,0,1,9,7,4,6,2,1,1,0,0,0,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,10,1064,549,515,397,378,140,125,2,3,6,5,0,0,4,4,544,513,392,377,140,125,2,3,6,5,0,0,4,3,5,2,5,1,0,0,0,0,0,0,0,0,0,1 -050,01,041,Alabama,Crenshaw County,11,11,1062,512,550,383,375,117,161,4,5,6,6,0,0,2,3,507,547,378,372,117,161,4,5,6,6,0,0,2,3,5,3,5,3,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,12,943,453,490,335,365,110,110,4,5,0,3,0,0,4,7,450,485,334,361,108,109,4,5,0,3,0,0,4,7,3,5,1,4,2,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,13,903,438,465,350,367,76,89,2,0,6,4,0,0,4,5,433,463,345,366,76,88,2,0,6,4,0,0,4,5,5,2,5,1,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,14,641,307,334,246,261,54,70,4,1,0,0,0,0,3,2,305,330,244,258,54,69,4,1,0,0,0,0,3,2,2,4,2,3,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,15,539,221,318,179,227,39,91,1,0,0,0,0,0,2,0,219,316,177,225,39,91,1,0,0,0,0,0,2,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,16,416,195,221,141,184,53,36,0,0,0,0,0,0,1,1,194,220,140,183,53,36,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,17,314,99,215,87,172,12,42,0,0,0,0,0,0,0,1,97,214,85,171,12,42,0,0,0,0,0,0,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,18,315,81,234,52,188,28,45,0,1,0,0,0,0,1,0,81,233,52,187,28,45,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,99,14024,6765,7259,4977,5244,1544,1807,30,27,112,77,6,3,96,101,6647,7177,4874,5176,1540,1799,30,26,109,76,2,0,92,100,118,82,103,68,4,8,0,1,3,1,4,3,4,1 -050,01,041,Alabama,Crenshaw County,12,0,156,85,71,62,51,16,15,0,0,0,1,0,1,7,3,85,70,62,51,16,15,0,0,0,1,0,0,7,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0 -050,01,041,Alabama,Crenshaw County,12,1,673,328,345,233,240,67,82,1,1,16,3,1,1,10,18,320,335,227,231,67,82,1,1,15,3,0,0,10,18,8,10,6,9,0,0,0,0,1,0,1,1,0,0 -050,01,041,Alabama,Crenshaw County,12,2,943,496,447,351,309,111,115,1,2,14,9,0,0,19,12,491,441,347,304,111,114,1,2,13,9,0,0,19,12,5,6,4,5,0,1,0,0,1,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,3,924,476,448,327,310,129,124,1,2,8,3,0,0,11,9,469,439,321,303,129,122,1,2,7,3,0,0,11,9,7,9,6,7,0,2,0,0,1,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,4,989,531,458,377,294,139,146,3,3,3,7,0,0,9,8,522,447,368,283,139,146,3,3,3,7,0,0,9,8,9,11,9,11,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,5,734,385,349,253,258,119,79,1,0,4,4,1,0,7,8,368,345,241,254,119,79,1,0,3,4,0,0,4,8,17,4,12,4,0,0,0,0,1,0,1,0,3,0 -050,01,041,Alabama,Crenshaw County,12,6,719,349,370,275,267,55,98,2,2,10,2,1,0,6,1,327,362,255,260,55,98,2,1,10,2,0,0,5,1,22,8,20,7,0,0,0,1,0,0,1,0,1,0 -050,01,041,Alabama,Crenshaw County,12,7,776,347,429,254,302,76,107,2,0,13,16,0,0,2,4,340,424,247,298,76,106,2,0,13,16,0,0,2,4,7,5,7,4,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,8,927,446,481,340,330,88,135,1,2,14,8,2,1,1,5,433,478,329,328,87,135,1,2,14,8,1,0,1,5,13,3,11,2,1,0,0,0,0,0,1,1,0,0 -050,01,041,Alabama,Crenshaw County,12,9,860,416,444,320,313,78,111,1,2,16,9,0,0,1,9,408,440,314,311,77,110,1,2,15,8,0,0,1,9,8,4,6,2,1,1,0,0,1,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,10,1053,526,527,381,396,133,119,2,3,6,5,0,0,4,4,521,525,376,395,133,119,2,3,6,5,0,0,4,3,5,2,5,1,0,0,0,0,0,0,0,0,0,1 -050,01,041,Alabama,Crenshaw County,12,11,1069,537,532,414,365,111,153,4,5,6,6,0,0,2,3,532,529,409,362,111,153,4,5,6,6,0,0,2,3,5,3,5,3,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,12,934,436,498,328,376,100,107,4,5,0,3,0,0,4,7,433,493,327,372,98,106,4,5,0,3,0,0,4,7,3,5,1,4,2,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,13,939,446,493,348,385,86,99,2,0,6,4,0,0,4,5,441,490,343,384,86,97,2,0,6,4,0,0,4,5,5,3,5,1,0,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,14,656,334,322,267,251,60,68,4,1,0,0,0,0,3,2,332,318,265,248,60,67,4,1,0,0,0,0,3,2,2,4,2,3,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,15,533,222,311,176,226,43,85,1,0,0,0,0,0,2,0,220,309,174,224,43,85,1,0,0,0,0,0,2,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,16,413,181,232,144,182,36,49,0,0,0,0,0,0,1,1,180,231,143,181,36,49,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,17,298,92,206,78,171,14,34,0,0,0,0,0,0,0,1,90,205,76,170,14,34,0,0,0,0,0,0,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,18,310,81,229,55,184,25,44,0,1,0,0,0,0,1,0,81,228,55,183,25,44,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,99,13906,6714,7192,4983,5210,1486,1770,30,29,116,80,5,3,94,100,6593,7109,4879,5142,1482,1761,30,28,111,79,1,0,90,99,121,83,104,68,4,9,0,1,5,1,4,3,4,1 -050,01,041,Alabama,Crenshaw County,13,0,155,85,70,61,52,16,15,0,0,1,0,0,0,7,3,85,67,61,51,16,14,0,0,1,0,0,0,7,2,0,3,0,1,0,1,0,0,0,0,0,0,0,1 -050,01,041,Alabama,Crenshaw County,13,1,661,319,342,228,238,67,82,2,2,12,3,1,0,9,17,312,331,223,230,67,81,2,1,12,3,0,0,8,16,7,11,5,8,0,1,0,1,0,0,1,0,1,1 -050,01,041,Alabama,Crenshaw County,13,2,938,489,449,350,309,111,115,2,5,11,8,0,0,15,12,483,438,346,303,110,113,2,2,10,8,0,0,15,12,6,11,4,6,1,2,0,3,1,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,3,924,479,445,326,307,131,124,4,3,6,1,0,2,12,8,468,434,320,302,129,121,1,2,6,1,0,0,12,8,11,11,6,5,2,3,3,1,0,0,0,2,0,0 -050,01,041,Alabama,Crenshaw County,13,4,983,529,454,373,287,138,145,5,7,1,7,1,0,11,8,518,443,365,279,137,143,3,6,1,7,1,0,11,8,11,11,8,8,1,2,2,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,5,733,386,347,254,256,121,78,1,1,4,4,0,1,6,7,370,342,241,252,120,78,1,0,3,4,0,1,5,7,16,5,13,4,1,0,0,1,1,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,13,6,715,342,373,272,266,57,97,2,2,9,4,0,0,2,4,321,361,253,259,55,96,2,1,9,3,0,0,2,2,21,12,19,7,2,1,0,1,0,1,0,0,0,2 -050,01,041,Alabama,Crenshaw County,13,7,782,347,435,252,308,76,107,3,1,14,16,0,0,2,3,340,427,246,301,76,106,2,1,14,16,0,0,2,3,7,8,6,7,0,1,1,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,8,906,436,470,334,325,87,135,2,1,11,5,0,0,2,4,423,467,323,323,85,134,2,1,11,5,0,0,2,4,13,3,11,2,2,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,9,852,416,436,319,310,76,110,2,1,15,8,0,0,4,7,410,431,314,308,76,108,1,1,15,7,0,0,4,7,6,5,5,2,0,2,1,0,0,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,10,1048,526,522,379,393,133,118,3,5,7,4,0,0,4,2,519,519,372,391,133,118,3,4,7,4,0,0,4,2,7,3,7,2,0,0,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,11,1073,538,535,413,366,111,156,3,6,7,4,0,0,4,3,532,530,408,363,111,154,2,6,7,4,0,0,4,3,6,5,5,3,0,2,1,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,12,933,432,501,327,376,99,109,3,4,0,2,0,0,3,10,430,496,326,372,98,108,3,4,0,2,0,0,3,10,2,5,1,4,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,13,937,447,490,349,386,84,97,3,0,6,4,0,0,5,3,444,488,346,385,84,96,3,0,6,4,0,0,5,3,3,2,3,1,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,14,656,333,323,267,251,60,67,4,2,0,2,0,0,2,1,329,320,264,248,59,67,4,2,0,2,0,0,2,1,4,3,3,3,1,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,15,542,225,317,178,226,45,87,0,1,1,1,0,0,1,2,222,315,175,224,45,87,0,1,1,1,0,0,1,2,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,16,413,180,233,143,184,34,47,1,0,0,0,0,0,2,2,178,230,141,181,34,47,1,0,0,0,0,0,2,2,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,17,294,88,206,74,170,14,34,0,1,0,0,0,0,0,1,87,205,73,169,14,34,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,18,312,82,230,55,185,26,44,0,1,0,0,0,0,1,0,82,229,55,184,26,44,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,99,13857,6679,7178,4954,5195,1486,1767,40,43,105,73,2,3,92,97,6553,7073,4852,5125,1475,1749,32,34,103,71,1,1,90,93,126,105,102,70,11,18,8,9,2,2,1,2,2,4 -050,01,043,Alabama,Cullman County,1,0,1029,515,514,501,503,5,4,6,1,0,0,0,0,3,6,490,487,478,477,5,4,4,0,0,0,0,0,3,6,25,27,23,26,0,0,2,1,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,1,1,3911,2049,1862,1999,1807,23,18,7,4,3,4,1,1,16,28,1952,1780,1906,1727,22,18,5,2,3,4,1,1,15,28,97,82,93,80,1,0,2,2,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,1,2,5164,2662,2502,2598,2437,24,32,9,6,6,3,1,2,24,22,2582,2426,2522,2366,22,29,7,5,6,2,1,2,24,22,80,76,76,71,2,3,2,1,0,1,0,0,0,0 -050,01,043,Alabama,Cullman County,1,3,5342,2763,2579,2693,2513,21,19,17,13,5,9,0,2,27,23,2708,2526,2643,2462,21,19,14,12,5,9,0,2,25,22,55,53,50,51,0,0,3,1,0,0,0,0,2,1 -050,01,043,Alabama,Cullman County,1,4,5441,2836,2605,2729,2525,56,33,15,17,6,6,1,0,29,24,2726,2557,2627,2478,54,33,11,16,6,6,1,0,27,24,110,48,102,47,2,0,4,1,0,0,0,0,2,0 -050,01,043,Alabama,Cullman County,1,5,4717,2409,2308,2292,2231,74,36,18,12,2,5,2,1,21,23,2214,2227,2112,2152,69,36,10,10,2,5,2,1,19,23,195,81,180,79,5,0,8,2,0,0,0,0,2,0 -050,01,043,Alabama,Cullman County,1,6,5095,2595,2500,2514,2449,27,18,26,8,6,12,0,1,22,12,2441,2425,2375,2378,26,18,12,6,6,11,0,1,22,11,154,75,139,71,1,0,14,2,0,1,0,0,0,1 -050,01,043,Alabama,Cullman County,1,7,5200,2688,2512,2632,2453,27,18,13,13,4,13,1,1,11,14,2580,2451,2529,2394,26,17,9,12,4,13,1,1,11,14,108,61,103,59,1,1,4,1,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,1,8,5840,3004,2836,2951,2776,20,18,9,8,4,6,0,2,20,26,2926,2805,2876,2746,19,18,7,8,4,6,0,2,20,25,78,31,75,30,1,0,2,0,0,0,0,0,0,1 -050,01,043,Alabama,Cullman County,1,9,5817,2920,2897,2858,2826,16,27,18,16,4,6,2,1,22,21,2874,2868,2814,2797,16,27,16,16,4,6,2,1,22,21,46,29,44,29,0,0,2,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,1,10,5331,2670,2661,2603,2603,31,21,14,12,3,7,0,0,19,18,2638,2639,2577,2583,31,21,12,11,2,7,0,0,16,17,32,22,26,20,0,0,2,1,1,0,0,0,3,1 -050,01,043,Alabama,Cullman County,1,11,5155,2532,2623,2469,2541,21,24,18,20,1,11,0,3,23,24,2516,2608,2453,2526,21,24,18,20,1,11,0,3,23,24,16,15,16,15,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,1,12,4264,2058,2206,2020,2163,14,16,5,10,0,4,1,1,18,12,2051,2193,2013,2152,14,15,5,9,0,4,1,1,18,12,7,13,7,11,0,1,0,1,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,1,13,3793,1822,1971,1787,1933,15,17,7,1,1,3,0,0,12,17,1813,1966,1778,1928,15,17,7,1,1,3,0,0,12,17,9,5,9,5,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,1,14,3266,1526,1740,1503,1703,11,16,0,2,0,5,0,0,12,14,1517,1731,1495,1695,10,15,0,2,0,5,0,0,12,14,9,9,8,8,1,1,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,1,15,2936,1305,1631,1282,1609,9,8,2,1,0,1,0,1,12,11,1301,1628,1279,1607,9,8,2,1,0,1,0,1,11,10,4,3,3,2,0,0,0,0,0,0,0,0,1,1 -050,01,043,Alabama,Cullman County,1,16,2342,924,1418,915,1401,1,4,0,3,1,1,0,0,7,9,919,1411,912,1395,1,4,0,3,1,1,0,0,5,8,5,7,3,6,0,0,0,0,0,0,0,0,2,1 -050,01,043,Alabama,Cullman County,1,17,1499,549,950,543,938,2,4,0,0,1,1,0,2,3,5,548,945,542,935,2,4,0,0,1,0,0,1,3,5,1,5,1,3,0,0,0,0,0,1,0,1,0,0 -050,01,043,Alabama,Cullman County,1,18,1284,354,930,345,914,5,10,2,3,0,0,0,0,2,3,350,929,341,913,5,10,2,3,0,0,0,0,2,3,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,1,99,77426,38181,39245,37234,38325,402,343,186,150,47,97,9,18,303,312,37146,38602,36272,37711,388,337,141,137,46,94,9,17,290,306,1035,643,962,614,14,6,45,13,1,3,0,1,13,6 -050,01,043,Alabama,Cullman County,2,0,1038,518,520,504,508,5,4,6,1,0,0,0,0,3,7,492,492,480,481,5,4,4,0,0,0,0,0,3,7,26,28,24,27,0,0,2,1,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,2,1,3901,2042,1859,1993,1800,23,18,7,4,3,4,1,1,15,32,1945,1777,1900,1720,22,18,5,2,3,4,1,1,14,32,97,82,93,80,1,0,2,2,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,2,2,5145,2653,2492,2589,2426,24,30,9,6,6,3,1,2,24,25,2573,2416,2513,2355,22,27,7,5,6,2,1,2,24,25,80,76,76,71,2,3,2,1,0,1,0,0,0,0 -050,01,043,Alabama,Cullman County,2,3,5358,2772,2586,2700,2518,21,19,17,13,5,9,0,2,29,25,2717,2533,2650,2467,21,19,14,12,5,9,0,2,27,24,55,53,50,51,0,0,3,1,0,0,0,0,2,1 -050,01,043,Alabama,Cullman County,2,4,5459,2849,2610,2743,2532,56,35,15,17,6,6,1,0,28,20,2739,2562,2641,2485,54,35,11,16,6,6,1,0,26,20,110,48,102,47,2,0,4,1,0,0,0,0,2,0 -050,01,043,Alabama,Cullman County,2,5,4755,2431,2324,2313,2248,74,36,18,12,2,5,2,1,22,22,2235,2243,2132,2169,69,36,10,10,2,5,2,1,20,22,196,81,181,79,5,0,8,2,0,0,0,0,2,0 -050,01,043,Alabama,Cullman County,2,6,5044,2572,2472,2488,2420,27,18,26,8,6,12,0,1,25,13,2416,2397,2347,2349,26,18,12,6,6,11,0,1,25,12,156,75,141,71,1,0,14,2,0,1,0,0,0,1 -050,01,043,Alabama,Cullman County,2,7,5182,2680,2502,2625,2442,27,18,13,13,4,13,1,1,10,15,2571,2441,2521,2383,26,17,9,12,4,13,1,1,10,15,109,61,104,59,1,1,4,1,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,2,8,5800,2984,2816,2932,2757,20,18,9,8,4,6,0,2,19,25,2906,2785,2857,2727,19,18,7,8,4,6,0,2,19,24,78,31,75,30,1,0,2,0,0,0,0,0,0,1 -050,01,043,Alabama,Cullman County,2,9,5816,2921,2895,2858,2824,16,27,18,16,4,6,2,1,23,21,2875,2866,2814,2795,16,27,16,16,4,6,2,1,23,21,46,29,44,29,0,0,2,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,2,10,5359,2685,2674,2614,2615,31,21,14,12,3,7,0,0,23,19,2653,2652,2588,2595,31,21,12,11,2,7,0,0,20,18,32,22,26,20,0,0,2,1,1,0,0,0,3,1 -050,01,043,Alabama,Cullman County,2,11,5193,2553,2640,2488,2558,22,24,18,20,1,11,0,3,24,24,2537,2625,2472,2543,22,24,18,20,1,11,0,3,24,24,16,15,16,15,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,2,12,4280,2065,2215,2029,2173,14,16,5,10,0,4,1,1,16,11,2058,2202,2022,2162,14,15,5,9,0,4,1,1,16,11,7,13,7,11,0,1,0,1,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,2,13,3802,1829,1973,1793,1939,15,17,7,1,1,3,0,0,13,13,1820,1968,1784,1934,15,17,7,1,1,3,0,0,13,13,9,5,9,5,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,2,14,3255,1521,1734,1498,1698,11,16,0,2,0,5,0,0,12,13,1512,1725,1490,1690,10,15,0,2,0,5,0,0,12,13,9,9,8,8,1,1,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,2,15,2933,1307,1626,1283,1605,9,8,2,1,0,1,0,1,13,10,1303,1623,1280,1603,9,8,2,1,0,1,0,1,12,9,4,3,3,2,0,0,0,0,0,0,0,0,1,1 -050,01,043,Alabama,Cullman County,2,16,2350,929,1421,920,1404,1,4,0,3,1,1,0,0,7,9,924,1414,917,1398,1,4,0,3,1,1,0,0,5,8,5,7,3,6,0,0,0,0,0,0,0,0,2,1 -050,01,043,Alabama,Cullman County,2,17,1511,554,957,548,945,2,4,0,0,1,1,0,2,3,5,553,952,547,942,2,4,0,0,1,0,0,1,3,5,1,5,1,3,0,0,0,0,0,1,0,1,0,0 -050,01,043,Alabama,Cullman County,2,18,1292,357,935,348,920,5,10,2,3,0,0,0,0,2,2,353,934,344,919,5,10,2,3,0,0,0,0,2,2,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,2,99,77473,38222,39251,37266,38332,403,343,186,150,47,97,9,18,311,311,37182,38607,36299,37717,389,337,141,137,46,94,9,17,298,305,1040,644,967,615,14,6,45,13,1,3,0,1,13,6 -050,01,043,Alabama,Cullman County,3,0,989,505,484,487,468,5,5,4,1,0,0,0,0,9,10,476,455,459,440,5,5,3,0,0,0,0,0,9,10,29,29,28,28,0,0,1,1,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,3,1,3891,2033,1858,1974,1795,30,22,10,5,3,6,1,1,15,29,1926,1769,1870,1708,29,22,9,3,3,6,1,1,14,29,107,89,104,87,1,0,1,2,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,3,2,5181,2705,2476,2629,2406,37,35,7,7,6,4,0,3,26,21,2619,2387,2547,2322,35,32,5,6,6,3,0,3,26,21,86,89,82,84,2,3,2,1,0,1,0,0,0,0 -050,01,043,Alabama,Cullman County,3,3,5318,2724,2594,2647,2523,23,25,20,12,5,10,0,2,29,22,2664,2532,2592,2462,23,25,17,11,5,10,0,2,27,22,60,62,55,61,0,0,3,1,0,0,0,0,2,0 -050,01,043,Alabama,Cullman County,3,4,5281,2753,2528,2663,2438,35,38,16,22,9,8,1,0,29,22,2659,2473,2577,2384,33,38,12,21,9,8,1,0,27,22,94,55,86,54,2,0,4,1,0,0,0,0,2,0 -050,01,043,Alabama,Cullman County,3,5,4940,2514,2426,2399,2348,70,39,22,15,2,6,2,1,19,17,2353,2347,2251,2271,66,39,14,13,2,6,2,1,18,17,161,79,148,77,4,0,8,2,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,3,6,4803,2441,2362,2344,2303,39,19,24,8,7,15,0,1,27,16,2253,2263,2172,2209,37,19,11,6,7,14,0,1,26,14,188,99,172,94,2,0,13,2,0,1,0,0,1,2 -050,01,043,Alabama,Cullman County,3,7,5179,2682,2497,2618,2443,31,15,14,9,6,14,1,1,12,15,2574,2422,2517,2371,30,14,8,8,6,14,1,1,12,14,108,75,101,72,1,1,6,1,0,0,0,0,0,1 -050,01,043,Alabama,Cullman County,3,8,5622,2877,2745,2822,2681,23,22,9,8,7,6,0,2,16,26,2788,2711,2736,2648,22,22,7,8,7,6,0,2,16,25,89,34,86,33,1,0,2,0,0,0,0,0,0,1 -050,01,043,Alabama,Cullman County,3,9,5925,2993,2932,2928,2858,19,22,14,14,5,8,2,1,25,29,2947,2898,2884,2824,19,22,12,14,5,8,2,1,25,29,46,34,44,34,0,0,2,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,3,10,5415,2675,2740,2605,2665,24,30,19,18,4,6,0,0,23,21,2641,2710,2577,2637,24,30,17,17,3,6,0,0,20,20,34,30,28,28,0,0,2,1,1,0,0,0,3,1 -050,01,043,Alabama,Cullman County,3,11,5388,2690,2698,2616,2607,32,24,17,25,1,10,0,1,24,31,2668,2682,2594,2591,32,24,17,25,1,10,0,1,24,31,22,16,22,16,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,3,12,4268,2044,2224,2004,2178,16,16,7,11,0,4,1,1,16,14,2031,2213,1991,2168,16,16,7,10,0,4,1,1,16,14,13,11,13,10,0,0,0,1,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,3,13,3903,1878,2025,1836,1991,15,17,9,2,1,3,0,0,17,12,1868,2018,1826,1984,15,17,9,2,1,3,0,0,17,12,10,7,10,7,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,3,14,3255,1552,1703,1523,1664,12,16,1,3,0,5,0,0,16,15,1541,1696,1513,1658,11,15,1,3,0,5,0,0,16,15,11,7,10,6,1,1,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,3,15,2887,1273,1614,1243,1590,11,10,2,1,0,2,0,0,17,11,1266,1610,1237,1587,11,10,2,1,0,2,0,0,16,10,7,4,6,3,0,0,0,0,0,0,0,0,1,1 -050,01,043,Alabama,Cullman County,3,16,2373,941,1432,929,1414,5,6,0,3,1,1,0,0,6,8,936,1426,926,1408,5,6,0,3,1,1,0,0,4,8,5,6,3,6,0,0,0,0,0,0,0,0,2,0 -050,01,043,Alabama,Cullman County,3,17,1510,565,945,558,931,4,4,0,0,1,1,0,2,2,7,564,940,557,928,4,4,0,0,1,0,0,1,2,7,1,5,1,3,0,0,0,0,0,1,0,1,0,0 -050,01,043,Alabama,Cullman County,3,18,1287,370,917,362,902,5,9,2,3,0,0,0,0,1,3,367,915,359,900,5,9,2,3,0,0,0,0,1,3,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,3,99,77415,38215,39200,37187,38205,436,374,197,167,58,109,8,16,329,329,37141,38467,36185,37500,422,369,153,154,57,106,8,15,316,323,1074,733,1002,705,14,5,44,13,1,3,0,1,13,6 -050,01,043,Alabama,Cullman County,4,0,965,479,486,462,473,4,4,3,0,0,0,0,0,10,9,439,451,422,438,4,4,3,0,0,0,0,0,10,9,40,35,40,35,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,4,1,3888,2001,1887,1930,1819,39,24,7,5,4,7,1,0,20,32,1891,1787,1824,1721,38,24,6,3,4,7,1,0,18,32,110,100,106,98,1,0,1,2,0,0,0,0,2,0 -050,01,043,Alabama,Cullman County,4,2,5094,2672,2422,2597,2345,41,31,5,9,6,8,1,3,22,26,2571,2329,2499,2259,39,27,4,8,6,7,1,3,22,25,101,93,98,86,2,4,1,1,0,1,0,0,0,1 -050,01,043,Alabama,Cullman County,4,3,5382,2775,2607,2693,2533,30,30,18,13,6,11,0,1,28,19,2709,2541,2632,2469,30,30,15,12,6,11,0,1,26,18,66,66,61,64,0,0,3,1,0,0,0,0,2,1 -050,01,043,Alabama,Cullman County,4,4,5206,2739,2467,2657,2389,30,33,17,17,7,7,1,0,27,21,2639,2402,2565,2325,28,33,13,16,7,7,1,0,25,21,100,65,92,64,2,0,4,1,0,0,0,0,2,0 -050,01,043,Alabama,Cullman County,4,5,5004,2537,2467,2419,2379,70,42,22,16,3,6,2,2,21,22,2373,2391,2271,2305,66,42,14,14,3,6,2,2,17,22,164,76,148,74,4,0,8,2,0,0,0,0,4,0 -050,01,043,Alabama,Cullman County,4,6,4716,2397,2319,2308,2247,35,21,21,13,8,20,0,1,25,17,2222,2223,2147,2155,33,21,10,11,8,19,0,1,24,16,175,96,161,92,2,0,11,2,0,1,0,0,1,1 -050,01,043,Alabama,Cullman County,4,7,5149,2657,2492,2582,2434,29,15,19,9,13,16,1,1,13,17,2536,2415,2467,2362,28,14,15,6,13,16,1,1,12,16,121,77,115,72,1,1,4,3,0,0,0,0,1,1 -050,01,043,Alabama,Cullman County,4,8,5505,2852,2653,2785,2592,30,22,11,8,8,5,0,4,18,22,2764,2607,2701,2548,28,22,9,8,8,5,0,3,18,21,88,46,84,44,2,0,2,0,0,0,0,1,0,1 -050,01,043,Alabama,Cullman County,4,9,5829,2910,2919,2854,2855,10,18,13,14,4,8,2,2,27,22,2859,2878,2806,2814,10,18,11,14,4,8,2,2,26,22,51,41,48,41,0,0,2,0,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,4,10,5621,2841,2780,2769,2703,25,26,21,19,4,8,0,0,22,24,2795,2747,2727,2672,25,26,19,18,4,8,0,0,20,23,46,33,42,31,0,0,2,1,0,0,0,0,2,1 -050,01,043,Alabama,Cullman County,4,11,5239,2593,2646,2535,2565,21,27,13,23,3,11,0,2,21,18,2567,2635,2509,2554,21,27,13,23,3,11,0,2,21,18,26,11,26,11,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,4,12,4588,2189,2399,2139,2344,21,22,10,12,1,4,1,1,17,16,2180,2384,2130,2331,21,21,10,11,1,4,1,1,17,16,9,15,9,13,0,1,0,1,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,4,13,3975,1930,2045,1894,2006,14,16,8,4,1,5,0,0,13,14,1921,2038,1885,1999,14,16,8,4,1,5,0,0,13,14,9,7,9,7,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,4,14,3327,1559,1768,1531,1731,11,13,3,4,0,5,0,0,14,15,1547,1759,1520,1723,10,12,3,4,0,5,0,0,14,15,12,9,11,8,1,1,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,4,15,2800,1254,1546,1230,1517,8,12,2,3,0,3,0,0,14,11,1245,1540,1221,1512,8,12,2,3,0,3,0,0,14,10,9,6,9,5,0,0,0,0,0,0,0,0,0,1 -050,01,043,Alabama,Cullman County,4,16,2383,951,1432,940,1409,4,7,1,3,1,1,0,0,5,12,947,1425,937,1403,4,7,1,3,1,1,0,0,4,11,4,7,3,6,0,0,0,0,0,0,0,0,1,1 -050,01,043,Alabama,Cullman County,4,17,1540,588,952,582,940,3,4,0,0,1,1,0,2,2,5,587,946,581,936,3,4,0,0,1,0,0,1,2,5,1,6,1,4,0,0,0,0,0,1,0,1,0,0 -050,01,043,Alabama,Cullman County,4,18,1232,348,884,335,870,8,8,2,3,0,0,0,0,3,3,345,882,332,868,8,8,2,3,0,0,0,0,3,3,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,4,99,77443,38272,39171,37242,38151,433,375,196,175,70,126,9,19,322,325,37137,38380,36176,37394,418,368,158,161,70,123,9,17,306,317,1135,791,1066,757,15,7,38,14,0,3,0,2,16,8 -050,01,043,Alabama,Cullman County,5,0,939,491,448,472,431,6,3,3,1,0,2,0,0,10,11,448,415,430,399,6,3,2,0,0,2,0,0,10,11,43,33,42,32,0,0,1,1,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,5,1,3938,2012,1926,1933,1840,37,29,7,6,4,13,1,0,30,38,1895,1815,1822,1731,35,29,6,4,4,13,1,0,27,38,117,111,111,109,2,0,1,2,0,0,0,0,3,0 -050,01,043,Alabama,Cullman County,5,2,5022,2621,2401,2542,2313,41,36,9,12,6,7,0,2,23,31,2511,2295,2438,2214,39,32,6,10,6,7,0,2,22,30,110,106,104,99,2,4,3,2,0,0,0,0,1,1 -050,01,043,Alabama,Cullman County,5,3,5396,2785,2611,2698,2530,37,35,15,11,8,13,0,2,27,20,2709,2546,2630,2467,35,35,12,10,7,13,0,2,25,19,76,65,68,63,2,0,3,1,1,0,0,0,2,1 -050,01,043,Alabama,Cullman County,5,4,5215,2733,2482,2648,2409,27,32,18,15,8,7,1,1,31,18,2623,2424,2546,2352,25,32,14,14,8,7,1,1,29,18,110,58,102,57,2,0,4,1,0,0,0,0,2,0 -050,01,043,Alabama,Cullman County,5,5,4967,2540,2427,2427,2343,73,39,15,14,4,8,2,1,19,22,2398,2359,2300,2278,69,39,8,12,4,8,1,1,16,21,142,68,127,65,4,0,7,2,0,0,1,0,3,1 -050,01,043,Alabama,Cullman County,5,6,4732,2434,2298,2333,2222,37,21,32,9,5,24,1,1,26,21,2235,2196,2153,2124,35,21,20,7,5,23,0,1,22,20,199,102,180,98,2,0,12,2,0,1,1,0,4,1 -050,01,043,Alabama,Cullman County,5,7,5094,2597,2497,2520,2423,37,23,14,11,14,22,0,1,12,17,2449,2402,2380,2336,36,20,9,7,14,22,0,1,10,16,148,95,140,87,1,3,5,4,0,0,0,0,2,1 -050,01,043,Alabama,Cullman County,5,8,5346,2764,2582,2703,2522,28,19,8,12,9,5,0,3,16,21,2676,2533,2619,2475,26,19,6,12,9,5,0,1,16,21,88,49,84,47,2,0,2,0,0,0,0,2,0,0 -050,01,043,Alabama,Cullman County,5,9,5753,2922,2831,2867,2768,17,16,10,12,5,7,2,1,21,27,2859,2796,2806,2734,17,16,9,11,5,7,2,1,20,27,63,35,61,34,0,0,1,1,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,5,10,5746,2856,2890,2781,2805,22,28,21,18,6,10,0,0,26,29,2811,2853,2741,2770,20,28,19,17,6,10,0,0,25,28,45,37,40,35,2,0,2,1,0,0,0,0,1,1 -050,01,043,Alabama,Cullman County,5,11,5199,2601,2598,2522,2523,27,27,17,20,3,11,0,2,32,15,2565,2583,2488,2509,26,27,16,20,3,11,0,2,32,14,36,15,34,14,1,0,1,0,0,0,0,0,0,1 -050,01,043,Alabama,Cullman County,5,12,4761,2324,2437,2261,2369,23,27,12,13,3,6,1,1,24,21,2311,2418,2248,2352,23,26,12,12,3,6,1,1,24,21,13,19,13,17,0,1,0,1,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,5,13,4120,1997,2123,1956,2085,14,17,9,5,2,6,0,0,16,10,1988,2110,1947,2072,14,17,9,5,2,6,0,0,16,10,9,13,9,13,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,5,14,3447,1610,1837,1582,1800,14,14,3,3,0,5,0,0,11,15,1601,1827,1574,1791,13,13,3,3,0,5,0,0,11,15,9,10,8,9,1,1,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,5,15,2805,1237,1568,1212,1534,9,13,3,3,1,3,0,1,12,14,1229,1561,1205,1527,9,13,3,3,1,3,0,1,11,14,8,7,7,7,0,0,0,0,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,5,16,2464,1008,1456,996,1435,4,7,1,4,1,3,0,0,6,7,1003,1450,992,1429,4,7,1,4,1,3,0,0,5,7,5,6,4,6,0,0,0,0,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,5,17,1539,578,961,573,948,3,4,0,0,0,1,0,2,2,6,577,955,572,944,3,4,0,0,0,0,0,1,2,6,1,6,1,4,0,0,0,0,0,1,0,1,0,0 -050,01,043,Alabama,Cullman County,5,18,1174,337,837,322,827,9,4,2,2,0,1,0,0,4,3,334,835,319,825,9,4,2,2,0,1,0,0,4,3,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,5,99,77657,38447,39210,37348,38127,465,394,199,171,79,154,8,18,348,346,37222,38373,36210,37329,444,385,157,153,78,152,6,15,327,339,1225,837,1138,798,21,9,42,18,1,2,2,3,21,7 -050,01,043,Alabama,Cullman County,6,0,1014,512,502,496,481,5,5,2,1,0,2,0,0,9,13,477,475,461,455,5,5,2,0,0,2,0,0,9,13,35,27,35,26,0,0,0,1,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,6,1,3894,1987,1907,1906,1831,37,23,6,6,4,7,0,0,34,40,1852,1771,1777,1699,35,23,6,4,4,7,0,0,30,38,135,136,129,132,2,0,0,2,0,0,0,0,4,2 -050,01,043,Alabama,Cullman County,6,2,4997,2624,2373,2542,2294,44,29,7,11,8,8,0,1,23,30,2504,2260,2429,2188,42,26,4,9,7,7,0,1,22,29,120,113,113,106,2,3,3,2,1,1,0,0,1,1 -050,01,043,Alabama,Cullman County,6,3,5427,2780,2647,2695,2554,38,41,14,13,8,11,0,3,25,25,2694,2573,2616,2484,36,40,11,12,7,11,0,3,24,23,86,74,79,70,2,1,3,1,1,0,0,0,1,2 -050,01,043,Alabama,Cullman County,6,4,5312,2794,2518,2708,2445,34,35,19,12,8,8,1,1,24,17,2678,2441,2599,2369,32,35,15,11,8,8,1,1,23,17,116,77,109,76,2,0,4,1,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,6,5,4905,2517,2388,2414,2306,55,35,18,17,4,7,2,1,24,22,2358,2305,2271,2228,50,34,11,15,4,7,1,1,21,20,159,83,143,78,5,1,7,2,0,0,1,0,3,2 -050,01,043,Alabama,Cullman County,6,6,4751,2421,2330,2327,2245,42,27,22,13,6,22,1,1,23,22,2198,2241,2123,2161,38,27,12,11,6,21,0,1,19,20,223,89,204,84,4,0,10,2,0,1,1,0,4,2 -050,01,043,Alabama,Cullman County,6,7,5035,2549,2486,2471,2419,32,20,18,8,11,19,1,1,16,19,2392,2373,2322,2315,30,17,14,5,11,19,1,1,14,16,157,113,149,104,2,3,4,3,0,0,0,0,2,3 -050,01,043,Alabama,Cullman County,6,8,5261,2732,2529,2669,2465,30,23,12,16,8,6,0,3,13,16,2632,2471,2573,2411,28,22,10,16,8,6,0,1,13,15,100,58,96,54,2,1,2,0,0,0,0,2,0,1 -050,01,043,Alabama,Cullman County,6,9,5819,2997,2822,2937,2761,19,19,13,9,8,6,2,1,18,26,2918,2782,2860,2723,19,18,12,8,8,6,2,1,17,26,79,40,77,38,0,1,1,1,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,6,10,5863,2895,2968,2818,2883,25,31,20,15,7,9,0,1,25,29,2850,2923,2778,2840,23,31,18,14,7,9,0,1,24,28,45,45,40,43,2,0,2,1,0,0,0,0,1,1 -050,01,043,Alabama,Cullman County,6,11,5209,2583,2626,2501,2531,32,26,17,21,3,12,1,2,29,34,2538,2608,2459,2514,30,26,16,21,3,12,1,2,29,33,45,18,42,17,2,0,1,0,0,0,0,0,0,1 -050,01,043,Alabama,Cullman County,6,12,4909,2403,2506,2336,2436,21,27,16,15,4,5,1,1,25,22,2386,2493,2319,2424,21,27,16,14,4,5,1,1,25,22,17,13,17,12,0,0,0,1,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,6,13,4170,2044,2126,2002,2078,15,21,7,5,2,6,0,0,18,16,2033,2112,1991,2064,15,21,7,5,2,6,0,0,18,16,11,14,11,14,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,6,14,3525,1626,1899,1596,1867,14,11,5,6,0,4,0,0,11,11,1617,1891,1587,1860,14,10,5,6,0,4,0,0,11,11,9,8,9,7,0,1,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,6,15,2823,1253,1570,1224,1535,9,12,2,3,1,2,0,1,17,17,1244,1564,1216,1529,9,12,2,3,1,2,0,1,16,17,9,6,8,6,0,0,0,0,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,6,16,2472,1039,1433,1023,1409,9,7,1,3,1,4,0,0,5,10,1032,1425,1017,1402,9,7,1,3,1,4,0,0,4,9,7,8,6,7,0,0,0,0,0,0,0,0,1,1 -050,01,043,Alabama,Cullman County,6,17,1550,587,963,580,951,3,4,0,0,0,0,0,2,4,6,586,958,579,947,3,4,0,0,0,0,0,1,4,6,1,5,1,4,0,0,0,0,0,0,0,1,0,0 -050,01,043,Alabama,Cullman County,6,18,1195,352,843,339,833,8,3,1,2,0,1,0,0,4,4,349,841,336,831,8,3,1,2,0,1,0,0,4,4,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,6,99,78131,38695,39436,37584,38324,472,399,200,176,83,139,9,19,347,379,37338,38507,36313,37444,447,388,163,159,81,137,7,16,327,363,1357,929,1271,880,25,11,37,17,2,2,2,3,20,16 -050,01,043,Alabama,Cullman County,7,0,952,493,459,476,443,5,4,3,1,1,1,1,0,7,10,442,414,428,399,4,4,2,0,1,1,0,0,7,10,51,45,48,44,1,0,1,1,0,0,1,0,0,0 -050,01,043,Alabama,Cullman County,7,1,3886,1999,1887,1916,1812,33,17,7,6,4,7,1,1,38,44,1852,1751,1776,1680,32,17,7,5,4,7,0,1,33,41,147,136,140,132,1,0,0,1,0,0,1,0,5,3 -050,01,043,Alabama,Cullman County,7,2,5156,2672,2484,2598,2389,42,35,6,13,7,11,0,2,19,34,2544,2355,2476,2271,41,29,3,11,7,11,0,2,17,31,128,129,122,118,1,6,3,2,0,0,0,0,2,3 -050,01,043,Alabama,Cullman County,7,3,5311,2719,2592,2638,2504,40,40,11,13,8,10,0,1,22,24,2626,2498,2550,2418,38,38,9,10,7,10,0,1,22,21,93,94,88,86,2,2,2,3,1,0,0,0,0,3 -050,01,043,Alabama,Cullman County,7,4,5410,2850,2560,2751,2471,37,44,20,13,11,9,1,1,30,22,2719,2468,2632,2385,34,42,16,12,9,9,1,1,27,19,131,92,119,86,3,2,4,1,2,0,0,0,3,3 -050,01,043,Alabama,Cullman County,7,5,4846,2482,2364,2382,2274,55,35,15,24,4,9,2,0,24,22,2327,2278,2240,2195,50,34,11,22,4,9,1,0,21,18,155,86,142,79,5,1,4,2,0,0,1,0,3,4 -050,01,043,Alabama,Cullman County,7,6,4870,2491,2379,2392,2285,42,31,24,10,7,18,2,5,24,30,2249,2268,2171,2181,37,30,14,8,7,17,1,3,19,29,242,111,221,104,5,1,10,2,0,1,1,2,5,1 -050,01,043,Alabama,Cullman County,7,7,4974,2523,2451,2440,2379,35,19,16,11,9,18,1,1,22,23,2340,2326,2269,2265,33,16,12,7,9,18,1,1,16,19,183,125,171,114,2,3,4,4,0,0,0,0,6,4 -050,01,043,Alabama,Cullman County,7,8,5217,2678,2539,2610,2472,35,19,10,17,8,7,0,4,15,20,2575,2467,2511,2406,34,17,9,16,7,7,0,2,14,19,103,72,99,66,1,2,1,1,1,0,0,2,1,1 -050,01,043,Alabama,Cullman County,7,9,5781,2978,2803,2916,2728,19,19,13,11,5,8,2,2,23,35,2904,2765,2847,2694,18,19,11,10,5,8,2,2,21,32,74,38,69,34,1,0,2,1,0,0,0,0,2,3 -050,01,043,Alabama,Cullman County,7,10,5871,2920,2951,2838,2857,21,38,21,15,6,13,0,2,34,26,2868,2910,2794,2819,19,38,20,13,5,13,0,1,30,26,52,41,44,38,2,0,1,2,1,0,0,1,4,0 -050,01,043,Alabama,Cullman County,7,11,5285,2638,2647,2573,2573,27,18,17,19,6,12,0,2,15,23,2589,2619,2527,2547,25,18,16,18,6,12,0,2,15,22,49,28,46,26,2,0,1,1,0,0,0,0,0,1 -050,01,043,Alabama,Cullman County,7,12,5176,2508,2668,2429,2587,26,38,21,15,5,8,0,0,27,20,2483,2654,2408,2574,26,37,20,15,5,8,0,0,24,20,25,14,21,13,0,1,1,0,0,0,0,0,3,0 -050,01,043,Alabama,Cullman County,7,13,4231,2073,2158,2034,2120,13,15,8,8,2,7,0,0,16,8,2062,2143,2023,2106,13,15,8,8,2,7,0,0,16,7,11,15,11,14,0,0,0,0,0,0,0,0,0,1 -050,01,043,Alabama,Cullman County,7,14,3639,1687,1952,1654,1903,18,19,4,5,1,6,0,0,10,19,1676,1939,1644,1890,17,19,4,5,1,6,0,0,10,19,11,13,10,13,1,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,7,15,2832,1248,1584,1224,1547,8,10,2,4,1,3,0,1,13,19,1241,1574,1218,1538,8,10,2,4,1,3,0,1,12,18,7,10,6,9,0,0,0,0,0,0,0,0,1,1 -050,01,043,Alabama,Cullman County,7,16,2420,1016,1404,1001,1379,7,8,2,3,1,4,0,0,5,10,1011,1396,996,1372,7,8,2,2,1,4,0,0,5,10,5,8,5,7,0,0,0,1,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,7,17,1644,620,1024,611,1010,4,4,0,0,0,1,0,1,5,8,618,1018,609,1006,4,4,0,0,0,0,0,0,5,8,2,6,2,4,0,0,0,0,0,1,0,1,0,0 -050,01,043,Alabama,Cullman County,7,18,1191,364,827,354,815,5,5,1,1,1,1,0,0,3,5,363,824,353,812,5,5,1,1,1,1,0,0,3,5,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,7,99,78692,38959,39733,37837,38548,472,418,201,189,87,153,10,23,352,402,37489,38667,36472,37558,445,400,167,167,82,151,6,17,317,374,1470,1066,1365,990,27,18,34,22,5,2,4,6,35,28 -050,01,043,Alabama,Cullman County,8,0,1014,522,492,503,472,7,5,1,0,1,3,1,0,9,12,468,434,451,416,6,4,1,0,1,3,0,0,9,11,54,58,52,56,1,1,0,0,0,0,1,0,0,1 -050,01,043,Alabama,Cullman County,8,1,3807,1950,1857,1869,1775,29,23,10,7,6,12,1,1,35,39,1792,1709,1722,1633,27,21,8,6,6,12,0,0,29,37,158,148,147,142,2,2,2,1,0,0,1,1,6,2 -050,01,043,Alabama,Cullman County,8,2,5123,2660,2463,2580,2359,41,34,5,18,6,13,0,0,28,39,2513,2319,2442,2229,37,29,2,13,6,13,0,0,26,35,147,144,138,130,4,5,3,5,0,0,0,0,2,4 -050,01,043,Alabama,Cullman County,8,3,5356,2768,2588,2687,2497,39,38,11,11,9,9,0,0,22,33,2661,2469,2587,2390,37,34,9,7,8,9,0,0,20,29,107,119,100,107,2,4,2,4,1,0,0,0,2,4 -050,01,043,Alabama,Cullman County,8,4,5387,2816,2571,2711,2471,42,51,21,14,10,9,0,1,32,25,2678,2475,2584,2381,39,48,18,13,8,9,0,1,29,23,138,96,127,90,3,3,3,1,2,0,0,0,3,2 -050,01,043,Alabama,Cullman County,8,5,4719,2421,2298,2331,2219,49,31,11,19,3,9,2,1,25,19,2265,2194,2191,2121,42,30,7,17,3,9,1,1,21,16,156,104,140,98,7,1,4,2,0,0,1,0,4,3 -050,01,043,Alabama,Cullman County,8,6,4956,2570,2386,2474,2302,40,29,22,10,9,16,4,5,21,24,2319,2268,2244,2191,34,28,12,8,9,16,2,3,18,22,251,118,230,111,6,1,10,2,0,0,2,2,3,2 -050,01,043,Alabama,Cullman County,8,7,4837,2465,2372,2376,2314,41,19,18,11,8,10,1,1,21,17,2235,2239,2157,2191,38,16,14,7,8,10,1,1,17,14,230,133,219,123,3,3,4,4,0,0,0,0,4,3 -050,01,043,Alabama,Cullman County,8,8,5237,2690,2547,2615,2471,37,20,9,15,8,22,0,3,21,16,2593,2461,2523,2391,36,18,7,14,7,22,0,1,20,15,97,86,92,80,1,2,2,1,1,0,0,2,1,1 -050,01,043,Alabama,Cullman County,8,9,5614,2863,2751,2792,2667,31,26,15,15,6,5,1,3,18,35,2768,2705,2701,2627,30,24,13,14,6,5,1,3,17,32,95,46,91,40,1,2,2,1,0,0,0,0,1,3 -050,01,043,Alabama,Cullman County,8,10,6025,3011,3014,2924,2911,28,41,23,16,10,14,0,1,26,31,2959,2962,2880,2863,25,40,21,14,10,14,0,0,23,31,52,52,44,48,3,1,2,2,0,0,0,1,3,0 -050,01,043,Alabama,Cullman County,8,11,5405,2692,2713,2609,2642,30,21,19,18,6,11,0,1,28,20,2632,2684,2553,2616,27,21,18,16,6,11,0,1,28,19,60,29,56,26,3,0,1,2,0,0,0,0,0,1 -050,01,043,Alabama,Cullman County,8,12,5376,2641,2735,2561,2651,18,30,28,18,5,6,0,0,29,30,2613,2715,2536,2632,18,30,27,18,5,6,0,0,27,29,28,20,25,19,0,0,1,0,0,0,0,0,2,1 -050,01,043,Alabama,Cullman County,8,13,4238,2045,2193,2006,2150,14,15,6,8,3,10,0,0,16,10,2037,2172,1998,2130,14,15,6,8,3,10,0,0,16,9,8,21,8,20,0,0,0,0,0,0,0,0,0,1 -050,01,043,Alabama,Cullman County,8,14,3788,1735,2053,1706,2007,9,16,6,8,3,4,0,0,11,18,1727,2043,1698,1997,9,16,6,8,3,4,0,0,11,18,8,10,8,10,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,8,15,2858,1317,1541,1289,1510,8,10,4,5,3,3,0,0,13,13,1310,1532,1283,1501,8,10,4,5,3,3,0,0,12,13,7,9,6,9,0,0,0,0,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,8,16,2413,1005,1408,991,1387,6,8,1,3,1,5,0,0,6,5,999,1403,986,1383,6,8,1,2,1,5,0,0,5,5,6,5,5,4,0,0,0,1,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,8,17,1649,619,1030,611,1021,5,4,0,0,0,1,0,0,3,4,617,1026,609,1017,5,4,0,0,0,1,0,0,3,4,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,8,18,1242,403,839,396,824,1,5,1,3,1,1,0,0,4,6,402,836,395,821,1,5,1,3,1,1,0,0,4,6,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,8,99,79044,39193,39851,38031,38650,475,426,211,199,98,163,10,17,368,396,37588,38646,36540,37530,439,401,175,173,94,163,5,11,335,368,1605,1205,1491,1120,36,25,36,26,4,0,5,6,33,28 -050,01,043,Alabama,Cullman County,9,0,1052,537,515,519,495,6,6,1,1,1,1,1,0,9,12,471,464,455,447,5,5,1,0,1,1,0,0,9,11,66,51,64,48,1,1,0,1,0,0,1,0,0,1 -050,01,043,Alabama,Cullman County,9,1,3894,2047,1847,1960,1759,30,25,10,8,7,10,1,1,39,44,1867,1672,1791,1589,28,23,8,7,7,10,0,0,33,43,180,175,169,170,2,2,2,1,0,0,1,1,6,1 -050,01,043,Alabama,Cullman County,9,2,5206,2669,2537,2574,2429,46,36,7,18,10,12,0,0,32,42,2515,2369,2431,2276,42,31,5,13,9,12,0,0,28,37,154,168,143,153,4,5,2,5,1,0,0,0,4,5 -050,01,043,Alabama,Cullman County,9,3,5278,2754,2524,2668,2435,41,38,12,12,9,10,0,1,24,28,2637,2402,2556,2324,40,34,10,8,8,10,0,1,23,25,117,122,112,111,1,4,2,4,1,0,0,0,1,3 -050,01,043,Alabama,Cullman County,9,4,5440,2808,2632,2695,2527,48,56,21,12,9,11,0,1,35,25,2662,2526,2560,2428,45,53,18,11,7,11,0,1,32,22,146,106,135,99,3,3,3,1,2,0,0,0,3,3 -050,01,043,Alabama,Cullman County,9,5,4684,2401,2283,2320,2205,42,33,13,18,3,9,2,0,21,18,2256,2165,2189,2093,36,32,9,16,3,9,1,0,18,15,145,118,131,112,6,1,4,2,0,0,1,0,3,3 -050,01,043,Alabama,Cullman County,9,6,4960,2541,2419,2441,2335,42,27,22,8,14,18,3,5,19,26,2309,2303,2230,2225,35,26,13,6,14,18,1,3,16,25,232,116,211,110,7,1,9,2,0,0,2,2,3,1 -050,01,043,Alabama,Cullman County,9,7,4770,2432,2338,2336,2268,45,23,18,10,7,18,1,0,25,19,2197,2207,2114,2150,42,19,13,6,7,18,1,0,20,14,235,131,222,118,3,4,5,4,0,0,0,0,5,5 -050,01,043,Alabama,Cullman County,9,8,5243,2664,2579,2587,2509,37,16,12,12,10,19,0,4,18,19,2558,2493,2487,2430,35,14,10,11,9,19,0,1,17,18,106,86,100,79,2,2,2,1,1,0,0,3,1,1 -050,01,043,Alabama,Cullman County,9,9,5508,2863,2645,2797,2568,30,26,11,13,5,8,1,1,19,29,2759,2583,2698,2512,29,24,9,12,5,8,1,1,17,26,104,62,99,56,1,2,2,1,0,0,0,0,2,3 -050,01,043,Alabama,Cullman County,9,10,5962,2956,3006,2863,2904,20,34,26,22,13,13,0,2,34,31,2890,2949,2805,2850,17,33,24,21,13,13,0,1,31,31,66,57,58,54,3,1,2,1,0,0,0,1,3,0 -050,01,043,Alabama,Cullman County,9,11,5622,2846,2776,2756,2694,40,25,16,23,6,12,1,2,27,20,2781,2746,2696,2667,36,25,15,21,6,12,1,2,27,19,65,30,60,27,4,0,1,2,0,0,0,0,0,1 -050,01,043,Alabama,Cullman County,9,12,5221,2532,2689,2465,2598,14,32,19,19,5,11,0,0,29,29,2506,2667,2443,2577,14,32,18,19,5,11,0,0,26,28,26,22,22,21,0,0,1,0,0,0,0,0,3,1 -050,01,043,Alabama,Cullman County,9,13,4616,2207,2409,2151,2359,21,18,10,9,4,10,0,0,21,13,2194,2386,2138,2337,21,18,10,9,4,10,0,0,21,12,13,23,13,22,0,0,0,0,0,0,0,0,0,1 -050,01,043,Alabama,Cullman County,9,14,3850,1805,2045,1765,2001,12,10,10,9,3,5,0,0,15,20,1797,2038,1758,1994,12,10,10,9,3,5,0,0,14,20,8,7,7,7,0,0,0,0,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,9,15,2973,1339,1634,1308,1602,10,9,3,7,3,3,0,0,15,13,1334,1625,1303,1593,10,9,3,7,3,3,0,0,15,13,5,9,5,9,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,9,16,2362,1007,1355,987,1330,10,7,2,3,1,7,0,0,7,8,998,1350,979,1326,10,7,2,2,1,7,0,0,6,8,9,5,8,4,0,0,0,1,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,9,17,1680,617,1063,609,1052,5,4,0,0,0,1,0,0,3,6,613,1059,605,1048,5,4,0,0,0,1,0,0,3,6,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,9,18,1255,415,840,407,828,2,3,1,3,1,1,0,0,4,5,414,838,406,826,2,3,1,3,1,1,0,0,4,5,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,9,99,79576,39440,40136,38208,38898,501,428,214,207,111,179,10,17,396,407,37758,38842,36644,37692,464,402,179,181,106,179,5,10,360,378,1682,1294,1564,1206,37,26,35,26,5,0,5,7,36,29 -050,01,043,Alabama,Cullman County,10,0,1051,511,540,491,518,6,5,1,1,1,1,1,0,11,15,451,487,433,468,5,4,1,0,1,1,0,0,11,14,60,53,58,50,1,1,0,1,0,0,1,0,0,1 -050,01,043,Alabama,Cullman County,10,1,3975,2058,1917,1972,1831,28,22,10,9,8,7,1,1,39,47,1863,1705,1791,1626,25,20,8,8,8,7,0,0,31,44,195,212,181,205,3,2,2,1,0,0,1,1,8,3 -050,01,043,Alabama,Cullman County,10,2,5240,2705,2535,2614,2423,41,32,7,20,9,14,0,0,34,46,2520,2360,2441,2264,37,27,4,15,8,14,0,0,30,40,185,175,173,159,4,5,3,5,1,0,0,0,4,6 -050,01,043,Alabama,Cullman County,10,3,5357,2812,2545,2721,2455,43,39,14,14,10,9,0,1,24,27,2679,2406,2594,2328,41,35,12,10,9,9,0,1,23,23,133,139,127,127,2,4,2,4,1,0,0,0,1,4 -050,01,043,Alabama,Cullman County,10,4,5456,2809,2647,2686,2536,53,61,22,9,11,11,0,1,37,29,2665,2535,2554,2431,49,58,19,8,9,11,0,1,34,26,144,112,132,105,4,3,3,1,2,0,0,0,3,3 -050,01,043,Alabama,Cullman County,10,5,4685,2430,2255,2340,2172,47,38,13,17,4,11,2,0,24,17,2274,2141,2200,2065,41,37,9,15,4,11,0,0,20,13,156,114,140,107,6,1,4,2,0,0,2,0,4,4 -050,01,043,Alabama,Cullman County,10,6,4964,2531,2433,2437,2334,34,30,16,14,12,24,5,5,27,26,2273,2329,2203,2236,27,29,8,12,12,24,2,3,21,25,258,104,234,98,7,1,8,2,0,0,3,2,6,1 -050,01,043,Alabama,Cullman County,10,7,4861,2516,2345,2423,2266,41,23,20,13,7,21,1,0,24,22,2286,2191,2205,2127,38,18,16,8,7,21,1,0,19,17,230,154,218,139,3,5,4,5,0,0,0,0,5,5 -050,01,043,Alabama,Cullman County,10,8,5216,2606,2610,2526,2544,35,14,11,11,16,19,0,5,18,17,2491,2518,2417,2460,33,12,9,10,15,19,0,1,17,16,115,92,109,84,2,2,2,1,1,0,0,4,1,1 -050,01,043,Alabama,Cullman County,10,9,5369,2776,2593,2718,2525,25,21,9,14,5,5,1,2,18,26,2684,2530,2632,2469,24,19,8,12,5,5,1,2,14,23,92,63,86,56,1,2,1,2,0,0,0,0,4,3 -050,01,043,Alabama,Cullman County,10,10,5972,2995,2977,2898,2884,25,30,26,13,9,16,0,2,37,32,2903,2914,2816,2824,20,29,24,12,9,16,0,1,34,32,92,63,82,60,5,1,2,1,0,0,0,1,3,0 -050,01,043,Alabama,Cullman County,10,11,5772,2859,2913,2776,2820,38,26,22,22,6,12,1,2,16,31,2788,2868,2712,2779,33,26,20,20,6,12,1,2,16,29,71,45,64,41,5,0,2,2,0,0,0,0,0,2 -050,01,043,Alabama,Cullman County,10,12,5199,2534,2665,2454,2581,17,34,20,16,7,12,0,0,36,22,2503,2647,2427,2565,17,34,19,16,7,11,0,0,33,21,31,18,27,16,0,0,1,0,0,1,0,0,3,1 -050,01,043,Alabama,Cullman County,10,13,4783,2318,2465,2265,2406,21,23,10,12,3,11,0,0,19,13,2307,2444,2254,2386,21,23,10,12,3,11,0,0,19,12,11,21,11,20,0,0,0,0,0,0,0,0,0,1 -050,01,043,Alabama,Cullman County,10,14,3972,1862,2110,1830,2066,9,10,6,8,3,5,0,0,14,21,1849,2099,1818,2055,9,10,6,8,3,5,0,0,13,21,13,11,12,11,0,0,0,0,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,10,15,3051,1347,1704,1319,1666,9,10,3,8,4,4,0,0,12,16,1339,1695,1311,1657,9,10,3,8,4,4,0,0,12,16,8,9,8,9,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,10,16,2368,1013,1355,992,1327,11,7,3,4,1,6,0,0,6,11,1005,1345,985,1318,11,7,3,3,1,6,0,0,5,11,8,10,7,9,0,0,0,1,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,10,17,1740,645,1095,638,1084,4,4,0,0,0,1,0,0,3,6,641,1091,634,1080,4,4,0,0,0,1,0,0,3,6,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,10,18,1242,396,846,386,832,3,4,1,3,1,1,0,0,5,6,395,843,385,829,3,4,1,3,1,1,0,0,5,6,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,10,99,80273,39723,40550,38486,39270,490,433,214,208,117,190,12,19,404,430,37916,39148,36812,37967,447,406,180,180,112,189,5,11,360,395,1807,1402,1674,1303,43,27,34,28,5,1,7,8,44,35 -050,01,043,Alabama,Cullman County,11,0,1027,482,545,465,522,6,6,0,2,1,3,1,0,9,12,418,489,403,470,5,5,0,0,1,3,0,0,9,11,64,56,62,52,1,1,0,2,0,0,1,0,0,1 -050,01,043,Alabama,Cullman County,11,1,3957,2063,1894,1970,1818,25,20,13,10,9,10,1,1,45,35,1863,1694,1785,1625,22,18,11,9,9,10,0,0,36,32,200,200,185,193,3,2,2,1,0,0,1,1,9,3 -050,01,043,Alabama,Cullman County,11,2,5219,2684,2535,2588,2416,37,33,13,25,9,17,0,0,37,44,2492,2336,2408,2235,33,27,9,19,9,17,0,0,33,38,192,199,180,181,4,6,4,6,0,0,0,0,4,6 -050,01,043,Alabama,Cullman County,11,3,5263,2755,2508,2660,2412,43,34,11,13,12,12,0,1,29,36,2610,2370,2526,2286,37,30,9,9,10,12,0,1,28,32,145,138,134,126,6,4,2,4,2,0,0,0,1,4 -050,01,043,Alabama,Cullman County,11,4,5528,2833,2695,2709,2583,54,63,23,9,11,11,0,2,36,27,2665,2574,2553,2469,50,60,20,8,9,11,0,2,33,24,168,121,156,114,4,3,3,1,2,0,0,0,3,3 -050,01,043,Alabama,Cullman County,11,5,4704,2434,2270,2350,2186,45,41,9,13,6,12,2,0,22,18,2249,2154,2180,2077,39,40,6,11,6,12,0,0,18,14,185,116,170,109,6,1,3,2,0,0,2,0,4,4 -050,01,043,Alabama,Cullman County,11,6,4791,2456,2335,2373,2245,34,25,13,10,10,26,3,4,23,25,2202,2203,2144,2119,24,24,8,8,10,26,0,2,16,24,254,132,229,126,10,1,5,2,0,0,3,2,7,1 -050,01,043,Alabama,Cullman County,11,7,4815,2464,2351,2366,2280,46,28,20,13,12,11,1,1,19,18,2275,2220,2190,2164,44,23,15,9,11,11,1,1,14,12,189,131,176,116,2,5,5,4,1,0,0,0,5,6 -050,01,043,Alabama,Cullman County,11,8,5173,2597,2576,2513,2513,35,15,9,13,19,14,0,4,21,17,2466,2463,2389,2408,32,13,7,12,18,14,0,0,20,16,131,113,124,105,3,2,2,1,1,0,0,4,1,1 -050,01,043,Alabama,Cullman County,11,9,5250,2719,2531,2660,2465,19,20,15,13,5,7,2,2,18,24,2620,2470,2567,2411,18,18,14,11,5,7,2,2,14,21,99,61,93,54,1,2,1,2,0,0,0,0,4,3 -050,01,043,Alabama,Cullman County,11,10,5990,3033,2957,2926,2868,36,25,28,16,12,14,0,2,31,32,2950,2886,2853,2800,31,24,26,15,12,14,0,1,28,32,83,71,73,68,5,1,2,1,0,0,0,1,3,0 -050,01,043,Alabama,Cullman County,11,11,5924,2964,2960,2864,2865,34,30,23,24,8,12,3,1,32,28,2887,2914,2794,2823,29,30,21,22,8,12,3,1,32,26,77,46,70,42,5,0,2,2,0,0,0,0,0,2 -050,01,043,Alabama,Cullman County,11,12,5144,2483,2661,2402,2586,19,17,22,18,8,9,0,0,32,31,2448,2638,2371,2565,19,17,21,18,8,8,0,0,29,30,35,23,31,21,0,0,1,0,0,1,0,0,3,1 -050,01,043,Alabama,Cullman County,11,13,4966,2397,2569,2337,2502,21,21,15,13,4,13,0,0,20,20,2383,2548,2323,2482,21,21,15,13,4,13,0,0,20,19,14,21,14,20,0,0,0,0,0,0,0,0,0,1 -050,01,043,Alabama,Cullman County,11,14,4053,1889,2164,1850,2116,13,14,7,10,3,4,0,1,16,19,1882,2149,1844,2101,13,14,7,10,3,4,0,1,15,19,7,15,6,15,0,0,0,0,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,11,15,3201,1418,1783,1390,1746,8,10,3,11,4,3,0,0,13,13,1405,1771,1377,1734,8,10,3,11,4,3,0,0,13,13,13,12,13,12,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,11,16,2409,1052,1357,1029,1329,12,10,3,4,1,7,0,0,7,7,1046,1352,1024,1325,12,10,3,3,1,7,0,0,6,7,6,5,5,4,0,0,0,1,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,11,17,1671,637,1034,630,1022,4,4,0,0,0,1,0,0,3,7,633,1030,626,1018,4,4,0,0,0,1,0,0,3,7,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,11,18,1266,407,859,397,845,4,5,1,2,1,1,0,0,4,6,405,856,395,842,4,5,1,2,1,1,0,0,4,6,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,11,99,80351,39767,40584,38479,39319,495,421,228,219,135,187,13,19,417,419,37899,39117,36752,37954,445,393,196,190,129,186,6,11,371,383,1868,1467,1727,1365,50,28,32,29,6,1,7,8,46,36 -050,01,043,Alabama,Cullman County,12,0,947,453,494,438,469,6,7,0,2,1,2,1,0,7,14,398,443,385,422,5,6,0,0,1,2,0,0,7,13,55,51,53,47,1,1,0,2,0,0,1,0,0,1 -050,01,043,Alabama,Cullman County,12,1,3984,2072,1912,1982,1837,21,17,14,10,9,12,1,1,45,35,1867,1716,1792,1648,18,15,12,9,9,12,0,0,36,32,205,196,190,189,3,2,2,1,0,0,1,1,9,3 -050,01,043,Alabama,Cullman County,12,2,5141,2652,2489,2568,2370,35,32,9,23,12,16,0,0,28,48,2445,2293,2374,2192,31,26,5,17,11,16,0,0,24,42,207,196,194,178,4,6,4,6,1,0,0,0,4,6 -050,01,043,Alabama,Cullman County,12,3,5278,2757,2521,2658,2430,42,31,16,13,11,12,0,1,30,34,2606,2371,2516,2292,37,27,14,9,10,12,0,1,29,30,151,150,142,138,5,4,2,4,1,0,0,0,1,4 -050,01,043,Alabama,Cullman County,12,4,5442,2806,2636,2684,2524,53,63,24,9,11,11,0,1,34,28,2642,2509,2532,2404,49,60,21,8,9,11,0,1,31,25,164,127,152,120,4,3,3,1,2,0,0,0,3,3 -050,01,043,Alabama,Cullman County,12,5,4769,2423,2346,2328,2254,51,44,12,15,6,12,2,0,24,21,2229,2215,2149,2130,45,43,9,13,6,12,0,0,20,17,194,131,179,124,6,1,3,2,0,0,2,0,4,4 -050,01,043,Alabama,Cullman County,12,6,4720,2402,2318,2309,2220,33,31,19,11,12,26,5,5,24,25,2130,2173,2065,2081,23,30,11,9,12,26,2,3,17,24,272,145,244,139,10,1,8,2,0,0,3,2,7,1 -050,01,043,Alabama,Cullman County,12,7,4858,2493,2365,2391,2287,44,26,21,13,12,17,1,1,24,21,2283,2225,2198,2163,40,21,15,8,11,17,1,1,18,15,210,140,193,124,4,5,6,5,1,0,0,0,6,6 -050,01,043,Alabama,Cullman County,12,8,5164,2611,2553,2519,2481,37,14,10,18,20,14,0,5,25,21,2472,2436,2387,2372,34,12,8,17,19,14,0,1,24,20,139,117,132,109,3,2,2,1,1,0,0,4,1,1 -050,01,043,Alabama,Cullman County,12,9,5186,2647,2539,2594,2458,18,22,11,19,6,13,2,2,16,25,2537,2472,2490,2398,17,20,10,17,6,13,1,2,13,22,110,67,104,60,1,2,1,2,0,0,1,0,3,3 -050,01,043,Alabama,Cullman County,12,10,5950,3002,2948,2902,2858,31,25,28,17,9,16,0,2,32,30,2926,2877,2836,2791,26,24,26,15,9,16,0,1,29,30,76,71,66,67,5,1,2,2,0,0,0,1,3,0 -050,01,043,Alabama,Cullman County,12,11,5837,2931,2906,2838,2813,31,28,23,23,8,12,2,1,29,29,2867,2865,2782,2776,26,28,20,21,8,12,2,1,29,27,64,41,56,37,5,0,3,2,0,0,0,0,0,2 -050,01,043,Alabama,Cullman County,12,12,5192,2525,2667,2454,2595,21,20,17,15,8,11,0,0,25,26,2490,2645,2423,2575,21,20,16,15,8,10,0,0,22,25,35,22,31,20,0,0,1,0,0,1,0,0,3,1 -050,01,043,Alabama,Cullman County,12,13,5128,2450,2678,2393,2610,17,26,17,13,4,13,0,0,19,16,2435,2656,2378,2589,17,26,17,13,4,13,0,0,19,15,15,22,15,21,0,0,0,0,0,0,0,0,0,1 -050,01,043,Alabama,Cullman County,12,14,4127,1919,2208,1875,2157,16,12,9,12,3,6,0,1,16,20,1909,2191,1866,2140,16,12,9,12,3,6,0,1,15,20,10,17,9,17,0,0,0,0,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,12,15,3273,1468,1805,1440,1766,7,13,5,9,4,4,0,0,12,13,1457,1793,1429,1754,7,13,5,9,4,4,0,0,12,13,11,12,11,12,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,12,16,2446,1058,1388,1037,1357,11,10,2,4,1,8,0,0,7,9,1049,1380,1029,1350,11,10,2,3,1,8,0,0,6,9,9,8,8,7,0,0,0,1,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,12,17,1660,640,1020,631,1008,6,4,0,0,0,1,0,0,3,7,636,1015,627,1003,6,4,0,0,0,1,0,0,3,7,4,5,4,5,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,12,18,1304,410,894,401,880,4,4,1,2,1,2,0,0,3,6,408,891,399,877,4,4,1,2,1,2,0,0,3,6,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,12,99,80406,39719,40687,38442,39374,484,429,238,228,138,208,14,20,403,428,37786,39166,36657,37957,433,401,201,197,132,207,6,12,357,392,1933,1521,1785,1417,51,28,37,31,6,1,8,8,46,36 -050,01,043,Alabama,Cullman County,13,0,947,451,496,437,471,6,7,0,2,1,2,0,0,7,14,397,443,384,423,5,6,0,0,1,2,0,0,7,12,54,53,53,48,1,1,0,2,0,0,0,0,0,2 -050,01,043,Alabama,Cullman County,13,1,3973,2061,1912,1970,1829,22,19,14,10,8,13,2,2,45,39,1858,1711,1782,1641,20,16,12,8,7,12,0,0,37,34,203,201,188,188,2,3,2,2,1,1,2,2,8,5 -050,01,043,Alabama,Cullman County,13,2,5147,2659,2488,2567,2371,38,33,7,23,13,16,1,1,33,44,2450,2292,2372,2191,33,27,5,17,10,16,1,1,29,40,209,196,195,180,5,6,2,6,3,0,0,0,4,4 -050,01,043,Alabama,Cullman County,13,3,5272,2756,2516,2655,2428,45,32,17,12,8,12,1,3,30,29,2600,2366,2512,2289,39,28,13,9,8,12,0,1,28,27,156,150,143,139,6,4,4,3,0,0,1,2,2,2 -050,01,043,Alabama,Cullman County,13,4,5404,2788,2616,2671,2505,51,62,23,11,9,10,2,3,32,25,2622,2488,2517,2386,46,57,20,9,7,10,1,2,31,24,166,128,154,119,5,5,3,2,2,0,1,1,1,1 -050,01,043,Alabama,Cullman County,13,5,4780,2428,2352,2334,2259,52,44,13,15,7,13,3,3,19,18,2231,2218,2153,2133,45,43,10,12,7,13,0,2,16,15,197,134,181,126,7,1,3,3,0,0,3,1,3,3 -050,01,043,Alabama,Cullman County,13,6,4743,2415,2328,2318,2223,36,34,17,12,14,26,6,5,24,28,2143,2175,2074,2083,25,31,11,10,13,24,2,3,18,24,272,153,244,140,11,3,6,2,1,2,4,2,6,4 -050,01,043,Alabama,Cullman County,13,7,4892,2510,2382,2405,2307,44,26,22,11,12,17,2,1,25,20,2300,2241,2211,2181,40,22,16,6,12,17,0,0,21,15,210,141,194,126,4,4,6,5,0,0,2,1,4,5 -050,01,043,Alabama,Cullman County,13,8,5115,2588,2527,2499,2460,37,15,10,15,17,12,2,5,23,20,2445,2408,2367,2350,33,12,8,14,16,12,1,1,20,19,143,119,132,110,4,3,2,1,1,0,1,4,3,1 -050,01,043,Alabama,Cullman County,13,9,5175,2648,2527,2593,2455,20,21,10,15,6,13,2,0,17,23,2536,2458,2488,2393,19,18,8,14,6,13,1,0,14,20,112,69,105,62,1,3,2,1,0,0,1,0,3,3 -050,01,043,Alabama,Cullman County,13,10,5915,2981,2934,2888,2843,31,28,28,16,9,15,0,2,25,30,2907,2863,2822,2776,26,26,26,15,9,15,0,1,24,30,74,71,66,67,5,2,2,1,0,0,0,1,1,0 -050,01,043,Alabama,Cullman County,13,11,5857,2938,2919,2843,2821,33,33,22,23,9,13,0,1,31,28,2871,2874,2786,2781,27,31,19,21,9,13,0,1,30,27,67,45,57,40,6,2,3,2,0,0,0,0,1,1 -050,01,043,Alabama,Cullman County,13,12,5219,2535,2684,2466,2609,23,24,15,15,6,8,0,0,25,28,2502,2663,2435,2589,23,24,15,15,6,8,0,0,23,27,33,21,31,20,0,0,0,0,0,0,0,0,2,1 -050,01,043,Alabama,Cullman County,13,13,5175,2475,2700,2416,2632,18,28,18,12,4,13,0,0,19,15,2458,2676,2401,2611,16,26,18,12,4,13,0,0,19,14,17,24,15,21,2,2,0,0,0,0,0,0,0,1 -050,01,043,Alabama,Cullman County,13,14,4148,1927,2221,1887,2169,16,14,8,13,1,7,0,0,15,18,1917,2204,1877,2153,16,13,8,13,1,7,0,0,15,18,10,17,10,16,0,1,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,13,15,3288,1476,1812,1449,1771,9,14,4,8,3,5,0,0,11,14,1464,1801,1437,1760,9,14,4,8,3,5,0,0,11,14,12,11,12,11,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,13,16,2435,1056,1379,1038,1355,10,8,2,2,0,5,0,0,6,9,1047,1372,1030,1348,10,8,2,2,0,5,0,0,5,9,9,7,8,7,0,0,0,0,0,0,0,0,1,0 -050,01,043,Alabama,Cullman County,13,17,1662,643,1019,630,1006,7,6,1,1,0,0,0,0,5,6,640,1015,627,1002,7,6,1,1,0,0,0,0,5,6,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,13,18,1312,414,898,404,884,5,4,1,2,1,2,0,0,3,6,412,895,402,881,5,4,1,2,1,2,0,0,3,6,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,13,99,80459,39749,40710,38470,39398,503,452,232,218,128,202,21,26,395,414,37800,39163,36677,37971,444,412,197,188,120,199,6,12,356,381,1949,1547,1793,1427,59,40,35,30,8,3,15,14,39,33 -050,01,045,Alabama,Dale County,1,0,750,355,395,239,270,91,105,3,2,3,2,1,0,18,16,332,369,221,247,90,103,3,2,3,1,1,0,14,16,23,26,18,23,1,2,0,0,0,1,0,0,4,0 -050,01,045,Alabama,Dale County,1,1,2934,1519,1415,1041,954,390,381,7,5,14,8,2,5,65,62,1412,1324,951,885,380,368,5,5,12,7,2,3,62,56,107,91,90,69,10,13,2,0,2,1,0,2,3,6 -050,01,045,Alabama,Dale County,1,2,3689,1983,1706,1349,1163,531,475,11,11,18,9,6,5,68,43,1892,1634,1281,1106,517,466,10,10,17,9,4,4,63,39,91,72,68,57,14,9,1,1,1,0,2,1,5,4 -050,01,045,Alabama,Dale County,1,3,3513,1827,1686,1267,1154,494,458,12,14,13,15,2,2,39,43,1755,1613,1205,1093,490,453,12,13,12,15,1,2,35,37,72,73,62,61,4,5,0,1,1,0,1,0,4,6 -050,01,045,Alabama,Dale County,1,4,3619,1830,1789,1263,1207,490,505,12,10,25,23,2,5,38,39,1751,1716,1208,1151,476,494,12,10,24,21,1,4,30,36,79,73,55,56,14,11,0,0,1,2,1,1,8,3 -050,01,045,Alabama,Dale County,1,5,3235,1638,1597,1198,1118,376,423,10,8,14,15,7,3,33,30,1568,1517,1140,1047,367,417,10,8,12,15,7,2,32,28,70,80,58,71,9,6,0,0,2,0,0,1,1,2 -050,01,045,Alabama,Dale County,1,6,3825,2069,1756,1613,1278,384,413,17,10,19,27,7,3,29,25,1962,1653,1525,1187,370,407,15,9,17,25,7,1,28,24,107,103,88,91,14,6,2,1,2,2,0,2,1,1 -050,01,045,Alabama,Dale County,1,7,3514,1736,1778,1392,1292,289,405,16,14,18,33,3,6,18,28,1670,1705,1331,1233,286,396,15,13,18,32,2,5,18,26,66,73,61,59,3,9,1,1,0,1,1,1,0,2 -050,01,045,Alabama,Dale County,1,8,3788,1914,1874,1530,1400,329,409,14,13,9,34,6,1,26,17,1835,1813,1463,1350,323,403,13,10,7,32,5,1,24,17,79,61,67,50,6,6,1,3,2,2,1,0,2,0 -050,01,045,Alabama,Dale County,1,9,3742,1870,1872,1468,1377,351,415,11,12,10,40,3,2,27,26,1820,1827,1420,1338,350,412,11,12,10,40,3,2,26,23,50,45,48,39,1,3,0,0,0,0,0,0,1,3 -050,01,045,Alabama,Dale County,1,10,3198,1574,1624,1217,1228,309,330,17,9,7,37,1,1,23,19,1527,1599,1175,1207,305,328,17,9,7,36,1,1,22,18,47,25,42,21,4,2,0,0,0,1,0,0,1,1 -050,01,045,Alabama,Dale County,1,11,2987,1518,1469,1269,1154,208,242,14,8,9,38,2,3,16,24,1499,1450,1252,1139,207,238,13,8,9,38,2,3,16,24,19,19,17,15,1,4,1,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,1,12,2402,1143,1259,963,1047,153,168,7,5,6,31,0,1,14,7,1137,1236,959,1030,151,164,7,5,6,30,0,1,14,6,6,23,4,17,2,4,0,0,0,1,0,0,0,1 -050,01,045,Alabama,Dale County,1,13,2107,947,1160,845,983,88,141,6,5,2,23,0,0,6,8,943,1151,842,975,87,140,6,5,2,23,0,0,6,8,4,9,3,8,1,1,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,1,14,1823,860,963,770,809,80,119,4,4,0,23,0,0,6,8,851,952,761,799,80,119,4,4,0,23,0,0,6,7,9,11,9,10,0,0,0,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,1,15,1501,677,824,591,682,76,118,2,3,2,16,1,0,5,5,672,816,587,676,75,117,2,3,2,16,1,0,5,4,5,8,4,6,1,1,0,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,1,16,1145,487,658,424,555,53,94,0,1,3,5,1,1,6,2,482,654,420,553,53,92,0,1,3,5,0,1,6,2,5,4,4,2,0,2,0,0,0,0,1,0,0,0 -050,01,045,Alabama,Dale County,1,17,696,257,439,230,360,23,67,0,3,2,1,0,0,2,8,256,437,229,358,23,67,0,3,2,1,0,0,2,8,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,1,18,652,151,501,128,402,21,98,1,0,1,1,0,0,0,0,150,498,127,399,21,98,1,0,1,1,0,0,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,1,99,49120,24355,24765,18797,18433,4736,5366,164,137,175,381,44,38,439,410,23514,23964,18097,17773,4651,5282,156,130,164,370,37,30,409,379,841,801,700,660,85,84,8,7,11,11,7,8,30,31 -050,01,045,Alabama,Dale County,2,0,752,355,397,240,272,91,105,3,2,3,2,1,0,17,16,331,370,221,248,90,103,3,2,3,1,1,0,13,16,24,27,19,24,1,2,0,0,0,1,0,0,4,0 -050,01,045,Alabama,Dale County,2,1,2921,1516,1405,1034,949,387,376,7,5,14,8,2,5,72,62,1409,1314,944,880,377,363,5,5,12,7,2,3,69,56,107,91,90,69,10,13,2,0,2,1,0,2,3,6 -050,01,045,Alabama,Dale County,2,2,3659,1967,1692,1336,1153,526,468,11,11,18,9,6,5,70,46,1876,1620,1268,1096,512,459,10,10,17,9,4,4,65,42,91,72,68,57,14,9,1,1,1,0,2,1,5,4 -050,01,045,Alabama,Dale County,2,3,3523,1831,1692,1268,1155,499,461,12,14,13,15,2,2,37,45,1759,1619,1206,1094,495,456,12,13,12,15,1,2,33,39,72,73,62,61,4,5,0,1,1,0,1,0,4,6 -050,01,045,Alabama,Dale County,2,4,3625,1843,1782,1270,1202,493,505,12,10,25,23,2,5,41,37,1763,1709,1215,1146,479,494,12,10,24,21,1,4,32,34,80,73,55,56,14,11,0,0,1,2,1,1,9,3 -050,01,045,Alabama,Dale County,2,5,3254,1650,1604,1207,1124,377,424,10,8,14,14,7,3,35,31,1578,1524,1147,1053,368,418,10,8,12,14,7,2,34,29,72,80,60,71,9,6,0,0,2,0,0,1,1,2 -050,01,045,Alabama,Dale County,2,6,3780,2044,1736,1592,1263,382,411,17,10,19,27,7,3,27,22,1937,1633,1504,1172,368,405,15,9,17,25,7,1,26,21,107,103,88,91,14,6,2,1,2,2,0,2,1,1 -050,01,045,Alabama,Dale County,2,7,3501,1727,1774,1384,1286,288,405,16,14,18,33,3,6,18,30,1661,1701,1323,1227,285,396,15,13,18,32,2,5,18,28,66,73,61,59,3,9,1,1,0,1,1,1,0,2 -050,01,045,Alabama,Dale County,2,8,3763,1901,1862,1518,1388,328,408,14,13,9,34,6,1,26,18,1822,1801,1451,1338,322,402,13,10,7,32,5,1,24,18,79,61,67,50,6,6,1,3,2,2,1,0,2,0 -050,01,045,Alabama,Dale County,2,9,3744,1870,1874,1467,1378,352,416,11,12,10,40,3,2,27,26,1820,1829,1419,1339,351,413,11,12,10,40,3,2,26,23,50,45,48,39,1,3,0,0,0,0,0,0,1,3 -050,01,045,Alabama,Dale County,2,10,3218,1585,1633,1227,1233,311,331,17,9,7,37,1,1,22,22,1538,1608,1185,1212,307,329,17,9,7,36,1,1,21,21,47,25,42,21,4,2,0,0,0,1,0,0,1,1 -050,01,045,Alabama,Dale County,2,11,3014,1532,1482,1280,1163,211,245,14,8,9,38,2,3,16,25,1513,1463,1263,1148,210,241,13,8,9,38,2,3,16,25,19,19,17,15,1,4,1,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,2,12,2414,1149,1265,971,1052,154,168,7,5,6,31,0,1,11,8,1143,1242,967,1035,152,164,7,5,6,30,0,1,11,7,6,23,4,17,2,4,0,0,0,1,0,0,0,1 -050,01,045,Alabama,Dale County,2,13,2116,950,1166,848,987,88,141,6,5,2,23,0,0,6,10,946,1157,845,979,87,140,6,5,2,23,0,0,6,10,4,9,3,8,1,1,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,2,14,1830,864,966,772,809,82,120,4,4,0,23,0,0,6,10,855,955,763,799,82,120,4,4,0,23,0,0,6,9,9,11,9,10,0,0,0,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,2,15,1499,677,822,591,680,76,118,2,3,2,16,1,0,5,5,672,814,587,674,75,117,2,3,2,16,1,0,5,4,5,8,4,6,1,1,0,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,2,16,1154,490,664,427,560,53,95,0,1,3,5,1,1,6,2,485,660,423,558,53,93,0,1,3,5,0,1,6,2,5,4,4,2,0,2,0,0,0,0,1,0,0,0 -050,01,045,Alabama,Dale County,2,17,702,259,443,232,364,23,67,0,3,2,1,0,0,2,8,258,441,231,362,23,67,0,3,2,1,0,0,2,8,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,2,18,655,152,503,129,405,21,97,1,0,1,1,0,0,0,0,151,500,128,402,21,97,1,0,1,1,0,0,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,2,99,49124,24362,24762,18793,18423,4742,5361,164,137,175,380,44,38,444,423,23517,23960,18090,17762,4657,5277,156,130,164,369,37,30,413,392,845,802,703,661,85,84,8,7,11,11,7,8,31,31 -050,01,045,Alabama,Dale County,3,0,793,396,397,285,289,84,83,1,2,3,3,1,0,22,20,374,375,270,270,81,81,1,2,3,2,1,0,18,20,22,22,15,19,3,2,0,0,0,1,0,0,4,0 -050,01,045,Alabama,Dale County,3,1,2944,1504,1440,1040,1007,374,355,9,6,13,10,2,5,66,57,1409,1349,966,935,362,345,7,6,10,9,2,3,62,51,95,91,74,72,12,10,2,0,3,1,0,2,4,6 -050,01,045,Alabama,Dale County,3,2,3562,1888,1674,1277,1142,518,457,13,11,16,7,4,5,60,52,1800,1589,1215,1077,501,443,12,10,15,7,2,4,55,48,88,85,62,65,17,14,1,1,1,0,2,1,5,4 -050,01,045,Alabama,Dale County,3,3,3480,1791,1689,1237,1122,483,494,11,13,18,17,1,2,41,41,1724,1627,1179,1071,479,489,11,12,18,17,0,2,37,36,67,62,58,51,4,5,0,1,0,0,1,0,4,5 -050,01,045,Alabama,Dale County,3,4,3467,1791,1676,1227,1159,487,441,12,10,21,25,2,3,42,38,1703,1599,1164,1099,472,431,12,10,20,23,1,2,34,34,88,77,63,60,15,10,0,0,1,2,1,1,8,4 -050,01,045,Alabama,Dale County,3,5,3304,1681,1623,1212,1131,398,438,11,9,18,12,7,2,35,31,1588,1532,1133,1047,388,433,11,9,16,12,7,1,33,30,93,91,79,84,10,5,0,0,2,0,0,1,2,1 -050,01,045,Alabama,Dale County,3,6,3828,2041,1787,1601,1278,369,428,19,13,20,36,7,3,25,29,1904,1657,1482,1164,357,418,17,12,18,34,7,1,23,28,137,130,119,114,12,10,2,1,2,2,0,2,2,1 -050,01,045,Alabama,Dale County,3,7,3522,1758,1764,1397,1294,305,399,16,12,17,22,3,6,20,31,1683,1683,1327,1226,302,391,15,11,17,21,2,5,20,29,75,81,70,68,3,8,1,1,0,1,1,1,0,2 -050,01,045,Alabama,Dale County,3,8,3649,1863,1786,1472,1316,337,403,12,13,10,34,6,2,26,18,1784,1738,1406,1278,330,398,11,10,8,32,5,2,24,18,79,48,66,38,7,5,1,3,2,2,1,0,2,0 -050,01,045,Alabama,Dale County,3,9,3764,1864,1900,1469,1423,345,404,10,13,10,33,3,2,27,25,1814,1853,1421,1382,344,401,10,13,10,33,3,2,26,22,50,47,48,41,1,3,0,0,0,0,0,0,1,3 -050,01,045,Alabama,Dale County,3,10,3272,1606,1666,1235,1238,328,362,17,10,7,38,1,0,18,18,1556,1645,1192,1221,322,360,17,10,7,37,1,0,17,17,50,21,43,17,6,2,0,0,0,1,0,0,1,1 -050,01,045,Alabama,Dale County,3,11,3046,1516,1530,1262,1184,211,266,13,8,8,41,1,1,21,30,1495,1503,1243,1161,210,262,12,8,8,41,1,1,21,30,21,27,19,23,1,4,1,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,3,12,2465,1184,1281,1005,1059,155,174,8,7,6,29,0,1,10,11,1176,1254,999,1038,153,170,8,7,6,28,0,1,10,10,8,27,6,21,2,4,0,0,0,1,0,0,0,1 -050,01,045,Alabama,Dale County,3,13,2146,982,1164,867,986,98,139,7,5,3,23,0,0,7,11,976,1153,862,976,97,138,7,5,3,23,0,0,7,11,6,11,5,10,1,1,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,3,14,1893,888,1005,793,847,83,124,4,3,0,21,0,0,8,10,880,991,785,834,83,124,4,3,0,21,0,0,8,9,8,14,8,13,0,0,0,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,3,15,1587,730,857,635,709,85,116,2,3,2,20,1,0,5,9,725,847,631,705,84,115,2,3,2,20,1,0,5,4,5,10,4,4,1,1,0,0,0,0,0,0,0,5 -050,01,045,Alabama,Dale County,3,16,1139,465,674,411,562,46,100,0,1,3,7,1,1,4,3,459,669,406,559,46,98,0,1,3,7,0,1,4,3,6,5,5,3,0,2,0,0,0,0,1,0,0,0 -050,01,045,Alabama,Dale County,3,17,736,276,460,246,380,26,68,0,3,2,2,0,0,2,7,275,456,245,377,26,68,0,3,2,2,0,0,2,6,1,4,1,3,0,0,0,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,3,18,657,168,489,145,396,21,91,1,1,1,1,0,0,0,0,167,486,144,393,21,91,1,1,1,1,0,0,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,3,99,49254,24392,24862,18816,18522,4753,5342,166,143,178,381,40,33,439,441,23492,24006,18070,17813,4658,5256,158,136,167,370,33,25,406,406,900,856,746,709,95,86,8,7,11,11,7,8,33,35 -050,01,045,Alabama,Dale County,4,0,721,362,359,250,270,83,69,2,2,2,2,1,0,24,16,334,334,229,248,80,67,2,2,2,1,1,0,20,16,28,25,21,22,3,2,0,0,0,1,0,0,4,0 -050,01,045,Alabama,Dale County,4,1,3035,1547,1488,1097,1065,359,343,9,7,16,10,2,4,64,59,1449,1389,1013,985,350,333,8,7,15,9,2,2,61,53,98,99,84,80,9,10,1,0,1,1,0,2,3,6 -050,01,045,Alabama,Dale County,4,2,3646,1970,1676,1365,1160,514,428,11,16,14,12,6,5,60,55,1872,1589,1294,1092,497,417,10,15,13,12,4,4,54,49,98,87,71,68,17,11,1,1,1,0,2,1,6,6 -050,01,045,Alabama,Dale County,4,3,3461,1771,1690,1195,1161,506,456,11,14,14,14,2,1,43,44,1704,1615,1140,1098,501,451,10,13,14,14,1,1,38,38,67,75,55,63,5,5,1,1,0,0,1,0,5,6 -050,01,045,Alabama,Dale County,4,4,3408,1798,1610,1231,1096,488,439,13,12,18,14,2,5,46,44,1701,1536,1159,1037,475,430,13,12,17,13,1,4,36,40,97,74,72,59,13,9,0,0,1,1,1,1,10,4 -050,01,045,Alabama,Dale County,4,5,3467,1774,1693,1296,1188,399,445,12,11,25,14,7,2,35,33,1673,1595,1213,1099,387,440,11,11,23,14,7,1,32,30,101,98,83,89,12,5,1,0,2,0,0,1,3,3 -050,01,045,Alabama,Dale County,4,6,3757,2022,1735,1583,1241,369,420,21,10,13,35,6,3,30,26,1850,1623,1431,1145,357,411,19,9,11,33,6,1,26,24,172,112,152,96,12,9,2,1,2,2,0,2,4,2 -050,01,045,Alabama,Dale County,4,7,3502,1759,1743,1383,1266,315,396,13,12,20,35,3,4,25,30,1688,1658,1322,1194,310,387,12,11,19,35,2,3,23,28,71,85,61,72,5,9,1,1,1,0,1,1,2,2 -050,01,045,Alabama,Dale County,4,8,3510,1746,1764,1388,1297,305,403,11,14,12,31,4,1,26,18,1680,1711,1335,1256,298,396,10,11,10,29,3,1,24,18,66,53,53,41,7,7,1,3,2,2,1,0,2,0 -050,01,045,Alabama,Dale County,4,9,3583,1752,1831,1381,1350,322,405,12,15,8,36,2,2,27,23,1703,1784,1333,1309,321,402,12,15,8,36,2,2,27,20,49,47,48,41,1,3,0,0,0,0,0,0,0,3 -050,01,045,Alabama,Dale County,4,10,3454,1709,1745,1297,1308,366,370,18,10,7,34,1,1,20,22,1662,1714,1256,1281,361,368,18,10,7,33,1,1,19,21,47,31,41,27,5,2,0,0,0,1,0,0,1,1 -050,01,045,Alabama,Dale County,4,11,2978,1509,1469,1234,1130,230,263,13,9,9,39,2,2,21,26,1489,1453,1217,1116,228,261,12,9,9,39,2,2,21,26,20,16,17,14,2,2,1,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,4,12,2606,1266,1340,1080,1094,156,189,12,9,8,33,0,1,10,14,1249,1316,1065,1076,154,185,12,9,8,32,0,1,10,13,17,24,15,18,2,4,0,0,0,1,0,0,0,1 -050,01,045,Alabama,Dale County,4,13,2117,964,1153,846,966,100,145,9,6,3,25,0,1,6,10,959,1144,842,958,99,144,9,6,3,25,0,1,6,10,5,9,4,8,1,1,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,4,14,1947,921,1026,818,864,88,126,7,5,0,21,0,0,8,10,911,1016,808,855,88,126,7,5,0,21,0,0,8,9,10,10,10,9,0,0,0,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,4,15,1606,738,868,642,722,86,111,2,3,2,27,1,0,5,5,731,860,636,716,85,110,2,3,2,27,1,0,5,4,7,8,6,6,1,1,0,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,4,16,1162,469,693,418,562,43,117,1,1,2,9,1,1,4,3,463,687,413,558,43,115,1,1,2,9,0,1,4,3,6,6,5,4,0,2,0,0,0,0,1,0,0,0 -050,01,045,Alabama,Dale County,4,17,760,293,467,256,399,33,59,1,3,1,1,0,0,2,5,292,464,255,396,33,59,1,3,1,1,0,0,2,5,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,4,18,653,171,482,150,388,19,90,1,2,1,1,0,0,0,1,170,480,149,386,19,90,1,2,1,1,0,0,0,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,4,99,49373,24541,24832,18910,18527,4781,5274,179,161,175,393,40,33,456,444,23580,23968,18110,17805,4686,5192,170,154,165,384,33,25,416,408,961,864,800,722,95,82,9,7,10,9,7,8,40,36 -050,01,045,Alabama,Dale County,5,0,733,365,368,257,269,82,77,1,2,2,3,1,0,22,17,345,345,243,248,80,76,1,2,2,2,1,0,18,17,20,23,14,21,2,1,0,0,0,1,0,0,4,0 -050,01,045,Alabama,Dale County,5,1,3057,1535,1522,1072,1108,346,330,15,6,18,10,2,4,82,64,1429,1425,984,1028,337,324,12,6,17,9,2,2,77,56,106,97,88,80,9,6,3,0,1,1,0,2,5,8 -050,01,045,Alabama,Dale County,5,2,3542,1905,1637,1289,1114,525,432,13,14,14,15,4,4,60,58,1794,1537,1203,1035,511,421,11,12,13,15,3,3,53,51,111,100,86,79,14,11,2,2,1,0,1,1,7,7 -050,01,045,Alabama,Dale County,5,3,3489,1833,1656,1259,1129,503,448,10,12,15,12,2,2,44,53,1765,1580,1205,1068,497,442,9,11,14,12,1,2,39,45,68,76,54,61,6,6,1,1,1,0,1,0,5,8 -050,01,045,Alabama,Dale County,5,4,3365,1766,1599,1214,1094,475,431,15,11,14,12,2,3,46,48,1675,1525,1150,1037,460,422,14,11,13,10,1,2,37,43,91,74,64,57,15,9,1,0,1,2,1,1,9,5 -050,01,045,Alabama,Dale County,5,5,3469,1776,1693,1302,1177,406,452,11,10,15,13,6,3,36,38,1663,1605,1206,1099,395,448,10,8,14,13,6,2,32,35,113,88,96,78,11,4,1,2,1,0,0,1,4,3 -050,01,045,Alabama,Dale County,5,6,3577,1890,1687,1495,1194,332,428,15,11,14,29,4,2,30,23,1750,1575,1374,1096,322,420,13,10,12,27,4,1,25,21,140,112,121,98,10,8,2,1,2,2,0,1,5,2 -050,01,045,Alabama,Dale County,5,7,3518,1792,1726,1379,1244,350,389,12,12,21,38,3,7,27,36,1695,1625,1296,1158,344,380,11,11,19,37,2,6,23,33,97,101,83,86,6,9,1,1,2,1,1,1,4,3 -050,01,045,Alabama,Dale County,5,8,3251,1558,1693,1246,1250,256,376,17,13,8,35,5,1,26,18,1499,1637,1199,1207,249,369,15,10,8,33,4,1,24,17,59,56,47,43,7,7,2,3,0,2,1,0,2,1 -050,01,045,Alabama,Dale County,5,9,3521,1721,1800,1367,1342,306,384,12,12,9,35,4,2,23,25,1668,1743,1316,1291,305,381,11,12,9,35,4,2,23,22,53,57,51,51,1,3,1,0,0,0,0,0,0,3 -050,01,045,Alabama,Dale County,5,10,3492,1745,1747,1347,1315,348,369,18,11,9,30,1,0,22,22,1698,1711,1307,1284,342,366,18,10,9,30,1,0,21,21,47,36,40,31,6,3,0,1,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,5,11,3028,1530,1498,1211,1122,270,301,15,9,9,42,2,1,23,23,1501,1477,1187,1105,267,298,14,9,9,42,2,1,22,22,29,21,24,17,3,3,1,0,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,5,12,2719,1312,1407,1106,1150,175,203,9,12,12,25,0,1,10,16,1293,1381,1089,1130,173,199,9,12,12,24,0,1,10,15,19,26,17,20,2,4,0,0,0,1,0,0,0,1 -050,01,045,Alabama,Dale County,5,13,2193,1005,1188,871,996,111,151,10,7,3,23,0,0,10,11,997,1174,866,984,110,149,9,7,3,23,0,0,9,11,8,14,5,12,1,2,1,0,0,0,0,0,1,0 -050,01,045,Alabama,Dale County,5,14,2020,956,1064,851,898,90,130,7,5,1,20,0,0,7,11,948,1054,843,890,90,130,7,4,1,20,0,0,7,10,8,10,8,8,0,0,0,1,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,5,15,1619,737,882,662,728,67,120,2,3,2,26,0,0,4,5,729,873,655,721,66,119,2,3,2,26,0,0,4,4,8,9,7,7,1,1,0,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,5,16,1202,502,700,438,574,54,109,2,1,2,12,1,1,5,3,496,694,433,569,54,108,2,1,2,12,0,1,5,3,6,6,5,5,0,1,0,0,0,0,1,0,0,0 -050,01,045,Alabama,Dale County,5,17,805,300,505,267,430,28,62,1,3,1,1,0,0,3,9,299,499,266,427,28,62,1,3,1,1,0,0,3,6,1,6,1,3,0,0,0,0,0,0,0,0,0,3 -050,01,045,Alabama,Dale County,5,18,615,177,438,158,361,16,73,1,2,1,1,0,0,1,1,176,434,157,358,16,72,1,2,1,1,0,0,1,1,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,5,99,49215,24405,24810,18791,18495,4740,5265,186,156,170,382,37,31,481,481,23420,23894,17979,17735,4646,5186,170,144,161,372,31,24,433,433,985,916,812,760,94,79,16,12,9,10,6,7,48,48 -050,01,045,Alabama,Dale County,6,0,721,358,363,257,256,68,84,1,1,2,2,0,0,30,20,336,332,242,227,65,83,1,1,2,1,0,0,26,20,22,31,15,29,3,1,0,0,0,1,0,0,4,0 -050,01,045,Alabama,Dale County,6,1,3046,1528,1518,1064,1092,348,340,15,5,11,15,2,3,88,63,1411,1401,966,994,341,332,11,5,9,14,2,1,82,55,117,117,98,98,7,8,4,0,2,1,0,2,6,8 -050,01,045,Alabama,Dale County,6,2,3352,1786,1566,1215,1079,482,395,11,13,10,10,3,5,65,64,1665,1462,1122,997,465,386,9,11,9,10,2,4,58,54,121,104,93,82,17,9,2,2,1,0,1,1,7,10 -050,01,045,Alabama,Dale County,6,3,3469,1824,1645,1265,1106,481,460,7,13,15,10,2,2,54,54,1754,1561,1210,1037,474,454,6,12,14,10,1,2,49,46,70,84,55,69,7,6,1,1,1,0,1,0,5,8 -050,01,045,Alabama,Dale County,6,4,3288,1760,1528,1211,1020,476,431,13,12,12,10,2,3,46,52,1668,1456,1143,964,462,423,13,12,11,8,1,2,38,47,92,72,68,56,14,8,0,0,1,2,1,1,8,5 -050,01,045,Alabama,Dale County,6,5,3532,1851,1681,1364,1186,414,432,12,8,17,15,6,3,38,37,1713,1588,1247,1102,399,428,11,6,16,15,6,2,34,35,138,93,117,84,15,4,1,2,1,0,0,1,4,2 -050,01,045,Alabama,Dale County,6,6,3632,1873,1759,1471,1244,329,435,15,18,18,33,5,1,35,28,1726,1621,1344,1125,320,424,13,16,16,31,5,0,28,25,147,138,127,119,9,11,2,2,2,2,0,1,7,3 -050,01,045,Alabama,Dale County,6,7,3499,1844,1655,1419,1187,357,394,12,11,21,24,4,5,31,34,1717,1549,1305,1098,352,385,11,9,19,23,3,4,27,30,127,106,114,89,5,9,1,2,2,1,1,1,4,4 -050,01,045,Alabama,Dale County,6,8,3150,1519,1631,1214,1188,246,375,16,11,9,35,4,2,30,20,1451,1577,1159,1147,239,368,14,9,9,34,3,2,27,17,68,54,55,41,7,7,2,2,0,1,1,0,3,3 -050,01,045,Alabama,Dale County,6,9,3463,1678,1785,1326,1341,304,374,13,12,7,34,3,1,25,23,1625,1729,1278,1291,302,371,12,12,7,34,3,1,23,20,53,56,48,50,2,3,1,0,0,0,0,0,2,3 -050,01,045,Alabama,Dale County,6,10,3597,1799,1798,1390,1347,359,385,16,11,9,31,1,0,24,24,1761,1759,1360,1315,352,382,16,11,9,30,1,0,23,21,38,39,30,32,7,3,0,0,0,1,0,0,1,3 -050,01,045,Alabama,Dale County,6,11,3032,1508,1524,1176,1148,281,297,15,11,9,45,2,2,25,21,1469,1504,1141,1132,278,294,14,11,9,45,2,2,25,20,39,20,35,16,3,3,1,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,6,12,2852,1421,1431,1192,1146,189,224,12,9,13,31,0,0,15,21,1403,1409,1176,1129,187,222,12,9,13,30,0,0,15,19,18,22,16,17,2,2,0,0,0,1,0,0,0,2 -050,01,045,Alabama,Dale County,6,13,2214,1032,1182,887,990,123,153,8,6,4,23,0,1,10,9,1022,1171,880,980,121,152,8,6,4,23,0,1,9,9,10,11,7,10,2,1,0,0,0,0,0,0,1,0 -050,01,045,Alabama,Dale County,6,14,2058,940,1118,845,937,79,148,7,3,1,20,0,0,8,10,928,1108,834,928,79,148,6,3,1,20,0,0,8,9,12,10,11,9,0,0,1,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,6,15,1655,760,895,672,759,80,104,1,3,2,23,1,0,4,6,752,885,665,750,79,103,1,3,2,23,1,0,4,6,8,10,7,9,1,1,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,6,16,1223,524,699,461,565,54,113,2,2,2,13,1,1,4,5,518,693,456,560,54,112,2,2,2,13,0,1,4,5,6,6,5,5,0,1,0,0,0,0,1,0,0,0 -050,01,045,Alabama,Dale County,6,17,844,325,519,291,443,29,63,1,3,1,4,0,0,3,6,324,516,290,441,29,63,1,3,1,4,0,0,3,5,1,3,1,2,0,0,0,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,6,18,618,176,442,153,366,20,70,1,2,1,1,0,0,1,3,175,438,152,363,20,69,1,2,1,1,0,0,1,3,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,6,99,49245,24506,24739,18873,18400,4719,5277,178,154,164,379,36,29,536,500,23418,23759,17970,17580,4618,5199,162,143,154,369,30,22,484,446,1088,980,903,820,101,78,16,11,10,10,6,7,52,54 -050,01,045,Alabama,Dale County,7,0,742,389,353,279,254,78,75,2,1,1,1,1,0,28,22,355,327,251,229,75,74,2,1,1,1,1,0,25,22,34,26,28,25,3,1,0,0,0,0,0,0,3,0 -050,01,045,Alabama,Dale County,7,1,2956,1528,1428,1068,1026,348,317,9,4,9,8,1,1,93,72,1421,1329,979,944,341,310,6,4,8,8,1,1,86,62,107,99,89,82,7,7,3,0,1,0,0,0,7,10 -050,01,045,Alabama,Dale County,7,2,3338,1741,1597,1189,1100,465,402,13,10,9,8,3,3,62,74,1626,1498,1102,1025,449,392,8,9,9,8,2,2,56,62,115,99,87,75,16,10,5,1,0,0,1,1,6,12 -050,01,045,Alabama,Dale County,7,3,3382,1749,1633,1190,1073,482,479,13,12,13,16,1,2,50,51,1669,1541,1129,993,474,475,10,11,12,15,0,2,44,45,80,92,61,80,8,4,3,1,1,1,1,0,6,6 -050,01,045,Alabama,Dale County,7,4,3295,1774,1521,1213,1016,479,424,15,10,15,9,2,2,50,60,1688,1448,1149,959,469,416,13,10,15,9,2,1,40,53,86,73,64,57,10,8,2,0,0,0,0,1,10,7 -050,01,045,Alabama,Dale County,7,5,3538,1835,1703,1336,1190,424,437,15,14,17,17,4,0,39,45,1696,1605,1220,1106,411,432,12,11,15,15,4,0,34,41,139,98,116,84,13,5,3,3,2,2,0,0,5,4 -050,01,045,Alabama,Dale County,7,6,3589,1879,1710,1470,1238,341,406,16,9,13,21,3,1,36,35,1710,1596,1322,1140,334,397,13,9,13,21,3,0,25,29,169,114,148,98,7,9,3,0,0,0,0,1,11,6 -050,01,045,Alabama,Dale County,7,7,3429,1776,1653,1366,1189,344,378,13,15,17,28,5,7,31,36,1657,1560,1260,1108,339,372,12,14,15,28,5,6,26,32,119,93,106,81,5,6,1,1,2,0,0,1,5,4 -050,01,045,Alabama,Dale County,7,8,3072,1486,1586,1157,1111,270,406,15,13,13,29,5,4,26,23,1429,1536,1115,1073,262,399,12,11,11,28,4,4,25,21,57,50,42,38,8,7,3,2,2,1,1,0,1,2 -050,01,045,Alabama,Dale County,7,9,3378,1648,1730,1308,1302,287,359,14,13,8,30,3,2,28,24,1598,1680,1265,1260,284,356,13,12,8,30,3,2,25,20,50,50,43,42,3,3,1,1,0,0,0,0,3,4 -050,01,045,Alabama,Dale County,7,10,3563,1753,1810,1370,1346,341,391,12,13,9,36,1,0,20,24,1716,1767,1341,1311,335,387,12,12,9,35,0,0,19,22,37,43,29,35,6,4,0,1,0,1,1,0,1,2 -050,01,045,Alabama,Dale County,7,11,3113,1501,1612,1165,1195,284,335,12,11,9,45,1,1,30,25,1461,1590,1131,1183,282,330,12,11,9,44,1,1,26,21,40,22,34,12,2,5,0,0,0,1,0,0,4,4 -050,01,045,Alabama,Dale County,7,12,2910,1471,1439,1235,1129,202,244,11,7,11,37,0,1,12,21,1449,1413,1217,1109,199,240,10,7,11,37,0,1,12,19,22,26,18,20,3,4,1,0,0,0,0,0,0,2 -050,01,045,Alabama,Dale County,7,13,2245,1049,1196,897,999,129,160,9,6,4,21,1,1,9,9,1039,1186,890,990,128,159,8,6,4,21,1,1,8,9,10,10,7,9,1,1,1,0,0,0,0,0,1,0 -050,01,045,Alabama,Dale County,7,14,2117,945,1172,848,973,77,163,10,7,2,22,0,1,8,6,936,1160,839,961,77,163,10,7,2,22,0,1,8,6,9,12,9,12,0,0,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,7,15,1635,763,872,677,736,77,96,2,3,1,24,1,2,5,11,757,862,671,728,77,96,2,3,1,24,1,1,5,10,6,10,6,8,0,0,0,0,0,0,0,1,0,1 -050,01,045,Alabama,Dale County,7,16,1251,538,713,471,576,58,114,2,1,2,18,1,0,4,4,533,706,467,570,58,113,2,1,2,18,0,0,4,4,5,7,4,6,0,1,0,0,0,0,1,0,0,0 -050,01,045,Alabama,Dale County,7,17,858,326,532,291,446,28,74,2,2,2,2,0,0,3,8,324,527,289,444,28,74,2,2,2,2,0,0,3,5,2,5,2,2,0,0,0,0,0,0,0,0,0,3 -050,01,045,Alabama,Dale County,7,18,639,185,454,158,374,25,69,0,5,1,1,0,0,1,5,184,449,157,370,25,68,0,5,1,1,0,0,1,5,1,5,1,4,0,1,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,7,99,49050,24336,24714,18688,18273,4739,5329,185,156,156,373,33,28,535,555,23248,23780,17794,17503,4647,5253,159,146,148,367,28,23,472,488,1088,934,894,770,92,76,26,10,8,6,5,5,63,67 -050,01,045,Alabama,Dale County,8,0,726,352,374,265,296,58,53,1,1,1,2,1,0,26,22,326,344,243,267,55,52,1,1,1,2,1,0,25,22,26,30,22,29,3,1,0,0,0,0,0,0,1,0 -050,01,045,Alabama,Dale County,8,1,2878,1493,1385,1034,996,332,295,16,7,12,10,3,1,96,76,1388,1246,947,883,326,281,13,5,11,10,2,1,89,66,105,139,87,113,6,14,3,2,1,0,1,0,7,10 -050,01,045,Alabama,Dale County,8,2,3387,1767,1620,1201,1138,480,385,13,8,14,9,3,2,56,78,1640,1500,1101,1043,463,375,8,7,14,9,2,1,52,65,127,120,100,95,17,10,5,1,0,0,1,1,4,13 -050,01,045,Alabama,Dale County,8,3,3311,1708,1603,1162,1055,468,462,13,12,13,11,0,2,52,61,1621,1505,1094,971,460,456,10,11,13,11,0,2,44,54,87,98,68,84,8,6,3,1,0,0,0,0,8,7 -050,01,045,Alabama,Dale County,8,4,3314,1786,1528,1230,1004,480,441,14,11,12,11,1,0,49,61,1703,1451,1168,945,469,432,12,10,12,10,1,0,41,54,83,77,62,59,11,9,2,1,0,1,0,0,8,7 -050,01,045,Alabama,Dale County,8,5,3496,1816,1680,1329,1179,419,417,16,13,8,19,3,2,41,50,1692,1579,1226,1094,408,413,13,10,7,17,3,1,35,44,124,101,103,85,11,4,3,3,1,2,0,1,6,6 -050,01,045,Alabama,Dale County,8,6,3682,1940,1742,1507,1254,361,412,17,12,11,25,4,2,40,37,1768,1618,1361,1151,353,401,12,11,11,25,3,0,28,30,172,124,146,103,8,11,5,1,0,0,1,2,12,7 -050,01,045,Alabama,Dale County,8,7,3298,1671,1627,1274,1150,329,388,11,10,19,30,2,6,36,43,1546,1521,1167,1063,323,379,8,9,17,30,2,5,29,35,125,106,107,87,6,9,3,1,2,0,0,1,7,8 -050,01,045,Alabama,Dale County,8,8,3110,1548,1562,1214,1117,271,376,17,12,15,27,4,3,27,27,1473,1501,1153,1072,263,368,14,9,13,26,4,3,26,23,75,61,61,45,8,8,3,3,2,1,0,0,1,4 -050,01,045,Alabama,Dale County,8,9,3243,1597,1646,1253,1232,291,343,15,15,9,32,2,0,27,24,1547,1599,1212,1193,288,340,13,14,9,32,2,0,23,20,50,47,41,39,3,3,2,1,0,0,0,0,4,4 -050,01,045,Alabama,Dale County,8,10,3633,1797,1836,1410,1382,337,378,20,13,8,36,1,1,21,26,1751,1789,1372,1346,331,372,20,12,8,35,0,1,20,23,46,47,38,36,6,6,0,1,0,1,1,0,1,3 -050,01,045,Alabama,Dale County,8,11,3197,1532,1665,1178,1221,300,363,10,12,9,42,2,1,33,26,1489,1636,1141,1203,298,357,10,11,9,41,2,1,29,23,43,29,37,18,2,6,0,1,0,1,0,0,4,3 -050,01,045,Alabama,Dale County,8,12,2955,1478,1477,1234,1151,209,256,11,9,9,35,0,0,15,26,1460,1452,1220,1131,206,252,10,9,9,35,0,0,15,25,18,25,14,20,3,4,1,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,8,13,2301,1067,1234,910,1009,135,182,6,7,4,21,2,2,10,13,1057,1222,902,1002,134,180,6,7,4,21,2,2,9,10,10,12,8,7,1,2,0,0,0,0,0,0,1,3 -050,01,045,Alabama,Dale County,8,14,2111,969,1142,865,953,84,149,10,8,2,22,0,1,8,9,956,1131,853,944,83,148,10,8,2,22,0,1,8,8,13,11,12,9,1,1,0,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,8,15,1628,745,883,656,745,80,103,2,3,2,21,1,2,4,9,736,874,649,737,79,103,2,3,2,21,0,1,4,9,9,9,7,8,1,0,0,0,0,0,1,1,0,0 -050,01,045,Alabama,Dale County,8,16,1321,575,746,499,603,67,114,3,1,2,23,0,0,4,5,572,738,496,596,67,113,3,1,2,23,0,0,4,5,3,8,3,7,0,1,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,8,17,823,322,501,287,426,26,64,4,2,2,2,0,0,3,7,320,496,285,423,26,64,4,2,2,2,0,0,3,5,2,5,2,3,0,0,0,0,0,0,0,0,0,2 -050,01,045,Alabama,Dale County,8,18,663,201,462,176,388,21,66,0,2,1,1,0,0,3,5,200,455,175,382,21,65,0,2,1,1,0,0,3,5,1,7,1,6,0,1,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,8,99,49077,24364,24713,18684,18299,4748,5247,199,158,153,379,29,25,551,605,23245,23657,17765,17446,4653,5151,169,142,147,373,24,19,487,526,1119,1056,919,853,95,96,30,16,6,6,5,6,64,79 -050,01,045,Alabama,Dale County,9,0,734,347,387,251,301,68,58,0,1,1,1,0,0,27,26,321,356,227,272,67,57,0,1,1,1,0,0,26,25,26,31,24,29,1,1,0,0,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,9,1,2878,1470,1408,1060,1027,290,284,10,8,13,13,3,0,94,76,1342,1263,950,903,285,276,7,6,12,13,2,0,86,65,128,145,110,124,5,8,3,2,1,0,1,0,8,11 -050,01,045,Alabama,Dale County,9,2,3391,1759,1632,1210,1137,458,385,13,7,11,16,3,2,64,85,1596,1514,1076,1044,442,377,8,6,11,16,2,1,57,70,163,118,134,93,16,8,5,1,0,0,1,1,7,15 -050,01,045,Alabama,Dale County,9,3,3388,1713,1675,1172,1096,449,487,13,11,19,13,0,1,60,67,1619,1567,1100,1004,438,481,10,10,19,12,0,1,52,59,94,108,72,92,11,6,3,1,0,1,0,0,8,8 -050,01,045,Alabama,Dale County,9,4,3267,1756,1511,1209,1013,466,412,15,13,12,12,1,0,53,61,1659,1435,1133,954,456,405,13,12,12,11,1,0,44,53,97,76,76,59,10,7,2,1,0,1,0,0,9,8 -050,01,045,Alabama,Dale County,9,5,3395,1774,1621,1327,1157,385,387,13,8,8,21,3,2,38,46,1622,1508,1197,1058,373,384,10,5,8,19,3,1,31,41,152,113,130,99,12,3,3,3,0,2,0,1,7,5 -050,01,045,Alabama,Dale County,9,6,3774,1942,1832,1521,1336,341,406,18,15,15,33,3,2,44,40,1763,1662,1368,1184,333,399,13,14,15,33,2,0,32,32,179,170,153,152,8,7,5,1,0,0,1,2,12,8 -050,01,045,Alabama,Dale County,9,7,3275,1666,1609,1275,1136,314,390,12,12,22,24,5,5,38,42,1530,1498,1156,1040,308,383,9,11,20,24,5,4,32,36,136,111,119,96,6,7,3,1,2,0,0,1,6,6 -050,01,045,Alabama,Dale County,9,8,3212,1601,1611,1243,1161,296,383,18,13,15,24,4,2,25,28,1507,1536,1165,1102,287,375,15,10,13,23,3,2,24,24,94,75,78,59,9,8,3,3,2,1,1,0,1,4 -050,01,045,Alabama,Dale County,9,9,3169,1555,1614,1229,1217,275,330,16,17,8,25,1,0,26,25,1496,1563,1179,1174,272,327,14,16,8,25,1,0,22,21,59,51,50,43,3,3,2,1,0,0,0,0,4,4 -050,01,045,Alabama,Dale County,9,10,3538,1730,1808,1341,1336,337,391,20,13,8,42,1,1,23,25,1680,1760,1299,1300,331,384,20,12,8,41,0,1,22,22,50,48,42,36,6,7,0,1,0,1,1,0,1,3 -050,01,045,Alabama,Dale County,9,11,3358,1610,1748,1234,1306,321,368,11,14,9,33,2,1,33,26,1567,1718,1197,1287,319,362,11,13,8,32,2,1,30,23,43,30,37,19,2,6,0,1,1,1,0,0,3,3 -050,01,045,Alabama,Dale County,9,12,2959,1502,1457,1247,1119,223,260,11,11,9,47,0,2,12,18,1483,1430,1231,1097,221,256,10,11,9,47,0,2,12,17,19,27,16,22,2,4,1,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,9,13,2482,1156,1326,991,1083,139,194,11,8,5,24,1,2,9,15,1147,1308,983,1072,138,191,11,7,5,24,1,2,9,12,9,18,8,11,1,3,0,1,0,0,0,0,0,3 -050,01,045,Alabama,Dale County,9,14,2090,949,1141,836,957,92,147,8,7,2,20,0,1,11,9,939,1118,826,938,92,146,8,6,2,20,0,1,11,7,10,23,10,19,0,1,0,1,0,0,0,0,0,2 -050,01,045,Alabama,Dale County,9,15,1683,753,930,670,767,74,126,2,4,3,21,1,2,3,10,745,920,663,760,74,125,2,4,3,21,0,1,3,9,8,10,7,7,0,1,0,0,0,0,1,1,0,1 -050,01,045,Alabama,Dale County,9,16,1349,606,743,529,615,69,98,2,1,2,23,0,0,4,6,600,734,523,607,69,97,2,1,2,23,0,0,4,6,6,9,6,8,0,1,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,9,17,859,324,535,291,443,25,76,3,2,2,5,0,0,3,9,321,527,288,439,25,76,3,2,2,5,0,0,3,5,3,8,3,4,0,0,0,0,0,0,0,0,0,4 -050,01,045,Alabama,Dale County,9,18,687,212,475,185,400,24,68,0,1,1,1,0,0,2,5,211,467,184,394,24,66,0,1,1,1,0,0,2,5,1,8,1,6,0,2,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,9,99,49488,24425,25063,18821,18607,4646,5250,196,166,165,398,28,23,569,619,23148,23884,17745,17629,4554,5167,166,148,159,391,22,17,502,532,1277,1179,1076,978,92,83,30,18,6,7,6,6,67,87 -050,01,045,Alabama,Dale County,10,0,729,351,378,250,289,70,62,0,1,0,0,0,0,31,26,323,341,226,254,67,61,0,1,0,0,0,0,30,25,28,37,24,35,3,1,0,0,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,10,1,2964,1469,1495,1066,1103,281,287,14,9,16,9,4,1,88,86,1322,1337,939,969,277,277,11,7,16,9,3,1,76,74,147,158,127,134,4,10,3,2,0,0,1,0,12,12 -050,01,045,Alabama,Dale County,10,2,3453,1797,1656,1214,1141,484,398,16,10,10,13,2,2,71,92,1635,1527,1084,1041,467,392,9,8,10,12,2,1,63,73,162,129,130,100,17,6,7,2,0,1,0,1,8,19 -050,01,045,Alabama,Dale County,10,3,3366,1702,1664,1160,1093,447,471,11,13,19,11,0,2,65,74,1593,1556,1070,1001,439,467,8,12,19,10,0,2,57,64,109,108,90,92,8,4,3,1,0,1,0,0,8,10 -050,01,045,Alabama,Dale County,10,4,3252,1756,1496,1201,989,469,412,15,12,10,13,1,0,60,70,1651,1425,1122,933,456,406,13,11,10,13,1,0,49,62,105,71,79,56,13,6,2,1,0,0,0,0,11,8 -050,01,045,Alabama,Dale County,10,5,3447,1785,1662,1372,1195,349,382,14,14,6,15,3,1,41,55,1642,1543,1251,1095,338,379,10,9,6,13,3,0,34,47,143,119,121,100,11,3,4,5,0,2,0,1,7,8 -050,01,045,Alabama,Dale County,10,6,3856,1994,1862,1590,1353,332,416,16,17,9,37,2,1,45,38,1790,1734,1411,1244,326,407,11,16,9,37,1,0,32,30,204,128,179,109,6,9,5,1,0,0,1,1,13,8 -050,01,045,Alabama,Dale County,10,7,3319,1697,1622,1313,1137,303,398,11,8,20,32,4,5,46,42,1540,1499,1181,1029,296,392,8,7,16,32,4,4,35,35,157,123,132,108,7,6,3,1,4,0,0,1,11,7 -050,01,045,Alabama,Dale County,10,8,3116,1538,1578,1205,1138,278,376,14,12,12,19,3,3,26,30,1447,1499,1130,1076,269,367,10,10,11,18,2,3,25,25,91,79,75,62,9,9,4,2,1,1,1,0,1,5 -050,01,045,Alabama,Dale County,10,9,3042,1480,1562,1174,1181,256,317,16,16,7,23,2,0,25,25,1421,1512,1126,1139,253,314,13,15,7,23,2,0,20,21,59,50,48,42,3,3,3,1,0,0,0,0,5,4 -050,01,045,Alabama,Dale County,10,10,3491,1719,1772,1349,1313,319,380,20,12,9,40,1,0,21,27,1662,1716,1303,1271,310,373,20,12,9,37,0,0,20,23,57,56,46,42,9,7,0,0,0,3,1,0,1,4 -050,01,045,Alabama,Dale County,10,11,3488,1679,1809,1291,1345,331,379,12,14,10,44,2,1,33,26,1629,1780,1249,1328,328,373,12,13,9,43,2,1,29,22,50,29,42,17,3,6,0,1,1,1,0,0,4,4 -050,01,045,Alabama,Dale County,10,12,3001,1526,1475,1236,1134,255,267,10,11,9,40,0,1,16,22,1498,1451,1211,1114,253,264,9,11,9,40,0,1,16,21,28,24,25,20,2,3,1,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,10,13,2615,1216,1399,1042,1132,144,220,14,8,5,21,1,2,10,16,1203,1383,1032,1123,143,216,13,8,5,21,1,2,9,13,13,16,10,9,1,4,1,0,0,0,0,0,1,3 -050,01,045,Alabama,Dale County,10,14,2154,988,1166,864,978,103,145,10,9,3,25,0,0,8,9,975,1146,852,961,102,144,10,8,3,25,0,0,8,8,13,20,12,17,1,1,0,1,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,10,15,1684,746,938,662,788,76,112,2,2,2,23,1,2,3,11,737,928,654,780,76,111,2,2,2,23,0,1,3,11,9,10,8,8,0,1,0,0,0,0,1,1,0,0 -050,01,045,Alabama,Dale County,10,16,1334,584,750,530,596,45,124,4,1,1,22,0,0,4,7,578,739,524,585,45,124,4,1,1,22,0,0,4,7,6,11,6,11,0,0,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,10,17,867,334,533,276,443,49,73,4,2,2,8,0,0,3,7,330,528,272,441,49,73,4,2,2,8,0,0,3,4,4,5,4,2,0,0,0,0,0,0,0,0,0,3 -050,01,045,Alabama,Dale County,10,18,693,209,484,198,409,8,68,0,1,1,1,0,0,2,5,208,477,197,403,8,67,0,1,1,1,0,0,2,5,1,7,1,6,0,1,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,10,99,49871,24570,25301,18993,18757,4599,5287,203,172,151,396,26,21,598,668,23184,24121,17834,17787,4502,5207,167,154,145,387,21,16,515,570,1386,1180,1159,970,97,80,36,18,6,9,5,5,83,98 -050,01,045,Alabama,Dale County,11,0,733,338,395,239,294,66,72,1,1,0,2,0,0,32,26,300,358,204,259,64,71,1,1,0,2,0,0,31,25,38,37,35,35,2,1,0,0,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,11,1,2888,1473,1415,1046,1040,303,270,16,10,9,12,3,0,96,83,1313,1263,914,916,295,257,10,8,8,12,2,0,84,70,160,152,132,124,8,13,6,2,1,0,1,0,12,13 -050,01,045,Alabama,Dale County,11,2,3414,1755,1659,1203,1136,453,396,13,16,12,9,2,2,72,100,1594,1522,1072,1035,439,387,6,14,12,8,2,1,63,77,161,137,131,101,14,9,7,2,0,1,0,1,9,23 -050,01,045,Alabama,Dale County,11,3,3306,1685,1621,1151,1071,436,451,11,11,17,7,0,2,70,79,1567,1529,1056,993,426,448,7,10,17,6,0,2,61,70,118,92,95,78,10,3,4,1,0,1,0,0,9,9 -050,01,045,Alabama,Dale County,11,4,3231,1750,1481,1210,982,450,400,15,14,11,14,1,0,63,71,1631,1401,1115,919,440,394,13,13,11,13,1,0,51,62,119,80,95,63,10,6,2,1,0,1,0,0,12,9 -050,01,045,Alabama,Dale County,11,5,3443,1814,1629,1395,1157,351,388,17,11,10,20,2,1,39,52,1630,1518,1234,1063,340,385,13,6,10,18,2,0,31,46,184,111,161,94,11,3,4,5,0,2,0,1,8,6 -050,01,045,Alabama,Dale County,11,6,3805,1979,1826,1576,1350,323,389,16,15,12,28,2,1,50,43,1781,1704,1407,1256,317,371,11,14,12,28,1,0,33,35,198,122,169,94,6,18,5,1,0,0,1,1,17,8 -050,01,045,Alabama,Dale County,11,7,3337,1679,1658,1304,1173,296,392,11,10,21,33,4,6,43,44,1527,1535,1177,1068,287,383,8,9,17,33,4,5,34,37,152,123,127,105,9,9,3,1,4,0,0,1,9,7 -050,01,045,Alabama,Dale County,11,8,3163,1575,1588,1228,1159,282,365,16,11,17,21,5,2,27,30,1462,1487,1135,1075,269,356,12,9,16,20,4,2,26,25,113,101,93,84,13,9,4,2,1,1,1,0,1,5 -050,01,045,Alabama,Dale County,11,9,3015,1480,1535,1177,1146,252,318,17,18,7,27,1,0,26,26,1407,1477,1116,1096,249,315,14,17,7,27,1,0,20,22,73,58,61,50,3,3,3,1,0,0,0,0,6,4 -050,01,045,Alabama,Dale County,11,10,3492,1698,1794,1329,1337,311,377,24,14,10,36,1,1,23,29,1637,1728,1279,1285,303,370,23,13,10,34,0,1,22,25,61,66,50,52,8,7,1,1,0,2,1,0,1,4 -050,01,045,Alabama,Dale County,11,11,3486,1738,1748,1342,1293,335,372,10,15,9,42,4,0,38,26,1694,1718,1306,1275,331,366,10,14,9,41,4,0,34,22,44,30,36,18,4,6,0,1,0,1,0,0,4,4 -050,01,045,Alabama,Dale County,11,12,3023,1500,1523,1202,1174,261,276,13,13,11,35,0,1,13,24,1452,1497,1157,1153,259,272,12,13,11,35,0,1,13,23,48,26,45,21,2,4,1,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,11,13,2771,1320,1451,1127,1162,167,234,12,9,3,27,1,2,10,17,1307,1422,1117,1140,166,230,11,9,3,27,1,2,9,14,13,29,10,22,1,4,1,0,0,0,0,0,1,3 -050,01,045,Alabama,Dale County,11,14,2198,1043,1155,893,961,123,150,14,8,3,26,0,0,10,10,1029,1134,880,944,122,149,14,7,3,26,0,0,10,8,14,21,13,17,1,1,0,1,0,0,0,0,0,2 -050,01,045,Alabama,Dale County,11,15,1709,719,990,637,829,73,118,2,4,3,25,1,2,3,12,710,979,629,820,73,117,2,4,3,25,0,1,3,12,9,11,8,9,0,1,0,0,0,0,1,1,0,0 -050,01,045,Alabama,Dale County,11,16,1331,583,748,526,624,49,101,3,1,1,17,0,0,4,5,573,737,516,613,49,101,3,1,1,17,0,0,4,5,10,11,10,11,0,0,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,11,17,813,333,480,285,390,39,73,4,2,2,7,0,0,3,8,329,473,281,387,39,73,4,2,2,7,0,0,3,4,4,7,4,3,0,0,0,0,0,0,0,0,0,4 -050,01,045,Alabama,Dale County,11,18,696,202,494,186,415,13,71,0,1,1,1,0,0,2,6,200,489,184,411,13,70,0,1,1,1,0,0,2,6,2,5,2,4,0,1,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,11,99,49854,24664,25190,19056,18693,4583,5213,215,184,159,389,27,20,624,691,23143,23971,17779,17708,4481,5115,174,165,153,380,22,15,534,588,1521,1219,1277,985,102,98,41,19,6,9,5,5,90,103 -050,01,045,Alabama,Dale County,12,0,736,342,394,233,291,79,75,2,1,0,2,0,0,28,25,304,346,201,245,75,74,2,1,0,2,0,0,26,24,38,48,32,46,4,1,0,0,0,0,0,0,2,1 -050,01,045,Alabama,Dale County,12,1,2954,1503,1451,1073,1071,297,268,16,8,7,13,3,0,107,91,1319,1313,915,959,292,257,10,6,6,13,2,0,94,78,184,138,158,112,5,11,6,2,1,0,1,0,13,13 -050,01,045,Alabama,Dale County,12,2,3459,1779,1680,1224,1146,442,399,16,12,13,13,2,2,82,108,1624,1519,1098,1023,429,389,9,10,13,12,2,1,73,84,155,161,126,123,13,10,7,2,0,1,0,1,9,24 -050,01,045,Alabama,Dale County,12,3,3350,1678,1672,1135,1123,442,441,12,11,16,7,0,2,73,88,1553,1569,1034,1037,431,436,8,10,16,6,0,2,64,78,125,103,101,86,11,5,4,1,0,1,0,0,9,10 -050,01,045,Alabama,Dale County,12,4,3250,1739,1511,1201,988,444,420,17,14,10,15,1,0,66,74,1627,1419,1117,913,432,414,14,13,10,14,1,0,53,65,112,92,84,75,12,6,3,1,0,1,0,0,13,9 -050,01,045,Alabama,Dale County,12,5,3454,1845,1609,1413,1159,366,361,14,15,10,15,2,2,40,57,1664,1503,1257,1072,354,358,10,10,10,13,2,1,31,49,181,106,156,87,12,3,4,5,0,2,0,1,9,8 -050,01,045,Alabama,Dale County,12,6,3897,2023,1874,1616,1407,325,370,17,16,11,34,2,1,52,46,1825,1746,1447,1302,319,358,12,15,11,34,1,0,35,37,198,128,169,105,6,12,5,1,0,0,1,1,17,9 -050,01,045,Alabama,Dale County,12,7,3358,1704,1654,1333,1185,285,378,10,10,22,26,5,7,49,48,1550,1539,1205,1088,276,370,7,9,18,26,5,6,39,40,154,115,128,97,9,8,3,1,4,0,0,1,10,8 -050,01,045,Alabama,Dale County,12,8,3100,1520,1580,1188,1145,264,366,19,11,18,23,4,4,27,31,1410,1476,1095,1058,254,357,15,9,17,22,3,4,26,26,110,104,93,87,10,9,4,2,1,1,1,0,1,5 -050,01,045,Alabama,Dale County,12,9,3039,1484,1555,1165,1154,267,342,17,14,8,20,1,0,26,25,1405,1492,1098,1099,264,339,14,13,8,20,1,0,20,21,79,63,67,55,3,3,3,1,0,0,0,0,6,4 -050,01,045,Alabama,Dale County,12,10,3454,1706,1748,1355,1322,297,357,18,14,10,27,1,1,25,27,1644,1686,1304,1273,289,350,17,13,10,26,0,1,24,23,62,62,51,49,8,7,1,1,0,1,1,0,1,4 -050,01,045,Alabama,Dale County,12,11,3528,1748,1780,1356,1322,329,369,11,15,10,46,2,0,40,28,1704,1744,1321,1299,325,363,11,14,9,45,2,0,36,23,44,36,35,23,4,6,0,1,1,1,0,0,4,5 -050,01,045,Alabama,Dale County,12,12,3077,1511,1566,1209,1201,264,295,13,13,12,32,0,1,13,24,1464,1537,1165,1177,262,291,12,13,12,32,0,1,13,23,47,29,44,24,2,4,1,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,12,13,2836,1362,1474,1149,1167,180,245,13,10,6,32,2,3,12,17,1343,1446,1133,1148,179,240,12,9,6,32,2,3,11,14,19,28,16,19,1,5,1,1,0,0,0,0,1,3 -050,01,045,Alabama,Dale County,12,14,2216,1033,1183,892,973,115,167,13,9,3,22,0,1,10,11,1019,1160,880,954,114,166,12,8,3,22,0,1,10,9,14,23,12,19,1,1,1,1,0,0,0,0,0,2 -050,01,045,Alabama,Dale County,12,15,1701,718,983,644,820,65,122,2,4,3,23,1,2,3,12,708,971,635,810,65,121,2,4,3,23,0,1,3,12,10,12,9,10,0,1,0,0,0,0,1,1,0,0 -050,01,045,Alabama,Dale County,12,16,1331,590,741,527,627,54,83,4,1,1,23,0,0,4,7,582,729,519,615,54,83,4,1,1,23,0,0,4,7,8,12,8,12,0,0,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,12,17,826,330,496,290,410,31,71,4,2,2,6,0,0,3,7,326,487,286,405,31,71,4,2,2,6,0,0,3,3,4,9,4,5,0,0,0,0,0,0,0,0,0,4 -050,01,045,Alabama,Dale County,12,18,685,210,475,183,396,24,70,0,3,1,1,0,0,2,5,208,469,181,392,24,68,0,3,1,1,0,0,2,5,2,6,2,4,0,2,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,12,99,50251,24825,25426,19186,18907,4570,5199,218,183,163,380,26,26,662,731,23279,24151,17891,17869,4469,5105,175,163,156,372,21,21,567,621,1546,1275,1295,1038,101,94,43,20,7,8,5,5,95,110 -050,01,045,Alabama,Dale County,13,0,741,342,399,233,293,79,76,2,1,1,2,0,0,27,27,305,348,201,246,75,74,2,1,1,2,0,0,26,25,37,51,32,47,4,2,0,0,0,0,0,0,1,2 -050,01,045,Alabama,Dale County,13,1,2945,1497,1448,1067,1066,299,270,15,8,7,15,3,0,106,89,1314,1309,911,955,294,259,10,5,6,14,2,0,91,76,183,139,156,111,5,11,5,3,1,1,1,0,15,13 -050,01,045,Alabama,Dale County,13,2,3462,1784,1678,1225,1148,445,400,17,15,12,13,2,1,83,101,1628,1517,1099,1023,432,390,10,10,12,12,2,1,73,81,156,161,126,125,13,10,7,5,0,1,0,0,10,20 -050,01,045,Alabama,Dale County,13,3,3350,1681,1669,1134,1124,446,444,14,10,15,6,0,2,72,83,1553,1566,1032,1037,434,438,7,9,15,6,0,1,65,75,128,103,102,87,12,6,7,1,0,0,0,1,7,8 -050,01,045,Alabama,Dale County,13,4,3234,1733,1501,1198,981,441,419,18,16,10,16,3,0,63,69,1617,1407,1112,906,429,411,13,13,9,15,2,0,52,62,116,94,86,75,12,8,5,3,1,1,1,0,11,7 -050,01,045,Alabama,Dale County,13,5,3468,1851,1617,1417,1162,369,363,15,16,11,16,2,5,37,55,1667,1508,1259,1073,356,360,11,10,11,15,1,3,29,47,184,109,158,89,13,3,4,6,0,1,1,2,8,8 -050,01,045,Alabama,Dale County,13,6,3917,2033,1884,1621,1411,331,373,16,17,14,35,3,2,48,46,1835,1751,1452,1305,322,360,12,16,13,33,2,1,34,36,198,133,169,106,9,13,4,1,1,2,1,1,14,10 -050,01,045,Alabama,Dale County,13,7,3385,1718,1667,1342,1199,287,382,11,9,23,27,6,7,49,43,1563,1553,1213,1100,278,374,8,8,20,27,4,5,40,39,155,114,129,99,9,8,3,1,3,0,2,2,9,4 -050,01,045,Alabama,Dale County,13,8,3074,1507,1567,1179,1136,265,367,17,8,16,21,5,4,25,31,1396,1460,1086,1048,254,357,14,6,15,20,4,3,23,26,111,107,93,88,11,10,3,2,1,1,1,1,2,5 -050,01,045,Alabama,Dale County,13,9,3036,1489,1547,1168,1154,268,341,16,10,7,20,0,0,30,22,1407,1483,1100,1097,265,337,12,10,7,20,0,0,23,19,82,64,68,57,3,4,4,0,0,0,0,0,7,3 -050,01,045,Alabama,Dale County,13,10,3445,1699,1746,1350,1317,296,360,19,15,10,27,1,1,23,26,1636,1682,1299,1267,288,352,18,13,10,26,0,1,21,23,63,64,51,50,8,8,1,2,0,1,1,0,2,3 -050,01,045,Alabama,Dale County,13,11,3552,1756,1796,1360,1329,334,376,12,15,10,47,1,0,39,29,1710,1755,1324,1303,329,368,11,14,10,46,1,0,35,24,46,41,36,26,5,8,1,1,0,1,0,0,4,5 -050,01,045,Alabama,Dale County,13,12,3105,1523,1582,1217,1210,268,301,12,14,10,30,0,1,16,26,1476,1552,1173,1185,266,297,11,14,10,30,0,1,16,25,47,30,44,25,2,4,1,0,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,13,13,2860,1377,1483,1163,1177,182,250,14,8,6,32,1,2,11,14,1356,1455,1146,1158,179,244,13,8,6,32,1,2,11,11,21,28,17,19,3,6,1,0,0,0,0,0,0,3 -050,01,045,Alabama,Dale County,13,14,2229,1038,1191,898,977,115,169,12,10,3,24,0,1,10,10,1024,1169,885,959,114,167,12,9,3,24,0,1,10,9,14,22,13,18,1,2,0,1,0,0,0,0,0,1 -050,01,045,Alabama,Dale County,13,15,1712,726,986,650,823,67,123,2,5,4,23,0,1,3,11,716,975,640,813,67,122,2,5,4,23,0,1,3,11,10,11,10,10,0,1,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,13,16,1328,592,736,528,626,53,81,5,1,2,21,0,0,4,7,584,725,520,615,53,81,5,1,2,21,0,0,4,7,8,11,8,11,0,0,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,13,17,826,330,496,290,411,32,71,4,2,1,6,0,0,3,6,326,486,286,405,32,71,4,2,1,6,0,0,3,2,4,10,4,6,0,0,0,0,0,0,0,0,0,4 -050,01,045,Alabama,Dale County,13,18,689,212,477,184,399,25,70,0,3,1,1,0,0,2,4,210,471,182,395,25,68,0,3,1,1,0,0,2,4,2,6,2,4,0,2,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,13,99,50358,24888,25470,19224,18943,4602,5236,221,183,163,382,27,27,651,699,23323,24172,17920,17890,4492,5130,175,157,156,373,19,20,561,602,1565,1298,1304,1053,110,106,46,26,7,9,8,7,90,97 -050,01,047,Alabama,Dallas County,1,0,628,303,325,71,74,226,244,0,0,1,4,0,0,5,3,300,323,70,73,224,243,0,0,1,4,0,0,5,3,3,2,1,1,2,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,1,1,2786,1390,1396,326,346,1050,1033,2,0,5,2,0,1,7,14,1380,1382,321,340,1045,1026,2,0,5,2,0,1,7,13,10,14,5,6,5,7,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,1,2,3580,1784,1796,435,449,1329,1333,2,0,4,5,0,1,14,8,1766,1786,429,446,1320,1326,0,0,4,5,0,1,13,8,18,10,6,3,9,7,2,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,1,3,3835,1913,1922,541,506,1356,1403,0,0,10,1,1,0,5,12,1903,1911,537,504,1350,1395,0,0,10,1,1,0,5,11,10,11,4,2,6,8,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,1,4,3964,1988,1976,591,500,1385,1458,2,5,7,6,0,0,3,7,1970,1960,585,493,1374,1449,2,5,7,6,0,0,2,7,18,16,6,7,11,9,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,1,5,2837,1304,1533,351,362,941,1156,4,6,2,6,0,0,6,3,1284,1523,340,357,934,1153,3,4,2,6,0,0,5,3,20,10,11,5,7,3,1,2,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,1,6,2743,1182,1561,403,440,763,1109,6,0,7,6,0,0,3,6,1172,1548,397,436,762,1101,5,0,6,5,0,0,2,6,10,13,6,4,1,8,1,0,1,1,0,0,1,0 -050,01,047,Alabama,Dallas County,1,7,2638,1147,1491,432,467,707,1008,2,2,5,6,0,0,1,8,1133,1481,423,463,703,1004,1,1,5,6,0,0,1,7,14,10,9,4,4,4,1,1,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,1,8,3256,1437,1819,566,540,859,1266,3,2,4,7,2,0,3,4,1427,1809,563,538,855,1258,2,2,4,7,1,0,2,4,10,10,3,2,4,8,1,0,0,0,1,0,1,0 -050,01,047,Alabama,Dallas County,1,9,3517,1593,1924,617,648,959,1260,1,1,11,10,0,0,5,5,1591,1909,617,642,958,1252,0,1,11,10,0,0,5,4,2,15,0,6,1,8,1,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,1,10,3139,1451,1688,633,674,806,999,3,1,4,9,0,0,5,5,1444,1681,630,672,803,994,3,1,3,9,0,0,5,5,7,7,3,2,3,5,0,0,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,1,11,2795,1313,1482,648,629,647,844,2,1,9,6,0,0,7,2,1312,1476,647,627,647,841,2,1,9,6,0,0,7,1,1,6,1,2,0,3,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,1,12,2180,1004,1176,502,546,492,615,1,4,4,5,0,0,5,6,997,1167,501,543,487,609,1,4,4,5,0,0,4,6,7,9,1,3,5,6,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,1,13,2033,912,1121,480,499,424,615,0,1,6,2,0,0,2,4,907,1118,476,497,424,614,0,1,6,2,0,0,1,4,5,3,4,2,0,1,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,1,14,1773,745,1028,403,470,339,551,1,0,0,3,0,0,2,4,740,1027,400,470,337,550,1,0,0,3,0,0,2,4,5,1,3,0,2,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,1,15,1651,663,988,378,466,281,517,2,1,0,2,0,0,2,2,663,983,378,463,281,515,2,1,0,2,0,0,2,2,0,5,0,3,0,2,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,1,16,1306,459,847,273,463,183,376,0,1,2,1,0,0,1,6,457,844,271,463,183,374,0,1,2,1,0,0,1,5,2,3,2,0,0,2,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,1,17,906,314,592,180,315,129,274,0,0,0,0,0,0,5,3,314,592,180,315,129,274,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,1,18,794,187,607,88,281,97,319,0,1,0,0,0,0,2,6,185,606,88,281,96,318,0,1,0,0,0,0,1,6,2,1,0,0,1,1,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,1,99,46361,21089,25272,7918,8675,12973,16380,31,26,81,81,3,2,83,108,20945,25126,7853,8623,12912,16296,24,23,79,80,2,2,75,102,144,146,65,52,61,84,7,3,2,1,1,0,8,6 -050,01,047,Alabama,Dallas County,2,0,631,304,327,71,74,227,246,0,0,1,4,0,0,5,3,301,325,70,73,225,245,0,0,1,4,0,0,5,3,3,2,1,1,2,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,2,1,2755,1373,1382,318,341,1041,1024,2,0,5,2,0,1,7,14,1363,1368,313,335,1036,1017,2,0,5,2,0,1,7,13,10,14,5,6,5,7,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,2,2,3527,1756,1771,422,434,1316,1323,2,0,4,5,0,1,12,8,1738,1761,416,431,1307,1316,0,0,4,5,0,1,11,8,18,10,6,3,9,7,2,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,2,3,3834,1909,1925,532,500,1360,1411,0,0,10,1,1,0,6,13,1899,1914,528,498,1354,1403,0,0,10,1,1,0,6,12,10,11,4,2,6,8,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,2,4,3956,1987,1969,588,496,1387,1455,2,5,7,6,0,0,3,7,1969,1953,582,489,1376,1446,2,5,7,6,0,0,2,7,18,16,6,7,11,9,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,2,5,2842,1308,1534,350,362,945,1157,4,6,2,6,0,0,7,3,1288,1524,339,357,938,1154,3,4,2,6,0,0,6,3,20,10,11,5,7,3,1,2,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,2,6,2710,1166,1544,395,434,755,1098,6,0,7,6,0,0,3,6,1156,1531,389,430,754,1090,5,0,6,5,0,0,2,6,10,13,6,4,1,8,1,0,1,1,0,0,1,0 -050,01,047,Alabama,Dallas County,2,7,2618,1138,1480,429,463,701,1002,2,2,5,6,0,0,1,7,1124,1470,420,459,697,998,1,1,5,6,0,0,1,6,14,10,9,4,4,4,1,1,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,2,8,3229,1424,1805,559,533,853,1259,3,2,4,7,2,0,3,4,1414,1795,556,531,849,1251,2,2,4,7,1,0,2,4,10,10,3,2,4,8,1,0,0,0,1,0,1,0 -050,01,047,Alabama,Dallas County,2,9,3512,1593,1919,614,643,962,1260,1,1,11,10,0,0,5,5,1591,1904,614,637,961,1252,0,1,11,10,0,0,5,4,2,15,0,6,1,8,1,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,2,10,3138,1451,1687,632,672,807,1000,3,1,4,9,0,0,5,5,1444,1680,629,670,804,995,3,1,3,9,0,0,5,5,7,7,3,2,3,5,0,0,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,2,11,2818,1323,1495,649,630,656,856,2,1,9,6,0,0,7,2,1322,1489,648,628,656,853,2,1,9,6,0,0,7,1,1,6,1,2,0,3,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,2,12,2177,1003,1174,501,544,492,615,1,4,4,5,0,0,5,6,996,1165,500,541,487,609,1,4,4,5,0,0,4,6,7,9,1,3,5,6,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,2,13,2031,912,1119,479,498,425,614,0,1,6,2,0,0,2,4,907,1116,475,496,425,613,0,1,6,2,0,0,1,4,5,3,4,2,0,1,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,2,14,1761,740,1021,399,465,338,549,1,0,0,3,0,0,2,4,735,1020,396,465,336,548,1,0,0,3,0,0,2,4,5,1,3,0,2,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,2,15,1636,659,977,374,459,281,513,2,1,0,2,0,0,2,2,659,972,374,456,281,511,2,1,0,2,0,0,2,2,0,5,0,3,0,2,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,2,16,1299,456,843,271,459,182,376,0,1,2,1,0,0,1,6,454,840,269,459,182,374,0,1,2,1,0,0,1,5,2,3,2,0,0,2,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,2,17,910,316,594,182,318,129,273,0,0,0,0,0,0,5,3,316,594,182,318,129,273,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,2,18,814,188,626,89,300,96,319,0,1,0,0,0,0,3,6,186,625,89,300,95,318,0,1,0,0,0,0,2,6,2,1,0,0,1,1,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,2,99,46198,21006,25192,7854,8625,12953,16350,31,26,81,81,3,2,84,108,20862,25046,7789,8573,12892,16266,24,23,79,80,2,2,76,102,144,146,65,52,61,84,7,3,2,1,1,0,8,6 -050,01,047,Alabama,Dallas County,3,0,806,402,404,107,95,290,301,0,0,1,4,0,0,4,4,398,402,105,94,288,300,0,0,1,4,0,0,4,4,4,2,2,1,2,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,3,1,2709,1341,1368,289,328,1034,1025,2,0,5,2,0,1,11,12,1329,1351,282,319,1029,1018,2,0,5,2,0,1,11,11,12,17,7,9,5,7,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,3,2,3429,1707,1722,382,419,1303,1286,2,0,5,5,0,2,15,10,1690,1714,377,416,1294,1281,0,0,5,5,0,2,14,10,17,8,5,3,9,5,2,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,3,3,3815,1871,1944,512,479,1339,1450,0,0,12,1,0,0,8,14,1858,1932,505,476,1333,1442,0,0,12,1,0,0,8,13,13,12,7,3,6,8,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,3,4,3827,1919,1908,549,472,1358,1418,2,5,7,6,0,0,3,7,1904,1892,543,466,1350,1408,2,5,7,6,0,0,2,7,15,16,6,6,8,10,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,3,5,3001,1402,1599,370,378,1020,1206,4,6,2,6,0,0,6,3,1381,1588,356,373,1014,1202,3,4,2,6,0,0,6,3,21,11,14,5,6,4,1,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,3,6,2568,1072,1496,337,404,720,1080,5,0,7,6,0,0,3,6,1062,1483,331,400,719,1072,4,0,6,5,0,0,2,6,10,13,6,4,1,8,1,0,1,1,0,0,1,0 -050,01,047,Alabama,Dallas County,3,7,2583,1142,1441,433,452,701,972,2,2,5,7,0,0,1,8,1123,1428,419,444,697,969,1,1,5,7,0,0,1,7,19,13,14,8,4,3,1,1,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,3,8,3087,1369,1718,521,516,836,1189,3,2,4,7,2,0,3,4,1358,1710,517,514,832,1183,2,2,4,7,1,0,2,4,11,8,4,2,4,6,1,0,0,0,1,0,1,0 -050,01,047,Alabama,Dallas County,3,9,3490,1566,1924,597,606,952,1302,1,1,11,10,0,0,5,5,1564,1910,597,600,951,1295,0,1,11,10,0,0,5,4,2,14,0,6,1,7,1,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,3,10,3260,1524,1736,644,665,868,1056,4,1,3,9,0,0,5,5,1518,1728,641,663,865,1050,4,1,3,9,0,0,5,5,6,8,3,2,3,6,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,3,11,2973,1378,1595,669,663,691,920,2,1,9,9,0,0,7,2,1377,1589,668,661,691,917,2,1,9,9,0,0,7,1,1,6,1,2,0,3,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,3,12,2244,1050,1194,498,545,541,633,1,4,5,5,0,0,5,7,1043,1186,497,542,536,628,1,4,5,5,0,0,4,7,7,8,1,3,5,5,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,3,13,1995,860,1135,453,514,399,614,0,1,6,2,0,0,2,4,855,1132,449,512,399,613,0,1,6,2,0,0,1,4,5,3,4,2,0,1,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,3,14,1776,773,1003,414,448,356,550,1,0,0,2,0,0,2,3,769,1002,411,448,355,549,1,0,0,2,0,0,2,3,4,1,3,0,1,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,3,15,1592,632,960,355,429,273,526,2,1,0,2,0,0,2,2,632,955,355,426,273,524,2,1,0,2,0,0,2,2,0,5,0,3,0,2,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,3,16,1292,476,816,274,436,199,372,0,1,2,1,0,0,1,6,474,813,272,436,199,370,0,1,2,1,0,0,1,5,2,3,2,0,0,2,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,3,17,916,322,594,178,321,137,270,0,0,0,0,0,0,7,3,322,594,178,321,137,270,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,3,18,769,176,593,92,298,82,288,0,1,0,0,0,0,2,6,174,592,92,298,81,287,0,1,0,0,0,0,1,6,2,1,0,0,1,1,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,3,99,46132,20982,25150,7674,8468,13099,16458,31,26,84,84,2,3,92,111,20831,25001,7595,8409,13043,16378,24,23,83,83,1,3,85,105,151,149,79,59,56,80,7,3,1,1,1,0,7,6 -050,01,047,Alabama,Dallas County,4,0,701,345,356,72,75,268,273,0,0,1,3,0,0,4,5,341,353,70,73,266,272,0,0,1,3,0,0,4,5,4,3,2,2,2,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,4,1,2779,1370,1409,306,327,1047,1063,2,0,5,2,0,1,10,16,1355,1394,295,320,1043,1056,2,0,5,2,0,1,10,15,15,15,11,7,4,7,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,4,2,3222,1609,1613,346,375,1244,1220,1,0,4,5,0,2,14,11,1595,1605,342,372,1236,1215,0,0,4,5,0,2,13,11,14,8,4,3,8,5,1,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,4,3,3784,1844,1940,460,458,1361,1468,1,0,12,1,1,0,9,13,1833,1926,455,452,1355,1461,1,0,12,1,1,0,9,12,11,14,5,6,6,7,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,4,4,3661,1818,1843,499,447,1308,1378,2,4,5,6,0,0,4,8,1800,1828,492,441,1298,1369,2,4,5,6,0,0,3,8,18,15,7,6,10,9,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,4,5,3028,1445,1583,390,374,1041,1194,4,6,3,6,0,0,7,3,1426,1571,380,369,1035,1189,3,4,3,6,0,0,5,3,19,12,10,5,6,5,1,2,0,0,0,0,2,0 -050,01,047,Alabama,Dallas County,4,6,2458,1021,1437,287,353,719,1072,5,0,7,6,0,0,3,6,1011,1425,281,349,718,1065,4,0,6,5,0,0,2,6,10,12,6,4,1,7,1,0,1,1,0,0,1,0 -050,01,047,Alabama,Dallas County,4,7,2557,1146,1411,440,446,698,949,2,2,5,7,0,0,1,7,1117,1403,416,443,694,946,1,1,5,7,0,0,1,6,29,8,24,3,4,3,1,1,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,4,8,2934,1314,1620,496,469,806,1138,3,2,4,7,2,0,3,4,1303,1612,492,467,802,1132,2,2,4,7,1,0,2,4,11,8,4,2,4,6,1,0,0,0,1,0,1,0 -050,01,047,Alabama,Dallas County,4,9,3383,1548,1835,583,558,950,1262,1,1,9,10,0,0,5,4,1546,1822,583,553,949,1254,0,1,9,10,0,0,5,4,2,13,0,5,1,8,1,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,4,10,3325,1524,1801,634,636,879,1151,3,1,3,8,0,0,5,5,1518,1791,631,634,876,1143,3,1,3,8,0,0,5,5,6,10,3,2,3,8,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,4,11,2938,1361,1577,634,651,710,915,2,1,9,9,0,0,6,1,1360,1570,633,649,710,910,2,1,9,9,0,0,6,1,1,7,1,2,0,5,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,4,12,2400,1113,1287,552,582,550,689,1,4,5,5,0,0,5,7,1104,1280,550,579,544,685,1,4,5,5,0,0,4,7,9,7,2,3,6,4,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,4,13,2000,878,1122,436,502,436,613,0,1,5,2,0,0,1,4,874,1119,433,500,436,612,0,1,5,2,0,0,0,4,4,3,3,2,0,1,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,4,14,1785,786,999,430,429,353,564,1,1,0,2,0,0,2,3,781,998,427,429,351,563,1,1,0,2,0,0,2,3,5,1,3,0,2,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,4,15,1522,594,928,326,418,264,502,2,1,0,5,0,0,2,2,594,924,326,415,264,501,2,1,0,5,0,0,2,2,0,4,0,3,0,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,4,16,1262,489,773,278,412,207,353,1,1,2,1,0,0,1,6,487,771,276,412,207,352,1,1,2,1,0,0,1,5,2,2,2,0,0,1,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,4,17,875,293,582,162,316,128,263,0,0,0,0,0,0,3,3,293,582,162,316,128,263,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,4,18,763,190,573,100,286,86,279,0,1,0,0,0,0,4,7,188,572,100,286,85,278,0,1,0,0,0,0,3,7,2,1,0,0,1,1,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,4,99,45377,20688,24689,7431,8114,13055,16346,31,26,79,85,3,3,89,115,20526,24546,7344,8059,12997,16266,25,23,78,84,2,3,80,111,162,143,87,55,58,80,6,3,1,1,1,0,9,4 -050,01,047,Alabama,Dallas County,5,0,696,339,357,76,75,256,274,0,0,1,3,0,0,6,5,334,355,73,74,254,273,0,0,1,3,0,0,6,5,5,2,3,1,2,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,5,1,2738,1367,1371,316,325,1031,1025,2,0,5,2,0,1,13,18,1352,1358,305,319,1027,1019,2,0,5,2,0,1,13,17,15,13,11,6,4,6,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,5,2,3246,1594,1652,323,358,1252,1276,2,0,3,4,0,1,14,13,1580,1644,319,355,1244,1271,1,0,3,4,0,1,13,13,14,8,4,3,8,5,1,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,5,3,3716,1828,1888,436,434,1374,1440,1,0,9,1,1,0,7,13,1816,1876,431,430,1367,1433,1,0,9,1,1,0,7,12,12,12,5,4,7,7,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,5,4,3595,1736,1859,451,440,1270,1400,3,4,7,5,0,1,5,9,1721,1845,445,433,1262,1393,3,4,7,5,0,1,4,9,15,14,6,7,8,7,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,5,5,3059,1482,1577,399,374,1068,1188,5,6,3,6,0,0,7,3,1464,1562,389,367,1062,1181,4,5,3,6,0,0,6,3,18,15,10,7,6,7,1,1,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,5,6,2415,1031,1384,260,319,754,1053,7,1,6,6,1,0,3,5,1019,1373,254,314,753,1048,5,1,5,5,0,0,2,5,12,11,6,5,1,5,2,0,1,1,1,0,1,0 -050,01,047,Alabama,Dallas County,5,7,2618,1167,1451,429,453,727,982,2,2,7,7,0,1,2,6,1146,1439,413,447,723,978,1,1,7,7,0,1,2,5,21,12,16,6,4,4,1,1,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,5,8,2756,1252,1504,452,441,788,1050,2,2,5,7,2,0,3,4,1243,1496,449,438,784,1045,2,2,5,7,1,0,2,4,9,8,3,3,4,5,0,0,0,0,1,0,1,0 -050,01,047,Alabama,Dallas County,5,9,3353,1514,1839,538,527,962,1293,1,1,9,11,0,0,4,7,1512,1825,538,523,961,1285,0,1,9,11,0,0,4,5,2,14,0,4,1,8,1,0,0,0,0,0,0,2 -050,01,047,Alabama,Dallas County,5,10,3319,1552,1767,618,600,921,1153,5,1,3,7,0,0,5,6,1547,1759,615,598,919,1147,5,1,3,7,0,0,5,6,5,8,3,2,2,6,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,5,11,2987,1361,1626,617,658,727,958,2,1,9,8,0,0,6,1,1360,1619,616,656,727,953,2,1,9,8,0,0,6,1,1,7,1,2,0,5,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,5,12,2433,1120,1313,538,565,571,731,1,4,4,5,0,0,6,8,1112,1302,536,560,566,725,1,4,4,5,0,0,5,8,8,11,2,5,5,6,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,5,13,2078,952,1126,469,512,473,606,1,1,7,2,0,0,2,5,946,1123,465,510,472,605,1,1,7,2,0,0,1,5,6,3,4,2,1,1,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,5,14,1818,795,1023,432,434,360,583,1,1,0,2,0,0,2,3,792,1022,430,434,359,582,1,1,0,2,0,0,2,3,3,1,2,0,1,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,5,15,1521,620,901,318,399,298,496,1,1,1,3,0,0,2,2,620,898,318,397,298,495,1,1,1,3,0,0,2,2,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,5,16,1241,480,761,270,403,206,350,1,1,2,1,0,0,1,6,478,759,268,403,206,349,1,1,2,1,0,0,1,5,2,2,2,0,0,1,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,5,17,854,277,577,169,323,104,251,0,0,0,0,0,0,4,3,277,577,169,323,104,251,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,5,18,727,183,544,98,280,81,256,0,2,0,0,0,0,4,6,181,543,98,280,80,255,0,2,0,0,0,0,3,6,2,1,0,0,1,1,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,5,99,45170,20650,24520,7209,7920,13223,16365,37,28,81,80,4,4,96,123,20500,24375,7131,7861,13168,16288,31,26,80,79,2,4,88,117,150,145,78,59,55,77,6,2,1,1,2,0,8,6 -050,01,047,Alabama,Dallas County,6,0,696,372,324,89,54,275,261,0,0,1,3,0,0,7,6,367,322,86,53,273,260,0,0,1,3,0,0,7,6,5,2,3,1,2,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,6,1,2742,1339,1403,307,347,1009,1035,2,0,6,2,0,0,15,19,1324,1388,297,340,1005,1029,2,0,5,2,0,0,15,17,15,15,10,7,4,6,0,0,1,0,0,0,0,2 -050,01,047,Alabama,Dallas County,6,2,3154,1540,1614,292,314,1228,1280,2,0,3,4,0,1,15,15,1528,1606,287,311,1223,1275,1,0,3,4,0,1,14,15,12,8,5,3,5,5,1,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,6,3,3619,1813,1806,409,398,1386,1393,1,0,9,1,1,0,7,14,1802,1795,404,394,1380,1387,1,0,9,1,1,0,7,13,11,11,5,4,6,6,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,6,4,3581,1757,1824,442,422,1300,1383,2,3,7,6,0,1,6,9,1744,1813,437,416,1293,1378,2,3,7,6,0,1,5,9,13,11,5,6,7,5,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,6,5,3008,1452,1556,384,382,1052,1159,5,6,3,6,0,0,8,3,1437,1544,376,377,1047,1153,4,5,3,6,0,0,7,3,15,12,8,5,5,6,1,1,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,6,6,2383,1051,1332,258,309,776,1010,5,1,7,6,1,0,4,6,1038,1322,252,306,774,1004,3,1,6,5,0,0,3,6,13,10,6,3,2,6,2,0,1,1,1,0,1,0 -050,01,047,Alabama,Dallas County,6,7,2614,1116,1498,394,416,712,1064,2,2,7,9,0,0,1,7,1099,1485,381,409,709,1061,1,1,7,8,0,0,1,6,17,13,13,7,3,3,1,1,0,1,0,0,0,1 -050,01,047,Alabama,Dallas County,6,8,2607,1178,1429,428,429,739,988,3,2,4,7,1,0,3,3,1169,1422,425,426,736,984,2,2,4,7,0,0,2,3,9,7,3,3,3,4,1,0,0,0,1,0,1,0 -050,01,047,Alabama,Dallas County,6,9,3259,1453,1806,507,518,932,1270,1,1,9,11,0,0,4,6,1451,1793,507,514,931,1262,0,1,9,11,0,0,4,5,2,13,0,4,1,8,1,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,6,10,3407,1594,1813,608,608,974,1192,4,1,3,7,0,0,5,5,1588,1805,605,606,971,1186,4,1,3,7,0,0,5,5,6,8,3,2,3,6,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,6,11,3031,1386,1645,601,630,768,1004,2,1,9,8,0,1,6,1,1385,1637,600,628,768,998,2,1,9,8,0,1,6,1,1,8,1,2,0,6,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,6,12,2516,1146,1370,535,560,599,793,1,4,6,5,0,0,5,8,1139,1360,533,555,594,788,1,4,6,5,0,0,5,8,7,10,2,5,5,5,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,6,13,2109,993,1116,504,505,481,603,1,2,6,2,0,0,1,4,987,1113,500,503,480,602,1,2,6,2,0,0,0,4,6,3,4,2,1,1,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,6,14,1802,781,1021,410,444,369,571,0,1,0,2,0,0,2,3,778,1019,408,444,368,569,0,1,0,2,0,0,2,3,3,2,2,0,1,2,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,6,15,1561,647,914,333,403,310,506,1,1,1,3,0,0,2,1,647,911,333,401,310,505,1,1,1,3,0,0,2,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,6,16,1171,464,707,266,359,194,340,1,1,2,1,0,0,1,6,462,705,264,359,194,339,1,1,2,1,0,0,1,5,2,2,2,0,0,1,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,6,17,824,267,557,171,314,91,239,1,1,0,0,0,0,4,3,267,557,171,314,91,239,1,1,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,6,18,711,186,525,96,272,86,244,0,2,0,0,0,0,4,7,184,524,96,272,85,243,0,2,0,0,0,0,3,7,2,1,0,0,1,1,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,6,99,44795,20535,24260,7034,7684,13281,16335,34,29,83,83,3,3,100,126,20396,24121,6962,7628,13232,16262,27,27,81,81,1,3,93,120,139,139,72,56,49,73,7,2,2,2,2,0,7,6 -050,01,047,Alabama,Dallas County,7,0,656,335,321,70,62,259,250,0,0,1,2,0,0,5,7,329,320,66,61,257,250,0,0,1,2,0,0,5,7,6,1,4,1,2,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,7,1,2715,1387,1328,315,322,1049,978,2,1,4,3,0,0,17,24,1373,1318,304,317,1046,974,2,1,4,3,0,0,17,23,14,10,11,5,3,4,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,7,2,3148,1576,1572,283,297,1269,1253,2,0,4,3,0,1,18,18,1565,1563,281,294,1261,1248,1,0,4,3,0,1,18,17,11,9,2,3,8,5,1,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,7,3,3451,1686,1765,379,393,1290,1356,3,0,6,3,0,0,8,13,1675,1755,374,389,1284,1351,3,0,6,3,0,0,8,12,11,10,5,4,6,5,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,7,4,3570,1753,1817,427,411,1311,1392,3,3,5,2,0,1,7,8,1743,1795,423,399,1305,1383,3,3,5,2,0,1,7,7,10,22,4,12,6,9,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,7,5,2964,1401,1563,344,345,1040,1207,4,6,5,2,2,0,6,3,1385,1553,335,341,1037,1202,2,5,5,2,0,0,6,3,16,10,9,4,3,5,2,1,0,0,2,0,0,0 -050,01,047,Alabama,Dallas County,7,6,2367,1070,1297,262,292,792,996,5,1,5,3,1,0,5,5,1057,1286,254,287,791,990,3,1,5,3,0,0,4,5,13,11,8,5,1,6,2,0,0,0,1,0,1,0 -050,01,047,Alabama,Dallas County,7,7,2553,1059,1494,341,411,709,1068,1,1,6,6,0,1,2,7,1039,1484,326,406,705,1065,1,0,5,6,0,1,2,6,20,10,15,5,4,3,0,1,1,0,0,0,0,1 -050,01,047,Alabama,Dallas County,7,8,2513,1114,1399,408,417,699,970,1,3,5,6,1,0,0,3,1104,1392,403,415,696,966,1,3,4,5,0,0,0,3,10,7,5,2,3,4,0,0,1,1,1,0,0,0 -050,01,047,Alabama,Dallas County,7,9,3170,1417,1753,501,484,898,1249,3,4,10,7,0,0,5,9,1411,1744,499,482,895,1244,2,4,10,7,0,0,5,7,6,9,2,2,3,5,1,0,0,0,0,0,0,2 -050,01,047,Alabama,Dallas County,7,10,3415,1629,1786,594,576,1022,1195,4,2,5,5,0,0,4,8,1622,1777,590,574,1019,1188,4,2,5,5,0,0,4,8,7,9,4,2,3,7,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,7,11,3087,1406,1681,574,624,815,1042,2,2,7,10,1,1,7,2,1403,1672,573,623,814,1035,1,1,7,10,1,1,7,2,3,9,1,1,1,7,1,1,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,7,12,2676,1242,1434,593,577,639,839,2,3,5,6,0,0,3,9,1232,1422,588,573,634,832,2,3,5,6,0,0,3,8,10,12,5,4,5,7,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,7,13,2055,971,1084,473,493,487,583,3,3,5,2,0,0,3,3,966,1080,470,490,486,582,3,3,5,2,0,0,2,3,5,4,3,3,1,1,0,0,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,7,14,1874,811,1063,417,445,390,613,1,1,1,2,0,0,2,2,808,1059,416,444,388,610,1,1,1,2,0,0,2,2,3,4,1,1,2,3,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,7,15,1513,638,875,335,394,300,476,0,1,1,2,0,0,2,2,637,870,335,392,299,473,0,1,1,2,0,0,2,2,1,5,0,2,1,3,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,7,16,1189,474,715,271,337,199,369,2,1,1,0,0,0,1,8,472,713,269,337,199,368,2,1,1,0,0,0,1,7,2,2,2,0,0,1,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,7,17,802,248,554,158,311,86,239,2,2,0,1,0,0,2,1,248,553,158,310,86,239,2,2,0,1,0,0,2,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,7,18,716,209,507,113,266,94,235,0,1,1,0,0,0,1,5,208,507,112,266,94,235,0,1,1,0,0,0,1,5,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,7,99,44434,20426,24008,6858,7457,13348,16310,40,35,77,65,5,4,98,137,20277,23863,6776,7400,13296,16235,33,32,75,64,1,4,96,128,149,145,82,57,52,75,7,3,2,1,4,0,2,9 -050,01,047,Alabama,Dallas County,8,0,670,298,372,58,58,233,304,1,0,1,2,0,0,5,8,292,370,54,56,231,304,1,0,1,2,0,0,5,8,6,2,4,2,2,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,8,1,2522,1310,1212,289,301,1004,886,2,2,5,2,0,0,10,21,1296,1203,281,297,1001,882,2,2,3,2,0,0,9,20,14,9,8,4,3,4,0,0,2,0,0,0,1,1 -050,01,047,Alabama,Dallas County,8,2,3247,1652,1595,304,301,1321,1273,2,0,4,3,0,0,21,18,1636,1585,297,298,1313,1267,1,0,4,3,0,0,21,17,16,10,7,3,8,6,1,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,8,3,3395,1681,1714,356,374,1306,1324,4,0,6,4,0,0,9,12,1668,1705,349,370,1300,1320,4,0,6,4,0,0,9,11,13,9,7,4,6,4,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,8,4,3570,1729,1841,411,388,1299,1435,3,3,3,3,0,1,13,11,1717,1826,407,383,1293,1426,3,3,3,3,0,1,11,10,12,15,4,5,6,9,0,0,0,0,0,0,2,1 -050,01,047,Alabama,Dallas County,8,5,2887,1388,1499,320,331,1052,1159,4,5,4,1,2,0,6,3,1373,1491,313,328,1049,1155,2,4,4,1,0,0,5,3,15,8,7,3,3,4,2,1,0,0,2,0,1,0 -050,01,047,Alabama,Dallas County,8,6,2499,1122,1377,283,313,823,1054,5,1,6,4,1,0,4,5,1108,1367,274,308,821,1049,3,1,6,4,0,0,4,5,14,10,9,5,2,5,2,0,0,0,1,0,0,0 -050,01,047,Alabama,Dallas County,8,7,2410,1005,1405,314,360,683,1031,0,0,6,6,0,1,2,7,982,1396,293,355,682,1028,0,0,5,6,0,1,2,6,23,9,21,5,1,3,0,0,1,0,0,0,0,1 -050,01,047,Alabama,Dallas County,8,8,2540,1122,1418,392,414,720,987,1,4,5,7,1,0,3,6,1109,1411,384,412,717,983,1,4,4,6,0,0,3,6,13,7,8,2,3,4,0,0,1,1,1,0,0,0 -050,01,047,Alabama,Dallas County,8,9,3048,1388,1660,473,470,896,1171,3,4,10,7,0,0,6,8,1381,1651,471,468,892,1165,2,4,10,7,0,0,6,7,7,9,2,2,4,6,1,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,8,10,3373,1564,1809,545,537,1006,1259,4,1,5,5,1,1,3,6,1555,1802,541,536,1001,1253,4,1,5,5,1,1,3,6,9,7,4,1,5,6,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,8,11,3225,1496,1729,599,619,880,1095,1,2,8,9,1,1,7,3,1493,1718,598,618,878,1086,1,1,8,9,1,1,7,3,3,11,1,1,2,9,0,1,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,8,12,2801,1285,1516,598,609,678,890,2,4,4,6,0,0,3,7,1274,1505,593,605,672,884,2,4,4,6,0,0,3,6,11,11,5,4,6,6,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,8,13,2121,1030,1091,468,493,551,590,3,3,5,3,0,0,3,2,1025,1088,464,491,550,589,3,3,5,3,0,0,3,2,5,3,4,2,1,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,8,14,1820,765,1055,388,436,370,610,2,2,2,3,0,0,3,4,761,1051,386,435,368,607,2,2,2,3,0,0,3,4,4,4,2,1,2,3,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,8,15,1519,669,850,339,370,327,475,1,1,2,2,0,0,0,2,668,846,339,368,326,473,1,1,2,2,0,0,0,2,1,4,0,2,1,2,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,8,16,1143,443,700,253,311,189,383,1,0,0,0,0,0,0,6,441,699,251,311,189,382,1,0,0,0,0,0,0,6,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,8,17,852,279,573,173,318,102,250,2,3,0,1,0,0,2,1,279,571,173,317,102,249,2,3,0,1,0,0,2,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,8,18,681,185,496,99,263,82,226,1,1,1,0,0,0,2,6,184,496,98,263,82,226,1,1,1,0,0,0,2,6,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,8,99,44323,20411,23912,6662,7266,13522,16402,42,36,77,68,6,4,102,136,20242,23781,6566,7219,13467,16328,36,34,73,67,2,4,98,129,169,131,96,47,55,74,6,2,4,1,4,0,4,7 -050,01,047,Alabama,Dallas County,9,0,704,328,376,68,57,255,307,1,0,1,2,0,0,3,10,321,374,63,56,253,307,1,0,1,2,0,0,3,9,7,2,5,1,2,0,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,9,1,2506,1303,1203,278,286,1002,893,2,2,5,2,0,0,16,20,1293,1194,274,281,999,890,2,2,3,2,0,0,15,19,10,9,4,5,3,3,0,0,2,0,0,0,1,1 -050,01,047,Alabama,Dallas County,9,2,3214,1641,1573,289,291,1324,1258,2,0,5,3,0,0,21,21,1629,1565,285,288,1316,1254,2,0,5,3,0,0,21,20,12,8,4,3,8,4,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,9,3,3336,1647,1689,346,359,1281,1312,4,0,6,4,0,0,10,14,1635,1682,341,356,1274,1309,4,0,6,4,0,0,10,13,12,7,5,3,7,3,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,9,4,3606,1746,1860,392,379,1335,1462,3,3,3,4,0,1,13,11,1732,1846,387,375,1328,1453,3,3,3,4,0,1,11,10,14,14,5,4,7,9,0,0,0,0,0,0,2,1 -050,01,047,Alabama,Dallas County,9,5,2754,1290,1464,299,309,974,1145,4,6,5,1,2,0,6,3,1278,1452,294,303,971,1140,2,5,5,1,0,0,6,3,12,12,5,6,3,5,2,1,0,0,2,0,0,0 -050,01,047,Alabama,Dallas County,9,6,2533,1140,1393,280,319,844,1064,4,1,6,4,1,0,5,5,1126,1386,271,316,842,1060,2,1,6,4,0,0,5,5,14,7,9,3,2,4,2,0,0,0,1,0,0,0 -050,01,047,Alabama,Dallas County,9,7,2358,976,1382,262,327,705,1043,0,0,6,7,0,0,3,5,962,1372,251,320,703,1040,0,0,5,7,0,0,3,5,14,10,11,7,2,3,0,0,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,9,8,2523,1132,1391,391,409,730,965,1,4,6,7,1,0,3,6,1122,1384,386,406,727,962,1,4,5,6,0,0,3,6,10,7,5,3,3,3,0,0,1,1,1,0,0,0 -050,01,047,Alabama,Dallas County,9,9,2948,1369,1579,455,429,896,1131,3,4,10,7,0,0,5,8,1362,1572,453,427,892,1126,2,4,10,7,0,0,5,8,7,7,2,2,4,5,1,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,9,10,3299,1524,1775,529,526,982,1235,5,1,5,5,0,1,3,7,1515,1768,525,525,977,1229,5,1,5,5,0,1,3,7,9,7,4,1,5,6,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,9,11,3315,1532,1783,600,592,913,1177,1,2,8,10,1,0,9,2,1529,1771,599,591,911,1167,1,1,8,10,1,0,9,2,3,12,1,1,2,10,0,1,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,9,12,2786,1269,1517,545,580,717,920,2,4,3,6,0,0,2,7,1260,1507,540,576,713,915,2,4,3,6,0,0,2,6,9,10,5,4,4,5,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,9,13,2332,1108,1224,528,538,568,678,3,3,5,3,0,0,4,2,1103,1221,524,536,567,677,3,3,5,3,0,0,4,2,5,3,4,2,1,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,9,14,1785,787,998,362,417,418,572,2,2,2,2,0,0,3,5,783,995,360,416,416,570,2,2,2,2,0,0,3,5,4,3,2,1,2,2,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,9,15,1516,675,841,346,353,326,485,1,1,2,1,0,0,0,1,674,836,346,351,325,482,1,1,2,1,0,0,0,1,1,5,0,2,1,3,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,9,16,1105,424,681,228,315,194,360,2,0,0,0,0,0,0,6,422,680,226,315,194,359,2,0,0,0,0,0,0,6,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,9,17,869,289,580,180,309,105,268,2,2,0,1,0,0,2,0,289,577,180,308,105,266,2,2,0,1,0,0,2,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,9,18,705,191,514,106,263,82,243,1,2,1,0,0,0,1,6,190,514,105,263,82,243,1,2,1,0,0,0,1,6,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,9,99,44194,20371,23823,6484,7058,13651,16518,43,37,79,69,5,2,109,139,20225,23696,6410,7009,13595,16449,38,35,75,68,1,2,106,133,146,127,74,49,56,69,5,2,4,1,4,0,3,6 -050,01,047,Alabama,Dallas County,10,0,710,355,355,70,64,277,279,1,0,1,1,0,0,6,11,348,353,65,63,275,279,1,0,1,1,0,0,6,10,7,2,5,1,2,0,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,10,1,2527,1307,1220,267,264,1022,930,2,2,3,2,0,0,13,22,1296,1212,260,260,1019,927,2,2,3,2,0,0,12,21,11,8,7,4,3,3,0,0,0,0,0,0,1,1 -050,01,047,Alabama,Dallas County,10,2,3204,1592,1612,297,297,1272,1293,2,0,3,3,0,0,18,19,1580,1600,293,294,1264,1286,2,0,3,2,0,0,18,18,12,12,4,3,8,7,0,0,0,1,0,0,0,1 -050,01,047,Alabama,Dallas County,10,3,3323,1668,1655,332,328,1316,1308,5,0,5,4,0,0,10,15,1655,1649,325,326,1310,1305,5,0,5,4,0,0,10,14,13,6,7,2,6,3,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,10,4,3530,1718,1812,378,378,1316,1414,3,3,5,4,0,1,16,12,1699,1800,369,373,1308,1408,3,3,5,4,0,1,14,11,19,12,9,5,8,6,0,0,0,0,0,0,2,1 -050,01,047,Alabama,Dallas County,10,5,2745,1276,1469,284,302,971,1158,5,5,6,1,2,0,8,3,1265,1459,279,297,969,1153,3,5,6,1,0,0,8,3,11,10,5,5,2,5,2,0,0,0,2,0,0,0 -050,01,047,Alabama,Dallas County,10,6,2553,1161,1392,302,321,841,1060,5,2,6,4,2,0,5,5,1145,1384,293,315,839,1058,2,2,6,4,0,0,5,5,16,8,9,6,2,2,3,0,0,0,2,0,0,0 -050,01,047,Alabama,Dallas County,10,7,2375,996,1379,262,286,723,1078,0,0,8,8,0,2,3,5,978,1373,247,283,721,1076,0,0,7,7,0,2,3,5,18,6,15,3,2,2,0,0,1,1,0,0,0,0 -050,01,047,Alabama,Dallas County,10,8,2527,1134,1393,363,403,762,972,1,4,4,7,1,0,3,7,1124,1388,358,400,759,972,1,4,3,6,0,0,3,6,10,5,5,3,3,0,0,0,1,1,1,0,0,1 -050,01,047,Alabama,Dallas County,10,9,2786,1281,1505,412,414,854,1070,3,4,8,8,0,0,4,9,1274,1497,410,413,850,1064,2,4,8,8,0,0,4,8,7,8,2,1,4,6,1,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,10,10,3322,1528,1794,523,503,992,1280,4,1,5,3,1,1,3,6,1520,1788,519,502,988,1275,4,1,5,3,1,1,3,6,8,6,4,1,4,5,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,10,11,3311,1543,1768,592,560,931,1191,2,2,8,10,1,2,9,3,1538,1756,591,559,929,1181,1,1,8,10,1,2,8,3,5,12,1,1,2,10,1,1,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,10,12,2881,1290,1591,533,599,749,974,2,4,3,6,0,0,3,8,1280,1578,528,593,744,968,2,4,3,6,0,0,3,7,10,13,5,6,5,6,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,10,13,2384,1116,1268,503,538,600,722,4,3,5,3,0,0,4,2,1111,1264,500,536,598,720,4,3,5,3,0,0,4,2,5,4,3,2,2,2,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,10,14,1889,860,1029,427,412,426,607,2,3,2,2,0,0,3,5,856,1026,426,411,423,605,2,3,2,2,0,0,3,5,4,3,1,1,3,2,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,10,15,1518,667,851,331,352,332,495,1,1,3,2,0,0,0,1,666,848,331,351,331,493,1,1,3,2,0,0,0,1,1,3,0,1,1,2,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,10,16,1096,437,659,213,295,221,357,3,0,0,0,0,0,0,7,435,658,211,295,221,356,3,0,0,0,0,0,0,7,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,10,17,870,286,584,173,297,109,283,2,3,0,1,0,0,2,0,286,581,173,296,109,281,2,3,0,1,0,0,2,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,10,18,714,174,540,106,276,64,258,1,1,1,0,0,0,2,5,173,540,105,276,64,258,1,1,1,0,0,0,2,5,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,10,99,44265,20389,23876,6368,6889,13778,16729,48,38,76,69,7,6,112,145,20229,23754,6283,6843,13721,16665,41,37,74,66,2,6,108,137,160,122,85,46,57,64,7,1,2,3,5,0,4,8 -050,01,047,Alabama,Dallas County,11,0,675,335,340,62,56,265,272,1,0,1,1,0,0,6,11,327,333,56,50,263,272,1,0,1,1,0,0,6,10,8,7,6,6,2,0,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,11,1,2522,1261,1261,232,265,1003,967,2,2,5,2,0,0,19,25,1245,1254,221,262,1001,964,2,2,3,2,0,0,18,24,16,7,11,3,2,3,0,0,2,0,0,0,1,1 -050,01,047,Alabama,Dallas County,11,2,3113,1608,1505,303,285,1285,1200,2,0,3,2,0,0,15,18,1597,1497,300,282,1277,1196,2,0,3,2,0,0,15,17,11,8,3,3,8,4,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,11,3,3233,1584,1649,295,333,1271,1296,5,0,3,4,0,0,10,16,1574,1643,291,330,1265,1294,5,0,3,4,0,0,10,15,10,6,4,3,6,2,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,11,4,3471,1705,1766,371,371,1314,1374,3,2,3,4,0,2,14,13,1688,1749,362,363,1308,1366,3,2,3,4,0,2,12,12,17,17,9,8,6,8,0,0,0,0,0,0,2,1 -050,01,047,Alabama,Dallas County,11,5,2661,1234,1427,270,302,940,1115,5,5,9,1,2,0,8,4,1222,1419,264,299,938,1110,3,5,9,1,0,0,8,4,12,8,6,3,2,5,2,0,0,0,2,0,0,0 -050,01,047,Alabama,Dallas County,11,6,2556,1152,1404,293,313,840,1079,5,2,6,4,2,0,6,6,1136,1399,284,310,838,1077,2,2,6,4,0,0,6,6,16,5,9,3,2,2,3,0,0,0,2,0,0,0 -050,01,047,Alabama,Dallas County,11,7,2355,1027,1328,268,290,747,1022,0,0,8,9,0,2,4,5,1012,1321,256,286,745,1020,0,0,7,8,0,2,4,5,15,7,12,4,2,2,0,0,1,1,0,0,0,0 -050,01,047,Alabama,Dallas County,11,8,2526,1105,1421,334,359,760,1044,1,4,6,7,1,0,3,7,1095,1416,329,356,757,1044,1,4,5,6,0,0,3,6,10,5,5,3,3,0,0,0,1,1,1,0,0,1 -050,01,047,Alabama,Dallas County,11,9,2630,1214,1416,385,406,812,989,3,4,10,8,0,0,4,9,1207,1410,383,406,808,984,2,4,10,8,0,0,4,8,7,6,2,0,4,5,1,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,11,10,3200,1458,1742,493,485,951,1246,5,1,5,3,1,1,3,6,1449,1735,489,484,946,1240,5,1,5,3,1,1,3,6,9,7,4,1,5,6,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,11,11,3355,1567,1788,566,565,981,1206,2,2,8,11,1,1,9,3,1562,1776,565,564,979,1196,1,1,8,11,1,1,8,3,5,12,1,1,2,10,1,1,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,11,12,2887,1312,1575,531,573,773,984,2,4,3,6,0,0,3,8,1301,1564,525,567,768,980,2,4,3,6,0,0,3,7,11,11,6,6,5,4,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,11,13,2448,1152,1296,512,524,627,763,4,3,5,3,0,0,4,3,1147,1292,508,522,626,761,4,3,5,3,0,0,4,3,5,4,4,2,1,2,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,11,14,1965,910,1055,439,428,464,618,2,2,2,2,0,0,3,5,906,1051,438,427,461,615,2,2,2,2,0,0,3,5,4,4,1,1,3,3,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,11,15,1516,673,843,321,373,348,465,1,1,3,2,0,0,0,2,671,840,321,372,346,463,1,1,3,2,0,0,0,2,2,3,0,1,2,2,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,11,16,1103,436,667,224,299,209,361,3,0,0,0,0,0,0,7,434,666,222,299,209,360,3,0,0,0,0,0,0,7,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,11,17,839,283,556,175,287,104,265,2,3,0,1,0,0,2,0,283,553,175,286,104,263,2,3,0,1,0,0,2,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,11,18,704,187,517,115,277,68,233,1,2,1,0,0,0,2,5,186,517,114,277,68,233,1,2,1,0,0,0,2,5,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,11,99,43759,20203,23556,6189,6791,13762,16499,49,37,81,70,7,6,115,153,20042,23435,6103,6742,13707,16438,42,36,77,68,2,6,111,145,161,121,86,49,55,61,7,1,4,2,5,0,4,8 -050,01,047,Alabama,Dallas County,12,0,625,302,323,60,49,235,262,1,0,1,1,0,0,5,11,294,320,54,47,233,262,1,0,1,1,0,0,5,10,8,3,6,2,2,0,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,12,1,2572,1288,1284,223,253,1037,1003,2,2,5,2,0,0,21,24,1271,1275,211,248,1035,1000,2,2,3,2,0,0,20,23,17,9,12,5,2,3,0,0,2,0,0,0,1,1 -050,01,047,Alabama,Dallas County,12,2,3097,1605,1492,309,296,1274,1173,2,0,4,3,0,0,16,20,1591,1480,303,293,1266,1166,2,0,4,2,0,0,16,19,14,12,6,3,8,7,0,0,0,1,0,0,0,1 -050,01,047,Alabama,Dallas County,12,3,3271,1650,1621,319,322,1311,1282,5,0,4,4,0,0,11,13,1636,1614,313,318,1303,1280,5,0,4,4,0,0,11,12,14,7,6,4,8,2,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,12,4,3343,1648,1695,361,363,1263,1313,3,2,5,3,0,1,16,13,1630,1681,351,358,1257,1305,3,2,5,3,0,1,14,12,18,14,10,5,6,8,0,0,0,0,0,0,2,1 -050,01,047,Alabama,Dallas County,12,5,2705,1235,1470,264,305,949,1155,5,5,7,1,2,0,8,4,1218,1459,253,300,947,1149,3,5,7,1,0,0,8,4,17,11,11,5,2,6,2,0,0,0,2,0,0,0 -050,01,047,Alabama,Dallas County,12,6,2614,1178,1436,292,311,867,1113,5,2,6,4,2,0,6,6,1162,1428,283,305,865,1111,2,2,6,4,0,0,6,6,16,8,9,6,2,2,3,0,0,0,2,0,0,0 -050,01,047,Alabama,Dallas County,12,7,2375,1047,1328,278,275,757,1038,0,0,8,9,0,1,4,5,1029,1321,263,271,755,1036,0,0,7,8,0,1,4,5,18,7,15,4,2,2,0,0,1,1,0,0,0,0 -050,01,047,Alabama,Dallas County,12,8,2494,1077,1417,310,357,756,1042,1,4,6,7,1,0,3,7,1067,1412,305,354,753,1042,1,4,5,6,0,0,3,6,10,5,5,3,3,0,0,0,1,1,1,0,0,1 -050,01,047,Alabama,Dallas County,12,9,2527,1156,1371,364,382,776,968,3,4,9,8,0,0,4,9,1149,1365,362,382,772,963,2,4,9,8,0,0,4,8,7,6,2,0,4,5,1,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,12,10,3145,1428,1717,483,475,931,1231,5,1,5,3,1,1,3,6,1419,1710,479,474,926,1225,5,1,5,3,1,1,3,6,9,7,4,1,5,6,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,12,11,3369,1566,1803,542,543,1004,1243,2,2,8,11,1,1,9,3,1561,1790,541,542,1002,1232,1,1,8,11,1,1,8,3,5,13,1,1,2,11,1,1,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,12,12,2916,1336,1580,515,566,813,995,2,4,3,6,0,0,3,9,1325,1568,509,560,808,990,2,4,3,6,0,0,3,8,11,12,6,6,5,5,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,12,13,2602,1228,1374,549,553,666,812,4,3,5,3,0,0,4,3,1222,1369,545,551,664,809,4,3,5,3,0,0,4,3,6,5,4,2,2,3,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,12,14,1946,899,1047,415,430,477,607,2,3,2,2,0,0,3,5,894,1043,414,429,473,604,2,3,2,2,0,0,3,5,5,4,1,1,4,3,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,12,15,1584,705,879,330,376,371,498,1,1,3,2,0,0,0,2,704,876,330,375,370,496,1,1,3,2,0,0,0,2,1,3,0,1,1,2,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,12,16,1073,424,649,219,308,203,334,2,0,0,0,0,0,0,7,422,648,217,308,203,333,2,0,0,0,0,0,0,7,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,12,17,849,278,571,176,276,98,291,2,3,0,1,0,0,2,0,278,568,176,275,98,289,2,3,0,1,0,0,2,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,12,18,713,194,519,114,270,76,241,1,2,1,0,0,0,2,6,193,519,113,270,76,241,1,2,1,0,0,0,2,6,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,12,99,43820,20244,23576,6123,6710,13864,16601,48,38,82,70,7,4,120,153,20065,23446,6022,6660,13806,16533,41,37,78,67,2,4,116,145,179,130,101,50,58,68,7,1,4,3,5,0,4,8 -050,01,047,Alabama,Dallas County,13,0,623,301,322,59,50,235,263,1,0,1,0,0,0,5,9,293,318,53,47,233,262,1,0,1,0,0,0,5,9,8,4,6,3,2,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,13,1,2570,1282,1288,218,250,1038,1003,3,2,2,4,0,1,21,28,1271,1276,208,245,1037,1002,3,1,2,3,0,0,21,25,11,12,10,5,1,1,0,1,0,1,0,1,0,3 -050,01,047,Alabama,Dallas County,13,2,3097,1603,1494,308,297,1270,1170,3,4,2,2,1,0,19,21,1589,1478,302,293,1264,1163,3,1,2,1,1,0,17,20,14,16,6,4,6,7,0,3,0,1,0,0,2,1 -050,01,047,Alabama,Dallas County,13,3,3257,1645,1612,317,321,1306,1280,5,1,3,2,0,1,14,7,1629,1603,312,317,1299,1276,3,1,3,2,0,0,12,7,16,9,5,4,7,4,2,0,0,0,0,1,2,0 -050,01,047,Alabama,Dallas County,13,4,3311,1637,1674,359,358,1252,1299,6,6,4,3,2,0,14,8,1617,1661,349,353,1247,1293,4,4,3,3,1,0,13,8,20,13,10,5,5,6,2,2,1,0,1,0,1,0 -050,01,047,Alabama,Dallas County,13,5,2712,1235,1477,264,304,953,1158,3,5,7,2,2,3,6,5,1217,1464,252,298,950,1153,2,4,7,2,0,2,6,5,18,13,12,6,3,5,1,1,0,0,2,1,0,0 -050,01,047,Alabama,Dallas County,13,6,2620,1178,1442,289,310,872,1112,4,3,6,6,3,1,4,10,1162,1427,281,303,869,1109,2,3,5,4,1,1,4,7,16,15,8,7,3,3,2,0,1,2,2,0,0,3 -050,01,047,Alabama,Dallas County,13,7,2398,1058,1340,277,280,762,1043,2,0,9,9,2,2,6,6,1040,1330,263,274,761,1041,1,0,9,9,0,1,6,5,18,10,14,6,1,2,1,0,0,0,2,1,0,1 -050,01,047,Alabama,Dallas County,13,8,2474,1073,1401,306,353,754,1037,1,0,5,5,2,1,5,5,1062,1397,301,350,751,1036,1,0,4,5,1,1,4,5,11,4,5,3,3,1,0,0,1,0,1,0,1,0 -050,01,047,Alabama,Dallas County,13,9,2510,1154,1356,365,380,772,961,2,2,9,8,0,0,6,5,1145,1351,362,379,768,957,1,2,8,8,0,0,6,5,9,5,3,1,4,4,1,0,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,13,10,3124,1416,1708,479,473,925,1225,4,3,6,3,0,0,2,4,1409,1702,475,471,922,1222,4,2,6,3,0,0,2,4,7,6,4,2,3,3,0,1,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,13,11,3382,1572,1810,543,547,1009,1247,4,2,7,10,0,1,9,3,1563,1795,540,543,1007,1236,2,2,7,10,0,1,7,3,9,15,3,4,2,11,2,0,0,0,0,0,2,0 -050,01,047,Alabama,Dallas County,13,12,2928,1342,1586,517,568,817,999,0,4,3,5,0,0,5,10,1331,1575,511,561,812,996,0,4,3,5,0,0,5,9,11,11,6,7,5,3,0,0,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,13,13,2625,1239,1386,554,557,672,821,4,3,5,3,0,0,4,2,1230,1381,549,555,668,818,4,3,5,3,0,0,4,2,9,5,5,2,4,3,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,13,14,1939,893,1046,416,431,474,606,1,2,1,4,0,0,1,3,889,1044,414,430,472,605,1,2,1,4,0,0,1,3,4,2,2,1,2,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,13,15,1592,709,883,332,377,372,498,0,2,4,3,0,0,1,3,708,881,331,375,372,498,0,2,4,3,0,0,1,3,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,13,16,1070,427,643,219,309,203,330,2,1,1,0,0,0,2,3,425,642,217,308,203,330,2,1,1,0,0,0,2,3,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,13,17,842,276,566,173,274,99,289,1,2,0,0,0,0,3,1,276,566,173,274,99,289,1,2,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,13,18,716,195,521,114,271,77,244,1,2,1,0,0,0,2,4,194,520,113,271,77,243,1,2,1,0,0,0,2,4,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,13,99,43790,20235,23555,6109,6710,13862,16585,47,44,76,69,12,10,129,137,20050,23411,6006,6647,13811,16529,36,36,72,65,4,6,121,128,185,144,103,63,51,56,11,8,4,4,8,4,8,9 -050,01,049,Alabama,DeKalb County,1,0,913,470,443,449,420,10,10,4,2,0,1,0,1,7,9,400,376,382,356,9,9,3,2,0,1,0,0,6,8,70,67,67,64,1,1,1,0,0,0,0,1,1,1 -050,01,049,Alabama,DeKalb County,1,1,3468,1753,1715,1672,1628,43,51,12,9,5,5,1,2,20,20,1562,1531,1490,1457,39,49,11,6,3,2,0,0,19,17,191,184,182,171,4,2,1,3,2,3,1,2,1,3 -050,01,049,Alabama,DeKalb County,1,2,4581,2386,2195,2281,2105,45,42,23,17,4,5,1,0,32,26,2211,2014,2116,1932,45,41,21,12,1,5,0,0,28,24,175,181,165,173,0,1,2,5,3,0,1,0,4,2 -050,01,049,Alabama,DeKalb County,1,3,4266,2220,2046,2095,1928,47,46,32,18,4,7,3,1,39,46,2088,1920,1973,1809,43,46,29,17,4,5,0,0,39,43,132,126,122,119,4,0,3,1,0,2,3,1,0,3 -050,01,049,Alabama,DeKalb County,1,4,4423,2269,2154,2151,2034,34,39,34,33,3,5,5,4,42,39,2045,2008,1936,1894,33,37,28,31,3,4,3,4,42,38,224,146,215,140,1,2,6,2,0,1,2,0,0,1 -050,01,049,Alabama,DeKalb County,1,5,4166,2130,2036,2038,1938,41,54,31,17,4,6,2,2,14,19,1770,1833,1699,1740,35,53,21,16,4,4,0,1,11,19,360,203,339,198,6,1,10,1,0,2,2,1,3,0 -050,01,049,Alabama,DeKalb County,1,6,4538,2361,2177,2272,2107,41,30,19,19,7,5,3,1,19,15,2035,1991,1961,1926,40,30,9,17,4,3,2,0,19,15,326,186,311,181,1,0,10,2,3,2,1,1,0,0 -050,01,049,Alabama,DeKalb County,1,7,4567,2320,2247,2242,2155,30,38,17,16,4,4,1,2,26,32,2080,2120,2014,2037,29,38,10,13,3,2,0,0,24,30,240,127,228,118,1,0,7,3,1,2,1,2,2,2 -050,01,049,Alabama,DeKalb County,1,8,4778,2376,2402,2294,2307,40,42,18,18,2,8,2,2,20,25,2236,2311,2160,2220,40,41,14,17,2,8,1,1,19,24,140,91,134,87,0,1,4,1,0,0,1,1,1,1 -050,01,049,Alabama,DeKalb County,1,9,4877,2436,2441,2349,2313,33,51,21,32,5,9,1,0,27,36,2364,2384,2279,2258,33,51,19,30,5,9,1,0,27,36,72,57,70,55,0,0,2,2,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,1,10,4313,2135,2178,2052,2060,35,49,25,27,3,5,0,0,20,37,2081,2133,2001,2019,35,46,23,27,3,5,0,0,19,36,54,45,51,41,0,3,2,0,0,0,0,0,1,1 -050,01,049,Alabama,DeKalb County,1,11,4303,2110,2193,2029,2107,27,34,24,18,1,9,0,0,29,25,2064,2161,1987,2077,27,34,22,17,1,9,0,0,27,24,46,32,42,30,0,0,2,1,0,0,0,0,2,1 -050,01,049,Alabama,DeKalb County,1,12,3419,1660,1759,1609,1690,21,24,12,15,4,4,2,2,12,24,1637,1744,1588,1676,21,24,12,15,4,3,0,2,12,24,23,15,21,14,0,0,0,0,0,1,2,0,0,0 -050,01,049,Alabama,DeKalb County,1,13,2939,1321,1618,1272,1563,17,28,7,6,3,2,0,0,22,19,1314,1601,1265,1546,17,28,7,6,3,2,0,0,22,19,7,17,7,17,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,1,14,2619,1220,1399,1195,1369,11,19,5,3,1,1,1,0,7,7,1203,1391,1179,1361,11,19,5,3,1,1,0,0,7,7,17,8,16,8,0,0,0,0,0,0,1,0,0,0 -050,01,049,Alabama,DeKalb County,1,15,2226,984,1242,961,1218,10,14,4,4,3,0,0,0,6,6,980,1239,957,1215,10,14,4,4,3,0,0,0,6,6,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,1,16,1749,679,1070,658,1041,7,14,5,2,0,1,0,0,9,12,675,1069,654,1040,7,14,5,2,0,1,0,0,9,12,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,1,17,1209,400,809,395,793,1,7,0,2,0,0,0,0,4,7,398,806,393,791,1,7,0,2,0,0,0,0,4,6,2,3,2,2,0,0,0,0,0,0,0,0,0,1 -050,01,049,Alabama,DeKalb County,1,18,1082,270,812,266,790,2,16,0,2,0,0,0,0,2,4,270,810,266,788,2,16,0,2,0,0,0,0,2,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,1,99,64436,31500,32936,30280,31566,495,608,293,260,53,77,22,17,357,408,29413,31442,28300,30142,477,597,243,239,44,64,7,8,342,392,2087,1494,1980,1424,18,11,50,21,9,13,15,9,15,16 -050,01,049,Alabama,DeKalb County,2,0,923,475,448,454,429,10,10,4,2,0,1,0,1,7,5,403,379,385,363,9,9,3,2,0,1,0,0,6,4,72,69,69,66,1,1,1,0,0,0,0,1,1,1 -050,01,049,Alabama,DeKalb County,2,1,3466,1751,1715,1671,1627,43,49,13,11,5,5,1,2,18,21,1558,1528,1488,1455,39,47,11,6,3,2,0,0,17,18,193,187,183,172,4,2,2,5,2,3,1,2,1,3 -050,01,049,Alabama,DeKalb County,2,2,4578,2386,2192,2279,2103,45,42,23,17,4,5,1,0,34,25,2210,2011,2113,1930,45,41,21,12,1,5,0,0,30,23,176,181,166,173,0,1,2,5,3,0,1,0,4,2 -050,01,049,Alabama,DeKalb County,2,3,4287,2234,2053,2107,1938,47,46,32,18,4,7,4,1,40,43,2099,1924,1983,1817,43,46,29,17,4,5,0,0,40,39,135,129,124,121,4,0,3,1,0,2,4,1,0,4 -050,01,049,Alabama,DeKalb County,2,4,4439,2280,2159,2164,2043,34,39,34,33,3,5,5,4,40,35,2056,2014,1949,1904,33,37,28,31,3,4,3,4,40,34,224,145,215,139,1,2,6,2,0,1,2,0,0,1 -050,01,049,Alabama,DeKalb County,2,5,4210,2157,2053,2064,1958,41,54,31,17,4,6,2,2,15,16,1791,1849,1720,1759,35,53,21,16,4,4,0,1,11,16,366,204,344,199,6,1,10,1,0,2,2,1,4,0 -050,01,049,Alabama,DeKalb County,2,6,4515,2353,2162,2264,2092,42,30,19,19,7,5,3,1,18,15,2022,1973,1948,1908,41,30,9,17,4,3,2,0,18,15,331,189,316,184,1,0,10,2,3,2,1,1,0,0 -050,01,049,Alabama,DeKalb County,2,7,4568,2322,2246,2244,2153,30,38,17,16,4,4,1,2,26,33,2078,2118,2012,2034,29,38,10,13,3,2,0,0,24,31,244,128,232,119,1,0,7,3,1,2,1,2,2,2 -050,01,049,Alabama,DeKalb County,2,8,4760,2370,2390,2289,2298,40,42,18,18,2,8,2,2,19,22,2228,2298,2153,2210,40,41,14,17,2,8,1,1,18,21,142,92,136,88,0,1,4,1,0,0,1,1,1,1 -050,01,049,Alabama,DeKalb County,2,9,4891,2443,2448,2357,2319,33,50,21,32,5,9,1,0,26,38,2370,2391,2286,2264,33,50,19,30,5,9,1,0,26,38,73,57,71,55,0,0,2,2,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,2,10,4342,2149,2193,2066,2075,35,49,25,27,3,5,0,0,20,37,2095,2148,2015,2034,35,46,23,27,3,5,0,0,19,36,54,45,51,41,0,3,2,0,0,0,0,0,1,1 -050,01,049,Alabama,DeKalb County,2,11,4350,2133,2217,2053,2131,27,34,24,18,1,9,0,0,28,25,2086,2185,2010,2101,27,34,22,17,1,9,0,0,26,24,47,32,43,30,0,0,2,1,0,0,0,0,2,1 -050,01,049,Alabama,DeKalb County,2,12,3448,1676,1772,1625,1702,21,24,12,15,4,4,2,2,12,25,1653,1757,1604,1688,21,24,12,15,4,3,0,2,12,25,23,15,21,14,0,0,0,0,0,1,2,0,0,0 -050,01,049,Alabama,DeKalb County,2,13,2958,1330,1628,1280,1572,17,28,7,6,3,2,0,0,23,20,1323,1611,1273,1555,17,28,7,6,3,2,0,0,23,20,7,17,7,17,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,2,14,2617,1219,1398,1194,1368,11,19,5,3,1,1,1,0,7,7,1202,1390,1178,1360,11,19,5,3,1,1,0,0,7,7,17,8,16,8,0,0,0,0,0,0,1,0,0,0 -050,01,049,Alabama,DeKalb County,2,15,2227,986,1241,963,1217,10,14,4,4,3,0,0,0,6,6,982,1238,959,1214,10,14,4,4,3,0,0,0,6,6,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,2,16,1757,682,1075,661,1045,7,14,5,2,0,1,0,0,9,13,678,1074,657,1044,7,14,5,2,0,1,0,0,9,13,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,2,17,1223,405,818,400,802,1,7,0,2,0,0,0,0,4,7,403,815,398,800,1,7,0,2,0,0,0,0,4,6,2,3,2,2,0,0,0,0,0,0,0,0,0,1 -050,01,049,Alabama,DeKalb County,2,18,1091,273,818,269,796,2,16,0,2,0,0,0,0,2,4,273,816,269,794,2,16,0,2,0,0,0,0,2,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,2,99,64650,31624,33026,30404,31668,496,605,294,262,53,77,23,17,354,397,29510,31519,28400,30234,478,594,243,239,44,64,7,8,338,380,2114,1507,2004,1434,18,11,51,23,9,13,16,9,16,17 -050,01,049,Alabama,DeKalb County,3,0,941,472,469,449,448,9,9,3,3,0,1,1,2,10,6,380,363,362,347,7,8,2,2,0,1,0,0,9,5,92,106,87,101,2,1,1,1,0,0,1,2,1,1 -050,01,049,Alabama,DeKalb County,3,1,3642,1883,1759,1776,1646,49,56,17,21,6,8,5,6,30,22,1625,1508,1541,1422,43,51,11,11,3,5,0,0,27,19,258,251,235,224,6,5,6,10,3,3,5,6,3,3 -050,01,049,Alabama,DeKalb County,3,2,4689,2455,2234,2337,2117,44,56,29,22,8,9,5,5,32,25,2227,2039,2132,1944,40,52,22,12,4,8,0,0,29,23,228,195,205,173,4,4,7,10,4,1,5,5,3,2 -050,01,049,Alabama,DeKalb County,3,3,4532,2348,2184,2212,2059,48,45,36,27,8,6,8,3,36,44,2165,2019,2050,1904,43,44,28,23,8,5,0,0,36,43,183,165,162,155,5,1,8,4,0,1,8,3,0,1 -050,01,049,Alabama,DeKalb County,3,4,4263,2213,2050,2090,1928,30,36,38,40,3,7,8,6,44,33,1987,1886,1878,1779,29,34,31,34,3,5,2,3,44,31,226,164,212,149,1,2,7,6,0,2,6,3,0,2 -050,01,049,Alabama,DeKalb County,3,5,4379,2219,2160,2108,2060,48,44,27,29,6,7,7,6,23,14,1853,1941,1770,1856,43,43,14,23,6,4,0,1,20,14,366,219,338,204,5,1,13,6,0,3,7,5,3,0 -050,01,049,Alabama,DeKalb County,3,6,4402,2278,2124,2178,2050,42,29,24,22,8,5,8,4,18,14,1927,1893,1854,1832,40,29,10,15,4,3,2,0,17,14,351,231,324,218,2,0,14,7,4,2,6,4,1,0 -050,01,049,Alabama,DeKalb County,3,7,4766,2458,2308,2360,2196,38,45,23,23,4,4,5,6,28,34,2142,2134,2067,2038,35,45,12,16,3,3,0,0,25,32,316,174,293,158,3,0,11,7,1,1,5,6,3,2 -050,01,049,Alabama,DeKalb County,3,8,4770,2357,2413,2271,2308,45,41,18,20,3,9,5,7,15,28,2181,2290,2106,2198,45,39,12,16,3,9,1,1,14,27,176,123,165,110,0,2,6,4,0,0,4,6,1,1 -050,01,049,Alabama,DeKalb County,3,9,4961,2466,2495,2375,2363,37,43,20,35,5,6,3,3,26,45,2370,2422,2286,2298,36,42,16,32,5,5,1,0,26,45,96,73,89,65,1,1,4,3,0,1,2,3,0,0 -050,01,049,Alabama,DeKalb County,3,10,4468,2257,2211,2173,2087,31,53,33,27,1,8,3,0,16,36,2192,2166,2115,2046,31,50,30,27,1,8,0,0,15,35,65,45,58,41,0,3,3,0,0,0,3,0,1,1 -050,01,049,Alabama,DeKalb County,3,11,4378,2167,2211,2069,2110,28,37,29,22,3,11,1,0,37,31,2117,2175,2023,2076,28,37,28,21,3,11,0,0,35,30,50,36,46,34,0,0,1,1,0,0,1,0,2,1 -050,01,049,Alabama,DeKalb County,3,12,3561,1703,1858,1651,1777,24,26,12,13,4,8,2,3,10,31,1681,1833,1631,1754,24,26,12,13,4,7,0,2,10,31,22,25,20,23,0,0,0,0,0,1,2,1,0,0 -050,01,049,Alabama,DeKalb County,3,13,2987,1371,1616,1316,1558,19,28,8,6,3,3,0,0,25,21,1358,1599,1304,1541,19,28,7,6,3,3,0,0,25,21,13,17,12,17,0,0,1,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,3,14,2640,1231,1409,1193,1371,21,24,7,4,1,1,1,1,8,8,1212,1399,1175,1362,21,24,7,4,1,1,0,0,8,8,19,10,18,9,0,0,0,0,0,0,1,1,0,0 -050,01,049,Alabama,DeKalb County,3,15,2265,1013,1252,978,1221,17,17,5,4,3,0,0,0,10,10,1006,1249,971,1218,17,17,5,4,3,0,0,0,10,10,7,3,7,3,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,3,16,1724,654,1070,634,1033,7,19,6,2,0,1,0,0,7,15,648,1069,628,1032,7,19,6,2,0,1,0,0,7,15,6,1,6,1,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,3,17,1223,396,827,389,811,2,8,0,2,0,0,0,0,5,6,393,824,386,809,2,8,0,2,0,0,0,0,5,5,3,3,3,2,0,0,0,0,0,0,0,0,0,1 -050,01,049,Alabama,DeKalb County,3,18,1087,287,800,283,780,2,14,0,2,0,0,0,0,2,4,287,798,283,778,2,14,0,2,0,0,0,0,2,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,3,99,65678,32228,33450,30842,31923,541,630,335,324,66,94,62,52,382,427,29751,31607,28562,30234,512,610,253,265,54,79,6,7,364,412,2477,1843,2280,1689,29,20,82,59,12,15,56,45,18,15 -050,01,049,Alabama,DeKalb County,4,0,948,480,468,452,448,10,8,2,3,0,1,3,2,13,6,377,358,357,343,8,7,1,2,0,1,0,0,11,5,103,110,95,105,2,1,1,1,0,0,3,2,2,1 -050,01,049,Alabama,DeKalb County,4,1,3680,1885,1795,1767,1673,52,52,19,23,5,6,8,9,34,32,1573,1474,1483,1386,45,47,11,10,3,3,0,0,31,28,312,321,284,287,7,5,8,13,2,3,8,9,3,4 -050,01,049,Alabama,DeKalb County,4,2,4609,2388,2221,2266,2092,40,57,35,29,5,11,7,7,35,25,2140,1986,2049,1891,34,52,24,15,2,9,0,0,31,19,248,235,217,201,6,5,11,14,3,2,7,7,4,6 -050,01,049,Alabama,DeKalb County,4,3,4676,2429,2247,2273,2122,52,49,40,27,8,6,11,7,45,36,2210,2070,2083,1966,46,45,30,22,8,4,1,0,42,33,219,177,190,156,6,4,10,5,0,2,10,7,3,3 -050,01,049,Alabama,DeKalb County,4,4,4191,2148,2043,2003,1912,29,30,52,44,3,9,9,11,52,37,1950,1846,1827,1738,26,28,42,34,3,6,2,5,50,35,198,197,176,174,3,2,10,10,0,3,7,6,2,2 -050,01,049,Alabama,DeKalb County,4,5,4291,2169,2122,2050,2020,40,36,39,33,3,6,10,8,27,19,1797,1902,1715,1819,34,33,22,25,3,4,0,2,23,19,372,220,335,201,6,3,17,8,0,2,10,6,4,0 -050,01,049,Alabama,DeKalb County,4,6,4428,2319,2109,2205,2005,45,37,29,34,8,6,11,7,21,20,1912,1861,1835,1779,42,36,11,23,4,4,2,0,18,19,407,248,370,226,3,1,18,11,4,2,9,7,3,1 -050,01,049,Alabama,DeKalb County,4,7,4712,2396,2316,2304,2195,33,47,24,26,4,5,7,6,24,37,2040,2123,1978,2026,29,45,10,16,3,2,0,0,20,34,356,193,326,169,4,2,14,10,1,3,7,6,4,3 -050,01,049,Alabama,DeKalb County,4,8,4702,2345,2357,2238,2261,52,38,24,20,3,9,7,6,21,23,2133,2221,2046,2138,50,36,15,15,3,9,1,2,18,21,212,136,192,123,2,2,9,5,0,0,6,4,3,2 -050,01,049,Alabama,DeKalb County,4,9,4945,2486,2459,2374,2328,35,42,29,33,5,8,5,6,38,42,2374,2363,2278,2246,32,40,22,29,5,7,1,0,36,41,112,96,96,82,3,2,7,4,0,1,4,6,2,1 -050,01,049,Alabama,DeKalb County,4,10,4574,2308,2266,2235,2134,26,58,26,30,1,7,4,2,16,35,2228,2205,2164,2080,26,56,23,28,1,7,0,0,14,34,80,61,71,54,0,2,3,2,0,0,4,2,2,1 -050,01,049,Alabama,DeKalb County,4,11,4249,2047,2202,1959,2097,29,34,28,27,3,11,0,0,28,33,2002,2170,1920,2069,28,33,25,26,3,11,0,0,26,31,45,32,39,28,1,1,3,1,0,0,0,0,2,2 -050,01,049,Alabama,DeKalb County,4,12,3791,1857,1934,1788,1857,24,24,17,13,4,5,2,3,22,32,1833,1902,1766,1827,24,24,17,13,4,4,0,2,22,32,24,32,22,30,0,0,0,0,0,1,2,1,0,0 -050,01,049,Alabama,DeKalb County,4,13,3048,1428,1620,1378,1561,19,26,8,9,4,3,0,0,19,21,1417,1607,1368,1548,19,26,7,9,4,3,0,0,19,21,11,13,10,13,0,0,1,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,4,14,2702,1239,1463,1196,1421,18,25,8,5,1,1,1,1,15,10,1224,1451,1182,1410,18,25,8,5,1,1,0,0,15,10,15,12,14,11,0,0,0,0,0,0,1,1,0,0 -050,01,049,Alabama,DeKalb County,4,15,2284,1020,1264,983,1238,18,15,6,4,3,0,0,0,10,7,1008,1260,971,1234,18,15,6,4,3,0,0,0,10,7,12,4,12,4,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,4,16,1764,696,1068,674,1034,6,17,7,2,0,1,0,0,9,14,691,1066,669,1032,6,17,7,2,0,1,0,0,9,14,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,4,17,1197,391,806,382,788,3,8,0,2,0,0,0,0,6,8,389,803,380,786,3,8,0,2,0,0,0,0,6,7,2,3,2,2,0,0,0,0,0,0,0,0,0,1 -050,01,049,Alabama,DeKalb County,4,18,1070,284,786,280,764,2,15,0,2,0,0,0,0,2,5,284,784,280,762,2,15,0,2,0,0,0,0,2,5,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,4,99,65861,32315,33546,30807,31950,533,618,393,366,60,95,85,75,437,442,29582,31452,28351,30080,490,588,281,282,50,76,7,11,403,415,2733,2094,2456,1870,43,30,112,84,10,19,78,64,34,27 -050,01,049,Alabama,DeKalb County,5,0,951,490,461,463,439,5,6,3,5,1,2,4,3,14,6,367,343,352,330,3,5,1,2,0,1,0,0,11,5,123,118,111,109,2,1,2,3,1,1,4,3,3,1 -050,01,049,Alabama,DeKalb County,5,1,3820,1969,1851,1825,1694,57,68,25,27,7,8,13,12,42,42,1581,1485,1481,1370,47,64,13,11,3,4,1,0,36,36,388,366,344,324,10,4,12,16,4,4,12,12,6,6 -050,01,049,Alabama,DeKalb County,5,2,4586,2360,2226,2213,2083,50,57,42,36,6,7,10,10,39,33,2080,1955,1977,1854,39,51,27,20,2,6,0,0,35,24,280,271,236,229,11,6,15,16,4,1,10,10,4,9 -050,01,049,Alabama,DeKalb County,5,3,4837,2529,2308,2358,2171,54,47,48,36,10,8,14,8,45,38,2279,2076,2144,1968,48,42,36,28,8,4,2,0,41,34,250,232,214,203,6,5,12,8,2,4,12,8,4,4 -050,01,049,Alabama,DeKalb County,5,4,4205,2183,2022,2038,1882,26,27,52,49,5,9,13,9,49,46,1958,1817,1840,1710,22,22,42,36,3,6,3,1,48,42,225,205,198,172,4,5,10,13,2,3,10,8,1,4 -050,01,049,Alabama,DeKalb County,5,5,4291,2183,2108,2055,1985,38,35,41,44,7,7,13,10,29,27,1801,1876,1719,1781,33,30,21,33,5,4,0,1,23,27,382,232,336,204,5,5,20,11,2,3,13,9,6,0 -050,01,049,Alabama,DeKalb County,5,6,4417,2293,2124,2170,1995,40,48,35,41,9,8,13,10,26,22,1865,1862,1788,1770,37,44,14,25,4,5,0,0,22,18,428,262,382,225,3,4,21,16,5,3,13,10,4,4 -050,01,049,Alabama,DeKalb County,5,7,4747,2448,2299,2333,2172,34,40,28,32,5,8,11,9,37,38,2042,2052,1967,1956,30,36,12,19,3,6,0,0,30,35,406,247,366,216,4,4,16,13,2,2,11,9,7,3 -050,01,049,Alabama,DeKalb County,5,8,4699,2350,2349,2248,2238,44,43,27,25,3,7,9,12,19,24,2123,2185,2045,2097,41,41,17,16,3,7,1,2,16,22,227,164,203,141,3,2,10,9,0,0,8,10,3,2 -050,01,049,Alabama,DeKalb County,5,9,4875,2435,2440,2325,2303,39,42,22,31,7,12,7,8,35,44,2291,2331,2203,2215,35,39,13,25,6,11,1,0,33,41,144,109,122,88,4,3,9,6,1,1,6,8,2,3 -050,01,049,Alabama,DeKalb County,5,10,4781,2407,2374,2312,2242,32,48,28,35,2,8,6,1,27,40,2322,2306,2237,2180,32,46,25,33,2,8,0,0,26,39,85,68,75,62,0,2,3,2,0,0,6,1,1,1 -050,01,049,Alabama,DeKalb County,5,11,4231,2037,2194,1942,2066,29,47,29,34,4,11,0,0,33,36,1989,2157,1900,2034,28,46,25,32,4,11,0,0,32,34,48,37,42,32,1,1,4,2,0,0,0,0,1,2 -050,01,049,Alabama,DeKalb County,5,12,3929,1906,2023,1847,1942,21,24,16,14,3,5,2,3,17,35,1873,1985,1816,1907,21,24,16,14,3,4,0,1,17,35,33,38,31,35,0,0,0,0,0,1,2,2,0,0 -050,01,049,Alabama,DeKalb County,5,13,3069,1488,1581,1441,1521,24,20,9,13,3,3,0,0,11,24,1475,1567,1429,1508,24,20,8,12,3,3,0,0,11,24,13,14,12,13,0,0,1,1,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,5,14,2839,1279,1560,1232,1511,23,32,7,5,1,1,0,1,16,10,1256,1549,1209,1501,23,32,7,5,1,1,0,0,16,10,23,11,23,10,0,0,0,0,0,0,0,1,0,0 -050,01,049,Alabama,DeKalb County,5,15,2269,1020,1249,986,1221,13,15,7,5,3,0,0,0,11,8,1013,1244,979,1216,13,15,7,5,3,0,0,0,11,8,7,5,7,5,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,5,16,1734,703,1031,680,1005,8,11,5,2,0,1,0,0,10,12,698,1029,675,1003,8,11,5,2,0,1,0,0,10,12,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,5,17,1216,408,808,396,786,4,9,1,2,0,0,0,0,7,11,405,804,393,783,4,9,1,2,0,0,0,0,7,10,3,4,3,3,0,0,0,0,0,0,0,0,0,1 -050,01,049,Alabama,DeKalb County,5,18,1034,271,763,265,743,2,14,1,1,0,1,0,0,3,4,269,761,264,741,2,14,0,1,0,1,0,0,3,4,2,2,1,2,0,0,1,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,5,99,66530,32759,33771,31129,31999,543,633,426,437,76,106,115,96,470,500,29687,31384,28418,29924,490,591,290,321,53,83,8,5,428,460,3072,2387,2711,2075,53,42,136,116,23,23,107,91,42,40 -050,01,049,Alabama,DeKalb County,6,0,1031,508,523,477,501,8,7,3,4,1,2,5,4,14,5,372,399,354,386,5,6,2,1,0,1,0,0,11,5,136,124,123,115,3,1,1,3,1,1,5,4,3,0 -050,01,049,Alabama,DeKalb County,6,1,3843,2024,1819,1854,1671,72,52,28,31,7,10,16,15,47,40,1576,1411,1458,1314,64,48,12,10,2,5,1,0,39,34,448,408,396,357,8,4,16,21,5,5,15,15,8,6 -050,01,049,Alabama,DeKalb County,6,2,4628,2350,2278,2194,2122,46,57,47,41,7,7,12,14,44,37,2045,1968,1941,1864,36,49,27,20,2,6,0,1,39,28,305,310,253,258,10,8,20,21,5,1,12,13,5,9 -050,01,049,Alabama,DeKalb County,6,3,4999,2632,2367,2448,2208,55,54,54,43,10,7,17,10,48,45,2336,2098,2197,1976,49,47,38,32,8,4,1,0,43,39,296,269,251,232,6,7,16,11,2,3,16,10,5,6 -050,01,049,Alabama,DeKalb County,6,4,4244,2196,2048,2045,1901,34,32,47,53,6,9,16,11,48,42,1964,1813,1846,1701,29,27,36,38,4,8,3,2,46,37,232,235,199,200,5,5,11,15,2,1,13,9,2,5 -050,01,049,Alabama,DeKalb County,6,5,4214,2140,2074,1990,1949,37,32,55,48,7,8,18,13,33,24,1780,1813,1684,1723,31,27,33,34,5,4,0,1,27,24,360,261,306,226,6,5,22,14,2,4,18,12,6,0 -050,01,049,Alabama,DeKalb County,6,6,4448,2295,2153,2160,2023,42,41,35,41,9,8,20,15,29,25,1820,1855,1743,1771,38,37,10,21,4,4,1,1,24,21,475,298,417,252,4,4,25,20,5,4,19,14,5,4 -050,01,049,Alabama,DeKalb County,6,7,4816,2476,2340,2345,2203,47,40,36,35,6,11,13,12,29,39,2041,2029,1957,1931,43,35,16,19,3,8,0,0,22,36,435,311,388,272,4,5,20,16,3,3,13,12,7,3 -050,01,049,Alabama,DeKalb County,6,8,4645,2352,2293,2231,2177,43,40,31,28,5,9,14,11,28,28,2079,2116,1990,2024,40,37,20,19,4,8,2,2,23,26,273,177,241,153,3,3,11,9,1,1,12,9,5,2 -050,01,049,Alabama,DeKalb County,6,9,4900,2435,2465,2312,2308,49,50,30,41,6,10,9,10,29,46,2276,2339,2178,2208,43,45,21,34,6,9,1,0,27,43,159,126,134,100,6,5,9,7,0,1,8,10,2,3 -050,01,049,Alabama,DeKalb County,6,10,4883,2440,2443,2332,2298,35,48,33,39,1,11,8,2,31,45,2353,2355,2260,2219,34,46,28,36,1,10,0,0,30,44,87,88,72,79,1,2,5,3,0,1,8,2,1,1 -050,01,049,Alabama,DeKalb County,6,11,4196,2039,2157,1946,2030,23,37,27,35,6,13,1,0,36,42,1984,2121,1901,1999,22,36,22,33,6,13,0,0,33,40,55,36,45,31,1,1,5,2,0,0,1,0,3,2 -050,01,049,Alabama,DeKalb County,6,12,4063,1972,2091,1896,2013,24,28,23,16,3,4,2,3,24,27,1930,2050,1856,1974,24,28,23,16,3,4,0,1,24,27,42,41,40,39,0,0,0,0,0,0,2,2,0,0 -050,01,049,Alabama,DeKalb County,6,13,3219,1595,1624,1539,1561,23,16,13,17,3,3,0,0,17,27,1578,1612,1524,1550,23,16,11,16,3,3,0,0,17,27,17,12,15,11,0,0,2,1,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,6,14,2862,1297,1565,1251,1516,22,28,7,6,1,1,0,1,16,13,1279,1553,1234,1505,22,28,6,6,1,1,0,0,16,13,18,12,17,11,0,0,1,0,0,0,0,1,0,0 -050,01,049,Alabama,DeKalb County,6,15,2316,1044,1272,1009,1242,15,18,6,5,3,0,0,0,11,7,1026,1265,991,1235,15,18,6,5,3,0,0,0,11,7,18,7,18,7,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,6,16,1713,726,987,705,955,6,14,5,3,0,1,0,0,10,14,719,985,698,953,6,14,5,3,0,1,0,0,10,14,7,2,7,2,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,6,17,1227,406,821,397,802,3,9,1,1,0,0,0,0,5,9,403,815,394,797,3,9,1,1,0,0,0,0,5,8,3,6,3,5,0,0,0,0,0,0,0,0,0,1 -050,01,049,Alabama,DeKalb County,6,18,1013,268,745,262,725,2,13,1,2,0,1,0,0,3,4,266,743,261,723,2,13,0,2,0,1,0,0,3,4,2,2,1,2,0,0,1,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,6,99,67260,33195,34065,31393,32205,586,616,482,489,81,115,151,121,502,519,29827,31340,28467,29853,529,566,317,346,55,90,9,8,450,477,3368,2725,2926,2352,57,50,165,143,26,25,142,113,52,42 -050,01,049,Alabama,DeKalb County,7,0,1041,514,527,481,496,7,13,5,4,1,1,6,5,14,8,374,375,358,361,3,6,2,1,0,0,0,0,11,7,140,152,123,135,4,7,3,3,1,1,6,5,3,1 -050,01,049,Alabama,DeKalb County,7,1,3911,2024,1887,1865,1744,60,47,29,30,4,13,18,18,48,35,1542,1379,1435,1303,52,34,14,8,1,6,1,1,39,27,482,508,430,441,8,13,15,22,3,7,17,17,9,8 -050,01,049,Alabama,DeKalb County,7,2,4709,2395,2314,2222,2130,43,59,51,50,9,7,17,20,53,48,2032,1957,1919,1839,32,48,28,26,3,4,1,3,49,37,363,357,303,291,11,11,23,24,6,3,16,17,4,11 -050,01,049,Alabama,DeKalb County,7,3,4926,2576,2350,2384,2173,51,60,58,44,11,6,21,16,51,51,2251,2043,2112,1913,45,53,40,32,8,3,2,0,44,42,325,307,272,260,6,7,18,12,3,3,19,16,7,9 -050,01,049,Alabama,DeKalb County,7,4,4396,2290,2106,2119,1944,45,35,49,60,5,8,18,15,54,44,2019,1856,1887,1737,39,30,37,41,3,7,3,2,50,39,271,250,232,207,6,5,12,19,2,1,15,13,4,5 -050,01,049,Alabama,DeKalb County,7,5,4037,2063,1974,1920,1826,39,33,45,57,8,4,22,13,29,41,1674,1724,1589,1616,33,28,22,40,4,3,1,0,25,37,389,250,331,210,6,5,23,17,4,1,21,13,4,4 -050,01,049,Alabama,DeKalb County,7,6,4491,2254,2237,2107,2091,35,47,49,40,6,12,24,19,33,28,1813,1903,1734,1816,30,42,20,15,2,6,2,2,25,22,441,334,373,275,5,5,29,25,4,6,22,17,8,6 -050,01,049,Alabama,DeKalb County,7,7,4702,2416,2286,2269,2133,52,36,39,45,9,11,17,14,30,47,1968,1932,1876,1829,49,31,16,25,4,8,1,0,22,39,448,354,393,304,3,5,23,20,5,3,16,14,8,8 -050,01,049,Alabama,DeKalb County,7,8,4705,2430,2275,2311,2144,41,43,31,30,5,8,13,16,29,34,2091,2078,2010,1983,38,37,17,18,4,7,1,3,21,30,339,197,301,161,3,6,14,12,1,1,12,13,8,4 -050,01,049,Alabama,DeKalb County,7,9,4886,2432,2454,2289,2301,51,46,42,38,6,8,6,12,38,49,2257,2295,2144,2174,45,40,31,31,4,6,0,0,33,44,175,159,145,127,6,6,11,7,2,2,6,12,5,5 -050,01,049,Alabama,DeKalb County,7,10,4861,2408,2453,2304,2309,34,43,24,38,3,10,11,3,32,50,2301,2354,2223,2224,32,40,17,33,2,10,0,0,27,47,107,99,81,85,2,3,7,5,1,0,11,3,5,3 -050,01,049,Alabama,DeKalb County,7,11,4265,2098,2167,1991,2048,35,43,32,29,6,10,3,1,31,36,2031,2128,1933,2015,33,41,28,27,6,10,1,0,30,35,67,39,58,33,2,2,4,2,0,0,2,1,1,1 -050,01,049,Alabama,DeKalb County,7,12,4292,2089,2203,2008,2110,26,31,17,17,2,7,3,4,33,34,2046,2155,1970,2067,25,31,15,17,2,6,1,0,33,34,43,48,38,43,1,0,2,0,0,1,2,4,0,0 -050,01,049,Alabama,DeKalb County,7,13,3322,1609,1713,1554,1645,19,23,17,15,4,2,0,0,15,28,1593,1697,1540,1629,19,23,15,15,4,2,0,0,15,28,16,16,14,16,0,0,2,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,7,14,2886,1320,1566,1276,1512,17,28,7,6,1,2,0,2,19,16,1301,1552,1258,1500,17,28,6,6,1,2,0,0,19,16,19,14,18,12,0,0,1,0,0,0,0,2,0,0 -050,01,049,Alabama,DeKalb County,7,15,2372,1082,1290,1049,1262,13,18,5,2,3,1,0,0,12,7,1065,1281,1032,1253,13,18,5,2,3,1,0,0,12,7,17,9,17,9,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,7,16,1748,751,997,726,969,9,13,6,3,0,2,0,0,10,10,744,995,719,968,9,13,6,2,0,2,0,0,10,10,7,2,7,1,0,0,0,1,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,7,17,1224,445,779,431,767,6,4,1,2,0,1,0,0,7,5,442,774,428,762,6,4,1,2,0,1,0,0,7,5,3,5,3,5,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,7,18,1020,259,761,252,740,1,13,1,2,0,1,0,0,5,5,257,758,251,737,1,13,0,2,0,1,0,0,5,5,2,3,1,3,0,0,1,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,7,99,67794,33455,34339,31558,32344,584,635,508,512,83,114,179,158,543,576,29801,31236,28418,29726,521,560,320,343,51,85,14,11,477,511,3654,3103,3140,2618,63,75,188,169,32,29,165,147,66,65 -050,01,049,Alabama,DeKalb County,8,0,1019,511,508,476,481,9,9,3,3,1,1,7,7,15,7,368,364,350,354,4,3,2,1,0,0,0,0,12,6,143,144,126,127,5,6,1,2,1,1,7,7,3,1 -050,01,049,Alabama,DeKalb County,8,1,4032,2076,1956,1916,1782,48,54,38,36,5,13,22,23,47,48,1550,1401,1458,1311,41,36,15,8,1,7,1,1,34,38,526,555,458,471,7,18,23,28,4,6,21,22,13,10 -050,01,049,Alabama,DeKalb County,8,2,4737,2416,2321,2224,2121,47,59,59,56,8,6,19,21,59,58,1987,1903,1860,1777,37,49,30,28,4,3,2,3,54,43,429,418,364,344,10,10,29,28,4,3,17,18,5,15 -050,01,049,Alabama,DeKalb County,8,3,4958,2575,2383,2374,2195,53,55,63,52,10,8,23,18,52,55,2202,2030,2064,1898,43,46,42,38,8,3,2,0,43,45,373,353,310,297,10,9,21,14,2,5,21,18,9,10 -050,01,049,Alabama,DeKalb County,8,4,4595,2341,2254,2155,2070,48,41,54,63,6,11,21,15,57,54,2044,1962,1902,1829,41,35,42,41,4,9,3,0,52,48,297,292,253,241,7,6,12,22,2,2,18,15,5,6 -050,01,049,Alabama,DeKalb County,8,5,3732,1886,1846,1737,1685,39,31,46,69,8,5,25,16,31,40,1528,1561,1443,1449,33,25,20,50,4,3,1,1,27,33,358,285,294,236,6,6,26,19,4,2,24,15,4,7 -050,01,049,Alabama,DeKalb County,8,6,4739,2414,2325,2244,2182,45,39,48,46,6,11,26,21,45,26,1873,1977,1782,1897,39,34,15,19,2,6,1,2,34,19,541,348,462,285,6,5,33,27,4,5,25,19,11,7 -050,01,049,Alabama,DeKalb County,8,7,4516,2319,2197,2174,2034,41,44,44,46,9,9,17,17,34,47,1860,1833,1774,1726,37,37,19,23,4,7,0,0,26,40,459,364,400,308,4,7,25,23,5,2,17,17,8,7 -050,01,049,Alabama,DeKalb County,8,8,4843,2497,2346,2354,2209,39,43,40,36,8,10,16,15,40,33,2124,2106,2025,2008,34,37,24,23,7,8,1,1,33,29,373,240,329,201,5,6,16,13,1,2,15,14,7,4 -050,01,049,Alabama,DeKalb County,8,9,4821,2354,2467,2221,2314,52,40,37,46,6,5,10,13,28,49,2167,2295,2070,2177,43,34,24,36,4,3,0,0,26,45,187,172,151,137,9,6,13,10,2,2,10,13,2,4 -050,01,049,Alabama,DeKalb County,8,10,4892,2430,2462,2312,2314,35,41,32,44,2,10,13,4,36,49,2308,2348,2219,2216,31,38,23,38,2,9,1,0,32,47,122,114,93,98,4,3,9,6,0,1,12,4,4,2 -050,01,049,Alabama,DeKalb County,8,11,4425,2210,2215,2094,2089,40,47,32,31,9,13,5,1,30,34,2124,2173,2022,2057,38,43,26,28,9,13,2,0,27,32,86,42,72,32,2,4,6,3,0,0,3,1,3,2 -050,01,049,Alabama,DeKalb County,8,12,4339,2136,2203,2054,2107,23,34,19,23,2,6,3,3,35,30,2091,2157,2014,2063,22,34,17,23,2,6,1,1,35,30,45,46,40,44,1,0,2,0,0,0,2,2,0,0 -050,01,049,Alabama,DeKalb County,8,13,3483,1659,1824,1606,1758,19,17,19,18,4,4,0,0,11,27,1639,1798,1589,1733,19,17,16,17,4,4,0,0,11,27,20,26,17,25,0,0,3,1,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,8,14,2968,1368,1600,1321,1537,22,29,11,7,1,2,0,3,13,22,1349,1586,1303,1526,22,29,10,7,1,2,0,0,13,22,19,14,18,11,0,0,1,0,0,0,0,3,0,0 -050,01,049,Alabama,DeKalb County,8,15,2390,1094,1296,1052,1266,17,18,8,5,2,1,0,1,15,5,1079,1284,1037,1255,17,18,8,5,2,1,0,0,15,5,15,12,15,11,0,0,0,0,0,0,0,1,0,0 -050,01,049,Alabama,DeKalb County,8,16,1803,781,1022,757,992,8,13,5,4,1,2,0,0,10,11,772,1019,750,990,7,13,4,3,1,2,0,0,10,11,9,3,7,2,1,0,1,1,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,8,17,1208,433,775,421,766,5,3,3,0,0,1,0,0,4,5,430,771,418,762,5,3,3,0,0,1,0,0,4,5,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,8,18,995,276,719,268,701,1,9,1,2,0,2,0,0,6,5,274,716,267,698,1,9,0,2,0,2,0,0,6,5,2,3,1,3,0,0,1,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,8,99,68495,33776,34719,31760,32603,591,626,562,587,88,120,207,178,568,605,29769,31284,28347,29726,514,540,340,390,59,89,15,9,494,530,4007,3435,3413,2877,77,86,222,197,29,31,192,169,74,75 -050,01,049,Alabama,DeKalb County,9,0,1104,538,566,502,537,7,7,3,6,2,1,8,7,16,8,361,402,346,390,2,5,0,1,0,0,0,0,13,6,177,164,156,147,5,2,3,5,2,1,8,7,3,2 -050,01,049,Alabama,DeKalb County,9,1,4042,2137,1905,1963,1736,56,50,39,39,5,9,26,26,48,45,1561,1371,1468,1294,42,29,15,8,1,2,1,1,34,37,576,534,495,442,14,21,24,31,4,7,25,25,14,8 -050,01,049,Alabama,DeKalb County,9,2,4914,2516,2398,2297,2184,52,64,64,57,9,7,22,25,72,61,2053,1892,1916,1766,37,53,32,25,2,3,1,3,65,42,463,506,381,418,15,11,32,32,7,4,21,22,7,19 -050,01,049,Alabama,DeKalb County,9,3,4983,2579,2404,2371,2201,51,58,64,55,12,9,27,20,54,61,2177,2026,2038,1885,42,48,40,39,9,3,3,1,45,50,402,378,333,316,9,10,24,16,3,6,24,19,9,11 -050,01,049,Alabama,DeKalb County,9,4,4777,2421,2356,2224,2164,55,46,56,68,7,11,23,17,56,50,2089,2020,1943,1889,46,37,42,43,4,10,3,0,51,41,332,336,281,275,9,9,14,25,3,1,20,17,5,9 -050,01,049,Alabama,DeKalb County,9,5,3742,1887,1855,1726,1682,38,35,52,64,9,5,30,18,32,51,1537,1549,1449,1433,32,28,22,41,5,3,1,0,28,44,350,306,277,249,6,7,30,23,4,2,29,18,4,7 -050,01,049,Alabama,DeKalb County,9,6,4669,2323,2346,2139,2172,40,37,60,56,7,11,30,25,47,45,1802,1972,1708,1874,33,30,23,24,2,6,1,1,35,37,521,374,431,298,7,7,37,32,5,5,29,24,12,8 -050,01,049,Alabama,DeKalb County,9,7,4554,2318,2236,2157,2061,48,48,50,51,11,11,22,19,30,46,1845,1823,1751,1708,43,40,21,25,4,9,2,0,24,41,473,413,406,353,5,8,29,26,7,2,20,19,6,5 -050,01,049,Alabama,DeKalb County,9,8,4867,2478,2389,2329,2232,39,48,46,32,7,11,19,22,38,44,2092,2125,1995,2019,32,42,27,15,6,8,1,3,31,38,386,264,334,213,7,6,19,17,1,3,18,19,7,6 -050,01,049,Alabama,DeKalb County,9,9,4776,2351,2425,2219,2266,56,42,29,47,6,10,8,16,33,44,2140,2241,2043,2123,47,34,16,38,4,6,0,0,30,40,211,184,176,143,9,8,13,9,2,4,8,16,3,4 -050,01,049,Alabama,DeKalb County,9,10,4912,2450,2462,2334,2321,31,42,25,30,2,10,14,4,44,55,2312,2338,2226,2212,27,39,17,25,2,9,0,0,40,53,138,124,108,109,4,3,8,5,0,1,14,4,4,2 -050,01,049,Alabama,DeKalb County,9,11,4568,2280,2288,2154,2149,47,54,35,35,8,10,6,1,30,39,2184,2239,2072,2112,45,50,30,30,8,10,3,0,26,37,96,49,82,37,2,4,5,5,0,0,3,1,4,2 -050,01,049,Alabama,DeKalb County,9,12,4286,2078,2208,2006,2111,24,33,16,29,2,6,3,4,27,25,2041,2157,1974,2062,23,33,14,29,2,6,1,2,27,25,37,51,32,49,1,0,2,0,0,0,2,2,0,0 -050,01,049,Alabama,DeKalb County,9,13,3732,1826,1906,1756,1836,20,16,29,20,3,5,0,0,18,29,1802,1872,1735,1805,20,16,26,17,3,5,0,0,18,29,24,34,21,31,0,0,3,3,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,9,14,2997,1406,1591,1352,1531,24,27,9,7,1,2,0,2,20,22,1386,1579,1333,1521,24,27,8,7,1,2,0,0,20,22,20,12,19,10,0,0,1,0,0,0,0,2,0,0 -050,01,049,Alabama,DeKalb County,9,15,2425,1086,1339,1043,1313,13,17,9,2,2,1,0,0,19,6,1067,1328,1024,1302,13,17,9,2,2,1,0,0,19,6,19,11,19,11,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,9,16,1835,789,1046,766,1010,8,19,4,4,1,2,0,0,10,11,776,1042,755,1007,7,19,3,3,1,2,0,0,10,11,13,4,11,3,1,0,1,1,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,9,17,1285,472,813,459,796,7,10,2,0,0,1,0,0,4,6,470,808,457,791,7,10,2,0,0,1,0,0,4,6,2,5,2,5,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,9,18,982,267,715,258,697,1,8,2,3,0,2,0,0,6,5,264,712,257,694,1,8,0,3,0,2,0,0,6,5,3,3,1,3,0,0,2,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,9,99,69450,34202,35248,32055,32999,617,661,594,605,94,124,238,206,604,653,29959,31496,28490,29887,523,565,347,375,56,88,17,11,526,570,4243,3752,3565,3112,94,96,247,230,38,36,221,195,78,83 -050,01,049,Alabama,DeKalb County,10,0,1065,506,559,465,529,7,7,5,7,1,1,9,7,19,8,336,379,318,366,2,6,1,1,0,0,0,0,15,6,170,180,147,163,5,1,4,6,1,1,9,7,4,2 -050,01,049,Alabama,DeKalb County,10,1,4143,2151,1992,1979,1793,38,55,46,48,4,9,32,31,52,56,1526,1384,1453,1289,21,35,13,9,1,3,2,2,36,46,625,608,526,504,17,20,33,39,3,6,30,29,16,10 -050,01,049,Alabama,DeKalb County,10,2,5035,2586,2449,2350,2206,53,68,74,72,10,9,24,30,75,64,2047,1903,1900,1766,36,50,36,36,4,3,2,4,69,44,539,546,450,440,17,18,38,36,6,6,22,26,6,20 -050,01,049,Alabama,DeKalb County,10,3,4962,2571,2391,2341,2180,54,56,68,58,14,11,29,23,65,63,2144,1968,1993,1834,44,44,41,38,10,2,2,1,54,49,427,423,348,346,10,12,27,20,4,9,27,22,11,14 -050,01,049,Alabama,DeKalb County,10,4,4919,2488,2431,2281,2216,58,50,56,77,8,13,25,20,60,55,2115,2060,1966,1915,47,40,42,48,4,11,3,0,53,46,373,371,315,301,11,10,14,29,4,2,22,20,7,9 -050,01,049,Alabama,DeKalb County,10,5,3781,1958,1823,1762,1656,43,34,67,63,9,6,34,20,43,44,1568,1491,1456,1389,37,25,34,37,3,3,1,0,37,37,390,332,306,267,6,9,33,26,6,3,33,20,6,7 -050,01,049,Alabama,DeKalb County,10,6,4637,2305,2332,2133,2140,36,34,55,61,7,13,34,28,40,56,1737,1922,1665,1815,29,25,14,25,2,7,1,3,26,47,568,410,468,325,7,9,41,36,5,6,33,25,14,9 -050,01,049,Alabama,DeKalb County,10,7,4578,2322,2256,2155,2057,47,54,55,62,9,10,23,22,33,51,1829,1823,1741,1693,40,44,22,34,4,8,1,0,21,44,493,433,414,364,7,10,33,28,5,2,22,22,12,7 -050,01,049,Alabama,DeKalb County,10,8,4810,2439,2371,2282,2213,47,48,46,35,4,9,22,23,38,43,2053,2073,1953,1972,40,40,25,17,4,6,2,2,29,36,386,298,329,241,7,8,21,18,0,3,20,21,9,7 -050,01,049,Alabama,DeKalb County,10,9,4840,2407,2433,2261,2250,48,48,39,53,6,13,13,20,40,49,2178,2212,2078,2083,38,37,23,41,5,9,0,0,34,42,229,221,183,167,10,11,16,12,1,4,13,20,6,7 -050,01,049,Alabama,DeKalb County,10,10,4804,2377,2427,2270,2289,36,38,22,35,3,12,17,5,29,48,2214,2308,2142,2185,31,36,14,29,2,12,1,0,24,46,163,119,128,104,5,2,8,6,1,0,16,5,5,2 -050,01,049,Alabama,DeKalb County,10,11,4820,2389,2431,2236,2291,52,53,38,32,7,9,7,1,49,45,2290,2377,2154,2246,50,49,31,30,7,9,3,0,45,43,99,54,82,45,2,4,7,2,0,0,4,1,4,2 -050,01,049,Alabama,DeKalb County,10,12,4312,2110,2202,2021,2094,27,45,21,25,1,7,3,4,37,27,2075,2141,1991,2036,26,45,19,25,1,7,1,1,37,27,35,61,30,58,1,0,2,0,0,0,2,3,0,0 -050,01,049,Alabama,DeKalb County,10,13,3910,1898,2012,1818,1944,21,20,34,12,4,3,0,0,21,33,1873,1985,1796,1918,21,20,31,11,4,3,0,0,21,33,25,27,22,26,0,0,3,1,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,10,14,3036,1480,1556,1420,1500,27,27,12,6,1,2,0,2,20,19,1456,1541,1397,1487,27,27,11,6,1,2,0,0,20,19,24,15,23,13,0,0,1,0,0,0,0,2,0,0 -050,01,049,Alabama,DeKalb County,10,15,2487,1088,1399,1047,1368,12,19,8,3,2,1,0,0,19,8,1070,1388,1029,1357,12,19,8,3,2,1,0,0,19,8,18,11,18,11,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,10,16,1853,819,1034,796,1006,11,12,2,4,1,2,0,0,9,10,808,1030,786,1003,10,12,2,3,1,2,0,0,9,10,11,4,10,3,1,0,0,1,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,10,17,1229,462,767,445,753,8,4,3,0,0,1,0,0,6,9,459,762,442,748,8,4,3,0,0,1,0,0,6,9,3,5,3,5,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,10,18,1007,270,737,261,712,1,13,2,3,0,2,0,0,6,7,266,734,259,709,1,13,0,3,0,2,0,0,6,7,4,3,2,3,0,0,2,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,10,99,70228,34626,35602,32323,33197,626,685,653,656,91,133,272,236,661,695,30044,31481,28519,29811,520,571,370,396,55,91,19,13,561,599,4582,4121,3804,3386,106,114,283,260,36,42,253,223,100,96 -050,01,049,Alabama,DeKalb County,11,0,1007,485,522,436,486,9,8,9,13,2,1,10,7,19,7,334,364,315,353,3,5,2,1,0,0,0,0,14,5,151,158,121,133,6,3,7,12,2,1,10,7,5,2 -050,01,049,Alabama,DeKalb County,11,1,4106,2089,2017,1900,1822,36,45,55,55,6,10,35,32,57,53,1442,1385,1364,1296,21,33,15,10,1,2,2,1,39,43,647,632,536,526,15,12,40,45,5,8,33,31,18,10 -050,01,049,Alabama,DeKalb County,11,2,5155,2635,2520,2390,2252,48,62,80,82,10,11,27,34,80,79,2028,1889,1881,1737,31,45,37,42,3,5,2,5,74,55,607,631,509,515,17,17,43,40,7,6,25,29,6,24 -050,01,049,Alabama,DeKalb County,11,3,5002,2557,2445,2312,2230,58,57,72,67,18,7,32,21,65,63,2080,1967,1925,1826,45,42,43,45,12,2,3,0,52,52,477,478,387,404,13,15,29,22,6,5,29,21,13,11 -050,01,049,Alabama,DeKalb County,11,4,5029,2564,2465,2352,2246,57,44,55,83,8,14,27,22,65,56,2190,2084,2043,1943,46,34,39,51,4,11,1,0,57,45,374,381,309,303,11,10,16,32,4,3,26,22,8,11 -050,01,049,Alabama,DeKalb County,11,5,3864,2013,1851,1816,1669,45,38,50,65,12,7,39,24,51,48,1569,1487,1461,1378,39,29,17,35,6,3,1,0,45,42,444,364,355,291,6,9,33,30,6,4,38,24,6,6 -050,01,049,Alabama,DeKalb County,11,6,4497,2263,2234,2053,2046,46,29,71,62,8,12,39,30,46,55,1728,1819,1632,1726,36,19,26,22,2,7,1,1,31,44,535,415,421,320,10,10,45,40,6,5,38,29,15,11 -050,01,049,Alabama,DeKalb County,11,7,4656,2371,2285,2185,2071,47,55,71,69,11,12,28,25,29,53,1818,1854,1717,1721,42,44,34,37,4,8,3,0,18,44,553,431,468,350,5,11,37,32,7,4,25,25,11,9 -050,01,049,Alabama,DeKalb County,11,8,4909,2495,2414,2312,2246,51,47,57,47,7,10,26,27,42,37,2059,2081,1944,1977,43,39,30,27,6,7,3,2,33,29,436,333,368,269,8,8,27,20,1,3,23,25,9,8 -050,01,049,Alabama,DeKalb County,11,9,4786,2415,2371,2246,2194,45,45,60,50,7,7,15,21,42,54,2161,2132,2046,2012,33,34,42,36,5,4,0,0,35,46,254,239,200,182,12,11,18,14,2,3,15,21,7,8 -050,01,049,Alabama,DeKalb County,11,10,4857,2415,2442,2297,2297,41,43,27,39,4,11,16,5,30,47,2235,2312,2156,2184,36,41,15,32,3,10,1,0,24,45,180,130,141,113,5,2,12,7,1,1,15,5,6,2 -050,01,049,Alabama,DeKalb County,11,11,4827,2409,2418,2256,2284,48,44,38,30,12,7,8,1,47,52,2301,2353,2168,2231,45,41,30,25,12,7,4,0,42,49,108,65,88,53,3,3,8,5,0,0,4,1,5,3 -050,01,049,Alabama,DeKalb County,11,12,4290,2129,2161,2043,2058,26,35,19,27,2,6,3,5,36,30,2076,2104,1995,2005,25,35,17,27,2,6,1,1,36,30,53,57,48,53,1,0,2,0,0,0,2,4,0,0 -050,01,049,Alabama,DeKalb County,11,13,4095,1966,2129,1877,2046,19,25,40,16,3,4,0,0,27,38,1928,2104,1843,2023,19,25,36,14,3,4,0,0,27,38,38,25,34,23,0,0,4,2,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,11,14,3168,1572,1596,1509,1533,25,25,12,10,1,2,0,3,25,23,1550,1578,1488,1517,25,25,11,10,1,2,0,1,25,23,22,18,21,16,0,0,1,0,0,0,0,2,0,0 -050,01,049,Alabama,DeKalb County,11,15,2520,1103,1417,1057,1384,18,17,8,4,2,1,0,1,18,10,1086,1401,1040,1369,18,17,8,4,2,1,0,0,18,10,17,16,17,15,0,0,0,0,0,0,0,1,0,0 -050,01,049,Alabama,DeKalb County,11,16,1857,809,1048,786,1011,9,20,2,4,1,2,0,0,11,11,798,1044,776,1008,8,20,2,3,1,2,0,0,11,11,11,4,10,3,1,0,0,1,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,11,17,1197,483,714,464,702,10,4,3,0,0,1,0,0,6,7,480,710,461,698,10,4,3,0,0,1,0,0,6,7,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,11,18,1042,280,762,271,740,1,8,2,4,0,3,0,0,6,7,276,758,269,736,1,8,0,4,0,3,0,0,6,7,4,4,2,4,0,0,2,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,11,99,70864,35053,35811,32562,33317,639,651,731,727,114,128,305,258,702,730,30139,31426,28524,29740,526,540,407,425,67,85,22,11,593,625,4914,4385,4038,3577,113,111,324,302,47,43,283,247,109,105 -050,01,049,Alabama,DeKalb County,12,0,990,459,531,406,489,10,9,10,14,2,2,11,8,20,9,314,374,294,360,3,6,2,1,0,0,0,0,15,7,145,157,112,129,7,3,8,13,2,2,11,8,5,2 -050,01,049,Alabama,DeKalb County,12,1,4056,2096,1960,1887,1746,34,43,69,67,7,10,36,35,63,59,1433,1330,1345,1236,22,29,18,12,1,3,2,2,45,48,663,630,542,510,12,14,51,55,6,7,34,33,18,11 -050,01,049,Alabama,DeKalb County,12,2,5199,2636,2563,2390,2290,45,59,84,83,12,13,31,41,74,77,1988,1876,1850,1735,28,40,38,38,3,5,2,4,67,54,648,687,540,555,17,19,46,45,9,8,29,37,7,23 -050,01,049,Alabama,DeKalb County,12,3,5043,2576,2467,2316,2232,57,57,81,72,16,10,35,28,71,68,2072,1951,1908,1802,42,42,49,50,12,2,3,1,58,54,504,516,408,430,15,15,32,22,4,8,32,27,13,14 -050,01,049,Alabama,DeKalb County,12,4,5021,2558,2463,2338,2240,55,43,61,82,9,15,32,24,63,59,2162,2065,2015,1925,43,33,43,47,4,12,2,0,55,48,396,398,323,315,12,10,18,35,5,3,30,24,8,11 -050,01,049,Alabama,DeKalb County,12,5,3883,2028,1855,1828,1678,47,40,59,63,11,8,41,25,42,41,1573,1479,1467,1381,41,30,23,31,5,3,1,0,36,34,455,376,361,297,6,10,36,32,6,5,40,25,6,7 -050,01,049,Alabama,DeKalb County,12,6,4411,2239,2172,2025,1982,43,25,68,74,8,14,41,32,54,45,1684,1729,1590,1639,33,16,20,30,2,8,1,2,38,34,555,443,435,343,10,9,48,44,6,6,40,30,16,11 -050,01,049,Alabama,DeKalb County,12,7,4632,2292,2340,2113,2127,37,51,68,68,12,12,29,28,33,54,1752,1881,1667,1752,30,39,29,36,4,9,1,0,21,45,540,459,446,375,7,12,39,32,8,3,28,28,12,9 -050,01,049,Alabama,DeKalb County,12,8,4804,2440,2364,2250,2183,56,42,56,52,9,10,27,31,42,46,2025,2015,1906,1901,47,34,30,31,8,7,3,4,31,38,415,349,344,282,9,8,26,21,1,3,24,27,11,8 -050,01,049,Alabama,DeKalb County,12,9,4854,2472,2382,2297,2184,49,49,49,57,7,11,19,22,51,59,2173,2139,2060,2000,36,38,28,42,5,8,0,0,44,51,299,243,237,184,13,11,21,15,2,3,19,22,7,8 -050,01,049,Alabama,DeKalb County,12,10,4860,2404,2456,2274,2298,40,42,33,48,4,13,20,6,33,49,2211,2316,2125,2178,35,40,20,39,3,12,1,0,27,47,193,140,149,120,5,2,13,9,1,1,19,6,6,2 -050,01,049,Alabama,DeKalb County,12,11,4854,2412,2442,2253,2297,49,44,39,35,10,10,8,1,53,55,2299,2376,2160,2245,46,40,31,29,10,10,3,0,49,52,113,66,93,52,3,4,8,6,0,0,5,1,4,3 -050,01,049,Alabama,DeKalb County,12,12,4363,2162,2201,2072,2079,29,41,23,28,2,7,3,5,33,41,2104,2137,2019,2019,28,41,21,28,2,7,1,1,33,41,58,64,53,60,1,0,2,0,0,0,2,4,0,0 -050,01,049,Alabama,DeKalb County,12,13,4264,2039,2225,1948,2129,27,28,36,25,4,6,0,0,24,37,2002,2193,1915,2100,27,28,32,22,4,6,0,0,24,37,37,32,33,29,0,0,4,3,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,12,14,3236,1579,1657,1519,1591,21,23,13,12,1,2,0,4,25,25,1556,1636,1497,1573,21,23,12,12,1,2,0,1,25,25,23,21,22,18,0,0,1,0,0,0,0,3,0,0 -050,01,049,Alabama,DeKalb County,12,15,2479,1098,1381,1054,1351,14,15,9,3,2,1,0,1,19,10,1083,1367,1039,1338,14,15,9,3,2,1,0,0,19,10,15,14,15,13,0,0,0,0,0,0,0,1,0,0 -050,01,049,Alabama,DeKalb County,12,16,1877,827,1050,803,1018,9,14,3,4,1,2,0,0,11,12,813,1046,791,1015,8,14,2,3,1,2,0,0,11,12,14,4,12,3,1,0,1,1,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,12,17,1241,491,750,472,735,9,5,3,0,0,1,0,0,7,9,487,744,468,729,9,5,3,0,0,1,0,0,7,9,4,6,4,6,0,0,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,12,18,1042,305,737,296,718,1,8,3,3,0,2,0,0,5,6,300,734,294,715,1,8,0,3,0,2,0,0,5,6,5,3,2,3,0,0,3,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,12,99,71109,35113,35996,32541,33367,632,638,767,790,117,149,333,291,723,761,30031,31388,28410,29643,514,521,410,457,67,100,20,15,610,652,5082,4608,4131,3724,118,117,357,333,50,49,313,276,113,109 -050,01,049,Alabama,DeKalb County,13,0,996,458,538,405,491,10,9,10,14,2,2,10,9,21,13,315,379,293,361,3,7,2,1,1,0,0,0,16,10,143,159,112,130,7,2,8,13,1,2,10,9,5,3 -050,01,049,Alabama,DeKalb County,13,1,4041,2083,1958,1878,1739,34,42,69,64,4,11,32,34,66,68,1431,1331,1337,1229,24,30,18,10,1,5,1,2,50,55,652,627,541,510,10,12,51,54,3,6,31,32,16,13 -050,01,049,Alabama,DeKalb County,13,2,5193,2630,2563,2389,2291,45,60,79,82,10,13,28,40,79,77,1986,1876,1847,1734,29,40,36,37,3,6,0,4,71,55,644,687,542,557,16,20,43,45,7,7,28,36,8,22 -050,01,049,Alabama,DeKalb County,13,3,5027,2569,2458,2313,2232,57,56,79,67,14,9,34,27,72,67,2068,1948,1903,1799,43,42,48,48,10,2,2,2,62,55,501,510,410,433,14,14,31,19,4,7,32,25,10,12 -050,01,049,Alabama,DeKalb County,13,4,4986,2541,2445,2327,2223,53,41,57,80,7,15,30,26,67,60,2148,2050,2002,1909,40,30,41,47,3,11,2,2,60,51,393,395,325,314,13,11,16,33,4,4,28,24,7,9 -050,01,049,Alabama,DeKalb County,13,5,3887,2028,1859,1833,1683,47,40,55,58,10,8,39,28,44,42,1576,1489,1469,1383,41,31,22,30,6,4,1,5,37,36,452,370,364,300,6,9,33,28,4,4,38,23,7,6 -050,01,049,Alabama,DeKalb County,13,6,4416,2240,2176,2030,1984,45,26,65,73,9,14,41,31,50,48,1694,1733,1596,1640,35,17,19,31,3,7,2,2,39,36,546,443,434,344,10,9,46,42,6,7,39,29,11,12 -050,01,049,Alabama,DeKalb County,13,7,4651,2298,2353,2124,2144,36,48,67,64,13,13,29,30,29,54,1768,1896,1677,1767,30,39,29,35,6,10,1,1,25,44,530,457,447,377,6,9,38,29,7,3,28,29,4,10 -050,01,049,Alabama,DeKalb County,13,8,4753,2415,2338,2233,2167,57,41,52,45,10,10,27,30,36,45,2004,1998,1888,1885,47,34,28,28,8,7,4,5,29,39,411,340,345,282,10,7,24,17,2,3,23,25,7,6 -050,01,049,Alabama,DeKalb County,13,9,4833,2466,2367,2296,2180,50,49,45,51,8,12,19,20,48,55,2169,2131,2058,1994,37,36,26,40,5,11,1,1,42,49,297,236,238,186,13,13,19,11,3,1,18,19,6,6 -050,01,049,Alabama,DeKalb County,13,10,4835,2395,2440,2262,2285,39,45,28,44,5,15,22,6,39,45,2205,2301,2113,2165,34,42,18,37,4,12,4,1,32,44,190,139,149,120,5,3,10,7,1,3,18,5,7,1 -050,01,049,Alabama,DeKalb County,13,11,4881,2420,2461,2256,2304,52,49,38,36,11,13,5,1,58,58,2302,2391,2161,2249,48,43,30,30,10,13,0,0,53,56,118,70,95,55,4,6,8,6,1,0,5,1,5,2 -050,01,049,Alabama,DeKalb County,13,12,4400,2182,2218,2083,2091,31,45,22,28,3,5,3,3,40,46,2121,2153,2028,2029,30,45,19,28,3,5,1,0,40,46,61,65,55,62,1,0,3,0,0,0,2,3,0,0 -050,01,049,Alabama,DeKalb County,13,13,4318,2068,2250,1969,2147,30,30,36,25,4,7,1,2,28,39,2027,2214,1936,2116,26,28,32,22,4,7,1,2,28,39,41,36,33,31,4,2,4,3,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,13,14,3258,1589,1669,1529,1598,21,27,11,11,0,5,0,2,28,26,1565,1648,1506,1581,20,25,11,11,0,5,0,0,28,26,24,21,23,17,1,2,0,0,0,0,0,2,0,0 -050,01,049,Alabama,DeKalb County,13,15,2497,1108,1389,1057,1354,20,18,8,3,2,2,0,0,21,12,1091,1376,1044,1342,16,17,8,3,2,2,0,0,21,12,17,13,13,12,4,1,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,13,16,1875,826,1049,803,1017,8,15,2,4,3,0,0,0,10,13,814,1043,792,1014,7,12,2,4,3,0,0,0,10,13,12,6,11,3,1,3,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,13,17,1252,499,753,470,731,11,8,4,4,2,2,0,0,12,8,497,749,468,729,11,6,4,4,2,2,0,0,12,8,2,4,2,2,0,2,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,13,18,1052,309,743,299,722,2,9,3,3,0,2,0,0,5,7,304,738,297,718,2,8,0,3,0,2,0,0,5,7,5,5,2,4,0,1,3,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,13,99,71151,35124,36027,32556,33383,648,658,730,756,117,158,320,289,753,783,30085,31444,28415,29644,523,532,393,449,74,111,20,27,660,681,5039,4583,4141,3739,125,126,337,307,43,47,300,262,93,102 -050,01,051,Alabama,Elmore County,1,0,878,454,424,340,323,98,89,1,1,3,0,0,0,12,11,447,419,334,319,97,88,1,1,3,0,0,0,12,11,7,5,6,4,1,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,1,1,3492,1766,1726,1357,1281,371,386,1,9,8,8,1,0,28,42,1742,1694,1337,1255,370,383,1,8,8,7,0,0,26,41,24,32,20,26,1,3,0,1,0,1,1,0,2,1 -050,01,051,Alabama,Elmore County,1,2,4801,2465,2336,1863,1750,553,539,6,10,11,8,0,0,32,29,2416,2303,1828,1721,546,536,5,10,9,8,0,0,28,28,49,33,35,29,7,3,1,0,2,0,0,0,4,1 -050,01,051,Alabama,Elmore County,1,3,4878,2520,2358,1908,1772,568,545,13,13,6,6,1,1,24,21,2479,2318,1874,1742,565,537,11,12,6,6,0,1,23,20,41,40,34,30,3,8,2,1,0,0,1,0,1,1 -050,01,051,Alabama,Elmore County,1,4,4542,2413,2129,1746,1579,609,502,18,16,6,5,2,1,32,26,2368,2093,1708,1553,605,497,17,14,6,5,1,0,31,24,45,36,38,26,4,5,1,2,0,0,1,1,1,2 -050,01,051,Alabama,Elmore County,1,5,4119,2381,1738,1345,1287,977,420,9,4,10,6,3,2,37,19,2334,1707,1311,1258,969,418,9,4,10,6,0,2,35,19,47,31,34,29,8,2,0,0,0,0,3,0,2,0 -050,01,051,Alabama,Elmore County,1,6,4916,2566,2350,1686,1783,834,523,12,12,11,10,4,1,19,21,2527,2319,1658,1760,829,517,11,11,11,10,0,0,18,21,39,31,28,23,5,6,1,1,0,0,4,1,1,0 -050,01,051,Alabama,Elmore County,1,7,4995,2536,2459,1827,1852,673,570,10,11,7,13,0,0,19,13,2501,2425,1798,1824,667,565,10,10,7,13,0,0,19,13,35,34,29,28,6,5,0,1,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,1,8,5779,2989,2790,2249,2160,687,574,19,16,9,11,0,1,25,28,2953,2749,2218,2125,683,571,19,16,9,10,0,0,24,27,36,41,31,35,4,3,0,0,0,1,0,1,1,1 -050,01,051,Alabama,Elmore County,1,9,5430,2754,2676,2141,2082,567,529,18,23,5,21,1,0,22,21,2724,2653,2118,2066,563,525,17,21,5,20,0,0,21,21,30,23,23,16,4,4,1,2,0,1,1,0,1,0 -050,01,051,Alabama,Elmore County,1,10,4807,2419,2388,1908,1913,476,424,7,11,7,22,2,0,19,18,2395,2372,1890,1899,473,422,6,11,7,22,2,0,17,18,24,16,18,14,3,2,1,0,0,0,0,0,2,0 -050,01,051,Alabama,Elmore County,1,11,4345,2209,2136,1874,1826,300,282,11,8,6,11,1,0,17,9,2191,2120,1861,1815,296,278,10,7,6,11,1,0,17,9,18,16,13,11,4,4,1,1,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,1,12,3141,1611,1530,1395,1333,198,175,8,5,1,9,0,0,9,8,1598,1517,1384,1320,196,175,8,5,1,9,0,0,9,8,13,13,11,13,2,0,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,1,13,2662,1333,1329,1168,1156,155,154,4,4,2,7,0,1,4,7,1328,1321,1165,1150,153,152,4,4,2,7,0,1,4,7,5,8,3,6,2,2,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,1,14,2133,1026,1107,916,938,97,160,4,2,2,3,0,1,7,3,1023,1103,914,935,96,159,4,2,2,3,0,1,7,3,3,4,2,3,1,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,1,15,1724,760,964,685,833,71,121,1,1,1,2,0,0,2,7,756,961,682,830,71,121,1,1,0,2,0,0,2,7,4,3,3,3,0,0,0,0,1,0,0,0,0,0 -050,01,051,Alabama,Elmore County,1,16,1401,572,829,518,715,52,105,1,1,0,1,0,0,1,7,568,823,515,711,51,103,1,1,0,1,0,0,1,7,4,6,3,4,1,2,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,1,17,934,347,587,302,501,42,81,2,1,0,0,0,0,1,4,344,585,299,499,42,81,2,1,0,0,0,0,1,4,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,1,18,842,201,641,171,550,29,91,0,0,0,0,0,0,1,0,201,638,171,548,29,90,0,0,0,0,0,0,1,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,1,99,65819,33322,32497,25399,25634,7357,6270,145,148,95,143,15,8,311,294,32895,32120,25065,25330,7301,6218,137,139,92,140,4,5,296,288,427,377,334,304,56,52,8,9,3,3,11,3,15,6 -050,01,051,Alabama,Elmore County,2,0,890,461,429,345,327,99,90,1,1,3,0,0,0,13,11,454,424,339,323,98,89,1,1,3,0,0,0,13,11,7,5,6,4,1,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,2,1,3494,1769,1725,1358,1283,369,386,1,9,8,8,1,0,32,39,1745,1693,1338,1257,368,383,1,8,8,7,0,0,30,38,24,32,20,26,1,3,0,1,0,1,1,0,2,1 -050,01,051,Alabama,Elmore County,2,2,4791,2460,2331,1860,1750,551,536,6,10,11,8,0,0,32,27,2411,2298,1825,1721,544,533,5,10,9,8,0,0,28,26,49,33,35,29,7,3,1,0,2,0,0,0,4,1 -050,01,051,Alabama,Elmore County,2,3,4924,2542,2382,1921,1789,574,551,13,13,6,6,1,1,27,22,2501,2342,1887,1759,571,543,11,12,6,6,0,1,26,21,41,40,34,30,3,8,2,1,0,0,1,0,1,1 -050,01,051,Alabama,Elmore County,2,4,4582,2434,2148,1764,1595,608,503,18,16,6,5,2,1,36,28,2389,2112,1726,1569,604,498,17,14,6,5,1,0,35,26,45,36,38,26,4,5,1,2,0,0,1,1,1,2 -050,01,051,Alabama,Elmore County,2,5,4153,2388,1765,1357,1308,972,425,9,4,10,6,3,2,37,20,2341,1734,1323,1279,964,423,9,4,10,6,0,2,35,20,47,31,34,29,8,2,0,0,0,0,3,0,2,0 -050,01,051,Alabama,Elmore County,2,6,4888,2552,2336,1674,1773,831,521,12,12,11,10,4,1,20,19,2513,2305,1646,1750,826,515,11,11,11,10,0,0,19,19,39,31,28,23,5,6,1,1,0,0,4,1,1,0 -050,01,051,Alabama,Elmore County,2,7,5005,2537,2468,1831,1857,672,571,10,11,7,13,0,0,17,16,2502,2432,1802,1827,666,566,10,10,7,13,0,0,17,16,35,36,29,30,6,5,0,1,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,2,8,5779,2985,2794,2243,2159,688,577,19,16,9,11,0,1,26,30,2949,2753,2212,2124,684,574,19,16,9,10,0,0,25,29,36,41,31,35,4,3,0,0,0,1,0,1,1,1 -050,01,051,Alabama,Elmore County,2,9,5463,2769,2694,2153,2096,570,534,18,23,5,21,1,0,22,20,2739,2671,2130,2080,566,530,17,21,5,20,0,0,21,20,30,23,23,16,4,4,1,2,0,1,1,0,1,0 -050,01,051,Alabama,Elmore County,2,10,4854,2437,2417,1924,1936,478,429,7,11,7,22,2,0,19,19,2413,2401,1906,1922,475,427,6,11,7,22,2,0,17,19,24,16,18,14,3,2,1,0,0,0,0,0,2,0 -050,01,051,Alabama,Elmore County,2,11,4411,2244,2167,1904,1851,305,288,11,8,6,11,1,0,17,9,2226,2151,1891,1840,301,284,10,7,6,11,1,0,17,9,18,16,13,11,4,4,1,1,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,2,12,3171,1624,1547,1409,1347,198,177,8,5,1,9,0,0,8,9,1611,1534,1398,1334,196,177,8,5,1,9,0,0,8,9,13,13,11,13,2,0,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,2,13,2691,1349,1342,1181,1167,158,156,4,4,2,7,0,1,4,7,1344,1334,1178,1161,156,154,4,4,2,7,0,1,4,7,5,8,3,6,2,2,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,2,14,2143,1032,1111,919,938,98,163,4,2,2,3,0,1,9,4,1029,1107,917,935,97,162,4,2,2,3,0,1,9,4,3,4,2,3,1,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,2,15,1728,762,966,687,834,71,122,1,1,1,2,0,0,2,7,758,963,684,831,71,122,1,1,0,2,0,0,2,7,4,3,3,3,0,0,0,0,1,0,0,0,0,0 -050,01,051,Alabama,Elmore County,2,16,1410,576,834,522,718,52,107,1,1,0,1,0,0,1,7,572,828,519,714,51,105,1,1,0,1,0,0,1,7,4,6,3,4,1,2,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,2,17,941,351,590,306,503,42,82,2,1,0,0,0,0,1,4,348,588,303,501,42,82,2,1,0,0,0,0,1,4,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,2,18,842,203,639,173,547,29,92,0,0,0,0,0,0,1,0,203,636,173,545,29,91,0,0,0,0,0,0,1,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,2,99,66160,33475,32685,25531,25778,7365,6310,145,148,95,143,15,8,324,298,33048,32306,25197,25472,7309,6258,137,139,92,140,4,5,309,292,427,379,334,306,56,52,8,9,3,3,11,3,15,6 -050,01,051,Alabama,Elmore County,3,0,1003,523,480,400,343,110,123,1,1,1,0,0,0,11,13,513,471,391,336,109,122,1,1,1,0,0,0,11,12,10,9,9,7,1,1,0,0,0,0,0,0,0,1 -050,01,051,Alabama,Elmore County,3,1,3564,1803,1761,1378,1277,376,429,1,8,8,8,1,1,39,38,1779,1727,1359,1248,374,428,1,7,8,7,0,0,37,37,24,34,19,29,2,1,0,1,0,1,1,1,2,1 -050,01,051,Alabama,Elmore County,3,2,4682,2409,2273,1797,1687,555,533,6,10,16,11,0,0,35,32,2367,2229,1769,1648,548,530,5,10,14,10,0,0,31,31,42,44,28,39,7,3,1,0,2,1,0,0,4,1 -050,01,051,Alabama,Elmore County,3,3,5075,2598,2477,1934,1835,616,592,12,12,6,10,1,1,29,27,2545,2431,1888,1800,613,583,10,11,6,10,0,1,28,26,53,46,46,35,3,9,2,1,0,0,1,0,1,1 -050,01,051,Alabama,Elmore County,3,4,4565,2439,2126,1747,1579,631,493,16,15,7,9,1,1,37,29,2394,2085,1709,1548,627,488,15,13,7,9,0,0,36,27,45,41,38,31,4,5,1,2,0,0,1,1,1,2 -050,01,051,Alabama,Elmore County,3,5,4382,2478,1904,1399,1391,1017,473,10,6,12,10,3,3,37,21,2422,1871,1355,1360,1010,471,10,6,12,10,0,3,35,21,56,33,44,31,7,2,0,0,0,0,3,0,2,0 -050,01,051,Alabama,Elmore County,3,6,4684,2464,2220,1593,1657,820,516,13,13,15,11,4,1,19,22,2411,2178,1552,1623,814,510,12,12,15,11,0,0,18,22,53,42,41,34,6,6,1,1,0,0,4,1,1,0 -050,01,051,Alabama,Elmore County,3,7,5146,2602,2544,1877,1899,691,603,10,10,9,18,0,0,15,14,2552,2498,1833,1859,685,598,10,9,9,18,0,0,15,14,50,46,44,40,6,5,0,1,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,3,8,5725,2903,2822,2171,2176,677,584,19,16,13,14,0,1,23,31,2863,2777,2136,2138,673,580,19,16,13,13,0,0,22,30,40,45,35,38,4,4,0,0,0,1,0,1,1,1 -050,01,051,Alabama,Elmore County,3,9,5655,2840,2815,2206,2175,589,574,14,23,8,19,1,0,22,24,2804,2789,2177,2156,585,570,13,21,8,18,0,0,21,24,36,26,29,19,4,4,1,2,0,1,1,0,1,0 -050,01,051,Alabama,Elmore County,3,10,5102,2539,2563,1996,2048,501,460,11,13,8,22,2,0,21,20,2518,2534,1981,2021,498,458,10,13,8,22,2,0,19,20,21,29,15,27,3,2,1,0,0,0,0,0,2,0 -050,01,051,Alabama,Elmore County,3,11,4512,2339,2173,1968,1838,330,293,10,9,9,20,0,0,22,13,2320,2153,1954,1823,326,289,9,8,9,20,0,0,22,13,19,20,14,15,4,4,1,1,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,3,12,3397,1704,1693,1487,1465,196,203,6,5,2,10,4,0,9,10,1686,1683,1471,1455,194,203,6,5,2,10,4,0,9,10,18,10,16,10,2,0,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,3,13,2712,1345,1367,1180,1185,154,161,5,4,2,8,0,1,4,8,1335,1355,1172,1175,152,159,5,4,2,8,0,1,4,8,10,12,8,10,2,2,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,3,14,2251,1088,1163,975,985,98,164,5,3,2,5,0,2,8,4,1087,1159,974,982,98,163,5,3,2,5,0,2,8,4,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,3,15,1767,783,984,708,850,70,122,1,1,1,3,0,0,3,8,779,979,705,845,70,122,1,1,0,3,0,0,3,8,4,5,3,5,0,0,0,0,1,0,0,0,0,0 -050,01,051,Alabama,Elmore County,3,16,1397,577,820,527,708,49,103,1,1,0,1,0,0,0,7,574,814,525,704,48,101,1,1,0,1,0,0,0,7,3,6,2,4,1,2,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,3,17,1000,378,622,336,536,38,82,3,1,0,0,0,0,1,3,376,620,334,534,38,82,3,1,0,0,0,0,1,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,3,18,840,203,637,175,548,27,89,0,0,0,0,0,0,1,0,202,634,174,546,27,88,0,0,0,0,0,0,1,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,3,99,67459,34015,33444,25854,26182,7545,6597,144,151,119,179,17,11,336,324,33527,32987,25459,25801,7489,6545,136,142,116,175,6,7,321,317,488,457,395,381,56,52,8,9,3,4,11,4,15,7 -050,01,051,Alabama,Elmore County,4,0,887,443,444,331,345,96,86,1,1,2,0,0,0,13,12,436,429,325,332,95,85,1,1,2,0,0,0,13,11,7,15,6,13,1,1,0,0,0,0,0,0,0,1 -050,01,051,Alabama,Elmore County,4,1,3744,1923,1821,1474,1286,401,473,1,8,8,8,1,1,38,45,1894,1784,1451,1257,398,470,1,7,8,7,0,0,36,43,29,37,23,29,3,3,0,1,0,1,1,1,2,2 -050,01,051,Alabama,Elmore County,4,2,4675,2373,2302,1775,1706,544,542,6,10,14,12,0,0,34,32,2331,2251,1746,1661,537,538,5,9,13,12,0,0,30,31,42,51,29,45,7,4,1,1,1,0,0,0,4,1 -050,01,051,Alabama,Elmore County,4,3,5111,2576,2535,1893,1869,626,618,12,12,9,7,1,1,35,28,2514,2489,1840,1831,621,611,10,11,9,7,0,1,34,28,62,46,53,38,5,7,2,1,0,0,1,0,1,0 -050,01,051,Alabama,Elmore County,4,4,4720,2500,2220,1784,1645,658,512,15,17,9,11,1,2,33,33,2464,2174,1755,1611,654,506,14,14,9,11,0,1,32,31,36,46,29,34,4,6,1,3,0,0,1,1,1,2 -050,01,051,Alabama,Elmore County,4,5,4456,2498,1958,1445,1418,990,502,10,7,12,10,4,3,37,18,2437,1924,1397,1391,982,497,10,7,12,10,1,2,35,17,61,34,48,27,8,5,0,0,0,0,3,1,2,1 -050,01,051,Alabama,Elmore County,4,6,4598,2401,2197,1556,1643,793,509,14,10,14,13,4,1,20,21,2342,2127,1511,1581,787,503,12,9,14,13,0,0,18,21,59,70,45,62,6,6,2,1,0,0,4,1,2,0 -050,01,051,Alabama,Elmore County,4,7,5254,2641,2613,1911,1956,690,608,11,10,11,20,0,0,18,19,2599,2559,1875,1908,684,603,11,9,11,20,0,0,18,19,42,54,36,48,6,5,0,1,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,4,8,5674,2827,2847,2096,2192,679,601,15,11,15,14,0,1,22,28,2781,2801,2056,2155,674,595,15,11,15,13,0,0,21,27,46,46,40,37,5,6,0,0,0,1,0,1,1,1 -050,01,051,Alabama,Elmore County,4,9,5704,2866,2838,2236,2196,584,578,15,24,9,19,1,0,21,21,2826,2804,2203,2170,581,574,13,21,9,18,0,0,20,21,40,34,33,26,3,4,2,3,0,1,1,0,1,0 -050,01,051,Alabama,Elmore County,4,10,5150,2561,2589,2024,2057,496,479,14,11,7,21,2,0,18,21,2541,2563,2010,2033,493,477,13,11,7,21,2,0,16,21,20,26,14,24,3,2,1,0,0,0,0,0,2,0 -050,01,051,Alabama,Elmore County,4,11,4596,2334,2262,1948,1906,340,313,10,9,10,20,1,0,25,14,2309,2244,1927,1893,337,309,9,8,10,20,1,0,25,14,25,18,21,13,3,4,1,1,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,4,12,3790,1925,1865,1669,1615,230,223,5,6,6,11,1,0,14,10,1908,1853,1654,1603,228,223,5,6,6,11,1,0,14,10,17,12,15,12,2,0,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,4,13,2845,1386,1459,1214,1257,157,181,6,5,2,7,0,1,7,8,1373,1447,1203,1247,155,179,6,5,2,7,0,1,7,8,13,12,11,10,2,2,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,4,14,2380,1201,1179,1079,1005,107,161,5,3,2,4,0,2,8,4,1197,1175,1077,1002,105,160,5,3,2,4,0,2,8,4,4,4,2,3,2,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,4,15,1787,800,987,724,851,71,123,1,2,1,3,0,0,3,8,794,985,719,849,71,123,1,2,0,3,0,0,3,8,6,2,5,2,0,0,0,0,1,0,0,0,0,0 -050,01,051,Alabama,Elmore County,4,16,1446,606,840,549,730,56,101,1,1,0,1,0,0,0,7,603,835,547,726,55,100,1,1,0,1,0,0,0,7,3,5,2,4,1,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,4,17,999,373,626,336,537,33,84,2,1,0,0,0,0,2,4,369,624,332,535,33,84,2,1,0,0,0,0,2,4,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,4,18,843,204,639,171,547,31,92,0,0,0,0,0,0,2,0,203,636,170,545,31,91,0,0,0,0,0,0,2,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,4,99,68659,34438,34221,26215,26761,7582,6786,144,148,131,181,16,12,350,333,33921,33704,25798,26330,7521,6728,134,136,129,178,5,7,334,325,517,517,417,431,61,58,10,12,2,3,11,5,16,8 -050,01,051,Alabama,Elmore County,5,0,912,443,469,350,351,80,105,1,2,1,0,0,0,11,11,434,455,342,339,79,104,1,2,1,0,0,0,11,10,9,14,8,12,1,1,0,0,0,0,0,0,0,1 -050,01,051,Alabama,Elmore County,5,1,3799,1933,1866,1429,1335,442,466,4,8,11,8,1,1,46,48,1896,1821,1402,1297,438,464,1,7,11,7,0,0,44,46,37,45,27,38,4,2,3,1,0,1,1,1,2,2 -050,01,051,Alabama,Elmore County,5,2,4580,2302,2278,1742,1702,495,516,7,11,20,9,0,3,38,37,2246,2237,1699,1668,488,512,6,10,19,9,0,2,34,36,56,41,43,34,7,4,1,1,1,0,0,1,4,1 -050,01,051,Alabama,Elmore County,5,3,5298,2667,2631,1969,1920,640,656,12,11,9,9,1,1,36,34,2611,2578,1922,1878,635,647,10,10,9,9,0,1,35,33,56,53,47,42,5,9,2,1,0,0,1,0,1,1 -050,01,051,Alabama,Elmore County,5,4,4789,2557,2232,1826,1668,675,507,15,16,10,10,2,1,29,30,2511,2192,1788,1637,670,503,14,13,10,10,1,0,28,29,46,40,38,31,5,4,1,3,0,0,1,1,1,1 -050,01,051,Alabama,Elmore County,5,5,4557,2523,2034,1487,1468,972,525,12,8,14,6,3,5,35,22,2462,1987,1440,1432,964,518,11,8,13,6,1,4,33,19,61,47,47,36,8,7,1,0,1,0,2,1,2,3 -050,01,051,Alabama,Elmore County,5,6,4571,2363,2208,1528,1676,784,478,11,11,13,18,4,1,23,24,2297,2136,1477,1611,778,473,9,10,13,18,0,0,20,24,66,72,51,65,6,5,2,1,0,0,4,1,3,0 -050,01,051,Alabama,Elmore County,5,7,5371,2663,2708,1933,2029,684,629,12,9,14,25,1,0,19,16,2618,2636,1896,1965,677,623,12,8,14,25,0,0,19,15,45,72,37,64,7,6,0,1,0,0,1,0,0,1 -050,01,051,Alabama,Elmore County,5,8,5559,2751,2808,2051,2142,649,610,16,13,14,11,0,1,21,31,2693,2756,1998,2100,646,604,15,13,14,10,0,0,20,29,58,52,53,42,3,6,1,0,0,1,0,1,1,2 -050,01,051,Alabama,Elmore County,5,9,5684,2853,2831,2235,2190,571,585,17,19,9,9,1,0,20,28,2811,2796,2200,2160,568,581,15,18,9,9,0,0,19,28,42,35,35,30,3,4,2,1,0,0,1,0,1,0 -050,01,051,Alabama,Elmore County,5,10,5437,2689,2748,2133,2177,512,517,11,9,10,21,2,0,21,24,2663,2720,2113,2152,510,515,10,9,9,21,2,0,19,23,26,28,20,25,2,2,1,0,1,0,0,0,2,1 -050,01,051,Alabama,Elmore County,5,11,4771,2377,2394,1978,2016,357,341,10,8,9,14,1,0,22,15,2344,2371,1949,1997,354,338,9,7,9,14,1,0,22,15,33,23,29,19,3,3,1,1,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,5,12,3905,1990,1915,1716,1661,243,222,8,6,8,14,4,0,11,12,1975,1904,1703,1651,241,221,8,6,8,14,4,0,11,12,15,11,13,10,2,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,5,13,3090,1518,1572,1328,1358,172,186,7,6,3,9,1,0,7,13,1503,1558,1315,1345,170,185,7,6,3,9,1,0,7,13,15,14,13,13,2,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,5,14,2443,1219,1224,1092,1068,112,142,5,4,3,5,0,1,7,4,1215,1219,1090,1064,110,141,5,4,3,5,0,1,7,4,4,5,2,4,2,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,5,15,1831,852,979,773,845,74,121,1,2,1,4,0,0,3,7,845,975,767,841,74,121,1,2,0,4,0,0,3,7,7,4,6,4,0,0,0,0,1,0,0,0,0,0 -050,01,051,Alabama,Elmore County,5,16,1473,614,859,556,739,56,111,1,1,0,1,0,0,1,7,611,852,554,735,55,108,1,1,0,1,0,0,1,7,3,7,2,4,1,3,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,5,17,1017,391,626,356,553,32,66,2,1,0,1,0,0,1,5,388,623,353,551,32,65,2,1,0,1,0,0,1,5,3,3,3,2,0,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,5,18,848,204,644,178,554,24,90,0,0,0,0,0,0,2,0,203,641,177,552,24,89,0,0,0,0,0,0,2,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,5,99,69935,34909,35026,26660,27452,7574,6873,152,145,149,174,21,14,353,368,34326,34457,26185,26975,7513,6812,137,135,145,172,10,8,336,355,583,569,475,477,61,61,15,10,4,2,11,6,17,13 -050,01,051,Alabama,Elmore County,6,0,940,511,429,407,334,87,80,1,2,2,0,0,1,14,12,490,412,387,319,86,79,1,2,2,0,0,1,14,11,21,17,20,15,1,1,0,0,0,0,0,0,0,1 -050,01,051,Alabama,Elmore County,6,1,3772,1914,1858,1434,1346,421,443,5,8,10,8,1,2,43,51,1871,1812,1402,1309,416,440,2,7,10,7,0,0,41,49,43,46,32,37,5,3,3,1,0,1,1,2,2,2 -050,01,051,Alabama,Elmore County,6,2,4625,2345,2280,1787,1664,493,541,7,10,20,18,0,3,38,44,2288,2220,1745,1612,485,537,6,9,19,18,0,2,33,42,57,60,42,52,8,4,1,1,1,0,0,1,5,2 -050,01,051,Alabama,Elmore County,6,3,5239,2609,2630,1915,1950,627,620,13,12,16,11,2,1,36,36,2545,2576,1860,1907,622,612,11,10,16,11,1,1,35,35,64,54,55,43,5,8,2,2,0,0,1,0,1,1 -050,01,051,Alabama,Elmore County,6,4,5007,2682,2325,1904,1716,718,545,13,17,9,12,2,1,36,34,2623,2280,1853,1686,713,536,12,14,9,12,1,0,35,32,59,45,51,30,5,9,1,3,0,0,1,1,1,2 -050,01,051,Alabama,Elmore County,6,5,4545,2513,2032,1504,1477,948,506,10,9,17,11,3,3,31,26,2454,1983,1459,1439,940,499,9,9,16,11,1,2,29,23,59,49,45,38,8,7,1,0,1,0,2,1,2,3 -050,01,051,Alabama,Elmore County,6,6,4599,2363,2236,1552,1732,758,454,15,11,9,14,4,1,25,24,2284,2153,1491,1657,751,448,13,10,9,14,0,0,20,24,79,83,61,75,7,6,2,1,0,0,4,1,5,0 -050,01,051,Alabama,Elmore County,6,7,5409,2673,2736,1928,2033,696,647,15,8,15,29,1,0,18,19,2621,2661,1886,1965,687,642,15,7,15,29,0,0,18,18,52,75,42,68,9,5,0,1,0,0,1,0,0,1 -050,01,051,Alabama,Elmore County,6,8,5458,2661,2797,1982,2120,631,616,13,19,12,12,0,1,23,29,2596,2742,1924,2074,628,611,12,19,11,11,0,0,21,27,65,55,58,46,3,5,1,0,1,1,0,1,2,2 -050,01,051,Alabama,Elmore County,6,9,5824,2926,2898,2294,2271,587,577,15,13,9,13,1,0,20,24,2882,2860,2257,2239,584,573,13,12,9,12,0,0,19,24,44,38,37,32,3,4,2,1,0,1,1,0,1,0 -050,01,051,Alabama,Elmore County,6,10,5635,2794,2841,2210,2246,531,527,17,17,11,20,1,1,24,30,2760,2810,2183,2219,528,525,16,17,10,20,1,0,22,29,34,31,27,27,3,2,1,0,1,0,0,1,2,1 -050,01,051,Alabama,Elmore County,6,11,4792,2358,2434,1940,2011,363,372,17,9,10,24,2,2,26,16,2329,2407,1914,1989,361,368,16,8,10,24,2,2,26,16,29,27,26,22,2,4,1,1,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,6,12,4151,2108,2043,1812,1776,250,241,13,6,7,10,7,0,19,10,2093,2031,1799,1765,248,240,13,6,7,10,7,0,19,10,15,12,13,11,2,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,6,13,3246,1610,1636,1415,1436,175,175,8,6,3,9,1,0,8,10,1593,1621,1400,1422,173,174,8,6,3,9,1,0,8,10,17,15,15,14,2,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,6,14,2568,1280,1288,1143,1128,120,144,6,3,3,6,0,1,8,6,1276,1283,1141,1124,118,143,6,3,3,6,0,1,8,6,4,5,2,4,2,1,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,6,15,1915,885,1030,813,868,65,148,2,2,1,4,0,0,4,8,878,1027,807,865,65,148,2,2,0,4,0,0,4,8,7,3,6,3,0,0,0,0,1,0,0,0,0,0 -050,01,051,Alabama,Elmore County,6,16,1420,599,821,542,722,54,89,2,1,0,1,0,1,1,7,596,815,539,718,54,87,2,1,0,1,0,1,1,7,3,6,3,4,0,2,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,6,17,1028,392,636,362,549,27,81,2,1,0,1,1,0,0,4,388,633,359,547,27,80,2,1,0,1,0,0,0,4,4,3,3,2,0,1,0,0,0,0,1,0,0,0 -050,01,051,Alabama,Elmore County,6,18,845,209,636,187,551,21,84,0,0,0,0,0,1,1,0,208,631,186,548,21,83,0,0,0,0,0,0,1,0,1,5,1,3,0,1,0,0,0,0,0,1,0,0 -050,01,051,Alabama,Elmore County,6,99,71018,35432,35586,27131,27930,7572,6890,174,154,154,203,26,19,375,390,34775,34957,26592,27404,7507,6825,159,143,149,200,14,10,354,375,657,629,539,526,65,65,15,11,5,3,12,9,21,15 -050,01,051,Alabama,Elmore County,7,0,1005,526,479,427,383,78,76,1,2,5,1,0,1,15,16,511,455,414,362,77,74,1,2,5,1,0,1,14,15,15,24,13,21,1,2,0,0,0,0,0,0,1,1 -050,01,051,Alabama,Elmore County,7,1,3783,1919,1864,1457,1365,398,439,5,6,12,9,1,2,46,43,1856,1814,1405,1323,392,437,2,5,12,8,0,0,45,41,63,50,52,42,6,2,3,1,0,1,1,2,1,2 -050,01,051,Alabama,Elmore County,7,2,4684,2409,2275,1856,1661,486,535,7,11,14,15,3,4,43,49,2346,2215,1805,1612,480,531,6,10,14,13,2,2,39,47,63,60,51,49,6,4,1,1,0,2,1,2,4,2 -050,01,051,Alabama,Elmore County,7,3,5323,2671,2652,1972,1955,643,627,10,12,12,12,0,2,34,44,2588,2596,1897,1910,638,621,10,9,12,12,0,1,31,43,83,56,75,45,5,6,0,3,0,0,0,1,3,1 -050,01,051,Alabama,Elmore County,7,4,5171,2749,2422,1953,1794,731,562,11,18,13,14,3,2,38,32,2690,2374,1902,1759,727,553,10,15,13,14,1,1,37,32,59,48,51,35,4,9,1,3,0,0,2,1,1,0 -050,01,051,Alabama,Elmore County,7,5,4667,2505,2162,1504,1573,943,544,12,12,14,11,4,3,28,19,2447,2107,1460,1529,934,537,9,12,13,11,3,2,28,16,58,55,44,44,9,7,3,0,1,0,1,1,0,3 -050,01,051,Alabama,Elmore County,7,6,4714,2403,2311,1610,1783,736,474,15,8,14,20,4,1,24,25,2314,2222,1540,1702,733,468,12,7,13,19,0,1,16,25,89,89,70,81,3,6,3,1,1,1,4,0,8,0 -050,01,051,Alabama,Elmore County,7,7,5437,2713,2724,1950,2037,704,626,12,8,22,32,3,1,22,20,2656,2631,1910,1954,695,620,10,7,22,32,2,0,17,18,57,93,40,83,9,6,2,1,0,0,1,1,5,2 -050,01,051,Alabama,Elmore County,7,8,5543,2661,2882,1960,2198,659,620,12,19,11,13,0,2,19,30,2594,2818,1901,2142,654,616,11,17,10,13,0,2,18,28,67,64,59,56,5,4,1,2,1,0,0,0,1,2 -050,01,051,Alabama,Elmore County,7,9,6026,3008,3018,2360,2334,597,607,16,27,14,18,1,2,20,30,2950,2971,2312,2298,593,603,12,24,14,18,1,2,18,26,58,47,48,36,4,4,4,3,0,0,0,0,2,4 -050,01,051,Alabama,Elmore County,7,10,5796,2879,2917,2274,2310,546,539,17,10,10,21,2,0,30,37,2842,2883,2241,2280,544,536,17,10,10,21,2,0,28,36,37,34,33,30,2,3,0,0,0,0,0,0,2,1 -050,01,051,Alabama,Elmore County,7,11,5035,2467,2568,2041,2097,390,410,8,7,8,29,2,2,18,23,2437,2538,2012,2072,389,407,8,5,8,29,2,2,18,23,30,30,29,25,1,3,0,2,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,7,12,4478,2236,2242,1923,1927,276,277,12,9,10,17,4,0,11,12,2218,2231,1907,1918,274,275,12,9,10,17,4,0,11,12,18,11,16,9,2,2,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,7,13,3342,1654,1688,1451,1475,181,177,9,6,3,11,1,0,9,19,1639,1669,1438,1460,179,175,9,6,3,11,1,0,9,17,15,19,13,15,2,2,0,0,0,0,0,0,0,2 -050,01,051,Alabama,Elmore County,7,14,2653,1324,1329,1175,1174,134,139,4,2,3,6,0,1,8,7,1319,1326,1172,1171,132,139,4,2,3,6,0,1,8,7,5,3,3,3,2,0,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,7,15,1975,927,1048,847,884,73,152,1,3,1,4,0,0,5,5,920,1043,840,881,73,151,1,3,1,4,0,0,5,4,7,5,7,3,0,1,0,0,0,0,0,0,0,1 -050,01,051,Alabama,Elmore County,7,16,1405,612,793,556,693,49,90,2,0,0,3,1,1,4,6,608,786,553,689,49,88,2,0,0,2,0,1,4,6,4,7,3,4,0,2,0,0,0,1,1,0,0,0 -050,01,051,Alabama,Elmore County,7,17,1111,423,688,380,596,39,82,1,2,0,2,1,0,2,6,418,682,376,592,39,81,1,1,0,2,0,0,2,6,5,6,4,4,0,1,0,1,0,0,1,0,0,0 -050,01,051,Alabama,Elmore County,7,18,830,213,617,195,538,17,78,0,0,0,0,0,1,1,0,212,613,194,535,17,78,0,0,0,0,0,0,1,0,1,4,1,3,0,0,0,0,0,0,0,1,0,0 -050,01,051,Alabama,Elmore County,7,99,72978,36299,36679,27891,28777,7680,7054,155,162,166,238,30,25,377,423,35565,35974,27279,28189,7619,6990,137,144,163,233,18,16,349,402,734,705,612,588,61,64,18,18,3,5,12,9,28,21 -050,01,051,Alabama,Elmore County,8,0,1001,501,500,399,385,85,95,1,2,2,1,0,0,14,17,489,474,389,361,84,94,1,2,2,1,0,0,13,16,12,26,10,24,1,1,0,0,0,0,0,0,1,1 -050,01,051,Alabama,Elmore County,8,1,3736,1872,1864,1412,1414,384,385,7,6,13,11,1,2,55,46,1801,1794,1356,1353,376,381,3,5,13,11,0,0,53,44,71,70,56,61,8,4,4,1,0,0,1,2,2,2 -050,01,051,Alabama,Elmore County,8,2,4898,2513,2385,1918,1732,520,567,8,10,16,16,3,5,48,55,2444,2318,1863,1680,513,563,6,8,16,14,2,2,44,51,69,67,55,52,7,4,2,2,0,2,1,3,4,4 -050,01,051,Alabama,Elmore County,8,3,5289,2664,2625,1971,1935,632,624,10,11,17,12,1,2,33,41,2599,2564,1914,1886,627,617,10,8,17,12,1,1,30,40,65,61,57,49,5,7,0,3,0,0,0,1,3,1 -050,01,051,Alabama,Elmore County,8,4,5649,2969,2680,2075,1943,829,666,10,16,9,13,2,3,44,39,2894,2625,2006,1900,827,659,9,13,9,13,0,2,43,38,75,55,69,43,2,7,1,3,0,0,2,1,1,1 -050,01,051,Alabama,Elmore County,8,5,4759,2581,2178,1566,1536,968,583,9,14,10,14,5,5,23,26,2518,2120,1517,1492,960,577,6,13,9,14,3,3,23,21,63,58,49,44,8,6,3,1,1,0,2,2,0,5 -050,01,051,Alabama,Elmore County,8,6,4925,2486,2439,1665,1867,762,519,15,8,13,16,5,1,26,28,2383,2344,1583,1781,759,512,12,7,12,15,0,1,17,28,103,95,82,86,3,7,3,1,1,1,5,0,9,0 -050,01,051,Alabama,Elmore County,8,7,5249,2590,2659,1871,1978,663,620,14,8,20,29,1,2,21,22,2530,2545,1830,1877,654,613,10,7,20,28,0,0,16,20,60,114,41,101,9,7,4,1,0,1,1,2,5,2 -050,01,051,Alabama,Elmore County,8,8,5831,2803,3028,2081,2306,681,653,12,13,9,21,0,2,20,33,2723,2959,2012,2245,676,649,9,11,8,20,0,2,18,32,80,69,69,61,5,4,3,2,1,1,0,0,2,1 -050,01,051,Alabama,Elmore County,8,9,6056,2971,3085,2332,2365,590,643,15,24,16,21,1,2,17,30,2905,3023,2276,2316,585,639,12,19,16,21,1,2,15,26,66,62,56,49,5,4,3,5,0,0,0,0,2,4 -050,01,051,Alabama,Elmore County,8,10,5995,2931,3064,2305,2400,581,598,13,8,12,21,1,2,19,35,2891,3024,2270,2365,578,595,13,8,11,20,1,2,18,34,40,40,35,35,3,3,0,0,1,1,0,0,1,1 -050,01,051,Alabama,Elmore County,8,11,5348,2638,2710,2171,2197,419,441,7,12,9,34,3,1,29,25,2604,2674,2138,2168,418,437,7,10,9,34,3,1,29,24,34,36,33,29,1,4,0,2,0,0,0,0,0,1 -050,01,051,Alabama,Elmore County,8,12,4608,2320,2288,1980,1936,299,314,9,9,16,17,3,1,13,11,2295,2270,1958,1921,297,311,9,9,16,17,3,1,12,11,25,18,22,15,2,3,0,0,0,0,0,0,1,0 -050,01,051,Alabama,Elmore County,8,13,3524,1709,1815,1491,1582,196,198,10,8,3,9,1,0,8,18,1696,1792,1479,1563,195,197,10,8,3,9,1,0,8,15,13,23,12,19,1,1,0,0,0,0,0,0,0,3 -050,01,051,Alabama,Elmore County,8,14,2795,1393,1402,1232,1228,144,158,7,2,4,6,0,0,6,8,1385,1398,1226,1224,142,158,7,2,4,6,0,0,6,8,8,4,6,4,2,0,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,8,15,2093,972,1121,879,942,80,168,4,2,2,3,0,0,7,6,964,1116,872,939,80,167,4,2,2,3,0,0,6,5,8,5,7,3,0,1,0,0,0,0,0,0,1,1 -050,01,051,Alabama,Elmore County,8,16,1503,671,832,593,721,71,102,2,0,0,4,1,1,4,4,666,824,589,718,71,98,2,0,0,3,0,1,4,4,5,8,4,3,0,4,0,0,0,1,1,0,0,0 -050,01,051,Alabama,Elmore County,8,17,1079,411,668,375,567,32,93,1,2,0,1,1,0,2,5,408,662,373,563,32,92,1,1,0,1,0,0,2,5,3,6,2,4,0,1,0,1,0,0,1,0,0,0 -050,01,051,Alabama,Elmore County,8,18,908,254,654,232,568,19,84,1,0,0,1,0,1,2,0,253,650,231,565,19,84,1,0,0,1,0,0,2,0,1,4,1,3,0,0,0,0,0,0,0,1,0,0 -050,01,051,Alabama,Elmore County,8,99,75246,37249,37997,28548,29602,7955,7511,155,155,171,250,29,30,391,449,36448,37176,27882,28917,7893,7443,132,133,167,243,15,18,359,422,801,821,666,685,62,68,23,22,4,7,14,12,32,27 -050,01,051,Alabama,Elmore County,9,0,1001,525,476,419,366,88,88,1,2,3,1,0,1,14,18,507,448,403,340,87,87,1,2,3,1,0,1,13,17,18,28,16,26,1,1,0,0,0,0,0,0,1,1 -050,01,051,Alabama,Elmore County,9,1,3845,1913,1932,1462,1457,381,412,6,7,7,8,2,3,55,45,1841,1859,1406,1395,371,408,3,5,7,8,1,0,53,43,72,73,56,62,10,4,3,2,0,0,1,3,2,2 -050,01,051,Alabama,Elmore County,9,2,5041,2603,2438,1953,1781,552,570,10,10,22,17,3,5,63,55,2530,2361,1896,1720,545,565,7,8,22,15,2,2,58,51,73,77,57,61,7,5,3,2,0,2,1,3,5,4 -050,01,051,Alabama,Elmore County,9,3,5316,2675,2641,1995,1983,614,587,9,11,13,9,1,3,43,48,2589,2567,1919,1921,608,580,9,8,13,9,1,2,39,47,86,74,76,62,6,7,0,3,0,0,0,1,4,1 -050,01,051,Alabama,Elmore County,9,4,5791,3004,2787,2083,2003,850,712,10,18,13,8,2,3,46,43,2925,2722,2010,1950,848,705,9,15,13,8,0,2,45,42,79,65,73,53,2,7,1,3,0,0,2,1,1,1 -050,01,051,Alabama,Elmore County,9,5,4947,2693,2254,1636,1580,1011,613,9,15,7,12,5,6,25,28,2625,2201,1581,1541,1004,606,6,14,6,12,3,4,25,24,68,53,55,39,7,7,3,1,1,0,2,2,0,4 -050,01,051,Alabama,Elmore County,9,6,5059,2530,2529,1714,1919,749,559,15,6,22,16,5,1,25,28,2422,2428,1628,1827,745,552,12,5,21,15,0,1,16,28,108,101,86,92,4,7,3,1,1,1,5,0,9,0 -050,01,051,Alabama,Elmore County,9,7,5338,2631,2707,1895,2034,680,611,12,9,19,31,3,2,22,20,2565,2575,1848,1910,671,607,8,8,19,31,2,0,17,19,66,132,47,124,9,4,4,1,0,0,1,2,5,1 -050,01,051,Alabama,Elmore County,9,8,6006,2847,3159,2093,2400,707,684,12,14,14,27,0,2,21,32,2763,3088,2019,2340,703,678,9,12,13,26,0,2,19,30,84,71,74,60,4,6,3,2,1,1,0,0,2,2 -050,01,051,Alabama,Elmore County,9,9,5967,2936,3031,2296,2333,588,627,16,18,17,23,1,1,18,29,2863,2972,2232,2286,584,623,13,14,17,23,1,1,16,25,73,59,64,47,4,4,3,4,0,0,0,0,2,4 -050,01,051,Alabama,Elmore County,9,10,6077,2943,3134,2319,2456,569,602,17,12,12,21,1,1,25,42,2902,3085,2282,2412,567,599,17,12,11,21,1,1,24,40,41,49,37,44,2,3,0,0,1,0,0,0,1,2 -050,01,051,Alabama,Elmore County,9,11,5494,2736,2758,2238,2237,452,454,7,14,15,25,3,1,21,27,2708,2720,2212,2206,451,450,7,12,14,25,3,1,21,26,28,38,26,31,1,4,0,2,1,0,0,0,0,1 -050,01,051,Alabama,Elmore County,9,12,4628,2293,2335,1935,1965,309,326,8,9,10,19,2,4,29,12,2266,2316,1911,1950,307,323,8,9,10,19,2,3,28,12,27,19,24,15,2,3,0,0,0,0,0,1,1,0 -050,01,051,Alabama,Elmore County,9,13,3937,1924,2013,1663,1753,231,215,11,6,3,15,1,0,15,24,1910,1989,1650,1734,230,213,11,6,3,15,1,0,15,21,14,24,13,19,1,2,0,0,0,0,0,0,0,3 -050,01,051,Alabama,Elmore County,9,14,2892,1393,1499,1237,1314,138,162,6,3,4,9,0,0,8,11,1384,1495,1231,1310,135,162,6,3,4,9,0,0,8,11,9,4,6,4,3,0,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,9,15,2232,1074,1158,962,993,99,152,4,3,2,3,0,1,7,6,1066,1151,955,988,99,151,4,3,2,3,0,1,6,5,8,7,7,5,0,1,0,0,0,0,0,0,1,1 -050,01,051,Alabama,Elmore County,9,16,1538,708,830,628,717,74,103,1,0,0,4,1,1,4,5,704,821,625,714,74,98,1,0,0,3,0,1,4,5,4,9,3,3,0,5,0,0,0,1,1,0,0,0 -050,01,051,Alabama,Elmore County,9,17,1114,430,684,385,599,41,77,1,1,0,3,1,0,2,4,426,678,382,595,41,76,1,0,0,3,0,0,2,4,4,6,3,4,0,1,0,1,0,0,1,0,0,0 -050,01,051,Alabama,Elmore County,9,18,901,238,663,222,572,12,89,1,0,0,1,1,1,2,0,235,659,220,569,12,89,1,0,0,1,0,0,2,0,3,4,2,3,0,0,0,0,0,0,1,1,0,0 -050,01,051,Alabama,Elmore County,9,99,77124,38096,39028,29135,30462,8145,7643,156,158,183,252,32,36,445,477,37231,38135,28410,29708,8082,7572,133,136,178,247,17,22,411,450,865,893,725,754,63,71,23,22,5,5,15,14,34,27 -050,01,051,Alabama,Elmore County,10,0,1033,526,507,426,391,77,94,1,2,3,1,0,1,19,18,506,480,408,368,76,91,1,2,3,1,0,1,18,17,20,27,18,23,1,3,0,0,0,0,0,0,1,1 -050,01,051,Alabama,Elmore County,10,1,3814,1950,1864,1467,1426,400,382,7,6,15,6,2,3,59,41,1874,1775,1409,1346,390,380,3,4,15,6,1,0,56,39,76,89,58,80,10,2,4,2,0,0,1,3,3,2 -050,01,051,Alabama,Elmore County,10,2,5057,2584,2473,1939,1809,554,565,9,10,12,20,3,6,67,63,2491,2384,1863,1738,546,560,6,8,12,18,2,3,62,57,93,89,76,71,8,5,3,2,0,2,1,3,5,6 -050,01,051,Alabama,Elmore County,10,3,5191,2606,2585,1959,1936,567,577,9,9,18,8,1,3,52,52,2525,2518,1888,1881,561,570,9,6,18,8,1,2,48,51,81,67,71,55,6,7,0,3,0,0,0,1,4,1 -050,01,051,Alabama,Elmore County,10,4,5915,3088,2827,2164,2046,857,699,8,19,12,10,2,4,45,49,3010,2753,2094,1985,854,692,7,15,12,10,0,3,43,48,78,74,70,61,3,7,1,4,0,0,2,1,2,1 -050,01,051,Alabama,Elmore County,10,5,4945,2608,2337,1595,1671,967,606,9,16,12,12,5,4,20,28,2515,2271,1517,1624,959,598,5,15,10,12,4,1,20,21,93,66,78,47,8,8,4,1,2,0,1,3,0,7 -050,01,051,Alabama,Elmore County,10,6,5059,2493,2566,1724,1932,704,578,15,6,20,21,4,1,26,28,2376,2458,1631,1832,700,572,12,5,19,20,0,1,14,28,117,108,93,100,4,6,3,1,1,1,4,0,12,0 -050,01,051,Alabama,Elmore County,10,7,5197,2538,2659,1813,2022,665,575,17,7,16,31,3,2,24,22,2454,2518,1749,1893,656,569,13,6,16,31,1,0,19,19,84,141,64,129,9,6,4,1,0,0,2,2,5,3 -050,01,051,Alabama,Elmore County,10,8,5999,2828,3171,2090,2394,694,696,10,12,12,34,1,2,21,33,2746,3091,2018,2327,690,689,6,10,12,33,1,2,19,30,82,80,72,67,4,7,4,2,0,1,0,0,2,3 -050,01,051,Alabama,Elmore County,10,9,5839,2844,2995,2207,2305,592,620,14,16,14,23,1,2,16,29,2766,2925,2138,2247,588,616,11,12,14,23,1,2,14,25,78,70,69,58,4,4,3,4,0,0,0,0,2,4 -050,01,051,Alabama,Elmore County,10,10,6111,2938,3173,2335,2502,541,599,22,5,13,23,1,2,26,42,2892,3112,2293,2449,539,596,22,5,12,22,1,1,25,39,46,61,42,53,2,3,0,0,1,1,0,1,1,3 -050,01,051,Alabama,Elmore County,10,11,5687,2793,2894,2286,2360,459,463,6,8,10,32,3,3,29,28,2757,2861,2251,2333,459,460,6,6,9,32,3,3,29,27,36,33,35,27,0,3,0,2,1,0,0,0,0,1 -050,01,051,Alabama,Elmore County,10,12,4740,2321,2419,1958,2021,307,351,15,11,13,18,6,3,22,15,2289,2404,1929,2010,305,348,15,11,13,18,6,2,21,15,32,15,29,11,2,3,0,0,0,0,0,1,1,0 -050,01,051,Alabama,Elmore County,10,13,4078,1995,2083,1721,1815,246,227,12,6,4,16,2,0,10,19,1980,2056,1707,1793,245,225,12,6,4,16,2,0,10,16,15,27,14,22,1,2,0,0,0,0,0,0,0,3 -050,01,051,Alabama,Elmore County,10,14,3121,1522,1599,1364,1407,138,171,5,4,5,7,0,0,10,10,1513,1595,1359,1403,134,171,5,4,5,7,0,0,10,10,9,4,5,4,4,0,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,10,15,2285,1080,1205,965,1033,102,156,4,4,2,5,0,0,7,7,1069,1200,955,1031,102,154,4,4,2,5,0,0,6,6,11,5,10,2,0,2,0,0,0,0,0,0,1,1 -050,01,051,Alabama,Elmore County,10,16,1579,737,842,655,718,75,115,2,0,0,4,1,1,4,4,733,833,652,715,75,110,2,0,0,3,0,1,4,4,4,9,3,3,0,5,0,0,0,1,1,0,0,0 -050,01,051,Alabama,Elmore County,10,17,1140,412,728,371,622,38,98,0,2,0,4,1,0,2,2,408,721,368,618,38,96,0,1,0,4,0,0,2,2,4,7,3,4,0,2,0,1,0,0,1,0,0,0 -050,01,051,Alabama,Elmore County,10,18,908,256,652,240,554,12,96,1,0,0,1,1,1,2,0,253,649,238,552,12,96,1,0,0,1,0,0,2,0,3,3,2,2,0,0,0,0,0,0,1,1,0,0 -050,01,051,Alabama,Elmore County,10,99,77698,38119,39579,29279,30964,7995,7668,166,143,181,276,37,38,461,490,37157,38604,28467,30145,7929,7593,140,120,176,270,23,22,422,454,962,975,812,819,66,75,26,23,5,6,14,16,39,36 -050,01,051,Alabama,Elmore County,11,0,993,507,486,398,360,86,98,1,4,4,1,0,1,18,22,488,463,381,343,85,95,1,3,4,1,0,1,17,20,19,23,17,17,1,3,0,1,0,0,0,0,1,2 -050,01,051,Alabama,Elmore County,11,1,3890,1938,1952,1455,1487,396,396,10,6,9,13,1,4,67,46,1851,1861,1390,1409,385,392,3,4,9,13,0,0,64,43,87,91,65,78,11,4,7,2,0,0,1,4,3,3 -050,01,051,Alabama,Elmore County,11,2,5079,2625,2454,1940,1851,577,500,10,14,20,18,3,6,75,65,2528,2349,1860,1765,569,495,7,11,20,16,2,2,70,60,97,105,80,86,8,5,3,3,0,2,1,4,5,5 -050,01,051,Alabama,Elmore County,11,3,5258,2652,2606,2029,1911,552,612,9,8,13,13,1,2,48,60,2559,2534,1947,1852,545,604,9,5,13,13,1,1,44,59,93,72,82,59,7,8,0,3,0,0,0,1,4,1 -050,01,051,Alabama,Elmore County,11,4,5870,3032,2838,2167,2069,786,681,6,18,17,12,2,4,54,54,2937,2770,2080,2012,783,676,5,14,17,12,0,3,52,53,95,68,87,57,3,5,1,4,0,0,2,1,2,1 -050,01,051,Alabama,Elmore County,11,5,4980,2641,2339,1630,1648,961,631,14,16,11,9,5,8,20,27,2539,2277,1542,1602,954,624,10,15,9,9,4,5,20,22,102,62,88,46,7,7,4,1,2,0,1,3,0,5 -050,01,051,Alabama,Elmore County,11,6,4979,2424,2555,1659,1901,700,592,15,8,19,22,5,1,26,31,2298,2437,1560,1791,694,586,11,7,18,21,0,1,15,31,126,118,99,110,6,6,4,1,1,1,5,0,11,0 -050,01,051,Alabama,Elmore County,11,7,5334,2587,2747,1838,2086,688,602,14,7,19,30,4,2,24,20,2515,2596,1788,1950,678,593,10,6,18,30,2,0,19,17,72,151,50,136,10,9,4,1,1,0,2,2,5,3 -050,01,051,Alabama,Elmore County,11,8,5925,2786,3139,2046,2361,686,693,10,14,24,33,0,2,20,36,2697,3066,1969,2299,681,687,6,12,23,33,0,2,18,33,89,73,77,62,5,6,4,2,1,0,0,0,2,3 -050,01,051,Alabama,Elmore County,11,9,5792,2815,2977,2154,2297,611,605,15,15,19,25,1,2,15,33,2746,2901,2094,2233,608,601,11,11,19,25,1,2,13,29,69,76,60,64,3,4,4,4,0,0,0,0,2,4 -050,01,051,Alabama,Elmore County,11,10,6292,3003,3289,2400,2584,549,628,21,6,10,23,1,2,22,46,2949,3227,2349,2528,547,625,21,6,10,23,1,2,21,43,54,62,51,56,2,3,0,0,0,0,0,0,1,3 -050,01,051,Alabama,Elmore County,11,11,5825,2844,2981,2322,2414,472,492,10,12,16,31,4,1,20,31,2805,2939,2284,2379,472,489,9,9,16,31,4,1,20,30,39,42,38,35,0,3,1,3,0,0,0,0,0,1 -050,01,051,Alabama,Elmore County,11,12,4786,2323,2463,1945,2023,324,382,8,11,15,32,4,2,27,13,2293,2449,1918,2013,322,379,8,11,15,32,4,1,26,13,30,14,27,10,2,3,0,0,0,0,0,1,1,0 -050,01,051,Alabama,Elmore County,11,13,4363,2145,2218,1852,1915,255,255,15,9,4,19,2,0,17,20,2126,2192,1834,1894,254,253,15,9,4,19,2,0,17,17,19,26,18,21,1,2,0,0,0,0,0,0,0,3 -050,01,051,Alabama,Elmore County,11,14,3265,1613,1652,1443,1458,148,170,6,4,5,9,0,0,11,11,1603,1645,1437,1451,144,170,6,4,5,9,0,0,11,11,10,7,6,7,4,0,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,11,15,2376,1116,1260,995,1088,106,156,4,5,2,4,0,0,9,7,1105,1254,985,1085,106,154,4,5,2,4,0,0,8,6,11,6,10,3,0,2,0,0,0,0,0,0,1,1 -050,01,051,Alabama,Elmore County,11,16,1587,738,849,672,727,60,113,2,0,0,4,1,1,3,4,734,839,669,724,60,107,2,0,0,3,0,1,3,4,4,10,3,3,0,6,0,0,0,1,1,0,0,0 -050,01,051,Alabama,Elmore County,11,17,1129,434,695,387,609,44,77,0,2,0,4,1,0,2,3,429,689,383,605,44,76,0,1,0,4,0,0,2,3,5,6,4,4,0,1,0,1,0,0,1,0,0,0 -050,01,051,Alabama,Elmore County,11,18,909,259,650,238,558,17,90,1,0,0,1,1,1,2,0,256,647,236,556,17,90,1,0,0,1,0,0,2,0,3,3,2,2,0,0,0,0,0,0,1,1,0,0 -050,01,051,Alabama,Elmore County,11,99,78632,38482,40150,29570,31347,8018,7773,171,159,207,303,36,39,480,529,37458,39135,28706,30491,7948,7696,139,133,202,299,21,22,442,494,1024,1015,864,856,70,77,32,26,5,4,15,17,38,35 -050,01,051,Alabama,Elmore County,12,0,953,491,462,377,334,94,101,1,4,3,1,0,1,16,21,474,438,362,317,93,97,1,3,3,1,0,1,15,19,17,24,15,17,1,4,0,1,0,0,0,0,1,2 -050,01,051,Alabama,Elmore County,12,1,3906,1960,1946,1449,1453,417,409,11,6,11,14,2,4,70,60,1864,1852,1376,1372,406,405,3,4,11,14,1,0,67,57,96,94,73,81,11,4,8,2,0,0,1,4,3,3 -050,01,051,Alabama,Elmore County,12,2,5206,2659,2547,2009,1903,556,535,10,10,16,21,3,9,65,69,2547,2440,1914,1818,548,530,7,7,16,18,2,4,60,63,112,107,95,85,8,5,3,3,0,3,1,5,5,6 -050,01,051,Alabama,Elmore County,12,3,5256,2654,2602,1996,1901,561,603,9,10,20,14,1,3,67,71,2569,2520,1922,1832,554,595,9,7,20,14,1,2,63,70,85,82,74,69,7,8,0,3,0,0,0,1,4,1 -050,01,051,Alabama,Elmore County,12,4,5579,2902,2677,2061,1926,769,660,6,18,12,18,2,4,52,51,2816,2606,1983,1869,766,652,5,14,12,18,0,3,50,50,86,71,78,57,3,8,1,4,0,0,2,1,2,1 -050,01,051,Alabama,Elmore County,12,5,5144,2679,2465,1677,1748,952,650,9,18,15,13,5,8,21,28,2565,2390,1578,1693,944,641,5,17,13,13,4,5,21,21,114,75,99,55,8,9,4,1,2,0,1,3,0,7 -050,01,051,Alabama,Elmore County,12,6,5049,2414,2635,1650,1954,692,618,17,7,23,24,5,1,27,31,2280,2521,1544,1847,686,613,13,6,22,23,0,1,15,31,134,114,106,107,6,5,4,1,1,1,5,0,12,0 -050,01,051,Alabama,Elmore County,12,7,5439,2648,2791,1875,2088,703,642,16,8,26,29,4,2,24,22,2559,2639,1809,1949,692,636,12,7,25,28,2,0,19,19,89,152,66,139,11,6,4,1,1,1,2,2,5,3 -050,01,051,Alabama,Elmore County,12,8,5872,2762,3110,2029,2335,685,688,10,16,18,31,1,2,19,38,2677,3024,1955,2263,681,680,6,14,17,30,1,2,17,35,85,86,74,72,4,8,4,2,1,1,0,0,2,3 -050,01,051,Alabama,Elmore County,12,9,5752,2771,2981,2119,2289,603,611,15,17,18,29,1,2,15,33,2697,2913,2055,2234,599,607,11,12,18,29,1,2,13,29,74,68,64,55,4,4,4,5,0,0,0,0,2,4 -050,01,051,Alabama,Elmore County,12,10,6367,3014,3353,2407,2630,553,645,18,7,14,24,1,3,21,44,2958,3284,2355,2569,551,642,18,7,13,23,1,2,20,41,56,69,52,61,2,3,0,0,1,1,0,1,1,3 -050,01,051,Alabama,Elmore County,12,11,5890,2891,2999,2360,2433,477,491,8,9,15,32,4,2,27,32,2849,2956,2320,2397,477,488,7,6,14,32,4,2,27,31,42,43,40,36,0,3,1,3,1,0,0,0,0,1 -050,01,051,Alabama,Elmore County,12,12,4908,2371,2537,1977,2086,347,398,9,11,13,26,4,3,21,13,2344,2515,1953,2068,345,395,9,11,13,26,4,2,20,13,27,22,24,18,2,3,0,0,0,0,0,1,1,0 -050,01,051,Alabama,Elmore County,12,13,4546,2216,2330,1929,2005,253,274,15,9,4,19,2,0,13,23,2200,2307,1914,1987,252,272,15,9,4,19,2,0,13,20,16,23,15,18,1,2,0,0,0,0,0,0,0,3 -050,01,051,Alabama,Elmore County,12,14,3318,1642,1676,1467,1473,151,178,7,4,5,11,0,0,12,10,1631,1671,1461,1468,146,178,7,4,5,11,0,0,12,10,11,5,6,5,5,0,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,12,15,2422,1136,1286,1008,1110,114,158,4,5,2,5,0,1,8,7,1125,1280,998,1107,114,156,4,5,2,5,0,1,7,6,11,6,10,3,0,2,0,0,0,0,0,0,1,1 -050,01,051,Alabama,Elmore County,12,16,1617,754,863,690,750,57,104,2,0,0,4,1,1,4,4,750,852,687,746,57,98,2,0,0,3,0,1,4,4,4,11,3,4,0,6,0,0,0,1,1,0,0,0 -050,01,051,Alabama,Elmore County,12,17,1136,445,691,397,590,45,90,0,2,0,4,1,0,2,5,440,684,393,586,45,88,0,1,0,4,0,0,2,5,5,7,4,4,0,2,0,1,0,0,1,0,0,0 -050,01,051,Alabama,Elmore County,12,18,943,280,663,254,582,22,79,1,0,0,1,1,1,2,0,277,660,252,580,22,79,1,0,0,1,0,0,2,0,3,3,2,2,0,0,0,0,0,0,1,1,0,0 -050,01,051,Alabama,Elmore County,12,99,79303,38689,40614,29731,31590,8051,7934,168,161,215,320,38,47,486,562,37622,39552,28831,30702,7978,7852,135,134,208,312,23,28,447,524,1067,1062,900,888,73,82,33,27,7,8,15,19,39,38 -050,01,051,Alabama,Elmore County,13,0,958,492,466,377,337,94,102,1,4,4,1,0,1,16,21,475,442,362,319,93,98,1,3,4,1,0,1,15,20,17,24,15,18,1,4,0,1,0,0,0,0,1,1 -050,01,051,Alabama,Elmore County,13,1,3905,1956,1949,1443,1449,420,413,10,7,11,14,2,3,70,63,1863,1852,1372,1368,409,408,3,4,11,14,1,0,67,58,93,97,71,81,11,5,7,3,0,0,1,3,3,5 -050,01,051,Alabama,Elmore County,13,2,5218,2664,2554,2011,1907,558,537,11,13,15,20,3,8,66,69,2553,2444,1916,1821,551,532,8,7,15,17,2,4,61,63,111,110,95,86,7,5,3,6,0,3,1,4,5,6 -050,01,051,Alabama,Elmore County,13,3,5265,2658,2607,1998,1903,562,605,9,10,19,14,1,4,69,71,2571,2523,1923,1834,555,596,8,7,19,14,1,2,65,70,87,84,75,69,7,9,1,3,0,0,0,2,4,1 -050,01,051,Alabama,Elmore County,13,4,5560,2896,2664,2056,1917,767,659,8,17,11,19,2,2,52,50,2806,2591,1976,1859,763,649,6,14,11,19,0,1,50,49,90,73,80,58,4,10,2,3,0,0,2,1,2,1 -050,01,051,Alabama,Elmore County,13,5,5172,2691,2481,1685,1756,957,655,10,19,15,15,6,7,18,29,2574,2405,1584,1699,948,646,6,18,14,15,4,5,18,22,117,76,101,57,9,9,4,1,1,0,2,2,0,7 -050,01,051,Alabama,Elmore County,13,6,5077,2430,2647,1658,1960,699,622,17,8,25,24,5,0,26,33,2292,2529,1551,1852,690,615,13,7,23,23,0,0,15,32,138,118,107,108,9,7,4,1,2,1,5,0,11,1 -050,01,051,Alabama,Elmore County,13,7,5488,2671,2817,1890,2109,707,647,18,6,28,30,4,2,24,23,2580,2663,1823,1969,696,640,13,5,27,29,2,0,19,20,91,154,67,140,11,7,5,1,1,1,2,2,5,3 -050,01,051,Alabama,Elmore County,13,8,5846,2751,3095,2017,2323,688,690,9,13,16,30,1,1,20,38,2665,3008,1943,2250,683,681,5,11,15,29,1,1,18,36,86,87,74,73,5,9,4,2,1,1,0,0,2,2 -050,01,051,Alabama,Elmore County,13,9,5753,2775,2978,2122,2290,604,611,13,14,17,28,1,2,18,33,2701,2908,2058,2234,600,606,9,9,17,28,1,2,16,29,74,70,64,56,4,5,4,5,0,0,0,0,2,4 -050,01,051,Alabama,Elmore County,13,10,6355,3007,3348,2401,2623,554,648,18,8,13,25,0,2,21,42,2951,3278,2349,2562,552,645,18,7,12,24,0,1,20,39,56,70,52,61,2,3,0,1,1,1,0,1,1,3 -050,01,051,Alabama,Elmore County,13,11,5921,2907,3014,2369,2443,482,496,9,9,15,32,4,2,28,32,2865,2971,2329,2407,482,493,8,6,14,32,4,2,28,31,42,43,40,36,0,3,1,3,1,0,0,0,0,1 -050,01,051,Alabama,Elmore County,13,12,4949,2389,2560,1993,2102,351,405,9,12,11,24,3,3,22,14,2362,2537,1969,2083,349,402,9,12,11,24,3,2,21,14,27,23,24,19,2,3,0,0,0,0,0,1,1,0 -050,01,051,Alabama,Elmore County,13,13,4595,2243,2352,1953,2026,256,278,16,8,4,19,2,0,12,21,2226,2331,1937,2008,255,276,16,8,4,19,2,0,12,20,17,21,16,18,1,2,0,0,0,0,0,0,0,1 -050,01,051,Alabama,Elmore County,13,14,3345,1655,1690,1481,1484,151,180,6,4,5,13,0,0,12,9,1643,1686,1474,1480,146,180,6,4,5,13,0,0,12,9,12,4,7,4,5,0,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,13,15,2442,1148,1294,1018,1116,116,160,3,6,2,4,0,0,9,8,1136,1287,1007,1112,116,158,3,6,2,4,0,0,8,7,12,7,11,4,0,2,0,0,0,0,0,0,1,1 -050,01,051,Alabama,Elmore County,13,16,1615,754,861,692,750,56,103,2,1,0,3,0,1,4,3,751,852,689,747,56,97,2,1,0,3,0,1,4,3,3,9,3,3,0,6,0,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,13,17,1133,444,689,397,590,46,89,0,2,0,4,0,0,1,4,440,683,393,586,46,88,0,1,0,4,0,0,1,4,4,6,4,4,0,1,0,1,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,13,18,952,284,668,257,586,23,80,1,0,0,1,1,1,2,0,281,665,255,584,23,80,1,0,0,1,0,0,2,0,3,3,2,2,0,0,0,0,0,0,1,1,0,0 -050,01,051,Alabama,Elmore County,13,99,79549,38815,40734,29818,31671,8091,7980,170,161,211,320,35,39,490,563,37735,39655,28910,30774,8013,7890,135,130,204,313,21,22,452,526,1080,1079,908,897,78,90,35,31,7,7,14,17,38,37 -050,01,053,Alabama,Escambia County,1,0,491,231,260,124,135,91,109,9,9,0,1,0,0,7,6,227,256,120,133,91,107,9,9,0,1,0,0,7,6,4,4,4,2,0,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,1,1899,957,942,550,560,346,321,41,43,0,2,0,0,20,16,950,921,545,540,345,320,40,43,0,2,0,0,20,16,7,21,5,20,1,1,1,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,2,2663,1372,1291,832,733,470,487,46,52,3,1,0,0,21,18,1359,1268,821,714,468,486,46,50,3,1,0,0,21,17,13,23,11,19,2,1,0,2,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,1,3,2614,1353,1261,812,749,459,443,60,46,9,4,0,0,13,19,1340,1244,800,737,458,438,60,46,9,4,0,0,13,19,13,17,12,12,1,5,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,4,2750,1404,1346,843,812,482,461,66,47,2,3,0,0,11,23,1389,1329,829,797,481,460,66,46,2,3,0,0,11,23,15,17,14,15,1,1,0,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,5,2572,1474,1098,742,635,678,408,37,37,6,5,1,1,10,12,1446,1084,717,624,675,406,37,36,6,5,1,1,10,12,28,14,25,11,3,2,0,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,6,2679,1476,1203,854,761,571,379,41,46,1,8,1,1,8,8,1448,1190,830,749,567,379,41,46,1,8,1,1,8,7,28,13,24,12,4,0,0,0,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,1,7,2510,1411,1099,844,709,512,338,43,38,4,4,0,1,8,9,1397,1089,831,701,512,337,43,38,3,4,0,1,8,8,14,10,13,8,0,1,0,0,1,0,0,0,0,1 -050,01,053,Alabama,Escambia County,1,8,2851,1545,1306,950,842,535,396,41,53,3,4,1,0,15,11,1528,1296,938,834,531,394,41,53,3,4,1,0,14,11,17,10,12,8,4,2,0,0,0,0,0,0,1,0 -050,01,053,Alabama,Escambia County,1,9,3064,1685,1379,1047,921,568,396,46,40,7,3,0,0,17,19,1669,1367,1033,914,566,391,46,40,7,3,0,0,17,19,16,12,14,7,2,5,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,10,2735,1395,1340,896,898,453,384,31,31,4,3,0,2,11,22,1384,1330,887,890,451,382,31,31,4,3,0,2,11,22,11,10,9,8,2,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,11,2468,1253,1215,904,862,307,308,35,39,3,1,0,0,4,5,1243,1209,894,858,307,306,35,39,3,1,0,0,4,5,10,6,10,4,0,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,12,2082,971,1111,733,835,208,229,27,33,1,3,0,0,2,11,966,1108,729,832,207,229,27,33,1,3,0,0,2,11,5,3,4,3,1,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,13,1837,899,938,696,710,172,201,22,19,1,1,1,0,7,7,895,934,692,707,172,200,22,19,1,1,1,0,7,7,4,4,4,3,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,14,1510,688,822,546,607,128,190,7,12,3,6,1,0,3,7,682,815,541,602,127,188,7,12,3,6,1,0,3,7,6,7,5,5,1,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,15,1284,544,740,420,566,114,155,9,13,0,0,0,0,1,6,542,736,418,564,114,153,9,13,0,0,0,0,1,6,2,4,2,2,0,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,16,1054,383,671,306,519,72,131,3,15,0,0,0,0,2,6,379,670,303,518,71,131,3,15,0,0,0,0,2,6,4,1,3,1,1,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,17,719,246,473,187,356,54,101,4,11,0,2,0,0,1,3,246,469,187,352,54,101,4,11,0,2,0,0,1,3,0,4,0,4,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,18,670,195,475,130,317,60,147,4,7,0,0,0,0,1,4,194,474,129,317,60,146,4,7,0,0,0,0,1,4,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,99,38452,19482,18970,12416,12527,6280,5584,572,591,47,51,5,5,162,212,19284,18789,12244,12383,6257,5554,571,587,46,51,5,5,161,209,198,181,172,144,23,30,1,4,1,0,0,0,1,3 -050,01,053,Alabama,Escambia County,2,0,498,235,263,125,136,94,111,9,9,0,1,0,0,7,6,231,259,121,134,94,109,9,9,0,1,0,0,7,6,4,4,4,2,0,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,1,1891,952,939,546,558,343,319,41,43,0,2,0,0,22,17,945,918,541,538,342,318,40,43,0,2,0,0,22,17,7,21,5,20,1,1,1,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,2,2644,1365,1279,828,728,466,484,46,52,3,1,0,0,22,14,1352,1256,817,709,464,483,46,50,3,1,0,0,22,13,13,23,11,19,2,1,0,2,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,2,3,2622,1357,1265,813,750,462,446,60,46,9,4,0,0,13,19,1344,1248,801,738,461,441,60,46,9,4,0,0,13,19,13,17,12,12,1,5,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,4,2750,1401,1349,842,813,479,462,67,47,2,3,0,0,11,24,1386,1332,828,798,478,461,67,46,2,3,0,0,11,24,15,17,14,15,1,1,0,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,5,2568,1461,1107,739,640,669,412,36,37,6,5,1,1,10,12,1433,1093,714,629,666,410,36,36,6,5,1,1,10,12,28,14,25,11,3,2,0,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,6,2646,1454,1192,839,752,564,377,41,46,1,8,1,1,8,8,1426,1179,815,740,560,377,41,46,1,8,1,1,8,7,28,13,24,12,4,0,0,0,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,2,7,2490,1393,1097,835,707,503,338,43,38,4,4,0,1,8,9,1379,1087,822,699,503,337,43,38,3,4,0,1,8,8,14,10,13,8,0,1,0,0,1,0,0,0,0,1 -050,01,053,Alabama,Escambia County,2,8,2817,1521,1296,935,834,526,394,41,53,3,4,1,0,15,11,1504,1286,923,826,522,392,41,53,3,4,1,0,14,11,17,10,12,8,4,2,0,0,0,0,0,0,1,0 -050,01,053,Alabama,Escambia County,2,9,3045,1664,1381,1037,921,557,398,46,41,7,3,0,0,17,18,1648,1369,1023,914,555,393,46,41,7,3,0,0,17,18,16,12,14,7,2,5,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,10,2729,1389,1340,896,898,446,384,31,31,4,3,0,2,12,22,1378,1330,887,890,444,382,31,31,4,3,0,2,12,22,11,10,9,8,2,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,11,2484,1259,1225,908,868,308,312,36,39,3,1,0,0,4,5,1249,1219,898,864,308,310,36,39,3,1,0,0,4,5,10,6,10,4,0,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,12,2089,975,1114,736,839,209,229,27,33,1,3,0,0,2,10,970,1111,732,836,208,229,27,33,1,3,0,0,2,10,5,3,4,3,1,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,13,1840,901,939,698,710,172,202,22,19,1,1,1,0,7,7,897,935,694,707,172,201,22,19,1,1,1,0,7,7,4,4,4,3,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,14,1496,683,813,542,599,127,189,7,12,3,6,1,0,3,7,677,806,537,594,126,187,7,12,3,6,1,0,3,7,6,7,5,5,1,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,15,1283,543,740,418,564,115,157,9,13,0,0,0,0,1,6,541,736,416,562,115,155,9,13,0,0,0,0,1,6,2,4,2,2,0,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,16,1048,381,667,304,513,72,133,3,15,0,0,0,0,2,6,377,666,301,512,71,133,3,15,0,0,0,0,2,6,4,1,3,1,1,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,17,718,248,470,188,355,55,99,4,11,0,2,0,0,1,3,248,466,188,351,55,99,4,11,0,2,0,0,1,3,0,4,0,4,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,18,667,194,473,129,313,60,147,4,7,0,0,0,0,1,6,193,472,128,313,60,146,4,7,0,0,0,0,1,6,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,99,38325,19376,18949,12358,12498,6227,5593,573,592,47,51,5,5,166,210,19178,18768,12186,12354,6204,5563,572,588,46,51,5,5,165,207,198,181,172,144,23,30,1,4,1,0,0,0,1,3 -050,01,053,Alabama,Escambia County,3,0,520,266,254,146,142,97,93,14,10,0,1,0,0,9,8,265,250,145,140,97,91,14,10,0,1,0,0,9,8,1,4,1,2,0,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,1,1899,932,967,534,566,335,345,39,35,0,2,0,0,24,19,918,948,522,548,334,344,38,35,0,2,0,0,24,19,14,19,12,18,1,1,1,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,2,2561,1300,1261,786,718,440,469,48,59,3,1,0,0,23,14,1285,1221,774,682,437,468,48,57,3,1,0,0,23,13,15,40,12,36,3,1,0,2,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,3,3,2640,1343,1297,774,760,481,462,64,49,9,4,0,0,15,22,1326,1276,758,744,480,457,64,49,9,4,0,0,15,22,17,21,16,16,1,5,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,4,2660,1372,1288,810,768,488,440,61,50,2,3,0,0,11,27,1355,1271,794,753,487,439,61,49,2,3,0,0,11,27,17,17,16,15,1,1,0,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,5,2630,1476,1154,776,663,639,433,42,39,6,5,1,0,12,14,1446,1135,749,646,636,432,42,38,6,5,1,0,12,14,30,19,27,17,3,1,0,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,6,2595,1432,1163,798,717,580,384,44,44,1,7,1,1,8,10,1398,1148,767,703,577,384,44,44,1,7,1,1,8,9,34,15,31,14,3,0,0,0,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,3,7,2451,1325,1126,811,722,470,354,33,36,3,4,0,1,8,9,1308,1109,794,707,470,353,33,36,3,4,0,1,8,8,17,17,17,15,0,1,0,0,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,3,8,2763,1507,1256,922,819,527,367,41,50,3,6,1,0,13,14,1488,1246,908,811,523,365,41,50,3,6,1,0,12,14,19,10,14,8,4,2,0,0,0,0,0,0,1,0 -050,01,053,Alabama,Escambia County,3,9,3036,1633,1403,1029,899,543,434,41,44,7,5,0,0,13,21,1613,1391,1011,892,541,430,41,44,7,4,0,0,13,21,20,12,18,7,2,4,0,0,0,1,0,0,0,0 -050,01,053,Alabama,Escambia County,3,10,2723,1391,1332,886,900,452,373,36,35,4,3,0,1,13,20,1379,1321,876,891,450,371,36,35,4,3,0,1,13,20,12,11,10,9,2,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,11,2534,1292,1242,924,881,327,320,34,35,3,1,0,0,4,5,1280,1236,912,876,327,319,34,35,3,1,0,0,4,5,12,6,12,5,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,12,2111,992,1119,740,839,216,238,33,29,1,3,0,0,2,10,987,1115,736,835,215,238,33,29,1,3,0,0,2,10,5,4,4,4,1,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,13,1840,902,938,703,714,166,195,25,21,1,1,1,0,6,7,895,935,696,712,166,194,25,21,1,1,1,0,6,7,7,3,7,2,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,14,1558,716,842,550,617,147,194,12,18,3,5,1,0,3,8,711,833,546,610,146,192,12,18,3,5,1,0,3,8,5,9,4,7,1,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,15,1297,554,743,436,556,106,167,11,14,0,0,0,0,1,6,553,739,435,554,106,165,11,14,0,0,0,0,1,6,1,4,1,2,0,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,16,1033,378,655,299,501,74,132,4,16,0,0,0,0,1,6,376,654,297,500,74,132,4,16,0,0,0,0,1,6,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,17,704,239,465,181,359,52,92,4,9,0,1,0,0,2,4,239,461,181,355,52,92,4,9,0,1,0,0,2,4,0,4,0,4,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,18,642,174,468,122,316,48,140,3,8,0,0,0,0,1,4,173,467,121,316,48,139,3,8,0,0,0,0,1,4,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,99,38197,19224,18973,12227,12457,6188,5632,589,601,46,52,5,3,169,228,18995,18756,12022,12275,6166,5605,588,597,46,51,5,3,168,225,229,217,205,182,22,27,1,4,0,1,0,0,1,3 -050,01,053,Alabama,Escambia County,4,0,502,268,234,170,133,79,86,9,8,0,1,0,0,10,6,265,230,167,130,79,85,9,8,0,1,0,0,10,6,3,4,3,3,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,1,1909,909,1000,519,597,322,343,48,34,0,2,0,0,20,24,898,981,510,579,321,342,47,34,0,2,0,0,20,24,11,19,9,18,1,1,1,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,2,2419,1250,1169,738,690,442,411,43,51,3,2,0,0,24,15,1235,1137,726,663,439,409,43,49,3,2,0,0,24,14,15,32,12,27,3,2,0,2,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,4,3,2732,1400,1332,794,751,517,503,64,55,7,4,0,0,18,19,1383,1308,778,732,516,498,64,55,7,4,0,0,18,19,17,24,16,19,1,5,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,4,2599,1342,1257,764,748,499,434,64,48,2,3,0,0,13,24,1328,1237,751,731,498,432,64,47,2,3,0,0,13,24,14,20,13,17,1,2,0,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,5,2664,1482,1182,801,672,608,438,52,49,6,5,1,0,14,18,1451,1164,773,656,605,437,52,48,6,5,1,0,14,18,31,18,28,16,3,1,0,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,6,2474,1362,1112,767,703,552,357,32,37,1,7,1,1,9,7,1330,1096,738,688,549,357,32,37,1,7,1,1,9,6,32,16,29,15,3,0,0,0,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,4,7,2514,1361,1153,816,738,490,364,43,38,3,3,0,1,9,9,1343,1134,798,721,490,363,43,38,3,3,0,1,9,8,18,19,18,17,0,1,0,0,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,4,8,2641,1474,1167,907,759,513,348,37,46,3,4,1,0,13,10,1457,1155,894,749,510,346,37,46,3,4,1,0,12,10,17,12,13,10,3,2,0,0,0,0,0,0,1,0 -050,01,053,Alabama,Escambia County,4,9,2976,1579,1397,986,881,532,445,38,49,7,6,0,0,16,16,1558,1386,967,875,530,441,38,49,7,5,0,0,16,16,21,11,19,6,2,4,0,0,0,1,0,0,0,0 -050,01,053,Alabama,Escambia County,4,10,2699,1384,1315,895,880,433,371,42,37,3,3,0,2,11,22,1368,1306,881,874,431,369,42,37,3,3,0,2,11,21,16,9,14,6,2,2,0,0,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,4,11,2565,1317,1248,933,890,344,315,33,35,3,1,0,0,4,7,1305,1242,921,885,344,314,33,35,3,1,0,0,4,7,12,6,12,5,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,12,2217,1037,1180,773,868,230,256,31,42,1,3,0,0,2,11,1033,1176,770,865,229,255,31,42,1,3,0,0,2,11,4,4,3,3,1,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,13,1874,927,947,721,717,167,199,30,23,1,1,1,0,7,7,921,944,715,715,167,198,30,23,1,1,1,0,7,7,6,3,6,2,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,14,1565,728,837,550,635,160,180,11,11,3,5,1,0,3,6,723,829,546,629,159,178,11,11,3,5,1,0,3,6,5,8,4,6,1,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,15,1307,557,750,441,564,105,168,10,12,0,0,0,0,1,6,554,746,439,562,104,166,10,12,0,0,0,0,1,6,3,4,2,2,1,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,16,1030,404,626,313,470,82,135,8,15,0,0,0,0,1,6,401,624,311,468,81,135,8,15,0,0,0,0,1,6,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,17,726,256,470,203,355,48,99,4,12,0,1,0,0,1,3,255,466,202,351,48,99,4,12,0,1,0,0,1,3,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,18,622,156,466,106,332,46,125,3,5,0,0,0,0,1,4,155,465,105,332,46,124,3,5,0,0,0,0,1,4,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,99,38035,19193,18842,12197,12383,6169,5577,602,607,43,51,5,4,177,220,18963,18626,11992,12205,6146,5548,601,603,43,50,5,4,176,216,230,216,205,178,23,29,1,4,0,1,0,0,1,4 -050,01,053,Alabama,Escambia County,5,0,484,226,258,151,146,59,90,5,12,0,1,0,0,11,9,223,252,148,141,59,89,5,12,0,1,0,0,11,9,3,6,3,5,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,5,1,1890,906,984,543,586,297,336,41,28,0,2,0,0,25,32,886,966,525,569,296,335,40,28,0,2,0,0,25,32,20,18,18,17,1,1,1,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,5,2,2420,1236,1184,738,690,436,417,35,54,3,4,0,0,24,19,1219,1156,725,667,432,415,35,52,3,4,0,0,24,18,17,28,13,23,4,2,0,2,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,5,3,2687,1367,1320,787,747,495,498,57,53,7,3,0,0,21,19,1352,1295,773,727,494,493,57,53,7,3,0,0,21,19,15,25,14,20,1,5,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,5,4,2505,1292,1213,738,719,471,429,66,40,3,2,0,0,14,23,1273,1189,720,698,470,427,66,39,3,2,0,0,14,23,19,24,18,21,1,2,0,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,5,5,2638,1465,1173,771,665,617,438,54,52,5,5,1,1,17,12,1426,1150,738,646,613,436,54,50,5,5,1,1,15,12,39,23,33,19,4,2,0,2,0,0,0,0,2,0 -050,01,053,Alabama,Escambia County,5,6,2345,1292,1053,735,651,517,352,30,33,1,9,0,1,9,7,1255,1039,700,638,515,352,30,33,1,9,0,1,9,6,37,14,35,13,2,0,0,0,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,5,7,2583,1424,1159,851,760,523,348,35,39,2,4,0,1,13,7,1401,1145,828,749,523,347,35,38,2,4,0,1,13,6,23,14,23,11,0,1,0,1,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,5,8,2555,1437,1118,876,709,506,346,40,50,4,6,1,0,10,7,1418,1108,861,701,503,344,40,50,4,6,1,0,9,7,19,10,15,8,3,2,0,0,0,0,0,0,1,0 -050,01,053,Alabama,Escambia County,5,9,2948,1551,1397,971,886,520,435,36,55,8,6,0,0,16,15,1531,1390,953,883,518,431,36,55,8,6,0,0,16,15,20,7,18,3,2,4,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,5,10,2683,1431,1252,927,836,443,347,45,40,4,3,0,1,12,25,1418,1242,916,829,441,345,45,40,4,3,0,1,12,24,13,10,11,7,2,2,0,0,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,5,11,2559,1287,1272,891,888,359,350,28,27,4,1,0,1,5,5,1274,1265,879,882,359,349,28,27,4,1,0,1,4,5,13,7,12,6,0,1,0,0,0,0,0,0,1,0 -050,01,053,Alabama,Escambia County,5,12,2261,1088,1173,815,844,243,271,27,45,1,3,0,0,2,10,1081,1169,809,841,242,270,27,45,1,3,0,0,2,10,7,4,6,3,1,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,5,13,1937,918,1019,701,787,180,198,29,26,1,1,1,0,6,7,912,1016,695,784,180,198,29,26,1,1,1,0,6,7,6,3,6,3,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,5,14,1583,757,826,579,613,156,186,15,16,3,5,1,0,3,6,753,820,576,608,155,185,15,16,3,5,1,0,3,6,4,6,3,5,1,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,5,15,1335,578,757,458,555,106,183,13,13,0,0,0,0,1,6,575,753,456,553,105,181,13,13,0,0,0,0,1,6,3,4,2,2,1,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,5,16,1076,423,653,317,493,96,143,8,10,0,0,0,0,2,7,420,651,315,491,95,143,8,10,0,0,0,0,2,7,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,5,17,715,238,477,199,357,33,105,5,12,0,1,0,0,1,2,237,474,198,354,33,105,5,12,0,1,0,0,1,2,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,5,18,592,150,442,100,317,46,117,3,4,0,0,0,0,1,4,149,441,99,317,46,116,3,4,0,0,0,0,1,4,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,5,99,37796,19066,18730,12148,12249,6103,5589,572,609,46,56,4,5,193,222,18803,18521,11914,12078,6079,5561,571,603,46,56,4,5,189,218,263,209,234,171,24,28,1,6,0,0,0,0,4,4 -050,01,053,Alabama,Escambia County,6,0,481,245,236,149,134,78,83,8,9,0,1,0,0,10,9,241,231,145,130,78,82,8,9,0,1,0,0,10,9,4,5,4,4,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,6,1,1947,935,1012,575,595,287,348,43,30,0,2,0,0,30,37,909,992,553,576,286,347,42,30,0,2,0,0,28,37,26,20,22,19,1,1,1,0,0,0,0,0,2,0 -050,01,053,Alabama,Escambia County,6,2,2409,1222,1187,727,689,422,414,44,54,3,4,0,0,26,26,1207,1161,716,668,418,412,44,52,3,4,0,0,26,25,15,26,11,21,4,2,0,2,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,6,3,2669,1363,1306,792,731,482,500,59,50,6,3,0,0,24,22,1347,1280,777,710,481,495,59,50,6,3,0,0,24,22,16,26,15,21,1,5,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,6,4,2453,1274,1179,747,701,451,414,59,37,3,2,0,0,14,25,1252,1162,726,687,450,412,59,36,3,2,0,0,14,25,22,17,21,14,1,2,0,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,6,5,2615,1429,1186,734,679,614,425,55,58,5,5,1,1,20,18,1390,1165,701,662,610,423,55,56,5,5,1,1,18,18,39,21,33,17,4,2,0,2,0,0,0,0,2,0 -050,01,053,Alabama,Escambia County,6,6,2319,1258,1061,717,654,501,357,30,35,1,4,0,1,9,10,1223,1046,685,641,498,356,30,35,1,4,0,1,9,9,35,15,32,13,3,1,0,0,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,6,7,2569,1414,1155,831,746,535,361,36,37,2,3,0,1,10,7,1384,1136,801,731,535,360,36,35,2,3,0,1,10,6,30,19,30,15,0,1,0,2,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,6,8,2483,1414,1069,869,680,487,328,42,46,4,6,1,0,11,9,1396,1053,855,667,484,326,42,46,4,5,1,0,10,9,18,16,14,13,3,2,0,0,0,1,0,0,1,0 -050,01,053,Alabama,Escambia County,6,9,2877,1514,1363,969,862,491,433,33,46,5,6,0,0,16,16,1495,1354,952,858,489,429,33,46,5,5,0,0,16,16,19,9,17,4,2,4,0,0,0,1,0,0,0,0 -050,01,053,Alabama,Escambia County,6,10,2718,1445,1273,936,863,439,341,51,46,4,4,0,1,15,18,1433,1263,926,857,437,339,51,46,4,3,0,1,15,17,12,10,10,6,2,2,0,0,0,1,0,0,0,1 -050,01,053,Alabama,Escambia County,6,11,2560,1292,1268,868,862,381,371,31,28,5,1,1,0,6,6,1278,1258,856,853,381,370,31,28,5,1,1,0,4,6,14,10,12,9,0,1,0,0,0,0,0,0,2,0 -050,01,053,Alabama,Escambia County,6,12,2334,1142,1192,850,860,259,279,30,40,1,3,0,0,2,10,1135,1187,844,856,258,278,30,40,1,3,0,0,2,10,7,5,6,4,1,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,6,13,1975,935,1040,702,791,194,212,29,29,1,1,1,0,8,7,929,1036,696,788,194,211,29,29,1,1,1,0,8,7,6,4,6,3,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,6,14,1646,786,860,614,633,151,200,14,15,3,4,1,1,3,7,783,852,611,627,151,199,14,15,3,4,1,0,3,7,3,8,3,6,0,1,0,0,0,0,0,1,0,0 -050,01,053,Alabama,Escambia County,6,15,1306,577,729,451,540,112,170,13,15,0,0,0,0,1,4,574,724,449,537,111,168,13,15,0,0,0,0,1,4,3,5,2,3,1,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,6,16,1068,408,660,302,487,98,157,7,9,0,0,0,0,1,7,404,658,300,485,96,157,7,9,0,0,0,0,1,7,4,2,2,2,2,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,6,17,716,247,469,199,362,41,92,5,12,0,1,0,0,2,2,246,466,198,359,41,92,5,12,0,1,0,0,2,2,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,6,18,568,151,417,102,296,46,114,2,3,0,0,0,0,1,4,150,416,101,296,46,113,2,3,0,0,0,0,1,4,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,6,99,37713,19051,18662,12134,12165,6069,5599,591,599,43,50,5,5,209,244,18776,18440,11892,11988,6044,5569,590,592,43,47,5,4,202,240,275,222,242,177,25,30,1,7,0,3,0,1,7,4 -050,01,053,Alabama,Escambia County,7,0,478,253,225,166,133,63,75,12,7,0,2,0,0,12,8,239,218,154,128,62,74,12,7,0,1,0,0,11,8,14,7,12,5,1,1,0,0,0,1,0,0,1,0 -050,01,053,Alabama,Escambia County,7,1,1936,942,994,587,581,289,345,38,29,1,1,1,0,26,38,916,966,566,554,288,344,37,29,1,1,0,0,24,38,26,28,21,27,1,1,1,0,0,0,1,0,2,0 -050,01,053,Alabama,Escambia County,7,2,2330,1155,1175,667,687,419,418,42,42,1,5,0,0,26,23,1134,1147,650,663,416,415,42,41,1,5,0,0,25,23,21,28,17,24,3,3,0,1,0,0,0,0,1,0 -050,01,053,Alabama,Escambia County,7,3,2598,1332,1266,796,723,458,465,48,56,4,2,0,0,26,20,1312,1235,778,697,457,460,48,56,4,2,0,0,25,20,20,31,18,26,1,5,0,0,0,0,0,0,1,0 -050,01,053,Alabama,Escambia County,7,4,2502,1299,1203,755,690,450,441,66,42,7,7,1,1,20,22,1264,1181,725,677,449,437,64,39,6,6,1,1,19,21,35,22,30,13,1,4,2,3,1,1,0,0,1,1 -050,01,053,Alabama,Escambia County,7,5,2493,1375,1118,694,676,599,372,55,47,3,4,2,2,22,17,1327,1091,655,655,595,370,54,45,3,4,1,0,19,17,48,27,39,21,4,2,1,2,0,0,1,2,3,0 -050,01,053,Alabama,Escambia County,7,6,2305,1254,1051,707,633,505,372,28,33,2,4,2,0,10,9,1217,1038,676,620,501,372,28,33,2,4,1,0,9,9,37,13,31,13,4,0,0,0,0,0,1,0,1,0 -050,01,053,Alabama,Escambia County,7,7,2574,1472,1102,852,706,563,344,40,41,3,5,0,1,14,5,1429,1086,812,693,562,343,39,39,3,5,0,1,13,5,43,16,40,13,1,1,1,2,0,0,0,0,1,0 -050,01,053,Alabama,Escambia County,7,8,2491,1421,1070,851,682,513,330,45,44,2,4,0,0,10,10,1398,1055,830,669,511,329,45,44,2,4,0,0,10,9,23,15,21,13,2,1,0,0,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,7,9,2780,1483,1297,932,831,489,393,34,53,6,7,0,1,22,12,1467,1286,917,824,488,392,34,51,6,6,0,1,22,12,16,11,15,7,1,1,0,2,0,1,0,0,0,0 -050,01,053,Alabama,Escambia County,7,10,2826,1486,1340,975,901,442,365,50,51,3,3,0,1,16,19,1469,1327,959,891,441,362,50,51,3,3,0,1,16,19,17,13,16,10,1,3,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,7,11,2572,1298,1274,869,850,392,371,29,37,4,3,0,1,4,12,1284,1266,858,843,391,370,28,37,3,3,0,1,4,12,14,8,11,7,1,1,1,0,1,0,0,0,0,0 -050,01,053,Alabama,Escambia County,7,12,2391,1193,1198,859,843,285,297,43,42,1,3,0,0,5,13,1184,1192,851,840,284,294,43,42,1,3,0,0,5,13,9,6,8,3,1,3,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,7,13,2006,925,1081,686,820,200,209,29,44,1,0,0,0,9,8,915,1075,679,815,197,208,29,44,1,0,0,0,9,8,10,6,7,5,3,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,7,14,1692,830,862,631,637,174,197,19,17,1,3,0,0,5,8,827,856,629,633,173,195,19,17,1,3,0,0,5,8,3,6,2,4,1,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,7,15,1306,592,714,467,523,109,175,12,12,0,0,0,0,4,4,588,709,465,520,107,173,12,12,0,0,0,0,4,4,4,5,2,3,2,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,7,16,1057,402,655,301,490,91,147,8,13,0,1,0,0,2,4,399,653,299,488,90,147,8,13,0,1,0,0,2,4,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,7,17,681,246,435,198,325,44,95,4,12,0,1,0,0,0,2,245,432,197,322,44,95,4,12,0,1,0,0,0,2,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,7,18,583,148,435,106,315,40,110,2,6,0,0,0,0,0,4,148,434,106,314,40,110,2,6,0,0,0,0,0,4,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,7,99,37601,19106,18495,12099,12046,6125,5521,604,628,39,55,6,7,233,238,18762,18247,11806,11846,6096,5490,598,618,37,52,3,5,222,236,344,248,293,200,29,31,6,10,2,3,3,2,11,2 -050,01,053,Alabama,Escambia County,8,0,485,252,233,152,136,78,85,9,7,0,1,0,0,13,4,243,227,145,132,77,84,9,7,0,1,0,0,12,3,9,6,7,4,1,1,0,0,0,0,0,0,1,1 -050,01,053,Alabama,Escambia County,8,1,1917,941,976,609,571,268,340,35,28,1,2,2,0,26,35,892,946,566,544,265,338,34,28,1,2,1,0,25,34,49,30,43,27,3,2,1,0,0,0,1,0,1,1 -050,01,053,Alabama,Escambia County,8,2,2313,1138,1175,672,687,401,421,38,40,2,5,0,0,25,22,1112,1147,652,663,397,418,37,39,2,5,0,0,24,22,26,28,20,24,4,3,1,1,0,0,0,0,1,0 -050,01,053,Alabama,Escambia County,8,3,2502,1269,1233,741,702,446,438,48,64,3,3,1,0,30,26,1247,1204,721,678,445,433,48,64,3,3,1,0,29,26,22,29,20,24,1,5,0,0,0,0,0,0,1,0 -050,01,053,Alabama,Escambia County,8,4,2550,1312,1238,759,699,450,464,75,45,7,7,0,1,21,22,1273,1216,726,685,448,460,73,42,6,6,0,1,20,22,39,22,33,14,2,4,2,3,1,1,0,0,1,0 -050,01,053,Alabama,Escambia County,8,5,2362,1334,1028,668,618,578,336,59,49,3,6,3,2,23,17,1285,1005,628,603,575,334,58,47,3,4,1,0,20,17,49,23,40,15,3,2,1,2,0,2,2,2,3,0 -050,01,053,Alabama,Escambia County,8,6,2448,1336,1112,760,664,528,395,35,40,2,4,1,0,10,9,1296,1096,728,649,522,394,35,40,2,4,0,0,9,9,40,16,32,15,6,1,0,0,0,0,1,0,1,0 -050,01,053,Alabama,Escambia County,8,7,2530,1444,1086,818,688,570,343,39,44,3,4,0,1,14,6,1408,1071,784,676,570,342,38,42,3,4,0,1,13,6,36,15,34,12,0,1,1,2,0,0,0,0,1,0 -050,01,053,Alabama,Escambia County,8,8,2518,1411,1107,843,702,518,348,38,39,2,8,0,0,10,10,1384,1083,818,680,516,347,38,39,2,8,0,0,10,9,27,24,25,22,2,1,0,0,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,8,9,2698,1454,1244,907,821,492,348,31,54,6,7,1,1,17,13,1435,1231,891,812,491,347,31,52,6,6,0,1,16,13,19,13,16,9,1,1,0,2,0,1,1,0,1,0 -050,01,053,Alabama,Escambia County,8,10,2839,1514,1325,997,879,445,385,53,41,2,4,0,1,17,15,1494,1311,981,870,443,381,51,41,2,3,0,1,17,15,20,14,16,9,2,4,2,0,0,1,0,0,0,0 -050,01,053,Alabama,Escambia County,8,11,2618,1337,1281,878,843,412,385,38,39,3,4,1,1,5,9,1322,1273,865,837,412,384,37,39,2,3,1,1,5,9,15,8,13,6,0,1,1,0,1,1,0,0,0,0 -050,01,053,Alabama,Escambia County,8,12,2468,1250,1218,879,855,312,307,50,42,1,2,0,0,8,12,1239,1212,869,852,311,304,50,42,1,2,0,0,8,12,11,6,10,3,1,3,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,8,13,2019,943,1076,692,821,218,215,22,32,1,1,0,0,10,7,934,1070,685,816,216,214,22,32,1,1,0,0,10,7,9,6,7,5,2,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,8,14,1726,843,883,646,653,168,198,24,21,0,3,0,1,5,7,839,876,642,649,168,196,24,21,0,3,0,0,5,7,4,7,4,4,0,2,0,0,0,0,0,1,0,0 -050,01,053,Alabama,Escambia County,8,15,1340,607,733,467,527,124,186,13,17,0,0,0,0,3,3,604,729,465,524,123,185,13,17,0,0,0,0,3,3,3,4,2,3,1,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,8,16,1067,424,643,329,475,84,152,10,10,0,2,0,0,1,4,420,640,326,472,83,152,10,10,0,2,0,0,1,4,4,3,3,3,1,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,8,17,685,254,431,203,332,46,86,5,12,0,1,0,0,0,0,252,429,201,330,46,86,5,12,0,1,0,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,8,18,588,158,430,114,309,42,111,2,6,0,0,0,0,0,4,157,429,113,308,42,111,2,6,0,0,0,0,0,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,8,99,37673,19221,18452,12134,11982,6180,5543,624,630,36,64,9,8,238,225,18836,18195,11806,11780,6150,5510,615,620,34,58,4,5,227,222,385,257,328,202,30,33,9,10,2,6,5,3,11,3 -050,01,053,Alabama,Escambia County,9,0,491,257,234,142,136,87,80,13,9,0,2,0,0,15,7,249,227,136,131,86,80,13,9,0,1,0,0,14,6,8,7,6,5,1,0,0,0,0,1,0,0,1,1 -050,01,053,Alabama,Escambia County,9,1,1932,944,988,592,572,286,340,34,36,1,2,2,0,29,38,894,961,548,548,283,338,33,36,1,2,1,0,28,37,50,27,44,24,3,2,1,0,0,0,1,0,1,1 -050,01,053,Alabama,Escambia County,9,2,2369,1156,1213,716,688,368,450,42,39,2,5,0,0,28,31,1133,1184,699,664,365,447,41,38,2,5,0,0,26,30,23,29,17,24,3,3,1,1,0,0,0,0,2,1 -050,01,053,Alabama,Escambia County,9,3,2440,1236,1204,712,692,443,423,44,60,3,3,0,0,34,26,1214,1173,693,666,442,418,44,60,3,3,0,0,32,26,22,31,19,26,1,5,0,0,0,0,0,0,2,0 -050,01,053,Alabama,Escambia County,9,4,2640,1332,1308,767,710,465,520,67,48,7,7,1,1,25,22,1292,1283,734,694,463,516,65,45,6,6,1,1,23,21,40,25,33,16,2,4,2,3,1,1,0,0,2,1 -050,01,053,Alabama,Escambia County,9,5,2303,1289,1014,646,615,565,319,49,52,3,6,3,2,23,20,1238,986,604,595,562,317,48,50,3,4,1,0,20,20,51,28,42,20,3,2,1,2,0,2,2,2,3,0 -050,01,053,Alabama,Escambia County,9,6,2454,1357,1097,751,640,535,397,57,48,2,3,1,0,11,9,1314,1081,718,625,527,396,57,48,2,3,0,0,10,9,43,16,33,15,8,1,0,0,0,0,1,0,1,0 -050,01,053,Alabama,Escambia County,9,7,2487,1427,1060,799,687,577,320,31,42,3,4,0,1,17,6,1378,1044,754,675,575,319,30,39,3,4,0,1,16,6,49,16,45,12,2,1,1,3,0,0,0,0,1,0 -050,01,053,Alabama,Escambia County,9,8,2544,1399,1145,828,727,507,360,50,44,3,5,0,0,11,9,1379,1121,809,706,506,359,50,44,3,4,0,0,11,8,20,24,19,21,1,1,0,0,0,1,0,0,0,1 -050,01,053,Alabama,Escambia County,9,9,2638,1463,1175,912,763,490,343,38,48,4,10,1,1,18,10,1446,1163,898,755,489,342,38,46,4,9,0,1,17,10,17,12,14,8,1,1,0,2,0,1,1,0,1,0 -050,01,053,Alabama,Escambia County,9,10,2794,1487,1307,969,865,455,376,42,46,1,5,0,0,20,15,1466,1293,952,857,453,372,40,46,1,3,0,0,20,15,21,14,17,8,2,4,2,0,0,2,0,0,0,0 -050,01,053,Alabama,Escambia County,9,11,2689,1390,1299,912,846,425,397,41,42,4,4,2,1,6,9,1370,1290,896,838,424,397,40,42,3,3,2,1,5,9,20,9,16,8,1,0,1,0,1,1,0,0,1,0 -050,01,053,Alabama,Escambia County,9,12,2466,1236,1230,867,868,315,305,43,42,1,2,0,0,10,13,1227,1224,859,865,314,302,43,42,1,2,0,0,10,13,9,6,8,3,1,3,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,9,13,2123,1005,1118,720,835,243,236,31,39,1,1,0,0,10,7,994,1112,712,830,240,235,31,39,1,1,0,0,10,7,11,6,8,5,3,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,9,14,1732,841,891,656,667,156,198,24,17,0,3,0,1,5,5,838,884,653,663,156,196,24,17,0,3,0,0,5,5,3,7,3,4,0,2,0,0,0,0,0,1,0,0 -050,01,053,Alabama,Escambia County,9,15,1368,622,746,456,555,147,172,16,16,0,0,0,0,3,3,618,742,454,552,145,171,16,16,0,0,0,0,3,3,4,4,2,3,2,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,9,16,1105,459,646,360,472,89,156,8,12,0,2,0,0,2,4,456,643,357,469,89,156,8,12,0,2,0,0,2,4,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,9,17,663,263,400,205,313,53,76,4,11,0,0,0,0,1,0,261,398,203,311,53,76,4,11,0,0,0,0,1,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,9,18,601,154,447,110,329,42,110,2,5,0,0,0,0,0,3,153,446,109,328,42,110,2,5,0,0,0,0,0,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,9,99,37839,19317,18522,12120,11980,6248,5578,636,656,35,64,10,7,268,237,18920,18255,11788,11772,6214,5547,627,645,33,55,5,4,253,232,397,267,332,208,34,31,9,11,2,9,5,3,15,5 -050,01,053,Alabama,Escambia County,10,0,505,270,235,143,150,101,67,11,8,0,1,0,0,15,9,259,230,134,146,100,67,11,8,0,1,0,0,14,8,11,5,9,4,1,0,0,0,0,0,0,0,1,1 -050,01,053,Alabama,Escambia County,10,1,1915,940,975,580,572,284,327,39,34,1,2,2,0,34,40,891,956,538,556,281,325,38,34,1,2,1,0,32,39,49,19,42,16,3,2,1,0,0,0,1,0,2,1 -050,01,053,Alabama,Escambia County,10,2,2380,1153,1227,727,682,349,450,41,54,2,8,1,0,33,33,1121,1193,701,654,346,446,40,53,2,8,1,0,31,32,32,34,26,28,3,4,1,1,0,0,0,0,2,1 -050,01,053,Alabama,Escambia County,10,3,2462,1259,1203,703,696,464,428,51,52,3,2,1,0,37,25,1236,1169,683,667,463,424,51,52,3,2,1,0,35,24,23,34,20,29,1,4,0,0,0,0,0,0,2,1 -050,01,053,Alabama,Escambia County,10,4,2625,1303,1322,759,719,458,522,54,51,8,6,1,1,23,23,1270,1288,733,694,456,518,52,48,7,5,1,1,21,22,33,34,26,25,2,4,2,3,1,1,0,0,2,1 -050,01,053,Alabama,Escambia County,10,5,2205,1210,995,605,599,523,326,50,44,2,6,3,2,27,18,1154,961,561,574,519,324,49,41,2,4,1,0,22,18,56,34,44,25,4,2,1,3,0,2,2,2,5,0 -050,01,053,Alabama,Escambia County,10,6,2479,1359,1120,736,681,556,393,53,35,2,3,1,0,11,8,1310,1102,697,664,548,392,53,35,2,3,0,0,10,8,49,18,39,17,8,1,0,0,0,0,1,0,1,0 -050,01,053,Alabama,Escambia County,10,7,2438,1416,1022,774,636,588,335,35,41,2,5,0,1,17,4,1366,1010,728,628,586,334,34,38,2,5,0,1,16,4,50,12,46,8,2,1,1,3,0,0,0,0,1,0 -050,01,053,Alabama,Escambia County,10,8,2652,1487,1165,874,751,562,356,37,45,4,5,0,0,10,8,1465,1139,854,728,560,355,37,45,4,4,0,0,10,7,22,26,20,23,2,1,0,0,0,1,0,0,0,1 -050,01,053,Alabama,Escambia County,10,9,2532,1411,1121,877,705,462,346,42,47,7,11,1,1,22,11,1391,1108,860,696,461,345,42,45,7,10,0,1,21,11,20,13,17,9,1,1,0,2,0,1,1,0,1,0 -050,01,053,Alabama,Escambia County,10,10,2784,1478,1306,958,877,460,379,39,33,2,4,0,0,19,13,1453,1294,937,871,458,375,37,33,2,3,0,0,19,12,25,12,21,6,2,4,2,0,0,1,0,0,0,1 -050,01,053,Alabama,Escambia County,10,11,2697,1469,1228,960,785,458,373,37,52,5,4,2,1,7,13,1450,1221,946,779,457,373,36,52,4,3,2,1,5,13,19,7,14,6,1,0,1,0,1,1,0,0,2,0 -050,01,053,Alabama,Escambia County,10,12,2468,1206,1262,821,863,329,348,45,37,1,2,0,0,10,12,1198,1255,814,859,328,345,45,37,1,2,0,0,10,12,8,7,7,4,1,3,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,10,13,2191,1041,1150,754,832,245,265,32,44,1,1,0,0,9,8,1027,1145,743,828,242,264,32,44,1,1,0,0,9,8,14,5,11,4,3,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,10,14,1796,845,951,646,715,172,196,22,32,0,2,0,1,5,5,843,944,644,710,172,195,22,32,0,2,0,0,5,5,2,7,2,5,0,1,0,0,0,0,0,1,0,0 -050,01,053,Alabama,Escambia County,10,15,1386,647,739,480,542,139,180,25,14,0,0,0,0,3,3,643,735,478,539,137,179,25,14,0,0,0,0,3,3,4,4,2,3,2,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,10,16,1118,467,651,361,459,94,172,10,14,0,2,0,0,2,4,465,648,359,456,94,172,10,14,0,2,0,0,2,4,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,10,17,707,285,422,219,321,61,91,4,10,0,0,0,0,1,0,283,421,217,320,61,91,4,10,0,0,0,0,1,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,10,18,589,136,453,103,328,31,114,2,8,0,0,0,0,0,3,135,452,102,327,31,114,2,8,0,0,0,0,0,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,10,99,37929,19382,18547,12080,11913,6336,5668,629,655,40,64,12,7,285,240,18960,18271,11729,11696,6300,5638,620,643,38,57,7,4,266,233,422,276,351,217,36,30,9,12,2,7,5,3,19,7 -050,01,053,Alabama,Escambia County,11,0,512,275,237,153,146,92,72,15,7,0,1,0,0,15,11,264,227,144,138,91,72,15,6,0,1,0,0,14,10,11,10,9,8,1,0,0,1,0,0,0,0,1,1 -050,01,053,Alabama,Escambia County,11,1,1898,915,983,544,592,286,323,41,23,1,2,2,0,41,43,876,959,512,571,283,321,40,23,1,2,1,0,39,42,39,24,32,21,3,2,1,0,0,0,1,0,2,1 -050,01,053,Alabama,Escambia County,11,2,2394,1151,1243,709,699,372,450,34,53,2,8,1,0,33,33,1126,1210,691,672,368,446,33,52,2,8,1,0,31,32,25,33,18,27,4,4,1,1,0,0,0,0,2,1 -050,01,053,Alabama,Escambia County,11,3,2424,1222,1202,695,674,443,442,40,52,1,2,1,0,42,32,1200,1174,676,651,442,438,40,52,1,2,1,0,40,31,22,28,19,23,1,4,0,0,0,0,0,0,2,1 -050,01,053,Alabama,Escambia County,11,4,2616,1330,1286,775,705,463,495,56,56,8,6,1,1,27,23,1294,1253,746,681,461,491,54,53,7,5,1,1,25,22,36,33,29,24,2,4,2,3,1,1,0,0,2,1 -050,01,053,Alabama,Escambia County,11,5,2173,1207,966,606,594,515,305,51,42,2,6,3,2,30,17,1148,935,559,572,511,303,50,39,2,4,1,0,25,17,59,31,47,22,4,2,1,3,0,2,2,2,5,0 -050,01,053,Alabama,Escambia County,11,6,2476,1369,1107,703,670,611,384,41,42,2,2,1,0,11,9,1316,1095,660,659,603,383,41,42,2,2,0,0,10,9,53,12,43,11,8,1,0,0,0,0,1,0,1,0 -050,01,053,Alabama,Escambia County,11,7,2522,1481,1041,785,641,639,355,38,36,2,4,0,1,17,4,1423,1021,731,625,637,354,37,33,2,4,0,1,16,4,58,20,54,16,2,1,1,3,0,0,0,0,1,0 -050,01,053,Alabama,Escambia County,11,8,2713,1545,1168,885,748,603,362,43,42,4,6,0,0,10,10,1517,1147,858,731,602,361,43,42,4,4,0,0,10,9,28,21,27,17,1,1,0,0,0,2,0,0,0,1 -050,01,053,Alabama,Escambia County,11,9,2501,1428,1073,877,682,480,323,42,50,8,6,1,2,20,10,1409,1059,861,671,479,323,42,48,8,5,0,2,19,10,19,14,16,11,1,0,0,2,0,1,1,0,1,0 -050,01,053,Alabama,Escambia County,11,10,2781,1486,1295,956,863,468,383,40,36,2,4,0,0,20,9,1461,1283,935,857,466,379,38,36,2,3,0,0,20,8,25,12,21,6,2,4,2,0,0,1,0,0,0,1 -050,01,053,Alabama,Escambia County,11,11,2818,1528,1290,994,841,480,373,38,60,5,4,4,2,7,10,1504,1280,975,832,479,373,37,60,4,3,4,2,5,10,24,10,19,9,1,0,1,0,1,1,0,0,2,0 -050,01,053,Alabama,Escambia County,11,12,2493,1242,1251,811,842,375,352,45,38,1,2,0,0,10,17,1234,1244,804,839,374,348,45,38,1,2,0,0,10,17,8,7,7,3,1,4,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,11,13,2215,1048,1167,770,831,236,271,32,57,1,1,0,0,9,7,1034,1161,759,826,233,270,32,57,1,1,0,0,9,7,14,6,11,5,3,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,11,14,1835,866,969,660,726,178,212,23,22,0,2,0,1,5,6,864,963,658,722,178,211,23,22,0,2,0,0,5,6,2,6,2,4,0,1,0,0,0,0,0,1,0,0 -050,01,053,Alabama,Escambia County,11,15,1461,691,770,527,582,136,175,25,10,0,0,0,0,3,3,686,766,525,579,133,174,25,10,0,0,0,0,3,3,5,4,2,3,3,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,11,16,1104,477,627,374,463,90,145,11,13,0,2,0,0,2,4,474,624,372,460,89,145,11,13,0,2,0,0,2,4,3,3,2,3,1,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,11,17,716,278,438,213,332,60,93,4,13,0,0,0,0,1,0,275,437,210,331,60,93,4,13,0,0,0,0,1,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,11,18,597,145,452,112,352,32,88,1,7,0,0,0,0,0,5,144,451,111,351,32,88,1,7,0,0,0,0,0,5,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,11,99,38249,19684,18565,12149,11983,6559,5603,620,659,39,58,14,9,303,253,19249,18289,11787,11768,6521,5573,611,646,37,50,9,6,284,246,435,276,362,215,38,30,9,13,2,8,5,3,19,7 -050,01,053,Alabama,Escambia County,12,0,463,253,210,135,128,89,65,13,7,0,2,0,0,16,8,243,202,127,123,88,65,13,6,0,1,0,0,15,7,10,8,8,5,1,0,0,1,0,1,0,0,1,1 -050,01,053,Alabama,Escambia County,12,1,1922,923,999,534,594,308,333,40,23,1,2,2,0,38,47,886,974,504,572,305,331,39,23,1,2,1,0,36,46,37,25,30,22,3,2,1,0,0,0,1,0,2,1 -050,01,053,Alabama,Escambia County,12,2,2379,1161,1218,735,685,356,441,34,53,2,8,1,0,33,31,1127,1187,709,660,351,437,33,52,2,8,1,0,31,30,34,31,26,25,5,4,1,1,0,0,0,0,2,1 -050,01,053,Alabama,Escambia County,12,3,2391,1181,1210,650,669,440,453,47,56,1,2,1,0,42,30,1162,1183,634,647,439,449,47,56,1,2,1,0,40,29,19,27,16,22,1,4,0,0,0,0,0,0,2,1 -050,01,053,Alabama,Escambia County,12,4,2553,1320,1233,787,674,444,478,56,51,8,6,1,1,24,23,1282,1208,756,659,442,473,54,48,7,5,1,1,22,22,38,25,31,15,2,5,2,3,1,1,0,0,2,1 -050,01,053,Alabama,Escambia County,12,5,2227,1240,987,630,590,526,326,48,44,2,6,3,2,31,19,1177,959,579,571,522,324,47,41,2,4,1,0,26,19,63,28,51,19,4,2,1,3,0,2,2,2,5,0 -050,01,053,Alabama,Escambia County,12,6,2437,1342,1095,683,680,604,359,41,45,2,2,1,0,11,9,1284,1077,635,663,596,358,41,45,2,2,0,0,10,9,58,18,48,17,8,1,0,0,0,0,1,0,1,0 -050,01,053,Alabama,Escambia County,12,7,2582,1517,1065,791,644,664,379,41,33,2,4,0,1,19,4,1474,1044,752,627,662,378,40,30,2,4,0,1,18,4,43,21,39,17,2,1,1,3,0,0,0,0,1,0 -050,01,053,Alabama,Escambia County,12,8,2720,1561,1159,884,731,615,365,49,47,4,6,0,0,9,10,1528,1139,852,714,614,364,49,47,4,5,0,0,9,9,33,20,32,17,1,1,0,0,0,1,0,0,0,1 -050,01,053,Alabama,Escambia County,12,9,2519,1425,1094,872,686,486,340,40,49,6,8,1,1,20,10,1403,1077,853,672,485,340,40,47,6,7,0,1,19,10,22,17,19,14,1,0,0,2,0,1,1,0,1,0 -050,01,053,Alabama,Escambia County,12,10,2728,1470,1258,941,843,458,356,51,42,2,5,0,0,18,12,1444,1244,919,836,456,352,49,42,2,3,0,0,18,11,26,14,22,7,2,4,2,0,0,2,0,0,0,1 -050,01,053,Alabama,Escambia County,12,11,2858,1548,1310,1002,858,493,387,38,49,5,4,3,1,7,11,1523,1300,982,849,492,387,37,49,4,3,3,1,5,11,25,10,20,9,1,0,1,0,1,1,0,0,2,0 -050,01,053,Alabama,Escambia County,12,12,2505,1270,1235,829,834,383,345,47,42,1,2,0,0,10,12,1261,1226,821,829,382,341,47,42,1,2,0,0,10,12,9,9,8,5,1,4,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,12,13,2223,1066,1157,769,835,254,272,33,42,1,1,0,0,9,7,1054,1151,760,830,251,271,33,42,1,1,0,0,9,7,12,6,9,5,3,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,12,14,1872,862,1010,657,743,180,229,20,28,0,2,0,1,5,7,860,1004,655,739,180,228,20,28,0,2,0,0,5,7,2,6,2,4,0,1,0,0,0,0,0,1,0,0 -050,01,053,Alabama,Escambia County,12,15,1512,718,794,546,602,145,170,24,19,0,0,0,0,3,3,713,790,544,599,142,169,24,19,0,0,0,0,3,3,5,4,2,3,3,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,12,16,1110,475,635,374,466,88,151,11,12,0,2,0,0,2,4,472,631,372,462,87,151,11,12,0,2,0,0,2,4,3,4,2,4,1,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,12,17,704,270,434,216,330,49,91,4,13,0,0,0,0,1,0,267,433,213,329,49,91,4,13,0,0,0,0,1,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,12,18,614,164,450,127,353,36,88,1,5,0,0,0,0,0,4,163,449,126,352,36,88,1,5,0,0,0,0,0,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,12,99,38319,19766,18553,12162,11945,6618,5628,638,660,37,62,13,7,298,251,19323,18278,11793,11733,6579,5597,629,647,35,53,8,4,279,244,443,275,369,212,39,31,9,13,2,9,5,3,19,7 -050,01,053,Alabama,Escambia County,13,0,467,254,213,134,129,90,65,13,7,2,1,0,1,15,10,244,204,126,123,89,65,13,6,1,1,0,0,15,9,10,9,8,6,1,0,0,1,1,0,0,1,0,1 -050,01,053,Alabama,Escambia County,13,1,1913,918,995,528,588,308,333,40,23,1,4,0,0,41,47,887,965,499,567,307,332,39,21,1,3,0,0,41,42,31,30,29,21,1,1,1,2,0,1,0,0,0,5 -050,01,053,Alabama,Escambia County,13,2,2377,1158,1219,734,684,356,443,31,52,3,7,0,1,34,32,1124,1183,708,659,351,436,31,50,3,7,0,0,31,31,34,36,26,25,5,7,0,2,0,0,0,1,3,1 -050,01,053,Alabama,Escambia County,13,3,2377,1177,1200,645,664,440,453,48,54,0,3,1,1,43,25,1156,1173,631,644,438,449,46,54,0,1,1,0,40,25,21,27,14,20,2,4,2,0,0,2,0,1,3,0 -050,01,053,Alabama,Escambia County,13,4,2520,1300,1220,780,666,441,474,53,49,4,5,1,3,21,23,1266,1195,750,651,439,469,52,47,4,4,1,1,20,23,34,25,30,15,2,5,1,2,0,1,0,2,1,0 -050,01,053,Alabama,Escambia County,13,5,2227,1241,986,630,590,528,326,45,41,3,7,3,4,32,18,1176,959,578,570,523,325,44,40,3,4,1,3,27,17,65,27,52,20,5,1,1,1,0,3,2,1,5,1 -050,01,053,Alabama,Escambia County,13,6,2453,1345,1108,680,679,605,359,39,45,4,7,3,2,14,16,1284,1079,633,662,597,356,39,45,3,3,1,1,11,12,61,29,47,17,8,3,0,0,1,4,2,1,3,4 -050,01,053,Alabama,Escambia County,13,7,2606,1528,1078,794,650,665,382,41,30,6,7,3,2,19,7,1481,1055,755,633,664,381,39,29,4,7,1,1,18,4,47,23,39,17,1,1,2,1,2,0,2,1,1,3 -050,01,053,Alabama,Escambia County,13,8,2706,1556,1150,876,725,616,364,48,43,5,7,3,3,8,8,1516,1126,843,708,614,362,47,43,4,4,2,2,6,7,40,24,33,17,2,2,1,0,1,3,1,1,2,1 -050,01,053,Alabama,Escambia County,13,9,2503,1423,1080,872,680,486,339,39,44,8,8,0,1,18,8,1397,1065,853,667,484,337,38,44,6,8,0,1,16,8,26,15,19,13,2,2,1,0,2,0,0,0,2,0 -050,01,053,Alabama,Escambia County,13,10,2703,1456,1247,934,837,455,356,48,41,3,3,0,0,16,10,1433,1236,913,830,454,353,47,40,3,3,0,0,16,10,23,11,21,7,1,3,1,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,13,11,2868,1553,1315,1002,862,497,390,39,50,5,5,0,0,10,8,1525,1299,981,850,494,389,37,48,4,4,0,0,9,8,28,16,21,12,3,1,2,2,1,1,0,0,1,0 -050,01,053,Alabama,Escambia County,13,12,2516,1277,1239,833,837,385,348,46,40,1,0,0,0,12,14,1266,1231,824,832,384,345,45,40,1,0,0,0,12,14,11,8,9,5,1,3,1,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,13,13,2242,1076,1166,775,840,257,276,33,41,1,1,0,0,10,8,1062,1158,766,835,252,274,33,40,1,1,0,0,10,8,14,8,9,5,5,2,0,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,13,14,1877,864,1013,660,745,179,232,19,26,0,3,0,0,6,7,861,1008,657,742,179,230,19,26,0,3,0,0,6,7,3,5,3,3,0,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,13,15,1515,719,796,548,602,146,171,21,17,1,1,0,0,3,5,715,792,546,598,144,171,21,17,1,1,0,0,3,5,4,4,2,4,2,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,13,16,1101,471,630,372,465,87,151,10,10,1,0,0,0,1,4,471,625,372,461,87,150,10,10,1,0,0,0,1,4,0,5,0,4,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,13,17,705,272,433,216,329,51,92,2,10,0,1,0,0,3,1,268,432,212,329,51,91,2,10,0,1,0,0,3,1,4,1,4,0,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,13,18,616,166,450,128,354,37,89,1,5,0,0,0,0,0,2,165,448,127,353,37,88,1,5,0,0,0,0,0,2,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,13,99,38292,19754,18538,12141,11926,6629,5643,616,628,48,70,14,18,306,253,19297,18233,11774,11714,6588,5603,603,615,40,55,7,9,285,237,457,305,367,212,41,40,13,13,8,15,7,9,21,16 -050,01,055,Alabama,Etowah County,1,0,1280,649,631,518,493,114,117,1,3,2,3,1,1,13,14,622,609,497,472,110,116,0,3,2,3,0,1,13,14,27,22,21,21,4,1,1,0,0,0,1,0,0,0 -050,01,055,Alabama,Etowah County,1,1,5326,2730,2596,2157,2025,508,503,6,13,13,5,1,3,45,47,2637,2517,2077,1955,496,497,6,12,13,5,0,3,45,45,93,79,80,70,12,6,0,1,0,0,1,0,0,2 -050,01,055,Alabama,Etowah County,1,2,6702,3457,3245,2688,2453,695,724,10,9,19,7,4,3,41,49,3354,3165,2600,2386,684,717,9,9,19,7,1,0,41,46,103,80,88,67,11,7,1,0,0,0,3,3,0,3 -050,01,055,Alabama,Etowah County,1,3,6928,3574,3354,2835,2617,674,677,12,13,17,11,1,0,35,36,3504,3277,2773,2551,670,672,12,12,17,10,0,0,32,32,70,77,62,66,4,5,0,1,0,1,1,0,3,4 -050,01,055,Alabama,Etowah County,1,4,7147,3650,3497,2825,2731,762,703,12,13,19,15,2,2,30,33,3544,3418,2731,2665,752,696,10,12,19,15,2,1,30,29,106,79,94,66,10,7,2,1,0,0,0,1,0,4 -050,01,055,Alabama,Etowah County,1,5,6253,3110,3143,2514,2460,508,626,12,11,45,30,6,3,25,13,2945,3065,2362,2388,502,620,11,11,41,30,6,3,23,13,165,78,152,72,6,6,1,0,4,0,0,0,2,0 -050,01,055,Alabama,Etowah County,1,6,6713,3296,3417,2757,2795,468,574,14,13,35,11,5,1,17,23,3190,3355,2664,2739,461,572,12,10,35,11,2,0,16,23,106,62,93,56,7,2,2,3,0,0,3,1,1,0 -050,01,055,Alabama,Etowah County,1,7,6764,3372,3392,2874,2744,446,598,11,13,17,17,4,0,20,20,3274,3335,2785,2693,442,593,9,13,17,17,1,0,20,19,98,57,89,51,4,5,2,0,0,0,3,0,0,1 -050,01,055,Alabama,Etowah County,1,8,7106,3453,3653,2935,3048,458,552,14,12,20,26,2,0,24,15,3368,3599,2860,3003,452,545,12,12,20,25,1,0,23,14,85,54,75,45,6,7,2,0,0,1,1,0,1,1 -050,01,055,Alabama,Etowah County,1,9,7724,3743,3981,3180,3265,503,639,16,20,16,20,2,2,26,35,3690,3939,3132,3230,500,634,15,19,16,19,1,2,26,35,53,42,48,35,3,5,1,1,0,1,1,0,0,0 -050,01,055,Alabama,Etowah County,1,10,7374,3582,3792,3069,3177,463,553,22,20,8,21,0,0,20,21,3544,3774,3037,3160,458,552,22,20,7,21,0,0,20,21,38,18,32,17,5,1,0,0,1,0,0,0,0,0 -050,01,055,Alabama,Etowah County,1,11,7205,3562,3643,3147,3159,374,429,15,13,10,14,1,0,15,28,3531,3617,3121,3135,372,429,14,12,10,14,0,0,14,27,31,26,26,24,2,0,1,1,0,0,1,0,1,1 -050,01,055,Alabama,Etowah County,1,12,5519,2623,2896,2366,2574,221,293,8,10,8,6,1,0,19,13,2615,2880,2359,2560,221,292,7,10,8,6,1,0,19,12,8,16,7,14,0,1,1,0,0,0,0,0,0,1 -050,01,055,Alabama,Etowah County,1,13,4848,2223,2625,2003,2310,197,286,5,9,2,9,0,0,16,11,2216,2615,1996,2300,197,286,5,9,2,9,0,0,16,11,7,10,7,10,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,1,14,4448,1947,2501,1774,2187,156,286,7,6,3,7,0,3,7,12,1933,2492,1762,2179,155,286,7,6,3,7,0,3,6,11,14,9,12,8,1,0,0,0,0,0,0,0,1,1 -050,01,055,Alabama,Etowah County,1,15,4327,1844,2483,1674,2202,157,261,0,3,3,2,0,1,10,14,1835,2475,1666,2194,156,261,0,3,3,2,0,1,10,14,9,8,8,8,1,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,1,16,3601,1417,2184,1281,1933,121,236,2,4,1,2,0,0,12,9,1408,2176,1273,1926,120,235,2,4,1,2,0,0,12,9,9,8,8,7,1,1,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,1,17,2413,787,1626,726,1462,59,154,0,1,1,0,0,0,1,9,785,1622,724,1459,59,154,0,1,1,0,0,0,1,8,2,4,2,3,0,0,0,0,0,0,0,0,0,1 -050,01,055,Alabama,Etowah County,1,18,1770,478,1292,435,1158,41,130,0,0,0,0,0,0,2,4,478,1291,435,1157,41,130,0,0,0,0,0,0,2,4,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,1,99,103448,49497,53951,41758,44793,6925,8341,167,186,239,206,30,19,378,406,48473,53221,40854,44152,6848,8287,153,178,234,203,15,14,369,387,1024,730,904,641,77,54,14,8,5,3,15,5,9,19 -050,01,055,Alabama,Etowah County,2,0,1289,653,636,521,497,115,118,1,3,2,3,1,1,13,14,625,613,499,475,111,117,0,3,2,3,0,1,13,14,28,23,22,22,4,1,1,0,0,0,1,0,0,0 -050,01,055,Alabama,Etowah County,2,1,5283,2705,2578,2140,2009,502,500,6,13,13,5,1,3,43,48,2612,2499,2060,1939,490,494,6,12,13,5,0,3,43,46,93,79,80,70,12,6,0,1,0,0,1,0,0,2 -050,01,055,Alabama,Etowah County,2,2,6638,3428,3210,2667,2429,686,714,10,9,19,7,4,3,42,48,3325,3130,2579,2362,675,707,9,9,19,7,1,0,42,45,103,80,88,67,11,7,1,0,0,0,3,3,0,3 -050,01,055,Alabama,Etowah County,2,3,6920,3569,3351,2830,2612,677,679,12,13,17,11,1,0,32,36,3499,3274,2768,2546,673,674,12,12,17,10,0,0,29,32,70,77,62,66,4,5,0,1,0,1,1,0,3,4 -050,01,055,Alabama,Etowah County,2,4,7162,3662,3500,2830,2734,766,705,12,13,19,15,2,2,33,31,3558,3421,2738,2668,756,698,10,12,19,15,2,1,33,27,104,79,92,66,10,7,2,1,0,0,0,1,0,4 -050,01,055,Alabama,Etowah County,2,5,6284,3124,3160,2525,2472,512,631,12,11,45,29,6,3,24,14,2959,3082,2373,2400,506,625,11,11,41,29,6,3,22,14,165,78,152,72,6,6,1,0,4,0,0,0,2,0 -050,01,055,Alabama,Etowah County,2,6,6638,3256,3382,2718,2756,466,572,14,13,35,11,5,1,18,29,3150,3320,2625,2700,459,570,12,10,35,11,2,0,17,29,106,62,93,56,7,2,2,3,0,0,3,1,1,0 -050,01,055,Alabama,Etowah County,2,7,6729,3355,3374,2856,2727,445,598,11,13,17,17,4,0,22,19,3256,3317,2766,2676,441,593,9,13,17,17,1,0,22,18,99,57,90,51,4,5,2,0,0,0,3,0,0,1 -050,01,055,Alabama,Etowah County,2,8,7052,3427,3625,2910,3018,458,551,14,12,20,26,2,0,23,18,3342,3571,2835,2973,452,544,12,12,20,25,1,0,22,17,85,54,75,45,6,7,2,0,0,1,1,0,1,1 -050,01,055,Alabama,Etowah County,2,9,7713,3737,3976,3171,3257,507,642,16,20,16,20,2,2,25,35,3684,3934,3123,3222,504,637,15,19,16,19,1,2,25,35,53,42,48,35,3,5,1,1,0,1,1,0,0,0 -050,01,055,Alabama,Etowah County,2,10,7389,3589,3800,3072,3181,465,556,22,20,8,21,0,0,22,22,3551,3782,3040,3164,460,555,22,20,7,21,0,0,22,22,38,18,32,17,5,1,0,0,1,0,0,0,0,0 -050,01,055,Alabama,Etowah County,2,11,7248,3581,3667,3163,3177,379,434,15,13,10,14,1,0,13,29,3550,3641,3137,3153,377,434,14,12,10,14,0,0,12,28,31,26,26,24,2,0,1,1,0,0,1,0,1,1 -050,01,055,Alabama,Etowah County,2,12,5535,2636,2899,2376,2577,222,294,8,10,8,6,1,0,21,12,2628,2883,2369,2563,222,293,7,10,8,6,1,0,21,11,8,16,7,14,0,1,1,0,0,0,0,0,0,1 -050,01,055,Alabama,Etowah County,2,13,4852,2226,2626,2005,2312,198,285,5,9,2,9,0,0,16,11,2219,2616,1998,2302,198,285,5,9,2,9,0,0,16,11,7,10,7,10,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,2,14,4432,1941,2491,1768,2176,156,287,7,6,3,7,0,3,7,12,1927,2482,1756,2168,155,287,7,6,3,7,0,3,6,11,14,9,12,8,1,0,0,0,0,0,0,0,1,1 -050,01,055,Alabama,Etowah County,2,15,4321,1843,2478,1671,2194,159,262,0,3,3,2,0,1,10,16,1834,2470,1663,2186,158,262,0,3,3,2,0,1,10,16,9,8,8,8,1,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,2,16,3602,1419,2183,1283,1930,121,238,2,4,1,2,0,0,12,9,1410,2175,1275,1923,120,237,2,4,1,2,0,0,12,9,9,8,8,7,1,1,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,2,17,2427,793,1634,731,1464,60,157,0,1,1,0,0,0,1,12,791,1630,729,1461,60,157,0,1,1,0,0,0,1,11,2,4,2,3,0,0,0,0,0,0,0,0,0,1 -050,01,055,Alabama,Etowah County,2,18,1772,481,1291,438,1159,41,129,0,0,0,0,0,0,2,3,481,1290,438,1158,41,129,0,0,0,0,0,0,2,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,2,99,103286,49425,53861,41675,44681,6935,8352,167,186,239,205,30,19,379,418,48401,53130,40771,44039,6858,8298,153,178,234,202,15,14,370,399,1024,731,904,642,77,54,14,8,5,3,15,5,9,19 -050,01,055,Alabama,Etowah County,3,0,1381,693,688,548,522,124,140,1,3,2,4,2,1,16,18,643,647,504,482,121,139,0,3,2,4,0,1,16,18,50,41,44,40,3,1,1,0,0,0,2,0,0,0 -050,01,055,Alabama,Etowah County,3,1,5217,2634,2583,2100,2035,465,469,9,12,9,12,2,8,49,47,2527,2483,2011,1948,452,463,6,11,9,12,0,4,49,45,107,100,89,87,13,6,3,1,0,0,2,4,0,2 -050,01,055,Alabama,Etowah County,3,2,6544,3409,3135,2691,2376,642,686,13,10,16,10,7,3,40,50,3312,3046,2612,2299,634,681,9,9,16,10,1,0,40,47,97,89,79,77,8,5,4,1,0,0,6,3,0,3 -050,01,055,Alabama,Etowah County,3,3,6862,3562,3300,2810,2562,694,670,11,20,15,11,1,1,31,36,3477,3222,2738,2496,685,665,11,18,15,11,0,0,28,32,85,78,72,66,9,5,0,2,0,0,1,1,3,4 -050,01,055,Alabama,Etowah County,3,4,6931,3540,3391,2735,2652,733,670,14,16,19,16,2,4,37,33,3425,3306,2631,2581,724,663,12,15,19,16,2,1,37,30,115,85,104,71,9,7,2,1,0,0,0,3,0,3 -050,01,055,Alabama,Etowah County,3,5,6441,3201,3240,2571,2544,538,639,14,11,42,29,10,5,26,12,3029,3158,2417,2471,533,633,12,11,37,29,6,2,24,12,172,82,154,73,5,6,2,0,5,0,4,3,2,0 -050,01,055,Alabama,Etowah County,3,6,6338,3120,3218,2598,2614,453,544,14,13,32,16,6,2,17,29,2989,3142,2483,2545,446,542,11,10,32,16,2,0,15,29,131,76,115,69,7,2,3,3,0,0,4,2,2,0 -050,01,055,Alabama,Etowah County,3,7,6796,3339,3457,2836,2834,443,572,15,16,17,16,7,1,21,18,3222,3386,2732,2771,439,567,13,15,17,16,1,0,20,17,117,71,104,63,4,5,2,1,0,0,6,1,1,1 -050,01,055,Alabama,Etowah County,3,8,6917,3387,3530,2875,2905,453,568,11,11,22,25,3,1,23,20,3307,3472,2805,2856,448,562,9,11,22,24,1,0,22,19,80,58,70,49,5,6,2,0,0,1,2,1,1,1 -050,01,055,Alabama,Etowah County,3,9,7617,3731,3886,3160,3189,503,626,20,21,17,14,2,2,29,34,3670,3835,3103,3146,501,620,19,20,17,13,1,2,29,34,61,51,57,43,2,6,1,1,0,1,1,0,0,0 -050,01,055,Alabama,Etowah County,3,10,7412,3578,3834,3071,3197,458,569,18,19,7,26,0,0,24,23,3536,3812,3034,3176,454,568,18,19,6,26,0,0,24,23,42,22,37,21,4,1,0,0,1,0,0,0,0,0 -050,01,055,Alabama,Etowah County,3,11,7589,3715,3874,3242,3323,434,487,10,13,13,18,0,0,16,33,3686,3849,3218,3299,432,487,9,13,13,18,0,0,14,32,29,25,24,24,2,0,1,0,0,0,0,0,2,1 -050,01,055,Alabama,Etowah County,3,12,5613,2690,2923,2410,2584,236,304,13,10,10,11,1,0,20,14,2680,2901,2401,2564,236,303,12,10,10,11,1,0,20,13,10,22,9,20,0,1,1,0,0,0,0,0,0,1 -050,01,055,Alabama,Etowah County,3,13,4875,2237,2638,2016,2327,191,271,9,16,4,12,0,0,17,12,2226,2629,2005,2318,191,271,9,16,4,12,0,0,17,12,11,9,11,9,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,3,14,4418,1973,2445,1795,2123,161,292,5,7,3,6,0,2,9,15,1957,2436,1781,2115,161,292,4,7,3,6,0,2,8,14,16,9,14,8,0,0,1,0,0,0,0,0,1,1 -050,01,055,Alabama,Etowah County,3,15,4227,1783,2444,1634,2172,135,251,0,3,3,3,0,2,11,13,1775,2432,1626,2160,135,251,0,3,3,3,0,2,11,13,8,12,8,12,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,3,16,3585,1421,2164,1280,1923,126,226,2,3,1,3,0,0,12,9,1413,2156,1273,1916,125,225,2,3,1,3,0,0,12,9,8,8,7,7,1,1,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,3,17,2402,789,1613,726,1432,60,167,0,1,1,0,0,0,2,13,787,1608,724,1429,60,167,0,1,1,0,0,0,2,11,2,5,2,3,0,0,0,0,0,0,0,0,0,2 -050,01,055,Alabama,Etowah County,3,18,1811,495,1316,451,1195,42,118,0,0,0,0,0,0,2,3,495,1315,451,1194,42,118,0,0,0,0,0,0,2,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,3,99,102976,49297,53679,41549,44509,6891,8269,179,205,233,232,43,32,402,432,48156,52835,40549,43766,6819,8217,156,195,227,230,15,14,390,413,1141,844,1000,743,72,52,23,10,6,2,28,18,12,19 -050,01,055,Alabama,Etowah County,4,0,1336,653,683,519,558,108,101,0,2,5,6,2,0,19,16,605,652,477,528,105,100,0,2,5,6,0,0,18,16,48,31,42,30,3,1,0,0,0,0,2,0,1,0 -050,01,055,Alabama,Etowah County,4,1,5318,2747,2571,2172,2038,498,441,9,13,8,14,4,8,56,57,2607,2461,2050,1943,487,436,6,10,8,14,1,3,55,55,140,110,122,95,11,5,3,3,0,0,3,5,1,2 -050,01,055,Alabama,Etowah County,4,2,6567,3364,3203,2669,2467,613,657,14,12,14,11,9,4,45,52,3265,3093,2594,2372,604,651,9,9,13,11,1,1,44,49,99,110,75,95,9,6,5,3,1,0,8,3,1,3 -050,01,055,Alabama,Etowah County,4,3,6868,3564,3304,2790,2534,707,686,11,23,15,14,4,1,37,46,3467,3221,2708,2469,699,678,11,19,15,13,0,0,34,42,97,83,82,65,8,8,0,4,0,1,4,1,3,4 -050,01,055,Alabama,Etowah County,4,4,6789,3463,3326,2693,2599,697,654,17,11,19,22,2,5,35,35,3340,3237,2586,2527,688,647,14,10,17,21,1,1,34,31,123,89,107,72,9,7,3,1,2,1,1,4,1,4 -050,01,055,Alabama,Etowah County,4,5,6487,3273,3214,2627,2534,549,619,14,10,45,27,11,5,27,19,3099,3128,2475,2457,544,614,11,10,39,27,6,1,24,19,174,86,152,77,5,5,3,0,6,0,5,4,3,0 -050,01,055,Alabama,Etowah County,4,6,6122,2991,3131,2486,2522,433,546,14,15,30,18,8,3,20,27,2854,3063,2369,2464,427,544,9,10,30,18,2,0,17,27,137,68,117,58,6,2,5,5,0,0,6,3,3,0 -050,01,055,Alabama,Etowah County,4,7,6845,3361,3484,2844,2846,459,577,11,18,17,20,7,3,23,20,3239,3400,2737,2775,455,571,8,15,16,20,1,0,22,19,122,84,107,71,4,6,3,3,1,0,6,3,1,1 -050,01,055,Alabama,Etowah County,4,8,6798,3349,3449,2868,2842,416,543,13,12,20,30,6,2,26,20,3270,3393,2804,2798,410,536,10,12,20,28,1,0,25,19,79,56,64,44,6,7,3,0,0,2,5,2,1,1 -050,01,055,Alabama,Etowah County,4,9,7481,3653,3828,3070,3144,514,621,21,17,16,14,4,3,28,29,3584,3776,3009,3101,512,615,19,16,15,14,1,1,28,29,69,52,61,43,2,6,2,1,1,0,3,2,0,0 -050,01,055,Alabama,Etowah County,4,10,7514,3641,3873,3112,3238,471,569,20,18,13,23,1,2,24,23,3583,3840,3061,3208,466,568,20,18,12,23,0,0,24,23,58,33,51,30,5,1,0,0,1,0,1,2,0,0 -050,01,055,Alabama,Etowah County,4,11,7448,3640,3808,3140,3225,450,523,19,11,13,16,0,0,18,33,3616,3784,3120,3203,448,522,18,11,13,16,0,0,17,32,24,24,20,22,2,1,1,0,0,0,0,0,1,1 -050,01,055,Alabama,Etowah County,4,12,6094,2940,3154,2621,2790,277,324,9,12,9,11,1,0,23,17,2923,3130,2605,2768,277,323,8,12,9,11,1,0,23,16,17,24,16,22,0,1,1,0,0,0,0,0,0,1 -050,01,055,Alabama,Etowah County,4,13,5014,2305,2709,2081,2398,197,278,7,12,4,9,0,0,16,12,2293,2702,2069,2391,197,278,7,12,4,9,0,0,16,12,12,7,12,7,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,4,14,4415,2003,2412,1819,2102,166,279,7,8,4,6,0,2,7,15,1989,2402,1807,2093,165,279,6,8,4,6,0,2,7,14,14,10,12,9,1,0,1,0,0,0,0,0,0,1 -050,01,055,Alabama,Etowah County,4,15,4108,1726,2382,1589,2120,124,239,1,3,3,4,0,3,9,13,1718,2374,1582,2112,123,239,1,3,3,4,0,3,9,13,8,8,7,8,1,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,4,16,3588,1413,2175,1269,1921,127,239,2,5,2,2,0,0,13,8,1406,2168,1263,1915,126,238,2,5,2,2,0,0,13,8,7,7,6,6,1,1,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,4,17,2397,818,1579,754,1400,62,168,0,1,1,0,0,0,1,10,815,1576,751,1397,62,168,0,1,1,0,0,0,1,10,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,4,18,1799,498,1301,455,1177,42,120,0,0,0,0,0,0,1,4,498,1300,455,1176,42,120,0,0,0,0,0,0,1,4,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,4,99,102988,49402,53586,41578,44455,6910,8184,189,203,238,247,59,41,428,456,48171,52700,40522,43697,6837,8127,159,183,226,243,15,12,412,438,1231,886,1056,758,73,57,30,20,12,4,44,29,16,18 -050,01,055,Alabama,Etowah County,5,0,1258,676,582,543,455,105,100,1,3,3,5,3,1,21,18,633,539,507,421,103,95,0,2,3,4,0,0,20,17,43,43,36,34,2,5,1,1,0,1,3,1,1,1 -050,01,055,Alabama,Etowah County,5,1,5253,2663,2590,2103,2049,480,439,10,13,10,12,5,11,55,66,2511,2465,1970,1944,473,434,6,9,8,12,1,2,53,64,152,125,133,105,7,5,4,4,2,0,4,9,2,2 -050,01,055,Alabama,Etowah County,5,2,6576,3383,3193,2686,2497,595,606,16,12,24,13,11,5,51,60,3274,3075,2603,2395,588,599,9,8,23,13,1,1,50,59,109,118,83,102,7,7,7,4,1,0,10,4,1,1 -050,01,055,Alabama,Etowah County,5,3,6913,3590,3323,2793,2541,721,702,12,18,16,13,6,5,42,44,3486,3229,2714,2469,709,695,10,14,15,12,0,0,38,39,104,94,79,72,12,7,2,4,1,1,6,5,4,5 -050,01,055,Alabama,Etowah County,5,4,6772,3482,3290,2705,2541,710,673,15,15,17,23,3,6,32,32,3351,3193,2590,2465,702,666,11,12,16,21,1,0,31,29,131,97,115,76,8,7,4,3,1,2,2,6,1,3 -050,01,055,Alabama,Etowah County,5,5,6524,3294,3230,2622,2536,572,622,15,14,42,26,13,9,30,23,3099,3137,2453,2459,567,617,11,11,36,25,5,3,27,22,195,93,169,77,5,5,4,3,6,1,8,6,3,1 -050,01,055,Alabama,Etowah County,5,6,6043,2916,3127,2424,2484,414,575,13,14,33,25,9,6,23,23,2769,3037,2300,2411,408,570,7,9,31,24,2,1,21,22,147,90,124,73,6,5,6,5,2,1,7,5,2,1 -050,01,055,Alabama,Etowah County,5,7,6909,3371,3538,2838,2902,473,582,13,15,14,16,10,4,23,19,3249,3445,2738,2823,469,576,8,12,13,16,0,0,21,18,122,93,100,79,4,6,5,3,1,0,10,4,2,1 -050,01,055,Alabama,Etowah County,5,8,6710,3330,3380,2837,2757,417,557,19,13,29,28,8,3,20,22,3241,3319,2765,2712,411,549,16,11,28,26,2,0,19,21,89,61,72,45,6,8,3,2,1,2,6,3,1,1 -050,01,055,Alabama,Etowah County,5,9,7284,3569,3715,3009,3062,493,589,18,17,15,21,5,4,29,22,3497,3653,2948,3011,490,582,15,16,14,20,1,2,29,22,72,62,61,51,3,7,3,1,1,1,4,2,0,0 -050,01,055,Alabama,Etowah County,5,10,7589,3645,3944,3116,3287,465,584,20,21,15,19,3,3,26,30,3585,3909,3064,3256,461,583,20,20,14,19,0,1,26,30,60,35,52,31,4,1,0,1,1,0,3,2,0,0 -050,01,055,Alabama,Etowah County,5,11,7431,3606,3825,3084,3217,481,550,12,14,10,21,0,0,19,23,3581,3799,3063,3194,479,549,11,13,10,21,0,0,18,22,25,26,21,23,2,1,1,1,0,0,0,0,1,1 -050,01,055,Alabama,Etowah County,5,12,6353,3133,3220,2761,2838,330,331,12,11,13,10,1,0,16,30,3114,3205,2744,2825,330,330,10,11,13,10,1,0,16,29,19,15,17,13,0,1,2,0,0,0,0,0,0,1 -050,01,055,Alabama,Etowah County,5,13,5199,2399,2800,2186,2477,183,288,8,12,7,10,0,0,15,13,2390,2792,2177,2469,183,288,8,12,7,10,0,0,15,13,9,8,9,8,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,5,14,4438,2035,2403,1848,2112,164,257,6,8,4,7,0,2,13,17,2021,2393,1836,2102,163,257,5,8,4,7,0,2,13,17,14,10,12,10,1,0,1,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,5,15,4057,1712,2345,1570,2057,129,263,2,5,2,4,0,2,9,14,1705,2337,1564,2049,128,263,2,5,2,4,0,2,9,14,7,8,6,8,1,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,5,16,3470,1376,2094,1255,1862,102,214,3,5,2,3,0,0,14,10,1367,2084,1248,1854,101,212,2,5,2,3,0,0,14,10,9,10,7,8,1,2,1,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,5,17,2488,843,1645,770,1434,69,197,0,3,1,1,0,0,3,10,841,1641,768,1430,69,197,0,3,1,1,0,0,3,10,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,5,18,1758,480,1278,437,1161,41,113,0,1,0,0,0,0,2,3,480,1277,437,1160,41,113,0,1,0,0,0,0,2,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,5,99,103025,49503,53522,41587,44269,6944,8242,195,214,257,257,77,61,443,479,48194,52529,40489,43449,6875,8175,151,182,240,248,14,14,425,461,1309,993,1098,820,69,67,44,32,17,9,63,47,18,18 -050,01,055,Alabama,Etowah County,6,0,1282,652,630,517,504,102,96,1,3,3,5,4,2,25,20,603,581,476,461,100,94,0,2,3,4,0,1,24,19,49,49,41,43,2,2,1,1,0,1,4,1,1,1 -050,01,055,Alabama,Etowah County,6,1,5169,2630,2539,2063,1976,488,450,10,13,10,20,5,12,54,68,2470,2382,1926,1844,479,444,5,9,7,19,1,2,52,64,160,157,137,132,9,6,5,4,3,1,4,10,2,4 -050,01,055,Alabama,Etowah County,6,2,6654,3452,3202,2731,2541,608,564,16,11,22,14,13,5,62,67,3329,3084,2639,2439,600,557,7,7,21,14,1,1,61,66,123,118,92,102,8,7,9,4,1,0,12,4,1,1 -050,01,055,Alabama,Etowah County,6,3,6790,3525,3265,2762,2472,685,702,13,24,15,16,6,6,44,45,3413,3164,2676,2393,672,695,11,19,14,15,0,1,40,41,112,101,86,79,13,7,2,5,1,1,6,5,4,4 -050,01,055,Alabama,Etowah County,6,4,6886,3571,3315,2764,2552,727,688,17,11,20,18,5,9,38,37,3435,3205,2646,2465,719,681,13,8,18,17,2,1,37,33,136,110,118,87,8,7,4,3,2,1,3,8,1,4 -050,01,055,Alabama,Etowah County,6,5,6452,3237,3215,2545,2517,589,623,14,12,43,27,14,10,32,26,3068,3098,2406,2418,584,618,9,9,36,26,5,2,28,25,169,117,139,99,5,5,5,3,7,1,9,8,4,1 -050,01,055,Alabama,Etowah County,6,6,6008,2920,3088,2417,2464,418,556,16,14,34,20,10,6,25,28,2747,2985,2272,2380,411,551,8,9,32,19,3,1,21,25,173,103,145,84,7,5,8,5,2,1,7,5,4,3 -050,01,055,Alabama,Etowah County,6,7,6737,3261,3476,2705,2830,486,594,15,14,20,13,13,4,22,21,3137,3386,2604,2755,484,589,9,10,19,12,2,0,19,20,124,90,101,75,2,5,6,4,1,1,11,4,3,1 -050,01,055,Alabama,Etowah County,6,8,6757,3356,3401,2838,2776,434,557,19,16,37,27,8,3,20,22,3265,3334,2764,2724,428,550,16,14,36,25,2,0,19,21,91,67,74,52,6,7,3,2,1,2,6,3,1,1 -050,01,055,Alabama,Etowah County,6,9,7154,3546,3608,3015,2964,452,573,23,16,20,25,5,4,31,26,3472,3545,2952,2913,449,566,20,14,19,25,1,2,31,25,74,63,63,51,3,7,3,2,1,0,4,2,0,1 -050,01,055,Alabama,Etowah County,6,10,7665,3708,3957,3129,3279,511,604,21,17,18,19,3,4,26,34,3642,3920,3072,3249,507,603,21,16,17,19,0,0,25,33,66,37,57,30,4,1,0,1,1,0,3,4,1,1 -050,01,055,Alabama,Etowah County,6,11,7325,3503,3822,2974,3199,483,554,12,21,8,22,2,0,24,26,3475,3792,2952,3171,481,553,11,21,8,22,0,0,23,25,28,30,22,28,2,1,1,0,0,0,2,0,1,1 -050,01,055,Alabama,Etowah County,6,12,6738,3339,3399,2936,2955,355,389,17,9,9,14,1,0,21,32,3314,3387,2913,2944,355,389,15,9,9,14,1,0,21,31,25,12,23,11,0,0,2,0,0,0,0,0,0,1 -050,01,055,Alabama,Etowah County,6,13,5359,2515,2844,2287,2522,198,288,8,12,8,9,0,0,14,13,2506,2833,2278,2511,198,288,8,12,8,9,0,0,14,13,9,11,9,11,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,6,14,4457,2023,2434,1841,2154,157,245,5,9,4,6,0,2,16,18,2010,2423,1830,2145,157,245,4,8,4,6,0,2,15,17,13,11,11,9,0,0,1,1,0,0,0,0,1,1 -050,01,055,Alabama,Etowah County,6,15,3998,1674,2324,1530,2030,129,269,3,3,2,8,0,1,10,13,1664,2316,1522,2022,127,269,3,3,2,8,0,1,10,13,10,8,8,8,2,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,6,16,3419,1354,2065,1238,1839,101,205,3,7,2,4,0,2,10,8,1345,2054,1231,1831,100,204,2,6,2,4,0,1,10,8,9,11,7,8,1,1,1,1,0,0,0,1,0,0 -050,01,055,Alabama,Etowah County,6,17,2470,863,1607,781,1401,79,192,0,2,1,1,0,0,2,11,861,1601,779,1397,79,192,0,2,1,1,0,0,2,9,2,6,2,4,0,0,0,0,0,0,0,0,0,2 -050,01,055,Alabama,Etowah County,6,18,1760,483,1277,454,1154,28,118,0,1,0,0,0,0,1,4,483,1276,454,1153,28,118,0,1,0,0,0,0,1,4,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,6,99,103080,49612,53468,41527,44129,7030,8267,213,215,276,268,89,70,477,519,48239,52366,40392,43215,6958,8206,162,179,256,259,18,15,453,492,1373,1102,1135,914,72,61,51,36,20,9,71,55,24,27 -050,01,055,Alabama,Etowah County,7,0,1298,673,625,528,492,105,103,2,3,5,3,4,1,29,23,624,581,490,453,103,102,0,2,5,2,0,0,26,22,49,44,38,39,2,1,2,1,0,1,4,1,3,1 -050,01,055,Alabama,Etowah County,7,1,5058,2534,2524,1988,1998,460,416,11,9,11,24,5,14,59,63,2381,2345,1860,1848,454,410,5,5,9,22,0,2,53,58,153,179,128,150,6,6,6,4,2,2,5,12,6,5 -050,01,055,Alabama,Etowah County,7,2,6626,3411,3215,2704,2550,582,555,18,13,20,15,14,6,73,76,3266,3077,2594,2432,576,549,7,7,19,15,0,1,70,73,145,138,110,118,6,6,11,6,1,0,14,5,3,3 -050,01,055,Alabama,Etowah County,7,3,6810,3498,3312,2726,2535,683,678,14,18,16,16,8,7,51,58,3366,3218,2625,2467,670,670,10,12,15,15,0,0,46,54,132,94,101,68,13,8,4,6,1,1,8,7,5,4 -050,01,055,Alabama,Etowah County,7,4,6946,3616,3330,2776,2570,749,681,19,13,24,21,6,11,42,34,3481,3200,2666,2467,742,675,14,8,19,19,1,1,39,30,135,130,110,103,7,6,5,5,5,2,5,10,3,4 -050,01,055,Alabama,Etowah County,7,5,6305,3140,3165,2414,2453,613,630,19,13,42,28,17,11,35,30,2957,3034,2267,2344,609,628,13,10,35,25,4,1,29,26,183,131,147,109,4,2,6,3,7,3,13,10,6,4 -050,01,055,Alabama,Etowah County,7,6,6097,3003,3094,2477,2454,429,559,21,14,34,30,12,7,30,30,2808,2985,2314,2370,423,554,12,7,31,27,4,1,24,26,195,109,163,84,6,5,9,7,3,3,8,6,6,4 -050,01,055,Alabama,Etowah County,7,7,6536,3165,3371,2627,2745,459,563,15,17,27,18,12,6,25,22,3022,3274,2513,2664,455,558,8,11,26,18,1,1,19,22,143,97,114,81,4,5,7,6,1,0,11,5,6,0 -050,01,055,Alabama,Etowah County,7,8,6779,3377,3402,2869,2752,437,581,20,15,27,24,9,4,15,26,3290,3337,2801,2705,432,573,16,12,26,23,1,0,14,24,87,65,68,47,5,8,4,3,1,1,8,4,1,2 -050,01,055,Alabama,Etowah County,7,9,7124,3470,3654,2946,3011,442,573,26,15,23,26,5,5,28,24,3389,3574,2881,2948,438,565,22,12,21,26,0,1,27,22,81,80,65,63,4,8,4,3,2,0,5,4,1,2 -050,01,055,Alabama,Etowah County,7,10,7699,3775,3924,3182,3229,514,609,24,21,21,24,5,4,29,37,3702,3884,3120,3197,511,609,24,20,19,24,0,0,28,34,73,40,62,32,3,0,0,1,2,0,5,4,1,3 -050,01,055,Alabama,Etowah County,7,11,7341,3514,3827,2999,3197,461,559,14,20,11,24,3,0,26,27,3479,3794,2971,3167,459,556,13,20,10,24,0,0,26,27,35,33,28,30,2,3,1,0,1,0,3,0,0,0 -050,01,055,Alabama,Etowah County,7,12,7099,3487,3612,3053,3101,386,442,16,12,12,18,1,1,19,38,3462,3592,3032,3083,385,442,14,12,12,18,0,0,19,37,25,20,21,18,1,0,2,0,0,0,1,1,0,1 -050,01,055,Alabama,Etowah County,7,13,5364,2517,2847,2251,2530,229,280,6,11,11,9,0,0,20,17,2510,2838,2244,2521,229,280,6,11,11,9,0,0,20,17,7,9,7,9,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,7,14,4546,2066,2480,1889,2189,156,256,5,10,4,5,0,2,12,18,2055,2473,1881,2183,155,256,4,10,4,5,0,1,11,18,11,7,8,6,1,0,1,0,0,0,0,1,1,0 -050,01,055,Alabama,Etowah County,7,15,3889,1644,2245,1516,1963,111,255,3,5,3,11,0,1,11,10,1635,2235,1510,1953,108,255,3,5,3,11,0,1,11,10,9,10,6,10,3,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,7,16,3372,1390,1982,1254,1769,122,197,4,6,2,3,0,0,8,7,1383,1976,1249,1764,121,196,3,6,2,3,0,0,8,7,7,6,5,5,1,1,1,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,7,17,2498,884,1614,796,1414,83,185,0,4,2,1,0,0,3,10,881,1611,793,1411,83,185,0,4,2,1,0,0,3,10,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,7,18,1787,501,1286,471,1149,28,130,0,1,0,0,0,0,2,6,500,1284,470,1147,28,130,0,1,0,0,0,0,2,6,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,7,99,103174,49665,53509,41466,44101,7049,8252,237,220,295,300,101,80,517,556,48191,52312,40281,43124,6981,8193,174,175,269,287,11,10,475,523,1474,1197,1185,977,68,59,63,45,26,13,90,70,42,33 -050,01,055,Alabama,Etowah County,8,0,1317,681,636,548,486,94,124,1,2,6,6,5,2,27,16,616,602,494,458,93,122,0,2,5,5,0,0,24,15,65,34,54,28,1,2,1,0,1,1,5,2,3,1 -050,01,055,Alabama,Etowah County,8,1,4886,2444,2442,1942,1910,414,422,13,11,14,17,9,17,52,65,2300,2275,1832,1777,407,415,4,5,11,15,1,2,45,61,144,167,110,133,7,7,9,6,3,2,8,15,7,4 -050,01,055,Alabama,Etowah County,8,2,6743,3510,3233,2753,2533,621,568,20,16,17,23,16,7,83,86,3325,3077,2610,2402,613,560,7,7,16,23,1,1,78,84,185,156,143,131,8,8,13,9,1,0,15,6,5,2 -050,01,055,Alabama,Etowah County,8,3,6808,3518,3290,2737,2506,682,674,15,26,20,18,8,7,56,59,3376,3172,2636,2417,660,666,11,18,19,17,0,1,50,53,142,118,101,89,22,8,4,8,1,1,8,6,6,6 -050,01,055,Alabama,Etowah County,8,4,7121,3731,3390,2842,2616,789,688,19,13,25,23,7,9,49,41,3583,3270,2721,2524,781,683,14,8,20,20,1,0,46,35,148,120,121,92,8,5,5,5,5,3,6,9,3,6 -050,01,055,Alabama,Etowah County,8,5,6093,3026,3067,2342,2366,581,625,17,10,39,25,17,11,30,30,2849,2944,2204,2266,578,622,10,7,31,22,2,1,24,26,177,123,138,100,3,3,7,3,8,3,15,10,6,4 -050,01,055,Alabama,Etowah County,8,6,6251,2998,3253,2446,2568,457,612,19,13,30,19,14,11,32,30,2822,3122,2307,2465,451,606,9,7,27,16,4,2,24,26,176,131,139,103,6,6,10,6,3,3,10,9,8,4 -050,01,055,Alabama,Etowah County,8,7,6311,3077,3234,2535,2627,455,536,17,15,26,22,14,7,30,27,2919,3123,2411,2536,451,530,10,8,25,22,1,1,21,26,158,111,124,91,4,6,7,7,1,0,13,6,9,1 -050,01,055,Alabama,Etowah County,8,8,6851,3385,3466,2866,2822,448,575,23,12,24,23,10,6,14,28,3283,3398,2787,2773,444,568,17,9,23,23,0,0,12,25,102,68,79,49,4,7,6,3,1,0,10,6,2,3 -050,01,055,Alabama,Etowah County,8,9,7131,3496,3635,2959,2971,441,581,21,16,35,29,6,7,34,31,3413,3546,2893,2902,437,573,17,13,33,29,0,2,33,27,83,89,66,69,4,8,4,3,2,0,6,5,1,4 -050,01,055,Alabama,Etowah County,8,10,7684,3764,3920,3173,3224,518,615,22,17,18,20,5,6,28,38,3690,3872,3110,3185,516,615,19,16,17,20,1,1,27,35,74,48,63,39,2,0,3,1,1,0,4,5,1,3 -050,01,055,Alabama,Etowah County,8,11,7344,3521,3823,2984,3197,475,558,12,24,15,17,6,0,29,27,3473,3787,2947,3164,471,555,11,24,14,17,1,0,29,27,48,36,37,33,4,3,1,0,1,0,5,0,0,0 -050,01,055,Alabama,Etowah County,8,12,7451,3639,3812,3146,3227,437,506,19,14,13,23,2,1,22,41,3610,3790,3122,3207,435,506,17,14,13,23,1,0,22,40,29,22,24,20,2,0,2,0,0,0,1,1,0,1 -050,01,055,Alabama,Etowah County,8,13,5468,2584,2884,2306,2553,232,296,14,11,7,8,1,0,24,16,2575,2868,2298,2537,232,296,14,11,7,8,0,0,24,16,9,16,8,16,0,0,0,0,0,0,1,0,0,0 -050,01,055,Alabama,Etowah County,8,14,4596,2107,2489,1914,2204,170,238,10,13,3,5,0,1,10,28,2093,2477,1904,2194,169,238,7,12,3,5,0,1,10,27,14,12,10,10,1,0,3,1,0,0,0,0,0,1 -050,01,055,Alabama,Etowah County,8,15,3856,1657,2199,1520,1919,124,255,5,5,3,11,0,0,5,9,1648,2192,1513,1912,122,255,5,5,3,11,0,0,5,9,9,7,7,7,2,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,8,16,3330,1364,1966,1253,1761,100,184,3,6,1,5,0,0,7,10,1357,1956,1247,1753,99,182,3,6,1,5,0,0,7,10,7,10,6,8,1,2,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,8,17,2510,898,1612,806,1412,88,183,0,4,1,1,0,0,3,12,894,1607,802,1408,88,183,0,4,1,1,0,0,3,11,4,5,4,4,0,0,0,0,0,0,0,0,0,1 -050,01,055,Alabama,Etowah County,8,18,1777,492,1285,456,1132,33,145,0,1,1,1,0,0,2,6,491,1282,455,1129,33,145,0,1,1,1,0,0,2,6,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,8,99,103528,49892,53636,41528,44034,7159,8385,250,229,298,296,120,92,537,600,48317,52360,40293,43009,7080,8320,175,177,270,283,13,12,486,559,1575,1276,1235,1025,79,65,75,52,28,13,107,80,51,41 -050,01,055,Alabama,Etowah County,9,0,1371,715,656,568,499,104,117,2,2,5,5,5,2,31,31,656,615,521,465,103,116,0,1,4,4,0,0,28,29,59,41,47,34,1,1,2,1,1,1,5,2,3,2 -050,01,055,Alabama,Etowah County,9,1,4843,2454,2389,1940,1872,414,401,15,11,18,26,10,22,57,57,2272,2210,1789,1731,409,394,6,5,15,24,2,4,51,52,182,179,151,141,5,7,9,6,3,2,8,18,6,5 -050,01,055,Alabama,Etowah County,9,2,6823,3535,3288,2760,2571,624,584,22,15,18,22,19,7,92,89,3344,3126,2617,2436,617,576,7,6,17,22,1,1,85,85,191,162,143,135,7,8,15,9,1,0,18,6,7,4 -050,01,055,Alabama,Etowah County,9,3,6791,3459,3332,2703,2561,651,657,14,26,22,20,8,7,61,61,3309,3204,2588,2464,637,649,9,17,21,19,0,1,54,54,150,128,115,97,14,8,5,9,1,1,8,6,7,7 -050,01,055,Alabama,Etowah County,9,4,7203,3764,3439,2843,2629,816,720,19,13,25,23,8,13,53,41,3604,3316,2716,2538,804,714,14,8,19,20,1,0,50,36,160,123,127,91,12,6,5,5,6,3,7,13,3,5 -050,01,055,Alabama,Etowah County,9,5,6004,2991,3013,2304,2328,575,605,20,9,42,24,20,15,30,32,2790,2872,2146,2214,572,602,13,6,33,21,2,2,24,27,201,141,158,114,3,3,7,3,9,3,18,13,6,5 -050,01,055,Alabama,Etowah County,9,6,6315,3081,3234,2509,2549,480,604,24,14,28,22,14,13,26,32,2890,3106,2362,2454,471,598,12,7,24,19,3,2,18,26,191,128,147,95,9,6,12,7,4,3,11,11,8,6 -050,01,055,Alabama,Etowah County,9,7,6176,2965,3211,2444,2567,423,569,17,21,33,19,16,8,32,27,2801,3092,2317,2471,419,563,9,12,32,19,1,0,23,27,164,119,127,96,4,6,8,9,1,0,15,8,9,0 -050,01,055,Alabama,Etowah County,9,8,6945,3472,3473,2911,2821,491,578,22,13,24,27,12,7,12,27,3358,3394,2821,2767,487,570,16,9,23,24,1,0,10,24,114,79,90,54,4,8,6,4,1,3,11,7,2,3 -050,01,055,Alabama,Etowah County,9,9,7022,3483,3539,2950,2924,442,547,22,10,29,20,6,5,34,33,3397,3458,2881,2862,437,539,19,8,28,20,0,0,32,29,86,81,69,62,5,8,3,2,1,0,6,5,2,4 -050,01,055,Alabama,Etowah County,9,10,7540,3674,3866,3057,3179,537,610,24,12,23,17,7,7,26,41,3600,3819,2997,3142,535,610,21,11,22,17,0,1,25,38,74,47,60,37,2,0,3,1,1,0,7,6,1,3 -050,01,055,Alabama,Etowah County,9,11,7433,3554,3879,3025,3212,461,592,14,27,17,25,5,0,32,23,3499,3843,2980,3180,457,588,13,27,16,25,1,0,32,23,55,36,45,32,4,4,1,0,1,0,4,0,0,0 -050,01,055,Alabama,Etowah County,9,12,7347,3623,3724,3096,3126,461,532,23,13,14,18,2,1,27,34,3595,3707,3073,3112,459,532,21,12,14,18,1,0,27,33,28,17,23,14,2,0,2,1,0,0,1,1,0,1 -050,01,055,Alabama,Etowah County,9,13,5942,2804,3138,2495,2769,266,326,11,9,8,9,1,0,23,25,2788,3120,2481,2752,265,326,11,8,8,9,0,0,23,25,16,18,14,17,1,0,0,1,0,0,1,0,0,0 -050,01,055,Alabama,Etowah County,9,14,4735,2191,2544,1986,2254,182,246,6,13,3,5,0,2,14,24,2180,2533,1977,2244,181,246,5,13,3,5,0,1,14,24,11,11,9,10,1,0,1,0,0,0,0,1,0,0 -050,01,055,Alabama,Etowah County,9,15,3844,1659,2185,1534,1909,112,255,5,6,2,9,0,0,6,6,1651,2177,1529,1901,109,255,5,6,2,9,0,0,6,6,8,8,5,8,3,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,9,16,3217,1331,1886,1225,1679,96,186,3,7,1,5,0,2,6,7,1325,1874,1219,1671,96,184,3,6,1,5,0,1,6,7,6,12,6,8,0,2,0,1,0,0,0,1,0,0 -050,01,055,Alabama,Etowah County,9,17,2507,883,1624,801,1395,76,214,0,3,1,1,0,0,5,11,879,1619,797,1390,76,214,0,3,1,1,0,0,5,11,4,5,4,5,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,9,18,1835,533,1302,485,1150,45,143,0,2,1,1,0,0,2,6,531,1298,484,1146,44,143,0,2,1,1,0,0,2,6,2,4,1,4,1,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,9,99,103893,50171,53722,41636,43994,7256,8486,263,226,314,298,133,111,569,607,48469,52383,40295,42940,7178,8419,184,167,284,282,13,13,515,562,1702,1339,1341,1054,78,67,79,59,30,16,120,98,54,45 -050,01,055,Alabama,Etowah County,10,0,1338,697,641,552,490,101,118,3,2,2,3,6,2,33,26,643,596,510,453,100,116,0,1,2,2,0,0,31,24,54,45,42,37,1,2,3,1,0,1,6,2,2,2 -050,01,055,Alabama,Etowah County,10,1,4911,2442,2469,1960,1917,373,432,18,10,18,20,12,22,61,68,2237,2288,1798,1777,365,425,6,3,14,18,1,1,53,64,205,181,162,140,8,7,12,7,4,2,11,21,8,4 -050,01,055,Alabama,Etowah County,10,2,6728,3558,3170,2767,2478,632,548,22,15,25,20,21,8,91,101,3353,3015,2615,2355,624,537,6,6,23,19,1,1,84,97,205,155,152,123,8,11,16,9,2,1,20,7,7,4 -050,01,055,Alabama,Etowah County,10,3,6844,3513,3331,2751,2585,640,615,15,26,23,22,12,10,72,73,3343,3191,2628,2481,621,607,9,15,20,21,0,1,65,66,170,140,123,104,19,8,6,11,3,1,12,9,7,7 -050,01,055,Alabama,Etowah County,10,4,7314,3789,3525,2845,2678,825,743,23,24,32,23,9,14,55,43,3626,3399,2719,2587,812,738,17,17,27,20,1,0,50,37,163,126,126,91,13,5,6,7,5,3,8,14,5,6 -050,01,055,Alabama,Etowah County,10,5,6003,3031,2972,2340,2267,576,620,21,11,39,23,22,15,33,36,2827,2826,2184,2152,574,618,12,5,30,19,1,1,26,31,204,146,156,115,2,2,9,6,9,4,21,14,7,5 -050,01,055,Alabama,Etowah County,10,6,6257,3083,3174,2470,2521,508,572,20,14,32,22,17,14,36,31,2855,3025,2292,2408,499,565,7,6,27,18,4,3,26,25,228,149,178,113,9,7,13,8,5,4,13,11,10,6 -050,01,055,Alabama,Etowah County,10,7,5987,2871,3116,2372,2485,401,553,17,18,31,25,17,10,33,25,2692,2997,2237,2392,395,547,7,9,29,24,1,0,23,25,179,119,135,93,6,6,10,9,2,1,16,10,10,0 -050,01,055,Alabama,Etowah County,10,8,7075,3514,3561,2943,2901,499,585,18,14,27,25,13,10,14,26,3415,3480,2870,2847,495,577,12,9,25,24,1,0,12,23,99,81,73,54,4,8,6,5,2,1,12,10,2,3 -050,01,055,Alabama,Etowah County,10,9,6941,3448,3493,2886,2854,450,562,31,13,38,23,8,6,35,35,3351,3414,2813,2799,445,551,26,9,35,23,0,1,32,31,97,79,73,55,5,11,5,4,3,0,8,5,3,4 -050,01,055,Alabama,Etowah County,10,10,7431,3628,3803,3052,3147,495,580,25,12,22,17,9,8,25,39,3540,3746,2979,3103,494,580,22,10,20,17,1,0,24,36,88,57,73,44,1,0,3,2,2,0,8,8,1,3 -050,01,055,Alabama,Etowah County,10,11,7518,3604,3914,3063,3230,474,607,14,23,15,26,6,0,32,28,3542,3876,3013,3195,469,604,13,23,14,26,1,0,32,28,62,38,50,35,5,3,1,0,1,0,5,0,0,0 -050,01,055,Alabama,Etowah County,10,12,7265,3531,3734,2998,3097,478,569,18,13,10,19,1,1,26,35,3503,3719,2975,3085,476,569,15,12,10,19,1,0,26,34,28,15,23,12,2,0,3,1,0,0,0,1,0,1 -050,01,055,Alabama,Etowah County,10,13,6198,2952,3246,2610,2862,298,332,13,9,8,9,1,0,22,34,2936,3234,2596,2851,297,332,13,8,8,9,0,0,22,34,16,12,14,11,1,0,0,1,0,0,1,0,0,0 -050,01,055,Alabama,Etowah County,10,14,4893,2267,2626,2065,2340,172,247,8,10,3,5,0,1,19,23,2251,2609,2054,2326,170,247,5,9,3,4,0,0,19,23,16,17,11,14,2,0,3,1,0,1,0,1,0,0 -050,01,055,Alabama,Etowah County,10,15,3976,1767,2209,1616,1933,135,253,6,6,2,8,0,0,8,9,1758,2202,1610,1926,132,253,6,6,2,8,0,0,8,9,9,7,6,7,3,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,10,16,3211,1322,1889,1211,1652,100,214,4,7,1,7,0,2,6,7,1311,1876,1201,1643,100,212,3,6,1,7,0,1,6,7,11,13,10,9,0,2,1,1,0,0,0,1,0,0 -050,01,055,Alabama,Etowah County,10,17,2412,846,1566,784,1374,58,174,0,4,1,2,0,0,3,12,842,1561,780,1369,58,174,0,4,1,2,0,0,3,12,4,5,4,5,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,10,18,1904,544,1360,490,1195,51,155,0,2,1,1,0,0,2,7,542,1354,489,1189,50,155,0,2,1,1,0,0,2,7,2,6,1,6,1,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,10,99,104206,50407,53799,41775,44006,7266,8479,276,233,330,300,154,123,606,658,48567,52408,40363,42938,7176,8407,179,160,292,281,13,9,544,613,1840,1391,1412,1068,90,72,97,73,38,19,141,114,62,45 -050,01,055,Alabama,Etowah County,11,0,1326,717,609,552,450,112,117,5,4,6,3,6,2,36,33,661,558,512,410,112,115,0,1,5,2,0,0,32,30,56,51,40,40,0,2,5,3,1,1,6,2,4,3 -050,01,055,Alabama,Etowah County,11,1,4870,2479,2391,1976,1823,383,439,18,12,24,20,12,27,66,70,2277,2209,1817,1691,379,431,4,2,19,18,1,2,57,65,202,182,159,132,4,8,14,10,5,2,11,25,9,5 -050,01,055,Alabama,Etowah County,11,2,6566,3411,3155,2657,2432,586,568,26,17,22,27,25,8,95,103,3177,2976,2485,2286,579,557,6,6,19,27,1,1,87,99,234,179,172,146,7,11,20,11,3,0,24,7,8,4 -050,01,055,Alabama,Etowah County,11,3,6912,3549,3363,2757,2636,659,583,15,27,26,21,13,10,79,86,3361,3213,2618,2525,640,572,9,16,23,20,0,1,71,79,188,150,139,111,19,11,6,11,3,1,13,9,8,7 -050,01,055,Alabama,Etowah County,11,4,7210,3749,3461,2817,2615,809,737,20,20,33,26,9,17,61,46,3591,3321,2697,2514,799,732,13,13,26,22,1,0,55,40,158,140,120,101,10,5,7,7,7,4,8,17,6,6 -050,01,055,Alabama,Etowah County,11,5,6022,3048,2974,2357,2257,572,623,20,11,41,22,25,19,33,42,2829,2825,2192,2143,570,621,10,5,30,18,1,1,26,37,219,149,165,114,2,2,10,6,11,4,24,18,7,5 -050,01,055,Alabama,Etowah County,11,6,6118,3001,3117,2406,2459,492,573,22,14,27,22,16,15,38,34,2784,2967,2245,2348,484,565,6,6,21,18,2,2,26,28,217,150,161,111,8,8,16,8,6,4,14,13,12,6 -050,01,055,Alabama,Etowah County,11,7,5939,2833,3106,2302,2485,413,530,23,20,39,29,21,13,35,29,2650,2966,2168,2375,408,523,12,10,37,28,1,1,24,29,183,140,134,110,5,7,11,10,2,1,20,12,11,0 -050,01,055,Alabama,Etowah County,11,8,7053,3487,3566,2888,2893,514,588,27,13,31,32,15,11,12,29,3376,3485,2807,2843,510,581,20,8,29,27,0,0,10,26,111,81,81,50,4,7,7,5,2,5,15,11,2,3 -050,01,055,Alabama,Etowah County,11,9,6985,3504,3481,2939,2835,459,566,29,15,33,27,9,7,35,31,3396,3390,2855,2771,454,555,24,10,31,27,0,0,32,27,108,91,84,64,5,11,5,5,2,0,9,7,3,4 -050,01,055,Alabama,Etowah County,11,10,7337,3626,3711,3078,3092,462,547,22,8,26,19,6,9,32,36,3537,3645,3004,3039,460,547,18,6,23,19,1,1,31,33,89,66,74,53,2,0,4,2,3,0,5,8,1,3 -050,01,055,Alabama,Etowah County,11,11,7580,3643,3937,3080,3230,488,631,13,23,22,15,6,0,34,38,3582,3895,3031,3192,483,627,12,23,21,15,1,0,34,38,61,42,49,38,5,4,1,0,1,0,5,0,0,0 -050,01,055,Alabama,Etowah County,11,12,7248,3503,3745,2967,3108,476,562,21,19,7,22,5,1,27,33,3471,3730,2944,3096,474,562,18,18,7,22,1,0,27,32,32,15,23,12,2,0,3,1,0,0,4,1,0,1 -050,01,055,Alabama,Etowah County,11,13,6599,3148,3451,2763,2995,332,402,21,9,10,9,2,0,20,36,3128,3435,2746,2979,331,402,21,9,10,9,0,0,20,36,20,16,17,16,1,0,0,0,0,0,2,0,0,0 -050,01,055,Alabama,Etowah County,11,14,5030,2358,2672,2136,2380,198,242,7,17,3,6,0,1,14,26,2344,2653,2126,2364,196,242,5,16,3,5,0,0,14,26,14,19,10,16,2,0,2,1,0,1,0,1,0,0 -050,01,055,Alabama,Etowah County,11,15,3996,1747,2249,1600,2003,130,222,7,7,2,10,0,0,8,7,1739,2243,1595,1997,127,222,7,7,2,10,0,0,8,7,8,6,5,6,3,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,11,16,3132,1279,1853,1171,1623,94,208,5,8,2,6,0,2,7,6,1273,1841,1167,1616,93,205,4,7,2,6,0,1,7,6,6,12,4,7,1,3,1,1,0,0,0,1,0,0 -050,01,055,Alabama,Etowah County,11,17,2392,848,1544,778,1366,64,159,0,4,1,2,0,0,5,13,844,1539,774,1361,64,159,0,4,1,2,0,0,5,13,4,5,4,5,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,11,18,1924,569,1355,520,1199,46,144,0,3,1,1,0,0,2,8,567,1349,519,1193,45,144,0,3,1,1,0,0,2,8,2,6,1,6,1,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,11,99,104239,50499,53740,41744,43881,7289,8441,301,251,356,319,170,142,639,706,48587,52240,40302,42743,7208,8362,189,170,310,296,10,10,568,659,1912,1500,1442,1138,81,79,112,81,46,23,160,132,71,47 -050,01,055,Alabama,Etowah County,12,0,1283,681,602,507,443,119,123,5,4,6,4,7,2,37,26,627,553,470,408,119,119,0,1,5,2,0,0,33,23,54,49,37,35,0,4,5,3,1,2,7,2,4,3 -050,01,055,Alabama,Etowah County,12,1,4857,2488,2369,1963,1776,401,439,25,13,19,22,13,28,67,91,2288,2180,1816,1638,392,431,6,2,14,20,2,3,58,86,200,189,147,138,9,8,19,11,5,2,11,25,9,5 -050,01,055,Alabama,Etowah County,12,2,6540,3382,3158,2628,2434,577,556,26,19,28,32,26,9,97,108,3150,2968,2458,2282,570,544,6,6,25,31,1,1,90,104,232,190,170,152,7,12,20,13,3,1,25,8,7,4 -050,01,055,Alabama,Etowah County,12,3,6905,3555,3350,2771,2602,652,592,15,30,26,21,13,12,78,93,3370,3196,2634,2490,634,581,9,18,23,20,0,1,70,86,185,154,137,112,18,11,6,12,3,1,13,11,8,7 -050,01,055,Alabama,Etowah County,12,4,7224,3768,3456,2840,2629,803,721,20,17,31,26,10,17,64,46,3595,3318,2710,2530,790,716,13,10,23,22,1,0,58,40,173,138,130,99,13,5,7,7,8,4,9,17,6,6 -050,01,055,Alabama,Etowah County,12,5,6070,3064,3006,2353,2267,584,641,22,13,44,23,26,20,35,42,2860,2853,2204,2150,582,639,12,7,33,19,1,2,28,36,204,153,149,117,2,2,10,6,11,4,25,18,7,6 -050,01,055,Alabama,Etowah County,12,6,6022,2965,3057,2349,2406,504,562,22,14,29,24,18,16,43,35,2744,2915,2185,2304,495,554,6,6,23,20,4,3,31,28,221,142,164,102,9,8,16,8,6,4,14,13,12,7 -050,01,055,Alabama,Etowah County,12,7,6024,2895,3129,2335,2486,451,552,22,18,29,32,22,13,36,28,2716,3004,2207,2391,445,545,11,8,27,31,1,1,25,28,179,125,128,95,6,7,11,10,2,1,21,12,11,0 -050,01,055,Alabama,Etowah County,12,8,6931,3422,3509,2811,2836,512,575,28,16,38,42,17,11,16,29,3307,3417,2726,2774,508,567,21,11,36,39,2,0,14,26,115,92,85,62,4,8,7,5,2,3,15,11,2,3 -050,01,055,Alabama,Etowah County,12,9,7025,3507,3518,2917,2832,473,599,34,16,37,31,10,8,36,32,3403,3431,2839,2773,468,588,28,10,34,31,0,1,34,28,104,87,78,59,5,11,6,6,3,0,10,7,2,4 -050,01,055,Alabama,Etowah County,12,10,7260,3548,3712,3000,3088,454,544,26,12,29,25,9,10,30,33,3450,3638,2920,3028,452,544,22,10,26,25,1,1,29,30,98,74,80,60,2,0,4,2,3,0,8,9,1,3 -050,01,055,Alabama,Etowah County,12,11,7634,3713,3921,3127,3208,510,628,11,25,23,19,7,0,35,41,3651,3879,3078,3170,505,624,10,25,22,19,1,0,35,41,62,42,49,38,5,4,1,0,1,0,6,0,0,0 -050,01,055,Alabama,Etowah County,12,12,7257,3509,3748,2970,3106,469,566,26,17,13,22,4,1,27,36,3468,3729,2937,3090,467,566,23,16,13,22,1,0,27,35,41,19,33,16,2,0,3,1,0,0,3,1,0,1 -050,01,055,Alabama,Etowah County,12,13,6890,3285,3605,2877,3097,352,454,17,13,14,12,2,0,23,29,3264,3584,2859,3077,351,454,17,12,14,12,0,0,23,29,21,21,18,20,1,0,0,1,0,0,2,0,0,0 -050,01,055,Alabama,Etowah County,12,14,5028,2362,2666,2123,2385,211,230,7,13,4,6,0,2,17,30,2349,2645,2114,2367,209,230,5,12,4,5,0,1,17,30,13,21,9,18,2,0,2,1,0,1,0,1,0,0 -050,01,055,Alabama,Etowah County,12,15,4069,1758,2311,1603,2033,139,248,7,8,2,11,0,0,7,11,1750,2304,1598,2026,136,248,7,8,2,11,0,0,7,11,8,7,5,7,3,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,12,16,3077,1281,1796,1177,1571,90,202,4,8,2,6,0,2,8,7,1274,1784,1172,1563,89,200,3,7,2,6,0,1,8,7,7,12,5,8,1,2,1,1,0,0,0,1,0,0 -050,01,055,Alabama,Etowah County,12,17,2398,871,1527,802,1353,62,151,0,5,2,2,0,0,5,16,867,1522,798,1348,62,151,0,5,2,2,0,0,5,16,4,5,4,5,0,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,12,18,1936,572,1364,526,1216,43,138,0,2,1,1,0,0,2,7,570,1360,525,1212,42,138,0,2,1,1,0,0,2,7,2,4,1,4,1,0,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,12,99,104430,50626,53804,41679,43768,7406,8521,317,263,377,361,184,151,663,740,48703,52280,40250,42621,7316,8439,199,176,329,338,15,15,594,691,1923,1524,1429,1147,90,82,118,87,48,23,169,136,69,49 -050,01,055,Alabama,Etowah County,13,0,1288,680,608,506,445,121,123,5,4,6,3,6,2,36,31,627,558,469,409,120,120,0,1,5,2,0,0,33,26,53,50,37,36,1,3,5,3,1,1,6,2,3,5 -050,01,055,Alabama,Etowah County,13,1,4840,2484,2356,1950,1766,402,437,28,13,14,20,10,23,80,97,2287,2172,1804,1629,395,433,7,1,12,20,3,2,66,87,197,184,146,137,7,4,21,12,2,0,7,21,14,10 -050,01,055,Alabama,Etowah County,13,2,6533,3377,3156,2624,2429,578,557,23,18,28,34,25,6,99,112,3146,2964,2454,2277,571,544,5,6,26,31,2,1,88,105,231,192,170,152,7,13,18,12,2,3,23,5,11,7 -050,01,055,Alabama,Etowah County,13,3,6886,3548,3338,2763,2595,650,591,14,26,26,24,11,10,84,92,3370,3188,2627,2484,633,580,9,16,23,20,1,1,77,87,178,150,136,111,17,11,5,10,3,4,10,9,7,5 -050,01,055,Alabama,Etowah County,13,4,7165,3737,3428,2820,2608,798,714,17,14,27,26,7,17,68,49,3571,3299,2690,2510,786,711,12,10,21,21,2,2,60,45,166,129,130,98,12,3,5,4,6,5,5,15,8,4 -050,01,055,Alabama,Etowah County,13,5,6086,3068,3018,2358,2271,588,644,16,12,44,23,24,19,38,49,2869,2865,2207,2152,584,642,9,8,34,19,2,4,33,40,199,153,151,119,4,2,7,4,10,4,22,15,5,9 -050,01,055,Alabama,Etowah County,13,6,6006,2955,3051,2353,2405,506,562,17,11,25,23,16,12,38,38,2748,2915,2190,2304,499,553,5,6,22,18,3,1,29,33,207,136,163,101,7,9,12,5,3,5,13,11,9,5 -050,01,055,Alabama,Etowah County,13,7,6053,2910,3143,2350,2503,455,554,23,15,31,33,20,11,31,27,2735,3021,2219,2408,449,548,13,7,28,32,1,1,25,25,175,122,131,95,6,6,10,8,3,1,19,10,6,2 -050,01,055,Alabama,Etowah County,13,8,6859,3389,3470,2783,2810,511,571,25,10,38,43,16,9,16,27,3272,3381,2698,2748,507,564,19,7,34,39,3,1,11,22,117,89,85,62,4,7,6,3,4,4,13,8,5,5 -050,01,055,Alabama,Etowah County,13,9,6997,3493,3504,2912,2825,472,596,32,12,38,32,8,6,31,33,3392,3422,2834,2766,467,585,26,8,34,32,1,1,30,30,101,82,78,59,5,11,6,4,4,0,7,5,1,3 -050,01,055,Alabama,Etowah County,13,10,7221,3530,3691,2983,3068,451,546,22,11,30,26,11,9,33,31,3431,3616,2903,3008,449,545,20,9,26,25,3,1,30,28,99,75,80,60,2,1,2,2,4,1,8,8,3,3 -050,01,055,Alabama,Etowah County,13,11,7688,3735,3953,3132,3215,515,633,14,28,26,25,6,1,42,51,3665,3900,3080,3173,509,629,12,25,24,24,1,1,39,48,70,53,52,42,6,4,2,3,2,1,5,0,3,3 -050,01,055,Alabama,Etowah County,13,12,7300,3534,3766,2985,3121,473,572,26,16,14,20,6,0,30,37,3489,3746,2950,3103,471,572,22,15,13,20,3,0,30,36,45,20,35,18,2,0,4,1,1,0,3,0,0,1 -050,01,055,Alabama,Etowah County,13,13,6967,3324,3643,2901,3124,358,461,19,14,16,14,3,3,27,27,3299,3616,2883,3101,353,459,18,12,15,14,3,3,27,27,25,27,18,23,5,2,1,2,1,0,0,0,0,0 -050,01,055,Alabama,Etowah County,13,14,5064,2377,2687,2135,2397,211,235,7,12,3,5,0,4,21,34,2362,2663,2125,2379,209,232,4,10,3,5,0,3,21,34,15,24,10,18,2,3,3,2,0,0,0,1,0,0 -050,01,055,Alabama,Etowah County,13,15,4094,1772,2322,1610,2039,142,251,6,7,2,10,0,1,12,14,1763,2314,1606,2032,137,250,6,7,2,10,0,1,12,14,9,8,4,7,5,1,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,13,16,3062,1274,1788,1175,1564,90,204,2,8,3,4,0,0,4,8,1268,1775,1171,1557,89,199,1,7,3,4,0,0,4,8,6,13,4,7,1,5,1,1,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,13,17,2405,878,1527,803,1346,64,154,2,8,2,3,0,0,7,16,874,1523,799,1345,64,151,2,8,2,3,0,0,7,16,4,4,4,1,0,3,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,13,18,1948,577,1371,531,1221,42,140,0,2,1,1,0,0,3,7,576,1366,530,1217,42,139,0,2,1,1,0,0,3,7,1,5,1,4,0,1,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,13,99,104462,50642,53820,41674,43752,7427,8545,298,241,374,369,169,133,700,780,48744,52304,40239,42602,7334,8456,190,165,328,340,28,23,625,718,1898,1516,1435,1150,93,89,108,76,46,29,141,110,75,62 -050,01,057,Alabama,Fayette County,1,0,196,107,89,89,74,17,12,0,1,1,0,0,0,0,2,106,88,88,73,17,12,0,1,1,0,0,0,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,1,917,470,447,401,377,58,63,3,1,1,1,0,0,7,5,461,440,394,373,58,61,1,0,1,1,0,0,7,5,9,7,7,4,0,2,2,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,2,1201,622,579,532,483,89,88,0,1,0,1,0,0,1,6,614,571,524,476,89,88,0,0,0,1,0,0,1,6,8,8,8,7,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,3,1261,645,616,546,508,93,102,0,1,1,4,0,0,5,1,643,609,544,501,93,102,0,1,1,4,0,0,5,1,2,7,2,7,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,4,1354,722,632,612,537,109,90,1,2,0,1,0,0,0,2,718,628,608,533,109,90,1,2,0,1,0,0,0,2,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,5,1016,513,503,445,431,62,65,3,2,1,0,0,2,2,3,510,492,442,424,62,63,3,2,1,0,0,0,2,3,3,11,3,7,0,2,0,0,0,0,0,2,0,0 -050,01,057,Alabama,Fayette County,1,6,1144,559,585,507,521,50,60,0,1,0,2,0,0,2,1,544,579,493,515,49,60,0,1,0,2,0,0,2,1,15,6,14,6,1,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,7,1132,562,570,499,475,57,88,2,1,2,3,0,0,2,3,554,566,491,471,57,88,2,1,2,3,0,0,2,3,8,4,8,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,8,1311,652,659,565,567,84,88,1,3,0,0,0,0,2,1,648,655,561,563,84,88,1,3,0,0,0,0,2,1,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,9,1322,644,678,567,579,76,93,1,2,0,1,0,0,0,3,639,674,562,575,76,93,1,2,0,1,0,0,0,3,5,4,5,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,10,1336,667,669,573,590,92,76,1,0,0,3,0,0,1,0,662,667,569,589,91,75,1,0,0,3,0,0,1,0,5,2,4,1,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,11,1262,620,642,563,561,53,73,3,0,0,4,0,0,1,4,614,639,557,558,53,73,3,0,0,4,0,0,1,4,6,3,6,3,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,12,1097,543,554,500,501,41,51,1,2,0,0,0,0,1,0,540,553,498,500,41,51,1,2,0,0,0,0,0,0,3,1,2,1,0,0,0,0,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,1,13,989,479,510,442,465,30,37,3,1,0,3,0,0,4,4,478,507,441,462,30,37,3,1,0,3,0,0,4,4,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,14,810,372,438,343,383,26,54,0,0,0,0,0,0,3,1,370,434,341,380,26,54,0,0,0,0,0,0,3,0,2,4,2,3,0,0,0,0,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,1,15,735,317,418,287,372,28,46,0,0,0,0,0,0,2,0,317,415,287,370,28,45,0,0,0,0,0,0,2,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,16,591,218,373,191,328,25,44,1,0,0,0,0,0,1,1,218,373,191,328,25,44,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,17,413,126,287,108,251,18,34,0,0,0,0,0,0,0,2,126,286,108,250,18,34,0,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,18,435,111,324,101,290,9,34,1,0,0,0,0,0,0,0,110,322,100,288,9,34,1,0,0,0,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,99,18522,8949,9573,7871,8293,1017,1198,21,18,6,23,0,2,34,39,8872,9498,7799,8229,1015,1192,19,16,6,23,0,0,33,38,77,75,72,64,2,6,2,2,0,0,0,2,1,1 -050,01,057,Alabama,Fayette County,2,0,197,108,89,90,74,17,12,0,1,1,0,0,0,0,2,107,88,89,73,17,12,0,1,1,0,0,0,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,1,912,469,443,398,374,58,62,3,1,1,1,0,0,9,5,460,436,391,370,58,60,1,0,1,1,0,0,9,5,9,7,7,4,0,2,2,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,2,1194,619,575,529,479,89,88,0,1,0,1,0,0,1,6,611,567,521,472,89,88,0,0,0,1,0,0,1,6,8,8,8,7,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,3,1260,645,615,546,508,93,101,0,1,1,4,0,0,5,1,643,608,544,501,93,101,0,1,1,4,0,0,5,1,2,7,2,7,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,4,1356,723,633,615,538,107,90,1,2,0,1,0,0,0,2,719,629,611,534,107,90,1,2,0,1,0,0,0,2,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,5,1020,513,507,447,435,60,65,3,2,1,0,0,2,2,3,510,496,444,428,60,63,3,2,1,0,0,0,2,3,3,11,3,7,0,2,0,0,0,0,0,2,0,0 -050,01,057,Alabama,Fayette County,2,6,1124,547,577,498,513,47,60,0,1,0,2,0,0,2,1,532,571,484,507,46,60,0,1,0,2,0,0,2,1,15,6,14,6,1,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,7,1125,556,569,496,474,54,88,2,1,2,3,0,0,2,3,548,565,488,470,54,88,2,1,2,3,0,0,2,3,8,4,8,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,8,1296,640,656,558,563,79,89,1,3,0,0,0,0,2,1,636,652,554,559,79,89,1,3,0,0,0,0,2,1,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,9,1318,640,678,567,578,72,94,1,2,0,1,0,0,0,3,635,674,562,574,72,94,1,2,0,1,0,0,0,3,5,4,5,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,10,1337,665,672,573,593,90,76,1,0,0,3,0,0,1,0,660,670,569,592,89,75,1,0,0,3,0,0,1,0,5,2,4,1,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,11,1270,621,649,563,567,54,74,3,0,0,4,0,0,1,4,615,646,557,564,54,74,3,0,0,4,0,0,1,4,6,3,6,3,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,12,1108,547,561,503,507,42,52,1,2,0,0,0,0,1,0,544,560,501,506,42,52,1,2,0,0,0,0,0,0,3,1,2,1,0,0,0,0,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,2,13,1002,485,517,446,472,32,37,3,1,0,3,0,0,4,4,484,514,445,469,32,37,3,1,0,3,0,0,4,4,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,14,808,372,436,342,380,27,55,0,0,0,0,0,0,3,1,370,432,340,377,27,55,0,0,0,0,0,0,3,0,2,4,2,3,0,0,0,0,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,2,15,733,316,417,286,369,28,48,0,0,0,0,0,0,2,0,316,414,286,367,28,47,0,0,0,0,0,0,2,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,16,587,218,369,191,324,25,44,1,0,0,0,0,0,1,1,218,369,191,324,25,44,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,17,417,128,289,109,252,19,35,0,0,0,0,0,0,0,2,128,288,109,251,19,35,0,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,18,448,114,334,104,300,9,34,1,0,0,0,0,0,0,0,113,332,103,298,9,34,1,0,0,0,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,99,18512,8926,9586,7861,8300,1002,1204,21,18,6,23,0,2,36,39,8849,9511,7789,8236,1000,1198,19,16,6,23,0,0,35,38,77,75,72,64,2,6,2,2,0,0,0,2,1,1 -050,01,057,Alabama,Fayette County,3,0,235,117,118,106,107,9,8,0,1,1,0,0,0,1,2,116,117,105,106,9,8,0,1,1,0,0,0,1,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,1,915,466,449,402,371,49,69,3,1,1,1,0,0,11,7,454,439,392,364,49,67,1,0,1,1,0,0,11,7,12,10,10,7,0,2,2,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,2,1179,622,557,530,460,91,89,0,1,0,1,0,0,1,6,613,546,521,450,91,89,0,0,0,1,0,0,1,6,9,11,9,10,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,3,1244,663,581,554,485,103,90,0,1,1,4,0,0,5,1,660,574,551,478,103,90,0,1,1,4,0,0,5,1,3,7,3,7,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,4,1303,659,644,558,548,100,91,1,2,0,1,0,0,0,2,654,640,553,544,100,91,1,2,0,1,0,0,0,2,5,4,5,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,5,1030,542,488,471,413,65,68,3,2,1,0,0,2,2,3,539,477,468,406,65,66,3,2,1,0,0,0,2,3,3,11,3,7,0,2,0,0,0,0,0,2,0,0 -050,01,057,Alabama,Fayette County,3,6,1018,508,510,459,448,47,58,0,1,0,2,0,0,2,1,493,504,445,442,46,58,0,1,0,2,0,0,2,1,15,6,14,6,1,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,7,1150,551,599,503,508,42,84,2,1,2,3,0,0,2,3,544,594,496,503,42,84,2,1,2,3,0,0,2,3,7,5,7,5,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,8,1234,627,607,535,515,89,88,1,3,0,0,0,0,2,1,623,603,531,511,89,88,1,3,0,0,0,0,2,1,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,9,1328,630,698,551,591,78,101,1,2,0,1,0,0,0,3,625,694,546,587,78,101,1,2,0,1,0,0,0,3,5,4,5,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,10,1330,671,659,585,585,84,71,1,0,0,3,0,0,1,0,666,657,581,584,83,70,1,0,0,3,0,0,1,0,5,2,4,1,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,11,1332,659,673,591,585,64,80,3,0,0,4,0,0,1,4,653,670,585,582,64,80,3,0,0,4,0,0,1,4,6,3,6,3,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,12,1077,525,552,479,503,45,47,1,2,0,0,0,0,0,0,523,551,477,502,45,47,1,2,0,0,0,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,13,1001,485,516,451,459,27,50,3,1,0,3,0,0,4,3,484,513,450,456,27,50,3,1,0,3,0,0,4,3,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,14,832,389,443,361,396,25,46,0,0,0,0,0,0,3,1,387,439,359,393,25,46,0,0,0,0,0,0,3,0,2,4,2,3,0,0,0,0,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,3,15,740,313,427,285,376,26,51,0,0,0,0,0,0,2,0,313,424,285,374,26,50,0,0,0,0,0,0,2,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,16,600,240,360,210,315,28,44,1,0,0,0,0,0,1,1,240,360,210,315,28,44,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,17,407,135,272,115,237,20,33,0,0,0,0,0,0,0,2,135,271,115,236,20,33,0,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,18,429,105,324,96,290,8,34,1,0,0,0,0,0,0,0,104,322,95,288,8,34,1,0,0,0,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,99,18384,8907,9477,7842,8192,1000,1202,21,18,6,23,0,2,38,40,8826,9395,7765,8121,998,1196,19,16,6,23,0,0,38,39,81,82,77,71,2,6,2,2,0,0,0,2,0,1 -050,01,057,Alabama,Fayette County,4,0,202,107,95,88,82,16,10,0,1,1,0,0,0,2,2,106,93,87,80,16,10,0,1,1,0,0,0,2,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,1,941,503,438,432,364,54,63,3,1,1,3,0,0,13,7,487,428,418,357,54,61,1,0,1,3,0,0,13,7,16,10,14,7,0,2,2,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,2,1163,586,577,511,483,74,86,0,1,0,1,0,0,1,6,576,569,501,476,74,86,0,0,0,1,0,0,1,6,10,8,10,7,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,3,1256,662,594,562,497,93,91,0,2,1,3,0,0,6,1,660,587,560,491,93,91,0,1,1,3,0,0,6,1,2,7,2,6,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,4,1290,667,623,567,529,99,89,1,2,0,1,0,0,0,2,663,619,563,525,99,89,1,2,0,1,0,0,0,2,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,5,995,540,455,462,394,71,54,3,2,1,0,0,2,3,3,537,444,459,387,71,52,3,2,1,0,0,0,3,3,3,11,3,7,0,2,0,0,0,0,0,2,0,0 -050,01,057,Alabama,Fayette County,4,6,1007,491,516,439,456,50,56,0,1,0,2,0,0,2,1,476,510,425,450,49,56,0,1,0,2,0,0,2,1,15,6,14,6,1,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,7,1153,561,592,508,509,47,76,2,1,2,3,0,0,2,3,551,588,498,505,47,76,2,1,2,3,0,0,2,3,10,4,10,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,8,1168,565,603,487,508,75,91,1,3,0,0,0,0,2,1,561,599,483,504,75,91,1,3,0,0,0,0,2,1,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,9,1346,660,686,579,581,80,99,1,2,0,1,0,0,0,3,653,682,572,577,80,99,1,2,0,1,0,0,0,3,7,4,7,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,10,1301,651,650,575,576,73,71,1,0,0,3,0,0,2,0,646,648,571,575,72,70,1,0,0,3,0,0,2,0,5,2,4,1,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,11,1314,646,668,572,578,70,82,3,0,0,4,0,0,1,4,639,663,565,573,70,82,3,0,0,4,0,0,1,4,7,5,7,5,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,12,1144,570,574,514,522,55,49,1,2,0,0,0,0,0,1,568,573,512,521,55,49,1,2,0,0,0,0,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,13,1016,485,531,454,476,24,49,3,1,0,2,0,0,4,3,484,528,453,473,24,49,3,1,0,2,0,0,4,3,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,14,848,391,457,355,411,33,45,0,0,0,0,0,0,3,1,389,453,353,408,33,45,0,0,0,0,0,0,3,0,2,4,2,3,0,0,0,0,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,4,15,719,312,407,288,357,21,49,0,0,0,0,0,0,3,1,312,404,288,355,21,48,0,0,0,0,0,0,3,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,16,583,233,350,204,305,27,43,1,1,0,0,0,0,1,1,233,350,204,305,27,43,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,17,429,150,279,130,250,20,27,0,0,0,0,0,0,0,2,150,278,130,249,20,27,0,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,18,403,96,307,82,270,13,37,1,0,0,0,0,0,0,0,95,305,81,268,13,37,1,0,0,0,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,99,18278,8876,9402,7809,8148,995,1167,21,20,6,23,0,2,45,42,8786,9321,7723,8079,993,1161,19,17,6,23,0,0,45,41,90,81,86,69,2,6,2,3,0,0,0,2,0,1 -050,01,057,Alabama,Fayette County,5,0,212,105,107,90,92,11,12,0,1,1,0,0,0,3,2,102,105,88,90,10,12,0,1,1,0,0,0,3,2,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,1,898,473,425,397,369,56,47,3,0,1,3,0,0,16,6,462,419,388,364,56,46,1,0,1,3,0,0,16,6,11,6,9,5,0,1,2,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,2,1156,602,554,529,464,70,81,0,1,0,2,0,0,3,6,594,543,521,454,70,81,0,0,0,2,0,0,3,6,8,11,8,10,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,3,1246,639,607,537,523,95,78,0,2,1,3,0,0,6,1,635,597,533,514,95,78,0,1,1,3,0,0,6,1,4,10,4,9,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,4,1274,669,605,568,506,100,91,1,3,0,1,0,0,0,4,664,600,563,502,100,91,1,2,0,1,0,0,0,4,5,5,5,4,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,5,1042,562,480,485,413,70,58,3,3,1,0,0,2,3,4,557,469,480,407,70,56,3,2,1,0,0,0,3,4,5,11,5,6,0,2,0,1,0,0,0,2,0,0 -050,01,057,Alabama,Fayette County,5,6,950,475,475,426,416,47,55,0,1,0,2,0,0,2,1,461,469,412,410,47,55,0,1,0,2,0,0,2,1,14,6,14,6,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,7,1153,540,613,490,537,45,69,2,1,1,3,0,0,2,3,532,607,482,532,45,68,2,1,1,3,0,0,2,3,8,6,8,5,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,8,1107,540,567,477,475,59,88,1,3,0,0,0,0,3,1,535,564,472,472,59,88,1,3,0,0,0,0,3,1,5,3,5,3,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,9,1318,659,659,568,567,90,86,1,2,0,1,0,0,0,3,654,655,563,563,90,86,1,2,0,1,0,0,0,3,5,4,5,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,10,1308,648,660,570,577,75,79,1,1,0,3,0,0,2,0,642,657,565,575,74,78,1,1,0,3,0,0,2,0,6,3,5,2,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,11,1295,625,670,546,580,75,82,3,1,0,4,0,0,1,3,619,666,540,576,75,82,3,1,0,4,0,0,1,3,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,12,1150,579,571,524,509,52,59,2,2,0,0,0,0,1,1,576,569,521,508,52,58,2,2,0,0,0,0,1,1,3,2,3,1,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,13,1051,498,553,458,497,33,50,3,1,0,3,0,0,4,2,497,550,457,494,33,50,3,1,0,3,0,0,4,2,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,14,885,414,471,374,428,37,42,0,0,0,0,0,0,3,1,412,467,372,425,37,42,0,0,0,0,0,0,3,0,2,4,2,3,0,0,0,0,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,5,15,727,326,401,302,354,22,46,0,0,0,0,0,0,2,1,326,398,302,352,22,45,0,0,0,0,0,0,2,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,16,598,233,365,210,313,21,50,1,1,0,0,0,0,1,1,233,365,210,313,21,50,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,17,396,140,256,119,227,21,28,0,0,0,0,0,0,0,1,140,255,119,226,21,28,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,18,412,99,313,85,273,13,38,1,1,0,0,0,0,0,1,98,312,84,272,13,38,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,99,18178,8826,9352,7755,8120,992,1139,22,24,5,25,0,2,52,42,8739,9267,7672,8049,990,1132,20,20,5,25,0,0,52,41,87,85,83,71,2,7,2,4,0,0,0,2,0,1 -050,01,057,Alabama,Fayette County,6,0,209,103,106,85,88,14,15,0,1,1,0,0,0,3,2,100,104,83,86,13,15,0,1,1,0,0,0,3,2,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,1,863,453,410,383,364,55,37,2,0,1,2,0,0,12,7,443,402,374,358,55,35,1,0,1,2,0,0,12,7,10,8,9,6,0,2,1,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,2,1141,608,533,543,448,62,76,0,1,0,2,0,0,3,6,596,522,531,438,62,76,0,0,0,2,0,0,3,6,12,11,12,10,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,3,1241,636,605,537,519,92,80,0,2,1,3,0,0,6,1,633,595,534,511,92,79,0,1,1,3,0,0,6,1,3,10,3,8,0,1,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,4,1262,668,594,572,497,94,88,2,4,0,1,0,0,0,4,663,589,567,493,94,88,2,3,0,1,0,0,0,4,5,5,5,4,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,5,1012,523,489,453,411,63,69,3,3,1,0,0,2,3,4,519,478,449,405,63,67,3,2,1,0,0,0,3,4,4,11,4,6,0,2,0,1,0,0,0,2,0,0 -050,01,057,Alabama,Fayette County,6,6,951,485,466,436,407,47,55,0,1,0,2,0,0,2,1,471,460,423,401,46,55,0,1,0,2,0,0,2,1,14,6,13,6,1,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,7,1102,517,585,469,518,44,60,2,1,1,3,0,0,1,3,509,580,461,514,44,59,2,1,1,3,0,0,1,3,8,5,8,4,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,8,1086,522,564,467,477,51,83,1,3,0,0,0,0,3,1,517,561,462,474,51,83,1,3,0,0,0,0,3,1,5,3,5,3,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,9,1312,661,651,573,548,85,97,2,2,0,1,0,0,1,3,656,647,568,544,85,97,2,2,0,1,0,0,1,3,5,4,5,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,10,1284,644,640,566,558,75,78,1,1,0,3,0,0,2,0,637,637,560,556,74,77,1,1,0,3,0,0,2,0,7,3,6,2,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,11,1323,624,699,546,610,74,81,3,1,0,4,0,0,1,3,619,696,541,607,74,81,3,1,0,4,0,0,1,3,5,3,5,3,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,12,1158,580,578,512,509,64,66,2,2,0,0,0,0,2,1,575,576,509,508,63,65,2,2,0,0,0,0,1,1,5,2,3,1,1,1,0,0,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,6,13,1086,529,557,483,495,39,55,3,2,0,3,0,0,4,2,528,554,482,492,39,55,3,2,0,3,0,0,4,2,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,14,894,418,476,378,439,37,36,0,0,0,0,0,0,3,1,416,472,376,436,37,36,0,0,0,0,0,0,3,0,2,4,2,3,0,0,0,0,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,6,15,709,323,386,294,339,27,45,0,0,0,1,0,0,2,1,323,383,294,337,27,44,0,0,0,1,0,0,2,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,16,631,253,378,230,333,21,42,1,1,0,0,0,0,1,2,253,378,230,333,21,42,1,1,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,17,388,137,251,116,217,20,32,1,0,0,0,0,0,0,2,137,250,116,216,20,32,1,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,18,370,94,276,79,241,14,33,1,1,0,0,0,0,0,1,93,275,78,240,14,33,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,99,18022,8778,9244,7722,8018,978,1128,24,26,5,25,0,2,49,45,8688,9159,7638,7949,974,1119,23,22,5,25,0,0,48,44,90,85,84,69,4,9,1,4,0,0,0,2,1,1 -050,01,057,Alabama,Fayette County,7,0,206,112,94,100,77,7,15,0,0,0,0,0,0,5,2,108,91,98,74,6,15,0,0,0,0,0,0,4,2,4,3,2,3,1,0,0,0,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,7,1,854,430,424,368,372,46,41,0,0,1,3,0,0,15,8,420,418,360,367,45,40,0,0,1,3,0,0,14,8,10,6,8,5,1,1,0,0,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,7,2,1139,588,551,516,462,65,80,1,0,1,1,0,0,5,8,580,542,508,453,65,80,1,0,1,1,0,0,5,8,8,9,8,9,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,3,1206,653,553,544,475,99,71,2,3,2,1,0,0,6,3,649,541,542,466,99,70,0,1,2,1,0,0,6,3,4,12,2,9,0,1,2,2,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,4,1264,661,603,568,506,89,88,2,3,0,1,0,0,2,5,655,595,562,500,89,88,2,2,0,1,0,0,2,4,6,8,6,6,0,0,0,1,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,7,5,1021,543,478,466,402,71,73,2,2,0,0,0,0,4,1,539,470,462,397,71,71,2,1,0,0,0,0,4,1,4,8,4,5,0,2,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,6,968,479,489,434,427,41,59,1,0,1,2,0,0,2,1,468,482,423,421,41,58,1,0,1,2,0,0,2,1,11,7,11,6,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,7,1070,511,559,468,509,37,47,1,0,3,0,0,0,2,3,501,551,459,502,36,46,1,0,3,0,0,0,2,3,10,8,9,7,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,8,1091,538,553,474,462,58,86,0,2,2,3,0,0,4,0,531,548,469,458,57,86,0,1,2,3,0,0,3,0,7,5,5,4,1,0,0,1,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,7,9,1290,636,654,548,561,83,84,3,3,0,2,0,0,2,4,628,648,541,556,83,84,2,2,0,2,0,0,2,4,8,6,7,5,0,0,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,10,1303,666,637,586,560,74,73,0,2,2,1,0,0,4,1,660,633,580,557,74,73,0,1,2,1,0,0,4,1,6,4,6,3,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,11,1304,626,678,539,592,83,80,1,2,1,2,0,0,2,2,620,675,533,589,83,80,1,2,1,2,0,0,2,2,6,3,6,3,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,12,1219,589,630,531,549,52,74,3,3,0,2,0,0,3,2,586,627,528,547,52,73,3,3,0,2,0,0,3,2,3,3,3,2,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,13,1077,535,542,474,480,52,53,4,2,1,2,0,0,4,5,531,539,471,478,51,52,4,2,1,2,0,0,4,5,4,3,3,2,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,14,953,437,516,401,473,34,41,1,0,0,0,0,0,1,2,436,514,400,471,34,41,1,0,0,0,0,0,1,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,15,708,338,370,305,327,28,39,2,1,0,2,0,0,3,1,337,368,304,326,28,38,2,1,0,2,0,0,3,1,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,16,610,247,363,226,318,19,42,1,1,0,0,0,0,1,2,247,362,226,318,19,41,1,1,0,0,0,0,1,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,17,384,144,240,129,201,13,37,2,0,0,0,0,0,0,2,144,239,129,200,13,37,2,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,18,363,85,278,72,246,13,30,0,1,0,0,0,0,0,1,85,277,72,245,13,30,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,99,18030,8818,9212,7749,7999,964,1113,26,25,14,22,0,0,65,53,8725,9120,7667,7925,959,1103,23,18,14,22,0,0,62,52,93,92,82,74,5,10,3,7,0,0,0,0,3,1 -050,01,057,Alabama,Fayette County,8,0,189,103,86,86,77,11,7,0,0,0,0,0,0,6,2,99,83,84,74,10,7,0,0,0,0,0,0,5,2,4,3,2,3,1,0,0,0,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,8,1,780,415,365,346,317,57,36,0,0,1,3,0,0,11,9,405,359,338,313,56,34,0,0,1,3,0,0,10,9,10,6,8,4,1,2,0,0,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,8,2,1139,579,560,516,482,54,72,2,0,1,1,0,0,6,5,567,552,504,474,54,72,2,0,1,1,0,0,6,5,12,8,12,8,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,3,1211,658,553,538,468,107,75,2,3,3,1,0,0,8,6,654,542,536,460,107,74,0,1,3,1,0,0,8,6,4,11,2,8,0,1,2,2,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,4,1235,665,570,562,485,98,75,2,3,0,0,0,0,3,7,660,560,557,477,98,75,2,2,0,0,0,0,3,6,5,10,5,8,0,0,0,1,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,8,5,1001,510,491,443,414,62,72,0,1,0,0,0,0,5,4,505,482,438,407,62,71,0,0,0,0,0,0,5,4,5,9,5,7,0,1,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,6,921,475,446,416,394,52,48,3,0,1,2,0,0,3,2,462,439,404,388,51,47,3,0,1,2,0,0,3,2,13,7,12,6,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,7,1009,498,511,447,461,45,48,1,0,3,0,0,0,2,2,484,503,434,454,44,47,1,0,3,0,0,0,2,2,14,8,13,7,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,8,1083,533,550,484,462,42,82,1,1,2,3,0,0,4,2,526,545,480,458,41,82,0,0,2,3,0,0,3,2,7,5,4,4,1,0,1,1,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,8,9,1250,618,632,530,544,84,80,2,3,0,2,0,0,2,3,610,626,523,539,84,80,1,2,0,2,0,0,2,3,8,6,7,5,0,0,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,10,1292,639,653,557,577,76,72,0,2,2,1,0,0,4,1,633,649,551,574,76,72,0,1,2,1,0,0,4,1,6,4,6,3,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,11,1277,621,656,539,568,79,81,1,3,1,2,0,0,1,2,615,652,533,564,79,81,1,3,1,2,0,0,1,2,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,12,1283,632,651,561,552,64,92,3,3,0,2,0,0,4,2,628,647,558,550,63,90,3,3,0,2,0,0,4,2,4,4,3,2,1,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,13,1047,505,542,441,485,55,47,4,2,1,3,0,0,4,5,501,539,438,483,54,46,4,2,1,3,0,0,4,5,4,3,3,2,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,14,953,442,511,407,460,33,47,2,2,0,0,0,0,0,2,441,509,406,458,33,47,2,2,0,0,0,0,0,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,15,746,351,395,326,359,22,32,1,0,0,2,0,0,2,2,350,395,325,359,22,32,1,0,0,2,0,0,2,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,16,594,229,365,214,315,15,46,0,1,0,0,0,0,0,3,229,364,214,315,15,45,0,1,0,0,0,0,0,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,17,402,174,228,150,190,22,35,2,0,0,1,0,0,0,2,174,228,150,190,22,35,2,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,18,355,82,273,71,238,11,32,0,1,0,0,0,0,0,2,82,272,71,237,11,32,0,1,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,99,17767,8729,9038,7634,7848,989,1079,26,25,15,23,0,0,65,63,8625,8946,7544,7774,982,1069,22,18,15,23,0,0,62,62,104,92,90,74,7,10,4,7,0,0,0,0,3,1 -050,01,057,Alabama,Fayette County,9,0,213,120,93,103,84,10,7,0,0,0,0,0,0,7,2,116,90,101,81,9,7,0,0,0,0,0,0,6,2,4,3,2,3,1,0,0,0,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,9,1,746,392,354,336,297,43,42,0,0,1,4,0,0,12,11,381,346,327,291,42,40,0,0,1,4,0,0,11,11,11,8,9,6,1,2,0,0,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,9,2,1083,569,514,502,446,57,60,2,0,1,1,0,0,7,7,559,505,492,437,57,60,2,0,1,1,0,0,7,7,10,9,10,9,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,3,1200,633,567,522,484,98,74,2,3,3,0,0,0,8,6,629,553,520,473,98,73,0,1,3,0,0,0,8,6,4,14,2,11,0,1,2,2,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,4,1250,694,556,587,470,101,76,2,3,0,0,0,0,4,7,688,548,581,464,101,76,2,2,0,0,0,0,4,6,6,8,6,6,0,0,0,1,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,9,5,977,502,475,434,399,62,71,0,1,0,0,0,0,6,4,494,466,426,392,62,70,0,0,0,0,0,0,6,4,8,9,8,7,0,1,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,6,875,455,420,386,374,62,42,3,0,1,2,0,0,3,2,443,413,375,368,61,41,3,0,1,2,0,0,3,2,12,7,11,6,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,7,955,468,487,417,437,46,48,1,0,3,0,0,0,1,2,458,479,408,430,45,47,1,0,3,0,0,0,1,2,10,8,9,7,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,8,1051,525,526,479,449,39,71,1,1,2,3,0,0,4,2,518,521,474,445,39,71,0,0,2,3,0,0,3,2,7,5,5,4,0,0,1,1,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,9,9,1199,588,611,514,518,70,85,2,3,0,2,0,0,2,3,579,605,506,513,70,85,1,2,0,2,0,0,2,3,9,6,8,5,0,0,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,10,1319,665,654,579,584,80,66,0,2,2,1,0,0,4,1,660,650,574,581,80,66,0,1,2,1,0,0,4,1,5,4,5,3,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,11,1238,594,644,525,560,65,77,1,3,1,2,0,0,2,2,588,641,519,557,65,77,1,3,1,2,0,0,2,2,6,3,6,3,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,12,1262,625,637,548,536,70,93,3,3,0,2,0,0,4,3,621,633,545,534,69,91,3,3,0,2,0,0,4,3,4,4,3,2,1,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,13,1103,541,562,476,506,56,47,4,2,1,3,0,0,4,4,537,560,473,505,55,46,4,2,1,3,0,0,4,4,4,2,3,1,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,14,948,432,516,396,459,34,53,2,2,0,0,0,0,0,2,431,514,395,457,34,53,2,2,0,0,0,0,0,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,15,760,351,409,316,372,31,32,2,1,0,2,0,0,2,2,350,409,315,372,31,32,2,1,0,2,0,0,2,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,16,613,249,364,230,310,19,50,0,2,0,0,0,0,0,2,249,363,230,310,19,49,0,2,0,0,0,0,0,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,17,404,153,251,138,205,13,43,2,0,0,1,0,0,0,2,153,251,138,205,13,43,2,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,18,327,81,246,68,209,13,33,0,2,0,0,0,0,0,2,81,245,68,208,13,33,0,2,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,99,17523,8637,8886,7556,7699,969,1070,27,28,15,23,0,0,70,66,8535,8792,7467,7623,963,1060,23,21,15,23,0,0,67,65,102,94,89,76,6,10,4,7,0,0,0,0,3,1 -050,01,057,Alabama,Fayette County,10,0,226,132,94,112,82,12,10,0,0,0,0,0,0,8,2,127,91,109,79,11,10,0,0,0,0,0,0,7,2,5,3,3,3,1,0,0,0,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,10,1,754,410,344,334,294,65,36,0,0,1,3,0,0,10,11,399,338,325,290,64,34,0,0,1,3,0,0,9,11,11,6,9,4,1,2,0,0,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,10,2,1083,555,528,486,456,58,62,2,0,1,2,0,0,8,8,549,520,480,448,58,62,2,0,1,2,0,0,8,8,6,8,6,8,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,3,1165,624,541,518,466,92,65,2,4,3,0,0,0,9,6,618,531,514,460,92,64,0,1,3,0,0,0,9,6,6,10,4,6,0,1,2,3,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,4,1280,681,599,577,489,98,98,2,4,0,0,0,0,4,8,675,585,571,478,98,98,2,2,0,0,0,0,4,7,6,14,6,11,0,0,0,2,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,10,5,943,491,452,425,368,59,77,0,2,0,0,0,0,7,5,487,443,421,362,59,76,0,0,0,0,0,0,7,5,4,9,4,6,0,1,0,2,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,6,917,483,434,413,386,63,44,3,0,1,2,0,0,3,2,471,427,402,380,62,43,3,0,1,2,0,0,3,2,12,7,11,6,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,7,912,445,467,393,419,47,46,1,0,2,0,0,0,2,2,436,458,385,412,46,44,1,0,2,0,0,0,2,2,9,9,8,7,1,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,8,1101,545,556,483,484,55,66,1,1,2,3,0,0,4,2,538,552,479,481,54,66,0,0,2,3,0,0,3,2,7,4,4,3,1,0,1,1,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,10,9,1142,572,570,516,478,52,84,2,3,0,2,0,0,2,3,562,564,507,473,52,84,1,2,0,2,0,0,2,3,10,6,9,5,0,0,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,10,1296,655,641,557,578,91,58,0,3,2,1,0,0,5,1,649,636,551,574,91,58,0,2,2,1,0,0,5,1,6,5,6,4,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,11,1264,596,668,522,566,70,95,1,4,1,2,0,0,2,1,592,666,518,564,70,95,1,4,1,2,0,0,2,1,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,12,1254,610,644,526,549,75,87,4,3,0,2,0,0,5,3,605,640,522,547,74,85,4,3,0,2,0,0,5,3,5,4,4,2,1,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,13,1130,551,579,490,510,52,61,4,2,1,3,0,0,4,3,547,577,487,509,51,60,4,2,1,3,0,0,4,3,4,2,3,1,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,14,954,441,513,400,463,39,46,2,2,0,0,0,0,0,2,440,511,399,461,39,46,2,2,0,0,0,0,0,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,15,772,362,410,327,379,31,27,2,0,0,2,0,0,2,2,361,410,326,379,31,27,2,0,0,2,0,0,2,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,16,621,250,371,228,308,22,59,0,2,0,0,0,0,0,2,250,370,228,308,22,58,0,2,0,0,0,0,0,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,17,399,159,240,146,203,11,34,2,0,0,1,0,0,0,2,159,240,146,203,11,34,2,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,18,328,94,234,80,198,13,32,1,2,0,0,0,0,0,2,93,234,80,198,13,32,0,2,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,99,17541,8656,8885,7533,7676,1005,1087,29,32,14,23,0,0,75,67,8558,8793,7450,7606,998,1076,24,22,14,23,0,0,72,66,98,92,83,70,7,11,5,10,0,0,0,0,3,1 -050,01,057,Alabama,Fayette County,11,0,224,113,111,93,93,11,16,1,0,0,0,0,0,8,2,106,107,90,89,9,16,0,0,0,0,0,0,7,2,7,4,3,4,2,0,1,0,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,11,1,758,426,332,361,289,51,29,0,0,1,3,0,0,13,11,413,324,350,283,50,27,0,0,1,3,0,0,12,11,13,8,11,6,1,2,0,0,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,11,2,1038,542,496,463,427,68,60,2,0,1,2,0,0,8,7,535,488,456,419,68,60,2,0,1,2,0,0,8,7,7,8,7,8,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,3,1170,636,534,535,465,87,59,2,4,3,0,0,0,9,6,631,523,532,458,87,58,0,1,3,0,0,0,9,6,5,11,3,7,0,1,2,3,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,4,1246,668,578,560,475,102,90,2,4,0,0,0,0,4,9,662,566,554,466,102,90,2,2,0,0,0,0,4,8,6,12,6,9,0,0,0,2,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,11,5,921,473,448,413,373,53,68,0,2,0,0,0,0,7,5,466,439,406,367,53,67,0,0,0,0,0,0,7,5,7,9,7,6,0,1,0,2,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,6,878,442,436,369,378,66,54,3,0,1,2,0,0,3,2,430,429,358,372,65,53,3,0,1,2,0,0,3,2,12,7,11,6,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,7,917,456,461,396,413,55,46,1,0,2,0,0,0,2,2,446,449,387,403,54,44,1,0,2,0,0,0,2,2,10,12,9,10,1,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,8,1056,525,531,467,468,50,57,1,1,2,3,0,0,5,2,517,527,462,465,49,57,0,0,2,3,0,0,4,2,8,4,5,3,1,0,1,1,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,11,9,1114,545,569,496,484,45,77,2,3,0,2,0,0,2,3,537,563,489,479,45,77,1,2,0,2,0,0,2,3,8,6,7,5,0,0,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,10,1268,642,626,559,554,76,67,0,3,2,1,0,0,5,1,635,621,552,550,76,67,0,2,2,1,0,0,5,1,7,5,7,4,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,11,1241,602,639,523,552,75,80,1,4,1,2,0,0,2,1,596,636,517,549,75,80,1,4,1,2,0,0,2,1,6,3,6,3,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,12,1252,601,651,520,563,72,80,4,3,0,2,0,0,5,3,596,647,516,561,71,78,4,3,0,2,0,0,5,3,5,4,4,2,1,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,13,1126,542,584,481,514,52,62,4,2,1,3,0,0,4,3,538,582,478,513,51,61,4,2,1,3,0,0,4,3,4,2,3,1,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,14,977,464,513,419,460,43,49,2,2,0,0,0,0,0,2,463,511,418,458,43,49,2,2,0,0,0,0,0,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,15,787,366,421,330,386,31,30,2,1,0,2,0,0,3,2,365,421,329,386,31,30,2,1,0,2,0,0,3,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,16,595,236,359,218,305,18,50,0,2,0,0,0,0,0,2,236,358,218,305,18,49,0,2,0,0,0,0,0,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,17,431,178,253,165,225,11,25,2,0,0,1,0,0,0,2,178,253,165,225,11,25,2,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,18,311,97,214,80,177,16,32,1,2,0,0,0,0,0,3,96,214,80,177,16,32,0,2,0,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,99,17310,8554,8756,7448,7601,982,1031,30,33,14,23,0,0,80,68,8446,8658,7357,7525,974,1020,24,23,14,23,0,0,77,67,108,98,91,76,8,11,6,10,0,0,0,0,3,1 -050,01,057,Alabama,Fayette County,12,0,214,116,98,96,81,10,15,1,0,0,0,0,0,9,2,109,94,93,77,8,15,0,0,0,0,0,0,8,2,7,4,3,4,2,0,1,0,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,12,1,783,421,362,349,318,54,30,0,0,1,3,0,0,17,11,407,354,337,312,53,28,0,0,1,3,0,0,16,11,14,8,12,6,1,2,0,0,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,12,2,999,520,479,453,415,56,55,2,0,1,2,0,0,8,7,514,471,447,407,56,55,2,0,1,2,0,0,8,7,6,8,6,8,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,3,1146,618,528,517,459,87,59,2,4,3,0,0,0,9,6,613,517,514,452,87,58,0,1,3,0,0,0,9,6,5,11,3,7,0,1,2,3,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,4,1211,661,550,560,454,95,83,2,4,0,0,0,0,4,9,655,537,554,444,95,83,2,2,0,0,0,0,4,8,6,13,6,10,0,0,0,2,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,12,5,924,469,455,410,390,52,58,0,2,0,0,0,0,7,5,462,446,403,384,52,57,0,0,0,0,0,0,7,5,7,9,7,6,0,1,0,2,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,6,873,433,440,364,382,62,54,3,0,1,2,0,0,3,2,421,433,353,376,61,53,3,0,1,2,0,0,3,2,12,7,11,6,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,7,910,447,463,388,411,54,50,1,0,2,0,0,0,2,2,437,454,379,404,53,48,1,0,2,0,0,0,2,2,10,9,9,7,1,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,8,1015,506,509,454,452,44,51,1,1,2,3,0,0,5,2,499,505,450,449,43,51,0,0,2,3,0,0,4,2,7,4,4,3,1,0,1,1,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,12,9,1100,547,553,493,470,50,75,2,3,0,2,0,0,2,3,539,547,486,465,50,75,1,2,0,2,0,0,2,3,8,6,7,5,0,0,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,10,1285,640,645,556,573,77,67,0,3,2,1,0,0,5,1,633,640,549,569,77,67,0,2,2,1,0,0,5,1,7,5,7,4,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,11,1270,608,662,528,570,76,85,1,4,1,2,0,0,2,1,602,658,522,566,76,85,1,4,1,2,0,0,2,1,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,12,1252,624,628,531,543,84,77,4,3,0,2,0,0,5,3,619,624,527,541,83,75,4,3,0,2,0,0,5,3,5,4,4,2,1,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,13,1175,562,613,499,534,54,71,4,2,1,3,0,0,4,3,558,611,496,533,53,70,4,2,1,3,0,0,4,3,4,2,3,1,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,14,956,455,501,403,450,50,47,2,2,0,0,0,0,0,2,454,499,402,448,50,47,2,2,0,0,0,0,0,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,15,812,373,439,343,402,25,31,2,1,0,2,0,0,3,3,372,439,342,402,25,31,2,1,0,2,0,0,3,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,16,577,242,335,230,289,12,42,0,2,0,0,0,0,0,2,242,334,230,289,12,41,0,2,0,0,0,0,0,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,17,398,166,232,153,201,11,28,2,0,0,1,0,0,0,2,166,232,153,201,11,28,2,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,18,341,99,242,84,203,14,34,1,2,0,0,0,0,0,3,98,242,84,203,14,34,0,2,0,0,0,0,0,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,99,17241,8507,8734,7411,7597,967,1012,30,33,14,23,0,0,85,69,8400,8637,7321,7522,959,1001,24,23,14,23,0,0,82,68,107,97,90,75,8,11,6,10,0,0,0,0,3,1 -050,01,057,Alabama,Fayette County,13,0,214,115,99,95,82,10,15,1,0,1,0,0,0,8,2,109,94,92,77,8,15,0,0,1,0,0,0,8,2,6,5,3,5,2,0,1,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,1,779,422,357,345,314,57,29,2,1,1,2,0,0,17,11,408,351,334,308,55,29,1,1,1,2,0,0,17,11,14,6,11,6,2,0,1,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,2,993,515,478,453,415,56,56,1,0,1,1,0,0,4,6,509,468,447,407,56,54,1,0,1,1,0,0,4,6,6,10,6,8,0,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,3,1145,622,523,515,456,88,58,4,3,3,0,0,0,12,6,616,515,512,451,86,57,3,1,3,0,0,0,12,6,6,8,3,5,2,1,1,2,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,4,1202,659,543,555,448,93,81,3,6,0,0,0,0,8,8,653,531,550,439,92,80,3,4,0,0,0,0,8,8,6,12,5,9,1,1,0,2,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,5,929,472,457,410,388,52,59,0,3,1,2,1,0,8,5,464,450,403,383,52,58,0,2,1,2,0,0,8,5,8,7,7,5,0,1,0,1,0,0,1,0,0,0 -050,01,057,Alabama,Fayette County,13,6,867,431,436,363,380,63,52,2,0,1,2,0,0,2,2,419,431,352,375,62,52,2,0,1,2,0,0,2,2,12,5,11,5,1,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,7,919,450,469,387,414,55,51,3,0,4,2,0,0,1,2,440,461,379,408,54,49,2,0,4,2,0,0,1,2,10,8,8,6,1,2,1,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,8,997,495,502,447,449,43,50,2,0,1,2,0,0,2,1,489,498,444,446,42,49,1,0,1,2,0,0,1,1,6,4,3,3,1,1,1,0,0,0,0,0,1,0 -050,01,057,Alabama,Fayette County,13,9,1097,548,549,493,466,49,75,3,2,0,3,0,0,3,3,540,543,486,462,49,74,2,1,0,3,0,0,3,3,8,6,7,4,0,1,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,10,1278,636,642,549,569,76,68,3,2,2,2,0,0,6,1,631,637,544,564,76,68,3,2,2,2,0,0,6,1,5,5,5,5,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,11,1277,614,663,529,569,77,87,3,3,1,1,0,0,4,3,607,660,522,566,77,87,3,3,1,1,0,0,4,3,7,3,7,3,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,12,1254,624,630,533,545,84,79,3,2,0,1,0,0,4,3,620,626,529,543,84,77,3,2,0,1,0,0,4,3,4,4,4,2,0,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,13,1181,566,615,503,537,52,69,4,2,1,3,0,0,6,4,562,614,499,536,52,69,4,2,1,3,0,0,6,4,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,14,960,456,504,404,451,49,48,2,1,0,1,0,0,1,3,454,503,402,450,49,48,2,1,0,1,0,0,1,3,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,15,814,373,441,345,403,25,31,1,1,0,2,0,0,2,4,373,439,345,401,25,31,1,1,0,2,0,0,2,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,16,576,242,334,231,290,11,40,0,2,0,0,0,0,0,2,242,333,231,289,11,40,0,2,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,17,396,164,232,152,201,12,28,0,0,0,0,0,0,0,3,164,232,152,201,12,28,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,18,341,99,242,85,204,14,34,0,2,0,0,0,0,0,2,99,242,85,204,14,34,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,99,17219,8503,8716,7394,7581,966,1010,37,30,17,24,1,0,88,71,8399,8628,7308,7510,956,999,31,24,17,24,0,0,87,71,104,88,86,71,10,11,6,6,0,0,1,0,1,0 -050,01,059,Alabama,Franklin County,1,0,389,222,167,205,154,12,10,0,0,0,0,2,1,3,2,191,137,177,126,11,8,0,0,0,0,0,1,3,2,31,30,28,28,1,2,0,0,0,0,2,0,0,0 -050,01,059,Alabama,Franklin County,1,1,1592,775,817,718,764,40,32,4,2,2,2,2,3,9,14,648,692,593,643,39,31,4,2,2,2,1,0,9,14,127,125,125,121,1,1,0,0,0,0,1,3,0,0 -050,01,059,Alabama,Franklin County,1,2,2183,1112,1071,1043,982,54,69,5,2,1,1,1,5,8,12,977,938,917,855,49,68,3,2,1,1,0,0,7,12,135,133,126,127,5,1,2,0,0,0,1,5,1,0 -050,01,059,Alabama,Franklin County,1,3,2160,1154,1006,1066,946,72,45,5,3,1,2,2,0,8,10,1068,949,984,890,71,45,4,2,1,2,0,0,8,10,86,57,82,56,1,0,1,1,0,0,2,0,0,0 -050,01,059,Alabama,Franklin County,1,4,2176,1151,1025,1076,946,58,60,7,8,1,3,4,3,5,5,1016,948,948,872,57,60,5,7,1,3,0,1,5,5,135,77,128,74,1,0,2,1,0,0,4,2,0,0 -050,01,059,Alabama,Franklin County,1,5,2037,1101,936,1041,888,46,35,2,2,2,2,3,2,7,7,836,840,781,796,45,33,1,2,2,2,1,0,6,7,265,96,260,92,1,2,1,0,0,0,2,2,1,0 -050,01,059,Alabama,Franklin County,1,6,2195,1155,1040,1104,979,41,51,4,3,1,1,3,2,2,4,928,936,880,880,41,49,4,2,1,1,0,0,2,4,227,104,224,99,0,2,0,1,0,0,3,2,0,0 -050,01,059,Alabama,Franklin County,1,7,2092,1066,1026,1016,971,37,42,3,7,0,0,2,2,8,4,926,943,881,893,35,39,2,7,0,0,1,0,7,4,140,83,135,78,2,3,1,0,0,0,1,2,1,0 -050,01,059,Alabama,Franklin County,1,8,2285,1157,1128,1096,1065,47,52,5,5,1,3,3,1,5,2,1052,1083,998,1021,45,52,5,5,0,3,0,0,4,2,105,45,98,44,2,0,0,0,1,0,3,1,1,0 -050,01,059,Alabama,Franklin County,1,9,2191,1087,1104,1032,1038,45,55,1,8,1,0,2,0,6,3,1019,1074,970,1011,43,54,1,6,1,0,0,0,4,3,68,30,62,27,2,1,0,2,0,0,2,0,2,0 -050,01,059,Alabama,Franklin County,1,10,2110,1010,1100,960,1033,37,51,5,2,1,6,0,0,7,8,968,1076,919,1013,37,47,5,2,1,6,0,0,6,8,42,24,41,20,0,4,0,0,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,1,11,1954,954,1000,905,949,35,36,2,3,5,4,1,1,6,7,911,982,865,933,34,36,2,2,4,4,0,0,6,7,43,18,40,16,1,0,0,1,1,0,1,1,0,0 -050,01,059,Alabama,Franklin County,1,12,1680,806,874,765,842,29,23,7,2,0,0,0,0,5,7,792,854,752,823,29,23,6,1,0,0,0,0,5,7,14,20,13,19,0,0,1,1,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,1,13,1569,734,835,713,794,18,35,0,1,0,1,0,1,3,3,721,827,700,787,18,35,0,1,0,1,0,0,3,3,13,8,13,7,0,0,0,0,0,0,0,1,0,0 -050,01,059,Alabama,Franklin County,1,14,1420,659,761,633,722,23,34,0,1,0,0,1,0,2,4,649,758,624,720,23,34,0,1,0,0,0,0,2,3,10,3,9,2,0,0,0,0,0,0,1,0,0,1 -050,01,059,Alabama,Franklin County,1,15,1153,492,661,474,633,15,26,0,1,0,0,0,0,3,1,485,659,468,631,15,26,0,1,0,0,0,0,2,1,7,2,6,2,0,0,0,0,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,1,16,926,381,545,365,517,14,21,0,0,0,0,1,0,1,7,377,542,362,515,14,21,0,0,0,0,0,0,1,6,4,3,3,2,0,0,0,0,0,0,1,0,0,1 -050,01,059,Alabama,Franklin County,1,17,604,185,419,176,409,7,8,0,0,0,0,0,0,2,2,185,417,176,407,7,8,0,0,0,0,0,0,2,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,1,18,541,147,394,138,367,4,25,2,1,1,0,1,0,1,1,143,392,135,366,4,25,2,0,1,0,0,0,1,1,4,2,3,1,0,0,0,1,0,0,1,0,0,0 -050,01,059,Alabama,Franklin County,1,99,31257,15348,15909,14526,14999,634,710,52,51,17,25,28,21,91,103,13892,15047,13130,14182,617,694,44,43,15,25,3,2,83,101,1456,862,1396,817,17,16,8,8,2,0,25,19,8,2 -050,01,059,Alabama,Franklin County,2,0,392,224,168,208,156,12,10,0,0,0,0,2,1,2,1,192,137,179,127,11,8,0,0,0,0,0,1,2,1,32,31,29,29,1,2,0,0,0,0,2,0,0,0 -050,01,059,Alabama,Franklin County,2,1,1583,772,811,715,759,40,32,4,2,2,2,2,3,9,13,645,686,590,638,39,31,4,2,2,2,1,0,9,13,127,125,125,121,1,1,0,0,0,0,1,3,0,0 -050,01,059,Alabama,Franklin County,2,2,2166,1105,1061,1037,976,53,66,5,2,1,1,1,5,8,11,970,928,911,849,48,65,3,2,1,1,0,0,7,11,135,133,126,127,5,1,2,0,0,0,1,5,1,0 -050,01,059,Alabama,Franklin County,2,3,2162,1155,1007,1067,947,72,45,5,3,1,2,2,0,8,10,1069,950,985,891,71,45,4,2,1,2,0,0,8,10,86,57,82,56,1,0,1,1,0,0,2,0,0,0 -050,01,059,Alabama,Franklin County,2,4,2183,1156,1027,1081,947,58,60,7,8,1,3,4,3,5,6,1021,951,953,874,57,60,5,7,1,3,0,1,5,6,135,76,128,73,1,0,2,1,0,0,4,2,0,0 -050,01,059,Alabama,Franklin County,2,5,2049,1108,941,1048,893,46,35,2,2,2,2,3,2,7,7,840,845,785,801,45,33,1,2,2,2,1,0,6,7,268,96,263,92,1,2,1,0,0,0,2,2,1,0 -050,01,059,Alabama,Franklin County,2,6,2173,1146,1027,1095,966,41,51,4,3,1,1,3,2,2,4,917,923,869,867,41,49,4,2,1,1,0,0,2,4,229,104,226,99,0,2,0,1,0,0,3,2,0,0 -050,01,059,Alabama,Franklin County,2,7,2087,1064,1023,1013,968,37,42,3,7,0,0,2,2,9,4,923,939,877,889,35,39,2,7,0,0,1,0,8,4,141,84,136,79,2,3,1,0,0,0,1,2,1,0 -050,01,059,Alabama,Franklin County,2,8,2271,1150,1121,1089,1058,47,52,5,5,1,3,3,1,5,2,1044,1076,990,1014,45,52,5,5,0,3,0,0,4,2,106,45,99,44,2,0,0,0,1,0,3,1,1,0 -050,01,059,Alabama,Franklin County,2,9,2186,1084,1102,1030,1036,45,55,1,8,1,0,2,0,5,3,1016,1072,968,1009,43,54,1,6,1,0,0,0,3,3,68,30,62,27,2,1,0,2,0,0,2,0,2,0 -050,01,059,Alabama,Franklin County,2,10,2117,1013,1104,963,1037,37,51,5,2,1,6,0,0,7,8,971,1080,922,1017,37,47,5,2,1,6,0,0,6,8,42,24,41,20,0,4,0,0,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,2,11,1966,959,1007,910,956,35,36,2,3,5,4,1,1,6,7,916,989,870,940,34,36,2,2,4,4,0,0,6,7,43,18,40,16,1,0,0,1,1,0,1,1,0,0 -050,01,059,Alabama,Franklin County,2,12,1682,807,875,767,844,29,23,7,2,0,0,0,0,4,6,793,855,754,825,29,23,6,1,0,0,0,0,4,6,14,20,13,19,0,0,1,1,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,2,13,1572,736,836,715,795,18,35,0,1,0,1,0,1,3,3,723,828,702,788,18,35,0,1,0,1,0,0,3,3,13,8,13,7,0,0,0,0,0,0,0,1,0,0 -050,01,059,Alabama,Franklin County,2,14,1417,657,760,631,721,23,34,0,1,0,0,1,0,2,4,647,757,622,719,23,34,0,1,0,0,0,0,2,3,10,3,9,2,0,0,0,0,0,0,1,0,0,1 -050,01,059,Alabama,Franklin County,2,15,1153,493,660,475,632,15,26,0,1,0,0,0,0,3,1,486,658,469,630,15,26,0,1,0,0,0,0,2,1,7,2,6,2,0,0,0,0,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,2,16,931,384,547,368,519,14,21,0,0,0,0,1,0,1,7,380,544,365,517,14,21,0,0,0,0,0,0,1,6,4,3,3,2,0,0,0,0,0,0,1,0,0,1 -050,01,059,Alabama,Franklin County,2,17,609,187,422,178,412,7,8,0,0,0,0,0,0,2,2,187,420,178,410,7,8,0,0,0,0,0,0,2,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,2,18,543,150,393,140,366,4,25,2,1,1,0,1,0,2,1,146,391,137,365,4,25,2,0,1,0,0,0,2,1,4,2,3,1,0,0,0,1,0,0,1,0,0,0 -050,01,059,Alabama,Franklin County,2,99,31242,15350,15892,14530,14988,633,707,52,51,17,25,28,21,90,100,13886,15029,13126,14170,616,691,44,43,15,25,3,2,82,98,1464,863,1404,818,17,16,8,8,2,0,25,19,8,2 -050,01,059,Alabama,Franklin County,3,0,468,222,246,209,236,7,5,1,1,0,0,2,1,3,3,186,199,177,192,6,3,0,0,0,0,0,1,3,3,36,47,32,44,1,2,1,1,0,0,2,0,0,0 -050,01,059,Alabama,Franklin County,3,1,1528,770,758,712,697,39,38,7,5,2,2,2,3,8,13,661,649,608,597,38,35,4,2,2,2,1,0,8,13,109,109,104,100,1,3,3,3,0,0,1,3,0,0 -050,01,059,Alabama,Franklin County,3,2,2132,1076,1056,999,976,54,51,12,5,1,1,1,5,9,18,945,919,881,848,49,50,6,2,1,1,0,0,8,18,131,137,118,128,5,1,6,3,0,0,1,5,1,0 -050,01,059,Alabama,Franklin County,3,3,2186,1159,1027,1083,958,58,52,6,3,1,2,2,0,9,12,1061,955,990,887,57,52,4,2,1,2,0,0,9,12,98,72,93,71,1,0,2,1,0,0,2,0,0,0 -050,01,059,Alabama,Franklin County,3,4,2068,1098,970,1023,893,59,56,7,11,1,3,3,2,5,5,970,901,901,830,58,56,5,7,1,3,0,0,5,5,128,69,122,63,1,0,2,4,0,0,3,2,0,0 -050,01,059,Alabama,Franklin County,3,5,2086,1114,972,1048,918,49,40,5,3,2,2,3,2,7,7,894,882,836,833,48,38,1,2,2,2,1,0,6,7,220,90,212,85,1,2,4,1,0,0,2,2,1,0 -050,01,059,Alabama,Franklin County,3,6,2102,1083,1019,1037,963,33,44,7,5,1,1,3,2,2,4,843,881,803,832,33,42,4,2,1,1,0,0,2,4,240,138,234,131,0,2,3,3,0,0,3,2,0,0 -050,01,059,Alabama,Franklin County,3,7,2098,1065,1033,1005,980,42,39,8,8,0,0,2,2,8,4,915,944,865,898,40,36,2,6,0,0,1,0,7,4,150,89,140,82,2,3,6,2,0,0,1,2,1,0 -050,01,059,Alabama,Franklin County,3,8,2226,1145,1081,1084,1021,46,47,6,5,1,3,3,1,5,4,1032,1031,979,972,44,47,5,5,0,3,0,0,4,4,113,50,105,49,2,0,1,0,1,0,3,1,1,0 -050,01,059,Alabama,Franklin County,3,9,2208,1101,1107,1046,1046,43,49,2,8,1,0,2,0,7,4,1028,1073,980,1015,41,48,1,6,1,0,0,0,5,4,73,34,66,31,2,1,1,2,0,0,2,0,2,0 -050,01,059,Alabama,Franklin County,3,10,2092,1005,1087,950,1020,40,51,7,2,1,6,0,0,7,8,959,1063,906,999,40,48,6,2,1,6,0,0,6,8,46,24,44,21,0,3,1,0,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,3,11,2059,1014,1045,962,991,38,39,2,2,5,4,1,2,6,7,969,1021,920,969,37,39,2,2,4,4,0,0,6,7,45,24,42,22,1,0,0,0,1,0,1,2,0,0 -050,01,059,Alabama,Franklin County,3,12,1695,812,883,771,852,29,21,7,2,0,0,0,0,5,8,794,863,754,833,29,21,6,1,0,0,0,0,5,8,18,20,17,19,0,0,1,1,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,3,13,1537,713,824,692,785,18,33,0,1,0,1,0,1,3,3,698,815,677,777,18,33,0,1,0,1,0,0,3,3,15,9,15,8,0,0,0,0,0,0,0,1,0,0 -050,01,059,Alabama,Franklin County,3,14,1426,672,754,649,710,20,39,0,1,0,0,1,0,2,4,656,748,634,705,20,39,0,1,0,0,0,0,2,3,16,6,15,5,0,0,0,0,0,0,1,0,0,1 -050,01,059,Alabama,Franklin County,3,15,1159,487,672,473,641,11,29,0,1,0,0,0,0,3,1,479,669,466,638,11,29,0,1,0,0,0,0,2,1,8,3,7,3,0,0,0,0,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,3,16,950,388,562,372,537,14,18,0,0,0,0,1,0,1,7,381,559,366,535,14,18,0,0,0,0,0,0,1,6,7,3,6,2,0,0,0,0,0,0,1,0,0,1 -050,01,059,Alabama,Franklin County,3,17,622,212,410,200,397,9,11,0,0,0,0,0,0,3,2,212,408,200,395,9,11,0,0,0,0,0,0,3,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,3,18,548,148,400,139,375,4,23,2,1,1,0,1,0,1,1,144,398,136,374,4,23,2,0,1,0,0,0,1,1,4,2,3,1,0,0,0,1,0,0,1,0,0,0 -050,01,059,Alabama,Franklin County,3,99,31190,15284,15906,14454,14996,613,685,79,64,17,25,27,21,94,115,13827,14978,13079,14129,596,668,48,42,15,25,3,1,86,113,1457,928,1375,867,17,17,31,22,2,0,24,20,8,2 -050,01,059,Alabama,Franklin County,4,0,412,200,212,188,204,6,7,1,0,0,0,2,0,3,1,153,168,146,162,5,5,0,0,0,0,0,0,2,1,47,44,42,42,1,2,1,0,0,0,2,0,1,0 -050,01,059,Alabama,Franklin County,4,1,1595,786,809,731,750,33,32,7,5,2,3,2,3,11,16,673,687,624,640,32,28,4,2,2,2,1,0,10,15,113,122,107,110,1,4,3,3,0,1,1,3,1,1 -050,01,059,Alabama,Franklin County,4,2,1990,998,992,924,928,51,42,11,6,1,1,1,3,10,12,856,857,795,801,47,41,5,2,1,1,0,0,8,12,142,135,129,127,4,1,6,4,0,0,1,3,2,0 -050,01,059,Alabama,Franklin County,4,3,2148,1141,1007,1067,937,54,51,7,7,1,2,2,0,10,10,1037,918,969,855,53,49,4,2,1,2,0,0,10,10,104,89,98,82,1,2,3,5,0,0,2,0,0,0 -050,01,059,Alabama,Franklin County,4,4,2065,1127,938,1043,862,64,52,9,12,1,4,3,3,7,5,994,877,921,809,62,52,5,7,1,3,0,1,5,5,133,61,122,53,2,0,4,5,0,1,3,2,2,0 -050,01,059,Alabama,Franklin County,4,5,2087,1099,988,1032,922,46,49,7,5,2,2,3,2,9,8,876,877,820,819,45,47,1,2,2,2,1,0,7,7,223,111,212,103,1,2,6,3,0,0,2,2,2,1 -050,01,059,Alabama,Franklin County,4,6,2038,1069,969,1017,922,37,33,8,8,1,1,3,2,3,3,806,814,763,777,37,31,3,2,1,1,0,0,2,3,263,155,254,145,0,2,5,6,0,0,3,2,1,0 -050,01,059,Alabama,Franklin County,4,7,2045,1029,1016,970,968,39,33,9,10,2,0,1,2,8,3,867,918,821,879,37,30,2,6,1,0,0,0,6,3,162,98,149,89,2,3,7,4,1,0,1,2,2,0 -050,01,059,Alabama,Franklin County,4,8,2158,1123,1035,1055,975,49,45,8,9,1,3,3,1,7,2,1003,982,948,926,46,45,6,6,0,3,0,0,3,2,120,53,107,49,3,0,2,3,1,0,3,1,4,0 -050,01,059,Alabama,Franklin County,4,9,2206,1109,1097,1061,1028,34,57,6,8,1,0,2,0,5,4,1021,1056,981,990,32,56,3,6,1,0,0,0,4,4,88,41,80,38,2,1,3,2,0,0,2,0,1,0 -050,01,059,Alabama,Franklin County,4,10,2082,1011,1071,946,1008,48,45,8,5,1,5,1,0,7,8,964,1043,903,984,48,42,6,4,1,5,0,0,6,8,47,28,43,24,0,3,2,1,0,0,1,0,1,0 -050,01,059,Alabama,Franklin County,4,11,1992,978,1014,929,960,33,39,3,3,4,4,0,1,9,7,935,992,890,941,32,39,2,2,3,4,0,0,8,6,43,22,39,19,1,0,1,1,1,0,0,1,1,1 -050,01,059,Alabama,Franklin County,4,12,1770,843,927,802,888,30,25,6,3,0,1,0,0,5,10,824,901,784,864,30,25,5,1,0,1,0,0,5,10,19,26,18,24,0,0,1,2,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,4,13,1568,728,840,697,805,25,29,1,1,1,1,0,1,4,3,712,832,681,798,25,29,1,1,1,1,0,0,4,3,16,8,16,7,0,0,0,0,0,0,0,1,0,0 -050,01,059,Alabama,Franklin County,4,14,1431,671,760,654,712,14,44,0,1,0,0,1,0,2,3,654,753,638,706,14,44,0,1,0,0,0,0,2,2,17,7,16,6,0,0,0,0,0,0,1,0,0,1 -050,01,059,Alabama,Franklin County,4,15,1190,512,678,492,653,17,23,0,1,0,0,0,0,3,1,501,672,482,647,17,23,0,1,0,0,0,0,2,1,11,6,10,6,0,0,0,0,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,4,16,971,391,580,375,551,14,22,0,0,0,0,1,0,1,7,385,577,370,549,14,22,0,0,0,0,0,0,1,6,6,3,5,2,0,0,0,0,0,0,1,0,0,1 -050,01,059,Alabama,Franklin County,4,17,603,226,377,214,365,9,10,0,0,0,0,0,0,3,2,226,375,214,363,9,10,0,0,0,0,0,0,3,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,4,18,540,148,392,137,371,6,19,1,1,1,0,1,0,2,1,145,390,135,370,6,19,1,0,1,0,0,0,2,1,3,2,2,1,0,0,0,1,0,0,1,0,0,0 -050,01,059,Alabama,Franklin County,4,99,30891,15189,15702,14334,14809,609,657,92,85,19,27,26,18,109,106,13632,14689,12885,13880,591,637,48,45,16,25,2,1,90,101,1557,1013,1449,929,18,20,44,40,3,2,24,17,19,5 -050,01,059,Alabama,Franklin County,5,0,452,232,220,219,204,7,11,2,2,0,0,2,0,2,3,182,173,175,161,6,9,0,0,0,0,0,0,1,3,50,47,44,43,1,2,2,2,0,0,2,0,1,0 -050,01,059,Alabama,Franklin County,5,1,1621,810,811,753,751,29,31,8,7,2,3,3,3,15,16,662,672,614,624,28,29,4,2,2,2,1,0,13,15,148,139,139,127,1,2,4,5,0,1,2,3,2,1 -050,01,059,Alabama,Franklin County,5,2,1966,987,979,921,924,38,28,13,8,2,1,1,3,12,15,841,842,790,797,34,27,5,2,2,1,0,0,10,15,146,137,131,127,4,1,8,6,0,0,1,3,2,0 -050,01,059,Alabama,Franklin County,5,3,2168,1133,1035,1050,953,60,57,9,8,1,2,2,1,11,14,1011,927,935,855,59,55,5,2,1,2,0,0,11,13,122,108,115,98,1,2,4,6,0,0,2,1,0,1 -050,01,059,Alabama,Franklin County,5,4,2064,1110,954,1027,878,60,51,10,11,1,4,3,3,9,7,981,889,910,823,58,50,5,5,1,3,0,1,7,7,129,65,117,55,2,1,5,6,0,1,3,2,2,0 -050,01,059,Alabama,Franklin County,5,5,2036,1086,950,1018,887,45,45,8,6,2,2,2,2,11,8,841,833,788,779,43,43,1,2,2,2,1,0,6,7,245,117,230,108,2,2,7,4,0,0,1,2,5,1 -050,01,059,Alabama,Franklin County,5,6,2012,1051,961,988,908,44,36,11,10,1,2,3,2,4,3,799,806,751,767,43,33,2,2,1,1,0,0,2,3,252,155,237,141,1,3,9,8,0,1,3,2,2,0 -050,01,059,Alabama,Franklin County,5,7,2093,1078,1015,1016,960,37,38,15,12,2,1,1,1,7,3,892,907,847,863,36,34,3,6,1,1,0,0,5,3,186,108,169,97,1,4,12,6,1,0,1,1,2,0 -050,01,059,Alabama,Franklin County,5,8,2059,1068,991,1007,939,41,34,10,10,0,3,3,2,7,3,948,924,902,880,38,33,5,6,0,3,0,0,3,2,120,67,105,59,3,1,5,4,0,0,3,2,4,1 -050,01,059,Alabama,Franklin County,5,9,2209,1118,1091,1051,1016,50,62,8,8,1,0,1,0,7,5,1024,1046,965,974,48,61,4,6,1,0,0,0,6,5,94,45,86,42,2,1,4,2,0,0,1,0,1,0 -050,01,059,Alabama,Franklin County,5,10,2117,1019,1098,954,1035,43,46,11,5,2,4,1,0,8,8,964,1064,906,1006,43,43,6,3,2,4,0,0,7,8,55,34,48,29,0,3,5,2,0,0,1,0,1,0 -050,01,059,Alabama,Franklin County,5,11,1962,960,1002,914,942,29,44,2,5,4,3,1,1,10,7,924,982,883,926,28,44,1,3,3,3,0,0,9,6,36,20,31,16,1,0,1,2,1,0,1,1,1,1 -050,01,059,Alabama,Franklin County,5,12,1791,873,918,825,871,35,29,6,3,0,3,1,0,6,12,848,891,801,845,35,29,5,2,0,3,1,0,6,12,25,27,24,26,0,0,1,1,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,5,13,1578,732,846,699,814,27,25,1,1,1,1,0,1,4,4,715,834,682,803,27,25,1,1,1,1,0,0,4,4,17,12,17,11,0,0,0,0,0,0,0,1,0,0 -050,01,059,Alabama,Franklin County,5,14,1456,681,775,666,725,12,45,0,1,0,0,1,0,2,4,670,767,656,718,12,45,0,1,0,0,0,0,2,3,11,8,10,7,0,0,0,0,0,0,1,0,0,1 -050,01,059,Alabama,Franklin County,5,15,1182,503,679,483,656,16,21,0,1,0,0,0,0,4,1,491,671,472,648,16,21,0,1,0,0,0,0,3,1,12,8,11,8,0,0,0,0,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,5,16,964,396,568,382,544,10,16,0,1,0,0,1,0,3,7,390,565,377,542,10,16,0,1,0,0,0,0,3,6,6,3,5,2,0,0,0,0,0,0,1,0,0,1 -050,01,059,Alabama,Franklin County,5,17,648,243,405,232,390,9,14,0,0,0,0,0,0,2,1,243,403,232,388,9,14,0,0,0,0,0,0,2,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,5,18,496,131,365,119,349,6,14,1,1,1,0,1,0,3,1,127,363,117,348,6,14,1,0,1,0,0,0,2,1,4,2,2,1,0,0,0,1,0,0,1,0,1,0 -050,01,059,Alabama,Franklin County,5,99,30874,15211,15663,14324,14746,598,647,115,100,20,29,27,19,127,122,13553,14559,12803,13747,579,625,48,45,18,26,3,1,102,115,1658,1104,1521,999,19,22,67,55,2,3,24,18,25,7 -050,01,059,Alabama,Franklin County,6,0,411,208,203,197,186,6,10,1,1,0,1,1,1,3,4,162,156,155,144,5,7,0,0,0,0,0,1,2,4,46,47,42,42,1,3,1,1,0,1,1,0,1,0 -050,01,059,Alabama,Franklin County,6,1,1675,856,819,791,750,32,33,9,7,3,3,3,3,18,23,680,661,626,607,31,28,4,2,2,2,1,0,16,22,176,158,165,143,1,5,5,5,1,1,2,3,2,1 -050,01,059,Alabama,Franklin County,6,2,1958,990,968,923,908,36,32,16,11,3,1,1,3,11,13,846,825,797,778,32,30,6,3,2,1,0,0,9,13,144,143,126,130,4,2,10,8,1,0,1,3,2,0 -050,01,059,Alabama,Franklin County,6,3,2132,1102,1030,1027,945,50,57,10,9,1,2,2,1,12,16,972,898,905,823,49,55,5,3,1,2,0,0,12,15,130,132,122,122,1,2,5,6,0,0,2,1,0,1 -050,01,059,Alabama,Franklin County,6,4,2095,1128,967,1051,893,55,46,10,14,1,3,3,2,8,9,984,905,919,844,53,45,5,5,1,3,0,0,6,8,144,62,132,49,2,1,5,9,0,0,3,2,2,1 -050,01,059,Alabama,Franklin County,6,5,1908,1003,905,934,843,43,41,11,7,3,3,2,2,10,9,792,787,740,736,40,39,2,2,3,2,1,0,6,8,211,118,194,107,3,2,9,5,0,1,1,2,4,1 -050,01,059,Alabama,Franklin County,6,6,1974,1032,942,968,887,42,37,12,10,1,2,4,2,5,4,770,785,724,746,40,34,2,1,1,1,1,0,2,3,262,157,244,141,2,3,10,9,0,1,3,2,3,1 -050,01,059,Alabama,Franklin County,6,7,2105,1083,1022,1023,970,30,33,17,14,2,1,2,1,9,3,855,894,816,852,29,31,3,7,1,1,1,0,5,3,228,128,207,118,1,2,14,7,1,0,1,1,4,0 -050,01,059,Alabama,Franklin County,6,8,2021,1036,985,969,936,44,33,11,9,1,3,3,1,8,3,923,907,874,866,41,32,5,4,0,3,0,0,3,2,113,78,95,70,3,1,6,5,1,0,3,1,5,1 -050,01,059,Alabama,Franklin County,6,9,2185,1130,1055,1061,983,54,59,8,8,1,0,2,0,4,5,1007,1015,947,946,52,58,3,6,1,0,0,0,4,5,123,40,114,37,2,1,5,2,0,0,2,0,0,0 -050,01,059,Alabama,Franklin County,6,10,2146,1059,1087,994,1017,42,50,11,8,2,4,1,0,9,8,998,1051,944,985,41,47,6,7,2,4,0,0,5,8,61,36,50,32,1,3,5,1,0,0,1,0,4,0 -050,01,059,Alabama,Franklin County,6,11,2032,981,1051,928,998,36,38,3,4,3,4,1,0,10,7,937,1030,889,981,35,38,1,3,3,3,0,0,9,5,44,21,39,17,1,0,2,1,0,1,1,0,1,2 -050,01,059,Alabama,Franklin County,6,12,1808,876,932,831,879,31,36,6,3,0,3,0,0,8,11,845,904,802,853,31,36,5,2,0,3,0,0,7,10,31,28,29,26,0,0,1,1,0,0,0,0,1,1 -050,01,059,Alabama,Franklin County,6,13,1599,770,829,724,801,38,22,1,1,2,1,0,0,5,4,754,818,709,790,37,22,1,1,2,1,0,0,5,4,16,11,15,11,1,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,6,14,1428,657,771,642,728,11,38,1,1,0,0,1,0,2,4,642,763,628,721,11,38,1,1,0,0,0,0,2,3,15,8,14,7,0,0,0,0,0,0,1,0,0,1 -050,01,059,Alabama,Franklin County,6,15,1199,535,664,519,640,11,21,0,1,0,0,0,0,5,2,525,656,510,632,11,21,0,1,0,0,0,0,4,2,10,8,9,8,0,0,0,0,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,6,16,948,389,559,368,533,17,19,0,1,0,0,1,0,3,6,383,557,363,532,17,19,0,1,0,0,0,0,3,5,6,2,5,1,0,0,0,0,0,0,1,0,0,1 -050,01,059,Alabama,Franklin County,6,17,668,255,413,246,395,8,16,0,0,0,0,0,0,1,2,254,411,245,393,8,16,0,0,0,0,0,0,1,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,6,18,476,128,348,116,332,5,14,1,1,1,0,1,0,4,1,124,345,114,330,5,14,1,0,1,0,0,0,3,1,4,3,2,2,0,0,0,1,0,0,1,0,1,0 -050,01,059,Alabama,Franklin County,6,99,30768,15218,15550,14312,14624,591,635,128,110,24,31,28,16,135,134,13453,14368,12707,13559,568,610,50,49,20,26,4,1,104,123,1765,1182,1605,1065,23,25,78,61,4,5,24,15,31,11 -050,01,059,Alabama,Franklin County,7,0,480,257,223,238,204,9,11,3,2,0,1,1,0,6,5,180,169,169,155,8,9,0,0,0,0,0,0,3,5,77,54,69,49,1,2,3,2,0,1,1,0,3,0 -050,01,059,Alabama,Franklin County,7,1,1652,818,834,755,768,32,30,9,6,2,5,3,0,17,25,642,670,591,620,31,27,3,0,2,3,1,0,14,20,176,164,164,148,1,3,6,6,0,2,2,0,3,5 -050,01,059,Alabama,Franklin County,7,2,1945,1007,938,937,879,39,28,15,12,2,2,2,2,12,15,852,775,802,729,36,27,3,4,2,1,0,0,9,14,155,163,135,150,3,1,12,8,0,1,2,2,3,1 -050,01,059,Alabama,Franklin County,7,3,2167,1094,1073,1016,984,45,59,12,10,1,1,2,2,18,17,939,935,873,861,44,56,6,2,1,1,0,0,15,15,155,138,143,123,1,3,6,8,0,0,2,2,3,2 -050,01,059,Alabama,Franklin County,7,4,2109,1153,956,1061,881,63,44,13,16,1,2,2,0,13,13,993,886,918,825,61,43,6,5,0,1,0,0,8,12,160,70,143,56,2,1,7,11,1,1,2,0,5,1 -050,01,059,Alabama,Franklin County,7,5,1860,991,869,914,802,36,46,18,10,3,1,2,0,18,10,761,747,713,691,34,45,5,3,1,1,0,0,8,7,230,122,201,111,2,1,13,7,2,0,2,0,10,3 -050,01,059,Alabama,Franklin County,7,6,2025,1045,980,974,928,44,31,16,13,2,5,1,0,8,3,754,811,709,777,41,29,2,2,0,2,0,0,2,1,291,169,265,151,3,2,14,11,2,3,1,0,6,2 -050,01,059,Alabama,Franklin County,7,7,2133,1106,1027,1034,966,33,37,21,14,4,3,0,2,14,5,869,874,826,828,32,34,5,5,2,3,0,0,4,4,237,153,208,138,1,3,16,9,2,0,0,2,10,1 -050,01,059,Alabama,Franklin County,7,8,2018,1017,1001,941,949,50,33,11,11,3,3,4,1,8,4,900,908,844,869,47,29,4,4,2,3,0,0,3,3,117,93,97,80,3,4,7,7,1,0,4,1,5,1 -050,01,059,Alabama,Franklin County,7,9,2191,1120,1071,1048,1000,51,56,11,8,1,1,0,0,9,6,984,1014,920,948,50,54,5,5,1,1,0,0,8,6,136,57,128,52,1,2,6,3,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,7,10,2163,1101,1062,1029,991,42,48,12,8,1,5,3,1,14,9,1033,1022,974,958,42,45,6,5,1,5,0,0,10,9,68,40,55,33,0,3,6,3,0,0,3,1,4,0 -050,01,059,Alabama,Franklin County,7,11,2021,983,1038,927,985,37,39,4,5,1,1,2,0,12,8,934,1017,885,967,37,39,1,4,1,1,0,0,10,6,49,21,42,18,0,0,3,1,0,0,2,0,2,2 -050,01,059,Alabama,Franklin County,7,12,1877,897,980,854,923,31,37,5,4,0,4,1,0,6,12,874,955,831,901,31,36,5,3,0,4,1,0,6,11,23,25,23,22,0,1,0,1,0,0,0,0,0,1 -050,01,059,Alabama,Franklin County,7,13,1598,771,827,724,797,35,20,3,2,3,1,0,1,6,6,755,812,709,784,34,20,3,2,3,1,0,0,6,5,16,15,15,13,1,0,0,0,0,0,0,1,0,1 -050,01,059,Alabama,Franklin County,7,14,1458,667,791,650,744,13,40,2,1,0,1,0,0,2,5,649,784,632,737,13,40,2,1,0,1,0,0,2,5,18,7,18,7,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,7,15,1222,547,675,529,650,14,23,0,1,0,1,0,0,4,0,538,669,520,644,14,23,0,1,0,1,0,0,4,0,9,6,9,6,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,7,16,892,365,527,351,502,9,19,0,1,0,0,0,0,5,5,360,526,346,501,9,19,0,1,0,0,0,0,5,5,5,1,5,1,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,7,17,696,260,436,252,423,7,9,0,0,0,1,0,0,1,3,260,435,252,422,7,9,0,0,0,1,0,0,1,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,7,18,461,134,327,125,312,3,14,1,0,1,0,1,0,3,1,131,325,124,310,3,14,1,0,1,0,0,0,2,1,3,2,1,2,0,0,0,0,0,0,1,0,1,0 -050,01,059,Alabama,Franklin County,7,99,30968,15333,15635,14359,14688,593,624,156,124,25,38,24,9,176,152,13408,14334,12638,13527,574,598,57,47,17,30,2,0,120,132,1925,1301,1721,1161,19,26,99,77,8,8,22,9,56,20 -050,01,059,Alabama,Franklin County,8,0,519,272,247,252,229,11,11,1,1,0,0,1,0,7,6,186,186,172,172,10,8,0,0,0,0,0,0,4,6,86,61,80,57,1,3,1,1,0,0,1,0,3,0 -050,01,059,Alabama,Franklin County,8,1,1637,810,827,748,759,30,32,11,9,4,5,1,0,16,22,601,640,554,588,29,30,3,2,2,3,0,0,13,17,209,187,194,171,1,2,8,7,2,2,1,0,3,5 -050,01,059,Alabama,Franklin County,8,2,2017,1031,986,958,924,40,29,16,14,2,2,2,2,13,15,858,806,806,760,37,27,3,4,2,1,0,0,10,14,173,180,152,164,3,2,13,10,0,1,2,2,3,1 -050,01,059,Alabama,Franklin County,8,3,2130,1092,1038,1004,950,52,53,13,12,1,1,2,2,20,20,921,893,846,821,51,50,6,3,1,1,0,0,17,18,171,145,158,129,1,3,7,9,0,0,2,2,3,2 -050,01,059,Alabama,Franklin County,8,4,2167,1181,986,1081,893,68,59,13,18,1,1,2,0,16,15,1015,886,934,811,65,58,6,5,0,1,0,0,10,11,166,100,147,82,3,1,7,13,1,0,2,0,6,4 -050,01,059,Alabama,Franklin County,8,5,1794,981,813,892,742,48,47,19,11,3,1,2,1,17,11,744,687,686,631,44,45,5,3,1,1,0,0,8,7,237,126,206,111,4,2,14,8,2,0,2,1,9,4 -050,01,059,Alabama,Franklin County,8,6,2065,1079,986,1001,924,46,38,18,15,3,5,2,0,9,4,793,832,741,789,44,37,3,2,1,2,1,0,3,2,286,154,260,135,2,1,15,13,2,3,1,0,6,2 -050,01,059,Alabama,Franklin County,8,7,2111,1105,1006,1041,947,22,32,24,16,4,3,1,3,13,5,808,833,778,790,20,30,4,6,2,3,1,0,3,4,297,173,263,157,2,2,20,10,2,0,0,3,10,1 -050,01,059,Alabama,Franklin County,8,8,2053,1008,1045,941,991,39,31,11,12,2,3,5,1,10,7,877,939,831,898,36,27,4,5,2,3,0,0,4,6,131,106,110,93,3,4,7,7,0,0,5,1,6,1 -050,01,059,Alabama,Franklin County,8,9,2180,1140,1040,1060,964,56,59,12,9,1,1,0,0,11,7,988,977,917,909,55,56,5,4,1,1,0,0,10,7,152,63,143,55,1,3,7,5,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,8,10,2195,1099,1096,1027,1026,43,44,14,11,0,5,3,1,12,9,1016,1051,961,988,40,42,6,7,0,5,0,0,9,9,83,45,66,38,3,2,8,4,0,0,3,1,3,0 -050,01,059,Alabama,Franklin County,8,11,1979,983,996,928,938,37,39,6,8,1,2,2,1,9,8,928,973,880,922,37,39,2,5,1,1,0,0,8,6,55,23,48,16,0,0,4,3,0,1,2,1,1,2 -050,01,059,Alabama,Franklin County,8,12,1957,954,1003,908,939,32,40,5,4,0,5,2,0,7,15,918,983,874,922,32,39,4,4,0,5,2,0,6,13,36,20,34,17,0,1,1,0,0,0,0,0,1,2 -050,01,059,Alabama,Franklin County,8,13,1613,780,833,726,804,39,20,5,2,3,2,0,0,7,5,764,813,711,785,38,20,5,2,3,2,0,0,7,4,16,20,15,19,1,0,0,0,0,0,0,0,0,1 -050,01,059,Alabama,Franklin County,8,14,1425,650,775,630,733,13,36,4,1,0,1,0,0,3,4,631,765,611,723,13,36,4,1,0,1,0,0,3,4,19,10,19,10,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,8,15,1190,542,648,526,620,10,24,1,2,0,1,0,0,5,1,532,637,516,610,10,24,1,1,0,1,0,0,5,1,10,11,10,10,0,0,0,1,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,8,16,932,384,548,365,520,14,23,1,1,0,0,0,0,4,4,375,547,357,519,14,23,0,1,0,0,0,0,4,4,9,1,8,1,0,0,1,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,8,17,675,258,417,250,410,7,5,0,0,0,1,0,0,1,1,257,417,249,410,7,5,0,0,0,1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,8,18,495,154,341,147,324,4,16,1,0,0,0,0,0,2,1,153,339,146,322,4,16,1,0,0,0,0,0,2,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,8,99,31134,15503,15631,14485,14637,611,638,175,146,25,39,25,11,182,160,13365,14204,12570,13370,586,612,62,55,16,32,4,0,127,135,2138,1427,1915,1267,25,26,113,91,9,7,21,11,55,25 -050,01,059,Alabama,Franklin County,9,0,515,273,242,255,222,7,10,4,3,0,1,1,0,6,6,175,169,166,157,6,7,0,0,0,0,0,0,3,5,98,73,89,65,1,3,4,3,0,1,1,0,3,1 -050,01,059,Alabama,Franklin County,9,1,1685,858,827,791,757,33,34,10,10,4,5,1,0,19,21,627,643,574,590,32,32,3,2,2,3,0,0,16,16,231,184,217,167,1,2,7,8,2,2,1,0,3,5 -050,01,059,Alabama,Franklin County,9,2,1997,1018,979,941,918,36,26,19,16,3,2,2,1,17,16,819,770,768,725,33,24,4,5,2,1,0,0,12,15,199,209,173,193,3,2,15,11,1,1,2,1,5,1 -050,01,059,Alabama,Franklin County,9,3,2046,1043,1003,956,920,48,50,15,12,1,2,2,2,21,17,853,850,781,784,47,47,7,3,1,1,0,0,17,15,190,153,175,136,1,3,8,9,0,1,2,2,4,2 -050,01,059,Alabama,Franklin County,9,4,2202,1170,1032,1068,931,68,68,14,18,1,1,1,0,18,14,999,903,918,821,64,66,6,4,0,1,0,0,11,11,171,129,150,110,4,2,8,14,1,0,1,0,7,3 -050,01,059,Alabama,Franklin County,9,5,1870,1055,815,958,748,53,41,21,12,3,1,2,1,18,12,776,679,712,628,50,39,5,3,1,1,0,0,8,8,279,136,246,120,3,2,16,9,2,0,2,1,10,4 -050,01,059,Alabama,Franklin County,9,6,1961,1018,943,941,877,45,41,19,16,4,5,1,0,8,4,744,772,697,727,41,39,3,2,1,2,0,0,2,2,274,171,244,150,4,2,16,14,3,3,1,0,6,2 -050,01,059,Alabama,Franklin County,9,7,2056,1047,1009,975,953,28,28,28,18,4,3,0,2,12,5,742,800,708,762,26,25,4,6,2,3,0,0,2,4,305,209,267,191,2,3,24,12,2,0,0,2,10,1 -050,01,059,Alabama,Franklin County,9,8,2061,1011,1050,929,988,53,33,13,13,2,4,5,2,9,10,856,936,797,891,49,29,5,5,2,4,0,0,3,7,155,114,132,97,4,4,8,8,0,0,5,2,6,3 -050,01,059,Alabama,Franklin County,9,9,2142,1125,1017,1051,947,49,54,13,9,1,1,0,0,11,6,970,949,906,886,48,51,5,5,1,1,0,0,10,6,155,68,145,61,1,3,8,4,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,9,10,2168,1080,1088,1006,1017,45,47,13,10,1,4,3,1,12,9,996,1036,938,972,42,45,6,6,1,4,0,0,9,9,84,52,68,45,3,2,7,4,0,0,3,1,3,0 -050,01,059,Alabama,Franklin County,9,11,2029,996,1033,935,974,42,40,5,8,2,2,2,1,10,8,956,1004,902,952,42,40,2,5,1,1,0,0,9,6,40,29,33,22,0,0,3,3,1,1,2,1,1,2 -050,01,059,Alabama,Franklin County,9,12,1894,915,979,876,920,26,38,5,5,0,4,1,0,7,12,883,952,845,897,26,37,4,4,0,4,1,0,7,10,32,27,31,23,0,1,1,1,0,0,0,0,0,2 -050,01,059,Alabama,Franklin County,9,13,1646,802,844,750,811,37,24,5,2,3,2,0,0,7,5,778,823,727,791,36,24,5,2,3,2,0,0,7,4,24,21,23,20,1,0,0,0,0,0,0,0,0,1 -050,01,059,Alabama,Franklin County,9,14,1453,660,793,632,756,21,29,4,1,0,1,0,0,3,6,644,786,616,749,21,29,4,1,0,1,0,0,3,6,16,7,16,7,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,9,15,1177,534,643,519,610,9,29,1,2,0,1,0,0,5,1,520,630,505,598,9,29,1,1,0,1,0,0,5,1,14,13,14,12,0,0,0,1,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,9,16,924,394,530,369,509,19,16,1,1,0,0,0,0,5,4,384,528,360,507,19,16,0,1,0,0,0,0,5,4,10,2,9,2,0,0,1,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,9,17,705,280,425,273,416,6,6,0,0,0,1,0,0,1,2,279,425,272,416,6,6,0,0,0,1,0,0,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,9,18,473,155,318,146,303,6,14,0,0,0,0,0,0,3,1,153,316,145,301,6,14,0,0,0,0,0,0,2,1,2,2,1,2,0,0,0,0,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,9,99,31004,15434,15570,14371,14577,631,628,190,156,29,40,21,10,192,159,13154,13971,12337,13154,603,599,64,55,17,31,1,0,132,132,2280,1599,2034,1423,28,29,126,101,12,9,20,10,60,27 -050,01,059,Alabama,Franklin County,10,0,536,268,268,245,244,9,12,6,3,0,0,0,0,8,9,177,179,164,164,8,9,0,0,0,0,0,0,5,6,91,89,81,80,1,3,6,3,0,0,0,0,3,3 -050,01,059,Alabama,Franklin County,10,1,1722,886,836,818,758,30,35,14,12,3,6,2,0,19,25,620,631,570,574,29,32,3,2,2,3,0,0,16,20,266,205,248,184,1,3,11,10,1,3,2,0,3,5 -050,01,059,Alabama,Franklin County,10,2,2133,1086,1047,1000,978,39,28,23,18,4,2,2,1,18,20,854,799,794,749,37,26,6,4,3,1,0,0,14,19,232,248,206,229,2,2,17,14,1,1,2,1,4,1 -050,01,059,Alabama,Franklin County,10,3,2071,1063,1008,975,918,44,46,16,16,2,2,2,3,24,23,865,848,794,782,43,42,7,3,1,1,0,0,20,20,198,160,181,136,1,4,9,13,1,1,2,3,4,3 -050,01,059,Alabama,Franklin County,10,4,2279,1178,1101,1061,993,80,69,14,19,1,2,1,0,21,18,985,955,892,869,74,67,6,3,0,1,0,0,13,15,193,146,169,124,6,2,8,16,1,1,1,0,8,3 -050,01,059,Alabama,Franklin County,10,5,1883,1049,834,950,766,52,39,23,13,3,1,1,1,20,14,743,706,681,657,48,37,5,3,1,1,0,0,8,8,306,128,269,109,4,2,18,10,2,0,1,1,12,6 -050,01,059,Alabama,Franklin County,10,6,2008,1043,965,958,895,50,42,20,19,3,6,2,0,10,3,753,758,701,712,46,41,1,2,1,2,1,0,3,1,290,207,257,183,4,1,19,17,2,4,1,0,7,2 -050,01,059,Alabama,Franklin County,10,7,2061,1052,1009,970,951,33,29,32,19,5,4,0,2,12,4,734,788,693,750,32,26,5,5,2,4,0,0,2,3,318,221,277,201,1,3,27,14,3,0,0,2,10,1 -050,01,059,Alabama,Franklin County,10,8,2118,1080,1038,993,976,54,32,15,16,2,3,5,2,11,9,884,898,826,857,49,27,4,6,2,3,0,0,3,5,196,140,167,119,5,5,11,10,0,0,5,2,8,4 -050,01,059,Alabama,Franklin County,10,9,2053,1082,971,1010,915,44,36,15,9,1,1,0,0,12,10,935,900,875,852,43,33,5,4,1,1,0,0,11,10,147,71,135,63,1,3,10,5,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,10,10,2184,1077,1107,994,1030,48,55,17,9,1,3,4,1,13,9,978,1056,917,985,45,53,7,6,1,3,0,0,8,9,99,51,77,45,3,2,10,3,0,0,4,1,5,0 -050,01,059,Alabama,Franklin County,10,11,2067,1012,1055,954,1001,38,37,5,7,1,1,2,1,12,8,962,1019,912,972,38,37,1,5,0,0,0,0,11,5,50,36,42,29,0,0,4,2,1,1,2,1,1,3 -050,01,059,Alabama,Franklin County,10,12,1881,907,974,867,904,26,45,4,6,0,4,0,0,10,15,867,953,829,887,26,44,3,5,0,4,0,0,9,13,40,21,38,17,0,1,1,1,0,0,0,0,1,2 -050,01,059,Alabama,Franklin County,10,13,1717,850,867,795,831,38,26,5,2,4,2,0,0,8,6,825,842,771,807,37,26,5,2,4,2,0,0,8,5,25,25,24,24,1,0,0,0,0,0,0,0,0,1 -050,01,059,Alabama,Franklin County,10,14,1458,651,807,621,774,22,26,5,1,0,1,0,0,3,5,629,794,599,761,22,26,5,1,0,1,0,0,3,5,22,13,22,13,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,10,15,1230,563,667,547,632,9,31,1,2,0,1,0,0,6,1,552,653,536,619,9,31,1,1,0,1,0,0,6,1,11,14,11,13,0,0,0,1,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,10,16,881,381,500,360,472,16,22,0,2,0,0,0,0,5,4,372,498,351,470,16,22,0,2,0,0,0,0,5,4,9,2,9,2,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,10,17,708,272,436,265,425,6,8,0,0,0,1,0,0,1,2,271,436,264,425,6,8,0,0,0,1,0,0,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,10,18,469,151,318,140,302,8,15,0,0,0,0,0,0,3,1,150,316,140,300,8,15,0,0,0,0,0,0,2,1,1,2,0,2,0,0,0,0,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,10,99,31459,15651,15808,14523,14765,646,633,215,173,30,40,21,11,216,186,13156,14029,12309,13192,616,602,64,54,18,29,1,0,148,152,2495,1779,2214,1573,30,31,151,119,12,11,20,11,68,34 -050,01,059,Alabama,Franklin County,11,0,506,264,242,234,215,12,15,10,6,0,0,0,0,8,6,167,151,152,137,11,11,0,0,0,0,0,0,4,3,97,91,82,78,1,4,10,6,0,0,0,0,4,3 -050,01,059,Alabama,Franklin County,11,1,1763,913,850,834,770,32,33,15,14,4,5,2,0,26,28,628,603,571,546,31,30,3,2,2,3,0,0,21,22,285,247,263,224,1,3,12,12,2,2,2,0,5,6 -050,01,059,Alabama,Franklin County,11,2,2134,1087,1047,997,977,42,26,27,21,3,2,2,1,16,20,835,804,773,755,40,24,7,5,3,1,0,0,12,19,252,243,224,222,2,2,20,16,0,1,2,1,4,1 -050,01,059,Alabama,Franklin County,11,3,2088,1075,1013,978,923,51,48,18,16,2,2,2,3,24,21,865,821,787,756,50,43,7,3,1,1,0,0,20,18,210,192,191,167,1,5,11,13,1,1,2,3,4,3 -050,01,059,Alabama,Franklin County,11,4,2216,1140,1076,1037,972,64,62,15,22,1,2,1,0,22,18,949,913,872,835,58,60,6,3,0,1,0,0,13,14,191,163,165,137,6,2,9,19,1,1,1,0,9,4 -050,01,059,Alabama,Franklin County,11,5,1977,1086,891,978,819,58,42,25,16,3,1,1,1,21,12,773,740,706,688,53,40,5,3,1,1,0,0,8,8,313,151,272,131,5,2,20,13,2,0,1,1,13,4 -050,01,059,Alabama,Franklin County,11,6,1988,1042,946,956,879,46,37,24,21,4,6,1,0,11,3,739,731,692,691,42,35,1,2,1,2,0,0,3,1,303,215,264,188,4,2,23,19,3,4,1,0,8,2 -050,01,059,Alabama,Franklin County,11,7,2007,1026,981,942,920,30,29,35,21,6,4,0,3,13,4,718,768,679,730,29,26,5,5,3,4,0,0,2,3,308,213,263,190,1,3,30,16,3,0,0,3,11,1 -050,01,059,Alabama,Franklin County,11,8,2161,1101,1060,1015,998,50,31,17,16,2,3,5,3,12,9,858,901,804,861,45,26,4,6,2,3,0,0,3,5,243,159,211,137,5,5,13,10,0,0,5,3,9,4 -050,01,059,Alabama,Franklin County,11,9,2049,1072,977,995,917,46,42,21,10,1,1,0,0,9,7,937,884,873,833,45,39,10,4,1,1,0,0,8,7,135,93,122,84,1,3,11,6,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,11,10,2161,1094,1067,1003,994,53,51,20,9,1,3,4,1,13,9,977,1018,912,952,50,50,6,4,1,3,0,0,8,9,117,49,91,42,3,1,14,5,0,0,4,1,5,0 -050,01,059,Alabama,Franklin County,11,11,2105,1048,1057,988,1003,39,34,6,10,0,0,3,2,12,8,992,1016,941,971,39,34,1,6,0,0,0,0,11,5,56,41,47,32,0,0,5,4,0,0,3,2,1,3 -050,01,059,Alabama,Franklin County,11,12,1937,916,1021,871,954,31,42,4,6,0,4,0,0,10,15,872,995,829,932,31,41,3,5,0,4,0,0,9,13,44,26,42,22,0,1,1,1,0,0,0,0,1,2 -050,01,059,Alabama,Franklin County,11,13,1705,843,862,791,821,33,31,6,2,4,2,0,0,9,6,821,844,770,804,32,31,6,2,4,2,0,0,9,5,22,18,21,17,1,0,0,0,0,0,0,0,0,1 -050,01,059,Alabama,Franklin County,11,14,1476,671,805,636,775,27,23,5,1,0,1,0,0,3,5,660,789,625,759,27,23,5,1,0,1,0,0,3,5,11,16,11,16,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,11,15,1222,547,675,528,646,12,25,1,2,0,1,0,0,6,1,529,665,510,637,12,25,1,1,0,1,0,0,6,1,18,10,18,9,0,0,0,1,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,11,16,930,423,507,408,475,9,27,0,1,0,0,0,0,6,4,411,505,396,473,9,27,0,1,0,0,0,0,6,4,12,2,12,2,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,11,17,694,255,439,242,427,12,9,0,0,0,1,0,0,1,2,254,439,241,427,12,9,0,0,0,1,0,0,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,11,18,470,161,309,150,294,8,14,0,0,0,0,0,0,3,1,160,307,150,292,8,14,0,0,0,0,0,0,2,1,1,2,0,2,0,0,0,0,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,11,99,31589,15764,15825,14583,14779,655,621,249,194,31,38,21,14,225,179,13145,13894,12283,13079,624,588,70,53,19,29,0,0,149,145,2619,1931,2300,1700,31,33,179,141,12,9,21,14,76,34 -050,01,059,Alabama,Franklin County,12,0,490,250,240,222,210,10,14,11,7,0,1,0,0,7,8,164,154,152,139,9,10,0,0,0,0,0,0,3,5,86,86,70,71,1,4,11,7,0,1,0,0,4,3 -050,01,059,Alabama,Franklin County,12,1,1776,916,860,827,774,36,33,19,17,4,6,2,0,28,30,625,595,562,537,35,29,3,2,2,3,0,0,23,24,291,265,265,237,1,4,16,15,2,3,2,0,5,6 -050,01,059,Alabama,Franklin County,12,2,2161,1100,1061,1011,989,35,25,29,23,4,3,2,1,19,20,815,796,758,748,33,23,7,5,3,1,0,0,14,19,285,265,253,241,2,2,22,18,1,2,2,1,5,1 -050,01,059,Alabama,Franklin County,12,3,2093,1097,996,996,903,53,47,18,17,2,2,2,3,26,24,878,793,796,726,52,42,7,3,1,1,0,0,22,21,219,203,200,177,1,5,11,14,1,1,2,3,4,3 -050,01,059,Alabama,Franklin County,12,4,2223,1131,1092,1035,985,55,64,17,23,1,2,1,0,22,18,937,928,868,848,49,62,7,3,0,1,0,0,13,14,194,164,167,137,6,2,10,20,1,1,1,0,9,4 -050,01,059,Alabama,Franklin County,12,5,1946,1078,868,973,797,54,38,26,16,3,2,1,1,21,14,757,713,694,665,49,36,5,3,1,1,0,0,8,8,321,155,279,132,5,2,21,13,2,1,1,1,13,6 -050,01,059,Alabama,Franklin County,12,6,1979,1031,948,948,878,41,39,25,22,4,6,2,0,11,3,715,723,672,681,37,37,1,2,1,2,1,0,3,1,316,225,276,197,4,2,24,20,3,4,1,0,8,2 -050,01,059,Alabama,Franklin County,12,7,2015,1032,983,941,924,34,27,38,21,6,4,0,3,13,4,724,773,681,737,33,24,5,5,3,4,0,0,2,3,308,210,260,187,1,3,33,16,3,0,0,3,11,1 -050,01,059,Alabama,Franklin County,12,8,2143,1100,1043,1011,973,53,35,17,17,2,4,5,3,12,11,864,869,807,822,48,30,4,6,2,4,0,0,3,7,236,174,204,151,5,5,13,11,0,0,5,3,9,4 -050,01,059,Alabama,Franklin County,12,9,2043,1055,988,976,924,46,44,19,10,1,1,1,0,12,9,910,893,846,838,45,41,7,4,1,1,0,0,11,9,145,95,130,86,1,3,12,6,0,0,1,0,1,0 -050,01,059,Alabama,Franklin County,12,10,2152,1075,1077,986,1003,48,49,21,12,1,3,4,1,15,9,953,1022,890,955,45,48,7,7,1,3,0,0,10,9,122,55,96,48,3,1,14,5,0,0,4,1,5,0 -050,01,059,Alabama,Franklin County,12,11,2133,1085,1048,1017,990,42,38,7,10,1,1,3,1,15,8,1022,1004,966,955,42,38,1,6,0,0,0,0,13,5,63,44,51,35,0,0,6,4,1,1,3,1,2,3 -050,01,059,Alabama,Franklin County,12,12,1952,918,1034,864,964,38,43,4,6,0,6,1,0,11,15,881,1003,829,937,38,42,3,5,0,6,1,0,10,13,37,31,35,27,0,1,1,1,0,0,0,0,1,2 -050,01,059,Alabama,Franklin County,12,13,1773,866,907,807,864,40,33,6,2,4,2,0,0,9,6,841,888,783,846,39,33,6,2,4,2,0,0,9,5,25,19,24,18,1,0,0,0,0,0,0,0,0,1 -050,01,059,Alabama,Franklin County,12,14,1507,699,808,662,777,29,24,5,1,0,1,0,0,3,5,682,796,645,765,29,24,5,1,0,1,0,0,3,5,17,12,17,12,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,12,15,1249,560,689,537,661,16,24,1,2,0,1,0,0,6,1,548,676,525,649,16,24,1,1,0,1,0,0,6,1,12,13,12,12,0,0,0,1,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,12,16,930,418,512,396,482,15,24,1,2,0,0,0,0,6,4,407,510,386,480,15,24,0,2,0,0,0,0,6,4,11,2,10,2,0,0,1,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,12,17,643,244,399,235,386,8,10,0,0,0,1,0,0,1,2,243,399,234,386,8,10,0,0,0,1,0,0,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,12,18,496,173,323,163,310,7,12,0,0,0,0,0,0,3,1,172,321,163,308,7,12,0,0,0,0,0,0,2,1,1,2,0,2,0,0,0,0,0,0,0,0,1,0 -050,01,059,Alabama,Franklin County,12,99,31704,15828,15876,14607,14794,660,623,264,208,33,46,24,13,240,192,13138,13856,12257,13022,629,589,69,57,19,32,2,0,162,156,2690,2020,2350,1772,31,34,195,151,14,14,22,13,78,36 -050,01,059,Alabama,Franklin County,13,0,492,250,242,221,212,11,14,11,7,2,0,0,1,5,8,165,157,151,140,10,11,0,0,1,0,0,0,3,6,85,85,70,72,1,3,11,7,1,0,0,1,2,2 -050,01,059,Alabama,Franklin County,13,1,1769,918,851,823,770,40,33,19,17,2,5,2,0,32,26,629,592,559,533,38,31,3,2,1,3,1,0,27,23,289,259,264,237,2,2,16,15,1,2,1,0,5,3 -050,01,059,Alabama,Franklin County,13,2,2160,1096,1064,1011,988,36,27,25,21,4,2,1,1,19,25,814,798,758,747,33,24,6,4,3,0,0,0,14,23,282,266,253,241,3,3,19,17,1,2,1,1,5,2 -050,01,059,Alabama,Franklin County,13,3,2089,1096,993,995,901,54,47,16,15,1,3,1,2,29,25,882,794,795,724,52,42,7,3,1,1,1,0,26,24,214,199,200,177,2,5,9,12,0,2,0,2,3,1 -050,01,059,Alabama,Franklin County,13,4,2200,1116,1084,1030,977,50,62,13,22,0,1,4,3,19,19,933,922,863,841,46,59,7,5,0,0,2,1,15,16,183,162,167,136,4,3,6,17,0,1,2,2,4,3 -050,01,059,Alabama,Franklin County,13,5,1943,1080,863,977,798,55,38,20,12,3,3,2,3,23,9,763,714,695,665,49,37,2,3,2,2,1,1,14,6,317,149,282,133,6,1,18,9,1,1,1,2,9,3 -050,01,059,Alabama,Franklin County,13,6,1981,1032,949,950,877,43,39,23,19,4,5,1,1,11,8,725,728,675,681,39,37,2,2,3,1,0,0,6,7,307,221,275,196,4,2,21,17,1,4,1,1,5,1 -050,01,059,Alabama,Franklin County,13,7,2031,1041,990,948,930,34,27,37,18,11,5,2,4,9,6,733,783,685,743,34,25,5,5,6,5,1,1,2,4,308,207,263,187,0,2,32,13,5,0,1,3,7,2 -050,01,059,Alabama,Franklin County,13,8,2116,1090,1026,1002,966,53,33,16,12,1,4,5,3,13,8,858,859,798,814,48,29,4,5,0,4,1,1,7,6,232,167,204,152,5,4,12,7,1,0,4,2,6,2 -050,01,059,Alabama,Franklin County,13,9,2039,1053,986,977,922,47,45,17,5,2,3,0,1,10,10,907,893,846,836,45,40,6,3,0,3,0,1,10,10,146,93,131,86,2,5,11,2,2,0,0,0,0,0 -050,01,059,Alabama,Franklin County,13,10,2139,1071,1068,981,995,48,52,19,8,4,4,5,1,14,8,952,1015,885,948,44,50,7,5,3,4,1,0,12,8,119,53,96,47,4,2,12,3,1,0,4,1,2,0 -050,01,059,Alabama,Franklin County,13,11,2149,1094,1055,1017,990,46,40,8,9,1,2,2,1,20,13,1030,1011,965,954,44,40,3,5,1,2,1,0,16,10,64,44,52,36,2,0,5,4,0,0,1,1,4,3 -050,01,059,Alabama,Franklin County,13,12,1965,926,1039,869,967,40,48,5,3,1,4,1,0,10,17,889,1009,833,941,40,46,4,3,1,4,1,0,10,15,37,30,36,26,0,2,1,0,0,0,0,0,0,2 -050,01,059,Alabama,Franklin County,13,13,1793,876,917,814,872,42,34,6,3,4,2,0,0,10,6,848,894,790,853,38,32,6,2,4,2,0,0,10,5,28,23,24,19,4,2,0,1,0,0,0,0,0,1 -050,01,059,Alabama,Franklin County,13,14,1522,704,818,665,781,30,29,5,1,0,1,0,0,4,6,686,804,648,770,29,26,5,1,0,1,0,0,4,6,18,14,17,11,1,3,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,13,15,1259,564,695,538,663,18,26,1,1,1,1,0,0,6,4,553,683,528,651,17,26,1,1,1,1,0,0,6,4,11,12,10,12,1,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,13,16,931,418,513,396,482,17,25,0,2,1,1,0,0,4,3,409,510,388,480,16,24,0,2,1,1,0,0,4,3,9,3,8,2,1,1,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,13,17,651,249,402,236,386,10,10,0,3,0,1,0,0,3,2,248,402,235,386,10,10,0,3,0,1,0,0,3,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,13,18,500,174,326,165,312,7,13,0,0,0,0,0,0,2,1,174,323,165,310,7,12,0,0,0,0,0,0,2,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,13,99,31729,15848,15881,14615,14789,681,642,241,178,42,47,26,21,243,204,13198,13891,12262,13017,639,601,68,54,28,35,10,5,191,179,2650,1990,2353,1772,42,41,173,124,14,12,16,16,52,25 -050,01,061,Alabama,Geneva County,1,0,286,143,143,120,116,19,24,1,1,0,0,0,0,3,2,135,132,113,105,19,24,0,1,0,0,0,0,3,2,8,11,7,11,0,0,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,1,1146,591,555,515,476,65,65,5,4,0,5,0,0,6,5,565,539,491,463,63,63,5,3,0,5,0,0,6,5,26,16,24,13,2,2,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,2,1666,893,773,742,647,133,117,11,4,0,0,0,0,7,5,873,749,723,624,132,116,11,4,0,0,0,0,7,5,20,24,19,23,1,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,3,1922,1019,903,841,754,156,138,11,7,2,0,0,0,9,4,993,894,816,745,155,138,11,7,2,0,0,0,9,4,26,9,25,9,1,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,4,1767,930,837,778,706,137,113,8,10,1,1,1,0,5,7,910,823,759,694,136,112,8,9,1,1,1,0,5,7,20,14,19,12,1,1,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,5,1314,687,627,599,531,78,84,4,6,0,0,0,0,6,6,656,613,570,517,78,84,3,6,0,0,0,0,5,6,31,14,29,14,0,0,1,0,0,0,0,0,1,0 -050,01,061,Alabama,Geneva County,1,6,1508,743,765,638,659,92,96,11,5,0,1,1,0,1,4,705,744,603,640,90,96,10,3,0,1,1,0,1,4,38,21,35,19,2,0,1,2,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,7,1659,813,846,731,737,69,92,7,7,0,4,1,0,5,6,788,833,706,726,69,90,7,7,0,4,1,0,5,6,25,13,25,11,0,2,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,8,1859,933,926,819,794,95,117,9,10,4,3,0,1,6,1,914,915,801,785,94,116,9,9,4,3,0,1,6,1,19,11,18,9,1,1,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,9,1876,908,968,819,826,76,120,9,15,1,2,0,0,3,5,888,957,801,817,75,119,8,14,1,2,0,0,3,5,20,11,18,9,1,1,1,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,10,1800,884,916,798,818,76,84,2,7,0,2,0,0,8,5,881,910,795,813,76,83,2,7,0,2,0,0,8,5,3,6,3,5,0,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,11,1756,863,893,787,810,63,73,9,4,0,3,0,0,4,3,858,886,782,804,63,72,9,4,0,3,0,0,4,3,5,7,5,6,0,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,12,1553,759,794,695,708,51,75,8,5,0,0,0,0,5,6,749,788,685,702,51,75,8,5,0,0,0,0,5,6,10,6,10,6,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,13,1394,638,756,580,668,48,76,2,4,2,0,1,1,5,7,627,752,570,664,48,76,2,4,1,0,1,1,5,7,11,4,10,4,0,0,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,14,1164,559,605,516,539,41,60,1,2,0,1,0,0,1,3,555,602,512,537,41,60,1,2,0,1,0,0,1,2,4,3,4,2,0,0,0,0,0,0,0,0,0,1 -050,01,061,Alabama,Geneva County,1,15,1074,459,615,430,563,25,47,3,3,0,0,0,0,1,2,452,614,424,563,24,46,3,3,0,0,0,0,1,2,7,1,6,0,1,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,16,815,337,478,308,442,27,34,1,0,0,1,0,0,1,1,337,476,308,440,27,34,1,0,0,1,0,0,1,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,17,591,216,375,202,345,13,26,0,1,0,0,0,0,1,3,215,374,202,345,12,25,0,1,0,0,0,0,1,3,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,18,550,125,425,110,385,11,37,0,0,0,0,0,0,4,3,124,424,109,384,11,37,0,0,0,0,0,0,4,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,99,25700,12500,13200,11028,11524,1275,1478,102,95,10,23,4,2,81,78,12225,13025,10770,11368,1264,1466,98,89,9,23,4,2,80,77,275,175,258,156,11,12,4,6,1,0,0,0,1,1 -050,01,061,Alabama,Geneva County,2,0,288,144,144,121,117,19,24,1,1,0,0,0,0,3,2,136,133,114,106,19,24,0,1,0,0,0,0,3,2,8,11,7,11,0,0,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,1,1140,587,553,512,474,64,65,5,4,0,5,0,0,6,5,561,537,488,461,62,63,5,3,0,5,0,0,6,5,26,16,24,13,2,2,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,2,1660,890,770,740,644,131,117,11,4,0,0,0,0,8,5,870,746,721,621,130,116,11,4,0,0,0,0,8,5,20,24,19,23,1,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,3,1930,1024,906,845,757,157,138,11,7,2,0,0,0,9,4,998,897,820,748,156,138,11,7,2,0,0,0,9,4,26,9,25,9,1,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,4,1778,937,841,783,709,139,114,8,10,1,1,1,0,5,7,917,827,764,697,138,113,8,9,1,1,1,0,5,7,20,14,19,12,1,1,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,5,1327,692,635,605,539,77,84,4,6,0,0,0,0,6,6,661,621,576,525,77,84,3,6,0,0,0,0,5,6,31,14,29,14,0,0,1,0,0,0,0,0,1,0 -050,01,061,Alabama,Geneva County,2,6,1494,735,759,632,653,90,96,11,5,0,1,1,0,1,4,696,738,596,634,88,96,10,3,0,1,1,0,1,4,39,21,36,19,2,0,1,2,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,7,1656,811,845,733,736,65,92,7,7,0,4,1,0,5,6,785,832,707,725,65,90,7,7,0,4,1,0,5,6,26,13,26,11,0,2,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,8,1849,924,925,813,793,91,117,9,10,4,3,0,1,7,1,905,914,795,784,90,116,9,9,4,3,0,1,7,1,19,11,18,9,1,1,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,9,1881,908,973,821,828,74,122,9,15,1,2,0,0,3,6,888,962,803,819,73,121,8,14,1,2,0,0,3,6,20,11,18,9,1,1,1,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,10,1810,889,921,804,822,75,85,2,7,0,2,0,0,8,5,886,915,801,817,75,84,2,7,0,2,0,0,8,5,3,6,3,5,0,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,11,1776,875,901,798,816,64,75,9,4,0,3,0,0,4,3,870,894,793,810,64,74,9,4,0,3,0,0,4,3,5,7,5,6,0,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,12,1562,764,798,699,712,52,75,8,5,0,0,0,0,5,6,754,792,689,706,52,75,8,5,0,0,0,0,5,6,10,6,10,6,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,13,1400,641,759,583,671,48,76,2,4,2,0,1,1,5,7,630,755,573,667,48,76,2,4,1,0,1,1,5,7,11,4,10,4,0,0,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,14,1158,557,601,514,535,41,60,1,2,0,1,0,0,1,3,553,598,510,533,41,60,1,2,0,1,0,0,1,2,4,3,4,2,0,0,0,0,0,0,0,0,0,1 -050,01,061,Alabama,Geneva County,2,15,1071,458,613,429,561,25,47,3,3,0,0,0,0,1,2,451,612,423,561,24,46,3,3,0,0,0,0,1,2,7,1,6,0,1,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,16,814,338,476,309,440,27,34,1,0,0,1,0,0,1,1,338,474,309,438,27,34,1,0,0,1,0,0,1,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,17,595,219,376,205,346,13,26,0,1,0,0,0,0,1,3,218,375,205,346,12,25,0,1,0,0,0,0,1,3,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,18,551,126,425,111,385,11,37,0,0,0,0,0,0,4,3,125,424,110,384,11,37,0,0,0,0,0,0,4,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,99,25740,12519,13221,11057,11538,1263,1484,102,95,10,23,4,2,83,79,12242,13046,10797,11382,1252,1472,98,89,9,23,4,2,82,78,277,175,260,156,11,12,4,6,1,0,0,0,1,1 -050,01,061,Alabama,Geneva County,3,0,334,176,158,148,133,23,21,1,1,0,0,0,0,4,3,168,147,141,122,23,21,0,1,0,0,0,0,4,3,8,11,7,11,0,0,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,1,1140,578,562,497,477,67,68,5,4,0,5,0,0,9,8,555,545,476,462,65,67,5,3,0,5,0,0,9,8,23,17,21,15,2,1,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,2,1565,816,749,671,644,126,94,11,4,0,0,0,0,8,7,785,721,641,617,125,93,11,4,0,0,0,0,8,7,31,28,30,27,1,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,3,1833,993,840,824,708,147,120,11,7,2,0,0,0,9,5,969,828,801,696,146,120,11,7,2,0,0,0,9,5,24,12,23,12,1,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,4,1784,917,867,768,736,135,113,7,10,1,1,1,0,5,7,893,846,745,717,134,112,7,9,1,1,1,0,5,7,24,21,23,19,1,1,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,5,1346,711,635,618,550,83,73,4,6,0,0,0,0,6,6,681,617,590,532,83,73,3,6,0,0,0,0,5,6,30,18,28,18,0,0,1,0,0,0,0,0,1,0 -050,01,061,Alabama,Geneva County,3,6,1392,705,687,613,584,80,94,10,5,0,1,1,0,1,3,678,669,589,568,78,94,9,3,0,1,1,0,1,3,27,18,24,16,2,0,1,2,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,7,1595,770,825,694,728,63,81,7,6,0,4,1,0,5,6,748,814,672,718,63,80,7,6,0,4,1,0,5,6,22,11,22,10,0,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,8,1801,883,918,771,790,90,113,10,10,4,3,0,1,8,1,864,905,753,779,89,112,10,9,4,3,0,1,8,1,19,13,18,11,1,1,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,9,1891,910,981,815,839,85,118,5,17,1,2,0,0,4,5,888,967,795,827,84,117,4,16,1,2,0,0,4,5,22,14,20,12,1,1,1,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,10,1861,929,932,847,828,69,87,5,10,0,2,0,0,8,5,920,924,838,821,69,86,5,10,0,2,0,0,8,5,9,8,9,7,0,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,11,1790,891,899,806,822,71,66,10,5,0,3,0,0,4,3,882,892,797,816,71,65,10,5,0,3,0,0,4,3,9,7,9,6,0,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,12,1560,771,789,712,696,48,79,6,5,0,0,0,0,5,9,758,783,699,690,48,79,6,5,0,0,0,0,5,9,13,6,13,6,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,13,1410,625,785,566,696,47,79,4,4,2,0,1,0,5,6,613,780,555,691,47,79,4,4,1,0,1,0,5,6,12,5,11,5,0,0,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,14,1199,585,614,541,546,41,62,2,2,0,1,0,0,1,3,580,611,536,544,41,62,2,2,0,1,0,0,1,2,5,3,5,2,0,0,0,0,0,0,0,0,0,1 -050,01,061,Alabama,Geneva County,3,15,1070,478,592,446,541,28,46,3,3,0,0,0,0,1,2,471,591,440,541,27,45,3,3,0,0,0,0,1,2,7,1,6,0,1,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,16,860,347,513,317,478,28,33,1,0,0,1,0,0,1,1,347,511,317,476,28,33,1,0,0,1,0,0,1,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,17,601,218,383,204,353,12,28,0,0,0,0,0,0,2,2,217,382,204,353,11,27,0,0,0,0,0,0,2,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,18,533,123,410,114,378,5,29,0,0,0,0,0,0,4,3,122,409,113,377,5,29,0,0,0,0,0,0,4,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,99,25565,12426,13139,10972,11527,1248,1404,102,99,10,23,4,1,90,85,12139,12942,10702,11347,1237,1394,98,93,9,23,4,1,89,84,287,197,270,180,11,10,4,6,1,0,0,0,1,1 -050,01,061,Alabama,Geneva County,4,0,284,137,147,120,129,12,14,0,1,0,0,0,0,5,3,130,136,113,118,12,14,0,1,0,0,0,0,5,3,7,11,7,11,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,1,1187,595,592,496,486,80,85,5,4,0,6,0,0,14,11,573,566,476,462,78,84,5,3,0,6,0,0,14,11,22,26,20,24,2,1,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,2,1498,798,700,673,599,106,88,8,4,0,0,0,0,11,9,768,674,644,574,105,87,8,4,0,0,0,0,11,9,30,26,29,25,1,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,3,1844,1003,841,817,703,163,124,11,7,2,0,0,0,10,7,977,826,792,688,162,124,11,7,2,0,0,0,10,7,26,15,25,15,1,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,4,1812,928,884,786,749,126,115,8,10,1,2,1,0,6,8,896,857,755,725,125,113,8,9,1,2,1,0,6,8,32,27,31,24,1,2,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,5,1434,756,678,646,586,97,80,6,6,0,0,0,0,7,6,714,662,607,570,97,80,4,6,0,0,0,0,6,6,42,16,39,16,0,0,2,0,0,0,0,0,1,0 -050,01,061,Alabama,Geneva County,4,6,1313,688,625,599,528,77,88,9,5,0,1,1,0,2,3,665,605,579,510,75,88,8,3,0,1,1,0,2,3,23,20,20,18,2,0,1,2,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,7,1595,741,854,651,749,74,86,9,7,0,5,1,0,6,7,716,842,627,738,74,85,8,7,0,5,1,0,6,7,25,12,24,11,0,1,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,8,1742,846,896,744,774,80,106,11,10,4,3,0,1,7,2,820,879,719,759,79,105,11,9,4,3,0,1,7,2,26,17,25,15,1,1,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,9,1861,909,952,805,815,91,112,6,16,1,3,0,0,6,6,891,942,789,807,90,111,5,15,1,3,0,0,6,6,18,10,16,8,1,1,1,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,10,1860,909,951,828,830,71,105,3,8,0,2,0,0,7,6,897,940,816,820,71,104,3,8,0,2,0,0,7,6,12,11,12,10,0,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,11,1768,902,866,808,789,80,64,9,7,0,3,0,0,5,3,893,859,799,783,80,63,9,7,0,3,0,0,5,3,9,7,9,6,0,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,12,1645,807,838,743,745,50,75,7,7,0,1,0,0,7,10,797,829,733,736,50,75,7,7,0,1,0,0,7,10,10,9,10,9,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,13,1438,644,794,571,692,58,88,6,6,2,0,1,1,6,7,634,789,562,687,58,88,6,6,1,0,1,1,6,7,10,5,9,5,0,0,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,14,1242,579,663,534,592,42,62,2,3,0,1,0,0,1,5,576,660,531,590,42,62,2,3,0,1,0,0,1,4,3,3,3,2,0,0,0,0,0,0,0,0,0,1 -050,01,061,Alabama,Geneva County,4,15,1069,483,586,458,529,21,52,3,3,0,0,0,0,1,2,477,585,452,529,21,51,3,3,0,0,0,0,1,2,6,1,6,0,0,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,16,873,363,510,324,473,37,35,1,0,0,1,0,0,1,1,363,508,324,471,37,35,1,0,0,1,0,0,1,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,17,586,202,384,189,350,12,31,0,1,0,0,0,0,1,2,200,383,188,350,11,30,0,1,0,0,0,0,1,2,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,18,529,123,406,114,378,6,25,0,0,0,0,0,0,3,3,122,405,113,377,6,25,0,0,0,0,0,0,3,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,99,25580,12413,13167,10906,11496,1283,1435,104,105,10,28,4,2,106,101,12109,12947,10619,11294,1273,1424,99,99,9,28,4,2,105,100,304,220,287,202,10,11,5,6,1,0,0,0,1,1 -050,01,061,Alabama,Geneva County,5,0,298,158,140,138,117,14,18,0,1,0,0,0,0,6,4,150,128,130,105,14,18,0,1,0,0,0,0,6,4,8,12,8,12,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,1,1197,600,597,506,486,76,91,3,4,0,4,0,0,15,12,573,565,481,456,74,90,3,3,0,4,0,0,15,12,27,32,25,30,2,1,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,2,1514,783,731,667,626,96,88,9,5,0,0,0,0,11,12,761,709,646,605,95,87,9,5,0,0,0,0,11,12,22,22,21,21,1,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,3,1834,990,844,814,701,153,128,9,7,2,0,0,0,12,8,961,811,786,668,152,128,9,7,2,0,0,0,12,8,29,33,28,33,1,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,4,1823,919,904,793,771,108,113,9,9,2,3,1,0,6,8,896,881,771,751,107,111,9,8,2,3,1,0,6,8,23,23,22,20,1,2,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,5,1420,763,657,650,575,100,71,6,6,0,0,0,0,7,5,723,640,613,558,100,71,4,6,0,0,0,0,6,5,40,17,37,17,0,0,2,0,0,0,0,0,1,0 -050,01,061,Alabama,Geneva County,5,6,1331,675,656,588,562,75,84,10,6,0,1,0,0,2,3,655,628,571,536,73,84,9,4,0,1,0,0,2,3,20,28,17,26,2,0,1,2,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,7,1592,759,833,662,723,81,92,9,6,0,5,1,0,6,7,727,818,631,710,81,90,8,6,0,5,1,0,6,7,32,15,31,13,0,2,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,8,1684,814,870,721,765,74,89,9,9,4,2,0,1,6,4,793,851,701,748,73,88,9,8,4,2,0,1,6,4,21,19,20,17,1,1,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,9,1899,939,960,835,822,92,111,7,16,1,5,0,0,4,6,922,949,820,813,91,110,6,15,1,5,0,0,4,6,17,11,15,9,1,1,1,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,10,1872,931,941,832,819,87,104,4,9,0,3,0,0,8,6,914,931,815,810,87,103,4,9,0,3,0,0,8,6,17,10,17,9,0,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,11,1814,913,901,828,816,72,73,8,5,0,3,0,0,5,4,906,893,821,809,72,72,8,5,0,3,0,0,5,4,7,8,7,7,0,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,12,1637,819,818,743,745,62,58,7,7,0,1,0,0,7,7,810,808,734,735,62,58,7,7,0,1,0,0,7,7,9,10,9,10,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,13,1478,666,812,598,702,52,96,7,5,2,1,1,1,6,7,656,807,589,697,52,96,7,5,1,1,1,1,6,7,10,5,9,5,0,0,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,14,1267,596,671,548,599,44,63,3,3,0,1,0,0,1,5,592,668,544,597,44,63,3,3,0,1,0,0,1,4,4,3,4,2,0,0,0,0,0,0,0,0,0,1 -050,01,061,Alabama,Geneva County,5,15,1047,463,584,434,526,26,53,2,3,0,0,0,0,1,2,453,582,424,525,26,52,2,3,0,0,0,0,1,2,10,2,10,1,0,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,16,862,367,495,333,463,32,30,1,0,0,1,0,0,1,1,367,494,333,462,32,30,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,17,615,222,393,209,363,11,26,1,2,0,0,0,0,1,2,219,393,208,363,10,26,0,2,0,0,0,0,1,2,3,0,1,0,1,0,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,18,518,120,398,116,367,2,29,0,0,0,0,0,0,2,2,119,397,115,366,2,29,0,0,0,0,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,99,25702,12497,13205,11015,11548,1257,1417,104,103,11,30,3,2,107,105,12197,12953,10733,11314,1247,1406,98,97,10,30,3,2,106,104,300,252,282,234,10,11,6,6,1,0,0,0,1,1 -050,01,061,Alabama,Geneva County,6,0,311,159,152,141,132,12,15,0,1,0,0,0,0,6,4,151,140,133,120,12,15,0,1,0,0,0,0,6,4,8,12,8,12,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,1,1158,573,585,475,478,74,83,5,4,0,5,1,0,18,15,545,545,449,441,72,82,5,3,0,4,1,0,18,15,28,40,26,37,2,1,0,1,0,1,0,0,0,0 -050,01,061,Alabama,Geneva County,6,2,1533,774,759,658,651,93,89,8,4,1,0,0,0,14,15,750,728,635,621,92,88,8,4,1,0,0,0,14,15,24,31,23,30,1,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,3,1758,967,791,813,655,130,117,9,8,2,0,0,0,13,11,933,762,780,627,129,117,9,7,2,0,0,0,13,11,34,29,33,28,1,0,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,4,1822,956,866,827,739,110,108,9,8,3,3,1,0,6,8,930,842,802,718,109,106,9,7,3,3,1,0,6,8,26,24,25,21,1,2,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,5,1422,720,702,614,610,91,81,6,6,0,0,0,0,9,5,683,679,580,587,91,81,4,6,0,0,0,0,8,5,37,23,34,23,0,0,2,0,0,0,0,0,1,0 -050,01,061,Alabama,Geneva County,6,6,1304,671,633,592,543,66,79,8,6,0,1,1,0,4,4,646,601,572,514,64,78,7,4,0,1,1,0,2,4,25,32,20,29,2,1,1,2,0,0,0,0,2,0 -050,01,061,Alabama,Geneva County,6,7,1536,746,790,636,674,95,94,9,7,0,5,0,0,6,10,712,773,603,659,95,93,8,7,0,5,0,0,6,9,34,17,33,15,0,1,1,0,0,0,0,0,0,1 -050,01,061,Alabama,Geneva County,6,8,1701,837,864,735,760,85,86,8,10,4,2,0,1,5,5,810,845,709,743,84,85,8,9,4,2,0,1,5,5,27,19,26,17,1,1,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,9,1896,938,958,821,828,100,107,10,11,1,3,0,0,6,9,920,947,805,819,99,106,9,10,1,3,0,0,6,9,18,11,16,9,1,1,1,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,10,1878,920,958,821,827,86,110,7,13,0,3,0,0,6,5,902,950,803,820,86,109,7,13,0,3,0,0,6,5,18,8,18,7,0,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,11,1815,923,892,832,803,76,76,9,5,0,4,0,0,6,4,915,881,825,794,76,74,9,5,0,4,0,0,5,4,8,11,7,9,0,2,0,0,0,0,0,0,1,0 -050,01,061,Alabama,Geneva County,6,12,1681,837,844,757,764,66,65,7,5,0,2,0,0,7,8,825,836,746,756,65,65,7,5,0,2,0,0,7,8,12,8,11,8,1,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,13,1549,731,818,656,711,59,93,6,5,2,1,1,1,7,7,721,812,647,705,59,93,6,5,1,1,1,1,7,7,10,6,9,6,0,0,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,14,1305,598,707,543,627,51,72,3,3,0,1,0,0,1,4,594,703,539,624,51,72,3,3,0,1,0,0,1,3,4,4,4,3,0,0,0,0,0,0,0,0,0,1 -050,01,061,Alabama,Geneva County,6,15,1086,497,589,469,532,25,52,2,3,0,0,0,0,1,2,487,587,460,531,24,51,2,3,0,0,0,0,1,2,10,2,9,1,1,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,16,868,372,496,347,458,23,34,1,0,0,1,0,0,1,3,372,495,347,457,23,34,1,0,0,1,0,0,1,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,17,609,215,394,202,367,11,24,1,1,0,0,0,0,1,2,212,392,201,366,10,23,0,1,0,0,0,0,1,2,3,2,1,1,1,1,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,18,540,132,408,126,372,4,34,0,0,0,0,0,0,2,2,131,407,125,371,4,34,0,0,0,0,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,99,25772,12566,13206,11065,11531,1257,1419,108,100,13,31,4,2,119,123,12239,12925,10761,11273,1245,1406,102,93,12,30,4,2,115,121,327,281,304,258,12,13,6,7,1,1,0,0,4,2 -050,01,061,Alabama,Geneva County,7,0,284,138,146,121,119,10,21,0,0,0,0,0,0,7,6,130,134,113,107,10,21,0,0,0,0,0,0,7,6,8,12,8,12,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,7,1,1178,599,579,505,476,66,72,3,4,0,5,1,1,24,21,569,548,476,449,66,71,3,3,0,4,1,1,23,20,30,31,29,27,0,1,0,1,0,1,0,0,1,1 -050,01,061,Alabama,Geneva County,7,2,1596,789,807,680,697,88,88,7,6,2,1,2,0,10,15,753,764,648,657,86,85,6,6,2,1,1,0,10,15,36,43,32,40,2,3,1,0,0,0,1,0,0,0 -050,01,061,Alabama,Geneva County,7,3,1716,953,763,799,636,127,106,11,8,1,0,2,1,13,12,904,735,756,612,125,106,10,5,1,0,0,0,12,12,49,28,43,24,2,0,1,3,0,0,2,1,1,0 -050,01,061,Alabama,Geneva County,7,4,1879,971,908,827,765,118,126,9,9,5,2,2,0,10,6,929,887,790,748,117,124,9,7,3,2,1,0,9,6,42,21,37,17,1,2,0,2,2,0,1,0,1,0 -050,01,061,Alabama,Geneva County,7,5,1393,690,703,588,604,84,82,6,6,3,1,1,0,8,10,654,677,557,581,84,81,4,5,2,1,1,0,6,9,36,26,31,23,0,1,2,1,1,0,0,0,2,1 -050,01,061,Alabama,Geneva County,7,6,1364,729,635,655,547,62,76,7,5,0,3,1,0,4,4,690,603,620,519,61,75,6,3,0,2,1,0,2,4,39,32,35,28,1,1,1,2,0,1,0,0,2,0 -050,01,061,Alabama,Geneva County,7,7,1512,731,781,626,669,87,93,10,7,0,4,1,0,7,8,695,763,593,652,86,92,8,7,0,4,1,0,7,8,36,18,33,17,1,1,2,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,7,8,1672,799,873,703,780,79,77,8,9,4,1,0,1,5,5,771,852,675,762,79,76,8,8,4,1,0,0,5,5,28,21,28,18,0,1,0,1,0,0,0,1,0,0 -050,01,061,Alabama,Geneva County,7,9,1925,957,968,839,820,100,124,8,13,2,3,0,0,8,8,937,952,820,808,99,123,8,10,2,3,0,0,8,8,20,16,19,12,1,1,0,3,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,7,10,1926,940,986,839,850,83,117,10,8,1,4,0,0,7,7,921,976,820,841,83,116,10,8,1,4,0,0,7,7,19,10,19,9,0,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,7,11,1843,933,910,841,815,76,79,8,9,1,3,0,0,7,4,924,899,834,806,75,78,8,8,1,3,0,0,6,4,9,11,7,9,1,1,0,1,0,0,0,0,1,0 -050,01,061,Alabama,Geneva County,7,12,1723,853,870,764,784,73,68,7,8,2,4,0,0,7,6,836,861,749,775,72,68,6,8,2,4,0,0,7,6,17,9,15,9,1,0,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,7,13,1574,766,808,688,709,61,82,7,6,2,1,0,0,8,10,756,797,678,698,61,82,7,6,2,1,0,0,8,10,10,11,10,11,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,7,14,1361,618,743,554,663,58,75,4,2,1,0,0,0,1,3,612,740,548,660,58,75,4,2,1,0,0,0,1,3,6,3,6,3,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,7,15,1088,524,564,490,515,30,44,3,3,0,0,0,0,1,2,514,561,482,513,29,43,2,3,0,0,0,0,1,2,10,3,8,2,1,1,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,7,16,839,353,486,333,448,19,35,1,0,0,0,0,0,0,3,353,485,333,447,19,35,1,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,7,17,597,198,399,188,374,9,24,1,0,0,0,0,0,0,1,195,397,186,372,9,24,0,0,0,0,0,0,0,1,3,2,2,2,0,0,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,7,18,518,138,380,134,351,2,27,0,0,0,0,0,0,2,2,137,380,133,351,2,27,0,0,0,0,0,0,2,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,7,99,25988,12679,13309,11174,11622,1232,1416,110,103,24,32,10,3,129,133,12280,13011,10811,11358,1221,1402,100,89,21,30,6,1,121,131,399,298,363,264,11,14,10,14,3,2,4,2,8,2 -050,01,061,Alabama,Geneva County,8,0,332,184,148,164,126,13,16,0,0,0,0,0,0,7,6,176,136,156,114,13,16,0,0,0,0,0,0,7,6,8,12,8,12,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,8,1,1173,605,568,493,462,83,75,4,6,0,5,1,2,24,18,564,537,453,437,83,73,4,5,0,4,1,1,23,17,41,31,40,25,0,2,0,1,0,1,0,1,1,1 -050,01,061,Alabama,Geneva County,8,2,1670,833,837,713,715,96,96,6,7,2,1,2,0,14,18,791,800,675,681,94,94,5,6,2,1,1,0,14,18,42,37,38,34,2,2,1,1,0,0,1,0,0,0 -050,01,061,Alabama,Geneva County,8,3,1701,889,812,745,689,114,99,11,8,1,1,2,1,16,14,846,767,708,650,113,98,9,4,1,1,0,0,15,14,43,45,37,39,1,1,2,4,0,0,2,1,1,0 -050,01,061,Alabama,Geneva County,8,4,1851,975,876,830,736,119,119,7,9,6,2,2,0,11,10,934,842,793,706,119,117,7,7,4,2,1,0,10,10,41,34,37,30,0,2,0,2,2,0,1,0,1,0 -050,01,061,Alabama,Geneva County,8,5,1444,701,743,601,640,84,86,5,3,3,2,1,0,7,12,645,705,549,607,84,84,3,2,2,1,1,0,6,11,56,38,52,33,0,2,2,1,1,1,0,0,1,1 -050,01,061,Alabama,Geneva County,8,6,1391,739,652,661,556,68,81,7,5,0,3,0,0,3,7,709,616,635,524,67,80,6,3,0,2,0,0,1,7,30,36,26,32,1,1,1,2,0,1,0,0,2,0 -050,01,061,Alabama,Geneva County,8,7,1448,710,738,620,635,75,83,9,6,0,4,0,0,6,10,681,716,595,616,74,81,6,6,0,4,0,0,6,9,29,22,25,19,1,2,3,0,0,0,0,0,0,1 -050,01,061,Alabama,Geneva County,8,8,1688,811,877,704,798,88,60,9,8,4,1,0,1,6,9,774,860,667,783,88,59,9,8,4,1,0,0,6,9,37,17,37,15,0,1,0,0,0,0,0,1,0,0 -050,01,061,Alabama,Geneva County,8,9,1913,941,972,830,823,91,125,9,12,2,3,0,0,9,9,920,953,813,808,89,124,7,9,2,3,0,0,9,9,21,19,17,15,2,1,2,3,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,8,10,1936,945,991,839,854,88,110,8,13,2,5,0,1,8,8,926,979,820,844,88,109,8,12,2,5,0,1,8,8,19,12,19,10,0,1,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,8,11,1910,980,930,886,823,72,92,12,8,1,3,0,0,9,4,967,919,877,814,70,91,11,7,1,3,0,0,8,4,13,11,9,9,2,1,1,1,0,0,0,0,1,0 -050,01,061,Alabama,Geneva County,8,12,1782,890,892,790,812,82,59,8,9,2,4,0,0,8,8,877,882,779,803,81,58,7,9,2,4,0,0,8,8,13,10,11,9,1,1,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,8,13,1590,776,814,706,710,53,87,9,5,1,3,0,0,7,9,765,804,695,700,53,87,9,5,1,3,0,0,7,9,11,10,11,10,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,8,14,1375,626,749,550,666,68,75,5,4,1,0,0,0,2,4,621,747,545,664,68,75,5,4,1,0,0,0,2,4,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,8,15,1089,520,569,487,514,27,49,3,3,2,0,0,0,1,3,511,566,479,511,27,49,2,3,2,0,0,0,1,3,9,3,8,3,0,0,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,8,16,838,373,465,348,429,25,33,0,1,0,0,0,0,0,2,370,463,345,427,25,33,0,1,0,0,0,0,0,2,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,8,17,627,211,416,199,393,12,20,0,1,0,0,0,0,0,2,210,414,198,391,12,20,0,1,0,0,0,0,0,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,8,18,513,142,371,137,337,3,31,0,0,0,1,0,0,2,2,141,371,136,337,3,31,0,0,0,1,0,0,2,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,8,99,26271,12851,13420,11303,11718,1261,1396,112,108,27,38,8,5,140,155,12428,13077,10918,11417,1251,1379,98,92,24,35,4,2,133,152,423,343,385,301,10,17,14,16,3,3,4,3,7,3 -050,01,061,Alabama,Geneva County,9,0,321,163,158,143,137,12,14,0,0,0,0,0,0,8,7,155,146,135,125,12,14,0,0,0,0,0,0,8,7,8,12,8,12,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,9,1,1206,631,575,535,471,63,70,5,6,0,4,1,2,27,22,589,536,496,437,63,69,3,5,0,3,1,1,26,21,42,39,39,34,0,1,2,1,0,1,0,1,1,1 -050,01,061,Alabama,Geneva County,9,2,1633,800,833,691,712,83,93,6,7,2,1,2,0,16,20,754,782,649,665,81,91,5,6,2,1,1,0,16,19,46,51,42,47,2,2,1,1,0,0,1,0,0,1 -050,01,061,Alabama,Geneva County,9,3,1698,907,791,773,660,107,105,8,7,1,1,2,1,16,17,861,751,733,626,106,104,6,3,1,1,0,0,15,17,46,40,40,34,1,1,2,4,0,0,2,1,1,0 -050,01,061,Alabama,Geneva County,9,4,1826,952,874,799,726,122,128,10,7,6,2,2,0,13,11,923,840,775,697,121,125,10,5,4,2,1,0,12,11,29,34,24,29,1,3,0,2,2,0,1,0,1,0 -050,01,061,Alabama,Geneva County,9,5,1444,701,743,605,647,78,79,6,3,3,2,1,0,8,12,650,712,559,621,78,77,3,2,2,1,1,0,7,11,51,31,46,26,0,2,3,1,1,1,0,0,1,1 -050,01,061,Alabama,Geneva County,9,6,1398,755,643,670,553,73,75,6,5,1,3,0,0,5,7,698,618,618,532,72,74,5,3,0,2,0,0,3,7,57,25,52,21,1,1,1,2,1,1,0,0,2,0 -050,01,061,Alabama,Geneva County,9,7,1411,707,704,627,592,65,92,9,5,0,4,0,0,6,11,675,683,599,574,64,90,6,5,0,4,0,0,6,10,32,21,28,18,1,2,3,0,0,0,0,0,0,1 -050,01,061,Alabama,Geneva County,9,8,1742,810,932,712,852,82,62,6,7,4,1,0,1,6,9,775,906,677,828,82,61,6,7,4,1,0,0,6,9,35,26,35,24,0,1,0,0,0,0,0,1,0,0 -050,01,061,Alabama,Geneva County,9,9,1804,884,920,788,787,75,111,10,12,2,3,0,0,9,7,860,903,767,774,73,110,9,9,2,3,0,0,9,7,24,17,21,13,2,1,1,3,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,9,10,1908,948,960,843,832,88,104,8,12,2,5,0,0,7,7,925,948,820,822,88,103,8,11,2,5,0,0,7,7,23,12,23,10,0,1,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,9,11,1950,968,982,875,851,73,112,8,10,1,3,1,0,10,6,951,971,863,842,70,111,7,9,1,3,1,0,9,6,17,11,12,9,3,1,1,1,0,0,0,0,1,0 -050,01,061,Alabama,Geneva County,9,12,1785,910,875,808,783,84,69,8,10,2,4,0,0,8,9,895,866,795,775,83,68,7,10,2,4,0,0,8,9,15,9,13,8,1,1,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,9,13,1689,828,861,765,757,49,86,5,5,1,3,0,0,8,10,817,850,754,746,49,86,5,5,1,3,0,0,8,10,11,11,11,11,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,9,14,1386,630,756,556,665,62,80,8,5,1,0,0,0,3,6,627,753,553,662,62,80,8,5,1,0,0,0,3,6,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,9,15,1113,493,620,464,566,22,48,4,3,2,0,0,0,1,3,485,617,457,563,22,48,3,3,2,0,0,0,1,3,8,3,7,3,0,0,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,9,16,867,396,471,369,419,26,49,1,1,0,0,0,0,0,2,392,469,365,417,26,49,1,1,0,0,0,0,0,2,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,9,17,650,232,418,215,402,17,14,0,1,0,0,0,0,0,1,230,416,213,400,17,14,0,1,0,0,0,0,0,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,9,18,491,133,358,128,323,3,32,0,0,0,1,0,0,2,2,132,358,127,323,3,32,0,0,0,1,0,0,2,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,9,99,26322,12848,13474,11366,11735,1184,1423,108,106,28,37,9,4,153,169,12394,13125,10955,11429,1172,1406,92,90,24,34,5,1,146,165,454,349,411,306,12,17,16,16,4,3,4,3,7,4 -050,01,061,Alabama,Geneva County,10,0,324,165,159,145,139,11,13,0,0,0,0,0,0,9,7,156,147,136,127,11,13,0,0,0,0,0,0,9,7,9,12,9,12,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,10,1,1239,646,593,551,502,60,54,5,8,0,4,1,2,29,23,591,559,499,474,60,53,3,6,0,3,1,1,28,22,55,34,52,28,0,1,2,2,0,1,0,1,1,1 -050,01,061,Alabama,Geneva County,10,2,1657,840,817,723,682,90,101,6,8,2,1,2,0,17,25,788,758,675,627,88,99,5,7,2,1,1,0,17,24,52,59,48,55,2,2,1,1,0,0,1,0,0,1 -050,01,061,Alabama,Geneva County,10,3,1691,894,797,758,672,105,98,9,7,1,1,2,1,19,18,849,750,719,631,104,97,7,3,1,1,0,0,18,18,45,47,39,41,1,1,2,4,0,0,2,1,1,0 -050,01,061,Alabama,Geneva County,10,4,1813,943,870,794,727,118,121,9,8,7,4,1,0,14,10,912,839,768,701,117,118,9,6,5,4,0,0,13,10,31,31,26,26,1,3,0,2,2,0,1,0,1,0 -050,01,061,Alabama,Geneva County,10,5,1489,681,808,600,715,62,76,6,3,3,2,1,0,9,12,629,775,553,687,62,74,3,2,2,1,1,0,8,11,52,33,47,28,0,2,3,1,1,1,0,0,1,1 -050,01,061,Alabama,Geneva County,10,6,1439,764,675,691,581,61,79,6,6,0,3,0,0,6,6,713,646,644,556,60,78,5,4,0,2,0,0,4,6,51,29,47,25,1,1,1,2,0,1,0,0,2,0 -050,01,061,Alabama,Geneva County,10,7,1416,684,732,600,606,69,103,9,6,0,5,0,0,6,12,658,707,579,583,68,102,5,6,0,5,0,0,6,11,26,25,21,23,1,1,4,0,0,0,0,0,0,1 -050,01,061,Alabama,Geneva County,10,8,1702,831,871,709,787,104,64,9,7,4,0,1,1,4,12,789,848,667,766,104,63,9,7,4,0,1,0,4,12,42,23,42,21,0,1,0,0,0,0,0,1,0,0 -050,01,061,Alabama,Geneva County,10,9,1775,879,896,776,776,75,96,12,12,2,3,0,0,14,9,855,881,756,765,73,95,10,9,2,3,0,0,14,9,24,15,20,11,2,1,2,3,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,10,10,1923,960,963,862,832,81,109,8,8,2,6,0,0,7,8,941,953,843,824,81,108,8,7,2,6,0,0,7,8,19,10,19,8,0,1,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,10,11,1988,1000,988,902,853,78,117,9,8,1,3,1,0,9,7,980,976,887,843,75,116,8,7,1,3,1,0,8,7,20,12,15,10,3,1,1,1,0,0,0,0,1,0 -050,01,061,Alabama,Geneva County,10,12,1829,908,921,808,816,82,81,7,9,2,5,0,0,9,10,897,911,799,807,81,80,6,9,2,5,0,0,9,10,11,10,9,9,1,1,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,10,13,1728,856,872,775,778,63,73,10,7,1,4,0,0,7,10,845,860,764,766,63,73,10,7,1,4,0,0,7,10,11,12,11,12,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,10,14,1441,634,807,568,711,53,85,8,5,1,0,0,0,4,6,630,804,564,708,53,85,8,5,1,0,0,0,4,6,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,10,15,1164,530,634,495,573,28,54,4,3,2,0,0,0,1,4,522,631,488,570,28,54,3,3,2,0,0,0,1,4,8,3,7,3,0,0,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,10,16,866,379,487,343,437,35,47,1,1,0,0,0,0,0,2,375,485,339,435,35,47,1,1,0,0,0,0,0,2,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,10,17,660,260,400,247,379,12,20,1,0,0,0,0,0,0,1,257,398,245,377,12,20,0,0,0,0,0,0,0,1,3,2,2,2,0,0,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,10,18,502,153,349,146,323,7,24,0,0,0,1,0,0,0,1,152,349,145,323,7,24,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,10,99,26646,13007,13639,11493,11889,1194,1415,119,106,28,42,9,4,164,183,12539,13277,11070,11570,1182,1399,100,89,25,39,5,1,157,179,468,362,423,319,12,16,19,17,3,3,4,3,7,4 -050,01,061,Alabama,Geneva County,11,0,323,158,165,137,137,12,20,0,0,0,0,0,0,9,8,149,153,128,125,12,20,0,0,0,0,0,0,9,8,9,12,9,12,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,11,1,1257,653,604,557,509,55,54,5,8,0,3,1,2,35,28,601,552,508,463,55,53,3,6,0,2,1,1,34,27,52,52,49,46,0,1,2,2,0,1,0,1,1,1 -050,01,061,Alabama,Geneva County,11,2,1625,819,806,706,663,85,109,5,8,3,1,2,0,18,25,763,752,655,613,83,107,4,7,2,1,1,0,18,24,56,54,51,50,2,2,1,1,1,0,1,0,0,1 -050,01,061,Alabama,Geneva County,11,3,1704,904,800,772,680,101,91,9,7,1,1,2,1,19,20,853,750,727,636,100,90,7,3,1,1,0,0,18,20,51,50,45,44,1,1,2,4,0,0,2,1,1,0 -050,01,061,Alabama,Geneva County,11,4,1797,940,857,795,713,114,122,8,8,7,4,2,0,14,10,905,824,766,685,113,119,7,6,5,4,1,0,13,10,35,33,29,28,1,3,1,2,2,0,1,0,1,0 -050,01,061,Alabama,Geneva County,11,5,1501,728,773,644,680,65,76,6,3,3,2,1,0,9,12,657,746,578,658,65,74,3,2,2,1,1,0,8,11,71,27,66,22,0,2,3,1,1,1,0,0,1,1 -050,01,061,Alabama,Geneva County,11,6,1402,718,684,637,600,69,69,5,6,1,3,0,0,6,6,676,656,600,576,68,68,4,4,0,2,0,0,4,6,42,28,37,24,1,1,1,2,1,1,0,0,2,0 -050,01,061,Alabama,Geneva County,11,7,1432,703,729,616,617,69,90,11,6,0,5,0,0,7,11,663,706,581,595,68,89,7,6,0,5,0,0,7,11,40,23,35,22,1,1,4,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,11,8,1641,806,835,695,739,98,77,5,6,4,0,0,1,4,12,764,815,653,721,98,76,5,6,4,0,0,0,4,12,42,20,42,18,0,1,0,0,0,0,0,1,0,0 -050,01,061,Alabama,Geneva County,11,9,1817,912,905,822,794,66,90,10,9,2,4,0,0,12,8,883,884,796,778,64,89,9,5,2,4,0,0,12,8,29,21,26,16,2,1,1,4,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,11,10,1898,954,944,849,827,87,94,9,9,2,6,0,1,7,7,936,933,831,818,87,93,9,8,2,6,0,1,7,7,18,11,18,9,0,1,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,11,11,1965,962,1003,863,867,77,116,8,10,1,3,2,0,11,7,941,988,848,855,74,115,6,8,1,3,2,0,10,7,21,15,15,12,3,1,2,2,0,0,0,0,1,0 -050,01,061,Alabama,Geneva County,11,12,1854,927,927,821,816,87,86,7,12,2,5,0,0,10,8,915,914,811,804,86,85,6,12,2,5,0,0,10,8,12,13,10,12,1,1,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,11,13,1778,875,903,785,815,72,68,9,7,1,4,0,0,8,9,864,889,774,801,72,68,9,7,1,4,0,0,8,9,11,14,11,14,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,11,14,1493,693,800,630,717,50,72,8,5,1,0,0,0,4,6,688,797,625,714,50,72,8,5,1,0,0,0,4,6,5,3,5,3,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,11,15,1152,504,648,473,581,24,59,4,4,2,0,0,0,1,4,498,644,468,577,24,59,3,4,2,0,0,0,1,4,6,4,5,4,0,0,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,11,16,856,366,490,340,447,25,40,1,1,0,0,0,0,0,2,362,488,336,445,25,40,1,1,0,0,0,0,0,2,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,11,17,655,254,401,243,374,10,25,1,1,0,0,0,0,0,1,250,399,240,372,10,25,0,1,0,0,0,0,0,1,4,2,3,2,0,0,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,11,18,503,154,349,145,326,9,21,0,0,0,1,0,0,0,1,153,349,144,326,9,21,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,11,99,26653,13030,13623,11530,11902,1175,1379,111,110,30,42,10,5,174,185,12521,13239,11069,11562,1163,1363,91,91,25,39,6,2,167,182,509,384,461,340,12,16,20,19,5,3,4,3,7,3 -050,01,061,Alabama,Geneva County,12,0,297,152,145,129,118,13,19,0,0,0,0,0,0,10,8,143,133,120,106,13,19,0,0,0,0,0,0,10,8,9,12,9,12,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,12,1,1279,664,615,569,517,53,55,5,8,0,4,1,2,36,29,618,568,526,476,53,54,3,6,0,3,1,1,35,28,46,47,43,41,0,1,2,2,0,1,0,1,1,1 -050,01,061,Alabama,Geneva County,12,2,1644,829,815,714,679,86,100,5,8,3,1,2,0,19,27,768,758,658,626,84,98,4,7,2,1,1,0,19,26,61,57,56,53,2,2,1,1,1,0,1,0,0,1 -050,01,061,Alabama,Geneva County,12,3,1676,882,794,759,681,92,83,9,7,1,1,2,1,19,21,825,743,708,636,91,82,7,3,1,1,0,0,18,21,57,51,51,45,1,1,2,4,0,0,2,1,1,0 -050,01,061,Alabama,Geneva County,12,4,1788,945,843,799,705,115,115,8,8,7,4,2,0,14,11,899,817,759,684,114,112,7,6,5,4,1,0,13,11,46,26,40,21,1,3,1,2,2,0,1,0,1,0 -050,01,061,Alabama,Geneva County,12,5,1498,708,790,624,688,64,85,7,3,3,2,1,0,9,12,638,753,559,656,64,83,4,2,2,1,1,0,8,11,70,37,65,32,0,2,3,1,1,1,0,0,1,1 -050,01,061,Alabama,Geneva County,12,6,1392,700,692,622,611,66,66,5,6,1,3,0,0,6,6,665,660,592,583,65,65,4,4,0,2,0,0,4,6,35,32,30,28,1,1,1,2,1,1,0,0,2,0 -050,01,061,Alabama,Geneva County,12,7,1469,741,728,648,613,75,92,11,6,0,5,0,0,7,12,703,703,615,590,74,91,7,6,0,5,0,0,7,11,38,25,33,23,1,1,4,0,0,0,0,0,0,1 -050,01,061,Alabama,Geneva County,12,8,1599,771,828,657,726,97,83,6,6,4,0,1,1,6,12,737,799,623,699,97,82,6,6,4,0,1,0,6,12,34,29,34,27,0,1,0,0,0,0,0,1,0,0 -050,01,061,Alabama,Geneva County,12,9,1813,897,916,803,810,68,82,11,10,2,4,0,0,13,10,870,896,780,795,66,81,9,6,2,4,0,0,13,10,27,20,23,15,2,1,2,4,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,12,10,1968,1013,955,895,823,98,108,11,9,2,6,0,1,7,8,991,942,873,812,98,107,11,8,2,6,0,1,7,8,22,13,22,11,0,1,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,12,11,1988,968,1020,871,879,74,120,10,11,1,3,1,0,11,7,948,1001,857,863,71,119,8,9,1,3,1,0,10,7,20,19,14,16,3,1,2,2,0,0,0,0,1,0 -050,01,061,Alabama,Geneva County,12,12,1858,926,932,818,815,88,90,8,12,2,5,0,0,10,10,911,918,805,802,87,89,7,12,2,5,0,0,10,10,15,14,13,13,1,1,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,12,13,1847,903,944,813,842,68,81,13,7,1,4,0,0,8,10,892,931,802,829,68,81,13,7,1,4,0,0,8,10,11,13,11,13,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,12,14,1481,707,774,647,698,46,64,9,6,1,0,0,0,4,6,703,771,643,695,46,64,9,6,1,0,0,0,4,6,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,12,15,1205,529,676,486,611,36,57,4,4,2,0,0,0,1,4,519,672,477,607,36,57,3,4,2,0,0,0,1,4,10,4,9,4,0,0,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,12,16,856,383,473,357,434,25,36,1,1,0,0,0,0,0,2,379,471,353,432,25,36,1,1,0,0,0,0,0,2,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,12,17,624,232,392,219,369,12,21,1,1,0,0,0,0,0,1,228,390,216,367,12,21,0,1,0,0,0,0,0,1,4,2,3,2,0,0,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,12,18,508,155,353,146,332,9,19,0,0,0,1,0,0,0,1,154,353,145,332,9,19,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,12,99,26790,13105,13685,11576,11951,1185,1376,124,113,30,43,10,5,180,197,12591,13279,11111,11590,1173,1360,103,94,25,40,6,2,173,193,514,406,465,361,12,16,21,19,5,3,4,3,7,4 -050,01,061,Alabama,Geneva County,13,0,302,153,149,128,120,14,20,0,0,1,0,0,0,10,9,144,136,119,107,14,20,0,0,1,0,0,0,10,9,9,13,9,13,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,13,1,1281,670,611,566,513,58,56,6,9,1,4,1,1,38,28,621,562,524,472,56,55,3,6,0,3,1,0,37,26,49,49,42,41,2,1,3,3,1,1,0,1,1,2 -050,01,061,Alabama,Geneva County,13,2,1645,827,818,714,679,86,103,5,11,3,0,1,0,18,25,767,757,658,626,85,99,4,8,2,0,0,0,18,24,60,61,56,53,1,4,1,3,1,0,1,0,0,1 -050,01,061,Alabama,Geneva County,13,3,1672,884,788,758,681,93,84,11,5,1,1,2,0,19,17,827,739,707,636,91,82,9,3,1,1,0,0,19,17,57,49,51,45,2,2,2,2,0,0,2,0,0,0 -050,01,061,Alabama,Geneva County,13,4,1769,935,834,796,699,114,113,7,7,4,4,0,1,14,10,890,808,754,679,111,110,7,5,4,4,0,0,14,10,45,26,42,20,3,3,0,2,0,0,0,1,0,0 -050,01,061,Alabama,Geneva County,13,5,1503,712,791,627,689,65,86,7,5,2,3,2,0,9,8,639,754,560,656,64,84,5,3,1,3,1,0,8,8,73,37,67,33,1,2,2,2,1,0,1,0,1,0 -050,01,061,Alabama,Geneva County,13,6,1401,706,695,625,613,71,68,4,6,1,2,1,0,4,6,669,663,595,585,67,66,3,5,0,2,0,0,4,5,37,32,30,28,4,2,1,1,1,0,1,0,0,1 -050,01,061,Alabama,Geneva County,13,7,1484,751,733,654,619,76,94,12,5,3,6,0,0,6,9,711,709,619,596,75,93,8,5,3,6,0,0,6,9,40,24,35,23,1,1,4,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,13,8,1587,765,822,651,722,98,84,8,4,2,0,1,0,5,12,728,791,617,694,97,81,7,4,2,0,0,0,5,12,37,31,34,28,1,3,1,0,0,0,1,0,0,0 -050,01,061,Alabama,Geneva County,13,9,1802,892,910,804,808,67,83,9,6,1,4,0,0,11,9,864,891,780,793,65,80,7,5,1,4,0,0,11,9,28,19,24,15,2,3,2,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,13,10,1954,1006,948,889,818,97,110,12,8,1,6,0,0,7,6,984,936,868,808,97,109,11,7,1,6,0,0,7,6,22,12,21,10,0,1,1,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,13,11,1982,964,1018,871,877,75,123,10,9,1,4,0,0,7,5,946,1001,857,862,72,122,9,8,1,4,0,0,7,5,18,17,14,15,3,1,1,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,13,12,1873,933,940,824,818,90,94,7,12,1,4,0,0,11,12,919,927,811,806,89,93,7,12,1,4,0,0,11,12,14,13,13,12,1,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,13,13,1862,911,951,822,851,68,80,14,6,1,4,0,0,6,10,899,938,810,838,68,80,14,6,1,4,0,0,6,10,12,13,12,13,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,13,14,1488,707,781,650,701,46,66,9,6,0,1,0,0,2,7,703,778,646,698,46,66,9,6,0,1,0,0,2,7,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,13,15,1211,532,679,488,613,37,59,3,3,2,0,0,0,2,4,523,675,480,609,37,59,2,3,2,0,0,0,2,4,9,4,8,4,0,0,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,13,16,861,385,476,357,434,26,36,1,2,0,1,0,0,1,3,383,474,355,432,26,36,1,2,0,1,0,0,1,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,13,17,626,235,391,220,367,14,21,1,1,0,0,0,0,0,2,231,391,217,367,14,21,0,1,0,0,0,0,0,2,4,0,3,0,0,0,1,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,13,18,512,157,355,148,334,9,19,0,0,0,1,0,0,0,1,156,355,147,334,9,19,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,13,99,26815,13125,13690,11592,11956,1204,1399,126,105,25,45,8,2,170,183,12604,13285,11124,11598,1183,1375,106,89,21,44,2,0,168,179,521,405,468,358,21,24,20,16,4,1,6,2,2,4 -050,01,063,Alabama,Greene County,1,0,138,72,66,7,8,64,58,0,0,0,0,0,0,1,0,72,65,7,8,64,57,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,1,627,333,294,47,25,286,268,0,0,0,1,0,0,0,0,333,294,47,25,286,268,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,2,829,439,390,38,40,399,348,0,1,0,1,0,0,2,0,433,387,38,40,393,345,0,1,0,1,0,0,2,0,6,3,0,0,6,3,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,3,775,436,339,46,43,389,294,0,1,0,0,0,0,1,1,431,334,46,43,384,289,0,1,0,0,0,0,1,1,5,5,0,0,5,5,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,4,868,442,426,66,38,376,386,0,0,0,0,0,0,0,2,438,422,64,38,374,382,0,0,0,0,0,0,0,2,4,4,2,0,2,4,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,5,539,249,290,33,35,216,255,0,0,0,0,0,0,0,0,248,290,33,35,215,255,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,6,532,223,309,45,48,178,258,0,0,0,3,0,0,0,0,223,307,45,48,178,256,0,0,0,3,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,7,530,226,304,49,54,173,250,0,0,4,0,0,0,0,0,225,301,48,53,173,248,0,0,4,0,0,0,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,8,651,273,378,57,53,215,322,1,0,0,1,0,0,0,2,272,377,57,53,214,321,1,0,0,1,0,0,0,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,9,768,338,430,82,78,254,352,1,0,0,0,0,0,1,0,335,428,82,78,251,350,1,0,0,0,0,0,1,0,3,2,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,10,760,372,388,90,76,279,310,1,1,0,0,0,0,2,1,370,386,89,75,278,309,1,1,0,0,0,0,2,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,11,563,247,316,63,67,182,249,2,0,0,0,0,0,0,0,245,314,63,65,180,249,2,0,0,0,0,0,0,0,2,2,0,2,2,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,12,461,218,243,75,69,142,169,1,2,0,0,0,0,0,3,217,242,75,68,141,169,1,2,0,0,0,0,0,3,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,13,418,189,229,62,67,126,162,0,0,0,0,0,0,1,0,189,227,62,67,126,160,0,0,0,0,0,0,1,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,14,379,172,207,62,61,109,146,0,0,0,0,0,0,1,0,172,206,62,61,109,145,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,15,398,173,225,58,73,115,152,0,0,0,0,0,0,0,0,173,225,58,73,115,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,16,266,120,146,39,38,80,108,0,0,0,0,0,0,1,0,120,145,39,38,80,107,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,17,172,59,113,16,34,42,79,1,0,0,0,0,0,0,0,59,113,16,34,42,79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,18,249,67,182,12,35,55,147,0,0,0,0,0,0,0,0,66,181,12,35,54,146,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,99,9923,4648,5275,947,942,3680,4313,7,5,4,6,0,0,10,9,4621,5244,943,937,3657,4287,7,5,4,6,0,0,10,9,27,31,4,5,23,26,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,0,138,72,66,7,8,64,58,0,0,0,0,0,0,1,0,72,65,7,8,64,57,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,1,621,329,292,47,25,282,266,0,0,0,1,0,0,0,0,329,292,47,25,282,266,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,2,822,436,386,38,38,396,346,0,1,0,1,0,0,2,0,430,383,38,38,390,343,0,1,0,1,0,0,2,0,6,3,0,0,6,3,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,3,774,437,337,46,42,390,293,0,1,0,0,0,0,1,1,432,332,46,42,385,288,0,1,0,0,0,0,1,1,5,5,0,0,5,5,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,4,868,442,426,66,38,376,385,0,0,0,0,0,0,0,3,438,422,64,38,374,381,0,0,0,0,0,0,0,3,4,4,2,0,2,4,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,5,540,250,290,33,35,217,255,0,0,0,0,0,0,0,0,249,290,33,35,216,255,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,6,528,222,306,45,48,177,255,0,0,0,3,0,0,0,0,222,304,45,48,177,253,0,0,0,3,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,7,525,223,302,49,54,170,248,0,0,4,0,0,0,0,0,222,299,48,53,170,246,0,0,4,0,0,0,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,8,647,272,375,57,53,214,319,1,0,0,1,0,0,0,2,271,374,57,53,213,318,1,0,0,1,0,0,0,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,9,768,339,429,82,78,255,351,1,0,0,0,0,0,1,0,336,427,82,78,252,349,1,0,0,0,0,0,1,0,3,2,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,10,761,373,388,90,76,280,310,1,1,0,0,0,0,2,1,371,386,89,75,279,309,1,1,0,0,0,0,2,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,11,567,248,319,62,67,184,252,2,0,0,0,0,0,0,0,246,317,62,65,182,252,2,0,0,0,0,0,0,0,2,2,0,2,2,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,12,461,218,243,75,69,142,169,1,2,0,0,0,0,0,3,217,242,75,68,141,169,1,2,0,0,0,0,0,3,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,13,417,189,228,62,67,126,161,0,0,0,0,0,0,1,0,189,226,62,67,126,159,0,0,0,0,0,0,1,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,14,377,171,206,62,61,108,145,0,0,0,0,0,0,1,0,171,205,62,61,108,144,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,15,398,173,225,58,73,115,152,0,0,0,0,0,0,0,0,173,225,58,73,115,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,16,266,120,146,39,38,80,108,0,0,0,0,0,0,1,0,120,145,39,38,80,107,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,17,173,59,114,16,34,42,80,1,0,0,0,0,0,0,0,59,114,16,34,42,80,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,18,251,68,183,12,35,56,148,0,0,0,0,0,0,0,0,67,182,12,35,55,147,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,99,9902,4641,5261,946,939,3674,4301,7,5,4,6,0,0,10,10,4614,5230,942,934,3651,4275,7,5,4,6,0,0,10,10,27,31,4,5,23,26,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,0,136,64,72,8,9,55,63,0,0,0,0,0,0,1,0,64,71,8,9,55,62,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,1,612,320,292,55,26,265,265,0,0,0,1,0,0,0,0,320,292,55,26,265,265,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,2,784,425,359,41,36,382,321,0,1,0,1,0,0,2,0,419,356,41,36,376,318,0,1,0,1,0,0,2,0,6,3,0,0,6,3,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,3,777,432,345,39,34,392,309,0,1,0,0,0,0,1,1,428,340,39,34,388,304,0,1,0,0,0,0,1,1,4,5,0,0,4,5,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,4,838,438,400,58,38,379,360,0,0,0,0,0,0,1,2,434,396,56,38,377,356,0,0,0,0,0,0,1,2,4,4,2,0,2,4,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,5,561,272,289,32,36,240,253,0,0,0,0,0,0,0,0,271,289,32,36,239,253,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,6,520,226,294,35,43,191,248,0,0,0,3,0,0,0,0,226,292,35,43,191,246,0,0,0,3,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,7,495,213,282,57,50,152,232,0,0,4,0,0,0,0,0,212,279,56,49,152,230,0,0,4,0,0,0,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,8,616,250,366,45,50,204,313,1,0,0,1,0,0,0,2,249,365,45,50,203,312,1,0,0,1,0,0,0,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,9,743,332,411,82,77,248,334,1,0,0,0,0,0,1,0,329,409,82,77,245,332,1,0,0,0,0,0,1,0,3,2,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,10,792,400,392,95,75,302,315,1,1,0,0,0,0,2,1,398,390,94,74,301,314,1,1,0,0,0,0,2,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,11,644,282,362,82,72,198,290,2,0,0,0,0,0,0,0,280,360,82,70,196,290,2,0,0,0,0,0,0,0,2,2,0,2,2,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,12,452,200,252,67,69,132,178,1,2,0,0,0,0,0,3,199,251,67,68,131,178,1,2,0,0,0,0,0,3,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,13,428,204,224,70,62,133,162,0,0,0,0,0,0,1,0,204,222,70,62,133,160,0,0,0,0,0,0,1,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,14,371,169,202,61,57,107,145,0,0,0,0,0,0,1,0,169,201,61,57,107,144,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,15,390,179,211,62,69,117,142,0,0,0,0,0,0,0,0,179,211,62,69,117,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,16,288,119,169,41,44,77,125,0,0,0,0,0,0,1,0,119,168,41,44,77,124,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,17,175,66,109,16,34,49,75,1,0,0,0,0,0,0,0,66,109,16,34,49,75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,18,244,62,182,11,35,51,147,0,0,0,0,0,0,0,0,61,181,11,35,50,146,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,99,9866,4653,5213,957,916,3674,4277,7,5,4,6,0,0,11,9,4627,5182,953,911,3652,4251,7,5,4,6,0,0,11,9,26,31,4,5,22,26,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,0,150,80,70,8,5,71,65,0,0,0,0,0,0,1,0,80,69,8,5,71,64,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,1,580,297,283,59,31,238,251,0,0,0,1,0,0,0,0,297,283,59,31,238,251,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,2,760,407,353,40,27,365,324,0,1,0,1,0,0,2,0,402,350,40,27,360,321,0,1,0,1,0,0,2,0,5,3,0,0,5,3,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,3,795,429,366,33,34,395,330,0,1,0,0,0,0,1,1,425,362,33,34,391,326,0,1,0,0,0,0,1,1,4,4,0,0,4,4,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,4,806,442,364,62,35,380,327,0,0,0,0,0,0,0,2,438,361,60,35,378,324,0,0,0,0,0,0,0,2,4,3,2,0,2,3,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,5,620,297,323,29,33,268,290,0,0,0,0,0,0,0,0,296,323,29,33,267,290,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,6,516,234,282,39,46,195,233,0,0,0,3,0,0,0,0,234,280,39,46,195,231,0,0,0,3,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,7,459,189,270,54,54,131,216,0,0,4,0,0,0,0,0,188,267,53,53,131,214,0,0,4,0,0,0,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,8,617,246,371,48,53,197,315,1,0,0,1,0,0,0,2,245,370,48,53,196,314,1,0,0,1,0,0,0,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,9,698,313,385,69,69,242,316,1,0,0,0,0,0,1,0,311,383,69,69,240,314,1,0,0,0,0,0,1,0,2,2,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,10,807,393,414,100,74,290,338,1,1,0,0,0,0,2,1,391,412,99,73,289,337,1,1,0,0,0,0,2,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,11,707,334,373,86,82,246,291,2,0,0,0,0,0,0,0,332,371,86,80,244,291,2,0,0,0,0,0,0,0,2,2,0,2,2,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,12,479,198,281,65,78,132,198,1,2,0,0,0,0,0,3,197,280,65,77,131,198,1,2,0,0,0,0,0,3,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,13,436,214,222,77,61,136,161,0,0,0,0,0,0,1,0,214,220,77,61,136,159,0,0,0,0,0,0,1,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,14,389,186,203,61,65,124,138,0,0,0,0,0,0,1,0,186,202,61,65,124,137,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,15,365,169,196,57,57,112,139,0,0,0,0,0,0,0,0,169,196,57,57,112,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,16,317,131,186,40,55,90,131,0,0,0,0,0,0,1,0,131,186,40,55,90,131,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,17,178,65,113,23,33,42,80,0,0,0,0,0,0,0,0,65,113,23,33,42,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,18,214,60,154,8,36,52,118,0,0,0,0,0,0,0,0,59,153,8,36,51,117,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,99,9893,4684,5209,958,928,3706,4261,6,5,4,6,0,0,10,9,4660,5181,954,923,3686,4238,6,5,4,6,0,0,10,9,24,28,4,5,20,23,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,0,129,63,66,8,4,54,62,0,0,0,0,0,0,1,0,63,65,8,4,54,61,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,1,545,284,261,48,25,236,234,0,0,0,1,0,0,0,1,283,260,47,25,236,233,0,0,0,1,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,2,770,405,365,40,25,363,337,0,1,0,1,0,0,2,1,400,361,40,24,358,334,0,1,0,1,0,0,2,1,5,4,0,1,5,3,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,3,791,426,365,31,46,394,317,0,1,0,0,0,0,1,1,422,361,31,45,390,314,0,1,0,0,0,0,1,1,4,4,0,1,4,3,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,4,770,425,345,52,34,372,309,0,0,0,0,0,0,1,2,422,340,50,32,371,306,0,0,0,0,0,0,1,2,3,5,2,2,1,3,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,5,628,312,316,39,29,273,287,0,0,0,0,0,0,0,0,311,315,39,28,272,287,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,6,503,220,283,31,38,189,243,0,0,0,2,0,0,0,0,219,281,30,38,189,241,0,0,0,2,0,0,0,0,1,2,1,0,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,7,477,214,263,56,47,154,216,0,0,4,0,0,0,0,0,213,260,55,46,154,214,0,0,4,0,0,0,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,8,560,241,319,46,56,194,260,1,0,0,1,0,0,0,2,240,318,46,56,193,259,1,0,0,1,0,0,0,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,9,703,300,403,71,61,227,340,1,1,0,1,0,0,1,0,298,400,71,60,225,338,1,1,0,1,0,0,1,0,2,3,0,1,2,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,10,824,400,424,105,90,292,331,1,1,0,0,0,0,2,2,398,421,104,89,291,330,1,1,0,0,0,0,2,1,2,3,1,1,1,1,0,0,0,0,0,0,0,1 -050,01,063,Alabama,Greene County,5,11,706,334,372,84,74,248,298,2,0,0,0,0,0,0,0,332,370,84,72,246,298,2,0,0,0,0,0,0,0,2,2,0,2,2,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,12,522,217,305,62,80,153,221,1,1,0,0,0,0,1,3,216,304,62,79,152,221,1,1,0,0,0,0,1,3,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,13,455,232,223,95,68,136,155,0,0,0,0,0,0,1,0,232,221,95,68,136,153,0,0,0,0,0,0,1,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,14,372,171,201,50,59,120,142,0,0,0,0,0,0,1,0,171,200,50,59,120,141,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,15,356,164,192,60,49,104,143,0,0,0,0,0,0,0,0,164,192,60,49,104,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,16,319,135,184,38,67,96,117,0,0,0,0,0,0,1,0,135,183,38,67,96,116,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,17,190,72,118,28,33,43,85,1,0,0,0,0,0,0,0,72,118,28,33,43,85,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,18,185,47,138,6,31,41,107,0,0,0,0,0,0,0,0,46,137,6,31,40,106,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,99,9805,4662,5143,950,916,3689,4204,7,5,4,6,0,0,12,12,4637,5107,944,905,3670,4180,7,5,4,6,0,0,12,11,25,36,6,11,19,24,0,0,0,0,0,0,0,1 -050,01,063,Alabama,Greene County,6,0,148,83,65,9,3,73,62,0,0,0,0,0,0,1,0,83,64,9,3,73,61,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,1,519,256,263,49,33,207,227,0,0,0,1,0,0,0,2,255,262,48,33,207,226,0,0,0,1,0,0,0,2,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,2,757,395,362,35,24,357,335,0,1,0,1,0,0,3,1,390,358,35,23,352,332,0,1,0,1,0,0,3,1,5,4,0,1,5,3,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,3,782,439,343,32,31,406,309,0,1,0,0,0,0,1,2,436,339,32,30,403,306,0,1,0,0,0,0,1,2,3,4,0,1,3,3,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,4,729,399,330,44,32,354,297,0,0,0,0,0,0,1,1,396,325,42,30,353,294,0,0,0,0,0,0,1,1,3,5,2,2,1,3,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,5,645,320,325,43,27,277,298,0,0,0,0,0,0,0,0,319,324,43,26,276,298,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,6,464,207,257,30,36,177,219,0,0,0,2,0,0,0,0,206,255,29,36,177,217,0,0,0,2,0,0,0,0,1,2,1,0,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,7,470,220,250,50,35,166,214,0,0,4,0,0,0,0,1,219,247,49,34,166,212,0,0,4,0,0,0,0,1,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,8,533,231,302,42,46,188,255,1,0,0,1,0,0,0,0,230,301,42,46,187,254,1,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,9,654,292,362,66,65,224,295,1,1,0,1,0,0,1,0,290,359,66,64,222,293,1,1,0,1,0,0,1,0,2,3,0,1,2,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,10,829,389,440,116,84,270,353,1,1,0,0,0,0,2,2,387,437,115,83,269,352,1,1,0,0,0,0,2,1,2,3,1,1,1,1,0,0,0,0,0,0,0,1 -050,01,063,Alabama,Greene County,6,11,755,364,391,91,80,271,311,2,0,0,0,0,0,0,0,362,389,91,78,269,311,2,0,0,0,0,0,0,0,2,2,0,2,2,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,12,547,232,315,59,73,171,238,1,1,0,0,0,0,1,3,231,314,59,72,170,238,1,1,0,0,0,0,1,3,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,13,460,229,231,82,78,146,153,0,0,0,0,0,0,1,0,229,229,82,78,146,151,0,0,0,0,0,0,1,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,14,369,170,199,49,53,120,146,0,0,0,0,0,0,1,0,170,199,49,53,120,146,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,15,334,155,179,56,49,99,130,0,0,0,0,0,0,0,0,155,179,56,49,99,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,16,335,143,192,41,68,101,124,0,0,0,0,0,0,1,0,143,192,41,68,101,124,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,17,185,65,120,22,30,43,89,0,0,0,0,0,0,0,1,65,120,22,30,43,89,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,18,171,37,134,9,34,28,100,0,0,0,0,0,0,0,0,36,133,9,34,27,99,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,99,9686,4626,5060,925,881,3678,4155,6,5,4,6,0,0,13,13,4602,5026,919,870,3660,4133,6,5,4,6,0,0,13,12,24,34,6,11,18,22,0,0,0,0,0,0,0,1 -050,01,063,Alabama,Greene County,7,0,99,52,47,9,6,41,41,0,0,0,0,0,0,2,0,52,47,9,6,41,41,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,1,539,282,257,47,31,233,224,0,0,1,0,0,0,1,2,280,255,45,30,233,223,0,0,1,0,0,0,1,2,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,2,731,384,347,38,24,344,321,0,0,0,0,0,0,2,2,380,340,35,21,343,317,0,0,0,0,0,0,2,2,4,7,3,3,1,4,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,3,753,420,333,38,27,382,304,0,0,0,0,0,0,0,2,415,330,36,26,379,302,0,0,0,0,0,0,0,2,5,3,2,1,3,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,4,755,425,330,44,38,380,292,0,0,0,0,0,0,1,0,421,327,42,36,378,291,0,0,0,0,0,0,1,0,4,3,2,2,2,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,5,630,302,328,49,34,252,292,1,0,0,0,0,0,0,2,300,327,48,33,252,292,0,0,0,0,0,0,0,2,2,1,1,1,0,0,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,6,479,233,246,36,35,196,207,1,0,0,3,0,0,0,1,230,244,34,34,196,206,0,0,0,3,0,0,0,1,3,2,2,1,0,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,7,486,217,269,53,41,161,226,0,1,3,0,0,0,0,1,216,268,52,41,161,225,0,1,3,0,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,8,498,226,272,47,46,179,225,0,0,0,1,0,0,0,0,226,270,47,46,179,223,0,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,9,640,268,372,50,63,216,307,1,1,1,1,0,0,0,0,266,368,50,62,215,304,0,1,1,1,0,0,0,0,2,4,0,1,1,3,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,10,787,349,438,94,82,254,350,0,3,0,0,0,0,1,3,347,435,93,81,253,349,0,3,0,0,0,0,1,2,2,3,1,1,1,1,0,0,0,0,0,0,0,1 -050,01,063,Alabama,Greene County,7,11,809,413,396,111,89,300,306,1,1,1,0,0,0,0,0,412,394,111,87,299,306,1,1,1,0,0,0,0,0,1,2,0,2,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,12,599,265,334,71,75,191,257,0,1,0,0,0,0,3,1,264,333,71,74,190,257,0,1,0,0,0,0,3,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,13,432,194,238,62,73,131,164,1,0,0,0,0,0,0,1,194,237,62,73,131,163,1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,14,376,170,206,48,63,122,143,0,0,0,0,0,0,0,0,170,205,48,63,122,142,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,15,358,176,182,63,47,113,135,0,0,0,0,0,0,0,0,176,181,63,47,113,134,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,16,327,139,188,42,70,96,118,0,0,0,0,0,0,1,0,139,188,42,70,96,118,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,17,199,91,108,29,25,62,83,0,0,0,0,0,0,0,0,91,108,29,25,62,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,18,178,43,135,9,36,34,99,0,0,0,0,0,0,0,0,43,133,9,35,34,98,0,0,0,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,99,9675,4649,5026,940,905,3687,4094,5,7,6,5,0,0,11,15,4622,4990,926,890,3677,4074,2,7,6,5,0,0,11,14,27,36,14,15,10,20,3,0,0,0,0,0,0,1 -050,01,063,Alabama,Greene County,8,0,129,70,59,9,2,60,57,0,0,0,0,0,0,1,0,70,59,9,2,60,57,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,1,479,239,240,44,31,193,205,0,0,1,1,0,0,1,3,237,237,42,30,193,203,0,0,1,1,0,0,1,3,2,3,2,1,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,2,663,345,318,37,20,305,295,0,0,0,0,0,0,3,3,341,311,34,17,304,291,0,0,0,0,0,0,3,3,4,7,3,3,1,4,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,3,689,383,306,29,28,353,276,0,0,0,0,0,0,1,2,378,303,27,27,350,274,0,0,0,0,0,0,1,2,5,3,2,1,3,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,4,743,409,334,38,41,370,292,0,0,0,0,0,0,1,1,405,331,36,39,368,291,0,0,0,0,0,0,1,1,4,3,2,2,2,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,5,566,279,287,42,26,236,259,1,0,0,0,0,0,0,2,277,286,41,25,236,259,0,0,0,0,0,0,0,2,2,1,1,1,0,0,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,6,465,238,227,38,26,197,197,3,0,0,3,0,0,0,1,234,225,36,25,197,196,1,0,0,3,0,0,0,1,4,2,2,1,0,1,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,7,447,197,250,51,42,142,206,0,1,4,0,0,0,0,1,196,249,50,42,142,205,0,1,4,0,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,8,489,223,266,53,51,168,214,2,0,0,1,0,0,0,0,222,265,53,51,168,213,1,0,0,1,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,9,603,253,350,47,54,203,294,1,1,1,1,0,0,1,0,251,346,47,53,202,291,0,1,1,1,0,0,1,0,2,4,0,1,1,3,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,10,725,323,402,83,82,238,316,2,2,0,0,0,0,0,2,318,400,82,81,236,315,0,2,0,0,0,0,0,2,5,2,1,1,2,1,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,11,801,401,400,95,87,304,311,0,1,1,0,0,0,1,1,400,399,95,86,303,311,0,1,1,0,0,0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,12,644,282,362,80,79,199,281,0,1,0,0,0,0,3,1,282,361,80,78,199,281,0,1,0,0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,13,449,197,252,63,74,133,177,1,0,0,0,0,0,0,1,196,251,62,73,133,177,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,14,418,196,222,56,65,140,154,0,2,0,1,0,0,0,0,196,222,56,65,140,154,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,15,354,181,173,60,46,120,127,0,0,1,0,0,0,0,0,181,172,60,46,120,126,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,16,304,135,169,40,69,95,100,0,0,0,0,0,0,0,0,135,168,40,69,95,99,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,17,204,83,121,30,33,53,87,0,0,0,0,0,0,0,1,83,121,30,33,53,87,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,18,189,48,141,10,33,38,107,0,0,0,0,0,0,0,1,48,139,10,32,38,106,0,0,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,99,9361,4482,4879,905,889,3547,3955,10,8,8,7,0,0,12,20,4450,4845,890,874,3537,3936,3,8,8,7,0,0,12,20,32,34,15,15,10,19,7,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,0,135,71,64,10,7,60,57,0,0,0,0,0,0,1,0,71,64,10,7,60,57,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,1,508,275,233,47,22,226,207,0,0,1,1,0,0,1,3,273,230,45,21,226,205,0,0,1,1,0,0,1,3,2,3,2,1,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,2,651,334,317,40,20,291,294,0,0,0,0,0,0,3,3,331,310,37,17,291,290,0,0,0,0,0,0,3,3,3,7,3,3,0,4,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,3,665,384,281,29,21,354,258,0,0,0,0,0,0,1,2,379,278,27,20,351,256,0,0,0,0,0,0,1,2,5,3,2,1,3,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,4,773,390,383,27,43,362,339,0,0,0,0,0,0,1,1,386,380,25,41,360,338,0,0,0,0,0,0,1,1,4,3,2,2,2,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,5,562,286,276,47,26,238,247,1,0,0,0,0,0,0,3,284,275,46,25,238,247,0,0,0,0,0,0,0,3,2,1,1,1,0,0,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,6,505,254,251,37,30,214,218,3,0,0,2,0,0,0,1,250,249,35,29,214,217,1,0,0,2,0,0,0,1,4,2,2,1,0,1,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,7,444,209,235,45,28,160,205,0,1,4,0,0,0,0,1,208,234,44,28,160,204,0,1,4,0,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,8,434,192,242,51,49,139,192,2,0,0,1,0,0,0,0,191,241,51,49,139,191,1,0,0,1,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,9,582,228,354,43,46,182,306,1,1,1,1,0,0,1,0,226,349,43,44,181,303,0,1,1,1,0,0,1,0,2,5,0,2,1,3,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,10,683,320,363,67,74,251,285,2,2,0,0,0,0,0,2,315,361,66,73,249,284,0,2,0,0,0,0,0,2,5,2,1,1,2,1,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,11,796,377,419,102,78,273,339,0,1,1,0,0,0,1,1,376,418,102,77,272,339,0,1,1,0,0,0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,12,709,323,386,82,88,238,296,0,1,0,0,0,0,3,1,323,385,82,87,238,296,0,1,0,0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,13,478,194,284,69,84,124,199,1,0,0,0,0,0,0,1,193,283,68,83,124,199,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,14,404,199,205,60,54,139,148,0,2,0,1,0,0,0,0,198,205,60,54,138,148,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,15,345,183,162,57,44,125,118,0,0,1,0,0,0,0,0,183,161,57,44,125,117,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,16,295,128,167,40,56,88,111,0,0,0,0,0,0,0,0,128,166,40,56,88,110,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,17,244,103,141,32,37,71,103,0,0,0,0,0,0,0,1,103,141,32,37,71,103,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,18,172,39,133,10,31,29,101,0,0,0,0,0,0,0,1,39,131,10,30,29,100,0,0,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,99,9385,4489,4896,895,838,3564,4023,10,8,8,6,0,0,12,21,4457,4861,880,822,3554,4004,3,8,8,6,0,0,12,21,32,35,15,16,10,19,7,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,0,123,61,62,10,8,50,54,0,0,0,0,0,0,1,0,61,62,10,8,50,54,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,1,519,263,256,40,26,221,225,0,0,1,1,0,0,1,4,260,253,37,25,221,223,0,0,1,1,0,0,1,4,3,3,3,1,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,2,633,333,300,42,22,288,274,0,0,0,0,0,0,3,4,330,293,39,18,288,271,0,0,0,0,0,0,3,4,3,7,3,4,0,3,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,3,656,381,275,36,19,344,254,0,0,0,0,0,0,1,2,378,273,34,17,343,254,0,0,0,0,0,0,1,2,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,4,755,400,355,29,46,370,308,0,0,0,0,0,0,1,1,397,351,27,42,369,308,0,0,0,0,0,0,1,1,3,4,2,4,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,5,546,271,275,39,30,231,242,1,0,0,0,0,0,0,3,269,273,38,28,231,242,0,0,0,0,0,0,0,3,2,2,1,2,0,0,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,6,501,257,244,29,27,225,214,3,0,0,2,0,0,0,1,252,242,26,26,225,213,1,0,0,2,0,0,0,1,5,2,3,1,0,1,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,7,432,194,238,28,27,162,209,0,1,4,0,0,0,0,1,193,237,27,27,162,208,0,1,4,0,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,8,423,198,225,56,44,140,180,2,0,0,1,0,0,0,0,197,224,56,44,140,179,1,0,0,1,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,9,572,235,337,44,66,188,267,1,2,1,2,0,0,1,0,234,332,44,64,188,264,0,2,1,2,0,0,1,0,1,5,0,2,0,3,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,10,687,315,372,71,64,242,303,2,2,0,0,0,0,0,3,310,369,70,63,240,302,0,2,0,0,0,0,0,2,5,3,1,1,2,1,2,0,0,0,0,0,0,1 -050,01,063,Alabama,Greene County,10,11,831,391,440,108,97,281,341,0,1,1,0,0,0,1,1,390,439,108,96,280,341,0,1,1,0,0,0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,12,722,338,384,81,90,254,293,0,0,0,0,0,0,3,1,338,383,81,89,254,293,0,0,0,0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,13,534,222,312,65,84,156,227,1,0,0,0,0,0,0,1,221,311,64,83,156,227,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,14,399,185,214,52,59,133,152,0,2,0,1,0,0,0,0,184,214,52,59,132,152,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,15,356,184,172,49,49,134,123,0,0,1,0,0,0,0,0,184,171,49,49,134,122,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,16,282,123,159,42,43,81,116,0,0,0,0,0,0,0,0,123,158,42,43,81,115,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,17,222,107,115,30,42,77,72,0,0,0,0,0,0,0,1,107,115,30,42,77,72,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,18,166,36,130,12,29,24,100,0,0,0,0,0,0,0,1,36,128,12,28,24,99,0,0,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,99,9359,4494,4865,863,872,3601,3954,10,8,8,7,0,0,12,24,4464,4828,846,851,3595,3939,3,8,8,7,0,0,12,23,30,37,17,21,6,15,7,0,0,0,0,0,0,1 -050,01,063,Alabama,Greene County,11,0,114,66,48,11,6,54,42,0,0,0,0,0,0,1,0,66,48,11,6,54,42,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,1,447,205,242,32,22,171,215,0,0,1,1,0,0,1,4,202,238,29,21,171,212,0,0,1,1,0,0,1,4,3,4,3,1,0,3,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,2,620,331,289,46,20,282,265,0,0,0,0,0,0,3,4,328,281,43,16,282,261,0,0,0,0,0,0,3,4,3,8,3,4,0,4,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,3,634,345,289,32,22,312,265,0,0,0,0,0,0,1,2,342,287,30,20,311,265,0,0,0,0,0,0,1,2,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,4,757,404,353,34,42,369,310,0,0,0,0,0,0,1,1,401,349,32,38,368,310,0,0,0,0,0,0,1,1,3,4,2,4,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,5,528,263,265,34,27,228,235,1,0,0,0,0,0,0,3,261,263,33,25,228,235,0,0,0,0,0,0,0,3,2,2,1,2,0,0,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,6,488,238,250,27,23,208,224,3,0,0,2,0,0,0,1,233,248,24,22,208,223,1,0,0,2,0,0,0,1,5,2,3,1,0,1,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,7,431,199,232,32,29,163,201,0,1,4,0,0,0,0,1,198,231,31,29,163,200,0,1,4,0,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,8,435,222,213,45,37,175,175,2,0,0,1,0,0,0,0,221,212,45,37,175,174,1,0,0,1,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,9,523,225,298,41,43,181,251,1,2,1,2,0,0,1,0,224,293,41,41,181,248,0,2,1,2,0,0,1,0,1,5,0,2,0,3,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,10,635,295,340,65,59,228,276,2,2,0,0,0,0,0,3,290,337,64,58,226,275,0,2,0,0,0,0,0,2,5,3,1,1,2,1,2,0,0,0,0,0,0,1 -050,01,063,Alabama,Greene County,11,11,806,374,432,113,86,259,344,0,1,1,0,0,0,1,1,373,431,113,85,258,344,0,1,1,0,0,0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,12,745,344,401,79,94,261,306,0,0,0,0,0,0,4,1,344,400,79,93,261,306,0,0,0,0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,13,558,248,310,61,76,186,233,1,0,0,0,0,0,0,1,247,309,60,75,186,233,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,14,434,203,231,62,68,141,160,0,2,0,1,0,0,0,0,202,231,62,68,140,160,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,15,330,167,163,36,49,130,114,0,0,1,0,0,0,0,0,167,162,36,49,130,113,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,16,259,105,154,40,48,65,106,0,0,0,0,0,0,0,0,105,153,40,48,65,105,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,17,262,111,151,35,45,76,105,0,0,0,0,0,0,0,1,111,151,35,45,76,105,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,18,176,41,135,13,30,28,104,0,0,0,0,0,0,0,1,41,133,13,29,28,103,0,0,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,99,9182,4386,4796,838,826,3517,3931,10,8,8,7,0,0,13,24,4356,4757,821,805,3511,3914,3,8,8,7,0,0,13,23,30,39,17,21,6,17,7,0,0,0,0,0,0,1 -050,01,063,Alabama,Greene County,12,0,106,59,47,11,5,47,42,0,0,0,0,0,0,1,0,59,47,11,5,47,42,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,1,449,218,231,33,21,183,205,0,0,1,1,0,0,1,4,215,227,30,20,183,202,0,0,1,1,0,0,1,4,3,4,3,1,0,3,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,2,584,304,280,39,20,262,256,0,0,0,0,0,0,3,4,301,272,36,16,262,252,0,0,0,0,0,0,3,4,3,8,3,4,0,4,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,3,632,337,295,33,24,303,269,0,0,0,0,0,0,1,2,334,293,31,22,302,269,0,0,0,0,0,0,1,2,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,4,738,398,340,36,34,360,305,0,0,0,0,0,0,2,1,395,336,34,30,359,305,0,0,0,0,0,0,2,1,3,4,2,4,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,5,506,250,256,32,24,217,229,1,0,0,0,0,0,0,3,248,254,31,22,217,229,0,0,0,0,0,0,0,3,2,2,1,2,0,0,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,6,494,228,266,29,24,196,239,3,0,0,2,0,0,0,1,223,264,26,23,196,238,1,0,0,2,0,0,0,1,5,2,3,1,0,1,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,7,409,192,217,25,21,163,194,0,1,4,0,0,0,0,1,191,216,24,21,163,193,0,1,4,0,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,8,449,218,231,48,36,168,194,2,0,0,1,0,0,0,0,217,230,48,36,168,193,1,0,0,1,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,9,477,207,270,49,42,155,224,1,2,1,2,0,0,1,0,206,265,49,40,155,221,0,2,1,2,0,0,1,0,1,5,0,2,0,3,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,10,613,262,351,52,52,208,294,2,2,0,0,0,0,0,3,257,348,51,51,206,293,0,2,0,0,0,0,0,2,5,3,1,1,2,1,2,0,0,0,0,0,0,1 -050,01,063,Alabama,Greene County,12,11,774,347,427,94,91,251,334,0,1,1,0,0,0,1,1,346,426,94,90,250,334,0,1,1,0,0,0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,12,768,367,401,83,85,280,315,0,0,0,0,0,0,4,1,367,400,83,84,280,315,0,0,0,0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,13,592,270,322,69,76,200,245,1,0,0,0,0,0,0,1,269,321,68,75,200,245,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,14,418,188,230,56,63,132,164,0,2,0,1,0,0,0,0,187,230,56,63,131,164,0,2,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,15,341,166,175,47,51,118,124,0,0,1,0,0,0,0,0,166,174,47,51,118,123,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,16,255,102,153,35,43,67,110,0,0,0,0,0,0,0,0,102,152,35,43,67,109,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,17,243,98,145,34,43,64,101,0,0,0,0,0,0,0,1,98,145,34,43,64,101,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,18,197,60,137,13,28,47,108,0,0,0,0,0,0,0,1,60,135,13,27,47,107,0,0,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,99,9045,4271,4774,818,783,3421,3952,10,8,8,7,0,0,14,24,4241,4735,801,762,3415,3935,3,8,8,7,0,0,14,23,30,39,17,21,6,17,7,0,0,0,0,0,0,1 -050,01,063,Alabama,Greene County,13,0,107,58,49,10,6,46,42,0,0,1,0,0,0,1,1,58,48,10,5,46,42,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,1,444,218,226,31,20,183,201,2,2,0,0,0,0,2,3,213,222,29,17,181,200,1,2,0,0,0,0,2,3,5,4,2,3,2,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,2,570,296,274,34,16,260,256,0,0,0,1,0,0,2,1,296,268,34,15,260,251,0,0,0,1,0,0,2,1,0,6,0,1,0,5,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,3,628,337,291,31,21,300,268,3,1,0,0,0,0,3,1,333,289,29,20,298,267,3,1,0,0,0,0,3,1,4,2,2,1,2,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,4,735,398,337,35,31,353,300,4,3,1,0,0,0,5,3,395,334,33,28,352,300,4,3,1,0,0,0,5,3,3,3,2,3,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,5,505,249,256,30,20,214,230,1,2,0,2,1,0,3,2,247,255,29,19,214,230,1,2,0,2,0,0,3,2,2,1,1,1,0,0,0,0,0,0,1,0,0,0 -050,01,063,Alabama,Greene County,13,6,489,227,262,27,22,197,236,2,0,0,2,1,0,0,2,222,261,24,21,196,236,2,0,0,2,0,0,0,2,5,1,3,1,1,0,0,0,0,0,1,0,0,0 -050,01,063,Alabama,Greene County,13,7,418,195,223,24,23,163,195,2,1,6,2,0,0,0,2,193,221,23,22,163,194,1,1,6,2,0,0,0,2,2,2,1,1,0,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,8,448,220,228,46,36,167,190,5,1,0,0,0,0,2,1,217,227,45,35,167,190,3,1,0,0,0,0,2,1,3,1,1,1,0,0,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,9,469,203,266,49,38,150,220,1,3,1,3,0,0,2,2,203,262,49,37,150,217,1,3,1,3,0,0,2,2,0,4,0,1,0,3,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,10,606,261,345,49,50,205,291,3,1,0,2,0,0,4,1,259,344,49,49,204,291,2,1,0,2,0,0,4,1,2,1,0,1,1,0,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,11,773,348,425,93,89,251,334,2,1,0,0,0,0,2,1,346,424,92,88,250,334,2,1,0,0,0,0,2,1,2,1,1,1,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,12,772,366,406,83,85,280,317,1,1,0,0,0,0,2,3,366,405,83,84,280,317,1,1,0,0,0,0,2,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,13,594,271,323,70,76,198,244,2,0,0,0,0,0,1,3,269,322,68,75,198,244,2,0,0,0,0,0,1,3,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,14,409,184,225,56,62,127,160,1,1,0,1,0,0,0,1,184,225,56,62,127,160,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,15,336,164,172,47,48,117,121,0,1,0,0,0,0,0,2,163,171,46,47,117,121,0,1,0,0,0,0,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,16,252,101,151,35,42,66,107,0,1,0,0,0,0,0,1,101,151,35,42,66,107,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,17,237,95,142,31,41,64,100,0,0,0,0,0,0,0,1,95,142,31,41,64,100,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,18,195,60,135,13,28,47,107,0,0,0,0,0,0,0,0,60,134,13,27,47,107,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,99,8987,4251,4736,794,754,3388,3919,29,19,9,13,2,0,29,31,4220,4705,778,734,3380,3908,24,19,9,13,0,0,29,31,31,31,16,20,8,11,5,0,0,0,2,0,0,0 -050,01,065,Alabama,Hale County,1,0,304,155,149,51,43,102,104,0,1,1,0,0,0,1,1,152,149,49,43,102,104,0,1,0,0,0,0,1,1,3,0,2,0,0,0,0,0,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,1,1104,542,562,168,193,365,359,1,2,1,0,0,0,7,8,539,557,168,191,362,357,1,2,1,0,0,0,7,7,3,5,0,2,3,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,1,2,1378,709,669,220,204,486,456,2,2,0,0,0,2,1,5,702,661,216,199,483,454,2,2,0,0,0,2,1,4,7,8,4,5,3,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,1,3,1450,755,695,269,204,478,485,5,1,0,2,0,0,3,3,749,690,264,203,477,483,5,1,0,2,0,0,3,1,6,5,5,1,1,2,0,0,0,0,0,0,0,2 -050,01,065,Alabama,Hale County,1,4,1416,735,681,226,196,502,480,0,1,0,0,0,0,7,4,729,675,223,194,500,478,0,1,0,0,0,0,6,2,6,6,3,2,2,2,0,0,0,0,0,0,1,2 -050,01,065,Alabama,Hale County,1,5,1210,669,541,210,158,456,381,1,0,0,0,0,0,2,2,665,532,207,153,455,378,1,0,0,0,0,0,2,1,4,9,3,5,1,3,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,1,6,1263,699,564,247,197,448,362,1,1,2,2,0,0,1,2,689,561,240,197,446,359,1,1,1,2,0,0,1,2,10,3,7,0,2,3,0,0,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,7,1210,625,585,248,230,376,348,1,1,0,2,0,1,0,3,617,578,240,226,376,346,1,1,0,2,0,1,0,2,8,7,8,4,0,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,1,8,1446,773,673,353,255,411,414,2,0,3,0,1,0,3,4,766,664,347,250,410,411,2,0,3,0,1,0,3,3,7,9,6,5,1,3,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,1,9,1395,715,680,331,229,381,442,1,3,2,1,0,0,0,5,710,676,328,228,379,439,1,3,2,1,0,0,0,5,5,4,3,1,2,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,10,1238,651,587,270,229,378,355,2,0,0,0,0,0,1,3,645,584,266,227,376,354,2,0,0,0,0,0,1,3,6,3,4,2,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,11,1050,549,501,275,251,271,246,1,1,2,3,0,0,0,0,547,499,275,250,269,245,1,1,2,3,0,0,0,0,2,2,0,1,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,12,810,404,406,232,224,169,181,0,0,0,0,0,0,3,1,399,403,229,221,168,181,0,0,0,0,0,0,2,1,5,3,3,3,1,0,0,0,0,0,0,0,1,0 -050,01,065,Alabama,Hale County,1,13,672,291,381,169,182,122,193,0,1,0,4,0,0,0,1,290,378,168,180,122,193,0,1,0,4,0,0,0,0,1,3,1,2,0,0,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,1,14,615,297,318,168,153,129,165,0,0,0,0,0,0,0,0,296,314,168,152,128,162,0,0,0,0,0,0,0,0,1,4,0,1,1,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,15,581,242,339,109,171,133,163,0,0,0,2,0,0,0,3,239,337,109,171,130,161,0,0,0,2,0,0,0,3,3,2,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,16,457,180,277,94,144,85,133,0,0,0,0,0,0,1,0,177,276,94,144,82,132,0,0,0,0,0,0,1,0,3,1,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,17,331,125,206,72,108,52,96,0,0,0,0,0,0,1,2,124,204,72,108,51,94,0,0,0,0,0,0,1,2,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,18,340,85,255,32,128,53,126,0,0,0,0,0,0,0,1,85,251,32,126,53,124,0,0,0,0,0,0,0,1,0,4,0,2,0,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,99,18270,9201,9069,3744,3499,5397,5489,17,14,11,16,1,3,31,48,9120,8989,3695,3463,5369,5455,17,14,9,16,1,3,29,38,81,80,49,36,28,34,0,0,2,0,0,0,2,10 -050,01,065,Alabama,Hale County,2,0,306,156,150,51,43,103,105,0,1,1,0,0,0,1,1,153,150,49,43,103,105,0,1,0,0,0,0,1,1,3,0,2,0,0,0,0,0,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,1,1098,539,559,167,191,363,358,1,2,1,0,0,0,7,8,536,554,167,189,360,356,1,2,1,0,0,0,7,7,3,5,0,2,3,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,2,2,1363,701,662,214,200,484,453,2,2,0,0,0,2,1,5,694,654,210,195,481,451,2,2,0,0,0,2,1,4,7,8,4,5,3,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,2,3,1458,759,699,267,203,484,490,5,1,0,2,0,0,3,3,753,694,262,202,483,488,5,1,0,2,0,0,3,1,6,5,5,1,1,2,0,0,0,0,0,0,0,2 -050,01,065,Alabama,Hale County,2,4,1413,734,679,222,193,505,481,0,1,0,0,0,0,7,4,728,673,219,191,503,479,0,1,0,0,0,0,6,2,6,6,3,2,2,2,0,0,0,0,0,0,1,2 -050,01,065,Alabama,Hale County,2,5,1204,662,542,208,158,451,382,1,0,0,0,0,0,2,2,658,533,205,153,450,379,1,0,0,0,0,0,2,1,4,9,3,5,1,3,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,2,6,1237,679,558,241,194,434,359,1,1,2,2,0,0,1,2,669,555,234,194,432,356,1,1,1,2,0,0,1,2,10,3,7,0,2,3,0,0,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,7,1197,615,582,245,228,369,347,1,1,0,2,0,1,0,3,607,575,237,224,369,345,1,1,0,2,0,1,0,2,8,7,8,4,0,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,2,8,1429,760,669,348,253,403,412,2,0,3,0,1,0,3,4,753,660,342,248,402,409,2,0,3,0,1,0,3,3,7,9,6,5,1,3,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,2,9,1390,707,683,326,230,378,444,1,3,2,1,0,0,0,5,702,679,323,229,376,441,1,3,2,1,0,0,0,5,5,4,3,1,2,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,10,1241,650,591,271,231,376,357,2,0,0,0,0,0,1,3,644,588,267,229,374,356,2,0,0,0,0,0,1,3,6,3,4,2,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,11,1063,555,508,278,254,274,250,1,1,2,3,0,0,0,0,553,506,278,253,272,249,1,1,2,3,0,0,0,0,2,2,0,1,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,12,812,405,407,233,225,169,181,0,0,0,0,0,0,3,1,400,404,230,222,168,181,0,0,0,0,0,0,2,1,5,3,3,3,1,0,0,0,0,0,0,0,1,0 -050,01,065,Alabama,Hale County,2,13,672,291,381,169,182,122,193,0,1,0,4,0,0,0,1,290,378,168,180,122,193,0,1,0,4,0,0,0,0,1,3,1,2,0,0,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,2,14,610,294,316,166,152,128,164,0,0,0,0,0,0,0,0,293,312,166,151,127,161,0,0,0,0,0,0,0,0,1,4,0,1,1,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,15,580,242,338,109,170,133,163,0,0,0,2,0,0,0,3,239,336,109,170,130,161,0,0,0,2,0,0,0,3,3,2,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,16,456,180,276,94,142,85,134,0,0,0,0,0,0,1,0,177,275,94,142,82,133,0,0,0,0,0,0,1,0,3,1,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,17,330,125,205,72,107,52,96,0,0,0,0,0,0,1,2,124,203,72,107,51,94,0,0,0,0,0,0,1,2,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,18,335,84,251,32,126,52,124,0,0,0,0,0,0,0,1,84,247,32,124,52,122,0,0,0,0,0,0,0,1,0,4,0,2,0,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,99,18194,9138,9056,3713,3482,5365,5493,17,14,11,16,1,3,31,48,9057,8976,3664,3446,5337,5459,17,14,9,16,1,3,29,38,81,80,49,36,28,34,0,0,2,0,0,0,2,10 -050,01,065,Alabama,Hale County,3,0,264,141,123,40,48,99,73,0,1,1,0,0,0,1,1,138,123,38,48,99,73,0,1,0,0,0,0,1,1,3,0,2,0,0,0,0,0,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,1,1105,544,561,173,188,362,363,1,2,1,0,0,0,7,8,540,556,171,186,360,361,1,2,1,0,0,0,7,7,4,5,2,2,2,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,3,2,1387,709,678,202,200,505,469,1,2,0,0,0,2,1,5,701,671,198,196,501,467,1,2,0,0,0,2,1,4,8,7,4,4,4,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,3,3,1436,710,726,247,214,456,506,4,1,0,2,0,0,3,3,704,721,242,213,455,504,4,1,0,2,0,0,3,1,6,5,5,1,1,2,0,0,0,0,0,0,0,2 -050,01,065,Alabama,Hale County,3,4,1339,702,637,224,186,471,446,0,1,0,0,0,0,7,4,696,631,221,184,469,444,0,1,0,0,0,0,6,2,6,6,3,2,2,2,0,0,0,0,0,0,1,2 -050,01,065,Alabama,Hale County,3,5,1178,654,524,210,149,441,372,1,0,0,1,0,0,2,2,649,515,206,144,440,369,1,0,0,1,0,0,2,1,5,9,4,5,1,3,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,3,6,1170,630,540,227,183,399,352,1,1,2,2,0,0,1,2,620,537,220,183,397,349,1,1,1,2,0,0,1,2,10,3,7,0,2,3,0,0,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,7,1111,576,535,233,213,342,316,1,1,0,2,0,0,0,3,568,528,225,209,342,314,1,1,0,2,0,0,0,2,8,7,8,4,0,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,3,8,1331,677,654,314,252,354,398,2,0,3,0,1,0,3,4,670,645,308,247,353,395,2,0,3,0,1,0,3,3,7,9,6,5,1,3,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,3,9,1397,694,703,310,239,381,455,1,3,2,1,0,0,0,5,689,699,307,238,379,452,1,3,2,1,0,0,0,5,5,4,3,1,2,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,10,1251,652,599,288,227,361,369,2,0,0,0,0,0,1,3,646,596,284,225,359,368,2,0,0,0,0,0,1,3,6,3,4,2,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,11,1098,571,527,276,263,292,260,1,1,2,3,0,0,0,0,570,525,276,262,291,259,1,1,2,3,0,0,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,12,822,416,406,243,227,166,178,0,0,0,0,0,0,7,1,407,403,240,224,165,178,0,0,0,0,0,0,2,1,9,3,3,3,1,0,0,0,0,0,0,0,5,0 -050,01,065,Alabama,Hale County,3,13,678,305,373,166,186,139,182,0,1,0,3,0,0,0,1,304,371,165,185,139,182,0,1,0,3,0,0,0,0,1,2,1,1,0,0,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,3,14,620,285,335,164,163,121,172,0,0,0,0,0,0,0,0,285,331,164,162,121,169,0,0,0,0,0,0,0,0,0,4,0,1,0,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,15,591,247,344,115,170,132,169,0,0,0,2,0,0,0,3,245,342,115,170,130,167,0,0,0,2,0,0,0,3,2,2,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,16,465,171,294,89,145,81,149,0,0,0,0,0,0,1,0,168,293,89,145,78,148,0,0,0,0,0,0,1,0,3,1,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,17,300,126,174,70,91,55,81,0,0,0,0,0,0,1,2,125,172,70,91,54,79,0,0,0,0,0,0,1,2,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,18,325,80,245,33,122,47,122,0,0,0,0,0,0,0,1,80,241,33,120,47,120,0,0,0,0,0,0,0,1,0,4,0,2,0,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,99,17868,8890,8978,3624,3466,5204,5432,15,14,11,16,1,2,35,48,8805,8900,3572,3432,5179,5398,15,14,9,16,1,2,29,38,85,78,52,34,25,34,0,0,2,0,0,0,6,10 -050,01,065,Alabama,Hale County,4,0,232,125,107,53,27,70,78,0,1,1,0,0,0,1,1,122,107,51,27,70,78,0,1,0,0,0,0,1,1,3,0,2,0,0,0,0,0,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,1,1042,520,522,165,176,347,336,1,2,1,0,0,0,6,8,518,515,165,172,345,334,1,2,1,0,0,0,6,7,2,7,0,4,2,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,4,2,1259,627,632,183,193,442,432,1,2,0,0,0,1,1,4,621,626,180,189,439,431,1,2,0,0,0,1,1,3,6,6,3,4,3,1,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,4,3,1428,735,693,219,202,509,486,4,1,0,1,0,0,3,3,729,688,214,201,508,484,4,1,0,1,0,0,3,1,6,5,5,1,1,2,0,0,0,0,0,0,0,2 -050,01,065,Alabama,Hale County,4,4,1318,680,638,231,188,442,445,0,1,0,0,0,0,7,4,672,632,226,186,440,443,0,1,0,0,0,0,6,2,8,6,5,2,2,2,0,0,0,0,0,0,1,2 -050,01,065,Alabama,Hale County,4,5,1193,636,557,206,171,427,384,1,0,0,0,0,0,2,2,631,548,202,166,426,381,1,0,0,0,0,0,2,1,5,9,4,5,1,3,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,4,6,1089,578,511,209,168,365,338,1,1,2,2,0,0,1,2,569,508,203,168,363,335,1,1,1,2,0,0,1,2,9,3,6,0,2,3,0,0,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,7,1044,545,499,229,209,315,284,1,1,0,2,0,0,0,3,538,490,222,203,315,282,1,1,0,2,0,0,0,2,7,9,7,6,0,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,4,8,1224,615,609,281,217,326,388,2,0,2,0,1,0,3,4,610,602,277,213,325,386,2,0,2,0,1,0,3,3,5,7,4,4,1,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,4,9,1332,657,675,289,238,365,429,1,3,2,1,0,0,0,4,650,671,284,237,363,426,1,3,2,1,0,0,0,4,7,4,5,1,2,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,10,1252,628,624,276,228,350,393,1,0,0,0,0,0,1,3,622,621,272,226,348,392,1,0,0,0,0,0,1,3,6,3,4,2,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,11,1118,582,536,278,256,300,277,1,1,2,2,0,0,1,0,579,534,277,255,298,276,1,1,2,2,0,0,1,0,3,2,1,1,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,12,898,465,433,271,231,191,201,0,0,0,0,0,0,3,1,460,430,268,228,190,201,0,0,0,0,0,0,2,1,5,3,3,3,1,0,0,0,0,0,0,0,1,0 -050,01,065,Alabama,Hale County,4,13,691,302,389,171,199,131,185,0,1,0,3,0,0,0,1,301,387,170,198,131,185,0,1,0,3,0,0,0,0,1,2,1,1,0,0,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,4,14,613,281,332,170,166,111,166,0,0,0,0,0,0,0,0,280,328,170,165,110,163,0,0,0,0,0,0,0,0,1,4,0,1,1,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,15,586,259,327,119,165,140,157,0,0,0,2,0,0,0,3,258,325,119,165,139,155,0,0,0,2,0,0,0,3,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,16,459,167,292,93,144,73,148,0,0,0,0,0,0,1,0,164,292,93,144,70,148,0,0,0,0,0,0,1,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,17,295,124,171,68,87,55,82,0,0,0,0,0,0,1,2,123,169,68,87,54,80,0,0,0,0,0,0,1,2,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,18,303,75,228,35,117,40,110,0,0,0,0,0,0,0,1,75,225,35,115,40,109,0,0,0,0,0,0,0,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,99,17376,8601,8775,3546,3382,4999,5319,14,14,10,13,1,1,31,46,8522,8698,3496,3345,4974,5289,14,14,8,13,1,1,29,36,79,77,50,37,25,30,0,0,2,0,0,0,2,10 -050,01,065,Alabama,Hale County,5,0,226,103,123,37,38,64,83,0,1,1,0,0,0,1,1,100,123,35,38,64,83,0,1,0,0,0,0,1,1,3,0,2,0,0,0,0,0,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,1,996,522,474,177,147,337,318,1,2,1,1,0,0,6,6,517,467,174,143,335,316,1,2,1,1,0,0,6,5,5,7,3,4,2,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,5,2,1249,632,617,177,185,453,425,1,2,0,0,0,2,1,3,623,612,172,181,449,424,1,2,0,0,0,2,1,3,9,5,5,4,4,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,3,1413,723,690,213,200,503,487,4,1,0,1,0,0,3,1,716,685,207,198,502,485,4,1,0,1,0,0,3,0,7,5,6,2,1,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,5,4,1301,665,636,223,189,436,441,1,1,0,0,0,0,5,5,657,630,218,187,434,439,1,1,0,0,0,0,4,3,8,6,5,2,2,2,0,0,0,0,0,0,1,2 -050,01,065,Alabama,Hale County,5,5,1155,617,538,198,156,416,380,1,0,0,1,0,0,2,1,608,532,191,153,414,377,1,0,0,1,0,0,2,1,9,6,7,3,2,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,6,1031,544,487,207,170,334,310,1,1,1,3,0,0,1,3,535,483,200,169,332,307,1,1,1,3,0,0,1,3,9,4,7,1,2,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,7,1023,515,508,213,180,301,323,1,1,0,2,0,1,0,1,509,501,207,175,301,321,1,1,0,2,0,1,0,1,6,7,6,5,0,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,8,1119,546,573,248,214,291,354,2,0,2,1,0,0,3,4,541,566,244,210,290,352,2,0,2,1,0,0,3,3,5,7,4,4,1,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,5,9,1327,645,682,281,252,361,423,1,2,2,1,0,0,0,4,639,678,277,251,359,420,1,2,2,1,0,0,0,4,6,4,4,1,2,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,10,1238,612,626,279,230,332,392,1,0,0,1,0,0,0,3,607,623,275,228,331,391,1,0,0,1,0,0,0,3,5,3,4,2,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,11,1143,588,555,271,241,313,311,1,1,2,2,0,0,1,0,585,553,270,240,311,310,1,1,2,2,0,0,1,0,3,2,1,1,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,12,933,477,456,267,247,205,208,0,0,0,0,0,0,5,1,473,454,265,245,205,208,0,0,0,0,0,0,3,1,4,2,2,2,0,0,0,0,0,0,0,0,2,0 -050,01,065,Alabama,Hale County,5,13,727,339,388,192,199,146,184,0,1,0,3,0,0,1,1,338,386,191,198,146,184,0,1,0,3,0,0,1,0,1,2,1,1,0,0,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,5,14,617,283,334,171,179,112,155,0,0,0,0,0,0,0,0,283,330,171,178,112,152,0,0,0,0,0,0,0,0,0,4,0,1,0,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,15,580,266,314,127,151,139,158,0,0,0,2,0,0,0,3,265,312,127,151,138,156,0,0,0,2,0,0,0,3,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,16,468,169,299,84,150,84,149,0,0,0,0,0,0,1,0,166,298,84,150,81,148,0,0,0,0,0,0,1,0,3,1,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,17,303,135,168,77,85,57,81,0,0,0,0,0,0,1,2,134,167,77,85,56,80,0,0,0,0,0,0,1,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,18,267,65,202,33,98,32,103,0,0,0,0,0,0,0,1,65,200,33,97,32,102,0,0,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,99,17116,8446,8670,3475,3311,4916,5285,15,13,9,18,0,3,31,40,8361,8600,3418,3277,4892,5255,15,13,8,18,0,3,28,34,85,70,57,34,24,30,0,0,1,0,0,0,3,6 -050,01,065,Alabama,Hale County,6,0,185,94,91,32,32,61,58,0,0,0,0,0,0,1,1,92,91,30,32,61,58,0,0,0,0,0,0,1,1,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,1,1000,491,509,169,162,315,338,1,2,1,1,0,0,5,6,488,502,168,158,313,336,1,2,1,1,0,0,5,5,3,7,1,4,2,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,6,2,1222,589,633,160,178,427,448,1,2,0,0,0,1,1,4,579,628,155,175,422,447,1,2,0,0,0,1,1,3,10,5,5,3,5,1,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,6,3,1361,709,652,207,200,495,447,4,1,0,1,0,0,3,3,702,646,201,198,494,445,4,1,0,1,0,0,3,1,7,6,6,2,1,2,0,0,0,0,0,0,0,2 -050,01,065,Alabama,Hale County,6,4,1304,654,650,228,191,422,454,1,1,0,0,0,0,3,4,647,644,223,188,421,452,1,1,0,0,0,0,2,3,7,6,5,3,1,2,0,0,0,0,0,0,1,1 -050,01,065,Alabama,Hale County,6,5,1098,581,517,188,158,390,357,1,0,0,1,0,0,2,1,575,511,184,155,388,355,1,0,0,1,0,0,2,0,6,6,4,3,2,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,6,6,967,501,466,193,166,304,293,1,1,2,3,0,0,1,3,489,462,184,165,302,290,1,1,1,3,0,0,1,3,12,4,9,1,2,3,0,0,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,7,964,483,481,196,163,286,313,1,1,0,2,0,0,0,2,478,473,191,158,286,311,1,1,0,2,0,0,0,1,5,8,5,5,0,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,6,8,1046,510,536,231,206,272,326,2,0,2,1,0,0,3,3,503,528,225,202,271,323,2,0,2,1,0,0,3,2,7,8,6,4,1,3,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,6,9,1316,644,672,298,249,343,416,1,2,2,1,0,0,0,4,638,669,294,248,341,414,1,2,2,1,0,0,0,4,6,3,4,1,2,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,10,1224,597,627,273,230,323,391,1,0,0,1,0,0,0,5,593,624,269,228,323,390,1,0,0,1,0,0,0,5,4,3,4,2,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,11,1148,575,573,252,238,319,332,1,1,2,2,0,0,1,0,572,571,251,237,317,331,1,1,2,2,0,0,1,0,3,2,1,1,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,12,947,491,456,268,238,220,217,0,0,0,0,0,0,3,1,487,454,265,236,219,217,0,0,0,0,0,0,3,1,4,2,3,2,1,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,13,753,365,388,212,203,152,180,0,1,0,3,0,0,1,1,364,386,211,202,152,180,0,1,0,3,0,0,1,0,1,2,1,1,0,0,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,6,14,640,294,346,173,184,120,162,0,0,0,0,0,0,1,0,294,343,173,183,120,160,0,0,0,0,0,0,1,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,15,562,258,304,134,161,124,139,0,0,0,1,0,0,0,3,256,302,134,161,122,137,0,0,0,1,0,0,0,3,2,2,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,16,466,166,300,81,144,84,156,0,0,0,0,0,0,1,0,164,300,81,144,82,156,0,0,0,0,0,0,1,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,17,299,127,172,68,77,58,93,0,0,0,0,0,0,1,2,125,171,67,77,57,92,0,0,0,0,0,0,1,2,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,18,263,79,184,39,90,40,93,0,0,0,0,0,0,0,1,79,182,39,89,40,92,0,0,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,99,16765,8208,8557,3402,3270,4755,5213,15,12,9,17,0,1,27,44,8125,8487,3345,3236,4731,5186,15,12,8,17,0,1,26,35,83,70,57,34,24,27,0,0,1,0,0,0,1,9 -050,01,065,Alabama,Hale County,7,0,230,120,110,45,40,74,70,0,0,0,0,0,0,1,0,118,110,44,40,73,70,0,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,1,836,422,414,144,156,272,250,0,0,0,1,0,0,6,7,418,412,142,154,270,250,0,0,0,1,0,0,6,7,4,2,2,2,2,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,2,1242,604,638,163,181,438,452,1,0,0,0,0,1,2,4,597,631,160,176,434,450,1,0,0,0,0,1,2,4,7,7,3,5,4,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,3,1368,697,671,199,201,491,464,4,0,1,3,0,0,2,3,691,666,195,199,489,462,4,0,1,3,0,0,2,2,6,5,4,2,2,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,7,4,1310,674,636,231,187,436,444,2,3,1,0,0,0,4,2,667,632,226,185,435,443,2,2,1,0,0,0,3,2,7,4,5,2,1,1,0,1,0,0,0,0,1,0 -050,01,065,Alabama,Hale County,7,5,1055,530,525,165,168,362,352,0,1,0,2,0,0,3,2,526,519,162,165,361,350,0,1,0,2,0,0,3,1,4,6,3,3,1,2,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,7,6,948,481,467,195,168,283,292,1,0,0,3,0,0,2,4,473,464,189,167,281,290,1,0,0,3,0,0,2,4,8,3,6,1,2,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,7,964,444,520,180,167,260,346,1,1,1,3,0,0,2,3,438,510,175,162,259,341,1,1,1,3,0,0,2,3,6,10,5,5,1,5,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,8,968,467,501,210,199,253,299,0,1,2,1,0,0,2,1,460,496,205,197,252,296,0,1,2,1,0,0,1,1,7,5,5,2,1,3,0,0,0,0,0,0,1,0 -050,01,065,Alabama,Hale County,7,9,1285,613,672,294,262,316,405,1,1,2,0,0,0,0,4,609,669,290,260,316,404,1,1,2,0,0,0,0,4,4,3,4,2,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,10,1243,601,642,267,212,328,420,3,2,1,3,0,0,2,5,597,640,265,210,327,420,2,2,1,3,0,0,2,5,4,2,2,2,1,0,1,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,11,1183,588,595,258,255,328,337,0,1,1,1,0,0,1,1,583,593,255,254,326,336,0,1,1,1,0,0,1,1,5,2,3,1,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,12,991,489,502,262,257,225,244,0,0,0,1,0,0,2,0,487,500,261,255,224,244,0,0,0,1,0,0,2,0,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,13,754,373,381,214,195,158,179,0,1,0,3,0,0,1,3,371,380,212,194,158,179,0,1,0,3,0,0,1,3,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,14,665,301,364,167,188,132,176,0,0,0,0,0,0,2,0,301,359,167,185,132,174,0,0,0,0,0,0,2,0,0,5,0,3,0,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,15,566,270,296,142,158,127,133,1,1,0,3,0,0,0,1,267,295,140,157,126,133,1,1,0,3,0,0,0,1,3,1,2,1,1,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,16,447,173,274,85,136,87,138,0,0,0,0,0,0,1,0,172,273,85,136,86,137,0,0,0,0,0,0,1,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,17,287,98,189,55,91,42,96,1,0,0,0,0,0,0,2,98,187,55,90,42,95,1,0,0,0,0,0,0,2,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,18,280,88,192,51,88,36,104,0,0,1,0,0,0,0,0,88,190,51,87,36,103,0,0,1,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,99,16622,8033,8589,3327,3309,4648,5201,15,12,10,24,0,1,33,42,7961,8526,3279,3273,4627,5177,14,11,10,24,0,1,31,40,72,63,48,36,21,24,1,1,0,0,0,0,2,2 -050,01,065,Alabama,Hale County,8,0,177,90,87,36,32,54,55,0,0,0,0,0,0,0,0,88,86,35,32,53,54,0,0,0,0,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,1,783,402,381,145,146,252,226,0,0,0,1,0,0,5,8,398,374,143,139,250,226,0,0,0,1,0,0,5,8,4,7,2,7,2,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,2,1184,575,609,155,180,417,423,1,1,0,0,0,0,2,5,567,599,151,174,413,420,1,1,0,0,0,0,2,4,8,10,4,6,4,3,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,8,3,1334,691,643,203,184,484,451,2,1,1,3,0,0,1,4,685,636,199,182,482,448,2,1,1,3,0,0,1,2,6,7,4,2,2,3,0,0,0,0,0,0,0,2 -050,01,065,Alabama,Hale County,8,4,1319,648,671,215,188,426,478,2,4,1,0,0,0,4,1,641,666,211,186,425,476,2,3,1,0,0,0,2,1,7,5,4,2,1,2,0,1,0,0,0,0,2,0 -050,01,065,Alabama,Hale County,8,5,1021,506,515,170,177,334,333,0,1,0,2,0,0,2,2,501,509,166,173,333,332,0,1,0,2,0,0,2,1,5,6,4,4,1,1,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,8,6,983,503,480,193,179,306,295,1,0,0,3,0,0,3,3,495,478,186,178,305,294,1,0,0,3,0,0,3,3,8,2,7,1,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,7,926,430,496,175,151,252,339,0,0,1,2,0,0,2,4,425,486,171,146,251,334,0,0,1,2,0,0,2,4,5,10,4,5,1,5,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,8,919,443,476,195,193,244,280,0,1,2,1,0,0,2,1,439,473,192,192,244,278,0,1,2,1,0,0,1,1,4,3,3,1,0,2,0,0,0,0,0,0,1,0 -050,01,065,Alabama,Hale County,8,9,1190,545,645,268,254,274,388,1,1,2,0,0,0,0,2,542,641,265,252,274,386,1,1,2,0,0,0,0,2,3,4,3,2,0,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,10,1265,587,678,255,233,326,438,3,2,1,3,0,0,2,2,584,676,253,232,326,437,2,2,1,3,0,0,2,2,3,2,2,1,0,1,1,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,11,1227,626,601,285,241,335,357,1,1,2,1,0,0,3,1,621,597,282,240,333,354,1,1,2,1,0,0,3,1,5,4,3,1,2,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,12,1080,543,537,276,271,264,265,0,0,0,1,0,0,3,0,542,535,275,269,264,265,0,0,0,1,0,0,3,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,13,742,375,367,221,188,153,172,0,1,0,3,0,0,1,3,373,365,219,187,153,171,0,1,0,3,0,0,1,3,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,14,668,310,358,160,184,146,173,0,0,0,0,0,0,4,1,310,353,160,180,146,172,0,0,0,0,0,0,4,1,0,5,0,4,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,15,563,256,307,142,161,114,141,0,1,0,3,0,0,0,1,254,306,140,160,114,141,0,1,0,3,0,0,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,16,457,183,274,92,136,91,138,0,0,0,0,0,0,0,0,183,274,92,136,91,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,17,317,112,205,61,89,50,114,1,0,0,0,0,0,0,2,111,204,60,88,50,114,1,0,0,0,0,0,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,18,272,92,180,49,89,42,91,0,0,1,0,0,0,0,0,92,178,49,88,42,90,0,0,1,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,99,16427,7917,8510,3296,3276,4564,5157,12,14,11,23,0,0,34,40,7851,8436,3249,3234,4549,5130,11,13,11,23,0,0,31,36,66,74,47,42,15,27,1,1,0,0,0,0,3,4 -050,01,065,Alabama,Hale County,9,0,202,100,102,45,42,55,59,0,0,0,0,0,0,0,1,98,100,44,42,54,58,0,0,0,0,0,0,0,0,2,2,1,0,1,1,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,9,1,748,362,386,124,152,234,225,0,0,0,1,0,0,4,8,358,380,122,146,232,225,0,0,0,1,0,0,4,8,4,6,2,6,2,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,2,1146,545,601,165,173,378,423,0,1,0,0,0,0,2,4,536,594,160,169,374,420,0,1,0,0,0,0,2,4,9,7,5,4,4,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,3,1298,670,628,202,200,463,423,3,1,1,2,0,0,1,2,664,623,198,198,461,420,3,1,1,2,0,0,1,2,6,5,4,2,2,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,4,1338,674,664,210,192,456,466,3,4,1,0,0,0,4,2,667,659,206,190,455,464,3,3,1,0,0,0,2,2,7,5,4,2,1,2,0,1,0,0,0,0,2,0 -050,01,065,Alabama,Hale County,9,5,1013,496,517,169,185,325,328,0,1,0,2,0,0,2,1,491,512,165,181,324,327,0,1,0,2,0,0,2,1,5,5,4,4,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,6,971,473,498,204,184,265,307,1,0,0,3,0,0,3,4,464,496,197,183,263,306,1,0,0,3,0,0,3,4,9,2,7,1,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,7,888,417,471,163,139,251,327,0,0,1,2,0,0,2,3,413,462,160,135,250,322,0,0,1,2,0,0,2,3,4,9,3,4,1,5,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,8,939,454,485,209,200,241,282,0,1,2,1,0,0,2,1,444,482,201,199,240,280,0,1,2,1,0,0,1,1,10,3,8,1,1,2,0,0,0,0,0,0,1,0 -050,01,065,Alabama,Hale County,9,9,1130,530,600,245,231,282,365,1,1,2,0,0,0,0,3,525,597,240,229,282,364,1,1,2,0,0,0,0,3,5,3,5,2,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,10,1239,571,668,264,244,300,417,3,2,1,3,1,0,2,2,568,666,262,243,300,416,2,2,1,3,1,0,2,2,3,2,2,1,0,1,1,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,11,1239,601,638,276,244,319,391,1,1,2,1,0,0,3,1,597,635,273,243,318,389,1,1,2,1,0,0,3,1,4,3,3,1,1,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,12,1083,554,529,275,247,275,281,0,0,0,1,0,0,4,0,552,528,274,246,275,281,0,0,0,1,0,0,3,0,2,1,1,1,0,0,0,0,0,0,0,0,1,0 -050,01,065,Alabama,Hale County,9,13,869,451,418,256,214,194,197,0,1,0,3,0,0,1,3,449,416,254,213,194,196,0,1,0,3,0,0,1,3,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,14,692,304,388,156,201,145,186,0,0,0,0,0,0,3,1,303,383,156,197,144,185,0,0,0,0,0,0,3,1,1,5,0,4,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,15,562,245,317,139,164,105,148,1,1,0,3,0,0,0,1,243,316,137,163,105,148,1,1,0,3,0,0,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,16,466,198,268,100,138,98,130,0,0,0,0,0,0,0,0,198,268,100,138,98,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,17,326,118,208,67,87,50,119,1,0,0,1,0,0,0,1,117,207,66,86,50,119,1,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,18,269,77,192,42,100,34,92,0,0,1,0,0,0,0,0,77,190,42,99,34,91,0,0,1,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,99,16418,7840,8578,3311,3337,4470,5166,14,14,11,23,1,0,33,38,7764,8514,3257,3300,4453,5141,13,13,11,23,1,0,29,37,76,64,54,37,17,25,1,1,0,0,0,0,4,1 -050,01,065,Alabama,Hale County,10,0,208,109,99,47,36,62,62,0,0,0,0,0,0,0,1,107,97,46,36,61,61,0,0,0,0,0,0,0,0,2,2,1,0,1,1,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,10,1,734,377,357,134,150,239,199,0,0,0,2,0,0,4,6,373,352,131,145,238,199,0,0,0,2,0,0,4,6,4,5,3,5,1,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,2,1108,519,589,149,177,368,408,0,1,0,0,0,0,2,3,509,582,143,172,364,406,0,1,0,0,0,0,2,3,10,7,6,5,4,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,3,1260,639,621,197,202,438,413,2,1,1,2,0,0,1,3,633,614,192,199,437,410,2,1,1,2,0,0,1,2,6,7,5,3,1,3,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,10,4,1334,680,654,209,190,464,458,3,4,1,0,0,0,3,2,672,649,204,188,463,456,3,3,1,0,0,0,1,2,8,5,5,2,1,2,0,1,0,0,0,0,2,0 -050,01,065,Alabama,Hale County,10,5,942,473,469,161,164,309,300,0,1,0,3,0,0,3,1,466,466,155,162,308,299,0,1,0,3,0,0,3,1,7,3,6,2,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,6,963,476,487,193,184,278,295,1,0,0,4,0,0,4,4,467,484,185,182,277,294,1,0,0,4,0,0,4,4,9,3,8,2,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,7,874,413,461,165,149,245,307,0,0,1,2,0,0,2,3,409,452,162,144,244,303,0,0,1,2,0,0,2,3,4,9,3,5,1,4,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,8,926,446,480,196,176,246,300,0,1,2,2,0,0,2,1,440,479,192,176,245,299,0,1,2,2,0,0,1,1,6,1,4,0,1,1,0,0,0,0,0,0,1,0 -050,01,065,Alabama,Hale County,10,9,1027,463,564,209,229,251,333,1,0,2,0,0,0,0,2,459,561,205,227,251,332,1,0,2,0,0,0,0,2,4,3,4,2,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,10,1283,598,685,266,255,327,422,2,2,1,4,0,0,2,2,595,683,264,254,327,421,1,2,1,4,0,0,2,2,3,2,2,1,0,1,1,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,11,1247,600,647,284,248,310,397,1,1,2,0,0,0,3,1,596,644,281,247,309,395,1,1,2,0,0,0,3,1,4,3,3,1,1,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,12,1102,557,545,265,230,288,314,0,0,0,1,0,0,4,0,556,544,264,229,288,314,0,0,0,1,0,0,4,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,13,929,460,469,255,243,203,219,0,1,0,3,0,0,2,3,458,468,253,243,203,218,0,1,0,3,0,0,2,3,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,14,693,327,366,163,185,160,180,0,0,0,0,0,0,4,1,326,361,163,181,159,179,0,0,0,0,0,0,4,1,1,5,0,4,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,15,564,252,312,134,158,117,150,1,1,0,2,0,0,0,1,250,311,132,157,117,150,1,1,0,2,0,0,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,16,451,186,265,95,124,91,141,0,0,0,0,0,0,0,0,186,265,95,124,91,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,17,340,127,213,69,93,57,118,1,0,0,1,0,0,0,1,126,212,68,92,57,118,1,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,18,275,75,200,42,93,32,107,0,0,1,0,0,0,0,0,75,199,42,93,32,106,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,99,16260,7777,8483,3233,3286,4485,5123,12,13,11,26,0,0,36,35,7703,8423,3177,3251,4471,5101,11,12,11,26,0,0,33,33,74,60,56,35,14,22,1,1,0,0,0,0,3,2 -050,01,065,Alabama,Hale County,11,0,209,113,96,47,35,66,60,0,0,0,0,0,0,0,1,111,94,46,35,65,59,0,0,0,0,0,0,0,0,2,2,1,0,1,1,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,11,1,750,357,393,127,146,226,239,0,0,0,2,0,0,4,6,350,388,121,141,225,239,0,0,0,2,0,0,4,6,7,5,6,5,1,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,2,1041,504,537,143,167,359,366,0,1,0,0,0,0,2,3,494,531,138,163,354,364,0,1,0,0,0,0,2,3,10,6,5,4,5,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,3,1236,633,603,194,198,435,399,2,1,1,2,0,0,1,3,627,596,189,195,434,396,2,1,1,2,0,0,1,2,6,7,5,3,1,3,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,11,4,1263,637,626,198,189,431,431,3,4,1,0,0,0,4,2,628,621,192,187,430,429,3,3,1,0,0,0,2,2,9,5,6,2,1,2,0,1,0,0,0,0,2,0 -050,01,065,Alabama,Hale County,11,5,941,465,476,163,154,299,317,0,1,0,3,0,0,3,1,457,473,157,152,297,316,0,1,0,3,0,0,3,1,8,3,6,2,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,6,923,434,489,182,187,247,294,1,0,0,4,0,0,4,4,425,486,175,185,245,293,1,0,0,4,0,0,4,4,9,3,7,2,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,7,847,396,451,162,145,231,301,0,0,1,2,0,0,2,3,393,441,160,140,230,296,0,0,1,2,0,0,2,3,3,10,2,5,1,5,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,8,909,425,484,174,168,248,312,0,1,1,2,0,0,2,1,420,483,171,168,247,311,0,1,1,2,0,0,1,1,5,1,3,0,1,1,0,0,0,0,0,0,1,0 -050,01,065,Alabama,Hale County,11,9,958,427,531,191,202,233,327,1,0,2,0,0,0,0,2,422,528,186,200,233,326,1,0,2,0,0,0,0,2,5,3,5,2,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,10,1310,615,695,279,255,330,432,2,2,1,4,1,0,2,2,612,693,277,254,330,431,1,2,1,4,1,0,2,2,3,2,2,1,0,1,1,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,11,1216,596,620,280,238,309,380,1,1,2,0,0,0,4,1,590,617,276,237,307,378,1,1,2,0,0,0,4,1,6,3,4,1,2,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,12,1146,552,594,263,246,285,347,0,0,0,1,0,0,4,0,551,593,262,245,285,347,0,0,0,1,0,0,4,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,13,931,471,460,250,225,219,229,0,1,0,2,0,0,2,3,469,459,248,225,219,228,0,1,0,2,0,0,2,3,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,14,732,341,391,181,211,156,179,0,0,0,0,0,0,4,1,340,386,181,207,155,178,0,0,0,0,0,0,4,1,1,5,0,4,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,15,555,245,310,135,154,109,152,1,1,0,2,0,0,0,1,243,309,133,153,109,152,1,1,0,2,0,0,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,16,410,168,242,102,131,66,111,0,0,0,0,0,0,0,0,168,242,102,131,66,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,17,347,137,210,71,94,65,114,1,0,0,1,0,0,0,1,136,209,70,93,65,114,1,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,18,301,90,211,47,100,42,111,0,0,1,0,0,0,0,0,90,210,47,100,42,110,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,99,16025,7606,8419,3189,3245,4356,5101,12,13,10,25,1,0,38,35,7526,8359,3131,3211,4338,5078,11,12,10,25,1,0,35,33,80,60,58,34,18,23,1,1,0,0,0,0,3,2 -050,01,065,Alabama,Hale County,12,0,202,107,95,42,32,65,62,0,0,0,0,0,0,0,1,105,93,41,32,64,61,0,0,0,0,0,0,0,0,2,2,1,0,1,1,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,12,1,752,358,394,122,147,232,239,0,0,0,2,0,0,4,6,354,388,119,141,231,239,0,0,0,2,0,0,4,6,4,6,3,6,1,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,2,969,482,487,134,164,346,319,0,1,0,0,0,0,2,3,472,481,129,160,341,317,0,1,0,0,0,0,2,3,10,6,5,4,5,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,3,1230,615,615,196,200,415,409,2,1,1,2,0,0,1,3,608,608,191,197,413,406,2,1,1,2,0,0,1,2,7,7,5,3,2,3,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,12,4,1225,623,602,188,188,427,408,3,4,1,0,0,0,4,2,614,597,182,186,426,406,3,3,1,0,0,0,2,2,9,5,6,2,1,2,0,1,0,0,0,0,2,0 -050,01,065,Alabama,Hale County,12,5,898,450,448,165,147,282,296,0,1,0,3,0,0,3,1,442,445,159,145,280,295,0,1,0,3,0,0,3,1,8,3,6,2,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,6,861,407,454,168,170,234,276,1,0,0,4,0,0,4,4,398,451,161,168,232,275,1,0,0,4,0,0,4,4,9,3,7,2,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,7,859,396,463,156,147,237,311,0,0,1,2,0,0,2,3,393,453,154,142,236,306,0,0,1,2,0,0,2,3,3,10,2,5,1,5,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,8,885,403,482,170,161,230,317,0,1,1,2,0,0,2,1,397,481,166,161,229,316,0,1,1,2,0,0,1,1,6,1,4,0,1,1,0,0,0,0,0,0,1,0 -050,01,065,Alabama,Hale County,12,9,898,405,493,172,194,230,297,1,0,2,0,0,0,0,2,400,490,167,192,230,296,1,0,2,0,0,0,0,2,5,3,5,2,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,10,1270,587,683,270,257,311,418,2,2,1,4,1,0,2,2,584,681,268,256,311,417,1,2,1,4,1,0,2,2,3,2,2,1,0,1,1,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,11,1222,595,627,275,221,313,404,1,1,2,0,0,0,4,1,589,624,271,220,311,402,1,1,2,0,0,0,4,1,6,3,4,1,2,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,12,1142,544,598,261,251,279,346,0,0,0,1,0,0,4,0,543,597,260,250,279,346,0,0,0,1,0,0,4,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,13,977,496,481,255,236,239,239,0,1,0,2,0,0,2,3,494,480,253,236,239,238,0,1,0,2,0,0,2,3,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,14,734,361,373,187,205,170,167,0,0,0,0,0,0,4,1,360,368,187,201,169,166,0,0,0,0,0,0,4,1,1,5,0,4,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,15,558,239,319,133,148,105,167,1,1,0,2,0,0,0,1,237,318,131,147,105,167,1,1,0,2,0,0,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,16,437,184,253,114,132,70,121,0,0,0,0,0,0,0,0,184,253,114,132,70,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,17,327,128,199,64,95,63,102,1,0,0,1,0,0,0,1,127,198,63,94,63,102,1,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,18,314,86,228,45,104,40,124,0,0,1,0,0,0,0,0,86,227,45,104,40,123,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,99,15760,7466,8294,3117,3199,4288,5022,12,13,10,25,1,0,38,35,7387,8233,3061,3164,4269,4999,11,12,10,25,1,0,35,33,79,61,56,35,19,23,1,1,0,0,0,0,3,2 -050,01,065,Alabama,Hale County,13,0,200,105,95,40,33,65,61,0,0,0,0,0,0,0,1,104,94,40,32,64,61,0,0,0,0,0,0,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,1,753,360,393,121,145,234,239,2,2,0,1,0,0,3,6,353,386,118,138,231,239,1,2,0,1,0,0,3,6,7,7,3,7,3,0,1,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,2,965,479,486,131,162,344,321,0,1,0,1,0,0,4,1,470,480,127,160,339,317,0,1,0,1,0,0,4,1,9,6,4,2,5,4,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,3,1222,615,607,194,197,413,405,4,1,1,1,0,0,3,3,606,602,189,196,409,402,4,1,1,1,0,0,3,2,9,5,5,1,4,3,0,0,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,13,4,1218,622,596,187,186,423,402,5,4,1,0,0,0,6,4,613,593,180,184,422,402,5,3,1,0,0,0,5,4,9,3,7,2,1,0,0,1,0,0,0,0,1,0 -050,01,065,Alabama,Hale County,13,5,901,452,449,163,145,281,297,1,2,0,3,1,0,6,2,444,446,158,143,279,296,1,2,0,3,0,0,6,2,8,3,5,2,2,1,0,0,0,0,1,0,0,0 -050,01,065,Alabama,Hale County,13,6,854,404,450,167,169,233,275,2,0,0,3,1,0,1,3,394,447,160,167,231,274,2,0,0,3,0,0,1,3,10,3,7,2,2,1,0,0,0,0,1,0,0,0 -050,01,065,Alabama,Hale County,13,7,862,400,462,156,148,238,311,2,0,3,1,0,0,1,2,396,453,154,143,237,307,1,0,3,1,0,0,1,2,4,9,2,5,1,4,1,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,8,879,402,477,166,160,229,313,4,1,1,2,0,0,2,1,398,477,163,160,229,313,3,1,1,2,0,0,2,1,4,0,3,0,0,0,1,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,9,894,403,491,171,190,227,296,1,2,2,1,0,0,2,2,398,489,166,190,227,294,1,2,2,1,0,0,2,2,5,2,5,0,0,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,10,1262,583,679,267,255,308,417,3,1,1,5,0,0,4,1,580,676,265,253,308,416,2,1,1,5,0,0,4,1,3,3,2,2,0,1,1,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,11,1218,595,623,275,218,312,402,3,2,1,0,0,0,4,1,589,623,270,218,311,402,3,2,1,0,0,0,4,1,6,0,5,0,1,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,12,1146,544,602,261,251,279,348,1,1,0,0,0,0,3,2,543,601,260,250,279,348,1,1,0,0,0,0,3,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,13,979,499,480,257,238,239,237,1,0,0,2,0,0,2,3,497,480,255,238,239,237,1,0,0,2,0,0,2,3,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,14,726,355,371,187,204,166,165,1,0,0,1,0,0,1,1,355,368,187,201,166,165,1,0,0,1,0,0,1,1,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,15,558,239,319,134,147,105,166,0,2,0,2,0,0,0,2,238,318,133,146,105,166,0,2,0,2,0,0,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,16,439,184,255,115,132,69,120,0,1,0,0,0,0,0,2,184,255,115,132,69,120,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,17,318,123,195,60,92,63,102,0,0,0,0,0,0,0,1,123,195,60,92,63,102,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,18,314,87,227,46,104,40,123,0,0,1,0,0,0,0,0,87,227,46,104,40,123,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,99,15708,7451,8257,3098,3176,4268,5000,30,20,11,23,2,0,42,38,7372,8210,3046,3147,4248,4984,26,19,11,23,0,0,41,37,79,47,52,29,20,16,4,1,0,0,2,0,1,1 -050,01,067,Alabama,Henry County,1,0,183,95,88,60,58,33,28,0,0,0,0,0,0,2,2,94,85,59,55,33,28,0,0,0,0,0,0,2,2,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,1,836,445,391,284,237,154,145,1,1,0,0,0,0,6,8,436,374,277,220,152,145,1,1,0,0,0,0,6,8,9,17,7,17,2,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,2,1063,517,546,304,298,204,240,1,1,0,1,0,0,8,6,504,532,293,285,202,239,1,1,0,1,0,0,8,6,13,14,11,13,2,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,3,1106,561,545,322,312,233,226,3,3,0,0,0,0,3,4,553,542,315,309,232,226,3,3,0,0,0,0,3,4,8,3,7,3,1,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,4,1181,621,560,358,311,259,240,0,2,0,0,1,0,3,7,607,550,348,301,257,240,0,2,0,0,0,0,2,7,14,10,10,10,2,0,0,0,0,0,1,0,1,0 -050,01,067,Alabama,Henry County,1,5,925,457,468,285,282,171,184,1,0,0,0,0,1,0,1,440,455,268,271,171,183,1,0,0,0,0,0,0,1,17,13,17,11,0,1,0,0,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,1,6,950,463,487,315,299,142,185,1,0,0,0,1,0,4,3,445,475,298,290,142,183,1,0,0,0,0,0,4,2,18,12,17,9,0,2,0,0,0,0,1,0,0,1 -050,01,067,Alabama,Henry County,1,7,1039,527,512,392,338,130,169,3,2,1,0,0,0,1,3,512,503,379,330,129,168,2,2,1,0,0,0,1,3,15,9,13,8,1,1,1,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,8,1045,496,549,346,353,146,193,3,1,0,1,0,0,1,1,489,541,340,346,145,192,3,1,0,1,0,0,1,1,7,8,6,7,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,9,1162,566,596,392,373,167,216,1,3,1,0,0,0,5,4,559,589,387,367,165,215,1,3,1,0,0,0,5,4,7,7,5,6,2,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,10,1227,578,649,412,424,161,222,3,1,1,0,0,0,1,2,576,645,410,420,161,222,3,1,1,0,0,0,1,2,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,11,1187,576,611,399,460,176,148,0,1,0,1,0,0,1,1,569,608,393,458,175,147,0,1,0,1,0,0,1,1,7,3,6,2,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,12,955,446,509,343,349,95,154,1,1,0,2,1,0,6,3,442,505,340,347,94,152,1,1,0,2,1,0,6,3,4,4,3,2,1,2,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,13,777,369,408,271,288,98,117,0,0,0,1,0,0,0,2,364,402,268,284,96,115,0,0,0,1,0,0,0,2,5,6,3,4,2,2,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,14,682,287,395,233,281,54,112,0,0,0,0,0,0,0,2,286,395,232,281,54,112,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,15,702,324,378,249,272,73,101,0,0,0,1,0,0,2,4,323,378,248,272,73,101,0,0,0,1,0,0,2,4,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,16,514,194,320,155,238,39,81,0,0,0,0,0,0,0,1,194,319,155,237,39,81,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,17,388,128,260,97,198,31,61,0,0,0,0,0,0,0,1,127,259,96,197,31,61,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,18,375,97,278,73,198,24,76,0,0,0,0,0,0,0,4,96,275,73,196,23,75,0,0,0,0,0,0,0,4,1,3,0,2,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,99,16297,7747,8550,5290,5569,2390,2898,18,16,3,7,3,1,43,59,7616,8432,5179,5466,2374,2885,17,16,3,7,1,0,42,58,131,118,111,103,16,13,1,0,0,0,2,1,1,1 -050,01,067,Alabama,Henry County,2,0,182,95,87,60,58,33,28,0,0,0,0,0,0,2,1,94,84,59,55,33,28,0,0,0,0,0,0,2,1,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,1,831,441,390,281,235,152,145,1,1,0,0,0,0,7,9,432,373,274,218,150,145,1,1,0,0,0,0,7,9,9,17,7,17,2,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,2,1056,515,541,302,295,204,238,1,1,0,1,0,0,8,6,502,527,291,282,202,237,1,1,0,1,0,0,8,6,13,14,11,13,2,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,3,1106,561,545,321,312,234,226,3,3,0,0,0,0,3,4,553,542,314,309,233,226,3,3,0,0,0,0,3,4,8,3,7,3,1,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,4,1189,629,560,361,311,263,240,0,2,0,0,1,0,4,7,615,550,351,301,261,240,0,2,0,0,0,0,3,7,14,10,10,10,2,0,0,0,0,0,1,0,1,0 -050,01,067,Alabama,Henry County,2,5,938,464,474,290,286,173,186,1,0,0,0,0,1,0,1,447,461,273,275,173,185,1,0,0,0,0,0,0,1,17,13,17,11,0,1,0,0,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,2,6,948,464,484,314,296,144,185,1,0,0,0,1,0,4,3,446,472,297,287,144,183,1,0,0,0,0,0,4,2,18,12,17,9,0,2,0,0,0,0,1,0,0,1 -050,01,067,Alabama,Henry County,2,7,1042,531,511,392,337,134,169,3,2,1,0,0,0,1,3,516,502,379,329,133,168,2,2,1,0,0,0,1,3,15,9,13,8,1,1,1,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,8,1042,494,548,344,352,146,193,3,1,0,1,0,0,1,1,487,540,338,345,145,192,3,1,0,1,0,0,1,1,7,8,6,7,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,9,1166,569,597,392,372,170,218,1,3,1,0,0,0,5,4,561,590,386,366,168,217,1,3,1,0,0,0,5,4,8,7,6,6,2,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,10,1235,582,653,415,427,162,223,3,1,1,0,0,0,1,2,580,649,413,423,162,223,3,1,1,0,0,0,1,2,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,11,1202,584,618,404,465,179,150,0,1,0,1,0,0,1,1,577,615,398,463,178,149,0,1,0,1,0,0,1,1,7,3,6,2,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,12,962,450,512,347,352,95,154,1,1,0,2,1,0,6,3,446,508,344,350,94,152,1,1,0,2,1,0,6,3,4,4,3,2,1,2,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,13,779,370,409,272,289,98,117,0,0,0,1,0,0,0,2,365,403,269,285,96,115,0,0,0,1,0,0,0,2,5,6,3,4,2,2,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,14,677,284,393,230,279,54,112,0,0,0,0,0,0,0,2,283,393,229,279,54,112,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,15,700,323,377,248,271,73,101,0,0,0,1,0,0,2,4,322,377,247,271,73,101,0,0,0,1,0,0,2,4,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,16,514,193,321,154,239,39,81,0,0,0,0,0,0,0,1,193,320,154,238,39,81,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,17,391,128,263,97,201,31,61,0,0,0,0,0,0,0,1,127,262,96,200,31,61,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,18,381,97,284,73,203,24,77,0,0,0,0,0,0,0,4,96,281,73,201,23,76,0,0,0,0,0,0,0,4,1,3,0,2,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,99,16341,7774,8567,5297,5580,2408,2904,18,16,3,7,3,1,45,59,7642,8449,5185,5477,2392,2891,17,16,3,7,1,0,44,58,132,118,112,103,16,13,1,0,0,0,2,1,1,1 -050,01,067,Alabama,Henry County,3,0,206,107,99,68,57,38,40,0,0,0,0,0,0,1,2,103,96,64,54,38,40,0,0,0,0,0,0,1,2,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,1,797,425,372,276,224,138,138,1,1,0,0,0,0,10,9,415,361,268,213,136,138,1,1,0,0,0,0,10,9,10,11,8,11,2,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,2,1044,499,545,284,303,206,234,1,1,0,1,0,0,8,6,481,527,268,286,204,233,1,1,0,1,0,0,8,6,18,18,16,17,2,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,3,1074,554,520,329,302,218,211,3,3,0,0,0,0,4,4,545,515,321,297,217,211,3,3,0,0,0,0,4,4,9,5,8,5,1,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,4,1195,614,581,353,321,257,252,0,2,0,0,1,0,3,6,600,571,343,311,255,252,0,2,0,0,0,0,2,6,14,10,10,10,2,0,0,0,0,0,1,0,1,0 -050,01,067,Alabama,Henry County,3,5,935,477,458,300,272,176,184,1,0,0,0,0,1,0,1,457,445,280,261,176,183,1,0,0,0,0,0,0,1,20,13,20,11,0,1,0,0,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,3,6,883,416,467,276,285,134,179,1,0,0,0,1,0,4,3,401,456,262,277,134,177,1,0,0,0,0,0,4,2,15,11,14,8,0,2,0,0,0,0,1,0,0,1 -050,01,067,Alabama,Henry County,3,7,1093,553,540,414,362,134,173,3,2,1,0,0,0,1,3,532,531,395,354,133,172,2,2,1,0,0,0,1,3,21,9,19,8,1,1,1,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,8,1026,471,555,341,358,126,194,3,1,0,1,0,0,1,1,462,545,333,349,125,193,3,1,0,1,0,0,1,1,9,10,8,9,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,9,1153,559,594,381,369,171,218,1,3,1,0,0,0,5,4,550,587,374,363,169,217,1,3,1,0,0,0,5,4,9,7,7,6,2,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,10,1262,597,665,416,430,173,232,6,1,1,0,0,0,1,2,594,660,413,425,173,232,6,1,1,0,0,0,1,2,3,5,3,5,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,11,1248,618,630,432,470,185,157,0,1,0,1,0,0,1,1,611,627,426,468,184,156,0,1,0,1,0,0,1,1,7,3,6,2,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,12,991,465,526,350,364,107,156,1,1,0,2,1,0,6,3,461,522,347,362,106,154,1,1,0,2,1,0,6,3,4,4,3,2,1,2,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,13,774,365,409,274,292,91,114,0,0,0,1,0,0,0,2,361,403,271,288,90,112,0,0,0,1,0,0,0,2,4,6,3,4,1,2,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,14,698,310,388,246,273,64,113,0,0,0,0,0,0,0,2,309,388,245,273,64,113,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,15,678,301,377,229,261,70,111,0,0,0,1,0,0,2,4,300,377,228,261,70,111,0,0,0,1,0,0,2,4,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,16,534,216,318,163,239,53,78,0,0,0,0,0,0,0,1,216,317,163,238,53,78,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,17,395,130,265,100,194,30,70,0,0,0,0,0,0,0,1,129,264,99,193,30,70,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,18,372,103,269,79,191,24,74,0,0,0,0,0,0,0,4,102,266,79,189,23,73,0,0,0,0,0,0,0,4,1,3,0,2,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,99,16358,7780,8578,5311,5567,2395,2928,21,16,3,7,3,1,47,59,7629,8458,5179,5462,2380,2915,20,16,3,7,1,0,46,58,151,120,132,105,15,13,1,0,0,0,2,1,1,1 -050,01,067,Alabama,Henry County,4,0,214,105,109,74,76,30,31,0,0,0,0,0,0,1,2,102,100,71,67,30,31,0,0,0,0,0,0,1,2,3,9,3,9,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,1,814,434,380,265,229,159,140,1,1,0,0,0,0,9,10,423,372,256,222,157,139,1,1,0,0,0,0,9,10,11,8,9,7,2,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,2,1071,539,532,331,298,197,224,1,1,0,2,0,0,10,7,521,518,315,285,195,223,1,1,0,2,0,0,10,7,18,14,16,13,2,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,3,1062,524,538,312,311,204,222,2,2,0,0,0,0,6,3,516,532,305,306,203,221,2,2,0,0,0,0,6,3,8,6,7,5,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,4,1161,622,539,358,292,260,238,0,2,0,1,1,0,3,6,607,531,346,284,259,238,0,2,0,1,0,0,2,6,15,8,12,8,1,0,0,0,0,0,1,0,1,0 -050,01,067,Alabama,Henry County,4,5,922,452,470,287,278,164,190,1,0,0,0,0,1,0,1,442,456,277,267,164,188,1,0,0,0,0,0,0,1,10,14,10,11,0,2,0,0,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,4,6,874,400,474,253,291,142,180,1,0,0,0,1,0,3,3,377,465,231,285,142,178,1,0,0,0,0,0,3,2,23,9,22,6,0,2,0,0,0,0,1,0,0,1 -050,01,067,Alabama,Henry County,4,7,1071,553,518,410,353,139,160,2,2,1,0,0,0,1,3,539,508,398,344,138,159,1,2,1,0,0,0,1,3,14,10,12,9,1,1,1,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,8,1048,489,559,353,356,132,200,3,1,0,1,0,0,1,1,476,546,341,344,131,199,3,1,0,1,0,0,1,1,13,13,12,12,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,9,1120,547,573,375,358,164,208,2,3,1,0,0,0,5,4,536,566,366,352,162,207,2,3,1,0,0,0,5,4,11,7,9,6,2,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,10,1279,594,685,415,445,174,237,3,1,1,0,0,0,1,2,590,681,411,441,174,237,3,1,1,0,0,0,1,2,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,11,1191,585,606,414,434,170,168,0,1,0,1,0,0,1,2,578,602,408,432,169,167,0,1,0,1,0,0,1,1,7,4,6,2,1,1,0,0,0,0,0,0,0,1 -050,01,067,Alabama,Henry County,4,12,1094,513,581,391,422,113,153,2,1,0,2,1,0,6,3,509,577,388,420,112,151,2,1,0,2,1,0,6,3,4,4,3,2,1,2,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,13,795,363,432,268,303,94,126,0,0,0,1,0,0,1,2,359,427,265,300,93,124,0,0,0,1,0,0,1,2,4,5,3,3,1,2,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,14,728,330,398,255,287,75,108,0,0,0,0,0,1,0,2,328,398,253,287,75,108,0,0,0,0,0,1,0,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,15,688,291,397,227,273,62,119,0,0,0,1,0,0,2,4,290,397,226,273,62,119,0,0,0,1,0,0,2,4,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,16,542,231,311,183,226,48,84,0,0,0,0,0,0,0,1,231,310,183,225,48,84,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,17,390,133,257,106,195,27,62,0,0,0,0,0,0,0,0,132,256,105,194,27,62,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,18,383,93,290,69,199,24,87,0,0,0,0,0,0,0,4,92,287,69,197,23,86,0,0,0,0,0,0,0,4,1,3,0,2,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,99,16447,7798,8649,5346,5626,2378,2937,18,15,3,9,3,2,50,60,7648,8529,5214,5525,2364,2921,17,15,3,9,1,1,49,58,150,120,132,101,14,16,1,0,0,0,2,1,1,2 -050,01,067,Alabama,Henry County,5,0,206,110,96,74,64,35,30,0,0,0,0,0,0,1,2,104,89,68,57,35,30,0,0,0,0,0,0,1,2,6,7,6,7,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,1,836,443,393,283,256,152,126,1,1,0,1,0,0,7,9,420,386,262,250,150,125,1,1,0,1,0,0,7,9,23,7,21,6,2,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,2,1055,549,506,350,298,185,196,2,2,1,3,0,0,11,7,530,486,332,281,184,194,2,1,1,3,0,0,11,7,19,20,18,17,1,2,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,3,1076,512,564,307,330,197,229,2,2,0,0,0,0,6,3,503,556,299,323,196,228,2,2,0,0,0,0,6,3,9,8,8,7,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,4,1152,606,546,341,309,261,229,0,1,0,1,1,0,3,6,590,534,327,298,260,228,0,1,0,1,0,0,3,6,16,12,14,11,1,1,0,0,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,5,5,958,467,491,292,287,174,202,1,0,0,0,0,1,0,1,450,477,275,276,174,200,1,0,0,0,0,0,0,1,17,14,17,11,0,2,0,0,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,5,6,878,413,465,280,284,127,177,1,0,1,1,1,0,3,3,385,451,253,273,127,175,1,0,1,1,0,0,3,2,28,14,27,11,0,2,0,0,0,0,1,0,0,1 -050,01,067,Alabama,Henry County,5,7,1054,523,531,386,361,133,165,2,2,1,0,0,0,1,3,506,521,371,352,132,164,1,2,1,0,0,0,1,3,17,10,15,9,1,1,1,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,8,1031,510,521,365,328,140,190,3,1,0,1,0,0,2,1,495,513,351,321,139,189,3,1,0,1,0,0,2,1,15,8,14,7,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,9,1082,513,569,369,364,134,198,3,3,2,0,0,0,5,4,503,562,361,358,132,197,3,3,2,0,0,0,5,4,10,7,8,6,2,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,10,1242,600,642,409,409,186,229,3,1,1,1,0,0,1,2,596,636,405,404,186,228,3,1,1,1,0,0,1,2,4,6,4,5,0,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,11,1250,585,665,415,463,169,198,0,1,0,1,0,0,1,2,580,660,411,460,168,197,0,1,0,1,0,0,1,1,5,5,4,3,1,1,0,0,0,0,0,0,0,1 -050,01,067,Alabama,Henry County,5,12,1162,558,604,426,453,122,145,2,1,0,2,1,0,7,3,552,600,422,451,121,143,2,1,0,2,1,0,6,3,6,4,4,2,1,2,0,0,0,0,0,0,1,0 -050,01,067,Alabama,Henry County,5,13,814,374,440,286,312,86,124,1,1,0,1,0,0,1,2,370,436,283,309,85,123,1,1,0,1,0,0,1,2,4,4,3,3,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,14,801,365,436,277,318,86,115,1,0,0,1,0,0,1,2,363,436,275,318,86,115,1,0,0,1,0,0,1,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,15,673,283,390,219,263,62,122,0,0,0,1,0,0,2,4,282,390,218,263,62,122,0,0,0,1,0,0,2,4,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,16,536,239,297,197,219,42,77,0,0,0,0,0,0,0,1,239,296,197,218,42,77,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,17,383,126,257,107,196,19,61,0,0,0,0,0,0,0,0,126,256,107,195,19,61,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,18,374,92,282,68,206,24,72,0,0,0,0,0,0,0,4,91,279,68,204,23,71,0,0,0,0,0,0,0,4,1,3,0,2,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,99,16563,7868,8695,5451,5720,2334,2885,22,16,6,14,3,1,52,59,7685,8564,5285,5611,2321,2867,21,15,6,14,1,0,51,57,183,131,166,109,13,18,1,1,0,0,2,1,1,2 -050,01,067,Alabama,Henry County,6,0,198,101,97,69,62,30,33,0,0,0,0,0,0,2,2,95,85,63,50,30,33,0,0,0,0,0,0,2,2,6,12,6,12,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,1,883,460,423,280,275,167,133,1,1,0,1,0,0,12,13,432,411,254,264,165,132,1,1,0,1,0,0,12,13,28,12,26,11,2,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,2,1032,552,480,355,293,182,174,2,3,1,3,0,0,12,7,535,462,339,278,181,172,2,2,1,3,0,0,12,7,17,18,16,15,1,2,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,3,1107,537,570,321,323,208,242,2,2,0,0,0,0,6,3,526,559,311,315,207,239,2,2,0,0,0,0,6,3,11,11,10,8,1,3,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,4,1135,591,544,337,307,250,227,0,2,0,1,1,0,3,7,575,532,323,296,249,226,0,2,0,1,0,0,3,7,16,12,14,11,1,1,0,0,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,6,5,950,474,476,288,280,184,193,1,1,0,0,0,1,1,1,456,462,270,269,184,191,1,1,0,0,0,0,1,1,18,14,18,11,0,2,0,0,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,6,6,908,449,459,293,291,150,164,1,0,1,1,1,0,3,3,424,439,269,274,150,162,1,0,1,1,0,0,3,2,25,20,24,17,0,2,0,0,0,0,1,0,0,1 -050,01,067,Alabama,Henry County,6,7,1028,502,526,352,342,146,178,2,2,1,0,0,0,1,4,482,517,333,334,146,177,1,2,1,0,0,0,1,4,20,9,19,8,0,1,1,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,8,1053,524,529,382,342,138,184,3,1,0,1,0,0,1,1,515,519,373,333,138,183,3,1,0,1,0,0,1,1,9,10,9,9,0,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,9,1062,499,563,355,374,132,181,3,3,2,0,0,0,7,5,488,554,346,366,130,180,3,3,2,0,0,0,7,5,11,9,9,8,2,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,10,1211,574,637,394,403,175,229,3,1,1,1,0,0,1,3,568,632,389,399,174,228,3,1,1,1,0,0,1,3,6,5,5,4,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,11,1266,592,674,435,456,156,213,0,1,0,1,0,0,1,3,587,668,431,453,155,211,0,1,0,1,0,0,1,2,5,6,4,3,1,2,0,0,0,0,0,0,0,1 -050,01,067,Alabama,Henry County,6,12,1199,588,611,429,469,149,135,2,1,0,2,1,0,7,4,582,608,425,467,148,134,2,1,0,2,1,0,6,4,6,3,4,2,1,1,0,0,0,0,0,0,1,0 -050,01,067,Alabama,Henry County,6,13,899,408,491,322,340,84,147,1,1,0,1,0,0,1,2,404,487,319,337,83,146,1,1,0,1,0,0,1,2,4,4,3,3,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,14,803,384,419,285,306,96,108,1,0,0,2,0,1,2,2,382,418,283,306,96,108,1,0,0,1,0,1,2,2,2,1,2,0,0,0,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,6,15,661,272,389,222,272,48,114,0,0,0,1,0,0,2,2,270,389,220,272,48,114,0,0,0,1,0,0,2,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,16,569,262,307,204,218,58,88,0,0,0,0,0,0,0,1,261,306,203,217,58,88,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,17,371,124,247,96,185,27,60,0,0,0,0,0,0,1,2,124,246,96,184,27,60,0,0,0,0,0,0,1,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,18,357,83,274,60,212,23,58,0,0,0,0,0,0,0,4,82,271,60,210,22,57,0,0,0,0,0,0,0,4,1,3,0,2,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,99,16692,7976,8716,5479,5750,2403,2861,22,19,6,15,3,2,63,69,7788,8565,5307,5624,2391,2841,21,18,6,14,1,1,62,67,188,151,172,126,12,20,1,1,0,1,2,1,1,2 -050,01,067,Alabama,Henry County,7,0,186,99,87,76,54,21,31,0,0,0,0,0,0,2,2,97,84,74,51,21,31,0,0,0,0,0,0,2,2,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,1,858,458,400,299,272,146,114,0,1,1,1,0,0,12,12,424,379,267,252,145,113,0,1,1,1,0,0,11,12,34,21,32,20,1,1,0,0,0,0,0,0,1,0 -050,01,067,Alabama,Henry County,7,2,1033,545,488,357,312,174,163,2,2,2,4,0,0,10,7,533,469,346,298,173,159,2,1,2,4,0,0,10,7,12,19,11,14,1,4,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,3,1115,521,594,311,334,200,252,2,2,1,1,0,0,7,5,509,582,300,325,199,249,2,2,1,1,0,0,7,5,12,12,11,9,1,3,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,4,1106,568,538,328,314,232,213,1,3,2,2,0,0,5,6,549,524,312,302,229,211,1,3,2,2,0,0,5,6,19,14,16,12,3,2,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,5,933,457,476,275,280,174,195,2,1,3,0,1,0,2,0,438,462,259,268,173,193,2,1,1,0,1,0,2,0,19,14,16,12,1,2,0,0,2,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,6,905,441,464,287,293,148,166,0,0,1,3,0,0,5,2,416,451,263,281,147,166,0,0,1,2,0,0,5,2,25,13,24,12,1,0,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,7,7,1023,486,537,328,338,149,193,2,2,4,1,0,0,3,3,466,529,310,331,148,192,2,2,3,1,0,0,3,3,20,8,18,7,1,1,0,0,1,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,8,1053,529,524,404,346,123,174,1,2,0,2,0,0,1,0,511,514,387,338,122,172,1,2,0,2,0,0,1,0,18,10,17,8,1,2,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,9,1073,499,574,340,378,146,185,3,3,4,1,0,0,6,7,487,566,330,371,145,185,3,3,3,1,0,0,6,6,12,8,10,7,1,0,0,0,1,0,0,0,0,1 -050,01,067,Alabama,Henry County,7,10,1229,606,623,426,383,171,230,5,3,2,2,0,0,2,5,600,618,420,379,171,229,5,3,2,2,0,0,2,5,6,5,6,4,0,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,11,1257,582,675,425,451,155,218,2,1,0,1,0,0,0,4,578,668,421,446,155,217,2,1,0,1,0,0,0,3,4,7,4,5,0,1,0,0,0,0,0,0,0,1 -050,01,067,Alabama,Henry County,7,12,1250,616,634,440,490,168,139,3,2,0,0,1,0,4,3,612,631,438,488,167,138,2,2,0,0,1,0,4,3,4,3,2,2,1,1,1,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,13,968,440,528,358,366,77,157,2,1,0,0,0,0,3,4,437,523,356,362,76,156,2,1,0,0,0,0,3,4,3,5,2,4,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,14,810,398,412,288,306,107,102,1,0,0,2,0,1,2,1,396,411,286,306,107,102,1,0,0,1,0,1,2,1,2,1,2,0,0,0,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,7,15,676,278,398,227,281,49,115,0,0,0,1,0,0,2,1,276,397,226,281,48,114,0,0,0,1,0,0,2,1,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,16,545,249,296,179,216,70,77,0,1,0,0,0,0,0,2,247,296,177,216,70,77,0,1,0,0,0,0,0,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,17,364,124,240,97,184,27,56,0,0,0,0,0,0,0,0,124,239,97,183,27,56,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,18,368,92,276,71,213,21,60,0,0,0,0,0,0,0,3,92,272,71,210,21,59,0,0,0,0,0,0,0,3,0,4,0,3,0,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,99,16752,7988,8764,5516,5811,2358,2840,26,24,20,21,2,1,66,67,7792,8615,5340,5688,2344,2819,25,23,16,19,2,1,65,65,196,149,176,123,14,21,1,1,4,2,0,0,1,2 -050,01,067,Alabama,Henry County,8,0,181,96,85,71,50,23,33,0,0,0,0,0,0,2,2,91,82,66,47,23,33,0,0,0,0,0,0,2,2,5,3,5,3,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,1,798,418,380,287,262,118,103,1,2,3,1,0,0,9,12,393,362,266,248,116,99,1,2,2,1,0,0,8,12,25,18,21,14,2,4,0,0,1,0,0,0,1,0 -050,01,067,Alabama,Henry County,8,2,1072,584,488,374,315,193,160,2,2,2,4,0,0,13,7,568,475,361,306,190,157,2,1,2,4,0,0,13,7,16,13,13,9,3,3,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,3,1105,518,587,324,331,183,246,1,2,1,1,0,0,9,7,497,570,305,318,181,242,1,2,1,1,0,0,9,7,21,17,19,13,2,4,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,4,1107,580,527,337,302,235,212,1,4,2,2,0,0,5,7,563,511,323,288,232,210,1,4,2,2,0,0,5,7,17,16,14,14,3,2,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,5,964,494,470,291,281,194,187,2,1,3,0,1,0,3,1,463,455,265,268,191,185,2,1,1,0,1,0,3,1,31,15,26,13,3,2,0,0,2,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,6,905,442,463,306,310,131,148,0,0,1,3,0,0,4,2,422,444,288,292,129,148,0,0,1,2,0,0,4,2,20,19,18,18,2,0,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,8,7,982,457,525,300,329,149,189,2,2,4,1,0,0,2,4,438,514,283,320,148,187,2,2,3,1,0,0,2,4,19,11,17,9,1,2,0,0,1,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,8,1108,566,542,424,370,139,168,1,2,0,2,0,0,2,0,552,531,411,360,138,167,1,2,0,2,0,0,2,0,14,11,13,10,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,9,1042,475,567,332,368,131,191,4,1,4,1,0,0,4,6,464,559,323,361,130,191,4,1,3,1,0,0,4,5,11,8,9,7,1,0,0,0,1,0,0,0,0,1 -050,01,067,Alabama,Henry County,8,10,1228,592,636,417,399,166,229,5,3,2,2,0,0,2,3,583,629,410,393,164,228,5,3,2,2,0,0,2,3,9,7,7,6,2,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,11,1270,577,693,406,464,168,221,3,1,0,1,0,0,0,6,573,685,402,459,168,219,3,1,0,1,0,0,0,5,4,8,4,5,0,2,0,0,0,0,0,0,0,1 -050,01,067,Alabama,Henry County,8,12,1309,636,673,462,517,169,152,3,1,0,0,0,0,2,3,633,671,460,515,169,152,2,1,0,0,0,0,2,3,3,2,2,2,0,0,1,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,13,1032,477,555,379,390,93,159,2,2,0,0,0,0,3,4,474,551,377,386,92,159,2,2,0,0,0,0,3,4,3,4,2,4,1,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,14,824,414,410,296,313,112,91,1,1,0,2,0,1,5,2,411,408,293,312,112,91,1,1,0,1,0,1,5,2,3,2,3,1,0,0,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,8,15,679,292,387,243,274,48,112,0,0,0,0,0,0,1,1,290,387,242,274,47,112,0,0,0,0,0,0,1,1,2,0,1,0,1,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,16,560,239,321,180,235,58,84,0,1,0,0,0,0,1,1,235,320,177,234,58,84,0,1,0,0,0,0,0,1,4,1,3,1,0,0,0,0,0,0,0,0,1,0 -050,01,067,Alabama,Henry County,8,17,383,144,239,115,179,29,59,0,0,0,0,0,0,0,1,144,239,115,179,29,59,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,18,404,97,307,77,223,20,81,0,0,0,0,0,0,0,3,97,303,77,220,20,80,0,0,0,0,0,0,0,3,0,4,0,3,0,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,99,16953,8098,8855,5621,5912,2359,2825,28,25,22,20,1,1,67,72,7891,8696,5444,5780,2337,2803,27,24,17,18,1,1,65,70,207,159,177,132,22,22,1,1,5,2,0,0,2,2 -050,01,067,Alabama,Henry County,9,0,198,106,92,82,52,20,38,1,0,0,0,0,0,3,2,103,85,79,46,20,37,1,0,0,0,0,0,3,2,3,7,3,6,0,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,1,795,421,374,278,257,129,103,1,2,3,1,0,0,10,11,394,358,255,245,127,99,1,2,2,1,0,0,9,11,27,16,23,12,2,4,0,0,1,0,0,0,1,0 -050,01,067,Alabama,Henry County,9,2,1075,574,501,366,329,190,158,2,2,2,5,0,0,14,7,557,486,352,319,187,154,2,1,2,5,0,0,14,7,17,15,14,10,3,4,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,3,1120,557,563,353,330,192,225,1,1,1,1,0,0,10,6,542,546,340,318,190,220,1,1,1,1,0,0,10,6,15,17,13,12,2,5,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,4,1096,558,538,337,309,213,215,1,4,2,2,0,0,5,8,542,523,324,297,210,212,1,4,2,2,0,0,5,8,16,15,13,12,3,3,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,5,937,472,465,276,276,187,187,2,1,3,0,1,0,3,1,450,451,259,264,184,185,2,1,1,0,1,0,3,1,22,14,17,12,3,2,0,0,2,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,6,910,448,462,319,315,124,142,0,0,1,3,0,0,4,2,425,445,298,299,122,142,0,0,1,2,0,0,4,2,23,17,21,16,2,0,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,9,7,1007,449,558,286,358,154,193,2,2,5,1,0,0,2,4,428,548,268,350,153,191,2,2,3,1,0,0,2,4,21,10,18,8,1,2,0,0,2,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,8,1151,612,539,454,360,155,175,1,2,0,2,0,0,2,0,595,530,438,352,154,174,1,2,0,2,0,0,2,0,17,9,16,8,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,9,1036,471,565,330,375,129,182,4,1,4,1,0,0,4,6,455,557,316,368,128,182,4,1,3,1,0,0,4,5,16,8,14,7,1,0,0,0,1,0,0,0,0,1 -050,01,067,Alabama,Henry County,9,10,1191,574,617,396,396,169,213,5,3,2,2,0,0,2,3,566,612,390,393,167,211,5,3,2,2,0,0,2,3,8,5,6,3,2,2,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,11,1283,609,674,427,458,179,208,3,1,0,1,0,0,0,6,605,667,423,454,179,206,3,1,0,1,0,0,0,5,4,7,4,4,0,2,0,0,0,0,0,0,0,1 -050,01,067,Alabama,Henry County,9,12,1262,597,665,433,489,158,172,4,1,0,0,0,0,2,3,593,663,430,487,158,172,3,1,0,0,0,0,2,3,4,2,3,2,0,0,1,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,13,1143,540,603,433,441,102,155,2,3,0,0,0,0,3,4,537,599,431,437,101,155,2,3,0,0,0,0,3,4,3,4,2,4,1,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,14,858,427,431,305,319,116,106,1,1,0,2,0,1,5,2,424,429,302,318,116,106,1,1,0,1,0,1,5,2,3,2,3,1,0,0,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,9,15,723,323,400,261,279,61,121,0,0,0,0,0,0,1,0,321,400,260,279,60,121,0,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,16,562,228,334,168,233,59,99,0,1,0,0,0,0,1,1,224,333,165,232,59,99,0,1,0,0,0,0,0,1,4,1,3,1,0,0,0,0,0,0,0,0,1,0 -050,01,067,Alabama,Henry County,9,17,373,149,224,119,167,29,56,0,0,0,0,0,0,1,1,149,224,119,167,29,56,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,18,388,99,289,79,217,20,69,0,0,0,0,0,0,0,3,99,285,79,214,20,68,0,0,0,0,0,0,0,3,0,4,0,3,0,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,99,17108,8214,8894,5702,5960,2386,2817,30,25,23,21,1,1,72,70,8009,8741,5528,5839,2364,2790,29,24,17,19,1,1,70,68,205,153,174,121,22,27,1,1,6,2,0,0,2,2 -050,01,067,Alabama,Henry County,10,0,190,99,91,75,65,21,24,1,0,0,0,0,0,2,2,97,80,73,55,21,23,1,0,0,0,0,0,2,2,2,11,2,10,0,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,1,774,384,390,270,248,101,123,1,2,3,2,0,0,9,15,356,370,246,232,99,119,1,2,2,2,0,0,8,15,28,20,24,16,2,4,0,0,1,0,0,0,1,0 -050,01,067,Alabama,Henry County,10,2,1047,554,493,363,324,172,153,3,3,3,6,0,0,13,7,542,476,353,314,170,148,3,1,3,6,0,0,13,7,12,17,10,10,2,5,0,2,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,3,1110,563,547,367,318,183,220,0,1,1,1,0,0,12,7,548,533,354,309,181,215,0,1,1,1,0,0,12,7,15,14,13,9,2,5,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,4,1090,537,553,331,325,198,215,1,3,2,3,0,0,5,7,522,535,319,310,195,212,1,3,2,3,0,0,5,7,15,18,12,15,3,3,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,5,889,448,441,264,274,175,165,2,1,3,0,1,0,3,1,428,427,249,262,172,163,2,1,1,0,1,0,3,1,20,14,15,12,3,2,0,0,2,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,6,934,468,466,318,319,145,141,0,0,2,4,0,0,3,2,447,448,299,302,143,141,0,0,2,3,0,0,3,2,21,18,19,17,2,0,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,10,7,967,439,528,300,342,132,179,1,2,4,1,0,0,2,4,423,518,286,334,131,177,1,2,3,1,0,0,2,4,16,10,14,8,1,2,0,0,1,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,8,1133,570,563,415,382,151,177,1,2,0,2,0,0,3,0,554,555,399,375,151,176,1,2,0,2,0,0,3,0,16,8,16,7,0,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,9,1048,497,551,346,361,138,182,4,1,5,1,0,0,4,6,484,542,335,353,137,182,4,1,4,1,0,0,4,5,13,9,11,8,1,0,0,0,1,0,0,0,0,1 -050,01,067,Alabama,Henry County,10,10,1175,576,599,415,387,152,203,5,3,2,3,0,0,2,3,567,593,408,383,150,201,5,3,2,3,0,0,2,3,9,6,7,4,2,2,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,11,1253,604,649,414,436,187,205,3,1,0,1,0,0,0,6,602,641,412,431,187,203,3,1,0,1,0,0,0,5,2,8,2,5,0,2,0,0,0,0,0,0,0,1 -050,01,067,Alabama,Henry County,10,12,1336,605,731,425,523,174,204,4,1,0,0,0,0,2,3,600,729,422,521,174,204,3,1,0,0,0,0,1,3,5,2,3,2,0,0,1,0,0,0,0,0,1,0 -050,01,067,Alabama,Henry County,10,13,1226,583,643,452,482,124,154,3,3,0,0,0,0,4,4,581,640,450,479,124,154,3,3,0,0,0,0,4,4,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,14,900,446,454,328,347,109,102,2,1,0,2,0,0,7,2,443,452,325,346,109,102,2,1,0,1,0,0,7,2,3,2,3,1,0,0,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,10,15,746,335,411,274,275,60,136,0,0,0,0,0,0,1,0,333,410,273,275,59,135,0,0,0,0,0,0,1,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,16,531,219,312,158,214,60,96,0,1,0,0,0,0,1,1,215,310,155,213,60,95,0,1,0,0,0,0,0,1,4,2,3,1,0,1,0,0,0,0,0,0,1,0 -050,01,067,Alabama,Henry County,10,17,384,160,224,127,160,32,63,0,0,0,0,0,0,1,1,160,224,127,160,32,63,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,18,396,104,292,84,220,20,69,0,0,0,0,0,0,0,3,104,288,84,217,20,68,0,0,0,0,0,0,0,3,0,4,0,3,0,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,99,17129,8191,8938,5726,6002,2334,2811,31,25,25,26,1,0,74,74,8006,8771,5569,5871,2315,2781,30,23,20,24,1,0,71,72,185,167,157,131,19,30,1,2,5,2,0,0,3,2 -050,01,067,Alabama,Henry County,11,0,174,91,83,68,55,19,26,1,0,0,0,0,0,3,2,89,75,66,48,19,25,1,0,0,0,0,0,3,2,2,8,2,7,0,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,1,743,379,364,260,234,100,113,1,2,3,2,0,0,15,13,357,347,242,222,98,108,1,2,2,2,0,0,14,13,22,17,18,12,2,5,0,0,1,0,0,0,1,0 -050,01,067,Alabama,Henry County,11,2,1078,554,524,372,335,160,172,3,3,4,6,0,0,15,8,535,508,356,326,158,167,3,1,3,6,0,0,15,8,19,16,16,9,2,5,0,2,1,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,3,1114,582,532,389,324,179,199,0,1,1,1,0,0,13,7,567,512,376,310,177,193,0,1,1,1,0,0,13,7,15,20,13,14,2,6,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,4,1112,527,585,324,352,195,220,1,3,2,3,0,0,5,7,511,567,311,337,192,217,1,3,2,3,0,0,5,7,16,18,13,15,3,3,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,5,865,439,426,267,275,163,149,2,1,3,0,1,0,3,1,412,410,245,262,160,146,2,1,1,0,1,0,3,1,27,16,22,13,3,3,0,0,2,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,6,912,441,471,295,318,141,147,0,0,2,4,0,0,3,2,418,456,275,304,138,147,0,0,2,3,0,0,3,2,23,15,20,14,3,0,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,11,7,970,464,506,314,355,142,144,1,2,5,1,0,0,2,4,444,494,297,345,141,142,1,2,3,1,0,0,2,4,20,12,17,10,1,2,0,0,2,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,8,1103,547,556,405,381,138,171,1,2,0,2,0,0,3,0,524,547,383,373,137,170,1,2,0,2,0,0,3,0,23,9,22,8,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,9,1065,523,542,369,366,141,168,4,1,5,1,0,0,4,6,509,534,357,359,140,168,4,1,4,1,0,0,4,5,14,8,12,7,1,0,0,0,1,0,0,0,0,1 -050,01,067,Alabama,Henry County,11,10,1221,593,628,425,422,157,197,6,3,3,3,0,0,2,3,581,622,416,417,155,196,6,3,2,3,0,0,2,3,12,6,9,5,2,1,0,0,1,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,11,1236,601,635,415,425,183,202,3,1,0,1,0,0,0,6,599,626,413,419,183,200,3,1,0,1,0,0,0,5,2,9,2,6,0,2,0,0,0,0,0,0,0,1 -050,01,067,Alabama,Henry County,11,12,1302,595,707,430,491,158,212,4,1,0,0,0,0,3,3,590,705,427,489,158,212,3,1,0,0,0,0,2,3,5,2,3,2,0,0,1,0,0,0,0,0,1,0 -050,01,067,Alabama,Henry County,11,13,1320,635,685,475,527,153,150,3,4,0,0,0,0,4,4,633,681,473,524,153,150,3,3,0,0,0,0,4,4,2,4,2,3,0,0,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,14,969,478,491,367,366,102,119,2,1,0,3,0,0,7,2,474,489,363,365,102,119,2,1,0,2,0,0,7,2,4,2,4,1,0,0,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,11,15,756,351,405,277,278,73,127,0,0,0,0,0,0,1,0,349,404,276,278,72,126,0,0,0,0,0,0,1,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,16,502,211,291,166,209,44,80,0,1,0,0,0,0,1,1,207,289,163,208,44,79,0,1,0,0,0,0,0,1,4,2,3,1,0,1,0,0,0,0,0,0,1,0 -050,01,067,Alabama,Henry County,11,17,392,174,218,136,155,37,62,0,0,0,0,0,0,1,1,174,218,136,155,37,62,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,18,409,103,306,84,231,19,72,0,0,0,0,0,0,0,3,103,302,84,228,19,71,0,0,0,0,0,0,0,3,0,4,0,3,0,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,99,17243,8288,8955,5838,6099,2304,2730,32,26,28,27,1,0,85,73,8076,8786,5659,5969,2283,2698,31,23,20,25,1,0,82,71,212,169,179,130,21,32,1,3,8,2,0,0,3,2 -050,01,067,Alabama,Henry County,12,0,178,90,88,67,55,19,29,1,0,0,0,0,0,3,4,87,78,64,46,19,28,1,0,0,0,0,0,3,4,3,10,3,9,0,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,1,759,385,374,258,239,109,116,1,2,3,2,0,0,14,15,362,353,239,223,107,111,1,2,2,2,0,0,13,15,23,21,19,16,2,5,0,0,1,0,0,0,1,0 -050,01,067,Alabama,Henry County,12,2,1076,563,513,381,344,160,152,3,3,4,6,0,0,15,8,543,496,364,334,158,147,3,1,3,6,0,0,15,8,20,17,17,10,2,5,0,2,1,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,3,1139,590,549,406,338,170,202,0,1,1,1,0,0,13,7,571,531,389,326,168,196,0,1,1,1,0,0,13,7,19,18,17,12,2,6,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,4,1138,558,580,337,347,212,220,1,3,2,3,0,0,6,7,541,560,323,330,209,217,1,3,2,3,0,0,6,7,17,20,14,17,3,3,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,5,827,401,426,249,282,143,142,2,1,3,0,1,0,3,1,376,410,229,269,140,139,2,1,1,0,1,0,3,1,25,16,20,13,3,3,0,0,2,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,6,862,417,445,283,300,129,139,0,0,2,4,0,0,3,2,397,430,266,286,126,139,0,0,2,3,0,0,3,2,20,15,17,14,3,0,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,12,7,1002,477,525,332,377,137,141,1,2,5,1,0,0,2,4,456,513,314,367,136,139,1,2,3,1,0,0,2,4,21,12,18,10,1,2,0,0,2,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,8,1102,546,556,386,380,156,172,1,2,0,2,0,0,3,0,530,546,371,371,155,171,1,2,0,2,0,0,3,0,16,10,15,9,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,9,1031,503,528,365,362,124,158,5,1,5,1,0,0,4,6,488,520,352,355,123,158,5,1,4,1,0,0,4,5,15,8,13,7,1,0,0,0,1,0,0,0,0,1 -050,01,067,Alabama,Henry County,12,10,1231,583,648,420,436,153,203,5,3,3,3,0,0,2,3,571,641,411,431,151,201,5,3,2,3,0,0,2,3,12,7,9,5,2,2,0,0,1,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,11,1265,642,623,457,418,182,196,3,1,0,1,0,0,0,7,640,613,455,412,182,194,3,1,0,1,0,0,0,5,2,10,2,6,0,2,0,0,0,0,0,0,0,2 -050,01,067,Alabama,Henry County,12,12,1287,582,705,416,490,159,211,4,1,0,0,0,0,3,3,577,703,413,488,159,211,3,1,0,0,0,0,2,3,5,2,3,2,0,0,1,0,0,0,0,0,1,0 -050,01,067,Alabama,Henry County,12,13,1361,653,708,477,542,169,158,3,4,0,0,0,0,4,4,651,704,475,539,169,158,3,3,0,0,0,0,4,4,2,4,2,3,0,0,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,14,1000,483,517,389,390,85,120,2,1,0,3,0,1,7,2,479,515,385,389,85,120,2,1,0,2,0,1,7,2,4,2,4,1,0,0,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,12,15,748,353,395,275,280,77,115,0,0,0,0,0,0,1,0,351,394,274,280,76,114,0,0,0,0,0,0,1,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,16,504,215,289,173,204,41,83,0,1,0,0,0,0,1,1,211,287,170,203,41,82,0,1,0,0,0,0,0,1,4,2,3,1,0,1,0,0,0,0,0,0,1,0 -050,01,067,Alabama,Henry County,12,17,380,158,222,125,160,32,61,0,0,0,0,0,0,1,1,158,222,125,160,32,61,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,18,412,103,309,84,230,19,76,0,0,0,0,0,0,0,3,103,305,84,227,19,75,0,0,0,0,0,0,0,3,0,4,0,3,0,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,99,17302,8302,9000,5880,6174,2276,2694,32,26,28,27,1,1,85,78,8092,8821,5703,6036,2255,2661,31,23,20,25,1,1,82,75,210,179,177,138,21,33,1,3,8,2,0,0,3,3 -050,01,067,Alabama,Henry County,13,0,178,90,88,66,56,20,28,1,0,0,0,0,0,3,4,87,78,63,46,20,28,1,0,0,0,0,0,3,4,3,10,3,10,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,1,756,386,370,256,236,110,114,3,4,2,2,0,0,15,14,363,350,238,220,108,112,2,3,1,2,0,0,14,13,23,20,18,16,2,2,1,1,1,0,0,0,1,1 -050,01,067,Alabama,Henry County,13,2,1073,556,517,380,345,158,152,2,5,2,7,0,0,14,8,538,498,363,335,157,147,2,1,2,7,0,0,14,8,18,19,17,10,1,5,0,4,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,3,1136,592,544,404,336,170,199,4,3,0,1,0,0,14,5,573,528,389,325,167,195,3,2,0,1,0,0,14,5,19,16,15,11,3,4,1,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,4,1132,558,574,335,344,210,216,4,4,2,3,0,0,7,7,540,556,321,328,206,215,4,3,2,3,0,0,7,7,18,18,14,16,4,1,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,5,836,403,433,252,282,143,144,2,3,1,2,1,0,4,2,377,417,231,269,140,141,2,3,0,2,0,0,4,2,26,16,21,13,3,3,0,0,1,0,1,0,0,0 -050,01,067,Alabama,Henry County,13,6,864,421,443,282,297,131,140,1,1,3,3,1,0,3,2,398,430,266,285,126,139,1,1,2,3,0,0,3,2,23,13,16,12,5,1,0,0,1,0,1,0,0,0 -050,01,067,Alabama,Henry County,13,7,1006,478,528,333,379,138,142,2,1,4,1,0,0,1,5,456,517,314,370,137,140,1,1,3,1,0,0,1,5,22,11,19,9,1,2,1,0,1,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,8,1096,546,550,380,377,157,170,5,2,0,0,1,0,3,1,529,540,366,368,156,169,4,2,0,0,0,0,3,1,17,10,14,9,1,1,1,0,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,13,9,1023,497,526,364,359,123,158,4,2,3,2,0,0,3,5,483,518,351,352,122,157,4,2,3,2,0,0,3,5,14,8,13,7,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,10,1217,577,640,415,432,151,203,4,1,2,4,0,0,5,0,569,634,408,427,150,202,4,1,2,4,0,0,5,0,8,6,7,5,1,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,11,1266,646,620,457,418,183,197,4,2,0,1,0,0,2,2,642,611,454,412,182,195,4,2,0,1,0,0,2,1,4,9,3,6,1,2,0,0,0,0,0,0,0,1 -050,01,067,Alabama,Henry County,13,12,1293,582,711,418,491,159,215,3,2,0,0,0,0,2,3,579,709,415,489,159,215,3,2,0,0,0,0,2,3,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,13,1371,658,713,481,548,170,159,3,2,0,0,0,0,4,4,655,710,478,545,170,159,3,2,0,0,0,0,4,4,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,14,998,481,517,389,390,85,122,4,1,0,3,0,0,3,1,478,516,386,389,85,122,4,1,0,3,0,0,3,1,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,15,759,357,402,279,282,77,116,0,1,0,1,0,0,1,2,356,401,278,281,77,116,0,1,0,1,0,0,1,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,16,512,219,293,175,205,43,81,0,2,0,1,0,0,1,4,216,292,172,204,43,81,0,2,0,1,0,0,1,4,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,17,380,157,223,124,160,33,61,0,0,0,0,0,0,0,2,157,222,124,159,33,61,0,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,18,411,104,307,85,231,19,75,0,0,0,0,0,0,0,1,104,304,85,228,19,75,0,0,0,0,0,0,0,1,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,99,17307,8308,8999,5875,6168,2280,2692,46,36,19,31,3,0,85,72,8100,8831,5702,6032,2257,2669,42,29,15,31,0,0,84,70,208,168,173,136,23,23,4,7,4,0,3,0,1,2 -050,01,069,Alabama,Houston County,1,0,1257,609,648,420,415,175,215,1,1,4,1,0,0,9,16,590,634,405,404,174,213,1,1,4,1,0,0,6,15,19,14,15,11,1,2,0,0,0,0,0,0,3,1 -050,01,069,Alabama,Houston County,1,1,4783,2480,2303,1620,1503,795,738,6,9,16,15,1,1,42,37,2427,2253,1580,1464,789,729,4,9,16,15,1,1,37,35,53,50,40,39,6,9,2,0,0,0,0,0,5,2 -050,01,069,Alabama,Houston County,1,2,6316,3218,3098,2108,2015,1037,1019,14,7,23,24,0,1,36,32,3167,3045,2067,1975,1030,1011,13,7,23,24,0,1,34,27,51,53,41,40,7,8,1,0,0,0,0,0,2,5 -050,01,069,Alabama,Houston County,1,3,6662,3419,3243,2281,2177,1072,1017,9,12,26,10,0,0,31,27,3371,3198,2244,2144,1063,1005,9,12,26,10,0,0,29,27,48,45,37,33,9,12,0,0,0,0,0,0,2,0 -050,01,069,Alabama,Houston County,1,4,6141,3091,3050,2096,2036,941,953,11,12,21,23,0,1,22,25,3041,2993,2058,1992,931,942,11,11,20,23,0,1,21,24,50,57,38,44,10,11,0,1,1,0,0,0,1,1 -050,01,069,Alabama,Houston County,1,5,5146,2474,2672,1716,1705,711,922,12,13,23,11,0,0,12,21,2405,2636,1651,1675,709,919,12,12,22,10,0,0,11,20,69,36,65,30,2,3,0,1,1,1,0,0,1,1 -050,01,069,Alabama,Houston County,1,6,5758,2709,3049,1972,2099,685,891,12,14,18,18,2,1,20,26,2645,3006,1925,2065,674,885,12,13,16,18,1,1,17,24,64,43,47,34,11,6,0,1,2,0,1,0,3,2 -050,01,069,Alabama,Houston County,1,7,5940,2792,3148,2098,2182,637,896,11,6,30,39,1,0,15,25,2738,3107,2052,2150,632,888,10,5,28,39,1,0,15,25,54,41,46,32,5,8,1,1,2,0,0,0,0,0 -050,01,069,Alabama,Houston County,1,8,6896,3329,3567,2557,2592,700,896,15,16,32,36,0,2,25,25,3276,3526,2512,2555,693,892,15,16,32,36,0,2,24,25,53,41,45,37,7,4,0,0,0,0,0,0,1,0 -050,01,069,Alabama,Houston County,1,9,6923,3357,3566,2567,2625,735,876,18,19,18,27,2,1,17,18,3326,3532,2543,2598,730,872,16,18,18,27,2,1,17,16,31,34,24,27,5,4,2,1,0,0,0,0,0,2 -050,01,069,Alabama,Houston County,1,10,6462,3054,3408,2380,2537,627,807,13,18,16,28,0,0,18,18,3027,3388,2358,2517,622,807,13,18,16,28,0,0,18,18,27,20,22,20,5,0,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,1,11,5834,2849,2985,2306,2368,489,566,20,9,21,20,0,0,13,22,2832,2968,2290,2353,488,564,20,9,21,20,0,0,13,22,17,17,16,15,1,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,1,12,4724,2256,2468,1829,1955,390,467,11,11,10,11,1,0,15,24,2239,2451,1816,1940,386,465,11,11,10,11,1,0,15,24,17,17,13,15,4,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,1,13,3825,1765,2060,1458,1664,284,377,6,6,6,5,0,0,11,8,1757,2039,1451,1650,283,373,6,5,6,4,0,0,11,7,8,21,7,14,1,4,0,1,0,1,0,0,0,1 -050,01,069,Alabama,Houston County,1,14,3466,1578,1888,1309,1513,258,350,4,6,2,10,0,0,5,9,1568,1875,1302,1502,255,348,4,6,2,10,0,0,5,9,10,13,7,11,3,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,1,15,3108,1330,1778,1117,1447,199,310,3,3,5,7,0,0,6,11,1320,1766,1109,1439,197,307,3,3,5,7,0,0,6,10,10,12,8,8,2,3,0,0,0,0,0,0,0,1 -050,01,069,Alabama,Houston County,1,16,2443,929,1514,784,1254,138,250,2,3,0,2,1,0,4,5,921,1507,777,1248,137,249,2,3,0,2,1,0,4,5,8,7,7,6,1,1,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,1,17,1657,564,1093,470,925,88,161,1,1,0,1,0,0,5,5,561,1085,468,919,87,159,1,1,0,1,0,0,5,5,3,8,2,6,1,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,1,18,1490,386,1104,311,926,74,172,0,1,0,1,0,0,1,4,384,1102,309,924,74,172,0,1,0,1,0,0,1,4,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,1,99,88831,42189,46642,31399,33938,10035,11883,169,167,271,289,8,7,307,358,41595,46111,30917,33514,9954,11800,163,161,265,287,7,7,289,342,594,531,482,424,81,83,6,6,6,2,1,0,18,16 -050,01,069,Alabama,Houston County,2,0,1264,614,650,423,417,177,218,1,1,4,1,0,0,9,13,594,636,407,406,176,216,1,1,4,1,0,0,6,12,20,14,16,11,1,2,0,0,0,0,0,0,3,1 -050,01,069,Alabama,Houston County,2,1,4751,2462,2289,1607,1492,788,734,6,9,16,15,1,1,44,38,2409,2239,1567,1453,782,725,4,9,16,15,1,1,39,36,53,50,40,39,6,9,2,0,0,0,0,0,5,2 -050,01,069,Alabama,Houston County,2,2,6285,3204,3081,2090,2001,1033,1014,14,7,23,24,0,1,44,34,3153,3028,2049,1961,1026,1006,13,7,23,24,0,1,42,29,51,53,41,40,7,8,1,0,0,0,0,0,2,5 -050,01,069,Alabama,Houston County,2,3,6698,3436,3262,2284,2182,1083,1026,9,12,26,10,0,0,34,32,3388,3217,2247,2149,1074,1014,9,12,26,10,0,0,32,32,48,45,37,33,9,12,0,0,0,0,0,0,2,0 -050,01,069,Alabama,Houston County,2,4,6160,3104,3056,2104,2039,945,956,11,12,21,23,0,1,23,25,3054,2999,2066,1995,935,945,11,11,20,23,0,1,22,24,50,57,38,44,10,11,0,1,1,0,0,0,1,1 -050,01,069,Alabama,Houston County,2,5,5184,2491,2693,1725,1717,718,931,12,13,22,11,0,0,14,21,2422,2657,1660,1687,716,928,12,12,21,10,0,0,13,20,69,36,65,30,2,3,0,1,1,1,0,0,1,1 -050,01,069,Alabama,Houston County,2,6,5713,2689,3024,1953,2076,682,888,12,14,18,18,2,1,22,27,2625,2981,1906,2042,671,882,12,13,16,18,1,1,19,25,64,43,47,34,11,6,0,1,2,0,1,0,3,2 -050,01,069,Alabama,Houston County,2,7,5932,2790,3142,2095,2177,637,896,11,6,30,39,1,0,16,24,2736,3101,2049,2145,632,888,10,5,28,39,1,0,16,24,54,41,46,32,5,8,1,1,2,0,0,0,0,0 -050,01,069,Alabama,Houston County,2,8,6875,3319,3556,2545,2577,700,897,15,16,32,36,0,2,27,28,3266,3515,2500,2540,693,893,15,16,32,36,0,2,26,28,53,41,45,37,7,4,0,0,0,0,0,0,1,0 -050,01,069,Alabama,Houston County,2,9,6939,3363,3576,2568,2625,741,883,18,19,18,27,2,1,16,21,3332,3542,2544,2598,736,879,16,18,18,27,2,1,16,19,31,34,24,27,5,4,2,1,0,0,0,0,0,2 -050,01,069,Alabama,Houston County,2,10,6494,3068,3426,2390,2550,631,813,13,18,16,28,0,0,18,17,3041,3406,2368,2530,626,813,13,18,16,28,0,0,18,17,27,20,22,20,5,0,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,2,11,5894,2881,3013,2327,2388,498,573,20,9,21,20,0,0,15,23,2864,2996,2311,2373,497,571,20,9,21,20,0,0,15,23,17,17,16,15,1,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,2,12,4754,2270,2484,1841,1970,393,471,11,11,10,11,1,0,14,21,2253,2467,1828,1955,389,469,11,11,10,11,1,0,14,21,17,17,13,15,4,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,2,13,3848,1778,2070,1467,1670,288,379,6,6,6,5,0,0,11,10,1770,2049,1460,1656,287,375,6,5,6,4,0,0,11,9,8,21,7,14,1,4,0,1,0,1,0,0,0,1 -050,01,069,Alabama,Houston County,2,14,3457,1574,1883,1305,1507,259,351,4,6,2,10,0,0,4,9,1564,1870,1298,1496,256,349,4,6,2,10,0,0,4,9,10,13,7,11,3,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,2,15,3095,1325,1770,1110,1437,201,312,3,3,5,7,0,0,6,11,1315,1758,1102,1429,199,309,3,3,5,7,0,0,6,10,10,12,8,8,2,3,0,0,0,0,0,0,0,1 -050,01,069,Alabama,Houston County,2,16,2442,928,1514,782,1251,139,253,2,3,0,2,1,0,4,5,920,1507,775,1245,138,252,2,3,0,2,1,0,4,5,8,7,7,6,1,1,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,2,17,1667,568,1099,474,926,88,165,1,1,0,1,0,0,5,6,565,1091,472,920,87,163,1,1,0,1,0,0,5,6,3,8,2,6,1,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,2,18,1491,387,1104,311,925,74,173,0,1,0,1,0,0,2,4,385,1102,309,923,74,173,0,1,0,1,0,0,2,4,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,2,99,88943,42251,46692,31401,33927,10075,11933,169,167,270,289,8,7,328,369,41656,46161,30918,33503,9994,11850,163,161,264,287,7,7,310,353,595,531,483,424,81,83,6,6,6,2,1,0,18,16 -050,01,069,Alabama,Houston County,3,0,1326,694,632,431,407,238,207,1,1,4,3,0,0,20,14,679,610,420,389,237,204,1,1,4,3,0,0,17,13,15,22,11,18,1,3,0,0,0,0,0,0,3,1 -050,01,069,Alabama,Houston County,3,1,4807,2436,2371,1617,1521,743,763,6,14,18,16,1,1,51,56,2377,2309,1570,1472,739,754,4,14,18,16,1,1,45,52,59,62,47,49,4,9,2,0,0,0,0,0,6,4 -050,01,069,Alabama,Houston County,3,2,6235,3198,3037,2067,1986,1042,977,16,5,20,24,0,2,53,43,3132,2972,2013,1934,1034,969,15,5,20,24,0,2,50,38,66,65,54,52,8,8,1,0,0,0,0,0,3,5 -050,01,069,Alabama,Houston County,3,3,6810,3525,3285,2353,2131,1095,1087,10,16,29,13,0,0,38,38,3473,3231,2315,2092,1083,1072,10,16,29,13,0,0,36,38,52,54,38,39,12,15,0,0,0,0,0,0,2,0 -050,01,069,Alabama,Houston County,3,4,6193,3121,3072,2109,2054,951,951,13,19,24,21,0,2,24,25,3071,3020,2070,2018,941,937,13,18,23,21,0,2,24,24,50,52,39,36,10,14,0,1,1,0,0,0,0,1 -050,01,069,Alabama,Houston County,3,5,5321,2561,2760,1765,1784,747,931,13,11,21,15,0,0,15,19,2492,2713,1704,1743,742,928,12,10,20,14,0,0,14,18,69,47,61,41,5,3,1,1,1,1,0,0,1,1 -050,01,069,Alabama,Houston County,3,6,5588,2611,2977,1907,2025,650,880,15,18,18,23,2,1,19,30,2550,2912,1865,1974,638,870,15,17,16,23,1,1,15,27,61,65,42,51,12,10,0,1,2,0,1,0,4,3 -050,01,069,Alabama,Houston County,3,7,5986,2827,3159,2125,2182,643,904,11,8,28,40,1,0,19,25,2763,3118,2068,2150,639,896,10,7,26,40,1,0,19,25,64,41,57,32,4,8,1,1,2,0,0,0,0,0 -050,01,069,Alabama,Houston County,3,8,6584,3156,3428,2387,2476,703,875,13,15,32,35,0,2,21,25,3108,3389,2345,2444,698,868,13,15,32,35,0,2,20,25,48,39,42,32,5,7,0,0,0,0,0,0,1,0 -050,01,069,Alabama,Houston County,3,9,7046,3396,3650,2600,2669,731,909,18,19,25,28,2,1,20,24,3362,3613,2574,2642,726,902,16,18,24,28,2,1,20,22,34,37,26,27,5,7,2,1,1,0,0,0,0,2 -050,01,069,Alabama,Houston County,3,10,6564,3149,3415,2468,2549,628,803,15,19,18,29,0,0,20,15,3116,3391,2440,2525,623,803,15,19,18,29,0,0,20,15,33,24,28,24,5,0,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,3,11,6051,2917,3134,2322,2454,535,624,20,12,24,25,0,0,16,19,2905,3115,2311,2438,534,621,20,12,24,25,0,0,16,19,12,19,11,16,1,3,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,3,12,4958,2390,2568,1920,2053,431,460,16,17,10,18,0,0,13,20,2364,2549,1898,2036,427,458,16,17,10,18,0,0,13,20,26,19,22,17,4,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,3,13,3912,1792,2120,1481,1689,285,405,7,6,8,8,0,0,11,12,1783,2105,1473,1679,284,402,7,6,8,7,0,0,11,11,9,15,8,10,1,3,0,0,0,1,0,0,0,1 -050,01,069,Alabama,Houston County,3,14,3477,1617,1860,1347,1506,260,329,4,6,2,10,0,0,4,9,1606,1841,1339,1489,257,327,4,6,2,10,0,0,4,9,11,19,8,17,3,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,3,15,3052,1292,1760,1081,1426,196,308,3,5,6,8,0,0,6,13,1283,1741,1074,1411,194,305,3,5,6,8,0,0,6,12,9,19,7,15,2,3,0,0,0,0,0,0,0,1 -050,01,069,Alabama,Houston County,3,16,2423,920,1503,777,1232,137,258,2,3,0,2,1,0,3,8,911,1496,769,1225,136,258,2,3,0,2,1,0,3,8,9,7,8,7,1,0,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,3,17,1666,575,1091,483,914,84,168,1,1,0,1,0,0,7,7,570,1082,481,907,81,166,1,1,0,1,0,0,7,7,5,9,2,7,3,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,3,18,1491,387,1104,315,937,70,160,0,1,0,1,0,0,2,5,385,1099,313,932,70,160,0,1,0,1,0,0,2,5,2,5,2,5,0,0,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,3,99,89490,42564,46926,31555,33995,10169,11999,184,196,287,320,7,9,362,407,41930,46306,31042,33500,10083,11900,177,191,280,318,6,9,342,388,634,620,513,495,86,99,7,5,7,2,1,0,20,19 -050,01,069,Alabama,Houston County,4,0,1179,586,593,388,358,176,217,2,1,2,2,0,0,18,15,570,580,376,347,175,216,2,1,2,2,0,0,15,14,16,13,12,11,1,1,0,0,0,0,0,0,3,1 -050,01,069,Alabama,Houston County,4,1,4881,2470,2411,1641,1563,747,766,8,16,17,11,1,1,56,54,2401,2333,1586,1503,743,755,6,16,17,11,1,0,48,48,69,78,55,60,4,11,2,0,0,0,0,1,8,6 -050,01,069,Alabama,Houston County,4,2,6165,3130,3035,2018,1978,1020,972,16,9,21,27,0,1,55,48,3056,2972,1961,1930,1009,963,15,8,21,27,0,1,50,43,74,63,57,48,11,9,1,1,0,0,0,0,5,5 -050,01,069,Alabama,Houston County,4,3,6763,3508,3255,2334,2101,1091,1091,12,14,25,14,0,0,46,35,3448,3199,2287,2059,1083,1078,11,14,25,14,0,0,42,34,60,56,47,42,8,13,1,0,0,0,0,0,4,1 -050,01,069,Alabama,Houston County,4,4,6227,3129,3098,2107,2059,960,969,13,16,23,24,0,2,26,28,3069,3045,2062,2021,948,957,12,14,22,24,0,2,25,27,60,53,45,38,12,12,1,2,1,0,0,0,1,1 -050,01,069,Alabama,Houston County,4,5,5397,2646,2751,1799,1778,795,925,13,11,19,16,0,1,20,20,2567,2701,1730,1735,790,921,12,10,18,15,0,1,17,19,79,50,69,43,5,4,1,1,1,1,0,0,3,1 -050,01,069,Alabama,Houston County,4,6,5456,2510,2946,1824,1979,631,887,10,18,18,28,2,2,25,32,2431,2872,1770,1920,619,880,9,16,16,28,1,2,16,26,79,74,54,59,12,7,1,2,2,0,1,0,9,6 -050,01,069,Alabama,Houston County,4,7,6084,2897,3187,2187,2238,645,876,15,13,25,31,0,0,25,29,2834,3137,2137,2200,638,867,13,11,23,30,0,0,23,29,63,50,50,38,7,9,2,2,2,1,0,0,2,0 -050,01,069,Alabama,Houston County,4,8,6449,3118,3331,2337,2385,711,871,14,12,35,38,0,1,21,24,3053,3287,2280,2346,705,866,13,12,35,38,0,1,20,24,65,44,57,39,6,5,1,0,0,0,0,0,1,0 -050,01,069,Alabama,Houston County,4,9,7109,3381,3728,2583,2719,733,931,16,15,23,35,2,1,24,27,3343,3685,2553,2685,728,926,14,14,22,35,2,1,24,24,38,43,30,34,5,5,2,1,1,0,0,0,0,3 -050,01,069,Alabama,Houston County,4,10,6668,3239,3429,2522,2545,667,824,16,15,14,24,0,0,20,21,3195,3404,2483,2521,662,823,16,15,14,24,0,0,20,21,44,25,39,24,5,1,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,4,11,6111,2903,3208,2284,2460,566,678,15,18,22,26,0,0,16,26,2886,3187,2268,2441,565,676,15,18,22,26,0,0,16,26,17,21,16,19,1,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,4,12,5225,2547,2678,2051,2148,450,475,19,16,12,13,1,0,14,26,2523,2656,2032,2128,445,473,19,16,12,13,1,0,14,26,24,22,19,20,5,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,4,13,4092,1882,2210,1570,1759,280,421,7,7,11,9,0,2,14,12,1870,2187,1559,1741,279,419,7,7,11,8,0,2,14,10,12,23,11,18,1,2,0,0,0,1,0,0,0,2 -050,01,069,Alabama,Houston County,4,14,3527,1614,1913,1322,1538,282,348,4,5,2,7,0,0,4,15,1601,1895,1312,1521,279,347,4,5,2,7,0,0,4,15,13,18,10,17,3,1,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,4,15,3056,1369,1687,1141,1388,213,276,4,4,5,6,0,1,6,12,1359,1674,1133,1378,211,273,4,4,5,6,0,1,6,12,10,13,8,10,2,3,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,4,16,2428,921,1507,790,1238,125,255,2,3,0,5,1,0,3,6,911,1498,781,1229,124,255,2,3,0,5,1,0,3,6,10,9,9,9,1,0,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,4,17,1656,571,1085,482,908,82,170,1,1,1,1,0,0,5,5,566,1076,479,901,80,168,1,1,1,1,0,0,5,5,5,9,3,7,2,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,4,18,1467,389,1078,308,915,79,157,0,1,0,1,0,0,2,4,387,1070,306,907,79,157,0,1,0,1,0,0,2,4,2,8,2,8,0,0,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,4,99,89940,42810,47130,31688,34057,10253,12109,187,195,275,318,7,12,400,439,42070,46458,31095,33513,10162,12020,175,186,268,315,6,11,364,413,740,672,593,544,91,89,12,9,7,3,1,1,36,26 -050,01,069,Alabama,Houston County,5,0,1273,657,616,445,416,188,179,1,1,2,2,1,0,20,18,634,599,425,402,187,178,1,1,2,2,1,0,18,16,23,17,20,14,1,1,0,0,0,0,0,0,2,2 -050,01,069,Alabama,Houston County,5,1,5022,2532,2490,1675,1562,769,834,8,11,18,15,1,1,61,67,2446,2414,1608,1506,763,824,5,11,16,15,1,0,53,58,86,76,67,56,6,10,3,0,2,0,0,1,8,9 -050,01,069,Alabama,Houston County,5,2,6201,3175,3026,2052,1999,1018,933,14,9,24,31,0,1,67,53,3093,2944,1987,1937,1010,922,11,7,24,31,0,1,61,46,82,82,65,62,8,11,3,2,0,0,0,0,6,7 -050,01,069,Alabama,Houston County,5,3,6793,3462,3331,2265,2128,1103,1124,15,13,25,20,0,0,54,46,3391,3273,2213,2084,1093,1112,13,13,24,20,0,0,48,44,71,58,52,44,10,12,2,0,1,0,0,0,6,2 -050,01,069,Alabama,Houston County,5,4,6333,3220,3113,2148,2030,1006,1012,12,16,22,26,0,0,32,29,3161,3050,2102,1984,997,999,11,14,22,26,0,0,29,27,59,63,46,46,9,13,1,2,0,0,0,0,3,2 -050,01,069,Alabama,Houston County,5,5,5520,2693,2827,1830,1833,800,946,14,12,23,12,1,1,25,23,2606,2768,1755,1787,794,939,13,10,22,11,1,1,21,20,87,59,75,46,6,7,1,2,1,1,0,0,4,3 -050,01,069,Alabama,Houston County,5,6,5707,2630,3077,1888,2028,686,970,13,16,15,23,2,2,26,38,2525,3005,1806,1976,678,961,10,13,13,22,1,2,17,31,105,72,82,52,8,9,3,3,2,1,1,0,9,7 -050,01,069,Alabama,Houston County,5,7,6142,2949,3193,2217,2243,666,884,13,9,26,24,2,1,25,32,2868,3116,2150,2179,659,874,11,7,25,24,2,0,21,32,81,77,67,64,7,10,2,2,1,0,0,1,4,0 -050,01,069,Alabama,Houston County,5,8,6387,3059,3328,2284,2354,718,885,13,14,24,46,0,2,20,27,2990,3281,2226,2314,711,880,10,14,24,45,0,2,19,26,69,47,58,40,7,5,3,0,0,1,0,0,1,1 -050,01,069,Alabama,Houston County,5,9,7039,3357,3682,2539,2653,743,959,16,13,36,29,2,1,21,27,3314,3637,2505,2618,738,954,13,12,35,29,2,1,21,23,43,45,34,35,5,5,3,1,1,0,0,0,0,4 -050,01,069,Alabama,Houston County,5,10,6797,3245,3552,2500,2632,690,849,17,24,13,24,0,0,25,23,3210,3520,2471,2601,686,848,17,24,12,24,0,0,24,23,35,32,29,31,4,1,0,0,1,0,0,0,1,0 -050,01,069,Alabama,Houston County,5,11,6223,2988,3235,2334,2443,607,722,11,14,20,27,0,0,16,29,2966,3213,2313,2424,606,719,11,14,20,27,0,0,16,29,22,22,21,19,1,3,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,5,12,5474,2685,2789,2170,2229,466,497,20,16,11,23,1,0,17,24,2658,2769,2149,2213,460,495,20,16,11,23,1,0,17,22,27,20,21,16,6,2,0,0,0,0,0,0,0,2 -050,01,069,Alabama,Houston County,5,13,4243,1948,2295,1607,1812,309,440,8,12,9,15,0,1,15,15,1937,2269,1597,1791,308,438,8,11,9,14,0,1,15,14,11,26,10,21,1,2,0,1,0,1,0,0,0,1 -050,01,069,Alabama,Houston County,5,14,3616,1645,1971,1361,1605,271,343,5,4,2,9,0,0,6,10,1631,1956,1349,1591,269,342,5,4,2,9,0,0,6,10,14,15,12,14,2,1,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,5,15,2989,1335,1654,1136,1343,184,289,4,5,6,7,0,0,5,10,1328,1637,1130,1329,183,287,4,5,6,7,0,0,5,9,7,17,6,14,1,2,0,0,0,0,0,0,0,1 -050,01,069,Alabama,Houston County,5,16,2465,960,1505,803,1252,150,236,2,4,0,5,1,0,4,8,953,1496,797,1244,149,235,2,4,0,5,1,0,4,8,7,9,6,8,1,1,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,5,17,1662,563,1099,477,917,80,176,0,1,1,0,0,0,5,5,558,1091,473,910,79,175,0,1,1,0,0,0,5,5,5,8,4,7,1,1,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,5,18,1435,397,1038,322,894,73,138,0,1,0,1,0,0,2,4,395,1032,320,889,73,137,0,1,0,1,0,0,2,4,2,6,2,5,0,1,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,5,99,91321,43500,47821,32053,34373,10527,12416,186,195,277,339,11,10,446,488,42664,47070,31376,33779,10443,12319,165,182,268,335,10,8,402,447,836,751,677,594,84,97,21,13,9,4,1,2,44,41 -050,01,069,Alabama,Houston County,6,0,1331,691,640,463,404,196,207,1,1,7,3,0,1,24,24,666,611,442,379,194,206,1,1,7,3,0,0,22,22,25,29,21,25,2,1,0,0,0,0,0,1,2,2 -050,01,069,Alabama,Houston County,6,1,5146,2611,2535,1757,1604,758,827,8,7,16,16,1,1,71,80,2519,2457,1689,1549,750,816,4,7,14,16,1,0,61,69,92,78,68,55,8,11,4,0,2,0,0,1,10,11 -050,01,069,Alabama,Houston County,6,2,6257,3198,3059,2071,1997,1012,963,15,7,28,27,0,2,72,63,3109,2971,2006,1928,1001,952,12,5,27,27,0,2,63,57,89,88,65,69,11,11,3,2,1,0,0,0,9,6 -050,01,069,Alabama,Houston County,6,3,6850,3450,3400,2220,2178,1141,1126,13,18,26,21,0,1,50,56,3363,3331,2154,2124,1128,1115,11,17,25,21,0,1,45,53,87,69,66,54,13,11,2,1,1,0,0,0,5,3 -050,01,069,Alabama,Houston County,6,4,6379,3241,3138,2152,2042,1019,1027,17,13,21,24,0,1,32,31,3179,3077,2103,1998,1010,1015,14,11,21,23,0,1,31,29,62,61,49,44,9,12,3,2,0,1,0,0,1,2 -050,01,069,Alabama,Houston County,6,5,5644,2719,2925,1832,1912,821,961,14,13,22,9,1,1,29,29,2629,2855,1753,1854,816,955,12,11,21,8,1,1,26,26,90,70,79,58,5,6,2,2,1,1,0,0,3,3 -050,01,069,Alabama,Houston County,6,6,5720,2659,3061,1899,1988,690,989,17,21,22,22,2,2,29,39,2549,2994,1814,1943,682,979,14,18,19,21,1,2,19,31,110,67,85,45,8,10,3,3,3,1,1,0,10,8 -050,01,069,Alabama,Houston County,6,7,6173,2972,3201,2204,2237,700,887,13,7,25,32,0,3,30,35,2885,3126,2134,2173,691,880,11,5,23,32,0,2,26,34,87,75,70,64,9,7,2,2,2,0,0,1,4,1 -050,01,069,Alabama,Houston County,6,8,6298,2981,3317,2251,2304,679,927,13,7,19,47,0,1,19,31,2894,3267,2175,2264,672,919,10,7,19,46,0,1,18,30,87,50,76,40,7,8,3,0,0,1,0,0,1,1 -050,01,069,Alabama,Houston County,6,9,7096,3435,3661,2595,2660,763,925,17,13,37,34,2,1,21,28,3388,3606,2558,2614,758,920,14,12,35,34,2,1,21,25,47,55,37,46,5,5,3,1,2,0,0,0,0,3 -050,01,069,Alabama,Houston County,6,10,6894,3328,3566,2533,2600,731,886,18,20,15,30,0,1,31,29,3284,3531,2498,2568,727,885,18,19,13,30,0,1,28,28,44,35,35,32,4,1,0,1,2,0,0,0,3,1 -050,01,069,Alabama,Houston County,6,11,6369,3047,3322,2357,2500,638,750,11,16,22,26,1,1,18,29,3025,3290,2336,2473,637,747,11,16,22,24,1,1,18,29,22,32,21,27,1,3,0,0,0,2,0,0,0,0 -050,01,069,Alabama,Houston County,6,12,5754,2741,3013,2200,2387,495,561,17,13,12,23,0,0,17,29,2715,2993,2179,2371,490,559,17,13,12,23,0,0,17,27,26,20,21,16,5,2,0,0,0,0,0,0,0,2 -050,01,069,Alabama,Houston County,6,13,4464,2109,2355,1730,1850,345,461,7,13,12,12,0,1,15,18,2094,2332,1716,1833,344,459,7,12,12,11,0,1,15,16,15,23,14,17,1,2,0,1,0,1,0,0,0,2 -050,01,069,Alabama,Houston County,6,14,3671,1650,2021,1377,1651,256,342,5,7,5,10,0,0,7,11,1636,1996,1366,1628,254,341,4,7,5,9,0,0,7,11,14,25,11,23,2,1,1,0,0,1,0,0,0,0 -050,01,069,Alabama,Houston County,6,15,2984,1364,1620,1134,1310,214,288,4,6,7,6,0,0,5,10,1355,1607,1127,1299,213,286,3,6,7,6,0,0,5,10,9,13,7,11,1,2,1,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,6,16,2439,950,1489,812,1238,131,236,3,3,0,4,1,0,3,8,938,1481,802,1230,129,236,3,3,0,4,1,0,3,8,12,8,10,8,2,0,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,6,17,1685,580,1105,486,914,87,183,1,1,1,0,0,0,5,7,576,1096,483,906,86,182,1,1,1,0,0,0,5,7,4,9,3,8,1,1,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,6,18,1439,397,1042,324,889,71,145,0,1,0,1,0,0,2,6,394,1035,321,883,71,144,0,1,0,1,0,0,2,6,3,7,3,6,0,1,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,6,99,92593,44123,48470,32397,34665,10747,12691,194,187,297,347,8,17,480,563,43198,47656,31656,34017,10653,12596,167,172,283,339,7,14,432,518,925,814,741,648,94,95,27,15,14,8,1,3,48,45 -050,01,069,Alabama,Houston County,7,0,1233,651,582,427,375,189,182,3,1,7,2,1,1,24,21,625,558,405,355,188,180,2,1,7,2,1,0,22,20,26,24,22,20,1,2,1,0,0,0,0,1,2,1 -050,01,069,Alabama,Houston County,7,1,5296,2701,2595,1747,1634,819,849,8,8,25,20,2,1,100,83,2595,2485,1665,1550,814,838,5,8,21,20,1,0,89,69,106,110,82,84,5,11,3,0,4,0,1,1,11,14 -050,01,069,Alabama,Houston County,7,2,6318,3232,3086,2115,2012,992,967,16,9,25,32,0,3,84,63,3130,2987,2040,1935,980,956,13,6,24,31,0,3,73,56,102,99,75,77,12,11,3,3,1,1,0,0,11,7 -050,01,069,Alabama,Houston County,7,3,6735,3422,3313,2166,2113,1165,1111,13,11,27,20,0,0,51,58,3335,3239,2103,2053,1151,1103,9,11,27,18,0,0,45,54,87,74,63,60,14,8,4,0,0,2,0,0,6,4 -050,01,069,Alabama,Houston County,7,4,6587,3362,3225,2221,2062,1058,1077,17,19,21,17,2,1,43,49,3290,3151,2165,2014,1048,1063,14,16,21,16,2,1,40,41,72,74,56,48,10,14,3,3,0,1,0,0,3,8 -050,01,069,Alabama,Houston County,7,5,5652,2738,2914,1841,1911,829,930,18,16,17,20,3,3,30,34,2633,2842,1753,1854,822,925,15,13,16,19,3,1,24,30,105,72,88,57,7,5,3,3,1,1,0,2,6,4 -050,01,069,Alabama,Houston County,7,6,5895,2748,3147,1921,2015,744,1048,18,16,32,29,2,2,31,37,2651,3056,1849,1949,734,1038,14,13,31,27,1,2,22,27,97,91,72,66,10,10,4,3,1,2,1,0,9,10 -050,01,069,Alabama,Houston County,7,7,6027,2844,3183,2097,2191,675,905,14,11,28,39,2,2,28,35,2741,3101,2013,2123,668,899,10,7,26,38,2,1,22,33,103,82,84,68,7,6,4,4,2,1,0,1,6,2 -050,01,069,Alabama,Houston County,7,8,6259,2956,3303,2246,2273,653,941,17,8,18,49,2,3,20,29,2866,3249,2173,2235,647,931,13,8,18,47,0,2,15,26,90,54,73,38,6,10,4,0,0,2,2,1,5,3 -050,01,069,Alabama,Houston County,7,9,7114,3461,3653,2626,2642,747,930,15,17,46,40,3,2,24,22,3404,3591,2577,2588,743,925,13,16,44,39,3,2,24,21,57,62,49,54,4,5,2,1,2,1,0,0,0,1 -050,01,069,Alabama,Houston County,7,10,7058,3439,3619,2604,2638,769,893,17,25,16,29,1,1,32,33,3391,3579,2564,2602,767,892,17,23,15,29,1,1,27,32,48,40,40,36,2,1,0,2,1,0,0,0,5,1 -050,01,069,Alabama,Houston County,7,11,6538,3082,3456,2350,2579,673,798,15,21,26,24,1,1,17,33,3046,3420,2315,2550,673,794,14,20,26,22,1,1,17,33,36,36,35,29,0,4,1,1,0,2,0,0,0,0 -050,01,069,Alabama,Houston County,7,12,5942,2857,3085,2289,2423,515,595,23,12,12,19,0,0,18,36,2821,3061,2260,2406,509,592,22,12,12,19,0,0,18,32,36,24,29,17,6,3,1,0,0,0,0,0,0,4 -050,01,069,Alabama,Houston County,7,13,4798,2265,2533,1838,1983,385,503,12,16,14,13,0,2,16,16,2250,2513,1826,1965,383,501,11,16,14,13,0,2,16,16,15,20,12,18,2,2,1,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,7,14,3728,1683,2045,1417,1665,250,348,4,9,4,12,0,0,8,11,1670,2023,1407,1646,248,347,3,8,4,11,0,0,8,11,13,22,10,19,2,1,1,1,0,1,0,0,0,0 -050,01,069,Alabama,Houston County,7,15,3081,1376,1705,1153,1383,206,296,4,8,7,7,0,0,6,11,1368,1685,1146,1367,206,293,3,7,7,7,0,0,6,11,8,20,7,16,0,3,1,1,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,7,16,2466,1006,1460,844,1232,154,214,3,4,2,5,0,0,3,5,999,1455,838,1227,153,214,3,4,2,5,0,0,3,5,7,5,6,5,1,0,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,7,17,1696,585,1111,500,913,79,191,2,1,2,1,0,0,2,5,579,1102,496,906,78,189,1,1,2,1,0,0,2,5,6,9,4,7,1,2,1,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,7,18,1480,426,1054,346,907,77,141,0,1,0,0,0,0,3,5,424,1048,344,902,77,140,0,1,0,0,0,0,3,5,2,6,2,5,0,1,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,7,99,93903,44834,49069,32748,34951,10979,12919,219,213,329,378,19,22,540,586,43818,48145,31939,34227,10889,12820,182,191,317,364,15,16,476,527,1016,924,809,724,90,99,37,22,12,14,4,6,64,59 -050,01,069,Alabama,Houston County,8,0,1324,698,626,456,384,202,212,1,1,11,3,1,1,27,25,667,599,431,360,198,211,1,1,11,3,1,0,25,24,31,27,25,24,4,1,0,0,0,0,0,1,2,1 -050,01,069,Alabama,Houston County,8,1,5111,2617,2494,1703,1580,764,788,10,11,27,24,3,2,110,89,2511,2379,1623,1493,757,778,6,11,24,24,2,0,99,73,106,115,80,87,7,10,4,0,3,0,1,2,11,16 -050,01,069,Alabama,Houston County,8,2,6546,3359,3187,2195,2076,1035,1013,16,9,26,25,0,2,87,62,3247,3085,2110,1998,1025,1000,13,5,24,24,0,2,75,56,112,102,85,78,10,13,3,4,2,1,0,0,12,6 -050,01,069,Alabama,Houston County,8,3,6812,3486,3326,2195,2143,1192,1085,15,17,27,21,0,2,57,58,3393,3245,2129,2076,1177,1077,10,15,26,20,0,2,51,55,93,81,66,67,15,8,5,2,1,1,0,0,6,3 -050,01,069,Alabama,Houston County,8,4,6689,3410,3279,2268,2066,1060,1132,17,17,18,14,3,0,44,50,3346,3214,2222,2022,1051,1119,14,14,17,14,2,0,40,45,64,65,46,44,9,13,3,3,1,0,1,0,4,5 -050,01,069,Alabama,Houston County,8,5,5708,2713,2995,1839,1943,811,982,14,15,16,17,4,3,29,35,2592,2903,1738,1867,803,977,11,12,15,16,3,1,22,30,121,92,101,76,8,5,3,3,1,1,1,2,7,5 -050,01,069,Alabama,Houston County,8,6,6116,2883,3233,1989,2077,809,1061,22,24,28,30,4,2,31,39,2753,3135,1889,2008,797,1049,17,20,26,28,2,2,22,28,130,98,100,69,12,12,5,4,2,2,2,0,9,11 -050,01,069,Alabama,Houston County,8,7,5980,2806,3174,2057,2163,676,910,14,12,25,47,1,3,33,39,2697,3089,1971,2095,667,903,10,8,22,45,1,1,26,37,109,85,86,68,9,7,4,4,3,2,0,2,7,2 -050,01,069,Alabama,Houston County,8,8,6442,3065,3377,2350,2305,649,981,18,11,23,49,2,1,23,30,2972,3321,2278,2262,642,975,13,9,23,48,0,0,16,27,93,56,72,43,7,6,5,2,0,1,2,1,7,3 -050,01,069,Alabama,Houston County,8,9,6979,3381,3598,2538,2585,764,925,15,18,31,40,3,2,30,28,3310,3539,2477,2537,759,918,12,17,29,39,3,2,30,26,71,59,61,48,5,7,3,1,2,1,0,0,0,2 -050,01,069,Alabama,Houston County,8,10,7237,3494,3743,2649,2728,773,930,19,17,20,34,2,0,31,34,3450,3698,2612,2689,770,928,18,15,19,33,2,0,29,33,44,45,37,39,3,2,1,2,1,1,0,0,2,1 -050,01,069,Alabama,Houston County,8,11,6702,3205,3497,2484,2608,671,805,8,26,21,26,1,2,20,30,3170,3452,2450,2571,671,800,7,25,21,24,1,2,20,30,35,45,34,37,0,5,1,1,0,2,0,0,0,0 -050,01,069,Alabama,Houston County,8,12,6227,2944,3283,2314,2565,563,639,33,18,13,25,0,0,21,36,2906,3252,2285,2542,556,635,31,17,13,25,0,0,21,33,38,31,29,23,7,4,2,1,0,0,0,0,0,3 -050,01,069,Alabama,Houston County,8,13,5044,2407,2637,1940,2066,428,511,7,17,16,22,1,1,15,20,2384,2617,1920,2049,426,509,6,17,16,22,1,1,15,19,23,20,20,17,2,2,1,0,0,0,0,0,0,1 -050,01,069,Alabama,Houston County,8,14,3900,1733,2167,1454,1739,262,395,5,9,4,11,0,0,8,13,1715,2141,1439,1715,260,394,4,8,4,11,0,0,8,13,18,26,15,24,2,1,1,1,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,8,15,3233,1464,1769,1236,1452,210,295,4,5,7,6,0,0,7,11,1457,1746,1231,1432,209,293,3,4,7,6,0,0,7,11,7,23,5,20,1,2,1,1,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,8,16,2549,1032,1517,865,1252,159,242,3,6,3,9,0,0,2,8,1025,1507,859,1244,158,241,3,6,3,9,0,0,2,7,7,10,6,8,1,1,0,0,0,0,0,0,0,1 -050,01,069,Alabama,Houston County,8,17,1757,624,1133,544,927,73,200,1,0,2,2,0,0,4,4,618,1124,539,918,72,200,1,0,2,2,0,0,4,4,6,9,5,9,1,0,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,8,18,1490,432,1058,362,914,65,137,1,1,0,1,0,0,4,5,429,1052,359,909,65,136,1,1,0,1,0,0,4,5,3,6,3,5,0,1,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,8,99,95846,45753,50093,33438,35573,11166,13243,223,234,318,406,25,21,583,616,44642,49098,32562,34787,11063,13143,181,205,302,394,18,13,516,556,1111,995,876,786,103,100,42,29,16,12,7,8,67,60 -050,01,069,Alabama,Houston County,9,0,1372,706,666,465,418,198,217,3,1,7,2,1,1,32,27,660,627,424,385,196,213,2,1,7,2,1,0,30,26,46,39,41,33,2,4,1,0,0,0,0,1,2,1 -050,01,069,Alabama,Houston County,9,1,5132,2682,2450,1764,1547,782,761,9,9,30,23,3,2,94,108,2557,2331,1664,1460,775,749,5,9,26,23,2,0,85,90,125,119,100,87,7,12,4,0,4,0,1,2,9,18 -050,01,069,Alabama,Houston County,9,2,6694,3380,3314,2166,2119,1060,1082,15,10,34,29,0,3,105,71,3263,3206,2083,2033,1047,1071,11,6,31,28,0,3,91,65,117,108,83,86,13,11,4,4,3,1,0,0,14,6 -050,01,069,Alabama,Houston County,9,3,6844,3474,3370,2214,2183,1157,1079,18,17,19,18,0,3,66,70,3375,3281,2147,2112,1139,1070,12,14,18,16,0,3,59,66,99,89,67,71,18,9,6,3,1,2,0,0,7,4 -050,01,069,Alabama,Houston County,9,4,6737,3464,3273,2256,2042,1119,1138,14,10,17,20,3,0,55,63,3390,3204,2201,1994,1111,1129,11,7,16,19,2,0,49,55,74,69,55,48,8,9,3,3,1,1,1,0,6,8 -050,01,069,Alabama,Houston County,9,5,5847,2780,3067,1882,2011,832,987,17,12,16,18,4,3,29,36,2658,2964,1781,1924,823,982,13,9,15,17,3,1,23,31,122,103,101,87,9,5,4,3,1,1,1,2,6,5 -050,01,069,Alabama,Houston County,9,6,6309,3017,3292,2092,2132,828,1061,23,22,30,33,3,1,41,43,2870,3171,1977,2045,816,1048,18,18,28,31,1,1,30,28,147,121,115,87,12,13,5,4,2,2,2,0,11,15 -050,01,069,Alabama,Houston County,9,7,5981,2793,3188,2053,2123,662,965,14,14,31,43,1,5,32,38,2668,3098,1952,2053,653,958,10,9,27,41,1,2,25,35,125,90,101,70,9,7,4,5,4,2,0,3,7,3 -050,01,069,Alabama,Houston County,9,8,6594,3168,3426,2415,2363,693,970,13,14,21,48,2,1,24,30,3072,3363,2339,2313,687,964,8,12,21,47,0,0,17,27,96,63,76,50,6,6,5,2,0,1,2,1,7,3 -050,01,069,Alabama,Houston County,9,9,6946,3415,3531,2544,2510,791,935,14,20,41,36,3,1,22,29,3331,3462,2471,2453,786,927,11,18,38,35,3,1,22,28,84,69,73,57,5,8,3,2,3,1,0,0,0,1 -050,01,069,Alabama,Houston County,9,10,7395,3484,3911,2662,2828,739,988,21,15,26,37,1,1,35,42,3425,3849,2613,2771,737,986,20,14,24,37,1,1,30,40,59,62,49,57,2,2,1,1,2,0,0,0,5,2 -050,01,069,Alabama,Houston County,9,11,6960,3366,3594,2586,2678,720,838,14,20,19,21,1,3,26,34,3327,3548,2548,2641,720,832,13,19,19,20,1,3,26,33,39,46,38,37,0,6,1,1,0,1,0,0,0,1 -050,01,069,Alabama,Houston County,9,12,6290,2942,3348,2287,2576,600,688,25,18,11,31,0,0,19,35,2903,3319,2257,2554,593,684,23,17,11,31,0,0,19,33,39,29,30,22,7,4,2,1,0,0,0,0,0,2 -050,01,069,Alabama,Houston County,9,13,5367,2594,2773,2084,2200,470,519,7,13,18,18,0,2,15,21,2578,2754,2071,2184,468,516,6,13,18,18,0,2,15,21,16,19,13,16,2,3,1,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,9,14,4047,1794,2253,1523,1818,248,395,7,9,7,16,0,0,9,15,1772,2228,1504,1794,246,395,6,9,7,15,0,0,9,15,22,25,19,24,2,0,1,0,0,1,0,0,0,0 -050,01,069,Alabama,Houston County,9,15,3250,1441,1809,1183,1456,238,326,6,10,7,3,0,1,7,13,1432,1788,1175,1438,238,324,5,9,7,3,0,1,7,13,9,21,8,18,0,2,1,1,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,9,16,2627,1126,1501,945,1235,171,242,3,6,3,10,0,0,4,8,1117,1494,938,1230,169,241,3,6,3,10,0,0,4,7,9,7,7,5,2,1,0,0,0,0,0,0,0,1 -050,01,069,Alabama,Houston County,9,17,1815,685,1130,591,918,87,202,1,1,3,4,0,0,3,5,678,1119,585,908,86,201,1,1,3,4,0,0,3,5,7,11,6,10,1,1,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,9,18,1520,422,1098,360,932,57,158,1,1,0,1,0,0,4,6,420,1092,358,928,57,156,1,1,0,1,0,0,4,6,2,6,2,4,0,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,9,99,97727,46733,50994,34072,36089,11452,13551,225,222,340,411,22,27,622,694,45496,49898,33088,35220,11347,13446,179,192,319,398,15,18,548,624,1237,1096,984,869,105,105,46,30,21,13,7,9,74,70 -050,01,069,Alabama,Houston County,10,0,1352,696,656,461,399,200,220,2,1,3,2,0,1,30,33,646,622,414,372,199,215,1,1,3,2,0,0,29,32,50,34,47,27,1,5,1,0,0,0,0,1,1,1 -050,01,069,Alabama,Houston County,10,1,5203,2713,2490,1772,1543,805,793,12,8,24,29,3,3,97,114,2583,2353,1671,1440,796,780,7,8,21,29,2,0,86,96,130,137,101,103,9,13,5,0,3,0,1,3,11,18 -050,01,069,Alabama,Houston County,10,2,6881,3511,3370,2205,2148,1133,1105,18,10,26,34,0,3,129,70,3380,3251,2107,2058,1122,1092,14,5,24,32,0,3,113,61,131,119,98,90,11,13,4,5,2,2,0,0,16,9 -050,01,069,Alabama,Houston County,10,3,6860,3529,3331,2241,2182,1161,1041,17,15,34,17,0,2,76,74,3420,3232,2168,2103,1141,1033,11,12,33,15,0,2,67,67,109,99,73,79,20,8,6,3,1,2,0,0,9,7 -050,01,069,Alabama,Houston County,10,4,6814,3486,3328,2244,2081,1143,1140,19,11,15,24,2,0,63,72,3390,3256,2171,2028,1133,1132,15,8,14,24,1,0,56,64,96,72,73,53,10,8,4,3,1,0,1,0,7,8 -050,01,069,Alabama,Houston County,10,5,5841,2807,3034,1864,1952,872,1008,16,15,16,21,5,3,34,35,2682,2933,1762,1868,865,1004,12,11,15,20,4,1,24,29,125,101,102,84,7,4,4,4,1,1,1,2,10,6 -050,01,069,Alabama,Houston County,10,6,6374,3028,3346,2103,2159,831,1080,20,24,34,35,3,4,37,44,2851,3225,1967,2072,815,1068,13,18,32,32,1,4,23,31,177,121,136,87,16,12,7,6,2,3,2,0,14,13 -050,01,069,Alabama,Houston County,10,7,6148,2906,3242,2126,2120,711,1019,11,12,20,38,0,4,38,49,2756,3139,2003,2039,700,1010,7,7,19,37,0,0,27,46,150,103,123,81,11,9,4,5,1,1,0,4,11,3 -050,01,069,Alabama,Houston County,10,8,6595,3149,3446,2399,2371,685,979,15,15,27,45,3,1,20,35,3058,3370,2328,2313,681,972,8,13,27,42,1,0,13,30,91,76,71,58,4,7,7,2,0,3,2,1,7,5 -050,01,069,Alabama,Houston County,10,9,6861,3360,3501,2476,2461,808,941,15,18,37,48,2,2,22,31,3264,3438,2394,2412,803,933,11,16,34,47,2,2,20,28,96,63,82,49,5,8,4,2,3,1,0,0,2,3 -050,01,069,Alabama,Houston County,10,10,7354,3490,3864,2654,2785,744,985,22,18,27,38,2,1,41,37,3419,3796,2595,2723,742,982,21,17,24,37,2,1,35,36,71,68,59,62,2,3,1,1,3,1,0,0,6,1 -050,01,069,Alabama,Houston County,10,11,7100,3416,3684,2607,2725,749,866,12,23,20,28,1,3,27,39,3375,3633,2567,2684,749,860,11,22,20,26,1,3,27,38,41,51,40,41,0,6,1,1,0,2,0,0,0,1 -050,01,069,Alabama,Houston County,10,12,6442,3034,3408,2339,2593,635,723,22,16,13,42,0,0,25,34,2988,3383,2302,2576,628,719,20,15,13,42,0,0,25,31,46,25,37,17,7,4,2,1,0,0,0,0,0,3 -050,01,069,Alabama,Houston County,10,13,5597,2771,2826,2228,2264,492,510,13,14,20,19,0,2,18,17,2741,2810,2201,2249,490,509,12,14,20,19,0,2,18,17,30,16,27,15,2,1,1,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,10,14,4250,1882,2368,1559,1895,297,424,8,9,6,21,0,0,12,19,1858,2336,1539,1865,294,424,7,8,6,20,0,0,12,19,24,32,20,30,3,0,1,1,0,1,0,0,0,0 -050,01,069,Alabama,Houston County,10,15,3405,1521,1884,1251,1543,252,321,5,5,8,5,0,1,5,9,1512,1864,1243,1526,252,319,4,4,8,5,0,1,5,9,9,20,8,17,0,2,1,1,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,10,16,2639,1128,1511,968,1245,150,248,3,5,3,7,0,0,4,6,1121,1503,963,1239,148,247,3,5,3,7,0,0,4,5,7,8,5,6,2,1,0,0,0,0,0,0,0,1 -050,01,069,Alabama,Houston County,10,17,1912,732,1180,623,967,101,201,2,1,3,4,0,0,3,7,725,1172,617,959,101,201,1,1,3,4,0,0,3,7,7,8,6,8,0,0,1,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,10,18,1555,450,1105,385,912,61,185,1,1,0,1,0,0,3,6,448,1099,383,908,61,183,1,1,0,1,0,0,3,6,2,6,2,4,0,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,10,99,99183,47609,51574,34505,36345,11830,13789,233,221,336,458,21,30,684,731,46217,50415,33395,35434,11720,13683,179,186,319,441,14,19,590,652,1392,1159,1110,911,110,106,54,35,17,17,7,11,94,79 -050,01,069,Alabama,Houston County,11,0,1373,704,669,441,404,220,231,4,1,7,3,1,1,31,29,652,629,394,373,218,224,2,1,7,3,1,0,30,28,52,40,47,31,2,7,2,0,0,0,0,1,1,1 -050,01,069,Alabama,Houston County,11,1,5291,2755,2536,1747,1542,847,810,13,11,29,30,2,3,117,140,2608,2386,1635,1432,839,794,6,11,23,30,1,0,104,119,147,150,112,110,8,16,7,0,6,0,1,3,13,21 -050,01,069,Alabama,Houston County,11,2,7047,3611,3436,2261,2193,1176,1112,16,10,24,27,0,3,134,91,3472,3291,2157,2078,1166,1098,11,4,23,26,0,3,115,82,139,145,104,115,10,14,5,6,1,1,0,0,19,9 -050,01,069,Alabama,Houston County,11,3,6802,3468,3334,2231,2151,1093,1062,14,22,35,16,0,2,95,81,3357,3237,2154,2069,1078,1059,7,19,33,14,0,2,85,74,111,97,77,82,15,3,7,3,2,2,0,0,10,7 -050,01,069,Alabama,Houston County,11,4,6784,3433,3351,2190,2112,1143,1142,19,9,13,27,3,0,65,61,3325,3267,2109,2049,1129,1133,15,5,12,27,2,0,58,53,108,84,81,63,14,9,4,4,1,0,1,0,7,8 -050,01,069,Alabama,Houston County,11,5,5759,2736,3023,1813,1906,851,1040,16,17,15,16,5,5,36,39,2614,2928,1717,1827,842,1037,11,13,14,15,4,3,26,33,122,95,96,79,9,3,5,4,1,1,1,2,10,6 -050,01,069,Alabama,Houston County,11,6,6576,3136,3440,2185,2244,858,1076,18,25,30,38,3,2,42,55,2940,3283,2031,2126,845,1063,10,19,27,35,1,2,26,38,196,157,154,118,13,13,8,6,3,3,2,0,16,17 -050,01,069,Alabama,Houston County,11,7,6190,2944,3246,2126,2099,724,1052,19,10,34,34,2,5,39,46,2794,3157,2004,2027,714,1047,14,5,32,33,2,1,28,44,150,89,122,72,10,5,5,5,2,1,0,4,11,2 -050,01,069,Alabama,Houston County,11,8,6643,3219,3424,2405,2342,749,992,18,11,22,41,2,1,23,37,3099,3329,2309,2266,742,985,10,9,22,38,0,0,16,31,120,95,96,76,7,7,8,2,0,3,2,1,7,6 -050,01,069,Alabama,Houston County,11,9,6672,3224,3448,2384,2401,752,949,13,19,45,43,2,0,28,36,3124,3380,2299,2349,747,939,9,17,41,42,2,0,26,33,100,68,85,52,5,10,4,2,4,1,0,0,2,3 -050,01,069,Alabama,Houston County,11,10,7385,3565,3820,2714,2753,750,972,22,21,33,37,2,1,44,36,3484,3760,2644,2699,748,968,21,20,30,37,2,1,39,35,81,60,70,54,2,4,1,1,3,0,0,0,5,1 -050,01,069,Alabama,Houston County,11,11,7279,3508,3771,2656,2751,789,930,13,23,20,27,1,2,29,38,3459,3711,2608,2700,789,924,12,22,20,26,1,2,29,37,49,60,48,51,0,6,1,1,0,1,0,0,0,1 -050,01,069,Alabama,Houston County,11,12,6526,3060,3466,2354,2626,653,749,17,17,14,42,0,0,22,32,3018,3432,2321,2600,646,745,15,16,14,42,0,0,22,29,42,34,33,26,7,4,2,1,0,0,0,0,0,3 -050,01,069,Alabama,Houston County,11,13,5891,2833,3058,2241,2413,534,580,15,18,24,24,0,2,19,21,2814,3043,2225,2400,532,578,14,18,24,24,0,2,19,21,19,15,16,13,2,2,1,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,11,14,4382,2006,2376,1671,1909,307,423,7,9,6,16,0,0,15,19,1980,2356,1649,1890,304,423,6,9,6,15,0,0,15,19,26,20,22,19,3,0,1,0,0,1,0,0,0,0 -050,01,069,Alabama,Houston County,11,15,3560,1589,1971,1322,1629,247,323,5,6,10,3,0,0,5,10,1580,1951,1314,1612,247,321,4,5,10,3,0,0,5,10,9,20,8,17,0,2,1,1,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,11,16,2749,1184,1565,997,1287,177,258,3,5,3,8,0,0,4,7,1178,1553,993,1277,175,257,3,5,3,8,0,0,4,6,6,12,4,10,2,1,0,0,0,0,0,0,0,1 -050,01,069,Alabama,Houston County,11,17,1961,742,1219,650,1002,84,205,2,1,3,4,0,0,3,7,734,1204,643,988,84,204,1,1,3,4,0,0,3,7,8,15,7,14,0,1,1,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,11,18,1630,497,1133,415,938,79,186,1,1,0,1,0,0,2,7,491,1124,409,931,79,184,1,1,0,1,0,0,2,7,6,9,6,7,0,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,11,99,100500,48214,52286,34803,36702,12033,14092,235,236,367,437,23,27,753,792,46723,51021,33615,35693,11924,13983,172,200,344,423,16,16,652,706,1491,1265,1188,1009,109,109,63,36,23,14,7,11,101,86 -050,01,069,Alabama,Houston County,12,0,1338,685,653,421,383,221,239,5,1,6,2,1,1,31,27,641,612,383,351,218,233,3,1,6,2,1,0,30,25,44,41,38,32,3,6,2,0,0,0,0,1,1,2 -050,01,069,Alabama,Houston County,12,1,5393,2794,2599,1749,1579,870,851,15,11,27,27,3,3,130,128,2635,2437,1628,1458,862,834,6,11,21,27,2,0,116,107,159,162,121,121,8,17,9,0,6,0,1,3,14,21 -050,01,069,Alabama,Houston County,12,2,7051,3670,3381,2285,2155,1192,1088,21,12,29,38,0,3,143,85,3517,3239,2172,2045,1179,1073,16,6,26,36,0,3,124,76,153,142,113,110,13,15,5,6,3,2,0,0,19,9 -050,01,069,Alabama,Houston County,12,3,6936,3528,3408,2298,2187,1088,1091,15,18,31,16,0,3,96,93,3404,3301,2209,2101,1072,1083,8,15,30,14,0,3,85,85,124,107,89,86,16,8,7,3,1,2,0,0,11,8 -050,01,069,Alabama,Houston County,12,4,6690,3400,3290,2156,2071,1137,1111,21,12,16,31,3,0,67,65,3290,3199,2076,2005,1120,1099,17,8,15,30,2,0,60,57,110,91,80,66,17,12,4,4,1,1,1,0,7,8 -050,01,069,Alabama,Houston County,12,5,5986,2855,3131,1921,1995,855,1056,18,15,18,19,5,4,38,42,2679,3015,1772,1900,845,1048,13,11,17,18,4,2,28,36,176,116,149,95,10,8,5,4,1,1,1,2,10,6 -050,01,069,Alabama,Houston County,12,6,6579,3178,3401,2208,2210,864,1067,21,27,38,42,3,3,44,52,2965,3234,2041,2082,848,1054,13,21,35,39,1,3,27,35,213,167,167,128,16,13,8,6,3,3,2,0,17,17 -050,01,069,Alabama,Houston County,12,7,6287,2972,3315,2137,2132,738,1073,17,16,38,36,2,6,40,52,2817,3207,2014,2046,726,1065,12,11,35,34,2,2,28,49,155,108,123,86,12,8,5,5,3,2,0,4,12,3 -050,01,069,Alabama,Houston County,12,8,6655,3192,3463,2343,2344,769,1021,20,15,31,44,3,1,26,38,3071,3370,2247,2271,762,1013,12,13,31,41,1,0,18,32,121,93,96,73,7,8,8,2,0,3,2,1,8,6 -050,01,069,Alabama,Houston County,12,9,6565,3179,3386,2370,2353,723,934,14,18,42,44,2,2,28,35,3085,3313,2291,2295,718,925,10,16,38,43,2,2,26,32,94,73,79,58,5,9,4,2,4,1,0,0,2,3 -050,01,069,Alabama,Houston County,12,10,7355,3539,3816,2701,2747,742,969,24,19,28,43,2,1,42,37,3453,3746,2625,2685,740,966,23,17,26,42,2,1,37,35,86,70,76,62,2,3,1,2,2,1,0,0,5,2 -050,01,069,Alabama,Houston County,12,11,7406,3581,3825,2700,2799,813,931,13,21,20,30,2,3,33,41,3532,3762,2652,2746,813,925,12,20,20,28,2,3,33,40,49,63,48,53,0,6,1,1,0,2,0,0,0,1 -050,01,069,Alabama,Houston County,12,12,6648,3089,3559,2382,2692,651,773,17,18,15,40,0,0,24,36,3032,3524,2334,2665,644,769,15,17,15,40,0,0,24,33,57,35,48,27,7,4,2,1,0,0,0,0,0,3 -050,01,069,Alabama,Houston County,12,13,5983,2880,3103,2292,2433,534,601,13,18,21,25,1,3,19,23,2858,3078,2273,2411,532,599,12,18,21,25,1,3,19,22,22,25,19,22,2,2,1,0,0,0,0,0,0,1 -050,01,069,Alabama,Houston County,12,14,4594,2110,2484,1742,2008,340,430,8,10,7,14,0,0,13,22,2080,2463,1716,1989,337,430,7,9,7,13,0,0,13,22,30,21,26,19,3,0,1,1,0,1,0,0,0,0 -050,01,069,Alabama,Houston County,12,15,3574,1591,1983,1333,1637,236,320,6,8,10,5,0,1,6,12,1582,1958,1325,1615,236,318,5,7,10,5,0,1,6,12,9,25,8,22,0,2,1,1,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,12,16,2827,1190,1637,1002,1347,178,266,3,7,3,9,0,0,4,8,1183,1625,997,1337,176,265,3,7,3,9,0,0,4,7,7,12,5,10,2,1,0,0,0,0,0,0,0,1 -050,01,069,Alabama,Houston County,12,17,2002,789,1213,685,1013,96,187,2,1,3,4,0,0,3,8,781,1202,678,1003,96,186,1,1,3,4,0,0,3,8,8,11,7,10,0,1,1,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,12,18,1678,518,1160,429,949,85,202,1,1,0,1,0,0,3,7,511,1151,422,942,85,200,1,1,0,1,0,0,3,7,7,9,7,7,0,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,12,99,101547,48740,52807,35154,37034,12132,14210,254,248,383,470,27,34,790,811,47116,51436,33855,35947,12009,14085,189,210,359,451,20,23,684,720,1624,1371,1299,1087,123,125,65,38,24,19,7,11,106,91 -050,01,069,Alabama,Houston County,13,0,1345,687,658,421,386,223,240,5,1,6,2,0,1,32,28,642,616,383,353,220,234,3,1,6,2,0,0,30,26,45,42,38,33,3,6,2,0,0,0,0,1,2,2 -050,01,069,Alabama,Houston County,13,1,5407,2800,2607,1744,1577,879,856,15,14,27,27,3,2,132,131,2640,2443,1624,1455,869,840,6,13,21,27,2,0,118,108,160,164,120,122,10,16,9,1,6,0,1,2,14,23 -050,01,069,Alabama,Houston County,13,2,7063,3672,3391,2286,2159,1194,1092,21,14,27,38,0,3,144,85,3521,3248,2173,2049,1182,1077,16,6,25,36,0,3,125,77,151,143,113,110,12,15,5,8,2,2,0,0,19,8 -050,01,069,Alabama,Houston County,13,3,6943,3533,3410,2299,2190,1089,1092,18,18,30,16,0,2,97,92,3404,3302,2209,2102,1072,1084,9,15,29,14,0,2,85,85,129,108,90,88,17,8,9,3,1,2,0,0,12,7 -050,01,069,Alabama,Houston County,13,4,6663,3387,3276,2148,2063,1135,1107,19,13,16,31,3,2,66,60,3274,3184,2066,1996,1116,1095,16,9,15,30,2,1,59,53,113,92,82,67,19,12,3,4,1,1,1,1,7,7 -050,01,069,Alabama,Houston County,13,5,6032,2877,3155,1930,2002,863,1069,19,17,18,21,7,5,40,41,2696,3034,1780,1906,852,1060,14,12,17,20,4,1,29,35,181,121,150,96,11,9,5,5,1,1,3,4,11,6 -050,01,069,Alabama,Houston County,13,6,6618,3206,3412,2220,2216,874,1072,21,29,40,41,4,4,47,50,2987,3244,2053,2089,855,1059,13,22,36,38,1,3,29,33,219,168,167,127,19,13,8,7,4,3,3,1,18,17 -050,01,069,Alabama,Houston County,13,7,6349,3006,3343,2157,2151,748,1085,19,15,41,36,2,6,39,50,2846,3235,2031,2064,736,1077,13,10,37,34,2,2,27,48,160,108,126,87,12,8,6,5,4,2,0,4,12,2 -050,01,069,Alabama,Houston County,13,8,6624,3181,3443,2327,2329,773,1019,21,15,28,42,4,1,28,37,3058,3351,2231,2256,765,1010,13,13,28,39,1,1,20,32,123,92,96,73,8,9,8,2,0,3,3,0,8,5 -050,01,069,Alabama,Houston County,13,9,6567,3180,3387,2371,2354,723,937,13,17,41,44,2,2,30,33,3083,3313,2291,2296,717,927,8,15,37,43,2,2,28,30,97,74,80,58,6,10,5,2,4,1,0,0,2,3 -050,01,069,Alabama,Houston County,13,10,7342,3533,3809,2694,2737,743,974,25,17,26,44,2,1,43,36,3446,3738,2618,2675,740,970,23,15,24,43,2,1,39,34,87,71,76,62,3,4,2,2,2,1,0,0,4,2 -050,01,069,Alabama,Houston County,13,11,7446,3603,3843,2709,2806,823,939,14,21,21,31,2,3,34,43,3551,3781,2660,2754,821,933,13,20,21,29,2,3,34,42,52,62,49,52,2,6,1,1,0,2,0,0,0,1 -050,01,069,Alabama,Houston County,13,12,6698,3111,3587,2399,2712,658,782,17,19,13,38,0,0,24,36,3054,3553,2351,2685,651,778,15,18,13,38,0,0,24,34,57,34,48,27,7,4,2,1,0,0,0,0,0,2 -050,01,069,Alabama,Houston County,13,13,6043,2907,3136,2316,2461,541,610,13,17,21,25,1,3,15,20,2884,3112,2296,2439,539,608,12,17,21,25,1,3,15,20,23,24,20,22,2,2,1,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,13,14,4623,2123,2500,1755,2022,341,433,8,10,8,15,0,0,11,20,2093,2480,1729,2004,338,433,7,9,8,14,0,0,11,20,30,20,26,18,3,0,1,1,0,1,0,0,0,0 -050,01,069,Alabama,Houston County,13,15,3598,1605,1993,1346,1647,237,322,5,8,11,6,0,1,6,9,1596,1969,1337,1625,237,320,5,8,11,6,0,1,6,9,9,24,9,22,0,2,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,13,16,2830,1192,1638,1004,1345,180,268,3,8,2,9,0,0,3,8,1186,1628,999,1337,179,267,3,8,2,9,0,0,3,7,6,10,5,8,1,1,0,0,0,0,0,0,0,1 -050,01,069,Alabama,Houston County,13,17,2004,792,1212,688,1013,97,187,2,1,3,4,0,0,2,7,782,1200,679,1002,97,186,1,1,3,4,0,0,2,7,10,12,9,11,0,1,1,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,13,18,1693,524,1169,434,955,86,205,1,1,0,1,0,0,3,7,517,1159,427,948,86,202,1,1,0,1,0,0,3,7,7,10,7,7,0,3,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,13,99,101888,48919,52969,35248,37125,12207,14289,259,255,379,471,30,36,796,793,47260,51590,33937,36035,12072,14160,191,213,354,452,19,23,687,707,1659,1379,1311,1090,135,129,68,42,25,19,11,13,109,86 -050,01,071,Alabama,Jackson County,1,0,674,333,341,298,312,17,15,7,4,0,1,0,0,11,9,324,331,289,303,17,14,7,4,0,1,0,0,11,9,9,10,9,9,0,1,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,1,1,2707,1410,1297,1288,1183,62,54,26,20,5,4,0,0,29,36,1379,1262,1259,1150,61,54,25,18,5,4,0,0,29,36,31,35,29,33,1,0,1,2,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,1,2,3643,1854,1789,1678,1622,91,91,36,24,3,5,0,0,46,47,1827,1755,1656,1592,88,90,35,22,3,5,0,0,45,46,27,34,22,30,3,1,1,2,0,0,0,0,1,1 -050,01,071,Alabama,Jackson County,1,3,3653,1879,1774,1686,1602,95,82,49,32,3,3,1,0,45,55,1862,1748,1674,1580,95,81,47,31,3,2,0,0,43,54,17,26,12,22,0,1,2,1,0,1,1,0,2,1 -050,01,071,Alabama,Jackson County,1,4,3685,1876,1809,1664,1609,84,67,60,66,5,4,4,0,59,63,1845,1784,1636,1586,84,67,58,66,5,4,4,0,58,61,31,25,28,23,0,0,2,0,0,0,0,0,1,2 -050,01,071,Alabama,Jackson County,1,5,3149,1561,1588,1402,1428,59,56,58,65,6,1,3,0,33,38,1513,1569,1359,1411,57,54,58,65,6,1,1,0,32,38,48,19,43,17,2,2,0,0,0,0,2,0,1,0 -050,01,071,Alabama,Jackson County,1,6,3676,1837,1839,1704,1693,76,71,31,38,4,5,0,0,22,32,1793,1809,1661,1664,75,71,31,37,4,5,0,0,22,32,44,30,43,29,1,0,0,1,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,1,7,3726,1874,1852,1748,1708,70,79,24,29,10,11,0,0,22,25,1851,1839,1728,1697,67,77,24,29,10,11,0,0,22,25,23,13,20,11,3,2,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,1,8,3966,1935,2031,1820,1891,58,64,27,30,3,8,0,2,27,36,1910,2021,1797,1882,58,64,25,30,3,8,0,2,27,35,25,10,23,9,0,0,2,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,1,9,4108,2055,2053,1898,1852,81,88,37,56,4,4,0,0,35,53,2035,2036,1879,1838,81,88,36,53,4,4,0,0,35,53,20,17,19,14,0,0,1,3,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,1,10,3894,1882,2012,1712,1848,81,78,40,46,2,3,1,0,46,37,1867,1994,1698,1832,81,77,39,46,2,3,1,0,46,36,15,18,14,16,0,1,1,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,1,11,3771,1843,1928,1720,1787,52,72,33,26,6,13,0,0,32,30,1833,1917,1711,1779,51,71,33,25,6,13,0,0,32,29,10,11,9,8,1,1,0,1,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,1,12,3220,1569,1651,1487,1564,33,40,22,23,6,3,0,1,21,20,1561,1643,1480,1557,33,40,22,23,6,3,0,1,20,19,8,8,7,7,0,0,0,0,0,0,0,0,1,1 -050,01,071,Alabama,Jackson County,1,13,2793,1369,1424,1313,1368,30,37,9,8,2,1,0,1,15,9,1361,1414,1306,1359,30,37,8,8,2,1,0,0,15,9,8,10,7,9,0,0,1,0,0,0,0,1,0,0 -050,01,071,Alabama,Jackson County,1,14,2321,1076,1245,1038,1175,23,44,5,6,0,2,0,0,10,18,1073,1240,1035,1171,23,43,5,6,0,2,0,0,10,18,3,5,3,4,0,1,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,1,15,1862,831,1031,785,980,25,41,5,5,0,0,0,0,16,5,827,1024,781,973,25,41,5,5,0,0,0,0,16,5,4,7,4,7,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,1,16,1371,540,831,506,789,25,32,2,3,0,1,0,0,7,6,536,828,502,786,25,32,2,3,0,1,0,0,7,6,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,1,17,902,319,583,307,566,7,11,0,3,0,0,0,0,5,3,318,582,306,565,7,11,0,3,0,0,0,0,5,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,1,18,750,212,538,194,514,15,21,1,0,0,0,0,0,2,3,212,538,194,514,15,21,1,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,1,99,53871,26255,27616,24248,25491,984,1043,472,484,59,69,9,4,483,525,25927,27334,23951,25239,973,1033,461,474,59,68,6,3,477,517,328,282,297,252,11,10,11,10,0,1,3,1,6,8 -050,01,071,Alabama,Jackson County,2,0,681,337,344,300,315,17,15,7,4,0,1,0,0,13,9,328,334,291,306,17,14,7,4,0,1,0,0,13,9,9,10,9,9,0,1,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,2,1,2703,1410,1293,1283,1181,62,53,26,20,5,4,0,0,34,35,1379,1258,1254,1148,61,53,25,18,5,4,0,0,34,35,31,35,29,33,1,0,1,2,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,2,2,3632,1847,1785,1674,1618,88,88,36,24,3,5,0,0,46,50,1820,1751,1652,1588,85,87,35,22,3,5,0,0,45,49,27,34,22,30,3,1,1,2,0,0,0,0,1,1 -050,01,071,Alabama,Jackson County,2,3,3667,1885,1782,1690,1607,95,82,49,32,3,3,1,0,47,58,1868,1756,1678,1585,95,81,47,31,3,2,0,0,45,57,17,26,12,22,0,1,2,1,0,1,1,0,2,1 -050,01,071,Alabama,Jackson County,2,4,3692,1887,1805,1677,1612,84,67,60,65,5,4,4,0,57,57,1856,1780,1649,1589,84,67,58,65,5,4,4,0,56,55,31,25,28,23,0,0,2,0,0,0,0,0,1,2 -050,01,071,Alabama,Jackson County,2,5,3163,1569,1594,1415,1442,59,56,58,63,6,1,3,0,28,32,1521,1574,1372,1424,57,54,58,63,6,1,1,0,27,32,48,20,43,18,2,2,0,0,0,0,2,0,1,0 -050,01,071,Alabama,Jackson County,2,6,3642,1821,1821,1690,1675,76,71,31,38,4,5,0,0,20,32,1777,1791,1647,1646,75,71,31,37,4,5,0,0,20,32,44,30,43,29,1,0,0,1,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,2,7,3717,1870,1847,1745,1705,70,79,24,29,10,11,0,0,21,23,1847,1834,1725,1694,67,77,24,29,10,11,0,0,21,23,23,13,20,11,3,2,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,2,8,3944,1925,2019,1810,1880,58,64,27,30,3,8,0,2,27,35,1900,2009,1787,1871,58,64,25,30,3,8,0,2,27,34,25,10,23,9,0,0,2,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,2,9,4114,2058,2056,1900,1855,81,88,37,56,4,4,0,0,36,53,2038,2039,1881,1841,81,88,36,53,4,4,0,0,36,53,20,17,19,14,0,0,1,3,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,2,10,3915,1892,2023,1722,1859,82,78,40,46,2,3,1,0,45,37,1877,2005,1708,1843,82,77,39,46,2,3,1,0,45,36,15,18,14,16,0,1,1,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,2,11,3811,1865,1946,1739,1804,54,73,33,26,6,13,0,0,33,30,1855,1935,1730,1796,53,72,33,25,6,13,0,0,33,29,10,11,9,8,1,1,0,1,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,2,12,3243,1581,1662,1499,1576,33,40,22,23,6,3,0,1,21,19,1573,1654,1492,1569,33,40,22,23,6,3,0,1,20,18,8,8,7,7,0,0,0,0,0,0,0,0,1,1 -050,01,071,Alabama,Jackson County,2,13,2804,1378,1426,1323,1373,30,37,9,8,2,1,0,1,14,6,1370,1416,1316,1364,30,37,8,8,2,1,0,0,14,6,8,10,7,9,0,0,1,0,0,0,0,1,0,0 -050,01,071,Alabama,Jackson County,2,14,2330,1082,1248,1044,1178,23,45,5,6,0,2,0,0,10,17,1079,1243,1041,1174,23,44,5,6,0,2,0,0,10,17,3,5,3,4,0,1,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,2,15,1872,837,1035,791,984,25,41,5,5,0,0,0,0,16,5,833,1028,787,977,25,41,5,5,0,0,0,0,16,5,4,7,4,7,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,2,16,1383,544,839,511,797,25,32,2,3,0,1,0,0,6,6,540,836,507,794,25,32,2,3,0,1,0,0,6,6,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,2,17,912,325,587,313,570,7,11,0,3,0,0,0,0,5,3,324,586,312,569,7,11,0,3,0,0,0,0,5,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,2,18,754,213,541,196,518,14,21,1,0,0,0,0,0,2,2,213,541,196,518,14,21,1,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,2,99,53979,26326,27653,24322,25549,983,1041,472,481,59,69,9,4,481,509,25998,27370,24025,25296,972,1031,461,471,59,68,6,3,475,501,328,283,297,253,11,10,11,10,0,1,3,1,6,8 -050,01,071,Alabama,Jackson County,3,0,629,319,310,294,279,11,14,3,3,0,1,0,0,11,13,303,300,278,270,11,13,3,3,0,1,0,0,11,13,16,10,16,9,0,1,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,3,1,2658,1370,1288,1239,1165,64,61,26,18,5,5,0,0,36,39,1337,1250,1208,1129,63,61,25,16,5,5,0,0,36,39,33,38,31,36,1,0,1,2,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,3,2,3544,1778,1766,1608,1607,87,82,34,25,3,5,0,0,46,47,1741,1730,1577,1575,84,81,32,23,3,5,0,0,45,46,37,36,31,32,3,1,2,2,0,0,0,0,1,1 -050,01,071,Alabama,Jackson County,3,3,3771,1920,1851,1722,1667,100,89,40,32,3,4,1,0,54,59,1898,1822,1705,1641,100,88,38,31,3,4,0,0,52,58,22,29,17,26,0,1,2,1,0,0,1,0,2,1 -050,01,071,Alabama,Jackson County,3,4,3571,1843,1728,1645,1550,80,61,58,51,5,4,3,0,52,62,1815,1701,1619,1525,80,61,56,51,5,4,3,0,52,60,28,27,26,25,0,0,2,0,0,0,0,0,0,2 -050,01,071,Alabama,Jackson County,3,5,3251,1610,1641,1451,1486,63,56,57,68,6,1,4,0,29,30,1564,1624,1410,1471,61,54,57,68,6,1,2,0,28,30,46,17,41,15,2,2,0,0,0,0,2,0,1,0 -050,01,071,Alabama,Jackson County,3,6,3507,1756,1751,1626,1612,68,69,28,31,4,5,0,0,30,34,1704,1719,1575,1581,67,69,28,30,4,5,0,0,30,34,52,32,51,31,1,0,0,1,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,3,7,3757,1898,1859,1764,1713,74,82,31,28,9,12,0,0,20,24,1871,1836,1740,1692,71,80,31,28,9,12,0,0,20,24,27,23,24,21,3,2,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,3,8,3875,1897,1978,1787,1843,63,66,22,26,3,8,0,3,22,32,1867,1965,1759,1832,63,66,20,25,3,8,0,3,22,31,30,13,28,11,0,0,2,1,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,3,9,4113,2025,2088,1888,1889,76,78,35,50,5,6,0,0,21,65,2002,2068,1866,1872,76,78,34,47,5,6,0,0,21,65,23,20,22,17,0,0,1,3,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,3,10,3943,1935,2008,1770,1849,82,74,36,39,2,3,1,0,44,43,1916,1993,1752,1836,82,73,35,39,2,3,1,0,44,42,19,15,18,13,0,1,1,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,3,11,3871,1890,1981,1755,1834,65,79,28,27,7,12,0,0,35,29,1877,1970,1744,1827,64,78,28,26,6,12,0,0,35,27,13,11,11,7,1,1,0,1,1,0,0,0,0,2 -050,01,071,Alabama,Jackson County,3,12,3280,1591,1689,1516,1593,31,47,21,21,6,3,0,1,17,24,1582,1675,1508,1580,31,47,21,21,6,3,0,1,16,23,9,14,8,13,0,0,0,0,0,0,0,0,1,1 -050,01,071,Alabama,Jackson County,3,13,2865,1435,1430,1376,1372,29,29,11,15,2,1,0,1,17,12,1429,1420,1371,1363,29,29,10,15,2,1,0,0,17,12,6,10,5,9,0,0,1,0,0,0,0,1,0,0 -050,01,071,Alabama,Jackson County,3,14,2394,1097,1297,1055,1225,24,44,8,6,0,2,0,0,10,20,1094,1293,1052,1222,24,43,8,6,0,2,0,0,10,20,3,4,3,3,0,1,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,3,15,1869,860,1009,814,952,25,46,6,5,0,0,0,0,15,6,856,1002,810,945,25,46,6,5,0,0,0,0,15,6,4,7,4,7,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,3,16,1412,560,852,529,807,21,34,2,3,0,1,0,0,8,7,557,849,526,804,21,34,2,3,0,1,0,0,8,7,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,3,17,936,330,606,315,583,9,17,0,3,0,0,0,0,6,3,329,605,314,582,9,17,0,3,0,0,0,0,6,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,3,18,751,214,537,200,515,11,20,1,0,0,0,0,0,2,2,214,537,200,515,11,20,1,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,3,99,53997,26328,27669,24354,25541,983,1048,447,451,60,73,9,5,475,551,25956,27359,24014,25262,972,1038,435,440,59,73,6,4,470,542,372,310,340,279,11,10,12,11,1,0,3,1,5,9 -050,01,071,Alabama,Jackson County,4,0,681,340,341,306,312,18,14,2,3,0,1,0,0,14,11,325,331,291,303,18,13,2,3,0,1,0,0,14,11,15,10,15,9,0,1,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,4,1,2589,1323,1266,1197,1143,59,58,22,17,6,7,0,0,39,41,1282,1226,1158,1107,58,58,21,14,6,6,0,0,39,41,41,40,39,36,1,0,1,3,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,4,2,3437,1754,1683,1601,1531,74,73,33,26,5,4,0,0,41,49,1711,1647,1564,1500,72,72,30,23,5,4,0,0,40,48,43,36,37,31,2,1,3,3,0,0,0,0,1,1 -050,01,071,Alabama,Jackson County,4,3,3803,1945,1858,1749,1674,89,91,44,30,4,4,1,0,58,59,1916,1824,1728,1647,89,88,40,28,3,3,0,0,56,58,29,34,21,27,0,3,4,2,1,1,1,0,2,1 -050,01,071,Alabama,Jackson County,4,4,3528,1831,1697,1633,1521,72,64,57,50,5,6,2,0,62,56,1802,1669,1609,1497,72,64,53,50,5,5,2,0,61,53,29,28,24,24,0,0,4,0,0,1,0,0,1,3 -050,01,071,Alabama,Jackson County,4,5,3213,1581,1632,1433,1493,66,53,40,50,6,1,4,0,32,35,1537,1606,1395,1469,64,51,39,50,6,1,2,0,31,35,44,26,38,24,2,2,1,0,0,0,2,0,1,0 -050,01,071,Alabama,Jackson County,4,6,3305,1640,1665,1522,1532,58,59,33,31,4,5,1,0,22,38,1592,1634,1475,1503,57,59,33,30,4,4,1,0,22,38,48,31,47,29,1,0,0,1,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,4,7,3733,1890,1843,1743,1706,80,74,34,31,9,11,0,0,24,21,1855,1809,1711,1676,77,72,34,29,9,11,0,0,24,21,35,34,32,30,3,2,0,2,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,4,8,3772,1845,1927,1726,1784,65,66,26,31,3,9,0,3,25,34,1806,1908,1691,1770,64,65,23,28,3,9,0,3,25,33,39,19,35,14,1,1,3,3,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,4,9,4051,2028,2023,1889,1852,68,68,27,42,7,4,0,0,37,57,2007,2007,1871,1839,68,68,25,39,7,4,0,0,36,57,21,16,18,13,0,0,2,3,0,0,0,0,1,0 -050,01,071,Alabama,Jackson County,4,10,4051,1976,2075,1817,1911,81,72,34,48,3,3,1,0,40,41,1961,2053,1803,1891,81,71,33,48,3,3,1,0,40,40,15,22,14,20,0,1,1,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,4,11,3788,1848,1940,1702,1786,73,83,31,23,5,11,0,0,37,37,1835,1928,1690,1777,72,82,31,22,5,11,0,0,37,36,13,12,12,9,1,1,0,1,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,4,12,3452,1652,1800,1576,1692,32,52,21,26,6,3,0,1,17,26,1644,1788,1568,1682,32,52,21,25,6,3,0,1,17,25,8,12,8,10,0,0,0,1,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,4,13,2898,1446,1452,1390,1392,26,27,13,17,2,3,0,1,15,12,1440,1440,1385,1381,26,27,12,17,2,3,0,0,15,12,6,12,5,11,0,0,1,0,0,0,0,1,0,0 -050,01,071,Alabama,Jackson County,4,14,2457,1145,1312,1100,1249,26,39,6,6,1,2,0,0,12,16,1142,1307,1097,1245,26,38,6,6,1,2,0,0,12,16,3,5,3,4,0,1,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,4,15,1839,839,1000,799,944,20,40,6,5,0,0,0,0,14,11,835,992,795,936,20,40,6,5,0,0,0,0,14,11,4,8,4,8,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,4,16,1458,609,849,577,803,21,37,2,2,0,1,0,0,9,6,606,845,574,799,21,37,2,2,0,1,0,0,9,6,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,4,17,968,339,629,323,602,9,20,0,3,0,0,0,0,7,4,337,628,321,601,9,20,0,3,0,0,0,0,7,4,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,4,18,735,205,530,188,514,14,13,1,1,0,0,0,0,2,2,205,530,188,514,14,13,1,1,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,4,99,53758,26236,27522,24271,25441,951,1003,432,442,66,75,9,5,507,556,25838,27172,23914,25137,940,990,412,423,65,71,6,4,501,547,398,350,357,304,11,13,20,19,1,4,3,1,6,9 -050,01,071,Alabama,Jackson County,5,0,617,322,295,292,270,12,11,4,2,0,1,1,0,13,11,306,287,276,263,12,10,4,2,0,1,1,0,13,11,16,8,16,7,0,1,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,5,1,2544,1297,1247,1157,1131,67,57,19,15,4,6,0,0,50,38,1252,1212,1116,1100,66,57,18,12,4,5,0,0,48,38,45,35,41,31,1,0,1,3,0,1,0,0,2,0 -050,01,071,Alabama,Jackson County,5,2,3445,1768,1677,1620,1539,70,70,31,23,8,4,0,0,39,41,1718,1634,1577,1502,68,69,28,18,7,4,0,0,38,41,50,43,43,37,2,1,3,5,1,0,0,0,1,0 -050,01,071,Alabama,Jackson County,5,3,3783,1920,1863,1715,1671,94,99,45,31,4,5,1,0,61,57,1887,1826,1691,1643,94,96,40,29,3,3,0,0,59,55,33,37,24,28,0,3,5,2,1,2,1,0,2,2 -050,01,071,Alabama,Jackson County,5,4,3410,1776,1634,1594,1466,70,55,53,46,3,7,2,1,54,59,1743,1600,1567,1439,70,55,48,43,3,5,2,1,53,57,33,34,27,27,0,0,5,3,0,2,0,0,1,2 -050,01,071,Alabama,Jackson County,5,5,3232,1619,1613,1454,1459,69,54,48,60,7,3,6,0,35,37,1558,1593,1403,1442,67,52,47,59,5,3,3,0,33,37,61,20,51,17,2,2,1,1,2,0,3,0,2,0 -050,01,071,Alabama,Jackson County,5,6,3215,1635,1580,1511,1472,63,43,29,24,5,6,2,1,25,34,1566,1548,1446,1443,62,43,29,23,4,4,1,1,24,34,69,32,65,29,1,0,0,1,1,2,1,0,1,0 -050,01,071,Alabama,Jackson County,5,7,3756,1898,1858,1746,1704,82,88,35,32,9,8,0,0,26,26,1859,1815,1711,1667,80,86,34,30,8,8,0,0,26,24,39,43,35,37,2,2,1,2,1,0,0,0,0,2 -050,01,071,Alabama,Jackson County,5,8,3689,1806,1883,1687,1739,60,68,20,30,4,10,0,2,35,34,1767,1864,1652,1725,59,67,17,27,4,10,0,2,35,33,39,19,35,14,1,1,3,3,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,5,9,3964,1980,1984,1850,1833,65,57,27,34,9,7,0,0,29,53,1952,1964,1828,1816,65,57,24,31,8,7,0,0,27,53,28,20,22,17,0,0,3,3,1,0,0,0,2,0 -050,01,071,Alabama,Jackson County,5,10,4101,1996,2105,1847,1922,68,84,31,44,3,5,1,1,46,49,1978,2084,1833,1904,68,83,28,43,3,5,1,1,45,48,18,21,14,18,0,1,3,1,0,0,0,0,1,1 -050,01,071,Alabama,Jackson County,5,11,3781,1838,1943,1667,1798,88,77,40,27,6,9,0,0,37,32,1822,1932,1654,1791,87,76,39,25,5,9,0,0,37,31,16,11,13,7,1,1,1,2,1,0,0,0,0,1 -050,01,071,Alabama,Jackson County,5,12,3513,1692,1821,1611,1709,34,57,24,24,6,2,1,1,16,28,1682,1812,1602,1701,34,57,24,24,6,2,0,1,16,27,10,9,9,8,0,0,0,0,0,0,1,0,0,1 -050,01,071,Alabama,Jackson County,5,13,3002,1494,1508,1430,1439,31,30,16,21,2,3,0,0,15,15,1487,1498,1424,1429,31,30,15,21,2,3,0,0,15,15,7,10,6,10,0,0,1,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,5,14,2579,1216,1363,1163,1299,31,43,8,6,2,2,0,0,12,13,1211,1359,1158,1296,31,42,8,6,2,2,0,0,12,13,5,4,5,3,0,1,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,5,15,1891,884,1007,843,953,22,40,5,6,0,0,0,0,14,8,880,999,839,945,22,40,5,6,0,0,0,0,14,8,4,8,4,8,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,5,16,1474,600,874,566,826,23,37,2,3,0,1,0,0,9,7,597,868,563,820,23,37,2,3,0,1,0,0,9,7,3,6,3,6,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,5,17,980,344,636,329,608,12,23,0,2,0,0,0,0,3,3,342,635,327,607,12,23,0,2,0,0,0,0,3,3,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,5,18,735,196,539,182,521,10,13,1,1,0,1,0,0,3,3,196,539,182,521,10,13,1,1,0,1,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,5,99,53711,26281,27430,24264,25359,971,1006,438,431,72,80,14,6,522,548,25803,27069,23849,25054,961,993,411,405,64,73,8,6,510,538,478,361,415,305,10,13,27,26,8,7,6,0,12,10 -050,01,071,Alabama,Jackson County,6,0,658,330,328,308,299,8,14,1,2,0,1,0,0,13,12,316,317,294,289,8,13,1,2,0,1,0,0,13,12,14,11,14,10,0,1,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,6,1,2508,1245,1263,1108,1141,61,59,20,14,4,6,1,0,51,43,1191,1225,1059,1110,60,59,19,11,4,4,1,0,48,41,54,38,49,31,1,0,1,3,0,2,0,0,3,2 -050,01,071,Alabama,Jackson County,6,2,3388,1777,1611,1626,1482,68,54,29,29,9,5,0,0,45,41,1723,1559,1582,1439,66,53,25,23,6,5,0,0,44,39,54,52,44,43,2,1,4,6,3,0,0,0,1,2 -050,01,071,Alabama,Jackson County,6,3,3752,1904,1848,1718,1645,83,105,41,34,4,6,1,0,57,58,1866,1804,1689,1611,83,102,36,31,3,4,0,0,55,56,38,44,29,34,0,3,5,3,1,2,1,0,2,2 -050,01,071,Alabama,Jackson County,6,4,3484,1823,1661,1659,1483,72,66,46,49,4,8,2,2,40,53,1784,1630,1625,1461,72,65,41,46,4,5,2,2,40,51,39,31,34,22,0,1,5,3,0,3,0,0,0,2 -050,01,071,Alabama,Jackson County,6,5,3042,1488,1554,1331,1406,64,55,39,50,7,3,8,0,39,40,1434,1528,1288,1383,62,53,38,49,5,3,5,0,36,40,54,26,43,23,2,2,1,1,2,0,3,0,3,0 -050,01,071,Alabama,Jackson County,6,6,3111,1562,1549,1436,1430,60,39,32,33,5,6,2,1,27,40,1502,1518,1380,1402,59,39,32,32,4,4,1,1,26,40,60,31,56,28,1,0,0,1,1,2,1,0,1,0 -050,01,071,Alabama,Jackson County,6,7,3630,1824,1806,1669,1667,83,74,36,32,9,8,0,0,27,25,1770,1764,1619,1631,81,72,35,30,8,8,0,0,27,23,54,42,50,36,2,2,1,2,1,0,0,0,0,2 -050,01,071,Alabama,Jackson County,6,8,3693,1817,1876,1703,1711,56,79,23,38,4,10,0,3,31,35,1784,1855,1674,1695,55,78,20,34,4,10,0,3,31,35,33,21,29,16,1,1,3,4,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,6,9,3927,2002,1925,1866,1777,61,59,28,32,7,13,0,0,40,44,1972,1901,1843,1756,61,59,25,29,6,13,0,0,37,44,30,24,23,21,0,0,3,3,1,0,0,0,3,0 -050,01,071,Alabama,Jackson County,6,10,4039,1953,2086,1819,1892,58,88,33,46,3,5,1,0,39,55,1934,2067,1805,1876,58,87,29,45,3,5,1,0,38,54,19,19,14,16,0,1,4,1,0,0,0,0,1,1 -050,01,071,Alabama,Jackson County,6,11,3832,1874,1958,1699,1813,89,70,42,32,6,9,1,0,37,34,1854,1944,1682,1803,88,69,41,30,5,9,1,0,37,33,20,14,17,10,1,1,1,2,1,0,0,0,0,1 -050,01,071,Alabama,Jackson County,6,12,3667,1765,1902,1676,1789,39,58,22,21,6,2,0,0,22,32,1756,1890,1667,1778,39,58,22,21,6,2,0,0,22,31,9,12,9,11,0,0,0,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,6,13,3041,1486,1555,1419,1481,26,29,19,23,3,4,0,0,19,18,1479,1545,1413,1471,26,29,18,23,3,4,0,0,19,18,7,10,6,10,0,0,1,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,6,14,2641,1248,1393,1195,1320,29,50,11,6,2,2,0,0,11,15,1243,1390,1190,1317,29,50,11,6,2,2,0,0,11,15,5,3,5,3,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,6,15,1921,892,1029,857,968,14,41,5,6,0,1,0,0,16,13,888,1018,853,957,14,41,5,6,0,1,0,0,16,13,4,11,4,11,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,6,16,1460,593,867,567,811,15,45,2,2,0,1,0,0,9,8,590,863,564,807,15,45,2,2,0,1,0,0,9,8,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,6,17,984,358,626,344,596,12,23,0,3,0,0,0,0,2,4,355,624,341,594,12,23,0,3,0,0,0,0,2,4,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,6,18,747,196,551,182,533,9,11,1,2,0,1,0,1,4,3,196,550,182,533,9,11,1,2,0,1,0,0,4,3,0,1,0,0,0,0,0,0,0,0,0,1,0,0 -050,01,071,Alabama,Jackson County,6,99,53525,26137,27388,24182,25244,907,1019,430,454,73,91,16,7,529,573,25637,26992,23750,24913,897,1006,401,425,63,82,11,6,515,560,500,396,432,331,10,13,29,29,10,9,5,1,14,13 -050,01,071,Alabama,Jackson County,7,0,633,316,317,288,288,13,13,3,1,0,2,1,0,11,13,305,303,277,275,13,13,3,1,0,1,1,0,11,13,11,14,11,13,0,0,0,0,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,7,1,2494,1238,1256,1098,1120,63,60,13,12,3,12,2,0,59,52,1185,1218,1053,1094,60,60,12,9,3,8,1,0,56,47,53,38,45,26,3,0,1,3,0,4,1,0,3,5 -050,01,071,Alabama,Jackson County,7,2,3389,1767,1622,1628,1492,66,53,27,23,8,6,2,0,36,48,1708,1564,1581,1448,65,51,23,17,6,4,1,0,32,44,59,58,47,44,1,2,4,6,2,2,1,0,4,4 -050,01,071,Alabama,Jackson County,7,3,3608,1834,1774,1641,1583,78,104,42,28,5,5,0,1,68,53,1783,1736,1607,1554,76,102,34,23,4,5,0,0,62,52,51,38,34,29,2,2,8,5,1,0,0,1,6,1 -050,01,071,Alabama,Jackson County,7,4,3498,1849,1649,1654,1472,82,72,48,45,6,7,2,3,57,50,1795,1619,1614,1450,81,71,41,42,4,4,1,2,54,50,54,30,40,22,1,1,7,3,2,3,1,1,3,0 -050,01,071,Alabama,Jackson County,7,5,2981,1454,1527,1303,1366,54,51,48,51,8,5,8,2,33,52,1400,1489,1259,1339,54,49,45,47,5,5,6,0,31,49,54,38,44,27,0,2,3,4,3,0,2,2,2,3 -050,01,071,Alabama,Jackson County,7,6,3118,1574,1544,1455,1432,55,37,25,29,4,5,3,4,32,37,1504,1505,1393,1401,55,37,24,27,1,2,1,2,30,36,70,39,62,31,0,0,1,2,3,3,2,2,2,1 -050,01,071,Alabama,Jackson County,7,7,3474,1749,1725,1592,1592,79,65,40,32,10,8,1,1,27,27,1695,1682,1547,1559,77,62,38,28,8,8,0,0,25,25,54,43,45,33,2,3,2,4,2,0,1,1,2,2 -050,01,071,Alabama,Jackson County,7,8,3583,1800,1783,1674,1621,62,87,19,33,7,12,0,2,38,28,1764,1750,1647,1603,61,82,15,26,5,10,0,1,36,28,36,33,27,18,1,5,4,7,2,2,0,1,2,0 -050,01,071,Alabama,Jackson County,7,9,3847,1917,1930,1790,1803,59,59,25,28,6,8,1,1,36,31,1882,1907,1762,1786,59,59,22,25,5,7,0,0,34,30,35,23,28,17,0,0,3,3,1,1,1,1,2,1 -050,01,071,Alabama,Jackson County,7,10,4003,1983,2020,1856,1832,59,85,28,38,4,4,1,1,35,60,1966,1999,1846,1816,58,84,25,36,4,4,0,0,33,59,17,21,10,16,1,1,3,2,0,0,1,1,2,1 -050,01,071,Alabama,Jackson County,7,11,3905,1909,1996,1730,1839,91,75,40,39,4,7,0,0,44,36,1888,1981,1714,1828,89,74,37,37,4,7,0,0,44,35,21,15,16,11,2,1,3,2,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,7,12,3730,1797,1933,1692,1810,50,65,23,21,3,3,1,0,28,34,1786,1922,1683,1800,50,65,23,20,3,3,0,0,27,34,11,11,9,10,0,0,0,1,0,0,1,0,1,0 -050,01,071,Alabama,Jackson County,7,13,3134,1504,1630,1438,1559,22,35,19,17,3,6,0,0,22,13,1496,1620,1430,1549,22,35,19,17,3,6,0,0,22,13,8,10,8,10,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,7,14,2670,1327,1343,1265,1272,32,49,12,7,3,1,0,0,15,14,1322,1342,1260,1271,32,49,12,7,3,1,0,0,15,14,5,1,5,1,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,7,15,2001,896,1105,863,1047,14,45,6,5,0,1,0,0,13,7,893,1098,860,1040,14,45,6,5,0,1,0,0,13,7,3,7,3,7,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,7,16,1550,615,935,585,883,19,43,2,2,0,0,0,0,9,7,613,932,583,880,19,43,2,2,0,0,0,0,9,7,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,7,17,932,355,577,337,549,13,19,1,3,0,0,0,0,4,6,353,577,335,549,13,19,1,3,0,0,0,0,4,6,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,7,18,782,219,563,206,537,8,16,1,2,0,1,0,1,4,6,219,562,206,537,8,16,1,2,0,1,0,0,4,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0 -050,01,071,Alabama,Jackson County,7,99,53332,26103,27229,24095,25097,919,1033,422,416,74,93,22,16,571,574,25557,26806,23657,24779,906,1016,383,374,58,77,11,5,542,555,546,423,438,318,13,17,39,42,16,16,11,11,29,19 -050,01,071,Alabama,Jackson County,8,0,605,335,270,316,252,8,6,2,1,0,1,1,0,8,10,314,250,295,232,8,6,2,1,0,1,1,0,8,10,21,20,21,20,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,8,1,2514,1250,1264,1093,1131,62,52,21,12,6,10,3,3,65,56,1194,1210,1049,1094,58,51,19,8,4,6,1,1,63,50,56,54,44,37,4,1,2,4,2,4,2,2,2,6 -050,01,071,Alabama,Jackson County,8,2,3374,1754,1620,1596,1479,68,64,31,24,9,6,2,0,48,47,1685,1553,1542,1426,67,63,26,17,6,4,1,0,43,43,69,67,54,53,1,1,5,7,3,2,1,0,5,4 -050,01,071,Alabama,Jackson County,8,3,3552,1808,1744,1625,1557,72,95,38,29,5,7,0,1,68,55,1757,1700,1593,1526,69,92,30,23,4,6,0,0,61,53,51,44,32,31,3,3,8,6,1,1,0,1,7,2 -050,01,071,Alabama,Jackson County,8,4,3572,1879,1693,1700,1518,71,75,46,41,6,6,3,4,53,49,1822,1659,1659,1495,69,72,39,37,4,4,2,2,49,49,57,34,41,23,2,3,7,4,2,2,1,2,4,0 -050,01,071,Alabama,Jackson County,8,5,2874,1416,1458,1274,1304,55,42,45,49,7,5,9,2,26,56,1364,1425,1232,1282,55,41,42,44,4,5,7,0,24,53,52,33,42,22,0,1,3,5,3,0,2,2,2,3 -050,01,071,Alabama,Jackson County,8,6,3048,1524,1524,1408,1403,56,40,22,37,4,6,6,3,28,35,1450,1485,1344,1371,55,40,20,36,1,3,4,1,26,34,74,39,64,32,1,0,2,1,3,3,2,2,2,1 -050,01,071,Alabama,Jackson County,8,7,3410,1695,1715,1558,1581,67,61,32,28,10,10,1,1,27,34,1628,1675,1501,1551,65,59,29,24,8,9,0,0,25,32,67,40,57,30,2,2,3,4,2,1,1,1,2,2 -050,01,071,Alabama,Jackson County,8,8,3663,1848,1815,1716,1647,65,79,20,42,7,13,0,4,40,30,1804,1775,1682,1625,64,74,15,34,5,11,0,2,38,29,44,40,34,22,1,5,5,8,2,2,0,2,2,1 -050,01,071,Alabama,Jackson County,8,9,3739,1874,1865,1744,1724,54,56,25,34,8,14,1,2,42,35,1838,1838,1716,1704,53,56,22,31,7,13,0,0,40,34,36,27,28,20,1,0,3,3,1,1,1,2,2,1 -050,01,071,Alabama,Jackson County,8,10,4058,1967,2091,1840,1892,55,78,29,40,4,6,2,2,37,73,1948,2074,1829,1880,54,77,25,38,4,5,1,1,35,73,19,17,11,12,1,1,4,2,0,1,1,1,2,0 -050,01,071,Alabama,Jackson County,8,11,3967,1962,2005,1784,1837,88,77,42,41,5,8,2,0,41,42,1935,1989,1763,1825,86,77,40,39,5,7,0,0,41,41,27,16,21,12,2,0,2,2,0,1,2,0,0,1 -050,01,071,Alabama,Jackson County,8,12,3838,1832,2006,1713,1871,61,71,23,23,3,3,0,0,32,38,1821,1992,1702,1858,61,71,23,22,3,3,0,0,32,38,11,14,11,13,0,0,0,1,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,8,13,3170,1503,1667,1440,1583,26,42,17,16,3,9,0,0,17,17,1496,1656,1433,1572,26,42,17,16,3,9,0,0,17,17,7,11,7,11,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,8,14,2717,1380,1337,1320,1271,28,38,8,12,4,1,0,0,20,15,1375,1334,1315,1269,28,38,8,12,4,1,0,0,20,14,5,3,5,2,0,0,0,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,8,15,2086,931,1155,892,1102,20,40,4,5,2,1,0,0,13,7,929,1149,890,1096,20,40,4,5,2,1,0,0,13,7,2,6,2,6,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,8,16,1561,641,920,617,868,14,41,1,2,0,1,0,0,9,8,639,915,615,863,14,41,1,2,0,1,0,0,9,8,2,5,2,5,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,8,17,929,364,565,351,536,11,20,1,2,0,1,0,0,1,6,362,564,349,535,11,20,1,2,0,1,0,0,1,6,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,8,18,806,222,584,207,555,9,19,1,2,0,1,0,1,5,6,222,583,207,555,9,19,1,2,0,1,0,0,5,6,0,1,0,0,0,0,0,0,0,0,0,1,0,0 -050,01,071,Alabama,Jackson County,8,99,53483,26185,27298,24194,25111,890,996,408,440,83,109,30,23,580,619,25583,26826,23716,24759,872,979,364,393,64,91,17,7,550,597,602,472,478,352,18,17,44,47,19,18,13,16,30,22 -050,01,071,Alabama,Jackson County,9,0,609,329,280,312,255,7,12,1,1,0,2,1,0,8,10,302,259,285,235,7,12,1,1,0,1,1,0,8,10,27,21,27,20,0,0,0,0,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,9,1,2421,1218,1203,1084,1080,53,42,14,12,6,10,3,3,58,56,1160,1136,1038,1031,49,41,12,7,4,6,1,1,56,50,58,67,46,49,4,1,2,5,2,4,2,2,2,6 -050,01,071,Alabama,Jackson County,9,2,3398,1753,1645,1586,1492,73,77,28,24,12,7,2,0,52,45,1682,1579,1533,1442,73,75,22,16,8,5,1,0,45,41,71,66,53,50,0,2,6,8,4,2,1,0,7,4 -050,01,071,Alabama,Jackson County,9,3,3526,1799,1727,1615,1539,75,84,35,32,5,10,0,1,69,61,1741,1672,1577,1499,72,81,27,26,4,8,0,0,61,58,58,55,38,40,3,3,8,6,1,2,0,1,8,3 -050,01,071,Alabama,Jackson County,9,4,3624,1927,1697,1726,1514,82,80,45,37,5,7,2,4,67,55,1859,1662,1675,1491,80,77,37,33,3,4,1,2,63,55,68,35,51,23,2,3,8,4,2,3,1,2,4,0 -050,01,071,Alabama,Jackson County,9,5,2785,1381,1404,1237,1267,55,42,42,41,7,5,9,2,31,47,1332,1376,1198,1250,55,41,39,36,4,5,7,0,29,44,49,28,39,17,0,1,3,5,3,0,2,2,2,3 -050,01,071,Alabama,Jackson County,9,6,2977,1502,1475,1393,1355,48,48,19,35,5,7,3,2,34,28,1427,1433,1330,1320,47,48,17,34,1,4,1,0,31,27,75,42,63,35,1,0,2,1,4,3,2,2,3,1 -050,01,071,Alabama,Jackson County,9,7,3180,1567,1613,1439,1485,53,54,39,30,10,8,1,1,25,35,1506,1577,1388,1459,51,52,36,25,8,8,0,0,23,33,61,36,51,26,2,2,3,5,2,0,1,1,2,2 -050,01,071,Alabama,Jackson County,9,8,3687,1861,1826,1712,1676,75,69,29,39,7,14,0,2,38,26,1812,1774,1674,1642,73,64,24,31,5,12,0,0,36,25,49,52,38,34,2,5,5,8,2,2,0,2,2,1 -050,01,071,Alabama,Jackson County,9,9,3634,1808,1826,1691,1693,51,60,16,26,6,8,1,2,43,37,1768,1793,1660,1667,50,60,13,23,5,7,0,0,40,36,40,33,31,26,1,0,3,3,1,1,1,2,3,1 -050,01,071,Alabama,Jackson County,9,10,4034,1969,2065,1848,1879,56,68,26,37,4,5,2,2,33,74,1952,2051,1839,1868,55,67,22,36,4,5,1,1,31,74,17,14,9,11,1,1,4,1,0,0,1,1,2,0 -050,01,071,Alabama,Jackson County,9,11,4117,2040,2077,1854,1903,86,78,47,48,5,7,1,0,47,41,2015,2061,1834,1891,84,78,45,46,5,6,0,0,47,40,25,16,20,12,2,0,2,2,0,1,1,0,0,1 -050,01,071,Alabama,Jackson County,9,12,3744,1799,1945,1677,1802,67,74,20,20,3,3,0,0,32,46,1792,1934,1670,1791,67,74,20,20,3,3,0,0,32,46,7,11,7,11,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,9,13,3372,1584,1788,1508,1692,35,53,22,21,3,8,0,0,16,14,1575,1775,1499,1680,35,53,22,20,3,8,0,0,16,14,9,13,9,12,0,0,0,1,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,9,14,2768,1415,1353,1349,1294,30,29,13,12,4,1,0,0,19,17,1409,1350,1343,1292,30,29,13,12,4,1,0,0,19,16,6,3,6,2,0,0,0,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,9,15,2145,967,1178,929,1126,20,37,5,5,2,1,0,0,11,9,965,1169,927,1117,20,37,5,5,2,1,0,0,11,9,2,9,2,9,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,9,16,1515,618,897,594,850,13,35,1,2,0,1,0,0,10,9,617,893,593,846,13,35,1,2,0,1,0,0,10,9,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,9,17,968,411,557,393,525,15,24,1,2,0,1,0,0,2,5,408,556,390,524,15,24,1,2,0,1,0,0,2,5,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,9,18,829,229,600,213,568,11,21,1,2,0,1,0,1,4,7,228,599,213,568,10,21,1,2,0,1,0,0,4,7,1,1,0,0,1,0,0,0,0,0,0,1,0,0 -050,01,071,Alabama,Jackson County,9,99,53333,26177,27156,24160,24995,905,987,404,426,84,106,25,20,599,622,25550,26649,23666,24613,886,969,358,377,63,87,13,4,564,599,627,507,494,382,19,18,46,49,21,19,12,16,35,23 -050,01,071,Alabama,Jackson County,10,0,633,313,320,291,290,12,15,1,1,0,1,0,0,9,13,291,297,269,267,12,15,1,1,0,1,0,0,9,13,22,23,22,23,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,10,1,2444,1242,1202,1115,1079,50,41,11,10,3,10,3,2,60,60,1182,1127,1069,1023,46,40,8,5,2,5,1,0,56,54,60,75,46,56,4,1,3,5,1,5,2,2,4,6 -050,01,071,Alabama,Jackson County,10,2,3344,1704,1640,1532,1490,66,70,28,28,15,6,3,0,60,46,1623,1558,1471,1425,66,68,21,19,11,4,2,0,52,42,81,82,61,65,0,2,7,9,4,2,1,0,8,4 -050,01,071,Alabama,Jackson County,10,3,3582,1817,1765,1630,1586,74,81,34,28,6,11,0,1,73,58,1756,1696,1592,1535,71,76,24,21,4,9,0,0,65,55,61,69,38,51,3,5,10,7,2,2,0,1,8,3 -050,01,071,Alabama,Jackson County,10,4,3668,1928,1740,1745,1557,76,83,42,34,5,8,2,5,58,53,1862,1690,1698,1524,74,80,32,27,3,4,1,3,54,52,66,50,47,33,2,3,10,7,2,4,1,2,4,1 -050,01,071,Alabama,Jackson County,10,5,2656,1339,1317,1195,1197,56,42,37,29,8,7,11,2,32,40,1275,1292,1146,1184,56,41,33,23,3,7,8,0,29,37,64,25,49,13,0,1,4,6,5,0,3,2,3,3 -050,01,071,Alabama,Jackson County,10,6,2984,1485,1499,1371,1360,45,52,24,44,5,7,7,5,33,31,1404,1455,1303,1324,44,52,22,43,1,3,4,3,30,30,81,44,68,36,1,0,2,1,4,4,3,2,3,1 -050,01,071,Alabama,Jackson County,10,7,3118,1542,1576,1400,1458,59,37,46,31,10,6,1,1,26,43,1484,1535,1353,1430,58,35,42,25,7,6,0,0,24,39,58,41,47,28,1,2,4,6,3,0,1,1,2,4 -050,01,071,Alabama,Jackson County,10,8,3776,1868,1908,1722,1731,71,76,24,52,8,15,1,3,42,31,1805,1853,1670,1696,69,70,19,43,6,13,1,1,40,30,63,55,52,35,2,6,5,9,2,2,0,2,2,1 -050,01,071,Alabama,Jackson County,10,9,3521,1749,1772,1641,1628,44,66,20,24,7,15,1,2,36,37,1712,1743,1616,1606,43,66,15,21,5,14,0,0,33,36,37,29,25,22,1,0,5,3,2,1,1,2,3,1 -050,01,071,Alabama,Jackson County,10,10,4008,1973,2035,1838,1876,59,52,29,37,5,10,2,1,40,59,1957,2017,1833,1863,58,51,23,35,5,9,1,0,37,59,16,18,5,13,1,1,6,2,0,1,1,1,3,0 -050,01,071,Alabama,Jackson County,10,11,4180,2077,2103,1904,1916,80,90,43,47,4,5,2,0,44,45,2043,2085,1878,1903,78,90,39,44,4,4,0,0,44,44,34,18,26,13,2,0,4,3,0,1,2,0,0,1 -050,01,071,Alabama,Jackson County,10,12,3731,1795,1936,1650,1798,77,72,35,20,3,2,0,0,30,44,1782,1924,1637,1787,77,72,35,19,3,2,0,0,30,44,13,12,13,11,0,0,0,1,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,10,13,3432,1605,1827,1539,1708,32,61,20,28,3,10,0,0,11,20,1596,1815,1530,1697,32,61,20,27,3,10,0,0,11,20,9,12,9,11,0,0,0,1,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,10,14,2880,1432,1448,1369,1379,29,31,11,16,6,1,0,0,17,21,1425,1446,1363,1378,29,31,10,16,6,1,0,0,17,20,7,2,6,1,0,0,1,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,10,15,2235,1011,1224,974,1159,17,50,7,5,2,1,0,0,11,9,1009,1212,972,1147,17,50,7,5,2,1,0,0,11,9,2,12,2,12,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,10,16,1531,649,882,621,840,17,30,1,2,0,1,0,0,10,9,648,876,620,834,17,30,1,2,0,1,0,0,10,9,1,6,1,6,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,10,17,969,391,578,374,543,14,25,1,2,0,1,0,0,2,7,389,577,372,542,14,25,1,2,0,1,0,0,2,7,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,10,18,833,236,597,220,564,10,20,2,3,0,1,0,1,4,8,235,596,220,564,9,20,2,3,0,1,0,0,4,8,1,1,0,0,1,0,0,0,0,0,0,1,0,0 -050,01,071,Alabama,Jackson County,10,99,53525,26156,27369,24131,25159,888,994,416,441,90,118,33,23,598,634,25478,26794,23612,24729,870,973,355,381,65,96,18,7,558,608,678,575,519,430,18,21,61,60,25,22,15,16,40,26 -050,01,071,Alabama,Jackson County,11,0,601,311,290,288,265,10,12,4,1,0,1,1,0,8,11,289,275,267,251,10,12,3,0,0,1,1,0,8,11,22,15,21,14,0,0,1,1,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,11,1,2435,1239,1196,1106,1066,55,46,10,9,5,12,3,3,60,60,1173,1116,1056,1005,51,45,7,3,3,8,1,1,55,54,66,80,50,61,4,1,3,6,2,4,2,2,5,6 -050,01,071,Alabama,Jackson County,11,2,3406,1733,1673,1564,1521,63,60,28,28,14,6,3,0,61,58,1645,1597,1498,1464,63,58,20,17,9,4,2,0,53,54,88,76,66,57,0,2,8,11,5,2,1,0,8,4 -050,01,071,Alabama,Jackson County,11,3,3540,1819,1721,1621,1534,73,83,36,31,5,10,0,1,84,62,1754,1648,1578,1476,70,78,26,25,4,9,0,0,76,60,65,73,43,58,3,5,10,6,1,1,0,1,8,2 -050,01,071,Alabama,Jackson County,11,4,3635,1910,1725,1724,1541,72,77,38,35,3,9,2,6,71,57,1830,1677,1663,1510,70,74,28,28,1,5,1,4,67,56,80,48,61,31,2,3,10,7,2,4,1,2,4,1 -050,01,071,Alabama,Jackson County,11,5,2716,1363,1353,1231,1221,53,49,29,33,8,7,12,2,30,41,1292,1324,1175,1204,53,48,25,27,3,7,9,0,27,38,71,29,56,17,0,1,4,6,5,0,3,2,3,3 -050,01,071,Alabama,Jackson County,11,6,2879,1422,1457,1308,1344,44,39,24,27,6,7,3,2,37,38,1344,1415,1244,1311,43,39,22,26,1,2,0,0,34,37,78,42,64,33,1,0,2,1,5,5,3,2,3,1 -050,01,071,Alabama,Jackson County,11,7,3080,1522,1558,1372,1429,66,39,45,40,9,7,1,1,29,42,1462,1518,1323,1402,65,37,41,34,6,7,0,0,27,38,60,40,49,27,1,2,4,6,3,0,1,1,2,4 -050,01,071,Alabama,Jackson County,11,8,3695,1817,1878,1653,1699,75,75,30,44,8,15,0,5,51,40,1753,1819,1602,1661,72,69,24,34,6,13,0,3,49,39,64,59,51,38,3,6,6,10,2,2,0,2,2,1 -050,01,071,Alabama,Jackson County,11,9,3540,1812,1728,1690,1586,50,58,17,29,8,9,1,2,46,44,1773,1700,1663,1566,49,58,13,25,6,8,0,0,42,43,39,28,27,20,1,0,4,4,2,1,1,2,4,1 -050,01,071,Alabama,Jackson County,11,10,3898,1953,1945,1819,1791,58,55,27,26,5,10,2,2,42,61,1932,1930,1810,1780,57,54,20,24,5,10,1,1,39,61,21,15,9,11,1,1,7,2,0,0,1,1,3,0 -050,01,071,Alabama,Jackson County,11,11,4111,2025,2086,1861,1897,79,90,37,47,6,4,2,0,40,48,1996,2066,1842,1883,77,90,32,43,4,3,1,0,40,47,29,20,19,14,2,0,5,4,2,1,1,0,0,1 -050,01,071,Alabama,Jackson County,11,12,3762,1819,1943,1666,1808,79,64,34,24,3,2,1,0,36,45,1811,1928,1659,1794,79,64,34,23,3,2,0,0,36,45,8,15,7,14,0,0,0,1,0,0,1,0,0,0 -050,01,071,Alabama,Jackson County,11,13,3536,1669,1867,1591,1751,31,59,25,29,3,8,0,0,19,20,1661,1858,1583,1742,31,59,25,29,3,8,0,0,19,20,8,9,8,9,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,11,14,2961,1462,1499,1385,1426,28,38,17,17,6,1,0,0,26,17,1454,1497,1378,1425,28,38,16,17,6,1,0,0,26,16,8,2,7,1,0,0,1,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,11,15,2319,1057,1262,1018,1196,20,48,6,6,2,1,0,0,11,11,1055,1249,1016,1184,20,48,6,6,2,1,0,0,11,10,2,13,2,12,0,0,0,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,11,16,1518,656,862,638,821,8,29,1,2,0,1,0,0,9,9,655,858,637,817,8,29,1,2,0,1,0,0,9,9,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,11,17,1016,402,614,386,571,14,32,1,2,0,1,0,0,1,8,399,613,383,570,14,32,1,2,0,1,0,0,1,8,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,11,18,813,234,579,217,553,11,14,2,3,0,2,0,1,4,6,233,578,217,553,10,14,2,3,0,2,0,0,4,6,1,1,0,0,1,0,0,0,0,0,0,1,0,0 -050,01,071,Alabama,Jackson County,11,99,53461,26225,27236,24138,25020,889,967,411,433,91,113,31,25,665,678,25511,26666,23594,24598,870,946,346,368,62,93,16,9,623,652,714,570,544,422,19,21,65,65,29,20,15,16,42,26 -050,01,071,Alabama,Jackson County,12,0,577,294,283,270,253,11,15,3,1,0,2,1,0,9,12,274,271,251,243,11,15,2,0,0,1,1,0,9,12,20,12,19,10,0,0,1,1,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,12,1,2398,1241,1157,1121,1035,45,38,13,9,5,11,3,3,54,61,1174,1073,1071,971,41,37,9,3,3,6,1,1,49,55,67,84,50,64,4,1,4,6,2,5,2,2,5,6 -050,01,071,Alabama,Jackson County,12,2,3333,1705,1628,1537,1482,57,55,25,28,14,7,3,1,69,55,1620,1548,1475,1423,57,53,17,17,8,4,2,0,61,51,85,80,62,59,0,2,8,11,6,3,1,1,8,4 -050,01,071,Alabama,Jackson County,12,3,3546,1827,1719,1621,1538,79,81,38,27,6,11,0,1,83,61,1757,1644,1575,1481,76,76,27,20,4,9,0,0,75,58,70,75,46,57,3,5,11,7,2,2,0,1,8,3 -050,01,071,Alabama,Jackson County,12,4,3548,1846,1702,1668,1518,68,80,37,34,5,10,2,4,66,56,1767,1651,1608,1485,66,77,27,27,3,5,1,2,62,55,79,51,60,33,2,3,10,7,2,5,1,2,4,1 -050,01,071,Alabama,Jackson County,12,5,2718,1383,1335,1247,1215,63,48,26,23,8,7,12,2,27,40,1309,1303,1188,1195,63,47,22,17,3,7,9,0,24,37,74,32,59,20,0,1,4,6,5,0,3,2,3,3 -050,01,071,Alabama,Jackson County,12,6,2822,1390,1432,1271,1318,43,39,25,32,6,8,7,4,38,31,1312,1383,1207,1278,42,39,23,31,1,3,4,2,35,30,78,49,64,40,1,0,2,1,5,5,3,2,3,1 -050,01,071,Alabama,Jackson County,12,7,3081,1520,1561,1368,1416,64,47,41,43,9,10,1,1,37,44,1457,1513,1316,1382,63,45,37,37,6,9,0,0,35,40,63,48,52,34,1,2,4,6,3,1,1,1,2,4 -050,01,071,Alabama,Jackson County,12,8,3587,1773,1814,1616,1635,68,69,30,47,8,15,1,4,50,44,1708,1756,1564,1599,65,63,24,36,6,13,1,2,48,43,65,58,52,36,3,6,6,11,2,2,0,2,2,1 -050,01,071,Alabama,Jackson County,12,9,3492,1798,1694,1672,1548,48,62,18,27,10,13,2,2,48,42,1753,1665,1641,1527,47,62,13,23,8,12,0,0,44,41,45,29,31,21,1,0,5,4,2,1,2,2,4,1 -050,01,071,Alabama,Jackson County,12,10,3853,1882,1971,1758,1818,54,60,24,29,5,10,2,2,39,52,1858,1951,1746,1804,53,59,17,26,5,9,1,1,36,52,24,20,12,14,1,1,7,3,0,1,1,1,3,0 -050,01,071,Alabama,Jackson County,12,11,4128,2080,2048,1917,1871,77,81,33,42,7,4,3,0,43,50,2049,2031,1898,1860,75,81,28,38,4,3,1,0,43,49,31,17,19,11,2,0,5,4,3,1,2,0,0,1 -050,01,071,Alabama,Jackson County,12,12,3785,1829,1956,1691,1831,74,56,27,28,3,2,1,0,33,39,1819,1940,1682,1816,74,56,27,27,3,2,0,0,33,39,10,16,9,15,0,0,0,1,0,0,1,0,0,0 -050,01,071,Alabama,Jackson County,12,13,3586,1706,1880,1604,1760,45,62,32,23,3,12,0,0,22,23,1696,1868,1594,1749,45,62,32,22,3,12,0,0,22,23,10,12,10,11,0,0,0,1,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,12,14,3040,1474,1566,1402,1485,28,46,17,14,6,1,0,0,21,20,1466,1564,1395,1484,28,46,16,14,6,1,0,0,21,19,8,2,7,1,0,0,1,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,12,15,2283,1076,1207,1040,1151,17,38,6,6,2,1,0,0,11,11,1074,1197,1038,1142,17,38,6,6,2,1,0,0,11,10,2,10,2,9,0,0,0,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,12,16,1578,663,915,641,876,11,27,1,2,0,1,0,0,10,9,662,910,640,871,11,27,1,2,0,1,0,0,10,9,1,5,1,5,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,12,17,1051,421,630,406,598,13,21,1,2,0,1,0,0,1,8,417,629,402,597,13,21,1,2,0,1,0,0,1,8,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,12,18,821,231,590,211,560,13,17,2,3,0,2,0,1,5,7,230,589,211,560,12,17,2,3,0,2,0,0,5,7,1,1,0,0,1,0,0,0,0,0,0,1,0,0 -050,01,071,Alabama,Jackson County,12,99,53227,26139,27088,24061,24908,878,942,399,420,97,128,38,25,666,665,25402,26486,23502,24467,859,921,331,351,65,101,21,8,624,638,737,602,559,441,19,21,68,69,32,27,17,17,42,27 -050,01,071,Alabama,Jackson County,13,0,581,295,286,269,254,12,15,3,1,1,1,0,0,10,15,273,274,250,243,12,15,2,0,0,1,0,0,9,15,22,12,19,11,0,0,1,1,1,0,0,0,1,0 -050,01,071,Alabama,Jackson County,13,1,2382,1234,1148,1113,1029,46,38,13,13,5,8,4,2,53,58,1171,1068,1064,965,42,38,9,6,3,6,4,2,49,51,63,80,49,64,4,0,4,7,2,2,0,0,4,7 -050,01,071,Alabama,Jackson County,13,2,3316,1687,1629,1532,1479,58,56,20,25,10,10,2,2,65,57,1606,1547,1470,1420,56,53,14,15,6,5,1,1,59,53,81,82,62,59,2,3,6,10,4,5,1,1,6,4 -050,01,071,Alabama,Jackson County,13,3,3519,1811,1708,1612,1530,77,81,34,24,5,8,1,2,82,63,1750,1633,1568,1475,74,75,26,19,3,6,1,1,78,57,61,75,44,55,3,6,8,5,2,2,0,1,4,6 -050,01,071,Alabama,Jackson County,13,4,3515,1830,1685,1652,1503,66,75,31,30,6,11,3,7,72,59,1755,1638,1593,1471,63,75,25,26,5,5,2,3,67,58,75,47,59,32,3,0,6,4,1,6,1,4,5,1 -050,01,071,Alabama,Jackson County,13,5,2716,1384,1332,1248,1213,64,51,22,19,5,6,11,2,34,41,1309,1302,1189,1193,63,49,20,16,0,6,7,0,30,38,75,30,59,20,1,2,2,3,5,0,4,2,4,3 -050,01,071,Alabama,Jackson County,13,6,2819,1385,1434,1272,1316,46,39,21,32,3,8,5,4,38,35,1310,1382,1209,1277,42,38,21,31,1,3,2,1,35,32,75,52,63,39,4,1,0,1,2,5,3,3,3,3 -050,01,071,Alabama,Jackson County,13,7,3096,1529,1567,1374,1422,66,47,40,39,11,9,1,2,37,48,1466,1520,1320,1388,65,45,37,36,7,8,1,1,36,42,63,47,54,34,1,2,3,3,4,1,0,1,1,6 -050,01,071,Alabama,Jackson County,13,8,3538,1760,1778,1597,1617,70,64,31,41,8,12,3,3,51,41,1691,1729,1545,1581,67,60,24,34,6,12,1,2,48,40,69,49,52,36,3,4,7,7,2,0,2,1,3,1 -050,01,071,Alabama,Jackson County,13,9,3467,1786,1681,1666,1540,47,62,16,23,12,13,1,1,44,42,1742,1658,1634,1521,45,61,11,22,8,13,1,1,43,40,44,23,32,19,2,1,5,1,4,0,0,0,1,2 -050,01,071,Alabama,Jackson County,13,10,3830,1875,1955,1744,1803,53,61,20,25,6,10,5,4,47,52,1854,1936,1733,1789,51,60,15,23,5,9,4,3,46,52,21,19,11,14,2,1,5,2,1,1,1,1,1,0 -050,01,071,Alabama,Jackson County,13,11,4123,2078,2045,1913,1867,79,81,33,41,6,6,2,0,45,50,2047,2029,1893,1856,75,81,29,38,4,4,1,0,45,50,31,16,20,11,4,0,4,3,2,2,1,0,0,0 -050,01,071,Alabama,Jackson County,13,12,3807,1840,1967,1697,1837,76,59,25,25,4,2,1,0,37,44,1829,1950,1687,1821,75,58,25,25,4,2,1,0,37,44,11,17,10,16,1,1,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,13,13,3622,1722,1900,1612,1773,47,63,32,25,3,13,1,2,27,24,1709,1882,1602,1760,45,62,31,21,3,13,1,2,27,24,13,18,10,13,2,1,1,4,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,13,14,3057,1481,1576,1407,1488,31,50,16,13,5,2,0,1,22,22,1472,1571,1400,1487,29,48,16,13,5,2,0,0,22,21,9,5,7,1,2,2,0,0,0,0,0,1,0,1 -050,01,071,Alabama,Jackson County,13,15,2288,1082,1206,1046,1151,19,42,3,4,2,2,0,0,12,7,1078,1196,1044,1143,17,40,3,4,2,2,0,0,12,7,4,10,2,8,2,2,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,13,16,1579,665,914,640,872,15,30,0,2,3,1,0,0,7,9,662,908,639,868,13,28,0,2,3,1,0,0,7,9,3,6,1,4,2,2,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,13,17,1049,421,628,405,594,15,21,0,4,0,2,0,0,1,7,416,627,400,593,15,21,0,4,0,2,0,0,1,7,5,1,5,1,0,0,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,13,18,824,232,592,213,562,12,18,2,3,0,2,0,0,5,7,232,591,213,562,12,17,2,3,0,2,0,0,5,7,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,13,99,53128,26097,27031,24012,24850,899,953,362,389,95,126,40,32,689,681,25372,26441,23453,24413,861,924,310,338,65,102,27,17,656,647,725,590,559,437,38,29,52,51,30,24,13,15,33,34 -050,01,073,Alabama,Jefferson County,1,0,8760,4480,4280,2274,2154,2076,2017,7,7,54,46,2,0,67,56,4336,4150,2158,2041,2057,2002,4,6,53,46,0,0,64,55,144,130,116,113,19,15,3,1,1,0,2,0,3,1 -050,01,073,Alabama,Jefferson County,1,1,34513,17670,16843,8951,8444,8272,7961,25,29,172,188,6,4,244,217,17262,16443,8606,8110,8222,7911,24,23,171,186,3,3,236,210,408,400,345,334,50,50,1,6,1,2,3,1,8,7 -050,01,073,Alabama,Jefferson County,1,2,45804,23475,22329,11460,10795,11539,11120,44,39,213,172,7,5,212,198,23087,21988,11148,10532,11480,11055,42,36,208,170,4,2,205,193,388,341,312,263,59,65,2,3,5,2,3,3,7,5 -050,01,073,Alabama,Jefferson County,1,3,47059,24170,22889,12186,11421,11584,11024,42,57,183,205,8,5,167,177,23826,22593,11915,11199,11521,10967,37,53,179,199,8,2,166,173,344,296,271,222,63,57,5,4,4,6,0,3,1,4 -050,01,073,Alabama,Jefferson County,1,4,46078,23025,23053,12020,11664,10581,10993,66,59,191,191,14,11,153,135,22453,22742,11516,11405,10541,10959,57,50,186,190,8,4,145,134,572,311,504,259,40,34,9,9,5,1,6,7,8,1 -050,01,073,Alabama,Jefferson County,1,5,45582,21795,23787,12328,12360,8940,10909,61,49,305,293,26,9,135,167,20696,23280,11327,11939,8886,10856,47,36,295,285,10,4,131,160,1099,507,1001,421,54,53,14,13,10,8,16,5,4,7 -050,01,073,Alabama,Jefferson County,1,6,47404,23053,24351,14065,13376,8376,10383,62,62,414,404,5,4,131,122,22087,23812,13170,12911,8326,10324,51,59,410,400,4,3,126,115,966,539,895,465,50,59,11,3,4,4,1,1,5,7 -050,01,073,Alabama,Jefferson County,1,7,45472,22133,23339,13691,12937,7873,9866,59,55,377,339,13,7,120,135,21431,22963,13068,12634,7827,9809,44,46,371,338,6,5,115,131,702,376,623,303,46,57,15,9,6,1,7,2,5,4 -050,01,073,Alabama,Jefferson County,1,8,50567,24022,26545,14902,14859,8546,11128,78,63,358,358,5,10,133,127,23555,26220,14494,14593,8512,11081,72,61,351,351,3,9,123,125,467,325,408,266,34,47,6,2,7,7,2,1,10,2 -050,01,073,Alabama,Jefferson County,1,9,53070,25053,28017,15369,15625,9225,11921,71,80,228,237,9,12,151,142,24737,27800,15093,15456,9201,11881,67,77,226,235,6,11,144,140,316,217,276,169,24,40,4,3,2,2,3,1,7,2 -050,01,073,Alabama,Jefferson County,1,10,49872,23591,26281,14612,15136,8634,10728,59,59,172,210,6,7,108,141,23376,26122,14437,15022,8606,10693,55,56,172,210,3,6,103,135,215,159,175,114,28,35,4,3,0,0,3,1,5,6 -050,01,073,Alabama,Jefferson County,1,11,41611,19856,21755,12944,13610,6657,7848,52,45,123,141,3,4,77,107,19692,21620,12817,13507,6627,7822,50,43,123,139,3,3,72,106,164,135,127,103,30,26,2,2,0,2,0,1,5,1 -050,01,073,Alabama,Jefferson County,1,12,30618,14279,16339,9958,10954,4102,5168,44,45,98,94,2,0,75,78,14180,16229,9873,10869,4092,5146,42,44,97,94,2,0,74,76,99,110,85,85,10,22,2,1,1,0,0,0,1,2 -050,01,073,Alabama,Jefferson County,1,13,25335,11217,14118,7785,9396,3285,4553,28,28,61,70,0,5,58,66,11150,14043,7734,9342,3272,4536,27,27,61,69,0,5,56,64,67,75,51,54,13,17,1,1,0,1,0,0,2,2 -050,01,073,Alabama,Jefferson County,1,14,23337,9958,13379,6954,9020,2898,4214,14,20,45,56,0,1,47,68,9904,13312,6915,8980,2889,4192,13,19,44,56,0,0,43,65,54,67,39,40,9,22,1,1,1,0,0,1,4,3 -050,01,073,Alabama,Jefferson County,1,15,23374,9509,13865,6923,9576,2515,4176,11,22,30,25,1,3,29,63,9463,13802,6895,9535,2501,4162,11,22,28,24,0,1,28,58,46,63,28,41,14,14,0,0,2,1,1,2,1,5 -050,01,073,Alabama,Jefferson County,1,16,19381,7461,11920,5539,8521,1878,3325,6,7,15,26,2,4,21,37,7427,11877,5515,8492,1871,3314,6,7,14,23,2,4,19,37,34,43,24,29,7,11,0,0,1,3,0,0,2,0 -050,01,073,Alabama,Jefferson County,1,17,12681,4437,8244,3239,5990,1159,2211,6,8,10,10,1,0,22,25,4413,8220,3223,5970,1153,2207,6,8,10,10,1,0,20,25,24,24,16,20,6,4,0,0,0,0,0,0,2,0 -050,01,073,Alabama,Jefferson County,1,18,11523,2902,8621,2037,5952,850,2625,1,10,6,5,0,1,8,28,2893,8580,2033,5926,846,2611,1,9,6,5,0,1,7,28,9,41,4,26,4,14,0,1,0,0,0,0,1,0 -050,01,073,Alabama,Jefferson County,1,99,662041,312086,349955,187237,201790,118990,142170,736,744,3055,3070,110,92,1958,2089,305968,345796,181937,198463,118430,141528,656,682,3005,3030,63,63,1877,2030,6118,4159,5300,3327,560,642,80,62,50,40,47,29,81,59 -050,01,073,Alabama,Jefferson County,2,0,8851,4525,4326,2283,2167,2101,2041,9,8,56,47,3,1,73,62,4375,4186,2164,2048,2082,2025,5,6,55,47,0,0,69,60,150,140,119,119,19,16,4,2,1,0,3,1,4,2 -050,01,073,Alabama,Jefferson County,2,1,34247,17540,16707,8857,8356,8227,7914,29,29,172,187,10,8,245,213,17123,16300,8513,8022,8176,7866,25,22,171,184,3,3,235,203,417,407,344,334,51,48,4,7,1,3,7,5,10,10 -050,01,073,Alabama,Jefferson County,2,2,45408,23274,22134,11299,10645,11482,11059,47,42,214,174,13,8,219,206,22873,21782,10984,10382,11424,10993,39,34,208,172,5,2,213,199,401,352,315,263,58,66,8,8,6,2,8,6,6,7 -050,01,073,Alabama,Jefferson County,2,3,47228,24249,22979,12155,11389,11681,11129,48,62,186,208,11,7,168,184,23882,22664,11875,11155,11613,11069,38,56,182,202,8,1,166,181,367,315,280,234,68,60,10,6,4,6,3,6,2,3 -050,01,073,Alabama,Jefferson County,2,4,46162,23093,23069,12010,11634,10632,11012,72,68,191,190,16,12,172,153,22516,22752,11509,11373,10591,10980,59,54,185,189,8,4,164,152,577,317,501,261,41,32,13,14,6,1,8,8,8,1 -050,01,073,Alabama,Jefferson County,2,5,45948,21984,23964,12411,12460,9033,11000,68,52,288,279,34,13,150,160,20842,23442,11387,12030,8979,10947,48,36,278,271,11,4,139,154,1142,522,1024,430,54,53,20,16,10,8,23,9,11,6 -050,01,073,Alabama,Jefferson County,2,6,47023,22878,24145,13912,13221,8330,10325,67,68,421,407,12,9,136,115,21866,23579,12997,12744,8278,10266,50,58,414,402,4,3,123,106,1012,566,915,477,52,59,17,10,7,5,8,6,13,9 -050,01,073,Alabama,Jefferson County,2,7,45306,22041,23265,13618,12871,7839,9831,66,59,383,347,17,12,118,145,21310,22871,12981,12559,7794,9775,44,46,376,345,6,6,109,140,731,394,637,312,45,56,22,13,7,2,11,6,9,5 -050,01,073,Alabama,Jefferson County,2,8,50264,23885,26379,14770,14717,8538,11104,80,66,361,359,9,12,127,121,23400,26045,14355,14449,8502,11057,70,60,354,352,2,8,117,119,485,334,415,268,36,47,10,6,7,7,7,4,10,2 -050,01,073,Alabama,Jefferson County,2,9,53158,25085,28073,15335,15597,9280,11979,79,90,234,239,9,12,148,156,24749,27845,15047,15420,9252,11940,71,84,232,237,6,10,141,154,336,228,288,177,28,39,8,6,2,2,3,2,7,2 -050,01,073,Alabama,Jefferson County,2,10,50082,23702,26380,14650,15167,8694,10788,66,64,174,211,6,7,112,143,23474,26217,14466,15050,8665,10752,59,61,174,211,3,6,107,137,228,163,184,117,29,36,7,3,0,0,3,1,5,6 -050,01,073,Alabama,Jefferson County,2,11,42048,20079,21969,13045,13694,6773,7959,55,46,130,151,3,4,73,115,19902,21825,12909,13584,6741,7931,51,44,130,149,3,3,68,114,177,144,136,110,32,28,4,2,0,2,0,1,5,1 -050,01,073,Alabama,Jefferson County,2,12,30799,14366,16433,10001,10997,4141,5210,45,48,101,98,2,0,76,80,14261,16315,9910,10906,4131,5186,43,47,100,98,2,0,75,78,105,118,91,91,10,24,2,1,1,0,0,0,1,2 -050,01,073,Alabama,Jefferson County,2,13,25445,11281,14164,7813,9409,3307,4575,30,31,66,73,0,5,65,71,11208,14087,7757,9354,3294,4557,29,30,66,72,0,5,62,69,73,77,56,55,13,18,1,1,0,1,0,0,3,2 -050,01,073,Alabama,Jefferson County,2,14,23230,9911,13319,6892,8950,2907,4221,16,22,46,59,0,1,50,66,9856,13251,6852,8909,2897,4199,15,21,45,59,0,0,47,63,55,68,40,41,10,22,1,1,1,0,0,1,3,3 -050,01,073,Alabama,Jefferson County,2,15,23262,9481,13781,6885,9500,2520,4168,13,24,31,26,1,3,31,60,9430,13714,6852,9456,2506,4153,13,24,29,25,0,1,30,55,51,67,33,44,14,15,0,0,2,1,1,2,1,5 -050,01,073,Alabama,Jefferson County,2,16,19369,7465,11904,5518,8477,1902,3350,7,8,15,27,2,4,21,38,7428,11857,5491,8444,1895,3339,7,8,14,24,2,4,19,38,37,47,27,33,7,11,0,0,1,3,0,0,2,0 -050,01,073,Alabama,Jefferson County,2,17,12696,4449,8247,3246,5991,1163,2209,6,9,8,10,1,0,25,28,4422,8219,3227,5968,1157,2204,6,9,8,10,1,0,23,28,27,28,19,23,6,5,0,0,0,0,0,0,2,0 -050,01,073,Alabama,Jefferson County,2,18,11507,2898,8609,2040,5938,845,2624,0,10,7,5,0,1,6,31,2889,8568,2036,5912,841,2610,0,9,7,5,0,1,5,31,9,41,4,26,4,14,0,1,0,0,0,0,1,0 -050,01,073,Alabama,Jefferson County,2,99,662033,312186,349847,186740,201180,119395,142498,803,806,3084,3097,149,119,2015,2147,305806,345519,181312,197765,118818,141849,672,709,3028,3054,64,61,1912,2081,6380,4328,5428,3415,577,649,131,97,56,43,85,58,103,66 -050,01,073,Alabama,Jefferson County,3,0,9226,4671,4555,2406,2336,2102,2081,7,4,61,47,4,1,91,86,4453,4394,2216,2190,2088,2071,7,4,60,46,1,0,81,83,218,161,190,146,14,10,0,0,1,1,3,1,10,3 -050,01,073,Alabama,Jefferson County,3,1,34023,17452,16571,8794,8300,8159,7762,34,43,198,210,10,10,257,246,16991,16085,8420,7911,8102,7705,31,28,196,207,3,2,239,232,461,486,374,389,57,57,3,15,2,3,7,8,18,14 -050,01,073,Alabama,Jefferson County,3,2,44368,22727,21641,11075,10368,11145,10802,45,50,222,195,13,9,227,217,22245,21219,10686,10039,11089,10739,33,42,214,192,6,1,217,206,482,422,389,329,56,63,12,8,8,3,7,8,10,11 -050,01,073,Alabama,Jefferson County,3,3,47198,24220,22978,11872,11172,11919,11351,56,62,189,195,10,7,174,191,23847,22621,11571,10916,11870,11284,47,50,186,191,6,2,167,178,373,357,301,256,49,67,9,12,3,4,4,5,7,13 -050,01,073,Alabama,Jefferson County,3,4,45658,22986,22672,11908,11442,10638,10783,67,64,180,186,15,19,178,178,22389,22351,11417,11183,10578,10750,54,51,172,185,7,10,161,172,597,321,491,259,60,33,13,13,8,1,8,9,17,6 -050,01,073,Alabama,Jefferson County,3,5,46635,22262,24373,12420,12564,9266,11315,81,63,299,266,29,17,167,148,21145,23830,11436,12125,9199,11256,54,46,293,257,12,8,151,138,1117,543,984,439,67,59,27,17,6,9,17,9,16,10 -050,01,073,Alabama,Jefferson County,3,6,45906,22148,23758,13421,12836,8152,10321,59,67,362,393,17,14,137,127,21022,23162,12407,12341,8095,10259,37,55,358,386,5,8,120,113,1126,596,1014,495,57,62,22,12,4,7,12,6,17,14 -050,01,073,Alabama,Jefferson County,3,7,45584,22205,23379,13738,12864,7825,9927,73,57,405,369,24,11,140,151,21379,22911,13025,12482,7775,9875,52,40,401,366,9,5,117,143,826,468,713,382,50,52,21,17,4,3,15,6,23,8 -050,01,073,Alabama,Jefferson County,3,8,48279,22988,25291,14111,13965,8302,10763,79,70,353,342,9,16,134,135,22444,24922,13653,13680,8260,10706,67,62,348,337,4,10,112,127,544,369,458,285,42,57,12,8,5,5,5,6,22,8 -050,01,073,Alabama,Jefferson County,3,9,52588,24746,27842,15013,15445,9233,11904,76,87,261,251,16,12,147,143,24392,27577,14715,15239,9206,11867,70,77,258,249,7,8,136,137,354,265,298,206,27,37,6,10,3,2,9,4,11,6 -050,01,073,Alabama,Jefferson County,3,10,50405,23834,26571,14718,15053,8784,11074,49,67,162,218,10,7,111,152,23550,26389,14487,14930,8750,11031,45,63,160,218,7,3,101,144,284,182,231,123,34,43,4,4,2,0,3,4,10,8 -050,01,073,Alabama,Jefferson County,3,11,44704,21337,23367,13626,14205,7407,8813,56,58,148,154,8,6,92,131,21143,23216,13486,14102,7372,8777,48,52,148,153,6,5,83,127,194,151,140,103,35,36,8,6,0,1,2,1,9,4 -050,01,073,Alabama,Jefferson County,3,12,31052,14526,16526,10010,10875,4303,5406,38,46,97,112,2,0,76,87,14413,16400,9914,10779,4293,5383,35,42,97,112,1,0,73,84,113,126,96,96,10,23,3,4,0,0,1,0,3,3 -050,01,073,Alabama,Jefferson County,3,13,25571,11352,14219,7869,9444,3318,4591,32,35,75,78,0,3,58,68,11290,14134,7823,9384,3308,4573,30,31,75,77,0,3,54,66,62,85,46,60,10,18,2,4,0,1,0,0,4,2 -050,01,073,Alabama,Jefferson County,3,14,22855,9754,13101,6743,8676,2900,4270,21,33,39,56,0,3,51,63,9697,13039,6699,8640,2892,4253,20,30,37,55,0,2,49,59,57,62,44,36,8,17,1,3,2,1,0,1,2,4 -050,01,073,Alabama,Jefferson County,3,15,22650,9249,13401,6699,9213,2470,4076,12,20,31,32,1,2,36,58,9186,13327,6657,9164,2453,4059,12,20,29,31,0,0,35,53,63,74,42,49,17,17,0,0,2,1,1,2,1,5 -050,01,073,Alabama,Jefferson County,3,16,19215,7452,11763,5487,8377,1910,3291,11,18,18,26,2,4,24,47,7415,11724,5458,8350,1905,3282,11,18,17,23,2,4,22,47,37,39,29,27,5,9,0,0,1,3,0,0,2,0 -050,01,073,Alabama,Jefferson County,3,17,12972,4627,8345,3415,6094,1172,2208,5,12,9,11,1,0,25,20,4592,8325,3387,6079,1166,2203,5,12,9,11,1,0,24,20,35,20,28,15,6,5,0,0,0,0,0,0,1,0 -050,01,073,Alabama,Jefferson County,3,18,11308,2906,8402,2059,5830,831,2518,0,11,10,8,0,1,6,34,2898,8362,2055,5803,828,2507,0,9,10,8,0,1,5,34,8,40,4,27,3,11,0,2,0,0,0,0,1,0 -050,01,073,Alabama,Jefferson County,3,99,660197,311442,348755,185384,199059,119836,143256,801,867,3119,3149,171,142,2131,2282,304491,343988,179512,195337,119229,142580,658,732,3068,3104,77,72,1947,2163,6951,4767,5872,3722,607,676,143,135,51,45,94,70,184,119 -050,01,073,Alabama,Jefferson County,4,0,8834,4439,4395,2242,2270,2065,2007,9,9,35,34,4,3,84,72,4258,4194,2086,2095,2055,1994,7,7,34,32,1,0,75,66,181,201,156,175,10,13,2,2,1,2,3,3,9,6 -050,01,073,Alabama,Jefferson County,4,1,34430,17585,16845,8855,8478,8156,7809,42,47,222,210,18,19,292,282,16952,16261,8345,7996,8095,7756,29,32,216,206,4,7,263,264,633,584,510,482,61,53,13,15,6,4,14,12,29,18 -050,01,073,Alabama,Jefferson County,4,2,43089,22125,20964,10674,10037,10895,10431,52,45,242,215,10,11,252,225,21556,20485,10242,9657,10815,10370,33,34,233,211,1,3,232,210,569,479,432,380,80,61,19,11,9,4,9,8,20,15 -050,01,073,Alabama,Jefferson County,4,3,46942,24246,22696,11813,10956,11982,11270,65,64,181,196,16,11,189,199,23826,22302,11472,10666,11939,11207,52,49,178,192,11,4,174,184,420,394,341,290,43,63,13,15,3,4,5,7,15,15 -050,01,073,Alabama,Jefferson County,4,4,45324,22916,22408,11788,11197,10675,10781,59,62,212,184,15,11,167,173,22291,22037,11264,10900,10622,10740,47,47,206,181,5,3,147,166,625,371,524,297,53,41,12,15,6,3,10,8,20,7 -050,01,073,Alabama,Jefferson County,4,5,46791,22301,24490,12223,12466,9452,11471,107,84,317,286,35,17,167,166,21114,23909,11192,11993,9381,11416,71,60,308,278,10,9,152,153,1187,581,1031,473,71,55,36,24,9,8,25,8,15,13 -050,01,073,Alabama,Jefferson County,4,6,45515,21920,23595,13315,12617,7981,10366,74,68,393,390,15,12,142,142,20694,22915,12213,12043,7930,10306,39,52,386,382,3,5,123,127,1226,680,1102,574,51,60,35,16,7,8,12,7,19,15 -050,01,073,Alabama,Jefferson County,4,7,45750,22329,23421,13701,12767,7948,10004,74,57,450,435,21,15,135,143,21333,22860,12838,12292,7886,9962,45,42,446,431,7,5,111,128,996,561,863,475,62,42,29,15,4,4,14,10,24,15 -050,01,073,Alabama,Jefferson County,4,8,46177,22138,24039,13558,13170,8020,10327,74,76,361,337,9,19,116,110,21563,23653,13083,12881,7971,10260,57,68,354,332,5,11,93,101,575,386,475,289,49,67,17,8,7,5,4,8,23,9 -050,01,073,Alabama,Jefferson County,4,9,51418,24135,27283,14653,15125,8976,11649,72,81,281,269,17,16,136,143,23722,26980,14306,14884,8943,11611,62,72,277,265,9,11,125,137,413,303,347,241,33,38,10,9,4,4,8,5,11,6 -050,01,073,Alabama,Jefferson County,4,10,51090,24080,27010,14732,15140,8964,11388,58,90,185,231,4,9,137,152,23773,26781,14487,14977,8928,11346,50,81,180,228,1,7,127,142,307,229,245,163,36,42,8,9,5,3,3,2,10,10 -050,01,073,Alabama,Jefferson County,4,11,45058,21470,23588,13436,13875,7713,9378,59,53,152,158,8,6,102,118,21246,23435,13271,13763,7679,9351,47,47,152,155,3,5,94,114,224,153,165,112,34,27,12,6,0,3,5,1,8,4 -050,01,073,Alabama,Jefferson County,4,12,33339,15658,17681,10694,11545,4720,5854,53,48,109,137,4,1,78,96,15509,17538,10573,11438,4705,5823,47,46,107,137,1,1,76,93,149,143,121,107,15,31,6,2,2,0,3,0,2,3 -050,01,073,Alabama,Jefferson County,4,13,26207,11818,14389,8177,9550,3469,4641,28,40,76,83,2,3,66,72,11751,14291,8128,9479,3458,4624,25,35,76,81,1,3,63,69,67,98,49,71,11,17,3,5,0,2,1,0,3,3 -050,01,073,Alabama,Jefferson County,4,14,22330,9521,12809,6532,8455,2859,4210,21,18,56,63,1,0,52,63,9462,12740,6489,8411,2851,4193,19,15,54,61,1,0,48,60,59,69,43,44,8,17,2,3,2,2,0,0,4,3 -050,01,073,Alabama,Jefferson County,4,15,21739,8819,12920,6360,8842,2388,3970,7,20,33,37,1,3,30,48,8757,12853,6318,8798,2371,3954,7,20,32,36,0,1,29,44,62,67,42,44,17,16,0,0,1,1,1,2,1,4 -050,01,073,Alabama,Jefferson County,4,16,19244,7437,11807,5435,8280,1944,3450,11,15,19,23,2,4,26,35,7402,11767,5412,8253,1936,3440,10,15,18,20,2,4,24,35,35,40,23,27,8,10,1,0,1,3,0,0,2,0 -050,01,073,Alabama,Jefferson County,4,17,13158,4778,8380,3573,6141,1165,2195,8,6,11,17,0,0,21,21,4747,8352,3549,6120,1160,2189,8,6,11,17,0,0,19,20,31,28,24,21,5,6,0,0,0,0,0,0,2,1 -050,01,073,Alabama,Jefferson County,4,18,11083,2908,8175,2121,5746,774,2377,0,9,7,10,0,1,6,32,2899,8132,2116,5715,771,2367,0,7,7,10,0,1,5,32,9,43,5,31,3,10,0,2,0,0,0,0,1,0 -050,01,073,Alabama,Jefferson County,4,99,657518,310623,346895,183882,196657,120146,143578,873,892,3342,3315,182,161,2198,2292,302855,341485,177384,192361,119496,142909,655,735,3275,3255,65,80,1980,2145,7768,5410,6498,4296,650,669,218,157,67,60,117,81,218,147 -050,01,073,Alabama,Jefferson County,5,0,8728,4473,4255,2342,2223,1986,1892,6,5,51,42,1,5,87,88,4221,4035,2113,2022,1977,1885,3,5,50,41,0,2,78,80,252,220,229,201,9,7,3,0,1,1,1,3,9,8 -050,01,073,Alabama,Jefferson County,5,1,34509,17641,16868,8823,8451,8245,7863,48,45,208,194,12,18,305,297,16958,16198,8262,7887,8173,7809,39,27,204,191,3,6,277,278,683,670,561,564,72,54,9,18,4,3,9,12,28,19 -050,01,073,Alabama,Jefferson County,5,2,42263,21592,20671,10453,9921,10585,10169,51,49,237,254,15,13,251,265,20987,20130,9987,9489,10502,10101,35,39,227,248,5,4,231,249,605,541,466,432,83,68,16,10,10,6,10,9,20,16 -050,01,073,Alabama,Jefferson County,5,3,46751,23974,22777,11468,10762,12032,11543,69,72,198,194,9,14,198,192,23533,22303,11112,10414,11984,11460,55,54,197,192,5,5,180,178,441,474,356,348,48,83,14,18,1,2,4,9,18,14 -050,01,073,Alabama,Jefferson County,5,4,45236,22900,22336,11723,11110,10737,10782,59,68,196,185,16,15,169,176,22250,21944,11179,10798,10686,10743,44,50,188,184,6,7,147,162,650,392,544,312,51,39,15,18,8,1,10,8,22,14 -050,01,073,Alabama,Jefferson County,5,5,47165,22780,24385,12293,12367,9859,11427,99,71,329,324,29,12,171,184,21484,23765,11178,11860,9771,11364,56,52,320,319,8,4,151,166,1296,620,1115,507,88,63,43,19,9,5,21,8,20,18 -050,01,073,Alabama,Jefferson County,5,6,46287,22107,24180,13400,12865,8039,10665,83,77,402,401,24,13,159,159,20705,23398,12154,12211,7978,10597,41,53,394,393,7,5,131,139,1402,782,1246,654,61,68,42,24,8,8,17,8,28,20 -050,01,073,Alabama,Jefferson County,5,7,45656,22338,23318,13598,12562,8016,10068,79,67,479,451,23,16,143,154,21250,22668,12664,12014,7948,10017,45,49,472,448,7,6,114,134,1088,650,934,548,68,51,34,18,7,3,16,10,29,20 -050,01,073,Alabama,Jefferson County,5,8,44430,21344,23086,13030,12583,7760,9987,69,66,345,329,12,14,128,107,20690,22651,12496,12252,7703,9922,49,55,333,322,5,6,104,94,654,435,534,331,57,65,20,11,12,7,7,8,24,13 -050,01,073,Alabama,Jefferson County,5,9,50389,23805,26584,14312,14601,8952,11454,84,80,319,299,9,11,129,139,23339,26231,13924,14309,8909,11416,76,73,313,294,4,7,113,132,466,353,388,292,43,38,8,7,6,5,5,4,16,7 -050,01,073,Alabama,Jefferson County,5,10,51338,24111,27227,14661,15144,9010,11601,73,87,200,231,6,12,161,152,23784,26969,14399,14958,8968,11551,64,82,198,228,3,7,152,143,327,258,262,186,42,50,9,5,2,3,3,5,9,9 -050,01,073,Alabama,Jefferson County,5,11,46015,21887,24128,13499,13887,8066,9878,51,58,155,175,10,6,106,124,21635,23960,13307,13765,8031,9850,42,49,153,171,5,6,97,119,252,168,192,122,35,28,9,9,2,4,5,0,9,5 -050,01,073,Alabama,Jefferson County,5,12,34887,16417,18470,10981,11822,5188,6349,55,57,112,143,3,2,78,97,16264,18332,10859,11712,5169,6329,48,55,111,142,2,2,75,92,153,138,122,110,19,20,7,2,1,1,1,0,3,5 -050,01,073,Alabama,Jefferson County,5,13,26906,12261,14645,8477,9788,3585,4669,22,34,87,76,4,2,86,76,12173,14543,8416,9714,3567,4650,20,31,87,76,2,2,81,70,88,102,61,74,18,19,2,3,0,0,2,0,5,6 -050,01,073,Alabama,Jefferson County,5,14,22377,9508,12869,6497,8444,2881,4272,26,21,54,71,1,1,49,60,9445,12799,6451,8399,2872,4256,24,16,52,69,0,1,46,58,63,70,46,45,9,16,2,5,2,2,1,0,3,2 -050,01,073,Alabama,Jefferson County,5,15,20984,8580,12404,6123,8460,2373,3838,13,21,34,34,1,2,36,49,8529,12336,6088,8414,2359,3823,13,20,34,33,0,0,35,46,51,68,35,46,14,15,0,1,0,1,1,2,1,3 -050,01,073,Alabama,Jefferson County,5,16,19089,7399,11690,5422,8154,1918,3451,14,14,25,29,1,3,19,39,7359,11653,5394,8125,1910,3446,13,14,24,26,1,3,17,39,40,37,28,29,8,5,1,0,1,3,0,0,2,0 -050,01,073,Alabama,Jefferson County,5,17,13596,4907,8689,3694,6321,1171,2320,7,4,14,16,0,0,21,28,4869,8655,3661,6294,1167,2314,7,4,14,16,0,0,20,27,38,34,33,27,4,6,0,0,0,0,0,0,1,1 -050,01,073,Alabama,Jefferson County,5,18,10907,2891,8016,2162,5744,715,2218,1,14,7,8,0,1,6,31,2882,7968,2156,5705,713,2211,1,12,7,8,0,1,5,31,9,48,6,39,2,7,0,2,0,0,0,0,1,0 -050,01,073,Alabama,Jefferson County,5,99,657513,310915,346598,182958,195209,121118,144446,909,910,3452,3456,176,160,2302,2417,302357,340538,175800,190342,120387,143744,675,740,3378,3401,63,74,2054,2237,8558,6060,7158,4867,731,702,234,170,74,55,113,86,248,180 -050,01,073,Alabama,Jefferson County,6,0,8786,4414,4372,2252,2216,2008,1977,3,10,48,69,4,4,99,96,4116,4124,1982,1984,1994,1966,2,10,47,68,3,3,88,93,298,248,270,232,14,11,1,0,1,1,1,1,11,3 -050,01,073,Alabama,Jefferson County,6,1,34298,17458,16840,8879,8503,8007,7768,36,51,205,211,13,19,318,288,16681,16079,8223,7865,7945,7714,24,24,198,208,3,6,288,262,777,761,656,638,62,54,12,27,7,3,10,13,30,26 -050,01,073,Alabama,Jefferson County,6,2,41703,21275,20428,10176,9734,10440,10064,68,44,272,286,18,11,301,289,20589,19796,9635,9221,10361,9996,45,27,265,279,6,3,277,270,686,632,541,513,79,68,23,17,7,7,12,8,24,19 -050,01,073,Alabama,Jefferson County,6,3,46252,23763,22489,11225,10567,12051,11444,61,62,226,197,13,11,187,208,23254,21975,10819,10169,11994,11369,44,48,224,194,9,4,164,191,509,514,406,398,57,75,17,14,2,3,4,7,23,17 -050,01,073,Alabama,Jefferson County,6,4,45369,22980,22389,11541,10888,10971,10982,64,86,194,226,15,18,195,189,22262,21969,10943,10556,10917,10941,43,66,183,224,6,8,170,174,718,420,598,332,54,41,21,20,11,2,9,10,25,15 -050,01,073,Alabama,Jefferson County,6,5,46884,22546,24338,12065,12412,9836,11292,104,67,328,338,34,19,179,210,21291,23655,11006,11860,9753,11224,50,43,319,331,10,9,153,188,1255,683,1059,552,83,68,54,24,9,7,24,10,26,22 -050,01,073,Alabama,Jefferson County,6,6,46883,22367,24516,13500,12925,8143,10891,99,81,447,424,23,20,155,175,20832,23691,12145,12239,8078,10821,42,55,435,414,2,9,130,153,1535,825,1355,686,65,70,57,26,12,10,21,11,25,22 -050,01,073,Alabama,Jefferson County,6,7,44877,21802,23075,13170,12273,7844,10068,82,79,523,496,24,25,159,134,20576,22314,12120,11618,7767,10017,39,57,514,492,8,12,128,118,1226,761,1050,655,77,51,43,22,9,4,16,13,31,16 -050,01,073,Alabama,Jefferson County,6,8,43323,20901,22422,12692,12162,7605,9720,72,72,394,343,13,19,125,106,20133,21927,12046,11775,7550,9661,45,57,383,336,3,6,106,92,768,495,646,387,55,59,27,15,11,7,10,13,19,14 -050,01,073,Alabama,Jefferson County,6,9,49424,23500,25924,14114,14128,8835,11237,81,82,338,329,10,8,122,140,22989,25553,13681,13817,8791,11204,69,70,336,323,3,7,109,132,511,371,433,311,44,33,12,12,2,6,7,1,13,8 -050,01,073,Alabama,Jefferson County,6,10,50989,23810,27179,14379,15016,8995,11677,66,82,212,247,10,9,148,148,23447,26892,14081,14783,8954,11638,57,80,211,246,6,5,138,140,363,287,298,233,41,39,9,2,1,1,4,4,10,8 -050,01,073,Alabama,Jefferson County,6,11,46640,22140,24500,13425,13815,8377,10323,60,56,169,184,5,7,104,115,21868,24328,13213,13689,8338,10295,49,45,169,182,1,6,98,111,272,172,212,126,39,28,11,11,0,2,4,1,6,4 -050,01,073,Alabama,Jefferson County,6,12,37102,17440,19662,11426,12360,5743,6980,60,61,119,156,3,1,89,104,17280,19528,11298,12256,5727,6957,50,57,118,155,1,1,86,102,160,134,128,104,16,23,10,4,1,1,2,0,3,2 -050,01,073,Alabama,Jefferson County,6,13,27537,12538,14999,8670,9863,3651,4916,38,41,101,90,1,3,77,86,12455,14877,8600,9767,3641,4898,36,38,101,90,1,3,76,81,83,122,70,96,10,18,2,3,0,0,0,0,1,5 -050,01,073,Alabama,Jefferson County,6,14,22392,9595,12797,6505,8377,2938,4278,35,21,63,64,1,1,53,56,9521,12725,6455,8329,2919,4260,34,17,61,63,0,1,52,55,74,72,50,48,19,18,1,4,2,1,1,0,1,1 -050,01,073,Alabama,Jefferson County,6,15,20082,8264,11818,5852,7982,2317,3719,21,20,43,45,1,3,30,49,8217,11744,5820,7935,2305,3701,21,19,42,44,0,1,29,44,47,74,32,47,12,18,0,1,1,1,1,2,1,5 -050,01,073,Alabama,Jefferson County,6,16,18771,7282,11489,5309,7994,1915,3412,12,13,27,34,1,1,18,35,7249,11442,5284,7965,1911,3397,11,12,26,32,1,1,16,35,33,47,25,29,4,15,1,1,1,2,0,0,2,0 -050,01,073,Alabama,Jefferson County,6,17,13790,4921,8869,3734,6425,1148,2388,2,10,11,21,0,0,26,25,4883,8843,3701,6406,1145,2383,2,10,11,20,0,0,24,24,38,26,33,19,3,5,0,0,0,1,0,0,2,1 -050,01,073,Alabama,Jefferson County,6,18,10921,3001,7920,2236,5704,751,2163,2,12,5,6,0,0,7,35,2991,7879,2230,5671,749,2157,1,10,5,6,0,0,6,35,10,41,6,33,2,6,1,2,0,0,0,0,1,0 -050,01,073,Alabama,Jefferson County,6,99,656023,309997,346026,181150,193344,121575,145299,966,950,3725,3766,189,179,2392,2488,300634,339341,173282,187905,120839,144599,664,745,3648,3707,63,85,2138,2300,9363,6685,7868,5439,736,700,302,205,77,59,126,94,254,188 -050,01,073,Alabama,Jefferson County,7,0,8799,4390,4409,2326,2286,1911,1952,7,8,60,66,2,4,84,93,4048,4066,2010,1968,1897,1940,5,8,60,63,1,2,75,85,342,343,316,318,14,12,2,0,0,3,1,2,9,8 -050,01,073,Alabama,Jefferson County,7,1,34292,17386,16906,8828,8487,8017,7816,42,59,199,211,5,21,295,312,16535,16069,8090,7775,7949,7761,31,33,194,208,1,3,270,289,851,837,738,712,68,55,11,26,5,3,4,18,25,23 -050,01,073,Alabama,Jefferson County,7,2,41491,21193,20298,10137,9588,10358,9999,87,67,281,328,9,10,321,306,20411,19569,9534,9004,10250,9905,57,43,269,321,1,3,300,293,782,729,603,584,108,94,30,24,12,7,8,7,21,13 -050,01,073,Alabama,Jefferson County,7,3,45204,23146,22058,10832,10280,11803,11276,61,67,219,199,10,8,221,228,22541,21501,10339,9824,11732,11206,47,53,217,196,4,3,202,219,605,557,493,456,71,70,14,14,2,3,6,5,19,9 -050,01,073,Alabama,Jefferson County,7,4,45633,23156,22477,11465,10774,11206,11162,70,80,211,241,7,9,197,211,22401,22004,10826,10405,11138,11085,46,67,206,240,3,3,182,204,755,473,639,369,68,77,24,13,5,1,4,6,15,7 -050,01,073,Alabama,Jefferson County,7,5,46551,22316,24235,11851,12273,9796,11306,107,83,346,361,27,10,189,202,21047,23473,10783,11651,9697,11216,50,58,341,356,7,2,169,190,1269,762,1068,622,99,90,57,25,5,5,20,8,20,12 -050,01,073,Alabama,Jefferson County,7,6,47773,22899,24874,13630,12991,8539,11161,103,95,442,448,24,15,161,164,21252,24032,12181,12268,8457,11100,41,63,436,443,2,7,135,151,1647,842,1449,723,82,61,62,32,6,5,22,8,26,13 -050,01,073,Alabama,Jefferson County,7,7,43564,21052,22512,12505,11786,7759,9993,91,75,524,503,22,17,151,138,19734,21678,11369,11068,7666,9929,43,52,520,500,7,5,129,124,1318,834,1136,718,93,64,48,23,4,3,15,12,22,14 -050,01,073,Alabama,Jefferson County,7,8,42769,20657,22112,12486,11839,7566,9633,73,86,401,385,8,8,123,161,19799,21566,11747,11381,7505,9574,51,72,394,380,1,5,101,154,858,546,739,458,61,59,22,14,7,5,7,3,22,7 -050,01,073,Alabama,Jefferson County,7,9,48051,22777,25274,13674,13690,8552,11051,76,67,348,340,8,7,119,119,22212,24884,13182,13363,8508,11001,65,60,344,338,3,5,110,117,565,390,492,327,44,50,11,7,4,2,5,2,9,2 -050,01,073,Alabama,Jefferson County,7,10,50796,23750,27046,14210,14815,9088,11741,72,94,231,254,4,5,145,137,23337,26727,13890,14554,9013,11696,63,90,229,253,4,3,138,131,413,319,320,261,75,45,9,4,2,1,0,2,7,6 -050,01,073,Alabama,Jefferson County,7,11,47576,22617,24959,13654,13951,8613,10617,55,61,177,200,8,5,110,125,22321,24773,13404,13805,8579,10584,49,58,177,200,6,5,106,121,296,186,250,146,34,33,6,3,0,0,2,0,4,4 -050,01,073,Alabama,Jefferson County,7,12,39255,18495,20760,11819,12683,6395,7753,66,54,141,171,1,4,73,95,18307,20616,11675,12566,6369,7733,56,51,136,170,1,4,70,92,188,144,144,117,26,20,10,3,5,1,0,0,3,3 -050,01,073,Alabama,Jefferson County,7,13,27822,12765,15057,8744,9852,3792,4982,38,41,104,105,0,2,87,75,12666,14925,8659,9748,3783,4962,35,38,104,105,0,2,85,70,99,132,85,104,9,20,3,3,0,0,0,0,2,5 -050,01,073,Alabama,Jefferson County,7,14,22446,9698,12748,6555,8244,2979,4330,32,30,80,82,3,0,49,62,9621,12667,6498,8177,2963,4319,31,28,79,81,2,0,48,62,77,81,57,67,16,11,1,2,1,1,1,0,1,0 -050,01,073,Alabama,Jefferson County,7,15,19568,8077,11491,5672,7801,2306,3585,19,12,42,50,0,1,38,42,8012,11432,5620,7758,2295,3574,19,11,42,50,0,1,36,38,65,59,52,43,11,11,0,1,0,0,0,0,2,4 -050,01,073,Alabama,Jefferson County,7,16,18348,7075,11273,5183,7787,1836,3393,9,17,25,31,0,4,22,41,7032,11211,5149,7741,1829,3381,8,16,25,31,0,3,21,39,43,62,34,46,7,12,1,1,0,0,0,1,1,2 -050,01,073,Alabama,Jefferson County,7,17,13795,4901,8894,3709,6403,1160,2438,3,8,9,21,0,0,20,24,4861,8851,3678,6368,1153,2431,2,8,9,21,0,0,19,23,40,43,31,35,7,7,1,0,0,0,0,0,1,1 -050,01,073,Alabama,Jefferson County,7,18,11186,3137,8049,2360,5835,752,2143,11,16,10,11,0,1,4,43,3124,8010,2350,5804,750,2138,10,13,10,11,0,1,4,43,13,39,10,31,2,5,1,3,0,0,0,0,0,0 -050,01,073,Alabama,Jefferson County,7,99,654919,309487,345432,179640,191365,122428,146331,1022,1020,3850,4007,138,131,2409,2578,299261,338054,170984,185228,121533,145535,709,822,3792,3967,43,57,2200,2445,10226,7378,8656,6137,895,796,313,198,58,40,95,74,209,133 -050,01,073,Alabama,Jefferson County,8,0,9003,4501,4502,2344,2279,1997,2030,6,11,51,78,3,5,100,99,4115,4114,1988,1919,1981,2019,4,7,51,75,2,4,89,90,386,388,356,360,16,11,2,4,0,3,1,1,11,9 -050,01,073,Alabama,Jefferson County,8,1,33910,17258,16652,8770,8358,7935,7713,39,59,227,184,7,13,280,325,16351,15733,7975,7558,7875,7664,18,30,224,178,3,5,256,298,907,919,795,800,60,49,21,29,3,6,4,8,24,27 -050,01,073,Alabama,Jefferson County,8,2,41727,21188,20539,10054,9704,10373,10096,83,49,295,351,12,14,371,325,20304,19741,9338,9044,10282,10011,54,34,288,339,2,5,340,308,884,798,716,660,91,85,29,15,7,12,10,9,31,17 -050,01,073,Alabama,Jefferson County,8,3,44469,22763,21706,10631,10027,11601,11149,60,62,229,224,13,7,229,237,22051,21089,10043,9523,11531,11074,44,49,227,217,7,2,199,224,712,617,588,504,70,75,16,13,2,7,6,5,30,13 -050,01,073,Alabama,Jefferson County,8,4,45942,23269,22673,11316,10776,11452,11374,85,70,225,248,8,10,183,195,22468,22147,10656,10362,11368,11293,57,57,218,245,4,5,165,185,801,526,660,414,84,81,28,13,7,3,4,5,18,10 -050,01,073,Alabama,Jefferson County,8,5,46337,22332,24005,11884,12091,9765,11204,119,96,339,370,27,20,198,224,20862,23169,10639,11397,9656,11124,52,69,335,365,5,8,175,206,1470,836,1245,694,109,80,67,27,4,5,22,12,23,18 -050,01,073,Alabama,Jefferson County,8,6,48949,23388,25561,13775,13364,8836,11458,115,99,466,439,36,18,160,183,21622,24621,12253,12567,8731,11389,44,63,456,434,9,7,129,161,1766,940,1522,797,105,69,71,36,10,5,27,11,31,22 -050,01,073,Alabama,Jefferson County,8,7,42628,20535,22093,12057,11338,7692,9950,91,74,483,565,29,26,183,140,19052,21212,10775,10583,7591,9885,44,48,478,560,12,13,152,123,1483,881,1282,755,101,65,47,26,5,5,17,13,31,17 -050,01,073,Alabama,Jefferson County,8,8,43132,20895,22237,12538,11884,7697,9732,76,69,444,432,12,6,128,114,19978,21575,11752,11324,7630,9668,50,52,437,427,5,3,104,101,917,662,786,560,67,64,26,17,7,5,7,3,24,13 -050,01,073,Alabama,Jefferson County,8,9,46481,22093,24388,13127,13008,8401,10792,87,83,358,351,10,11,110,143,21460,23994,12602,12689,8338,10738,71,74,355,347,2,9,92,137,633,394,525,319,63,54,16,9,3,4,8,2,18,6 -050,01,073,Alabama,Jefferson County,8,10,50337,23563,26774,14013,14629,9045,11628,73,88,277,275,4,7,151,147,23134,26412,13657,14321,8994,11590,64,84,273,274,4,4,142,139,429,362,356,308,51,38,9,4,4,1,0,3,9,8 -050,01,073,Alabama,Jefferson County,8,11,48015,22687,25328,13515,13942,8841,10978,52,69,174,212,3,8,102,119,22356,25124,13236,13778,8807,10949,41,62,172,212,3,8,97,115,331,204,279,164,34,29,11,7,2,0,0,0,5,4 -050,01,073,Alabama,Jefferson County,8,12,41679,19566,22113,12255,13212,6982,8553,74,55,160,170,3,3,92,120,19365,21969,12106,13093,6949,8534,62,51,157,170,2,3,89,118,201,144,149,119,33,19,12,4,3,0,1,0,3,2 -050,01,073,Alabama,Jefferson County,8,13,28289,13040,15249,8795,9773,4006,5240,36,33,112,126,1,4,90,73,12942,15101,8719,9656,3989,5215,34,32,112,125,0,2,88,71,98,148,76,117,17,25,2,1,0,1,1,2,2,2 -050,01,073,Alabama,Jefferson County,8,14,22589,9819,12770,6630,8255,3032,4330,18,26,86,88,4,3,49,68,9740,12685,6575,8187,3016,4318,17,23,84,86,3,3,45,68,79,85,55,68,16,12,1,3,2,2,1,0,4,0 -050,01,073,Alabama,Jefferson County,8,15,19259,7975,11284,5596,7516,2287,3656,19,25,38,48,0,2,35,37,7926,11222,5559,7481,2277,3634,18,24,38,47,0,2,34,34,49,62,37,35,10,22,1,1,0,1,0,0,1,3 -050,01,073,Alabama,Jefferson County,8,16,17906,6880,11026,4996,7620,1825,3319,6,15,27,27,1,5,25,40,6842,10966,4969,7579,1817,3305,6,14,27,27,0,4,23,37,38,60,27,41,8,14,0,1,0,0,1,1,2,3 -050,01,073,Alabama,Jefferson County,8,17,13754,4953,8801,3758,6311,1156,2412,5,11,13,27,1,0,20,40,4914,8761,3730,6281,1149,2404,2,11,13,26,0,0,20,39,39,40,28,30,7,8,3,0,0,1,1,0,0,1 -050,01,073,Alabama,Jefferson County,8,18,11487,3283,8204,2488,5981,771,2157,6,14,8,8,2,1,8,43,3268,8164,2480,5950,767,2151,5,11,7,8,1,1,8,43,15,40,8,31,4,6,1,3,1,0,1,0,0,0 -050,01,073,Alabama,Jefferson County,8,99,655893,309988,345905,178542,190068,123694,147771,1050,1008,4012,4223,176,163,2514,2672,298750,337799,169052,183292,122748,146965,687,795,3952,4162,64,88,2247,2497,11238,8106,9490,6776,946,806,363,213,60,61,112,75,267,175 -050,01,073,Alabama,Jefferson County,9,0,9267,4696,4571,2375,2296,2137,2058,11,7,60,80,4,5,109,125,4253,4171,1966,1917,2124,2048,5,6,59,77,1,3,98,120,443,400,409,379,13,10,6,1,1,3,3,2,11,5 -050,01,073,Alabama,Jefferson County,9,1,33776,17026,16750,8624,8298,7784,7798,34,72,251,214,7,16,326,352,16002,15739,7756,7417,7689,7751,17,42,246,208,3,6,291,315,1024,1011,868,881,95,47,17,30,5,6,4,10,35,37 -050,01,073,Alabama,Jefferson County,9,2,41999,21332,20667,10139,9690,10449,10224,92,48,298,342,16,15,338,348,20368,19755,9347,8939,10357,10117,55,33,287,331,5,5,317,330,964,912,792,751,92,107,37,15,11,11,11,10,21,18 -050,01,073,Alabama,Jefferson County,9,3,43456,22146,21310,10319,9832,11275,10942,64,66,232,233,18,8,238,229,21400,20671,9691,9316,11208,10861,45,46,228,231,10,3,218,214,746,639,628,516,67,81,19,20,4,2,8,5,20,15 -050,01,073,Alabama,Jefferson County,9,4,45888,23318,22570,11324,10691,11440,11316,88,78,248,264,11,16,207,205,22464,21977,10604,10201,11364,11245,54,63,243,263,8,9,191,196,854,593,720,490,76,71,34,15,5,1,3,7,16,9 -050,01,073,Alabama,Jefferson County,9,5,45996,22185,23811,11774,11934,9713,11160,118,99,363,384,32,16,185,218,20632,22882,10480,11157,9592,11074,41,67,357,378,8,6,154,200,1553,929,1294,777,121,86,77,32,6,6,24,10,31,18 -050,01,073,Alabama,Jefferson County,9,6,49186,23425,25761,13792,13374,8895,11575,130,109,396,482,31,17,181,204,21529,24744,12158,12531,8794,11490,46,65,387,475,2,5,142,178,1896,1017,1634,843,101,85,84,44,9,7,29,12,39,26 -050,01,073,Alabama,Jefferson County,9,7,42502,20454,22048,11973,11249,7625,10018,95,77,557,530,28,21,176,153,18890,21074,10632,10410,7521,9953,40,46,545,525,10,8,142,132,1564,974,1341,839,104,65,55,31,12,5,18,13,34,21 -050,01,073,Alabama,Jefferson County,9,8,43387,21139,22248,12492,11827,7921,9749,84,70,477,480,11,7,154,115,20125,21545,11624,11225,7846,9683,55,55,471,475,4,4,125,103,1014,703,868,602,75,66,29,15,6,5,7,3,29,12 -050,01,073,Alabama,Jefferson County,9,9,44472,21182,23290,12433,12292,8169,10434,83,83,365,355,12,9,120,117,20529,22884,11887,11964,8114,10376,70,74,357,353,4,7,97,110,653,406,546,328,55,58,13,9,8,2,8,2,23,7 -050,01,073,Alabama,Jefferson County,9,10,49294,23134,26160,13784,14247,8829,11344,66,94,294,307,9,9,152,159,22648,25774,13371,13931,8779,11298,56,87,288,304,9,5,145,149,486,386,413,316,50,46,10,7,6,3,0,4,7,10 -050,01,073,Alabama,Jefferson County,9,11,48522,22832,25690,13481,13935,8986,11337,64,68,190,215,3,9,108,126,22490,25470,13190,13751,8956,11310,51,63,189,215,2,9,102,122,342,220,291,184,30,27,13,5,1,0,1,0,6,4 -050,01,073,Alabama,Jefferson County,9,12,42188,19770,22418,12141,12934,7309,9128,77,52,155,190,3,1,85,113,19556,22269,11975,12811,7281,9107,65,49,153,190,1,1,81,111,214,149,166,123,28,21,12,3,2,0,2,0,4,2 -050,01,073,Alabama,Jefferson County,9,13,30505,14185,16320,9478,10411,4455,5636,45,39,120,147,1,5,86,82,14070,16161,9395,10281,4430,5614,40,37,120,147,1,3,84,79,115,159,83,130,25,22,5,2,0,0,0,2,2,3 -050,01,073,Alabama,Jefferson County,9,14,23115,10234,12881,6927,8344,3138,4365,21,22,99,86,2,5,47,59,10156,12791,6871,8275,3123,4348,20,21,95,84,2,5,45,58,78,90,56,69,15,17,1,1,4,2,0,0,2,1 -050,01,073,Alabama,Jefferson County,9,15,18809,7704,11105,5353,7364,2250,3627,17,21,49,54,1,2,34,37,7661,11036,5322,7319,2239,3609,17,20,49,53,1,1,33,34,43,69,31,45,11,18,0,1,0,1,0,1,1,3 -050,01,073,Alabama,Jefferson County,9,16,17226,6548,10678,4771,7339,1701,3237,15,20,29,32,1,4,31,46,6506,10625,4737,7304,1697,3225,13,18,29,32,0,3,30,43,42,53,34,35,4,12,2,2,0,0,1,1,1,3 -050,01,073,Alabama,Jefferson County,9,17,13828,4969,8859,3781,6291,1156,2491,7,14,7,20,2,0,16,43,4942,8824,3765,6263,1149,2486,4,14,7,19,1,0,16,42,27,35,16,28,7,5,3,0,0,1,1,0,0,1 -050,01,073,Alabama,Jefferson County,9,18,11747,3477,8270,2658,6044,799,2169,4,9,10,7,1,0,5,41,3463,8233,2647,6010,798,2167,3,8,9,7,1,0,5,41,14,37,11,34,1,2,1,1,1,0,0,0,0,0 -050,01,073,Alabama,Jefferson County,9,99,655163,309756,345407,177619,188392,124031,148608,1115,1048,4200,4422,193,165,2598,2772,297684,336625,167418,181022,123061,147762,697,814,4119,4367,73,83,2316,2577,12072,8782,10201,7370,970,846,418,234,81,55,120,82,282,195 -050,01,073,Alabama,Jefferson County,10,0,9323,4636,4687,2269,2299,2161,2149,7,6,57,71,9,7,133,155,4192,4282,1859,1922,2149,2134,4,3,56,68,4,3,120,152,444,405,410,377,12,15,3,3,1,3,5,4,13,3 -050,01,073,Alabama,Jefferson County,10,1,34385,17428,16957,8610,8242,8171,8014,45,66,266,242,7,24,329,369,16249,15850,7633,7275,8030,7956,21,30,258,237,3,12,304,340,1179,1107,977,967,141,58,24,36,8,5,4,12,25,29 -050,01,073,Alabama,Jefferson County,10,2,41840,21318,20522,10120,9682,10415,10089,93,62,301,313,15,14,374,362,20265,19576,9251,8877,10315,10004,58,40,291,305,3,6,347,344,1053,946,869,805,100,85,35,22,10,8,12,8,27,18 -050,01,073,Alabama,Jefferson County,10,3,42777,21812,20965,10268,9770,10960,10581,65,59,247,277,16,10,256,268,20985,20285,9572,9197,10886,10506,46,45,243,273,7,3,231,261,827,680,696,573,74,75,19,14,4,4,9,7,25,7 -050,01,073,Alabama,Jefferson County,10,4,46012,23238,22774,11148,10618,11512,11545,89,110,266,270,14,10,209,221,22364,22073,10432,10073,11403,11426,59,93,261,267,10,4,199,210,874,701,716,545,109,119,30,17,5,3,4,6,10,11 -050,01,073,Alabama,Jefferson County,10,5,46053,22143,23910,11771,11986,9683,11173,129,96,341,389,34,16,185,250,20503,22941,10416,11167,9545,11093,45,62,336,384,9,6,152,229,1640,969,1355,819,138,80,84,34,5,5,25,10,33,21 -050,01,073,Alabama,Jefferson County,10,6,49484,23798,25686,13827,13244,9176,11572,144,106,431,522,41,26,179,216,21795,24585,12104,12335,9067,11473,48,60,422,515,11,11,143,191,2003,1101,1723,909,109,99,96,46,9,7,30,15,36,25 -050,01,073,Alabama,Jefferson County,10,7,42754,20390,22364,12034,11352,7583,10237,104,84,479,501,29,25,161,165,18775,21311,10655,10443,7469,10172,42,54,472,491,9,11,128,140,1615,1053,1379,909,114,65,62,30,7,10,20,14,33,25 -050,01,073,Alabama,Jefferson County,10,8,43341,21150,22191,12373,11636,8089,9865,86,68,451,491,11,6,140,125,20071,21429,11469,10986,7989,9789,57,49,442,487,4,3,110,115,1079,762,904,650,100,76,29,19,9,4,7,3,30,10 -050,01,073,Alabama,Jefferson County,10,9,42684,20277,22407,11876,11795,7814,10054,80,79,357,355,11,8,139,116,19550,21979,11263,11431,7752,10013,60,66,355,350,6,5,114,114,727,428,613,364,62,41,20,13,2,5,5,3,25,2 -050,01,073,Alabama,Jefferson County,10,10,48352,22846,25506,13524,13804,8745,11139,84,93,352,318,6,10,135,142,22283,25097,13052,13453,8680,11099,74,87,346,317,5,9,126,132,563,409,472,351,65,40,10,6,6,1,1,1,9,10 -050,01,073,Alabama,Jefferson County,10,11,48902,22968,25934,13521,13933,9052,11587,57,70,208,205,5,13,125,126,22603,25666,13199,13711,9023,11554,50,63,207,204,4,13,120,121,365,268,322,222,29,33,7,7,1,1,1,0,5,5 -050,01,073,Alabama,Jefferson County,10,12,43147,20180,22967,12251,12979,7596,9620,77,50,157,201,4,1,95,116,19942,22797,12075,12839,7561,9595,62,47,152,201,1,1,91,114,238,170,176,140,35,25,15,3,5,0,3,0,4,2 -050,01,073,Alabama,Jefferson County,10,13,31963,14873,17090,9684,10680,4933,6130,50,39,117,153,1,1,88,87,14764,16933,9598,10548,4918,6112,46,35,117,153,0,1,85,84,109,157,86,132,15,18,4,4,0,0,1,0,3,3 -050,01,073,Alabama,Jefferson County,10,14,23871,10674,13197,7246,8633,3238,4379,25,34,112,93,3,4,50,54,10582,13112,7177,8568,3224,4364,23,31,109,91,3,4,46,54,92,85,69,65,14,15,2,3,3,2,0,0,4,0 -050,01,073,Alabama,Jefferson County,10,15,18909,7715,11194,5344,7416,2266,3637,23,25,48,66,2,4,32,46,7673,11123,5311,7363,2259,3625,22,24,48,66,2,3,31,42,42,71,33,53,7,12,1,1,0,0,0,1,1,4 -050,01,073,Alabama,Jefferson County,10,16,16807,6559,10248,4722,7051,1763,3107,16,13,34,29,0,3,24,45,6523,10187,4694,7006,1758,3095,14,12,34,29,0,2,23,43,36,61,28,45,5,12,2,1,0,0,0,1,1,2 -050,01,073,Alabama,Jefferson County,10,17,13869,4987,8882,3821,6298,1132,2508,5,12,9,21,1,0,19,43,4946,8836,3790,6263,1125,2500,3,12,9,20,0,0,19,41,41,46,31,35,7,8,2,0,0,1,1,0,0,2 -050,01,073,Alabama,Jefferson County,10,18,12037,3556,8481,2726,6145,803,2273,7,12,11,6,1,1,8,44,3538,8444,2711,6113,802,2269,6,11,10,6,1,1,8,44,18,37,15,32,1,4,1,1,1,0,0,0,0,0 -050,01,073,Alabama,Jefferson County,10,99,656510,310548,345962,177135,187563,125092,149659,1186,1084,4244,4523,210,183,2681,2950,297603,336506,166261,179570,123955,148779,740,824,4168,4464,82,98,2397,2771,12945,9456,10874,7993,1137,880,446,260,76,59,128,85,284,179 -050,01,073,Alabama,Jefferson County,11,0,9050,4626,4424,2241,2084,2173,2098,16,9,61,72,12,8,123,153,4210,4078,1884,1768,2148,2081,4,6,60,71,5,4,109,148,416,346,357,316,25,17,12,3,1,1,7,4,14,5 -050,01,073,Alabama,Jefferson County,11,1,34433,17383,17050,8541,8151,8144,8183,54,75,275,248,17,23,352,370,16117,15843,7469,7115,8020,8113,30,31,270,237,8,7,320,340,1266,1207,1072,1036,124,70,24,44,5,11,9,16,32,30 -050,01,073,Alabama,Jefferson County,11,2,42049,21319,20730,10120,9727,10448,10223,78,61,308,321,16,15,349,383,20206,19667,9195,8853,10345,10103,37,38,300,311,3,1,326,361,1113,1063,925,874,103,120,41,23,8,10,13,14,23,22 -050,01,073,Alabama,Jefferson County,11,3,42431,21744,20687,10183,9596,10887,10453,81,65,260,262,15,11,318,300,20888,19937,9455,8978,10823,10369,56,43,258,260,6,5,290,282,856,750,728,618,64,84,25,22,2,2,9,6,28,18 -050,01,073,Alabama,Jefferson County,11,4,45536,23011,22525,10975,10406,11458,11515,92,110,267,248,10,15,209,231,22073,21785,10199,9830,11352,11395,58,90,263,245,6,9,195,216,938,740,776,576,106,120,34,20,4,3,4,6,14,15 -050,01,073,Alabama,Jefferson County,11,5,46336,22291,24045,11812,12090,9788,11164,122,99,341,406,34,21,194,265,20406,22978,10236,11211,9642,11059,30,62,336,401,6,8,156,237,1885,1067,1576,879,146,105,92,37,5,5,28,13,38,28 -050,01,073,Alabama,Jefferson County,11,6,49285,23640,25645,13676,13277,9139,11455,143,103,441,526,37,24,204,260,21610,24418,11959,12251,9009,11364,36,50,432,518,6,6,168,229,2030,1227,1717,1026,130,91,107,53,9,8,31,18,36,31 -050,01,073,Alabama,Jefferson County,11,7,43931,21106,22825,12268,11482,7972,10497,107,89,562,544,32,31,165,182,19438,21702,10852,10533,7856,10412,38,57,557,529,6,14,129,157,1668,1123,1416,949,116,85,69,32,5,15,26,17,36,25 -050,01,073,Alabama,Jefferson County,11,8,43014,20889,22125,12174,11424,7990,9972,88,82,472,512,11,5,154,130,19680,21320,11147,10747,7890,9887,53,59,465,505,3,2,122,120,1209,805,1027,677,100,85,35,23,7,7,8,3,32,10 -050,01,073,Alabama,Jefferson County,11,9,41762,19941,21821,11589,11414,7747,9818,68,78,392,375,11,10,134,126,19140,21339,10916,11009,7682,9763,49,67,384,371,1,7,108,122,801,482,673,405,65,55,19,11,8,4,10,3,26,4 -050,01,073,Alabama,Jefferson County,11,10,47422,22524,24898,13264,13387,8677,10896,79,97,359,338,6,6,139,174,21947,24470,12786,13035,8612,10845,64,89,350,334,6,4,129,163,577,428,478,352,65,51,15,8,9,4,0,2,10,11 -050,01,073,Alabama,Jefferson County,11,11,48807,22907,25900,13388,13815,9110,11659,60,79,214,218,1,10,134,119,22515,25608,13042,13555,9078,11636,50,76,214,217,1,9,130,115,392,292,346,260,32,23,10,3,0,1,0,1,4,4 -050,01,073,Alabama,Jefferson County,11,12,44038,20512,23526,12301,13058,7864,10075,77,54,161,217,3,2,106,120,20255,23342,12104,12914,7830,10045,61,49,156,217,2,2,102,115,257,184,197,144,34,30,16,5,5,0,1,0,4,5 -050,01,073,Alabama,Jefferson County,11,13,34188,15971,18217,10174,11147,5511,6776,42,42,137,161,4,3,103,88,15844,18068,10081,11031,5486,6751,39,37,136,161,3,3,99,85,127,149,93,116,25,25,3,5,1,0,1,0,4,3 -050,01,073,Alabama,Jefferson County,11,14,24643,11059,13584,7473,8750,3366,4625,31,36,135,104,3,4,51,65,10942,13495,7380,8683,3351,4611,29,31,131,101,3,4,48,65,117,89,93,67,15,14,2,5,4,3,0,0,3,0 -050,01,073,Alabama,Jefferson County,11,15,19163,7883,11280,5442,7464,2308,3676,27,17,51,71,2,3,53,49,7836,11207,5404,7401,2301,3666,26,17,51,71,2,3,52,49,47,73,38,63,7,10,1,0,0,0,0,0,1,0 -050,01,073,Alabama,Jefferson County,11,16,16188,6332,9856,4567,6776,1695,2975,10,19,32,37,0,2,28,47,6295,9785,4538,6722,1690,2963,8,17,32,37,0,1,27,45,37,71,29,54,5,12,2,2,0,0,0,1,1,2 -050,01,073,Alabama,Jefferson County,11,17,13794,4933,8861,3788,6290,1106,2491,5,14,13,22,2,0,19,44,4896,8824,3759,6261,1102,2486,2,14,13,21,1,0,19,42,37,37,29,29,4,5,3,0,0,1,1,0,0,2 -050,01,073,Alabama,Jefferson County,11,18,12371,3695,8676,2816,6221,851,2393,8,14,9,8,1,1,10,39,3674,8641,2798,6191,850,2390,7,12,8,8,1,1,10,39,21,35,18,30,1,3,1,2,1,0,0,0,0,0 -050,01,073,Alabama,Jefferson County,11,99,658441,311766,346675,176792,186559,126234,150944,1188,1143,4490,4690,217,194,2845,3145,297972,336507,165204,178088,125067,149939,677,845,4416,4615,69,90,2539,2930,13794,10168,11588,8471,1167,1005,511,298,74,75,148,104,306,215 -050,01,073,Alabama,Jefferson County,12,0,8924,4529,4395,2120,2077,2194,2086,21,13,61,81,8,10,125,128,4166,4061,1823,1792,2165,2057,7,8,60,78,2,5,109,121,363,334,297,285,29,29,14,5,1,3,6,5,16,7 -050,01,073,Alabama,Jefferson County,12,1,34973,17784,17189,8535,7991,8473,8424,77,90,283,259,17,26,399,399,16450,15907,7437,6949,8346,8310,30,35,275,251,3,6,359,356,1334,1282,1098,1042,127,114,47,55,8,8,14,20,40,43 -050,01,073,Alabama,Jefferson County,12,2,41902,21211,20691,10070,9810,10297,10087,95,64,344,326,22,15,383,389,19959,19527,9038,8828,10193,9982,40,34,333,316,4,2,351,365,1252,1164,1032,982,104,105,55,30,11,10,18,13,32,24 -050,01,073,Alabama,Jefferson County,12,3,42373,21719,20654,10267,9635,10748,10328,72,70,268,287,20,12,344,322,20810,19858,9509,8975,10679,10246,45,45,265,284,6,4,306,304,909,796,758,660,69,82,27,25,3,3,14,8,38,18 -050,01,073,Alabama,Jefferson County,12,4,44662,22568,22094,10712,10224,11243,11264,92,78,269,255,14,12,238,261,21566,21351,9902,9631,11128,11164,51,57,261,251,7,5,217,243,1002,743,810,593,115,100,41,21,8,4,7,7,21,18 -050,01,073,Alabama,Jefferson County,12,5,46405,22298,24107,11805,12139,9742,11136,125,109,358,412,41,21,227,290,20272,22937,10120,11178,9586,11021,25,67,352,406,10,8,179,257,2026,1170,1685,961,156,115,100,42,6,6,31,13,48,33 -050,01,073,Alabama,Jefferson County,12,6,48533,23224,25309,13394,13004,8908,11359,149,115,501,536,43,33,229,262,21081,23962,11608,11891,8767,11252,33,55,488,527,6,12,179,225,2143,1347,1786,1113,141,107,116,60,13,9,37,21,50,37 -050,01,073,Alabama,Jefferson County,12,7,44764,21452,23312,12313,11644,8316,10803,120,94,467,537,42,32,194,202,19708,22167,10870,10681,8176,10720,44,58,458,527,10,11,150,170,1744,1145,1443,963,140,83,76,36,9,10,32,21,44,32 -050,01,073,Alabama,Jefferson County,12,8,42291,20526,21765,11782,11174,8004,9877,84,79,474,481,16,9,166,145,19249,20901,10715,10459,7900,9785,41,52,463,474,4,3,126,128,1277,864,1067,715,104,92,43,27,11,7,12,6,40,17 -050,01,073,Alabama,Jefferson County,12,9,41302,19764,21538,11491,11210,7662,9728,72,70,397,393,11,9,131,128,18893,20997,10770,10759,7578,9668,49,53,390,389,2,5,104,123,871,541,721,451,84,60,23,17,7,4,9,4,27,5 -050,01,073,Alabama,Jefferson County,12,10,46460,22005,24455,12975,13139,8445,10717,76,82,364,357,7,11,138,149,21379,24015,12451,12779,8379,10665,59,73,357,355,6,7,127,136,626,440,524,360,66,52,17,9,7,2,1,4,11,13 -050,01,073,Alabama,Jefferson County,12,11,48773,22900,25873,13306,13708,9172,11705,65,80,222,232,5,10,130,138,22471,25545,12942,13425,9130,11675,52,72,222,230,3,10,122,133,429,328,364,283,42,30,13,8,0,2,2,0,8,5 -050,01,073,Alabama,Jefferson County,12,12,44702,20837,23865,12427,13198,8060,10250,73,60,155,219,4,2,118,136,20554,23667,12211,13045,8023,10217,53,54,151,219,3,2,113,130,283,198,216,153,37,33,20,6,4,0,1,0,5,6 -050,01,073,Alabama,Jefferson County,12,13,35959,16769,19190,10507,11476,5951,7384,48,43,160,174,3,4,100,109,16629,19027,10403,11347,5927,7357,42,40,159,174,2,4,96,105,140,163,104,129,24,27,6,3,1,0,1,0,4,4 -050,01,073,Alabama,Jefferson County,12,14,25034,11285,13749,7563,8845,3505,4673,39,39,121,113,3,3,54,76,11174,13650,7473,8769,3492,4658,37,34,117,110,3,3,52,76,111,99,90,76,13,15,2,5,4,3,0,0,2,0 -050,01,073,Alabama,Jefferson County,12,15,19239,8032,11207,5547,7358,2363,3706,19,20,59,77,1,2,43,44,7985,11134,5509,7299,2356,3693,18,20,59,77,1,2,42,43,47,73,38,59,7,13,1,0,0,0,0,0,1,1 -050,01,073,Alabama,Jefferson County,12,16,15956,6207,9749,4451,6721,1676,2929,13,15,35,41,0,2,32,41,6164,9688,4417,6675,1669,2919,12,13,35,41,0,1,31,39,43,61,34,46,7,10,1,2,0,0,0,1,1,2 -050,01,073,Alabama,Jefferson County,12,17,13671,4924,8747,3750,6161,1135,2505,4,13,14,26,2,0,19,42,4886,8704,3719,6128,1132,2498,1,13,14,25,1,0,19,40,38,43,31,33,3,7,3,0,0,1,1,0,0,2 -050,01,073,Alabama,Jefferson County,12,18,12543,3779,8764,2858,6254,893,2437,8,14,10,11,1,1,9,47,3758,8726,2841,6221,892,2433,6,13,9,11,1,1,9,47,21,38,17,33,1,4,2,1,1,0,0,0,0,0 -050,01,073,Alabama,Jefferson County,12,99,658466,311813,346653,175873,185768,126787,151398,1252,1148,4562,4817,260,214,3079,3308,297154,335824,163758,176831,125518,150320,645,796,4468,4745,74,91,2691,3041,14659,10829,12115,8937,1269,1078,607,352,94,72,186,123,388,267 -050,01,073,Alabama,Jefferson County,13,0,8920,4533,4387,2115,2077,2203,2084,22,14,60,80,6,8,127,124,4169,4056,1818,1791,2173,2056,8,9,59,78,1,4,110,118,364,331,297,286,30,28,14,5,1,2,5,4,17,6 -050,01,073,Alabama,Jefferson County,13,1,34929,17762,17167,8485,7949,8502,8450,79,91,280,255,15,21,401,401,16424,15889,7387,6906,8375,8340,31,35,274,250,5,5,352,353,1338,1278,1098,1043,127,110,48,56,6,5,10,16,49,48 -050,01,073,Alabama,Jefferson County,13,2,41821,21160,20661,10043,9784,10276,10073,93,64,341,326,18,12,389,402,19898,19485,9007,8798,10171,9967,39,34,333,318,2,4,346,364,1262,1176,1036,986,105,106,54,30,8,8,16,8,43,38 -050,01,073,Alabama,Jefferson County,13,3,42317,21677,20640,10228,9606,10720,10302,69,70,267,287,17,9,376,366,20755,19821,9469,8943,10650,10220,44,45,266,285,5,2,321,326,922,819,759,663,70,82,25,25,1,2,12,7,55,40 -050,01,073,Alabama,Jefferson County,13,4,44416,22446,21970,10632,10148,11168,11180,87,74,265,254,11,9,283,305,21428,21207,9821,9556,11053,11083,49,55,261,250,6,4,238,259,1018,763,811,592,115,97,38,19,4,4,5,5,45,46 -050,01,073,Alabama,Jefferson County,13,5,46612,22405,24207,11808,12135,9805,11201,124,106,354,412,40,15,274,338,20340,23017,10114,11169,9646,11085,25,67,349,405,10,4,196,287,2065,1190,1694,966,159,116,99,39,5,7,30,11,78,51 -050,01,073,Alabama,Jefferson County,13,6,48639,23319,25320,13420,12992,8949,11360,146,116,495,528,41,27,268,297,21170,23964,11635,11881,8810,11253,33,58,485,523,6,8,201,241,2149,1356,1785,1111,139,107,113,58,10,5,35,19,67,56 -050,01,073,Alabama,Jefferson County,13,7,45106,21643,23463,12372,11704,8404,10873,121,93,465,534,39,29,242,230,19864,22307,10923,10740,8263,10792,46,58,456,526,8,11,168,180,1779,1156,1449,964,141,81,75,35,9,8,31,18,74,50 -050,01,073,Alabama,Jefferson County,13,8,41967,20381,21586,11666,11057,7984,9827,86,75,473,481,13,6,159,140,19100,20731,10597,10341,7879,9738,43,51,462,474,2,2,117,125,1281,855,1069,716,105,89,43,24,11,7,11,4,42,15 -050,01,073,Alabama,Jefferson County,13,9,41148,19695,21453,11456,11172,7640,9703,70,66,398,393,6,6,125,113,18829,20920,10731,10721,7555,9644,48,53,392,391,1,2,102,109,866,533,725,451,85,59,22,13,6,2,5,4,23,4 -050,01,073,Alabama,Jefferson County,13,10,46219,21899,24320,12890,13043,8426,10695,72,77,365,357,8,8,138,140,21274,23888,12365,12683,8362,10646,57,71,357,356,7,5,126,127,625,432,525,360,64,49,15,6,8,1,1,3,12,13 -050,01,073,Alabama,Jefferson County,13,11,48820,22921,25899,13296,13698,9213,11750,65,76,225,237,3,9,119,129,22492,25570,12929,13414,9171,11721,53,71,222,233,2,9,115,122,429,329,367,284,42,29,12,5,3,4,1,0,4,7 -050,01,073,Alabama,Jefferson County,13,12,44874,20920,23954,12470,13241,8104,10306,71,59,154,219,7,2,114,127,20635,23754,12251,13086,8067,10274,52,53,150,218,4,1,111,122,285,200,219,155,37,32,19,6,4,1,3,1,3,5 -050,01,073,Alabama,Jefferson County,13,13,36248,16905,19343,10577,11554,6024,7472,48,41,164,179,6,5,86,92,16773,19182,10473,11424,6004,7449,44,38,163,177,4,5,85,89,132,161,104,130,20,23,4,3,1,2,2,0,1,3 -050,01,073,Alabama,Jefferson County,13,14,25111,11318,13793,7594,8879,3515,4692,42,36,118,113,3,3,46,70,11212,13695,7504,8801,3505,4680,39,33,116,110,3,2,45,69,106,98,90,78,10,12,3,3,2,3,0,1,1,1 -050,01,073,Alabama,Jefferson County,13,15,19273,8054,11219,5566,7372,2371,3716,17,20,58,77,1,1,41,33,8009,11147,5529,7314,2366,3704,16,18,58,77,1,1,39,33,45,72,37,58,5,12,1,2,0,0,0,0,2,0 -050,01,073,Alabama,Jefferson County,13,16,15900,6189,9711,4438,6686,1683,2937,14,12,33,39,0,1,21,36,6148,9659,4405,6642,1676,2929,13,12,33,39,0,1,21,36,41,52,33,44,7,8,1,0,0,0,0,0,0,0 -050,01,073,Alabama,Jefferson County,13,17,13626,4914,8712,3748,6135,1141,2510,3,11,11,23,0,0,11,33,4883,8674,3719,6106,1140,2502,2,11,11,23,0,0,11,32,31,38,29,29,1,8,1,0,0,0,0,0,0,1 -050,01,073,Alabama,Jefferson County,13,18,12609,3806,8803,2879,6271,901,2461,8,15,9,12,0,0,9,44,3786,8765,2861,6238,901,2457,6,14,9,12,0,0,9,44,20,38,18,33,0,4,2,1,0,0,0,0,0,0 -050,01,073,Alabama,Jefferson County,13,99,658555,311947,346608,175683,185503,127029,151592,1237,1116,4535,4806,234,171,3229,3420,297189,335731,163538,176554,125767,150540,648,786,4456,4745,67,70,2713,3036,14758,10877,12145,8949,1262,1052,589,330,79,61,167,101,516,384 -050,01,075,Alabama,Lamar County,1,0,180,97,83,85,71,10,11,0,1,0,0,0,0,2,0,95,78,83,66,10,11,0,1,0,0,0,0,2,0,2,5,2,5,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,1,746,360,386,312,321,46,55,1,1,0,0,0,0,1,9,351,377,303,312,46,55,1,1,0,0,0,0,1,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,2,1016,474,542,389,437,81,98,0,1,0,0,0,0,4,6,463,535,378,430,81,98,0,1,0,0,0,0,4,6,11,7,11,7,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,3,1102,603,499,508,416,91,82,1,0,0,0,0,0,3,1,598,493,505,411,90,81,0,0,0,0,0,0,3,1,5,6,3,5,1,1,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,4,1148,592,556,505,468,83,87,0,0,1,0,0,0,3,1,580,551,494,463,82,87,0,0,1,0,0,0,3,1,12,5,11,5,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,5,939,477,462,418,403,57,59,0,0,1,0,0,0,1,0,461,456,402,397,57,59,0,0,1,0,0,0,1,0,16,6,16,6,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,6,1016,503,513,446,430,55,75,2,1,0,1,0,0,0,6,489,510,432,427,55,75,2,1,0,1,0,0,0,6,14,3,14,3,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,7,1037,515,522,449,449,61,69,1,4,0,0,0,0,4,0,505,519,439,447,61,69,1,3,0,0,0,0,4,0,10,3,10,2,0,0,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,8,1170,582,588,511,503,70,83,0,0,0,1,0,0,1,1,574,586,503,501,70,83,0,0,0,1,0,0,1,1,8,2,8,2,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,9,1190,608,582,528,501,77,78,1,1,0,0,0,0,2,2,604,579,524,499,77,77,1,1,0,0,0,0,2,2,4,3,4,2,0,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,10,1038,521,517,464,441,55,72,0,1,0,2,0,0,2,1,516,508,461,432,53,72,0,1,0,2,0,0,2,1,5,9,3,9,2,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,11,1073,515,558,460,494,54,60,0,1,0,1,0,0,1,2,509,553,454,489,54,60,0,1,0,1,0,0,1,2,6,5,6,5,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,12,872,416,456,387,415,27,36,1,1,0,3,0,0,1,1,410,451,382,410,26,36,1,1,0,3,0,0,1,1,6,5,5,5,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,13,853,408,445,381,400,24,42,0,1,0,0,0,0,3,2,402,440,376,397,24,41,0,0,0,0,0,0,2,2,6,5,5,3,0,1,0,1,0,0,0,0,1,0 -050,01,075,Alabama,Lamar County,1,14,734,346,388,318,358,26,30,2,0,0,0,0,0,0,0,346,388,318,358,26,30,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,15,625,277,348,252,320,23,26,1,0,0,0,0,0,1,2,276,343,251,315,23,26,1,0,0,0,0,0,1,2,1,5,1,5,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,16,459,151,308,132,277,17,28,0,0,0,0,0,0,2,3,147,302,129,272,16,27,0,0,0,0,0,0,2,3,4,6,3,5,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,17,361,127,234,117,215,10,19,0,0,0,0,0,0,0,0,127,233,117,214,10,19,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,18,343,107,236,102,209,4,27,0,0,1,0,0,0,0,0,105,235,101,208,4,27,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,99,15902,7679,8223,6764,7128,871,1037,10,13,3,8,0,0,31,37,7558,8137,6652,7048,865,1033,9,11,2,8,0,0,30,37,121,86,112,80,6,4,1,2,1,0,0,0,1,0 -050,01,075,Alabama,Lamar County,2,0,180,97,83,85,71,10,11,0,1,0,0,0,0,2,0,95,78,83,66,10,11,0,1,0,0,0,0,2,0,2,5,2,5,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,1,742,360,382,312,319,46,55,1,1,0,0,0,0,1,7,351,373,303,310,46,55,1,1,0,0,0,0,1,7,9,9,9,9,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,2,1012,471,541,386,436,81,98,0,1,0,0,0,0,4,6,460,534,375,429,81,98,0,1,0,0,0,0,4,6,11,7,11,7,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,3,1103,604,499,509,416,91,82,1,0,0,0,0,0,3,1,599,493,506,411,90,81,0,0,0,0,0,0,3,1,5,6,3,5,1,1,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,4,1153,596,557,511,469,81,87,0,0,1,0,0,0,3,1,584,552,500,464,80,87,0,0,1,0,0,0,3,1,12,5,11,5,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,5,945,479,466,423,407,54,59,0,0,1,0,0,0,1,0,463,460,407,401,54,59,0,0,1,0,0,0,1,0,16,6,16,6,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,6,1008,499,509,446,425,51,76,2,1,0,1,0,0,0,6,485,506,432,422,51,76,2,1,0,1,0,0,0,6,14,3,14,3,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,7,1035,513,522,449,449,59,69,1,4,0,0,0,0,4,0,503,519,439,447,59,69,1,3,0,0,0,0,4,0,10,3,10,2,0,0,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,8,1159,574,585,507,500,66,83,0,0,0,1,0,0,1,1,566,583,499,498,66,83,0,0,0,1,0,0,1,1,8,2,8,2,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,9,1186,604,582,528,501,73,78,1,1,0,0,0,0,2,2,600,579,524,499,73,77,1,1,0,0,0,0,2,2,4,3,4,2,0,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,10,1040,520,520,464,444,54,72,0,1,0,2,0,0,2,1,515,511,461,435,52,72,0,1,0,2,0,0,2,1,5,9,3,9,2,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,11,1087,521,566,465,501,55,61,0,1,0,1,0,0,1,2,515,561,459,496,55,61,0,1,0,1,0,0,1,2,6,5,6,5,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,12,882,422,460,393,419,27,36,1,1,0,3,0,0,1,1,416,455,388,414,26,36,1,1,0,3,0,0,1,1,6,5,5,5,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,13,857,410,447,383,402,24,42,0,1,0,0,0,0,3,2,404,442,378,399,24,41,0,0,0,0,0,0,2,2,6,5,5,3,0,1,0,1,0,0,0,0,1,0 -050,01,075,Alabama,Lamar County,2,14,732,346,386,318,356,26,30,2,0,0,0,0,0,0,0,346,386,318,356,26,30,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,15,625,277,348,252,319,23,27,1,0,0,0,0,0,1,2,276,343,251,314,23,27,1,0,0,0,0,0,1,2,1,5,1,5,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,16,463,151,312,132,281,17,28,0,0,0,0,0,0,2,3,147,306,129,276,16,27,0,0,0,0,0,0,2,3,4,6,3,5,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,17,366,129,237,119,218,10,19,0,0,0,0,0,0,0,0,129,236,119,217,10,19,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,18,348,109,239,104,212,4,27,0,0,1,0,0,0,0,0,107,238,103,211,4,27,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,99,15923,7682,8241,6786,7145,852,1040,10,13,3,8,0,0,31,35,7561,8155,6674,7065,846,1036,9,11,2,8,0,0,30,35,121,86,112,80,6,4,1,2,1,0,0,0,1,0 -050,01,075,Alabama,Lamar County,3,0,177,101,76,89,65,10,10,0,1,0,0,0,0,2,0,99,71,87,60,10,10,0,1,0,0,0,0,2,0,2,5,2,5,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,1,725,356,369,308,311,45,46,1,1,0,0,0,0,2,11,349,363,301,305,45,46,1,1,0,0,0,0,2,11,7,6,7,6,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,2,924,429,495,354,410,70,78,0,1,0,0,0,0,5,6,421,488,346,403,70,78,0,1,0,0,0,0,5,6,8,7,8,7,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,3,1106,603,503,505,414,93,88,1,0,0,0,0,0,4,1,598,497,502,409,92,87,0,0,0,0,0,0,4,1,5,6,3,5,1,1,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,4,1090,560,530,486,448,70,81,0,0,1,0,0,0,3,1,546,525,473,443,69,81,0,0,1,0,0,0,3,1,14,5,13,5,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,5,957,473,484,415,418,56,66,0,0,1,0,0,0,1,0,458,478,400,412,56,66,0,0,1,0,0,0,1,0,15,6,15,6,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,6,939,479,460,425,393,52,59,2,1,0,1,0,0,0,6,465,454,411,387,52,59,2,1,0,1,0,0,0,6,14,6,14,6,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,7,1003,503,500,446,420,52,76,1,4,0,0,0,0,4,0,490,497,433,418,52,76,1,3,0,0,0,0,4,0,13,3,13,2,0,0,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,8,1119,552,567,490,486,61,79,0,0,0,1,0,0,1,1,545,565,483,484,61,79,0,0,0,1,0,0,1,1,7,2,7,2,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,9,1157,578,579,507,494,68,82,1,1,0,0,0,0,2,2,575,576,504,492,68,81,1,1,0,0,0,0,2,2,3,3,3,2,0,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,10,1055,530,525,473,445,55,76,0,1,0,2,0,0,2,1,524,516,469,436,53,76,0,1,0,2,0,0,2,1,6,9,4,9,2,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,11,1083,529,554,474,488,51,62,0,1,0,1,0,0,4,2,520,549,468,483,51,62,0,1,0,1,0,0,1,2,9,5,6,5,0,0,0,0,0,0,0,0,3,0 -050,01,075,Alabama,Lamar County,3,12,924,450,474,410,435,38,34,1,1,0,3,0,0,1,1,444,469,405,430,37,34,1,1,0,3,0,0,1,1,6,5,5,5,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,13,846,400,446,374,400,23,44,0,0,0,0,0,0,3,2,395,442,370,397,23,43,0,0,0,0,0,0,2,2,5,4,4,3,0,1,0,0,0,0,0,0,1,0 -050,01,075,Alabama,Lamar County,3,14,766,372,394,345,364,26,30,1,0,0,0,0,0,0,0,372,394,345,364,26,30,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,15,598,244,354,228,322,13,30,1,0,0,0,0,0,2,2,243,349,227,317,13,30,1,0,0,0,0,0,2,2,1,5,1,5,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,16,467,168,299,151,274,15,23,0,0,0,0,0,0,2,2,164,293,148,269,14,22,0,0,0,0,0,0,2,2,4,6,3,5,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,17,364,118,246,110,225,8,21,0,0,0,0,0,0,0,0,118,245,110,224,8,21,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,18,332,107,225,99,195,7,30,0,0,1,0,0,0,0,0,105,224,98,194,7,30,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,99,15632,7552,8080,6689,7007,813,1015,9,12,3,8,0,0,38,38,7431,7995,6580,6927,807,1011,8,11,2,8,0,0,34,38,121,85,109,80,6,4,1,1,1,0,0,0,4,0 -050,01,075,Alabama,Lamar County,4,0,176,95,81,84,70,9,10,0,1,0,0,0,0,2,0,93,77,82,66,9,10,0,1,0,0,0,0,2,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,1,719,359,360,318,303,38,46,1,1,0,0,0,0,2,10,349,350,308,293,38,46,1,1,0,0,0,0,2,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,2,930,439,491,366,417,67,67,0,1,0,0,0,0,6,6,431,485,358,411,67,67,0,1,0,0,0,0,6,6,8,6,8,6,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,3,1056,565,491,468,404,92,86,1,0,0,0,0,0,4,1,558,485,463,399,91,85,0,0,0,0,0,0,4,1,7,6,5,5,1,1,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,4,1048,563,485,482,408,77,76,0,0,1,0,0,0,3,1,551,480,471,403,76,76,0,0,1,0,0,0,3,1,12,5,11,5,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,5,932,484,448,423,380,59,67,0,1,1,0,0,0,1,0,470,443,409,375,59,67,0,1,1,0,0,0,1,0,14,5,14,5,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,6,865,434,431,386,365,46,59,2,1,0,1,0,0,0,5,422,428,374,362,46,59,2,1,0,1,0,0,0,5,12,3,12,3,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,7,974,484,490,425,421,54,66,1,3,0,0,0,0,4,0,471,487,412,419,54,66,1,2,0,0,0,0,4,0,13,3,13,2,0,0,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,8,1093,534,559,477,471,56,86,0,0,0,1,0,0,1,1,526,557,469,469,56,86,0,0,0,1,0,0,1,1,8,2,8,2,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,9,1134,554,580,491,503,59,74,1,1,0,0,0,0,3,2,550,577,487,501,59,73,1,1,0,0,0,0,3,2,4,3,4,2,0,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,10,1067,562,505,499,431,61,70,0,1,0,2,0,0,2,1,554,497,493,423,59,70,0,1,0,2,0,0,2,1,8,8,6,8,2,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,11,1073,507,566,460,489,43,72,0,2,0,1,0,0,4,2,500,561,455,484,43,72,0,2,0,1,0,0,2,2,7,5,5,5,0,0,0,0,0,0,0,0,2,0 -050,01,075,Alabama,Lamar County,4,12,989,486,503,438,455,46,42,1,1,0,3,0,0,1,2,480,498,433,450,45,42,1,1,0,3,0,0,1,2,6,5,5,5,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,13,855,411,444,380,409,28,33,0,0,0,0,0,0,3,2,406,440,376,406,28,32,0,0,0,0,0,0,2,2,5,4,4,3,0,1,0,0,0,0,0,0,1,0 -050,01,075,Alabama,Lamar County,4,14,769,374,395,349,361,23,34,1,0,0,0,0,0,1,0,374,395,349,361,23,34,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,15,606,257,349,230,312,24,35,1,0,0,0,0,0,2,2,256,345,229,308,24,35,1,0,0,0,0,0,2,2,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,16,480,183,297,164,273,17,21,0,0,0,0,0,0,2,3,179,291,161,268,16,20,0,0,0,0,0,0,2,3,4,6,3,5,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,17,353,104,249,98,222,6,27,0,0,0,0,0,0,0,0,104,248,98,221,6,27,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,18,327,95,232,87,202,7,30,0,0,1,0,0,0,0,0,93,231,86,201,7,30,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,99,15446,7490,7956,6625,6896,812,1001,9,13,3,8,0,0,41,38,7367,7875,6513,6820,806,997,8,12,2,8,0,0,38,38,123,81,112,76,6,4,1,1,1,0,0,0,3,0 -050,01,075,Alabama,Lamar County,5,0,162,88,74,80,63,6,9,0,1,0,0,0,0,2,1,86,70,78,59,6,9,0,1,0,0,0,0,2,1,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,1,703,358,345,325,298,29,38,1,1,0,0,0,0,3,8,352,340,319,293,29,38,1,1,0,0,0,0,3,8,6,5,6,5,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,2,913,432,481,374,408,51,66,0,1,0,0,0,0,7,6,423,471,365,399,51,65,0,1,0,0,0,0,7,6,9,10,9,9,0,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,3,1023,520,503,426,400,89,100,1,0,0,0,0,0,4,3,510,497,418,395,88,99,0,0,0,0,0,0,4,3,10,6,8,5,1,1,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,4,1029,553,476,474,401,75,73,0,0,1,0,0,0,3,2,543,472,465,397,74,73,0,0,1,0,0,0,3,2,10,4,9,4,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,5,912,486,426,417,354,67,71,0,1,1,0,0,0,1,0,469,418,402,347,65,70,0,1,1,0,0,0,1,0,17,8,15,7,2,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,6,817,397,420,357,365,38,48,2,1,0,1,0,0,0,5,385,416,345,361,38,48,2,1,0,1,0,0,0,5,12,4,12,4,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,7,986,476,510,418,436,53,71,1,3,0,0,0,0,4,0,463,507,405,434,53,71,1,2,0,0,0,0,4,0,13,3,13,2,0,0,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,8,1025,512,513,457,445,53,66,0,0,0,1,0,0,2,1,504,508,449,440,53,66,0,0,0,1,0,0,2,1,8,5,8,5,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,9,1141,566,575,501,487,61,86,1,1,0,0,0,0,3,1,563,571,498,484,61,85,1,1,0,0,0,0,3,1,3,4,3,3,0,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,10,1069,542,527,472,463,66,60,1,1,0,2,0,0,3,1,536,520,468,456,64,60,1,1,0,2,0,0,3,1,6,7,4,7,2,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,11,1038,510,528,473,453,33,70,0,2,0,1,0,0,4,2,503,524,468,449,33,70,0,2,0,1,0,0,2,2,7,4,5,4,0,0,0,0,0,0,0,0,2,0 -050,01,075,Alabama,Lamar County,5,12,1021,493,528,442,465,48,55,1,2,0,4,0,0,2,2,488,524,438,461,47,55,1,2,0,4,0,0,2,2,5,4,4,4,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,13,871,411,460,374,419,34,38,0,1,0,0,0,0,3,2,406,456,370,416,34,38,0,0,0,0,0,0,2,2,5,4,4,3,0,0,0,1,0,0,0,0,1,0 -050,01,075,Alabama,Lamar County,5,14,799,397,402,370,363,25,38,1,0,0,0,0,0,1,1,397,402,370,363,25,38,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,15,606,248,358,233,328,13,28,0,0,0,0,0,0,2,2,247,353,232,323,13,28,0,0,0,0,0,0,2,2,1,5,1,5,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,16,501,195,306,173,284,20,19,0,0,0,0,0,0,2,3,191,302,170,280,19,19,0,0,0,0,0,0,2,3,4,4,3,4,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,17,348,105,243,97,214,7,29,0,0,0,0,0,0,1,0,105,242,97,213,7,29,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,18,294,85,209,79,184,6,25,0,0,0,0,0,0,0,0,84,208,78,183,6,25,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,99,15258,7374,7884,6542,6830,774,990,9,15,2,9,0,0,47,40,7255,7801,6435,6753,766,986,8,13,2,9,0,0,44,40,119,83,107,77,8,4,1,2,0,0,0,0,3,0 -050,01,075,Alabama,Lamar County,6,0,176,94,82,75,70,17,11,0,0,0,0,0,0,2,1,91,79,73,67,16,11,0,0,0,0,0,0,2,1,3,3,2,3,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,1,698,376,322,336,266,34,43,2,1,0,0,0,0,4,12,370,316,330,260,34,43,2,1,0,0,0,0,4,12,6,6,6,6,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,2,896,421,475,366,407,46,61,0,1,0,0,0,0,9,6,413,468,358,401,46,60,0,1,0,0,0,0,9,6,8,7,8,6,0,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,3,981,492,489,399,378,88,108,1,0,0,0,0,0,4,3,482,483,391,373,87,107,0,0,0,0,0,0,4,3,10,6,8,5,1,1,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,4,1000,532,468,442,404,86,62,0,0,1,0,0,0,3,2,522,460,432,396,86,62,0,0,1,0,0,0,3,2,10,8,10,8,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,5,871,464,407,397,337,65,69,0,1,1,0,0,0,1,0,447,401,382,332,63,68,0,1,1,0,0,0,1,0,17,6,15,5,2,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,6,764,388,376,351,327,35,42,2,1,0,1,0,0,0,5,376,369,340,320,34,42,2,1,0,1,0,0,0,5,12,7,11,7,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,7,980,469,511,418,434,48,74,1,3,0,0,0,0,2,0,459,508,408,432,48,74,1,2,0,0,0,0,2,0,10,3,10,2,0,0,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,8,973,481,492,430,427,49,63,0,0,0,1,0,0,2,1,473,487,422,422,49,63,0,0,0,1,0,0,2,1,8,5,8,5,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,9,1073,531,542,472,456,55,84,1,1,0,0,0,0,3,1,526,537,467,453,55,82,1,1,0,0,0,0,3,1,5,5,5,3,0,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,10,1111,565,546,497,473,64,68,1,1,0,2,0,0,3,2,560,539,494,466,62,68,1,1,0,2,0,0,3,2,5,7,3,7,2,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,11,1021,500,521,461,455,35,61,0,2,0,1,0,0,4,2,494,517,456,451,35,61,0,2,0,1,0,0,3,2,6,4,5,4,0,0,0,0,0,0,0,0,1,0 -050,01,075,Alabama,Lamar County,6,12,1062,522,540,473,474,46,58,1,2,0,4,0,0,2,2,518,536,469,470,46,58,1,2,0,4,0,0,2,2,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,13,878,425,453,387,418,35,32,0,1,0,0,0,0,3,2,420,449,383,415,35,32,0,0,0,0,0,0,2,2,5,4,4,3,0,0,0,1,0,0,0,0,1,0 -050,01,075,Alabama,Lamar County,6,14,805,399,406,375,367,22,38,1,0,0,0,0,0,1,1,399,406,375,367,22,38,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,15,638,274,364,248,331,23,31,0,0,0,0,0,0,3,2,273,360,247,327,23,31,0,0,0,0,0,0,3,2,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,16,513,201,312,183,290,15,19,0,0,0,0,0,0,3,3,197,308,180,286,14,19,0,0,0,0,0,0,3,3,4,4,3,4,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,17,347,103,244,93,223,9,21,0,0,0,0,0,0,1,0,103,243,93,222,9,21,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,18,288,82,206,76,182,6,24,0,0,0,0,0,0,0,0,81,205,75,181,6,24,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,99,15075,7319,7756,6479,6719,778,969,10,14,2,9,0,0,50,45,7204,7671,6375,6641,770,964,9,12,2,9,0,0,48,45,115,85,104,78,8,5,1,2,0,0,0,0,2,0 -050,01,075,Alabama,Lamar County,7,0,169,89,80,76,71,10,8,0,0,0,0,0,0,3,1,87,77,75,68,9,8,0,0,0,0,0,0,3,1,2,3,1,3,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,1,684,361,323,318,258,38,51,1,0,0,0,0,0,4,14,350,320,309,255,36,51,1,0,0,0,0,0,4,14,11,3,9,3,2,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,2,906,451,455,388,404,52,47,0,0,0,0,0,0,11,4,442,447,379,397,52,46,0,0,0,0,0,0,11,4,9,8,9,7,0,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,3,993,485,508,397,390,83,112,0,0,0,0,0,0,5,6,475,502,387,384,83,112,0,0,0,0,0,0,5,6,10,6,10,6,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,4,1000,535,465,433,399,97,59,1,1,0,0,0,0,4,6,526,458,424,392,97,59,1,1,0,0,0,0,4,6,9,7,9,7,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,5,855,445,410,381,347,61,61,0,2,0,0,0,0,3,0,429,403,369,341,59,60,0,2,0,0,0,0,1,0,16,7,12,6,2,1,0,0,0,0,0,0,2,0 -050,01,075,Alabama,Lamar County,7,6,758,381,377,337,314,41,58,1,1,0,0,0,0,2,4,372,373,329,310,40,58,1,1,0,0,0,0,2,4,9,4,8,4,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,7,917,435,482,391,417,40,62,0,2,0,0,0,0,4,1,428,479,385,415,40,62,0,1,0,0,0,0,3,1,7,3,6,2,0,0,0,1,0,0,0,0,1,0 -050,01,075,Alabama,Lamar County,7,8,969,459,510,414,434,42,75,0,0,2,0,0,0,1,1,452,505,407,429,42,75,0,0,2,0,0,0,1,1,7,5,7,5,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,9,1056,541,515,480,440,56,71,0,1,0,0,0,0,5,3,535,510,475,437,55,69,0,1,0,0,0,0,5,3,6,5,5,3,1,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,10,1119,572,547,500,471,66,71,1,0,0,0,0,0,5,5,566,541,494,465,66,71,1,0,0,0,0,0,5,5,6,6,6,6,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,11,1018,500,518,457,443,38,70,0,2,0,0,0,0,5,3,495,514,453,439,38,70,0,2,0,0,0,0,4,3,5,4,4,4,0,0,0,0,0,0,0,0,1,0 -050,01,075,Alabama,Lamar County,7,12,1090,527,563,480,498,45,59,1,1,0,2,0,0,1,3,523,559,477,494,44,59,1,1,0,2,0,0,1,3,4,4,3,4,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,13,874,430,444,389,401,39,39,1,1,1,0,0,0,0,3,428,442,387,400,39,38,1,1,1,0,0,0,0,3,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,14,806,395,411,369,369,22,40,1,1,0,0,0,0,3,1,395,410,369,368,22,40,1,1,0,0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,15,659,289,370,268,341,17,26,1,0,0,0,0,0,3,3,286,366,265,337,17,26,1,0,0,0,0,0,3,3,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,16,524,220,304,203,281,15,21,0,0,0,0,0,0,2,2,217,302,201,279,14,21,0,0,0,0,0,0,2,2,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,17,313,83,230,74,208,8,21,0,0,0,0,0,0,1,1,83,228,74,206,8,21,0,0,0,0,0,0,1,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,18,299,91,208,81,180,10,28,0,0,0,0,0,0,0,0,90,207,80,179,10,28,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,99,15009,7289,7720,6436,6666,780,979,8,12,3,2,0,0,62,61,7179,7643,6339,6595,771,974,8,11,3,2,0,0,58,61,110,77,97,71,9,5,0,1,0,0,0,0,4,0 -050,01,075,Alabama,Lamar County,8,0,191,103,88,86,76,14,11,0,0,0,0,0,0,3,1,101,86,85,74,13,11,0,0,0,0,0,0,3,1,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,1,661,339,322,298,259,35,52,1,0,0,0,0,1,5,10,328,318,289,256,33,52,1,0,0,0,0,0,5,10,11,4,9,3,2,0,0,0,0,0,0,1,0,0 -050,01,075,Alabama,Lamar County,8,2,897,456,441,394,393,49,43,0,0,0,0,0,0,13,5,447,436,385,389,49,42,0,0,0,0,0,0,13,5,9,5,9,4,0,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,3,936,452,484,372,380,71,97,0,0,0,0,0,0,9,7,440,478,360,374,71,97,0,0,0,0,0,0,9,7,12,6,12,6,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,4,993,540,453,431,368,99,76,1,1,0,0,0,0,9,8,529,444,421,360,98,75,1,1,0,0,0,0,9,8,11,9,10,8,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,5,819,417,402,357,342,56,58,0,2,0,0,0,0,4,0,402,395,346,336,54,57,0,2,0,0,0,0,2,0,15,7,11,6,2,1,0,0,0,0,0,0,2,0 -050,01,075,Alabama,Lamar County,8,6,730,357,373,318,318,37,50,0,1,0,0,0,0,2,4,350,369,312,314,36,50,0,1,0,0,0,0,2,4,7,4,6,4,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,7,863,425,438,376,390,46,46,0,1,0,0,0,0,3,1,419,437,371,389,46,46,0,1,0,0,0,0,2,1,6,1,5,1,0,0,0,0,0,0,0,0,1,0 -050,01,075,Alabama,Lamar County,8,8,939,465,474,421,398,40,73,0,0,2,0,0,0,2,3,459,470,415,394,40,73,0,0,2,0,0,0,2,3,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,9,1032,522,510,461,431,58,75,0,0,0,0,0,0,3,4,513,505,453,428,57,73,0,0,0,0,0,0,3,4,9,5,8,3,1,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,10,1104,557,547,488,471,63,70,1,0,0,0,1,0,4,6,551,542,482,466,63,70,1,0,0,0,1,0,4,6,6,5,6,5,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,11,1046,507,539,458,447,44,85,1,3,0,0,0,0,4,4,503,535,454,443,44,85,1,3,0,0,0,0,4,4,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,12,1080,536,544,494,487,40,50,1,2,0,2,0,0,1,3,533,540,491,483,40,50,1,2,0,2,0,0,1,3,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,13,902,448,454,408,419,38,32,1,1,1,0,0,0,0,2,446,453,406,419,38,31,1,1,1,0,0,0,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,14,794,381,413,348,373,28,39,1,0,0,0,0,0,4,1,378,412,346,372,27,39,1,0,0,0,0,0,4,1,3,1,2,1,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,15,710,326,384,300,350,21,31,1,0,0,0,0,0,4,3,322,380,296,346,21,31,1,0,0,0,0,0,4,3,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,16,478,188,290,176,264,10,24,0,0,0,0,0,0,2,2,187,290,175,264,10,24,0,0,0,0,0,0,2,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,17,331,105,226,89,206,15,19,0,0,0,0,0,0,1,1,105,224,89,204,15,19,0,0,0,0,0,0,1,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,18,310,92,218,80,186,12,31,0,0,0,0,0,0,0,1,91,217,79,185,12,31,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,99,14816,7216,7600,6355,6558,776,962,8,11,3,2,1,1,73,66,7104,7531,6255,6496,767,956,8,11,3,2,1,0,70,66,112,69,100,62,9,6,0,0,0,0,0,1,3,0 -050,01,075,Alabama,Lamar County,9,0,183,97,86,83,73,11,12,0,0,0,0,0,0,3,1,95,84,82,71,10,12,0,0,0,0,0,0,3,1,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,1,670,335,335,294,271,33,49,2,0,0,0,0,1,6,14,324,331,285,268,31,49,2,0,0,0,0,0,6,14,11,4,9,3,2,0,0,0,0,0,0,1,0,0 -050,01,075,Alabama,Lamar County,9,2,936,466,470,411,417,41,47,0,0,0,0,0,0,14,6,457,458,402,406,41,46,0,0,0,0,0,0,14,6,9,12,9,11,0,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,3,958,478,480,391,378,78,95,0,0,0,0,0,0,9,7,469,474,382,372,78,95,0,0,0,0,0,0,9,7,9,6,9,6,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,4,954,508,446,397,359,101,78,1,1,0,0,0,0,9,8,497,439,387,353,100,77,1,1,0,0,0,0,9,8,11,7,10,6,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,5,784,406,378,337,322,65,53,0,3,0,0,0,0,4,0,391,373,327,318,62,52,0,3,0,0,0,0,2,0,15,5,10,4,3,1,0,0,0,0,0,0,2,0 -050,01,075,Alabama,Lamar County,9,6,742,375,367,335,306,38,55,0,1,0,0,0,0,2,5,368,363,329,302,37,55,0,1,0,0,0,0,2,5,7,4,6,4,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,7,836,398,438,353,388,42,48,0,1,0,0,0,0,3,1,390,437,346,387,42,48,0,1,0,0,0,0,2,1,8,1,7,1,0,0,0,0,0,0,0,0,1,0 -050,01,075,Alabama,Lamar County,9,8,935,454,481,409,414,40,63,0,0,2,0,0,0,3,4,447,477,402,410,40,63,0,0,2,0,0,0,3,4,7,4,7,4,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,9,1019,513,506,458,426,52,76,0,0,0,0,0,0,3,4,505,501,451,423,51,74,0,0,0,0,0,0,3,4,8,5,7,3,1,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,10,1093,539,554,470,477,63,71,2,0,0,0,0,0,4,6,531,549,463,472,62,71,2,0,0,0,0,0,4,6,8,5,7,5,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,11,1062,538,524,477,444,56,72,1,3,0,0,0,0,4,5,535,521,474,441,56,72,1,3,0,0,0,0,4,5,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,12,1089,520,569,471,495,47,66,1,2,0,2,0,0,1,4,517,565,468,491,47,66,1,2,0,2,0,0,1,4,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,13,953,488,465,450,424,36,38,1,1,1,0,0,0,0,2,486,464,448,424,36,37,1,1,1,0,0,0,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,14,801,381,420,342,378,35,40,0,1,0,0,0,0,4,1,378,419,340,377,34,40,0,1,0,0,0,0,4,1,3,1,2,1,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,15,733,329,404,308,356,16,44,1,0,0,0,0,0,4,4,325,400,304,352,16,44,1,0,0,0,0,0,4,4,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,16,489,205,284,187,262,17,20,0,0,0,0,0,0,1,2,204,284,186,262,17,20,0,0,0,0,0,0,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,17,356,121,235,108,217,12,16,0,1,0,0,0,0,1,1,121,233,108,215,12,16,0,1,0,0,0,0,1,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,18,308,82,226,71,193,11,32,0,0,0,0,0,0,0,1,81,225,70,192,11,32,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,99,14901,7233,7668,6352,6600,794,975,9,14,3,2,0,1,75,76,7121,7597,6254,6536,783,969,9,14,3,2,0,0,72,76,112,71,98,64,11,6,0,0,0,0,0,1,3,0 -050,01,075,Alabama,Lamar County,10,0,192,103,89,88,75,12,12,0,0,0,0,0,0,3,2,101,87,87,73,11,12,0,0,0,0,0,0,3,2,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,1,730,360,370,315,304,36,48,2,0,0,0,0,1,7,17,350,366,307,301,34,48,2,0,0,0,0,0,7,17,10,4,8,3,2,0,0,0,0,0,0,1,0,0 -050,01,075,Alabama,Lamar County,10,2,913,478,435,411,384,52,45,0,0,0,0,0,0,15,6,471,426,404,377,52,43,0,0,0,0,0,0,15,6,7,9,7,7,0,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,3,959,492,467,402,360,81,98,0,0,0,0,0,0,9,9,481,461,391,354,81,98,0,0,0,0,0,0,9,9,11,6,11,6,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,4,913,456,457,357,369,89,78,1,1,0,0,0,0,9,9,446,450,348,363,88,77,1,1,0,0,0,0,9,9,10,7,9,6,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,5,776,398,378,336,320,58,55,0,3,0,0,0,0,4,0,387,370,329,314,56,53,0,3,0,0,0,0,2,0,11,8,7,6,2,2,0,0,0,0,0,0,2,0 -050,01,075,Alabama,Lamar County,10,6,720,366,354,332,295,32,53,0,1,0,0,0,0,2,5,360,350,327,291,31,53,0,1,0,0,0,0,2,5,6,4,5,4,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,7,772,368,404,336,361,29,42,0,0,0,0,0,0,3,1,360,403,329,360,29,42,0,0,0,0,0,0,2,1,8,1,7,1,0,0,0,0,0,0,0,0,1,0 -050,01,075,Alabama,Lamar County,10,8,935,435,500,385,428,45,68,0,0,2,0,0,0,3,4,428,492,378,420,45,68,0,0,2,0,0,0,3,4,7,8,7,8,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,9,971,501,470,443,409,54,58,0,0,0,0,0,0,4,3,494,464,437,405,53,56,0,0,0,0,0,0,4,3,7,6,6,4,1,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,10,1111,558,553,487,463,64,84,1,0,0,0,1,0,5,6,551,549,481,459,63,84,1,0,0,0,1,0,5,6,7,4,6,4,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,11,1073,514,559,448,490,59,61,1,3,0,0,0,0,6,5,510,556,445,487,59,61,1,3,0,0,0,0,5,5,4,3,3,3,0,0,0,0,0,0,0,0,1,0 -050,01,075,Alabama,Lamar County,10,12,1068,546,522,500,449,43,63,1,3,0,3,0,0,2,4,544,519,498,446,43,63,1,3,0,3,0,0,2,4,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,13,952,470,482,435,440,33,39,1,1,1,0,0,0,0,2,468,481,433,440,33,38,1,1,1,0,0,0,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,14,792,367,425,324,386,38,37,0,1,0,0,0,0,5,1,364,424,322,385,37,37,0,1,0,0,0,0,5,1,3,1,2,1,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,15,771,357,414,329,361,22,49,1,0,0,0,0,0,5,4,353,411,325,358,22,49,1,0,0,0,0,0,5,4,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,16,491,201,290,189,267,11,22,0,0,0,0,0,0,1,1,200,290,188,267,11,22,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,17,353,109,244,100,226,7,16,0,1,0,0,0,0,2,1,109,242,100,224,7,16,0,1,0,0,0,0,2,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,18,307,82,225,76,187,6,37,0,0,0,0,0,0,0,1,81,224,75,186,6,37,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,99,14799,7161,7638,6293,6574,771,965,8,14,3,3,1,1,85,81,7058,7565,6204,6510,761,957,8,14,3,3,1,0,81,81,103,73,89,64,10,8,0,0,0,0,0,1,4,0 -050,01,075,Alabama,Lamar County,11,0,165,96,69,77,60,16,7,0,0,0,0,0,0,3,2,93,68,76,59,14,7,0,0,0,0,0,0,3,2,3,1,1,1,2,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,1,735,362,373,322,306,30,47,2,0,0,0,0,1,8,19,349,370,311,304,28,47,2,0,0,0,0,0,8,19,13,3,11,2,2,0,0,0,0,0,0,1,0,0 -050,01,075,Alabama,Lamar County,11,2,937,486,451,418,397,51,48,0,0,0,0,0,0,17,6,478,438,410,386,51,46,0,0,0,0,0,0,17,6,8,13,8,11,0,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,3,938,489,449,412,354,67,86,0,0,0,0,0,0,10,9,471,443,394,348,67,86,0,0,0,0,0,0,10,9,18,6,18,6,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,4,912,453,459,359,373,84,76,1,1,0,0,0,0,9,9,443,449,350,364,83,75,1,1,0,0,0,0,9,9,10,10,9,9,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,5,733,386,347,328,297,54,47,0,3,0,0,0,0,4,0,371,340,319,292,50,45,0,3,0,0,0,0,2,0,15,7,9,5,4,2,0,0,0,0,0,0,2,0 -050,01,075,Alabama,Lamar County,11,6,686,335,351,294,289,39,57,0,1,0,0,0,0,2,4,330,346,290,284,38,57,0,1,0,0,0,0,2,4,5,5,4,5,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,7,773,380,393,346,357,31,35,0,0,0,0,0,0,3,1,372,392,339,356,31,35,0,0,0,0,0,0,2,1,8,1,7,1,0,0,0,0,0,0,0,0,1,0 -050,01,075,Alabama,Lamar County,11,8,908,429,479,385,412,39,63,0,0,2,0,0,0,3,4,422,471,378,404,39,63,0,0,2,0,0,0,3,4,7,8,7,8,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,9,931,487,444,428,385,55,56,0,0,0,0,0,0,4,3,480,438,422,381,54,54,0,0,0,0,0,0,4,3,7,6,6,4,1,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,10,1078,550,528,480,444,62,78,2,0,0,0,1,0,5,6,543,525,474,441,61,78,2,0,0,0,1,0,5,6,7,3,6,3,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,11,1128,558,570,480,496,72,65,1,4,0,0,0,0,5,5,555,567,477,493,72,65,1,4,0,0,0,0,5,5,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,12,1040,521,519,473,453,45,56,1,3,0,3,0,0,2,4,519,516,471,450,45,56,1,3,0,3,0,0,2,4,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,13,1000,500,500,457,452,41,45,1,1,1,0,0,0,0,2,499,499,456,452,41,44,1,1,1,0,0,0,0,2,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,14,811,386,425,340,389,41,34,0,1,0,0,0,0,5,1,383,424,338,388,40,34,0,1,0,0,0,0,5,1,3,1,2,1,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,15,767,351,416,328,367,17,45,1,0,0,0,0,0,5,4,347,413,324,364,17,45,1,0,0,0,0,0,5,4,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,16,519,219,300,203,275,14,24,0,0,0,0,0,0,2,1,218,300,202,275,14,24,0,0,0,0,0,0,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,17,349,116,233,104,212,10,19,0,1,0,0,0,0,2,1,116,231,104,210,10,19,0,1,0,0,0,0,2,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,18,279,67,212,63,191,4,20,0,0,0,0,0,0,0,1,66,211,62,190,4,20,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,99,14689,7171,7518,6297,6509,772,908,9,15,3,3,1,1,89,82,7055,7441,6197,6441,759,900,9,15,3,3,1,0,86,82,116,77,100,68,13,8,0,0,0,0,0,1,3,0 -050,01,075,Alabama,Lamar County,12,0,148,85,63,67,52,15,9,0,0,0,0,0,0,3,2,82,62,66,51,13,9,0,0,0,0,0,0,3,2,3,1,1,1,2,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,1,713,357,356,316,295,31,44,2,0,0,0,0,1,8,16,347,352,308,292,29,44,2,0,0,0,0,0,8,16,10,4,8,3,2,0,0,0,0,0,0,1,0,0 -050,01,075,Alabama,Lamar County,12,2,892,453,439,387,382,49,51,0,0,0,0,0,0,17,6,446,430,380,375,49,49,0,0,0,0,0,0,17,6,7,9,7,7,0,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,3,933,493,440,415,358,68,73,0,0,0,0,0,0,10,9,480,434,402,352,68,73,0,0,0,0,0,0,10,9,13,6,13,6,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,4,865,416,449,334,364,72,75,1,1,0,0,0,0,9,9,407,441,326,357,71,74,1,1,0,0,0,0,9,9,9,8,8,7,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,5,731,389,342,320,293,65,46,0,3,0,0,0,0,4,0,375,334,312,287,61,44,0,3,0,0,0,0,2,0,14,8,8,6,4,2,0,0,0,0,0,0,2,0 -050,01,075,Alabama,Lamar County,12,6,683,335,348,296,294,37,49,0,1,0,0,0,0,2,4,330,343,292,289,36,49,0,1,0,0,0,0,2,4,5,5,4,5,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,7,783,371,412,333,363,35,48,0,0,0,0,0,0,3,1,364,411,327,362,35,48,0,0,0,0,0,0,2,1,7,1,6,1,0,0,0,0,0,0,0,0,1,0 -050,01,075,Alabama,Lamar County,12,8,901,427,474,383,409,39,61,0,0,2,0,0,0,3,4,420,466,376,401,39,61,0,0,2,0,0,0,3,4,7,8,7,8,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,9,913,458,455,403,383,51,69,0,0,0,0,0,0,4,3,451,449,397,379,50,67,0,0,0,0,0,0,4,3,7,6,6,4,1,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,10,1066,554,512,489,437,57,69,2,0,0,0,1,0,5,6,545,509,481,434,56,69,2,0,0,0,1,0,5,6,9,3,8,3,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,11,1144,554,590,479,500,68,81,1,4,0,0,0,0,6,5,550,587,476,497,68,81,1,4,0,0,0,0,5,5,4,3,3,3,0,0,0,0,0,0,0,0,1,0 -050,01,075,Alabama,Lamar County,12,12,1046,538,508,486,446,49,52,1,3,0,3,0,0,2,4,536,505,484,443,49,52,1,3,0,3,0,0,2,4,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,13,1014,498,516,453,468,43,45,1,1,1,0,0,0,0,2,497,515,452,468,43,44,1,1,1,0,0,0,0,2,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,14,799,388,411,356,382,27,26,0,1,0,0,0,0,5,2,385,410,354,381,26,26,0,1,0,0,0,0,5,2,3,1,2,1,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,15,748,341,407,316,363,19,40,1,0,0,0,0,0,5,4,337,404,312,360,19,40,1,0,0,0,0,0,5,4,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,16,534,233,301,218,280,13,20,0,0,0,0,0,0,2,1,232,301,217,280,13,20,0,0,0,0,0,0,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,17,380,137,243,124,220,11,21,0,1,0,0,0,0,2,1,137,241,124,218,11,21,0,1,0,0,0,0,2,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,18,271,70,201,59,179,11,21,0,0,0,0,0,0,0,1,69,200,58,178,11,21,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,99,14564,7097,7467,6234,6468,760,900,9,15,3,3,1,1,90,80,6990,7394,6144,6404,747,892,9,15,3,3,1,0,86,80,107,73,90,64,13,8,0,0,0,0,0,1,4,0 -050,01,075,Alabama,Lamar County,13,0,147,84,63,65,51,16,9,0,0,0,0,0,0,3,3,82,63,65,51,14,9,0,0,0,0,0,0,3,3,2,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,1,719,362,357,314,293,33,44,4,3,0,0,0,0,11,17,349,353,306,289,29,44,3,3,0,0,0,0,11,17,13,4,8,4,4,0,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,2,884,445,439,384,381,45,52,1,0,0,1,0,1,15,4,439,429,378,375,45,49,1,0,0,1,0,0,15,4,6,10,6,6,0,3,0,0,0,0,0,1,0,0 -050,01,075,Alabama,Lamar County,13,3,927,493,434,411,355,68,72,2,3,1,0,0,0,11,4,480,428,400,351,66,71,2,2,1,0,0,0,11,4,13,6,11,4,2,1,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,4,853,413,440,331,358,71,72,3,3,2,0,0,0,6,7,403,435,323,353,69,72,3,3,2,0,0,0,6,7,10,5,8,5,2,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,5,740,393,347,321,291,64,48,1,5,0,1,1,0,6,2,379,340,313,287,60,45,1,5,0,1,0,0,5,2,14,7,8,4,4,3,0,0,0,0,1,0,1,0 -050,01,075,Alabama,Lamar County,13,6,682,338,344,294,292,38,47,2,1,1,2,2,0,1,2,330,340,291,288,35,47,2,1,1,2,0,0,1,2,8,4,3,4,3,0,0,0,0,0,2,0,0,0 -050,01,075,Alabama,Lamar County,13,7,791,377,414,333,363,37,48,3,1,2,1,0,0,2,1,369,412,326,361,37,48,2,1,2,1,0,0,2,1,8,2,7,2,0,0,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,8,886,423,463,376,402,40,58,4,1,0,0,0,0,3,2,415,457,369,396,40,58,3,1,0,0,0,0,3,2,8,6,7,6,0,0,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,9,903,451,452,397,379,48,67,1,2,0,1,0,0,5,3,447,447,394,376,47,65,1,2,0,1,0,0,5,3,4,5,3,3,1,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,10,1054,547,507,483,432,55,69,3,2,0,2,0,0,6,2,539,504,476,429,54,69,3,2,0,2,0,0,6,2,8,3,7,3,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,11,1136,553,583,478,495,67,80,3,4,0,0,0,0,5,4,549,581,475,493,67,80,3,4,0,0,0,0,4,4,4,2,3,2,0,0,0,0,0,0,0,0,1,0 -050,01,075,Alabama,Lamar County,13,12,1049,540,509,487,446,48,53,3,3,0,3,0,0,2,4,538,506,485,443,48,53,3,3,0,3,0,0,2,4,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,13,1016,502,514,455,469,43,43,2,0,1,0,0,0,1,2,501,514,454,469,43,43,2,0,1,0,0,0,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,14,797,385,412,355,383,25,26,2,0,0,1,0,0,3,2,383,410,353,381,25,26,2,0,0,1,0,0,3,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,15,749,340,409,317,364,19,41,1,1,0,1,0,0,3,2,338,405,315,360,19,41,1,1,0,1,0,0,3,2,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,16,535,233,302,218,279,14,20,1,1,0,0,0,0,0,2,232,302,217,279,14,20,1,1,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,17,369,133,236,121,214,11,22,0,0,0,0,0,0,1,0,133,236,121,214,11,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,18,271,71,200,60,179,11,21,0,0,0,0,0,0,0,0,70,199,59,178,11,21,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,99,14508,7083,7425,6200,6426,753,892,36,30,7,13,3,1,84,63,6976,7361,6120,6373,734,883,33,29,7,13,0,0,82,63,107,64,80,53,19,9,3,1,0,0,3,1,2,0 -050,01,077,Alabama,Lauderdale County,1,0,1029,518,511,441,418,61,81,1,1,2,3,0,0,13,8,507,501,432,409,60,80,1,1,2,3,0,0,12,8,11,10,9,9,1,1,0,0,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,1,1,4186,2142,2044,1828,1769,262,228,6,4,11,10,0,0,35,33,2090,2005,1782,1733,259,226,6,4,11,10,0,0,32,32,52,39,46,36,3,2,0,0,0,0,0,0,3,1 -050,01,077,Alabama,Lauderdale County,1,2,5615,2809,2806,2392,2384,368,379,9,12,10,6,0,0,30,25,2768,2763,2351,2345,368,376,9,12,10,6,0,0,30,24,41,43,41,39,0,3,0,0,0,0,0,0,0,1 -050,01,077,Alabama,Lauderdale County,1,3,5910,3043,2867,2620,2444,374,379,4,9,18,10,0,1,27,24,3005,2835,2585,2416,372,377,4,9,18,9,0,1,26,23,38,32,35,28,2,2,0,0,0,1,0,0,1,1 -050,01,077,Alabama,Lauderdale County,1,4,6215,3143,3072,2701,2619,399,410,5,5,15,13,1,2,22,23,3105,3042,2663,2591,399,409,5,5,15,13,1,1,22,23,38,30,38,28,0,1,0,0,0,0,0,1,0,0 -050,01,077,Alabama,Lauderdale County,1,5,6211,3031,3180,2640,2727,352,402,6,14,12,13,2,0,19,24,2966,3135,2583,2685,348,401,5,14,11,13,1,0,18,22,65,45,57,42,4,1,1,0,1,0,1,0,1,2 -050,01,077,Alabama,Lauderdale County,1,6,5642,2748,2894,2440,2543,272,313,8,11,13,18,0,0,15,9,2688,2855,2384,2505,272,313,6,11,13,17,0,0,13,9,60,39,56,38,0,0,2,0,0,1,0,0,2,0 -050,01,077,Alabama,Lauderdale County,1,7,5778,2888,2890,2558,2521,293,331,7,6,13,16,1,2,16,14,2851,2858,2522,2495,293,328,7,6,13,15,0,2,16,12,37,32,36,26,0,3,0,0,0,1,1,0,0,2 -050,01,077,Alabama,Lauderdale County,1,8,6459,3103,3356,2810,2920,261,384,7,12,14,19,0,0,11,21,3071,3323,2778,2890,261,382,7,12,14,19,0,0,11,20,32,33,32,30,0,2,0,0,0,0,0,0,0,1 -050,01,077,Alabama,Lauderdale County,1,9,6640,3178,3462,2890,3064,257,347,6,15,13,16,0,0,12,20,3154,3440,2868,3044,256,346,6,14,13,16,0,0,11,20,24,22,22,20,1,1,0,1,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,1,10,6272,3080,3192,2765,2856,280,296,7,7,8,8,2,1,18,24,3054,3174,2744,2839,278,296,5,7,8,8,1,1,18,23,26,18,21,17,2,0,2,0,0,0,1,0,0,1 -050,01,077,Alabama,Lauderdale County,1,11,5748,2734,3014,2524,2725,179,247,11,8,5,17,0,0,15,17,2720,2999,2511,2712,178,245,11,8,5,17,0,0,15,17,14,15,13,13,1,2,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,1,12,4821,2365,2456,2189,2245,151,180,7,9,4,7,1,0,13,15,2352,2445,2176,2235,151,179,7,9,4,7,1,0,13,15,13,11,13,10,0,1,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,1,13,4187,1948,2239,1808,2051,115,171,6,5,6,6,2,0,11,6,1932,2229,1795,2042,112,170,6,5,6,6,2,0,11,6,16,10,13,9,3,1,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,1,14,3779,1722,2057,1608,1894,95,146,5,4,3,4,2,0,9,9,1709,2052,1598,1889,93,146,5,4,3,4,2,0,8,9,13,5,10,5,2,0,0,0,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,1,15,3375,1478,1897,1405,1735,64,150,2,2,3,0,0,0,4,10,1472,1888,1400,1726,63,150,2,2,3,0,0,0,4,10,6,9,5,9,1,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,1,16,2761,1105,1656,1026,1539,72,112,1,2,0,1,0,0,6,2,1102,1650,1023,1533,72,112,1,2,0,1,0,0,6,2,3,6,3,6,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,1,17,1855,619,1236,573,1127,46,100,0,1,0,0,0,0,0,8,617,1235,572,1126,45,100,0,1,0,0,0,0,0,8,2,1,1,1,1,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,1,18,1469,414,1055,381,958,29,94,1,0,0,0,0,0,3,3,413,1053,381,956,28,94,1,0,0,0,0,0,3,3,1,2,0,2,1,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,1,99,87952,42068,45884,37599,40539,3930,4750,99,127,150,167,11,6,279,295,41576,45482,37148,40171,3908,4730,94,126,149,164,8,5,269,286,492,402,451,368,22,20,5,1,1,3,3,1,10,9 -050,01,077,Alabama,Lauderdale County,2,0,1036,521,515,443,421,61,82,1,1,2,3,0,0,14,8,510,505,434,412,60,81,1,1,2,3,0,0,13,8,11,10,9,9,1,1,0,0,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,2,1,4174,2131,2043,1820,1763,260,228,6,4,11,10,0,0,34,38,2079,2004,1774,1727,257,226,6,4,11,10,0,0,31,37,52,39,46,36,3,2,0,0,0,0,0,0,3,1 -050,01,077,Alabama,Lauderdale County,2,2,5583,2795,2788,2381,2373,362,375,9,12,10,6,0,0,33,22,2754,2745,2340,2334,362,372,9,12,10,6,0,0,33,21,41,43,41,39,0,3,0,0,0,0,0,0,0,1 -050,01,077,Alabama,Lauderdale County,2,3,5921,3046,2875,2624,2449,374,382,4,9,18,10,0,1,26,24,3008,2843,2589,2421,372,380,4,9,18,9,0,1,25,23,38,32,35,28,2,2,0,0,0,1,0,0,1,1 -050,01,077,Alabama,Lauderdale County,2,4,6240,3155,3085,2713,2632,399,412,5,5,15,13,1,2,22,21,3117,3055,2675,2604,399,411,5,5,15,13,1,1,22,21,38,30,38,28,0,1,0,0,0,0,0,1,0,0 -050,01,077,Alabama,Lauderdale County,2,5,6281,3064,3217,2672,2762,355,406,6,14,12,13,2,0,17,22,2999,3172,2615,2720,351,405,5,14,11,13,1,0,16,20,65,45,57,42,4,1,1,0,1,0,1,0,1,2 -050,01,077,Alabama,Lauderdale County,2,6,5580,2718,2862,2410,2513,271,311,8,11,14,18,0,0,15,9,2658,2823,2354,2475,271,311,6,11,14,17,0,0,13,9,60,39,56,38,0,0,2,0,0,1,0,0,2,0 -050,01,077,Alabama,Lauderdale County,2,7,5754,2875,2879,2543,2509,294,330,7,6,13,16,1,2,17,16,2838,2847,2507,2483,294,327,7,6,13,15,0,2,17,14,37,32,36,26,0,3,0,0,0,1,1,0,0,2 -050,01,077,Alabama,Lauderdale County,2,8,6423,3089,3334,2794,2899,262,384,7,12,14,19,0,0,12,20,3057,3301,2762,2869,262,382,7,12,14,19,0,0,12,19,32,33,32,30,0,2,0,0,0,0,0,0,0,1 -050,01,077,Alabama,Lauderdale County,2,9,6649,3182,3467,2892,3067,260,350,6,15,13,16,0,0,11,19,3158,3445,2870,3047,259,349,6,14,13,16,0,0,10,19,24,22,22,20,1,1,0,1,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,2,10,6295,3089,3206,2773,2869,283,298,7,7,8,8,2,1,16,23,3063,3188,2752,2852,281,298,5,7,8,8,1,1,16,22,26,18,21,17,2,0,2,0,0,0,1,0,0,1 -050,01,077,Alabama,Lauderdale County,2,11,5795,2755,3040,2542,2749,183,250,11,8,5,17,0,0,14,16,2741,3025,2529,2736,182,248,11,8,5,17,0,0,14,16,14,15,13,13,1,2,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,2,12,4842,2377,2465,2201,2255,152,180,7,9,4,7,1,0,12,14,2364,2454,2188,2245,152,179,7,9,4,7,1,0,12,14,13,11,13,10,0,1,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,2,13,4195,1952,2243,1814,2054,115,171,6,5,6,6,2,0,9,7,1936,2233,1801,2045,112,170,6,5,6,6,2,0,9,7,16,10,13,9,3,1,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,2,14,3779,1725,2054,1609,1890,96,147,5,4,3,4,2,0,10,9,1712,2049,1599,1885,94,147,5,4,3,4,2,0,9,9,13,5,10,5,2,0,0,0,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,2,15,3375,1480,1895,1407,1733,64,150,2,2,3,0,0,0,4,10,1474,1886,1402,1724,63,150,2,2,3,0,0,0,4,10,6,9,5,9,1,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,2,16,2771,1110,1661,1031,1543,72,113,1,2,0,1,0,0,6,2,1107,1655,1028,1537,72,113,1,2,0,1,0,0,6,2,3,6,3,6,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,2,17,1872,627,1245,580,1135,47,101,0,1,0,0,0,0,0,8,625,1244,579,1134,46,101,0,1,0,0,0,0,0,8,2,1,1,1,1,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,2,18,1474,418,1056,384,959,29,94,1,0,0,0,0,0,4,3,417,1054,384,957,28,94,1,0,0,0,0,0,4,3,1,2,0,2,1,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,2,99,88039,42109,45930,37633,40575,3939,4764,99,127,151,167,11,6,276,291,41617,45528,37182,40207,3917,4744,94,126,150,164,8,5,266,282,492,402,451,368,22,20,5,1,1,3,3,1,10,9 -050,01,077,Alabama,Lauderdale County,3,0,1026,512,514,432,443,60,55,1,1,1,3,0,0,18,12,501,498,423,428,59,54,1,1,1,3,0,0,17,12,11,16,9,15,1,1,0,0,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,3,1,4141,2094,2047,1782,1733,252,259,6,4,15,9,0,0,39,42,2037,2005,1731,1695,249,256,6,4,15,9,0,0,36,41,57,42,51,38,3,3,0,0,0,0,0,0,3,1 -050,01,077,Alabama,Lauderdale County,3,2,5439,2737,2702,2345,2307,336,343,8,12,9,11,0,0,39,29,2697,2656,2306,2264,335,341,8,12,9,11,0,0,39,28,40,46,39,43,1,2,0,0,0,0,0,0,0,1 -050,01,077,Alabama,Lauderdale County,3,3,5866,2987,2879,2566,2461,370,372,6,9,17,10,0,1,28,26,2941,2843,2523,2429,368,370,6,9,17,9,0,1,27,25,46,36,43,32,2,2,0,0,0,1,0,0,1,1 -050,01,077,Alabama,Lauderdale County,3,4,5973,3031,2942,2601,2514,387,381,5,6,17,15,1,1,20,25,2994,2907,2564,2481,387,380,5,6,17,15,1,0,20,25,37,35,37,33,0,1,0,0,0,0,0,1,0,0 -050,01,077,Alabama,Lauderdale County,3,5,6730,3268,3462,2845,2984,376,422,8,14,23,18,2,0,14,24,3197,3411,2782,2937,372,420,7,14,22,18,1,0,13,22,71,51,63,47,4,2,1,0,1,0,1,0,1,2 -050,01,077,Alabama,Lauderdale County,3,6,5292,2626,2666,2326,2318,257,308,7,12,18,17,0,0,18,11,2544,2625,2249,2278,257,308,5,12,18,16,0,0,15,11,82,41,77,40,0,0,2,0,0,1,0,0,3,0 -050,01,077,Alabama,Lauderdale County,3,7,5650,2797,2853,2474,2497,278,317,11,6,14,17,1,2,19,14,2754,2822,2432,2471,278,315,11,6,14,16,0,2,19,12,43,31,42,26,0,2,0,0,0,1,1,0,0,2 -050,01,077,Alabama,Lauderdale County,3,8,6237,3021,3216,2712,2797,273,366,10,17,13,17,0,0,13,19,2987,3185,2678,2769,273,364,10,17,13,17,0,0,13,18,34,31,34,28,0,2,0,0,0,0,0,0,0,1 -050,01,077,Alabama,Lauderdale County,3,9,6636,3170,3466,2877,3071,254,352,6,12,14,12,0,0,19,19,3142,3447,2852,3054,253,351,6,11,14,12,0,0,17,19,28,19,25,17,1,1,0,1,0,0,0,0,2,0 -050,01,077,Alabama,Lauderdale County,3,10,6388,3095,3293,2772,2927,288,319,6,13,7,9,2,1,20,24,3070,3265,2751,2900,286,319,5,13,7,9,1,1,20,23,25,28,21,27,2,0,1,0,0,0,1,0,0,1 -050,01,077,Alabama,Lauderdale County,3,11,6043,2909,3134,2664,2818,209,272,13,11,7,13,0,0,16,20,2890,3117,2647,2803,208,270,13,11,6,13,0,0,16,20,19,17,17,15,1,2,0,0,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,3,12,4820,2314,2506,2132,2294,156,178,6,9,4,10,0,0,16,15,2300,2493,2118,2282,156,177,6,9,4,10,0,0,16,15,14,13,14,12,0,1,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,3,13,4219,2002,2217,1862,2033,110,161,8,6,6,9,3,0,13,8,1989,2206,1852,2023,107,160,8,6,6,9,3,0,13,8,13,11,10,10,3,1,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,3,14,3809,1738,2071,1611,1891,106,160,4,4,4,7,2,0,11,9,1722,2061,1598,1881,104,160,4,4,4,7,2,0,10,9,16,10,13,10,2,0,0,0,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,3,15,3347,1479,1868,1401,1721,67,137,3,2,4,0,0,0,4,8,1471,1858,1393,1711,67,137,3,2,4,0,0,0,4,8,8,10,8,10,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,3,16,2751,1098,1653,1030,1538,62,109,1,2,0,1,0,0,5,3,1094,1645,1026,1530,62,109,1,2,0,1,0,0,5,3,4,8,4,8,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,3,17,1902,640,1262,595,1149,45,107,0,0,0,0,0,0,0,6,638,1261,594,1148,44,107,0,0,0,0,0,0,0,6,2,1,1,1,1,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,3,18,1522,435,1087,402,991,28,93,1,0,0,0,0,0,4,3,434,1085,402,989,27,93,1,0,0,0,0,0,4,3,1,2,0,2,1,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,3,99,87791,41953,45838,37429,40487,3914,4711,110,140,173,178,11,5,316,317,41402,45390,36921,40073,3892,4691,106,139,171,175,8,4,304,308,551,448,508,414,22,20,4,1,2,3,3,1,12,9 -050,01,077,Alabama,Lauderdale County,4,0,960,481,479,411,401,49,63,1,1,3,2,0,0,17,12,467,462,399,385,48,62,1,1,3,2,0,0,16,12,14,17,12,16,1,1,0,0,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,4,1,4059,2025,2034,1721,1717,248,257,4,4,10,10,0,0,42,46,1975,1983,1678,1672,244,253,4,4,10,10,0,0,39,44,50,51,43,45,4,4,0,0,0,0,0,0,3,2 -050,01,077,Alabama,Lauderdale County,4,2,5396,2766,2630,2357,2273,341,301,11,11,8,9,0,0,49,36,2724,2580,2317,2228,339,297,11,11,8,9,0,0,49,35,42,50,40,45,2,4,0,0,0,0,0,0,0,1 -050,01,077,Alabama,Lauderdale County,4,3,5827,2934,2893,2509,2461,365,389,6,8,22,10,0,0,32,25,2880,2854,2458,2425,363,387,6,8,22,10,0,0,31,24,54,39,51,36,2,2,0,0,0,0,0,0,1,1 -050,01,077,Alabama,Lauderdale County,4,4,5995,3078,2917,2644,2478,374,390,7,4,27,15,1,2,25,28,3037,2873,2603,2436,374,389,7,4,27,15,1,1,25,28,41,44,41,42,0,1,0,0,0,0,0,1,0,0 -050,01,077,Alabama,Lauderdale County,4,5,6710,3285,3425,2820,2935,400,422,11,13,31,28,2,0,21,27,3219,3361,2762,2876,396,419,10,13,30,28,1,0,20,25,66,64,58,59,4,3,1,0,1,0,1,0,1,2 -050,01,077,Alabama,Lauderdale County,4,6,5075,2525,2550,2227,2216,251,289,10,10,17,21,1,0,19,14,2441,2514,2150,2181,251,289,8,10,17,20,0,0,15,14,84,36,77,35,0,0,2,0,0,1,1,0,4,0 -050,01,077,Alabama,Lauderdale County,4,7,5587,2725,2862,2415,2500,265,319,11,6,13,15,1,2,20,20,2672,2824,2363,2471,265,316,11,5,13,13,0,2,20,17,53,38,52,29,0,3,0,1,0,2,1,0,0,3 -050,01,077,Alabama,Lauderdale County,4,8,6143,2974,3169,2664,2760,271,360,12,13,15,16,0,0,12,20,2946,3141,2637,2735,270,358,12,13,15,16,0,0,12,19,28,28,27,25,1,2,0,0,0,0,0,0,0,1 -050,01,077,Alabama,Lauderdale County,4,9,6498,3137,3361,2850,2953,250,357,5,13,16,19,0,0,16,19,3109,3338,2824,2932,249,356,5,12,16,19,0,0,15,19,28,23,26,21,1,1,0,1,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,4,10,6426,3103,3323,2799,2949,270,331,7,13,8,9,3,0,16,21,3076,3295,2777,2922,268,331,5,13,8,9,2,0,16,20,27,28,22,27,2,0,2,0,0,0,1,0,0,1 -050,01,077,Alabama,Lauderdale County,4,11,6024,2900,3124,2619,2795,241,284,15,13,7,14,0,1,18,17,2881,3110,2601,2783,240,282,15,13,7,14,0,1,18,17,19,14,18,12,1,2,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,4,12,5201,2453,2748,2266,2520,158,188,8,8,6,12,1,0,14,20,2438,2730,2251,2504,158,187,8,8,6,11,1,0,14,20,15,18,15,16,0,1,0,0,0,1,0,0,0,0 -050,01,077,Alabama,Lauderdale County,4,13,4377,2107,2270,1950,2084,131,163,8,6,6,8,2,0,10,9,2095,2259,1941,2074,128,162,8,6,6,8,2,0,10,9,12,11,9,10,3,1,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,4,14,3779,1731,2048,1616,1867,95,160,4,4,5,7,1,0,10,10,1716,2040,1605,1859,93,160,4,4,5,7,1,0,8,10,15,8,11,8,2,0,0,0,0,0,0,0,2,0 -050,01,077,Alabama,Lauderdale County,4,15,3363,1469,1894,1389,1746,68,137,2,2,3,2,0,0,7,7,1460,1884,1380,1736,68,137,2,2,3,2,0,0,7,7,9,10,9,10,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,4,16,2736,1128,1608,1062,1478,59,124,1,2,0,1,0,0,6,3,1124,1600,1058,1470,59,124,1,2,0,1,0,0,6,3,4,8,4,8,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,4,17,1949,660,1289,619,1191,40,90,0,1,0,0,0,0,1,7,658,1287,618,1189,39,90,0,1,0,0,0,0,1,7,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,4,18,1522,429,1093,402,990,23,100,1,0,0,0,0,0,3,3,428,1090,402,987,22,100,1,0,0,0,0,0,3,3,1,3,0,3,1,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,4,99,87627,41910,45717,37340,40314,3899,4724,124,132,197,198,12,5,338,344,41346,45225,36824,39865,3874,4699,119,130,196,194,8,4,325,333,564,492,516,449,25,25,5,2,1,4,4,1,13,11 -050,01,077,Alabama,Lauderdale County,5,0,971,478,493,405,408,50,71,1,1,3,1,0,1,19,11,460,473,390,391,49,70,1,1,3,1,0,0,17,10,18,20,15,17,1,1,0,0,0,0,0,1,2,1 -050,01,077,Alabama,Lauderdale County,5,1,3995,1990,2005,1666,1679,252,268,7,4,12,10,0,0,53,44,1945,1938,1628,1619,248,263,7,4,12,10,0,0,50,42,45,67,38,60,4,5,0,0,0,0,0,0,3,2 -050,01,077,Alabama,Lauderdale County,5,2,5334,2694,2640,2326,2293,295,287,11,10,15,10,0,0,47,40,2632,2590,2268,2248,292,283,10,10,15,10,0,0,47,39,62,50,58,45,3,4,1,0,0,0,0,0,0,1 -050,01,077,Alabama,Lauderdale County,5,3,5833,2921,2912,2482,2476,381,381,6,9,14,14,0,1,38,31,2863,2871,2430,2440,377,378,6,9,14,13,0,1,36,30,58,41,52,36,4,3,0,0,0,1,0,0,2,1 -050,01,077,Alabama,Lauderdale County,5,4,6128,3136,2992,2698,2531,380,405,7,9,24,18,1,2,26,27,3084,2941,2648,2484,379,403,7,9,23,17,1,1,26,27,52,51,50,47,1,2,0,0,1,1,0,1,0,0 -050,01,077,Alabama,Lauderdale County,5,5,6710,3313,3397,2821,2906,410,419,11,10,43,30,2,0,26,32,3250,3331,2770,2848,404,415,10,10,42,30,1,0,23,28,63,66,51,58,6,4,1,0,1,0,1,0,3,4 -050,01,077,Alabama,Lauderdale County,5,6,5007,2509,2498,2197,2170,265,273,10,13,16,24,1,1,20,17,2441,2451,2136,2126,265,273,8,13,16,22,0,0,16,17,68,47,61,44,0,0,2,0,0,2,1,1,4,0 -050,01,077,Alabama,Lauderdale County,5,7,5508,2700,2808,2391,2454,269,308,8,7,13,20,1,3,18,16,2636,2775,2329,2429,268,305,8,6,13,19,0,3,18,13,64,33,62,25,1,3,0,1,0,1,1,0,0,3 -050,01,077,Alabama,Lauderdale County,5,8,5920,2874,3046,2577,2656,259,338,9,12,17,18,0,0,12,22,2839,3013,2544,2625,258,337,9,12,16,18,0,0,12,21,35,33,33,31,1,1,0,0,1,0,0,0,0,1 -050,01,077,Alabama,Lauderdale County,5,9,6449,3119,3330,2817,2927,269,353,6,11,14,19,0,0,13,20,3088,3300,2788,2901,268,351,6,10,14,18,0,0,12,20,31,30,29,26,1,2,0,1,0,1,0,0,1,0 -050,01,077,Alabama,Lauderdale County,5,10,6537,3163,3374,2859,2998,265,331,7,14,12,10,2,1,18,20,3136,3358,2836,2983,263,331,6,14,12,10,1,1,18,19,27,16,23,15,2,0,1,0,0,0,1,0,0,1 -050,01,077,Alabama,Lauderdale County,5,11,6005,2889,3116,2593,2776,262,293,13,9,7,17,0,2,14,19,2868,3096,2574,2758,260,291,13,9,7,17,0,2,14,19,21,20,19,18,2,2,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,5,12,5433,2569,2864,2366,2607,164,216,14,8,8,11,1,0,16,22,2549,2838,2347,2583,164,215,14,8,7,10,1,0,16,22,20,26,19,24,0,1,0,0,1,1,0,0,0,0 -050,01,077,Alabama,Lauderdale County,5,13,4631,2241,2390,2081,2209,134,158,7,6,4,7,4,0,11,10,2227,2378,2069,2200,132,156,7,6,4,7,4,0,11,9,14,12,12,9,2,2,0,0,0,0,0,0,0,1 -050,01,077,Alabama,Lauderdale County,5,14,3943,1825,2118,1688,1933,112,161,6,3,5,10,3,0,11,11,1810,2111,1677,1926,110,161,6,3,5,10,3,0,9,11,15,7,11,7,2,0,0,0,0,0,0,0,2,0 -050,01,077,Alabama,Lauderdale County,5,15,3339,1456,1883,1375,1734,70,133,2,2,3,4,0,0,6,10,1447,1874,1367,1725,69,133,2,2,3,4,0,0,6,10,9,9,8,9,1,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,5,16,2755,1152,1603,1085,1473,59,124,1,2,0,1,1,0,6,3,1148,1593,1081,1463,59,124,1,2,0,1,1,0,6,3,4,10,4,10,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,5,17,2008,682,1326,641,1231,38,87,1,1,0,0,0,0,2,7,680,1324,640,1229,38,87,0,1,0,0,0,0,2,7,2,2,1,2,0,0,1,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,5,18,1597,456,1141,430,1037,22,100,1,0,0,0,0,0,3,4,454,1138,429,1034,21,100,1,0,0,0,0,0,3,4,2,3,1,3,1,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,5,99,88103,42167,45936,37498,40498,3956,4706,128,131,210,224,16,11,359,366,41557,45393,36951,40012,3924,4676,122,129,206,217,12,8,342,351,610,543,547,486,32,30,6,2,4,7,4,3,17,15 -050,01,077,Alabama,Lauderdale County,6,0,1030,488,542,412,464,49,59,1,1,2,1,0,2,24,15,469,516,396,441,48,58,1,1,2,1,0,1,22,14,19,26,16,23,1,1,0,0,0,0,0,1,2,1 -050,01,077,Alabama,Lauderdale County,6,1,3990,1958,2032,1617,1663,264,305,5,3,13,10,0,0,59,51,1905,1952,1574,1592,260,299,5,3,12,9,0,0,54,49,53,80,43,71,4,6,0,0,1,1,0,0,5,2 -050,01,077,Alabama,Lauderdale County,6,2,5355,2662,2693,2317,2349,263,273,12,10,10,13,0,0,60,48,2604,2639,2263,2303,260,266,11,10,10,13,0,0,60,47,58,54,54,46,3,7,1,0,0,0,0,0,0,1 -050,01,077,Alabama,Lauderdale County,6,3,5796,2932,2864,2490,2440,380,371,10,7,14,11,0,2,38,33,2875,2815,2439,2399,376,367,10,6,14,10,0,2,36,31,57,49,51,41,4,4,0,1,0,1,0,0,2,2 -050,01,077,Alabama,Lauderdale County,6,4,6229,3156,3073,2711,2599,379,413,7,6,26,18,1,1,32,36,3110,3018,2667,2548,378,411,7,6,25,17,1,0,32,36,46,55,44,51,1,2,0,0,1,1,0,1,0,0 -050,01,077,Alabama,Lauderdale County,6,5,6543,3270,3273,2755,2753,423,433,11,11,51,43,2,0,28,33,3199,3204,2697,2692,416,429,10,11,50,43,1,0,25,29,71,69,58,61,7,4,1,0,1,0,1,0,3,4 -050,01,077,Alabama,Lauderdale County,6,6,5217,2637,2580,2315,2251,267,279,12,10,21,25,1,1,21,14,2545,2531,2232,2206,266,278,10,10,21,23,0,0,16,14,92,49,83,45,1,1,2,0,0,2,1,1,5,0 -050,01,077,Alabama,Lauderdale County,6,7,5355,2571,2784,2284,2445,242,296,9,7,14,17,1,1,21,18,2514,2745,2229,2414,241,293,9,6,14,16,0,1,21,15,57,39,55,31,1,3,0,1,0,1,1,0,0,3 -050,01,077,Alabama,Lauderdale County,6,8,5800,2825,2975,2531,2570,256,350,10,12,13,22,1,0,14,21,2779,2935,2488,2535,255,347,10,12,11,21,1,0,14,20,46,40,43,35,1,3,0,0,2,1,0,0,0,1 -050,01,077,Alabama,Lauderdale County,6,9,6474,3147,3327,2840,2923,268,353,7,12,15,18,0,0,17,21,3116,3299,2811,2897,267,352,7,11,15,18,0,0,16,21,31,28,29,26,1,1,0,1,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,6,10,6590,3143,3447,2840,3059,258,337,10,14,14,10,2,1,19,26,3116,3424,2817,3038,256,337,9,14,14,9,1,1,19,25,27,23,23,21,2,0,1,0,0,1,1,0,0,1 -050,01,077,Alabama,Lauderdale County,6,11,6088,2953,3135,2648,2765,267,316,12,12,10,18,0,2,16,22,2924,3113,2622,2747,265,314,12,12,9,16,0,2,16,22,29,22,26,18,2,2,0,0,1,2,0,0,0,0 -050,01,077,Alabama,Lauderdale County,6,12,5646,2687,2959,2465,2691,182,218,14,8,8,19,0,0,18,23,2663,2940,2442,2674,182,217,14,8,7,18,0,0,18,23,24,19,23,17,0,1,0,0,1,1,0,0,0,0 -050,01,077,Alabama,Lauderdale County,6,13,4772,2300,2472,2129,2276,143,165,8,6,4,9,3,0,13,16,2287,2455,2119,2262,140,163,8,6,4,9,3,0,13,15,13,17,10,14,3,2,0,0,0,0,0,0,0,1 -050,01,077,Alabama,Lauderdale County,6,14,4030,1844,2186,1716,2000,101,162,4,3,6,10,2,0,15,11,1831,2175,1706,1989,100,162,4,3,6,10,2,0,13,11,13,11,10,11,1,0,0,0,0,0,0,0,2,0 -050,01,077,Alabama,Lauderdale County,6,15,3357,1494,1863,1408,1710,74,135,3,2,3,5,0,0,6,11,1482,1850,1397,1697,73,135,3,2,3,5,0,0,6,11,12,13,11,13,1,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,6,16,2823,1172,1651,1118,1507,46,137,2,2,0,1,1,0,5,4,1165,1641,1111,1497,46,137,2,2,0,1,1,0,5,4,7,10,7,10,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,6,17,2054,730,1324,687,1236,40,81,2,1,0,0,0,0,1,6,727,1322,685,1234,40,81,1,1,0,0,0,0,1,6,3,2,2,2,0,0,1,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,6,18,1583,439,1144,415,1052,21,88,1,0,0,0,0,0,2,4,437,1141,414,1049,20,88,1,0,0,0,0,0,2,4,2,3,1,3,1,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,6,99,88732,42408,46324,37698,40753,3923,4771,140,127,224,250,14,10,409,413,41748,45715,37109,40214,3889,4734,134,124,217,239,10,7,389,397,660,609,589,539,34,37,6,3,7,11,4,3,20,16 -050,01,077,Alabama,Lauderdale County,7,0,907,442,465,365,390,45,54,1,1,5,4,0,2,26,14,427,442,354,371,44,53,1,1,5,3,0,1,23,13,15,23,11,19,1,1,0,0,0,1,0,1,3,1 -050,01,077,Alabama,Lauderdale County,7,1,3990,1965,2025,1637,1670,250,273,4,3,12,14,0,1,62,64,1901,1932,1579,1591,247,266,4,3,12,12,0,0,59,60,64,93,58,79,3,7,0,0,0,2,0,1,3,4 -050,01,077,Alabama,Lauderdale County,7,2,5325,2656,2669,2290,2306,276,289,12,9,17,12,2,0,59,53,2594,2615,2238,2258,271,284,11,9,16,12,1,0,57,52,62,54,52,48,5,5,1,0,1,0,1,0,2,1 -050,01,077,Alabama,Lauderdale County,7,3,5742,2909,2833,2493,2404,351,372,11,11,13,10,0,2,41,34,2837,2775,2429,2355,347,368,11,9,12,9,0,1,38,33,72,58,64,49,4,4,0,2,1,1,0,1,3,1 -050,01,077,Alabama,Lauderdale County,7,4,6435,3243,3192,2754,2682,412,437,7,11,37,21,0,0,33,41,3183,3133,2701,2633,409,433,7,10,33,20,0,0,33,37,60,59,53,49,3,4,0,1,4,1,0,0,0,4 -050,01,077,Alabama,Lauderdale County,7,5,6545,3262,3283,2712,2733,437,440,15,13,63,50,2,1,33,46,3188,3196,2658,2657,430,434,14,13,59,50,1,1,26,41,74,87,54,76,7,6,1,0,4,0,1,0,7,5 -050,01,077,Alabama,Lauderdale County,7,6,5337,2645,2692,2315,2332,269,302,9,7,28,26,4,1,20,24,2566,2637,2249,2287,267,301,7,7,25,22,2,0,16,20,79,55,66,45,2,1,2,0,3,4,2,1,4,4 -050,01,077,Alabama,Lauderdale County,7,7,5115,2468,2647,2182,2323,233,281,13,6,15,18,3,3,22,16,2385,2599,2109,2286,231,277,13,5,14,17,0,1,18,13,83,48,73,37,2,4,0,1,1,1,3,2,4,3 -050,01,077,Alabama,Lauderdale County,7,8,5788,2863,2925,2550,2545,269,328,9,17,15,18,0,1,20,16,2787,2881,2482,2509,267,324,8,15,12,18,0,0,18,15,76,44,68,36,2,4,1,2,3,0,0,1,2,1 -050,01,077,Alabama,Lauderdale County,7,9,6449,3110,3339,2802,2919,271,374,8,10,13,15,0,2,16,19,3084,3308,2779,2889,270,373,8,10,13,15,0,2,14,19,26,31,23,30,1,1,0,0,0,0,0,0,2,0 -050,01,077,Alabama,Lauderdale County,7,10,6645,3189,3456,2880,3057,257,351,12,14,13,13,1,0,26,21,3159,3429,2855,3030,256,351,11,14,13,13,0,0,24,21,30,27,25,27,1,0,1,0,0,0,1,0,2,0 -050,01,077,Alabama,Lauderdale County,7,11,6254,3031,3223,2708,2860,283,309,14,10,7,14,1,3,18,27,3004,3206,2684,2846,281,307,14,10,7,13,0,3,18,27,27,17,24,14,2,2,0,0,0,1,1,0,0,0 -050,01,077,Alabama,Lauderdale County,7,12,5881,2778,3103,2552,2822,185,237,13,7,8,16,1,0,19,21,2755,3084,2530,2803,185,237,13,7,7,16,1,0,19,21,23,19,22,19,0,0,0,0,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,7,13,4811,2330,2481,2145,2273,161,178,7,7,4,11,1,0,12,12,2319,2467,2135,2262,160,176,7,7,4,10,1,0,12,12,11,14,10,11,1,2,0,0,0,1,0,0,0,0 -050,01,077,Alabama,Lauderdale County,7,14,4053,1852,2201,1731,2020,100,159,6,4,6,8,1,0,8,10,1839,2194,1719,2014,99,158,6,4,6,8,1,0,8,10,13,7,12,6,1,1,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,7,15,3452,1525,1927,1430,1767,82,141,3,3,3,6,1,0,6,10,1515,1918,1420,1758,82,141,3,3,3,6,1,0,6,10,10,9,10,9,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,7,16,2894,1220,1674,1161,1535,52,128,1,1,1,2,0,0,5,8,1215,1665,1156,1526,52,128,1,1,1,2,0,0,5,8,5,9,5,9,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,7,17,2058,747,1311,704,1214,39,88,1,0,0,1,0,0,3,8,744,1308,701,1211,39,88,1,0,0,1,0,0,3,8,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,7,18,1677,460,1217,436,1133,20,78,1,1,1,0,0,0,2,5,459,1214,435,1130,20,78,1,1,1,0,0,0,2,5,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,7,99,89358,42695,46663,37847,40985,3992,4819,147,135,261,259,17,16,431,449,41961,46003,37213,40416,3957,4777,141,129,243,247,8,9,399,425,734,660,634,569,35,42,6,6,18,12,9,7,32,24 -050,01,077,Alabama,Lauderdale County,8,0,1012,491,521,415,428,50,73,1,1,3,4,0,1,22,14,467,489,395,399,49,72,1,1,3,4,0,0,19,13,24,32,20,29,1,1,0,0,0,0,0,1,3,1 -050,01,077,Alabama,Lauderdale County,8,1,4004,1973,2031,1651,1682,238,263,4,5,18,12,1,1,61,68,1889,1942,1582,1608,233,256,4,5,15,10,0,0,55,63,84,89,69,74,5,7,0,0,3,2,1,1,6,5 -050,01,077,Alabama,Lauderdale County,8,2,5375,2677,2698,2284,2285,290,322,9,9,13,17,3,0,78,65,2592,2631,2209,2225,285,317,8,9,13,17,2,0,75,63,85,67,75,60,5,5,1,0,0,0,1,0,3,2 -050,01,077,Alabama,Lauderdale County,8,3,5700,2890,2810,2499,2406,326,342,8,10,12,10,1,1,44,41,2828,2744,2445,2351,322,337,7,8,12,10,1,0,41,38,62,66,54,55,4,5,1,2,0,0,0,1,3,3 -050,01,077,Alabama,Lauderdale County,8,4,6489,3220,3269,2731,2722,408,464,9,14,30,21,0,0,42,48,3148,3205,2666,2670,405,460,9,13,26,19,0,0,42,43,72,64,65,52,3,4,0,1,4,2,0,0,0,5 -050,01,077,Alabama,Lauderdale County,8,5,6520,3258,3262,2699,2726,439,420,13,12,74,61,2,3,31,40,3176,3180,2637,2653,431,415,12,12,70,61,1,2,25,37,82,82,62,73,8,5,1,0,4,0,1,1,6,3 -050,01,077,Alabama,Lauderdale County,8,6,5639,2812,2827,2432,2430,308,327,11,12,31,34,4,1,26,23,2727,2771,2363,2385,304,325,9,12,28,30,2,0,21,19,85,56,69,45,4,2,2,0,3,4,2,1,5,4 -050,01,077,Alabama,Lauderdale County,8,7,4831,2357,2474,2086,2146,220,274,14,7,15,21,3,5,19,21,2283,2422,2022,2105,218,270,14,6,14,20,0,3,15,18,74,52,64,41,2,4,0,1,1,1,3,2,4,3 -050,01,077,Alabama,Lauderdale County,8,8,5806,2840,2966,2516,2586,273,321,11,15,14,22,2,1,24,21,2751,2915,2438,2542,270,318,10,13,11,22,0,0,22,20,89,51,78,44,3,3,1,2,3,0,2,1,2,1 -050,01,077,Alabama,Lauderdale County,8,9,6342,3073,3269,2735,2844,285,371,16,16,18,14,0,2,19,22,3044,3237,2711,2813,282,370,16,16,18,14,0,2,17,22,29,32,24,31,3,1,0,0,0,0,0,0,2,0 -050,01,077,Alabama,Lauderdale County,8,10,6657,3177,3480,2867,3075,261,353,8,17,13,13,1,0,27,22,3144,3458,2840,3056,259,353,7,16,13,12,0,0,25,21,33,22,27,19,2,0,1,1,0,1,1,0,2,1 -050,01,077,Alabama,Lauderdale County,8,11,6428,3072,3356,2745,2966,284,331,14,12,9,15,2,1,18,31,3037,3331,2717,2948,282,326,12,12,8,13,0,1,18,31,35,25,28,18,2,5,2,0,1,2,2,0,0,0 -050,01,077,Alabama,Lauderdale County,8,12,6229,3014,3215,2741,2902,229,267,11,7,14,13,1,0,18,26,2992,3193,2720,2881,229,266,11,7,13,13,1,0,18,26,22,22,21,21,0,1,0,0,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,8,13,4796,2259,2537,2073,2324,160,179,9,8,3,13,1,0,13,13,2247,2523,2063,2313,158,177,9,8,3,12,1,0,13,13,12,14,10,11,2,2,0,0,0,1,0,0,0,0 -050,01,077,Alabama,Lauderdale County,8,14,4176,1965,2211,1837,2032,99,154,5,4,7,10,2,0,15,11,1954,2202,1826,2024,99,153,5,4,7,10,2,0,15,11,11,9,11,8,0,1,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,8,15,3565,1582,1983,1464,1810,100,152,5,3,5,7,1,0,7,11,1571,1970,1454,1798,100,152,5,2,5,7,1,0,6,11,11,13,10,12,0,0,0,1,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,8,16,2848,1200,1648,1146,1521,48,115,1,2,2,4,0,0,3,6,1195,1641,1141,1514,48,115,1,2,2,4,0,0,3,6,5,7,5,7,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,8,17,2110,789,1321,748,1212,37,100,1,0,0,1,0,0,3,8,786,1318,745,1209,37,100,1,0,0,1,0,0,3,8,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,8,18,1767,495,1272,474,1182,17,82,1,1,1,1,0,0,2,6,492,1269,471,1179,17,82,1,1,1,1,0,0,2,6,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,8,99,90294,43144,47150,38143,41279,4072,4910,151,155,282,293,24,16,472,497,42323,46441,37445,40673,4028,4864,142,147,262,280,11,8,435,469,821,709,698,606,44,46,9,8,20,13,13,8,37,28 -050,01,077,Alabama,Lauderdale County,9,0,1081,523,558,445,464,49,65,1,1,2,4,0,3,26,21,495,522,421,433,48,64,1,1,2,3,0,1,23,20,28,36,24,31,1,1,0,0,0,1,0,2,3,1 -050,01,077,Alabama,Lauderdale County,9,1,3990,1978,2012,1646,1643,248,278,8,5,14,10,1,1,61,75,1886,1910,1569,1559,242,269,8,5,11,8,0,0,56,69,92,102,77,84,6,9,0,0,3,2,1,1,5,6 -050,01,077,Alabama,Lauderdale County,9,2,5445,2715,2730,2310,2288,285,349,13,7,23,16,2,0,82,70,2608,2649,2217,2216,279,341,12,7,22,16,1,0,77,69,107,81,93,72,6,8,1,0,1,0,1,0,5,1 -050,01,077,Alabama,Lauderdale County,9,3,5725,2895,2830,2495,2420,328,339,8,11,14,14,0,2,50,44,2828,2756,2438,2358,324,334,7,9,13,12,0,1,46,42,67,74,57,62,4,5,1,2,1,2,0,1,4,2 -050,01,077,Alabama,Lauderdale County,9,4,6540,3240,3300,2713,2739,433,480,14,11,35,20,0,0,45,50,3157,3226,2641,2678,429,475,14,10,30,18,0,0,43,45,83,74,72,61,4,5,0,1,5,2,0,0,2,5 -050,01,077,Alabama,Lauderdale County,9,5,6664,3310,3354,2776,2824,402,403,14,16,81,65,2,2,35,44,3229,3257,2718,2739,392,397,13,16,77,65,1,1,28,39,81,97,58,85,10,6,1,0,4,0,1,1,7,5 -050,01,077,Alabama,Lauderdale County,9,6,5684,2821,2863,2429,2462,320,322,11,18,32,33,4,2,25,26,2760,2802,2386,2413,315,320,9,18,29,29,2,0,19,22,61,61,43,49,5,2,2,0,3,4,2,2,6,4 -050,01,077,Alabama,Lauderdale County,9,7,4673,2297,2376,2028,2079,215,253,14,8,17,15,3,3,20,18,2220,2317,1962,2032,213,249,14,6,15,14,0,1,16,15,77,59,66,47,2,4,0,2,2,1,3,2,4,3 -050,01,077,Alabama,Lauderdale County,9,8,5835,2864,2971,2546,2575,263,321,11,15,16,36,3,1,25,23,2763,2921,2455,2533,260,318,10,13,14,35,1,0,23,22,101,50,91,42,3,3,1,2,2,1,2,1,2,1 -050,01,077,Alabama,Lauderdale County,9,9,6231,3009,3222,2696,2825,274,355,8,11,17,12,0,2,14,17,2975,3183,2667,2789,271,353,8,11,17,11,0,2,12,17,34,39,29,36,3,2,0,0,0,1,0,0,2,0 -050,01,077,Alabama,Lauderdale County,9,10,6618,3169,3449,2848,3030,277,357,8,25,9,12,1,0,26,25,3129,3416,2814,2999,275,357,7,24,9,12,0,0,24,24,40,33,34,31,2,0,1,1,0,0,1,0,2,1 -050,01,077,Alabama,Lauderdale County,9,11,6511,3143,3368,2818,2961,273,340,16,12,11,16,1,5,24,34,3110,3343,2793,2941,270,336,14,12,9,15,0,5,24,34,33,25,25,20,3,4,2,0,2,1,1,0,0,0 -050,01,077,Alabama,Lauderdale County,9,12,6225,2996,3229,2702,2907,252,278,11,8,10,10,0,0,21,26,2968,3206,2676,2885,252,277,11,8,8,10,0,0,21,26,28,23,26,22,0,1,0,0,2,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,9,13,5189,2414,2775,2218,2547,166,187,9,9,3,14,1,0,17,18,2400,2757,2207,2532,164,185,9,9,3,13,1,0,16,18,14,18,11,15,2,2,0,0,0,1,0,0,1,0 -050,01,077,Alabama,Lauderdale County,9,14,4371,2061,2310,1909,2124,128,158,5,5,9,11,1,0,9,12,2050,2301,1898,2116,128,157,5,5,9,11,1,0,9,12,11,9,11,8,0,1,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,9,15,3552,1587,1965,1475,1801,96,141,4,4,3,7,1,0,8,12,1576,1952,1465,1789,96,141,4,3,3,7,1,0,7,12,11,13,10,12,0,0,0,1,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,9,16,2910,1210,1700,1148,1580,56,108,1,2,2,4,0,0,3,6,1204,1690,1142,1570,56,108,1,2,2,4,0,0,3,6,6,10,6,10,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,9,17,2052,781,1271,739,1140,37,120,1,0,1,2,0,0,3,9,778,1268,736,1137,37,120,1,0,1,2,0,0,3,9,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,9,18,1811,515,1296,497,1214,15,74,1,1,1,1,0,0,1,6,512,1293,494,1211,15,74,1,1,1,1,0,0,1,6,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,9,99,91107,43528,47579,38438,41623,4117,4928,158,169,300,302,20,21,495,536,42648,46769,37699,40930,4066,4875,149,160,275,286,8,11,451,507,880,810,739,693,51,53,9,9,25,16,12,10,44,29 -050,01,077,Alabama,Lauderdale County,10,0,1056,519,537,436,444,42,68,1,1,4,1,0,3,36,20,491,506,413,420,41,66,1,1,4,1,0,1,32,17,28,31,23,24,1,2,0,0,0,0,0,2,4,3 -050,01,077,Alabama,Lauderdale County,10,1,4088,2025,2063,1694,1691,240,280,6,5,15,10,1,1,69,76,1929,1953,1613,1600,234,271,6,5,13,8,0,0,63,69,96,110,81,91,6,9,0,0,2,2,1,1,6,7 -050,01,077,Alabama,Lauderdale County,10,2,5492,2731,2761,2307,2303,304,364,12,7,14,14,3,0,91,73,2620,2665,2208,2220,299,355,11,7,14,12,2,0,86,71,111,96,99,83,5,9,1,0,0,2,1,0,5,2 -050,01,077,Alabama,Lauderdale County,10,3,5728,2907,2821,2525,2433,295,312,11,11,16,15,1,2,59,48,2830,2745,2459,2371,290,306,10,9,16,13,1,1,54,45,77,76,66,62,5,6,1,2,0,2,0,1,5,3 -050,01,077,Alabama,Lauderdale County,10,4,6670,3289,3381,2747,2787,446,506,10,13,40,22,0,0,46,53,3199,3299,2670,2717,441,501,10,12,35,21,0,0,43,48,90,82,77,70,5,5,0,1,5,1,0,0,3,5 -050,01,077,Alabama,Lauderdale County,10,5,6897,3456,3441,2861,2850,447,448,14,19,93,71,2,3,39,50,3363,3355,2792,2779,437,440,13,19,89,71,1,2,31,44,93,86,69,71,10,8,1,0,4,0,1,1,8,6 -050,01,077,Alabama,Lauderdale County,10,6,5606,2797,2809,2443,2403,270,330,15,15,37,34,5,2,27,25,2704,2744,2369,2351,265,328,13,15,34,29,2,0,21,21,93,65,74,52,5,2,2,0,3,5,3,2,6,4 -050,01,077,Alabama,Lauderdale County,10,7,4704,2302,2402,2021,2089,227,270,12,5,15,12,3,2,24,24,2223,2331,1952,2030,225,266,12,3,14,12,0,0,20,20,79,71,69,59,2,4,0,2,1,0,3,2,4,4 -050,01,077,Alabama,Lauderdale County,10,8,5792,2853,2939,2521,2573,284,294,12,16,13,32,2,1,21,23,2754,2892,2432,2534,281,291,11,14,11,31,0,0,19,22,99,47,89,39,3,3,1,2,2,1,2,1,2,1 -050,01,077,Alabama,Lauderdale County,10,9,6091,2954,3137,2646,2734,263,352,7,14,18,18,0,2,20,17,2909,3081,2605,2682,260,350,7,14,18,17,0,2,19,16,45,56,41,52,3,2,0,0,0,1,0,0,1,1 -050,01,077,Alabama,Lauderdale County,10,10,6543,3132,3411,2794,3000,294,354,7,19,11,20,1,0,25,18,3089,3375,2757,2969,292,354,6,18,11,17,0,0,23,17,43,36,37,31,2,0,1,1,0,3,1,0,2,1 -050,01,077,Alabama,Lauderdale County,10,11,6705,3200,3505,2875,3079,267,358,19,15,14,17,2,3,23,33,3167,3482,2850,3063,265,354,17,15,12,14,0,3,23,33,33,23,25,16,2,4,2,0,2,3,2,0,0,0 -050,01,077,Alabama,Lauderdale County,10,12,6224,2998,3226,2688,2901,261,279,10,7,15,10,0,0,24,29,2970,3198,2662,2874,261,278,10,7,13,10,0,0,24,29,28,28,26,27,0,1,0,0,2,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,10,13,5416,2568,2848,2350,2587,180,210,15,9,1,26,2,0,20,16,2548,2829,2333,2572,178,208,15,9,1,25,2,0,19,15,20,19,17,15,2,2,0,0,0,1,0,0,1,1 -050,01,077,Alabama,Lauderdale County,10,14,4605,2176,2429,2020,2249,121,156,6,4,10,10,2,0,17,10,2163,2420,2008,2241,121,155,6,4,10,10,2,0,16,10,13,9,12,8,0,1,0,0,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,10,15,3729,1672,2057,1540,1888,112,146,5,3,3,9,1,0,11,11,1660,2045,1529,1877,112,146,5,2,3,9,1,0,10,11,12,12,11,11,0,0,0,1,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,10,16,2912,1201,1711,1135,1595,59,102,1,2,2,4,1,0,3,8,1195,1703,1129,1587,59,102,1,2,2,4,1,0,3,8,6,8,6,8,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,10,17,2083,803,1280,767,1162,29,109,2,0,1,2,0,0,4,7,797,1276,762,1158,29,109,1,0,1,2,0,0,4,7,6,4,5,4,0,0,1,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,10,18,1861,528,1333,508,1245,17,79,1,1,1,1,0,0,1,7,527,1330,507,1242,17,79,1,1,1,1,0,0,1,7,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,10,99,92202,44111,48091,38878,42013,4158,5017,166,166,323,328,26,19,560,548,43138,47229,38050,41287,4107,4959,156,157,302,307,12,9,511,510,973,862,828,726,51,58,10,9,21,21,14,10,49,38 -050,01,077,Alabama,Lauderdale County,11,0,1026,512,514,420,422,53,68,3,1,4,3,0,3,32,17,476,480,390,394,52,66,2,1,4,3,0,1,28,15,36,34,30,28,1,2,1,0,0,0,0,2,4,2 -050,01,077,Alabama,Lauderdale County,11,1,4120,2037,2083,1682,1683,258,300,5,5,15,12,1,1,76,82,1940,1971,1601,1593,252,288,5,5,12,10,0,0,70,75,97,112,81,90,6,12,0,0,3,2,1,1,6,7 -050,01,077,Alabama,Lauderdale County,11,2,5500,2743,2757,2302,2278,310,368,17,7,16,20,3,0,95,84,2615,2651,2189,2184,303,359,15,7,16,19,2,0,90,82,128,106,113,94,7,9,2,0,0,1,1,0,5,2 -050,01,077,Alabama,Lauderdale County,11,3,5812,2924,2888,2529,2491,304,315,12,11,18,17,1,2,60,52,2825,2804,2443,2421,298,309,11,9,17,15,1,1,55,49,99,84,86,70,6,6,1,2,1,2,0,1,5,3 -050,01,077,Alabama,Lauderdale County,11,4,6621,3301,3320,2762,2726,452,501,7,13,31,22,0,0,49,58,3217,3226,2691,2646,447,495,7,12,26,20,0,0,46,53,84,94,71,80,5,6,0,1,5,2,0,0,3,5 -050,01,077,Alabama,Lauderdale County,11,5,7018,3548,3470,2925,2868,466,459,13,13,98,77,2,3,44,50,3431,3381,2831,2794,457,451,12,13,94,77,1,2,36,44,117,89,94,74,9,8,1,0,4,0,1,1,8,6 -050,01,077,Alabama,Lauderdale County,11,6,5413,2690,2723,2316,2301,289,341,15,11,38,38,4,2,28,30,2592,2646,2239,2237,283,339,13,11,35,33,1,0,21,26,98,77,77,64,6,2,2,0,3,5,3,2,7,4 -050,01,077,Alabama,Lauderdale County,11,7,4793,2355,2438,2061,2109,232,286,19,7,17,12,3,4,23,20,2273,2364,1992,2047,229,282,19,5,15,12,0,2,18,16,82,74,69,62,3,4,0,2,2,0,3,2,5,4 -050,01,077,Alabama,Lauderdale County,11,8,5751,2772,2979,2440,2613,267,292,11,15,28,34,4,1,22,24,2683,2907,2363,2550,263,289,10,13,25,32,2,0,20,23,89,72,77,63,4,3,1,2,3,2,2,1,2,1 -050,01,077,Alabama,Lauderdale County,11,9,5927,2885,3042,2600,2641,245,347,9,9,16,18,0,3,15,24,2833,2994,2552,2597,242,345,9,9,16,17,0,3,14,23,52,48,48,44,3,2,0,0,0,1,0,0,1,1 -050,01,077,Alabama,Lauderdale County,11,10,6556,3168,3388,2809,2982,306,353,9,16,12,18,1,0,31,19,3128,3352,2775,2950,304,353,8,15,12,16,0,0,29,18,40,36,34,32,2,0,1,1,0,2,1,0,2,1 -050,01,077,Alabama,Lauderdale County,11,11,6722,3180,3542,2848,3133,266,345,17,14,17,18,2,2,30,30,3143,3519,2820,3115,263,341,15,14,15,17,0,2,30,30,37,23,28,18,3,4,2,0,2,1,2,0,0,0 -050,01,077,Alabama,Lauderdale County,11,12,6243,3024,3219,2712,2864,259,296,12,7,15,19,0,0,26,33,2990,3184,2680,2830,259,295,12,7,13,19,0,0,26,33,34,35,32,34,0,1,0,0,2,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,11,13,5650,2652,2998,2418,2727,198,214,17,9,1,30,0,0,18,18,2635,2972,2404,2705,196,212,17,9,1,29,0,0,17,17,17,26,14,22,2,2,0,0,0,1,0,0,1,1 -050,01,077,Alabama,Lauderdale County,11,14,4724,2238,2486,2078,2285,129,171,6,4,9,10,1,0,15,16,2223,2470,2064,2270,129,170,6,4,9,10,1,0,14,16,15,16,14,15,0,1,0,0,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,11,15,3745,1669,2076,1547,1912,103,139,5,4,4,8,1,0,9,13,1656,2063,1535,1900,103,139,5,3,4,8,1,0,8,13,13,13,12,12,0,0,0,1,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,11,16,2918,1230,1688,1160,1570,63,104,1,2,2,4,1,0,3,8,1225,1679,1155,1561,63,104,1,2,2,4,1,0,3,8,5,9,5,9,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,11,17,2149,829,1320,784,1211,38,100,2,0,1,2,0,0,4,7,823,1316,779,1207,38,100,1,0,1,2,0,0,4,7,6,4,5,4,0,0,1,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,11,18,1838,530,1308,513,1223,14,76,1,1,1,1,0,0,1,7,528,1304,511,1219,14,76,1,1,1,1,0,0,1,7,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,11,99,92526,44287,48239,38906,42039,4252,5075,181,149,343,363,24,21,581,592,43236,47283,38014,41220,4195,5013,169,140,318,344,10,11,530,555,1051,956,892,819,57,62,12,9,25,19,14,10,51,37 -050,01,077,Alabama,Lauderdale County,12,0,990,480,510,400,414,48,71,3,1,4,4,0,3,25,17,449,475,375,387,47,69,2,1,4,3,0,1,21,14,31,35,25,27,1,2,1,0,0,1,0,2,4,3 -050,01,077,Alabama,Lauderdale County,12,1,4168,2060,2108,1697,1699,257,303,9,5,13,13,1,1,83,87,1954,1990,1607,1605,251,289,9,5,10,11,0,0,77,80,106,118,90,94,6,14,0,0,3,2,1,1,6,7 -050,01,077,Alabama,Lauderdale County,12,2,5466,2750,2716,2298,2251,309,348,15,7,19,21,3,0,106,89,2621,2610,2187,2158,300,339,13,7,18,19,2,0,101,87,129,106,111,93,9,9,2,0,1,2,1,0,5,2 -050,01,077,Alabama,Lauderdale County,12,3,5718,2867,2851,2458,2439,311,324,12,11,21,15,1,2,64,60,2772,2766,2376,2368,305,318,11,9,20,13,1,1,59,57,95,85,82,71,6,6,1,2,1,2,0,1,5,3 -050,01,077,Alabama,Lauderdale County,12,4,6699,3337,3362,2801,2771,439,491,9,14,34,24,0,0,54,62,3237,3258,2715,2682,434,485,9,13,28,21,0,0,51,57,100,104,86,89,5,6,0,1,6,3,0,0,3,5 -050,01,077,Alabama,Lauderdale County,12,5,7088,3566,3522,2920,2892,480,480,17,14,104,78,2,3,43,55,3447,3431,2826,2818,469,471,16,14,100,78,1,2,35,48,119,91,94,74,11,9,1,0,4,0,1,1,8,7 -050,01,077,Alabama,Lauderdale County,12,6,5328,2669,2659,2293,2245,284,328,11,13,45,41,5,2,31,30,2565,2582,2211,2181,278,326,9,13,42,36,2,0,23,26,104,77,82,64,6,2,2,0,3,5,3,2,8,4 -050,01,077,Alabama,Lauderdale County,12,7,4896,2401,2495,2097,2154,241,290,19,10,17,14,3,4,24,23,2308,2419,2016,2091,238,286,19,8,15,13,0,2,20,19,93,76,81,63,3,4,0,2,2,1,3,2,4,4 -050,01,077,Alabama,Lauderdale County,12,8,5530,2677,2853,2360,2511,258,271,14,16,20,28,3,1,22,26,2586,2777,2281,2443,254,268,13,14,17,27,1,0,20,25,91,76,79,68,4,3,1,2,3,1,2,1,2,1 -050,01,077,Alabama,Lauderdale County,12,9,5882,2885,2997,2600,2605,239,340,8,11,21,19,0,2,17,20,2823,2945,2542,2557,236,338,8,11,21,18,0,2,16,19,62,52,58,48,3,2,0,0,0,1,0,0,1,1 -050,01,077,Alabama,Lauderdale County,12,10,6523,3120,3403,2773,2974,297,374,11,17,12,20,1,0,26,18,3079,3369,2738,2943,295,374,10,16,12,19,0,0,24,17,41,34,35,31,2,0,1,1,0,1,1,0,2,1 -050,01,077,Alabama,Lauderdale County,12,11,6757,3178,3579,2845,3161,270,349,16,16,20,20,2,4,25,29,3137,3551,2814,3140,267,345,14,16,17,17,0,4,25,29,41,28,31,21,3,4,2,0,3,3,2,0,0,0 -050,01,077,Alabama,Lauderdale County,12,12,6295,3055,3240,2748,2897,254,291,12,7,15,14,0,0,26,31,3020,3212,2716,2871,254,290,12,7,13,13,0,0,25,31,35,28,32,26,0,1,0,0,2,1,0,0,1,0 -050,01,077,Alabama,Lauderdale County,12,13,5816,2744,3072,2510,2799,200,222,13,9,1,24,1,0,19,18,2729,3051,2498,2782,198,220,13,9,1,23,1,0,18,17,15,21,12,17,2,2,0,0,0,1,0,0,1,1 -050,01,077,Alabama,Lauderdale County,12,14,4735,2241,2494,2067,2282,140,179,6,4,11,14,1,0,16,15,2226,2482,2053,2271,140,178,6,4,11,14,1,0,15,15,15,12,14,11,0,1,0,0,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,12,15,3785,1685,2100,1564,1939,101,135,5,4,4,9,1,0,10,13,1672,2084,1552,1924,101,135,5,3,4,9,1,0,9,13,13,16,12,15,0,0,0,1,0,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,12,16,2989,1273,1716,1193,1595,73,107,1,2,2,4,1,0,3,8,1266,1706,1186,1585,73,107,1,2,2,4,1,0,3,8,7,10,7,10,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,12,17,2171,844,1327,799,1226,38,92,2,0,1,2,0,0,4,7,838,1323,794,1222,38,92,1,0,1,2,0,0,4,7,6,4,5,4,0,0,1,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,12,18,1873,547,1326,527,1243,17,74,1,1,1,1,0,0,1,7,545,1322,525,1239,17,74,1,1,1,1,0,0,1,7,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,12,99,92709,44379,48330,38950,42097,4256,5069,184,162,365,365,25,22,599,615,43274,47353,38012,41267,4195,5004,172,153,337,341,11,12,547,576,1105,977,938,830,61,65,12,9,28,24,14,10,52,39 -050,01,077,Alabama,Lauderdale County,13,0,990,482,508,400,414,50,70,3,1,4,3,1,1,24,19,450,477,375,387,48,69,2,1,3,3,1,0,21,17,32,31,25,27,2,1,1,0,1,0,0,1,3,2 -050,01,077,Alabama,Lauderdale County,13,1,4151,2057,2094,1688,1690,259,300,10,8,12,11,4,2,84,83,1950,1982,1597,1596,252,290,9,6,10,10,4,2,78,78,107,112,91,94,7,10,1,2,2,1,0,0,6,5 -050,01,077,Alabama,Lauderdale County,13,2,5464,2740,2724,2293,2247,307,347,13,6,17,21,4,2,106,101,2611,2607,2182,2152,298,339,12,5,17,20,2,0,100,91,129,117,111,95,9,8,1,1,0,1,2,2,6,10 -050,01,077,Alabama,Lauderdale County,13,3,5718,2865,2853,2448,2432,310,321,12,14,20,14,2,1,73,71,2764,2765,2367,2361,303,317,10,10,20,13,1,0,63,64,101,88,81,71,7,4,2,4,0,1,1,1,10,7 -050,01,077,Alabama,Lauderdale County,13,4,6657,3319,3338,2780,2751,439,487,9,12,32,20,3,3,56,65,3220,3238,2693,2662,433,483,9,11,30,19,2,1,53,62,99,100,87,89,6,4,0,1,2,1,1,2,3,3 -050,01,077,Alabama,Lauderdale County,13,5,7095,3571,3524,2925,2895,481,483,14,15,104,78,3,3,44,50,3450,3428,2829,2819,470,474,14,13,99,77,1,0,37,45,121,96,96,76,11,9,0,2,5,1,2,3,7,5 -050,01,077,Alabama,Lauderdale County,13,6,5322,2673,2649,2298,2244,285,327,10,14,42,34,5,3,33,27,2573,2576,2217,2181,280,325,9,13,40,33,1,0,26,24,100,73,81,63,5,2,1,1,2,1,4,3,7,3 -050,01,077,Alabama,Lauderdale County,13,7,4914,2409,2505,2108,2166,243,288,20,10,16,13,1,0,21,28,2316,2429,2025,2102,241,286,19,8,13,12,0,0,18,21,93,76,83,64,2,2,1,2,3,1,1,0,3,7 -050,01,077,Alabama,Lauderdale County,13,8,5468,2652,2816,2335,2485,259,268,15,13,18,27,4,1,21,22,2562,2740,2256,2417,256,266,13,12,15,25,2,0,20,20,90,76,79,68,3,2,2,1,3,2,2,1,1,2 -050,01,077,Alabama,Lauderdale County,13,9,5867,2880,2987,2593,2596,239,337,8,12,22,19,0,2,18,21,2813,2933,2533,2549,235,335,7,12,22,18,0,1,16,18,67,54,60,47,4,2,1,0,0,1,0,1,2,3 -050,01,077,Alabama,Lauderdale County,13,10,6496,3105,3391,2754,2952,295,377,9,16,12,21,3,3,32,22,3065,3357,2721,2921,294,377,8,15,12,20,1,2,29,22,40,34,33,31,1,0,1,1,0,1,2,1,3,0 -050,01,077,Alabama,Lauderdale County,13,11,6764,3183,3581,2842,3161,271,349,17,15,19,22,2,4,32,30,3143,3555,2811,3141,267,346,15,15,17,19,2,4,31,30,40,26,31,20,4,3,2,0,2,3,0,0,1,0 -050,01,077,Alabama,Lauderdale County,13,12,6320,3071,3249,2762,2908,256,295,12,6,15,13,2,0,24,27,3031,3220,2728,2882,255,294,12,5,12,12,1,0,23,27,40,29,34,26,1,1,0,1,3,1,1,0,1,0 -050,01,077,Alabama,Lauderdale County,13,13,5870,2770,3100,2528,2823,201,223,14,9,2,24,3,0,22,21,2757,3077,2516,2805,200,222,14,7,2,24,3,0,22,19,13,23,12,18,1,1,0,2,0,0,0,0,0,2 -050,01,077,Alabama,Lauderdale County,13,14,4763,2254,2509,2077,2293,143,182,9,3,10,14,0,3,15,14,2238,2493,2064,2280,141,180,8,3,10,14,0,2,15,14,16,16,13,13,2,2,1,0,0,0,0,1,0,0 -050,01,077,Alabama,Lauderdale County,13,15,3795,1691,2104,1571,1942,101,138,4,4,4,8,0,1,11,11,1681,2088,1561,1928,101,137,4,3,4,8,0,1,11,11,10,16,10,14,0,1,0,1,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,13,16,2979,1271,1708,1191,1587,76,109,2,2,1,2,0,0,1,8,1264,1699,1185,1579,75,108,2,2,1,2,0,0,1,8,7,9,6,8,1,1,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,13,17,2161,842,1319,798,1219,39,94,2,1,0,1,0,0,3,4,839,1314,795,1216,39,92,2,1,0,1,0,0,3,4,3,5,3,3,0,2,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,13,18,1885,552,1333,532,1247,17,75,1,2,1,1,0,0,1,8,549,1327,529,1243,17,74,1,1,1,1,0,0,1,8,3,6,3,4,0,1,0,1,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,13,99,92679,44387,48292,38923,42052,4271,5070,184,163,351,346,37,29,621,632,43276,47305,37984,41221,4205,5014,170,143,328,331,21,13,568,583,1111,987,939,831,66,56,14,20,23,15,16,16,53,49 -050,01,079,Alabama,Lawrence County,1,0,406,205,201,151,148,30,32,10,8,2,0,0,0,12,13,202,194,149,142,29,32,10,8,2,0,0,0,12,12,3,7,2,6,1,0,0,0,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,1,1,1797,932,865,730,676,113,115,54,38,0,2,0,0,35,34,914,847,718,663,112,111,50,37,0,2,0,0,34,34,18,18,12,13,1,4,4,1,0,0,0,0,1,0 -050,01,079,Alabama,Lawrence County,1,2,2556,1324,1232,979,894,200,192,104,103,0,0,0,0,41,43,1306,1214,962,880,199,190,104,101,0,0,0,0,41,43,18,18,17,14,1,2,0,2,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,3,2630,1379,1251,989,878,228,212,104,93,1,0,0,0,57,68,1366,1238,979,870,228,209,102,92,1,0,0,0,56,67,13,13,10,8,0,3,2,1,0,0,0,0,1,1 -050,01,079,Alabama,Lawrence County,1,4,2475,1304,1171,908,784,205,195,129,126,1,1,0,0,61,65,1281,1160,894,777,204,193,124,124,1,1,0,0,58,65,23,11,14,7,1,2,5,2,0,0,0,0,3,0 -050,01,079,Alabama,Lawrence County,1,5,2014,1014,1000,732,729,159,146,76,93,0,0,2,0,45,32,992,992,713,722,158,145,74,93,0,0,2,0,45,32,22,8,19,7,1,1,2,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,6,2276,1103,1173,888,912,126,153,61,73,3,4,0,0,25,31,1083,1150,869,893,125,152,61,71,3,4,0,0,25,30,20,23,19,19,1,1,0,2,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,1,7,2700,1349,1351,1093,1063,150,199,65,56,4,3,0,1,37,29,1326,1338,1074,1054,149,197,63,56,4,2,0,1,36,28,23,13,19,9,1,2,2,0,0,1,0,0,1,1 -050,01,079,Alabama,Lawrence County,1,8,2916,1434,1482,1156,1152,172,182,69,102,1,1,0,0,36,45,1428,1472,1150,1144,172,182,69,101,1,1,0,0,36,44,6,10,6,8,0,0,0,1,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,1,9,2610,1254,1356,987,1012,143,192,81,86,0,1,0,0,43,65,1246,1338,979,1002,143,186,81,84,0,1,0,0,43,65,8,18,8,10,0,6,0,2,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,10,2383,1184,1199,935,886,154,203,60,72,1,3,0,0,34,35,1171,1188,928,877,153,203,57,72,0,3,0,0,33,33,13,11,7,9,1,0,3,0,1,0,0,0,1,2 -050,01,079,Alabama,Lawrence County,1,11,2311,1151,1160,926,921,148,157,48,55,0,2,0,0,29,25,1146,1153,921,915,148,156,48,55,0,2,0,0,29,25,5,7,5,6,0,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,12,1982,958,1024,812,855,99,133,29,23,0,0,0,0,18,13,952,1016,807,849,98,131,29,23,0,0,0,0,18,13,6,8,5,6,1,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,13,1585,786,799,676,685,75,85,24,10,0,2,0,0,11,17,781,794,672,681,75,84,23,10,0,2,0,0,11,17,5,5,4,4,0,1,1,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,14,1314,612,702,545,611,54,73,3,7,0,3,0,0,10,8,609,700,542,610,54,73,3,7,0,3,0,0,10,7,3,2,3,1,0,0,0,0,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,1,15,1071,476,595,422,501,39,79,7,9,0,0,0,0,8,6,476,593,422,499,39,79,7,9,0,0,0,0,8,6,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,16,822,320,502,273,430,43,66,0,0,0,0,0,0,4,6,320,501,273,429,43,66,0,0,0,0,0,0,4,6,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,17,543,187,356,170,318,16,34,0,1,0,0,0,0,1,3,186,352,169,317,16,31,0,1,0,0,0,0,1,3,1,4,1,1,0,3,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,18,443,115,328,98,285,15,40,1,1,0,0,0,0,1,2,115,327,98,284,15,40,1,1,0,0,0,0,1,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,99,34834,17087,17747,13470,13740,2169,2488,925,956,13,22,2,1,508,540,16900,17567,13319,13608,2160,2460,906,945,12,21,2,1,501,532,187,180,151,132,9,28,19,11,1,1,0,0,7,8 -050,01,079,Alabama,Lawrence County,2,0,410,207,203,152,150,30,32,10,8,2,0,0,0,13,13,204,196,150,144,29,32,10,8,2,0,0,0,13,12,3,7,2,6,1,0,0,0,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,2,1,1799,934,865,728,675,113,115,54,38,0,2,0,0,39,35,916,846,716,661,112,111,50,37,0,2,0,0,38,35,18,19,12,14,1,4,4,1,0,0,0,0,1,0 -050,01,079,Alabama,Lawrence County,2,2,2543,1320,1223,975,888,200,189,104,103,0,0,0,0,41,43,1301,1205,957,874,199,187,104,101,0,0,0,0,41,43,19,18,18,14,1,2,0,2,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,3,2628,1383,1245,990,877,230,212,104,93,1,0,0,0,58,63,1370,1232,980,869,230,209,102,92,1,0,0,0,57,62,13,13,10,8,0,3,2,1,0,0,0,0,1,1 -050,01,079,Alabama,Lawrence County,2,4,2486,1314,1172,913,786,207,196,132,126,1,1,0,0,61,63,1291,1161,899,779,206,194,127,124,1,1,0,0,58,63,23,11,14,7,1,2,5,2,0,0,0,0,3,0 -050,01,079,Alabama,Lawrence County,2,5,2019,1013,1006,736,737,162,148,73,92,0,0,2,0,40,29,991,997,717,729,161,147,71,92,0,0,2,0,40,29,22,9,19,8,1,1,2,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,6,2253,1092,1161,879,900,126,153,61,72,3,4,0,0,23,32,1072,1138,860,881,125,152,61,70,3,4,0,0,23,31,20,23,19,19,1,1,0,2,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,2,7,2690,1345,1345,1091,1059,149,198,65,56,4,3,0,1,36,28,1322,1332,1072,1050,148,196,63,56,4,2,0,1,35,27,23,13,19,9,1,2,2,0,0,1,0,0,1,1 -050,01,079,Alabama,Lawrence County,2,8,2896,1425,1471,1148,1144,171,182,69,101,1,1,0,0,36,43,1419,1460,1142,1135,171,182,69,100,1,1,0,0,36,42,6,11,6,9,0,0,0,1,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,2,9,2621,1258,1363,988,1012,145,195,82,85,0,1,0,0,43,70,1250,1345,980,1002,145,189,82,83,0,1,0,0,43,70,8,18,8,10,0,6,0,2,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,10,2396,1191,1205,940,890,155,204,60,72,1,3,0,0,35,36,1178,1194,933,881,154,204,57,72,0,3,0,0,34,34,13,11,7,9,1,0,3,0,1,0,0,0,1,2 -050,01,079,Alabama,Lawrence County,2,11,2337,1163,1174,935,933,150,159,49,56,0,2,0,0,29,24,1158,1167,930,927,150,158,49,56,0,2,0,0,29,24,5,7,5,6,0,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,12,1993,964,1029,818,860,99,133,29,23,0,0,0,0,18,13,958,1021,813,854,98,131,29,23,0,0,0,0,18,13,6,8,5,6,1,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,13,1591,790,801,680,688,75,85,24,10,0,2,0,0,11,16,785,796,676,684,75,84,23,10,0,2,0,0,11,16,5,5,4,4,0,1,1,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,14,1315,612,703,545,612,54,73,3,7,0,3,0,0,10,8,609,701,542,611,54,73,3,7,0,3,0,0,10,7,3,2,3,1,0,0,0,0,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,2,15,1072,479,593,425,499,39,79,7,9,0,0,0,0,8,6,479,591,425,497,39,79,7,9,0,0,0,0,8,6,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,16,828,323,505,276,433,43,66,0,0,0,0,0,0,4,6,323,504,276,432,43,66,0,0,0,0,0,0,4,6,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,17,550,190,360,173,322,16,34,0,1,0,0,0,0,1,3,189,356,172,321,16,31,0,1,0,0,0,0,1,3,1,4,1,1,0,3,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,18,447,116,331,99,288,15,41,1,1,0,0,0,0,1,1,116,330,99,287,15,41,1,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,99,34874,17119,17755,13491,13753,2179,2494,927,953,13,22,2,1,507,532,16931,17572,13339,13618,2170,2466,908,942,12,21,2,1,500,524,188,183,152,135,9,28,19,11,1,1,0,0,7,8 -050,01,079,Alabama,Lawrence County,3,0,456,222,234,176,183,32,39,3,3,2,0,0,0,9,9,215,229,170,179,31,39,3,3,2,0,0,0,9,8,7,5,6,4,1,0,0,0,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,3,1,1709,887,822,693,646,107,95,51,41,0,2,0,0,36,38,863,801,675,630,106,91,47,40,0,2,0,0,35,38,24,21,18,16,1,4,4,1,0,0,0,0,1,0 -050,01,079,Alabama,Lawrence County,3,2,2450,1299,1151,971,838,185,165,98,105,0,0,0,0,45,43,1273,1130,946,821,184,163,98,103,0,0,0,0,45,43,26,21,25,17,1,2,0,2,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,3,2669,1377,1292,987,914,225,219,105,98,1,0,0,0,59,61,1358,1275,971,903,225,216,103,97,1,0,0,0,58,59,19,17,16,11,0,3,2,1,0,0,0,0,1,2 -050,01,079,Alabama,Lawrence County,3,4,2431,1284,1147,895,787,204,188,120,108,1,1,0,0,64,63,1267,1133,887,777,203,186,115,106,1,1,0,0,61,63,17,14,8,10,1,2,5,2,0,0,0,0,3,0 -050,01,079,Alabama,Lawrence County,3,5,2099,1086,1013,789,770,168,129,87,79,0,0,2,0,40,35,1057,1001,763,759,167,128,85,79,0,0,2,0,40,35,29,12,26,11,1,1,2,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,6,2116,1009,1107,816,851,108,149,57,69,3,4,0,0,25,34,991,1081,799,829,107,148,57,67,3,4,0,0,25,33,18,26,17,22,1,1,0,2,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,3,7,2619,1272,1347,1041,1063,138,187,53,58,4,3,0,1,36,35,1249,1326,1022,1046,137,185,51,58,4,2,0,1,35,34,23,21,19,17,1,2,2,0,0,1,0,0,1,1 -050,01,079,Alabama,Lawrence County,3,8,2919,1430,1489,1147,1150,171,177,73,104,1,1,0,0,38,57,1418,1479,1135,1142,171,177,73,103,1,1,0,0,38,56,12,10,12,8,0,0,0,1,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,3,9,2632,1265,1367,989,1011,150,202,81,81,0,1,0,0,45,72,1258,1349,982,1000,150,197,81,79,0,1,0,0,45,72,7,18,7,11,0,5,0,2,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,10,2457,1227,1230,979,903,145,203,63,81,0,3,0,0,40,40,1213,1217,970,893,144,203,60,81,0,3,0,0,39,37,14,13,9,10,1,0,3,0,0,0,0,0,1,3 -050,01,079,Alabama,Lawrence County,3,11,2398,1205,1193,964,950,159,157,54,57,0,2,0,0,28,27,1196,1187,955,945,159,156,54,57,0,2,0,0,28,27,9,6,9,5,0,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,12,2001,939,1062,799,887,95,137,25,21,0,0,0,0,20,17,934,1055,795,882,94,135,25,21,0,0,0,0,20,17,5,7,4,5,1,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,13,1643,837,806,728,691,70,85,26,12,0,2,0,0,13,16,832,802,724,688,70,84,25,12,0,2,0,0,13,16,5,4,4,3,0,1,1,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,14,1318,608,710,529,622,63,71,5,4,0,3,0,0,11,10,605,708,526,621,63,71,5,4,0,3,0,0,11,9,3,2,3,1,0,0,0,0,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,3,15,1117,510,607,457,510,39,82,7,11,0,0,0,0,7,4,510,605,457,508,39,82,7,11,0,0,0,0,7,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,16,840,332,508,285,436,43,65,0,0,0,0,0,0,4,7,332,507,285,435,43,65,0,0,0,0,0,0,4,7,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,17,561,207,354,188,318,17,33,0,0,0,0,0,0,2,3,206,350,187,317,17,30,0,0,0,0,0,0,2,3,1,4,1,1,0,3,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,18,435,99,336,85,284,12,50,1,1,0,0,0,0,1,1,99,335,85,283,12,50,1,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,99,34870,17095,17775,13518,13814,2131,2433,909,933,12,22,2,1,523,572,16876,17570,13334,13658,2122,2406,890,922,12,21,2,1,516,562,219,205,184,156,9,27,19,11,0,1,0,0,7,10 -050,01,079,Alabama,Lawrence County,4,0,414,207,207,159,170,33,21,3,2,2,0,0,0,10,14,204,204,157,168,32,21,3,2,2,0,0,0,10,13,3,3,2,2,1,0,0,0,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,4,1,1722,879,843,700,643,102,118,39,37,0,2,0,0,38,43,852,823,678,628,101,114,36,36,0,2,0,0,37,43,27,20,22,15,1,4,3,1,0,0,0,0,1,0 -050,01,079,Alabama,Lawrence County,4,2,2311,1215,1096,909,794,161,148,97,106,0,0,0,0,48,48,1188,1074,883,777,160,146,97,103,0,0,0,0,48,48,27,22,26,17,1,2,0,3,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,3,2663,1378,1285,991,926,223,211,102,95,1,0,0,0,61,53,1354,1260,971,906,222,208,100,94,1,0,0,0,60,52,24,25,20,20,1,3,2,1,0,0,0,0,1,1 -050,01,079,Alabama,Lawrence County,4,4,2390,1251,1139,880,782,196,185,115,108,1,1,0,0,59,63,1228,1119,865,766,195,183,110,106,1,1,0,0,57,63,23,20,15,16,1,2,5,2,0,0,0,0,2,0 -050,01,079,Alabama,Lawrence County,4,5,2184,1137,1047,816,788,160,134,102,84,0,0,2,0,57,41,1108,1034,790,777,159,133,100,84,0,0,2,0,57,40,29,13,26,11,1,1,2,0,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,4,6,1991,941,1050,761,822,103,129,51,62,3,4,0,0,23,33,920,1028,742,803,102,128,51,61,3,4,0,0,22,32,21,22,19,19,1,1,0,1,0,0,0,0,1,1 -050,01,079,Alabama,Lawrence County,4,7,2487,1221,1266,982,1000,133,175,70,59,4,2,0,1,32,29,1194,1253,959,990,132,173,68,59,4,2,0,1,31,28,27,13,23,10,1,2,2,0,0,0,0,0,1,1 -050,01,079,Alabama,Lawrence County,4,8,2805,1380,1425,1105,1124,165,176,67,89,1,1,0,0,42,35,1362,1415,1088,1116,165,176,66,88,1,1,0,0,42,34,18,10,17,8,0,0,1,1,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,4,9,2696,1294,1402,1039,1034,146,191,71,86,0,1,0,0,38,90,1285,1382,1030,1021,146,186,71,84,0,1,0,0,38,90,9,20,9,13,0,5,0,2,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,10,2516,1250,1266,982,944,145,196,80,79,0,3,0,0,43,44,1235,1255,973,935,143,196,77,79,0,3,0,0,42,42,15,11,9,9,2,0,3,0,0,0,0,0,1,2 -050,01,079,Alabama,Lawrence County,4,11,2374,1194,1180,946,910,164,177,49,62,0,2,0,0,35,29,1185,1173,937,904,164,176,49,62,0,2,0,0,35,29,9,7,9,6,0,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,12,2117,995,1122,828,944,111,126,34,27,0,0,0,0,22,25,989,1115,823,939,110,124,34,27,0,0,0,0,22,25,6,7,5,5,1,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,13,1728,874,854,765,725,69,98,27,13,0,2,0,0,13,16,869,850,761,722,69,97,26,13,0,2,0,0,13,16,5,4,4,3,0,1,1,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,14,1290,600,690,515,609,65,62,7,6,0,2,0,0,13,11,597,688,512,608,65,62,7,6,0,2,0,0,13,10,3,2,3,1,0,0,0,0,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,4,15,1184,557,627,504,526,40,83,5,12,0,0,0,0,8,6,557,625,504,524,40,83,5,12,0,0,0,0,8,6,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,16,826,334,492,287,428,41,56,1,0,0,0,0,0,5,8,334,491,287,427,41,56,1,0,0,0,0,0,5,8,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,17,540,188,352,168,308,19,41,0,1,0,0,0,0,1,2,187,348,167,307,19,38,0,1,0,0,0,0,1,2,1,4,1,1,0,3,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,18,460,114,346,101,294,10,49,1,1,0,0,0,0,2,2,114,345,101,293,10,49,1,1,0,0,0,0,2,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,99,34698,17009,17689,13438,13771,2086,2376,921,929,12,20,2,1,550,592,16762,17482,13228,13611,2075,2349,902,918,12,20,2,1,543,583,247,207,210,160,11,27,19,11,0,0,0,0,7,9 -050,01,079,Alabama,Lawrence County,5,0,409,201,208,173,178,16,18,3,2,1,0,0,0,8,10,193,199,166,171,15,18,3,2,1,0,0,0,8,8,8,9,7,7,1,0,0,0,0,0,0,0,0,2 -050,01,079,Alabama,Lawrence County,5,1,1674,831,843,653,643,103,120,33,36,0,2,0,0,42,42,808,828,636,632,102,117,30,35,0,2,0,0,40,42,23,15,17,11,1,3,3,1,0,0,0,0,2,0 -050,01,079,Alabama,Lawrence County,5,2,2301,1200,1101,925,802,127,142,97,104,0,0,0,0,51,53,1170,1082,898,790,126,140,95,100,0,0,0,0,51,52,30,19,27,12,1,2,2,4,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,5,3,2601,1400,1201,997,873,233,187,102,89,1,0,0,0,67,52,1370,1172,974,850,232,184,98,87,1,0,0,0,65,51,30,29,23,23,1,3,4,2,0,0,0,0,2,1 -050,01,079,Alabama,Lawrence County,5,4,2395,1217,1178,863,830,178,168,119,110,1,1,0,0,56,69,1199,1160,853,817,177,166,114,107,1,1,0,0,54,69,18,18,10,13,1,2,5,3,0,0,0,0,2,0 -050,01,079,Alabama,Lawrence County,5,5,2115,1108,1007,784,739,156,129,117,89,1,0,1,1,49,49,1089,997,768,731,155,128,115,89,1,0,1,1,49,48,19,10,16,8,1,1,2,0,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,5,6,1945,956,989,775,757,101,126,43,71,3,4,0,0,34,31,939,962,760,733,100,125,43,70,3,4,0,0,33,30,17,27,15,24,1,1,0,1,0,0,0,0,1,1 -050,01,079,Alabama,Lawrence County,5,7,2422,1159,1263,939,1002,119,162,67,64,3,3,0,1,31,31,1136,1244,919,987,118,160,66,63,3,2,0,1,30,31,23,19,20,15,1,2,1,1,0,1,0,0,1,0 -050,01,079,Alabama,Lawrence County,5,8,2671,1281,1390,1037,1087,131,177,71,79,1,1,0,0,41,46,1260,1380,1017,1079,131,177,70,78,1,1,0,0,41,45,21,10,20,8,0,0,1,1,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,5,9,2803,1413,1390,1122,1051,166,186,88,91,0,1,0,0,37,61,1401,1370,1110,1037,166,181,88,90,0,1,0,0,37,61,12,20,12,14,0,5,0,1,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,10,2533,1241,1292,995,963,129,187,75,85,0,3,0,0,42,54,1228,1279,986,953,127,186,73,85,0,3,0,0,42,52,13,13,9,10,2,1,2,0,0,0,0,0,0,2 -050,01,079,Alabama,Lawrence County,5,11,2341,1155,1186,902,916,162,179,50,63,0,1,0,0,41,27,1149,1178,896,909,162,178,50,63,0,1,0,0,41,27,6,8,6,7,0,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,12,2126,1023,1103,847,918,113,124,39,32,0,1,1,0,23,28,1017,1096,842,913,112,122,39,32,0,1,1,0,23,28,6,7,5,5,1,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,13,1804,881,923,769,774,75,109,21,14,0,3,0,0,16,23,876,916,765,767,75,109,20,14,0,3,0,0,16,23,5,7,4,7,0,0,1,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,14,1364,637,727,554,641,58,65,10,7,0,2,0,0,15,12,634,724,552,639,58,65,10,7,0,2,0,0,14,11,3,3,2,2,0,0,0,0,0,0,0,0,1,1 -050,01,079,Alabama,Lawrence County,5,15,1160,545,615,489,529,40,69,5,11,0,0,0,0,11,6,545,613,489,527,40,69,5,11,0,0,0,0,11,6,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,16,838,345,493,311,421,28,64,1,1,0,0,0,0,5,7,345,492,311,420,28,64,1,1,0,0,0,0,5,7,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,17,520,180,340,145,295,30,40,1,3,0,0,0,0,4,2,179,337,144,294,30,38,1,3,0,0,0,0,4,2,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,18,466,130,336,115,286,13,45,1,1,0,0,0,0,1,4,130,335,115,285,13,45,1,1,0,0,0,0,1,4,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,99,34488,16903,17585,13395,13705,1978,2297,943,952,11,22,2,2,574,607,16668,17364,13201,13534,1967,2272,922,938,11,21,2,2,565,597,235,221,194,171,11,25,21,14,0,1,0,0,9,10 -050,01,079,Alabama,Lawrence County,6,0,400,191,209,155,180,24,17,2,1,1,0,0,0,9,11,186,198,151,171,23,17,2,1,1,0,0,0,9,9,5,11,4,9,1,0,0,0,0,0,0,0,0,2 -050,01,079,Alabama,Lawrence County,6,1,1655,826,829,642,616,101,124,38,40,0,2,0,0,45,47,802,813,624,604,100,121,35,39,0,2,0,0,43,47,24,16,18,12,1,3,3,1,0,0,0,0,2,0 -050,01,079,Alabama,Lawrence County,6,2,2208,1150,1058,879,778,120,124,95,101,0,0,0,0,56,55,1116,1035,848,762,119,122,93,97,0,0,0,0,56,54,34,23,31,16,1,2,2,4,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,6,3,2521,1322,1199,946,891,210,170,100,85,1,0,0,0,65,53,1289,1166,920,864,209,167,96,83,1,0,0,0,63,52,33,33,26,27,1,3,4,2,0,0,0,0,2,1 -050,01,079,Alabama,Lawrence County,6,4,2409,1258,1151,900,810,184,172,115,100,1,1,0,0,58,68,1236,1136,886,800,183,170,110,97,1,1,0,0,56,68,22,15,14,10,1,2,5,3,0,0,0,0,2,0 -050,01,079,Alabama,Lawrence County,6,5,2127,1096,1031,770,758,138,140,125,82,1,0,1,1,61,50,1074,1014,752,743,136,139,123,82,1,0,1,1,61,49,22,17,18,15,2,1,2,0,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,6,6,1943,987,956,775,743,121,113,59,64,3,4,0,0,29,32,961,943,751,732,120,112,59,63,3,4,0,0,28,32,26,13,24,11,1,1,0,1,0,0,0,0,1,0 -050,01,079,Alabama,Lawrence County,6,7,2326,1113,1213,909,950,116,154,54,65,3,3,0,1,31,40,1088,1187,886,928,116,152,53,64,3,2,0,1,30,40,25,26,23,22,0,2,1,1,0,1,0,0,1,0 -050,01,079,Alabama,Lawrence County,6,8,2597,1266,1331,1038,1043,124,175,64,72,1,1,0,0,39,40,1246,1322,1019,1035,124,175,63,71,1,1,0,0,39,40,20,9,19,8,0,0,1,1,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,9,2802,1403,1399,1119,1058,163,177,73,99,0,1,0,0,48,64,1391,1384,1107,1048,163,173,73,98,0,1,0,0,48,64,12,15,12,10,0,4,0,1,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,10,2506,1212,1294,943,959,151,187,78,93,0,3,0,0,40,52,1199,1280,935,948,148,186,76,93,0,3,0,0,40,50,13,14,8,11,3,1,2,0,0,0,0,0,0,2 -050,01,079,Alabama,Lawrence County,6,11,2365,1159,1206,925,932,152,180,47,60,0,1,0,0,35,33,1153,1198,919,926,152,178,47,60,0,1,0,0,35,33,6,8,6,6,0,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,12,2149,1044,1105,866,910,108,134,43,37,0,1,0,0,27,23,1037,1098,860,904,107,133,43,37,0,1,0,0,27,23,7,7,6,6,1,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,13,1888,920,968,790,803,92,123,25,19,0,3,0,0,13,20,916,964,787,799,92,123,24,19,0,3,0,0,13,20,4,4,3,4,0,0,1,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,14,1401,667,734,587,642,54,70,10,7,0,2,0,0,16,13,664,732,585,640,54,70,10,7,0,2,0,0,15,13,3,2,2,2,0,0,0,0,0,0,0,0,1,0 -050,01,079,Alabama,Lawrence County,6,15,1171,552,619,489,542,52,55,3,14,0,0,0,0,8,8,552,617,489,540,52,55,3,14,0,0,0,0,8,8,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,16,831,343,488,309,420,27,58,2,1,0,0,0,0,5,9,343,487,309,419,27,58,2,1,0,0,0,0,5,9,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,17,555,196,359,169,317,24,39,1,2,0,0,0,0,2,1,195,354,168,314,24,37,1,2,0,0,0,0,2,1,1,5,1,3,0,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,18,464,124,340,108,286,14,49,1,2,0,0,0,0,1,3,124,339,108,285,14,49,1,2,0,0,0,0,1,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,99,34318,16829,17489,13319,13638,1975,2261,935,944,11,22,1,2,588,622,16572,17267,13104,13462,1963,2237,914,930,11,21,1,2,579,615,257,222,215,176,12,24,21,14,0,1,0,0,9,7 -050,01,079,Alabama,Lawrence County,7,0,440,202,238,163,197,24,22,2,3,1,1,0,0,12,15,196,231,158,190,24,22,2,3,1,1,0,0,11,15,6,7,5,7,0,0,0,0,0,0,0,0,1,0 -050,01,079,Alabama,Lawrence County,7,1,1628,802,826,635,631,85,110,34,37,0,1,0,0,48,47,768,806,604,616,85,108,32,36,0,1,0,0,47,45,34,20,31,15,0,2,2,1,0,0,0,0,1,2 -050,01,079,Alabama,Lawrence County,7,2,2174,1121,1053,848,774,121,113,90,103,1,1,0,0,61,62,1085,1032,816,759,121,112,87,100,1,1,0,0,60,60,36,21,32,15,0,1,3,3,0,0,0,0,1,2 -050,01,079,Alabama,Lawrence County,7,3,2506,1326,1180,965,872,191,153,103,97,0,1,0,0,67,57,1286,1149,935,848,190,152,98,93,0,1,0,0,63,55,40,31,30,24,1,1,5,4,0,0,0,0,4,2 -050,01,079,Alabama,Lawrence County,7,4,2462,1265,1197,915,845,189,188,105,95,1,1,0,0,55,68,1248,1175,905,828,188,188,100,92,1,1,0,0,54,66,17,22,10,17,1,0,5,3,0,0,0,0,1,2 -050,01,079,Alabama,Lawrence County,7,5,2079,1075,1004,764,731,149,142,104,83,3,1,1,0,54,47,1055,989,748,718,148,140,102,83,2,1,1,0,54,47,20,15,16,13,1,2,2,0,1,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,6,1963,999,964,768,754,112,115,68,60,2,3,1,0,48,32,975,943,748,734,111,115,67,59,2,3,0,0,47,32,24,21,20,20,1,0,1,1,0,0,1,0,1,0 -050,01,079,Alabama,Lawrence County,7,7,2180,1062,1118,852,878,107,139,70,63,2,1,0,1,31,36,1036,1093,829,857,107,138,68,61,2,1,0,0,30,36,26,25,23,21,0,1,2,2,0,0,0,1,1,0 -050,01,079,Alabama,Lawrence County,7,8,2531,1228,1303,995,1025,131,171,64,62,2,2,0,0,36,43,1206,1290,976,1017,131,170,61,58,2,2,0,0,36,43,22,13,19,8,0,1,3,4,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,9,2864,1411,1453,1125,1118,158,178,79,93,1,3,0,0,48,61,1400,1440,1116,1107,157,176,78,93,1,3,0,0,48,61,11,13,9,11,1,2,1,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,10,2578,1235,1343,968,1009,139,184,79,92,0,1,0,0,49,57,1222,1330,961,1001,136,182,77,91,0,1,0,0,48,55,13,13,7,8,3,2,2,1,0,0,0,0,1,2 -050,01,079,Alabama,Lawrence County,7,11,2339,1169,1170,939,898,145,173,52,66,3,2,0,0,30,31,1162,1161,933,890,145,172,51,66,3,2,0,0,30,31,7,9,6,8,0,1,1,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,12,2259,1125,1134,907,905,133,143,50,46,0,2,0,0,35,38,1121,1127,903,900,133,141,50,46,0,2,0,0,35,38,4,7,4,5,0,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,13,1930,905,1025,774,861,90,119,22,19,1,1,0,0,18,25,901,1022,770,858,90,119,22,19,1,1,0,0,18,25,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,14,1460,691,769,600,658,58,91,16,5,0,1,0,0,17,14,689,767,598,656,58,91,16,5,0,1,0,0,17,14,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,15,1157,555,602,501,528,43,55,7,11,0,1,0,0,4,7,554,601,500,527,43,55,7,11,0,1,0,0,4,7,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,16,871,346,525,311,455,27,61,2,1,0,0,0,0,6,8,346,525,311,455,27,61,2,1,0,0,0,0,6,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,17,566,214,352,186,309,24,39,1,2,0,0,0,0,3,2,213,347,185,306,24,37,1,2,0,0,0,0,3,2,1,5,1,3,0,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,18,448,115,333,93,284,19,42,1,2,0,0,0,0,2,5,115,332,93,283,19,42,1,2,0,0,0,0,2,5,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,99,34435,16846,17589,13309,13732,1945,2238,949,940,17,23,2,1,624,655,16578,17360,13089,13550,1937,2221,922,921,16,23,1,0,613,645,268,229,220,182,8,17,27,19,1,0,1,1,11,10 -050,01,079,Alabama,Lawrence County,8,0,437,220,217,176,181,24,23,4,1,1,1,0,0,15,11,211,206,168,170,24,23,4,1,1,1,0,0,14,11,9,11,8,11,0,0,0,0,0,0,0,0,1,0 -050,01,079,Alabama,Lawrence County,8,1,1551,753,798,595,604,83,96,37,43,0,1,0,0,38,54,723,777,569,590,82,94,34,41,0,1,0,0,38,51,30,21,26,14,1,2,3,2,0,0,0,0,0,3 -050,01,079,Alabama,Lawrence County,8,2,2141,1080,1061,806,773,117,120,91,105,1,1,0,0,65,62,1051,1035,781,754,117,120,88,99,1,1,0,0,64,61,29,26,25,19,0,0,3,6,0,0,0,0,1,1 -050,01,079,Alabama,Lawrence County,8,3,2413,1287,1126,925,835,189,139,99,96,0,2,0,0,74,54,1247,1097,895,811,187,139,94,92,0,2,0,0,71,53,40,29,30,24,2,0,5,4,0,0,0,0,3,1 -050,01,079,Alabama,Lawrence County,8,4,2425,1251,1174,905,843,176,190,99,67,1,1,0,0,70,73,1231,1151,891,825,174,190,96,64,1,1,0,0,69,71,20,23,14,18,2,0,3,3,0,0,0,0,1,2 -050,01,079,Alabama,Lawrence County,8,5,1952,999,953,712,703,141,126,101,68,3,1,1,1,41,54,981,939,698,692,140,125,99,67,2,1,1,1,41,53,18,14,14,11,1,1,2,1,1,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,8,6,1948,1001,947,768,729,115,104,76,75,3,3,1,1,38,35,982,932,752,715,114,104,75,74,3,3,0,1,38,35,19,15,16,14,1,0,1,1,0,0,1,0,0,0 -050,01,079,Alabama,Lawrence County,8,7,2073,1022,1051,803,810,100,130,86,68,2,1,1,1,30,41,992,1023,777,785,100,130,83,66,2,1,1,0,29,41,30,28,26,25,0,0,3,2,0,0,0,1,1,0 -050,01,079,Alabama,Lawrence County,8,8,2481,1209,1272,981,1000,129,149,58,73,2,2,0,0,39,48,1185,1258,961,991,129,148,54,69,2,2,0,0,39,48,24,14,20,9,0,1,4,4,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,9,2796,1376,1420,1097,1099,152,172,81,92,1,3,0,0,45,54,1362,1410,1085,1092,151,170,80,91,1,3,0,0,45,54,14,10,12,7,1,2,1,1,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,10,2591,1245,1346,995,1015,135,196,65,86,0,1,0,0,50,48,1231,1332,987,1005,131,194,63,85,0,1,0,0,50,47,14,14,8,10,4,2,2,1,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,8,11,2414,1207,1207,970,934,148,164,49,71,3,1,0,0,37,37,1197,1199,962,927,147,163,48,71,3,1,0,0,37,37,10,8,8,7,1,1,1,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,12,2275,1148,1127,916,897,137,140,56,45,0,3,0,0,39,42,1143,1121,911,891,137,140,56,45,0,3,0,0,39,42,5,6,5,6,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,13,1954,902,1052,762,885,98,128,22,17,1,1,0,0,19,21,898,1046,758,879,98,128,22,17,1,1,0,0,19,21,4,6,4,6,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,14,1512,728,784,634,664,54,86,20,12,0,1,0,0,20,21,725,782,631,662,54,86,20,12,0,1,0,0,20,21,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,15,1165,565,600,494,530,56,49,4,14,0,1,0,0,11,6,564,599,493,529,56,49,4,14,0,1,0,0,11,6,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,16,876,348,528,315,445,25,72,3,1,0,0,0,0,5,10,346,527,313,445,25,71,3,1,0,0,0,0,5,10,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,17,570,213,357,177,315,30,35,2,4,0,0,0,0,4,3,213,355,177,313,30,35,2,4,0,0,0,0,4,3,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,18,454,125,329,104,293,18,29,1,2,0,0,0,0,2,5,125,328,104,292,18,29,1,2,0,0,0,0,2,5,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,99,34028,16679,17349,13135,13555,1927,2148,954,940,18,24,3,3,642,679,16407,17117,12913,13368,1914,2138,926,915,17,24,2,2,635,670,272,232,222,187,13,10,28,25,1,0,1,1,7,9 -050,01,079,Alabama,Lawrence County,9,0,453,223,230,175,192,24,20,7,3,1,1,0,0,16,14,213,221,166,183,24,20,7,3,1,1,0,0,15,14,10,9,9,9,0,0,0,0,0,0,0,0,1,0 -050,01,079,Alabama,Lawrence County,9,1,1611,792,819,618,630,89,91,37,46,0,1,0,0,48,51,771,790,601,607,88,90,34,44,0,1,0,0,48,48,21,29,17,23,1,1,3,2,0,0,0,0,0,3 -050,01,079,Alabama,Lawrence County,9,2,2207,1128,1079,842,785,127,124,89,103,1,1,0,0,69,66,1090,1052,808,765,127,124,86,98,1,1,0,0,68,64,38,27,34,20,0,0,3,5,0,0,0,0,1,2 -050,01,079,Alabama,Lawrence County,9,3,2293,1195,1098,863,812,160,143,96,95,0,2,0,0,76,46,1157,1070,836,789,157,143,91,91,0,2,0,0,73,45,38,28,27,23,3,0,5,4,0,0,0,0,3,1 -050,01,079,Alabama,Lawrence County,9,4,2462,1243,1219,933,891,172,185,75,72,1,1,0,0,62,70,1225,1189,922,866,169,185,72,69,1,1,0,0,61,68,18,30,11,25,3,0,3,3,0,0,0,0,1,2 -050,01,079,Alabama,Lawrence County,9,5,1954,977,977,731,719,133,133,73,75,3,1,1,0,36,49,955,965,713,710,132,132,71,74,2,1,1,0,36,48,22,12,18,9,1,1,2,1,1,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,9,6,2023,1029,994,769,740,105,121,87,84,3,3,1,1,64,45,1010,971,754,718,104,121,86,83,3,3,0,1,63,45,19,23,15,22,1,0,1,1,0,0,1,0,1,0 -050,01,079,Alabama,Lawrence County,9,7,1956,954,1002,760,769,95,125,73,63,2,1,0,1,24,43,932,986,742,756,95,125,70,61,2,1,0,0,23,43,22,16,18,13,0,0,3,2,0,0,0,1,1,0 -050,01,079,Alabama,Lawrence County,9,8,2443,1186,1257,956,1013,113,129,73,66,2,2,0,0,42,47,1157,1237,932,998,112,128,69,62,2,2,0,0,42,47,29,20,24,15,1,1,4,4,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,9,2739,1339,1400,1068,1078,154,181,70,93,1,3,0,0,46,45,1327,1391,1058,1072,153,179,69,92,1,3,0,0,46,45,12,9,10,6,1,2,1,1,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,10,2660,1282,1378,1052,1051,126,196,61,79,0,1,1,0,42,51,1265,1363,1041,1040,122,193,59,79,0,1,1,0,42,50,17,15,11,11,4,3,2,0,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,9,11,2531,1272,1259,999,986,158,167,71,66,3,1,0,0,41,39,1261,1254,990,982,157,166,70,66,3,1,0,0,41,39,11,5,9,4,1,1,1,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,12,2217,1112,1105,872,864,144,147,53,50,0,2,1,0,42,42,1108,1100,868,859,144,147,53,50,0,2,1,0,42,42,4,5,4,5,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,13,2073,970,1103,804,937,119,113,26,27,1,1,0,0,20,25,966,1100,800,934,119,113,26,27,1,1,0,0,20,25,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,14,1571,750,821,662,671,51,120,18,13,0,0,0,0,19,17,748,819,660,669,51,120,18,13,0,0,0,0,19,17,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,15,1146,545,601,467,527,58,52,9,12,0,1,0,0,11,9,544,600,466,526,58,52,9,12,0,1,0,0,11,9,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,16,922,409,513,378,428,24,73,2,1,0,0,0,0,5,11,407,510,376,427,24,71,2,1,0,0,0,0,5,11,2,3,2,1,0,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,17,596,209,387,180,341,23,39,1,3,0,0,0,0,5,4,209,385,180,339,23,39,1,3,0,0,0,0,5,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,18,436,127,309,102,270,19,31,2,2,0,0,0,0,4,6,127,308,102,269,19,31,2,2,0,0,0,0,4,6,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,99,34293,16742,17551,13231,13704,1894,2190,923,953,18,22,4,2,672,680,16472,17311,13015,13509,1878,2179,895,930,17,22,3,1,664,670,270,240,216,195,16,11,28,23,1,0,1,1,8,10 -050,01,079,Alabama,Lawrence County,10,0,462,224,238,181,193,25,25,5,3,0,1,0,0,13,16,217,231,175,187,25,25,5,3,0,1,0,0,12,15,7,7,6,6,0,0,0,0,0,0,0,0,1,1 -050,01,079,Alabama,Lawrence County,10,1,1602,793,809,603,613,93,91,46,50,0,1,0,0,51,54,768,788,583,599,92,90,43,47,0,1,0,0,50,51,25,21,20,14,1,1,3,3,0,0,0,0,1,3 -050,01,079,Alabama,Lawrence County,10,2,2151,1078,1073,791,776,123,114,92,111,1,1,0,0,71,71,1041,1041,759,755,123,114,88,103,1,1,0,0,70,68,37,32,32,21,0,0,4,8,0,0,0,0,1,3 -050,01,079,Alabama,Lawrence County,10,3,2283,1202,1081,883,789,144,140,95,98,0,2,0,0,80,52,1162,1051,856,765,141,140,89,93,0,2,0,0,76,51,40,30,27,24,3,0,6,5,0,0,0,0,4,1 -050,01,079,Alabama,Lawrence County,10,4,2493,1281,1212,940,893,185,173,86,73,1,1,0,0,69,72,1264,1182,930,869,182,173,82,69,1,1,0,0,69,70,17,30,10,24,3,0,4,4,0,0,0,0,0,2 -050,01,079,Alabama,Lawrence County,10,5,1940,949,991,708,761,125,123,73,71,4,1,0,1,39,34,923,970,686,742,124,122,71,70,3,1,0,1,39,34,26,21,22,19,1,1,2,1,1,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,6,1884,949,935,719,710,105,111,85,71,3,3,1,1,36,39,928,916,702,691,104,111,84,71,3,3,0,1,35,39,21,19,17,19,1,0,1,0,0,0,1,0,1,0 -050,01,079,Alabama,Lawrence County,10,7,1931,969,962,761,737,94,112,74,69,1,1,1,1,38,42,943,938,738,717,94,112,72,66,1,1,1,0,37,42,26,24,23,20,0,0,2,3,0,0,0,1,1,0 -050,01,079,Alabama,Lawrence County,10,8,2407,1155,1252,924,990,118,137,64,72,2,2,0,0,47,51,1129,1233,902,976,118,136,60,68,2,2,0,0,47,51,26,19,22,14,0,1,4,4,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,9,2601,1280,1321,1022,1027,135,165,73,73,1,3,0,0,49,53,1262,1311,1006,1020,134,163,72,72,1,3,0,0,49,53,18,10,16,7,1,2,1,1,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,10,2814,1379,1435,1130,1089,145,192,64,88,0,1,0,0,40,65,1362,1421,1118,1079,141,189,63,88,0,1,0,0,40,64,17,14,12,10,4,3,1,0,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,10,11,2540,1275,1265,1019,990,151,163,66,70,3,2,0,0,36,40,1262,1258,1008,984,150,162,65,70,3,2,0,0,36,40,13,7,11,6,1,1,1,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,12,2236,1113,1123,852,867,153,159,55,48,0,3,1,0,52,46,1108,1118,847,862,153,159,55,48,0,3,1,0,52,46,5,5,5,5,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,13,2094,974,1120,812,929,111,121,28,35,1,2,0,0,22,33,970,1116,808,925,111,121,28,35,1,2,0,0,22,33,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,14,1607,764,843,663,691,66,125,16,9,0,0,0,0,19,18,761,840,661,688,66,125,16,9,0,0,0,0,18,18,3,3,2,3,0,0,0,0,0,0,0,0,1,0 -050,01,079,Alabama,Lawrence County,10,15,1224,593,631,511,545,64,59,12,13,0,1,0,0,6,13,592,630,510,544,64,59,12,13,0,1,0,0,6,13,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,16,901,370,531,337,451,25,67,2,2,0,0,0,0,6,11,368,528,335,450,25,65,2,2,0,0,0,0,6,11,2,3,2,1,0,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,17,616,241,375,213,316,22,52,1,4,0,0,0,0,5,3,241,373,213,314,22,52,1,4,0,0,0,0,5,3,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,18,410,120,290,93,245,20,36,2,2,0,0,0,0,5,7,120,289,93,244,20,36,2,2,0,0,0,0,5,7,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,99,34196,16709,17487,13162,13612,1904,2165,939,962,17,25,3,3,684,720,16421,17234,12930,13411,1889,2154,910,933,16,25,2,2,674,709,288,253,232,201,15,11,29,29,1,0,1,1,10,11 -050,01,079,Alabama,Lawrence County,11,0,448,213,235,170,193,23,18,8,6,0,1,0,0,12,17,204,224,163,183,23,18,7,6,0,1,0,0,11,16,9,11,7,10,0,0,1,0,0,0,0,0,1,1 -050,01,079,Alabama,Lawrence County,11,1,1701,851,850,650,646,94,94,52,53,0,1,0,0,55,56,822,826,627,629,93,93,48,50,0,1,0,0,54,53,29,24,23,17,1,1,4,3,0,0,0,0,1,3 -050,01,079,Alabama,Lawrence County,11,2,2162,1094,1068,804,767,126,110,88,113,1,1,0,0,75,77,1050,1024,766,734,126,110,83,105,1,1,0,0,74,74,44,44,38,33,0,0,5,8,0,0,0,0,1,3 -050,01,079,Alabama,Lawrence County,11,3,2228,1171,1057,862,786,129,123,97,90,0,2,0,0,83,56,1137,1025,842,760,126,123,90,85,0,2,0,0,79,55,34,32,20,26,3,0,7,5,0,0,0,0,4,1 -050,01,079,Alabama,Lawrence County,11,4,2451,1234,1217,914,914,173,162,90,70,1,1,0,0,56,70,1212,1178,898,881,170,162,87,66,1,1,0,0,56,68,22,39,16,33,3,0,3,4,0,0,0,0,0,2 -050,01,079,Alabama,Lawrence County,11,5,1967,1002,965,741,738,135,119,85,63,4,1,0,2,37,42,974,948,717,724,134,118,83,62,3,1,0,2,37,41,28,17,24,14,1,1,2,1,1,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,11,6,1884,947,937,733,704,97,98,54,98,3,3,1,0,59,34,927,922,717,689,96,98,53,98,3,3,0,0,58,34,20,15,16,15,1,0,1,0,0,0,1,0,1,0 -050,01,079,Alabama,Lawrence County,11,7,1925,948,977,720,755,101,115,93,58,1,1,0,1,33,47,915,952,690,734,101,115,91,55,1,1,0,0,32,47,33,25,30,21,0,0,2,3,0,0,0,1,1,0 -050,01,079,Alabama,Lawrence County,11,8,2331,1126,1205,900,955,111,131,68,69,2,2,0,0,45,48,1101,1185,881,940,110,130,63,65,2,2,0,0,45,48,25,20,19,15,1,1,5,4,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,9,2560,1277,1283,1030,996,129,164,69,68,1,3,0,0,48,52,1262,1271,1017,986,128,163,68,67,1,3,0,0,48,52,15,12,13,10,1,1,1,1,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,10,2826,1383,1443,1142,1121,141,188,57,86,0,1,1,0,42,47,1369,1429,1134,1111,136,185,56,86,0,1,1,0,42,46,14,14,8,10,5,3,1,0,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,11,11,2539,1260,1279,996,1009,152,161,74,68,3,2,0,0,35,39,1250,1270,988,1001,151,160,73,68,3,2,0,0,35,39,10,9,8,8,1,1,1,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,12,2252,1102,1150,862,892,147,163,48,47,0,2,1,0,44,46,1099,1145,859,887,147,163,48,47,0,2,1,0,44,46,3,5,3,5,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,13,2134,1002,1132,837,938,104,123,33,32,1,2,0,0,27,37,998,1129,833,935,104,123,33,32,1,2,0,0,27,37,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,14,1736,812,924,690,748,81,136,20,14,0,0,0,0,21,26,809,921,688,745,81,136,20,14,0,0,0,0,20,26,3,3,2,3,0,0,0,0,0,0,0,0,1,0 -050,01,079,Alabama,Lawrence County,11,15,1248,619,629,550,542,47,58,13,17,0,1,0,0,9,11,618,628,549,541,47,58,13,17,0,1,0,0,9,11,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,16,871,373,498,339,439,24,48,4,1,0,0,0,0,6,10,371,495,337,438,24,46,4,1,0,0,0,0,6,10,2,3,2,1,0,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,17,603,225,378,192,314,25,58,2,3,0,0,0,0,6,3,225,376,192,312,25,58,2,3,0,0,0,0,6,3,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,18,449,139,310,110,262,22,39,2,2,0,0,0,0,5,7,139,309,110,261,22,39,2,2,0,0,0,0,5,7,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,99,34315,16778,17537,13242,13719,1861,2108,957,958,17,24,3,3,698,725,16482,17257,13008,13491,1844,2098,924,929,16,24,2,2,688,713,296,280,234,228,17,10,33,29,1,0,1,1,10,12 -050,01,079,Alabama,Lawrence County,12,0,432,211,221,160,176,27,22,11,7,0,1,0,0,13,15,202,210,153,166,27,22,10,7,0,1,0,0,12,14,9,11,7,10,0,0,1,0,0,0,0,0,1,1 -050,01,079,Alabama,Lawrence County,12,1,1724,861,863,657,652,93,92,59,62,0,1,0,0,52,56,828,839,630,635,92,91,55,59,0,1,0,0,51,53,33,24,27,17,1,1,4,3,0,0,0,0,1,3 -050,01,079,Alabama,Lawrence County,12,2,2119,1064,1055,784,759,116,107,87,112,1,1,0,0,76,76,1018,1016,744,731,116,107,82,104,1,1,0,0,75,73,46,39,40,28,0,0,5,8,0,0,0,0,1,3 -050,01,079,Alabama,Lawrence County,12,3,2161,1129,1032,829,762,123,114,95,92,0,2,0,0,82,62,1095,1000,809,736,120,114,88,87,0,2,0,0,78,61,34,32,20,26,3,0,7,5,0,0,0,0,4,1 -050,01,079,Alabama,Lawrence County,12,4,2437,1255,1182,922,901,162,143,110,67,1,1,0,0,60,70,1235,1141,909,866,159,143,106,63,1,1,0,0,60,68,20,41,13,35,3,0,4,4,0,0,0,0,0,2 -050,01,079,Alabama,Lawrence County,12,5,1963,978,985,737,750,125,132,70,66,4,1,0,1,42,35,956,968,719,736,124,131,68,65,3,1,0,1,42,34,22,17,18,14,1,1,2,1,1,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,12,6,1877,948,929,725,689,102,98,80,99,3,3,1,1,37,39,925,910,706,670,101,98,79,99,3,3,0,1,36,39,23,19,19,19,1,0,1,0,0,0,1,0,1,0 -050,01,079,Alabama,Lawrence County,12,7,1918,955,963,730,729,95,111,88,73,1,1,1,1,40,48,930,943,708,713,95,111,86,70,1,1,1,0,39,48,25,20,22,16,0,0,2,3,0,0,0,1,1,0 -050,01,079,Alabama,Lawrence County,12,8,2225,1078,1147,849,904,101,117,81,72,2,2,0,0,45,52,1052,1129,829,891,100,116,76,68,2,2,0,0,45,52,26,18,20,13,1,1,5,4,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,9,2505,1255,1250,1013,982,131,161,61,59,1,3,0,0,49,45,1240,1236,1000,970,130,160,60,58,1,3,0,0,49,45,15,14,13,12,1,1,1,1,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,10,2848,1378,1470,1128,1139,144,188,63,89,0,1,1,0,42,53,1361,1455,1117,1129,139,185,62,88,0,1,1,0,42,52,17,15,11,10,5,3,1,1,0,0,0,0,0,1 -050,01,079,Alabama,Lawrence County,12,11,2633,1289,1344,1021,1063,153,165,75,71,3,2,0,0,37,43,1277,1336,1011,1056,152,164,74,71,3,2,0,0,37,43,12,8,10,7,1,1,1,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,12,2269,1126,1143,883,867,151,165,49,55,0,3,1,0,42,53,1121,1137,878,861,151,165,49,55,0,3,1,0,42,53,5,6,5,6,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,13,2229,1073,1156,884,940,124,139,36,37,1,2,0,0,28,38,1069,1153,880,937,124,139,36,37,1,2,0,0,28,38,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,14,1750,809,941,687,773,80,130,15,13,0,0,0,0,27,25,806,938,685,770,80,130,15,13,0,0,0,0,26,25,3,3,2,3,0,0,0,0,0,0,0,0,1,0 -050,01,079,Alabama,Lawrence County,12,15,1284,640,644,561,555,59,58,12,17,0,1,0,0,8,13,639,643,560,554,59,58,12,17,0,1,0,0,8,13,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,16,903,379,524,341,458,29,53,3,2,0,0,0,0,6,11,377,521,339,457,29,51,3,2,0,0,0,0,6,11,2,3,2,1,0,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,17,594,219,375,190,317,21,51,2,4,0,0,0,0,6,3,219,373,190,315,21,51,2,4,0,0,0,0,6,3,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,18,468,144,324,118,270,19,46,2,2,0,0,0,0,5,6,144,323,118,269,19,46,2,2,0,0,0,0,5,6,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,99,34339,16791,17548,13219,13686,1855,2092,999,999,17,25,4,3,697,743,16494,17271,12985,13462,1838,2082,965,969,16,25,3,2,687,731,297,277,234,224,17,10,34,30,1,0,1,1,10,12 -050,01,079,Alabama,Lawrence County,13,0,435,215,220,160,177,28,23,11,7,1,1,1,0,14,12,203,210,153,167,28,23,10,7,0,1,1,0,11,12,12,10,7,10,0,0,1,0,1,0,0,0,3,0 -050,01,079,Alabama,Lawrence County,13,1,1725,870,855,655,646,97,93,59,63,4,2,3,2,52,49,832,830,627,630,94,92,55,59,2,1,3,2,51,46,38,25,28,16,3,1,4,4,2,1,0,0,1,3 -050,01,079,Alabama,Lawrence County,13,2,2110,1055,1055,784,760,115,108,83,107,2,3,1,2,70,75,1008,1012,743,730,114,107,80,101,2,3,0,0,69,71,47,43,41,30,1,1,3,6,0,0,1,2,1,4 -050,01,079,Alabama,Lawrence County,13,3,2147,1120,1027,825,760,121,114,91,91,2,3,1,0,80,59,1089,992,806,734,118,113,87,86,1,3,1,0,76,56,31,35,19,26,3,1,4,5,1,0,0,0,4,3 -050,01,079,Alabama,Lawrence County,13,4,2420,1246,1174,915,896,161,141,107,63,2,1,2,4,59,69,1224,1132,901,860,158,141,104,61,2,1,1,2,58,67,22,42,14,36,3,0,3,2,0,0,1,2,1,2 -050,01,079,Alabama,Lawrence County,13,5,1977,988,989,741,752,125,135,68,66,5,2,4,2,45,32,957,968,721,737,124,133,66,64,3,2,1,0,42,32,31,21,20,15,1,2,2,2,2,0,3,2,3,0 -050,01,079,Alabama,Lawrence County,13,6,1885,953,932,726,687,104,98,78,100,5,3,4,3,36,41,926,906,708,669,101,97,78,99,3,3,1,0,35,38,27,26,18,18,3,1,0,1,2,0,3,3,1,3 -050,01,079,Alabama,Lawrence County,13,7,1934,965,969,735,733,97,111,88,71,3,3,1,1,41,50,934,944,711,716,97,111,86,69,1,2,1,0,38,46,31,25,24,17,0,0,2,2,2,1,0,1,3,4 -050,01,079,Alabama,Lawrence County,13,8,2209,1074,1135,841,897,102,116,82,68,1,2,4,1,44,51,1046,1115,821,883,102,115,76,66,1,2,2,0,44,49,28,20,20,14,0,1,6,2,0,0,2,1,0,2 -050,01,079,Alabama,Lawrence County,13,9,2495,1250,1245,1013,979,131,161,60,57,2,3,0,1,44,44,1231,1229,998,967,129,159,59,57,2,3,0,1,43,42,19,16,15,12,2,2,1,0,0,0,0,0,1,2 -050,01,079,Alabama,Lawrence County,13,10,2836,1372,1464,1120,1130,142,189,63,87,0,4,1,2,46,52,1356,1451,1111,1120,138,188,61,86,0,4,1,2,45,51,16,13,9,10,4,1,2,1,0,0,0,0,1,1 -050,01,079,Alabama,Lawrence County,13,11,2639,1296,1343,1019,1063,155,165,77,70,3,3,1,0,41,42,1281,1335,1009,1056,152,164,75,70,3,3,1,0,41,42,15,8,10,7,3,1,2,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,12,2277,1129,1148,888,872,152,169,48,54,0,2,0,0,41,51,1121,1139,882,865,151,168,48,53,0,2,0,0,40,51,8,9,6,7,1,1,0,1,0,0,0,0,1,0 -050,01,079,Alabama,Lawrence County,13,13,2243,1080,1163,890,949,125,139,36,35,1,2,0,0,28,38,1076,1160,886,946,125,139,36,35,1,2,0,0,28,38,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,14,1761,813,948,691,776,82,133,15,12,1,1,0,0,24,26,810,943,690,772,81,132,15,12,1,1,0,0,23,26,3,5,1,4,1,1,0,0,0,0,0,0,1,0 -050,01,079,Alabama,Lawrence County,13,15,1284,643,641,566,556,59,61,9,15,1,1,0,0,8,8,641,639,564,555,59,60,9,15,1,1,0,0,8,8,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,16,904,381,523,342,456,32,53,4,3,1,1,0,0,2,10,378,522,340,456,31,52,4,3,1,1,0,0,2,10,3,1,2,0,1,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,17,589,218,371,193,315,22,51,1,3,0,1,0,0,2,1,216,369,191,313,22,51,1,3,0,1,0,0,2,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,18,472,145,327,119,271,19,47,2,2,0,0,0,0,5,7,145,325,119,270,19,46,2,2,0,0,0,0,5,7,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,99,34342,16813,17529,13223,13675,1869,2107,982,974,34,38,23,18,682,717,16474,17221,12981,13446,1843,2091,952,948,24,36,13,7,661,693,339,308,242,229,26,16,30,26,10,2,10,11,21,24 -050,01,081,Alabama,Lee County,1,0,1455,700,755,483,527,192,200,1,1,12,15,0,0,12,12,676,733,464,511,188,198,0,0,12,14,0,0,12,10,24,22,19,16,4,2,1,1,0,1,0,0,0,2 -050,01,081,Alabama,Lee County,1,1,5733,2878,2855,1970,1895,794,847,6,2,47,59,2,0,59,52,2831,2799,1931,1852,789,835,5,1,46,59,2,0,58,52,47,56,39,43,5,12,1,1,1,0,0,0,1,0 -050,01,081,Alabama,Lee County,1,2,7647,3884,3763,2583,2466,1197,1166,7,9,52,62,1,1,44,59,3809,3696,2515,2411,1190,1156,7,8,52,62,1,1,44,58,75,67,68,55,7,10,0,1,0,0,0,0,0,1 -050,01,081,Alabama,Lee County,1,3,7599,3902,3697,2587,2432,1219,1183,6,6,55,48,0,0,35,28,3834,3641,2530,2384,1211,1176,5,6,55,48,0,0,33,27,68,56,57,48,8,7,1,0,0,0,0,0,2,1 -050,01,081,Alabama,Lee County,1,4,11764,5668,6096,4292,4742,1250,1224,11,13,71,67,1,2,43,48,5584,6012,4222,4667,1239,1218,9,12,71,67,1,2,42,46,84,84,70,75,11,6,2,1,0,0,0,0,1,2 -050,01,081,Alabama,Lee County,1,5,18715,9760,8955,8423,7405,1108,1347,34,22,123,120,6,3,66,58,9587,8864,8269,7326,1102,1339,29,20,120,120,3,3,64,56,173,91,154,79,6,8,5,2,3,0,3,0,2,2 -050,01,081,Alabama,Lee County,1,6,8916,4588,4328,3514,3066,888,1097,11,5,155,131,1,0,19,29,4488,4244,3424,2990,882,1089,8,5,154,131,1,0,19,29,100,84,90,76,6,8,3,0,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,1,7,7717,3867,3850,2894,2702,828,1000,12,13,106,100,2,2,25,33,3790,3788,2823,2650,826,996,10,10,106,98,1,2,24,32,77,62,71,52,2,4,2,3,0,2,1,0,1,1 -050,01,081,Alabama,Lee County,1,8,8002,3912,4090,2847,2831,934,1117,12,6,99,101,0,0,20,35,3850,4047,2794,2793,931,1113,11,6,98,101,0,0,16,34,62,43,53,38,3,4,1,0,1,0,0,0,4,1 -050,01,081,Alabama,Lee County,1,9,7662,3720,3942,2716,2767,898,1059,19,22,60,76,1,0,26,18,3651,3880,2662,2714,890,1053,17,20,59,76,1,0,22,17,69,62,54,53,8,6,2,2,1,0,0,0,4,1 -050,01,081,Alabama,Lee County,1,10,6762,3263,3499,2396,2459,795,953,10,12,44,51,0,0,18,24,3224,3462,2362,2430,792,946,9,12,44,51,0,0,17,23,39,37,34,29,3,7,1,0,0,0,0,0,1,1 -050,01,081,Alabama,Lee County,1,11,5905,2967,2938,2294,2197,611,664,8,4,31,52,0,0,23,21,2945,2911,2275,2173,609,663,8,3,30,52,0,0,23,20,22,27,19,24,2,1,0,1,1,0,0,0,0,1 -050,01,081,Alabama,Lee County,1,12,4406,2152,2254,1700,1716,401,494,8,6,31,23,1,0,11,15,2132,2243,1686,1706,396,493,8,6,31,23,0,0,11,15,20,11,14,10,5,1,0,0,0,0,1,0,0,0 -050,01,081,Alabama,Lee County,1,13,3410,1606,1804,1275,1376,300,390,4,3,20,28,1,1,6,6,1596,1789,1266,1364,299,389,4,3,20,27,1,0,6,6,10,15,9,12,1,1,0,0,0,1,0,1,0,0 -050,01,081,Alabama,Lee County,1,14,2964,1395,1569,1121,1152,251,398,3,0,13,16,0,0,7,3,1385,1563,1112,1147,250,397,3,0,13,16,0,0,7,3,10,6,9,5,1,1,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,1,15,2355,982,1373,813,1028,160,329,2,0,2,11,0,0,5,5,978,1360,809,1016,160,328,2,0,2,11,0,0,5,5,4,13,4,12,0,1,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,1,16,1788,692,1096,566,840,117,241,4,2,2,6,0,0,3,7,690,1086,565,832,117,240,3,1,2,6,0,0,3,7,2,10,1,8,0,1,1,1,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,1,17,1190,406,784,330,581,73,197,0,0,0,2,0,0,3,4,404,780,328,579,73,195,0,0,0,2,0,0,3,4,2,4,2,2,0,2,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,1,18,1024,245,779,190,585,53,184,0,0,0,2,0,0,2,8,243,776,188,582,53,184,0,0,0,2,0,0,2,8,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,1,99,115014,56587,58427,42994,42767,12069,14090,158,126,923,970,16,9,427,465,55697,57674,42225,42127,11997,14008,138,113,915,966,11,8,411,452,890,753,769,640,72,82,20,13,8,4,5,1,16,13 -050,01,081,Alabama,Lee County,2,0,1475,709,766,487,532,195,204,1,1,13,16,0,0,13,13,684,743,467,515,191,202,0,0,13,15,0,0,13,11,25,23,20,17,4,2,1,1,0,1,0,0,0,2 -050,01,081,Alabama,Lee County,2,1,5701,2862,2839,1962,1886,790,844,6,2,48,59,2,0,54,48,2815,2783,1923,1843,785,832,5,1,47,59,2,0,53,48,47,56,39,43,5,12,1,1,1,0,0,0,1,0 -050,01,081,Alabama,Lee County,2,2,7609,3867,3742,2571,2457,1192,1157,7,9,52,63,1,1,44,55,3792,3675,2503,2402,1185,1147,7,8,52,63,1,1,44,54,75,67,68,55,7,10,0,1,0,0,0,0,0,1 -050,01,081,Alabama,Lee County,2,3,7649,3927,3722,2599,2447,1229,1194,6,6,55,50,0,0,38,25,3859,3666,2542,2399,1221,1187,5,6,55,50,0,0,36,24,68,56,57,48,8,7,1,0,0,0,0,0,2,1 -050,01,081,Alabama,Lee County,2,4,11898,5731,6167,4348,4789,1254,1228,11,21,72,71,1,2,45,56,5634,6065,4265,4696,1243,1222,9,20,72,71,1,2,44,54,97,102,83,93,11,6,2,1,0,0,0,0,1,2 -050,01,081,Alabama,Lee County,2,5,18773,9796,8977,8407,7406,1123,1356,52,26,146,121,6,3,62,65,9621,8885,8251,7326,1117,1348,47,24,143,121,3,3,60,63,175,92,156,80,6,8,5,2,3,0,3,0,2,2 -050,01,081,Alabama,Lee County,2,6,8873,4567,4306,3490,3044,881,1092,11,5,160,134,1,0,24,31,4467,4222,3400,2968,875,1084,8,5,159,134,1,0,24,31,100,84,90,76,6,8,3,0,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,2,7,7740,3874,3866,2896,2706,828,1007,12,13,108,102,2,2,28,36,3796,3804,2824,2654,826,1003,10,10,108,100,1,2,27,35,78,62,72,52,2,4,2,3,0,2,1,0,1,1 -050,01,081,Alabama,Lee County,2,8,7981,3899,4082,2832,2819,937,1119,12,6,99,101,0,0,19,37,3837,4039,2779,2781,934,1115,11,6,98,101,0,0,15,36,62,43,53,38,3,4,1,0,1,0,0,0,4,1 -050,01,081,Alabama,Lee County,2,9,7688,3730,3958,2721,2774,905,1067,19,22,60,77,1,0,24,18,3661,3895,2667,2720,897,1061,17,20,59,77,1,0,20,17,69,63,54,54,8,6,2,2,1,0,0,0,4,1 -050,01,081,Alabama,Lee County,2,10,6812,3288,3524,2413,2478,803,962,10,12,44,51,0,0,18,21,3248,3487,2378,2449,800,955,9,12,44,51,0,0,17,20,40,37,35,29,3,7,1,0,0,0,0,0,1,1 -050,01,081,Alabama,Lee County,2,11,5978,3005,2973,2322,2223,622,676,8,4,31,52,0,0,22,18,2983,2946,2303,2199,620,675,8,3,30,52,0,0,22,17,22,27,19,24,2,1,0,1,1,0,0,0,0,1 -050,01,081,Alabama,Lee County,2,12,4442,2170,2272,1714,1730,405,499,8,6,31,23,1,0,11,14,2150,2261,1700,1720,400,498,8,6,31,23,0,0,11,14,20,11,14,10,5,1,0,0,0,0,1,0,0,0 -050,01,081,Alabama,Lee County,2,13,3443,1620,1823,1286,1388,303,394,4,3,20,28,1,1,6,9,1610,1808,1277,1376,302,393,4,3,20,27,1,0,6,9,10,15,9,12,1,1,0,0,0,1,0,1,0,0 -050,01,081,Alabama,Lee County,2,14,2977,1401,1576,1123,1155,255,402,3,0,13,16,0,0,7,3,1391,1570,1114,1150,254,401,3,0,13,16,0,0,7,3,10,6,9,5,1,1,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,2,15,2366,987,1379,816,1032,160,331,2,0,2,11,0,0,7,5,983,1366,812,1020,160,330,2,0,2,11,0,0,7,5,4,13,4,12,0,1,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,2,16,1800,697,1103,570,844,118,244,4,2,2,6,0,0,3,7,695,1093,569,836,118,243,3,1,2,6,0,0,3,7,2,10,1,8,0,1,1,1,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,2,17,1199,411,788,334,582,74,200,0,0,0,2,0,0,3,4,409,784,332,580,74,198,0,0,0,2,0,0,3,4,2,4,2,2,0,2,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,2,18,1026,246,780,191,584,53,186,0,0,0,2,0,0,2,8,244,777,189,581,53,186,0,0,0,2,0,0,2,8,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,2,99,115430,56787,58643,43082,42876,12127,14162,176,138,956,985,16,9,430,473,55879,57869,42295,42215,12055,14080,156,125,948,981,11,8,414,460,908,774,787,661,72,82,20,13,8,4,5,1,16,13 -050,01,081,Alabama,Lee County,3,0,1365,724,641,501,428,192,179,1,3,16,13,0,0,14,18,706,623,488,416,189,178,0,2,15,12,0,0,14,15,18,18,13,12,3,1,1,1,1,1,0,0,0,3 -050,01,081,Alabama,Lee County,3,1,5681,2836,2845,1913,1904,805,834,10,3,50,57,3,0,55,47,2772,2780,1863,1854,797,823,8,2,48,57,2,0,54,44,64,65,50,50,8,11,2,1,2,0,1,0,1,3 -050,01,081,Alabama,Lee County,3,2,7489,3829,3660,2542,2452,1158,1074,5,10,59,57,2,1,63,66,3743,3582,2468,2390,1149,1062,5,9,58,56,1,1,62,64,86,78,74,62,9,12,0,1,1,1,1,0,1,2 -050,01,081,Alabama,Lee County,3,3,7774,4015,3759,2628,2443,1288,1222,7,7,51,54,0,0,41,33,3943,3687,2570,2390,1277,1207,6,7,51,54,0,0,39,29,72,72,58,53,11,15,1,0,0,0,0,0,2,4 -050,01,081,Alabama,Lee County,3,4,12515,6139,6376,4714,4893,1271,1317,15,23,83,77,1,3,55,63,6022,6264,4616,4795,1258,1307,11,22,83,76,1,3,53,61,117,112,98,98,13,10,4,1,0,1,0,0,2,2 -050,01,081,Alabama,Lee County,3,5,19457,10027,9430,8460,7750,1234,1458,55,26,182,127,11,3,85,66,9796,9308,8262,7642,1220,1448,50,24,177,127,4,3,83,64,231,122,198,108,14,10,5,2,5,0,7,0,2,2 -050,01,081,Alabama,Lee County,3,6,8170,4204,3966,3223,2759,789,1034,12,9,150,127,2,0,28,37,4083,3881,3119,2686,779,1022,9,9,148,127,0,0,28,37,121,85,104,73,10,12,3,0,2,0,2,0,0,0 -050,01,081,Alabama,Lee County,3,7,7823,3909,3914,2939,2734,831,1032,11,14,97,95,5,3,26,36,3812,3853,2851,2686,828,1026,9,11,97,93,2,3,25,34,97,61,88,48,3,6,2,3,0,2,3,0,1,2 -050,01,081,Alabama,Lee County,3,8,7790,3802,3988,2773,2756,907,1093,16,8,85,96,0,0,21,35,3731,3926,2715,2701,903,1087,13,8,83,96,0,0,17,34,71,62,58,55,4,6,3,0,2,0,0,0,4,1 -050,01,081,Alabama,Lee County,3,9,7726,3743,3983,2692,2756,924,1099,19,22,77,82,1,0,30,24,3670,3926,2635,2708,915,1093,17,20,76,82,1,0,26,23,73,57,57,48,9,6,2,2,1,0,0,0,4,1 -050,01,081,Alabama,Lee County,3,10,7077,3424,3653,2501,2546,842,1002,13,18,51,66,0,1,17,20,3390,3610,2472,2512,839,994,12,18,51,66,0,1,16,19,34,43,29,34,3,8,1,0,0,0,0,0,1,1 -050,01,081,Alabama,Lee County,3,11,6205,3060,3145,2329,2349,668,724,8,6,31,48,0,1,24,17,3031,3118,2307,2325,664,722,8,6,29,48,0,1,23,16,29,27,22,24,4,2,0,0,2,0,0,0,1,1 -050,01,081,Alabama,Lee County,3,12,4619,2291,2328,1811,1772,417,507,10,8,41,28,2,0,10,13,2269,2318,1795,1763,412,506,10,8,41,28,1,0,10,13,22,10,16,9,5,1,0,0,0,0,1,0,0,0 -050,01,081,Alabama,Lee County,3,13,3570,1676,1894,1320,1433,318,412,6,2,23,36,2,1,7,10,1666,1879,1311,1423,317,409,6,2,23,35,2,0,7,10,10,15,9,10,1,3,0,0,0,1,0,1,0,0 -050,01,081,Alabama,Lee County,3,14,2993,1427,1566,1135,1152,269,399,4,0,12,12,0,0,7,3,1413,1559,1123,1145,267,399,4,0,12,12,0,0,7,3,14,7,12,7,2,0,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,3,15,2442,1023,1419,842,1072,169,326,2,1,5,15,0,0,5,5,1019,1406,838,1061,169,324,2,1,5,15,0,0,5,5,4,13,4,11,0,2,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,3,16,1847,693,1154,568,847,115,292,5,2,3,5,0,0,2,8,690,1146,566,841,115,291,4,1,3,5,0,0,2,8,3,8,2,6,0,1,1,1,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,3,17,1270,431,839,361,645,67,187,0,0,0,3,0,0,3,4,429,834,359,643,67,184,0,0,0,3,0,0,3,4,2,5,2,2,0,3,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,3,18,1006,256,750,202,551,52,189,0,0,0,2,0,0,2,8,254,748,200,549,52,189,0,0,0,2,0,0,2,8,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,3,99,116819,57509,59310,43454,43242,12316,14380,199,162,1016,1000,29,13,495,513,56439,58448,42558,42530,12217,14271,174,150,1000,994,14,12,476,491,1070,862,896,712,99,109,25,12,16,6,15,1,19,22 -050,01,081,Alabama,Lee County,4,0,1366,700,666,504,443,167,185,0,1,16,16,0,0,13,21,681,645,489,429,163,182,0,1,16,15,0,0,13,18,19,21,15,14,4,3,0,0,0,1,0,0,0,3 -050,01,081,Alabama,Lee County,4,1,5687,2901,2786,1973,1837,809,820,9,5,54,64,3,0,53,60,2822,2718,1909,1788,800,809,7,3,52,63,2,0,52,55,79,68,64,49,9,11,2,2,2,1,1,0,1,5 -050,01,081,Alabama,Lee County,4,2,7502,3764,3738,2501,2451,1121,1130,9,12,58,74,2,2,73,69,3670,3657,2422,2389,1109,1119,8,9,58,74,1,1,72,65,94,81,79,62,12,11,1,3,0,0,1,1,1,4 -050,01,081,Alabama,Lee County,4,3,7838,3993,3845,2548,2545,1331,1204,7,10,58,52,1,0,48,34,3912,3767,2480,2482,1323,1192,6,9,58,52,0,0,45,32,81,78,68,63,8,12,1,1,0,0,1,0,3,2 -050,01,081,Alabama,Lee County,4,4,12590,6168,6422,4744,4873,1268,1364,18,26,88,95,2,2,48,62,6051,6297,4650,4767,1252,1351,13,25,87,93,1,2,48,59,117,125,94,106,16,13,5,1,1,2,1,0,0,3 -050,01,081,Alabama,Lee County,4,5,20285,10437,9848,8727,8143,1337,1469,52,23,216,131,12,3,93,79,10183,9687,8506,8001,1325,1456,47,21,210,129,5,3,90,77,254,161,221,142,12,13,5,2,6,2,7,0,3,2 -050,01,081,Alabama,Lee County,4,6,7653,3949,3704,2976,2541,771,1006,17,11,159,109,5,1,21,36,3820,3615,2867,2469,761,992,14,10,155,108,2,0,21,36,129,89,109,72,10,14,3,1,4,1,3,1,0,0 -050,01,081,Alabama,Lee County,4,7,8079,4028,4051,2994,2812,871,1082,14,14,116,106,4,2,29,35,3925,3978,2906,2753,866,1077,9,11,114,102,2,2,28,33,103,73,88,59,5,5,5,3,2,4,2,0,1,2 -050,01,081,Alabama,Lee County,4,8,7546,3681,3865,2705,2652,853,1074,19,11,84,92,1,2,19,34,3598,3799,2637,2593,848,1068,15,11,83,92,0,2,15,33,83,66,68,59,5,6,4,0,1,0,1,0,4,1 -050,01,081,Alabama,Lee County,4,9,7910,3853,4057,2763,2820,950,1094,20,22,91,88,2,1,27,32,3776,3994,2703,2767,942,1089,17,20,89,88,1,1,24,29,77,63,60,53,8,5,3,2,2,0,1,0,3,3 -050,01,081,Alabama,Lee County,4,10,7251,3506,3745,2537,2597,875,1040,12,16,57,72,0,0,25,20,3458,3698,2496,2562,870,1029,11,16,57,72,0,0,24,19,48,47,41,35,5,11,1,0,0,0,0,0,1,1 -050,01,081,Alabama,Lee County,4,11,6242,3079,3163,2312,2297,702,790,9,5,35,55,0,0,21,16,3042,3134,2282,2273,699,787,8,4,34,55,0,0,19,15,37,29,30,24,3,3,1,1,1,0,0,0,2,1 -050,01,081,Alabama,Lee County,4,12,4999,2473,2526,1952,1942,464,528,9,7,35,30,1,0,12,19,2452,2508,1938,1925,458,527,9,7,35,30,0,0,12,19,21,18,14,17,6,1,0,0,0,0,1,0,0,0 -050,01,081,Alabama,Lee County,4,13,3671,1731,1940,1378,1464,301,430,7,7,36,31,2,1,7,7,1715,1929,1363,1457,300,428,7,7,36,30,2,0,7,7,16,11,15,7,1,2,0,0,0,1,0,1,0,0 -050,01,081,Alabama,Lee County,4,14,3060,1449,1611,1137,1197,287,397,4,0,14,13,0,0,7,4,1431,1602,1121,1189,285,396,4,0,14,13,0,0,7,4,18,9,16,8,2,1,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,4,15,2512,1078,1434,876,1076,186,336,2,1,6,16,0,0,8,5,1074,1420,872,1064,186,334,2,1,6,16,0,0,8,5,4,14,4,12,0,2,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,4,16,1860,683,1177,556,872,115,292,5,2,4,5,0,0,3,6,678,1169,552,866,115,291,4,1,4,5,0,0,3,6,5,8,4,6,0,1,1,1,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,4,17,1335,466,869,403,675,60,189,0,0,0,1,0,0,3,4,464,862,401,670,60,187,0,0,0,1,0,0,3,4,2,7,2,5,0,2,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,4,18,1006,272,734,220,556,50,169,0,1,0,2,0,0,2,6,270,731,218,553,50,169,0,1,0,2,0,0,2,6,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,4,99,118392,58211,60181,43806,43793,12518,14599,213,174,1127,1052,35,14,512,549,57022,59210,42812,42997,12412,14483,181,157,1108,1040,16,11,493,522,1189,971,994,796,106,116,32,17,19,12,19,3,19,27 -050,01,081,Alabama,Lee County,5,0,1424,748,676,493,451,221,183,1,3,12,14,0,0,21,25,719,651,471,434,217,181,0,2,11,13,0,0,20,21,29,25,22,17,4,2,1,1,1,1,0,0,1,4 -050,01,081,Alabama,Lee County,5,1,5683,2897,2786,1983,1858,780,797,11,4,64,63,3,0,56,64,2809,2708,1910,1800,772,788,9,1,61,62,2,0,55,57,88,78,73,58,8,9,2,3,3,1,1,0,1,7 -050,01,081,Alabama,Lee County,5,2,7448,3799,3649,2510,2370,1146,1109,9,14,73,78,2,2,59,76,3705,3562,2430,2307,1136,1096,8,11,73,77,1,1,57,70,94,87,80,63,10,13,1,3,0,1,1,1,2,6 -050,01,081,Alabama,Lee County,5,3,8063,4076,3987,2652,2602,1306,1270,6,10,60,55,1,0,51,50,3977,3909,2576,2543,1289,1258,5,9,59,54,0,0,48,45,99,78,76,59,17,12,1,1,1,1,1,0,3,5 -050,01,081,Alabama,Lee County,5,4,12408,6131,6277,4692,4735,1266,1356,22,22,98,103,2,2,51,59,6006,6162,4586,4633,1254,1349,18,21,97,101,1,2,50,56,125,115,106,102,12,7,4,1,1,2,1,0,1,3 -050,01,081,Alabama,Lee County,5,5,20945,10778,10167,8988,8352,1393,1548,43,32,241,150,15,4,98,81,10517,10004,8759,8209,1382,1534,41,30,234,148,6,4,95,79,261,163,229,143,11,14,2,2,7,2,9,0,3,2 -050,01,081,Alabama,Lee County,5,6,7340,3773,3567,2770,2440,786,962,14,14,170,110,4,2,29,39,3639,3478,2655,2367,777,950,11,13,166,108,1,1,29,39,134,89,115,73,9,12,3,1,4,2,3,1,0,0 -050,01,081,Alabama,Lee County,5,7,8172,4061,4111,3056,2810,827,1132,14,19,126,112,6,2,32,36,3929,4016,2943,2729,822,1127,9,16,124,108,2,2,29,34,132,95,113,81,5,5,5,3,2,4,4,0,3,2 -050,01,081,Alabama,Lee County,5,8,7515,3670,3845,2678,2680,866,1034,16,11,85,81,1,2,24,37,3574,3771,2599,2613,860,1028,12,11,83,81,0,2,20,36,96,74,79,67,6,6,4,0,2,0,1,0,4,1 -050,01,081,Alabama,Lee County,5,9,7984,3895,4089,2806,2800,946,1134,18,26,95,92,2,1,28,36,3813,4020,2742,2744,938,1127,15,24,92,91,1,1,25,33,82,69,64,56,8,7,3,2,3,1,1,0,3,3 -050,01,081,Alabama,Lee County,5,10,7560,3682,3878,2656,2686,909,1064,16,13,76,88,0,2,25,25,3626,3837,2606,2656,905,1054,16,13,76,88,0,2,23,24,56,41,50,30,4,10,0,0,0,0,0,0,2,1 -050,01,081,Alabama,Lee County,5,11,6380,3120,3260,2314,2355,732,819,9,7,37,55,0,2,28,22,3079,3229,2282,2329,728,816,7,7,36,55,0,1,26,21,41,31,32,26,4,3,2,0,1,0,0,1,2,1 -050,01,081,Alabama,Lee County,5,12,5261,2600,2661,2046,2029,497,570,11,8,32,35,2,0,12,19,2579,2636,2032,2006,492,569,11,7,32,35,1,0,11,19,21,25,14,23,5,1,0,1,0,0,1,0,1,0 -050,01,081,Alabama,Lee County,5,13,3905,1852,2053,1495,1556,305,450,4,9,39,26,1,1,8,11,1838,2038,1482,1546,304,447,4,9,39,25,1,0,8,11,14,15,13,10,1,3,0,0,0,1,0,1,0,0 -050,01,081,Alabama,Lee County,5,14,3130,1485,1645,1142,1213,308,407,6,1,19,19,0,0,10,5,1469,1637,1128,1206,306,406,6,1,19,19,0,0,10,5,16,8,14,7,2,1,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,5,15,2610,1145,1465,930,1105,201,342,2,1,6,12,0,0,6,5,1140,1453,926,1095,200,340,2,1,6,12,0,0,6,5,5,12,4,10,1,2,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,5,16,1874,692,1182,578,882,102,285,6,2,5,6,0,0,1,7,687,1174,575,876,102,284,4,1,5,6,0,0,1,7,5,8,3,6,0,1,2,1,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,5,17,1342,477,865,408,682,65,175,0,0,0,4,0,0,4,4,474,858,405,677,65,173,0,0,0,4,0,0,4,4,3,7,3,5,0,2,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,5,18,1027,283,744,236,567,45,169,0,1,0,1,0,0,2,6,282,741,235,565,45,169,0,1,0,1,0,0,2,5,1,3,1,2,0,0,0,0,0,0,0,0,0,1 -050,01,081,Alabama,Lee County,5,99,120071,59164,60907,44433,44173,12701,14806,208,197,1238,1104,39,20,545,607,57862,59884,43342,43335,12594,14696,178,178,1213,1088,16,16,519,571,1302,1023,1091,838,107,110,30,19,25,16,23,4,26,36 -050,01,081,Alabama,Lee County,6,0,1453,762,691,508,464,209,176,0,2,23,18,0,1,22,30,734,657,487,438,204,175,0,1,22,17,0,0,21,26,28,34,21,26,5,1,0,1,1,1,0,1,1,4 -050,01,081,Alabama,Lee County,6,1,5640,2893,2747,1964,1824,783,781,9,6,59,52,4,1,74,83,2789,2646,1880,1749,770,769,7,3,57,50,2,0,73,75,104,101,84,75,13,12,2,3,2,2,2,1,1,8 -050,01,081,Alabama,Lee County,6,2,7531,3832,3699,2513,2386,1163,1125,12,13,70,99,2,2,72,74,3727,3609,2427,2318,1151,1113,10,10,69,98,1,1,69,69,105,90,86,68,12,12,2,3,1,1,1,1,3,5 -050,01,081,Alabama,Lee County,6,3,8155,4130,4025,2701,2685,1294,1203,12,11,66,56,1,1,56,69,4028,3933,2623,2611,1278,1193,10,10,64,55,0,0,53,64,102,92,78,74,16,10,2,1,2,1,1,1,3,5 -050,01,081,Alabama,Lee County,6,4,12546,6269,6277,4745,4684,1339,1393,23,22,105,112,3,3,54,63,6138,6152,4635,4572,1325,1386,18,21,104,108,2,3,54,62,131,125,110,112,14,7,5,1,1,4,1,0,0,1 -050,01,081,Alabama,Lee County,6,5,21190,10950,10240,9047,8401,1492,1572,40,29,254,144,18,5,99,89,10662,10045,8803,8231,1475,1556,35,27,247,140,7,4,95,87,288,195,244,170,17,16,5,2,7,4,11,1,4,2 -050,01,081,Alabama,Lee County,6,6,7495,3885,3610,2890,2433,756,988,15,17,180,134,5,2,39,36,3714,3500,2741,2344,747,973,12,16,175,132,2,1,37,34,171,110,149,89,9,15,3,1,5,2,3,1,2,2 -050,01,081,Alabama,Lee County,6,7,8299,4054,4245,2988,2871,856,1164,15,18,146,147,8,4,41,41,3907,4136,2868,2783,851,1157,10,14,143,142,3,3,32,37,147,109,120,88,5,7,5,4,3,5,5,1,9,4 -050,01,081,Alabama,Lee County,6,8,7591,3705,3886,2707,2732,859,1034,16,9,89,78,1,2,33,31,3592,3812,2615,2670,853,1027,11,7,86,77,0,2,27,29,113,74,92,62,6,7,5,2,3,1,1,0,6,2 -050,01,081,Alabama,Lee County,6,9,8056,3964,4092,2867,2800,948,1135,19,23,102,95,3,4,25,35,3877,4009,2800,2730,938,1128,16,21,100,95,1,3,22,32,87,83,67,70,10,7,3,2,2,0,2,1,3,3 -050,01,081,Alabama,Lee County,6,10,7696,3708,3988,2682,2747,892,1100,17,21,89,93,0,3,28,24,3643,3942,2626,2714,887,1091,17,20,88,92,0,2,25,23,65,46,56,33,5,9,0,1,1,1,0,1,3,1 -050,01,081,Alabama,Lee County,6,11,6622,3178,3444,2339,2448,769,914,9,4,38,52,0,1,23,25,3137,3411,2304,2420,766,911,8,4,38,52,0,1,21,23,41,33,35,28,3,3,1,0,0,0,0,0,2,2 -050,01,081,Alabama,Lee County,6,12,5626,2791,2835,2165,2144,571,623,7,6,31,46,3,0,14,16,2766,2809,2150,2119,566,622,7,6,31,46,2,0,10,16,25,26,15,25,5,1,0,0,0,0,1,0,4,0 -050,01,081,Alabama,Lee County,6,13,4140,1989,2151,1610,1637,328,456,4,6,38,41,1,1,8,10,1969,2132,1592,1623,326,454,4,6,38,39,1,0,8,10,20,19,18,14,2,2,0,0,0,2,0,1,0,0 -050,01,081,Alabama,Lee County,6,14,3207,1537,1670,1196,1255,299,391,5,2,26,14,1,0,10,8,1519,1661,1180,1247,298,390,5,2,25,14,1,0,10,8,18,9,16,8,1,1,0,0,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,6,15,2670,1192,1478,959,1106,220,351,1,3,8,13,0,0,4,5,1185,1463,953,1093,219,349,1,3,8,13,0,0,4,5,7,15,6,13,1,2,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,6,16,1926,713,1213,606,933,94,267,5,1,5,8,0,0,3,4,708,1206,603,927,94,266,3,1,5,8,0,0,3,4,5,7,3,6,0,1,2,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,6,17,1369,474,895,414,705,57,184,0,0,0,3,0,0,3,3,472,889,412,701,57,182,0,0,0,3,0,0,3,3,2,6,2,4,0,2,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,6,18,1062,289,773,245,592,42,172,0,1,0,1,0,0,2,7,288,770,244,590,42,172,0,1,0,1,0,0,2,6,1,3,1,2,0,0,0,0,0,0,0,0,0,1 -050,01,081,Alabama,Lee County,6,99,122274,60315,61959,45146,44847,12971,15029,209,194,1329,1206,50,30,610,653,58855,60782,43943,43880,12847,14914,174,173,1300,1182,22,20,569,613,1460,1177,1203,967,124,115,35,21,29,24,28,10,41,40 -050,01,081,Alabama,Lee County,7,0,1515,796,719,571,472,178,186,2,3,16,28,0,0,29,30,756,677,541,438,172,184,1,2,15,27,0,0,27,26,40,42,30,34,6,2,1,1,1,1,0,0,2,4 -050,01,081,Alabama,Lee County,7,1,5989,3064,2925,2098,1922,796,865,7,8,67,45,4,1,92,84,2965,2813,2018,1838,788,853,5,5,64,44,2,0,88,73,99,112,80,84,8,12,2,3,3,1,2,1,4,11 -050,01,081,Alabama,Lee County,7,2,7660,3870,3790,2508,2488,1164,1099,11,11,95,100,3,5,89,87,3757,3691,2416,2413,1154,1090,9,6,93,99,1,3,84,80,113,99,92,75,10,9,2,5,2,1,2,2,5,7 -050,01,081,Alabama,Lee County,7,3,8436,4262,4174,2764,2748,1339,1255,12,11,74,76,3,1,70,83,4153,4070,2678,2667,1329,1244,10,10,73,75,1,1,62,73,109,104,86,81,10,11,2,1,1,1,2,0,8,10 -050,01,081,Alabama,Lee County,7,4,12786,6436,6350,4815,4695,1411,1453,23,21,117,114,2,3,68,64,6293,6224,4698,4590,1396,1441,17,20,115,110,1,3,66,60,143,126,117,105,15,12,6,1,2,4,1,0,2,4 -050,01,081,Alabama,Lee County,7,5,21489,11082,10407,9099,8448,1556,1686,37,23,273,143,19,3,98,104,10763,10181,8825,8252,1541,1666,34,21,264,141,8,2,91,99,319,226,274,196,15,20,3,2,9,2,11,1,7,5 -050,01,081,Alabama,Lee County,7,6,7886,4083,3803,2990,2591,844,984,13,21,188,157,4,2,44,48,3889,3689,2821,2504,832,966,10,20,183,154,1,1,42,44,194,114,169,87,12,18,3,1,5,3,3,1,2,4 -050,01,081,Alabama,Lee County,7,7,8296,4027,4269,2989,2852,809,1196,15,16,163,159,8,1,43,45,3850,4131,2837,2739,802,1187,11,13,160,152,4,1,36,39,177,138,152,113,7,9,4,3,3,7,4,0,7,6 -050,01,081,Alabama,Lee County,7,8,7958,3857,4101,2817,2870,865,1110,16,10,128,72,1,3,30,36,3746,4026,2726,2805,859,1104,10,9,124,71,0,3,27,34,111,75,91,65,6,6,6,1,4,1,1,0,3,2 -050,01,081,Alabama,Lee County,7,9,8189,4027,4162,2874,2863,991,1132,15,16,113,115,3,4,31,32,3930,4086,2797,2798,983,1126,13,14,110,115,1,3,26,30,97,76,77,65,8,6,2,2,3,0,2,1,5,2 -050,01,081,Alabama,Lee County,7,10,7903,3836,4067,2769,2826,928,1105,17,17,91,94,1,2,30,23,3768,4011,2712,2781,924,1096,15,17,89,94,0,2,28,21,68,56,57,45,4,9,2,0,2,0,1,0,2,2 -050,01,081,Alabama,Lee County,7,11,7038,3395,3643,2486,2534,818,1010,11,7,49,54,0,2,31,36,3344,3603,2443,2506,814,1004,10,7,49,54,0,1,28,31,51,40,43,28,4,6,1,0,0,0,0,1,3,5 -050,01,081,Alabama,Lee County,7,12,6005,2982,3023,2292,2269,631,670,12,9,30,55,1,0,16,20,2956,2991,2275,2241,627,668,10,9,28,54,1,0,15,19,26,32,17,28,4,2,2,0,2,1,0,0,1,1 -050,01,081,Alabama,Lee County,7,13,4358,2086,2272,1659,1729,371,481,5,6,39,40,0,1,12,15,2062,2253,1639,1714,369,479,5,6,38,39,0,0,11,15,24,19,20,15,2,2,0,0,1,1,0,1,1,0 -050,01,081,Alabama,Lee County,7,14,3362,1575,1787,1265,1391,268,365,4,3,27,20,1,0,10,8,1559,1776,1251,1382,267,363,4,3,26,20,1,0,10,8,16,11,14,9,1,2,0,0,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,7,15,2805,1283,1522,1026,1100,242,395,0,3,8,18,0,0,7,6,1277,1509,1021,1089,242,393,0,3,8,18,0,0,6,6,6,13,5,11,0,2,0,0,0,0,0,0,1,0 -050,01,081,Alabama,Lee County,7,16,1961,765,1196,647,927,106,256,3,2,6,6,0,0,3,5,762,1192,645,923,106,256,2,2,6,6,0,0,3,5,3,4,2,4,0,0,1,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,7,17,1372,459,913,398,725,54,183,1,0,2,1,0,0,4,4,453,906,394,720,54,181,0,0,1,1,0,0,4,4,6,7,4,5,0,2,1,0,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,7,18,1125,313,812,267,631,43,173,0,1,0,1,0,0,3,6,311,808,265,629,43,172,0,1,0,1,0,0,3,5,2,4,2,2,0,1,0,0,0,0,0,0,0,1 -050,01,081,Alabama,Lee County,7,99,126133,62198,63935,46334,46081,13414,15604,204,188,1486,1298,50,28,710,736,60594,62637,45002,45029,13302,15473,166,168,1446,1275,21,20,657,672,1604,1298,1332,1052,112,131,38,20,40,23,29,8,53,64 -050,01,081,Alabama,Lee County,8,0,1645,844,801,549,517,230,219,1,1,35,29,0,1,29,34,796,741,510,463,224,218,1,1,34,28,0,0,27,31,48,60,39,54,6,1,0,0,1,1,0,1,2,3 -050,01,081,Alabama,Lee County,8,1,5959,3059,2900,2117,1938,783,814,10,7,49,71,5,1,95,69,2944,2780,2031,1849,766,799,7,4,47,68,2,1,91,59,115,120,86,89,17,15,3,3,2,3,3,0,4,10 -050,01,081,Alabama,Lee County,8,2,7989,4100,3889,2720,2528,1173,1153,11,11,103,97,2,5,91,95,3949,3775,2593,2437,1163,1144,8,8,101,95,0,3,84,88,151,114,127,91,10,9,3,3,2,2,2,2,7,7 -050,01,081,Alabama,Lee County,8,3,8523,4323,4200,2801,2793,1338,1237,15,13,80,75,5,1,84,81,4195,4094,2708,2710,1319,1225,13,12,78,74,1,1,76,72,128,106,93,83,19,12,2,1,2,1,4,0,8,9 -050,01,081,Alabama,Lee County,8,4,12619,6379,6240,4725,4603,1433,1428,29,19,119,115,3,1,70,74,6223,6106,4600,4496,1417,1412,22,19,117,110,2,0,65,69,156,134,125,107,16,16,7,0,2,5,1,1,5,5 -050,01,081,Alabama,Lee County,8,5,21466,11134,10332,9136,8336,1558,1721,35,23,281,143,22,4,102,105,10757,10131,8818,8168,1534,1698,30,23,273,140,8,2,94,100,377,201,318,168,24,23,5,0,8,3,14,2,8,5 -050,01,081,Alabama,Lee County,8,6,8702,4441,4261,3274,2952,880,1070,21,16,206,168,7,3,53,52,4191,4133,3059,2853,866,1050,17,15,199,165,2,2,48,48,250,128,215,99,14,20,4,1,7,3,5,1,5,4 -050,01,081,Alabama,Lee County,8,7,8180,3954,4226,2925,2847,805,1159,15,13,154,165,10,2,45,40,3752,4087,2753,2735,797,1148,11,10,151,160,4,1,36,33,202,139,172,112,8,11,4,3,3,5,6,1,9,7 -050,01,081,Alabama,Lee County,8,8,8272,4073,4199,2974,2926,900,1135,21,10,147,92,3,3,28,33,3947,4124,2870,2862,895,1127,14,9,142,91,1,3,25,32,126,75,104,64,5,8,7,1,5,1,2,0,3,1 -050,01,081,Alabama,Lee County,8,9,8206,3986,4220,2832,2913,990,1130,14,17,114,118,3,5,33,37,3891,4131,2756,2839,981,1120,12,16,111,118,1,3,30,35,95,89,76,74,9,10,2,1,3,0,2,2,3,2 -050,01,081,Alabama,Lee County,8,10,8199,3964,4235,2853,2917,966,1175,19,14,102,102,1,2,23,25,3879,4170,2779,2867,962,1163,16,13,101,101,0,2,21,24,85,65,74,50,4,12,3,1,1,1,1,0,2,1 -050,01,081,Alabama,Lee County,8,11,7329,3556,3773,2605,2640,859,1026,14,6,51,69,1,3,26,29,3509,3735,2567,2612,855,1021,13,6,51,68,0,2,23,26,47,38,38,28,4,5,1,0,0,1,1,1,3,3 -050,01,081,Alabama,Lee County,8,12,6434,3150,3284,2380,2460,704,739,16,11,29,53,2,0,19,21,3112,3244,2355,2426,700,737,14,10,28,52,1,0,14,19,38,40,25,34,4,2,2,1,1,1,1,0,5,2 -050,01,081,Alabama,Lee County,8,13,4636,2227,2409,1792,1820,375,518,6,8,43,43,1,0,10,20,2198,2388,1767,1806,373,515,6,7,42,41,1,0,9,19,29,21,25,14,2,3,0,1,1,2,0,0,1,1 -050,01,081,Alabama,Lee County,8,14,3576,1651,1925,1328,1507,282,383,5,4,26,23,1,0,9,8,1635,1912,1314,1496,281,381,5,4,25,23,1,0,9,8,16,13,14,11,1,2,0,0,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,8,15,2872,1352,1520,1069,1099,260,388,0,2,13,23,2,0,8,8,1342,1500,1061,1081,259,386,0,2,13,23,2,0,7,8,10,20,8,18,1,2,0,0,0,0,0,0,1,0 -050,01,081,Alabama,Lee County,8,16,2100,861,1239,709,962,134,263,4,2,6,6,0,0,8,6,855,1235,704,958,134,263,3,2,6,6,0,0,8,6,6,4,5,4,0,0,1,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,8,17,1393,445,948,388,719,50,225,1,0,3,1,0,0,3,3,438,943,383,714,50,225,0,0,2,1,0,0,3,3,7,5,5,5,0,0,1,0,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,8,18,1147,328,819,290,654,36,156,0,2,0,1,0,0,2,6,327,815,289,652,36,155,0,2,0,1,0,0,2,5,1,4,1,2,0,1,0,0,0,0,0,0,0,1 -050,01,081,Alabama,Lee County,8,99,129247,63827,65420,47467,47131,13756,15939,237,179,1561,1394,68,31,738,746,61940,64044,45917,46024,13612,15787,192,163,1521,1365,26,20,672,685,1887,1376,1550,1107,144,152,45,16,40,29,42,11,66,61 -050,01,081,Alabama,Lee County,9,0,1757,896,861,577,575,250,219,2,2,35,27,0,1,32,37,837,776,530,499,244,216,1,1,33,26,0,0,29,34,59,85,47,76,6,3,1,1,2,1,0,1,3,3 -050,01,081,Alabama,Lee County,9,1,6186,3240,2946,2188,1954,851,838,11,8,69,72,6,3,115,71,3098,2804,2078,1850,832,820,8,5,67,68,2,2,111,59,142,142,110,104,19,18,3,3,2,4,4,1,4,12 -050,01,081,Alabama,Lee County,9,2,8128,4143,3985,2781,2624,1143,1137,12,14,108,102,6,6,93,102,3963,3848,2635,2518,1128,1126,10,9,106,100,1,4,83,91,180,137,146,106,15,11,2,5,2,2,5,2,10,11 -050,01,081,Alabama,Lee County,9,3,8678,4390,4288,2889,2808,1318,1273,16,15,77,85,5,4,85,103,4265,4167,2792,2721,1305,1256,15,14,75,83,1,2,77,91,125,121,97,87,13,17,1,1,2,2,4,2,8,12 -050,01,081,Alabama,Lee County,9,4,12792,6417,6375,4690,4701,1474,1449,31,21,128,117,3,2,91,85,6234,6216,4543,4573,1454,1430,24,21,125,112,2,1,86,79,183,159,147,128,20,19,7,0,3,5,1,1,5,6 -050,01,081,Alabama,Lee County,9,5,21327,11036,10291,9035,8253,1563,1740,33,35,284,158,27,4,94,101,10637,10043,8701,8038,1538,1716,29,35,275,156,10,2,84,96,399,248,334,215,25,24,4,0,9,2,17,2,10,5 -050,01,081,Alabama,Lee County,9,6,9192,4695,4497,3458,3155,924,1070,15,12,230,196,9,2,59,62,4415,4364,3222,3056,904,1048,10,11,222,192,3,1,54,56,280,133,236,99,20,22,5,1,8,4,6,1,5,6 -050,01,081,Alabama,Lee County,9,7,8089,3876,4213,2859,2794,788,1198,22,13,156,159,8,3,43,46,3650,4057,2666,2669,779,1188,18,10,152,150,3,2,32,38,226,156,193,125,9,10,4,3,4,9,5,1,11,8 -050,01,081,Alabama,Lee County,9,8,8594,4187,4407,3065,3070,907,1179,18,10,163,110,3,6,31,32,4028,4336,2934,3015,897,1169,10,8,158,109,1,5,28,30,159,71,131,55,10,10,8,2,5,1,2,1,3,2 -050,01,081,Alabama,Lee County,9,9,8187,4030,4157,2905,2851,971,1133,15,16,104,119,3,6,32,32,3918,4064,2814,2773,960,1125,13,15,101,117,1,4,29,30,112,93,91,78,11,8,2,1,3,2,2,2,3,2 -050,01,081,Alabama,Lee County,9,10,8405,4088,4317,2923,2983,1001,1183,21,16,111,106,1,4,31,25,3992,4253,2839,2932,998,1173,17,16,109,105,0,4,29,23,96,64,84,51,3,10,4,0,2,1,1,0,2,2 -050,01,081,Alabama,Lee County,9,11,7541,3665,3876,2688,2726,880,1031,8,4,62,74,1,3,26,38,3615,3830,2651,2693,873,1024,7,4,61,73,0,2,23,34,50,46,37,33,7,7,1,0,1,1,1,1,3,4 -050,01,081,Alabama,Lee County,9,12,6532,3180,3352,2392,2443,724,816,14,12,31,60,0,0,19,21,3136,3314,2356,2411,720,814,12,11,31,59,0,0,17,19,44,38,36,32,4,2,2,1,0,1,0,0,2,2 -050,01,081,Alabama,Lee County,9,13,5112,2482,2630,1988,2031,436,532,5,8,39,37,0,0,14,22,2459,2603,1969,2010,434,529,5,8,38,35,0,0,13,21,23,27,19,21,2,3,0,0,1,2,0,0,1,1 -050,01,081,Alabama,Lee County,9,14,3697,1719,1978,1386,1536,278,408,4,5,39,17,1,0,11,12,1693,1967,1363,1527,277,406,4,5,38,17,1,0,10,12,26,11,23,9,1,2,0,0,1,0,0,0,1,0 -050,01,081,Alabama,Lee County,9,15,2933,1381,1552,1093,1144,264,377,1,4,15,21,1,0,7,6,1370,1537,1084,1132,263,374,1,4,15,21,1,0,6,6,11,15,9,12,1,3,0,0,0,0,0,0,1,0 -050,01,081,Alabama,Lee County,9,16,2158,923,1235,757,974,154,245,2,1,6,9,0,0,4,6,917,1231,751,970,154,245,2,1,6,9,0,0,4,6,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,9,17,1420,462,958,397,736,58,217,1,0,3,2,0,0,3,3,454,953,391,731,58,217,0,0,2,2,0,0,3,3,8,5,6,5,0,0,1,0,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,9,18,1206,346,860,309,686,35,166,0,2,0,1,0,0,2,5,344,856,307,684,35,165,0,2,0,1,0,0,2,4,2,4,2,2,0,1,0,0,0,0,0,0,0,1 -050,01,081,Alabama,Lee County,9,99,131934,65156,66778,48380,48044,14019,16211,231,198,1660,1472,74,44,792,809,63025,65219,46626,46802,13853,16041,186,180,1614,1435,26,29,720,732,2131,1559,1754,1242,166,170,45,18,46,37,48,15,72,77 -050,01,081,Alabama,Lee County,10,0,1820,935,885,626,578,245,238,2,2,28,24,0,1,34,42,857,774,559,480,239,232,1,1,27,23,0,0,31,38,78,111,67,98,6,6,1,1,1,1,0,1,3,4 -050,01,081,Alabama,Lee County,10,1,6347,3295,3052,2224,2012,852,850,10,10,82,81,7,2,120,97,3161,2891,2120,1893,836,831,7,6,80,78,2,1,116,82,134,161,104,119,16,19,3,4,2,3,5,1,4,15 -050,01,081,Alabama,Lee County,10,2,8230,4276,3954,2863,2587,1181,1149,15,18,105,89,6,6,106,105,4077,3808,2698,2476,1166,1137,12,12,104,88,1,3,96,92,199,146,165,111,15,12,3,6,1,1,5,3,10,13 -050,01,081,Alabama,Lee County,10,3,8821,4463,4358,2919,2834,1327,1300,18,16,107,100,6,3,86,105,4317,4216,2808,2732,1311,1277,16,14,104,98,1,1,77,94,146,142,111,102,16,23,2,2,3,2,5,2,9,11 -050,01,081,Alabama,Lee County,10,4,12795,6441,6354,4707,4658,1461,1442,32,26,132,116,4,3,105,109,6255,6181,4558,4518,1444,1426,23,25,129,110,2,2,99,100,186,173,149,140,17,16,9,1,3,6,2,1,6,9 -050,01,081,Alabama,Lee County,10,5,21146,10890,10256,8864,8206,1562,1735,27,23,293,167,28,4,116,121,10477,9991,8522,7981,1534,1707,23,23,283,162,10,2,105,116,413,265,342,225,28,28,4,0,10,5,18,2,11,5 -050,01,081,Alabama,Lee County,10,6,9727,4995,4732,3678,3336,985,1125,17,19,245,181,10,6,60,65,4710,4541,3437,3188,965,1095,12,17,237,177,4,4,55,60,285,191,241,148,20,30,5,2,8,4,6,2,5,5 -050,01,081,Alabama,Lee County,10,7,8074,3881,4193,2806,2791,826,1177,22,13,164,158,11,1,52,53,3653,4049,2616,2672,816,1170,16,10,160,153,5,0,40,44,228,144,190,119,10,7,6,3,4,5,6,1,12,9 -050,01,081,Alabama,Lee County,10,8,8766,4267,4499,3113,3136,930,1208,21,9,164,111,3,3,36,32,4074,4395,2949,3051,921,1194,12,7,159,110,0,3,33,30,193,104,164,85,9,14,9,2,5,1,3,0,3,2 -050,01,081,Alabama,Lee County,10,9,8203,4029,4174,2875,2848,991,1151,15,15,110,119,5,5,33,36,3914,4070,2786,2762,980,1142,12,14,107,117,1,3,28,32,115,104,89,86,11,9,3,1,3,2,4,2,5,4 -050,01,081,Alabama,Lee County,10,10,8596,4183,4413,2990,3012,1023,1237,23,24,118,108,1,3,28,29,4076,4343,2898,2956,1019,1226,20,24,114,108,0,2,25,27,107,70,92,56,4,11,3,0,4,0,1,1,3,2 -050,01,081,Alabama,Lee County,10,11,7926,3869,4057,2825,2858,937,1073,9,5,68,86,1,2,29,33,3801,4008,2771,2822,930,1066,7,5,67,85,0,1,26,29,68,49,54,36,7,7,2,0,1,1,1,1,3,4 -050,01,081,Alabama,Lee County,10,12,6651,3180,3471,2372,2527,739,845,8,16,36,63,2,0,23,20,3136,3428,2341,2490,735,843,6,15,34,62,2,0,18,18,44,43,31,37,4,2,2,1,2,1,0,0,5,2 -050,01,081,Alabama,Lee County,10,13,5521,2705,2816,2166,2165,483,570,3,9,38,47,1,0,14,25,2672,2787,2137,2142,481,567,3,9,37,45,1,0,13,24,33,29,29,23,2,3,0,0,1,2,0,0,1,1 -050,01,081,Alabama,Lee County,10,14,3954,1847,2107,1493,1633,293,432,4,6,47,23,1,0,9,13,1820,2094,1468,1622,292,430,4,6,46,23,1,0,9,13,27,13,25,11,1,2,0,0,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,10,15,3045,1396,1649,1108,1213,265,401,1,3,11,26,2,0,9,6,1384,1630,1098,1197,264,398,1,3,11,26,2,0,8,6,12,19,10,16,1,3,0,0,0,0,0,0,1,0 -050,01,081,Alabama,Lee County,10,16,2251,996,1255,808,991,174,250,3,1,5,8,0,0,6,5,990,1250,803,986,174,250,2,1,5,8,0,0,6,5,6,5,5,5,0,0,1,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,10,17,1438,533,905,466,709,60,192,1,0,3,2,0,0,3,2,525,901,460,705,60,192,0,0,2,2,0,0,3,2,8,4,6,4,0,0,1,0,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,10,18,1213,343,870,301,696,40,166,0,2,0,0,0,0,2,6,342,865,300,694,40,165,0,2,0,0,0,0,2,4,1,5,1,2,0,1,0,0,0,0,0,0,0,2 -050,01,081,Alabama,Lee County,10,99,134524,66524,68000,49204,48790,14374,16541,231,217,1756,1509,88,39,871,904,64241,66222,47329,47367,14207,16348,177,194,1706,1475,32,22,790,816,2283,1778,1875,1423,167,193,54,23,50,34,56,17,81,88 -050,01,081,Alabama,Lee County,11,0,1821,923,898,615,580,242,241,2,5,33,28,0,1,31,43,865,823,570,517,235,236,1,4,31,27,0,0,28,39,58,75,45,63,7,5,1,1,2,1,0,1,3,4 -050,01,081,Alabama,Lee County,11,1,6721,3497,3224,2325,2101,915,909,18,14,98,81,6,2,135,117,3292,3025,2171,1959,882,884,13,7,94,76,1,1,131,98,205,199,154,142,33,25,5,7,4,5,5,1,4,19 -050,01,081,Alabama,Lee County,11,2,8393,4331,4062,2898,2718,1190,1098,17,16,115,98,7,7,104,125,4114,3899,2725,2591,1170,1088,13,10,112,96,1,4,93,110,217,163,173,127,20,10,4,6,3,2,6,3,11,15 -050,01,081,Alabama,Lee County,11,3,8904,4476,4428,2948,2871,1294,1305,18,17,109,119,6,3,101,113,4326,4273,2834,2758,1277,1284,16,15,106,117,1,1,92,98,150,155,114,113,17,21,2,2,3,2,5,2,9,15 -050,01,081,Alabama,Lee County,11,4,13420,6702,6718,4924,4960,1484,1481,35,23,133,130,3,3,123,121,6478,6526,4749,4805,1458,1461,25,22,129,123,1,2,116,113,224,192,175,155,26,20,10,1,4,7,2,1,7,8 -050,01,081,Alabama,Lee County,11,5,21183,10908,10275,8819,8205,1606,1727,28,27,301,186,33,6,121,124,10477,9999,8470,7971,1574,1698,23,27,289,180,11,4,110,119,431,276,349,234,32,29,5,0,12,6,22,2,11,5 -050,01,081,Alabama,Lee County,11,6,10293,5250,5043,3850,3555,1042,1198,17,16,266,204,11,4,64,66,4937,4860,3592,3407,1018,1176,12,14,254,200,3,2,58,61,313,183,258,148,24,22,5,2,12,4,8,2,6,5 -050,01,081,Alabama,Lee County,11,7,8391,4102,4289,2943,2834,874,1208,18,18,201,181,12,3,54,45,3857,4123,2740,2700,863,1200,11,15,196,171,5,2,42,35,245,166,203,134,11,8,7,3,5,10,7,1,12,10 -050,01,081,Alabama,Lee County,11,8,8859,4255,4604,3080,3185,955,1222,22,12,159,150,4,5,35,30,4074,4479,2933,3078,944,1210,11,10,153,149,1,4,32,28,181,125,147,107,11,12,11,2,6,1,3,1,3,2 -050,01,081,Alabama,Lee County,11,9,8410,4185,4225,2984,2924,999,1128,11,13,150,121,6,6,35,33,4040,4119,2862,2835,991,1120,8,12,146,119,2,4,31,29,145,106,122,89,8,8,3,1,4,2,4,2,4,4 -050,01,081,Alabama,Lee County,11,10,8710,4272,4438,3059,3031,1040,1244,20,24,117,109,1,2,35,28,4155,4369,2960,2978,1035,1230,16,24,112,108,0,2,32,27,117,69,99,53,5,14,4,0,5,1,1,0,3,1 -050,01,081,Alabama,Lee County,11,11,8159,3964,4195,2887,2940,964,1115,13,5,69,98,1,7,30,30,3882,4133,2819,2894,957,1108,11,5,69,97,0,3,26,26,82,62,68,46,7,7,2,0,0,1,1,4,4,4 -050,01,081,Alabama,Lee County,11,12,6890,3234,3656,2385,2625,770,937,14,10,43,62,1,0,21,22,3193,3613,2356,2588,765,935,12,9,42,61,1,0,17,20,41,43,29,37,5,2,2,1,1,1,0,0,4,2 -050,01,081,Alabama,Lee County,11,13,6008,2931,3077,2298,2322,574,663,3,10,39,62,2,0,15,20,2894,3044,2267,2298,570,658,3,9,38,60,2,0,14,19,37,33,31,24,4,5,0,1,1,2,0,0,1,1 -050,01,081,Alabama,Lee County,11,14,4203,1990,2213,1605,1731,328,438,3,6,41,25,1,0,12,13,1965,2200,1582,1720,327,436,3,6,40,25,1,0,12,13,25,13,23,11,1,2,0,0,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,11,15,3060,1401,1659,1135,1238,239,387,1,5,16,23,2,0,8,6,1388,1640,1124,1221,238,385,1,5,16,23,2,0,7,6,13,19,11,17,1,2,0,0,0,0,0,0,1,0 -050,01,081,Alabama,Lee County,11,16,2333,1034,1299,839,1019,177,269,3,1,9,5,0,0,6,5,1024,1296,830,1016,177,269,2,1,9,5,0,0,6,5,10,3,9,3,0,0,1,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,11,17,1524,583,941,518,747,58,189,1,0,4,3,0,0,2,2,575,937,512,743,58,189,0,0,3,3,0,0,2,2,8,4,6,4,0,0,1,0,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,11,18,1284,352,932,294,729,56,196,0,2,0,0,0,0,2,5,350,927,292,727,56,195,0,2,0,0,0,0,2,3,2,5,2,2,0,1,0,0,0,0,0,0,0,2 -050,01,081,Alabama,Lee County,11,99,138566,68390,70176,50406,50315,14807,16955,244,224,1903,1685,96,49,934,948,65886,68285,48388,48806,14595,16762,181,197,1839,1640,32,29,851,851,2504,1891,2018,1509,212,193,63,27,64,45,64,20,83,97 -050,01,081,Alabama,Lee County,12,0,1786,908,878,606,571,234,229,2,5,31,27,0,1,35,45,857,806,569,513,227,223,1,4,29,26,0,0,31,40,51,72,37,58,7,6,1,1,2,1,0,1,4,5 -050,01,081,Alabama,Lee County,12,1,6901,3548,3353,2351,2159,934,967,17,14,102,82,7,3,137,128,3360,3157,2205,2020,910,942,12,7,98,78,2,2,133,108,188,196,146,139,24,25,5,7,4,4,5,1,4,20 -050,01,081,Alabama,Lee County,12,2,8455,4394,4061,3001,2709,1156,1092,15,19,103,122,7,7,112,112,4167,3893,2818,2579,1137,1080,11,13,99,119,1,4,101,98,227,168,183,130,19,12,4,6,4,3,6,3,11,14 -050,01,081,Alabama,Lee County,12,3,8988,4495,4493,2968,2926,1282,1303,17,18,119,121,6,4,103,121,4346,4331,2858,2808,1263,1282,15,16,116,118,1,2,93,105,149,162,110,118,19,21,2,2,3,3,5,2,10,16 -050,01,081,Alabama,Lee County,12,4,13185,6581,6604,4834,4867,1449,1446,38,25,138,134,4,3,118,129,6351,6405,4651,4702,1425,1430,28,24,134,127,2,2,111,120,230,199,183,165,24,16,10,1,4,7,2,1,7,9 -050,01,081,Alabama,Lee County,12,5,21095,10868,10227,8735,8144,1633,1733,28,24,314,183,33,5,125,138,10405,9938,8358,7899,1597,1703,23,24,302,177,11,3,114,132,463,289,377,245,36,30,5,0,12,6,22,2,11,6 -050,01,081,Alabama,Lee County,12,6,10675,5430,5245,4014,3659,1031,1270,21,17,279,217,12,5,73,77,5112,5045,3754,3499,1004,1245,16,15,267,212,4,3,67,71,318,200,260,160,27,25,5,2,12,5,8,2,6,6 -050,01,081,Alabama,Lee County,12,7,8672,4229,4443,3000,2931,928,1253,21,13,206,189,14,4,60,53,3970,4272,2789,2791,915,1243,14,10,199,182,6,3,47,43,259,171,211,140,13,10,7,3,7,7,8,1,13,10 -050,01,081,Alabama,Lee County,12,8,8721,4176,4545,3010,3127,926,1216,23,12,179,155,4,6,34,29,3982,4405,2852,3010,914,1199,12,10,172,154,1,5,31,27,194,140,158,117,12,17,11,2,7,1,3,1,3,2 -050,01,081,Alabama,Lee County,12,9,8540,4196,4344,3007,2990,985,1153,15,12,147,142,6,7,36,40,4038,4239,2877,2906,974,1142,12,11,143,140,1,5,31,35,158,105,130,84,11,11,3,1,4,2,5,2,5,5 -050,01,081,Alabama,Lee County,12,10,8792,4318,4474,3082,3032,1060,1273,21,21,120,113,1,5,34,30,4199,4400,2980,2976,1055,1260,17,20,116,112,0,4,31,28,119,74,102,56,5,13,4,1,4,1,1,1,3,2 -050,01,081,Alabama,Lee County,12,11,8354,4071,4283,2949,3012,993,1127,15,6,77,101,1,4,36,33,3975,4212,2871,2956,985,1119,12,6,76,100,0,2,31,29,96,71,78,56,8,8,3,0,1,1,1,2,5,4 -050,01,081,Alabama,Lee County,12,12,7124,3348,3776,2452,2665,805,997,15,13,53,78,1,0,22,23,3296,3731,2413,2626,800,995,13,12,52,77,1,0,17,21,52,45,39,39,5,2,2,1,1,1,0,0,5,2 -050,01,081,Alabama,Lee County,12,13,6243,3015,3228,2363,2430,597,705,7,11,32,63,1,0,15,19,2982,3197,2335,2408,594,700,7,10,31,61,1,0,14,18,33,31,28,22,3,5,0,1,1,2,0,0,1,1 -050,01,081,Alabama,Lee County,12,14,4407,2103,2304,1672,1791,371,470,5,6,41,24,1,0,13,13,2072,2292,1645,1781,369,468,5,6,40,24,1,0,12,13,31,12,27,10,2,2,0,0,1,0,0,0,1,0 -050,01,081,Alabama,Lee County,12,15,3120,1411,1709,1150,1304,226,370,1,5,24,24,2,0,8,6,1397,1689,1138,1287,225,367,1,5,24,24,2,0,7,6,14,20,12,17,1,3,0,0,0,0,0,0,1,0 -050,01,081,Alabama,Lee County,12,16,2378,1070,1308,871,1011,181,282,3,1,10,9,0,0,5,5,1060,1305,862,1008,181,282,2,1,10,9,0,0,5,5,10,3,9,3,0,0,1,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,12,17,1514,595,919,524,731,63,183,1,0,4,3,0,0,3,2,587,913,518,725,63,183,0,0,3,3,0,0,3,2,8,6,6,6,0,0,1,0,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,12,18,1297,370,927,315,731,53,189,0,2,0,0,0,0,2,5,368,922,313,729,53,188,0,2,0,0,0,0,2,3,2,5,2,2,0,1,0,0,0,0,0,0,0,2 -050,01,081,Alabama,Lee County,12,99,140247,69126,71121,50904,50790,14907,17258,265,224,1979,1787,100,54,971,1008,66524,69152,48806,49223,14691,17051,201,196,1911,1743,34,35,881,904,2602,1969,2098,1567,216,207,64,28,68,44,66,19,90,104 -050,01,081,Alabama,Lee County,13,0,1799,916,883,609,573,236,230,2,5,32,27,1,1,36,47,862,811,571,515,229,224,1,4,29,26,1,0,31,42,54,72,38,58,7,6,1,1,3,1,0,1,5,5 -050,01,081,Alabama,Lee County,13,1,6920,3560,3360,2348,2154,943,975,17,16,105,81,7,3,140,131,3366,3162,2201,2015,917,950,12,8,99,78,2,2,135,109,194,198,147,139,26,25,5,8,6,3,5,1,5,22 -050,01,081,Alabama,Lee County,13,2,8476,4401,4075,3007,2715,1157,1096,16,18,102,122,6,8,113,116,4175,3903,2823,2583,1138,1084,12,12,99,119,1,4,102,101,226,172,184,132,19,12,4,6,3,3,5,4,11,15 -050,01,081,Alabama,Lee County,13,3,9002,4499,4503,2970,2933,1283,1306,18,20,118,122,6,4,104,118,4348,4336,2859,2812,1263,1285,15,16,116,119,1,2,94,102,151,167,111,121,20,21,3,4,2,3,5,2,10,16 -050,01,081,Alabama,Lee County,13,4,13142,6558,6584,4814,4852,1449,1442,36,24,139,134,5,4,115,128,6324,6381,4628,4684,1423,1426,27,23,135,127,3,2,108,119,234,203,186,168,26,16,9,1,4,7,2,2,7,9 -050,01,081,Alabama,Lee County,13,5,21225,10935,10290,8781,8185,1649,1753,29,27,314,182,37,6,125,137,10466,9995,8401,7939,1613,1722,24,25,302,177,13,2,113,130,469,295,380,246,36,31,5,2,12,5,24,4,12,7 -050,01,081,Alabama,Lee County,13,6,10737,5473,5264,4042,3674,1039,1275,23,18,281,215,14,6,74,76,5151,5065,3781,3513,1011,1251,17,15,268,211,5,3,69,72,322,199,261,161,28,24,6,3,13,4,9,3,5,4 -050,01,081,Alabama,Lee County,13,7,8753,4270,4483,3028,2958,941,1266,22,12,206,189,13,4,60,54,4006,4311,2814,2816,928,1257,15,9,198,182,6,3,45,44,264,172,214,142,13,9,7,3,8,7,7,1,15,10 -050,01,081,Alabama,Lee County,13,8,8696,4164,4532,2991,3110,930,1216,24,12,177,156,4,6,38,32,3970,4388,2833,2992,918,1198,13,9,170,155,1,4,35,30,194,144,158,118,12,18,11,3,7,1,3,2,3,2 -050,01,081,Alabama,Lee County,13,9,8548,4201,4347,3011,2994,986,1155,16,11,146,142,6,7,36,38,4039,4242,2879,2910,974,1144,12,10,142,140,1,5,31,33,162,105,132,84,12,11,4,1,4,2,5,2,5,5 -050,01,081,Alabama,Lee County,13,10,8787,4314,4473,3074,3023,1063,1279,23,22,118,114,1,4,35,31,4193,4395,2972,2965,1057,1266,18,19,114,113,0,3,32,29,121,78,102,58,6,13,5,3,4,1,1,1,3,2 -050,01,081,Alabama,Lee County,13,11,8395,4093,4302,2957,3021,1004,1136,17,6,77,102,1,4,37,33,3993,4233,2878,2966,994,1128,13,6,76,101,0,2,32,30,100,69,79,55,10,8,4,0,1,1,1,2,5,3 -050,01,081,Alabama,Lee County,13,12,7186,3374,3812,2473,2687,814,1009,16,14,51,77,0,0,20,25,3322,3765,2433,2647,808,1006,14,13,50,76,0,0,17,23,52,47,40,40,6,3,2,1,1,1,0,0,3,2 -050,01,081,Alabama,Lee County,13,13,6323,3053,3270,2391,2459,607,717,9,10,31,62,1,0,14,22,3021,3240,2362,2437,604,712,9,9,31,61,1,0,14,21,32,30,29,22,3,5,0,1,0,1,0,0,0,1 -050,01,081,Alabama,Lee County,13,14,4436,2119,2317,1686,1805,373,473,6,6,42,24,1,0,11,9,2088,2306,1659,1795,371,472,6,6,41,24,1,0,10,9,31,11,27,10,2,1,0,0,1,0,0,0,1,0 -050,01,081,Alabama,Lee County,13,15,3142,1424,1718,1163,1313,226,371,1,5,25,24,2,0,7,5,1409,1698,1150,1296,225,368,1,5,25,24,2,0,6,5,15,20,13,17,1,3,0,0,0,0,0,0,1,0 -050,01,081,Alabama,Lee County,13,16,2389,1078,1311,873,1011,186,284,4,2,10,9,0,0,5,5,1066,1308,863,1008,185,284,3,2,10,9,0,0,5,5,12,3,10,3,1,0,1,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,13,17,1517,598,919,529,731,64,183,1,1,2,4,0,0,2,0,588,911,521,723,64,183,0,1,1,4,0,0,2,0,10,8,8,8,0,0,1,0,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,13,18,1307,373,934,319,736,53,191,0,2,0,0,0,0,1,5,371,929,317,734,53,190,0,2,0,0,0,0,1,3,2,5,2,2,0,1,0,0,0,0,0,0,0,2 -050,01,081,Alabama,Lee County,13,99,140780,69403,71377,51066,50934,15003,17357,280,231,1976,1786,105,57,973,1012,66758,69379,48945,49350,14775,17150,212,194,1906,1746,38,32,882,907,2645,1998,2121,1584,228,207,68,37,70,40,67,25,91,105 -050,01,083,Alabama,Limestone County,1,0,834,412,422,353,366,51,45,0,2,0,3,0,0,8,6,388,389,331,336,50,43,0,1,0,3,0,0,7,6,24,33,22,30,1,2,0,1,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,1,1,3514,1837,1677,1529,1414,265,224,5,5,8,6,3,1,27,27,1710,1597,1417,1340,256,222,2,4,8,6,0,0,27,25,127,80,112,74,9,2,3,1,0,0,3,1,0,2 -050,01,083,Alabama,Limestone County,1,2,4639,2347,2292,1994,1946,303,288,14,13,6,9,0,0,30,36,2257,2190,1912,1849,298,285,12,12,6,8,0,0,29,36,90,102,82,97,5,3,2,1,0,1,0,0,1,0 -050,01,083,Alabama,Limestone County,1,3,4628,2419,2209,2041,1884,335,285,11,16,9,6,0,0,23,18,2341,2145,1965,1820,334,285,11,16,9,6,0,0,22,18,78,64,76,64,1,0,0,0,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,1,4,4310,2250,2060,1862,1709,341,317,17,7,6,11,0,0,24,16,2141,1991,1760,1645,338,315,14,5,6,11,0,0,23,15,109,69,102,64,3,2,3,2,0,0,0,0,1,1 -050,01,083,Alabama,Limestone County,1,5,4202,2275,1927,1754,1602,481,292,13,13,8,5,4,2,15,13,2108,1842,1604,1524,474,289,10,10,8,5,1,1,11,13,167,85,150,78,7,3,3,3,0,0,3,1,4,0 -050,01,083,Alabama,Limestone County,1,6,4544,2435,2109,1928,1797,468,274,16,12,9,13,0,0,14,13,2285,2033,1787,1726,464,271,12,10,9,13,0,0,13,13,150,76,141,71,4,3,4,2,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,1,7,5238,2763,2475,2193,2125,529,314,13,17,13,7,0,2,15,10,2661,2418,2101,2072,522,311,12,17,12,7,0,1,14,10,102,57,92,53,7,3,1,0,1,0,0,1,1,0 -050,01,083,Alabama,Limestone County,1,8,5828,3106,2722,2531,2338,542,347,10,12,7,13,0,0,16,12,3048,2693,2476,2310,541,347,9,11,7,13,0,0,15,12,58,29,55,28,1,0,1,1,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,1,9,5457,2911,2546,2420,2172,452,323,14,14,10,19,1,0,14,18,2871,2522,2383,2148,451,323,14,14,10,19,1,0,12,18,40,24,37,24,1,0,0,0,0,0,0,0,2,0 -050,01,083,Alabama,Limestone County,1,10,4664,2362,2302,1992,1973,329,271,14,15,10,18,2,0,15,25,2322,2279,1953,1951,329,270,13,15,10,18,2,0,15,25,40,23,39,22,0,1,1,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,1,11,4375,2158,2217,1905,1945,216,237,16,11,5,11,2,0,14,13,2137,2206,1886,1934,214,237,16,11,5,11,2,0,14,13,21,11,19,11,2,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,1,12,3375,1710,1665,1521,1491,155,153,12,8,5,1,0,1,17,11,1696,1655,1509,1483,154,152,12,8,5,1,0,1,16,10,14,10,12,8,1,1,0,0,0,0,0,0,1,1 -050,01,083,Alabama,Limestone County,1,13,2789,1357,1432,1227,1280,118,131,3,7,3,4,1,0,5,10,1349,1426,1219,1276,118,129,3,7,3,4,1,0,5,10,8,6,8,4,0,2,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,1,14,2352,1146,1206,1035,1084,96,113,2,3,0,3,0,0,13,3,1137,1199,1027,1078,95,112,2,3,0,3,0,0,13,3,9,7,8,6,1,1,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,1,15,1827,772,1055,691,933,72,115,4,2,0,1,1,0,4,4,767,1052,686,930,72,115,4,2,0,1,1,0,4,4,5,3,5,3,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,1,16,1445,586,859,538,774,43,80,0,1,2,0,0,0,3,4,581,857,533,772,43,80,0,1,2,0,0,0,3,4,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,1,17,907,300,607,265,543,35,59,0,0,0,1,0,0,0,4,300,601,265,538,35,58,0,0,0,1,0,0,0,4,0,6,0,5,0,1,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,1,18,740,186,554,160,498,24,51,0,1,1,1,0,0,1,3,184,550,158,495,24,51,0,1,1,0,0,0,1,3,2,4,2,3,0,0,0,0,0,1,0,0,0,0 -050,01,083,Alabama,Limestone County,1,99,65668,33332,32336,27939,27874,4855,3919,164,159,102,132,14,6,258,246,32283,31645,26972,27227,4812,3895,146,148,101,130,8,3,244,242,1049,691,967,647,43,24,18,11,1,2,6,3,14,4 -050,01,083,Alabama,Limestone County,2,0,849,420,429,358,372,52,46,0,2,0,3,0,0,10,6,395,395,335,341,51,44,0,1,0,3,0,0,9,6,25,34,23,31,1,2,0,1,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,2,1,3512,1836,1676,1529,1414,263,224,5,5,8,6,3,1,28,26,1709,1596,1417,1340,254,222,2,4,8,6,0,0,28,24,127,80,112,74,9,2,3,1,0,0,3,1,0,2 -050,01,083,Alabama,Limestone County,2,2,4623,2337,2286,1990,1943,302,286,14,13,6,9,0,0,25,35,2247,2184,1908,1846,297,283,12,12,6,8,0,0,24,35,90,102,82,97,5,3,2,1,0,1,0,0,1,0 -050,01,083,Alabama,Limestone County,2,3,4657,2432,2225,2053,1893,339,288,11,16,9,6,0,0,20,22,2354,2161,1977,1829,338,288,11,16,9,6,0,0,19,22,78,64,76,64,1,0,0,0,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,2,4,4333,2261,2072,1877,1719,340,318,17,7,6,11,0,0,21,17,2151,2004,1774,1656,337,316,14,5,6,11,0,0,20,16,110,68,103,63,3,2,3,2,0,0,0,0,1,1 -050,01,083,Alabama,Limestone County,2,5,4239,2293,1946,1773,1620,480,295,13,13,8,5,4,2,15,11,2123,1860,1620,1541,473,292,10,10,8,5,1,1,11,11,170,86,153,79,7,3,3,3,0,0,3,1,4,0 -050,01,083,Alabama,Limestone County,2,6,4528,2430,2098,1922,1784,470,275,16,12,9,13,0,0,13,14,2276,2022,1777,1713,466,272,12,10,9,13,0,0,12,14,154,76,145,71,4,3,4,2,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,2,7,5242,2766,2476,2196,2125,530,315,13,17,13,7,0,2,14,10,2663,2418,2103,2071,523,312,12,17,12,7,0,1,13,10,103,58,93,54,7,3,1,0,1,0,0,1,1,0 -050,01,083,Alabama,Limestone County,2,8,5814,3097,2717,2523,2332,541,349,10,12,7,14,0,0,16,10,3039,2688,2468,2304,540,349,9,11,7,14,0,0,15,10,58,29,55,28,1,0,1,1,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,2,9,5481,2924,2557,2429,2179,456,326,14,14,10,19,1,0,14,19,2884,2533,2392,2155,455,326,14,14,10,19,1,0,12,19,40,24,37,24,1,0,0,0,0,0,0,0,2,0 -050,01,083,Alabama,Limestone County,2,10,4700,2380,2320,2006,1990,334,274,14,15,10,18,2,0,14,23,2340,2297,1967,1968,334,273,13,15,10,18,2,0,14,23,40,23,39,22,0,1,1,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,2,11,4436,2188,2248,1930,1971,221,242,16,11,5,11,2,0,14,13,2166,2237,1910,1960,219,242,16,11,5,11,2,0,14,13,22,11,20,11,2,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,2,12,3403,1726,1677,1537,1502,155,154,12,8,5,1,0,1,17,11,1712,1667,1525,1494,154,153,12,8,5,1,0,1,16,10,14,10,12,8,1,1,0,0,0,0,0,0,1,1 -050,01,083,Alabama,Limestone County,2,13,2811,1367,1444,1235,1291,118,132,3,7,3,4,1,0,7,10,1359,1438,1227,1287,118,130,3,7,3,4,1,0,7,10,8,6,8,4,0,2,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,2,14,2368,1153,1215,1041,1091,98,114,2,3,0,3,0,0,12,4,1144,1208,1033,1085,97,113,2,3,0,3,0,0,12,4,9,7,8,6,1,1,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,2,15,1843,778,1065,697,941,72,117,4,2,0,1,1,0,4,4,773,1062,692,938,72,117,4,2,0,1,1,0,4,4,5,3,5,3,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,2,16,1459,592,867,544,782,43,80,0,1,2,0,0,0,3,4,587,865,539,780,43,80,0,1,2,0,0,0,3,4,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,2,17,922,306,616,271,551,35,60,0,0,0,1,0,0,0,4,306,610,271,546,35,59,0,0,0,1,0,0,0,4,0,6,0,5,0,1,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,2,18,746,189,557,161,500,24,52,0,1,1,1,0,0,3,3,187,553,159,497,24,52,0,1,1,0,0,0,3,3,2,4,2,3,0,0,0,0,0,1,0,0,0,0 -050,01,083,Alabama,Limestone County,2,99,65966,33475,32491,28072,28000,4873,3947,164,159,102,133,14,6,250,246,32415,31798,27094,27351,4830,3923,146,148,101,131,8,3,236,242,1060,693,978,649,43,24,18,11,1,2,6,3,14,4 -050,01,083,Alabama,Limestone County,3,0,934,473,461,410,394,49,52,1,2,1,3,1,0,11,10,430,423,370,359,48,50,1,1,1,3,0,0,10,10,43,38,40,35,1,2,0,1,0,0,1,0,1,0 -050,01,083,Alabama,Limestone County,3,1,3546,1793,1753,1494,1469,246,240,8,6,9,10,5,1,31,27,1672,1659,1397,1387,234,234,4,4,9,10,0,0,28,24,121,94,97,82,12,6,4,2,0,0,5,1,3,3 -050,01,083,Alabama,Limestone County,3,2,4607,2342,2265,1966,1910,314,290,14,16,9,12,0,0,39,37,2236,2159,1870,1814,307,284,12,14,9,11,0,0,38,36,106,106,96,96,7,6,2,2,0,1,0,0,1,1 -050,01,083,Alabama,Limestone County,3,3,4742,2483,2259,2084,1922,351,289,13,17,11,7,0,0,24,24,2404,2177,2014,1842,346,289,11,16,11,7,0,0,22,23,79,82,70,80,5,0,2,1,0,0,0,0,2,1 -050,01,083,Alabama,Limestone County,3,4,4324,2265,2059,1905,1700,311,314,17,13,10,11,0,0,22,21,2144,1990,1792,1637,307,312,14,10,10,11,0,0,21,20,121,69,113,63,4,2,3,3,0,0,0,0,1,1 -050,01,083,Alabama,Limestone County,3,5,4375,2387,1988,1842,1651,498,299,16,16,11,6,4,2,16,14,2194,1905,1667,1579,491,294,12,11,11,6,1,1,12,14,193,83,175,72,7,5,4,5,0,0,3,1,4,0 -050,01,083,Alabama,Limestone County,3,6,4381,2363,2018,1878,1696,440,277,16,15,14,16,1,1,14,13,2208,1943,1736,1629,435,273,10,12,14,16,0,0,13,13,155,75,142,67,5,4,6,3,0,0,1,1,1,0 -050,01,083,Alabama,Limestone County,3,7,5185,2755,2430,2218,2084,500,308,13,14,11,12,0,2,13,10,2622,2357,2095,2016,496,304,10,14,10,12,0,1,11,10,133,73,123,68,4,4,3,0,1,0,0,1,2,0 -050,01,083,Alabama,Limestone County,3,8,5739,3025,2714,2456,2318,521,341,16,24,13,16,0,0,19,15,2949,2674,2386,2279,517,341,15,23,13,16,0,0,18,15,76,40,70,39,4,0,1,1,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,3,9,5744,3068,2676,2536,2294,482,330,15,10,15,20,1,0,19,22,3010,2646,2481,2265,481,330,15,10,15,20,1,0,17,21,58,30,55,29,1,0,0,0,0,0,0,0,2,1 -050,01,083,Alabama,Limestone County,3,10,4830,2442,2388,2022,2030,369,298,20,19,14,19,2,0,15,22,2404,2362,1985,2005,369,297,19,19,14,19,2,0,15,22,38,26,37,25,0,1,1,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,3,11,4601,2308,2293,2015,1999,234,260,30,8,10,16,2,0,17,10,2274,2280,1983,1986,232,260,30,8,10,16,2,0,17,10,34,13,32,13,2,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,3,12,3499,1780,1719,1582,1537,163,158,13,6,6,5,0,0,16,13,1764,1708,1568,1528,162,157,13,6,6,5,0,0,15,12,16,11,14,9,1,1,0,0,0,0,0,0,1,1 -050,01,083,Alabama,Limestone County,3,13,2896,1403,1493,1263,1329,123,136,4,9,4,9,1,0,8,10,1392,1487,1252,1325,123,134,4,9,4,9,1,0,8,10,11,6,11,4,0,2,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,3,14,2440,1197,1243,1075,1120,107,113,2,3,0,3,0,0,13,4,1187,1235,1066,1113,106,112,2,3,0,3,0,0,13,4,10,8,9,7,1,1,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,3,15,1893,820,1073,744,939,66,126,3,3,0,1,2,0,5,4,814,1070,738,936,66,126,3,3,0,1,2,0,5,4,6,3,6,3,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,3,16,1500,600,900,548,814,47,81,0,1,2,0,0,0,3,4,596,898,544,812,47,81,0,1,2,0,0,0,3,4,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,3,17,930,310,620,273,553,37,62,0,0,0,1,0,0,0,4,309,615,272,548,37,62,0,0,0,1,0,0,0,4,1,5,1,5,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,3,18,770,195,575,166,514,25,56,0,1,1,1,0,0,3,3,193,571,164,511,25,56,0,1,1,0,0,0,3,3,2,4,2,3,0,0,0,0,0,1,0,0,0,0 -050,01,083,Alabama,Limestone County,3,99,66936,34009,32927,28477,28273,4883,4030,201,183,141,168,19,6,288,267,32802,32159,27380,27571,4829,3996,175,165,140,166,9,2,269,259,1207,768,1097,702,54,34,26,18,1,2,10,4,19,8 -050,01,083,Alabama,Limestone County,4,0,848,456,392,400,331,40,47,1,1,2,4,1,0,12,9,410,346,357,287,39,45,1,1,2,4,0,0,11,9,46,46,43,44,1,2,0,0,0,0,1,0,1,0 -050,01,083,Alabama,Limestone County,4,1,3598,1841,1757,1539,1458,239,245,10,6,10,15,5,2,38,31,1713,1647,1435,1364,228,236,5,4,10,15,0,0,35,28,128,110,104,94,11,9,5,2,0,0,5,2,3,3 -050,01,083,Alabama,Limestone County,4,2,4539,2265,2274,1927,1910,273,288,13,18,11,17,1,4,40,37,2149,2162,1825,1812,267,282,7,15,11,17,0,1,39,35,116,112,102,98,6,6,6,3,0,0,1,3,1,2 -050,01,083,Alabama,Limestone County,4,3,4780,2465,2315,2063,1947,338,304,21,21,8,11,1,0,34,32,2375,2219,1987,1857,332,302,19,18,8,11,0,0,29,31,90,96,76,90,6,2,2,3,0,0,1,0,5,1 -050,01,083,Alabama,Limestone County,4,4,4351,2290,2061,1904,1703,330,311,17,13,9,7,0,0,30,27,2152,1970,1778,1622,327,308,12,9,9,7,0,0,26,24,138,91,126,81,3,3,5,4,0,0,0,0,4,3 -050,01,083,Alabama,Limestone County,4,5,4339,2334,2005,1796,1679,481,288,20,14,9,6,4,3,24,15,2154,1910,1642,1598,469,283,14,9,9,6,1,0,19,14,180,95,154,81,12,5,6,5,0,0,3,3,5,1 -050,01,083,Alabama,Limestone County,4,6,4337,2341,1996,1842,1671,441,274,18,16,14,19,3,1,23,15,2171,1900,1691,1589,437,269,12,10,14,19,0,0,17,13,170,96,151,82,4,5,6,6,0,0,3,1,6,2 -050,01,083,Alabama,Limestone County,4,7,5158,2774,2384,2223,2016,499,317,16,20,15,17,1,1,20,13,2626,2311,2091,1952,493,313,11,17,14,17,0,0,17,12,148,73,132,64,6,4,5,3,1,0,1,1,3,1 -050,01,083,Alabama,Limestone County,4,8,5676,2945,2731,2380,2356,509,322,18,24,15,13,1,0,22,16,2863,2670,2307,2301,505,320,16,22,15,13,0,0,20,14,82,61,73,55,4,2,2,2,0,0,1,0,2,2 -050,01,083,Alabama,Limestone County,4,9,5752,3109,2643,2555,2277,492,306,20,18,21,20,1,0,20,22,3042,2620,2493,2256,491,306,18,17,21,20,1,0,18,21,67,23,62,21,1,0,2,1,0,0,0,0,2,1 -050,01,083,Alabama,Limestone County,4,10,5135,2619,2516,2164,2113,395,339,18,19,16,19,3,0,23,26,2576,2482,2125,2081,395,337,16,19,16,19,3,0,21,26,43,34,39,32,0,2,2,0,0,0,0,0,2,0 -050,01,083,Alabama,Limestone County,4,11,4570,2314,2256,2015,1961,249,246,18,19,10,13,2,0,20,17,2275,2232,1979,1938,247,245,18,19,10,13,2,0,19,17,39,24,36,23,2,1,0,0,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,4,12,3840,1935,1905,1725,1685,171,187,15,8,8,11,0,0,16,14,1918,1892,1711,1674,169,186,15,8,8,11,0,0,15,13,17,13,14,11,2,1,0,0,0,0,0,0,1,1 -050,01,083,Alabama,Limestone County,4,13,3032,1455,1577,1314,1407,123,141,5,9,4,8,1,0,8,12,1445,1569,1304,1401,123,139,5,9,4,8,1,0,8,12,10,8,10,6,0,2,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,4,14,2469,1214,1255,1085,1129,110,116,5,3,2,3,0,0,12,4,1206,1246,1077,1121,110,115,5,3,2,3,0,0,12,4,8,9,8,8,0,1,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,4,15,1984,891,1093,811,964,69,122,4,2,0,2,1,0,6,3,886,1088,806,959,69,122,4,2,0,2,1,0,6,3,5,5,5,5,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,4,16,1498,588,910,535,830,48,74,0,1,2,0,0,0,3,5,583,908,530,828,48,74,0,1,2,0,0,0,3,5,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,4,17,976,352,624,318,547,33,70,0,0,0,1,0,0,1,6,351,619,317,543,33,69,0,0,0,1,0,0,1,6,1,5,1,4,0,1,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,4,18,795,203,592,173,532,28,55,0,1,1,1,0,0,1,3,201,589,171,530,28,55,0,1,1,0,0,0,1,3,2,3,2,2,0,0,0,0,0,1,0,0,0,0 -050,01,083,Alabama,Limestone County,4,99,67677,34391,33286,28769,28516,4868,4052,219,213,157,187,25,11,353,307,33096,32380,27626,27713,4810,4006,178,184,156,186,9,1,317,290,1295,906,1143,803,58,46,41,29,1,1,16,10,36,17 -050,01,083,Alabama,Limestone County,5,0,832,386,446,327,382,40,45,1,2,3,4,2,0,13,13,353,402,298,341,39,43,1,1,3,4,0,0,12,13,33,44,29,41,1,2,0,1,0,0,2,0,1,0 -050,01,083,Alabama,Limestone County,5,1,3567,1900,1667,1583,1391,243,214,12,9,11,12,5,2,46,39,1750,1535,1456,1281,235,203,6,5,11,12,0,0,42,34,150,132,127,110,8,11,6,4,0,0,5,2,4,5 -050,01,083,Alabama,Limestone County,5,2,4539,2287,2252,1924,1876,284,293,15,18,19,18,3,5,42,42,2148,2138,1803,1782,277,285,9,15,19,17,1,1,39,38,139,114,121,94,7,8,6,3,0,1,2,4,3,4 -050,01,083,Alabama,Limestone County,5,3,4795,2458,2337,2067,1940,328,318,18,23,11,16,2,0,32,40,2365,2234,1990,1844,324,316,15,19,10,16,1,0,25,39,93,103,77,96,4,2,3,4,1,0,1,0,7,1 -050,01,083,Alabama,Limestone County,5,4,4432,2317,2115,1944,1759,315,301,16,19,12,8,0,0,30,28,2178,2018,1819,1675,311,298,11,14,12,7,0,0,25,24,139,97,125,84,4,3,5,5,0,1,0,0,5,4 -050,01,083,Alabama,Limestone County,5,5,4257,2320,1937,1779,1606,480,281,19,18,11,9,4,4,27,19,2142,1844,1625,1529,473,276,11,11,11,9,1,1,21,18,178,93,154,77,7,5,8,7,0,0,3,3,6,1 -050,01,083,Alabama,Limestone County,5,6,4428,2369,2059,1857,1732,446,266,24,18,13,14,4,3,25,26,2181,1949,1698,1641,437,259,15,12,12,14,0,0,19,23,188,110,159,91,9,7,9,6,1,0,4,3,6,3 -050,01,083,Alabama,Limestone County,5,7,5080,2765,2315,2224,1965,487,299,18,17,14,18,2,2,20,14,2601,2238,2079,1898,482,294,11,14,13,18,0,1,16,13,164,77,145,67,5,5,7,3,1,0,2,1,4,1 -050,01,083,Alabama,Limestone County,5,8,5542,2860,2682,2303,2294,501,329,19,25,12,16,1,0,24,18,2762,2612,2216,2232,495,327,17,23,12,16,0,0,22,14,98,70,87,62,6,2,2,2,0,0,1,0,2,4 -050,01,083,Alabama,Limestone County,5,9,5965,3223,2742,2648,2360,511,319,20,20,19,20,2,0,23,23,3142,2716,2573,2336,510,319,18,19,19,20,1,0,21,22,81,26,75,24,1,0,2,1,0,0,1,0,2,1 -050,01,083,Alabama,Limestone County,5,10,5246,2680,2566,2205,2165,418,329,20,22,12,20,2,0,23,30,2643,2528,2171,2131,418,327,18,21,12,20,2,0,22,29,37,38,34,34,0,2,2,1,0,0,0,0,1,1 -050,01,083,Alabama,Limestone County,5,11,4654,2344,2310,2030,1982,254,275,25,8,12,23,1,0,22,22,2299,2289,1990,1962,252,274,25,8,12,23,1,0,19,22,45,21,40,20,2,1,0,0,0,0,0,0,3,0 -050,01,083,Alabama,Limestone County,5,12,4075,2044,2031,1789,1796,209,195,15,8,11,13,0,1,20,18,2023,2014,1771,1781,207,194,15,8,11,13,0,1,19,17,21,17,18,15,2,1,0,0,0,0,0,0,1,1 -050,01,083,Alabama,Limestone County,5,13,3212,1593,1619,1446,1437,122,151,7,9,4,10,1,0,13,12,1583,1606,1436,1426,122,149,7,9,4,10,1,0,13,12,10,13,10,11,0,2,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,5,14,2596,1255,1341,1138,1217,101,113,4,2,2,3,0,0,10,6,1241,1330,1126,1208,99,112,4,2,2,3,0,0,10,5,14,11,12,9,2,1,0,0,0,0,0,0,0,1 -050,01,083,Alabama,Limestone County,5,15,2032,926,1106,834,982,82,116,4,3,0,2,1,0,5,3,918,1101,826,977,82,116,4,3,0,2,1,0,5,3,8,5,8,5,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,5,16,1512,607,905,551,816,48,80,2,1,2,1,0,0,4,7,603,902,547,813,48,80,2,1,2,1,0,0,4,7,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,5,17,1028,379,649,347,568,31,75,1,0,0,1,0,0,0,5,378,644,346,564,31,74,1,0,0,1,0,0,0,5,1,5,1,4,0,1,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,5,18,786,195,591,162,534,30,53,0,1,1,1,0,0,2,2,194,589,161,532,30,53,0,1,1,1,0,0,2,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,5,99,68578,34908,33670,29158,28802,4930,4052,240,223,169,209,30,17,381,367,33504,32689,27931,27953,4872,3999,190,186,166,207,9,4,336,340,1404,981,1227,849,58,53,50,37,3,2,21,13,45,27 -050,01,083,Alabama,Limestone County,6,0,857,414,443,362,376,31,47,1,2,4,2,3,1,13,15,376,394,329,332,30,44,1,1,4,2,0,0,12,15,38,49,33,44,1,3,0,1,0,0,3,1,1,0 -050,01,083,Alabama,Limestone County,6,1,3542,1853,1689,1535,1375,234,235,14,9,12,15,6,3,52,52,1691,1557,1402,1271,226,223,5,5,12,15,0,0,46,43,162,132,133,104,8,12,9,4,0,0,6,3,6,9 -050,01,083,Alabama,Limestone County,6,2,4659,2397,2262,2005,1909,300,265,18,21,24,17,3,5,47,45,2241,2137,1869,1807,290,256,12,17,24,17,1,1,45,39,156,125,136,102,10,9,6,4,0,0,2,4,2,6 -050,01,083,Alabama,Limestone County,6,3,4804,2451,2353,2056,1927,321,334,21,26,9,20,1,0,43,46,2361,2243,1986,1828,316,330,17,21,8,20,0,0,34,44,90,110,70,99,5,4,4,5,1,0,1,0,9,2 -050,01,083,Alabama,Limestone County,6,4,4534,2375,2159,2003,1821,320,286,16,16,13,5,0,0,23,31,2232,2061,1875,1738,315,283,11,10,13,4,0,0,18,26,143,98,128,83,5,3,5,6,0,1,0,0,5,5 -050,01,083,Alabama,Limestone County,6,5,4218,2248,1970,1746,1618,439,291,23,21,9,10,4,3,27,27,2087,1869,1610,1538,430,284,15,12,9,10,1,0,22,25,161,101,136,80,9,7,8,9,0,0,3,3,5,2 -050,01,083,Alabama,Limestone County,6,6,4431,2337,2094,1833,1763,439,266,24,20,13,17,4,5,24,23,2153,1977,1675,1667,432,259,15,13,12,17,0,1,19,20,184,117,158,96,7,7,9,7,1,0,4,4,5,3 -050,01,083,Alabama,Limestone County,6,7,4927,2666,2261,2150,1906,459,297,18,18,15,21,2,3,22,16,2507,2171,2010,1826,456,292,10,15,14,21,0,2,17,15,159,90,140,80,3,5,8,3,1,0,2,1,5,1 -050,01,083,Alabama,Limestone County,6,8,5535,2854,2681,2322,2296,473,323,17,26,13,16,1,0,28,20,2741,2597,2223,2224,466,320,14,22,13,16,0,0,25,15,113,84,99,72,7,3,3,4,0,0,1,0,3,5 -050,01,083,Alabama,Limestone County,6,9,5996,3218,2778,2638,2391,515,334,18,14,16,18,2,1,29,20,3133,2742,2559,2358,514,334,16,13,16,18,1,0,27,19,85,36,79,33,1,0,2,1,0,0,1,1,2,1 -050,01,083,Alabama,Limestone County,6,10,5461,2860,2601,2352,2185,443,341,23,25,15,21,2,0,25,29,2816,2569,2311,2159,443,339,21,24,15,21,2,0,24,26,44,32,41,26,0,2,2,1,0,0,0,0,1,3 -050,01,083,Alabama,Limestone County,6,11,4796,2384,2412,2064,2065,263,282,22,18,12,23,1,0,22,24,2339,2381,2023,2037,261,281,22,18,12,22,1,0,20,23,45,31,41,28,2,1,0,0,0,1,0,0,2,1 -050,01,083,Alabama,Limestone County,6,12,4288,2132,2156,1866,1920,222,199,15,9,12,12,0,1,17,15,2100,2142,1838,1908,220,198,15,9,12,12,0,1,15,14,32,14,28,12,2,1,0,0,0,0,0,0,2,1 -050,01,083,Alabama,Limestone County,6,13,3403,1705,1698,1534,1495,141,173,8,8,6,11,2,0,14,11,1693,1684,1524,1483,140,171,8,8,6,11,1,0,14,11,12,14,10,12,1,2,0,0,0,0,1,0,0,0 -050,01,083,Alabama,Limestone County,6,14,2715,1308,1407,1185,1276,103,117,6,2,2,4,0,0,12,8,1295,1395,1172,1266,103,116,6,2,2,4,0,0,12,7,13,12,13,10,0,1,0,0,0,0,0,0,0,1 -050,01,083,Alabama,Limestone County,6,15,2063,950,1113,867,1001,73,104,4,2,0,3,0,0,6,3,943,1108,860,996,73,104,4,2,0,3,0,0,6,3,7,5,7,5,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,6,16,1541,637,904,582,817,49,78,2,1,2,3,0,0,2,5,632,902,577,815,49,78,2,1,2,3,0,0,2,5,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,6,17,1045,379,666,350,583,28,76,0,0,0,1,0,0,1,6,377,662,348,579,28,76,0,0,0,1,0,0,1,6,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,6,18,778,190,588,156,527,31,56,0,1,1,2,0,0,2,2,189,583,155,523,31,56,0,1,1,1,0,0,2,2,1,5,1,4,0,0,0,0,0,1,0,0,0,0 -050,01,083,Alabama,Limestone County,6,99,69593,35358,34235,29606,29251,4884,4104,250,239,178,221,31,22,409,398,33906,33174,28346,28355,4823,4044,194,194,175,218,7,5,361,358,1452,1061,1260,896,61,60,56,45,3,3,24,17,48,40 -050,01,083,Alabama,Limestone County,7,0,950,456,494,391,411,32,64,1,1,5,2,3,1,24,15,406,432,347,351,31,63,1,1,5,2,0,0,22,15,50,62,44,60,1,1,0,0,0,0,3,1,2,0 -050,01,083,Alabama,Limestone County,7,1,3543,1839,1704,1529,1392,200,228,14,8,17,11,7,4,72,61,1666,1551,1388,1265,192,217,7,4,17,11,0,1,62,53,173,153,141,127,8,11,7,4,0,0,7,3,10,8 -050,01,083,Alabama,Limestone County,7,2,4774,2443,2331,2025,1954,314,279,18,19,25,25,4,6,57,48,2277,2183,1883,1834,303,267,11,15,25,25,1,1,54,41,166,148,142,120,11,12,7,4,0,0,3,5,3,7 -050,01,083,Alabama,Limestone County,7,3,4962,2564,2398,2155,1978,322,323,24,22,11,21,6,4,46,50,2434,2271,2055,1868,316,320,18,16,10,21,2,1,33,45,130,127,100,110,6,3,6,6,1,0,4,3,13,5 -050,01,083,Alabama,Limestone County,7,4,4675,2468,2207,2073,1863,323,274,16,20,15,7,3,2,38,41,2323,2092,1949,1770,318,271,10,12,13,6,1,1,32,32,145,115,124,93,5,3,6,8,2,1,2,1,6,9 -050,01,083,Alabama,Limestone County,7,5,4190,2247,1943,1731,1579,444,300,19,24,14,9,6,3,33,28,2055,1822,1575,1482,431,291,10,15,14,9,1,0,24,25,192,121,156,97,13,9,9,9,0,0,5,3,9,3 -050,01,083,Alabama,Limestone County,7,6,4620,2434,2186,1901,1824,455,281,30,26,14,15,6,6,28,34,2217,2063,1720,1729,446,274,19,18,13,12,0,1,19,29,217,123,181,95,9,7,11,8,1,3,6,5,9,5 -050,01,083,Alabama,Limestone County,7,7,4852,2605,2247,2096,1905,450,283,20,16,15,20,6,6,18,17,2433,2155,1954,1826,442,280,11,12,13,20,1,3,12,14,172,92,142,79,8,3,9,4,2,0,5,3,6,3 -050,01,083,Alabama,Limestone County,7,8,5532,2879,2653,2351,2252,463,329,16,30,18,17,2,0,29,25,2743,2546,2232,2163,455,324,13,26,18,16,0,0,25,17,136,107,119,89,8,5,3,4,0,1,2,0,4,8 -050,01,083,Alabama,Limestone County,7,9,6109,3213,2896,2613,2470,531,365,19,18,19,18,1,4,30,21,3128,2836,2540,2422,529,363,14,14,19,18,0,1,26,18,85,60,73,48,2,2,5,4,0,0,1,3,4,3 -050,01,083,Alabama,Limestone County,7,10,5626,2997,2629,2504,2208,430,334,20,27,13,25,0,0,30,35,2928,2591,2441,2179,428,330,18,25,13,25,0,0,28,32,69,38,63,29,2,4,2,2,0,0,0,0,2,3 -050,01,083,Alabama,Limestone County,7,11,4944,2435,2509,2077,2135,295,301,25,16,14,29,0,0,24,28,2390,2479,2038,2108,293,300,24,16,14,28,0,0,21,27,45,30,39,27,2,1,1,0,0,1,0,0,3,1 -050,01,083,Alabama,Limestone County,7,12,4587,2283,2304,1992,2022,240,232,16,15,15,15,1,0,19,20,2245,2293,1958,2011,238,232,16,15,14,15,1,0,18,20,38,11,34,11,2,0,0,0,1,0,0,0,1,0 -050,01,083,Alabama,Limestone County,7,13,3501,1738,1763,1570,1558,142,171,8,10,7,12,1,0,10,12,1724,1746,1558,1541,141,171,8,10,7,12,0,0,10,12,14,17,12,17,1,0,0,0,0,0,1,0,0,0 -050,01,083,Alabama,Limestone County,7,14,2773,1344,1429,1217,1287,110,130,4,3,3,3,0,0,10,6,1335,1421,1209,1280,109,130,4,3,3,3,0,0,10,5,9,8,8,7,1,0,0,0,0,0,0,0,0,1 -050,01,083,Alabama,Limestone County,7,15,2154,1010,1144,913,1037,85,95,5,4,1,3,0,0,6,5,1004,1137,907,1030,85,95,5,4,1,3,0,0,6,5,6,7,6,7,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,7,16,1611,652,959,599,858,46,92,2,1,1,2,0,0,4,6,648,956,595,855,46,92,2,1,1,2,0,0,4,6,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,7,17,1083,429,654,384,584,42,65,1,0,1,1,0,0,1,4,427,652,382,582,42,65,1,0,1,1,0,0,1,4,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,7,18,817,208,609,179,548,25,53,0,4,1,2,0,0,3,2,207,604,178,544,25,53,0,4,1,1,0,0,3,2,1,5,1,4,0,0,0,0,0,1,0,0,0,0 -050,01,083,Alabama,Limestone County,7,99,71303,36244,35059,30300,29865,4949,4199,258,264,209,237,46,36,482,458,34590,33830,28909,28840,4870,4138,192,211,202,230,7,9,410,402,1654,1229,1391,1025,79,61,66,53,7,7,39,27,72,56 -050,01,083,Alabama,Limestone County,8,0,950,483,467,420,395,35,50,1,1,6,2,4,1,17,18,429,409,373,340,34,48,1,1,6,2,0,0,15,18,54,58,47,55,1,2,0,0,0,0,4,1,2,0 -050,01,083,Alabama,Limestone County,8,1,3682,1879,1803,1572,1459,190,247,16,10,22,15,10,6,69,66,1681,1620,1413,1307,182,235,6,5,21,15,1,1,58,57,198,183,159,152,8,12,10,5,1,0,9,5,11,9 -050,01,083,Alabama,Limestone County,8,2,4946,2500,2446,2073,2035,311,306,21,23,27,27,4,7,64,48,2325,2273,1929,1895,298,294,11,16,27,27,1,1,59,40,175,173,144,140,13,12,10,7,0,0,3,6,5,8 -050,01,083,Alabama,Limestone County,8,3,5137,2679,2458,2226,2015,351,335,23,24,20,24,6,4,53,56,2524,2310,2101,1888,345,331,16,17,19,24,2,1,41,49,155,148,125,127,6,4,7,7,1,0,4,3,12,7 -050,01,083,Alabama,Limestone County,8,4,4809,2523,2286,2097,1927,347,283,16,24,14,10,4,2,45,40,2371,2152,1968,1818,341,279,10,15,12,8,1,1,39,31,152,134,129,109,6,4,6,9,2,2,3,1,6,9 -050,01,083,Alabama,Limestone County,8,5,4187,2206,1981,1737,1604,394,307,17,24,14,14,7,4,37,28,2002,1856,1570,1505,383,299,7,14,14,13,1,0,27,25,204,125,167,99,11,8,10,10,0,1,6,4,10,3 -050,01,083,Alabama,Limestone County,8,6,4782,2563,2219,2005,1865,482,274,31,25,9,18,7,7,29,30,2321,2111,1802,1786,473,266,18,15,8,16,0,2,20,26,242,108,203,79,9,8,13,10,1,2,7,5,9,4 -050,01,083,Alabama,Limestone County,8,7,4888,2641,2247,2110,1868,461,294,19,23,26,33,6,6,19,23,2450,2131,1953,1768,454,291,8,19,23,32,0,3,12,18,191,116,157,100,7,3,11,4,3,1,6,3,7,5 -050,01,083,Alabama,Limestone County,8,8,5686,2920,2766,2394,2326,455,348,21,27,19,31,3,1,28,33,2764,2637,2256,2217,446,342,18,23,19,30,1,0,24,25,156,129,138,109,9,6,3,4,0,1,2,1,4,8 -050,01,083,Alabama,Limestone County,8,9,6152,3233,2919,2634,2469,515,376,24,28,27,19,1,4,32,23,3134,2857,2550,2422,512,373,18,23,27,19,0,1,27,19,99,62,84,47,3,3,6,5,0,0,1,3,5,4 -050,01,083,Alabama,Limestone County,8,10,5959,3180,2779,2651,2342,456,349,21,29,16,27,2,0,34,32,3093,2737,2574,2309,451,345,19,27,16,27,1,0,32,29,87,42,77,33,5,4,2,2,0,0,1,0,2,3 -050,01,083,Alabama,Limestone County,8,11,5114,2551,2563,2152,2186,337,303,23,15,14,30,1,1,24,28,2505,2528,2114,2157,334,301,22,14,14,29,1,1,20,26,46,35,38,29,3,2,1,1,0,1,0,0,4,2 -050,01,083,Alabama,Limestone County,8,12,4835,2422,2413,2104,2117,263,255,16,7,14,16,1,0,24,18,2380,2395,2067,2099,261,255,16,7,13,16,1,0,22,18,42,18,37,18,2,0,0,0,1,0,0,0,2,0 -050,01,083,Alabama,Limestone County,8,13,3671,1796,1875,1623,1666,147,174,9,9,4,14,0,0,13,12,1782,1856,1610,1647,146,174,9,9,4,14,0,0,13,12,14,19,13,19,1,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,8,14,2925,1430,1495,1288,1343,120,133,9,3,4,6,0,1,9,9,1424,1485,1283,1334,119,133,9,3,4,6,0,0,9,9,6,10,5,9,1,0,0,0,0,0,0,1,0,0 -050,01,083,Alabama,Limestone County,8,15,2311,1099,1212,999,1093,83,106,5,5,3,3,1,0,8,5,1091,1204,992,1085,83,106,5,5,3,3,1,0,7,5,8,8,7,8,0,0,0,0,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,8,16,1653,694,959,644,850,41,98,3,2,1,3,0,0,5,6,689,955,639,846,41,98,3,2,1,3,0,0,5,6,5,4,5,4,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,8,17,1112,421,691,390,624,27,60,1,0,0,2,0,0,3,5,417,690,386,623,27,60,1,0,0,2,0,0,3,5,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,8,18,852,229,623,197,555,27,59,1,5,1,1,0,0,3,3,228,619,196,551,27,59,1,5,1,1,0,0,3,3,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,8,99,73651,37449,36202,31316,30739,5042,4357,277,284,241,295,57,44,516,483,35610,34825,29776,29597,4957,4289,198,220,232,287,11,11,436,421,1839,1377,1540,1142,85,68,79,64,9,8,46,33,80,62 -050,01,083,Alabama,Limestone County,9,0,1048,528,520,453,444,38,50,1,2,7,3,4,1,25,20,472,451,404,380,37,48,1,1,7,3,0,0,23,19,56,69,49,64,1,2,0,1,0,0,4,1,2,1 -050,01,083,Alabama,Limestone County,9,1,3793,1900,1893,1582,1543,191,253,16,11,21,25,11,6,79,55,1691,1710,1412,1392,183,241,4,6,20,25,1,1,71,45,209,183,170,151,8,12,12,5,1,0,10,5,8,10 -050,01,083,Alabama,Limestone County,9,2,5132,2619,2513,2172,2062,320,323,22,25,27,32,4,7,74,64,2413,2304,1997,1889,309,312,11,17,27,32,1,1,68,53,206,209,175,173,11,11,11,8,0,0,3,6,6,11 -050,01,083,Alabama,Limestone County,9,3,5202,2698,2504,2256,2069,333,311,23,22,24,33,6,4,56,65,2528,2351,2124,1939,323,307,15,14,23,32,2,1,41,58,170,153,132,130,10,4,8,8,1,1,4,3,15,7 -050,01,083,Alabama,Limestone County,9,4,4974,2563,2411,2117,2014,356,309,25,25,13,10,4,2,48,51,2395,2268,1975,1898,351,305,18,16,11,8,1,1,39,40,168,143,142,116,5,4,7,9,2,2,3,1,9,11 -050,01,083,Alabama,Limestone County,9,5,4308,2309,1999,1821,1635,408,285,21,27,14,16,7,4,38,32,2076,1851,1627,1517,397,276,9,15,14,15,1,0,28,28,233,148,194,118,11,9,12,12,0,1,6,4,10,4 -050,01,083,Alabama,Limestone County,9,6,4858,2549,2309,1993,1922,466,297,35,24,13,20,9,8,33,38,2314,2184,1801,1835,457,285,21,13,12,17,1,1,22,33,235,125,192,87,9,12,14,11,1,3,8,7,11,5 -050,01,083,Alabama,Limestone County,9,7,4931,2657,2274,2106,1886,473,304,22,20,28,35,6,6,22,23,2450,2140,1932,1769,467,300,9,15,25,35,1,3,16,18,207,134,174,117,6,4,13,5,3,0,5,3,6,5 -050,01,083,Alabama,Limestone County,9,8,5834,3004,2830,2469,2377,456,356,20,19,20,44,3,1,36,33,2820,2698,2309,2265,444,350,16,15,20,43,1,0,30,25,184,132,160,112,12,6,4,4,0,1,2,1,6,8 -050,01,083,Alabama,Limestone County,9,9,6300,3279,3021,2640,2567,553,370,24,29,30,27,1,4,31,24,3175,2939,2550,2499,550,367,19,24,30,27,0,1,26,21,104,82,90,68,3,3,5,5,0,0,1,3,5,3 -050,01,083,Alabama,Limestone County,9,10,6161,3337,2824,2789,2390,477,346,19,31,19,29,2,0,31,28,3225,2786,2688,2363,472,340,17,29,19,29,1,0,28,25,112,38,101,27,5,6,2,2,0,0,1,0,3,3 -050,01,083,Alabama,Limestone County,9,11,5470,2725,2745,2295,2311,357,354,23,21,12,26,1,0,37,33,2676,2699,2256,2275,354,351,21,18,12,25,1,0,32,30,49,46,39,36,3,3,2,3,0,1,0,0,5,3 -050,01,083,Alabama,Limestone County,9,12,4855,2444,2411,2105,2104,282,256,17,13,20,19,1,0,19,19,2393,2387,2060,2081,280,256,17,12,18,19,1,0,17,19,51,24,45,23,2,0,0,1,2,0,0,0,2,0 -050,01,083,Alabama,Limestone County,9,13,4011,1966,2045,1766,1812,168,192,10,9,6,18,1,0,15,14,1953,2028,1755,1795,167,192,10,9,6,18,0,0,15,14,13,17,11,17,1,0,0,0,0,0,1,0,0,0 -050,01,083,Alabama,Limestone County,9,14,3073,1487,1586,1349,1423,117,139,5,5,5,4,0,1,11,14,1480,1575,1343,1413,116,139,5,5,5,4,0,0,11,14,7,11,6,10,1,0,0,0,0,0,0,1,0,0 -050,01,083,Alabama,Limestone County,9,15,2379,1125,1254,1021,1128,88,112,5,3,4,2,0,0,7,9,1115,1246,1012,1120,88,112,5,3,4,2,0,0,6,9,10,8,9,8,0,0,0,0,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,9,16,1720,745,975,694,855,44,107,2,2,1,5,0,0,4,6,740,969,689,849,44,107,2,2,1,5,0,0,4,6,5,6,5,6,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,9,17,1123,404,719,362,649,37,61,1,0,1,3,0,0,3,6,401,717,359,648,37,60,1,0,1,3,0,0,3,6,3,2,3,1,0,1,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,9,18,891,253,638,220,563,29,65,1,6,1,1,0,0,2,3,252,634,219,559,29,65,1,6,1,1,0,0,2,3,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,9,99,76063,38592,37471,32210,31754,5193,4490,292,294,266,352,60,44,571,537,36569,35937,30512,30486,5105,4413,202,220,256,343,12,9,482,466,2023,1534,1698,1268,88,77,90,74,10,9,48,35,89,71 -050,01,083,Alabama,Limestone County,10,0,1113,556,557,477,465,38,62,2,3,8,4,5,1,26,22,507,476,436,391,37,59,2,2,8,4,0,0,24,20,49,81,41,74,1,3,0,1,0,0,5,1,2,2 -050,01,083,Alabama,Limestone County,10,1,4021,2090,1931,1736,1592,212,236,21,12,23,16,12,8,86,67,1843,1709,1537,1406,204,223,5,6,22,16,1,1,74,57,247,222,199,186,8,13,16,6,1,0,11,7,12,10 -050,01,083,Alabama,Limestone County,10,2,5137,2581,2556,2106,2086,315,317,25,25,37,50,6,8,92,70,2371,2324,1928,1898,306,303,14,15,37,50,2,1,84,57,210,232,178,188,9,14,11,10,0,0,4,7,8,13 -050,01,083,Alabama,Limestone County,10,3,5345,2756,2589,2286,2118,353,332,26,30,23,32,6,5,62,72,2557,2425,2130,1985,343,327,16,18,22,31,2,2,44,62,199,164,156,133,10,5,10,12,1,1,4,3,18,10 -050,01,083,Alabama,Limestone County,10,4,5179,2645,2534,2171,2113,355,322,24,29,25,13,4,2,66,55,2459,2384,2018,1989,347,320,16,19,23,12,1,1,54,43,186,150,153,124,8,2,8,10,2,1,3,1,12,12 -050,01,083,Alabama,Limestone County,10,5,4376,2346,2030,1859,1671,401,275,23,30,15,16,7,6,41,32,2132,1858,1688,1536,390,264,9,16,15,15,1,0,29,27,214,172,171,135,11,11,14,14,0,1,6,6,12,5 -050,01,083,Alabama,Limestone County,10,6,5169,2727,2442,2126,2042,503,292,39,28,12,28,10,11,37,41,2489,2274,1939,1919,493,277,23,17,10,25,1,3,23,33,238,168,187,123,10,15,16,11,2,3,9,8,14,8 -050,01,083,Alabama,Limestone County,10,7,5146,2806,2340,2186,1928,525,314,25,25,32,44,7,4,31,25,2600,2218,2022,1825,519,309,9,19,30,44,0,1,20,20,206,122,164,103,6,5,16,6,2,0,7,3,11,5 -050,01,083,Alabama,Limestone County,10,8,5968,3087,2881,2507,2394,483,366,24,25,32,58,3,1,38,37,2897,2733,2341,2268,472,360,20,20,32,57,0,0,32,28,190,148,166,126,11,6,4,5,0,1,3,1,6,9 -050,01,083,Alabama,Limestone County,10,9,6274,3251,3023,2581,2551,571,393,25,24,40,31,2,4,32,20,3127,2922,2474,2465,568,390,19,19,40,31,0,1,26,16,124,101,107,86,3,3,6,5,0,0,2,3,6,4 -050,01,083,Alabama,Limestone County,10,10,6581,3566,3015,2969,2534,518,393,23,32,23,22,1,0,32,34,3458,2966,2872,2498,513,387,21,29,23,22,0,0,29,30,108,49,97,36,5,6,2,3,0,0,1,0,3,4 -050,01,083,Alabama,Limestone County,10,11,5742,2897,2845,2434,2396,389,346,27,19,14,37,1,0,32,47,2847,2796,2395,2356,386,343,25,17,14,36,1,0,26,44,50,49,39,40,3,3,2,2,0,1,0,0,6,3 -050,01,083,Alabama,Limestone County,10,12,4932,2442,2490,2096,2157,283,280,16,12,22,17,1,0,24,24,2394,2467,2055,2135,281,280,16,11,20,17,1,0,21,24,48,23,41,22,2,0,0,1,2,0,0,0,3,0 -050,01,083,Alabama,Limestone County,10,13,4295,2107,2188,1854,1927,214,217,13,10,9,21,0,0,17,13,2085,2170,1834,1909,213,217,13,10,9,21,0,0,16,13,22,18,20,18,1,0,0,0,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,10,14,3238,1585,1653,1437,1479,118,148,10,4,6,5,0,1,14,16,1576,1640,1429,1468,117,148,10,4,6,5,0,0,14,15,9,13,8,11,1,0,0,0,0,0,0,1,0,1 -050,01,083,Alabama,Limestone County,10,15,2490,1186,1304,1072,1179,97,110,6,4,4,3,0,0,7,8,1177,1294,1064,1169,97,110,6,4,4,3,0,0,6,8,9,10,8,10,0,0,0,0,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,10,16,1784,774,1010,714,890,48,107,4,2,1,4,0,0,7,7,768,1004,708,884,48,107,4,2,1,4,0,0,7,7,6,6,6,6,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,10,17,1115,413,702,375,621,33,70,1,0,1,3,0,0,3,8,408,700,370,620,33,69,1,0,1,3,0,0,3,8,5,2,5,1,0,1,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,10,18,930,275,655,244,577,26,69,1,6,1,1,0,0,3,2,275,652,244,574,26,69,1,6,1,1,0,0,3,2,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,10,99,78835,40090,38745,33230,32720,5482,4649,335,320,328,405,65,51,650,600,37970,37012,31484,31295,5393,4562,230,234,318,397,10,10,535,514,2120,1733,1746,1425,89,87,105,86,10,8,55,41,115,86 -050,01,083,Alabama,Limestone County,11,0,1102,553,549,451,446,52,68,4,3,9,7,5,1,32,24,498,472,405,376,51,65,3,2,9,7,0,0,30,22,55,77,46,70,1,3,1,1,0,0,5,1,2,2 -050,01,083,Alabama,Limestone County,11,1,4300,2201,2099,1823,1699,242,269,23,15,20,27,13,8,80,81,1932,1821,1610,1468,230,250,5,6,19,27,1,1,67,69,269,278,213,231,12,19,18,9,1,0,12,7,13,12 -050,01,083,Alabama,Limestone County,11,2,5270,2633,2637,2148,2140,310,330,28,30,40,48,7,11,100,78,2403,2376,1956,1930,299,314,13,20,40,48,2,1,93,63,230,261,192,210,11,16,15,10,0,0,5,10,7,15 -050,01,083,Alabama,Limestone County,11,3,5559,2878,2681,2367,2177,360,341,30,31,31,48,8,4,82,80,2646,2492,2188,2018,347,335,18,20,29,47,3,1,61,71,232,189,179,159,13,6,12,11,2,1,5,3,21,9 -050,01,083,Alabama,Limestone County,11,4,5253,2656,2597,2185,2136,359,352,24,32,23,14,4,2,61,61,2463,2422,2025,1994,352,347,15,20,21,12,1,1,49,48,193,175,160,142,7,5,9,12,2,2,3,1,12,13 -050,01,083,Alabama,Limestone County,11,5,4538,2413,2125,1937,1764,388,269,21,33,15,20,7,6,45,33,2153,1958,1722,1636,376,258,6,17,15,19,1,0,33,28,260,167,215,128,12,11,15,16,0,1,6,6,12,5 -050,01,083,Alabama,Limestone County,11,6,5418,2830,2588,2233,2153,496,317,36,28,14,37,11,9,40,44,2518,2392,1980,2004,483,302,18,14,12,35,0,0,25,37,312,196,253,149,13,15,18,14,2,2,11,9,15,7 -050,01,083,Alabama,Limestone County,11,7,5305,2854,2451,2235,2039,513,316,28,22,35,39,9,6,34,29,2634,2301,2060,1908,507,310,10,15,31,39,1,3,25,26,220,150,175,131,6,6,18,7,4,0,8,3,9,3 -050,01,083,Alabama,Limestone County,11,8,5963,3134,2829,2524,2327,500,369,24,24,42,63,4,1,40,45,2927,2690,2348,2218,484,359,19,19,42,62,1,0,33,32,207,139,176,109,16,10,5,5,0,1,3,1,7,13 -050,01,083,Alabama,Limestone County,11,9,6359,3284,3075,2626,2591,551,383,29,31,41,42,2,4,35,24,3157,2961,2517,2492,548,380,22,25,41,42,0,1,29,21,127,114,109,99,3,3,7,6,0,0,2,3,6,3 -050,01,083,Alabama,Limestone County,11,10,6677,3570,3107,2970,2591,514,416,20,35,24,27,2,0,40,38,3457,3043,2872,2539,509,411,16,32,23,27,1,0,36,34,113,64,98,52,5,5,4,3,1,0,1,0,4,4 -050,01,083,Alabama,Limestone County,11,11,6072,3106,2966,2601,2490,419,376,28,17,19,41,1,1,38,41,3043,2914,2550,2449,416,373,26,14,19,40,1,1,31,37,63,52,51,41,3,3,2,3,0,1,0,0,7,4 -050,01,083,Alabama,Limestone County,11,12,5051,2500,2551,2134,2191,295,299,17,14,28,25,1,0,25,22,2442,2517,2083,2158,293,299,17,13,26,25,1,0,22,22,58,34,51,33,2,0,0,1,2,0,0,0,3,0 -050,01,083,Alabama,Limestone County,11,13,4553,2220,2333,1959,2066,216,219,16,14,9,21,1,0,19,13,2199,2312,1941,2045,215,219,16,14,9,21,0,0,18,13,21,21,18,21,1,0,0,0,0,0,1,0,1,0 -050,01,083,Alabama,Limestone County,11,14,3425,1651,1774,1491,1570,137,177,6,4,6,7,0,1,11,15,1637,1757,1478,1555,136,177,6,4,6,7,0,0,11,14,14,17,13,15,1,0,0,0,0,0,0,1,0,1 -050,01,083,Alabama,Limestone County,11,15,2565,1216,1349,1107,1218,90,115,6,4,4,3,0,0,9,9,1209,1337,1101,1206,90,115,6,4,4,3,0,0,8,9,7,12,6,12,0,0,0,0,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,11,16,1828,785,1043,727,937,49,91,2,2,1,5,0,0,6,8,781,1032,723,926,49,91,2,2,1,5,0,0,6,8,4,11,4,11,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,11,17,1143,448,695,398,635,45,50,1,0,1,3,0,0,3,7,443,694,393,635,45,49,1,0,1,3,0,0,3,7,5,1,5,0,0,1,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,11,18,945,282,663,253,586,25,71,1,3,1,1,0,0,2,2,282,660,253,583,25,71,1,3,1,1,0,0,2,2,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,11,99,81326,41214,40112,34169,33756,5561,4828,344,342,363,478,75,54,702,654,38824,38151,32205,32140,5455,4725,220,244,349,470,13,9,582,563,2390,1961,1964,1616,106,103,124,98,14,8,62,45,120,91 -050,01,083,Alabama,Limestone County,12,0,1038,505,533,409,427,52,71,3,3,10,6,6,1,25,25,455,465,369,367,51,67,2,2,10,6,0,0,23,23,50,68,40,60,1,4,1,1,0,0,6,1,2,2 -050,01,083,Alabama,Limestone County,12,1,4314,2239,2075,1841,1672,229,261,33,16,31,37,13,8,92,81,1961,1811,1626,1458,217,240,10,6,30,37,1,1,77,69,278,264,215,214,12,21,23,10,1,0,12,7,15,12 -050,01,083,Alabama,Limestone County,12,2,5414,2749,2665,2235,2147,319,329,34,32,54,56,7,12,100,89,2477,2392,2007,1929,303,312,19,21,54,56,2,1,92,73,272,273,228,218,16,17,15,11,0,0,5,11,8,16 -050,01,083,Alabama,Limestone County,12,3,5686,2933,2753,2388,2220,388,360,31,30,34,48,8,5,84,90,2688,2548,2195,2049,375,354,19,18,33,47,3,2,63,78,245,205,193,171,13,6,12,12,1,1,5,3,21,12 -050,01,083,Alabama,Limestone County,12,4,5317,2682,2635,2206,2161,355,356,27,32,23,17,4,2,67,67,2484,2449,2040,2011,349,350,18,20,21,14,1,1,55,53,198,186,166,150,6,6,9,12,2,3,3,1,12,14 -050,01,083,Alabama,Limestone County,12,5,4707,2506,2201,2006,1817,398,289,25,31,24,20,7,6,46,38,2225,2010,1771,1667,385,276,10,15,24,19,1,0,34,33,281,191,235,150,13,13,15,16,0,1,6,6,12,5 -050,01,083,Alabama,Limestone County,12,6,5515,2886,2629,2274,2157,492,342,43,30,20,44,12,11,45,45,2588,2420,2037,1997,479,327,25,16,18,41,1,2,28,37,298,209,237,160,13,15,18,14,2,3,11,9,17,8 -050,01,083,Alabama,Limestone County,12,7,5536,2933,2603,2301,2140,526,353,30,22,36,51,9,7,31,30,2663,2426,2078,1986,519,346,12,15,32,50,1,4,21,25,270,177,223,154,7,7,18,7,4,1,8,3,10,5 -050,01,083,Alabama,Limestone County,12,8,5889,3073,2816,2464,2309,489,367,25,25,49,71,4,1,42,43,2867,2661,2289,2183,473,359,20,20,49,70,1,0,35,29,206,155,175,126,16,8,5,5,0,1,3,1,7,14 -050,01,083,Alabama,Limestone County,12,9,6326,3279,3047,2612,2554,546,392,25,26,57,48,2,4,37,23,3142,2929,2494,2451,543,389,17,20,57,48,0,1,31,20,137,118,118,103,3,3,8,6,0,0,2,3,6,3 -050,01,083,Alabama,Limestone County,12,10,6762,3554,3208,2938,2668,535,438,21,35,22,31,2,0,36,36,3447,3134,2847,2607,530,432,17,32,21,31,1,0,31,32,107,74,91,61,5,6,4,3,1,0,1,0,5,4 -050,01,083,Alabama,Limestone County,12,11,6205,3209,2996,2729,2525,403,379,27,19,17,36,1,1,32,36,3137,2941,2668,2481,400,376,25,16,17,35,1,1,26,32,72,55,61,44,3,3,2,3,0,1,0,0,6,4 -050,01,083,Alabama,Limestone County,12,12,5166,2553,2613,2179,2242,312,304,18,12,17,30,1,0,26,25,2497,2585,2130,2215,310,304,18,11,15,30,1,0,23,25,56,28,49,27,2,0,0,1,2,0,0,0,3,0 -050,01,083,Alabama,Limestone County,12,13,4720,2292,2428,2027,2133,219,246,15,13,10,22,1,0,20,14,2266,2407,2004,2112,218,246,15,13,10,22,0,0,19,14,26,21,23,21,1,0,0,0,0,0,1,0,1,0 -050,01,083,Alabama,Limestone County,12,14,3514,1703,1811,1530,1616,145,169,11,4,6,7,0,1,11,14,1690,1794,1518,1601,144,169,11,4,6,7,0,0,11,13,13,17,12,15,1,0,0,0,0,0,0,1,0,1 -050,01,083,Alabama,Limestone County,12,15,2615,1233,1382,1134,1245,80,119,6,5,4,3,0,0,9,10,1223,1372,1125,1235,80,119,6,5,4,3,0,0,8,10,10,10,9,10,0,0,0,0,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,12,16,1889,830,1059,765,945,56,99,4,2,1,5,0,0,4,8,825,1052,760,938,56,99,4,2,1,5,0,0,4,8,5,7,5,7,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,12,17,1177,447,730,402,657,40,62,1,0,1,3,0,0,3,8,442,729,397,657,40,61,1,0,1,3,0,0,3,8,5,1,5,0,0,1,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,12,18,992,304,688,272,615,27,66,1,3,1,2,0,0,3,2,304,685,272,612,27,66,1,3,1,2,0,0,3,2,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,12,99,82782,41910,40872,34712,34250,5611,5002,380,340,417,537,77,59,713,684,39381,38810,32627,32556,5499,4892,250,239,404,526,14,13,587,584,2529,2062,2085,1694,112,110,130,101,13,11,63,46,126,100 -050,01,083,Alabama,Limestone County,13,0,1047,511,536,412,429,53,72,3,3,10,6,7,1,26,25,459,468,371,369,52,68,2,2,10,6,1,0,23,23,52,68,41,60,1,4,1,1,0,0,6,1,3,2 -050,01,083,Alabama,Limestone County,13,1,4327,2247,2080,1842,1672,233,263,33,19,32,37,13,7,94,82,1964,1813,1624,1457,219,242,10,8,31,37,1,0,79,69,283,267,218,215,14,21,23,11,1,0,12,7,15,13 -050,01,083,Alabama,Limestone County,13,2,5436,2760,2676,2242,2155,318,332,36,31,55,56,6,12,103,90,2488,2401,2013,1935,303,315,20,20,55,56,2,1,95,74,272,275,229,220,15,17,16,11,0,0,4,11,8,16 -050,01,083,Alabama,Limestone County,13,3,5703,2939,2764,2393,2229,389,361,31,31,34,49,8,4,84,90,2692,2555,2199,2054,375,355,19,18,33,48,3,2,63,78,247,209,194,175,14,6,12,13,1,1,5,2,21,12 -050,01,083,Alabama,Limestone County,13,4,5312,2683,2629,2205,2160,358,357,24,28,24,17,4,4,68,63,2480,2443,2035,2008,350,351,17,18,22,14,1,2,55,50,203,186,170,152,8,6,7,10,2,3,3,2,13,13 -050,01,083,Alabama,Limestone County,13,5,4749,2526,2223,2020,1830,399,294,26,34,25,19,10,7,46,39,2240,2028,1783,1679,386,280,11,16,24,19,2,0,34,34,286,195,237,151,13,14,15,18,1,0,8,7,12,5 -050,01,083,Alabama,Limestone County,13,6,5549,2909,2640,2290,2169,494,343,45,31,21,42,13,11,46,44,2609,2431,2052,2007,481,329,26,16,19,40,1,2,30,37,300,209,238,162,13,14,19,15,2,2,12,9,16,7 -050,01,083,Alabama,Limestone County,13,7,5592,2960,2632,2325,2162,531,357,31,23,34,51,8,7,31,32,2689,2450,2099,2007,524,350,13,14,31,50,1,4,21,25,271,182,226,155,7,7,18,9,3,1,7,3,10,7 -050,01,083,Alabama,Limestone County,13,8,5879,3069,2810,2454,2301,492,367,26,25,47,72,5,1,45,44,2861,2652,2278,2174,476,358,21,19,47,71,1,0,38,30,208,158,176,127,16,9,5,6,0,1,4,1,7,14 -050,01,083,Alabama,Limestone County,13,9,6337,3286,3051,2618,2560,546,392,25,26,57,48,2,4,38,21,3146,2934,2499,2457,542,390,16,20,57,48,0,1,32,18,140,117,119,103,4,2,9,6,0,0,2,3,6,3 -050,01,083,Alabama,Limestone County,13,10,6764,3556,3208,2936,2663,538,442,24,33,21,32,2,0,35,38,3448,3134,2845,2601,532,436,19,31,20,32,1,0,31,34,108,74,91,62,6,6,5,2,1,0,1,0,4,4 -050,01,083,Alabama,Limestone County,13,11,6239,3227,3012,2741,2537,408,382,28,19,17,37,1,1,32,36,3153,2958,2680,2494,403,379,26,16,17,36,1,1,26,32,74,54,61,43,5,3,2,3,0,1,0,0,6,4 -050,01,083,Alabama,Limestone County,13,12,5212,2574,2638,2198,2263,316,310,19,13,15,28,1,0,25,24,2518,2610,2149,2236,314,310,19,12,13,28,1,0,22,24,56,28,49,27,2,0,0,1,2,0,0,0,3,0 -050,01,083,Alabama,Limestone County,13,13,4778,2319,2459,2053,2160,223,250,15,13,10,22,1,0,17,14,2293,2438,2029,2139,222,250,15,13,10,22,0,0,17,14,26,21,24,21,1,0,0,0,0,0,1,0,0,0 -050,01,083,Alabama,Limestone County,13,14,3545,1721,1824,1546,1629,147,171,11,4,7,7,0,0,10,13,1708,1808,1534,1614,146,171,11,4,7,7,0,0,10,12,13,16,12,15,1,0,0,0,0,0,0,0,0,1 -050,01,083,Alabama,Limestone County,13,15,2640,1248,1392,1147,1256,82,121,6,4,4,3,0,0,9,8,1237,1381,1137,1245,82,121,6,4,4,3,0,0,8,8,11,11,10,11,0,0,0,0,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,13,16,1899,838,1061,769,946,59,100,5,3,1,5,0,0,4,7,833,1055,764,940,59,100,5,3,1,5,0,0,4,7,5,6,5,6,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,13,17,1183,450,733,406,660,41,62,1,1,1,3,0,0,1,7,443,730,399,658,41,61,1,1,1,3,0,0,1,7,7,3,7,2,0,1,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,13,18,1002,308,694,276,620,27,67,1,3,1,2,0,0,3,2,308,691,276,617,27,67,1,3,1,2,0,0,3,2,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,13,99,83193,42131,41062,34873,34401,5654,5043,390,344,416,536,81,59,717,679,39569,38980,32766,32691,5534,4933,258,238,403,527,16,13,592,578,2562,2082,2107,1710,120,110,132,106,13,9,65,46,125,101 -050,01,085,Alabama,Lowndes County,1,0,198,99,99,17,22,82,76,0,0,0,0,0,0,0,1,98,99,16,22,82,76,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,1,805,361,444,82,94,277,347,0,0,0,1,0,0,2,2,359,440,81,94,276,345,0,0,0,0,0,0,2,1,2,4,1,0,1,2,0,0,0,1,0,0,0,1 -050,01,085,Alabama,Lowndes County,1,2,1046,533,513,92,108,435,397,1,0,0,4,0,0,5,4,526,510,89,106,431,396,1,0,0,4,0,0,5,4,7,3,3,2,4,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,3,1273,657,616,107,74,546,538,0,0,0,1,0,0,4,3,651,613,105,73,542,536,0,0,0,1,0,0,4,3,6,3,2,1,4,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,4,1186,611,575,86,95,522,480,0,0,0,0,0,0,3,0,606,572,83,95,520,477,0,0,0,0,0,0,3,0,5,3,3,0,2,3,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,5,792,360,432,73,55,285,376,1,0,0,0,0,1,1,0,353,431,68,54,283,376,1,0,0,0,0,1,1,0,7,1,5,1,2,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,6,762,355,407,92,85,260,320,1,0,0,0,0,1,2,1,351,405,91,85,257,318,1,0,0,0,0,1,2,1,4,2,1,0,3,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,7,861,370,491,115,122,253,362,0,0,0,2,0,0,2,5,362,485,111,121,250,357,0,0,0,2,0,0,1,5,8,6,4,1,3,5,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,1,8,1023,457,566,126,138,329,423,0,0,0,0,0,0,2,5,454,566,125,138,327,423,0,0,0,0,0,0,2,5,3,0,1,0,2,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,9,1008,474,534,145,152,323,379,0,1,0,2,0,0,6,0,472,532,144,151,322,378,0,1,0,2,0,0,6,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,10,904,438,466,142,112,296,350,0,2,0,1,0,0,0,1,436,464,140,112,296,348,0,2,0,1,0,0,0,1,2,2,2,0,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,11,755,347,408,136,120,207,284,2,1,2,0,0,1,0,2,346,407,136,120,206,283,2,1,2,0,0,1,0,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,12,634,279,355,110,142,166,210,2,2,0,0,0,0,1,1,278,354,110,142,166,209,2,2,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,1,13,594,278,316,113,112,164,202,0,0,0,1,0,0,1,1,278,314,113,112,164,200,0,0,0,1,0,0,1,1,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,14,508,228,280,110,103,117,175,1,1,0,0,0,0,0,1,228,279,110,103,117,174,1,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,15,410,182,228,93,73,88,153,0,0,0,1,0,0,1,1,182,228,93,73,88,153,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,16,311,135,176,65,57,70,116,0,0,0,0,0,0,0,3,134,173,65,56,69,115,0,0,0,0,0,0,0,2,1,3,0,1,1,1,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,1,17,193,75,118,30,45,45,73,0,0,0,0,0,0,0,0,75,118,30,45,45,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,18,220,73,147,16,43,56,104,0,0,1,0,0,0,0,0,72,147,15,43,56,104,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,99,13483,6312,7171,1750,1752,4521,5365,8,7,3,13,0,3,30,31,6261,7137,1725,1745,4497,5341,8,7,3,12,0,3,28,29,51,34,25,7,24,24,0,0,0,1,0,0,2,2 -050,01,085,Alabama,Lowndes County,2,0,199,99,100,17,22,82,77,0,0,0,0,0,0,0,1,98,100,16,22,82,77,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,1,798,358,440,82,92,274,345,0,0,0,1,0,0,2,2,356,436,81,92,273,343,0,0,0,0,0,0,2,1,2,4,1,0,1,2,0,0,0,1,0,0,0,1 -050,01,085,Alabama,Lowndes County,2,2,1030,526,504,88,104,432,392,1,0,0,4,0,0,5,4,519,501,85,102,428,391,1,0,0,4,0,0,5,4,7,3,3,2,4,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,3,1271,655,616,106,74,545,538,0,0,0,1,0,0,4,3,649,613,104,73,541,536,0,0,0,1,0,0,4,3,6,3,2,1,4,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,4,1190,616,574,86,95,527,479,0,0,0,0,0,0,3,0,611,571,83,95,525,476,0,0,0,0,0,0,3,0,5,3,3,0,2,3,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,5,797,365,432,72,55,291,376,1,0,0,0,0,1,1,0,358,431,67,54,289,376,1,0,0,0,0,1,1,0,7,1,5,1,2,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,6,746,347,399,91,84,253,313,1,0,0,0,0,1,2,1,343,397,90,84,250,311,1,0,0,0,0,1,2,1,4,2,1,0,3,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,7,857,367,490,115,122,250,361,0,0,0,2,0,0,2,5,359,484,111,121,247,356,0,0,0,2,0,0,1,5,8,6,4,1,3,5,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,2,8,1021,459,562,126,137,331,420,0,0,0,0,0,0,2,5,456,562,125,137,329,420,0,0,0,0,0,0,2,5,3,0,1,0,2,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,9,1016,481,535,145,152,330,380,0,1,0,2,0,0,6,0,479,533,144,151,329,379,0,1,0,2,0,0,6,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,10,912,446,466,143,112,303,350,0,2,0,1,0,0,0,1,444,464,141,112,303,348,0,2,0,1,0,0,0,1,2,2,2,0,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,11,761,350,411,136,120,210,287,2,1,2,0,0,1,0,2,349,410,136,120,209,286,2,1,2,0,0,1,0,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,12,634,280,354,110,141,167,210,2,2,0,0,0,0,1,1,279,353,110,141,167,209,2,2,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,2,13,593,278,315,113,112,164,201,0,0,0,1,0,0,1,1,278,313,113,112,164,199,0,0,0,1,0,0,1,1,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,14,510,230,280,110,103,119,175,1,1,0,0,0,0,0,1,230,279,110,103,119,174,1,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,15,411,182,229,93,73,88,154,0,0,0,1,0,0,1,1,182,229,93,73,88,154,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,16,311,135,176,65,57,70,116,0,0,0,0,0,0,0,3,134,173,65,56,69,115,0,0,0,0,0,0,0,2,1,3,0,1,1,1,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,2,17,194,75,119,30,45,45,74,0,0,0,0,0,0,0,0,75,119,30,45,45,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,18,220,73,147,16,41,56,106,0,0,1,0,0,0,0,0,72,147,15,41,56,106,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,99,13471,6322,7149,1744,1741,4537,5354,8,7,3,13,0,3,30,31,6271,7115,1719,1734,4513,5330,8,7,3,12,0,3,28,29,51,34,25,7,24,24,0,0,0,1,0,0,2,2 -050,01,085,Alabama,Lowndes County,3,0,228,113,115,21,20,92,94,0,0,0,0,0,0,0,1,112,115,20,20,92,94,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,1,783,366,417,84,85,280,329,0,0,0,1,0,0,2,2,364,413,83,85,279,327,0,0,0,0,0,0,2,1,2,4,1,0,1,2,0,0,0,1,0,0,0,1 -050,01,085,Alabama,Lowndes County,3,2,983,493,490,89,90,398,392,1,0,0,4,0,0,5,4,486,487,86,88,394,391,1,0,0,4,0,0,5,4,7,3,3,2,4,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,3,1252,641,611,110,91,527,516,0,0,0,1,0,0,4,3,636,608,108,90,524,514,0,0,0,1,0,0,4,3,5,3,2,1,3,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,4,1172,616,556,98,83,515,473,0,0,0,0,0,0,3,0,611,553,95,83,513,470,0,0,0,0,0,0,3,0,5,3,3,0,2,3,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,5,854,388,466,61,64,325,402,1,0,0,0,0,0,1,0,382,465,56,63,324,402,1,0,0,0,0,0,1,0,6,1,5,1,1,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,6,645,303,342,73,70,227,270,1,0,0,0,0,1,2,1,299,340,72,70,224,268,1,0,0,0,0,1,2,1,4,2,1,0,3,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,7,856,378,478,116,121,260,350,0,0,0,2,0,0,2,5,371,472,113,120,257,345,0,0,0,2,0,0,1,5,7,6,3,1,3,5,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,3,8,955,438,517,113,124,323,388,0,0,0,0,0,0,2,5,435,517,112,124,321,388,0,0,0,0,0,0,2,5,3,0,1,0,2,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,9,1024,461,563,137,148,318,412,0,1,0,2,0,0,6,0,459,561,136,147,317,411,0,1,0,2,0,0,6,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,10,908,431,477,139,118,292,355,0,2,0,1,0,0,0,1,429,475,137,118,292,353,0,2,0,1,0,0,0,1,2,2,2,0,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,11,809,387,422,140,120,243,298,2,1,2,0,0,1,0,2,385,420,140,120,241,296,2,1,2,0,0,1,0,2,2,2,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,12,629,287,342,106,126,178,213,2,2,0,0,0,0,1,1,286,341,106,126,178,212,2,2,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,3,13,587,282,305,114,117,167,186,0,0,0,1,0,0,1,1,282,303,114,117,167,184,0,0,0,1,0,0,1,1,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,14,538,236,302,112,107,123,193,1,1,0,0,0,0,0,1,236,301,112,107,123,192,1,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,15,419,184,235,96,83,87,150,0,0,0,1,0,0,1,1,184,235,96,83,87,150,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,16,278,121,157,59,52,62,102,0,0,0,0,0,0,0,3,120,154,59,51,61,101,0,0,0,0,0,0,0,2,1,3,0,1,1,1,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,3,17,195,78,117,32,43,46,74,0,0,0,0,0,0,0,0,78,117,32,43,46,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,18,214,68,146,17,38,50,108,0,0,1,0,0,0,0,0,67,146,16,38,50,108,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,99,13329,6271,7058,1717,1700,4513,5305,8,7,3,13,0,2,30,31,6222,7023,1693,1693,4490,5280,8,7,3,12,0,2,28,29,49,35,24,7,23,25,0,0,0,1,0,0,2,2 -050,01,085,Alabama,Lowndes County,4,0,197,101,96,24,20,77,75,0,0,0,0,0,0,0,1,100,96,23,20,77,75,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,1,787,394,393,92,91,299,299,0,0,0,1,0,0,3,2,392,389,91,91,298,297,0,0,0,0,0,0,3,1,2,4,1,0,1,2,0,0,0,1,0,0,0,1 -050,01,085,Alabama,Lowndes County,4,2,971,480,491,80,81,394,402,1,0,0,4,0,0,5,4,474,488,77,79,391,401,1,0,0,4,0,0,5,4,6,3,3,2,3,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,3,1198,599,599,109,95,486,501,0,0,0,1,0,0,4,2,593,596,107,94,482,499,0,0,0,1,0,0,4,2,6,3,2,1,4,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,4,1195,630,565,101,83,526,482,0,0,0,0,0,0,3,0,625,562,98,83,524,479,0,0,0,0,0,0,3,0,5,3,3,0,2,3,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,5,870,407,463,61,53,344,410,1,0,0,0,0,0,1,0,402,462,57,52,343,410,1,0,0,0,0,0,1,0,5,1,4,1,1,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,6,599,283,316,72,64,208,250,1,0,0,0,0,1,2,1,279,314,71,64,205,248,1,0,0,0,0,1,2,1,4,2,1,0,3,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,7,834,355,479,121,128,232,344,0,0,0,2,0,0,2,5,348,473,118,127,229,339,0,0,0,2,0,0,1,5,7,6,3,1,3,5,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,4,8,913,435,478,105,108,328,365,0,0,0,0,0,0,2,5,433,478,104,108,327,365,0,0,0,0,0,0,2,5,2,0,1,0,1,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,9,1025,449,576,120,143,323,430,0,1,0,2,0,0,6,0,447,574,119,142,322,429,0,1,0,2,0,0,6,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,10,930,453,477,150,129,303,344,0,2,0,1,0,0,0,1,451,475,148,129,303,342,0,2,0,1,0,0,0,1,2,2,2,0,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,11,835,407,428,133,114,270,310,2,1,2,0,0,1,0,2,406,427,133,114,269,309,2,1,2,0,0,1,0,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,12,626,296,330,122,114,171,213,2,2,0,0,0,0,1,1,295,329,122,114,171,212,2,2,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,4,13,587,274,313,110,127,163,184,0,0,0,1,0,0,1,1,274,311,110,127,163,182,0,0,0,1,0,0,1,1,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,14,541,234,307,104,108,129,197,1,1,0,0,0,0,0,1,234,306,104,108,129,196,1,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,15,433,192,241,104,88,87,151,0,0,0,1,0,0,1,1,192,241,104,88,87,151,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,16,297,129,168,58,53,71,112,0,0,0,0,0,0,0,3,128,165,58,52,70,111,0,0,0,0,0,0,0,2,1,3,0,1,1,1,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,4,17,192,92,100,40,41,52,59,0,0,0,0,0,0,0,0,92,100,40,41,52,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,18,201,59,142,22,40,36,102,0,0,1,0,0,0,0,0,58,142,21,40,36,102,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,99,13231,6269,6962,1728,1680,4499,5230,8,7,3,13,0,2,31,30,6223,6928,1705,1673,4478,5206,8,7,3,12,0,2,29,28,46,34,23,7,21,24,0,0,0,1,0,0,2,2 -050,01,085,Alabama,Lowndes County,5,0,175,95,80,14,18,81,61,0,0,0,0,0,0,0,1,94,80,13,18,81,61,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,1,790,384,406,99,82,282,321,0,0,0,1,0,0,3,2,382,402,98,82,281,319,0,0,0,0,0,0,3,1,2,4,1,0,1,2,0,0,0,1,0,0,0,1 -050,01,085,Alabama,Lowndes County,5,2,946,475,471,78,77,392,388,1,0,0,2,0,0,4,4,469,468,75,75,389,387,1,0,0,2,0,0,4,4,6,3,3,2,3,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,3,1111,550,561,96,99,449,459,1,0,0,1,0,0,4,2,544,558,94,98,445,457,1,0,0,1,0,0,4,2,6,3,2,1,4,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,4,1159,604,555,98,72,503,483,0,0,0,0,0,0,3,0,600,552,96,72,501,480,0,0,0,0,0,0,3,0,4,3,2,0,2,3,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,5,866,430,436,60,49,368,386,1,0,0,0,0,1,1,0,424,435,56,48,366,386,1,0,0,0,0,1,1,0,6,1,4,1,2,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,6,602,280,322,70,61,207,259,1,0,0,0,0,1,2,1,277,321,69,61,205,258,1,0,0,0,0,1,2,1,3,1,1,0,2,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,7,785,333,452,115,120,216,326,0,0,0,2,0,0,2,4,326,446,112,119,213,321,0,0,0,2,0,0,1,4,7,6,3,1,3,5,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,5,8,855,406,449,95,123,309,322,0,0,0,0,0,0,2,4,404,449,94,123,308,322,0,0,0,0,0,0,2,4,2,0,1,0,1,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,9,1033,452,581,133,134,312,444,0,1,0,2,0,0,7,0,449,579,132,133,311,443,0,1,0,2,0,0,6,0,3,2,1,1,1,1,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,5,10,957,469,488,141,137,328,347,0,2,0,1,0,0,0,1,467,486,139,137,328,345,0,2,0,1,0,0,0,1,2,2,2,0,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,11,816,388,428,132,99,253,325,2,1,1,0,0,1,0,2,387,427,132,99,252,324,2,1,1,0,0,1,0,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,12,684,320,364,124,126,193,235,2,2,0,0,0,0,1,1,319,363,124,126,193,234,2,2,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,5,13,559,259,300,97,115,161,184,0,0,0,1,0,0,1,0,259,298,97,115,161,182,0,0,0,1,0,0,1,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,14,568,274,294,125,107,148,185,1,1,0,0,0,0,0,1,274,293,125,107,148,184,1,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,15,422,177,245,89,92,86,152,0,0,0,1,0,0,2,0,177,245,89,92,86,152,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,16,290,125,165,61,62,64,100,0,0,0,0,0,0,0,3,124,162,61,61,63,99,0,0,0,0,0,0,0,2,1,3,0,1,1,1,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,5,17,195,89,106,39,41,50,65,0,0,0,0,0,0,0,0,89,106,39,41,50,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,18,183,54,129,18,35,35,94,0,0,1,0,0,0,0,0,53,129,17,35,35,94,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,99,12996,6164,6832,1684,1649,4437,5136,9,7,2,11,0,3,32,26,6118,6799,1662,1642,4416,5113,9,7,2,10,0,3,29,24,46,33,22,7,21,23,0,0,0,1,0,0,3,2 -050,01,085,Alabama,Lowndes County,6,0,173,82,91,15,18,67,72,0,0,0,0,0,0,0,1,81,91,14,18,67,72,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,1,778,401,377,97,79,301,295,0,0,0,1,0,0,3,2,399,373,96,79,300,293,0,0,0,0,0,0,3,1,2,4,1,0,1,2,0,0,0,1,0,0,0,1 -050,01,085,Alabama,Lowndes County,6,2,898,426,472,64,64,357,402,1,0,0,2,0,0,4,4,420,469,61,62,354,401,1,0,0,2,0,0,4,4,6,3,3,2,3,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,3,1022,528,494,79,93,444,397,1,0,0,1,0,0,4,3,522,490,77,92,440,395,1,0,0,1,0,0,4,2,6,4,2,1,4,2,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,6,4,1102,560,542,98,57,459,484,0,0,0,1,0,0,3,0,557,538,96,57,458,481,0,0,0,0,0,0,3,0,3,4,2,0,1,3,0,0,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,5,852,425,427,63,48,361,378,1,0,0,0,0,1,0,0,419,426,59,47,359,378,1,0,0,0,0,1,0,0,6,1,4,1,2,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,6,592,277,315,62,51,212,262,1,0,0,0,0,1,2,1,274,314,61,51,210,261,1,0,0,0,0,1,2,1,3,1,1,0,2,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,7,686,292,394,90,93,200,294,0,0,0,2,0,0,2,5,286,389,87,92,198,290,0,0,0,2,0,0,1,5,6,5,3,1,2,4,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,6,8,782,369,413,89,111,279,300,0,0,0,0,0,0,1,2,367,413,88,111,278,300,0,0,0,0,0,0,1,2,2,0,1,0,1,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,9,1001,445,556,125,141,313,411,0,1,0,2,0,0,7,1,442,554,124,140,312,410,0,1,0,2,0,0,6,1,3,2,1,1,1,1,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,6,10,959,453,506,139,139,314,363,0,2,0,1,0,0,0,1,451,504,137,139,314,361,0,2,0,1,0,0,0,1,2,2,2,0,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,11,854,412,442,135,102,274,337,2,1,1,0,0,1,0,1,411,441,135,102,273,336,2,1,1,0,0,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,12,688,335,353,141,115,192,234,2,2,0,0,0,0,0,2,335,351,141,115,192,232,2,2,0,0,0,0,0,2,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,13,600,254,346,93,135,160,210,0,0,0,1,0,0,1,0,254,344,93,135,160,208,0,0,0,1,0,0,1,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,14,541,278,263,120,98,157,163,1,1,0,0,0,0,0,1,278,262,120,98,157,162,1,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,15,426,189,237,100,91,87,143,0,0,0,2,0,0,2,1,189,236,100,91,87,143,0,0,0,2,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,6,16,306,116,190,57,62,59,125,0,0,0,0,0,0,0,3,115,188,57,61,58,125,0,0,0,0,0,0,0,2,1,2,0,1,1,0,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,6,17,186,93,93,45,33,48,59,0,0,0,1,0,0,0,0,93,93,45,33,48,59,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,18,177,55,122,17,38,37,84,0,0,1,0,0,0,0,0,54,122,16,38,37,84,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,99,12623,5990,6633,1629,1568,4321,5013,9,7,2,14,0,3,29,28,5947,6598,1607,1561,4302,4991,9,7,2,12,0,3,27,24,43,35,22,7,19,22,0,0,0,2,0,0,2,4 -050,01,085,Alabama,Lowndes County,7,0,161,73,88,15,20,58,66,0,0,0,1,0,0,0,1,73,87,15,20,58,66,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,1,718,377,341,107,80,265,255,0,1,0,1,0,0,5,4,373,339,103,80,265,255,0,1,0,0,0,0,5,3,4,2,4,0,0,0,0,0,0,1,0,0,0,1 -050,01,085,Alabama,Lowndes County,7,2,897,431,466,71,64,354,395,0,1,1,2,0,0,5,4,426,461,68,62,353,392,0,1,1,2,0,0,4,4,5,5,3,2,1,3,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,7,3,946,465,481,68,85,394,395,2,0,0,0,0,0,1,1,460,479,68,85,389,393,2,0,0,0,0,0,1,1,5,2,0,0,5,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,4,1146,592,554,98,66,492,487,0,0,1,1,0,0,1,0,588,549,96,64,491,485,0,0,1,0,0,0,0,0,4,5,2,2,1,2,0,0,0,1,0,0,1,0 -050,01,085,Alabama,Lowndes County,7,5,802,396,406,61,55,332,349,1,1,1,1,0,0,1,0,392,404,60,55,329,348,1,1,1,0,0,0,1,0,4,2,1,0,3,1,0,0,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,6,593,264,329,51,51,208,274,2,1,2,1,0,1,1,1,260,326,51,51,207,272,2,1,0,0,0,1,0,1,4,3,0,0,1,2,0,0,2,1,0,0,1,0 -050,01,085,Alabama,Lowndes County,7,7,625,268,357,80,82,186,270,1,0,0,0,0,0,1,5,264,352,77,81,186,266,1,0,0,0,0,0,0,5,4,5,3,1,0,4,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,7,8,762,354,408,98,125,254,281,1,1,0,1,0,0,1,0,353,407,98,125,253,280,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,9,973,421,552,118,135,299,412,1,2,0,1,0,0,3,2,418,549,117,134,298,411,1,2,0,1,0,0,2,1,3,3,1,1,1,1,0,0,0,0,0,0,1,1 -050,01,085,Alabama,Lowndes County,7,10,928,426,502,126,132,299,366,1,2,0,0,0,0,0,2,424,500,124,132,299,364,1,2,0,0,0,0,0,2,2,2,2,0,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,11,893,437,456,138,111,297,339,1,1,1,2,0,1,0,2,436,453,138,111,296,338,1,1,1,2,0,1,0,0,1,3,0,0,1,1,0,0,0,0,0,0,0,2 -050,01,085,Alabama,Lowndes County,7,12,698,332,366,135,107,195,252,1,2,0,1,0,0,1,4,332,364,135,107,195,250,1,2,0,1,0,0,1,4,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,13,610,275,335,108,139,163,193,0,1,1,0,0,0,3,2,274,331,107,138,163,190,0,1,1,0,0,0,3,2,1,4,1,1,0,3,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,14,520,264,256,108,96,155,159,0,0,0,0,0,0,1,1,264,255,108,96,155,158,0,0,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,15,472,218,254,103,99,111,152,1,0,0,2,0,0,3,1,218,253,103,99,111,152,1,0,0,2,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,7,16,306,122,184,68,64,54,120,0,0,0,0,0,0,0,0,121,184,68,64,53,120,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,17,174,85,89,45,29,40,59,0,0,0,1,0,0,0,0,85,89,45,29,40,59,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,18,173,49,124,19,40,29,84,0,0,1,0,0,0,0,0,49,123,19,39,29,84,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,99,12397,5849,6548,1617,1580,4185,4908,12,13,8,15,0,2,27,30,5810,6505,1600,1572,4170,4883,12,13,6,10,0,2,22,25,39,43,17,8,15,25,0,0,2,5,0,0,5,5 -050,01,085,Alabama,Lowndes County,8,0,162,80,82,21,14,58,68,0,0,1,0,0,0,0,0,79,82,21,14,58,68,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,1,621,320,301,104,68,213,228,0,1,0,0,0,0,3,4,316,300,100,68,213,228,0,1,0,0,0,0,3,3,4,1,4,0,0,0,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,8,2,907,434,473,76,70,352,396,1,1,1,2,0,0,4,4,428,468,73,68,350,393,1,1,1,2,0,0,3,4,6,5,3,2,2,3,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,8,3,875,421,454,65,78,353,372,2,1,0,0,0,0,1,3,416,450,65,78,348,370,2,1,0,0,0,0,1,1,5,4,0,0,5,2,0,0,0,0,0,0,0,2 -050,01,085,Alabama,Lowndes County,8,4,1107,565,542,94,74,468,468,0,0,1,0,0,0,2,0,561,538,92,72,467,466,0,0,1,0,0,0,1,0,4,4,2,2,1,2,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,8,5,766,383,383,52,51,328,330,1,1,1,1,0,0,1,0,379,381,51,51,325,329,1,1,1,0,0,0,1,0,4,2,1,0,3,1,0,0,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,6,600,262,338,42,45,214,291,2,1,3,0,0,0,1,1,258,336,42,45,213,289,2,1,1,0,0,0,0,1,4,2,0,0,1,2,0,0,2,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,8,7,562,242,320,77,76,164,242,1,0,0,0,0,0,0,2,239,314,74,75,164,237,1,0,0,0,0,0,0,2,3,6,3,1,0,5,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,8,771,374,397,101,125,269,270,2,1,0,1,0,0,2,0,373,396,101,125,268,269,2,1,0,1,0,0,2,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,9,894,396,498,108,122,285,372,1,1,0,1,0,0,2,2,393,495,107,121,284,371,1,1,0,1,0,0,1,1,3,3,1,1,1,1,0,0,0,0,0,0,1,1 -050,01,085,Alabama,Lowndes County,8,10,945,440,505,134,123,305,379,1,1,0,1,0,0,0,1,438,502,132,123,305,377,1,1,0,0,0,0,0,1,2,3,2,0,0,2,0,0,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,11,911,426,485,131,121,294,358,0,1,1,2,0,0,0,3,425,482,131,121,293,357,0,1,1,2,0,0,0,1,1,3,0,0,1,1,0,0,0,0,0,0,0,2 -050,01,085,Alabama,Lowndes County,8,12,761,377,384,148,119,227,258,0,2,0,1,0,0,2,4,375,382,147,119,226,256,0,2,0,1,0,0,2,4,2,2,1,0,1,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,13,634,295,339,112,131,178,205,0,1,1,0,0,0,4,2,294,336,111,130,178,203,0,1,1,0,0,0,4,2,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,14,515,265,250,112,101,151,148,0,0,0,0,0,0,2,1,265,249,112,101,151,147,0,0,0,0,0,0,2,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,15,470,208,262,95,100,110,160,1,0,0,1,0,0,2,1,208,261,95,100,110,160,1,0,0,1,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,8,16,282,107,175,65,63,42,112,0,0,0,0,0,0,0,0,107,174,65,62,42,112,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,17,186,81,105,36,35,45,69,0,0,0,1,0,0,0,0,81,105,36,35,45,69,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,18,155,49,106,22,28,27,78,0,0,0,0,0,0,0,0,49,105,22,27,27,78,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,99,12124,5725,6399,1595,1544,4083,4804,12,12,9,11,0,0,26,28,5684,6356,1577,1535,4067,4779,12,12,6,9,0,0,22,21,41,43,18,9,16,25,0,0,3,2,0,0,4,7 -050,01,085,Alabama,Lowndes County,9,0,174,87,87,21,14,65,72,0,0,1,1,0,0,0,0,86,86,21,14,65,72,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,1,602,313,289,103,66,207,219,0,1,0,0,0,0,3,3,309,289,99,66,207,219,0,1,0,0,0,0,3,3,4,0,4,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,2,830,419,411,76,67,337,337,1,1,1,2,0,0,4,4,414,406,73,65,336,334,1,1,1,2,0,0,3,4,5,5,3,2,1,3,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,9,3,859,409,450,64,79,341,367,3,1,0,0,0,0,1,3,403,446,64,79,335,365,3,1,0,0,0,0,1,1,6,4,0,0,6,2,0,0,0,0,0,0,0,2 -050,01,085,Alabama,Lowndes County,9,4,1090,559,531,104,72,451,457,0,0,2,1,0,0,2,1,554,525,102,70,450,455,0,0,1,0,0,0,1,0,5,6,2,2,1,2,0,0,1,1,0,0,1,1 -050,01,085,Alabama,Lowndes County,9,5,758,391,367,60,45,328,320,1,1,1,1,0,0,1,0,387,365,59,45,325,319,1,1,1,0,0,0,1,0,4,2,1,0,3,1,0,0,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,6,601,263,338,41,46,216,289,2,1,3,1,0,0,1,1,259,336,41,46,215,288,2,1,1,0,0,0,0,1,4,2,0,0,1,1,0,0,2,1,0,0,1,0 -050,01,085,Alabama,Lowndes County,9,7,562,246,316,81,73,164,241,1,0,0,0,0,0,0,2,243,311,78,72,164,237,1,0,0,0,0,0,0,2,3,5,3,1,0,4,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,8,724,348,376,98,117,247,257,2,1,0,1,0,0,1,0,346,375,98,117,245,256,2,1,0,1,0,0,1,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,9,840,380,460,90,117,289,338,1,1,0,1,0,0,0,3,378,457,89,116,288,337,1,1,0,1,0,0,0,2,2,3,1,1,1,1,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,9,10,961,421,540,132,114,288,423,1,1,0,1,0,0,0,1,419,537,130,114,288,421,1,1,0,0,0,0,0,1,2,3,2,0,0,2,0,0,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,11,923,445,478,139,125,305,347,0,1,1,2,0,0,0,3,444,475,139,125,304,346,0,1,1,2,0,0,0,1,1,3,0,0,1,1,0,0,0,0,0,0,0,2 -050,01,085,Alabama,Lowndes County,9,12,774,376,398,140,107,233,284,0,2,0,1,0,0,3,4,373,396,139,107,232,282,0,2,0,1,0,0,2,4,3,2,1,0,1,2,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,9,13,640,310,330,125,117,181,210,0,1,1,0,0,0,3,2,309,327,124,116,181,208,0,1,1,0,0,0,3,2,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,14,544,266,278,106,117,158,159,0,0,0,0,0,0,2,2,266,277,106,117,158,158,0,0,0,0,0,0,2,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,15,452,190,262,87,100,100,160,1,0,0,1,0,0,2,1,190,261,87,100,100,160,1,0,0,1,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,9,16,294,119,175,70,57,49,118,0,0,0,0,0,0,0,0,119,174,70,56,49,118,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,17,177,83,94,34,31,49,61,0,0,0,2,0,0,0,0,83,94,34,31,49,61,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,18,168,51,117,24,37,27,80,0,0,0,0,0,0,0,0,51,116,24,36,27,80,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,99,11973,5676,6297,1595,1501,4035,4739,13,12,10,15,0,0,23,30,5633,6253,1577,1492,4018,4716,13,12,6,10,0,0,19,23,43,44,18,9,17,23,0,0,4,5,0,0,4,7 -050,01,085,Alabama,Lowndes County,10,0,172,75,97,16,17,59,80,0,0,0,0,0,0,0,0,75,97,16,17,59,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,1,600,288,312,92,58,193,250,0,1,0,0,0,0,3,3,284,312,88,58,193,250,0,1,0,0,0,0,3,3,4,0,4,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,2,771,389,382,72,64,311,313,1,1,1,0,0,0,4,4,384,377,69,62,310,310,1,1,1,0,0,0,3,4,5,5,3,2,1,3,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,10,3,807,408,399,71,75,333,321,3,1,0,0,0,0,1,2,403,395,71,75,328,319,3,1,0,0,0,0,1,0,5,4,0,0,5,2,0,0,0,0,0,0,0,2 -050,01,085,Alabama,Lowndes County,10,4,1037,514,523,102,84,409,438,0,0,1,0,0,0,2,1,511,518,101,82,408,436,0,0,1,0,0,0,1,0,3,5,1,2,1,2,0,0,0,0,0,0,1,1 -050,01,085,Alabama,Lowndes County,10,5,734,362,372,54,50,305,319,1,1,1,2,0,0,1,0,360,369,54,50,303,318,1,1,1,0,0,0,1,0,2,3,0,0,2,1,0,0,0,2,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,6,618,291,327,48,44,237,280,2,1,3,1,0,0,1,1,288,325,48,44,237,279,2,1,1,0,0,0,0,1,3,2,0,0,0,1,0,0,2,1,0,0,1,0 -050,01,085,Alabama,Lowndes County,10,7,562,253,309,69,62,183,245,1,0,0,0,0,0,0,2,250,304,66,61,183,241,1,0,0,0,0,0,0,2,3,5,3,1,0,4,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,8,676,316,360,85,99,227,259,2,1,0,1,0,0,2,0,315,359,85,99,226,258,2,1,0,1,0,0,2,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,9,799,357,442,81,135,275,302,1,1,0,1,0,0,0,3,355,439,80,134,274,301,1,1,0,1,0,0,0,2,2,3,1,1,1,1,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,10,10,956,419,537,135,108,283,427,1,1,0,0,0,0,0,1,417,535,133,108,283,425,1,1,0,0,0,0,0,1,2,2,2,0,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,11,969,490,479,125,130,365,343,0,1,0,2,0,0,0,3,489,476,125,130,364,342,0,1,0,2,0,0,0,1,1,3,0,0,1,1,0,0,0,0,0,0,0,2 -050,01,085,Alabama,Lowndes County,10,12,776,362,414,131,106,228,301,0,2,0,1,0,0,3,4,359,412,130,106,227,299,0,2,0,1,0,0,2,4,3,2,1,0,1,2,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,10,13,680,323,357,123,116,196,238,0,1,1,0,0,0,3,2,322,354,122,115,196,236,0,1,1,0,0,0,3,2,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,14,498,251,247,100,102,149,143,0,0,0,0,0,0,2,2,251,246,100,102,149,142,0,0,0,0,0,0,2,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,15,486,235,251,114,104,117,145,1,0,0,1,0,0,3,1,235,250,114,104,117,145,1,0,0,1,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,10,16,316,106,210,59,55,47,155,0,0,0,0,0,0,0,0,106,209,59,54,47,155,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,17,176,82,94,31,31,51,61,0,0,0,2,0,0,0,0,82,94,31,31,51,61,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,18,180,59,121,23,38,36,83,0,0,0,0,0,0,0,0,59,120,23,37,36,83,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,99,11813,5580,6233,1531,1478,4004,4703,13,12,7,11,0,0,25,29,5545,6191,1515,1469,3991,4680,13,12,5,8,0,0,21,22,35,42,16,9,13,23,0,0,2,3,0,0,4,7 -050,01,085,Alabama,Lowndes County,11,0,149,75,74,15,13,59,60,0,0,1,1,0,0,0,0,74,73,15,13,59,60,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,1,596,274,322,77,49,193,269,0,1,0,0,0,0,4,3,270,322,73,49,193,269,0,1,0,0,0,0,4,3,4,0,4,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,2,729,381,348,72,64,302,279,1,1,2,0,0,0,4,4,375,343,69,62,301,276,1,1,1,0,0,0,3,4,6,5,3,2,1,3,0,0,1,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,11,3,803,398,405,75,64,319,338,3,1,0,0,0,0,1,2,393,401,75,64,314,336,3,1,0,0,0,0,1,0,5,4,0,0,5,2,0,0,0,0,0,0,0,2 -050,01,085,Alabama,Lowndes County,11,4,936,476,460,90,81,382,378,0,0,2,0,0,0,2,1,472,455,89,79,381,376,0,0,1,0,0,0,1,0,4,5,1,2,1,2,0,0,1,0,0,0,1,1 -050,01,085,Alabama,Lowndes County,11,5,698,321,377,42,38,276,336,1,1,1,2,0,0,1,0,318,374,42,38,273,335,1,1,1,0,0,0,1,0,3,3,0,0,3,1,0,0,0,2,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,6,618,296,322,41,49,249,271,2,1,3,0,0,0,1,1,293,321,41,49,249,270,2,1,1,0,0,0,0,1,3,1,0,0,0,1,0,0,2,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,11,7,554,252,302,65,73,186,227,1,0,0,0,0,0,0,2,250,297,63,72,186,223,1,0,0,0,0,0,0,2,2,5,2,1,0,4,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,8,638,316,322,76,79,236,241,2,1,0,1,0,0,2,0,314,321,76,79,234,240,2,1,0,1,0,0,2,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,9,739,310,429,68,127,240,296,1,1,0,1,0,0,1,4,307,425,67,126,239,295,1,1,0,1,0,0,0,2,3,4,1,1,1,1,0,0,0,0,0,0,1,2 -050,01,085,Alabama,Lowndes County,11,10,965,442,523,133,109,308,411,1,1,0,1,0,0,0,1,440,520,131,109,308,409,1,1,0,0,0,0,0,1,2,3,2,0,0,2,0,0,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,11,937,452,485,124,132,328,347,0,1,0,2,0,0,0,3,451,482,124,132,327,346,0,1,0,2,0,0,0,1,1,3,0,0,1,1,0,0,0,0,0,0,0,2 -050,01,085,Alabama,Lowndes County,11,12,804,371,433,123,110,245,316,0,2,0,1,0,0,3,4,368,431,122,110,244,314,0,2,0,1,0,0,2,4,3,2,1,0,1,2,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,11,13,675,308,367,138,126,166,238,0,1,1,0,0,0,3,2,307,364,137,125,166,236,0,1,1,0,0,0,3,2,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,14,546,253,293,99,111,152,180,0,0,0,0,0,0,2,2,252,292,99,111,151,179,0,0,0,0,0,0,2,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,15,457,229,228,108,100,117,126,1,0,0,1,0,0,3,1,229,227,108,100,117,126,1,0,0,1,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,11,16,274,98,176,52,59,46,117,0,0,0,0,0,0,0,0,98,175,52,58,46,117,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,17,179,69,110,30,32,39,76,0,0,0,2,0,0,0,0,69,110,30,32,39,76,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,18,189,61,128,25,40,36,88,0,0,0,0,0,0,0,0,61,127,25,39,36,88,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,99,11486,5382,6104,1453,1456,3879,4594,13,12,10,12,0,0,27,30,5341,6060,1438,1447,3863,4571,13,12,5,8,0,0,22,22,41,44,15,9,16,23,0,0,5,4,0,0,5,8 -050,01,085,Alabama,Lowndes County,12,0,146,72,74,16,13,55,60,0,0,1,1,0,0,0,0,71,73,16,13,55,60,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,1,600,287,313,70,43,213,266,0,1,0,0,0,0,4,3,283,313,66,43,213,266,0,1,0,0,0,0,4,3,4,0,4,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,2,705,359,346,76,63,276,278,1,1,2,0,0,0,4,4,353,341,73,61,275,275,1,1,1,0,0,0,3,4,6,5,3,2,1,3,0,0,1,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,12,3,771,390,381,77,71,309,307,3,1,0,0,0,0,1,2,385,377,77,71,304,305,3,1,0,0,0,0,1,0,5,4,0,0,5,2,0,0,0,0,0,0,0,2 -050,01,085,Alabama,Lowndes County,12,4,860,433,427,93,73,336,352,0,0,2,1,0,0,2,1,429,421,92,71,335,350,0,0,1,0,0,0,1,0,4,6,1,2,1,2,0,0,1,1,0,0,1,1 -050,01,085,Alabama,Lowndes County,12,5,699,330,369,47,37,280,329,1,1,1,2,0,0,1,0,327,366,47,37,277,328,1,1,1,0,0,0,1,0,3,3,0,0,3,1,0,0,0,2,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,6,575,270,305,37,48,227,254,2,1,3,1,0,0,1,1,267,303,37,48,227,253,2,1,1,0,0,0,0,1,3,2,0,0,0,1,0,0,2,1,0,0,1,0 -050,01,085,Alabama,Lowndes County,12,7,602,272,330,73,69,198,259,1,0,0,0,0,0,0,2,270,325,71,68,198,255,1,0,0,0,0,0,0,2,2,5,2,1,0,4,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,8,606,290,316,64,77,222,237,2,1,0,1,0,0,2,0,288,315,64,77,220,236,2,1,0,1,0,0,2,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,9,708,304,404,77,117,225,281,1,1,0,1,0,0,1,4,301,400,76,116,224,280,1,1,0,1,0,0,0,2,3,4,1,1,1,1,0,0,0,0,0,0,1,2 -050,01,085,Alabama,Lowndes County,12,10,945,438,507,128,107,309,397,1,1,0,1,0,0,0,1,436,504,126,107,309,395,1,1,0,0,0,0,0,1,2,3,2,0,0,2,0,0,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,11,918,423,495,120,135,303,354,0,1,0,2,0,0,0,3,422,492,120,135,302,353,0,1,0,2,0,0,0,1,1,3,0,0,1,1,0,0,0,0,0,0,0,2 -050,01,085,Alabama,Lowndes County,12,12,830,407,423,132,112,272,304,0,2,0,1,0,0,3,4,404,421,131,112,271,302,0,2,0,1,0,0,2,4,3,2,1,0,1,2,0,0,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,12,13,679,306,373,132,115,170,255,0,1,1,0,0,0,3,2,305,370,131,114,170,253,0,1,1,0,0,0,3,2,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,14,543,255,288,105,108,148,178,0,0,0,0,0,0,2,2,254,287,105,108,147,177,0,0,0,0,0,0,2,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,15,443,221,222,94,97,123,123,1,0,0,1,0,0,3,1,221,221,94,97,123,123,1,0,0,1,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,12,16,296,112,184,55,60,57,124,0,0,0,0,0,0,0,0,112,183,55,59,57,124,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,17,186,68,118,32,34,36,81,0,0,0,3,0,0,0,0,68,118,32,34,36,81,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,18,187,52,135,23,38,29,97,0,0,0,0,0,0,0,0,52,134,23,37,29,97,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,99,11299,5289,6010,1451,1417,3788,4536,13,12,10,15,0,0,27,30,5248,5964,1436,1408,3772,4513,13,12,5,9,0,0,22,22,41,46,15,9,16,23,0,0,5,6,0,0,5,8 -050,01,085,Alabama,Lowndes County,13,0,143,70,73,16,13,54,60,0,0,0,0,0,0,0,0,70,73,16,13,54,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,1,603,290,313,69,41,213,266,2,3,0,0,0,0,6,3,284,311,65,40,212,265,1,3,0,0,0,0,6,3,6,2,4,1,1,1,1,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,2,696,354,342,73,61,271,277,2,0,1,1,0,0,7,3,352,338,71,60,271,274,2,0,1,1,0,0,7,3,2,4,2,1,0,3,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,3,766,388,378,74,72,306,304,4,2,1,0,0,0,3,0,383,374,74,70,301,302,4,2,1,0,0,0,3,0,5,4,0,2,5,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,4,864,436,428,92,73,335,349,3,2,2,0,0,0,4,4,433,424,90,70,334,348,3,2,2,0,0,0,4,4,3,4,2,3,1,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,5,700,330,370,48,36,276,330,1,2,1,1,0,0,4,1,328,368,47,36,275,329,1,2,1,0,0,0,4,1,2,2,1,0,1,1,0,0,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,6,571,268,303,38,48,225,251,3,1,1,1,1,0,0,2,265,301,36,46,225,251,3,1,1,1,0,0,0,2,3,2,2,2,0,0,0,0,0,0,1,0,0,0 -050,01,085,Alabama,Lowndes County,13,7,604,276,328,75,68,199,258,2,1,0,0,0,0,0,1,272,323,72,66,199,255,1,1,0,0,0,0,0,1,4,5,3,2,0,3,1,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,8,606,292,314,63,77,221,233,4,1,1,1,0,0,3,2,290,314,62,77,220,233,4,1,1,1,0,0,3,2,2,0,1,0,1,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,9,702,299,403,74,115,221,280,3,3,0,2,0,0,1,3,298,402,74,115,220,279,3,3,0,2,0,0,1,3,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,10,947,439,508,125,105,308,395,3,2,0,2,0,0,3,4,438,507,124,104,308,395,3,2,0,2,0,0,3,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,11,913,424,489,119,133,301,351,2,2,0,1,0,0,2,2,423,489,118,133,301,351,2,2,0,1,0,0,2,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,12,825,403,422,131,111,270,305,2,3,0,1,0,0,0,2,402,420,131,111,269,303,2,3,0,1,0,0,0,2,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,13,679,306,373,132,116,171,252,0,3,1,0,0,0,2,2,305,372,131,115,171,252,0,3,1,0,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,14,538,254,284,106,107,145,176,1,0,0,0,0,0,2,1,254,283,106,106,145,176,1,0,0,0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,15,442,224,218,97,97,123,121,2,0,0,0,0,0,2,0,223,217,96,96,123,121,2,0,0,0,0,0,2,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,16,295,114,181,56,57,58,123,0,0,0,0,0,0,0,1,113,181,55,57,58,123,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,17,177,66,111,31,29,35,80,0,0,0,2,0,0,0,0,66,111,31,29,35,80,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,18,188,53,135,24,38,29,97,0,0,0,0,0,0,0,0,53,134,24,37,29,97,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,99,11259,5286,5973,1443,1397,3761,4508,34,25,8,12,1,0,39,31,5252,5942,1423,1381,3750,4494,32,25,8,11,0,0,39,31,34,31,20,16,11,14,2,0,0,1,1,0,0,0 -050,01,087,Alabama,Macon County,1,0,301,154,147,25,20,127,121,0,0,0,2,0,0,2,4,152,146,25,20,125,120,0,0,0,2,0,0,2,4,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,1,1258,627,631,59,66,560,559,0,0,4,2,0,0,4,4,622,625,59,66,555,553,0,0,4,2,0,0,4,4,5,6,0,0,5,6,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,2,1709,886,823,105,71,776,749,0,0,0,0,0,0,5,3,878,814,103,70,770,741,0,0,0,0,0,0,5,3,8,9,2,1,6,8,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,3,1798,868,930,87,87,768,831,1,1,2,3,1,0,9,8,860,926,84,86,763,828,1,1,2,3,1,0,9,8,8,4,3,1,5,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,4,2441,1146,1295,78,75,1054,1201,3,0,3,0,0,1,8,18,1137,1284,76,74,1049,1191,3,0,3,0,0,1,6,18,9,11,2,1,5,10,0,0,0,0,0,0,2,0 -050,01,087,Alabama,Macon County,1,5,2624,1181,1443,104,93,1061,1338,3,2,5,3,0,0,8,7,1168,1432,99,90,1054,1332,3,2,5,3,0,0,7,5,13,11,5,3,7,6,0,0,0,0,0,0,1,2 -050,01,087,Alabama,Macon County,1,6,1422,638,784,102,107,500,660,2,1,29,8,0,0,5,8,628,772,100,103,493,655,2,1,29,8,0,0,4,5,10,12,2,4,7,5,0,0,0,0,0,0,1,3 -050,01,087,Alabama,Macon County,1,7,1213,536,677,122,108,405,562,1,1,8,5,0,0,0,1,530,671,119,108,402,556,1,1,8,5,0,0,0,1,6,6,3,0,3,6,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,8,1351,616,735,127,120,480,607,0,1,4,3,0,0,5,4,613,726,127,117,477,601,0,1,4,3,0,0,5,4,3,9,0,3,3,6,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,9,1528,736,792,137,114,588,662,5,3,4,5,0,1,2,7,732,786,135,111,586,659,5,3,4,5,0,1,2,7,4,6,2,3,2,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,10,1581,708,873,127,132,573,737,2,0,3,0,0,0,3,4,706,870,125,130,573,736,2,0,3,0,0,0,3,4,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,11,1411,665,746,138,132,525,608,0,1,0,0,1,0,1,5,664,740,138,130,524,604,0,1,0,0,1,0,1,5,1,6,0,2,1,4,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,12,1154,527,627,137,118,385,507,1,1,1,0,0,0,3,1,524,625,136,116,383,507,1,1,1,0,0,0,3,1,3,2,1,2,2,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,13,925,413,512,102,87,307,419,0,3,2,0,0,0,2,3,413,511,102,87,307,418,0,3,2,0,0,0,2,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,14,827,382,445,94,64,287,376,0,0,1,0,0,0,0,5,380,443,93,64,286,374,0,0,1,0,0,0,0,5,2,2,1,0,1,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,15,813,325,488,74,83,247,404,2,1,0,0,0,0,2,0,324,485,73,83,247,401,2,1,0,0,0,0,2,0,1,3,1,0,0,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,16,763,314,449,64,61,248,383,0,1,0,1,0,0,2,3,314,448,64,61,248,382,0,1,0,1,0,0,2,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,17,512,199,313,38,50,160,261,0,1,0,0,0,0,1,1,198,311,37,50,160,259,0,1,0,0,0,0,1,1,1,2,1,0,0,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,18,455,143,312,21,40,121,267,0,2,0,0,0,0,1,3,143,312,21,40,121,267,0,2,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,99,24086,11064,13022,1741,1628,9172,11252,20,19,66,32,2,2,63,89,10986,12927,1716,1606,9123,11184,20,19,66,32,2,2,59,84,78,95,25,22,49,68,0,0,0,0,0,0,4,5 -050,01,087,Alabama,Macon County,2,0,301,154,147,25,20,127,121,0,0,0,2,0,0,2,4,152,146,25,20,125,120,0,0,0,2,0,0,2,4,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,1,1244,621,623,58,64,554,553,0,0,4,2,0,0,5,4,616,617,58,64,549,547,0,0,4,2,0,0,5,4,5,6,0,0,5,6,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,2,1699,878,821,100,71,773,747,0,0,0,0,0,0,5,3,870,812,98,70,767,739,0,0,0,0,0,0,5,3,8,9,2,1,6,8,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,3,1792,865,927,83,83,769,832,1,1,2,3,1,0,9,8,857,923,80,82,764,829,1,1,2,3,1,0,9,8,8,4,3,1,5,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,4,2442,1156,1286,79,70,1063,1197,3,0,3,0,0,1,8,18,1147,1275,77,69,1058,1187,3,0,3,0,0,1,6,18,9,11,2,1,5,10,0,0,0,0,0,0,2,0 -050,01,087,Alabama,Macon County,2,5,2628,1184,1444,101,92,1067,1340,3,2,5,3,0,0,8,7,1171,1433,96,89,1060,1334,3,2,5,3,0,0,7,5,13,11,5,3,7,6,0,0,0,0,0,0,1,2 -050,01,087,Alabama,Macon County,2,6,1407,632,775,97,104,499,654,2,1,29,8,0,0,5,8,622,763,95,100,492,649,2,1,29,8,0,0,4,5,10,12,2,4,7,5,0,0,0,0,0,0,1,3 -050,01,087,Alabama,Macon County,2,7,1205,533,672,120,107,404,558,1,1,8,5,0,0,0,1,527,666,117,107,401,552,1,1,8,5,0,0,0,1,6,6,3,0,3,6,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,8,1340,611,729,123,119,479,602,0,1,4,3,0,0,5,4,608,720,123,116,476,596,0,1,4,3,0,0,5,4,3,9,0,3,3,6,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,9,1533,741,792,137,114,593,662,5,3,4,5,0,1,2,7,737,786,135,111,591,659,5,3,4,5,0,1,2,7,4,6,2,3,2,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,10,1591,717,874,128,132,581,738,2,0,3,0,0,0,3,4,715,871,126,130,581,737,2,0,3,0,0,0,3,4,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,11,1425,674,751,140,132,532,613,0,1,0,0,1,0,1,5,673,745,140,130,531,609,0,1,0,0,1,0,1,5,1,6,0,2,1,4,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,12,1155,528,627,136,117,387,508,1,1,1,0,0,0,3,1,525,625,135,115,385,508,1,1,1,0,0,0,3,1,3,2,1,2,2,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,13,924,413,511,103,87,306,418,0,3,2,0,0,0,2,3,413,510,103,87,306,417,0,3,2,0,0,0,2,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,14,827,383,444,94,64,288,375,0,0,1,0,0,0,0,5,381,442,93,64,287,373,0,0,1,0,0,0,0,5,2,2,1,0,1,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,15,811,325,486,74,83,247,402,2,1,0,0,0,0,2,0,324,483,73,83,247,399,2,1,0,0,0,0,2,0,1,3,1,0,0,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,16,760,309,451,64,61,243,385,0,1,0,1,0,0,2,3,309,450,64,61,243,384,0,1,0,1,0,0,2,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,17,514,201,313,38,50,162,261,0,1,0,0,0,0,1,1,200,311,37,50,162,259,0,1,0,0,0,0,1,1,1,2,1,0,0,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,18,449,141,308,21,38,119,265,0,2,0,0,0,0,1,3,141,308,21,38,119,265,0,2,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,99,24047,11066,12981,1721,1608,9193,11231,20,19,66,32,2,2,64,89,10988,12886,1696,1586,9144,11163,20,19,66,32,2,2,60,84,78,95,25,22,49,68,0,0,0,0,0,0,4,5 -050,01,087,Alabama,Macon County,3,0,296,157,139,21,24,134,109,0,0,0,2,0,0,2,4,155,138,21,24,132,108,0,0,0,2,0,0,2,4,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,1,1222,629,593,84,81,535,503,0,0,4,2,0,0,6,7,624,586,84,81,530,496,0,0,4,2,0,0,6,7,5,7,0,0,5,7,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,2,1633,843,790,101,68,737,719,0,0,0,0,0,0,5,3,836,780,99,67,732,710,0,0,0,0,0,0,5,3,7,10,2,1,5,9,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,3,1763,853,910,97,88,744,810,1,1,2,3,1,0,8,8,845,906,94,87,739,807,1,1,2,3,1,0,8,8,8,4,3,1,5,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,4,2506,1149,1357,74,65,1061,1273,3,0,3,0,0,1,8,18,1139,1345,72,64,1055,1262,3,0,3,0,0,1,6,18,10,12,2,1,6,11,0,0,0,0,0,0,2,0 -050,01,087,Alabama,Macon County,3,5,2730,1244,1486,110,86,1117,1387,3,2,5,3,0,0,9,8,1232,1474,105,83,1111,1381,3,2,5,3,0,0,8,5,12,12,5,3,6,6,0,0,0,0,0,0,1,3 -050,01,087,Alabama,Macon County,3,6,1288,546,742,97,109,418,613,2,1,24,9,0,0,5,10,537,728,95,105,412,608,2,1,24,9,0,0,4,5,9,14,2,4,6,5,0,0,0,0,0,0,1,5 -050,01,087,Alabama,Macon County,3,7,1181,528,653,129,91,391,555,1,1,7,5,0,0,0,1,522,648,126,91,388,550,1,1,7,5,0,0,0,1,6,5,3,0,3,5,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,8,1339,619,720,134,129,477,584,0,1,4,2,0,0,4,4,617,711,134,126,475,578,0,1,4,2,0,0,4,4,2,9,0,3,2,6,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,9,1499,715,784,139,124,565,644,5,3,4,5,0,1,2,7,711,778,137,121,563,641,5,3,4,5,0,1,2,7,4,6,2,3,2,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,10,1576,731,845,131,123,593,718,2,0,3,0,0,0,2,4,729,842,129,121,593,717,2,0,3,0,0,0,2,4,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,11,1506,704,802,150,130,552,666,0,1,0,0,1,0,1,5,703,797,150,128,551,663,0,1,0,0,1,0,1,5,1,5,0,2,1,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,12,1182,526,656,122,142,399,512,1,1,1,0,0,0,3,1,523,654,121,140,397,512,1,1,1,0,0,0,3,1,3,2,1,2,2,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,13,910,414,496,116,82,294,409,0,2,2,0,0,0,2,3,414,495,116,82,294,408,0,2,2,0,0,0,2,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,14,845,393,452,93,69,298,379,0,0,1,0,0,0,1,4,391,450,92,69,297,377,0,0,1,0,0,0,1,4,2,2,1,0,1,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,15,782,319,463,73,77,243,385,1,1,0,0,0,0,2,0,318,460,72,77,243,382,1,1,0,0,0,0,2,0,1,3,1,0,0,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,16,752,306,446,63,59,243,382,0,1,0,1,0,0,0,3,306,445,63,59,243,381,0,1,0,1,0,0,0,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,17,506,194,312,38,62,155,248,0,1,0,0,0,0,1,1,193,310,37,62,155,246,0,1,0,0,0,0,1,1,1,2,1,0,0,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,18,409,123,286,22,42,100,239,0,2,0,0,0,0,1,3,123,286,22,42,100,239,0,2,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,99,23925,10993,12932,1794,1651,9056,11135,19,18,60,32,2,2,62,94,10918,12833,1769,1629,9010,11066,19,18,60,32,2,2,58,86,75,99,25,22,46,69,0,0,0,0,0,0,4,8 -050,01,087,Alabama,Macon County,4,0,249,112,137,14,21,96,110,0,0,0,2,0,0,2,4,110,136,14,21,94,109,0,0,0,2,0,0,2,4,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,1,1145,598,547,89,91,500,443,0,0,4,2,0,0,5,11,594,542,89,91,496,438,0,0,4,2,0,0,5,11,4,5,0,0,4,5,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,2,1578,784,794,89,78,690,713,0,0,0,0,0,0,5,3,778,786,87,77,686,706,0,0,0,0,0,0,5,3,6,8,2,1,4,7,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,3,1775,855,920,100,102,745,808,1,1,2,2,0,0,7,7,848,916,97,101,741,805,1,1,2,2,0,0,7,7,7,4,3,1,4,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,4,2532,1173,1359,85,65,1074,1274,3,0,2,0,0,1,9,19,1162,1347,83,64,1067,1263,3,0,2,0,0,1,7,19,11,12,2,1,7,11,0,0,0,0,0,0,2,0 -050,01,087,Alabama,Macon County,4,5,2725,1235,1490,105,96,1113,1383,3,2,5,3,0,0,9,6,1221,1479,100,93,1105,1376,3,2,5,3,0,0,8,5,14,11,5,3,8,7,0,0,0,0,0,0,1,1 -050,01,087,Alabama,Macon County,4,6,1122,480,642,76,96,373,527,2,1,24,8,0,0,5,10,471,629,74,93,367,522,2,1,24,8,0,0,4,5,9,13,2,3,6,5,0,0,0,0,0,0,1,5 -050,01,087,Alabama,Macon County,4,7,1207,557,650,139,87,410,556,1,1,7,5,0,0,0,1,550,645,136,87,406,551,1,1,7,5,0,0,0,1,7,5,3,0,4,5,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,8,1280,564,716,118,126,439,582,0,1,4,2,0,0,3,5,562,707,118,123,437,576,0,1,4,2,0,0,3,5,2,9,0,3,2,6,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,9,1436,699,737,155,128,533,590,5,3,4,8,0,1,2,7,695,731,153,125,531,587,5,3,4,8,0,1,2,7,4,6,2,3,2,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,10,1583,727,856,128,121,591,731,2,0,3,0,0,0,3,4,726,853,127,119,591,730,2,0,3,0,0,0,3,4,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,11,1491,672,819,136,137,536,676,0,1,0,0,0,0,0,5,671,813,136,135,535,672,0,1,0,0,0,0,0,5,1,6,0,2,1,4,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,12,1273,586,687,139,146,441,539,1,1,1,0,0,0,4,1,582,685,138,144,439,539,1,1,1,0,0,0,3,1,4,2,1,2,2,0,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,4,13,946,442,504,112,89,326,410,0,2,2,0,0,0,2,3,442,503,112,89,326,409,0,2,2,0,0,0,2,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,14,868,384,484,103,70,280,409,0,0,1,0,0,0,0,5,382,482,102,70,279,407,0,0,1,0,0,0,0,5,2,2,1,0,1,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,15,748,314,434,72,65,239,368,1,1,0,0,0,0,2,0,313,431,71,65,239,365,1,1,0,0,0,0,2,0,1,3,1,0,0,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,16,731,288,443,59,60,228,377,0,1,0,1,0,0,1,4,288,443,59,60,228,377,0,1,0,1,0,0,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,17,492,190,302,34,56,155,244,0,1,0,0,0,0,1,1,189,300,33,56,155,242,0,1,0,0,0,0,1,1,1,2,1,0,0,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,18,382,105,277,22,42,82,229,0,2,0,0,0,0,1,4,105,276,22,42,82,229,0,2,0,0,0,0,1,3,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,4,99,23563,10765,12798,1775,1676,8851,10969,19,18,59,33,0,2,61,100,10689,12704,1751,1655,8804,10903,19,18,59,33,0,2,56,93,76,94,24,21,47,66,0,0,0,0,0,0,5,7 -050,01,087,Alabama,Macon County,5,0,231,113,118,15,23,96,90,0,0,0,1,0,0,2,4,111,117,15,23,94,89,0,0,0,1,0,0,2,4,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,5,1,1086,568,518,94,86,466,420,0,0,3,2,0,0,5,10,564,512,94,86,462,415,0,0,3,2,0,0,5,9,4,6,0,0,4,5,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,5,2,1533,769,764,81,91,684,669,0,0,0,1,0,0,4,3,762,755,79,89,679,662,0,0,0,1,0,0,4,3,7,9,2,2,5,7,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,5,3,1740,855,885,99,104,746,771,1,1,1,2,1,0,7,7,848,881,96,103,742,768,1,1,1,2,1,0,7,7,7,4,3,1,4,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,5,4,2427,1117,1310,78,61,1027,1231,3,0,2,0,0,0,7,18,1107,1298,76,60,1020,1220,3,0,2,0,0,0,6,18,10,12,2,1,7,11,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,5,5,2638,1194,1444,97,88,1080,1344,3,2,5,3,0,0,9,7,1181,1432,93,85,1072,1336,3,2,5,3,0,0,8,6,13,12,4,3,8,8,0,0,0,0,0,0,1,1 -050,01,087,Alabama,Macon County,5,6,1087,478,609,69,103,383,485,2,1,20,8,0,0,4,12,469,596,66,100,378,480,2,1,20,8,0,0,3,7,9,13,3,3,5,5,0,0,0,0,0,0,1,5 -050,01,087,Alabama,Macon County,5,7,1206,547,659,125,87,412,563,1,1,9,5,0,0,0,3,541,655,122,87,409,559,1,1,9,5,0,0,0,3,6,4,3,0,3,4,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,5,8,1228,539,689,116,117,416,562,0,1,4,3,0,0,3,6,536,680,115,114,414,556,0,1,4,3,0,0,3,6,3,9,1,3,2,6,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,5,9,1418,669,749,144,131,514,603,5,2,4,5,0,1,2,7,664,744,141,129,512,600,5,2,4,5,0,1,2,7,5,5,3,2,2,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,5,10,1554,728,826,141,114,580,709,1,0,3,0,0,0,3,3,726,822,140,112,579,707,1,0,3,0,0,0,3,3,2,4,1,2,1,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,5,11,1519,694,825,137,135,556,684,0,1,0,0,0,0,1,5,692,819,137,133,555,680,0,1,0,0,0,0,0,5,2,6,0,2,1,4,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,5,12,1297,581,716,126,151,448,560,1,1,2,1,0,0,4,3,577,714,125,149,446,560,1,1,2,1,0,0,3,3,4,2,1,2,2,0,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,5,13,995,456,539,124,89,327,445,0,2,2,0,0,0,3,3,455,537,124,89,327,443,0,2,2,0,0,0,2,3,1,2,0,0,0,2,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,5,14,856,371,485,95,80,275,401,0,0,1,0,0,0,0,4,369,483,94,80,274,399,0,0,1,0,0,0,0,4,2,2,1,0,1,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,5,15,735,308,427,64,58,242,368,1,1,0,0,0,0,1,0,307,425,63,58,242,366,1,1,0,0,0,0,1,0,1,2,1,0,0,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,5,16,656,232,424,47,61,184,356,0,1,0,1,0,0,1,5,232,422,47,61,184,355,0,1,0,1,0,0,1,4,0,2,0,0,0,1,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,5,17,539,226,313,40,58,185,254,0,1,0,0,0,0,1,0,224,311,38,58,185,252,0,1,0,0,0,0,1,0,2,2,2,0,0,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,5,18,365,106,259,23,40,82,214,0,1,0,0,0,0,1,4,105,258,22,40,82,214,0,1,0,0,0,0,1,3,1,1,1,0,0,0,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,5,99,23110,10551,12559,1715,1677,8703,10729,18,16,56,32,1,1,58,104,10470,12461,1687,1656,8656,10661,18,16,56,32,1,1,52,95,81,98,28,21,47,68,0,0,0,0,0,0,6,9 -050,01,087,Alabama,Macon County,6,0,218,115,103,13,19,100,79,0,0,0,1,0,0,2,4,113,102,13,19,98,78,0,0,0,1,0,0,2,4,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,6,1,1030,535,495,99,89,426,391,0,0,3,2,0,0,7,13,532,489,99,89,423,386,0,0,3,2,0,0,7,12,3,6,0,0,3,5,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,6,2,1459,731,728,68,78,659,647,0,0,0,1,0,0,4,2,724,719,66,76,654,640,0,0,0,1,0,0,4,2,7,9,2,2,5,7,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,6,3,1668,834,834,101,104,723,720,1,1,1,2,1,0,7,7,827,830,98,103,719,717,1,1,1,2,1,0,7,7,7,4,3,1,4,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,6,4,2452,1142,1310,89,69,1041,1222,3,0,2,0,0,1,7,18,1129,1297,87,68,1033,1210,3,0,2,0,0,1,4,18,13,13,2,1,8,12,0,0,0,0,0,0,3,0 -050,01,087,Alabama,Macon County,6,5,2625,1181,1444,96,88,1067,1343,3,2,5,3,0,0,10,8,1166,1433,92,85,1057,1336,3,2,5,3,0,0,9,7,15,11,4,3,10,7,0,0,0,0,0,0,1,1 -050,01,087,Alabama,Macon County,6,6,1025,484,541,79,92,378,429,2,1,20,8,0,0,5,11,472,529,76,90,371,423,2,1,20,8,0,0,3,7,12,12,3,2,7,6,0,0,0,0,0,0,2,4 -050,01,087,Alabama,Macon County,6,7,1200,524,676,117,92,400,575,1,1,5,5,0,0,1,3,518,672,114,92,397,571,1,1,5,5,0,0,1,3,6,4,3,0,3,4,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,6,8,1177,527,650,119,117,402,523,0,1,3,3,0,0,3,6,525,641,118,114,401,517,0,1,3,3,0,0,3,6,2,9,1,3,1,6,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,6,9,1363,632,731,139,130,483,586,5,2,3,5,0,1,2,7,627,725,136,128,481,582,5,2,3,5,0,1,2,7,5,6,3,2,2,4,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,6,10,1484,692,792,142,123,543,666,1,0,3,0,0,0,3,3,690,788,141,121,542,664,1,0,3,0,0,0,3,3,2,4,1,2,1,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,6,11,1555,711,844,135,120,573,718,0,1,0,0,1,0,2,5,709,839,135,118,572,715,0,1,0,0,1,0,1,5,2,5,0,2,1,3,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,6,12,1344,605,739,125,147,473,586,1,1,2,1,0,0,4,4,600,735,124,145,470,584,1,1,2,1,0,0,3,4,5,4,1,2,3,2,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,6,13,1024,488,536,131,102,352,431,0,2,2,0,0,0,3,1,487,534,131,102,352,429,0,2,2,0,0,0,2,1,1,2,0,0,0,2,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,6,14,822,367,455,92,79,273,372,0,0,1,0,0,0,1,4,365,453,91,79,272,370,0,0,1,0,0,0,1,4,2,2,1,0,1,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,6,15,720,318,402,74,44,241,357,1,1,0,0,0,0,2,0,317,400,73,44,241,355,1,1,0,0,0,0,2,0,1,2,1,0,0,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,6,16,659,230,429,54,65,176,357,0,1,0,1,0,0,0,5,230,428,54,65,176,357,0,1,0,1,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,6,17,504,207,297,34,57,172,238,0,1,0,0,0,0,1,1,205,295,32,57,172,236,0,1,0,0,0,0,1,1,2,2,2,0,0,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,6,18,356,107,249,20,33,86,211,0,1,0,0,0,0,1,4,106,248,19,33,86,211,0,1,0,0,0,0,1,3,1,1,1,0,0,0,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,6,99,22685,10430,12255,1727,1648,8568,10451,18,16,50,32,2,2,65,106,10342,12157,1699,1628,8517,10381,18,16,50,32,2,2,56,98,88,98,28,20,51,70,0,0,0,0,0,0,9,8 -050,01,087,Alabama,Macon County,7,0,230,114,116,25,29,86,81,0,0,0,1,0,0,3,5,112,115,25,29,84,80,0,0,0,1,0,0,3,5,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,7,1,995,523,472,96,86,412,361,0,0,3,1,0,0,12,24,518,464,94,85,409,357,0,0,3,1,0,0,12,21,5,8,2,1,3,4,0,0,0,0,0,0,0,3 -050,01,087,Alabama,Macon County,7,2,1437,731,706,75,74,646,626,0,0,3,1,0,0,7,5,725,699,74,73,641,620,0,0,3,1,0,0,7,5,6,7,1,1,5,6,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,7,3,1555,789,766,98,95,679,666,1,0,3,2,1,0,7,3,784,763,97,94,675,664,1,0,3,2,1,0,7,3,5,3,1,1,4,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,7,4,2458,1161,1297,92,70,1054,1207,1,3,1,0,0,1,13,16,1144,1283,90,68,1042,1195,1,3,1,0,0,1,10,16,17,14,2,2,12,12,0,0,0,0,0,0,3,0 -050,01,087,Alabama,Macon County,7,5,2610,1166,1444,97,97,1049,1332,3,1,3,2,0,0,14,12,1145,1428,90,93,1037,1323,3,1,3,2,0,0,12,9,21,16,7,4,12,9,0,0,0,0,0,0,2,3 -050,01,087,Alabama,Macon County,7,6,1008,481,527,84,84,372,426,2,0,18,7,0,0,5,10,470,516,81,80,366,421,1,0,18,7,0,0,4,8,11,11,3,4,6,5,1,0,0,0,0,0,1,2 -050,01,087,Alabama,Macon County,7,7,1171,524,647,99,92,414,546,1,0,8,4,0,0,2,5,515,643,94,92,410,542,1,0,8,4,0,0,2,5,9,4,5,0,4,4,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,7,8,1115,504,611,125,98,371,505,0,1,4,3,0,0,4,4,497,604,122,97,368,499,0,1,4,3,0,0,3,4,7,7,3,1,3,6,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,7,9,1290,594,696,128,120,460,563,2,3,3,6,0,0,1,4,589,691,125,117,458,561,2,3,3,6,0,0,1,4,5,5,3,3,2,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,7,10,1487,704,783,141,123,555,648,3,1,1,1,1,0,3,10,701,780,139,123,554,646,3,1,1,1,1,0,3,9,3,3,2,0,1,2,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,7,11,1516,675,841,135,117,533,712,4,1,1,4,1,0,1,7,671,834,134,115,531,708,4,1,1,4,1,0,0,6,4,7,1,2,2,4,0,0,0,0,0,0,1,1 -050,01,087,Alabama,Macon County,7,12,1395,653,742,123,144,519,592,1,1,2,1,0,0,8,4,647,739,122,143,515,590,1,1,2,1,0,0,7,4,6,3,1,1,4,2,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,7,13,1083,498,585,129,107,366,475,1,2,0,0,0,0,2,1,497,583,129,107,366,473,1,2,0,0,0,0,1,1,1,2,0,0,0,2,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,7,14,804,350,454,95,81,252,370,0,1,1,0,0,0,2,2,350,452,95,81,252,368,0,1,1,0,0,0,2,2,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,7,15,722,313,409,68,54,243,353,1,1,0,0,0,0,1,1,313,408,68,54,243,352,1,1,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,7,16,633,228,405,58,66,169,336,0,0,0,0,0,0,1,3,227,403,57,66,169,335,0,0,0,0,0,0,1,2,1,2,1,0,0,1,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,7,17,509,187,322,33,52,154,269,0,0,0,0,0,0,0,1,185,321,31,52,154,268,0,0,0,0,0,0,0,1,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,7,18,370,116,254,23,45,92,205,0,1,0,0,0,0,1,3,115,252,22,45,92,204,0,1,0,0,0,0,1,2,1,2,1,0,0,1,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,7,99,22388,10311,12077,1724,1634,8426,10273,20,16,51,33,3,1,87,120,10205,11978,1689,1614,8366,10206,19,16,51,33,3,1,77,108,106,99,35,20,60,67,1,0,0,0,0,0,10,12 -050,01,087,Alabama,Macon County,8,0,243,117,126,21,20,93,101,0,0,0,1,0,0,3,4,115,125,21,20,91,100,0,0,0,1,0,0,3,4,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,8,1,923,472,451,96,89,362,347,0,0,3,1,0,0,11,14,467,443,94,88,359,343,0,0,3,1,0,0,11,11,5,8,2,1,3,4,0,0,0,0,0,0,0,3 -050,01,087,Alabama,Macon County,8,2,1393,712,681,75,76,628,597,0,1,3,1,0,0,6,6,706,671,74,71,623,592,0,1,3,1,0,0,6,6,6,10,1,5,5,5,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,8,3,1506,759,747,90,91,661,648,0,0,3,2,0,0,5,6,754,745,89,90,657,647,0,0,3,2,0,0,5,6,5,2,1,1,4,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,8,4,2435,1173,1262,93,68,1062,1174,0,3,1,0,0,0,17,17,1156,1247,91,66,1050,1161,0,3,1,0,0,0,14,17,17,15,2,2,12,13,0,0,0,0,0,0,3,0 -050,01,087,Alabama,Macon County,8,5,2569,1129,1440,86,97,1029,1326,1,1,2,3,0,0,11,13,1106,1424,79,93,1015,1317,1,1,2,3,0,0,9,10,23,16,7,4,14,9,0,0,0,0,0,0,2,3 -050,01,087,Alabama,Macon County,8,6,1096,525,571,84,76,416,475,1,0,17,8,0,1,7,11,512,558,81,72,409,470,0,0,17,8,0,1,5,7,13,13,3,4,7,5,1,0,0,0,0,0,2,4 -050,01,087,Alabama,Macon County,8,7,1115,489,626,90,93,388,524,0,0,7,4,0,0,4,5,481,622,86,93,384,520,0,0,7,4,0,0,4,5,8,4,4,0,4,4,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,8,8,1110,505,605,126,89,371,507,0,1,3,3,0,0,5,5,498,600,123,88,368,503,0,1,3,3,0,0,4,5,7,5,3,1,3,4,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,8,9,1247,562,685,107,120,453,556,0,2,2,5,0,0,0,2,558,677,104,116,452,552,0,2,2,5,0,0,0,2,4,8,3,4,1,4,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,8,10,1491,711,780,153,127,551,643,3,1,1,1,1,0,2,8,708,777,151,127,550,641,3,1,1,1,1,0,2,7,3,3,2,0,1,2,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,8,11,1490,676,814,134,111,531,689,4,2,1,4,0,0,6,8,673,809,133,110,529,686,4,2,1,4,0,0,6,7,3,5,1,1,2,3,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,8,12,1487,684,803,126,141,545,653,1,2,2,1,0,0,10,6,677,798,125,139,542,650,1,2,2,1,0,0,7,6,7,5,1,2,3,3,0,0,0,0,0,0,3,0 -050,01,087,Alabama,Macon County,8,13,1088,499,589,126,120,372,465,1,3,0,0,0,0,0,1,498,587,125,120,372,463,1,3,0,0,0,0,0,1,1,2,1,0,0,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,8,14,810,356,454,105,75,245,374,2,1,0,2,0,0,4,2,356,452,105,74,245,373,2,1,0,2,0,0,4,2,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,8,15,733,324,409,68,57,253,351,2,1,0,0,0,0,1,0,321,409,65,57,253,351,2,1,0,0,0,0,1,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,8,16,600,217,383,56,57,159,324,0,0,1,0,0,0,1,2,215,382,54,57,159,324,0,0,1,0,0,0,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,8,17,529,209,320,46,49,163,270,0,0,0,0,0,0,0,1,206,319,43,49,163,269,0,0,0,0,0,0,0,1,3,1,3,0,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,8,18,362,107,255,22,44,84,208,0,1,0,1,0,0,1,1,106,254,21,44,84,207,0,1,0,1,0,0,1,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,8,99,22227,10226,12001,1704,1600,8366,10232,15,19,46,37,1,1,94,112,10113,11899,1664,1574,8305,10169,14,19,46,37,1,1,83,99,113,102,40,26,61,63,1,0,0,0,0,0,11,13 -050,01,087,Alabama,Macon County,9,0,226,114,112,17,26,93,81,0,0,0,1,0,0,4,4,112,111,17,26,91,80,0,0,0,1,0,0,4,4,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,9,1,911,458,453,93,78,351,358,0,0,2,1,0,0,12,16,453,445,91,77,348,354,0,0,2,1,0,0,12,13,5,8,2,1,3,4,0,0,0,0,0,0,0,3 -050,01,087,Alabama,Macon County,9,2,1270,668,602,71,77,589,517,0,1,3,1,0,0,5,6,663,594,70,74,585,513,0,1,3,1,0,0,5,5,5,8,1,3,4,4,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,9,3,1418,708,710,85,85,615,617,0,0,3,2,0,0,5,6,704,708,84,84,612,616,0,0,3,2,0,0,5,6,4,2,1,1,3,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,9,4,2387,1156,1231,99,72,1037,1138,0,3,1,0,0,0,19,18,1137,1214,97,70,1023,1123,0,3,1,0,0,0,16,18,19,17,2,2,14,15,0,0,0,0,0,0,3,0 -050,01,087,Alabama,Macon County,9,5,2605,1133,1472,88,102,1031,1354,1,1,2,3,0,0,11,12,1111,1456,81,98,1018,1344,1,1,2,3,0,0,9,10,22,16,7,4,13,10,0,0,0,0,0,0,2,2 -050,01,087,Alabama,Macon County,9,6,1147,554,593,98,95,431,476,1,0,17,8,0,1,7,13,541,581,95,91,424,471,0,0,17,8,0,1,5,10,13,12,3,4,7,5,1,0,0,0,0,0,2,3 -050,01,087,Alabama,Macon County,9,7,1004,447,557,79,77,359,470,0,0,5,4,0,0,4,6,438,553,75,77,355,466,0,0,5,4,0,0,3,6,9,4,4,0,4,4,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,9,8,1182,547,635,134,88,407,538,0,1,3,2,0,0,3,6,540,630,130,87,405,534,0,1,3,2,0,0,2,6,7,5,4,1,2,4,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,9,9,1206,529,677,101,124,426,545,0,2,2,4,0,0,0,2,525,669,98,120,425,541,0,2,2,4,0,0,0,2,4,8,3,4,1,4,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,9,10,1420,686,734,156,132,523,592,3,1,1,1,1,0,2,8,683,730,154,132,522,589,3,1,1,1,1,0,2,7,3,4,2,0,1,3,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,9,11,1486,673,813,144,110,518,687,4,2,1,4,0,0,6,10,669,808,143,109,516,684,4,2,1,4,0,0,5,9,4,5,1,1,2,3,0,0,0,0,0,0,1,1 -050,01,087,Alabama,Macon County,9,12,1532,693,839,115,150,564,680,1,2,2,1,0,0,11,6,686,834,114,148,561,677,1,2,2,1,0,0,8,6,7,5,1,2,3,3,0,0,0,0,0,0,3,0 -050,01,087,Alabama,Macon County,9,13,1164,550,614,133,118,415,492,1,3,0,0,0,0,1,1,548,611,132,118,415,489,1,3,0,0,0,0,0,1,2,3,1,0,0,3,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,9,14,832,379,453,100,72,274,376,2,1,0,2,0,0,3,2,379,451,100,71,274,375,2,1,0,2,0,0,3,2,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,9,15,715,302,413,75,55,224,356,2,1,0,0,0,0,1,1,299,413,72,55,224,356,2,1,0,0,0,0,1,1,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,9,16,566,210,356,58,49,151,304,0,0,1,0,0,0,0,3,207,355,55,49,151,304,0,0,1,0,0,0,0,2,3,1,3,0,0,0,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,9,17,489,198,291,38,52,159,238,0,0,1,0,0,0,0,1,194,290,34,52,159,237,0,0,1,0,0,0,0,1,4,1,4,0,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,9,18,382,111,271,20,46,90,222,0,1,0,1,0,0,1,1,108,270,18,46,89,221,0,1,0,1,0,0,1,1,3,1,2,0,1,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,9,99,21942,10116,11826,1704,1608,8257,10041,15,19,44,35,1,1,95,122,9997,11723,1660,1584,8197,9974,14,19,44,35,1,1,81,110,119,103,44,24,60,67,1,0,0,0,0,0,14,12 -050,01,087,Alabama,Macon County,10,0,229,109,120,19,24,87,92,0,0,0,0,0,0,3,4,107,119,19,24,85,91,0,0,0,0,0,0,3,4,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,10,1,916,447,469,68,79,365,367,0,0,2,1,0,0,12,22,443,462,66,78,363,364,0,0,2,1,0,0,12,19,4,7,2,1,2,3,0,0,0,0,0,0,0,3 -050,01,087,Alabama,Macon County,10,2,1194,609,585,77,74,524,502,0,1,3,2,0,0,5,6,604,578,76,72,520,498,0,1,3,2,0,0,5,5,5,7,1,2,4,4,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,10,3,1353,669,684,75,82,589,596,0,0,2,1,0,0,3,5,665,682,74,81,586,595,0,0,2,1,0,0,3,5,4,2,1,1,3,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,10,4,2258,1095,1163,89,73,988,1070,0,3,1,0,0,0,17,17,1077,1147,87,71,974,1056,0,3,1,0,0,0,15,17,18,16,2,2,14,14,0,0,0,0,0,0,2,0 -050,01,087,Alabama,Macon County,10,5,2438,1037,1401,85,94,938,1288,1,1,2,3,0,0,11,15,1016,1385,79,90,925,1278,1,1,2,3,0,0,9,13,21,16,6,4,13,10,0,0,0,0,0,0,2,2 -050,01,087,Alabama,Macon County,10,6,1182,555,627,90,102,441,503,1,0,15,8,0,1,8,13,541,616,86,99,435,498,0,0,15,8,0,1,5,10,14,11,4,3,6,5,1,0,0,0,0,0,3,3 -050,01,087,Alabama,Macon County,10,7,1023,476,547,81,77,386,458,0,0,5,4,0,0,4,8,467,544,77,77,381,455,0,0,5,4,0,0,4,8,9,3,4,0,5,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,10,8,1194,554,640,122,95,426,533,0,1,3,3,0,0,3,8,547,634,118,94,424,528,0,1,3,3,0,0,2,8,7,6,4,1,2,5,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,10,9,1175,520,655,106,112,412,536,0,1,2,4,0,0,0,2,515,648,102,109,411,532,0,1,2,4,0,0,0,2,5,7,4,3,1,4,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,10,10,1436,689,747,134,131,549,607,2,1,1,1,1,0,2,7,686,743,133,131,547,604,2,1,1,1,1,0,2,6,3,4,1,0,2,3,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,10,11,1472,677,795,145,105,520,674,4,2,1,4,0,0,7,10,673,790,144,104,518,671,4,2,1,4,0,0,6,9,4,5,1,1,2,3,0,0,0,0,0,0,1,1 -050,01,087,Alabama,Macon County,10,12,1513,694,819,119,138,560,670,1,2,3,2,0,0,11,7,687,814,118,136,557,667,1,2,3,2,0,0,8,7,7,5,1,2,3,3,0,0,0,0,0,0,3,0 -050,01,087,Alabama,Macon County,10,13,1219,563,656,129,125,431,528,1,2,0,0,0,0,2,1,560,653,128,125,431,525,1,2,0,0,0,0,0,1,3,3,1,0,0,3,0,0,0,0,0,0,2,0 -050,01,087,Alabama,Macon County,10,14,888,389,499,113,79,270,416,2,1,0,2,0,0,4,1,389,497,113,78,270,415,2,1,0,2,0,0,4,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,10,15,697,293,404,65,62,226,340,1,1,0,0,0,0,1,1,290,404,62,62,226,340,1,1,0,0,0,0,1,1,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,10,16,563,200,363,51,57,148,302,0,0,1,0,0,0,0,4,197,361,48,57,148,302,0,0,1,0,0,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2 -050,01,087,Alabama,Macon County,10,17,451,174,277,44,51,129,225,0,0,1,0,0,0,0,1,170,276,40,51,129,224,0,0,1,0,0,0,0,1,4,1,4,0,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,10,18,396,132,264,26,37,105,224,0,0,0,1,0,0,1,2,129,262,24,37,104,223,0,0,0,1,0,0,1,1,3,2,2,0,1,1,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,10,99,21597,9882,11715,1638,1597,8094,9931,13,16,42,36,1,1,94,134,9763,11615,1594,1576,8034,9866,12,16,42,36,1,1,80,120,119,100,44,21,60,65,1,0,0,0,0,0,14,14 -050,01,087,Alabama,Macon County,11,0,213,107,106,15,23,89,79,0,0,0,0,0,0,3,4,105,105,15,23,87,78,0,0,0,0,0,0,3,4,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,11,1,909,458,451,68,73,374,361,0,0,2,1,0,0,14,16,454,442,66,72,372,356,0,0,2,1,0,0,14,13,4,9,2,1,2,5,0,0,0,0,0,0,0,3 -050,01,087,Alabama,Macon County,11,2,1062,534,528,73,73,453,446,0,1,3,2,0,0,5,6,529,521,72,71,449,442,0,1,3,2,0,0,5,5,5,7,1,2,4,4,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,11,3,1279,621,658,71,88,545,564,0,0,2,1,0,0,3,5,617,656,70,87,542,563,0,0,2,1,0,0,3,5,4,2,1,1,3,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,11,4,2222,1085,1137,103,75,965,1041,0,3,0,0,0,0,17,18,1065,1120,101,73,949,1026,0,3,0,0,0,0,15,18,20,17,2,2,16,15,0,0,0,0,0,0,2,0 -050,01,087,Alabama,Macon County,11,5,2439,1030,1409,85,87,930,1303,1,1,2,3,0,0,12,15,1004,1393,76,83,915,1293,1,1,2,3,0,0,10,13,26,16,9,4,15,10,0,0,0,0,0,0,2,2 -050,01,087,Alabama,Macon County,11,6,1169,536,633,89,95,425,515,1,0,14,8,0,0,7,15,521,621,85,92,417,510,0,0,14,8,0,0,5,11,15,12,4,3,8,5,1,0,0,0,0,0,2,4 -050,01,087,Alabama,Macon County,11,7,956,470,486,77,72,381,402,0,0,8,4,0,0,4,8,462,484,73,72,377,400,0,0,8,4,0,0,4,8,8,2,4,0,4,2,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,11,8,1183,555,628,121,99,428,515,0,1,3,4,0,0,3,9,548,623,117,98,426,511,0,1,3,4,0,0,2,9,7,5,4,1,2,4,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,11,9,1130,500,630,118,118,380,508,0,1,2,1,0,0,0,2,495,623,114,115,379,504,0,1,2,1,0,0,0,2,5,7,4,3,1,4,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,11,10,1414,660,754,135,142,519,603,2,1,1,1,1,0,2,7,657,751,134,142,517,601,2,1,1,1,1,0,2,6,3,3,1,0,2,2,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,11,11,1431,682,749,162,110,507,623,4,2,1,4,0,0,8,10,677,744,161,109,505,620,4,2,1,4,0,0,6,9,5,5,1,1,2,3,0,0,0,0,0,0,2,1 -050,01,087,Alabama,Macon County,11,12,1535,708,827,117,141,575,675,1,2,3,2,0,0,12,7,700,822,116,139,572,672,1,2,3,2,0,0,8,7,8,5,1,2,3,3,0,0,0,0,0,0,4,0 -050,01,087,Alabama,Macon County,11,13,1237,583,654,129,123,451,528,1,2,0,0,0,0,2,1,580,651,128,123,451,525,1,2,0,0,0,0,0,1,3,3,1,0,0,3,0,0,0,0,0,0,2,0 -050,01,087,Alabama,Macon County,11,14,928,405,523,126,102,274,417,2,1,0,2,0,0,3,1,404,521,126,101,273,416,2,1,0,2,0,0,3,1,1,2,0,1,1,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,11,15,690,301,389,63,62,236,325,1,1,0,0,0,0,1,1,298,389,60,62,236,325,1,1,0,0,0,0,1,1,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,11,16,548,216,332,62,41,153,287,0,0,1,0,0,0,0,4,213,330,59,41,153,287,0,0,1,0,0,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2 -050,01,087,Alabama,Macon County,11,17,464,169,295,44,66,124,228,0,0,1,0,0,0,0,1,165,294,40,66,124,227,0,0,1,0,0,0,0,1,4,1,4,0,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,11,18,381,121,260,24,36,96,221,0,0,0,1,0,0,1,2,118,258,22,36,95,220,0,0,0,1,0,0,1,1,3,2,2,0,1,1,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,11,99,21190,9741,11449,1682,1626,7905,9641,13,16,43,34,1,0,97,132,9612,11348,1635,1605,7839,9576,12,16,43,34,1,0,82,117,129,101,47,21,66,65,1,0,0,0,0,0,15,15 -050,01,087,Alabama,Macon County,12,0,212,106,106,13,22,90,80,0,0,0,0,0,0,3,4,104,105,13,22,88,79,0,0,0,0,0,0,3,4,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,12,1,957,482,475,68,65,399,393,0,0,2,1,0,0,13,16,478,467,66,64,397,389,0,0,2,1,0,0,13,13,4,8,2,1,2,4,0,0,0,0,0,0,0,3 -050,01,087,Alabama,Macon County,12,2,1068,526,542,69,73,449,460,0,1,3,2,0,0,5,6,521,535,68,71,445,456,0,1,3,2,0,0,5,5,5,7,1,2,4,4,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,12,3,1249,607,642,67,85,535,551,0,0,2,1,0,0,3,5,603,640,66,84,532,550,0,0,2,1,0,0,3,5,4,2,1,1,3,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,12,4,2289,1086,1203,111,92,958,1090,0,3,0,0,0,0,17,18,1066,1186,109,90,942,1075,0,3,0,0,0,0,15,18,20,17,2,2,16,15,0,0,0,0,0,0,2,0 -050,01,087,Alabama,Macon County,12,5,2450,1041,1409,87,88,939,1302,1,1,2,3,0,0,12,15,1017,1393,80,84,924,1292,1,1,2,3,0,0,10,13,24,16,7,4,15,10,0,0,0,0,0,0,2,2 -050,01,087,Alabama,Macon County,12,6,1256,559,697,104,111,433,561,1,0,14,8,0,1,7,16,545,684,100,108,426,556,0,0,14,8,0,1,5,11,14,13,4,3,7,5,1,0,0,0,0,0,2,5 -050,01,087,Alabama,Macon County,12,7,971,488,483,88,77,389,394,0,0,6,4,0,0,5,8,478,481,84,77,384,392,0,0,6,4,0,0,4,8,10,2,4,0,5,2,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,12,8,1127,511,616,99,98,406,506,0,1,3,3,0,0,3,8,504,611,95,97,404,502,0,1,3,3,0,0,2,8,7,5,4,1,2,4,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,12,9,1128,509,619,122,102,384,511,0,1,2,3,1,0,0,2,503,612,118,99,383,507,0,1,2,3,0,0,0,2,6,7,4,3,1,4,0,0,0,0,1,0,0,0 -050,01,087,Alabama,Macon County,12,10,1367,629,738,121,144,502,585,2,1,1,1,1,0,2,7,626,734,120,144,500,582,2,1,1,1,1,0,2,6,3,4,1,0,2,3,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,12,11,1473,713,760,164,117,536,627,4,2,1,4,0,0,8,10,708,755,163,116,534,624,4,2,1,4,0,0,6,9,5,5,1,1,2,3,0,0,0,0,0,0,2,1 -050,01,087,Alabama,Macon County,12,12,1550,707,843,128,141,563,691,1,2,3,2,0,0,12,7,699,838,127,139,560,688,1,2,3,2,0,0,8,7,8,5,1,2,3,3,0,0,0,0,0,0,4,0 -050,01,087,Alabama,Macon County,12,13,1324,637,687,133,134,501,550,1,2,0,0,0,0,2,1,634,683,132,134,501,546,1,2,0,0,0,0,0,1,3,4,1,0,0,4,0,0,0,0,0,0,2,0 -050,01,087,Alabama,Macon County,12,14,978,439,539,126,105,307,430,2,1,0,2,0,0,4,1,438,537,126,104,306,429,2,1,0,2,0,0,4,1,1,2,0,1,1,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,12,15,682,282,400,60,63,220,335,1,1,0,0,0,0,1,1,279,400,57,63,220,335,1,1,0,0,0,0,1,1,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,12,16,545,223,322,66,45,156,273,0,0,1,0,0,0,0,4,220,320,63,45,156,273,0,0,1,0,0,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2 -050,01,087,Alabama,Macon County,12,17,428,158,270,33,57,124,212,0,0,1,0,0,0,0,1,154,269,29,57,124,211,0,0,1,0,0,0,0,1,4,1,4,0,0,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,12,18,398,123,275,24,39,98,233,0,0,0,1,0,0,1,2,120,273,22,39,97,232,0,0,0,1,0,0,1,1,3,2,2,0,1,1,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,12,99,21452,9826,11626,1683,1658,7989,9784,13,16,41,35,2,1,98,132,9697,11523,1638,1637,7923,9718,12,16,41,35,1,1,82,116,129,103,45,21,66,66,1,0,0,0,1,0,16,16 -050,01,087,Alabama,Macon County,13,0,215,107,108,14,23,90,81,0,0,0,0,0,0,3,4,105,107,14,23,88,80,0,0,0,0,0,0,3,4,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,13,1,961,486,475,69,64,400,395,1,2,2,1,0,0,14,13,481,468,66,62,398,391,1,2,2,1,0,0,14,12,5,7,3,2,2,4,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,13,2,1074,528,546,69,73,448,463,0,2,3,2,0,0,8,6,524,539,68,71,445,458,0,2,3,2,0,0,8,6,4,7,1,2,3,5,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,13,3,1253,609,644,67,87,534,551,1,1,3,1,0,0,4,4,604,640,66,84,530,550,1,1,3,1,0,0,4,4,5,4,1,3,4,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,13,4,2295,1089,1206,112,93,957,1088,3,5,0,0,0,0,17,20,1067,1188,108,90,940,1073,3,5,0,0,0,0,16,20,22,18,4,3,17,15,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,13,5,2459,1045,1414,89,90,942,1307,1,1,2,3,0,0,11,13,1022,1399,82,86,927,1297,1,1,2,3,0,0,10,12,23,15,7,4,15,10,0,0,0,0,0,0,1,1 -050,01,087,Alabama,Macon County,13,6,1257,561,696,108,113,433,562,1,0,13,7,0,1,6,13,547,685,102,109,427,558,1,0,13,7,0,1,4,10,14,11,6,4,6,4,0,0,0,0,0,0,2,3 -050,01,087,Alabama,Macon County,13,7,980,492,488,92,77,392,399,0,1,5,3,0,0,3,8,481,485,87,76,387,397,0,1,5,3,0,0,2,8,11,3,5,1,5,2,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,13,8,1131,513,618,97,99,406,504,2,3,5,4,0,0,3,8,507,613,94,98,404,500,2,3,5,4,0,0,2,8,6,5,3,1,2,4,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,13,9,1130,509,621,120,102,383,509,2,3,2,4,1,0,1,3,503,614,116,99,382,505,2,3,2,4,0,0,1,3,6,7,4,3,1,4,0,0,0,0,1,0,0,0 -050,01,087,Alabama,Macon County,13,10,1371,630,741,120,144,501,586,4,1,0,2,0,0,5,8,628,737,120,143,499,583,4,1,0,2,0,0,5,8,2,4,0,1,2,3,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,13,11,1478,717,761,163,116,541,630,4,1,1,4,0,0,8,10,711,757,161,115,539,627,4,1,1,4,0,0,6,10,6,4,2,1,2,3,0,0,0,0,0,0,2,0 -050,01,087,Alabama,Macon County,13,12,1562,709,853,129,142,568,698,2,2,3,3,0,0,7,8,704,848,128,140,565,695,2,2,3,3,0,0,6,8,5,5,1,2,3,3,0,0,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,13,13,1339,643,696,134,136,508,556,0,2,0,0,0,0,1,2,641,692,132,136,508,552,0,2,0,0,0,0,1,2,2,4,2,0,0,4,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,13,14,977,438,539,127,104,307,430,2,1,0,2,0,0,2,2,437,536,127,102,306,429,2,1,0,2,0,0,2,2,1,3,0,2,1,1,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,13,15,684,284,400,62,64,220,335,1,1,0,0,0,0,1,0,281,400,59,64,220,335,1,1,0,0,0,0,1,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,13,16,546,223,323,66,45,156,275,0,0,1,0,0,0,0,3,220,322,63,45,156,275,0,0,1,0,0,0,0,2,3,1,3,0,0,0,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,13,17,425,159,266,35,54,124,211,0,0,0,0,0,0,0,1,155,266,31,54,124,211,0,0,0,0,0,0,0,1,4,0,4,0,0,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,13,18,403,124,279,25,40,99,236,0,0,0,1,0,0,0,2,121,277,23,40,98,235,0,0,0,1,0,0,0,1,3,2,2,0,1,1,0,0,0,0,0,0,0,1 -050,01,087,Alabama,Macon County,13,99,21540,9866,11674,1698,1666,8009,9816,24,26,40,37,1,1,94,128,9739,11573,1647,1637,7943,9751,24,26,40,37,0,1,85,121,127,101,51,29,66,65,0,0,0,0,1,0,9,7 -050,01,089,Alabama,Madison County,1,0,3630,1888,1742,1231,1162,551,471,13,9,30,33,2,2,61,65,1829,1685,1184,1122,545,462,12,6,29,32,1,2,58,61,59,57,47,40,6,9,1,3,1,1,1,0,3,4 -050,01,089,Alabama,Madison County,1,1,15190,7712,7478,5234,5069,2018,1992,30,45,153,151,4,9,273,212,7499,7293,5061,4933,1998,1960,27,43,149,151,3,7,261,199,213,185,173,136,20,32,3,2,4,0,1,2,12,13 -050,01,089,Alabama,Madison County,1,2,20217,10414,9803,7165,6672,2748,2632,69,72,169,167,5,2,258,258,10153,9567,6963,6479,2711,2602,66,69,169,167,2,1,242,249,261,236,202,193,37,30,3,3,0,0,3,1,16,9 -050,01,089,Alabama,Madison County,1,3,20329,10451,9878,7154,6786,2735,2553,108,113,189,175,3,3,262,248,10197,9641,6944,6606,2710,2515,104,107,186,173,1,2,252,238,254,237,210,180,25,38,4,6,3,2,2,1,10,10 -050,01,089,Alabama,Madison County,1,4,19866,10124,9742,6300,5782,3265,3402,157,115,164,174,8,8,230,261,9833,9529,6067,5623,3225,3358,153,114,160,171,6,7,222,256,291,213,233,159,40,44,4,1,4,3,2,1,8,5 -050,01,089,Alabama,Madison County,1,5,17644,8678,8966,5029,4827,3182,3704,122,100,185,149,10,10,150,176,8370,8771,4776,4698,3147,3654,111,97,180,142,7,9,149,171,308,195,253,129,35,50,11,3,5,7,3,1,1,5 -050,01,089,Alabama,Madison County,1,6,18072,8801,9271,5995,6065,2354,2765,71,73,234,246,8,10,139,112,8528,9077,5758,5897,2334,2745,66,73,232,244,6,10,132,108,273,194,237,168,20,20,5,0,2,2,2,0,7,4 -050,01,089,Alabama,Madison County,1,7,20104,9779,10325,7255,7272,2120,2584,63,62,223,273,8,5,110,129,9542,10120,7050,7114,2100,2548,58,59,220,272,7,5,107,122,237,205,205,158,20,36,5,3,3,1,1,0,3,7 -050,01,089,Alabama,Madison County,1,8,25177,12312,12865,9562,9527,2262,2817,90,98,256,265,12,6,130,152,12071,12636,9352,9326,2243,2802,86,94,255,263,11,5,124,146,241,229,210,201,19,15,4,4,1,2,1,1,6,6 -050,01,089,Alabama,Madison County,1,9,23920,11985,11935,9261,8763,2248,2605,105,123,208,289,10,5,153,150,11783,11723,9093,8582,2231,2579,98,120,206,289,9,5,146,148,202,212,168,181,17,26,7,3,2,0,1,0,7,2 -050,01,089,Alabama,Madison County,1,10,19792,9740,10052,7567,7436,1823,2083,79,103,155,285,8,7,108,138,9592,9909,7440,7320,1807,2063,77,101,154,281,7,7,107,137,148,143,127,116,16,20,2,2,1,4,1,0,1,1 -050,01,089,Alabama,Madison County,1,11,17455,8445,9010,6697,6797,1456,1763,72,84,142,245,6,4,72,117,8348,8908,6611,6708,1447,1753,71,83,142,243,5,4,72,117,97,102,86,89,9,10,1,1,0,2,1,0,0,0 -050,01,089,Alabama,Madison County,1,12,13751,6565,7186,5390,5811,970,1123,48,37,95,138,1,2,61,75,6494,7107,5325,5744,967,1116,47,36,94,136,1,2,60,73,71,79,65,67,3,7,1,1,1,2,0,0,1,2 -050,01,089,Alabama,Madison County,1,13,11806,5617,6189,4730,5178,710,843,26,19,89,98,4,1,58,50,5576,6145,4694,5140,706,837,26,19,89,98,3,1,58,50,41,44,36,38,4,6,0,0,0,0,1,0,0,0 -050,01,089,Alabama,Madison County,1,14,10144,4756,5388,4134,4565,517,690,14,12,44,81,1,1,46,39,4723,5344,4106,4525,514,687,14,12,44,81,1,1,44,38,33,44,28,40,3,3,0,0,0,0,0,0,2,1 -050,01,089,Alabama,Madison County,1,15,7680,3396,4284,2953,3667,377,521,6,14,34,62,1,0,25,20,3368,4255,2928,3640,374,520,6,14,34,62,1,0,25,19,28,29,25,27,3,1,0,0,0,0,0,0,0,1 -050,01,089,Alabama,Madison County,1,16,5891,2405,3486,2118,2980,253,465,7,1,13,15,0,2,14,23,2386,3467,2103,2962,251,464,6,1,13,15,0,2,13,23,19,19,15,18,2,1,1,0,0,0,0,0,1,0 -050,01,089,Alabama,Madison County,1,17,3619,1370,2249,1174,1914,180,317,4,3,7,9,0,0,5,6,1359,2237,1164,1905,179,314,4,3,7,9,0,0,5,6,11,12,10,9,1,3,0,0,0,0,0,0,0,0 -050,01,089,Alabama,Madison County,1,18,2711,734,1977,602,1668,120,291,2,4,4,6,0,0,6,8,731,1970,602,1662,119,290,1,4,4,6,0,0,5,8,3,7,0,6,1,1,1,0,0,0,0,0,1,0 -050,01,089,Alabama,Madison County,1,99,276998,135172,141826,99551,101941,29889,33621,1086,1087,2394,2861,91,77,2161,2239,132382,139384,97221,99986,29608,33269,1033,1055,2367,2835,71,70,2082,2169,2790,2442,2330,1955,281,352,53,32,27,26,20,7,79,70 -050,01,089,Alabama,Madison County,2,0,3679,1914,1765,1242,1171,557,476,13,9,30,34,2,2,70,73,1852,1707,1193,1130,551,467,12,6,29,33,1,2,66,69,62,58,49,41,6,9,1,3,1,1,1,0,4,4 -050,01,089,Alabama,Madison County,2,1,15134,7678,7456,5205,5042,2009,1986,32,49,156,152,4,9,272,218,7462,7268,5034,4909,1989,1952,27,44,151,152,3,7,258,204,216,188,171,133,20,34,5,5,5,0,1,2,14,14 -050,01,089,Alabama,Madison County,2,2,20124,10368,9756,7119,6630,2739,2619,75,76,170,170,5,2,260,259,10100,9517,6916,6437,2702,2589,69,70,170,170,2,1,241,250,268,239,203,193,37,30,6,6,0,0,3,1,19,9 -050,01,089,Alabama,Madison County,2,3,20452,10511,9941,7173,6807,2764,2578,114,120,190,176,3,4,267,256,10251,9696,6959,6623,2738,2540,109,111,187,174,1,3,257,245,260,245,214,184,26,38,5,9,3,2,2,1,10,11 -050,01,089,Alabama,Madison County,2,4,19946,10188,9758,6330,5793,3282,3413,160,115,163,171,8,8,245,258,9893,9544,6094,5633,3241,3369,156,114,159,168,6,7,237,253,295,214,236,160,41,44,4,1,4,3,2,1,8,5 -050,01,089,Alabama,Madison County,2,5,17845,8791,9054,5083,4868,3227,3756,124,100,182,143,11,11,164,176,8462,8848,4819,4734,3187,3702,109,96,177,136,8,10,162,170,329,206,264,134,40,54,15,4,5,7,3,1,2,6 -050,01,089,Alabama,Madison County,2,6,17983,8774,9209,5952,6004,2354,2760,76,75,239,249,10,10,143,111,8479,9010,5702,5835,2330,2738,67,73,237,247,8,10,135,107,295,199,250,169,24,22,9,2,2,2,2,0,8,4 -050,01,089,Alabama,Madison County,2,7,20094,9777,10317,7241,7254,2120,2586,66,67,226,279,8,5,116,126,9528,10106,7031,7095,2095,2548,59,61,223,278,7,5,113,119,249,211,210,159,25,38,7,6,3,1,1,0,3,7 -050,01,089,Alabama,Madison County,2,8,25107,12280,12827,9519,9482,2265,2820,94,103,259,266,12,7,131,149,12030,12592,9304,9277,2245,2805,88,98,258,264,11,6,124,142,250,235,215,205,20,15,6,5,1,2,1,1,7,7 -050,01,089,Alabama,Madison County,2,9,24001,12026,11975,9273,8780,2266,2623,107,127,212,291,10,5,158,149,11820,11761,9101,8597,2249,2597,100,124,210,291,9,5,151,147,206,214,172,183,17,26,7,3,2,0,1,0,7,2 -050,01,089,Alabama,Madison County,2,10,19931,9809,10122,7617,7485,1838,2102,82,105,157,286,8,7,107,137,9656,9973,7485,7364,1822,2082,80,102,156,282,7,7,106,136,153,149,132,121,16,20,2,3,1,4,1,0,1,1 -050,01,089,Alabama,Madison County,2,11,17683,8562,9121,6771,6864,1487,1795,75,88,148,251,6,4,75,119,8463,9016,6683,6773,1478,1784,74,87,148,249,5,4,75,119,99,105,88,91,9,11,1,1,0,2,1,0,0,0 -050,01,089,Alabama,Madison County,2,12,13871,6634,7237,5432,5848,981,1138,48,39,100,141,1,2,72,69,6562,7155,5367,5779,977,1130,47,38,99,139,1,2,71,67,72,82,65,69,4,8,1,1,1,2,0,0,1,2 -050,01,089,Alabama,Madison County,2,13,11880,5655,6225,4760,5206,724,851,27,19,90,99,4,1,50,49,5614,6181,4724,5168,720,845,27,19,90,99,3,1,50,49,41,44,36,38,4,6,0,0,0,0,1,0,0,0 -050,01,089,Alabama,Madison County,2,14,10199,4780,5419,4158,4587,528,701,14,12,45,81,1,1,34,37,4747,5375,4130,4547,525,698,14,12,45,81,1,1,32,36,33,44,28,40,3,3,0,0,0,0,0,0,2,1 -050,01,089,Alabama,Madison County,2,15,7734,3429,4305,2976,3686,386,528,7,14,35,63,1,0,24,14,3401,4276,2951,3659,383,527,7,14,35,63,1,0,24,13,28,29,25,27,3,1,0,0,0,0,0,0,0,1 -050,01,089,Alabama,Madison County,2,16,5948,2434,3514,2137,3002,262,473,7,1,14,15,0,2,14,21,2414,3495,2122,2984,259,472,6,1,14,15,0,2,13,21,20,19,15,18,3,1,1,0,0,0,0,0,1,0 -050,01,089,Alabama,Madison County,2,17,3659,1388,2271,1188,1933,181,322,4,3,9,10,0,0,6,3,1376,2259,1177,1924,180,319,4,3,9,10,0,0,6,3,12,12,11,9,1,3,0,0,0,0,0,0,0,0 -050,01,089,Alabama,Madison County,2,18,2736,743,1993,611,1682,121,294,2,4,4,6,0,0,5,7,740,1987,611,1677,120,293,1,4,4,6,0,0,4,7,3,6,0,5,1,1,1,0,0,0,0,0,1,0 -050,01,089,Alabama,Madison County,2,99,278006,135741,142265,99787,102124,30091,33821,1127,1126,2429,2883,94,80,2213,2231,132850,139766,97403,100145,29791,33457,1056,1077,2401,2857,74,73,2125,2157,2891,2499,2384,1979,300,364,71,49,28,26,20,7,88,74 -050,01,089,Alabama,Madison County,3,0,3684,1866,1818,1248,1192,492,495,14,5,31,36,1,2,80,88,1803,1760,1199,1146,485,491,13,5,29,35,1,1,76,82,63,58,49,46,7,4,1,0,2,1,0,1,4,6 -050,01,089,Alabama,Madison County,3,1,15177,7772,7405,5241,4980,2035,1980,45,47,162,153,8,7,281,238,7529,7190,5061,4826,2009,1947,39,41,156,151,5,5,259,220,243,215,180,154,26,33,6,6,6,2,3,2,22,18 -050,01,089,Alabama,Madison County,3,2,19974,10241,9733,7037,6600,2695,2617,58,76,164,167,11,2,276,271,9986,9475,6840,6397,2673,2586,50,67,161,165,6,1,256,259,255,258,197,203,22,31,8,9,3,2,5,1,20,12 -050,01,089,Alabama,Madison County,3,3,20825,10713,10112,7330,6968,2808,2581,111,103,185,179,11,7,268,274,10433,9853,7109,6780,2779,2545,104,92,182,176,5,5,254,255,280,259,221,188,29,36,7,11,3,3,6,2,14,19 -050,01,089,Alabama,Madison County,3,4,20379,10350,10029,6514,5996,3249,3485,156,113,175,171,10,10,246,254,10027,9782,6263,5812,3210,3444,148,107,169,168,5,7,232,244,323,247,251,184,39,41,8,6,6,3,5,3,14,10 -050,01,089,Alabama,Madison County,3,5,18395,9114,9281,5242,5021,3380,3812,130,100,166,131,15,14,181,203,8728,9032,4938,4857,3333,3758,114,94,161,123,10,11,172,189,386,249,304,164,47,54,16,6,5,8,5,3,9,14 -050,01,089,Alabama,Madison County,3,6,17316,8472,8844,5695,5649,2343,2750,72,76,217,233,13,15,132,121,8111,8598,5389,5455,2316,2722,62,72,214,228,9,12,121,109,361,246,306,194,27,28,10,4,3,5,4,3,11,12 -050,01,089,Alabama,Madison County,3,7,19869,9719,10150,7111,7101,2150,2566,72,62,238,285,12,5,136,131,9442,9930,6880,6936,2128,2533,62,55,233,282,9,3,130,121,277,220,231,165,22,33,10,7,5,3,3,2,6,10 -050,01,089,Alabama,Madison County,3,8,24481,11948,12533,9224,9195,2228,2806,99,99,259,267,14,10,124,156,11667,12290,8987,8999,2206,2779,91,92,257,265,11,7,115,148,281,243,237,196,22,27,8,7,2,2,3,3,9,8 -050,01,089,Alabama,Madison County,3,9,24938,12515,12423,9675,9192,2337,2688,100,121,221,274,11,7,171,141,12300,12209,9497,9006,2322,2670,89,115,219,273,9,6,164,139,215,214,178,186,15,18,11,6,2,1,2,1,7,2 -050,01,089,Alabama,Madison County,3,10,20870,10328,10542,7968,7745,1984,2245,87,115,154,280,10,8,125,149,10160,10374,7830,7617,1968,2220,84,109,151,275,8,8,119,145,168,168,138,128,16,25,3,6,3,5,2,0,6,4 -050,01,089,Alabama,Madison County,3,11,18391,8900,9491,6985,7084,1587,1910,80,82,151,277,9,5,88,133,8775,9377,6879,6987,1575,1900,76,80,149,273,9,5,87,132,125,114,106,97,12,10,4,2,2,4,0,0,1,1 -050,01,089,Alabama,Madison County,3,12,14249,6851,7398,5561,5929,1049,1193,45,38,122,149,2,4,72,85,6781,7310,5501,5853,1046,1187,41,36,120,147,2,3,71,84,70,88,60,76,3,6,4,2,2,2,0,1,1,1 -050,01,089,Alabama,Madison County,3,13,11990,5682,6308,4728,5212,774,913,34,25,83,101,7,4,56,53,5634,6267,4686,5179,771,906,32,25,83,100,6,4,56,53,48,41,42,33,3,7,2,0,0,1,1,0,0,0 -050,01,089,Alabama,Madison County,3,14,10342,4872,5470,4222,4620,544,726,12,11,55,77,3,2,36,34,4841,5429,4199,4586,539,722,12,10,55,77,3,1,33,33,31,41,23,34,5,4,0,1,0,0,0,1,3,1 -050,01,089,Alabama,Madison County,3,15,7953,3529,4424,3066,3777,399,541,7,13,31,68,1,0,25,25,3505,4393,3045,3749,396,539,7,13,31,68,1,0,25,24,24,31,21,28,3,2,0,0,0,0,0,0,0,1 -050,01,089,Alabama,Madison County,3,16,6001,2446,3555,2135,3024,263,483,11,2,15,21,0,2,22,23,2427,3538,2122,3008,259,482,10,2,15,21,0,2,21,23,19,17,13,16,4,1,1,0,0,0,0,0,1,0 -050,01,089,Alabama,Madison County,3,17,3854,1454,2400,1278,2056,153,319,5,4,10,12,0,0,8,9,1442,2388,1266,2048,153,315,5,4,10,12,0,0,8,9,12,12,12,8,0,4,0,0,0,0,0,0,0,0 -050,01,089,Alabama,Madison County,3,18,2829,779,2050,640,1723,129,303,1,6,4,8,0,0,5,10,776,2043,639,1717,129,302,0,6,4,8,0,0,4,10,3,7,1,6,0,1,1,0,0,0,0,0,1,0 -050,01,089,Alabama,Madison County,3,99,281517,137551,143966,100900,103064,30599,34413,1139,1098,2443,2889,138,104,2332,2398,134367,141238,98330,100958,30297,34048,1039,1025,2399,2847,99,81,2203,2279,3184,2728,2570,2106,302,365,100,73,44,42,39,23,129,119 -050,01,089,Alabama,Madison County,4,0,3471,1749,1722,1221,1182,422,412,8,8,23,33,3,3,72,84,1689,1646,1171,1125,418,407,7,7,22,30,2,2,69,75,60,76,50,57,4,5,1,1,1,3,1,1,3,9 -050,01,089,Alabama,Madison County,4,1,15219,7778,7441,5210,4996,2038,1970,52,43,157,148,7,13,314,271,7526,7174,5025,4799,2012,1932,44,36,152,147,4,11,289,249,252,267,185,197,26,38,8,7,5,1,3,2,25,22 -050,01,089,Alabama,Madison County,4,2,19915,10258,9657,7050,6574,2655,2547,66,70,185,187,11,9,291,270,9948,9383,6821,6364,2616,2506,56,63,182,185,6,7,267,258,310,274,229,210,39,41,10,7,3,2,5,2,24,12 -050,01,089,Alabama,Madison County,4,3,21414,10937,10477,7426,7215,2911,2694,104,98,193,185,14,9,289,276,10641,10190,7190,6994,2883,2666,97,85,190,181,8,6,273,258,296,287,236,221,28,28,7,13,3,4,6,3,16,18 -050,01,089,Alabama,Madison County,4,4,20916,10711,10205,6787,6058,3339,3581,141,122,190,173,11,11,243,260,10335,9954,6482,5872,3299,3537,138,115,182,170,6,8,228,252,376,251,305,186,40,44,3,7,8,3,5,3,15,8 -050,01,089,Alabama,Madison County,4,5,19084,9544,9540,5515,5232,3476,3815,144,109,196,152,16,13,197,219,9115,9243,5182,5026,3419,3757,126,102,189,145,8,9,191,204,429,297,333,206,57,58,18,7,7,7,8,4,6,15 -050,01,089,Alabama,Madison County,4,6,17398,8577,8821,5745,5584,2372,2781,74,69,243,234,11,15,132,138,8172,8542,5404,5363,2342,2749,61,64,238,229,7,11,120,126,405,279,341,221,30,32,13,5,5,5,4,4,12,12 -050,01,089,Alabama,Madison County,4,7,19805,9659,10146,6995,6999,2212,2629,66,62,243,310,12,9,131,137,9306,9923,6705,6825,2181,2602,54,56,238,308,6,7,122,125,353,223,290,174,31,27,12,6,5,2,6,2,9,12 -050,01,089,Alabama,Madison County,4,8,23600,11453,12147,8744,8831,2179,2756,99,95,293,287,12,15,126,163,11178,11872,8516,8606,2158,2733,88,86,288,283,10,12,118,152,275,275,228,225,21,23,11,9,5,4,2,3,8,11 -050,01,089,Alabama,Madison County,4,9,25580,12839,12741,9897,9408,2424,2771,104,122,231,265,14,9,169,166,12581,12510,9689,9210,2404,2754,92,115,229,264,11,7,156,160,258,231,208,198,20,17,12,7,2,1,3,2,13,6 -050,01,089,Alabama,Madison County,4,10,22066,10867,11199,8394,8248,2061,2354,98,133,167,301,9,7,138,156,10682,10993,8243,8083,2041,2330,93,126,165,297,7,7,133,150,185,206,151,165,20,24,5,7,2,4,2,0,5,6 -050,01,089,Alabama,Madison County,4,11,18438,8902,9536,6932,7016,1649,2030,81,81,137,278,8,6,95,125,8762,9421,6814,6922,1638,2017,77,79,135,273,7,5,91,125,140,115,118,94,11,13,4,2,2,5,1,1,4,0 -050,01,089,Alabama,Madison County,4,12,15397,7441,7956,6046,6337,1125,1299,64,52,133,168,3,3,70,97,7352,7860,5968,6257,1120,1290,60,51,132,166,3,2,69,94,89,96,78,80,5,9,4,1,1,2,0,1,1,3 -050,01,089,Alabama,Madison County,4,13,12190,5767,6423,4771,5257,811,966,36,26,85,113,6,1,58,60,5717,6362,4730,5205,806,958,34,26,85,112,4,1,58,60,50,61,41,52,5,8,2,0,0,1,2,0,0,0 -050,01,089,Alabama,Madison County,4,14,10606,4957,5649,4272,4766,569,743,15,10,60,86,6,3,35,41,4923,5611,4246,4737,564,739,14,9,60,85,6,1,33,40,34,38,26,29,5,4,1,1,0,1,0,2,2,1 -050,01,089,Alabama,Madison County,4,15,8126,3664,4462,3192,3788,408,576,5,18,35,58,2,1,22,21,3635,4425,3168,3756,404,572,5,18,34,58,2,1,22,20,29,37,24,32,4,4,0,0,1,0,0,0,0,1 -050,01,089,Alabama,Madison County,4,16,6248,2577,3671,2232,3126,298,477,9,3,18,36,0,2,20,27,2555,3647,2215,3104,295,475,8,3,18,36,0,2,19,27,22,24,17,22,3,2,1,0,0,0,0,0,1,0 -050,01,089,Alabama,Madison County,4,17,3992,1527,2465,1347,2112,154,324,5,5,11,12,1,0,9,12,1511,2450,1332,2102,153,319,5,5,11,12,1,0,9,12,16,15,15,10,1,5,0,0,0,0,0,0,0,0 -050,01,089,Alabama,Madison County,4,18,2974,804,2170,669,1818,122,329,1,3,6,11,0,0,6,9,800,2165,668,1815,121,327,0,3,6,11,0,0,5,9,4,5,1,3,1,2,1,0,0,0,0,0,1,0 -050,01,089,Alabama,Madison County,4,99,286439,140011,146428,102445,104547,31225,35054,1172,1129,2606,3037,146,129,2417,2532,136428,143371,99569,102165,30874,34670,1059,1049,2556,2992,98,99,2272,2396,3583,3057,2876,2382,351,384,113,80,50,45,48,30,145,136 -050,01,089,Alabama,Madison County,5,0,3603,1844,1759,1254,1189,455,423,10,7,36,48,3,3,86,89,1771,1678,1199,1122,449,420,8,7,34,46,1,2,80,81,73,81,55,67,6,3,2,0,2,2,2,1,6,8 -050,01,089,Alabama,Madison County,5,1,14892,7538,7354,5046,4967,1970,1914,50,44,148,157,9,11,315,261,7252,7026,4831,4715,1940,1873,43,34,142,154,6,9,290,241,286,328,215,252,30,41,7,10,6,3,3,2,25,20 -050,01,089,Alabama,Madison County,5,2,19979,10250,9729,7025,6643,2646,2522,59,74,207,196,10,7,303,287,9926,9430,6782,6419,2609,2474,46,63,202,193,6,6,281,275,324,299,243,224,37,48,13,11,5,3,4,1,22,12 -050,01,089,Alabama,Madison County,5,3,21816,11161,10655,7549,7281,2997,2783,111,99,194,204,17,11,293,277,10830,10333,7291,7041,2964,2745,100,83,191,200,10,9,274,255,331,322,258,240,33,38,11,16,3,4,7,2,19,22 -050,01,089,Alabama,Madison County,5,4,21418,10985,10433,6952,6235,3441,3626,139,105,197,182,13,9,243,276,10588,10153,6635,6027,3397,3581,131,99,190,177,8,6,227,263,397,280,317,208,44,45,8,6,7,5,5,3,16,13 -050,01,089,Alabama,Madison County,5,5,19960,9961,9999,5776,5432,3600,4036,142,107,197,185,17,16,229,223,9466,9641,5396,5183,3534,3961,119,98,189,178,10,13,218,208,495,358,380,249,66,75,23,9,8,7,7,3,11,15 -050,01,089,Alabama,Madison County,5,6,17657,8863,8794,5912,5521,2473,2788,92,80,235,234,15,15,136,156,8375,8504,5502,5294,2434,2752,76,72,233,229,10,12,120,145,488,290,410,227,39,36,16,8,2,5,5,3,16,11 -050,01,089,Alabama,Madison County,5,7,19473,9462,10011,6749,6761,2213,2727,71,78,276,294,12,9,141,142,9067,9727,6424,6548,2177,2688,58,67,269,290,8,7,131,127,395,284,325,213,36,39,13,11,7,4,4,2,10,15 -050,01,089,Alabama,Madison County,5,8,22812,11052,11760,8369,8465,2180,2716,94,90,273,326,10,12,126,151,10738,11497,8105,8244,2156,2698,82,80,270,323,7,9,118,143,314,263,264,221,24,18,12,10,3,3,3,3,8,8 -050,01,089,Alabama,Madison County,5,9,26163,13030,13133,9994,9696,2471,2866,107,116,273,285,15,6,170,164,12741,12893,9757,9487,2449,2849,94,110,271,283,13,5,157,159,289,240,237,209,22,17,13,6,2,2,2,1,13,5 -050,01,089,Alabama,Madison County,5,10,23030,11383,11647,8783,8532,2142,2474,110,137,193,324,10,9,145,171,11173,11415,8607,8340,2125,2448,105,132,189,320,8,9,139,166,210,232,176,192,17,26,5,5,4,4,2,0,6,5 -050,01,089,Alabama,Madison County,5,11,18840,9201,9639,7069,7038,1785,2116,80,81,153,273,10,6,104,125,9050,9518,6944,6942,1771,2100,75,79,151,268,9,5,100,124,151,121,125,96,14,16,5,2,2,5,1,1,4,1 -050,01,089,Alabama,Madison County,5,12,16099,7742,8357,6224,6523,1229,1442,68,69,141,208,5,5,75,110,7637,8245,6136,6434,1221,1431,64,65,139,205,5,4,72,106,105,112,88,89,8,11,4,4,2,3,0,1,3,4 -050,01,089,Alabama,Madison County,5,13,12631,5991,6640,4968,5403,829,1029,36,33,89,118,5,2,64,55,5940,6574,4925,5350,824,1019,35,32,89,116,3,2,64,55,51,66,43,53,5,10,1,1,0,2,2,0,0,0 -050,01,089,Alabama,Madison County,5,14,10907,5002,5905,4260,4965,615,783,15,13,75,104,4,3,33,37,4965,5865,4230,4933,610,779,15,12,75,103,4,2,31,36,37,40,30,32,5,4,0,1,0,1,0,1,2,1 -050,01,089,Alabama,Madison County,5,15,8444,3900,4544,3382,3853,449,577,8,20,34,67,3,1,24,26,3875,4508,3362,3821,446,574,7,20,33,67,3,1,24,25,25,36,20,32,3,3,1,0,1,0,0,0,0,1 -050,01,089,Alabama,Madison County,5,16,6374,2645,3729,2302,3194,292,469,9,3,22,37,0,2,20,24,2623,3702,2286,3167,288,469,8,3,22,37,0,2,19,24,22,27,16,27,4,0,1,0,0,0,0,0,1,0 -050,01,089,Alabama,Madison County,5,17,4191,1582,2609,1396,2227,161,350,6,3,11,15,1,0,7,14,1569,2596,1384,2217,160,347,6,3,11,15,1,0,7,14,13,13,12,10,1,3,0,0,0,0,0,0,0,0 -050,01,089,Alabama,Madison County,5,18,3053,865,2188,727,1851,124,311,0,5,7,12,1,0,6,9,861,2180,725,1845,124,310,0,5,6,11,1,0,5,9,4,8,2,6,0,1,0,0,1,1,0,0,1,0 -050,01,089,Alabama,Madison County,5,99,291342,142457,148885,103737,105776,32072,35952,1207,1164,2761,3269,160,127,2520,2597,138447,145485,100521,103129,31678,35518,1072,1064,2706,3215,113,103,2357,2456,4010,3400,3216,2647,394,434,135,100,55,54,47,24,163,141 -050,01,089,Alabama,Madison County,6,0,3579,1816,1763,1214,1131,457,468,8,6,38,53,2,5,97,100,1716,1670,1129,1054,452,463,6,5,37,51,1,5,91,92,100,93,85,77,5,5,2,1,1,2,1,0,6,8 -050,01,089,Alabama,Madison County,6,1,14943,7618,7325,5059,4913,1990,1895,60,51,165,170,11,10,333,286,7286,6974,4815,4638,1953,1859,46,37,158,167,7,8,307,265,332,351,244,275,37,36,14,14,7,3,4,2,26,21 -050,01,089,Alabama,Madison County,6,2,19988,10214,9774,6973,6656,2567,2533,71,82,226,200,13,9,364,294,9847,9463,6693,6429,2532,2482,55,64,221,198,9,8,337,282,367,311,280,227,35,51,16,18,5,2,4,1,27,12 -050,01,089,Alabama,Madison County,6,3,22080,11359,10721,7682,7266,3030,2817,117,113,215,218,20,15,295,292,10987,10367,7399,6998,2985,2781,104,95,212,213,12,12,275,268,372,354,283,268,45,36,13,18,3,5,8,3,20,24 -050,01,089,Alabama,Madison County,6,4,21811,11127,10684,7036,6424,3507,3678,117,115,192,191,13,15,262,261,10674,10381,6676,6202,3454,3631,109,106,184,186,7,12,244,244,453,303,360,222,53,47,8,9,8,5,6,3,18,17 -050,01,089,Alabama,Madison County,6,5,20512,10241,10271,6032,5591,3571,4135,159,114,218,181,18,17,243,233,9672,9854,5597,5295,3494,4052,130,102,210,175,10,11,231,219,569,417,435,296,77,83,29,12,8,6,8,6,12,14 -050,01,089,Alabama,Madison County,6,6,18200,9178,9022,6089,5638,2606,2889,114,89,220,231,19,14,130,161,8606,8698,5620,5384,2558,2848,92,81,214,226,10,10,112,149,572,324,469,254,48,41,22,8,6,5,9,4,18,12 -050,01,089,Alabama,Madison County,6,7,19290,9356,9934,6542,6622,2255,2702,79,91,311,351,16,10,153,158,8900,9619,6170,6380,2212,2666,61,76,304,347,9,8,144,142,456,315,372,242,43,36,18,15,7,4,7,2,9,16 -050,01,089,Alabama,Madison County,6,8,21922,10644,11278,7980,8007,2141,2704,95,84,284,315,12,16,132,152,10275,10980,7674,7767,2110,2673,80,73,281,312,8,12,122,143,369,298,306,240,31,31,15,11,3,3,4,4,10,9 -050,01,089,Alabama,Madison County,6,9,26381,13039,13342,9996,9855,2500,2891,101,118,273,304,13,9,156,165,12732,13104,9742,9650,2476,2876,89,110,268,302,10,7,147,159,307,238,254,205,24,15,12,8,5,2,3,2,9,6 -050,01,089,Alabama,Madison County,6,10,23790,11762,12028,9042,8765,2237,2611,103,153,215,318,9,9,156,172,11519,11782,8830,8557,2221,2586,97,146,212,315,8,9,151,169,243,246,212,208,16,25,6,7,3,3,1,0,5,3 -050,01,089,Alabama,Madison County,6,11,19592,9592,10000,7382,7316,1859,2167,81,81,155,297,7,7,108,132,9415,9869,7234,7208,1843,2152,75,78,153,294,6,6,104,131,177,131,148,108,16,15,6,3,2,3,1,1,4,1 -050,01,089,Alabama,Madison County,6,12,16707,8070,8637,6428,6577,1321,1636,77,76,157,224,5,6,82,118,7954,8518,6325,6481,1314,1624,74,73,155,221,5,5,81,114,116,119,103,96,7,12,3,3,2,3,0,1,1,4 -050,01,089,Alabama,Madison County,6,13,12978,6071,6907,4989,5585,883,1082,39,40,96,135,6,3,58,62,6016,6818,4940,5512,880,1069,38,39,96,134,4,2,58,62,55,89,49,73,3,13,1,1,0,1,2,1,0,0 -050,01,089,Alabama,Madison County,6,14,11064,5097,5967,4318,4994,646,816,19,18,78,102,2,3,34,34,5051,5926,4279,4963,640,811,18,17,78,101,2,2,34,32,46,41,39,31,6,5,1,1,0,1,0,1,0,2 -050,01,089,Alabama,Madison County,6,15,8839,4060,4779,3512,4047,467,628,10,14,45,68,5,1,21,21,4032,4733,3487,4005,465,625,10,14,44,68,5,1,21,20,28,46,25,42,2,3,0,0,1,0,0,0,0,1 -050,01,089,Alabama,Madison County,6,16,6390,2688,3702,2334,3189,300,446,9,4,22,41,0,1,23,21,2664,3673,2314,3162,298,444,8,4,22,41,0,1,22,21,24,29,20,27,2,2,1,0,0,0,0,0,1,0 -050,01,089,Alabama,Madison County,6,17,4379,1655,2724,1459,2326,173,354,1,4,14,21,1,0,7,19,1643,2711,1448,2315,172,352,1,4,14,21,1,0,7,19,12,13,11,11,1,2,0,0,0,0,0,0,0,0 -050,01,089,Alabama,Madison County,6,18,3210,964,2246,814,1866,133,354,1,5,8,11,0,0,8,10,953,2235,806,1857,133,352,0,5,7,11,0,0,7,10,11,11,8,9,0,2,1,0,1,0,0,0,1,0 -050,01,089,Alabama,Madison County,6,99,295655,144551,151104,104881,106768,32643,36806,1261,1258,2932,3431,172,150,2662,2691,139942,147375,101178,103857,32192,36346,1093,1129,2870,3383,114,119,2495,2541,4609,3729,3703,2911,451,460,168,129,62,48,58,31,167,150 -050,01,089,Alabama,Madison County,7,0,3761,1956,1805,1362,1188,453,458,11,7,41,43,2,3,87,106,1798,1688,1227,1085,442,452,7,5,39,42,1,3,82,101,158,117,135,103,11,6,4,2,2,1,1,0,5,5 -050,01,089,Alabama,Madison County,7,1,14889,7557,7332,5004,4859,1947,1948,58,67,179,185,10,11,359,262,7175,6923,4712,4541,1907,1898,45,50,169,182,7,7,335,245,382,409,292,318,40,50,13,17,10,3,3,4,24,17 -050,01,089,Alabama,Madison County,7,2,20148,10276,9872,6927,6677,2632,2539,84,91,252,226,11,10,370,329,9855,9509,6600,6408,2592,2489,65,67,246,223,8,9,344,313,421,363,327,269,40,50,19,24,6,3,3,1,26,16 -050,01,089,Alabama,Madison County,7,3,21858,11250,10608,7626,7138,3019,2810,98,95,189,241,19,12,299,312,10874,10249,7341,6861,2966,2772,85,79,185,237,15,11,282,289,376,359,285,277,53,38,13,16,4,4,4,1,17,23 -050,01,089,Alabama,Madison County,7,4,22548,11589,10959,7370,6668,3649,3724,113,111,182,187,10,14,265,255,11098,10624,6961,6414,3595,3671,106,104,179,183,5,11,252,241,491,335,409,254,54,53,7,7,3,4,5,3,13,14 -050,01,089,Alabama,Madison County,7,5,21303,10694,10609,6308,5732,3733,4307,163,111,246,202,20,10,224,247,10070,10161,5826,5391,3645,4230,136,99,242,196,11,8,210,237,624,448,482,341,88,77,27,12,4,6,9,2,14,10 -050,01,089,Alabama,Madison County,7,6,19096,9504,9592,6267,5981,2713,3071,105,99,239,260,16,12,164,169,8883,9194,5754,5660,2652,3018,84,88,236,257,10,11,147,160,621,398,513,321,61,53,21,11,3,3,6,1,17,9 -050,01,089,Alabama,Madison County,7,7,18908,9231,9677,6383,6340,2254,2729,102,94,338,345,14,5,140,164,8733,9359,5972,6095,2203,2692,84,81,331,340,8,3,135,148,498,318,411,245,51,37,18,13,7,5,6,2,5,16 -050,01,089,Alabama,Madison County,7,8,21502,10454,11048,7725,7789,2219,2683,87,76,272,311,12,18,139,171,10039,10733,7373,7536,2186,2645,69,67,269,306,9,16,133,163,415,315,352,253,33,38,18,9,3,5,3,2,6,8 -050,01,089,Alabama,Madison County,7,9,26186,12789,13397,9788,9886,2438,2929,122,119,276,301,11,8,154,154,12472,13144,9519,9664,2415,2909,108,111,274,300,10,8,146,152,317,253,269,222,23,20,14,8,2,1,1,0,8,2 -050,01,089,Alabama,Madison County,7,10,24835,12333,12502,9432,9123,2388,2726,101,142,236,329,14,13,162,169,12061,12249,9201,8906,2365,2703,96,136,233,327,12,13,154,164,272,253,231,217,23,23,5,6,3,2,2,0,8,5 -050,01,089,Alabama,Madison County,7,11,20453,10089,10364,7778,7625,1928,2206,80,91,166,295,8,4,129,143,9898,10182,7616,7468,1912,2187,75,89,166,292,6,4,123,142,191,182,162,157,16,19,5,2,0,3,2,0,6,1 -050,01,089,Alabama,Madison County,7,12,17600,8470,9130,6676,6807,1469,1851,69,75,168,261,3,11,85,125,8329,9006,6551,6712,1460,1834,69,72,167,259,3,9,79,120,141,124,125,95,9,17,0,3,1,2,0,2,6,5 -050,01,089,Alabama,Madison County,7,13,13325,6263,7062,5121,5691,939,1127,42,42,96,144,6,0,59,58,6187,6965,5053,5610,936,1115,41,40,95,143,4,0,58,57,76,97,68,81,3,12,1,2,1,1,2,0,1,1 -050,01,089,Alabama,Madison County,7,14,11238,5209,6029,4346,4986,711,858,22,30,85,114,2,4,43,37,5149,5982,4296,4950,703,852,21,29,85,112,2,3,42,36,60,47,50,36,8,6,1,1,0,2,0,1,1,1 -050,01,089,Alabama,Madison County,7,15,9254,4220,5034,3657,4269,477,641,11,16,45,78,3,1,27,29,4194,4996,3636,4234,473,639,11,16,44,78,3,1,27,28,26,38,21,35,4,2,0,0,1,0,0,0,0,1 -050,01,089,Alabama,Madison County,7,16,6605,2846,3759,2460,3239,323,440,8,6,35,53,0,0,20,21,2819,3727,2437,3210,319,438,8,6,35,52,0,0,20,21,27,32,23,29,4,2,0,0,0,1,0,0,0,0 -050,01,089,Alabama,Madison County,7,17,4585,1724,2861,1526,2427,181,390,3,6,8,22,1,0,5,16,1709,2841,1511,2411,181,386,3,6,8,22,1,0,5,16,15,20,15,16,0,4,0,0,0,0,0,0,0,0 -050,01,089,Alabama,Madison County,7,18,3380,1036,2344,882,1974,135,347,6,5,6,11,0,0,7,7,1021,2332,872,1967,133,343,5,5,5,11,0,0,6,6,15,12,10,7,2,4,1,0,1,0,0,0,1,1 -050,01,089,Alabama,Madison County,7,99,301474,147490,153984,106638,108399,33608,37784,1285,1283,3059,3608,162,136,2738,2774,142364,149864,102458,105123,33085,37273,1118,1150,3008,3562,115,117,2580,2639,5126,4120,4180,3276,523,511,167,133,51,46,47,19,158,135 -050,01,089,Alabama,Madison County,8,0,3844,1937,1907,1345,1241,450,498,14,8,32,48,3,4,93,108,1769,1741,1192,1090,444,491,12,7,31,46,2,4,88,103,168,166,153,151,6,7,2,1,1,2,1,0,5,5 -050,01,089,Alabama,Madison County,8,1,15157,7777,7380,5184,4866,1962,1921,49,69,188,200,5,13,389,311,7330,6933,4830,4509,1919,1872,34,55,183,196,4,13,360,288,447,447,354,357,43,49,15,14,5,4,1,0,29,23 -050,01,089,Alabama,Madison County,8,2,20497,10451,10046,6970,6694,2738,2621,79,83,265,277,11,13,388,358,9995,9641,6601,6388,2702,2561,60,64,259,274,10,12,363,342,456,405,369,306,36,60,19,19,6,3,1,1,25,16 -050,01,089,Alabama,Madison County,8,3,22093,11274,10819,7564,7251,3068,2922,101,86,204,227,16,11,321,322,10854,10416,7240,6946,3011,2874,88,68,199,219,12,11,304,298,420,403,324,305,57,48,13,18,5,8,4,0,17,24 -050,01,089,Alabama,Madison County,8,4,23165,11892,11273,7574,6865,3721,3774,111,125,197,221,11,14,278,274,11366,10904,7146,6585,3661,3717,101,117,193,216,6,12,259,257,526,369,428,280,60,57,10,8,4,5,5,2,19,17 -050,01,089,Alabama,Madison County,8,5,21972,11080,10892,6607,5792,3827,4550,149,96,251,199,19,15,227,240,10388,10385,6079,5419,3731,4449,116,81,245,191,11,14,206,231,692,507,528,373,96,101,33,15,6,8,8,1,21,9 -050,01,089,Alabama,Madison County,8,6,20261,10111,10150,6670,6374,2855,3194,110,126,274,274,20,13,182,169,9385,9684,6063,5994,2788,3139,86,114,269,271,15,10,164,156,726,466,607,380,67,55,24,12,5,3,5,3,18,13 -050,01,089,Alabama,Madison County,8,7,18596,9036,9560,6219,6102,2234,2791,95,99,321,362,18,10,149,196,8437,9219,5715,5841,2175,2747,78,84,314,358,12,9,143,180,599,341,504,261,59,44,17,15,7,4,6,1,6,16 -050,01,089,Alabama,Madison County,8,8,21538,10455,11083,7645,7756,2266,2748,92,79,299,328,11,16,142,156,10035,10727,7283,7461,2238,2712,74,69,297,324,8,15,135,146,420,356,362,295,28,36,18,10,2,4,3,1,7,10 -050,01,089,Alabama,Madison County,8,9,25887,12663,13224,9626,9690,2443,2918,118,119,304,323,14,7,158,167,12292,12962,9313,9460,2414,2898,104,113,300,321,12,7,149,163,371,262,313,230,29,20,14,6,4,2,2,0,9,4 -050,01,089,Alabama,Madison County,8,10,25913,12909,13004,9882,9532,2497,2824,97,126,248,325,10,11,175,186,12608,12718,9623,9279,2475,2808,91,119,243,323,8,11,168,178,301,286,259,253,22,16,6,7,5,2,2,0,7,8 -050,01,089,Alabama,Madison County,8,11,21373,10574,10799,8116,7904,2049,2352,98,102,173,294,10,6,128,141,10368,10606,7937,7738,2035,2331,93,100,172,291,9,6,122,140,206,193,179,166,14,21,5,2,1,3,1,0,6,1 -050,01,089,Alabama,Madison County,8,12,18383,8842,9541,6924,7056,1559,1983,79,74,180,291,3,10,97,127,8680,9411,6786,6952,1545,1967,78,72,178,289,3,7,90,124,162,130,138,104,14,16,1,2,2,2,0,3,7,3 -050,01,089,Alabama,Madison County,8,13,13816,6502,7314,5242,5829,1040,1228,44,40,112,148,5,3,59,66,6426,7219,5176,5745,1035,1220,43,40,111,147,4,2,57,65,76,95,66,84,5,8,1,0,1,1,1,1,2,1 -050,01,089,Alabama,Madison County,8,14,11592,5302,6290,4390,5132,763,949,23,32,86,129,3,3,37,45,5227,6252,4326,5104,755,945,22,31,86,127,3,2,35,43,75,38,64,28,8,4,1,1,0,2,0,1,2,2 -050,01,089,Alabama,Madison County,8,15,9664,4431,5233,3835,4431,505,678,11,21,52,74,4,3,24,26,4405,5189,3815,4393,500,675,11,20,51,74,4,3,24,24,26,44,20,38,5,3,0,1,1,0,0,0,0,2 -050,01,089,Alabama,Madison County,8,16,6993,3010,3983,2594,3444,364,453,7,3,25,58,0,0,20,25,2986,3948,2573,3414,361,449,7,3,25,57,0,0,20,25,24,35,21,30,3,4,0,0,0,1,0,0,0,0 -050,01,089,Alabama,Madison County,8,17,4749,1794,2955,1588,2494,179,397,1,6,16,29,1,0,9,29,1782,2936,1577,2478,178,394,1,6,16,29,1,0,9,29,12,19,11,16,1,3,0,0,0,0,0,0,0,0 -050,01,089,Alabama,Madison County,8,18,3677,1192,2485,1015,2109,150,345,5,6,9,14,1,0,12,11,1175,2471,1003,2101,149,342,4,6,8,13,1,0,10,9,17,14,12,8,1,3,1,0,1,1,0,0,2,2 -050,01,089,Alabama,Madison County,8,99,309170,151232,157938,108990,110562,34670,39146,1283,1300,3236,3821,165,152,2888,2957,145508,153362,104278,106897,34116,38591,1103,1169,3180,3766,125,138,2706,2801,5724,4576,4712,3665,554,555,180,131,56,55,40,14,182,156 -050,01,089,Alabama,Madison County,9,0,4042,2050,1992,1402,1314,486,472,16,6,32,53,4,5,110,142,1843,1822,1212,1160,480,464,12,5,31,52,3,5,105,136,207,170,190,154,6,8,4,1,1,1,1,0,5,6 -050,01,089,Alabama,Madison County,9,1,15596,7994,7602,5284,4924,2018,2040,49,69,212,211,12,8,419,350,7460,7031,4863,4453,1959,1993,34,53,206,203,11,8,387,321,534,571,421,471,59,47,15,16,6,8,1,0,32,29 -050,01,089,Alabama,Madison County,9,2,20638,10595,10043,7039,6715,2758,2568,94,97,263,273,14,13,427,377,10085,9594,6627,6370,2714,2504,75,75,257,271,11,11,401,363,510,449,412,345,44,64,19,22,6,2,3,2,26,14 -050,01,089,Alabama,Madison County,9,3,22349,11480,10869,7709,7256,3079,2928,110,94,218,252,23,18,341,321,11010,10440,7340,6945,3018,2869,93,72,215,243,18,17,326,294,470,429,369,311,61,59,17,22,3,9,5,1,15,27 -050,01,089,Alabama,Madison County,9,4,23856,12184,11672,7731,7081,3804,3916,113,121,220,233,15,16,301,305,11596,11245,7248,6747,3740,3863,100,110,216,228,10,14,282,283,588,427,483,334,64,53,13,11,4,5,5,2,19,22 -050,01,089,Alabama,Madison County,9,5,22441,11459,10982,6778,5793,4033,4621,142,114,264,185,20,12,222,257,10665,10449,6164,5403,3927,4518,105,96,258,179,11,9,200,244,794,533,614,390,106,103,37,18,6,6,9,3,22,13 -050,01,089,Alabama,Madison County,9,6,20884,10501,10383,6964,6539,2921,3230,136,114,256,295,19,14,205,191,9690,9883,6294,6138,2843,3169,105,97,252,290,11,10,185,179,811,500,670,401,78,61,31,17,4,5,8,4,20,12 -050,01,089,Alabama,Madison County,9,7,18882,9217,9665,6302,6131,2314,2840,93,111,314,359,22,10,172,214,8547,9251,5746,5806,2252,2793,71,95,305,355,13,9,160,193,670,414,556,325,62,47,22,16,9,4,9,1,12,21 -050,01,089,Alabama,Madison County,9,8,21595,10453,11142,7592,7725,2311,2818,92,86,292,353,13,17,153,143,9992,10764,7202,7407,2279,2784,72,73,287,348,9,16,143,136,461,378,390,318,32,34,20,13,5,5,4,1,10,7 -050,01,089,Alabama,Madison County,9,9,25045,12160,12885,9157,9390,2393,2885,113,119,321,337,14,8,162,146,11779,12599,8833,9148,2368,2857,96,112,318,334,13,8,151,140,381,286,324,242,25,28,17,7,3,3,1,0,11,6 -050,01,089,Alabama,Madison County,9,10,26633,13304,13329,10234,9762,2541,2919,96,125,239,318,13,13,181,192,12986,13020,9956,9502,2519,2894,90,114,234,315,11,13,176,182,318,309,278,260,22,25,6,11,5,3,2,0,5,10 -050,01,089,Alabama,Madison County,9,11,22683,11158,11525,8586,8468,2134,2479,99,111,190,326,7,5,142,136,10914,11288,8371,8259,2118,2459,94,106,189,324,6,5,136,135,244,237,215,209,16,20,5,5,1,2,1,0,6,1 -050,01,089,Alabama,Madison County,9,12,18613,8985,9628,6978,7025,1650,2098,88,74,173,294,5,10,91,127,8801,9492,6822,6910,1634,2085,85,72,170,293,5,8,85,124,184,136,156,115,16,13,3,2,3,1,0,2,6,3 -050,01,089,Alabama,Madison County,9,13,14914,7042,7872,5663,6220,1130,1351,54,48,137,177,6,5,52,71,6953,7766,5586,6128,1125,1341,52,48,135,176,5,4,50,69,89,106,77,92,5,10,2,0,2,1,1,1,2,2 -050,01,089,Alabama,Madison County,9,14,11827,5428,6399,4451,5195,819,992,26,27,82,130,5,3,45,52,5359,6349,4394,5154,812,987,24,27,82,128,5,2,42,51,69,50,57,41,7,5,2,0,0,2,0,1,3,1 -050,01,089,Alabama,Madison County,9,15,9861,4443,5418,3833,4565,506,702,12,17,59,94,5,3,28,37,4410,5377,3805,4531,502,699,12,16,58,93,5,3,28,35,33,41,28,34,4,3,0,1,1,1,0,0,0,2 -050,01,089,Alabama,Madison County,9,16,7182,3180,4002,2752,3469,365,450,11,7,27,55,0,0,25,21,3150,3963,2724,3435,363,446,11,7,27,54,0,0,25,21,30,39,28,34,2,4,0,0,0,1,0,0,0,0 -050,01,089,Alabama,Madison County,9,17,4922,1861,3061,1626,2609,203,393,5,8,18,26,1,0,8,25,1851,3033,1617,2583,202,391,5,8,18,26,1,0,8,25,10,28,9,26,1,2,0,0,0,0,0,0,0,0 -050,01,089,Alabama,Madison County,9,18,3896,1287,2609,1111,2225,150,356,3,5,11,14,1,0,11,9,1269,2596,1096,2216,150,354,3,5,10,14,1,0,9,7,18,13,15,9,0,2,0,0,1,0,0,0,2,2 -050,01,089,Alabama,Madison County,9,99,315859,154781,161078,111192,112406,35615,40058,1352,1353,3328,3985,199,160,3095,3116,148360,155962,105900,108295,35005,39470,1139,1191,3268,3926,149,142,2899,2938,6421,5116,5292,4111,610,588,213,162,60,59,50,18,196,178 -050,01,089,Alabama,Madison County,10,0,4250,2132,2118,1446,1372,491,520,14,4,39,53,1,4,141,165,1902,1924,1235,1199,485,508,9,3,37,51,1,4,135,159,230,194,211,173,6,12,5,1,2,2,0,0,6,6 -050,01,089,Alabama,Madison County,10,1,16097,8178,7919,5381,5087,2096,2134,71,70,204,220,13,18,413,390,7527,7262,4851,4533,2043,2079,45,49,197,215,11,18,380,368,651,657,530,554,53,55,26,21,7,5,2,0,33,22 -050,01,089,Alabama,Madison County,10,2,20757,10719,10038,7088,6710,2785,2505,95,105,295,286,16,15,440,417,10159,9528,6643,6308,2730,2446,72,79,288,284,14,14,412,397,560,510,445,402,55,59,23,26,7,2,2,1,28,20 -050,01,089,Alabama,Madison County,10,3,22668,11610,11058,7739,7327,3084,2975,102,88,252,268,20,17,413,383,11099,10585,7333,6987,3022,2908,85,65,247,260,17,15,395,350,511,473,406,340,62,67,17,23,5,8,3,2,18,33 -050,01,089,Alabama,Madison County,10,4,24471,12582,11889,7949,7163,3967,4042,111,105,223,241,15,17,317,321,11950,11400,7437,6776,3888,3977,98,95,219,238,9,14,299,300,632,489,512,387,79,65,13,10,4,3,6,3,18,21 -050,01,089,Alabama,Madison County,10,5,23163,11890,11273,7076,5989,4134,4702,146,96,271,198,20,14,243,274,10997,10702,6369,5553,4021,4607,108,78,265,193,12,12,222,259,893,571,707,436,113,95,38,18,6,5,8,2,21,15 -050,01,089,Alabama,Madison County,10,6,21914,10990,10924,7243,6814,3084,3503,130,109,291,287,22,14,220,197,10121,10348,6524,6348,2999,3431,97,93,287,283,14,12,200,181,869,576,719,466,85,72,33,16,4,4,8,2,20,16 -050,01,089,Alabama,Madison County,10,7,19473,9610,9863,6568,6235,2392,2874,113,130,324,374,22,10,191,240,8834,9415,5905,5886,2326,2820,90,112,318,369,14,9,181,219,776,448,663,349,66,54,23,18,6,5,8,1,10,21 -050,01,089,Alabama,Madison County,10,8,21451,10359,11092,7465,7541,2319,2912,81,95,307,360,10,19,177,165,9844,10669,7029,7192,2281,2864,56,81,302,358,6,18,170,156,515,423,436,349,38,48,25,14,5,2,4,1,7,9 -050,01,089,Alabama,Madison County,10,9,24381,11835,12546,8852,9048,2392,2868,102,100,307,368,11,4,171,158,11415,12250,8502,8793,2355,2842,86,93,303,365,10,4,159,153,420,296,350,255,37,26,16,7,4,3,1,0,12,5 -050,01,089,Alabama,Madison County,10,10,27359,13551,13808,10379,10077,2574,3053,118,124,284,350,10,16,186,188,13203,13472,10072,9792,2550,3026,113,114,282,347,9,16,177,177,348,336,307,285,24,27,5,10,2,3,1,0,9,11 -050,01,089,Alabama,Madison County,10,11,23740,11693,12047,9014,8875,2206,2558,99,111,214,344,10,6,150,153,11419,11778,8773,8638,2187,2534,94,108,213,341,9,6,143,151,274,269,241,237,19,24,5,3,1,3,1,0,7,2 -050,01,089,Alabama,Madison County,10,12,19109,9265,9844,7161,7097,1760,2219,79,79,161,301,4,9,100,139,9063,9682,6983,6968,1745,2199,78,74,159,300,4,7,94,134,202,162,178,129,15,20,1,5,2,1,0,2,6,5 -050,01,089,Alabama,Madison County,10,13,15696,7406,8290,5931,6476,1226,1461,49,56,135,218,5,6,60,73,7299,8174,5836,6373,1220,1453,48,55,133,217,4,5,58,71,107,116,95,103,6,8,1,1,2,1,1,1,2,2 -050,01,089,Alabama,Madison County,10,14,12289,5673,6616,4669,5313,826,1076,23,39,94,138,7,4,54,46,5596,6556,4605,5266,817,1068,22,38,94,136,7,3,51,45,77,60,64,47,9,8,1,1,0,2,0,1,3,1 -050,01,089,Alabama,Madison County,10,15,10090,4458,5632,3818,4765,528,718,18,12,64,103,4,3,26,31,4428,5579,3795,4719,523,715,17,11,63,102,4,3,26,29,30,53,23,46,5,3,1,1,1,1,0,0,0,2 -050,01,089,Alabama,Madison County,10,16,7518,3405,4113,2936,3551,404,466,9,4,30,65,0,0,26,27,3379,4075,2912,3516,402,464,9,4,30,64,0,0,26,27,26,38,24,35,2,2,0,0,0,1,0,0,0,0 -050,01,089,Alabama,Madison County,10,17,5019,1915,3104,1684,2665,195,367,4,8,23,34,1,0,8,30,1904,3077,1673,2641,195,364,4,8,23,34,1,0,8,30,11,27,11,24,0,3,0,0,0,0,0,0,0,0 -050,01,089,Alabama,Madison County,10,18,4081,1323,2758,1147,2324,148,398,5,5,12,18,1,0,10,13,1309,2741,1136,2313,148,394,5,5,11,18,1,0,8,11,14,17,11,11,0,4,0,0,1,0,0,0,2,2 -050,01,089,Alabama,Madison County,10,99,323526,158594,164932,113546,114429,36611,41351,1369,1340,3530,4226,192,176,3346,3410,151448,159217,107613,109801,35937,40699,1136,1165,3471,4175,147,160,3144,3217,7146,5715,5933,4628,674,652,233,175,59,51,45,16,202,193 -050,01,089,Alabama,Madison County,11,0,4150,2074,2076,1336,1300,546,556,14,6,43,47,3,6,132,161,1871,1870,1165,1125,528,538,7,5,41,46,3,5,127,151,203,206,171,175,18,18,7,1,2,1,0,1,5,10 -050,01,089,Alabama,Madison County,11,1,16605,8461,8144,5582,5212,2160,2195,63,68,210,218,9,10,437,441,7714,7443,4965,4648,2099,2120,41,44,202,211,7,10,400,410,747,701,617,564,61,75,22,24,8,7,2,0,37,31 -050,01,089,Alabama,Madison County,11,2,21022,10844,10178,7144,6684,2807,2616,123,121,290,284,19,18,461,455,10180,9609,6611,6228,2751,2561,95,90,284,281,16,17,423,432,664,569,533,456,56,55,28,31,6,3,3,1,38,23 -050,01,089,Alabama,Madison County,11,3,22669,11602,11067,7657,7353,3087,2929,108,89,268,280,22,23,460,393,11062,10563,7223,6978,3032,2869,91,66,265,273,14,21,437,356,540,504,434,375,55,60,17,23,3,7,8,2,23,37 -050,01,089,Alabama,Madison County,11,4,24732,12790,11942,8026,7128,4057,4087,117,107,240,244,14,16,336,360,12123,11415,7496,6715,3968,4018,106,96,234,239,7,13,312,334,667,527,530,413,89,69,11,11,6,5,7,3,24,26 -050,01,089,Alabama,Madison County,11,5,24087,12265,11822,7333,6241,4237,4939,134,104,287,205,23,18,251,315,11213,11187,6496,5775,4105,4814,92,85,282,201,16,17,222,295,1052,635,837,466,132,125,42,19,5,4,7,1,29,20 -050,01,089,Alabama,Madison County,11,6,22845,11535,11310,7706,7130,3147,3531,133,102,301,298,18,13,230,236,10574,10602,6915,6548,3047,3453,97,84,297,293,11,11,207,213,961,708,791,582,100,78,36,18,4,5,7,2,23,23 -050,01,089,Alabama,Madison County,11,7,20177,10031,10146,6847,6415,2469,2936,127,127,346,398,22,15,220,255,9227,9620,6163,6006,2401,2871,102,106,340,393,13,12,208,232,804,526,684,409,68,65,25,21,6,5,9,3,12,23 -050,01,089,Alabama,Madison County,11,8,21539,10360,11179,7359,7491,2377,2958,95,115,317,407,17,23,195,185,9770,10699,6860,7095,2336,2909,68,100,312,401,12,19,182,175,590,480,499,396,41,49,27,15,5,6,5,4,13,10 -050,01,089,Alabama,Madison County,11,9,23609,11468,12141,8522,8626,2349,2893,85,94,325,377,14,8,173,143,11008,11824,8131,8354,2318,2864,70,88,321,372,11,8,157,138,460,317,391,272,31,29,15,6,4,5,3,0,16,5 -050,01,089,Alabama,Madison County,11,10,28062,13782,14280,10576,10418,2602,3132,98,120,303,391,11,16,192,203,13402,13912,10248,10104,2574,3104,89,111,300,390,10,16,181,187,380,368,328,314,28,28,9,9,3,1,1,0,11,16 -050,01,089,Alabama,Madison County,11,11,24759,12344,12415,9475,9135,2353,2683,100,93,241,343,11,7,164,154,12039,12129,9206,8883,2336,2659,94,90,239,340,9,6,155,151,305,286,269,252,17,24,6,3,2,3,2,1,9,3 -050,01,089,Alabama,Madison County,11,12,20048,9687,10361,7485,7511,1833,2281,87,82,172,332,4,14,106,141,9468,10186,7293,7369,1818,2263,83,79,170,330,4,11,100,134,219,175,192,142,15,18,4,3,2,2,0,3,6,7 -050,01,089,Alabama,Madison County,11,13,16466,7893,8573,6260,6547,1341,1646,59,55,159,239,7,5,67,81,7771,8445,6153,6441,1333,1631,57,54,157,236,6,4,65,79,122,128,107,106,8,15,2,1,2,3,1,1,2,2 -050,01,089,Alabama,Madison County,11,14,12564,5750,6814,4667,5415,907,1136,28,44,105,159,4,5,39,55,5659,6741,4587,5357,899,1130,27,41,105,156,4,3,37,54,91,73,80,58,8,6,1,3,0,3,0,2,2,1 -050,01,089,Alabama,Madison County,11,15,10293,4575,5718,3892,4778,554,783,19,19,74,103,6,3,30,32,4536,5661,3858,4730,551,778,18,18,73,102,6,3,30,30,39,57,34,48,3,5,1,1,1,1,0,0,0,2 -050,01,089,Alabama,Madison County,11,16,7848,3504,4344,3027,3712,405,526,9,5,38,72,0,0,25,29,3475,4306,3003,3678,400,523,9,5,38,71,0,0,25,29,29,38,24,34,5,3,0,0,0,1,0,0,0,0 -050,01,089,Alabama,Madison County,11,17,5090,2006,3084,1751,2623,223,378,3,6,22,44,1,0,6,33,1987,3063,1733,2605,222,375,3,6,22,44,1,0,6,33,19,21,18,18,1,3,0,0,0,0,0,0,0,0 -050,01,089,Alabama,Madison County,11,18,4291,1367,2924,1178,2477,162,409,6,6,10,20,1,0,10,12,1354,2904,1169,2462,161,406,6,6,9,20,1,0,8,10,13,20,9,15,1,3,0,0,1,0,0,0,2,2 -050,01,089,Alabama,Madison County,11,99,330856,162338,168518,115823,116196,37616,42614,1408,1363,3751,4461,206,200,3534,3684,154433,162179,109275,111101,36879,41886,1155,1174,3691,4399,151,176,3282,3443,7905,6339,6548,5095,737,728,253,189,60,62,55,24,252,241 -050,01,089,Alabama,Madison County,12,0,4096,2053,2043,1283,1223,584,611,20,10,43,51,3,6,120,142,1848,1832,1120,1062,561,579,12,8,41,48,2,5,112,130,205,211,163,161,23,32,8,2,2,3,1,1,8,12 -050,01,089,Alabama,Madison County,12,1,16773,8542,8231,5498,5208,2266,2265,88,78,210,219,11,10,469,451,7739,7474,4858,4603,2190,2180,55,48,201,212,8,10,427,421,803,757,640,605,76,85,33,30,9,7,3,0,42,30 -050,01,089,Alabama,Madison County,12,2,21285,10942,10343,7204,6753,2840,2668,116,131,287,308,20,18,475,465,10195,9708,6611,6251,2770,2599,86,97,277,304,16,17,435,440,747,635,593,502,70,69,30,34,10,4,4,1,40,25 -050,01,089,Alabama,Madison County,12,3,22834,11675,11159,7699,7369,3103,2932,112,105,274,291,27,25,460,437,11055,10599,7204,6955,3035,2866,90,77,269,283,19,22,438,396,620,560,495,414,68,66,22,28,5,8,8,3,22,41 -050,01,089,Alabama,Madison County,12,4,24777,12829,11948,8033,7130,4062,4064,108,107,250,250,17,18,359,379,12101,11358,7466,6669,3962,3988,92,91,243,244,8,14,330,352,728,590,567,461,100,76,16,16,7,6,9,4,29,27 -050,01,089,Alabama,Madison County,12,5,24321,12417,11904,7456,6385,4244,4832,119,115,297,225,27,17,274,330,11300,11198,6576,5862,4106,4706,73,92,289,219,15,12,241,307,1117,706,880,523,138,126,46,23,8,6,12,5,33,23 -050,01,089,Alabama,Madison County,12,6,23246,11826,11420,7902,7199,3188,3535,145,103,332,315,25,17,234,251,10772,10708,7041,6622,3083,3456,104,80,325,309,15,12,204,229,1054,712,861,577,105,79,41,23,7,6,10,5,30,22 -050,01,089,Alabama,Madison County,12,7,20712,10245,10467,7045,6617,2494,3051,135,136,319,377,23,12,229,274,9373,9880,6323,6159,2410,2982,105,111,309,370,11,9,215,249,872,587,722,458,84,69,30,25,10,7,12,3,14,25 -050,01,089,Alabama,Madison County,12,8,21103,10134,10969,7147,7309,2368,2943,101,112,318,382,15,27,185,196,9525,10463,6638,6886,2323,2897,71,96,311,377,9,23,173,184,609,506,509,423,45,46,30,16,7,5,6,4,12,12 -050,01,089,Alabama,Madison County,12,9,23254,11307,11947,8321,8431,2388,2866,92,96,312,383,16,11,178,160,10796,11596,7891,8128,2349,2840,71,87,308,379,12,9,165,153,511,351,430,303,39,26,21,9,4,4,4,2,13,7 -050,01,089,Alabama,Madison County,12,10,28126,13708,14418,10519,10552,2567,3141,102,116,317,399,13,17,190,193,13315,14042,10177,10231,2543,3116,92,103,313,398,11,17,179,177,393,376,342,321,24,25,10,13,4,1,2,0,11,16 -050,01,089,Alabama,Madison County,12,11,25690,12837,12853,9821,9398,2458,2835,105,90,275,369,11,6,167,155,12509,12545,9535,9129,2435,2809,97,86,273,364,10,5,159,152,328,308,286,269,23,26,8,4,2,5,1,1,8,3 -050,01,089,Alabama,Madison County,12,12,20576,10015,10561,7744,7701,1868,2281,87,94,193,321,5,12,118,152,9784,10370,7540,7545,1855,2261,82,90,192,320,5,9,110,145,231,191,204,156,13,20,5,4,1,1,0,3,8,7 -050,01,089,Alabama,Madison County,12,13,17145,8220,8925,6483,6693,1436,1808,63,61,165,278,7,4,66,81,8081,8796,6359,6583,1428,1796,61,60,163,275,6,3,64,79,139,129,124,110,8,12,2,1,2,3,1,1,2,2 -050,01,089,Alabama,Madison County,12,14,12792,5859,6933,4748,5510,927,1155,29,42,109,168,5,4,41,54,5767,6855,4667,5446,919,1149,28,40,109,165,5,2,39,53,92,78,81,64,8,6,1,2,0,3,0,2,2,1 -050,01,089,Alabama,Madison County,12,15,10359,4640,5719,3911,4763,602,800,16,16,77,102,6,4,28,34,4602,5655,3879,4706,598,797,15,15,76,101,6,4,28,32,38,64,32,57,4,3,1,1,1,1,0,0,0,2 -050,01,089,Alabama,Madison County,12,16,8034,3523,4511,3060,3860,392,545,10,4,38,72,0,0,23,30,3490,4472,3030,3825,389,542,10,4,38,71,0,0,23,30,33,39,30,35,3,3,0,0,0,1,0,0,0,0 -050,01,089,Alabama,Madison County,12,17,5250,2102,3148,1836,2680,229,384,3,7,27,45,1,0,6,32,2082,3122,1816,2656,229,382,3,7,27,45,1,0,6,32,20,26,20,24,0,2,0,0,0,0,0,0,0,0 -050,01,089,Alabama,Madison County,12,18,4438,1446,2992,1252,2524,166,428,5,5,11,24,1,0,11,11,1430,2970,1240,2508,165,425,5,5,10,23,1,0,9,9,16,22,12,16,1,3,0,0,1,1,0,0,2,2 -050,01,089,Alabama,Madison County,12,99,334811,164320,170491,116962,117305,38182,43144,1456,1428,3854,4579,233,208,3633,3827,155764,163643,109971,111826,37350,42370,1152,1197,3774,4507,160,173,3357,3570,8556,6848,6991,5479,832,774,304,231,80,72,73,35,276,257 -050,01,089,Alabama,Madison County,13,0,4121,2067,2054,1288,1228,589,613,20,10,43,51,3,7,124,145,1858,1842,1123,1066,566,581,12,8,41,48,2,6,114,133,209,212,165,162,23,32,8,2,2,3,1,1,10,12 -050,01,089,Alabama,Madison County,13,1,16815,8561,8254,5490,5201,2286,2283,88,80,213,220,12,12,472,458,7754,7487,4847,4593,2208,2197,55,49,203,213,9,11,432,424,807,767,643,608,78,86,33,31,10,7,3,1,40,34 -050,01,089,Alabama,Madison County,13,2,21348,10971,10377,7212,6765,2846,2678,119,132,288,309,21,21,485,472,10214,9729,6615,6257,2775,2608,87,98,278,305,16,17,443,444,757,648,597,508,71,70,32,34,10,4,5,4,42,28 -050,01,089,Alabama,Madison County,13,3,22860,11687,11173,7703,7378,3107,2937,112,107,276,293,29,24,460,434,11063,10604,7205,6959,3038,2871,90,78,270,285,21,21,439,390,624,569,498,419,69,66,22,29,6,8,8,3,21,44 -050,01,089,Alabama,Madison County,13,4,24715,12800,11915,8007,7105,4057,4055,105,103,253,250,21,21,357,381,12063,11323,7436,6641,3955,3979,91,89,245,244,9,15,327,355,737,592,571,464,102,76,14,14,8,6,12,6,30,26 -050,01,089,Alabama,Madison County,13,5,24454,12483,11971,7485,6410,4280,4875,122,118,298,224,30,18,268,326,11357,11261,6598,5885,4142,4748,75,93,289,219,17,11,236,305,1126,710,887,525,138,127,47,25,9,5,13,7,32,21 -050,01,089,Alabama,Madison County,13,6,23371,11911,11460,7953,7222,3214,3550,147,106,334,314,26,18,237,250,10851,10745,7089,6644,3109,3472,105,81,326,309,16,11,206,228,1060,715,864,578,105,78,42,25,8,5,10,7,31,22 -050,01,089,Alabama,Madison County,13,7,20915,10350,10565,7110,6678,2533,3084,137,137,319,379,23,12,228,275,9469,9969,6381,6217,2448,3015,106,110,309,369,12,9,213,249,881,596,729,461,85,69,31,27,10,10,11,3,15,26 -050,01,089,Alabama,Madison County,13,8,21026,10099,10927,7105,7262,2370,2943,102,115,320,384,18,27,184,196,9487,10417,6593,6838,2325,2896,72,97,313,379,11,22,173,185,612,510,512,424,45,47,30,18,7,5,7,5,11,11 -050,01,089,Alabama,Madison County,13,9,23282,11320,11962,8326,8437,2392,2871,91,96,313,386,17,12,181,160,10805,11609,7892,8132,2353,2846,70,87,309,381,13,10,168,153,515,353,434,305,39,25,21,9,4,5,4,2,13,7 -050,01,089,Alabama,Madison County,13,10,28091,13691,14400,10491,10521,2573,3151,105,116,317,402,13,17,192,193,13293,14023,10146,10197,2548,3125,93,102,313,401,11,17,182,181,398,377,345,324,25,26,12,14,4,1,2,0,10,12 -050,01,089,Alabama,Madison County,13,11,25812,12900,12912,9853,9430,2481,2857,108,90,275,371,12,6,171,158,12563,12603,9562,9160,2456,2831,99,86,273,366,10,5,163,155,337,309,291,270,25,26,9,4,2,5,2,1,8,3 -050,01,089,Alabama,Madison County,13,12,20739,10092,10647,7803,7758,1887,2305,88,96,192,324,5,12,117,152,9858,10453,7597,7601,1873,2284,83,91,192,323,5,9,108,145,234,194,206,157,14,21,5,5,0,1,0,3,9,7 -050,01,089,Alabama,Madison County,13,13,17342,8309,9033,6551,6765,1460,1838,63,63,166,281,6,2,63,84,8172,8903,6426,6654,1452,1825,61,61,164,278,6,2,63,83,137,130,125,111,8,13,2,2,2,3,0,0,0,1 -050,01,089,Alabama,Madison County,13,14,12886,5908,6978,4790,5550,937,1164,27,42,111,167,5,3,38,52,5816,6902,4709,5486,927,1159,27,40,111,165,5,1,37,51,92,76,81,64,10,5,0,2,0,2,0,2,1,1 -050,01,089,Alabama,Madison County,13,15,10429,4675,5754,3942,4793,607,807,17,16,78,102,4,3,27,33,4636,5690,3909,4736,603,804,16,15,77,101,4,3,27,31,39,64,33,57,4,3,1,1,1,1,0,0,0,2 -050,01,089,Alabama,Madison County,13,16,8044,3530,4514,3066,3858,397,550,9,5,38,74,0,0,20,27,3496,4478,3035,3825,394,548,9,5,38,73,0,0,20,27,34,36,31,33,3,2,0,0,0,1,0,0,0,0 -050,01,089,Alabama,Madison County,13,17,5259,2112,3147,1847,2681,231,384,2,6,27,46,1,0,4,30,2090,3121,1825,2655,231,384,2,6,27,46,1,0,4,30,22,26,22,26,0,0,0,0,0,0,0,0,0,0 -050,01,089,Alabama,Madison County,13,18,4479,1462,3017,1266,2541,168,434,5,5,11,24,1,0,11,13,1446,2995,1254,2525,167,431,5,5,10,23,1,0,9,11,16,22,12,16,1,3,0,0,1,1,0,0,2,2 -050,01,089,Alabama,Madison County,13,99,335988,164928,171060,117288,117583,38415,43379,1467,1443,3872,4601,247,215,3639,3839,156291,164154,110242,112071,37570,42604,1158,1201,3788,4528,169,170,3364,3580,8637,6906,7046,5512,845,775,309,242,84,73,78,45,275,259 -050,01,091,Alabama,Marengo County,1,0,280,145,135,59,60,83,72,0,0,2,0,0,0,1,3,144,135,58,60,83,72,0,0,2,0,0,0,1,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,1,1,1247,631,616,268,240,356,369,0,0,3,1,0,0,4,6,622,609,262,235,354,367,0,0,2,1,0,0,4,6,9,7,6,5,2,2,0,0,1,0,0,0,0,0 -050,01,091,Alabama,Marengo County,1,2,1850,943,907,360,309,578,588,0,1,2,7,0,0,3,2,937,896,359,303,574,583,0,1,2,7,0,0,2,2,6,11,1,6,4,5,0,0,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,1,3,1903,1020,883,370,316,643,561,3,1,1,1,0,0,3,4,1008,869,362,310,639,554,3,1,1,1,0,0,3,3,12,14,8,6,4,7,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,1,4,1754,868,886,361,330,502,550,1,0,0,1,0,0,4,5,854,877,351,326,498,547,1,0,0,0,0,0,4,4,14,9,10,4,4,3,0,0,0,1,0,0,0,1 -050,01,091,Alabama,Marengo County,1,5,1200,582,618,242,249,338,361,0,0,0,1,0,0,2,7,575,612,236,247,337,359,0,0,0,1,0,0,2,5,7,6,6,2,1,2,0,0,0,0,0,0,0,2 -050,01,091,Alabama,Marengo County,1,6,1298,592,706,308,309,279,392,0,0,1,1,0,0,4,4,578,697,294,301,279,392,0,0,1,1,0,0,4,3,14,9,14,8,0,0,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,1,7,1322,573,749,284,321,283,425,1,0,5,2,0,0,0,1,567,743,279,317,282,423,1,0,5,2,0,0,0,1,6,6,5,4,1,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,1,8,1581,723,858,399,418,319,430,2,2,1,5,0,1,2,2,714,848,392,415,318,424,2,2,0,5,0,0,2,2,9,10,7,3,1,6,0,0,1,0,0,1,0,0 -050,01,091,Alabama,Marengo County,1,9,1653,765,888,417,384,343,498,0,1,1,1,0,0,4,4,760,881,414,382,341,494,0,1,1,1,0,0,4,3,5,7,3,2,2,4,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,1,10,1539,736,803,414,389,321,409,0,1,0,1,0,0,1,3,731,800,410,388,320,407,0,1,0,1,0,0,1,3,5,3,4,1,1,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,1,11,1407,663,744,374,365,284,375,1,0,0,1,1,0,3,3,653,736,370,363,278,370,1,0,0,1,1,0,3,2,10,8,4,2,6,5,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,1,12,1155,562,593,328,332,232,256,0,1,0,0,0,0,2,4,561,589,327,329,232,255,0,1,0,0,0,0,2,4,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,1,13,1055,476,579,298,359,176,216,1,0,1,0,0,0,0,4,474,577,296,358,176,215,1,0,1,0,0,0,0,4,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,1,14,940,410,530,271,312,137,216,0,0,0,0,0,0,2,2,406,527,270,310,134,215,0,0,0,0,0,0,2,2,4,3,1,2,3,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,1,15,829,356,473,222,238,130,232,2,0,0,1,0,0,2,2,353,469,221,237,128,230,2,0,0,0,0,0,2,2,3,4,1,1,2,2,0,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,1,16,628,244,384,140,197,103,183,0,1,0,1,0,0,1,2,242,384,138,197,103,183,0,1,0,1,0,0,1,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,1,17,444,157,287,91,159,66,128,0,0,0,0,0,0,0,0,156,283,90,157,66,126,0,0,0,0,0,0,0,0,1,4,1,2,0,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,1,18,448,118,330,60,161,58,168,0,0,0,0,0,1,0,0,118,329,60,160,58,168,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,1,99,22533,10564,11969,5266,5448,5231,6429,11,8,17,24,1,2,38,58,10453,11861,5189,5395,5200,6384,11,8,15,22,1,1,37,51,111,108,77,53,31,45,0,0,2,2,0,1,1,7 -050,01,091,Alabama,Marengo County,2,0,281,145,136,59,60,83,73,0,0,2,0,0,0,1,3,144,136,58,60,83,73,0,0,2,0,0,0,1,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,2,1,1237,625,612,265,237,353,367,0,0,3,1,0,0,4,7,616,605,259,232,351,365,0,0,2,1,0,0,4,7,9,7,6,5,2,2,0,0,1,0,0,0,0,0 -050,01,091,Alabama,Marengo County,2,2,1835,933,902,356,305,572,587,0,1,2,7,0,0,3,2,927,891,355,299,568,582,0,1,2,7,0,0,2,2,6,11,1,6,4,5,0,0,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,2,3,1910,1025,885,369,315,649,564,3,1,1,1,0,0,3,4,1013,871,361,309,645,557,3,1,1,1,0,0,3,3,12,14,8,6,4,7,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,2,4,1760,873,887,363,330,505,551,1,0,0,1,0,0,4,5,859,878,353,326,501,548,1,0,0,0,0,0,4,4,14,9,10,4,4,3,0,0,0,1,0,0,0,1 -050,01,091,Alabama,Marengo County,2,5,1209,588,621,245,251,341,362,0,0,0,1,0,0,2,7,581,615,239,249,340,360,0,0,0,1,0,0,2,5,7,6,6,2,1,2,0,0,0,0,0,0,0,2 -050,01,091,Alabama,Marengo County,2,6,1287,585,702,304,306,276,391,0,0,1,1,0,0,4,4,571,693,290,298,276,391,0,0,1,1,0,0,4,3,14,9,14,8,0,0,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,2,7,1323,576,747,284,319,286,425,1,0,5,2,0,0,0,1,570,741,279,315,285,423,1,0,5,2,0,0,0,1,6,6,5,4,1,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,2,8,1579,724,855,397,415,322,430,2,2,1,5,0,1,2,2,715,845,390,412,321,424,2,2,0,5,0,0,2,2,9,10,7,3,1,6,0,0,1,0,0,1,0,0 -050,01,091,Alabama,Marengo County,2,9,1659,770,889,417,383,348,500,0,1,1,1,0,0,4,4,765,882,414,381,346,496,0,1,1,1,0,0,4,3,5,7,3,2,2,4,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,2,10,1549,741,808,415,391,325,412,0,1,0,1,0,0,1,3,736,805,411,390,324,410,0,1,0,1,0,0,1,3,5,3,4,1,1,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,2,11,1421,669,752,376,368,288,380,1,0,0,1,1,0,3,3,659,744,372,366,282,375,1,0,0,1,1,0,3,2,10,8,4,2,6,5,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,2,12,1164,570,594,331,333,237,256,0,1,0,0,0,0,2,4,569,590,330,330,237,255,0,1,0,0,0,0,2,4,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,2,13,1054,476,578,298,358,176,216,1,0,1,0,0,0,0,4,474,576,296,357,176,215,1,0,1,0,0,0,0,4,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,2,14,938,409,529,270,310,137,216,0,0,0,0,0,0,2,3,405,526,269,308,134,215,0,0,0,0,0,0,2,3,4,3,1,2,3,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,2,15,830,358,472,222,238,132,231,2,0,0,1,0,0,2,2,355,468,221,237,130,229,2,0,0,0,0,0,2,2,3,4,1,1,2,2,0,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,2,16,629,245,384,140,196,104,184,0,1,0,1,0,0,1,2,243,384,138,196,104,184,0,1,0,1,0,0,1,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,2,17,451,160,291,93,162,67,129,0,0,0,0,0,0,0,0,159,287,92,160,67,127,0,0,0,0,0,0,0,0,1,4,1,2,0,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,2,18,448,118,330,60,161,58,168,0,0,0,0,0,1,0,0,118,329,60,160,58,168,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,2,99,22564,10590,11974,5264,5438,5259,6442,11,8,17,24,1,2,38,60,10479,11866,5187,5385,5228,6397,11,8,15,22,1,1,37,53,111,108,77,53,31,45,0,0,2,2,0,1,1,7 -050,01,091,Alabama,Marengo County,3,0,324,177,147,69,58,105,86,0,0,2,0,0,0,1,3,176,143,68,54,105,86,0,0,2,0,0,0,1,3,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,3,1,1151,581,570,254,237,319,324,0,0,3,1,0,0,5,8,569,561,245,230,317,322,0,0,2,1,0,0,5,8,12,9,9,7,2,2,0,0,1,0,0,0,0,0 -050,01,091,Alabama,Marengo County,3,2,1741,862,879,340,283,516,588,0,1,2,5,0,0,4,2,852,867,336,276,512,583,0,1,2,5,0,0,2,2,10,12,4,7,4,5,0,0,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,3,3,1927,1045,882,352,315,686,561,3,1,1,1,0,0,3,4,1032,868,343,308,682,555,3,1,1,1,0,0,3,3,13,14,9,7,4,6,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,3,4,1699,842,857,344,328,493,523,1,0,0,1,0,0,4,5,826,848,332,324,489,520,1,0,0,0,0,0,4,4,16,9,12,4,4,3,0,0,0,1,0,0,0,1 -050,01,091,Alabama,Marengo County,3,5,1198,565,633,244,250,319,375,0,0,0,1,0,0,2,7,552,626,232,247,318,373,0,0,0,1,0,0,2,5,13,7,12,3,1,2,0,0,0,0,0,0,0,2 -050,01,091,Alabama,Marengo County,3,6,1173,548,625,275,293,268,327,0,0,1,1,0,0,4,4,538,612,265,281,268,327,0,0,1,1,0,0,4,3,10,13,10,12,0,0,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,3,7,1286,550,736,268,311,276,422,1,0,5,2,0,0,0,1,540,726,259,303,275,420,1,0,5,2,0,0,0,1,10,10,9,8,1,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,3,8,1531,705,826,382,374,318,442,2,2,1,5,0,1,2,2,694,816,373,371,317,436,2,2,0,5,0,0,2,2,11,10,9,3,1,6,0,0,1,0,0,1,0,0 -050,01,091,Alabama,Marengo County,3,9,1592,742,850,421,388,316,456,0,1,1,1,0,0,4,4,736,844,417,386,314,453,0,1,1,1,0,0,4,3,6,6,4,2,2,3,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,3,10,1564,741,823,405,388,335,430,0,1,0,1,0,0,1,3,736,820,401,387,334,428,0,1,0,1,0,0,1,3,5,3,4,1,1,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,3,11,1502,713,789,405,379,303,406,1,0,0,1,1,0,3,3,704,779,401,375,298,401,1,0,0,1,1,0,3,2,9,10,4,4,5,5,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,3,12,1182,573,609,324,332,247,272,0,1,0,0,0,0,2,4,571,605,322,329,247,271,0,1,0,0,0,0,2,4,2,4,2,3,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,3,13,1056,500,556,290,338,208,214,1,0,1,0,0,0,0,4,498,554,288,337,208,213,1,0,1,0,0,0,0,4,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,3,14,929,413,516,270,308,141,206,0,0,0,0,0,0,2,2,410,513,269,306,139,205,0,0,0,0,0,0,2,2,3,3,1,2,2,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,3,15,821,350,471,226,269,120,199,2,0,0,1,0,0,2,2,348,467,225,268,119,197,2,0,0,0,0,0,2,2,2,4,1,1,1,2,0,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,3,16,631,245,386,141,189,103,193,0,1,0,1,0,0,1,2,243,386,139,189,103,193,0,1,0,1,0,0,1,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,3,17,461,175,286,107,158,68,128,0,0,0,0,0,0,0,0,174,281,106,156,68,125,0,0,0,0,0,0,0,0,1,5,1,2,0,3,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,3,18,435,111,324,60,173,51,150,0,0,0,0,0,1,0,0,111,323,60,172,51,150,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,3,99,22203,10438,11765,5177,5371,5192,6302,11,8,17,22,1,2,40,60,10310,11639,5081,5299,5164,6258,11,8,15,20,1,1,38,53,128,126,96,72,28,44,0,0,2,2,0,1,2,7 -050,01,091,Alabama,Marengo County,4,0,303,159,144,69,61,86,80,0,0,2,0,0,0,2,3,157,141,67,58,86,80,0,0,2,0,0,0,2,3,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,4,1,1184,600,584,266,243,327,333,0,0,3,1,0,0,4,7,584,569,253,230,325,331,0,0,2,1,0,0,4,7,16,15,13,13,2,2,0,0,1,0,0,0,0,0 -050,01,091,Alabama,Marengo County,4,2,1671,812,859,330,292,477,559,0,1,2,5,0,0,3,2,801,847,324,285,473,554,0,1,2,5,0,0,2,2,11,12,6,7,4,5,0,0,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,4,3,1950,1024,926,347,319,669,599,3,2,1,1,0,0,4,5,1009,912,336,312,665,593,3,2,1,1,0,0,4,4,15,14,11,7,4,6,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,4,4,1693,849,844,338,318,505,521,2,0,0,0,0,0,4,5,833,836,326,314,501,518,2,0,0,0,0,0,4,4,16,8,12,4,4,3,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,4,5,1236,594,642,267,263,325,371,0,0,0,1,0,0,2,7,579,630,253,255,324,369,0,0,0,1,0,0,2,5,15,12,14,8,1,2,0,0,0,0,0,0,0,2 -050,01,091,Alabama,Marengo County,4,6,1138,523,615,248,283,270,327,0,0,1,1,0,0,4,4,513,599,238,268,270,327,0,0,1,1,0,0,4,3,10,16,10,15,0,0,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,4,7,1276,555,721,271,295,278,423,1,0,5,2,0,0,0,1,542,710,259,285,277,422,1,0,5,2,0,0,0,1,13,11,12,10,1,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,4,8,1483,680,803,381,358,294,435,2,2,1,5,0,1,2,2,668,792,371,354,293,429,2,2,0,5,0,0,2,2,12,11,10,4,1,6,0,0,1,0,0,1,0,0 -050,01,091,Alabama,Marengo County,4,9,1613,742,871,405,414,332,451,0,1,1,1,0,0,4,4,736,865,400,412,331,448,0,1,1,1,0,0,4,3,6,6,5,2,1,3,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,4,10,1549,742,807,382,365,359,437,0,1,0,1,0,0,1,3,735,803,376,363,358,435,0,1,0,1,0,0,1,3,7,4,6,2,1,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,4,11,1457,704,753,414,369,284,381,1,0,0,1,2,0,3,2,696,748,410,367,280,378,1,0,0,1,2,0,3,2,8,5,4,2,4,3,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,4,12,1282,606,676,332,338,272,333,0,1,0,0,0,0,2,4,604,672,330,335,272,332,0,1,0,0,0,0,2,4,2,4,2,3,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,4,13,1061,513,548,289,338,222,206,1,0,1,0,0,0,0,4,511,546,287,337,222,205,1,0,1,0,0,0,0,4,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,4,14,964,434,530,282,321,150,207,0,0,0,0,0,0,2,2,431,527,281,319,148,206,0,0,0,0,0,0,2,2,3,3,1,2,2,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,4,15,805,330,475,211,278,115,194,2,0,0,1,0,0,2,2,328,470,210,276,114,192,2,0,0,0,0,0,2,2,2,5,1,2,1,2,0,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,4,16,665,264,401,173,207,90,190,0,1,0,1,0,0,1,2,262,401,171,207,90,190,0,1,0,1,0,0,1,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,4,17,463,162,301,97,165,65,136,0,0,0,0,0,0,0,0,161,297,96,163,65,134,0,0,0,0,0,0,0,0,1,4,1,2,0,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,4,18,424,106,318,62,167,44,150,0,0,0,0,0,1,0,0,106,317,62,166,44,150,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,4,99,22217,10399,11818,5164,5394,5164,6333,12,9,17,21,2,2,40,59,10256,11682,5050,5306,5138,6293,12,9,15,20,2,1,39,53,143,136,114,88,26,40,0,0,2,1,0,1,1,6 -050,01,091,Alabama,Marengo County,5,0,272,134,138,62,66,69,69,0,0,1,0,0,0,2,3,131,134,59,62,69,69,0,0,1,0,0,0,2,3,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,5,1,1184,624,560,272,253,344,297,0,0,3,2,1,0,4,8,610,547,262,242,342,295,0,0,2,2,0,0,4,8,14,13,10,11,2,2,0,0,1,0,1,0,0,0 -050,01,091,Alabama,Marengo County,5,2,1611,780,831,315,269,455,552,1,1,2,7,1,0,6,2,768,818,309,260,451,548,1,1,2,7,0,0,5,2,12,13,6,9,4,4,0,0,0,0,1,0,1,0 -050,01,091,Alabama,Marengo County,5,3,1953,1016,937,354,320,654,608,3,2,1,1,0,1,4,5,1003,922,344,313,651,602,3,2,1,1,0,0,4,4,13,15,10,7,3,6,0,0,0,0,0,1,0,1 -050,01,091,Alabama,Marengo County,5,4,1673,859,814,317,301,537,508,2,0,0,0,0,0,3,5,843,805,305,296,533,505,2,0,0,0,0,0,3,4,16,9,12,5,4,3,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,5,5,1256,601,655,267,256,331,390,0,0,1,2,0,0,2,7,583,645,251,250,329,388,0,0,1,2,0,0,2,5,18,10,16,6,2,2,0,0,0,0,0,0,0,2 -050,01,091,Alabama,Marengo County,5,6,1093,514,579,258,283,252,291,0,0,1,1,0,0,3,4,502,558,246,263,252,291,0,0,1,1,0,0,3,3,12,21,12,20,0,0,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,5,7,1285,584,701,277,291,301,407,1,0,5,2,0,0,0,1,573,689,267,282,300,404,1,0,5,2,0,0,0,1,11,12,10,9,1,3,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,5,8,1382,602,780,325,335,273,434,1,2,1,5,0,1,2,3,591,770,315,331,272,429,1,2,1,5,0,0,2,3,11,10,10,4,1,5,0,0,0,0,0,1,0,0 -050,01,091,Alabama,Marengo County,5,9,1578,723,855,407,413,311,434,0,1,1,2,0,0,4,5,716,848,401,410,310,431,0,1,1,2,0,0,4,4,7,7,6,3,1,3,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,5,10,1576,751,825,378,352,372,468,0,1,0,1,0,0,1,3,745,821,373,350,371,466,0,1,0,1,0,0,1,3,6,4,5,2,1,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,5,11,1491,722,769,411,373,306,392,1,0,0,2,1,0,3,2,714,761,407,368,302,389,1,0,0,2,1,0,3,2,8,8,4,5,4,3,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,5,12,1301,604,697,337,352,265,340,0,1,0,0,1,0,1,4,600,693,335,349,264,339,0,1,0,0,0,0,1,4,4,4,2,3,1,1,0,0,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,5,13,1058,515,543,283,327,228,212,2,0,1,0,0,0,1,4,513,540,281,325,228,211,2,0,1,0,0,0,1,4,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,5,14,942,426,516,273,311,151,203,0,0,0,0,0,0,2,2,423,513,272,309,149,202,0,0,0,0,0,0,2,2,3,3,1,2,2,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,5,15,800,344,456,215,286,126,167,2,0,0,1,0,0,1,2,340,451,214,284,123,165,2,0,0,0,0,0,1,2,4,5,1,2,3,2,0,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,5,16,693,275,418,177,214,96,200,0,1,0,1,0,0,2,2,273,418,175,214,96,200,0,1,0,1,0,0,2,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,5,17,453,156,297,97,150,59,147,0,0,0,0,0,0,0,0,155,293,96,148,59,145,0,0,0,0,0,0,0,0,1,4,1,2,0,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,5,18,424,114,310,68,168,46,141,0,0,0,0,0,1,0,0,114,309,68,167,46,141,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,5,99,22025,10344,11681,5093,5320,5176,6260,13,9,17,27,4,3,41,62,10197,11535,4980,5223,5147,6220,13,9,16,26,1,1,40,56,147,146,113,97,29,40,0,0,1,1,3,2,1,6 -050,01,091,Alabama,Marengo County,6,0,266,125,141,59,66,63,72,0,0,1,0,0,0,2,3,123,139,57,64,63,72,0,0,1,0,0,0,2,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,6,1,1168,605,563,257,253,341,296,0,0,3,2,1,0,3,12,590,548,246,240,339,294,0,0,2,2,0,0,3,12,15,15,11,13,2,2,0,0,1,0,1,0,0,0 -050,01,091,Alabama,Marengo County,6,2,1500,730,770,304,252,418,507,1,2,2,6,1,1,4,2,718,756,297,242,414,503,1,2,2,6,0,1,4,2,12,14,7,10,4,4,0,0,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,6,3,1937,980,957,338,324,632,624,3,2,1,1,1,2,5,4,968,942,329,316,629,618,3,2,1,1,1,1,5,4,12,15,9,8,3,6,0,0,0,0,0,1,0,0 -050,01,091,Alabama,Marengo County,6,4,1674,875,799,312,286,558,506,2,0,0,1,0,0,3,6,862,790,302,281,555,504,2,0,0,0,0,0,3,5,13,9,10,5,3,2,0,0,0,1,0,0,0,1 -050,01,091,Alabama,Marengo County,6,5,1228,582,646,246,256,333,381,0,0,1,2,0,0,2,7,566,636,233,250,330,379,0,0,1,2,0,0,2,5,16,10,13,6,3,2,0,0,0,0,0,0,0,2 -050,01,091,Alabama,Marengo County,6,6,1024,468,556,238,265,225,285,0,0,1,1,0,1,4,4,455,534,226,245,225,285,0,0,1,1,0,0,3,3,13,22,12,20,0,0,0,0,0,0,0,1,1,1 -050,01,091,Alabama,Marengo County,6,7,1288,587,701,275,289,306,408,1,1,5,2,0,0,0,1,576,688,265,278,305,406,1,1,5,2,0,0,0,1,11,13,10,11,1,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,6,8,1305,562,743,296,315,261,416,1,2,2,5,0,1,2,4,549,733,285,311,260,412,1,2,1,5,0,0,2,3,13,10,11,4,1,4,0,0,1,0,0,1,0,1 -050,01,091,Alabama,Marengo County,6,9,1545,730,815,411,397,311,410,0,1,1,2,0,0,7,5,722,808,404,395,310,406,0,1,1,2,0,0,7,4,8,7,7,2,1,4,0,0,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,6,10,1597,762,835,384,364,375,464,0,2,0,1,0,0,3,4,756,831,380,362,373,462,0,2,0,1,0,0,3,4,6,4,4,2,2,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,6,11,1511,733,778,407,367,322,408,1,0,0,2,0,0,3,1,724,770,402,363,318,404,1,0,0,2,0,0,3,1,9,8,5,4,4,4,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,6,12,1340,629,711,334,353,293,354,0,1,0,0,0,0,2,3,626,707,332,350,292,353,0,1,0,0,0,0,2,3,3,4,2,3,1,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,6,13,1128,548,580,314,333,230,243,2,0,1,0,0,0,1,4,546,577,312,331,230,242,2,0,1,0,0,0,1,4,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,6,14,920,425,495,265,305,157,188,0,0,0,0,0,0,3,2,423,491,264,303,156,186,0,0,0,0,0,0,3,2,2,4,1,2,1,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,6,15,793,338,455,222,285,114,167,1,0,0,1,0,0,1,2,334,450,221,283,111,165,1,0,0,0,0,0,1,2,4,5,1,2,3,2,0,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,6,16,659,251,408,159,207,90,196,0,1,0,1,0,0,2,3,249,408,157,207,90,196,0,1,0,1,0,0,2,3,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,6,17,477,162,315,107,167,55,148,0,0,0,0,0,0,0,0,161,311,106,165,55,146,0,0,0,0,0,0,0,0,1,4,1,2,0,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,6,18,417,111,306,69,170,42,136,0,0,0,0,0,0,0,0,111,305,69,169,42,136,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,6,99,21777,10203,11574,4997,5254,5126,6209,12,12,18,27,3,5,47,67,10059,11424,4887,5155,5097,6169,12,12,16,25,1,2,46,61,144,150,110,99,29,40,0,0,2,2,2,3,1,6 -050,01,091,Alabama,Marengo County,7,0,252,138,114,61,50,73,63,0,0,1,0,0,0,3,1,136,110,59,46,73,63,0,0,1,0,0,0,3,1,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,7,1,1158,591,567,261,253,322,299,0,0,2,2,1,1,5,12,577,548,249,237,321,298,0,0,2,2,0,0,5,11,14,19,12,16,1,1,0,0,0,0,1,1,0,1 -050,01,091,Alabama,Marengo County,7,2,1458,709,749,284,273,412,464,1,2,1,4,1,1,10,5,698,734,276,262,410,461,1,2,1,4,0,0,10,5,11,15,8,11,2,3,0,0,0,0,1,1,0,0 -050,01,091,Alabama,Marengo County,7,3,1832,913,919,335,320,566,590,2,2,2,0,1,2,7,5,900,901,326,309,563,584,2,2,2,0,0,1,7,5,13,18,9,11,3,6,0,0,0,0,1,1,0,0 -050,01,091,Alabama,Marengo County,7,4,1681,885,796,298,285,581,505,3,0,0,1,0,0,3,5,873,788,289,279,578,503,3,0,0,1,0,0,3,5,12,8,9,6,3,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,7,5,1201,585,616,245,231,335,380,1,0,1,2,1,0,2,3,567,608,231,225,333,378,1,0,1,2,0,0,1,3,18,8,14,6,2,2,0,0,0,0,1,0,1,0 -050,01,091,Alabama,Marengo County,7,6,999,463,536,234,249,225,279,1,1,0,1,1,2,2,4,440,510,214,229,225,277,0,0,0,1,0,1,1,2,23,26,20,20,0,2,1,1,0,0,1,1,1,2 -050,01,091,Alabama,Marengo County,7,7,1228,550,678,271,286,275,384,2,3,2,1,0,1,0,3,536,665,257,277,275,381,2,3,2,1,0,0,0,3,14,13,14,9,0,3,0,0,0,0,0,1,0,0 -050,01,091,Alabama,Marengo County,7,8,1280,538,742,282,296,252,436,1,1,3,5,0,2,0,2,526,728,272,290,251,431,1,1,2,5,0,0,0,1,12,14,10,6,1,5,0,0,1,0,0,2,0,1 -050,01,091,Alabama,Marengo County,7,9,1548,730,818,395,409,323,402,2,2,1,2,1,0,8,3,720,811,388,405,321,399,2,2,1,2,0,0,8,3,10,7,7,4,2,3,0,0,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,7,10,1546,739,807,375,349,357,451,0,1,2,4,2,0,3,2,733,801,371,346,357,448,0,1,2,4,0,0,3,2,6,6,4,3,0,3,0,0,0,0,2,0,0,0 -050,01,091,Alabama,Marengo County,7,11,1554,761,793,407,369,350,421,1,0,2,2,0,0,1,1,753,787,402,366,347,418,1,0,2,2,0,0,1,1,8,6,5,3,3,3,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,7,12,1413,674,739,367,354,303,376,0,0,1,1,1,0,2,8,668,739,363,354,302,376,0,0,1,1,0,0,2,8,6,0,4,0,1,0,0,0,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,7,13,1120,553,567,313,319,235,246,2,1,0,0,1,0,2,1,550,563,311,317,234,244,2,1,0,0,1,0,2,1,3,4,2,2,1,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,7,14,916,401,515,241,320,156,192,0,0,0,1,0,0,4,2,397,511,240,319,154,189,0,0,0,1,0,0,3,2,4,4,1,1,2,3,0,0,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,7,15,821,353,468,228,287,123,176,0,1,0,1,0,0,2,3,352,465,228,285,122,175,0,1,0,1,0,0,2,3,1,3,0,2,1,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,7,16,670,279,391,179,210,97,179,1,0,1,0,0,0,1,2,279,390,179,209,97,179,1,0,1,0,0,0,1,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,7,17,459,153,306,90,160,63,146,0,0,0,0,0,0,0,0,152,303,89,158,63,145,0,0,0,0,0,0,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,7,18,433,121,312,80,173,41,137,0,0,0,0,0,0,0,2,120,310,79,172,41,136,0,0,0,0,0,0,0,2,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,7,99,21569,10136,11433,4946,5193,5089,6126,17,14,19,27,10,9,55,64,9977,11272,4823,5085,5067,6085,16,13,18,27,1,2,52,60,159,161,123,108,22,41,1,1,1,0,9,7,3,4 -050,01,091,Alabama,Marengo County,8,0,241,115,126,53,66,58,59,0,0,1,0,0,0,3,1,113,124,51,64,58,59,0,0,1,0,0,0,3,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,8,1,1124,589,535,253,218,323,297,2,2,1,2,2,2,8,14,574,519,242,209,321,295,2,1,1,2,0,0,8,12,15,16,11,9,2,2,0,1,0,0,2,2,0,2 -050,01,091,Alabama,Marengo County,8,2,1434,724,710,305,273,409,426,1,2,1,3,1,1,7,5,714,697,298,264,407,423,1,2,1,3,0,0,7,5,10,13,7,9,2,3,0,0,0,0,1,1,0,0 -050,01,091,Alabama,Marengo County,8,3,1787,885,902,333,304,539,587,0,3,2,0,2,1,9,7,871,888,323,296,537,582,0,3,2,0,1,0,8,7,14,14,10,8,2,5,0,0,0,0,1,1,1,0 -050,01,091,Alabama,Marengo County,8,4,1733,914,819,301,277,606,534,2,0,0,1,1,1,4,6,902,810,291,271,604,532,2,0,0,1,1,0,4,6,12,9,10,6,2,2,0,0,0,0,0,1,0,0 -050,01,091,Alabama,Marengo County,8,5,1176,563,613,233,249,324,359,1,0,1,2,2,0,2,3,545,605,220,243,322,358,1,0,1,2,0,0,1,2,18,8,13,6,2,1,0,0,0,0,2,0,1,1 -050,01,091,Alabama,Marengo County,8,6,1023,461,562,241,257,214,297,1,1,2,1,1,2,2,4,432,537,216,237,213,295,0,0,2,1,0,1,1,3,29,25,25,20,1,2,1,1,0,0,1,1,1,1 -050,01,091,Alabama,Marengo County,8,7,1154,542,612,258,264,280,339,0,4,2,1,1,1,1,3,531,598,248,253,280,337,0,4,2,1,0,0,1,3,11,14,10,11,0,2,0,0,0,0,1,1,0,0 -050,01,091,Alabama,Marengo County,8,8,1268,508,760,252,296,252,453,1,1,2,5,1,2,0,3,496,746,242,289,251,449,1,1,2,5,0,0,0,2,12,14,10,7,1,4,0,0,0,0,1,2,0,1 -050,01,091,Alabama,Marengo County,8,9,1531,729,802,393,374,326,423,2,1,1,2,1,0,6,2,717,794,384,370,324,419,2,1,1,2,0,0,6,2,12,8,9,4,2,4,0,0,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,8,10,1544,717,827,376,370,333,450,0,1,3,4,2,0,3,2,709,823,372,367,331,449,0,1,3,4,0,0,3,2,8,4,4,3,2,1,0,0,0,0,2,0,0,0 -050,01,091,Alabama,Marengo County,8,11,1570,777,793,386,362,384,427,0,0,2,2,1,0,4,2,769,787,382,359,381,424,0,0,2,2,0,0,4,2,8,6,4,3,3,3,0,0,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,8,12,1463,705,758,394,364,308,386,0,0,1,1,0,0,2,7,700,757,390,364,307,385,0,0,1,1,0,0,2,7,5,1,4,0,1,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,8,13,1130,544,586,310,326,229,257,2,1,0,0,1,0,2,2,540,581,307,324,228,254,2,1,0,0,1,0,2,2,4,5,3,2,1,3,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,8,14,950,446,504,257,311,186,191,1,0,1,1,0,0,1,1,442,502,254,311,185,189,1,0,1,1,0,0,1,1,4,2,3,0,1,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,8,15,840,361,479,226,284,134,190,0,2,0,1,0,0,1,2,360,476,226,282,133,190,0,1,0,1,0,0,1,2,1,3,0,2,1,0,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,8,16,664,264,400,190,229,73,169,0,0,1,0,0,0,0,2,263,398,189,227,73,169,0,0,1,0,0,0,0,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,8,17,468,168,300,91,158,77,142,0,0,0,0,0,0,0,0,168,297,91,156,77,141,0,0,0,0,0,0,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,8,18,431,120,311,76,164,44,145,0,0,0,0,0,0,0,2,119,309,75,163,44,144,0,0,0,0,0,0,0,2,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,8,99,21531,10132,11399,4928,5146,5099,6131,13,18,21,26,16,10,55,68,9965,11248,4801,5049,5076,6094,12,15,21,26,3,1,52,63,167,151,127,97,23,37,1,3,0,0,13,9,3,5 -050,01,091,Alabama,Marengo County,9,0,238,113,125,55,55,54,69,0,0,1,0,0,0,3,1,111,119,53,50,54,68,0,0,1,0,0,0,3,1,2,6,2,5,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,9,1,1105,593,512,251,223,333,269,2,2,1,2,2,2,4,14,579,493,241,211,331,267,2,1,1,2,0,0,4,12,14,19,10,12,2,2,0,1,0,0,2,2,0,2 -050,01,091,Alabama,Marengo County,9,2,1444,718,726,317,296,388,417,2,3,1,3,1,2,9,5,700,703,302,278,386,414,2,2,1,3,0,1,9,5,18,23,15,18,2,3,0,1,0,0,1,1,0,0 -050,01,091,Alabama,Marengo County,9,3,1716,861,855,336,309,512,534,0,3,2,0,2,2,9,7,850,838,329,299,510,528,0,3,2,0,1,1,8,7,11,17,7,10,2,6,0,0,0,0,1,1,1,0 -050,01,091,Alabama,Marengo County,9,4,1722,921,801,312,276,601,516,2,0,0,1,1,1,5,7,911,792,305,270,599,514,2,0,0,1,1,0,4,7,10,9,7,6,2,2,0,0,0,0,0,1,1,0 -050,01,091,Alabama,Marengo County,9,5,1177,566,611,227,242,332,364,1,0,1,2,2,0,3,3,541,603,208,236,329,363,1,0,1,2,0,0,2,2,25,8,19,6,3,1,0,0,0,0,2,0,1,1 -050,01,091,Alabama,Marengo County,9,6,1056,463,593,236,261,220,324,1,1,2,1,1,2,3,4,441,569,219,242,218,322,0,0,2,1,0,1,2,3,22,24,17,19,2,2,1,1,0,0,1,1,1,1 -050,01,091,Alabama,Marengo County,9,7,1109,509,600,232,273,273,318,1,4,2,1,0,1,1,3,503,583,226,260,273,315,1,4,2,1,0,0,1,3,6,17,6,13,0,3,0,0,0,0,0,1,0,0 -050,01,091,Alabama,Marengo County,9,8,1253,490,763,244,296,242,456,1,1,2,5,1,2,0,3,479,751,236,290,240,453,1,1,2,5,0,0,0,2,11,12,8,6,2,3,0,0,0,0,1,2,0,1 -050,01,091,Alabama,Marengo County,9,9,1518,716,802,400,356,306,440,2,1,1,2,1,0,6,3,707,796,394,353,304,437,2,1,1,2,0,0,6,3,9,6,6,3,2,3,0,0,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,9,10,1551,722,829,366,382,348,440,0,1,3,4,2,0,3,2,714,824,362,378,346,439,0,1,3,4,0,0,3,2,8,5,4,4,2,1,0,0,0,0,2,0,0,0 -050,01,091,Alabama,Marengo County,9,11,1595,766,829,371,352,389,473,0,0,2,2,0,0,4,2,758,822,365,348,387,470,0,0,2,2,0,0,4,2,8,7,6,4,2,3,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,9,12,1417,677,740,386,363,288,367,0,0,1,1,0,2,2,7,672,739,382,363,287,366,0,0,1,1,0,2,2,7,5,1,4,0,1,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,9,13,1247,596,651,332,341,259,307,2,1,0,0,1,0,2,2,592,646,329,339,258,304,2,1,0,0,1,0,2,2,4,5,3,2,1,3,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,9,14,959,457,502,250,308,203,192,1,0,1,1,0,0,2,1,452,500,247,308,202,190,1,0,1,1,0,0,1,1,5,2,3,0,1,2,0,0,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,9,15,860,387,473,258,290,127,177,0,2,0,1,0,0,2,3,386,470,258,288,126,177,0,1,0,1,0,0,2,3,1,3,0,2,1,0,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,9,16,631,247,384,176,226,69,156,1,0,1,0,0,0,0,2,246,382,175,224,69,156,1,0,1,0,0,0,0,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,9,17,460,164,296,114,167,50,129,0,0,0,0,0,0,0,0,163,294,113,166,50,128,0,0,0,0,0,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,9,18,417,109,308,68,168,41,138,0,0,0,0,0,0,0,2,108,306,67,167,41,137,0,0,0,0,0,0,0,2,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,9,99,21475,10075,11400,4931,5184,5035,6086,16,19,21,26,14,14,58,71,9913,11230,4811,5070,5010,6048,15,15,21,26,3,5,53,66,162,170,120,114,25,38,1,4,0,0,11,9,5,5 -050,01,091,Alabama,Marengo County,10,0,246,112,134,54,60,54,73,0,0,0,0,0,0,4,1,109,123,51,50,54,72,0,0,0,0,0,0,4,1,3,11,3,10,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,10,1,1095,559,536,242,214,305,301,2,2,1,3,3,2,6,14,546,523,234,208,303,299,2,1,1,3,0,0,6,12,13,13,8,6,2,2,0,1,0,0,3,2,0,2 -050,01,091,Alabama,Marengo County,10,2,1416,730,686,321,296,393,376,2,3,1,4,3,2,10,5,718,664,313,278,391,374,2,2,1,4,1,1,10,5,12,22,8,18,2,2,0,1,0,0,2,1,0,0 -050,01,091,Alabama,Marengo County,10,3,1598,789,809,319,287,456,509,0,3,2,0,3,3,9,7,778,792,312,277,454,504,0,3,2,0,2,1,8,7,11,17,7,10,2,5,0,0,0,0,1,2,1,0 -050,01,091,Alabama,Marengo County,10,4,1739,895,844,298,300,590,535,2,0,0,1,1,1,4,7,887,834,293,293,588,533,2,0,0,1,1,0,3,7,8,10,5,7,2,2,0,0,0,0,0,1,1,0 -050,01,091,Alabama,Marengo County,10,5,1135,548,587,221,229,319,352,1,0,2,3,2,0,3,3,528,575,207,219,316,351,1,0,2,3,0,0,2,2,20,12,14,10,3,1,0,0,0,0,2,0,1,1 -050,01,091,Alabama,Marengo County,10,6,1099,491,608,242,254,242,346,1,1,2,1,1,2,3,4,468,587,224,238,240,344,0,0,2,1,0,1,2,3,23,21,18,16,2,2,1,1,0,0,1,1,1,1 -050,01,091,Alabama,Marengo County,10,7,1039,481,558,229,275,246,274,1,4,2,1,1,1,2,3,470,537,219,258,246,271,1,4,2,1,0,0,2,3,11,21,10,17,0,3,0,0,0,0,1,1,0,0 -050,01,091,Alabama,Marengo County,10,8,1282,535,747,275,287,256,448,0,1,3,5,1,2,0,4,523,733,266,278,254,446,0,1,3,5,0,0,0,3,12,14,9,9,2,2,0,0,0,0,1,2,0,1 -050,01,091,Alabama,Marengo County,10,9,1440,666,774,341,347,315,419,2,1,1,3,1,0,6,4,660,766,337,343,314,415,2,1,1,3,0,0,6,4,6,8,4,4,1,4,0,0,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,10,10,1491,689,802,367,368,314,428,0,1,3,4,2,0,3,1,682,797,364,364,312,427,0,1,3,4,0,0,3,1,7,5,3,4,2,1,0,0,0,0,2,0,0,0 -050,01,091,Alabama,Marengo County,10,11,1633,797,836,378,323,412,508,0,0,2,3,1,0,4,2,790,829,373,318,411,506,0,0,2,3,0,0,4,2,7,7,5,5,1,2,0,0,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,10,12,1447,703,744,376,360,323,376,1,0,1,1,0,1,2,6,696,743,372,360,321,375,0,0,1,1,0,1,2,6,7,1,4,0,2,1,1,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,10,13,1269,592,677,318,352,267,322,3,1,0,0,1,0,3,2,588,672,315,350,266,319,3,1,0,0,1,0,3,2,4,5,3,2,1,3,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,10,14,981,461,520,247,312,210,206,1,0,1,1,0,0,2,1,457,517,244,312,209,203,1,0,1,1,0,0,2,1,4,3,3,0,1,3,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,10,15,847,390,457,254,271,134,180,0,2,0,1,0,0,2,3,389,454,254,269,133,180,0,1,0,1,0,0,2,3,1,3,0,2,1,0,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,10,16,660,260,400,183,245,74,153,1,0,1,0,0,0,1,2,259,398,182,243,74,153,1,0,1,0,0,0,1,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,10,17,476,176,300,107,152,69,148,0,0,0,0,0,0,0,0,175,297,106,150,69,147,0,0,0,0,0,0,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,10,18,438,112,326,75,163,37,161,0,0,0,0,0,0,0,2,111,324,74,162,37,160,0,0,0,0,0,0,0,2,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,10,99,21331,9986,11345,4847,5095,5016,6115,17,19,22,31,20,14,64,71,9834,11165,4740,4970,4992,6079,15,15,22,31,5,4,60,66,152,180,107,125,24,36,2,4,0,0,15,10,4,5 -050,01,091,Alabama,Marengo County,11,0,248,112,136,53,69,55,66,0,0,0,0,0,0,4,1,108,127,49,61,55,65,0,0,0,0,0,0,4,1,4,9,4,8,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,11,1,1076,547,529,242,208,290,298,2,2,1,3,3,2,9,16,531,507,231,194,288,295,2,1,1,3,0,0,9,14,16,22,11,14,2,3,0,1,0,0,3,2,0,2 -050,01,091,Alabama,Marengo County,11,2,1434,737,697,329,305,393,379,2,3,1,3,3,2,9,5,721,672,317,284,391,377,2,2,1,3,1,1,9,5,16,25,12,21,2,2,0,1,0,0,2,1,0,0 -050,01,091,Alabama,Marengo County,11,3,1523,757,766,305,292,437,460,0,4,2,0,3,3,10,7,744,743,295,276,436,455,0,4,2,0,2,1,9,7,13,23,10,16,1,5,0,0,0,0,1,2,1,0 -050,01,091,Alabama,Marengo County,11,4,1720,884,836,302,297,574,530,3,0,0,1,1,1,4,7,875,826,296,290,572,528,3,0,0,1,1,0,3,7,9,10,6,7,2,2,0,0,0,0,0,1,1,0 -050,01,091,Alabama,Marengo County,11,5,1168,588,580,234,240,346,334,1,0,2,3,2,0,3,3,565,566,216,228,344,333,1,0,2,3,0,0,2,2,23,14,18,12,2,1,0,0,0,0,2,0,1,1 -050,01,091,Alabama,Marengo County,11,6,1103,489,614,243,257,239,349,1,1,2,1,1,2,3,4,460,588,219,236,237,347,0,0,2,1,0,1,2,3,29,26,24,21,2,2,1,1,0,0,1,1,1,1 -050,01,091,Alabama,Marengo County,11,7,1049,481,568,235,253,240,306,1,4,2,1,1,1,2,3,466,550,221,239,240,303,1,4,2,1,0,0,2,3,15,18,14,14,0,3,0,0,0,0,1,1,0,0 -050,01,091,Alabama,Marengo County,11,8,1270,532,738,273,294,255,432,0,1,3,5,1,2,0,4,520,723,264,284,253,430,0,1,3,5,0,0,0,3,12,15,9,10,2,2,0,0,0,0,1,2,0,1 -050,01,091,Alabama,Marengo County,11,9,1350,625,725,304,312,311,405,2,1,1,3,1,0,6,4,620,717,301,307,310,402,2,1,1,3,0,0,6,4,5,8,3,5,1,3,0,0,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,11,10,1463,704,759,368,362,329,391,0,1,3,4,1,0,3,1,697,754,364,358,327,390,0,1,3,4,0,0,3,1,7,5,4,4,2,1,0,0,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,11,11,1629,778,851,361,328,410,517,0,1,2,3,1,0,4,2,771,845,356,325,409,515,0,0,2,3,0,0,4,2,7,6,5,3,1,2,0,1,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,11,12,1444,706,738,366,344,335,386,1,0,1,1,1,1,2,6,696,737,360,344,333,385,0,0,1,1,0,1,2,6,10,1,6,0,2,1,1,0,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,11,13,1298,607,691,319,360,281,328,3,1,0,0,1,0,3,2,603,685,316,357,280,325,3,1,0,0,1,0,3,2,4,6,3,3,1,3,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,11,14,991,470,521,264,308,202,211,1,0,1,1,0,0,2,1,466,518,261,308,201,208,1,0,1,1,0,0,2,1,4,3,3,0,1,3,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,11,15,829,399,430,259,264,138,160,0,2,0,1,0,0,2,3,398,427,259,262,137,160,0,1,0,1,0,0,2,3,1,3,0,2,1,0,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,11,16,684,294,390,199,247,92,141,1,0,1,0,0,0,1,2,293,388,198,245,92,141,1,0,1,0,0,0,1,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,11,17,431,148,283,105,162,43,121,0,0,0,0,0,0,0,0,147,280,104,160,43,120,0,0,0,0,0,0,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,11,18,460,132,328,88,173,44,153,0,0,0,0,0,0,0,2,131,326,87,172,44,152,0,0,0,0,0,0,0,2,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,11,99,21170,9990,11180,4849,5075,5014,5967,18,21,22,30,20,14,67,73,9812,10979,4714,4930,4992,5931,16,16,22,30,5,4,63,68,178,201,135,145,22,36,2,5,0,0,15,10,4,5 -050,01,091,Alabama,Marengo County,12,0,226,107,119,44,54,59,64,0,0,0,0,0,0,4,1,105,114,42,50,59,63,0,0,0,0,0,0,4,1,2,5,2,4,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,12,1,1081,533,548,225,210,296,315,2,2,1,3,3,2,6,16,516,527,213,197,294,312,2,1,1,3,0,0,6,14,17,21,12,13,2,3,0,1,0,0,3,2,0,2 -050,01,091,Alabama,Marengo County,12,2,1369,712,657,324,271,371,371,2,3,1,4,3,3,11,5,698,640,314,259,369,369,2,2,1,4,1,1,11,5,14,17,10,12,2,2,0,1,0,0,2,2,0,0 -050,01,091,Alabama,Marengo County,12,3,1484,759,725,302,290,442,420,0,4,2,0,3,3,10,8,748,707,294,279,441,415,0,4,2,0,2,1,9,8,11,18,8,11,1,5,0,0,0,0,1,2,1,0 -050,01,091,Alabama,Marengo County,12,4,1644,830,814,294,289,528,516,3,0,0,1,1,1,4,7,822,804,289,282,526,514,3,0,0,1,1,0,3,7,8,10,5,7,2,2,0,0,0,0,0,1,1,0 -050,01,091,Alabama,Marengo County,12,5,1161,594,567,232,227,354,334,1,0,2,3,2,0,3,3,571,554,215,216,351,333,1,0,2,3,0,0,2,2,23,13,17,11,3,1,0,0,0,0,2,0,1,1 -050,01,091,Alabama,Marengo County,12,6,1078,465,613,233,260,225,345,1,1,2,1,1,2,3,4,439,595,212,247,223,343,0,0,2,1,0,1,2,3,26,18,21,13,2,2,1,1,0,0,1,1,1,1 -050,01,091,Alabama,Marengo County,12,7,1093,502,591,238,260,258,322,1,4,2,1,1,1,2,3,489,571,226,244,258,319,1,4,2,1,0,0,2,3,13,20,12,16,0,3,0,0,0,0,1,1,0,0 -050,01,091,Alabama,Marengo County,12,8,1269,540,729,291,293,245,424,0,1,3,5,1,2,0,4,526,714,280,283,243,422,0,1,3,5,0,0,0,3,14,15,11,10,2,2,0,0,0,0,1,2,0,1 -050,01,091,Alabama,Marengo County,12,9,1352,625,727,292,310,322,409,2,1,1,3,2,0,6,4,617,719,287,305,321,406,2,1,1,3,0,0,6,4,8,8,5,5,1,3,0,0,0,0,2,0,0,0 -050,01,091,Alabama,Marengo County,12,10,1472,697,775,360,374,329,395,0,1,3,4,2,0,3,1,689,770,356,370,327,394,0,1,3,4,0,0,3,1,8,5,4,4,2,1,0,0,0,0,2,0,0,0 -050,01,091,Alabama,Marengo County,12,11,1580,751,829,362,328,382,495,0,1,2,3,1,0,4,2,744,821,357,323,381,493,0,0,2,3,0,0,4,2,7,8,5,5,1,2,0,1,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,12,12,1461,718,743,358,338,355,397,1,0,1,1,1,1,2,6,709,742,353,338,353,396,0,0,1,1,0,1,2,6,9,1,5,0,2,1,1,0,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,12,13,1333,624,709,345,362,272,344,3,1,0,0,1,0,3,2,620,703,342,359,271,341,3,1,0,0,1,0,3,2,4,6,3,3,1,3,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,12,14,1004,481,523,265,303,210,218,1,0,1,1,0,0,4,1,476,520,262,303,209,215,1,0,1,1,0,0,3,1,5,3,3,0,1,3,0,0,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,12,15,818,367,451,233,287,132,158,0,2,0,1,0,0,2,3,366,447,233,284,131,158,0,1,0,1,0,0,2,3,1,4,0,3,1,0,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,12,16,660,285,375,197,238,85,135,1,0,1,0,0,0,1,2,284,373,196,236,85,135,1,0,1,0,0,0,1,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,12,17,476,194,282,128,166,66,116,0,0,0,0,0,0,0,0,193,279,127,164,66,115,0,0,0,0,0,0,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,12,18,466,129,337,88,185,41,150,0,0,0,0,0,0,0,2,128,335,87,184,41,149,0,0,0,0,0,0,0,2,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,12,99,21027,9913,11114,4811,5045,4972,5928,18,21,22,31,22,15,68,74,9740,10935,4685,4923,4949,5892,16,16,22,31,5,4,63,69,173,179,126,122,23,36,2,5,0,0,17,11,5,5 -050,01,091,Alabama,Marengo County,13,0,227,109,118,44,53,60,63,0,0,0,0,1,0,4,2,107,115,42,50,60,63,0,0,0,0,1,0,4,2,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,13,1,1084,540,544,226,207,299,315,2,5,3,2,1,1,9,14,520,525,213,194,295,312,1,3,2,2,0,0,9,14,20,19,13,13,4,3,1,2,1,0,1,1,0,0 -050,01,091,Alabama,Marengo County,13,2,1362,707,655,321,270,366,371,4,4,2,4,1,1,13,5,693,639,311,258,365,369,2,3,2,4,0,0,13,5,14,16,10,12,1,2,2,1,0,0,1,1,0,0 -050,01,091,Alabama,Marengo County,13,3,1473,749,724,298,290,439,417,2,8,2,0,0,1,8,8,741,705,293,279,436,412,2,6,2,0,0,0,8,8,8,19,5,11,3,5,0,2,0,0,0,1,0,0 -050,01,091,Alabama,Marengo County,13,4,1638,831,807,291,286,526,511,5,3,2,0,0,0,7,7,824,801,287,281,523,511,5,2,2,0,0,0,7,7,7,6,4,5,3,0,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,13,5,1167,599,568,234,226,355,335,3,2,2,1,1,0,4,4,574,558,216,217,352,334,2,2,1,1,0,0,3,4,25,10,18,9,3,1,1,0,1,0,1,0,1,0 -050,01,091,Alabama,Marengo County,13,6,1073,469,604,233,257,224,342,4,1,1,1,2,0,5,3,442,591,213,246,222,341,2,0,1,1,0,0,4,3,27,13,20,11,2,1,2,1,0,0,2,0,1,0 -050,01,091,Alabama,Marengo County,13,7,1098,510,588,240,256,263,323,4,5,1,0,1,1,1,3,494,569,228,242,262,320,2,4,1,0,0,0,1,3,16,19,12,14,1,3,2,1,0,0,1,1,0,0 -050,01,091,Alabama,Marengo County,13,8,1264,544,720,287,289,244,420,4,4,6,3,1,0,2,4,530,709,277,280,242,418,3,4,6,3,0,0,2,4,14,11,10,9,2,2,1,0,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,13,9,1341,615,726,290,307,319,406,2,4,1,4,0,0,3,5,608,721,284,303,318,405,2,4,1,4,0,0,3,5,7,5,6,4,1,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,13,10,1461,688,773,353,371,326,394,2,2,2,2,1,0,4,4,683,768,350,367,325,393,2,2,2,2,0,0,4,4,5,5,3,4,1,1,0,0,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,13,11,1572,747,825,360,326,382,492,2,1,1,2,0,0,2,4,740,819,354,321,381,491,2,1,1,2,0,0,2,4,7,6,6,5,1,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,13,12,1462,718,744,359,337,355,398,3,2,0,3,0,0,1,4,711,743,354,337,354,397,2,2,0,3,0,0,1,4,7,1,5,0,1,1,1,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,13,13,1335,622,713,344,364,273,343,2,3,0,0,0,0,3,3,620,710,342,361,273,343,2,3,0,0,0,0,3,3,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,13,14,996,477,519,264,302,210,216,1,0,1,0,0,0,1,1,475,517,262,301,210,215,1,0,1,0,0,0,1,1,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,13,15,820,370,450,236,287,131,159,2,1,0,2,0,0,1,1,369,447,235,284,131,159,2,1,0,2,0,0,1,1,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,13,16,665,288,377,198,235,87,136,2,2,0,3,0,0,1,1,286,376,196,234,87,136,2,2,0,3,0,0,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,13,17,471,192,279,126,161,66,115,0,1,0,0,0,0,0,2,192,277,126,159,66,115,0,1,0,0,0,0,0,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,13,18,466,130,336,89,185,41,150,0,0,0,0,0,0,0,1,129,335,88,184,41,150,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,13,99,20975,9905,11070,4793,5009,4966,5906,44,48,24,27,9,4,69,76,9738,10925,4671,4898,4943,5884,34,40,22,27,1,0,67,76,167,145,122,111,23,22,10,8,2,0,8,4,2,0 -050,01,093,Alabama,Marion County,1,0,369,195,174,184,164,6,5,1,0,0,1,0,1,4,3,192,166,181,157,6,4,1,0,0,1,0,1,4,3,3,8,3,7,0,1,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,1,1,1504,821,683,761,656,38,16,5,1,2,0,1,1,14,9,795,665,738,639,37,16,5,1,2,0,0,1,13,8,26,18,23,17,1,0,0,0,0,0,1,0,1,1 -050,01,093,Alabama,Marion County,1,2,1903,979,924,942,877,27,36,1,4,2,1,0,0,7,6,964,909,928,862,27,36,1,4,1,1,0,0,7,6,15,15,14,15,0,0,0,0,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,1,3,2058,1051,1007,996,958,37,37,3,4,2,2,0,0,13,6,1037,995,982,949,37,37,3,2,2,1,0,0,13,6,14,12,14,9,0,0,0,2,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,1,4,2003,1026,977,963,934,46,32,6,1,5,4,0,0,6,6,1008,958,949,918,45,32,6,1,3,2,0,0,5,5,18,19,14,16,1,0,0,0,2,2,0,0,1,1 -050,01,093,Alabama,Marion County,1,5,1761,903,858,840,824,54,26,2,1,3,3,2,1,2,3,870,843,811,810,54,26,2,1,2,3,0,0,1,3,33,15,29,14,0,0,0,0,1,0,2,1,1,0 -050,01,093,Alabama,Marion County,1,6,2046,1084,962,1002,912,75,39,1,2,2,2,1,1,3,6,1062,948,982,900,75,39,1,2,1,2,0,0,3,5,22,14,20,12,0,0,0,0,1,0,1,1,0,1 -050,01,093,Alabama,Marion County,1,7,2099,1078,1021,1008,975,51,37,6,4,5,2,1,0,7,3,1063,1013,996,968,50,37,6,3,4,2,1,0,6,3,15,8,12,7,1,0,0,1,1,0,0,0,1,0 -050,01,093,Alabama,Marion County,1,8,2349,1253,1096,1161,1053,81,33,7,3,3,4,0,0,1,3,1243,1084,1154,1043,81,33,6,3,1,2,0,0,1,3,10,12,7,10,0,0,1,0,2,2,0,0,0,0 -050,01,093,Alabama,Marion County,1,9,2281,1133,1148,1065,1097,59,32,3,8,1,4,0,0,5,7,1122,1136,1054,1086,59,32,3,8,1,4,0,0,5,6,11,12,11,11,0,0,0,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,1,10,2088,1091,997,1019,952,58,37,7,1,1,1,1,0,5,6,1086,989,1015,944,58,37,7,1,1,1,0,0,5,6,5,8,4,8,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,1,11,2148,1077,1071,1038,1045,31,16,3,4,2,2,0,0,3,4,1072,1065,1034,1039,31,16,3,4,1,2,0,0,3,4,5,6,4,6,0,0,0,0,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,1,12,1918,951,967,894,934,40,21,4,3,2,2,0,0,11,7,943,963,891,930,39,21,4,3,1,2,0,0,8,7,8,4,3,4,1,0,0,0,1,0,0,0,3,0 -050,01,093,Alabama,Marion County,1,13,1704,821,883,794,852,21,24,2,2,1,1,0,0,3,4,820,880,793,849,21,24,2,2,1,1,0,0,3,4,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,1,14,1377,639,738,611,714,22,21,1,0,0,0,0,0,5,3,637,736,609,712,22,21,1,0,0,0,0,0,5,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,1,15,1259,539,720,521,700,13,14,1,2,1,1,0,0,3,3,536,716,519,697,13,14,1,2,0,0,0,0,3,3,3,4,2,3,0,0,0,0,1,1,0,0,0,0 -050,01,093,Alabama,Marion County,1,16,960,381,579,368,561,10,12,1,1,0,0,0,0,2,5,379,576,367,558,10,12,1,1,0,0,0,0,1,5,2,3,1,3,0,0,0,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,1,17,697,226,471,220,458,5,9,1,0,0,0,0,0,0,4,225,470,219,458,5,9,1,0,0,0,0,0,0,3,1,1,1,0,0,0,0,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,1,18,638,179,459,169,448,8,10,0,0,0,0,1,0,1,1,179,459,169,448,8,10,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,1,99,31162,15427,15735,14556,15114,682,457,55,41,32,30,7,4,95,89,15233,15571,14391,14967,678,456,54,38,21,24,2,2,87,84,194,164,165,147,4,1,1,3,11,6,5,2,8,5 -050,01,093,Alabama,Marion County,2,0,371,196,175,185,165,6,5,1,0,0,1,0,1,4,3,193,167,182,158,6,4,1,0,0,1,0,1,4,3,3,8,3,7,0,1,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,2,1,1497,816,681,756,652,38,16,5,1,2,0,1,1,14,11,790,663,733,635,37,16,5,1,2,0,0,1,13,10,26,18,23,17,1,0,0,0,0,0,1,0,1,1 -050,01,093,Alabama,Marion County,2,2,1889,972,917,935,870,27,36,1,4,2,1,0,0,7,6,957,902,921,855,27,36,1,4,1,1,0,0,7,6,15,15,14,15,0,0,0,0,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,2,3,2059,1050,1009,995,960,37,37,3,4,2,2,0,0,13,6,1036,997,981,951,37,37,3,2,2,1,0,0,13,6,14,12,14,9,0,0,0,2,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,2,4,2009,1039,970,977,930,46,29,6,1,5,4,0,0,5,6,1022,951,963,914,45,29,6,1,3,2,0,0,5,5,17,19,14,16,1,0,0,0,2,2,0,0,0,1 -050,01,093,Alabama,Marion County,2,5,1770,909,861,849,830,51,23,2,1,3,3,2,1,2,3,876,846,820,816,51,23,2,1,2,3,0,0,1,3,33,15,29,14,0,0,0,0,1,0,2,1,1,0 -050,01,093,Alabama,Marion County,2,6,2019,1069,950,987,900,75,39,1,2,2,2,1,1,3,6,1047,936,967,888,75,39,1,2,1,2,0,0,3,5,22,14,20,12,0,0,0,0,1,0,1,1,0,1 -050,01,093,Alabama,Marion County,2,7,2088,1074,1014,1004,968,51,37,6,4,5,2,1,0,7,3,1059,1006,992,961,50,37,6,3,4,2,1,0,6,3,15,8,12,7,1,0,0,1,1,0,0,0,1,0 -050,01,093,Alabama,Marion County,2,8,2332,1245,1087,1153,1044,81,33,7,3,3,4,0,0,1,3,1235,1075,1146,1034,81,33,6,3,1,2,0,0,1,3,10,12,7,10,0,0,1,0,2,2,0,0,0,0 -050,01,093,Alabama,Marion County,2,9,2279,1132,1147,1064,1096,59,32,3,8,1,4,0,0,5,7,1121,1135,1053,1085,59,32,3,8,1,4,0,0,5,6,11,12,11,11,0,0,0,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,2,10,2092,1092,1000,1020,955,58,37,7,1,1,1,1,0,5,6,1087,992,1016,947,58,37,7,1,1,1,0,0,5,6,5,8,4,8,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,2,11,2162,1085,1077,1046,1051,31,16,3,4,2,2,0,0,3,4,1080,1071,1042,1045,31,16,3,4,1,2,0,0,3,4,5,6,4,6,0,0,0,0,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,2,12,1925,954,971,897,938,40,21,4,3,2,2,0,0,11,7,946,967,894,934,39,21,4,3,1,2,0,0,8,7,8,4,3,4,1,0,0,0,1,0,0,0,3,0 -050,01,093,Alabama,Marion County,2,13,1704,821,883,794,852,21,24,2,2,1,1,0,0,3,4,820,880,793,849,21,24,2,2,1,1,0,0,3,4,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,2,14,1368,635,733,607,709,22,21,1,0,0,0,0,0,5,3,633,731,605,707,22,21,1,0,0,0,0,0,5,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,2,15,1259,539,720,521,700,13,14,1,2,1,1,0,0,3,3,536,716,519,697,13,14,1,2,0,0,0,0,3,3,3,4,2,3,0,0,0,0,1,1,0,0,0,0 -050,01,093,Alabama,Marion County,2,16,964,383,581,370,563,10,12,1,1,0,0,0,0,2,5,381,578,369,560,10,12,1,1,0,0,0,0,1,5,2,3,1,3,0,0,0,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,2,17,705,229,476,223,463,5,9,1,0,0,0,0,0,0,4,228,475,222,463,5,9,1,0,0,0,0,0,0,3,1,1,1,0,0,0,0,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,2,18,645,179,466,169,455,8,10,0,0,0,0,1,0,1,1,179,466,169,455,8,10,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,2,99,31137,15419,15718,14552,15101,679,451,55,41,32,30,7,4,94,91,15226,15554,14387,14954,675,450,54,38,21,24,2,2,87,86,193,164,165,147,4,1,1,3,11,6,5,2,7,5 -050,01,093,Alabama,Marion County,3,0,331,178,153,167,143,6,5,1,0,0,1,0,1,4,3,176,148,165,139,6,4,1,0,0,1,0,1,4,3,2,5,2,4,0,1,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,3,1,1486,801,685,733,648,43,22,5,1,2,0,1,1,17,13,774,660,709,624,42,22,5,1,2,0,0,1,16,12,27,25,24,24,1,0,0,0,0,0,1,0,1,1 -050,01,093,Alabama,Marion County,3,2,1874,966,908,927,860,27,36,1,4,2,1,0,0,9,7,945,886,907,838,27,36,1,4,1,1,0,0,9,7,21,22,20,22,0,0,0,0,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,3,3,1996,1025,971,978,922,29,38,3,4,2,1,0,0,13,6,1008,959,961,912,29,38,3,2,2,1,0,0,13,6,17,12,17,10,0,0,0,2,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,3,4,1916,998,918,931,878,50,29,6,1,5,4,0,0,6,6,975,901,912,864,49,29,6,1,3,2,0,0,5,5,23,17,19,14,1,0,0,0,2,2,0,0,1,1 -050,01,093,Alabama,Marion County,3,5,1756,899,857,831,831,58,18,3,1,3,3,2,1,2,3,870,844,806,819,58,18,3,1,2,3,0,0,1,3,29,13,25,12,0,0,0,0,1,0,2,1,1,0 -050,01,093,Alabama,Marion County,3,6,1867,988,879,905,836,76,32,1,2,2,2,1,1,3,6,965,869,884,828,76,32,1,2,1,2,0,0,3,5,23,10,21,8,0,0,0,0,1,0,1,1,0,1 -050,01,093,Alabama,Marion County,3,7,2041,1047,994,981,943,49,42,5,4,5,2,1,0,6,3,1024,983,961,933,48,42,5,3,4,2,1,0,5,3,23,11,20,10,1,0,0,1,1,0,0,0,1,0 -050,01,093,Alabama,Marion County,3,8,2313,1237,1076,1142,1030,84,37,7,3,3,3,0,0,1,3,1225,1064,1133,1019,84,37,6,3,1,2,0,0,1,3,12,12,9,11,0,0,1,0,2,1,0,0,0,0 -050,01,093,Alabama,Marion County,3,9,2298,1119,1179,1047,1123,62,37,3,8,1,4,0,0,6,7,1107,1166,1035,1111,62,37,3,8,1,4,0,0,6,6,12,13,12,12,0,0,0,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,3,10,2100,1115,985,1040,952,61,25,7,1,1,1,1,0,5,6,1106,978,1032,945,61,25,7,1,1,1,0,0,5,6,9,7,8,7,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,3,11,2172,1091,1081,1046,1043,36,27,3,5,2,2,1,0,3,4,1082,1075,1039,1037,36,27,3,5,1,2,0,0,3,4,9,6,7,6,0,0,0,0,1,0,1,0,0,0 -050,01,093,Alabama,Marion County,3,12,1940,973,967,913,934,44,22,4,3,2,2,0,0,10,6,966,963,910,930,43,22,4,3,1,2,0,0,8,6,7,4,3,4,1,0,0,0,1,0,0,0,2,0 -050,01,093,Alabama,Marion County,3,13,1697,818,879,787,850,25,22,2,2,1,1,0,0,3,4,816,876,785,847,25,22,2,2,1,1,0,0,3,4,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,3,14,1429,647,782,620,759,20,20,1,0,0,0,0,0,6,3,645,780,618,757,20,20,1,0,0,0,0,0,6,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,3,15,1251,557,694,537,671,15,17,1,2,1,1,0,0,3,3,554,690,535,668,15,17,1,2,0,0,0,0,3,3,3,4,2,3,0,0,0,0,1,1,0,0,0,0 -050,01,093,Alabama,Marion County,3,16,968,384,584,371,564,10,13,1,1,0,0,0,0,2,6,382,582,370,562,10,13,1,1,0,0,0,0,1,6,2,2,1,2,0,0,0,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,3,17,717,245,472,239,458,5,10,1,0,0,0,0,0,0,4,244,471,238,458,5,10,1,0,0,0,0,0,0,3,1,1,1,0,0,0,0,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,3,18,625,173,452,162,440,9,10,0,0,0,0,1,0,1,2,173,452,162,440,9,10,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,3,99,30777,15261,15516,14357,14885,709,462,55,42,32,28,8,4,100,95,15037,15347,14162,14731,705,461,54,39,21,24,2,2,93,90,224,169,195,154,4,1,1,3,11,4,6,2,7,5 -050,01,093,Alabama,Marion County,4,0,368,188,180,174,171,9,5,1,0,0,1,0,0,4,3,183,172,169,164,9,4,1,0,0,1,0,0,4,3,5,8,5,7,0,1,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,4,1,1419,746,673,671,631,50,28,5,1,2,0,1,0,17,13,728,655,656,615,49,28,5,1,2,0,0,0,16,11,18,18,15,16,1,0,0,0,0,0,1,0,1,2 -050,01,093,Alabama,Marion County,4,2,1804,953,851,917,810,25,29,1,4,2,1,0,0,8,7,928,827,893,786,25,29,1,4,1,1,0,0,8,7,25,24,24,24,0,0,0,0,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,4,3,1997,1011,986,956,943,36,29,3,5,2,2,0,0,14,7,994,974,939,934,36,29,3,3,2,1,0,0,14,7,17,12,17,9,0,0,0,2,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,4,4,1898,990,908,930,863,43,33,6,1,5,4,0,0,6,7,972,891,915,849,42,33,6,1,3,2,0,0,6,6,18,17,15,14,1,0,0,0,2,2,0,0,0,1 -050,01,093,Alabama,Marion County,4,5,1765,911,854,844,829,54,16,4,2,3,3,2,1,4,3,880,837,817,813,54,16,4,2,2,3,0,0,3,3,31,17,27,16,0,0,0,0,1,0,2,1,1,0 -050,01,093,Alabama,Marion County,4,6,1694,883,811,805,770,71,29,1,2,2,3,1,1,3,6,851,797,775,758,71,29,1,2,1,3,0,0,3,5,32,14,30,12,0,0,0,0,1,0,1,1,0,1 -050,01,093,Alabama,Marion County,4,7,2004,1033,971,966,930,50,32,6,4,5,2,0,0,6,3,1019,959,954,919,49,32,6,3,4,2,0,0,6,3,14,12,12,11,1,0,0,1,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,4,8,2258,1186,1072,1093,1020,83,43,6,3,3,3,0,0,1,3,1173,1060,1083,1009,83,43,5,3,1,2,0,0,1,3,13,12,10,11,0,0,1,0,2,1,0,0,0,0 -050,01,093,Alabama,Marion County,4,9,2270,1129,1141,1059,1089,60,33,3,8,1,4,0,0,6,7,1110,1130,1040,1078,60,33,3,8,1,4,0,0,6,7,19,11,19,11,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,4,10,2166,1136,1030,1056,987,65,31,7,2,1,2,1,0,6,8,1128,1023,1049,980,65,31,7,2,1,2,0,0,6,8,8,7,7,7,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,4,11,2097,1053,1044,1007,998,39,36,2,3,2,3,0,0,3,4,1046,1037,1001,991,39,36,2,3,1,3,0,0,3,4,7,7,6,7,0,0,0,0,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,4,12,2043,1044,999,986,973,42,15,5,3,2,2,0,0,9,6,1036,995,982,969,41,15,5,3,1,2,0,0,7,6,8,4,4,4,1,0,0,0,1,0,0,0,2,0 -050,01,093,Alabama,Marion County,4,13,1750,832,918,804,887,21,23,2,2,1,1,0,0,4,5,830,915,802,884,21,23,2,2,1,1,0,0,4,5,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,4,14,1464,668,796,644,775,17,18,2,0,0,0,0,0,5,3,666,794,642,773,17,18,2,0,0,0,0,0,5,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,4,15,1254,563,691,540,674,17,12,2,1,1,1,0,0,3,3,560,688,538,672,17,12,2,1,0,0,0,0,3,3,3,3,2,2,0,0,0,0,1,1,0,0,0,0 -050,01,093,Alabama,Marion County,4,16,984,382,602,371,581,8,16,1,1,0,0,0,0,2,4,380,600,370,579,8,16,1,1,0,0,0,0,1,4,2,2,1,2,0,0,0,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,4,17,725,247,478,241,467,5,8,1,0,0,0,0,0,0,3,246,477,240,467,5,8,1,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,4,18,648,180,468,169,452,9,13,0,0,0,0,1,0,1,3,180,468,169,452,9,13,0,0,0,0,1,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,4,99,30608,15135,15473,14233,14850,704,449,58,42,32,32,6,2,102,98,14910,15299,14034,14692,700,448,57,39,21,27,1,0,97,93,225,174,199,158,4,1,1,3,11,5,5,2,5,5 -050,01,093,Alabama,Marion County,5,0,345,175,170,165,159,5,6,1,0,0,1,0,0,4,4,170,162,160,153,5,5,1,0,0,1,0,0,4,3,5,8,5,6,0,1,0,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,5,1,1407,753,654,682,615,50,23,3,1,1,0,1,0,16,15,732,631,664,594,49,23,3,1,1,0,0,0,15,13,21,23,18,21,1,0,0,0,0,0,1,0,1,2 -050,01,093,Alabama,Marion County,5,2,1781,938,843,896,803,32,26,1,5,1,1,0,0,8,8,913,813,871,773,32,26,1,5,1,1,0,0,8,8,25,30,25,30,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,5,3,1971,1002,969,944,928,38,29,2,5,2,1,1,0,15,6,982,953,924,914,38,29,2,3,2,1,1,0,15,6,20,16,20,14,0,0,0,2,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,5,4,1878,995,883,947,841,32,29,6,2,2,4,0,0,8,7,977,868,931,829,31,29,6,2,2,2,0,0,7,6,18,15,16,12,1,0,0,0,0,2,0,0,1,1 -050,01,093,Alabama,Marion County,5,5,1764,896,868,833,839,50,21,4,3,3,2,2,1,4,2,865,851,806,823,50,21,4,3,2,2,0,0,3,2,31,17,27,16,0,0,0,0,1,0,2,1,1,0 -050,01,093,Alabama,Marion County,5,6,1647,867,780,795,739,64,28,1,2,2,3,1,1,4,7,833,765,763,726,64,28,1,2,1,3,0,0,4,6,34,15,32,13,0,0,0,0,1,0,1,1,0,1 -050,01,093,Alabama,Marion County,5,7,1958,1023,935,955,891,53,35,5,4,4,2,1,0,5,3,1002,915,936,872,52,35,5,3,3,2,1,0,5,3,21,20,19,19,1,0,0,1,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,5,8,2163,1151,1012,1059,963,82,39,6,2,2,4,0,0,2,4,1137,1001,1047,953,82,39,5,2,1,3,0,0,2,4,14,11,12,10,0,0,1,0,1,1,0,0,0,0 -050,01,093,Alabama,Marion County,5,9,2299,1152,1147,1074,1093,65,36,4,6,2,3,0,0,7,9,1131,1134,1053,1081,65,36,4,6,2,3,0,0,7,8,21,13,21,12,0,0,0,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,5,10,2169,1112,1057,1039,1018,60,26,5,3,1,2,1,0,6,8,1100,1048,1028,1009,60,26,5,3,1,2,0,0,6,8,12,9,11,9,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,5,11,2103,1073,1030,1020,982,44,36,2,4,2,3,0,0,5,5,1063,1024,1011,976,44,36,2,4,1,3,0,0,5,5,10,6,9,6,0,0,0,0,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,5,12,2050,1045,1005,995,981,36,14,5,3,2,2,0,0,7,5,1037,1000,991,976,35,14,5,3,1,2,0,0,5,5,8,5,4,5,1,0,0,0,1,0,0,0,2,0 -050,01,093,Alabama,Marion County,5,13,1866,893,973,858,939,28,25,2,3,1,1,0,0,4,5,890,970,855,936,28,25,2,3,1,1,0,0,4,5,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,5,14,1531,705,826,678,800,20,19,2,3,0,0,0,0,5,4,702,822,675,797,20,19,2,2,0,0,0,0,5,4,3,4,3,3,0,0,0,1,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,5,15,1238,546,692,528,667,12,19,2,3,1,0,0,0,3,3,543,689,526,664,12,19,2,3,0,0,0,0,3,3,3,3,2,3,0,0,0,0,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,5,16,985,401,584,389,564,9,13,1,1,0,0,0,0,2,6,399,582,388,562,9,13,1,1,0,0,0,0,1,6,2,2,1,2,0,0,0,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,5,17,753,267,486,261,473,5,8,1,0,0,0,0,0,0,5,267,485,261,473,5,8,1,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,5,18,646,183,463,173,445,8,16,0,0,0,0,1,0,1,2,183,463,173,445,8,16,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,5,99,30554,15177,15377,14291,14740,693,448,53,50,26,29,8,2,106,108,14926,15176,14063,14556,689,447,52,46,19,26,3,0,100,101,251,201,228,184,4,1,1,4,7,3,5,2,6,7 -050,01,093,Alabama,Marion County,6,0,369,196,173,188,160,4,7,0,0,0,1,0,1,4,4,190,167,182,156,4,6,0,0,0,1,0,1,4,3,6,6,6,4,0,1,0,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,6,1,1430,761,669,689,623,47,29,3,1,1,0,1,0,20,16,736,645,668,601,46,29,3,1,1,0,0,0,18,14,25,24,21,22,1,0,0,0,0,0,1,0,2,2 -050,01,093,Alabama,Marion County,6,2,1806,954,852,912,806,31,33,1,4,1,1,0,0,9,8,927,814,885,768,31,33,1,4,1,1,0,0,9,8,27,38,27,38,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,6,3,1890,959,931,900,893,38,27,2,5,2,1,0,0,17,5,939,911,881,875,38,27,2,3,2,1,0,0,16,5,20,20,19,18,0,0,0,2,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,6,4,1879,972,907,927,859,30,35,5,2,3,4,0,0,7,7,953,894,910,849,29,35,5,2,2,2,0,0,7,6,19,13,17,10,1,0,0,0,1,2,0,0,0,1 -050,01,093,Alabama,Marion County,6,5,1756,884,872,820,845,50,19,4,3,3,2,2,1,5,2,861,854,801,828,50,19,4,3,2,2,0,0,4,2,23,18,19,17,0,0,0,0,1,0,2,1,1,0 -050,01,093,Alabama,Marion County,6,6,1587,836,751,770,709,58,29,1,2,2,3,1,1,4,7,803,740,739,700,58,29,1,2,1,3,0,0,4,6,33,11,31,9,0,0,0,0,1,0,1,1,0,1 -050,01,093,Alabama,Marion County,6,7,1932,1011,921,947,876,50,35,5,4,4,2,0,1,5,3,988,906,927,862,49,35,5,3,3,2,0,1,4,3,23,15,20,14,1,0,0,1,1,0,0,0,1,0 -050,01,093,Alabama,Marion County,6,8,2059,1044,1015,963,971,70,33,6,2,3,4,0,0,2,5,1023,1004,945,961,70,33,5,2,1,3,0,0,2,5,21,11,18,10,0,0,1,0,2,1,0,0,0,0 -050,01,093,Alabama,Marion County,6,9,2288,1188,1100,1112,1042,63,40,4,6,2,3,0,0,7,9,1167,1090,1091,1032,63,40,4,6,2,3,0,0,7,9,21,10,21,10,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,6,10,2218,1104,1114,1028,1072,60,29,7,3,1,2,1,0,7,8,1088,1103,1013,1061,60,29,7,3,1,2,0,0,7,8,16,11,15,11,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,6,11,2094,1070,1024,1010,974,53,37,2,4,1,3,0,0,4,6,1064,1019,1004,969,53,37,2,4,1,3,0,0,4,6,6,5,6,5,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,6,12,2093,1059,1034,1007,1012,35,12,6,3,2,2,0,0,9,5,1050,1029,1003,1007,34,12,6,3,1,2,0,0,6,5,9,5,4,5,1,0,0,0,1,0,0,0,3,0 -050,01,093,Alabama,Marion County,6,13,1931,945,986,916,952,22,25,2,4,1,1,0,0,4,4,942,983,913,949,22,25,2,4,1,1,0,0,4,4,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,6,14,1596,733,863,703,840,21,17,2,1,0,0,0,0,7,5,729,860,699,837,21,17,2,1,0,0,0,0,7,5,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,6,15,1194,533,661,512,642,17,14,1,2,0,0,0,0,3,3,531,659,510,640,17,14,1,2,0,0,0,0,3,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,6,16,1019,425,594,412,577,11,11,1,0,0,0,0,0,1,6,424,592,411,575,11,11,1,0,0,0,0,0,1,6,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,6,17,739,262,477,256,463,5,10,1,0,0,0,0,0,0,4,261,476,255,463,5,10,1,0,0,0,0,0,0,3,1,1,1,0,0,0,0,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,6,18,636,180,456,171,440,7,14,0,0,0,0,1,0,1,2,180,456,171,440,7,14,0,0,0,0,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,6,99,30516,15116,15400,14243,14756,672,456,53,46,26,29,6,4,116,109,14856,15202,14008,14573,668,455,52,43,19,26,1,2,108,103,260,198,235,183,4,1,1,3,7,3,5,2,8,6 -050,01,093,Alabama,Marion County,7,0,357,198,159,189,150,4,4,0,0,0,0,1,0,4,5,190,154,182,146,4,4,0,0,0,0,0,0,4,4,8,5,7,4,0,0,0,0,0,0,1,0,0,1 -050,01,093,Alabama,Marion County,7,1,1404,739,665,685,624,30,25,3,0,1,0,1,2,19,14,711,636,662,599,29,25,3,0,1,0,0,1,16,11,28,29,23,25,1,0,0,0,0,0,1,1,3,3 -050,01,093,Alabama,Marion County,7,2,1819,985,834,943,781,30,33,0,4,0,2,0,1,12,13,950,795,910,746,30,32,0,4,0,2,0,1,10,10,35,39,33,35,0,1,0,0,0,0,0,0,2,3 -050,01,093,Alabama,Marion County,7,3,1917,977,940,901,893,53,35,4,3,2,2,1,0,16,7,954,907,880,863,53,35,3,2,2,1,1,0,15,6,23,33,21,30,0,0,1,1,0,1,0,0,1,1 -050,01,093,Alabama,Marion County,7,4,1878,960,918,920,876,27,32,4,3,2,1,0,0,7,6,944,904,904,864,27,32,4,1,2,1,0,0,7,6,16,14,16,12,0,0,0,2,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,7,5,1654,841,813,785,777,41,24,6,4,2,1,0,1,7,6,822,788,767,755,41,24,5,4,2,1,0,0,7,4,19,25,18,22,0,0,1,0,0,0,0,1,0,2 -050,01,093,Alabama,Marion County,7,6,1610,833,777,763,751,62,17,2,0,3,5,0,1,3,3,795,762,726,739,62,16,2,0,2,4,0,0,3,3,38,15,37,12,0,1,0,0,1,1,0,1,0,0 -050,01,093,Alabama,Marion County,7,7,1828,950,878,888,832,54,37,2,4,1,2,1,1,4,2,926,853,867,809,52,36,2,3,1,2,1,1,3,2,24,25,21,23,2,1,0,1,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,7,8,2012,1023,989,949,944,68,37,1,1,3,3,0,0,2,4,1004,979,931,935,68,37,1,1,2,3,0,0,2,3,19,10,18,9,0,0,0,0,1,0,0,0,0,1 -050,01,093,Alabama,Marion County,7,9,2313,1209,1104,1124,1030,72,52,5,7,2,6,0,0,6,9,1190,1093,1105,1021,72,52,5,6,2,6,0,0,6,8,19,11,19,9,0,0,0,1,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,7,10,2242,1071,1171,992,1126,61,31,6,3,1,3,0,0,11,8,1058,1158,980,1113,61,31,5,3,1,3,0,0,11,8,13,13,12,13,0,0,1,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,7,11,2114,1101,1013,1036,958,54,37,2,5,2,5,1,0,6,8,1093,1004,1029,949,54,37,2,5,2,5,0,0,6,8,8,9,7,9,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,7,12,2118,1052,1066,1003,1036,34,21,7,1,1,2,0,0,7,6,1044,1059,996,1029,33,21,7,1,1,2,0,0,7,6,8,7,7,7,1,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,7,13,1955,953,1002,921,963,26,30,2,3,0,1,0,0,4,5,949,1001,917,962,26,30,2,3,0,1,0,0,4,5,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,7,14,1610,755,855,726,827,18,19,3,2,0,1,0,1,8,5,750,851,722,824,18,19,3,2,0,1,0,0,7,5,5,4,4,3,0,0,0,0,0,0,0,1,1,0 -050,01,093,Alabama,Marion County,7,15,1250,545,705,527,677,12,19,2,3,0,2,1,0,3,4,540,704,523,676,12,19,2,3,0,2,0,0,3,4,5,1,4,1,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,7,16,1015,434,581,423,570,8,8,0,0,0,0,0,0,3,3,433,577,422,566,8,8,0,0,0,0,0,0,3,3,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,7,17,731,281,450,273,440,7,7,1,0,0,0,0,0,0,3,280,449,272,439,7,7,1,0,0,0,0,0,0,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,7,18,667,184,483,175,464,7,17,0,0,0,0,1,0,1,2,183,483,174,464,7,17,0,0,0,0,1,0,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,7,99,30494,15091,15403,14223,14719,668,485,50,43,20,36,7,7,123,113,14816,15157,13969,14499,664,482,47,38,18,34,3,3,115,101,275,246,254,220,4,3,3,5,2,2,4,4,8,12 -050,01,093,Alabama,Marion County,8,0,380,227,153,216,144,4,4,0,0,1,0,1,0,5,5,217,139,208,131,4,4,0,0,0,0,0,0,5,4,10,14,8,13,0,0,0,0,1,0,1,0,0,1 -050,01,093,Alabama,Marion County,8,1,1421,743,678,704,639,24,21,3,0,1,0,0,2,11,16,715,640,679,606,23,21,3,0,1,0,0,0,9,13,28,38,25,33,1,0,0,0,0,0,0,2,2,3 -050,01,093,Alabama,Marion County,8,2,1793,975,818,923,764,39,34,0,3,0,2,0,1,13,14,941,780,892,730,39,32,0,3,0,2,0,1,10,12,34,38,31,34,0,2,0,0,0,0,0,0,3,2 -050,01,093,Alabama,Marion County,8,3,1956,1010,946,939,901,47,31,4,4,2,1,1,1,17,8,983,907,914,864,47,31,3,3,2,1,1,1,16,7,27,39,25,37,0,0,1,1,0,0,0,0,1,1 -050,01,093,Alabama,Marion County,8,4,1896,971,925,928,881,28,33,4,4,3,0,0,0,8,7,958,907,916,865,28,33,4,2,2,0,0,0,8,7,13,18,12,16,0,0,0,2,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,8,5,1614,824,790,763,749,45,29,7,3,1,2,0,1,8,6,799,763,739,726,45,29,6,3,1,1,0,0,8,4,25,27,24,23,0,0,1,0,0,1,0,1,0,2 -050,01,093,Alabama,Marion County,8,6,1717,881,836,792,798,79,29,2,0,4,5,1,1,3,3,837,823,750,788,79,28,2,0,3,4,0,0,3,3,44,13,42,10,0,1,0,0,1,1,1,1,0,0 -050,01,093,Alabama,Marion County,8,7,1733,899,834,833,795,59,30,3,3,1,2,0,1,3,3,864,807,804,770,55,29,2,3,1,2,0,1,2,2,35,27,29,25,4,1,1,0,0,0,0,0,1,1 -050,01,093,Alabama,Marion County,8,8,2037,1019,1018,941,959,70,49,1,1,3,3,0,0,4,6,1002,1004,925,946,70,49,1,1,2,3,0,0,4,5,17,14,16,13,0,0,0,0,1,0,0,0,0,1 -050,01,093,Alabama,Marion County,8,9,2347,1257,1090,1170,1022,76,49,4,7,2,5,0,0,5,7,1237,1080,1150,1013,76,49,4,6,2,5,0,0,5,7,20,10,20,9,0,0,0,1,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,8,10,2305,1108,1197,1021,1151,69,33,6,3,2,3,0,0,10,7,1097,1184,1011,1138,69,33,5,3,2,3,0,0,10,7,11,13,10,13,0,0,1,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,8,11,2092,1103,989,1041,945,52,26,3,5,2,5,1,0,4,8,1095,981,1034,937,52,26,3,5,2,5,0,0,4,8,8,8,7,8,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,8,12,2181,1068,1113,1023,1074,33,29,5,1,1,2,0,0,6,7,1060,1106,1016,1067,32,29,5,1,1,2,0,0,6,7,8,7,7,7,1,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,8,13,1972,961,1011,927,970,28,29,2,2,0,3,0,0,4,7,956,1008,922,969,28,29,2,2,0,3,0,0,4,5,5,3,5,1,0,0,0,0,0,0,0,0,0,2 -050,01,093,Alabama,Marion County,8,14,1637,794,843,755,818,24,14,5,4,0,1,0,1,10,5,787,839,750,815,24,14,5,4,0,1,0,0,8,5,7,4,5,3,0,0,0,0,0,0,0,1,2,0 -050,01,093,Alabama,Marion County,8,15,1332,565,767,542,736,14,20,4,3,0,2,1,0,4,6,561,766,539,735,14,20,4,3,0,2,0,0,4,6,4,1,3,1,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,8,16,985,438,547,430,527,5,16,0,0,0,0,0,0,3,4,438,543,430,523,5,16,0,0,0,0,0,0,3,4,0,4,0,4,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,8,17,717,265,452,256,443,7,6,2,0,0,0,0,0,0,3,264,451,255,442,7,6,2,0,0,0,0,0,0,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,8,18,664,192,472,183,462,7,8,1,0,0,0,0,0,1,2,191,472,182,462,7,8,1,0,0,0,0,0,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,8,99,30779,15300,15479,14387,14778,710,490,56,43,23,36,5,8,119,124,15002,15200,14116,14527,704,486,52,39,19,34,1,3,110,111,298,279,271,251,6,4,4,4,4,2,4,5,9,13 -050,01,093,Alabama,Marion County,9,0,392,225,167,208,159,10,3,0,0,1,0,1,0,5,5,214,159,199,152,10,3,0,0,0,0,0,0,5,4,11,8,9,7,0,0,0,0,1,0,1,0,0,1 -050,01,093,Alabama,Marion County,9,1,1424,770,654,722,614,30,20,2,0,1,0,0,2,15,18,745,615,699,580,29,20,2,0,1,0,0,0,14,15,25,39,23,34,1,0,0,0,0,0,0,2,1,3 -050,01,093,Alabama,Marion County,9,2,1808,979,829,926,772,39,35,0,2,0,2,0,1,14,17,941,795,891,745,39,33,0,2,0,2,0,1,11,12,38,34,35,27,0,2,0,0,0,0,0,0,3,5 -050,01,093,Alabama,Marion County,9,3,1921,1026,895,955,851,47,29,3,4,2,1,1,2,18,8,994,851,926,809,47,29,2,3,2,1,1,2,16,7,32,44,29,42,0,0,1,1,0,0,0,0,2,1 -050,01,093,Alabama,Marion County,9,4,1904,965,939,922,891,28,36,4,5,2,0,0,0,9,7,952,924,909,878,28,36,4,3,2,0,0,0,9,7,13,15,13,13,0,0,0,2,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,9,5,1599,802,797,743,753,42,31,7,4,1,2,0,1,9,6,777,775,719,735,42,31,6,4,1,1,0,0,9,4,25,22,24,18,0,0,1,0,0,1,0,1,0,2 -050,01,093,Alabama,Marion County,9,6,1726,888,838,806,804,71,24,2,0,4,5,2,1,3,4,843,820,763,789,71,23,2,0,3,4,1,0,3,4,45,18,43,15,0,1,0,0,1,1,1,1,0,0 -050,01,093,Alabama,Marion County,9,7,1642,847,795,775,752,67,33,2,3,1,2,0,1,2,4,813,776,747,735,62,32,1,3,1,2,0,1,2,3,34,19,28,17,5,1,1,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,9,8,2047,1039,1008,956,953,76,44,1,1,2,3,0,0,4,7,1021,995,938,941,76,44,1,1,2,3,0,0,4,6,18,13,18,12,0,0,0,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,9,9,2303,1201,1102,1117,1033,72,50,4,5,2,5,0,0,6,9,1183,1093,1099,1025,72,50,4,4,2,5,0,0,6,9,18,9,18,8,0,0,0,1,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,9,10,2272,1105,1167,1015,1121,71,31,6,4,2,3,0,0,11,8,1086,1152,997,1106,71,31,5,4,2,3,0,0,11,8,19,15,18,15,0,0,1,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,9,11,2195,1161,1034,1084,983,67,33,3,5,2,5,1,0,4,8,1154,1022,1078,971,67,33,3,5,2,5,0,0,4,8,7,12,6,12,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,9,12,2135,1064,1071,1008,1031,42,30,5,1,1,2,0,0,8,7,1056,1064,1001,1024,41,30,5,1,1,2,0,0,8,7,8,7,7,7,1,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,9,13,2055,1022,1033,984,995,32,26,2,2,0,3,0,0,4,7,1016,1030,978,994,32,26,2,2,0,3,0,0,4,5,6,3,6,1,0,0,0,0,0,0,0,0,0,2 -050,01,093,Alabama,Marion County,9,14,1681,796,885,760,856,21,16,5,6,0,1,0,1,10,5,789,880,755,853,21,16,5,5,0,1,0,0,8,5,7,5,5,3,0,0,0,1,0,0,0,1,2,0 -050,01,093,Alabama,Marion County,9,15,1377,602,775,573,748,20,16,4,3,0,2,1,0,4,6,598,774,570,747,20,16,4,3,0,2,0,0,4,6,4,1,3,1,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,9,16,987,438,549,429,535,6,9,0,0,0,0,0,0,3,5,438,545,429,531,6,9,0,0,0,0,0,0,3,5,0,4,0,4,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,9,17,704,262,442,255,433,6,6,1,0,0,0,0,0,0,3,262,441,255,432,6,6,1,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,9,18,677,182,495,175,480,5,12,1,0,0,0,0,0,1,3,181,495,174,480,5,12,1,0,0,0,0,0,1,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,9,99,30849,15374,15475,14413,14764,752,484,52,45,21,36,6,9,130,137,15063,15206,14127,14527,745,480,48,40,19,34,2,4,122,121,311,269,286,237,7,4,4,5,2,2,4,5,8,16 -050,01,093,Alabama,Marion County,10,0,378,213,165,202,154,5,5,0,0,0,0,1,0,5,6,202,156,192,147,5,5,0,0,0,0,0,0,5,4,11,9,10,7,0,0,0,0,0,0,1,0,0,2 -050,01,093,Alabama,Marion County,10,1,1458,780,678,722,637,40,22,1,0,0,0,0,2,17,17,747,653,692,617,39,22,1,0,0,0,0,0,15,14,33,25,30,20,1,0,0,0,0,0,0,2,2,3 -050,01,093,Alabama,Marion County,10,2,1808,970,838,923,776,33,38,0,3,0,2,0,1,14,18,926,801,882,746,33,36,0,3,0,2,0,1,11,13,44,37,41,30,0,2,0,0,0,0,0,0,3,5 -050,01,093,Alabama,Marion County,10,3,1919,1019,900,944,861,51,24,3,5,2,1,0,1,19,8,988,854,916,817,51,24,2,4,2,1,0,1,17,7,31,46,28,44,0,0,1,1,0,0,0,0,2,1 -050,01,093,Alabama,Marion County,10,4,1952,994,958,950,909,30,37,4,5,1,0,0,0,9,7,975,942,931,895,30,37,4,3,1,0,0,0,9,7,19,16,19,14,0,0,0,2,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,10,5,1624,796,828,734,786,45,29,7,5,1,1,0,1,9,6,780,806,719,768,45,29,6,5,1,0,0,0,9,4,16,22,15,18,0,0,1,0,0,1,0,1,0,2 -050,01,093,Alabama,Marion County,10,6,1646,854,792,776,759,67,22,2,0,4,5,2,1,3,5,807,777,731,747,67,21,2,0,3,4,1,0,3,5,47,15,45,12,0,1,0,0,1,1,1,1,0,0 -050,01,093,Alabama,Marion County,10,7,1615,823,792,762,754,58,29,2,3,0,2,0,0,1,4,795,769,740,733,53,28,1,3,0,2,0,0,1,3,28,23,22,21,5,1,1,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,10,8,2032,1043,989,954,936,82,40,0,0,2,4,1,1,4,8,1023,978,934,927,82,40,0,0,2,4,1,0,4,7,20,11,20,9,0,0,0,0,0,0,0,1,0,1 -050,01,093,Alabama,Marion County,10,9,2232,1147,1085,1057,1019,76,51,5,4,3,4,0,0,6,7,1128,1077,1038,1012,76,51,5,3,3,4,0,0,6,7,19,8,19,7,0,0,0,1,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,10,10,2292,1131,1161,1041,1110,72,34,4,4,2,4,0,0,12,9,1114,1143,1025,1092,72,34,3,4,2,4,0,0,12,9,17,18,16,18,0,0,1,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,10,11,2218,1148,1070,1072,1019,66,30,2,6,2,7,0,0,6,8,1139,1058,1063,1007,66,30,2,6,2,7,0,0,6,8,9,12,9,12,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,10,12,2070,1048,1022,996,985,38,29,6,1,1,2,0,0,7,5,1040,1014,989,977,37,29,6,1,1,2,0,0,7,5,8,8,7,8,1,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,10,13,2067,1021,1046,979,1005,35,27,2,3,0,3,0,0,5,8,1015,1043,973,1004,35,27,2,3,0,3,0,0,5,6,6,3,6,1,0,0,0,0,0,0,0,0,0,2 -050,01,093,Alabama,Marion County,10,14,1800,853,947,816,909,22,24,5,7,0,1,0,1,10,5,845,941,810,905,22,24,5,6,0,1,0,0,8,5,8,6,6,4,0,0,0,1,0,0,0,1,2,0 -050,01,093,Alabama,Marion County,10,15,1425,630,795,609,768,12,16,4,3,0,2,1,0,4,6,626,795,606,768,12,16,4,3,0,2,0,0,4,6,4,0,3,0,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,10,16,1000,430,570,416,555,11,10,0,0,0,0,0,0,3,5,430,566,416,551,11,10,0,0,0,0,0,0,3,5,0,4,0,4,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,10,17,719,288,431,280,422,7,7,1,0,0,0,0,0,0,2,287,430,279,421,7,7,1,0,0,0,0,0,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,10,18,663,185,478,178,467,5,8,1,0,0,0,0,0,1,3,184,478,177,467,5,8,1,0,0,0,0,0,1,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,10,99,30918,15373,15545,14411,14831,755,482,49,49,18,38,5,8,135,137,15051,15281,14113,14601,748,478,45,44,17,36,2,2,126,120,322,264,298,230,7,4,4,5,1,2,3,6,9,17 -050,01,093,Alabama,Marion County,11,0,325,180,145,168,135,5,4,0,0,1,0,1,0,5,6,169,137,159,129,5,4,0,0,0,0,0,0,5,4,11,8,9,6,0,0,0,0,1,0,1,0,0,2 -050,01,093,Alabama,Marion County,11,1,1428,758,670,699,626,39,20,1,0,0,0,0,2,19,22,715,643,659,605,38,20,1,0,0,0,0,0,17,18,43,27,40,21,1,0,0,0,0,0,0,2,2,4 -050,01,093,Alabama,Marion County,11,2,1779,957,822,909,761,33,38,0,2,0,2,0,1,15,18,917,780,872,726,33,36,0,2,0,2,0,1,12,13,40,42,37,35,0,2,0,0,0,0,0,0,3,5 -050,01,093,Alabama,Marion County,11,3,1929,1032,897,955,857,50,24,3,5,2,1,1,1,21,9,999,860,925,822,50,24,2,4,2,1,1,1,19,8,33,37,30,35,0,0,1,1,0,0,0,0,2,1 -050,01,093,Alabama,Marion County,11,4,1898,976,922,934,873,26,36,4,5,1,0,0,0,11,8,960,908,918,861,26,36,4,3,1,0,0,0,11,8,16,14,16,12,0,0,0,2,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,11,5,1556,744,812,688,773,37,26,7,5,1,1,0,1,11,6,727,793,672,758,37,26,6,5,1,0,0,0,11,4,17,19,16,15,0,0,1,0,0,1,0,1,0,2 -050,01,093,Alabama,Marion County,11,6,1626,823,803,758,764,54,28,2,0,4,6,1,1,4,4,787,784,724,748,54,27,2,0,3,5,0,0,4,4,36,19,34,16,0,1,0,0,1,1,1,1,0,0 -050,01,093,Alabama,Marion County,11,7,1594,810,784,742,744,65,31,2,3,0,2,0,0,1,4,770,759,708,721,60,30,1,3,0,2,0,0,1,3,40,25,34,23,5,1,1,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,11,8,2070,1078,992,991,936,80,43,0,0,2,4,0,1,5,8,1050,971,963,917,80,43,0,0,2,4,0,0,5,7,28,21,28,19,0,0,0,0,0,0,0,1,0,1 -050,01,093,Alabama,Marion County,11,9,2145,1088,1057,1005,998,69,44,5,4,3,4,0,0,6,7,1066,1048,983,990,69,44,5,3,3,4,0,0,6,7,22,9,22,8,0,0,0,1,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,11,10,2278,1178,1100,1085,1052,74,31,5,4,2,4,0,0,12,9,1159,1084,1067,1036,74,31,4,4,2,4,0,0,12,9,19,16,18,16,0,0,1,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,11,11,2207,1117,1090,1042,1029,64,41,2,6,2,6,1,0,6,8,1108,1079,1034,1018,64,41,2,6,2,6,0,0,6,8,9,11,8,11,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,11,12,2082,1044,1038,990,998,41,32,6,1,1,2,0,0,6,5,1035,1030,982,990,40,32,6,1,1,2,0,0,6,5,9,8,8,8,1,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,11,13,2105,1038,1067,1003,1026,29,27,2,3,0,3,0,0,4,8,1031,1064,996,1025,29,27,2,3,0,3,0,0,4,6,7,3,7,1,0,0,0,0,0,0,0,0,0,2 -050,01,093,Alabama,Marion County,11,14,1811,876,935,836,895,24,25,6,7,0,1,0,1,10,6,868,929,830,891,24,25,6,6,0,1,0,0,8,6,8,6,6,4,0,0,0,1,0,0,0,1,2,0 -050,01,093,Alabama,Marion County,11,15,1493,684,809,661,780,13,19,5,2,0,2,1,0,4,6,680,809,658,780,13,19,5,2,0,2,0,0,4,6,4,0,3,0,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,11,16,915,398,517,381,507,14,6,0,0,0,0,0,0,3,4,398,513,381,503,14,6,0,0,0,0,0,0,3,4,0,4,0,4,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,11,17,760,297,463,289,455,7,6,1,0,0,0,0,0,0,2,296,462,288,454,7,6,1,0,0,0,0,0,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,11,18,645,184,461,174,444,8,15,1,0,0,0,0,0,1,2,183,461,173,444,8,15,1,0,0,0,0,0,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,11,99,30646,15262,15384,14310,14653,732,496,52,47,19,38,5,8,144,142,14918,15114,13992,14418,725,492,48,42,17,36,1,2,135,124,344,270,318,235,7,4,4,5,2,2,4,6,9,18 -050,01,093,Alabama,Marion County,12,0,320,181,139,168,129,6,4,0,0,1,0,1,0,5,6,174,131,163,123,6,4,0,0,0,0,0,0,5,4,7,8,5,6,0,0,0,0,1,0,1,0,0,2 -050,01,093,Alabama,Marion County,12,1,1392,722,670,671,625,32,19,1,0,0,0,0,2,18,24,687,639,639,600,31,19,1,0,0,0,0,0,16,20,35,31,32,25,1,0,0,0,0,0,0,2,2,4 -050,01,093,Alabama,Marion County,12,2,1818,977,841,934,783,28,33,0,3,0,2,0,1,15,19,932,801,892,750,28,31,0,3,0,2,0,1,12,14,45,40,42,33,0,2,0,0,0,0,0,0,3,5 -050,01,093,Alabama,Marion County,12,3,1947,1040,907,962,862,51,28,3,5,2,1,1,2,21,9,1001,866,926,823,51,28,2,4,2,1,1,2,19,8,39,41,36,39,0,0,1,1,0,0,0,0,2,1 -050,01,093,Alabama,Marion County,12,4,1917,984,933,942,885,26,35,4,5,1,0,0,0,11,8,966,911,924,865,26,35,4,3,1,0,0,0,11,8,18,22,18,20,0,0,0,2,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,12,5,1626,780,846,717,802,43,31,8,5,1,1,0,1,11,6,765,824,703,784,43,31,7,5,1,0,0,0,11,4,15,22,14,18,0,0,1,0,0,1,0,1,0,2 -050,01,093,Alabama,Marion County,12,6,1590,811,779,734,745,65,22,2,0,4,6,2,1,4,5,771,760,696,729,65,21,2,0,3,5,1,0,4,5,40,19,38,16,0,1,0,0,1,1,1,1,0,0 -050,01,093,Alabama,Marion County,12,7,1656,834,822,763,780,68,32,2,3,0,2,0,1,1,4,796,794,731,754,63,31,1,3,0,2,0,1,1,3,38,28,32,26,5,1,1,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,12,8,2008,1030,978,953,930,69,35,0,0,2,4,1,1,5,8,1000,960,923,914,69,35,0,0,2,4,1,0,5,7,30,18,30,16,0,0,0,0,0,0,0,1,0,1 -050,01,093,Alabama,Marion County,12,9,2125,1063,1062,980,1008,68,37,5,4,3,4,0,0,7,9,1045,1051,962,998,68,37,5,3,3,4,0,0,7,9,18,11,18,10,0,0,0,1,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,12,10,2285,1196,1089,1106,1043,71,29,5,4,2,4,0,0,12,9,1178,1076,1089,1030,71,29,4,4,2,4,0,0,12,9,18,13,17,13,0,0,1,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,12,11,2237,1112,1125,1041,1067,60,37,2,6,2,6,1,0,6,9,1101,1112,1031,1054,60,37,2,6,2,6,0,0,6,9,11,13,10,13,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,12,12,2072,1047,1025,988,988,45,29,7,1,1,2,0,0,6,5,1038,1017,980,980,44,29,7,1,1,2,0,0,6,5,9,8,8,8,1,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,12,13,2138,1058,1080,1021,1038,30,28,2,3,0,3,0,0,5,8,1051,1077,1014,1037,30,28,2,3,0,3,0,0,5,6,7,3,7,1,0,0,0,0,0,0,0,0,0,2 -050,01,093,Alabama,Marion County,12,14,1796,869,927,826,891,26,20,6,7,0,1,0,1,11,7,861,921,820,887,26,20,6,6,0,1,0,0,9,7,8,6,6,4,0,0,0,1,0,0,0,1,2,0 -050,01,093,Alabama,Marion County,12,15,1493,692,801,668,771,14,19,5,3,0,2,1,0,4,6,688,801,665,771,14,19,5,3,0,2,0,0,4,6,4,0,3,0,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,12,16,972,423,549,408,535,12,10,0,0,0,0,0,0,3,4,423,545,408,531,12,10,0,0,0,0,0,0,3,4,0,4,0,4,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,12,17,745,292,453,284,444,7,6,1,0,0,0,0,0,0,3,291,452,283,443,7,6,1,0,0,0,0,0,0,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,12,18,639,182,457,173,442,7,12,1,0,0,0,0,0,1,3,181,457,172,442,7,12,1,0,0,0,0,0,1,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,12,99,30776,15293,15483,14339,14768,728,466,54,49,19,38,7,10,146,152,14949,15195,14021,14515,721,462,50,44,17,36,3,4,137,134,344,288,318,253,7,4,4,5,2,2,4,6,9,18 -050,01,093,Alabama,Marion County,13,0,320,180,140,169,130,7,5,0,0,0,0,0,0,4,5,174,134,163,124,7,5,0,0,0,0,0,0,4,5,6,6,6,6,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,13,1,1392,726,666,669,620,36,21,2,3,2,0,0,1,17,21,689,636,637,596,33,19,1,2,1,0,0,0,17,19,37,30,32,24,3,2,1,1,1,0,0,1,0,2 -050,01,093,Alabama,Marion County,13,2,1818,975,843,931,784,26,33,3,4,1,3,0,1,14,18,931,803,889,750,26,31,1,4,1,3,0,0,14,15,44,40,42,34,0,2,2,0,0,0,0,1,0,3 -050,01,093,Alabama,Marion County,13,3,1943,1035,908,958,863,51,28,4,8,3,0,0,0,19,9,997,865,923,823,49,27,3,6,3,0,0,0,19,9,38,43,35,40,2,1,1,2,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,13,4,1911,981,930,935,880,27,35,4,5,3,0,0,0,12,10,961,906,917,859,25,34,4,3,3,0,0,0,12,10,20,24,18,21,2,1,0,2,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,13,5,1634,784,850,720,803,43,35,7,6,2,0,0,0,12,6,766,830,705,785,43,34,6,6,1,0,0,0,11,5,18,20,15,18,0,1,1,0,1,0,0,0,1,1 -050,01,093,Alabama,Marion County,13,6,1593,818,775,737,745,68,20,5,0,1,4,2,0,5,6,774,760,700,730,66,20,3,0,1,4,0,0,4,6,44,15,37,15,2,0,2,0,0,0,2,0,1,0 -050,01,093,Alabama,Marion County,13,7,1665,843,822,770,781,70,33,2,3,0,1,0,1,1,3,804,795,737,755,65,32,1,3,0,1,0,1,1,3,39,27,33,26,5,1,1,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,13,8,1998,1025,973,944,923,68,34,4,4,3,4,1,0,5,8,993,956,914,907,68,34,3,4,3,4,0,0,5,7,32,17,30,16,0,0,1,0,0,0,1,0,0,1 -050,01,093,Alabama,Marion County,13,9,2119,1061,1058,979,1004,69,38,5,5,2,4,0,0,6,7,1042,1048,960,994,69,38,5,5,2,4,0,0,6,7,19,10,19,10,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,13,10,2268,1184,1084,1097,1035,72,30,4,6,1,4,0,0,10,9,1168,1072,1082,1023,71,30,4,6,1,4,0,0,10,9,16,12,15,12,1,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,13,11,2227,1110,1117,1040,1065,60,36,3,5,2,6,0,0,5,5,1100,1105,1030,1053,60,36,3,5,2,6,0,0,5,5,10,12,10,12,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,13,12,2076,1047,1029,992,991,46,30,6,2,0,4,0,0,3,2,1038,1022,984,984,45,30,6,2,0,4,0,0,3,2,9,7,8,7,1,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,13,13,2153,1063,1090,1026,1047,31,28,2,4,0,3,0,0,4,8,1056,1088,1019,1046,31,28,2,4,0,3,0,0,4,7,7,2,7,1,0,0,0,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,13,14,1802,875,927,831,894,27,21,6,5,1,0,0,0,10,7,868,922,826,889,27,21,6,5,1,0,0,0,8,7,7,5,5,5,0,0,0,0,0,0,0,0,2,0 -050,01,093,Alabama,Marion County,13,15,1491,694,797,671,774,15,19,5,1,0,2,1,0,2,1,690,796,668,773,15,19,5,1,0,2,0,0,2,1,4,1,3,1,0,0,0,0,0,0,1,0,0,0 -050,01,093,Alabama,Marion County,13,16,977,428,549,411,532,16,10,1,1,0,2,0,0,0,4,426,547,409,530,16,10,1,1,0,2,0,0,0,4,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,13,17,741,291,450,284,440,7,6,0,0,0,0,0,0,0,4,291,450,284,440,7,6,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,13,18,642,184,458,175,443,7,12,1,0,0,0,0,0,1,3,183,458,174,443,7,12,1,0,0,0,0,0,1,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,13,99,30770,15304,15466,14339,14754,746,474,64,62,21,37,4,3,130,136,14951,15193,14021,14504,730,466,55,57,19,37,0,1,126,128,353,273,318,250,16,8,9,5,2,0,4,2,4,8 -050,01,095,Alabama,Marshall County,1,0,1068,558,510,528,495,8,7,4,0,2,1,0,0,16,7,470,432,447,419,7,7,3,0,0,1,0,0,13,5,88,78,81,76,1,0,1,0,2,0,0,0,3,2 -050,01,095,Alabama,Marshall County,1,1,4444,2240,2204,2148,2090,43,45,8,14,7,10,2,4,32,41,1945,1914,1860,1811,43,44,7,12,6,10,0,4,29,33,295,290,288,279,0,1,1,2,1,0,2,0,3,8 -050,01,095,Alabama,Marshall County,1,2,5875,3070,2805,2932,2682,71,64,22,12,5,6,5,4,35,37,2807,2582,2681,2470,70,63,19,9,5,4,1,1,31,35,263,223,251,212,1,1,3,3,0,2,4,3,4,2 -050,01,095,Alabama,Marshall County,1,3,5602,2860,2742,2738,2628,66,55,20,19,5,4,0,1,31,35,2713,2607,2601,2506,66,54,15,18,5,4,0,0,26,25,147,135,137,122,0,1,5,1,0,0,0,1,5,10 -050,01,095,Alabama,Marshall County,1,4,5573,2875,2698,2755,2587,62,48,19,23,7,6,1,1,31,33,2562,2514,2459,2414,58,46,18,22,5,6,0,0,22,26,313,184,296,173,4,2,1,1,2,0,1,1,9,7 -050,01,095,Alabama,Marshall County,1,5,4888,2459,2429,2363,2345,47,37,26,7,6,13,5,4,12,23,2014,2144,1938,2072,44,36,18,5,5,10,1,3,8,18,445,285,425,273,3,1,8,2,1,3,4,1,4,5 -050,01,095,Alabama,Marshall County,1,6,5636,2842,2794,2751,2700,47,43,15,17,8,14,6,2,15,18,2404,2538,2326,2455,43,43,13,12,6,12,3,1,13,15,438,256,425,245,4,0,2,5,2,2,3,1,2,3 -050,01,095,Alabama,Marshall County,1,7,5640,2847,2793,2753,2697,47,50,17,15,14,8,2,4,14,19,2559,2636,2481,2546,46,50,14,14,8,7,1,2,9,17,288,157,272,151,1,0,3,1,6,1,1,2,5,2 -050,01,095,Alabama,Marshall County,1,8,6362,3176,3186,3085,3074,37,49,22,27,12,12,1,1,19,23,2997,3086,2917,2980,36,48,18,27,9,12,0,0,17,19,179,100,168,94,1,1,4,0,3,0,1,1,2,4 -050,01,095,Alabama,Marshall County,1,9,6212,3114,3098,3015,3015,45,27,24,22,8,15,2,0,20,19,3006,3046,2909,2966,45,26,24,21,8,15,2,0,18,18,108,52,106,49,0,1,0,1,0,0,0,0,2,1 -050,01,095,Alabama,Marshall County,1,10,5536,2679,2857,2588,2757,38,47,16,15,5,10,1,1,31,27,2616,2806,2529,2710,38,46,15,14,5,10,0,0,29,26,63,51,59,47,0,1,1,1,0,0,1,1,2,1 -050,01,095,Alabama,Marshall County,1,11,5184,2505,2679,2443,2597,23,35,12,17,4,10,1,0,22,20,2470,2646,2409,2565,23,35,12,17,4,10,0,0,22,19,35,33,34,32,0,0,0,0,0,0,1,0,0,1 -050,01,095,Alabama,Marshall County,1,12,4604,2203,2401,2143,2341,21,25,14,13,6,8,0,1,19,13,2172,2376,2114,2317,21,24,14,13,6,8,0,1,17,13,31,25,29,24,0,1,0,0,0,0,0,0,2,0 -050,01,095,Alabama,Marshall County,1,13,3959,1883,2076,1846,2047,17,12,7,3,1,5,0,0,12,9,1867,2058,1830,2029,17,12,7,3,1,5,0,0,12,9,16,18,16,18,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,1,14,3595,1639,1956,1619,1913,7,23,3,8,2,7,0,0,8,5,1623,1949,1603,1906,7,23,3,8,2,7,0,0,8,5,16,7,16,7,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,1,15,3022,1341,1681,1320,1650,9,14,5,2,0,1,0,0,7,14,1333,1671,1313,1640,9,14,5,2,0,1,0,0,6,14,8,10,7,10,0,0,0,0,0,0,0,0,1,0 -050,01,095,Alabama,Marshall County,1,16,2264,872,1392,861,1366,8,16,1,1,0,0,0,0,2,9,861,1385,851,1359,7,16,1,1,0,0,0,0,2,9,11,7,10,7,1,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,1,17,1571,536,1035,530,1017,4,10,1,3,0,0,0,0,1,5,532,1031,526,1013,4,10,1,3,0,0,0,0,1,5,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,1,18,1268,350,918,343,910,7,6,0,0,0,0,0,0,0,2,347,918,340,910,7,6,0,0,0,0,0,0,0,2,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,1,99,82303,40049,42254,38761,40911,607,613,236,218,92,130,26,23,327,359,37298,40339,36134,39088,591,603,207,201,75,122,8,12,283,313,2751,1915,2627,1823,16,10,29,17,17,8,18,11,44,46 -050,01,095,Alabama,Marshall County,2,0,1079,563,516,533,500,8,7,4,0,2,1,0,0,16,8,473,436,450,422,7,7,3,0,0,1,0,0,13,6,90,80,83,78,1,0,1,0,2,0,0,0,3,2 -050,01,095,Alabama,Marshall County,2,1,4430,2233,2197,2139,2082,42,44,8,14,7,10,2,4,35,43,1940,1907,1853,1804,42,43,7,12,6,10,0,4,32,34,293,290,286,278,0,1,1,2,1,0,2,0,3,9 -050,01,095,Alabama,Marshall County,2,2,5833,3050,2783,2919,2668,66,60,22,12,5,6,5,4,33,33,2788,2560,2669,2456,65,59,19,9,5,4,1,1,29,31,262,223,250,212,1,1,3,3,0,2,4,3,4,2 -050,01,095,Alabama,Marshall County,2,3,5633,2872,2761,2751,2641,63,57,21,19,5,4,0,1,32,39,2724,2624,2613,2517,63,56,16,18,5,4,0,0,27,29,148,137,138,124,0,1,5,1,0,0,0,1,5,10 -050,01,095,Alabama,Marshall County,2,4,5599,2887,2712,2768,2598,65,49,19,23,7,6,1,1,27,35,2575,2529,2473,2426,61,47,18,22,5,6,0,0,18,28,312,183,295,172,4,2,1,1,2,0,1,1,9,7 -050,01,095,Alabama,Marshall County,2,5,4934,2484,2450,2383,2367,52,35,26,7,6,13,5,4,12,24,2032,2163,1951,2092,49,34,18,5,5,10,1,3,8,19,452,287,432,275,3,1,8,2,1,3,4,1,4,5 -050,01,095,Alabama,Marshall County,2,6,5598,2826,2772,2734,2679,48,43,15,17,8,14,6,2,15,17,2379,2512,2300,2430,44,43,13,12,6,12,3,1,13,14,447,260,434,249,4,0,2,5,2,2,3,1,2,3 -050,01,095,Alabama,Marshall County,2,7,5632,2845,2787,2751,2691,47,50,17,15,14,8,2,4,14,19,2553,2629,2475,2539,46,50,14,14,8,7,1,2,9,17,292,158,276,152,1,0,3,1,6,1,1,2,5,2 -050,01,095,Alabama,Marshall County,2,8,6329,3159,3170,3070,3058,37,49,22,27,12,12,1,1,17,23,2977,3070,2899,2964,36,48,18,27,9,12,0,0,15,19,182,100,171,94,1,1,4,0,3,0,1,1,2,4 -050,01,095,Alabama,Marshall County,2,9,6218,3120,3098,3019,3015,45,27,24,22,8,15,2,0,22,19,3010,3046,2911,2966,45,26,24,21,8,15,2,0,20,18,110,52,108,49,0,1,0,1,0,0,0,0,2,1 -050,01,095,Alabama,Marshall County,2,10,5558,2689,2869,2601,2771,38,47,16,15,5,10,1,1,28,25,2626,2818,2542,2724,38,46,15,14,5,10,0,0,26,24,63,51,59,47,0,1,1,1,0,0,1,1,2,1 -050,01,095,Alabama,Marshall County,2,11,5234,2528,2706,2467,2623,23,35,12,17,4,10,1,0,21,21,2493,2673,2433,2591,23,35,12,17,4,10,0,0,21,20,35,33,34,32,0,0,0,0,0,0,1,0,0,1 -050,01,095,Alabama,Marshall County,2,12,4636,2220,2416,2159,2355,21,25,14,13,6,8,0,1,20,14,2189,2391,2130,2331,21,24,14,13,6,8,0,1,18,14,31,25,29,24,0,1,0,0,0,0,0,0,2,0 -050,01,095,Alabama,Marshall County,2,13,3975,1891,2084,1855,2055,17,12,7,3,1,5,0,0,11,9,1875,2066,1839,2037,17,12,7,3,1,5,0,0,11,9,16,18,16,18,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,2,14,3581,1634,1947,1614,1904,7,23,3,8,2,7,0,0,8,5,1618,1940,1598,1897,7,23,3,8,2,7,0,0,8,5,16,7,16,7,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,2,15,3027,1344,1683,1322,1651,9,14,5,2,0,1,0,0,8,15,1336,1673,1315,1641,9,14,5,2,0,1,0,0,7,15,8,10,7,10,0,0,0,0,0,0,0,0,1,0 -050,01,095,Alabama,Marshall County,2,16,2273,877,1396,866,1370,8,16,1,1,0,0,0,0,2,9,866,1389,856,1363,7,16,1,1,0,0,0,0,2,9,11,7,10,7,1,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,2,17,1587,541,1046,535,1027,4,10,1,3,0,0,0,0,1,6,537,1042,531,1023,4,10,1,3,0,0,0,0,1,6,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,2,18,1273,352,921,345,913,7,6,0,0,0,0,0,0,0,2,349,921,342,913,7,6,0,0,0,0,0,0,0,2,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,2,99,82429,40115,42314,38831,40968,607,609,237,218,92,130,26,23,322,366,37340,40389,36180,39136,591,599,208,201,75,122,8,12,278,319,2775,1925,2651,1832,16,10,29,17,17,8,18,11,44,47 -050,01,095,Alabama,Marshall County,3,0,1175,601,574,572,550,7,8,2,3,4,1,1,1,15,11,490,467,470,448,6,7,1,2,1,1,0,0,12,9,111,107,102,102,1,1,1,1,3,0,1,1,3,2 -050,01,095,Alabama,Marshall County,3,1,4314,2159,2155,2039,2020,54,61,13,18,7,9,3,4,43,43,1853,1849,1749,1735,51,55,8,12,6,9,0,3,39,35,306,306,290,285,3,6,5,6,1,0,3,1,4,8 -050,01,095,Alabama,Marshall County,3,2,5794,3011,2783,2862,2642,75,62,23,21,7,12,5,5,39,41,2693,2532,2565,2410,70,58,17,16,7,10,1,1,33,37,318,251,297,232,5,4,6,5,0,2,4,4,6,4 -050,01,095,Alabama,Marshall County,3,3,5632,2867,2765,2736,2641,65,52,26,27,7,6,1,2,32,37,2703,2604,2588,2497,63,49,18,24,7,6,1,0,26,28,164,161,148,144,2,3,8,3,0,0,0,2,6,9 -050,01,095,Alabama,Marshall County,3,4,5452,2820,2632,2708,2511,47,52,24,26,10,6,2,1,29,36,2540,2469,2444,2359,45,50,21,25,8,6,0,0,22,29,280,163,264,152,2,2,3,1,2,0,2,1,7,7 -050,01,095,Alabama,Marshall County,3,5,5098,2588,2510,2470,2411,63,45,32,15,7,14,4,4,12,21,2117,2196,2027,2117,57,39,19,10,6,11,1,3,7,16,471,314,443,294,6,6,13,5,1,3,3,1,5,5 -050,01,095,Alabama,Marshall County,3,6,5243,2684,2559,2572,2461,54,44,20,21,12,13,6,2,20,18,2145,2289,2056,2209,46,41,13,12,10,11,3,1,17,15,539,270,516,252,8,3,7,9,2,2,3,1,3,3 -050,01,095,Alabama,Marshall County,3,7,5677,2882,2795,2777,2685,46,53,23,18,18,15,2,5,16,19,2564,2615,2482,2514,43,53,15,14,13,14,1,3,10,17,318,180,295,171,3,0,8,4,5,1,1,2,6,2 -050,01,095,Alabama,Marshall County,3,8,6196,3041,3155,2937,3043,48,55,21,26,17,12,1,1,17,18,2849,3035,2761,2934,43,52,14,23,15,12,0,0,16,14,192,120,176,109,5,3,7,3,2,0,1,1,1,4 -050,01,095,Alabama,Marshall County,3,9,6288,3172,3116,3068,3026,47,36,27,21,10,12,2,0,18,21,3049,3055,2951,2970,45,34,24,19,10,12,2,0,17,20,123,61,117,56,2,2,3,2,0,0,0,0,1,1 -050,01,095,Alabama,Marshall County,3,10,5659,2777,2882,2685,2779,36,41,21,19,7,16,1,1,27,26,2705,2827,2618,2728,36,40,19,18,7,16,0,0,25,25,72,55,67,51,0,1,2,1,0,0,1,1,2,1 -050,01,095,Alabama,Marshall County,3,11,5562,2649,2913,2582,2825,30,39,9,17,5,12,2,0,21,20,2609,2866,2544,2780,30,39,9,17,5,12,0,0,21,18,40,47,38,45,0,0,0,0,0,0,2,0,0,2 -050,01,095,Alabama,Marshall County,3,12,4570,2191,2379,2123,2311,21,26,19,12,5,13,0,1,23,16,2161,2353,2096,2286,21,25,19,12,5,13,0,1,20,16,30,26,27,25,0,1,0,0,0,0,0,0,3,0 -050,01,095,Alabama,Marshall County,3,13,4003,1895,2108,1857,2069,15,16,10,6,2,9,0,0,11,8,1872,2089,1835,2050,15,16,9,6,2,9,0,0,11,8,23,19,22,19,0,0,1,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,3,14,3601,1660,1941,1636,1897,10,23,4,8,2,6,0,0,8,7,1649,1934,1625,1890,10,23,4,8,2,6,0,0,8,7,11,7,11,7,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,3,15,3055,1359,1696,1336,1665,11,16,4,2,0,1,0,0,8,12,1349,1691,1327,1660,11,16,4,2,0,1,0,0,7,12,10,5,9,5,0,0,0,0,0,0,0,0,1,0 -050,01,095,Alabama,Marshall County,3,16,2304,916,1388,905,1365,8,14,2,1,0,0,0,0,1,8,906,1380,896,1357,7,14,2,1,0,0,0,0,1,8,10,8,9,8,1,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,3,17,1601,540,1061,533,1040,4,13,2,3,0,0,0,0,1,5,536,1054,529,1033,4,13,2,3,0,0,0,0,1,5,4,7,4,7,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,3,18,1253,342,911,337,904,4,6,0,0,0,0,0,0,1,1,339,910,334,903,4,6,0,0,0,0,0,0,1,1,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,3,99,82477,40154,42323,38735,40845,645,662,282,264,120,157,30,27,342,368,37129,40215,35897,38880,607,630,218,224,104,149,9,12,294,320,3025,2108,2838,1965,38,32,64,40,16,8,21,15,48,48 -050,01,095,Alabama,Marshall County,4,0,1224,600,624,570,600,8,9,2,2,2,1,1,1,17,11,464,486,441,468,7,7,2,1,1,1,0,0,13,9,136,138,129,132,1,2,0,1,1,0,1,1,4,2 -050,01,095,Alabama,Marshall County,4,1,4469,2268,2201,2118,2050,73,67,12,22,7,9,5,6,53,47,1914,1855,1787,1733,68,59,5,13,6,9,1,2,47,39,354,346,331,317,5,8,7,9,1,0,4,4,6,8 -050,01,095,Alabama,Marshall County,4,2,5761,2998,2763,2853,2599,65,72,27,26,8,13,6,6,39,47,2677,2490,2557,2351,60,66,18,18,7,11,1,2,34,42,321,273,296,248,5,6,9,8,1,2,5,4,5,5 -050,01,095,Alabama,Marshall County,4,3,5768,2973,2795,2842,2678,62,52,26,19,9,6,1,3,33,37,2759,2575,2652,2479,56,48,16,14,9,6,0,0,26,28,214,220,190,199,6,4,10,5,0,0,1,3,7,9 -050,01,095,Alabama,Marshall County,4,4,5547,2869,2678,2734,2550,57,54,25,31,12,6,6,1,35,36,2575,2490,2466,2379,53,50,19,26,10,6,0,0,27,29,294,188,268,171,4,4,6,5,2,0,6,1,8,7 -050,01,095,Alabama,Marshall County,4,5,5137,2619,2518,2483,2404,69,46,39,20,9,13,5,7,14,28,2137,2221,2035,2129,60,39,24,14,8,10,1,5,9,24,482,297,448,275,9,7,15,6,1,3,4,2,5,4 -050,01,095,Alabama,Marshall County,4,6,5167,2626,2541,2514,2437,50,45,22,20,12,17,8,2,20,20,2051,2229,1973,2147,42,40,9,10,10,15,3,1,14,16,575,312,541,290,8,5,13,10,2,2,5,1,6,4 -050,01,095,Alabama,Marshall County,4,7,5782,2942,2840,2830,2712,51,66,21,19,18,20,3,4,19,19,2549,2613,2464,2501,47,62,12,12,13,19,2,2,11,17,393,227,366,211,4,4,9,7,5,1,1,2,8,2 -050,01,095,Alabama,Marshall County,4,8,6091,3005,3086,2883,2965,60,57,26,24,18,17,1,2,17,21,2782,2942,2684,2839,55,52,14,18,15,17,0,1,14,15,223,144,199,126,5,5,12,6,3,0,1,1,3,6 -050,01,095,Alabama,Marshall County,4,9,6389,3211,3178,3097,3069,43,39,30,32,11,14,2,1,28,23,3067,3096,2965,2994,40,37,26,28,11,14,2,1,23,22,144,82,132,75,3,2,4,4,0,0,0,0,5,1 -050,01,095,Alabama,Marshall County,4,10,5844,2877,2967,2776,2870,41,36,20,22,9,14,1,1,30,24,2787,2908,2693,2816,39,35,18,20,9,14,0,0,28,23,90,59,83,54,2,1,2,2,0,0,1,1,2,1 -050,01,095,Alabama,Marshall County,4,11,5416,2590,2826,2500,2746,40,34,15,14,6,13,2,0,27,19,2542,2765,2453,2687,40,34,15,13,6,13,1,0,27,18,48,61,47,59,0,0,0,1,0,0,1,0,0,1 -050,01,095,Alabama,Marshall County,4,12,4957,2392,2565,2330,2474,18,37,19,14,6,17,0,1,19,22,2356,2536,2296,2449,18,34,19,13,6,17,0,1,17,22,36,29,34,25,0,3,0,1,0,0,0,0,2,0 -050,01,095,Alabama,Marshall County,4,13,4051,1894,2157,1855,2112,17,15,9,9,1,9,0,0,12,12,1869,2139,1830,2094,17,15,9,9,1,9,0,0,12,12,25,18,25,18,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,4,14,3553,1640,1913,1610,1872,11,19,7,8,2,6,0,0,10,8,1627,1901,1597,1860,11,19,7,8,2,6,0,0,10,8,13,12,13,12,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,4,15,3062,1373,1689,1350,1646,10,26,4,2,0,3,0,0,9,12,1361,1682,1339,1639,10,26,4,2,0,3,0,0,8,12,12,7,11,7,0,0,0,0,0,0,0,0,1,0 -050,01,095,Alabama,Marshall County,4,16,2332,947,1385,935,1360,7,10,3,3,0,2,0,0,2,10,938,1376,927,1351,6,10,3,3,0,2,0,0,2,10,9,9,8,9,1,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,4,17,1597,525,1072,518,1051,3,11,2,3,0,0,0,0,2,7,520,1067,514,1046,3,11,2,3,0,0,0,0,1,7,5,5,4,5,0,0,0,0,0,0,0,0,1,0 -050,01,095,Alabama,Marshall County,4,18,1270,353,917,347,905,5,8,0,0,0,0,0,0,1,4,349,916,343,904,5,8,0,0,0,0,0,0,1,4,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,4,99,83417,40702,42715,39145,41100,690,703,309,290,130,180,41,35,387,407,37324,40287,36016,38866,637,652,222,225,114,172,11,15,324,357,3378,2428,3129,2234,53,51,87,65,16,8,30,20,63,50 -050,01,095,Alabama,Marshall County,5,0,1262,639,623,603,602,9,6,3,3,4,1,1,1,19,10,476,464,448,449,8,5,2,1,3,1,0,0,15,8,163,159,155,153,1,1,1,2,1,0,1,1,4,2 -050,01,095,Alabama,Marshall County,5,1,4620,2295,2325,2124,2158,82,71,15,29,12,10,5,7,57,50,1878,1906,1735,1774,74,64,7,18,11,9,1,3,50,38,417,419,389,384,8,7,8,11,1,1,4,4,7,12 -050,01,095,Alabama,Marshall County,5,2,5617,2900,2717,2752,2547,63,64,27,22,7,18,7,7,44,59,2580,2427,2463,2287,57,59,15,11,6,16,2,2,37,52,320,290,289,260,6,5,12,11,1,2,5,5,7,7 -050,01,095,Alabama,Marshall County,5,3,6030,3104,2926,2954,2790,66,59,29,28,10,6,3,4,42,39,2843,2672,2722,2561,59,53,17,21,10,6,2,0,33,31,261,254,232,229,7,6,12,7,0,0,1,4,9,8 -050,01,095,Alabama,Marshall County,5,4,5552,2917,2635,2770,2517,52,50,24,25,15,5,12,3,44,35,2604,2423,2493,2322,47,46,16,20,13,5,0,1,35,29,313,212,277,195,5,4,8,5,2,0,12,2,9,6 -050,01,095,Alabama,Marshall County,5,5,5139,2650,2489,2501,2382,76,34,36,21,10,16,9,9,18,27,2155,2217,2053,2137,63,28,17,13,9,13,2,4,11,22,495,272,448,245,13,6,19,8,1,3,7,5,7,5 -050,01,095,Alabama,Marshall County,5,6,5099,2539,2560,2416,2458,57,46,28,25,9,9,6,5,23,17,1958,2209,1876,2135,47,40,13,12,7,7,1,2,14,13,581,351,540,323,10,6,15,13,2,2,5,3,9,4 -050,01,095,Alabama,Marshall County,5,7,5862,3002,2860,2882,2729,51,67,23,23,18,16,5,5,23,20,2554,2591,2468,2483,45,61,11,13,13,15,3,2,14,17,448,269,414,246,6,6,12,10,5,1,2,3,9,3 -050,01,095,Alabama,Marshall County,5,8,5975,2985,2990,2843,2856,61,56,33,29,23,21,2,1,23,27,2728,2814,2616,2700,55,50,19,22,20,21,0,0,18,21,257,176,227,156,6,6,14,7,3,0,2,1,5,6 -050,01,095,Alabama,Marshall County,5,9,6415,3224,3191,3103,3074,49,51,24,29,18,10,3,1,27,26,3061,3090,2955,2983,44,49,18,25,17,9,3,0,24,24,163,101,148,91,5,2,6,4,1,1,0,1,3,2 -050,01,095,Alabama,Marshall County,5,10,6062,2985,3077,2878,2972,50,39,22,29,9,15,1,1,25,21,2877,3003,2779,2904,47,37,18,27,9,15,0,0,24,20,108,74,99,68,3,2,4,2,0,0,1,1,1,1 -050,01,095,Alabama,Marshall County,5,11,5371,2590,2781,2506,2708,35,30,18,10,6,13,1,1,24,19,2539,2728,2456,2656,35,30,17,10,6,13,1,1,24,18,51,53,50,52,0,0,1,0,0,0,0,0,0,1 -050,01,095,Alabama,Marshall County,5,12,5032,2436,2596,2365,2507,21,38,19,16,7,15,0,0,24,20,2395,2556,2327,2471,21,35,19,15,7,15,0,0,21,20,41,40,38,36,0,3,0,1,0,0,0,0,3,0 -050,01,095,Alabama,Marshall County,5,13,4367,2004,2363,1958,2311,16,23,12,9,2,8,0,0,16,12,1970,2343,1927,2291,16,23,9,9,2,8,0,0,16,12,34,20,31,20,0,0,3,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,5,14,3568,1664,1904,1631,1862,13,21,8,7,3,5,0,0,9,9,1650,1894,1618,1852,12,21,8,7,3,5,0,0,9,9,14,10,13,10,1,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,5,15,3099,1379,1720,1347,1678,13,22,6,4,1,3,0,0,12,13,1365,1714,1334,1672,13,22,6,4,1,3,0,0,11,13,14,6,13,6,0,0,0,0,0,0,0,0,1,0 -050,01,095,Alabama,Marshall County,5,16,2381,984,1397,970,1364,7,16,5,3,0,3,0,0,2,11,975,1389,962,1356,6,16,5,3,0,3,0,0,2,11,9,8,8,8,1,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,5,17,1650,542,1108,533,1091,4,9,2,3,0,0,0,0,3,5,537,1103,529,1086,4,9,2,3,0,0,0,0,2,5,5,5,4,5,0,0,0,0,0,0,0,0,1,0 -050,01,095,Alabama,Marshall County,5,18,1247,363,884,355,873,5,9,1,0,1,0,0,0,1,2,360,881,352,870,5,9,1,0,1,0,0,0,1,2,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,5,99,84348,41202,43146,39491,41479,730,711,335,315,155,174,55,45,436,422,37505,40424,36113,38989,658,657,220,234,138,164,15,15,361,365,3697,2722,3378,2490,72,54,115,81,17,10,40,30,75,57 -050,01,095,Alabama,Marshall County,6,0,1319,690,629,653,597,11,10,1,3,2,2,2,2,21,15,528,468,499,448,10,5,1,1,1,2,0,0,17,12,162,161,154,149,1,5,0,2,1,0,2,2,4,3 -050,01,095,Alabama,Marshall County,6,1,4730,2386,2344,2195,2177,83,68,20,24,11,11,7,7,70,57,1918,1887,1761,1758,77,62,8,10,10,10,1,2,61,45,468,457,434,419,6,6,12,14,1,1,6,5,9,12 -050,01,095,Alabama,Marshall County,6,2,5583,2877,2706,2716,2527,56,62,32,25,11,17,7,8,55,67,2550,2377,2427,2234,49,55,16,13,10,14,2,3,46,58,327,329,289,293,7,7,16,12,1,3,5,5,9,9 -050,01,095,Alabama,Marshall County,6,3,6127,3179,2948,3019,2803,65,63,33,25,13,8,4,4,45,45,2871,2679,2746,2563,55,55,17,17,13,8,3,0,37,36,308,269,273,240,10,8,16,8,0,0,1,4,8,9 -050,01,095,Alabama,Marshall County,6,4,5689,2963,2726,2808,2602,59,46,22,30,16,7,14,4,44,37,2642,2522,2526,2418,50,42,15,24,14,6,0,2,37,30,321,204,282,184,9,4,7,6,2,1,14,2,7,7 -050,01,095,Alabama,Marshall County,6,5,5125,2661,2464,2496,2345,79,44,45,24,11,11,10,9,20,31,2164,2157,2051,2067,65,35,23,15,10,9,2,3,13,28,497,307,445,278,14,9,22,9,1,2,8,6,7,3 -050,01,095,Alabama,Marshall County,6,6,5144,2557,2587,2418,2473,64,50,29,28,9,14,8,6,29,16,1939,2192,1849,2109,53,43,9,13,7,12,3,2,18,13,618,395,569,364,11,7,20,15,2,2,5,4,11,3 -050,01,095,Alabama,Marshall County,6,7,5815,2964,2851,2837,2725,48,56,28,22,20,15,5,5,26,28,2494,2563,2407,2465,40,49,13,11,15,14,3,2,16,22,470,288,430,260,8,7,15,11,5,1,2,3,10,6 -050,01,095,Alabama,Marshall County,6,8,5731,2886,2845,2739,2716,62,52,38,30,17,20,2,1,28,26,2599,2656,2489,2552,55,45,19,20,15,20,0,0,21,19,287,189,250,164,7,7,19,10,2,0,2,1,7,7 -050,01,095,Alabama,Marshall County,6,9,6471,3257,3214,3134,3086,46,60,25,26,21,14,3,2,28,26,3072,3100,2970,2982,40,58,17,21,21,14,3,1,21,24,185,114,164,104,6,2,8,5,0,0,0,1,7,2 -050,01,095,Alabama,Marshall County,6,10,6159,3040,3119,2916,3018,49,33,31,28,11,15,3,2,30,23,2931,3035,2819,2941,46,31,26,26,11,15,1,0,28,22,109,84,97,77,3,2,5,2,0,0,2,2,2,1 -050,01,095,Alabama,Marshall County,6,11,5549,2725,2824,2641,2743,29,31,16,19,8,12,1,0,30,19,2669,2767,2588,2688,29,31,15,18,7,11,0,0,30,19,56,57,53,55,0,0,1,1,1,1,1,0,0,0 -050,01,095,Alabama,Marshall County,6,12,5234,2498,2736,2410,2645,26,41,31,13,6,18,0,0,25,19,2452,2693,2368,2606,25,37,31,13,6,18,0,0,22,19,46,43,42,39,1,4,0,0,0,0,0,0,3,0 -050,01,095,Alabama,Marshall County,6,13,4431,2070,2361,2029,2304,14,19,8,13,2,10,1,0,16,15,2028,2335,1990,2278,14,19,6,13,2,10,0,0,16,15,42,26,39,26,0,0,2,0,0,0,1,0,0,0 -050,01,095,Alabama,Marshall County,6,14,3624,1666,1958,1624,1912,18,24,9,6,3,5,0,0,12,11,1649,1943,1610,1897,17,24,8,6,3,5,0,0,11,11,17,15,14,15,1,0,1,0,0,0,0,0,1,0 -050,01,095,Alabama,Marshall County,6,15,3158,1396,1762,1367,1720,12,20,5,6,1,3,0,0,11,13,1380,1755,1353,1714,11,20,5,5,1,3,0,0,10,13,16,7,14,6,1,0,0,1,0,0,0,0,1,0 -050,01,095,Alabama,Marshall County,6,16,2308,971,1337,956,1307,7,14,5,3,1,3,0,0,2,10,961,1326,947,1297,6,14,5,3,1,3,0,0,2,9,10,11,9,10,1,0,0,0,0,0,0,0,0,1 -050,01,095,Alabama,Marshall County,6,17,1645,551,1094,543,1073,2,10,2,3,0,1,0,0,4,7,546,1086,539,1065,2,10,2,3,0,1,0,0,3,7,5,8,4,8,0,0,0,0,0,0,0,0,1,0 -050,01,095,Alabama,Marshall County,6,18,1289,354,935,345,922,6,10,1,0,1,0,0,0,1,3,351,932,342,919,6,10,1,0,1,0,0,0,1,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,6,99,85131,41691,43440,39846,41695,736,713,381,328,164,186,67,50,497,468,37744,40473,36281,39001,650,645,237,232,148,175,18,15,410,405,3947,2967,3565,2694,86,68,144,96,16,11,49,35,87,63 -050,01,095,Alabama,Marshall County,7,0,1342,659,683,619,649,10,11,2,2,4,2,3,2,21,17,483,510,453,485,9,8,2,0,2,2,1,0,16,15,176,173,166,164,1,3,0,2,2,0,2,2,5,2 -050,01,095,Alabama,Marshall County,7,1,4954,2548,2406,2343,2226,81,70,16,27,11,10,6,9,91,64,1984,1918,1822,1786,68,58,5,12,11,9,0,3,78,50,564,488,521,440,13,12,11,15,0,1,6,6,13,14 -050,01,095,Alabama,Marshall County,7,2,5574,2845,2729,2679,2553,52,56,36,31,15,18,8,9,55,62,2506,2361,2382,2228,44,46,18,17,13,15,2,3,47,52,339,368,297,325,8,10,18,14,2,3,6,6,8,10 -050,01,095,Alabama,Marshall County,7,3,6308,3329,2979,3137,2816,71,68,41,29,16,11,8,7,56,48,2964,2693,2818,2564,59,60,24,18,16,10,3,0,44,41,365,286,319,252,12,8,17,11,0,1,5,7,12,7 -050,01,095,Alabama,Marshall County,7,4,5805,3012,2793,2846,2655,62,49,29,34,16,8,17,5,42,42,2651,2560,2525,2447,55,43,17,25,14,7,2,3,38,35,361,233,321,208,7,6,12,9,2,1,15,2,4,7 -050,01,095,Alabama,Marshall County,7,5,5098,2664,2434,2502,2308,78,42,42,31,9,15,14,8,19,30,2165,2111,2062,2018,62,31,18,20,8,14,3,2,12,26,499,323,440,290,16,11,24,11,1,1,11,6,7,4 -050,01,095,Alabama,Marshall County,7,6,5274,2648,2626,2500,2504,64,51,42,29,7,12,10,8,25,22,1984,2207,1897,2127,50,39,17,11,7,10,3,3,10,17,664,419,603,377,14,12,25,18,0,2,7,5,15,5 -050,01,095,Alabama,Marshall County,7,7,5773,2946,2827,2814,2702,50,52,33,25,17,16,7,7,25,25,2393,2505,2306,2415,40,45,16,11,13,14,3,2,15,18,553,322,508,287,10,7,17,14,4,2,4,5,10,7 -050,01,095,Alabama,Marshall County,7,8,5803,2921,2882,2766,2749,65,55,37,28,24,21,3,5,26,24,2596,2658,2484,2561,57,44,16,17,20,20,0,1,19,15,325,224,282,188,8,11,21,11,4,1,3,4,7,9 -050,01,095,Alabama,Marshall County,7,9,6382,3224,3158,3104,3012,40,60,27,35,17,15,3,6,33,30,3028,3019,2935,2891,33,55,17,30,15,15,3,3,25,25,196,139,169,121,7,5,10,5,2,0,0,3,8,5 -050,01,095,Alabama,Marshall County,7,10,6320,3144,3176,3010,3069,57,35,30,32,17,13,2,2,28,25,3021,3068,2898,2967,52,34,24,29,17,13,2,0,28,25,123,108,112,102,5,1,6,3,0,0,0,2,0,0 -050,01,095,Alabama,Marshall County,7,11,5564,2682,2882,2591,2795,29,37,18,17,7,11,3,2,34,20,2616,2820,2533,2736,29,37,15,16,6,11,0,1,33,19,66,62,58,59,0,0,3,1,1,0,3,1,1,1 -050,01,095,Alabama,Marshall County,7,12,5419,2622,2797,2545,2689,24,38,28,21,4,18,0,1,21,30,2569,2751,2495,2649,23,33,27,20,4,18,0,1,20,30,53,46,50,40,1,5,1,1,0,0,0,0,1,0 -050,01,095,Alabama,Marshall County,7,13,4631,2150,2481,2092,2419,15,23,15,12,6,11,1,0,21,16,2096,2449,2043,2387,15,23,11,12,6,11,0,0,21,16,54,32,49,32,0,0,4,0,0,0,1,0,0,0 -050,01,095,Alabama,Marshall County,7,14,3697,1739,1958,1696,1916,21,18,11,9,4,5,0,0,7,10,1718,1944,1678,1902,20,18,10,9,3,5,0,0,7,10,21,14,18,14,1,0,1,0,1,0,0,0,0,0 -050,01,095,Alabama,Marshall County,7,15,3194,1400,1794,1378,1753,7,21,5,5,1,3,0,0,9,12,1386,1788,1365,1747,6,21,5,5,1,3,0,0,9,12,14,6,13,6,1,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,7,16,2377,996,1381,983,1345,5,16,5,4,1,4,0,0,2,12,987,1371,974,1336,5,16,5,4,1,4,0,0,2,11,9,10,9,9,0,0,0,0,0,0,0,0,0,1 -050,01,095,Alabama,Marshall County,7,17,1643,584,1059,571,1041,4,8,4,4,1,0,0,0,4,6,579,1052,567,1034,4,8,4,4,1,0,0,0,3,6,5,7,4,7,0,0,0,0,0,0,0,0,1,0 -050,01,095,Alabama,Marshall County,7,18,1358,373,985,366,969,3,12,1,1,1,0,0,0,2,3,370,979,363,964,3,11,1,1,1,0,0,0,2,3,3,6,3,5,0,1,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,7,99,86516,42486,44030,40542,42170,738,722,422,376,178,193,85,71,521,498,38096,40764,36600,39244,634,630,252,261,159,181,22,22,429,426,4390,3266,3942,2926,104,92,170,115,19,12,63,49,92,72 -050,01,095,Alabama,Marshall County,8,0,1316,690,626,653,597,8,12,0,1,3,1,4,2,22,13,482,439,456,417,7,9,0,0,2,1,1,0,16,12,208,187,197,180,1,3,0,1,1,0,3,2,6,1 -050,01,095,Alabama,Marshall County,8,1,5228,2675,2553,2431,2369,96,59,27,28,13,12,9,12,99,73,2031,1981,1849,1855,73,47,11,8,11,10,2,3,85,58,644,572,582,514,23,12,16,20,2,2,7,9,14,15 -050,01,095,Alabama,Marshall County,8,2,5668,2867,2801,2681,2616,57,59,34,29,17,22,11,9,67,66,2477,2388,2342,2252,48,49,13,10,15,20,3,2,56,55,390,413,339,364,9,10,21,19,2,2,8,7,11,11 -050,01,095,Alabama,Marshall County,8,3,6335,3349,2986,3151,2823,69,71,44,26,15,7,7,8,63,51,2932,2676,2785,2550,55,61,24,14,15,7,2,0,51,44,417,310,366,273,14,10,20,12,0,0,5,8,12,7 -050,01,095,Alabama,Marshall County,8,4,5974,3090,2884,2896,2739,75,50,34,34,19,7,16,8,50,46,2716,2611,2563,2491,69,44,23,24,15,7,2,4,44,41,374,273,333,248,6,6,11,10,4,0,14,4,6,5 -050,01,095,Alabama,Marshall County,8,5,5187,2718,2469,2547,2333,72,53,50,26,12,14,13,9,24,34,2165,2139,2059,2036,53,44,22,14,11,13,3,3,17,29,553,330,488,297,19,9,28,12,1,1,10,6,7,5 -050,01,095,Alabama,Marshall County,8,6,5557,2800,2757,2636,2638,75,43,40,32,11,14,13,8,25,22,2107,2279,2011,2204,57,32,12,13,11,13,5,3,11,14,693,478,625,434,18,11,28,19,0,1,8,5,14,8 -050,01,095,Alabama,Marshall County,8,7,5548,2843,2705,2707,2571,51,41,33,27,15,26,10,7,27,33,2242,2343,2152,2248,41,33,15,11,12,24,5,2,17,25,601,362,555,323,10,8,18,16,3,2,5,5,10,8 -050,01,095,Alabama,Marshall County,8,8,5995,3014,2981,2850,2821,71,73,39,33,20,19,4,4,30,31,2659,2729,2544,2609,62,61,14,18,16,18,0,1,23,22,355,252,306,212,9,12,25,15,4,1,4,3,7,9 -050,01,095,Alabama,Marshall County,8,9,6285,3131,3154,2997,3002,58,60,24,44,20,13,2,6,30,29,2926,3001,2821,2869,49,54,14,37,18,13,2,3,22,25,205,153,176,133,9,6,10,7,2,0,0,3,8,4 -050,01,095,Alabama,Marshall County,8,10,6396,3215,3181,3069,3062,59,41,33,28,18,18,2,3,34,29,3065,3051,2934,2939,52,39,26,25,18,18,2,1,33,29,150,130,135,123,7,2,7,3,0,0,0,2,1,0 -050,01,095,Alabama,Marshall County,8,11,5710,2789,2921,2687,2817,31,36,19,27,8,19,4,2,40,20,2708,2855,2617,2759,28,35,17,24,7,18,1,0,38,19,81,66,70,58,3,1,2,3,1,1,3,2,2,1 -050,01,095,Alabama,Marshall County,8,12,5769,2759,3010,2667,2897,36,44,27,22,3,16,0,0,26,31,2697,2952,2610,2845,33,40,26,22,3,16,0,0,25,29,62,58,57,52,3,4,1,0,0,0,0,0,1,2 -050,01,095,Alabama,Marshall County,8,13,4655,2164,2491,2109,2429,13,21,15,12,7,11,0,0,20,18,2125,2454,2071,2394,13,21,14,11,7,11,0,0,20,17,39,37,38,35,0,0,1,1,0,0,0,0,0,1 -050,01,095,Alabama,Marshall County,8,14,3838,1804,2034,1762,1989,22,19,8,9,5,6,0,0,7,11,1776,2011,1737,1967,21,19,7,9,4,6,0,0,7,10,28,23,25,22,1,0,1,0,1,0,0,0,0,1 -050,01,095,Alabama,Marshall County,8,15,3241,1447,1794,1421,1755,8,21,7,5,1,3,0,0,10,10,1436,1782,1410,1743,8,21,7,5,1,3,0,0,10,10,11,12,11,12,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,8,16,2487,1044,1443,1027,1394,5,24,6,6,2,6,0,0,4,13,1037,1433,1020,1385,5,24,6,6,2,6,0,0,4,12,7,10,7,9,0,0,0,0,0,0,0,0,0,1 -050,01,095,Alabama,Marshall County,8,17,1670,621,1049,612,1034,3,7,2,3,1,0,0,0,3,5,618,1041,609,1026,3,7,2,3,1,0,0,0,3,5,3,8,3,8,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,8,18,1350,343,1007,334,983,5,18,1,1,1,0,0,0,2,5,340,1001,331,978,5,17,1,1,1,0,0,0,2,5,3,6,3,5,0,1,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,8,99,88209,43363,44846,41237,42869,814,752,443,393,191,214,95,78,583,540,38539,41166,36921,39567,682,657,254,255,170,204,28,22,484,461,4824,3680,4316,3302,132,95,189,138,21,10,67,56,99,79 -050,01,095,Alabama,Marshall County,9,0,1357,698,659,660,623,8,13,1,4,4,1,4,2,21,16,474,463,449,439,7,8,0,0,2,1,1,0,15,15,224,196,211,184,1,5,1,4,2,0,3,2,6,1 -050,01,095,Alabama,Marshall County,9,1,5369,2747,2622,2502,2432,81,67,24,27,20,12,13,13,107,71,2072,1995,1895,1867,58,53,7,6,18,10,3,3,91,56,675,627,607,565,23,14,17,21,2,2,10,10,16,15 -050,01,095,Alabama,Marshall County,9,2,5765,2922,2843,2730,2645,61,62,36,33,14,23,10,9,71,71,2459,2397,2327,2254,47,52,12,13,12,19,2,3,59,56,463,446,403,391,14,10,24,20,2,4,8,6,12,15 -050,01,095,Alabama,Marshall County,9,3,6329,3317,3012,3109,2831,71,67,43,35,19,11,9,8,66,60,2900,2685,2745,2545,57,56,21,21,19,10,4,0,54,53,417,327,364,286,14,11,22,14,0,1,5,8,12,7 -050,01,095,Alabama,Marshall County,9,4,6183,3247,2936,3038,2774,81,62,36,33,16,8,16,7,60,52,2855,2625,2693,2491,71,55,23,23,12,7,2,3,54,46,392,311,345,283,10,7,13,10,4,1,14,4,6,6 -050,01,095,Alabama,Marshall County,9,5,5282,2768,2514,2579,2358,79,55,52,38,17,17,15,9,26,37,2168,2122,2054,2008,58,42,20,23,16,16,3,2,17,31,600,392,525,350,21,13,32,15,1,1,12,7,9,6 -050,01,095,Alabama,Marshall County,9,6,5640,2848,2792,2683,2653,69,49,42,42,16,15,12,9,26,24,2104,2295,2016,2208,49,35,9,20,16,14,3,3,11,15,744,497,667,445,20,14,33,22,0,1,9,6,15,9 -050,01,095,Alabama,Marshall County,9,7,5390,2721,2669,2580,2539,52,37,38,32,17,20,9,7,25,34,2159,2284,2070,2198,40,28,16,13,13,17,5,2,15,26,562,385,510,341,12,9,22,19,4,3,4,5,10,8 -050,01,095,Alabama,Marshall County,9,8,6179,3108,3071,2932,2895,73,78,45,30,23,28,4,7,31,33,2704,2791,2587,2659,59,65,16,14,19,27,0,2,23,24,404,280,345,236,14,13,29,16,4,1,4,5,8,9 -050,01,095,Alabama,Marshall County,9,9,6165,3064,3101,2918,2962,69,55,27,33,18,16,2,4,30,31,2846,2924,2733,2808,58,48,15,26,16,15,2,1,22,26,218,177,185,154,11,7,12,7,2,1,0,3,8,5 -050,01,095,Alabama,Marshall County,9,10,6568,3313,3255,3165,3132,59,42,34,40,20,13,4,3,31,25,3156,3116,3025,2999,51,39,27,39,20,13,3,1,30,25,157,139,140,133,8,3,7,1,0,0,1,2,1,0 -050,01,095,Alabama,Marshall County,9,11,5874,2884,2990,2777,2886,34,35,20,25,8,16,4,2,41,26,2794,2923,2698,2826,31,34,18,22,7,15,1,1,39,25,90,67,79,60,3,1,2,3,1,1,3,1,2,1 -050,01,095,Alabama,Marshall County,9,12,5634,2669,2965,2555,2859,48,39,36,20,4,13,0,0,26,34,2596,2897,2489,2799,45,35,35,18,4,13,0,0,23,32,73,68,66,60,3,4,1,2,0,0,0,0,3,2 -050,01,095,Alabama,Marshall County,9,13,5012,2373,2639,2320,2557,12,33,14,14,4,16,1,0,22,19,2333,2603,2283,2523,12,32,12,14,4,16,0,0,22,18,40,36,37,34,0,1,2,0,0,0,1,0,0,1 -050,01,095,Alabama,Marshall County,9,14,3970,1851,2119,1803,2077,25,13,10,12,4,5,0,0,9,12,1821,2095,1775,2054,24,13,9,12,4,5,0,0,9,11,30,24,28,23,1,0,1,0,0,0,0,0,0,1 -050,01,095,Alabama,Marshall County,9,15,3234,1448,1786,1419,1752,12,15,6,6,1,3,0,0,10,10,1436,1777,1408,1743,11,15,6,6,1,3,0,0,10,10,12,9,11,9,1,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,9,16,2596,1110,1486,1093,1437,5,25,5,5,3,6,0,0,4,13,1096,1473,1079,1425,5,25,5,5,3,6,0,0,4,12,14,13,14,12,0,0,0,0,0,0,0,0,0,1 -050,01,095,Alabama,Marshall County,9,17,1720,654,1066,642,1045,3,10,2,4,2,1,0,0,5,6,652,1056,640,1035,3,10,2,4,2,1,0,0,5,6,2,10,2,10,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,9,18,1338,330,1008,318,985,6,16,1,1,1,0,0,0,4,6,326,1000,314,978,6,15,1,1,1,0,0,0,4,6,4,8,4,7,0,1,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,9,99,89605,44072,45533,41823,43442,848,773,472,434,211,224,103,80,615,580,38951,41521,37280,39859,692,660,254,280,189,208,29,21,507,493,5121,4012,4543,3583,156,113,218,154,22,16,74,59,108,87 -050,01,095,Alabama,Marshall County,10,0,1365,691,674,650,628,9,15,4,4,2,1,3,4,23,22,466,465,439,435,8,10,2,0,1,1,0,0,16,19,225,209,211,193,1,5,2,4,1,0,3,4,7,3 -050,01,095,Alabama,Marshall County,10,1,5364,2785,2579,2525,2385,94,64,27,31,21,12,12,14,106,73,2076,1944,1907,1827,55,42,5,4,19,9,2,3,88,59,709,635,618,558,39,22,22,27,2,3,10,11,18,14 -050,01,095,Alabama,Marshall County,10,2,5954,2989,2965,2785,2741,63,65,40,33,15,37,12,10,74,79,2447,2437,2310,2277,49,51,12,12,13,33,4,3,59,61,542,528,475,464,14,14,28,21,2,4,8,7,15,18 -050,01,095,Alabama,Marshall County,10,3,6283,3284,2999,3071,2809,70,73,46,31,17,14,10,9,70,63,2845,2637,2695,2496,51,61,21,13,17,13,5,0,56,54,439,362,376,313,19,12,25,18,0,1,5,9,14,9 -050,01,095,Alabama,Marshall County,10,4,6413,3357,3056,3133,2883,91,71,37,27,18,7,16,11,62,57,2935,2719,2765,2574,81,63,21,17,14,7,1,6,53,52,422,337,368,309,10,8,16,10,4,0,15,5,9,5 -050,01,095,Alabama,Marshall County,10,5,5329,2757,2572,2566,2409,83,59,51,41,14,16,14,12,29,35,2149,2154,2033,2034,62,48,17,26,13,15,4,2,20,29,608,418,533,375,21,11,34,15,1,1,10,10,9,6 -050,01,095,Alabama,Marshall County,10,6,5809,2960,2849,2777,2695,74,66,51,40,14,12,14,12,30,24,2143,2290,2045,2209,54,35,14,15,14,11,4,5,12,15,817,559,732,486,20,31,37,25,0,1,10,7,18,9 -050,01,095,Alabama,Marshall County,10,7,5391,2715,2676,2546,2538,54,40,54,34,20,26,12,6,29,32,2128,2248,2019,2160,38,28,30,13,18,24,6,1,17,22,587,428,527,378,16,12,24,21,2,2,6,5,12,10 -050,01,095,Alabama,Marshall County,10,8,6299,3155,3144,2962,2965,80,73,49,35,23,32,5,4,36,35,2729,2828,2599,2698,69,58,16,16,21,31,0,0,24,25,426,316,363,267,11,15,33,19,2,1,5,4,12,10 -050,01,095,Alabama,Marshall County,10,9,6007,3006,3001,2845,2845,74,55,32,40,21,23,3,7,31,31,2740,2820,2620,2688,60,48,15,33,20,22,3,3,22,26,266,181,225,157,14,7,17,7,1,1,0,4,9,5 -050,01,095,Alabama,Marshall County,10,10,6599,3275,3324,3142,3198,52,47,29,37,21,16,3,3,28,23,3101,3183,2987,3065,44,44,20,34,21,16,2,1,27,23,174,141,155,133,8,3,9,3,0,0,1,2,1,0 -050,01,095,Alabama,Marshall County,10,11,6154,3041,3113,2931,3001,43,41,20,28,7,15,3,3,37,25,2944,3034,2847,2929,40,40,16,27,6,14,1,1,34,23,97,79,84,72,3,1,4,1,1,1,2,2,3,2 -050,01,095,Alabama,Marshall County,10,12,5587,2632,2955,2523,2859,48,40,31,17,3,13,0,0,27,26,2553,2879,2452,2792,45,35,30,15,3,13,0,0,23,24,79,76,71,67,3,5,1,2,0,0,0,0,4,2 -050,01,095,Alabama,Marshall County,10,13,5185,2485,2700,2418,2609,13,31,22,13,5,18,0,0,27,29,2432,2664,2368,2575,13,30,19,13,5,18,0,0,27,28,53,36,50,34,0,1,3,0,0,0,0,0,0,1 -050,01,095,Alabama,Marshall County,10,14,4320,1974,2346,1932,2304,19,15,8,9,6,5,0,0,9,13,1939,2319,1901,2278,17,15,7,9,5,5,0,0,9,12,35,27,31,26,2,0,1,0,1,0,0,0,0,1 -050,01,095,Alabama,Marshall County,10,15,3320,1506,1814,1469,1767,15,23,6,8,2,4,0,0,14,12,1493,1798,1457,1751,14,23,6,8,2,4,0,0,14,12,13,16,12,16,1,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,10,16,2612,1094,1518,1074,1465,5,25,8,7,3,8,0,0,4,13,1084,1506,1064,1454,5,25,8,7,3,8,0,0,4,12,10,12,10,11,0,0,0,0,0,0,0,0,0,1 -050,01,095,Alabama,Marshall County,10,17,1732,688,1044,674,1028,3,5,4,4,2,1,0,0,5,6,685,1035,671,1019,3,5,4,4,2,1,0,0,5,6,3,9,3,9,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,10,18,1349,355,994,342,979,5,8,2,1,2,0,0,0,4,6,351,987,338,973,5,7,2,1,2,0,0,0,4,6,4,7,4,6,0,1,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,10,99,91072,44749,46323,42365,44108,895,816,521,440,216,260,107,95,645,604,39240,41947,37517,40234,713,668,265,267,199,245,32,25,514,508,5509,4376,4848,3874,182,148,256,173,17,15,75,70,131,96 -050,01,095,Alabama,Marshall County,11,0,1239,637,602,590,564,11,10,3,9,5,1,5,4,23,14,438,406,407,383,10,9,1,1,3,1,1,0,16,12,199,196,183,181,1,1,2,8,2,0,4,4,7,2 -050,01,095,Alabama,Marshall County,11,1,5460,2774,2686,2520,2472,82,74,40,44,13,11,13,15,106,70,2027,1922,1865,1800,48,46,12,10,11,9,2,2,89,55,747,764,655,672,34,28,28,34,2,2,11,13,17,15 -050,01,095,Alabama,Marshall County,11,2,6192,3149,3043,2925,2804,71,61,40,38,18,39,14,12,81,89,2516,2456,2374,2294,47,45,10,12,15,34,6,3,64,68,633,587,551,510,24,16,30,26,3,5,8,9,17,21 -050,01,095,Alabama,Marshall County,11,3,6312,3309,3003,3066,2808,69,69,53,34,22,16,10,11,89,65,2837,2585,2666,2446,48,52,25,16,22,15,4,0,72,56,472,418,400,362,21,17,28,18,0,1,6,11,17,9 -050,01,095,Alabama,Marshall County,11,4,6533,3460,3073,3222,2887,90,81,39,27,22,7,18,11,69,60,2987,2708,2804,2554,82,73,21,13,18,7,2,6,60,55,473,365,418,333,8,8,18,14,4,0,16,5,9,5 -050,01,095,Alabama,Marshall County,11,5,5439,2792,2647,2580,2494,91,62,57,29,13,15,15,12,36,35,2098,2181,1974,2081,63,45,20,10,12,14,4,1,25,30,694,466,606,413,28,17,37,19,1,1,11,11,11,5 -050,01,095,Alabama,Marshall County,11,6,5825,2973,2852,2765,2712,85,49,52,42,18,15,12,8,41,26,2146,2249,2044,2177,54,27,10,14,18,14,1,1,19,16,827,603,721,535,31,22,42,28,0,1,11,7,22,10 -050,01,095,Alabama,Marshall County,11,7,5516,2789,2727,2612,2582,54,42,50,40,20,24,15,7,38,32,2163,2275,2052,2183,39,29,21,16,18,22,9,1,24,24,626,452,560,399,15,13,29,24,2,2,6,6,14,8 -050,01,095,Alabama,Marshall County,11,8,6322,3159,3163,2952,2967,75,75,58,36,28,38,5,6,41,41,2698,2813,2569,2675,56,58,20,15,25,37,0,1,28,27,461,350,383,292,19,17,38,21,3,1,5,5,13,14 -050,01,095,Alabama,Marshall County,11,9,5871,2988,2883,2814,2730,79,59,33,40,26,13,2,7,34,34,2689,2692,2555,2569,66,51,15,29,24,12,2,3,27,28,299,191,259,161,13,8,18,11,2,1,0,4,7,6 -050,01,095,Alabama,Marshall County,11,10,6629,3283,3346,3135,3221,60,46,36,32,21,19,4,3,27,25,3080,3191,2956,3073,50,44,24,29,21,19,3,1,26,25,203,155,179,148,10,2,12,3,0,0,1,2,1,0 -050,01,095,Alabama,Marshall County,11,11,6264,3131,3133,3001,3022,45,38,26,27,12,13,4,4,43,29,3021,3037,2906,2935,42,37,22,24,11,13,1,1,39,27,110,96,95,87,3,1,4,3,1,0,3,3,4,2 -050,01,095,Alabama,Marshall County,11,12,5680,2725,2955,2617,2857,43,38,34,18,5,15,0,0,26,27,2637,2881,2536,2793,40,32,33,16,5,15,0,0,23,25,88,74,81,64,3,6,1,2,0,0,0,0,3,2 -050,01,095,Alabama,Marshall County,11,13,5295,2497,2798,2427,2706,20,36,23,14,4,18,1,0,22,24,2440,2765,2374,2676,20,35,20,13,4,18,0,0,22,23,57,33,53,30,0,1,3,1,0,0,1,0,0,1 -050,01,095,Alabama,Marshall County,11,14,4424,2079,2345,2038,2299,18,16,9,12,6,4,0,0,8,14,2042,2311,2006,2266,16,16,8,12,5,4,0,0,7,13,37,34,32,33,2,0,1,0,1,0,0,0,1,1 -050,01,095,Alabama,Marshall County,11,15,3438,1533,1905,1492,1862,17,23,7,7,2,4,0,0,15,9,1518,1886,1478,1843,16,23,7,7,2,4,0,0,15,9,15,19,14,19,1,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,11,16,2672,1120,1552,1100,1499,4,25,9,7,3,7,0,0,4,14,1109,1539,1089,1487,4,25,9,7,3,7,0,0,4,13,11,13,11,12,0,0,0,0,0,0,0,0,0,1 -050,01,095,Alabama,Marshall County,11,17,1724,701,1023,685,1007,5,5,3,4,2,1,0,0,6,6,697,1012,682,996,5,5,3,4,2,1,0,0,5,6,4,11,3,11,0,0,0,0,0,0,0,0,1,0 -050,01,095,Alabama,Marshall County,11,18,1378,368,1010,355,995,5,8,2,1,2,0,0,0,4,6,364,1001,351,987,5,7,2,1,2,0,0,0,4,6,4,9,4,8,0,1,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,11,99,92213,45467,46746,42896,44488,924,817,574,461,242,260,118,100,713,620,39507,41910,37688,40218,711,659,283,249,221,246,35,20,569,518,5960,4836,5208,4270,213,158,291,212,21,14,83,80,144,102 -050,01,095,Alabama,Marshall County,12,0,1221,625,596,576,545,12,14,5,11,5,3,5,4,22,19,434,410,402,380,11,11,2,2,3,3,1,0,15,14,191,186,174,165,1,3,3,9,2,0,4,4,7,5 -050,01,095,Alabama,Marshall County,12,1,5325,2708,2617,2476,2387,64,65,42,54,14,12,14,15,98,84,1959,1873,1816,1737,41,42,8,14,12,9,3,2,79,69,749,744,660,650,23,23,34,40,2,3,11,13,19,15 -050,01,095,Alabama,Marshall County,12,2,6362,3206,3156,2968,2916,72,63,45,40,18,27,15,14,88,96,2517,2490,2372,2338,43,42,12,12,14,21,6,4,70,73,689,666,596,578,29,21,33,28,4,6,9,10,18,23 -050,01,095,Alabama,Marshall County,12,3,6341,3318,3023,3078,2828,67,67,53,36,24,14,10,11,86,67,2817,2579,2652,2440,45,51,24,17,24,13,4,0,68,58,501,444,426,388,22,16,29,19,0,1,6,11,18,9 -050,01,095,Alabama,Marshall County,12,4,6568,3473,3095,3229,2899,92,81,41,31,24,8,14,10,73,66,2985,2720,2798,2558,82,73,20,17,20,7,2,5,63,60,488,375,431,341,10,8,21,14,4,1,12,5,10,6 -050,01,095,Alabama,Marshall County,12,5,5584,2907,2677,2673,2515,107,62,59,36,18,16,16,12,34,36,2152,2192,2010,2083,78,46,20,17,17,15,4,1,23,30,755,485,663,432,29,16,39,19,1,1,12,11,11,6 -050,01,095,Alabama,Marshall County,12,6,5805,2962,2843,2749,2694,82,52,59,48,18,13,15,11,39,25,2115,2239,2008,2155,54,34,14,19,18,12,4,4,17,15,847,604,741,539,28,18,45,29,0,1,11,7,22,10 -050,01,095,Alabama,Marshall County,12,7,5559,2814,2745,2633,2589,57,43,51,46,20,20,14,8,39,39,2199,2296,2090,2197,38,29,21,22,17,18,8,2,25,28,615,449,543,392,19,14,30,24,3,2,6,6,14,11 -050,01,095,Alabama,Marshall County,12,8,6211,3067,3144,2851,2951,79,68,59,42,33,34,5,7,40,42,2601,2760,2463,2626,61,51,19,20,30,33,0,2,28,28,466,384,388,325,18,17,40,22,3,1,5,5,12,14 -050,01,095,Alabama,Marshall County,12,9,5968,3031,2937,2846,2773,84,65,35,40,27,17,3,7,36,35,2698,2721,2561,2587,69,57,15,29,25,16,2,3,26,29,333,216,285,186,15,8,20,11,2,1,1,4,10,6 -050,01,095,Alabama,Marshall County,12,10,6606,3283,3323,3133,3195,62,47,34,29,21,22,4,3,29,27,3069,3158,2943,3039,52,44,22,25,21,22,3,1,28,27,214,165,190,156,10,3,12,4,0,0,1,2,1,0 -050,01,095,Alabama,Marshall County,12,11,6402,3206,3196,3072,3073,41,41,32,31,12,18,4,3,45,30,3086,3085,2966,2974,38,40,28,25,11,17,1,1,42,28,120,111,106,99,3,1,4,6,1,1,3,2,3,2 -050,01,095,Alabama,Marshall County,12,12,5786,2765,3021,2642,2908,54,48,35,17,7,15,0,0,27,33,2660,2946,2543,2843,51,42,34,15,7,15,0,0,25,31,105,75,99,65,3,6,1,2,0,0,0,0,2,2 -050,01,095,Alabama,Marshall County,12,13,5419,2547,2872,2475,2774,22,34,20,16,5,20,1,0,24,28,2486,2827,2419,2732,22,33,16,15,5,20,0,0,24,27,61,45,56,42,0,1,4,1,0,0,1,0,0,1 -050,01,095,Alabama,Marshall County,12,14,4523,2138,2385,2081,2336,25,19,15,11,6,4,0,0,11,15,2101,2353,2050,2305,22,19,14,11,5,4,0,0,10,14,37,32,31,31,3,0,1,0,1,0,0,0,1,1 -050,01,095,Alabama,Marshall County,12,15,3490,1585,1905,1547,1865,15,16,7,9,2,4,0,0,14,11,1570,1887,1533,1848,14,16,7,8,2,4,0,0,14,11,15,18,14,17,1,0,0,1,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,12,16,2675,1116,1559,1097,1508,4,21,8,8,3,9,0,0,4,13,1106,1544,1087,1494,4,21,8,8,3,9,0,0,4,12,10,15,10,14,0,0,0,0,0,0,0,0,0,1 -050,01,095,Alabama,Marshall County,12,17,1781,702,1079,687,1061,4,6,3,4,2,1,0,0,6,7,698,1068,684,1050,4,6,3,4,2,1,0,0,5,7,4,11,3,11,0,0,0,0,0,0,0,0,1,0 -050,01,095,Alabama,Marshall County,12,18,1393,390,1003,376,987,5,8,2,1,2,0,0,0,5,7,386,994,372,979,5,7,2,1,2,0,0,0,5,7,4,9,4,8,0,1,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,12,99,93019,45843,47176,43189,44804,948,820,605,510,261,257,120,105,720,680,39639,42142,37769,40365,734,664,289,281,238,239,38,25,571,568,6204,5034,5420,4439,214,156,316,229,23,18,82,80,149,112 -050,01,095,Alabama,Marshall County,13,0,1228,630,598,579,545,13,15,5,11,5,3,5,4,23,20,436,412,403,380,12,12,2,2,3,3,1,0,15,15,194,186,176,165,1,3,3,9,2,0,4,4,8,5 -050,01,095,Alabama,Marshall County,13,1,5332,2712,2620,2474,2388,68,67,41,54,15,12,14,17,100,82,1958,1871,1811,1733,43,43,7,14,13,9,3,3,81,69,754,749,663,655,25,24,34,40,2,3,11,14,19,13 -050,01,095,Alabama,Marshall County,13,2,6376,3215,3161,2972,2920,72,65,48,41,18,27,14,13,91,95,2523,2491,2371,2338,44,44,13,13,15,21,6,3,74,72,692,670,601,582,28,21,35,28,3,6,8,10,17,23 -050,01,095,Alabama,Marshall County,13,3,6346,3321,3025,3081,2833,67,66,53,38,25,15,10,9,85,64,2814,2579,2650,2440,44,51,24,18,24,14,4,0,68,56,507,446,431,393,23,15,29,20,1,1,6,9,17,8 -050,01,095,Alabama,Marshall County,13,4,6536,3458,3078,3214,2887,93,81,38,28,26,8,13,7,74,67,2968,2702,2780,2544,81,72,19,15,22,7,1,3,65,61,490,376,434,343,12,9,19,13,4,1,12,4,9,6 -050,01,095,Alabama,Marshall County,13,5,5621,2929,2692,2686,2525,108,67,62,39,20,15,19,11,34,35,2164,2206,2017,2091,79,50,22,19,18,15,5,1,23,30,765,486,669,434,29,17,40,20,2,0,14,10,11,5 -050,01,095,Alabama,Marshall County,13,6,5833,2983,2850,2765,2700,84,52,62,49,18,13,15,10,39,26,2132,2246,2021,2161,55,35,15,19,18,12,4,3,19,16,851,604,744,539,29,17,47,30,0,1,11,7,20,10 -050,01,095,Alabama,Marshall County,13,7,5602,2836,2766,2655,2608,60,45,52,47,19,19,13,8,37,39,2218,2313,2109,2213,40,31,22,21,16,17,7,2,24,29,618,453,546,395,20,14,30,26,3,2,6,6,13,10 -050,01,095,Alabama,Marshall County,13,8,6173,3048,3125,2832,2933,79,68,59,44,33,33,5,5,40,42,2584,2743,2444,2608,61,50,19,21,30,32,0,2,30,30,464,382,388,325,18,18,40,23,3,1,5,3,10,12 -050,01,095,Alabama,Marshall County,13,9,5967,3030,2937,2847,2772,85,66,34,41,26,17,2,7,36,34,2695,2721,2559,2586,70,59,14,29,24,16,1,3,27,28,335,216,288,186,15,7,20,12,2,1,1,4,9,6 -050,01,095,Alabama,Marshall County,13,10,6583,3270,3313,3120,3184,64,48,36,29,19,22,3,2,28,28,3054,3148,2931,3028,53,44,22,26,19,22,2,0,27,28,216,165,189,156,11,4,14,3,0,0,1,2,1,0 -050,01,095,Alabama,Marshall County,13,11,6412,3211,3201,3077,3077,43,41,33,32,12,18,4,3,42,30,3091,3091,2971,2979,39,40,29,26,11,17,1,1,40,28,120,110,106,98,4,1,4,6,1,1,3,2,2,2 -050,01,095,Alabama,Marshall County,13,12,5828,2785,3043,2661,2927,57,50,36,19,6,15,0,0,25,32,2680,2969,2562,2862,54,44,35,17,6,15,0,0,23,31,105,74,99,65,3,6,1,2,0,0,0,0,2,1 -050,01,095,Alabama,Marshall County,13,13,5475,2569,2906,2500,2804,23,36,19,17,5,20,0,0,22,29,2508,2861,2443,2762,23,34,15,16,5,20,0,0,22,29,61,45,57,42,0,2,4,1,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,13,14,4553,2155,2398,2096,2349,28,21,14,11,7,4,0,0,10,13,2119,2367,2065,2318,25,21,13,11,6,4,0,0,10,13,36,31,31,31,3,0,1,0,1,0,0,0,0,0 -050,01,095,Alabama,Marshall County,13,15,3506,1593,1913,1557,1875,15,16,8,7,2,5,0,0,11,10,1577,1896,1542,1858,14,16,8,7,2,5,0,0,11,10,16,17,15,17,1,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,13,16,2676,1120,1556,1100,1505,7,22,8,7,2,11,0,0,3,11,1109,1544,1089,1493,7,22,8,7,2,11,0,0,3,11,11,12,11,12,0,0,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,13,17,1785,704,1081,691,1062,4,6,2,5,1,1,0,0,6,7,699,1068,687,1049,4,6,2,5,1,1,0,0,5,7,5,13,4,13,0,0,0,0,0,0,0,0,1,0 -050,01,095,Alabama,Marshall County,13,18,1403,394,1009,380,992,5,8,2,1,2,0,0,0,5,8,390,1000,376,984,5,7,2,1,2,0,0,0,5,8,4,9,4,8,0,1,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,13,99,93235,45963,47272,43287,44886,975,840,612,520,261,258,117,96,711,672,39719,42228,37831,40427,753,681,291,287,237,241,35,21,572,571,6244,5044,5456,4459,222,159,321,233,24,17,82,75,139,101 -050,01,097,Alabama,Mobile County,1,0,5913,3076,2837,1716,1580,1232,1133,22,20,41,49,1,0,64,55,3019,2783,1673,1540,1220,1123,22,20,40,49,1,0,63,51,57,54,43,40,12,10,0,0,1,0,0,0,1,4 -050,01,097,Alabama,Mobile County,1,1,23421,12015,11406,6718,6283,4848,4710,98,74,180,174,2,4,169,161,11846,11241,6588,6160,4815,4679,95,69,180,173,1,4,167,156,169,165,130,123,33,31,3,5,0,1,1,0,2,5 -050,01,097,Alabama,Mobile County,1,2,31177,15915,15262,8611,8189,6730,6507,130,112,241,242,3,7,200,205,15687,15050,8446,8029,6685,6468,127,111,239,240,3,4,187,198,228,212,165,160,45,39,3,1,2,2,0,3,13,7 -050,01,097,Alabama,Mobile County,1,3,30928,15709,15219,8717,8423,6458,6299,124,140,247,195,0,9,163,153,15501,15034,8563,8289,6420,6263,122,138,245,192,0,6,151,146,208,185,154,134,38,36,2,2,2,3,0,3,12,7 -050,01,097,Alabama,Mobile County,1,4,30504,15251,15253,8757,8559,5941,6162,144,112,289,267,2,2,118,151,15030,15052,8574,8407,5914,6123,140,112,287,267,1,1,114,142,221,201,183,152,27,39,4,0,2,0,1,1,4,9 -050,01,097,Alabama,Mobile County,1,5,27935,13259,14676,8198,8595,4431,5588,103,100,423,271,9,2,95,120,13014,14478,7996,8452,4400,5546,99,98,420,268,6,2,93,112,245,198,202,143,31,42,4,2,3,3,3,0,2,8 -050,01,097,Alabama,Mobile County,1,6,26890,12995,13895,8789,8581,3587,4808,96,95,421,303,10,4,92,104,12737,13702,8569,8419,3558,4787,93,93,420,300,8,4,89,99,258,193,220,162,29,21,3,2,1,3,2,0,3,5 -050,01,097,Alabama,Mobile County,1,7,26371,12576,13795,8610,8744,3522,4625,92,103,269,231,4,4,79,88,12342,13586,8410,8577,3500,4594,86,100,268,231,3,3,75,81,234,209,200,167,22,31,6,3,1,0,1,1,4,7 -050,01,097,Alabama,Mobile County,1,8,30022,14358,15664,9842,9782,4137,5467,107,120,171,178,5,4,96,113,14158,15481,9674,9629,4117,5442,99,119,168,178,5,3,95,110,200,183,168,153,20,25,8,1,3,0,0,1,1,3 -050,01,097,Alabama,Mobile County,1,9,31336,15084,16252,10064,10094,4663,5733,101,132,146,196,4,4,106,93,14873,16102,9889,9973,4636,5711,96,130,146,194,4,3,102,91,211,150,175,121,27,22,5,2,0,2,0,1,4,2 -050,01,097,Alabama,Mobile County,1,10,27672,13435,14237,9100,9014,3969,4811,105,107,169,193,4,4,88,108,13324,14106,9005,8908,3957,4793,104,105,168,192,3,4,87,104,111,131,95,106,12,18,1,2,1,1,1,0,1,4 -050,01,097,Alabama,Mobile County,1,11,24802,11925,12877,8549,8782,3074,3753,94,84,143,158,3,3,62,97,11799,12766,8451,8700,3052,3730,94,84,142,156,2,3,58,93,126,111,98,82,22,23,0,0,1,2,1,0,4,4 -050,01,097,Alabama,Mobile County,1,12,19177,9006,10171,6679,7194,2111,2725,62,58,99,121,3,1,52,72,8929,10089,6612,7133,2105,2705,61,58,98,121,1,1,52,71,77,82,67,61,6,20,1,0,1,0,2,0,0,1 -050,01,097,Alabama,Mobile County,1,13,15806,7386,8420,5367,5781,1871,2485,30,27,71,51,0,3,47,73,7334,8353,5324,5729,1865,2471,30,27,70,51,0,3,45,72,52,67,43,52,6,14,0,0,1,0,0,0,2,1 -050,01,097,Alabama,Mobile County,1,14,13483,6102,7381,4468,5150,1520,2121,23,21,57,41,2,0,32,48,6062,7315,4440,5102,1512,2105,23,20,54,41,1,0,32,47,40,66,28,48,8,16,0,1,3,0,1,0,0,1 -050,01,097,Alabama,Mobile County,1,15,12559,5208,7351,3924,5251,1211,1988,20,27,24,30,0,2,29,53,5166,7306,3891,5215,1203,1979,20,27,24,30,0,2,28,53,42,45,33,36,8,9,0,0,0,0,0,0,1,0 -050,01,097,Alabama,Mobile County,1,16,10225,4002,6223,3035,4526,929,1650,14,10,7,15,0,0,17,22,3972,6178,3010,4487,924,1644,14,10,7,15,0,0,17,22,30,45,25,39,5,6,0,0,0,0,0,0,0,0 -050,01,097,Alabama,Mobile County,1,17,6349,2274,4075,1740,3016,521,1022,0,7,5,7,1,0,7,23,2259,4052,1727,2998,519,1018,0,7,5,7,1,0,7,22,15,23,13,18,2,4,0,0,0,0,0,0,0,1 -050,01,097,Alabama,Mobile County,1,18,5317,1489,3828,1053,2738,426,1056,4,10,4,4,0,1,2,19,1479,3795,1046,2713,425,1050,2,10,4,4,0,0,2,18,10,33,7,25,1,6,2,0,0,0,0,1,0,1 -050,01,097,Alabama,Mobile County,1,99,399887,191065,208822,123937,130282,61181,72643,1369,1359,3007,2726,53,54,1518,1758,188531,206469,121888,128460,60827,72231,1327,1338,2985,2709,40,43,1464,1688,2534,2353,2049,1822,354,412,42,21,22,17,13,11,54,70 -050,01,097,Alabama,Mobile County,2,0,5969,3106,2863,1723,1587,1247,1144,22,21,44,52,1,0,69,59,3047,2807,1678,1545,1235,1134,22,21,43,52,1,0,68,55,59,56,45,42,12,10,0,0,1,0,0,0,1,4 -050,01,097,Alabama,Mobile County,2,1,23247,11923,11324,6653,6227,4815,4679,97,74,182,178,2,4,174,162,11756,11159,6525,6105,4782,4647,94,69,182,177,1,4,172,157,167,165,128,122,33,32,3,5,0,1,1,0,2,5 -050,01,097,Alabama,Mobile County,2,2,30912,15776,15136,8510,8097,6690,6467,129,112,241,247,3,7,203,206,15545,14920,8343,7933,6644,6428,126,111,239,245,3,4,190,199,231,216,167,164,46,39,3,1,2,2,0,3,13,7 -050,01,097,Alabama,Mobile County,2,3,31025,15761,15264,8709,8412,6505,6355,129,144,250,195,0,9,168,149,15544,15075,8548,8275,6466,6318,127,142,248,192,0,6,155,142,217,189,161,137,39,37,2,2,2,3,0,3,13,7 -050,01,097,Alabama,Mobile County,2,4,30563,15305,15258,8779,8555,5971,6171,149,113,283,265,2,2,121,152,15080,15057,8593,8403,5944,6132,144,113,281,265,1,1,117,143,225,201,186,152,27,39,5,0,2,0,1,1,4,9 -050,01,097,Alabama,Mobile County,2,5,28117,13349,14768,8264,8663,4474,5632,105,102,397,259,9,2,100,110,13092,14572,8053,8519,4440,5592,101,100,394,256,6,2,98,103,257,196,211,144,34,40,4,2,3,3,3,0,2,7 -050,01,097,Alabama,Mobile County,2,6,26654,12876,13778,8691,8473,3565,4787,95,94,422,308,10,4,93,112,12609,13582,8465,8310,3535,4764,90,92,421,305,8,4,90,107,267,196,226,163,30,23,5,2,1,3,2,0,3,5 -050,01,097,Alabama,Mobile County,2,7,26258,12525,13733,8563,8690,3511,4611,91,103,277,237,4,4,79,88,12287,13521,8359,8522,3489,4578,85,100,276,237,3,3,75,81,238,212,204,168,22,33,6,3,1,0,1,1,4,7 -050,01,097,Alabama,Mobile County,2,8,29882,14291,15591,9766,9709,4132,5458,108,120,174,181,5,4,106,119,14087,15408,9595,9556,4111,5433,100,119,171,181,5,3,105,116,204,183,171,153,21,25,8,1,3,0,0,1,1,3 -050,01,097,Alabama,Mobile County,2,9,31401,15118,16283,10058,10091,4691,5762,102,136,147,198,4,4,116,92,14904,16126,9880,9964,4664,5739,97,134,147,196,4,3,112,90,214,157,178,127,27,23,5,2,0,2,0,1,4,2 -050,01,097,Alabama,Mobile County,2,10,27817,13504,14313,9142,9046,3996,4844,108,110,172,197,4,4,82,112,13388,14175,9042,8935,3984,4824,107,108,171,196,3,4,81,108,116,138,100,111,12,20,1,2,1,1,1,0,1,4 -050,01,097,Alabama,Mobile County,2,11,25081,12074,13007,8626,8845,3127,3802,100,86,146,166,3,3,72,105,11944,12892,8525,8760,3104,3778,100,86,145,164,2,3,68,101,130,115,101,85,23,24,0,0,1,2,1,0,4,4 -050,01,097,Alabama,Mobile County,2,12,19296,9061,10235,6714,7223,2127,2746,64,59,100,125,3,1,53,81,8980,10153,6643,7162,2121,2726,63,59,99,125,1,1,53,80,81,82,71,61,6,20,1,0,1,0,2,0,0,1 -050,01,097,Alabama,Mobile County,2,13,15877,7423,8454,5382,5795,1884,2499,32,27,71,53,0,3,54,77,7369,8385,5337,5741,1878,2485,32,27,70,53,0,3,52,76,54,69,45,54,6,14,0,0,1,0,0,0,2,1 -050,01,097,Alabama,Mobile County,2,14,13456,6096,7360,4454,5122,1529,2127,24,22,57,41,2,0,30,48,6055,7295,4425,5075,1521,2111,24,21,54,41,1,0,30,47,41,65,29,47,8,16,0,1,3,0,1,0,0,1 -050,01,097,Alabama,Mobile County,2,15,12551,5207,7344,3916,5232,1220,1991,20,27,24,31,0,2,27,61,5165,7299,3883,5196,1212,1982,20,27,24,31,0,2,26,61,42,45,33,36,8,9,0,0,0,0,0,0,1,0 -050,01,097,Alabama,Mobile County,2,16,10257,4020,6237,3037,4520,945,1668,14,10,7,15,0,0,17,24,3990,6192,3012,4481,940,1662,14,10,7,15,0,0,17,24,30,45,25,39,5,6,0,0,0,0,0,0,0,0 -050,01,097,Alabama,Mobile County,2,17,6384,2294,4090,1753,3026,527,1028,0,7,5,7,1,0,8,22,2279,4067,1740,3008,525,1024,0,7,5,7,1,0,8,21,15,23,13,18,2,4,0,0,0,0,0,0,0,1 -050,01,097,Alabama,Mobile County,2,18,5326,1492,3834,1059,2742,424,1055,4,10,4,4,0,1,1,22,1483,3800,1053,2716,423,1049,2,10,4,4,0,0,1,21,9,34,6,26,1,6,2,0,0,0,0,1,0,1 -050,01,097,Alabama,Mobile County,2,99,400073,191201,208872,123799,130055,61380,72826,1393,1377,3003,2759,53,54,1573,1801,188604,206485,121699,128206,61018,72406,1348,1356,2981,2742,40,43,1518,1732,2597,2387,2100,1849,362,420,45,21,22,17,13,11,55,69 -050,01,097,Alabama,Mobile County,3,0,5960,3076,2884,1791,1627,1177,1139,13,15,28,33,1,0,66,70,3019,2818,1746,1574,1169,1132,13,15,26,33,1,0,64,64,57,66,45,53,8,7,0,0,2,0,0,0,2,6 -050,01,097,Alabama,Mobile County,3,1,23213,11946,11267,6658,6222,4806,4582,85,84,192,190,5,4,200,185,11727,11084,6485,6090,4774,4548,81,77,189,189,3,3,195,177,219,183,173,132,32,34,4,7,3,1,2,1,5,8 -050,01,097,Alabama,Mobile County,3,2,30063,15385,14678,8316,7799,6490,6309,125,109,233,246,3,6,218,209,15135,14428,8137,7617,6445,6263,120,104,231,242,3,3,199,199,250,250,179,182,45,46,5,5,2,4,0,3,19,10 -050,01,097,Alabama,Mobile County,3,3,30858,15744,15114,8658,8283,6529,6351,120,140,259,182,2,9,176,149,15512,14939,8481,8157,6498,6319,116,135,256,179,1,5,160,144,232,175,177,126,31,32,4,5,3,3,1,4,16,5 -050,01,097,Alabama,Mobile County,3,4,29930,14996,14934,8456,8237,5995,6145,159,116,252,275,2,1,132,160,14759,14731,8257,8082,5975,6114,152,113,250,275,1,1,124,146,237,203,199,155,20,31,7,3,2,0,1,0,8,14 -050,01,097,Alabama,Mobile County,3,5,29064,13878,15186,8513,8961,4686,5719,121,125,431,259,12,6,115,116,13595,14960,8285,8789,4653,5680,115,120,427,256,7,6,108,109,283,226,228,172,33,39,6,5,4,3,5,0,7,7 -050,01,097,Alabama,Mobile County,3,6,26075,12481,13594,8344,8230,3589,4859,69,84,372,307,10,6,97,108,12175,13373,8088,8049,3562,4835,60,80,369,303,7,5,89,101,306,221,256,181,27,24,9,4,3,4,3,1,8,7 -050,01,097,Alabama,Mobile County,3,7,26005,12497,13508,8628,8546,3376,4531,98,85,290,232,7,7,98,107,12247,13291,8415,8379,3358,4498,90,78,288,232,5,6,91,98,250,217,213,167,18,33,8,7,2,0,2,1,7,9 -050,01,097,Alabama,Mobile County,3,8,28815,13814,15001,9333,9208,4069,5350,105,136,188,197,8,4,111,106,13597,14812,9159,9053,4050,5328,94,132,184,196,4,2,106,101,217,189,174,155,19,22,11,4,4,1,4,2,5,5 -050,01,097,Alabama,Mobile County,3,9,31505,15020,16485,10065,10205,4561,5837,111,145,157,188,5,3,121,107,14792,16299,9880,10054,4533,5811,103,143,156,185,4,2,116,104,228,186,185,151,28,26,8,2,1,3,1,1,5,3 -050,01,097,Alabama,Mobile County,3,10,28553,13824,14729,9285,9234,4164,5056,112,110,163,204,7,5,93,120,13659,14582,9148,9122,4146,5033,108,106,162,203,5,5,90,113,165,147,137,112,18,23,4,4,1,1,2,0,3,7 -050,01,097,Alabama,Mobile County,3,11,26057,12651,13406,8890,9037,3415,4006,106,87,148,164,2,3,90,109,12527,13302,8797,8956,3395,3991,105,86,146,161,1,3,83,105,124,104,93,81,20,15,1,1,2,3,1,0,7,4 -050,01,097,Alabama,Mobile County,3,12,19841,9347,10494,6901,7377,2212,2840,67,70,103,127,3,2,61,78,9264,10403,6830,7315,2204,2815,66,68,102,126,1,2,61,77,83,91,71,62,8,25,1,2,1,1,2,0,0,1 -050,01,097,Alabama,Mobile County,3,13,16151,7450,8701,5452,6016,1842,2511,33,29,73,66,2,4,48,75,7394,8634,5407,5969,1833,2494,33,28,72,65,2,4,47,74,56,67,45,47,9,17,0,1,1,1,0,0,1,1 -050,01,097,Alabama,Mobile County,3,14,13597,6276,7321,4548,5037,1612,2171,17,14,58,48,3,0,38,51,6236,7263,4522,4999,1602,2153,17,13,55,48,2,0,38,50,40,58,26,38,10,18,0,1,3,0,1,0,0,1 -050,01,097,Alabama,Mobile County,3,15,12275,5125,7150,3859,5114,1185,1912,16,26,35,37,1,3,29,58,5081,7088,3827,5062,1175,1902,15,26,35,37,1,3,28,58,44,62,32,52,10,10,1,0,0,0,0,0,1,0 -050,01,097,Alabama,Mobile County,3,16,10296,4058,6238,3053,4514,964,1681,17,8,6,10,0,0,18,25,4035,6193,3035,4475,959,1675,17,8,6,10,0,0,18,25,23,45,18,39,5,6,0,0,0,0,0,0,0,0 -050,01,097,Alabama,Mobile County,3,17,6612,2356,4256,1787,3141,550,1065,1,7,4,15,1,0,13,28,2334,4234,1770,3127,545,1058,1,7,4,15,1,0,13,27,22,22,17,14,5,7,0,0,0,0,0,0,0,1 -050,01,097,Alabama,Mobile County,3,18,5259,1504,3755,1090,2692,405,1029,3,9,4,4,0,1,2,20,1499,3724,1087,2666,404,1026,2,9,4,4,0,0,2,19,5,31,3,26,1,3,1,0,0,0,0,1,0,1 -050,01,097,Alabama,Mobile County,3,99,400129,191428,208701,123627,129480,61627,73093,1378,1399,2996,2784,74,64,1726,1881,188587,206158,121356,127535,61280,72675,1308,1348,2962,2759,49,50,1632,1791,2841,2543,2271,1945,347,418,70,51,34,25,25,14,94,90 -050,01,097,Alabama,Mobile County,4,0,5847,2995,2852,1698,1596,1168,1146,16,16,40,26,2,1,71,67,2942,2794,1653,1552,1163,1139,16,15,39,26,2,1,69,61,53,58,45,44,5,7,0,1,1,0,0,0,2,6 -050,01,097,Alabama,Mobile County,4,1,22865,11800,11065,6612,6128,4704,4493,72,69,188,158,4,6,220,211,11549,10858,6417,5977,4667,4459,68,63,184,157,2,5,211,197,251,207,195,151,37,34,4,6,4,1,2,1,9,14 -050,01,097,Alabama,Mobile County,4,2,29253,14997,14256,8076,7524,6340,6133,127,110,228,271,3,4,223,214,14743,14020,7888,7350,6298,6093,123,105,227,268,3,1,204,203,254,236,188,174,42,40,4,5,1,3,0,3,19,11 -050,01,097,Alabama,Mobile County,4,3,30551,15488,15063,8380,8077,6525,6472,141,133,258,195,3,10,181,176,15271,14875,8217,7936,6496,6441,136,129,256,193,2,6,164,170,217,188,163,141,29,31,5,4,2,2,1,4,17,6 -050,01,097,Alabama,Mobile County,4,4,29500,14820,14680,8354,8158,5936,5979,141,131,251,244,2,2,136,166,14577,14470,8154,7994,5913,5949,132,128,249,244,1,1,128,154,243,210,200,164,23,30,9,3,2,0,1,1,8,12 -050,01,097,Alabama,Mobile County,4,5,29105,13832,15273,8385,8952,4719,5778,129,122,453,300,13,7,133,114,13530,15028,8153,8768,4677,5733,123,117,448,296,7,7,122,107,302,245,232,184,42,45,6,5,5,4,6,0,11,7 -050,01,097,Alabama,Mobile County,4,6,26019,12468,13551,8291,8127,3619,4918,74,90,370,294,14,5,100,117,12157,13317,8031,7946,3600,4888,63,84,367,291,8,4,88,104,311,234,260,181,19,30,11,6,3,3,6,1,12,13 -050,01,097,Alabama,Mobile County,4,7,25682,12382,13300,8482,8297,3363,4529,109,93,335,272,7,5,86,104,12086,13088,8235,8129,3340,4503,99,87,333,272,4,4,75,93,296,212,247,168,23,26,10,6,2,0,3,1,11,11 -050,01,097,Alabama,Mobile County,4,8,27580,13237,14343,8912,8793,3906,5117,106,122,186,201,9,3,118,107,13017,14136,8740,8627,3887,5089,94,118,181,201,6,1,109,100,220,207,172,166,19,28,12,4,5,0,3,2,9,7 -050,01,097,Alabama,Mobile County,4,9,30878,14752,16126,9884,10004,4448,5694,116,133,168,175,4,8,132,112,14528,15930,9701,9836,4426,5675,107,131,165,172,3,7,126,109,224,196,183,168,22,19,9,2,3,3,1,1,6,3 -050,01,097,Alabama,Mobile County,4,10,29414,14113,15301,9383,9499,4340,5316,118,131,165,222,10,5,97,128,13920,15138,9224,9384,4320,5284,112,127,164,220,7,4,93,119,193,163,159,115,20,32,6,4,1,2,3,1,4,9 -050,01,097,Alabama,Mobile County,4,11,25805,12539,13266,8645,8712,3545,4186,106,76,142,177,4,4,97,111,12405,13149,8545,8625,3524,4167,102,75,140,175,3,4,91,103,134,117,100,87,21,19,4,1,2,2,1,0,6,8 -050,01,097,Alabama,Mobile County,4,12,21553,10253,11300,7577,7948,2398,3039,93,84,125,139,3,3,57,87,10160,11209,7506,7879,2382,3021,91,82,124,138,1,3,56,86,93,91,71,69,16,18,2,2,1,1,2,0,1,1 -050,01,097,Alabama,Mobile County,4,13,16373,7540,8833,5489,6145,1874,2493,38,39,74,79,2,5,63,72,7475,8773,5436,6100,1866,2481,37,38,73,78,2,5,61,71,65,60,53,45,8,12,1,1,1,1,0,0,2,1 -050,01,097,Alabama,Mobile County,4,14,13640,6299,7341,4561,4985,1622,2226,20,19,59,48,2,1,35,62,6259,7279,4533,4945,1615,2208,19,17,57,48,1,1,34,60,40,62,28,40,7,18,1,2,2,0,1,0,1,2 -050,01,097,Alabama,Mobile County,4,15,12058,5096,6962,3806,4963,1191,1878,22,23,44,44,1,3,32,51,5047,6900,3769,4912,1182,1868,22,23,44,44,1,3,29,50,49,62,37,51,9,10,0,0,0,0,0,0,3,1 -050,01,097,Alabama,Mobile County,4,16,10351,4132,6219,3119,4534,961,1629,18,13,11,11,0,0,23,32,4111,6173,3102,4495,957,1622,18,13,11,11,0,0,23,32,21,46,17,39,4,7,0,0,0,0,0,0,0,0 -050,01,097,Alabama,Mobile County,4,17,6774,2397,4377,1828,3228,552,1100,1,11,4,12,1,0,11,26,2382,4352,1818,3208,547,1096,1,11,4,12,1,0,11,25,15,25,10,20,5,4,0,0,0,0,0,0,0,1 -050,01,097,Alabama,Mobile County,4,18,5301,1518,3783,1130,2716,377,1032,3,8,4,8,0,1,4,18,1508,3752,1122,2690,376,1029,2,8,4,8,0,0,4,17,10,31,8,26,1,3,1,0,0,0,0,1,0,1 -050,01,097,Alabama,Mobile County,4,99,398549,190658,207891,122612,128386,61588,73158,1450,1423,3105,2876,84,73,1819,1975,187667,205241,120244,126353,61236,72745,1365,1371,3070,2854,54,57,1698,1861,2991,2650,2368,2033,352,413,85,52,35,22,30,16,121,114 -050,01,097,Alabama,Mobile County,5,0,5601,2868,2733,1652,1538,1096,1057,19,20,29,47,1,1,71,70,2807,2676,1600,1495,1093,1052,18,18,27,47,1,1,68,63,61,57,52,43,3,5,1,2,2,0,0,0,3,7 -050,01,097,Alabama,Mobile County,5,1,22515,11593,10922,6529,6046,4554,4444,89,77,180,141,6,6,235,208,11337,10708,6330,5883,4523,4418,85,71,174,139,2,4,223,193,256,214,199,163,31,26,4,6,6,2,4,2,12,15 -050,01,097,Alabama,Mobile County,5,2,28615,14644,13971,7879,7414,6174,5935,115,97,243,286,5,7,228,232,14370,13717,7679,7229,6130,5890,108,93,241,283,4,3,208,219,274,254,200,185,44,45,7,4,2,3,1,4,20,13 -050,01,097,Alabama,Mobile County,5,3,30503,15488,15015,8277,7907,6614,6562,146,151,257,208,4,11,190,176,15274,14806,8118,7753,6585,6531,141,144,255,204,2,6,173,168,214,209,159,154,29,31,5,7,2,4,2,5,17,8 -050,01,097,Alabama,Mobile County,5,4,29506,14854,14652,8338,8161,5976,5959,138,133,261,226,5,2,136,171,14595,14432,8128,7994,5950,5929,128,127,259,225,3,1,127,156,259,220,210,167,26,30,10,6,2,1,2,1,9,15 -050,01,097,Alabama,Mobile County,5,5,29156,14019,15137,8436,8762,4799,5749,129,134,494,349,18,9,143,134,13665,14887,8164,8576,4760,5705,117,128,488,346,9,8,127,124,354,250,272,186,39,44,12,6,6,3,9,1,16,10 -050,01,097,Alabama,Mobile County,5,6,26066,12412,13654,8240,8165,3645,4991,73,103,336,277,11,7,107,111,12073,13408,7961,7973,3622,4964,58,97,332,272,5,6,95,96,339,246,279,192,23,27,15,6,4,5,6,1,12,15 -050,01,097,Alabama,Mobile County,5,7,25471,12329,13142,8363,8139,3383,4502,116,103,364,273,11,5,92,120,12027,12917,8108,7977,3367,4465,105,95,362,272,6,3,79,105,302,225,255,162,16,37,11,8,2,1,5,2,13,15 -050,01,097,Alabama,Mobile County,5,8,26557,12730,13827,8594,8459,3705,4910,103,132,210,221,11,4,107,101,12460,13596,8380,8286,3683,4868,89,127,204,220,6,2,98,93,270,231,214,173,22,42,14,5,6,1,5,2,9,8 -050,01,097,Alabama,Mobile County,5,9,30321,14471,15850,9642,9780,4394,5633,113,136,175,180,7,6,140,115,14240,15637,9460,9596,4367,5616,103,132,171,176,5,5,134,112,231,213,182,184,27,17,10,4,4,4,2,1,6,3 -050,01,097,Alabama,Mobile County,5,10,30022,14397,15625,9483,9599,4502,5514,121,153,184,218,8,4,99,137,14198,15457,9317,9479,4483,5485,115,149,183,216,5,3,95,125,199,168,166,120,19,29,6,4,1,2,3,1,4,12 -050,01,097,Alabama,Mobile County,5,11,26026,12623,13403,8636,8635,3647,4389,103,89,139,177,4,3,94,110,12487,13267,8529,8536,3629,4362,98,87,139,175,4,2,88,105,136,136,107,99,18,27,5,2,0,2,0,1,6,5 -050,01,097,Alabama,Mobile County,5,12,22380,10722,11658,7812,8143,2609,3202,113,84,117,147,3,3,68,79,10624,11561,7732,8069,2597,3183,109,82,116,146,2,3,68,78,98,97,80,74,12,19,4,2,1,1,1,0,0,1 -050,01,097,Alabama,Mobile County,5,13,17000,7822,9178,5729,6422,1904,2552,41,44,86,84,1,5,61,71,7759,9114,5680,6376,1895,2538,39,43,84,83,1,5,60,69,63,64,49,46,9,14,2,1,2,1,0,0,1,2 -050,01,097,Alabama,Mobile County,5,14,13943,6457,7486,4668,5109,1659,2261,28,16,64,42,3,2,35,56,6406,7423,4631,5067,1650,2245,27,14,62,42,2,1,34,54,51,63,37,42,9,16,1,2,2,0,1,1,1,2 -050,01,097,Alabama,Mobile County,5,15,11902,5064,6838,3741,4855,1221,1862,23,21,43,46,1,3,35,51,5022,6776,3711,4805,1213,1852,22,21,43,46,1,3,32,49,42,62,30,50,8,10,1,0,0,0,0,0,3,2 -050,01,097,Alabama,Mobile County,5,16,10300,4075,6225,3104,4495,921,1675,15,13,15,17,0,0,20,25,4044,6179,3079,4455,915,1669,15,13,15,17,0,0,20,25,31,46,25,40,6,6,0,0,0,0,0,0,0,0 -050,01,097,Alabama,Mobile County,5,17,6995,2508,4487,1881,3312,611,1127,3,10,5,10,1,0,7,28,2493,4462,1870,3293,607,1122,3,10,5,10,1,0,7,27,15,25,11,19,4,5,0,0,0,0,0,0,0,1 -050,01,097,Alabama,Mobile County,5,18,5203,1492,3711,1134,2687,349,994,2,6,5,8,0,1,2,15,1483,3684,1127,2664,348,992,1,6,5,8,0,0,2,14,9,27,7,23,1,2,1,0,0,0,0,1,0,1 -050,01,097,Alabama,Mobile County,5,99,398082,190568,207514,122138,127628,61763,73318,1490,1522,3207,2957,100,79,1870,2010,187364,204707,119604,125506,61417,72886,1381,1457,3165,2927,59,56,1738,1875,3204,2807,2534,2122,346,432,109,65,42,30,41,23,132,135 -050,01,097,Alabama,Mobile County,6,0,5611,2833,2778,1613,1543,1094,1074,14,16,35,58,1,2,76,85,2764,2717,1554,1495,1088,1068,13,15,34,58,1,2,74,79,69,61,59,48,6,6,1,1,1,0,0,0,2,6 -050,01,097,Alabama,Mobile County,6,1,22196,11454,10742,6491,5977,4469,4304,77,74,159,161,6,6,252,220,11196,10515,6294,5807,4435,4277,72,66,154,159,2,3,239,203,258,227,197,170,34,27,5,8,5,2,4,3,13,17 -050,01,097,Alabama,Mobile County,6,2,27912,14248,13664,7637,7217,5957,5820,128,121,260,275,8,7,258,224,13958,13392,7421,7025,5919,5769,120,115,256,272,6,3,236,208,290,272,216,192,38,51,8,6,4,3,2,4,22,16 -050,01,097,Alabama,Mobile County,6,3,30633,15573,15060,8209,7833,6766,6631,140,157,266,243,5,9,187,187,15344,14837,8046,7668,6732,6597,132,149,264,240,3,5,167,178,229,223,163,165,34,34,8,8,2,3,2,4,20,9 -050,01,097,Alabama,Mobile County,6,4,29502,14828,14674,8347,8109,5916,6020,142,139,261,228,4,2,158,176,14573,14453,8147,7944,5891,5990,131,132,259,227,3,0,142,160,255,221,200,165,25,30,11,7,2,1,1,2,16,16 -050,01,097,Alabama,Mobile County,6,5,28688,13912,14776,8279,8559,4820,5598,134,140,505,313,19,12,155,154,13530,14533,7991,8375,4777,5560,121,132,498,309,9,11,134,146,382,243,288,184,43,38,13,8,7,4,10,1,21,8 -050,01,097,Alabama,Mobile County,6,6,26402,12465,13937,8180,8358,3725,5065,92,109,350,297,13,7,105,101,12100,13647,7879,8131,3702,5031,74,102,345,292,7,6,93,85,365,290,301,227,23,34,18,7,5,5,6,1,12,16 -050,01,097,Alabama,Mobile County,6,7,25151,12216,12935,8234,7823,3373,4580,106,99,393,310,11,8,99,115,11889,12704,7965,7652,3352,4547,91,90,389,308,5,5,87,102,327,231,269,171,21,33,15,9,4,2,6,3,12,13 -050,01,097,Alabama,Mobile County,6,8,25508,12208,13300,8147,8209,3583,4639,116,109,250,234,11,5,101,104,11929,13073,7930,8040,3559,4599,100,104,244,232,5,3,91,95,279,227,217,169,24,40,16,5,6,2,6,2,10,9 -050,01,097,Alabama,Mobile County,6,9,29912,14233,15679,9509,9675,4271,5550,116,136,193,192,6,5,138,121,13981,15456,9314,9484,4240,5533,104,131,189,188,5,4,129,116,252,223,195,191,31,17,12,5,4,4,1,1,9,5 -050,01,097,Alabama,Mobile County,6,10,30428,14640,15788,9560,9685,4662,5614,135,147,165,208,11,3,107,131,14420,15618,9379,9557,4639,5590,127,142,163,206,8,2,104,121,220,170,181,128,23,24,8,5,2,2,3,1,3,10 -050,01,097,Alabama,Mobile County,6,11,26492,12864,13628,8746,8646,3765,4584,92,106,157,180,6,6,98,106,12714,13486,8632,8537,3743,4560,86,105,156,178,5,5,92,101,150,142,114,109,22,24,6,1,1,2,1,1,6,5 -050,01,097,Alabama,Mobile County,6,12,23172,11082,12090,7977,8340,2786,3429,125,73,122,162,3,3,69,83,10969,11995,7886,8271,2771,3410,122,70,121,160,1,3,68,81,113,95,91,69,15,19,3,3,1,2,2,0,1,2 -050,01,097,Alabama,Mobile County,6,13,17883,8267,9616,6028,6714,2035,2650,46,66,94,102,2,3,62,81,8203,9539,5978,6656,2026,2634,45,65,92,101,2,3,60,80,64,77,50,58,9,16,1,1,2,1,0,0,2,1 -050,01,097,Alabama,Mobile County,6,14,14197,6548,7649,4714,5244,1685,2284,28,21,71,37,2,1,48,62,6489,7589,4668,5201,1678,2271,27,19,69,37,1,0,46,61,59,60,46,43,7,13,1,2,2,0,1,1,2,1 -050,01,097,Alabama,Mobile County,6,15,11734,5032,6702,3684,4713,1254,1863,23,22,40,54,1,2,30,48,4987,6648,3652,4669,1245,1854,22,22,40,54,1,2,27,47,45,54,32,44,9,9,1,0,0,0,0,0,3,1 -050,01,097,Alabama,Mobile County,6,16,10042,4002,6040,3072,4372,875,1611,13,13,22,23,0,0,20,21,3977,5991,3052,4333,871,1601,13,13,22,23,0,0,19,21,25,49,20,39,4,10,0,0,0,0,0,0,1,0 -050,01,097,Alabama,Mobile County,6,17,7288,2588,4700,1976,3435,594,1203,2,14,5,16,1,0,10,32,2569,4669,1961,3411,590,1197,2,14,5,16,1,0,10,31,19,31,15,24,4,6,0,0,0,0,0,0,0,1 -050,01,097,Alabama,Mobile County,6,18,5208,1511,3697,1145,2700,353,962,2,8,6,8,0,2,5,17,1502,3665,1137,2672,353,960,1,8,6,8,0,1,5,16,9,32,8,28,0,2,1,0,0,0,0,1,0,1 -050,01,097,Alabama,Mobile County,6,99,397959,190504,207455,121548,127152,61983,73481,1531,1570,3354,3101,110,83,1978,2068,187094,204527,118886,124928,61611,73048,1403,1494,3306,3068,65,58,1823,1931,3410,2928,2662,2224,372,433,128,76,48,33,45,25,155,137 -050,01,097,Alabama,Mobile County,7,0,5584,2833,2751,1609,1499,1095,1102,21,18,35,42,1,2,72,88,2759,2681,1546,1443,1089,1096,20,16,33,42,1,2,70,82,74,70,63,56,6,6,1,2,2,0,0,0,2,6 -050,01,097,Alabama,Mobile County,7,1,21888,11242,10646,6380,5945,4361,4246,80,82,167,137,7,7,247,229,10967,10407,6171,5763,4323,4214,75,74,158,136,3,5,237,215,275,239,209,182,38,32,5,8,9,1,4,2,10,14 -050,01,097,Alabama,Mobile County,7,2,27697,14226,13471,7655,7095,5914,5713,130,120,254,286,5,5,268,252,13896,13179,7403,6890,5868,5656,121,110,251,285,5,2,248,236,330,292,252,205,46,57,9,10,3,1,0,3,20,16 -050,01,097,Alabama,Mobile County,7,3,30335,15383,14952,8053,7716,6696,6609,160,139,267,266,4,8,203,214,15155,14711,7886,7534,6657,6575,153,129,265,264,3,6,191,203,228,241,167,182,39,34,7,10,2,2,1,2,12,11 -050,01,097,Alabama,Mobile County,7,4,29735,15002,14733,8369,8126,6056,6062,136,138,264,222,3,1,174,184,14731,14519,8152,7962,6030,6028,124,135,264,221,3,1,158,172,271,214,217,164,26,34,12,3,0,1,0,0,16,12 -050,01,097,Alabama,Mobile County,7,5,28507,13840,14667,8221,8433,4755,5559,132,160,555,351,15,10,162,154,13442,14389,7895,8226,4727,5510,119,152,550,346,6,9,145,146,398,278,326,207,28,49,13,8,5,5,9,1,17,8 -050,01,097,Alabama,Mobile County,7,6,26825,12708,14117,8280,8385,3878,5215,98,114,335,285,11,5,106,113,12277,13859,7935,8186,3830,5179,82,107,332,280,6,4,92,103,431,258,345,199,48,36,16,7,3,5,5,1,14,10 -050,01,097,Alabama,Mobile County,7,7,24573,11992,12581,8006,7460,3350,4607,112,90,414,309,9,5,101,110,11638,12321,7708,7257,3327,4570,97,82,411,308,5,3,90,101,354,260,298,203,23,37,15,8,3,1,4,2,11,9 -050,01,097,Alabama,Mobile County,7,8,25329,12092,13237,8068,8226,3537,4531,121,119,245,246,14,5,107,110,11806,12995,7846,8046,3512,4488,105,114,240,244,7,3,96,100,286,242,222,180,25,43,16,5,5,2,7,2,11,10 -050,01,097,Alabama,Mobile County,7,9,29055,13853,15202,9217,9340,4197,5418,123,130,186,200,4,3,126,111,13604,14972,9020,9135,4167,5401,112,127,183,197,3,3,119,109,249,230,197,205,30,17,11,3,3,3,1,0,7,2 -050,01,097,Alabama,Mobile County,7,10,30603,14658,15945,9605,9790,4641,5672,130,140,165,217,7,2,110,124,14414,15748,9406,9646,4612,5639,121,136,163,214,6,2,106,111,244,197,199,144,29,33,9,4,2,3,1,0,4,13 -050,01,097,Alabama,Mobile County,7,11,27051,13162,13889,8827,8719,3953,4730,97,119,190,202,5,4,90,115,13011,13749,8717,8610,3927,4710,92,116,188,199,4,3,83,111,151,140,110,109,26,20,5,3,2,3,1,1,7,4 -050,01,097,Alabama,Mobile County,7,12,24369,11701,12668,8297,8611,3083,3726,115,84,133,160,2,5,71,82,11554,12558,8177,8525,3061,3710,113,81,132,158,1,5,70,79,147,110,120,86,22,16,2,3,1,2,1,0,1,3 -050,01,097,Alabama,Mobile County,7,13,18367,8531,9836,6253,6883,2052,2688,65,70,98,112,3,5,60,78,8451,9753,6188,6818,2043,2674,64,68,95,111,3,5,58,77,80,83,65,65,9,14,1,2,3,1,0,0,2,1 -050,01,097,Alabama,Mobile County,7,14,14578,6680,7898,4789,5420,1726,2328,29,26,79,53,5,1,52,70,6609,7831,4736,5372,1716,2315,28,24,77,53,4,0,48,67,71,67,53,48,10,13,1,2,2,0,1,1,4,3 -050,01,097,Alabama,Mobile County,7,15,11859,5195,6664,3797,4687,1296,1850,22,19,47,59,1,2,32,47,5149,6607,3766,4645,1285,1842,21,19,47,58,1,2,29,41,46,57,31,42,11,8,1,0,0,1,0,0,3,6 -050,01,097,Alabama,Mobile County,7,16,9998,3941,6057,3024,4362,858,1632,14,13,27,23,0,0,18,27,3907,6003,2995,4321,855,1619,14,13,27,23,0,0,16,27,34,54,29,41,3,13,0,0,0,0,0,0,2,0 -050,01,097,Alabama,Mobile County,7,17,7224,2627,4597,1991,3365,614,1177,5,14,6,16,1,0,10,25,2606,4567,1976,3341,608,1171,5,14,6,16,1,0,10,25,21,30,15,24,6,6,0,0,0,0,0,0,0,0 -050,01,097,Alabama,Mobile County,7,18,5365,1552,3813,1185,2780,355,999,3,10,5,12,0,2,4,10,1541,3785,1176,2755,354,997,2,10,5,12,0,1,4,10,11,28,9,25,1,2,1,0,0,0,0,1,0,0 -050,01,097,Alabama,Mobile County,7,99,398942,191218,207724,121626,126842,62417,73864,1593,1605,3472,3198,97,72,2013,2143,187517,204634,118699,124475,61991,73394,1468,1527,3427,3167,62,56,1870,2015,3701,3090,2927,2367,426,470,125,78,45,31,35,16,143,128 -050,01,097,Alabama,Mobile County,8,0,5709,2876,2833,1618,1611,1121,1056,17,20,42,46,1,2,77,98,2785,2745,1539,1535,1113,1050,16,19,40,46,1,2,76,93,91,88,79,76,8,6,1,1,2,0,0,0,1,5 -050,01,097,Alabama,Mobile County,8,1,21974,11207,10767,6266,5930,4400,4345,91,88,192,138,10,7,248,259,10907,10511,6034,5732,4357,4314,86,81,185,137,7,5,238,242,300,256,232,198,43,31,5,7,7,1,3,2,10,17 -050,01,097,Alabama,Mobile County,8,2,28007,14391,13616,7777,7215,5954,5710,109,127,251,270,4,3,296,291,14019,13296,7483,6978,5908,5652,104,122,247,268,4,3,273,273,372,320,294,237,46,58,5,5,4,2,0,0,23,18 -050,01,097,Alabama,Mobile County,8,3,29982,15221,14761,8002,7552,6573,6557,145,142,267,286,4,9,230,215,14972,14487,7810,7344,6540,6518,138,132,265,281,3,6,216,206,249,274,192,208,33,39,7,10,2,5,1,3,14,9 -050,01,097,Alabama,Mobile County,8,4,30084,15141,14943,8343,8170,6198,6202,157,142,271,231,5,4,167,194,14847,14711,8107,7987,6172,6174,142,139,270,229,4,2,152,180,294,232,236,183,26,28,15,3,1,2,1,2,15,14 -050,01,097,Alabama,Mobile County,8,5,28335,13797,14538,8123,8241,4817,5634,131,142,529,346,19,15,178,160,13342,14224,7757,8004,4783,5579,115,132,522,344,9,14,156,151,455,314,366,237,34,55,16,10,7,2,10,1,22,9 -050,01,097,Alabama,Mobile County,8,6,27754,13206,14548,8464,8632,4082,5400,116,123,401,274,13,6,130,113,12756,14248,8103,8395,4043,5360,94,116,395,272,8,5,113,100,450,300,361,237,39,40,22,7,6,2,5,1,17,13 -050,01,097,Alabama,Mobile County,8,7,24306,11755,12551,7710,7342,3449,4641,101,103,389,330,11,6,95,129,11376,12294,7388,7149,3426,4606,86,91,386,327,8,4,82,117,379,257,322,193,23,35,15,12,3,3,3,2,13,12 -050,01,097,Alabama,Mobile County,8,8,25379,12179,13200,8191,8239,3427,4479,130,103,306,265,12,3,113,111,11843,12948,7922,8044,3402,4440,114,97,300,263,6,2,99,102,336,252,269,195,25,39,16,6,6,2,6,1,14,9 -050,01,097,Alabama,Mobile County,8,9,28248,13515,14733,8885,8961,4164,5286,126,142,200,227,4,6,136,111,13272,14487,8698,8745,4135,5267,113,138,194,224,3,6,129,107,243,246,187,216,29,19,13,4,6,3,1,0,7,4 -050,01,097,Alabama,Mobile County,8,10,31069,14839,16230,9748,9950,4631,5765,145,159,194,202,8,2,113,152,14567,16010,9529,9787,4599,5734,133,154,191,199,7,2,108,134,272,220,219,163,32,31,12,5,3,3,1,0,5,18 -050,01,097,Alabama,Mobile County,8,11,27951,13575,14376,9034,8954,4159,4959,103,118,182,220,6,5,91,120,13406,14220,8902,8832,4135,4937,99,115,181,217,5,4,84,115,169,156,132,122,24,22,4,3,1,3,1,1,7,5 -050,01,097,Alabama,Mobile County,8,12,25370,12198,13172,8490,8851,3349,3946,121,98,152,187,2,5,84,85,12055,13045,8375,8753,3327,3927,120,94,151,185,0,5,82,81,143,127,115,98,22,19,1,4,1,2,2,0,2,4 -050,01,097,Alabama,Mobile County,8,13,19015,8845,10170,6443,7106,2161,2788,67,76,107,117,4,5,63,78,8757,10081,6368,7038,2154,2772,66,74,104,116,4,4,61,77,88,89,75,68,7,16,1,2,3,1,0,1,2,1 -050,01,097,Alabama,Mobile County,8,14,14967,6794,8173,4936,5650,1681,2369,34,26,78,55,4,2,61,71,6722,8097,4883,5599,1671,2352,34,24,76,55,3,1,55,66,72,76,53,51,10,17,0,2,2,0,1,1,6,5 -050,01,097,Alabama,Mobile County,8,15,11971,5320,6651,3870,4585,1360,1929,18,20,42,68,1,2,29,47,5268,6595,3831,4546,1349,1921,17,20,42,67,1,2,28,39,52,56,39,39,11,8,1,0,0,1,0,0,1,8 -050,01,097,Alabama,Mobile County,8,16,9835,3910,5925,3007,4267,832,1590,10,12,40,26,0,0,21,30,3873,5848,2976,4202,830,1578,10,12,40,26,0,0,17,30,37,77,31,65,2,12,0,0,0,0,0,0,4,0 -050,01,097,Alabama,Mobile County,8,17,7348,2635,4713,2000,3456,614,1194,5,15,5,13,1,0,10,35,2621,4679,1988,3429,612,1188,5,14,5,13,1,0,10,35,14,34,12,27,2,6,0,1,0,0,0,0,0,0 -050,01,097,Alabama,Mobile County,8,18,5612,1635,3977,1260,2885,361,1048,3,9,4,19,0,2,7,14,1623,3950,1250,2863,360,1046,2,9,4,19,0,1,7,12,12,27,10,22,1,2,1,0,0,0,0,1,0,2 -050,01,097,Alabama,Mobile County,8,99,402916,193039,209877,122167,127597,63333,74898,1629,1665,3652,3320,109,84,2149,2313,189011,206476,118943,124962,62916,74415,1494,1583,3598,3288,74,68,1986,2160,4028,3401,3224,2635,417,483,135,82,54,32,35,16,163,153 -050,01,097,Alabama,Mobile County,9,0,5905,2934,2971,1612,1651,1173,1113,17,24,46,49,1,3,85,131,2830,2844,1518,1539,1168,1106,16,22,43,49,1,3,84,125,104,127,94,112,5,7,1,2,3,0,0,0,1,6 -050,01,097,Alabama,Mobile County,9,1,22035,11254,10781,6250,5894,4441,4323,82,95,199,181,6,6,276,282,10941,10503,6007,5682,4401,4292,76,89,188,179,2,4,267,257,313,278,243,212,40,31,6,6,11,2,4,2,9,25 -050,01,097,Alabama,Mobile County,9,2,27982,14409,13573,7754,7259,5951,5667,135,103,245,242,7,3,317,299,14017,13192,7451,6967,5903,5604,127,97,242,241,6,3,288,280,392,381,303,292,48,63,8,6,3,1,1,0,29,19 -050,01,097,Alabama,Mobile County,9,3,29722,15147,14575,7992,7498,6477,6355,160,175,276,306,5,6,237,235,14864,14280,7771,7271,6445,6315,150,164,273,301,3,4,222,225,283,295,221,227,32,40,10,11,3,5,2,2,15,10 -050,01,097,Alabama,Mobile County,9,4,30417,15244,15173,8253,8141,6332,6410,174,142,289,253,6,4,190,223,14931,14897,8000,7923,6301,6379,157,133,289,252,6,2,178,208,313,276,253,218,31,31,17,9,0,1,0,2,12,15 -050,01,097,Alabama,Mobile County,9,5,28499,13915,14584,8195,8257,4859,5621,123,175,535,352,22,16,181,163,13423,14236,7800,7980,4827,5577,106,162,527,349,10,15,153,153,492,348,395,277,32,44,17,13,8,3,12,1,28,10 -050,01,097,Alabama,Mobile County,9,6,28007,13262,14745,8452,8612,4174,5545,133,130,351,313,10,6,142,139,12792,14421,8082,8371,4132,5491,107,123,344,308,3,4,124,124,470,324,370,241,42,54,26,7,7,5,7,2,18,15 -050,01,097,Alabama,Mobile County,9,7,24487,11883,12604,7709,7325,3554,4724,106,106,407,311,8,5,99,133,11487,12289,7380,7079,3526,4686,89,95,403,307,4,4,85,118,396,315,329,246,28,38,17,11,4,4,4,1,14,15 -050,01,097,Alabama,Mobile County,9,8,25564,12244,13320,8187,8195,3459,4566,127,130,347,314,13,4,111,111,11858,13059,7877,7995,3431,4527,107,121,340,312,6,2,97,102,386,261,310,200,28,39,20,9,7,2,7,2,14,9 -050,01,097,Alabama,Mobile County,9,9,27477,13191,14286,8642,8686,4064,5118,126,132,208,242,7,3,144,105,12941,14024,8449,8456,4037,5097,111,128,203,239,4,3,137,101,250,262,193,230,27,21,15,4,5,3,3,0,7,4 -050,01,097,Alabama,Mobile County,9,10,30667,14679,15988,9707,9821,4525,5677,140,150,188,181,8,1,111,158,14403,15775,9481,9657,4499,5651,127,146,184,179,7,1,105,141,276,213,226,164,26,26,13,4,4,2,1,0,6,17 -050,01,097,Alabama,Mobile County,9,11,28939,13944,14995,9175,9280,4340,5222,125,131,201,231,5,4,98,127,13754,14819,9027,9146,4313,5194,119,128,200,229,4,3,91,119,190,176,148,134,27,28,6,3,1,2,1,1,7,8 -050,01,097,Alabama,Mobile County,9,12,25261,12202,13059,8347,8608,3491,4083,116,96,143,190,5,5,100,77,12049,12928,8225,8507,3469,4064,113,93,143,186,2,5,97,73,153,131,122,101,22,19,3,3,0,4,3,0,3,4 -050,01,097,Alabama,Mobile County,9,13,20578,9678,10900,7081,7592,2322,3005,83,83,127,130,4,7,61,83,9578,10796,6998,7514,2312,2986,81,81,124,128,4,6,59,81,100,104,83,78,10,19,2,2,3,2,0,1,2,2 -050,01,097,Alabama,Mobile County,9,14,15218,6891,8327,5015,5792,1701,2363,37,36,77,69,4,2,57,65,6820,8266,4961,5750,1692,2351,37,34,76,69,3,1,51,61,71,61,54,42,9,12,0,2,1,0,1,1,6,4 -050,01,097,Alabama,Mobile County,9,15,12011,5296,6715,3832,4589,1376,1979,14,26,44,70,1,2,29,49,5252,6651,3801,4541,1365,1972,13,26,44,69,1,2,28,41,44,64,31,48,11,7,1,0,0,1,0,0,1,8 -050,01,097,Alabama,Mobile County,9,16,9727,3951,5776,3017,4147,861,1562,11,11,40,28,0,0,22,28,3903,5707,2978,4089,858,1551,11,11,40,28,0,0,16,28,48,69,39,58,3,11,0,0,0,0,0,0,6,0 -050,01,097,Alabama,Mobile County,9,17,7410,2694,4716,2072,3515,597,1134,6,17,7,13,1,0,11,37,2681,4680,2061,3484,595,1130,6,16,7,13,1,0,11,37,13,36,11,31,2,4,0,1,0,0,0,0,0,0 -050,01,097,Alabama,Mobile County,9,18,5809,1692,4117,1313,2972,363,1109,4,7,4,15,0,2,8,12,1678,4083,1300,2943,363,1107,3,7,4,15,0,1,8,10,14,34,13,29,0,2,1,0,0,0,0,1,0,2 -050,01,097,Alabama,Mobile County,9,99,405715,194510,211205,122605,127834,64060,75576,1719,1769,3734,3490,113,79,2279,2457,190202,207450,119167,124894,63637,75080,1556,1676,3674,3453,67,63,2101,2284,4308,3755,3438,2940,423,496,163,93,60,37,46,16,178,173 -050,01,097,Alabama,Mobile County,10,0,5991,3037,2954,1585,1601,1276,1144,21,22,43,44,1,3,111,140,2922,2802,1481,1470,1270,1132,19,19,41,44,1,3,110,134,115,152,104,131,6,12,2,3,2,0,0,0,1,6 -050,01,097,Alabama,Mobile County,10,1,22304,11328,10976,6182,5992,4527,4385,85,93,213,204,10,7,311,295,10961,10657,5890,5743,4482,4348,80,84,207,202,4,5,298,275,367,319,292,249,45,37,5,9,6,2,6,2,13,20 -050,01,097,Alabama,Mobile County,10,2,27953,14278,13675,7765,7290,5805,5677,121,112,243,271,7,4,337,321,13855,13284,7448,6981,5743,5624,113,107,240,269,5,3,306,300,423,391,317,309,62,53,8,5,3,2,2,1,31,21 -050,01,097,Alabama,Mobile County,10,3,29395,14990,14405,7898,7466,6383,6183,171,182,284,299,6,6,248,269,14695,14101,7669,7233,6345,6141,162,172,282,295,4,5,233,255,295,304,229,233,38,42,9,10,2,4,2,1,15,14 -050,01,097,Alabama,Mobile County,10,4,30800,15511,15289,8365,8114,6465,6543,172,128,308,266,6,3,195,235,15146,15001,8058,7886,6435,6508,155,120,307,265,6,2,185,220,365,288,307,228,30,35,17,8,1,1,0,1,10,15 -050,01,097,Alabama,Mobile County,10,5,28881,14086,14795,8267,8425,4926,5704,135,148,536,329,24,13,198,176,13531,14424,7816,8120,4893,5662,114,137,529,327,10,13,169,165,555,371,451,305,33,42,21,11,7,2,14,0,29,11 -050,01,097,Alabama,Mobile County,10,6,28072,13398,14674,8500,8424,4223,5601,138,136,390,360,11,9,136,144,12898,14325,8101,8162,4179,5547,109,128,385,354,5,8,119,126,500,349,399,262,44,54,29,8,5,6,6,1,17,18 -050,01,097,Alabama,Mobile County,10,7,24875,12025,12850,7735,7378,3702,4923,125,113,332,295,15,3,116,138,11568,12522,7359,7123,3663,4882,106,102,329,291,10,3,101,121,457,328,376,255,39,41,19,11,3,4,5,0,15,17 -050,01,097,Alabama,Mobile County,10,8,25672,12335,13337,8155,8138,3581,4601,140,128,336,328,12,7,111,135,11945,13058,7848,7932,3548,4552,119,121,329,325,6,5,95,123,390,279,307,206,33,49,21,7,7,3,6,2,16,12 -050,01,097,Alabama,Mobile County,10,9,26766,12859,13907,8463,8424,3885,4974,131,129,248,268,4,3,128,109,12542,13639,8218,8191,3846,4953,115,124,242,264,2,3,119,104,317,268,245,233,39,21,16,5,6,4,2,0,9,5 -050,01,097,Alabama,Mobile County,10,10,30336,14517,15819,9545,9739,4501,5597,140,155,202,186,12,1,117,141,14240,15585,9319,9559,4473,5566,128,151,199,184,11,1,110,124,277,234,226,180,28,31,12,4,3,2,1,0,7,17 -050,01,097,Alabama,Mobile County,10,11,29647,14272,15375,9334,9398,4498,5467,128,146,202,226,4,6,106,132,14054,15177,9159,9250,4469,5432,123,144,202,221,3,5,98,125,218,198,175,148,29,35,5,2,0,5,1,1,8,7 -050,01,097,Alabama,Mobile County,10,12,25727,12461,13266,8447,8601,3653,4272,106,98,153,208,3,6,99,81,12293,13130,8303,8490,3637,4258,103,93,153,204,1,6,96,79,168,136,144,111,16,14,3,5,0,4,2,0,3,2 -050,01,097,Alabama,Mobile County,10,13,21362,10154,11208,7355,7744,2519,3139,93,92,120,137,5,7,62,89,10029,11096,7255,7661,2501,3118,91,90,116,135,5,6,61,86,125,112,100,83,18,21,2,2,4,2,0,1,1,3 -050,01,097,Alabama,Mobile County,10,14,15839,7142,8697,5250,6082,1693,2425,42,41,89,80,4,3,64,66,7068,8621,5193,6031,1683,2409,42,39,89,80,3,1,58,61,74,76,57,51,10,16,0,2,0,0,1,2,6,5 -050,01,097,Alabama,Mobile County,10,15,12446,5538,6908,3996,4736,1432,2032,26,29,49,64,2,2,33,45,5495,6841,3967,4684,1421,2027,24,29,49,63,2,2,32,36,43,67,29,52,11,5,2,0,0,1,0,0,1,9 -050,01,097,Alabama,Mobile County,10,16,9678,3949,5729,2993,4075,875,1589,28,8,31,32,0,0,22,25,3910,5661,2961,4019,873,1577,28,8,31,32,0,0,17,25,39,68,32,56,2,12,0,0,0,0,0,0,5,0 -050,01,097,Alabama,Mobile County,10,17,7467,2693,4774,2103,3526,565,1187,5,21,8,12,0,0,12,28,2669,4745,2082,3501,562,1184,5,20,8,12,0,0,12,28,24,29,21,25,3,3,0,1,0,0,0,0,0,0 -050,01,097,Alabama,Mobile County,10,18,5985,1761,4224,1349,3050,398,1140,3,6,4,13,0,2,7,13,1750,4184,1338,3015,398,1138,3,6,4,13,0,1,7,11,11,40,11,35,0,2,0,0,0,0,0,1,0,2 -050,01,097,Alabama,Mobile County,10,99,409196,196334,212862,123287,128203,64907,76583,1810,1787,3791,3622,126,85,2413,2582,191571,208853,119465,125051,64421,76058,1639,1694,3742,3580,78,72,2226,2398,4763,4009,3822,3152,486,525,171,93,49,42,48,13,187,184 -050,01,097,Alabama,Mobile County,11,0,5814,2917,2897,1531,1467,1225,1216,15,31,36,40,2,4,108,139,2802,2773,1430,1362,1218,1208,13,25,33,40,2,4,106,134,115,124,101,105,7,8,2,6,3,0,0,0,2,5 -050,01,097,Alabama,Mobile County,11,1,22418,11442,10976,6078,5910,4666,4441,117,101,241,203,7,9,333,312,11023,10593,5758,5611,4617,4399,106,92,226,200,1,7,315,284,419,383,320,299,49,42,11,9,15,3,6,2,18,28 -050,01,097,Alabama,Mobile County,11,2,28021,14302,13719,7753,7300,5842,5659,114,126,236,298,8,6,349,330,13870,13329,7427,6989,5784,5611,106,119,230,296,7,5,316,309,432,390,326,311,58,48,8,7,6,2,1,1,33,21 -050,01,097,Alabama,Mobile County,11,3,28891,14740,14151,7735,7331,6215,6110,177,161,312,268,9,8,292,273,14419,13819,7491,7088,6181,6056,166,145,309,264,6,5,266,261,321,332,244,243,34,54,11,16,3,4,3,3,26,12 -050,01,097,Alabama,Mobile County,11,4,31041,15731,15310,8444,8025,6597,6577,157,159,314,278,5,2,214,269,15330,15006,8116,7789,6563,6541,138,151,313,276,4,0,196,249,401,304,328,236,34,36,19,8,1,2,1,2,18,20 -050,01,097,Alabama,Mobile County,11,5,29036,14000,15036,8339,8478,4848,5855,108,159,472,344,24,20,209,180,13395,14645,7859,8154,4803,5811,85,148,464,342,10,20,174,170,605,391,480,324,45,44,23,11,8,2,14,0,35,10 -050,01,097,Alabama,Mobile County,11,6,27904,13379,14525,8369,8296,4325,5533,158,133,360,376,8,5,159,182,12861,14162,7962,8025,4284,5480,128,124,352,371,1,3,134,159,518,363,407,271,41,53,30,9,8,5,7,2,25,23 -050,01,097,Alabama,Mobile County,11,7,25641,12481,13160,7839,7535,3928,5066,126,118,461,302,14,7,113,132,11920,12798,7370,7258,3888,5022,105,106,456,295,7,4,94,113,561,362,469,277,40,44,21,12,5,7,7,3,19,19 -050,01,097,Alabama,Mobile County,11,8,25916,12517,13399,8268,8046,3618,4712,134,152,364,347,13,7,120,135,12079,13111,7926,7827,3582,4671,112,142,354,345,5,4,100,122,438,288,342,219,36,41,22,10,10,2,8,3,20,13 -050,01,097,Alabama,Mobile County,11,9,26006,12488,13518,8102,8211,3821,4770,126,129,303,287,4,9,132,112,12155,13235,7833,7974,3791,4740,110,124,295,282,2,9,124,106,333,283,269,237,30,30,16,5,8,5,2,0,8,6 -050,01,097,Alabama,Mobile County,11,10,30062,14355,15707,9490,9648,4397,5531,142,162,211,201,7,1,108,164,14045,15464,9258,9456,4349,5505,125,158,207,200,6,0,100,145,310,243,232,192,48,26,17,4,4,1,1,1,8,19 -050,01,097,Alabama,Mobile County,11,11,30283,14591,15692,9506,9629,4628,5561,137,143,201,222,6,3,113,134,14320,15472,9287,9455,4594,5530,131,140,199,218,5,2,104,127,271,220,219,174,34,31,6,3,2,4,1,1,9,7 -050,01,097,Alabama,Mobile County,11,12,26216,12704,13512,8503,8649,3827,4446,100,102,164,224,3,6,107,85,12535,13368,8362,8529,3809,4434,97,97,163,220,1,6,103,82,169,144,141,120,18,12,3,5,1,4,2,0,4,3 -050,01,097,Alabama,Mobile County,11,13,22237,10527,11710,7554,7993,2670,3396,92,86,138,145,4,7,69,83,10378,11595,7432,7906,2650,3377,90,83,134,143,4,6,68,80,149,115,122,87,20,19,2,3,4,2,0,1,1,3 -050,01,097,Alabama,Mobile County,11,14,16672,7620,9052,5597,6381,1803,2432,54,55,99,97,4,3,63,84,7536,8956,5528,6312,1796,2416,53,53,99,97,3,1,57,77,84,96,69,69,7,16,1,2,0,0,1,2,6,7 -050,01,097,Alabama,Mobile County,11,15,12688,5608,7080,4051,4897,1433,2035,26,33,57,63,2,2,39,50,5554,6992,4011,4828,1423,2027,25,33,57,62,2,2,36,40,54,88,40,69,10,8,1,0,0,1,0,0,3,10 -050,01,097,Alabama,Mobile County,11,16,9570,3950,5620,2971,3990,907,1550,17,15,31,38,0,0,24,27,3897,5559,2928,3939,904,1540,17,15,31,38,0,0,17,27,53,61,43,51,3,10,0,0,0,0,0,0,7,0 -050,01,097,Alabama,Mobile County,11,17,7318,2673,4645,2100,3428,544,1142,9,20,12,19,0,0,8,36,2653,4611,2081,3399,543,1138,9,19,12,19,0,0,8,36,20,34,19,29,1,4,0,1,0,0,0,0,0,0 -050,01,097,Alabama,Mobile County,11,18,6260,1864,4396,1444,3214,405,1145,4,11,4,10,0,1,7,15,1849,4348,1429,3171,405,1142,4,11,4,10,0,1,7,13,15,48,15,43,0,3,0,0,0,0,0,0,0,2 -050,01,097,Alabama,Mobile County,11,99,411994,197889,214105,123674,128428,65699,77177,1813,1896,4016,3762,120,100,2567,2742,192621,209836,119488,125072,65184,76648,1620,1785,3938,3718,66,79,2325,2534,5268,4269,4186,3356,515,529,193,111,78,44,54,21,242,208 -050,01,097,Alabama,Mobile County,12,0,5656,2874,2782,1496,1445,1205,1139,28,35,40,44,1,4,104,115,2774,2661,1413,1351,1198,1125,25,29,37,44,1,4,100,108,100,121,83,94,7,14,3,6,3,0,0,0,4,7 -050,01,097,Alabama,Mobile County,12,1,22503,11442,11061,5995,5825,4748,4548,113,120,235,226,9,10,342,332,11027,10670,5674,5529,4703,4501,104,108,221,224,2,6,323,302,415,391,321,296,45,47,9,12,14,2,7,4,19,30 -050,01,097,Alabama,Mobile County,12,2,27943,14208,13735,7661,7283,5779,5676,135,138,249,285,9,6,375,347,13754,13314,7323,6954,5717,5623,124,127,243,283,7,4,340,323,454,421,338,329,62,53,11,11,6,2,2,2,35,24 -050,01,097,Alabama,Mobile County,12,3,28824,14753,14071,7784,7370,6211,5985,168,162,292,260,9,7,289,287,14412,13726,7524,7110,6173,5936,155,148,289,256,6,4,265,272,341,345,260,260,38,49,13,14,3,4,3,3,24,15 -050,01,097,Alabama,Mobile County,12,4,30802,15613,15189,8388,8012,6488,6461,180,140,311,297,7,3,239,276,15184,14856,8038,7753,6452,6422,159,129,310,295,6,1,219,256,429,333,350,259,36,39,21,11,1,2,1,2,20,20 -050,01,097,Alabama,Mobile County,12,5,29130,14055,15075,8323,8535,4881,5818,120,169,484,339,29,21,218,193,13425,14667,7821,8210,4841,5767,95,153,475,336,11,19,182,182,630,408,502,325,40,51,25,16,9,3,18,2,36,11 -050,01,097,Alabama,Mobile County,12,6,27657,13248,14409,8277,8106,4253,5597,167,141,378,383,14,9,159,173,12689,14025,7830,7811,4218,5549,132,130,370,378,5,7,134,150,559,384,447,295,35,48,35,11,8,5,9,2,25,23 -050,01,097,Alabama,Mobile County,12,7,25974,12587,13387,7854,7577,4126,5239,139,126,321,294,17,9,130,142,12010,13031,7388,7306,4074,5195,114,111,316,290,9,6,109,123,577,356,466,271,52,44,25,15,5,4,8,3,21,19 -050,01,097,Alabama,Mobile County,12,8,25565,12388,13177,8128,7836,3623,4737,135,141,362,323,18,7,122,133,11925,12863,7773,7591,3583,4699,108,131,352,319,7,4,102,119,463,314,355,245,40,38,27,10,10,4,11,3,20,14 -050,01,097,Alabama,Mobile County,12,9,25852,12386,13466,8064,8250,3742,4657,137,142,308,298,5,4,130,115,12010,13173,7774,8003,3695,4627,117,136,300,294,2,4,122,109,376,293,290,247,47,30,20,6,8,4,3,0,8,6 -050,01,097,Alabama,Mobile County,12,10,29546,14161,15385,9317,9427,4365,5445,146,152,212,217,11,2,110,142,13841,15131,9072,9226,4325,5419,127,146,207,215,8,1,102,124,320,254,245,201,40,26,19,6,5,2,3,1,8,18 -050,01,097,Alabama,Mobile County,12,11,30429,14648,15781,9541,9688,4633,5596,154,154,199,217,7,4,114,122,14370,15557,9323,9509,4596,5567,143,150,197,213,6,3,105,115,278,224,218,179,37,29,11,4,2,4,1,1,9,7 -050,01,097,Alabama,Mobile County,12,12,26672,12925,13747,8604,8709,3917,4600,105,116,184,231,4,6,111,85,12744,13602,8451,8586,3900,4590,102,111,183,227,1,6,107,82,181,145,153,123,17,10,3,5,1,4,3,0,4,3 -050,01,097,Alabama,Mobile County,12,13,23118,10959,12159,7779,8207,2868,3606,98,101,134,148,5,6,75,91,10806,12042,7650,8116,2851,3589,96,98,130,146,5,5,74,88,153,117,129,91,17,17,2,3,4,2,0,1,1,3 -050,01,097,Alabama,Mobile County,12,14,17066,7812,9254,5755,6530,1839,2471,61,61,88,105,4,3,65,84,7716,9159,5675,6457,1831,2460,60,59,88,105,3,1,59,77,96,95,80,73,8,11,1,2,0,0,1,2,6,7 -050,01,097,Alabama,Mobile County,12,15,12919,5710,7209,4105,5004,1476,2046,29,40,65,73,2,1,33,45,5653,7122,4062,4934,1466,2040,28,40,65,72,2,1,30,35,57,87,43,70,10,6,1,0,0,1,0,0,3,10 -050,01,097,Alabama,Mobile County,12,16,9605,4016,5589,3015,3959,918,1559,15,7,42,39,0,0,26,25,3973,5529,2982,3908,915,1550,15,7,42,39,0,0,19,25,43,60,33,51,3,9,0,0,0,0,0,0,7,0 -050,01,097,Alabama,Mobile County,12,17,7355,2671,4684,2073,3433,569,1172,8,22,9,25,0,0,12,32,2650,4650,2053,3403,568,1169,8,21,9,25,0,0,12,32,21,34,20,30,1,3,0,1,0,0,0,0,0,0 -050,01,097,Alabama,Mobile County,12,18,6376,1918,4458,1485,3265,416,1155,5,13,4,11,0,1,8,13,1903,4412,1470,3224,416,1152,5,13,4,11,0,1,8,11,15,46,15,41,0,3,0,0,0,0,0,0,0,2 -050,01,097,Alabama,Mobile County,12,99,412992,198374,214618,123644,128461,66057,77507,1943,1980,3917,3815,151,103,2662,2752,192866,210190,119296,124981,65522,76980,1717,1847,3838,3772,81,77,2412,2533,5508,4428,4348,3480,535,527,226,133,79,43,70,26,250,219 -050,01,097,Alabama,Mobile County,13,0,5659,2879,2780,1496,1445,1210,1139,29,35,38,45,1,4,105,112,2778,2658,1412,1351,1203,1126,25,29,36,45,1,4,101,103,101,122,84,94,7,13,4,6,2,0,0,0,4,9 -050,01,097,Alabama,Mobile County,13,1,22438,11411,11027,5965,5797,4768,4566,112,118,233,225,6,10,327,311,11003,10648,5643,5500,4723,4521,103,108,221,224,2,6,311,289,408,379,322,297,45,45,9,10,12,1,4,4,16,22 -050,01,097,Alabama,Mobile County,13,2,27856,14159,13697,7645,7268,5771,5672,132,135,249,287,7,7,355,328,13713,13279,7305,6937,5710,5620,122,126,245,284,4,3,327,309,446,418,340,331,61,52,10,9,4,3,3,4,28,19 -050,01,097,Alabama,Mobile County,13,3,28741,14707,14034,7762,7355,6198,5973,165,161,292,258,9,7,281,280,14374,13693,7501,7093,6161,5927,155,148,290,257,7,3,260,265,333,341,261,262,37,46,10,13,2,1,2,4,21,15 -050,01,097,Alabama,Mobile County,13,4,30574,15503,15071,8329,7956,6449,6419,174,134,312,296,5,3,234,263,15079,14744,7977,7695,6415,6383,157,126,310,294,3,3,217,243,424,327,352,261,34,36,17,8,2,2,2,0,17,20 -050,01,097,Alabama,Mobile County,13,5,29220,14094,15126,8333,8542,4916,5862,118,164,484,336,29,17,214,205,13467,14706,7828,8215,4875,5808,94,152,475,335,12,14,183,182,627,420,505,327,41,54,24,12,9,1,17,3,31,23 -050,01,097,Alabama,Mobile County,13,6,27700,13293,14407,8306,8109,4274,5602,167,141,373,378,12,7,161,170,12742,14026,7859,7815,4242,5555,132,130,368,377,4,3,137,146,551,381,447,294,32,47,35,11,5,1,8,4,24,24 -050,01,097,Alabama,Mobile County,13,7,26148,12683,13465,7901,7622,4176,5278,140,124,320,292,15,6,131,143,12102,13117,7433,7349,4124,5237,113,110,314,289,9,5,109,127,581,348,468,273,52,41,27,14,6,3,6,1,22,16 -050,01,097,Alabama,Mobile County,13,8,25438,12325,13113,8050,7759,3614,4717,135,142,362,322,13,5,151,168,11852,12774,7696,7514,3575,4682,107,131,353,319,4,2,117,126,473,339,354,245,39,35,28,11,9,3,9,3,34,42 -050,01,097,Alabama,Mobile County,13,9,25921,12421,13500,8045,8231,3737,4651,138,141,307,301,9,2,185,174,12009,13173,7751,7983,3687,4621,117,136,301,294,5,2,148,137,412,327,294,248,50,30,21,5,6,7,4,0,37,37 -050,01,097,Alabama,Mobile County,13,10,29502,14140,15362,9261,9366,4364,5438,146,151,211,216,12,5,146,186,13800,15085,9017,9165,4322,5413,126,146,208,215,5,2,122,144,340,277,244,201,42,25,20,5,3,1,7,3,24,42 -050,01,097,Alabama,Mobile County,13,11,30571,14720,15851,9542,9687,4658,5624,157,152,199,218,5,9,159,161,14418,15600,9322,9508,4621,5594,144,150,197,213,3,6,131,129,302,251,220,179,37,30,13,2,2,5,2,3,28,32 -050,01,097,Alabama,Mobile County,13,12,26822,12999,13823,8643,8744,3945,4631,105,116,185,234,4,9,117,89,12812,13668,8489,8621,3926,4620,102,110,184,230,0,7,111,80,187,155,154,123,19,11,3,6,1,4,4,2,6,9 -050,01,097,Alabama,Mobile County,13,13,23312,11048,12264,7841,8273,2904,3655,97,99,135,150,6,2,65,85,10898,12151,7711,8181,2890,3640,95,98,134,147,4,2,64,83,150,113,130,92,14,15,2,1,1,3,2,0,1,2 -050,01,097,Alabama,Mobile County,13,14,17103,7836,9267,5782,6555,1848,2482,61,59,88,106,2,1,55,64,7744,9182,5702,6482,1840,2473,60,57,88,105,2,1,52,64,92,85,80,73,8,9,1,2,0,1,0,0,3,0 -050,01,097,Alabama,Mobile County,13,15,12943,5721,7222,4121,5020,1480,2055,27,38,63,71,3,0,27,38,5670,7141,4079,4951,1472,2047,27,37,63,71,3,0,26,35,51,81,42,69,8,8,0,1,0,0,0,0,1,3 -050,01,097,Alabama,Mobile County,13,16,9578,4003,5575,3009,3944,925,1564,15,6,39,38,0,1,15,22,3967,5518,2976,3895,922,1556,15,6,39,38,0,1,15,22,36,57,33,49,3,8,0,0,0,0,0,0,0,0 -050,01,097,Alabama,Mobile County,13,17,7330,2666,4664,2072,3420,572,1174,6,19,8,22,0,0,8,29,2648,4634,2055,3393,571,1171,6,19,8,22,0,0,8,29,18,30,17,27,1,3,0,0,0,0,0,0,0,0 -050,01,097,Alabama,Mobile County,13,18,6421,1936,4485,1498,3276,421,1168,6,15,4,11,0,1,7,14,1918,4440,1482,3235,420,1165,5,14,4,11,0,1,7,14,18,45,16,41,1,3,1,1,0,0,0,0,0,0 -050,01,097,Alabama,Mobile County,13,99,413277,198544,214733,123601,128369,66230,77670,1930,1950,3902,3806,138,96,2743,2842,192994,210237,119238,124883,65699,77159,1705,1833,3838,3770,68,65,2446,2527,5550,4496,4363,3486,531,511,225,117,64,36,70,31,297,315 -050,01,099,Alabama,Monroe County,1,0,370,189,181,95,91,86,85,4,2,1,0,0,0,3,3,185,180,92,91,86,84,3,2,1,0,0,0,3,3,4,1,3,0,0,1,1,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,1,1457,723,734,385,366,320,346,3,10,1,2,0,0,14,10,719,724,381,362,320,341,3,9,1,2,0,0,14,10,4,10,4,4,0,5,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,2,1920,994,926,475,454,498,442,6,13,3,4,0,0,12,13,985,919,471,450,494,439,5,13,3,4,0,0,12,13,9,7,4,4,4,3,1,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,3,1904,949,955,470,481,461,459,10,7,2,3,0,0,6,5,940,949,466,480,457,454,10,7,2,3,0,0,5,5,9,6,4,1,4,5,0,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,1,4,1942,997,945,538,455,439,463,13,13,4,5,0,0,3,9,988,937,535,453,434,458,12,12,4,5,0,0,3,9,9,8,3,2,5,5,1,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,5,1379,658,721,335,354,308,351,9,9,3,3,0,1,3,3,651,714,332,350,306,350,7,7,3,3,0,1,3,3,7,7,3,4,2,1,2,2,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,6,1491,688,803,402,433,272,358,12,6,0,1,0,0,2,5,678,793,395,425,269,356,12,6,0,1,0,0,2,5,10,10,7,8,3,2,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,7,1539,738,801,433,441,290,344,8,7,5,4,0,0,2,5,731,797,431,438,285,343,8,7,5,4,0,0,2,5,7,4,2,3,5,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,8,1706,815,891,519,523,280,350,12,10,3,2,0,1,1,5,811,883,517,519,279,348,12,9,2,2,0,0,1,5,4,8,2,4,1,2,0,1,1,0,0,1,0,0 -050,01,099,Alabama,Monroe County,1,9,1777,859,918,537,508,306,397,10,4,1,5,0,0,5,4,855,914,533,507,306,394,10,4,1,5,0,0,5,4,4,4,4,1,0,3,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,10,1722,799,923,505,535,282,370,8,8,2,6,0,0,2,4,795,920,503,533,280,369,8,8,2,6,0,0,2,4,4,3,2,2,2,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,11,1467,730,737,485,459,233,261,7,9,1,5,0,1,4,2,723,730,479,456,232,258,7,9,1,5,0,0,4,2,7,7,6,3,1,3,0,0,0,0,0,1,0,0 -050,01,099,Alabama,Monroe County,1,12,1237,595,642,401,446,184,184,4,9,2,0,0,0,4,3,593,631,400,436,183,183,4,9,2,0,0,0,4,3,2,11,1,10,1,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,13,1049,494,555,342,375,147,170,2,5,1,0,0,0,2,5,492,550,340,371,147,170,2,5,1,0,0,0,2,4,2,5,2,4,0,0,0,0,0,0,0,0,0,1 -050,01,099,Alabama,Monroe County,1,14,949,436,513,304,336,123,168,4,5,1,1,0,0,4,3,431,513,299,336,123,168,4,5,1,1,0,0,4,3,5,0,5,0,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,15,812,363,449,248,293,107,149,5,3,1,1,0,0,2,3,361,449,247,293,106,149,5,3,1,1,0,0,2,3,2,0,1,0,1,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,16,650,263,387,191,258,69,125,0,3,0,0,0,0,3,1,263,384,191,256,69,124,0,3,0,0,0,0,3,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,17,477,159,318,91,218,67,97,0,1,0,0,0,0,1,2,158,316,91,216,66,97,0,1,0,0,0,0,1,2,1,2,0,2,1,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,18,472,129,343,81,224,48,115,0,2,0,0,0,0,0,2,128,340,80,223,48,113,0,2,0,0,0,0,0,2,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,99,24320,11578,12742,6837,7250,4520,5234,117,126,31,42,0,3,73,87,11487,12643,6783,7195,4490,5198,112,121,30,42,0,1,72,86,91,99,54,55,30,36,5,5,1,0,0,2,1,1 -050,01,099,Alabama,Monroe County,2,0,372,190,182,95,91,87,86,4,2,1,0,0,0,3,3,186,181,92,91,87,85,3,2,1,0,0,0,3,3,4,1,3,0,0,1,1,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,1,1448,716,732,382,364,318,344,3,10,1,2,0,0,12,12,712,722,378,360,318,339,3,9,1,2,0,0,12,12,4,10,4,4,0,5,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,2,1905,986,919,472,449,494,440,6,13,3,4,0,0,11,13,977,912,468,445,490,437,5,13,3,4,0,0,11,13,9,7,4,4,4,3,1,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,3,1912,954,958,470,480,466,463,10,7,2,3,0,0,6,5,945,952,466,479,462,458,10,7,2,3,0,0,5,5,9,6,4,1,4,5,0,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,2,4,1953,1005,948,540,456,445,465,13,13,4,5,0,0,3,9,996,940,537,454,440,460,12,12,4,5,0,0,3,9,9,8,3,2,5,5,1,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,5,1402,676,726,335,356,326,354,9,9,3,3,0,1,3,3,669,719,332,352,324,353,7,7,3,3,0,1,3,3,7,7,3,4,2,1,2,2,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,6,1469,675,794,393,427,268,355,12,6,0,1,0,0,2,5,665,784,386,419,265,353,12,6,0,1,0,0,2,5,10,10,7,8,3,2,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,7,1527,728,799,427,441,285,342,9,7,5,4,0,0,2,5,721,795,425,438,280,341,9,7,5,4,0,0,2,5,7,4,2,3,5,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,8,1690,805,885,512,519,277,348,12,10,3,2,0,1,1,5,801,877,510,515,276,346,12,9,2,2,0,0,1,5,4,8,2,4,1,2,0,1,1,0,0,1,0,0 -050,01,099,Alabama,Monroe County,2,9,1778,857,921,533,508,308,400,10,4,1,5,0,0,5,4,853,917,529,507,308,397,10,4,1,5,0,0,5,4,4,4,4,1,0,3,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,10,1721,795,926,504,536,280,372,8,8,2,6,0,0,1,4,791,923,502,534,278,371,8,8,2,6,0,0,1,4,4,3,2,2,2,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,11,1473,730,743,484,462,234,264,7,9,1,5,0,1,4,2,723,736,478,459,233,261,7,9,1,5,0,0,4,2,7,7,6,3,1,3,0,0,0,0,0,1,0,0 -050,01,099,Alabama,Monroe County,2,12,1237,595,642,402,446,183,184,4,9,2,0,0,0,4,3,593,631,401,436,182,183,4,9,2,0,0,0,4,3,2,11,1,10,1,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,13,1048,493,555,341,375,147,170,2,5,1,0,0,0,2,5,491,550,339,371,147,170,2,5,1,0,0,0,2,4,2,5,2,4,0,0,0,0,0,0,0,0,0,1 -050,01,099,Alabama,Monroe County,2,14,947,436,511,303,334,124,168,4,5,1,1,0,0,4,3,431,511,298,334,124,168,4,5,1,1,0,0,4,3,5,0,5,0,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,15,811,363,448,248,292,107,149,5,3,1,1,0,0,2,3,361,448,247,292,106,149,5,3,1,1,0,0,2,3,2,0,1,0,1,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,16,653,263,390,190,260,70,126,0,3,0,0,0,0,3,1,263,387,190,258,70,125,0,3,0,0,0,0,3,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,17,488,162,326,93,224,68,99,0,1,0,0,0,0,1,2,161,324,93,222,67,99,0,1,0,0,0,0,1,2,1,2,0,2,1,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,18,485,133,352,84,231,49,117,0,2,0,0,0,0,0,2,132,349,83,230,49,115,0,2,0,0,0,0,0,2,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,99,24319,11562,12757,6808,7251,4536,5246,118,126,31,42,0,3,69,89,11471,12658,6754,7196,4506,5210,113,121,30,42,0,1,68,88,91,99,54,55,30,36,5,5,1,0,0,2,1,1 -050,01,099,Alabama,Monroe County,3,0,328,171,157,90,81,75,71,2,2,1,0,0,0,3,3,168,156,87,81,75,70,2,2,1,0,0,0,3,3,3,1,3,0,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,1,1481,734,747,372,375,342,348,4,8,1,2,0,0,15,14,727,737,365,371,342,343,4,7,1,2,0,0,15,14,7,10,7,4,0,5,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,2,1824,964,860,481,415,463,414,6,13,3,4,0,0,11,14,955,853,477,411,459,411,5,13,3,4,0,0,11,14,9,7,4,4,4,3,1,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,3,1945,959,986,478,504,461,466,11,8,2,3,0,0,7,5,949,978,473,500,457,462,11,8,2,3,0,0,6,5,10,8,5,4,4,4,0,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,3,4,1858,955,903,483,419,452,458,13,11,4,5,0,0,3,10,945,894,480,417,446,452,12,10,4,5,0,0,3,10,10,9,3,2,6,6,1,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,5,1407,678,729,344,356,318,356,9,10,4,3,0,1,3,3,672,721,341,351,317,355,7,8,4,3,0,1,3,3,6,8,3,5,1,1,2,2,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,6,1391,630,761,349,398,270,351,9,6,0,1,0,0,2,5,617,752,339,391,267,349,9,6,0,1,0,0,2,5,13,9,10,7,3,2,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,7,1504,707,797,429,445,260,336,11,7,5,4,0,0,2,5,701,793,426,442,257,335,11,7,5,4,0,0,2,5,6,4,3,3,3,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,8,1645,788,857,505,498,267,340,12,11,3,2,0,1,1,5,784,849,503,494,266,338,12,10,2,2,0,0,1,5,4,8,2,4,1,2,0,1,1,0,0,1,0,0 -050,01,099,Alabama,Monroe County,3,9,1758,846,912,508,504,323,393,9,6,1,5,0,0,5,4,842,908,504,503,323,390,9,6,1,5,0,0,5,4,4,4,4,1,0,3,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,10,1770,816,954,511,550,293,386,8,8,2,6,0,0,2,4,812,951,509,548,291,385,8,8,2,6,0,0,2,4,4,3,2,2,2,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,11,1528,777,751,521,471,245,263,6,9,1,5,0,1,4,2,768,745,513,469,244,260,6,9,1,5,0,0,4,2,9,6,8,2,1,3,0,0,0,0,0,1,0,0 -050,01,099,Alabama,Monroe County,3,12,1291,620,671,402,450,207,210,5,8,2,0,0,0,4,3,618,661,401,441,206,209,5,8,2,0,0,0,4,3,2,10,1,9,1,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,13,1013,466,547,324,363,137,172,2,7,1,0,0,0,2,5,464,543,322,360,137,172,2,7,1,0,0,0,2,4,2,4,2,3,0,0,0,0,0,0,0,0,0,1 -050,01,099,Alabama,Monroe County,3,14,921,440,481,303,327,129,145,3,5,1,1,0,0,4,3,436,481,299,327,129,145,3,5,1,1,0,0,4,3,4,0,4,0,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,15,870,384,486,261,317,116,162,4,3,1,1,0,0,2,3,383,486,260,317,116,162,4,3,1,1,0,0,2,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,16,648,270,378,200,246,67,128,0,3,0,0,0,0,3,1,270,375,200,244,67,127,0,3,0,0,0,0,3,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,17,471,159,312,96,219,62,91,0,0,0,0,0,0,1,2,159,310,96,217,62,91,0,0,0,0,0,0,1,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,18,467,130,337,83,219,47,113,0,3,0,0,0,0,0,2,129,334,82,218,47,111,0,3,0,0,0,0,0,2,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,99,24120,11494,12626,6740,7157,4534,5203,114,128,32,42,0,3,74,93,11399,12527,6677,7102,4508,5167,110,123,31,42,0,1,73,92,95,99,63,55,26,36,4,5,1,0,0,2,1,1 -050,01,099,Alabama,Monroe County,4,0,342,182,160,85,83,90,72,2,2,1,0,0,0,4,3,179,159,82,83,90,71,2,2,1,0,0,0,4,3,3,1,3,0,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,1,1432,714,718,355,380,342,317,3,8,1,2,0,0,13,11,709,709,350,376,342,313,3,7,1,2,0,0,13,11,5,9,5,4,0,4,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,2,1815,934,881,473,414,440,433,7,13,3,4,0,0,11,17,925,872,469,408,436,430,6,13,3,4,0,0,11,17,9,9,4,6,4,3,1,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,3,1892,956,936,451,467,482,451,11,7,2,3,0,0,10,8,948,929,447,464,479,447,11,7,2,3,0,0,9,8,8,7,4,3,3,4,0,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,4,4,1887,970,917,481,429,470,461,12,12,4,5,0,0,3,10,959,908,478,425,463,457,11,11,4,5,0,0,3,10,11,9,3,4,7,4,1,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,5,1381,671,710,348,340,307,349,9,14,4,3,0,1,3,3,663,703,343,336,306,348,7,12,4,3,0,1,3,3,8,7,5,4,1,1,2,2,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,6,1329,602,727,323,382,268,332,9,6,0,1,0,0,2,6,593,719,316,375,266,331,9,6,0,1,0,0,2,6,9,8,7,7,2,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,7,1471,713,758,436,412,260,332,10,5,5,4,0,0,2,5,707,753,434,408,256,331,10,5,5,4,0,0,2,5,6,5,2,4,4,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,8,1596,772,824,477,482,278,323,13,12,3,2,0,1,1,4,768,816,475,478,277,321,13,11,2,2,0,0,1,4,4,8,2,4,1,2,0,1,1,0,0,1,0,0 -050,01,099,Alabama,Monroe County,4,9,1747,827,920,499,506,314,399,8,6,1,5,0,0,5,4,824,915,496,504,314,396,8,6,1,5,0,0,5,4,3,5,3,2,0,3,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,10,1820,856,964,535,553,309,390,8,7,2,6,0,0,2,8,852,961,533,551,307,389,8,7,2,6,0,0,2,8,4,3,2,2,2,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,11,1518,754,764,494,458,246,288,9,9,1,5,0,1,4,3,745,759,486,456,245,286,9,9,1,5,0,0,4,3,9,5,8,2,1,2,0,0,0,0,0,1,0,0 -050,01,099,Alabama,Monroe County,4,12,1336,648,688,426,456,210,219,6,9,2,0,0,0,4,4,646,678,425,447,209,218,6,9,2,0,0,0,4,4,2,10,1,9,1,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,13,1071,507,564,347,384,153,168,4,7,1,0,0,0,2,5,505,561,345,382,153,168,4,7,1,0,0,0,2,4,2,3,2,2,0,0,0,0,0,0,0,0,0,1 -050,01,099,Alabama,Monroe County,4,14,932,445,487,299,332,136,147,5,4,1,1,0,0,4,3,441,486,295,331,136,147,5,4,1,1,0,0,4,3,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,15,849,381,468,265,299,109,161,4,3,1,1,0,0,2,4,380,467,264,298,109,161,4,3,1,1,0,0,2,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,16,665,269,396,197,271,68,121,1,3,0,0,0,0,3,1,269,394,197,270,68,120,1,3,0,0,0,0,3,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,17,481,174,307,114,217,59,88,0,1,0,0,0,0,1,1,173,305,114,215,58,88,0,1,0,0,0,0,1,1,1,2,0,2,1,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,18,458,125,333,78,213,47,115,0,3,0,0,0,0,0,2,124,331,77,212,47,114,0,3,0,0,0,0,0,2,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,99,24022,11500,12522,6683,7078,4588,5166,121,131,32,42,0,3,76,102,11410,12425,6626,7019,4561,5136,117,126,31,42,0,1,75,101,90,97,57,59,27,30,4,5,1,0,0,2,1,1 -050,01,099,Alabama,Monroe County,5,0,299,155,144,68,83,80,57,2,2,1,0,0,0,4,2,153,142,66,82,80,56,2,2,1,0,0,0,4,2,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,1,1425,717,708,342,368,352,315,6,8,1,2,0,0,16,15,708,699,333,363,352,312,6,7,1,2,0,0,16,15,9,9,9,5,0,3,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,2,1786,918,868,481,411,416,421,7,12,2,3,0,0,12,21,908,861,475,407,413,418,6,12,2,3,0,0,12,21,10,7,6,4,3,3,1,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,3,1878,953,925,446,450,481,452,12,9,2,3,0,0,12,11,944,919,441,448,478,448,12,9,2,3,0,0,11,11,9,6,5,2,3,4,0,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,5,4,1858,962,896,470,423,470,445,13,12,3,5,0,1,6,10,952,889,467,420,464,442,12,11,3,5,0,1,6,10,10,7,3,3,6,3,1,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,5,1404,693,711,365,343,314,351,8,9,4,2,0,0,2,6,686,706,360,340,313,350,7,8,4,2,0,0,2,6,7,5,5,3,1,1,1,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,6,1250,581,669,309,337,262,318,8,6,0,1,0,0,2,7,573,660,302,330,261,316,8,6,0,1,0,0,2,7,8,9,7,7,1,2,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,7,1447,697,750,422,403,257,334,11,5,5,4,0,0,2,4,692,745,420,399,254,333,11,5,5,4,0,0,2,4,5,5,2,4,3,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,8,1573,744,829,456,465,271,345,13,12,3,1,0,1,1,5,738,820,452,461,270,342,13,11,2,1,0,0,1,5,6,9,4,4,1,3,0,1,1,0,0,1,0,0 -050,01,099,Alabama,Monroe County,5,9,1702,799,903,497,495,288,393,8,6,1,5,0,0,5,4,795,899,493,493,288,391,8,6,1,5,0,0,5,4,4,4,4,2,0,2,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,10,1790,863,927,521,549,324,361,11,6,3,4,0,0,4,7,860,923,519,546,323,360,11,6,3,4,0,0,4,7,3,4,2,3,1,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,11,1571,774,797,504,462,255,315,9,8,1,5,0,1,5,6,768,791,499,460,254,312,9,8,1,5,0,0,5,6,6,6,5,2,1,3,0,0,0,0,0,1,0,0 -050,01,099,Alabama,Monroe County,5,12,1394,690,704,446,453,231,236,6,10,3,1,0,0,4,4,689,695,445,445,231,235,6,10,3,1,0,0,4,4,1,9,1,8,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,13,1116,516,600,359,414,150,175,4,7,1,0,0,0,2,4,513,592,356,407,150,175,4,7,1,0,0,0,2,3,3,8,3,7,0,0,0,0,0,0,0,0,0,1 -050,01,099,Alabama,Monroe County,5,14,917,455,462,293,313,152,138,5,7,1,1,0,0,4,3,451,460,289,311,152,138,5,7,1,1,0,0,4,3,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,15,863,372,491,253,326,112,156,4,3,1,1,0,0,2,5,370,489,252,324,111,156,4,3,1,1,0,0,2,5,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,16,671,292,379,216,262,71,112,1,4,0,0,0,0,4,1,291,376,215,260,71,111,1,4,0,0,0,0,4,1,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,17,474,164,310,117,225,46,84,0,0,0,0,0,0,1,1,163,308,117,223,45,84,0,0,0,0,0,0,1,1,1,2,0,2,1,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,18,435,122,313,84,194,38,114,0,3,0,0,0,0,0,2,121,311,83,193,38,113,0,3,0,0,0,0,0,2,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,99,23853,11467,12386,6649,6976,4570,5122,128,129,32,38,0,3,88,118,11375,12285,6584,6912,4548,5092,125,125,31,38,0,1,87,117,92,101,65,64,22,30,3,4,1,0,0,2,1,1 -050,01,099,Alabama,Monroe County,6,0,308,166,142,69,68,88,70,1,2,1,0,0,0,7,2,164,140,67,67,88,69,1,2,1,0,0,0,7,2,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,1,1336,648,688,305,364,320,303,7,6,1,2,0,0,15,13,642,679,299,359,320,299,7,6,1,2,0,0,15,13,6,9,6,5,0,4,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,2,1759,894,865,461,420,413,411,7,9,2,3,0,0,11,22,883,858,454,415,410,409,6,9,2,3,0,0,11,22,11,7,7,5,3,2,1,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,3,1953,1006,947,471,454,507,468,12,10,3,3,0,0,13,12,996,940,466,452,504,464,12,10,2,3,0,0,12,11,10,7,5,2,3,4,0,0,1,0,0,0,1,1 -050,01,099,Alabama,Monroe County,6,4,1840,950,890,453,425,474,437,13,12,3,5,1,1,6,10,941,881,450,422,469,432,12,11,3,5,1,1,6,10,9,9,3,3,5,5,1,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,5,1385,695,690,365,324,313,348,8,9,6,2,0,1,3,6,686,685,358,321,312,347,7,8,6,2,0,1,3,6,9,5,7,3,1,1,1,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,6,1200,555,645,287,329,258,303,8,5,0,1,0,0,2,7,548,639,281,324,257,302,8,5,0,1,0,0,2,7,7,6,6,5,1,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,7,1453,678,775,394,406,264,355,13,5,5,4,0,0,2,5,674,770,392,402,262,354,13,5,5,4,0,0,2,5,4,5,2,4,2,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,8,1492,711,781,442,425,255,338,10,12,3,1,0,1,1,4,706,772,438,421,255,335,10,11,2,1,0,0,1,4,5,9,4,4,0,3,0,1,1,0,0,1,0,0 -050,01,099,Alabama,Monroe County,6,9,1669,755,914,460,514,282,381,8,10,1,5,0,0,4,4,751,910,456,512,282,379,8,10,1,5,0,0,4,4,4,4,4,2,0,2,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,10,1778,885,893,542,529,322,347,14,6,3,4,0,0,4,7,882,889,540,526,321,346,14,6,3,4,0,0,4,7,3,4,2,3,1,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,11,1653,810,843,511,475,285,348,8,9,1,4,0,1,5,6,803,836,506,473,284,344,8,9,1,4,0,0,4,6,7,7,5,2,1,4,0,0,0,0,0,1,1,0 -050,01,099,Alabama,Monroe County,6,12,1404,676,728,444,461,216,251,8,11,3,1,0,0,5,4,674,718,443,453,215,249,8,11,3,1,0,0,5,4,2,10,1,8,1,2,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,13,1134,531,603,354,406,169,185,5,7,1,0,0,0,2,5,528,598,351,402,169,185,5,7,1,0,0,0,2,4,3,5,3,4,0,0,0,0,0,0,0,0,0,1 -050,01,099,Alabama,Monroe County,6,14,970,492,478,330,322,153,145,4,6,1,1,0,0,4,4,489,476,327,320,153,145,4,6,1,1,0,0,4,4,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,15,848,369,479,249,331,112,140,4,3,1,1,0,0,3,4,367,476,248,328,111,140,4,3,1,1,0,0,3,4,2,3,1,3,1,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,16,677,291,386,210,263,75,117,3,4,0,0,0,0,3,2,289,384,208,261,75,117,3,4,0,0,0,0,3,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,17,490,171,319,131,221,39,95,0,2,0,0,0,0,1,1,170,317,131,219,38,95,0,2,0,0,0,0,1,1,1,2,0,2,1,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,18,420,120,300,82,199,38,96,0,3,0,0,0,0,0,2,119,298,81,198,38,95,0,3,0,0,0,0,0,2,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,99,23769,11403,12366,6560,6936,4583,5138,133,131,35,37,1,4,91,120,11312,12266,6496,6875,4563,5106,130,128,33,37,1,2,89,118,91,100,64,61,20,32,3,3,2,0,0,2,2,2 -050,01,099,Alabama,Monroe County,7,0,323,175,148,82,77,85,67,1,2,0,0,0,0,7,2,172,146,80,76,84,66,1,2,0,0,0,0,7,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,1,1252,635,617,296,330,314,266,3,6,0,1,1,0,21,14,622,608,285,323,314,264,3,6,0,1,0,0,20,14,13,9,11,7,0,2,0,0,0,0,1,0,1,0 -050,01,099,Alabama,Monroe County,7,2,1749,883,866,465,410,395,417,5,10,2,5,0,0,16,24,874,858,459,406,393,414,4,10,2,4,0,0,16,24,9,8,6,4,2,3,1,0,0,1,0,0,0,0 -050,01,099,Alabama,Monroe County,7,3,1909,986,923,466,450,490,450,15,8,3,2,0,0,12,13,976,913,460,444,488,447,14,8,3,2,0,0,11,12,10,10,6,6,2,3,1,0,0,0,0,0,1,1 -050,01,099,Alabama,Monroe County,7,4,1833,945,888,442,431,478,430,12,14,3,2,2,1,8,10,939,880,441,427,475,426,11,14,3,2,1,1,8,10,6,8,1,4,3,4,1,0,0,0,1,0,0,0 -050,01,099,Alabama,Monroe County,7,5,1350,705,645,360,311,329,319,7,10,3,2,2,0,4,3,697,641,356,308,327,319,6,9,3,2,1,0,4,3,8,4,4,3,2,0,1,1,0,0,1,0,0,0 -050,01,099,Alabama,Monroe County,7,6,1249,583,666,326,341,247,309,5,7,0,1,0,0,5,8,575,657,320,334,246,308,5,6,0,1,0,0,4,8,8,9,6,7,1,1,0,1,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,7,7,1386,655,731,368,375,266,343,11,5,4,5,0,0,6,3,648,726,365,370,263,343,10,5,4,5,0,0,6,3,7,5,3,5,3,0,1,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,8,1472,686,786,413,437,259,332,11,11,0,2,0,0,3,4,681,778,410,432,258,330,11,10,0,2,0,0,2,4,5,8,3,5,1,2,0,1,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,7,9,1645,760,885,466,506,279,362,8,7,2,5,0,0,5,5,754,877,461,503,278,359,8,7,2,5,0,0,5,3,6,8,5,3,1,3,0,0,0,0,0,0,0,2 -050,01,099,Alabama,Monroe County,7,10,1778,896,882,532,492,339,367,16,7,1,3,0,0,8,13,892,878,530,489,337,366,16,7,1,3,0,0,8,13,4,4,2,3,2,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,11,1710,816,894,505,518,292,355,12,8,2,6,0,0,5,7,810,889,500,516,291,352,12,8,2,6,0,0,5,7,6,5,5,2,1,3,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,12,1471,719,752,470,460,233,274,7,10,4,2,0,0,5,6,715,744,466,455,233,271,7,10,4,2,0,0,5,6,4,8,4,5,0,3,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,13,1173,575,598,383,411,181,179,6,8,1,0,0,0,4,0,572,595,381,408,180,179,6,8,1,0,0,0,4,0,3,3,2,3,1,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,14,974,460,514,305,335,146,170,4,5,2,0,0,0,3,4,458,510,303,332,146,169,4,5,2,0,0,0,3,4,2,4,2,3,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,15,834,361,473,245,334,108,130,4,3,0,1,0,0,4,5,360,470,244,331,108,130,4,3,0,1,0,0,4,5,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,16,681,296,385,209,262,78,117,4,2,0,0,0,0,5,4,294,382,207,259,78,117,4,2,0,0,0,0,5,4,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,17,470,177,293,139,196,38,92,0,1,0,2,0,0,0,2,177,293,139,196,38,92,0,1,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,18,424,124,300,87,196,36,100,0,2,1,0,0,0,0,2,124,298,87,195,36,99,0,2,1,0,0,0,0,2,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,99,23683,11437,12246,6559,6872,4593,5079,131,126,28,39,5,1,121,129,11340,12143,6494,6804,4573,5051,126,123,28,38,2,1,117,126,97,103,65,68,20,28,5,3,0,1,3,0,4,3 -050,01,099,Alabama,Monroe County,8,0,308,158,150,82,68,67,78,1,2,0,0,0,0,8,2,155,148,80,67,66,77,1,2,0,0,0,0,8,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,1,1186,590,596,273,318,294,260,3,5,1,1,1,0,18,12,578,587,265,311,293,258,3,5,0,1,0,0,17,12,12,9,8,7,1,2,0,0,1,0,1,0,1,0 -050,01,099,Alabama,Monroe County,8,2,1759,876,883,456,425,398,421,6,10,2,5,0,0,14,22,867,874,450,420,396,419,5,9,2,4,0,0,14,22,9,9,6,5,2,2,1,1,0,1,0,0,0,0 -050,01,099,Alabama,Monroe County,8,3,1842,945,897,457,435,452,430,15,8,4,2,0,0,17,22,936,887,453,430,450,429,14,7,3,2,0,0,16,19,9,10,4,5,2,1,1,1,1,0,0,0,1,3 -050,01,099,Alabama,Monroe County,8,4,1883,974,909,448,435,500,446,10,14,3,1,3,1,10,12,966,901,447,430,495,443,10,14,3,1,1,1,10,12,8,8,1,5,5,3,0,0,0,0,2,0,0,0 -050,01,099,Alabama,Monroe County,8,5,1301,656,645,321,312,316,317,8,8,3,2,2,0,6,6,646,640,316,308,313,317,7,7,3,2,1,0,6,6,10,5,5,4,3,0,1,1,0,0,1,0,0,0 -050,01,099,Alabama,Monroe County,8,6,1262,594,668,333,338,249,313,5,7,0,1,0,0,7,9,585,660,326,332,248,312,5,6,0,1,0,0,6,9,9,8,7,6,1,1,0,1,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,8,7,1323,615,708,320,353,276,342,9,5,5,4,0,1,5,3,609,702,317,348,274,342,8,5,5,4,0,0,5,3,6,6,3,5,2,0,1,0,0,0,0,1,0,0 -050,01,099,Alabama,Monroe County,8,8,1458,673,785,420,438,238,329,11,11,1,2,0,0,3,5,666,780,416,434,237,328,11,11,0,2,0,0,2,5,7,5,4,4,1,1,0,0,1,0,0,0,1,0 -050,01,099,Alabama,Monroe County,8,9,1601,748,853,460,484,271,354,10,6,2,5,0,0,5,4,741,845,455,481,269,351,10,6,2,5,0,0,5,2,7,8,5,3,2,3,0,0,0,0,0,0,0,2 -050,01,099,Alabama,Monroe County,8,10,1763,881,882,510,485,353,374,10,7,2,3,0,0,6,13,876,878,508,482,350,373,10,7,2,3,0,0,6,13,5,4,2,3,3,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,11,1742,829,913,508,528,301,364,12,8,2,5,0,0,6,8,822,908,503,526,300,361,12,8,2,5,0,0,5,8,7,5,5,2,1,3,0,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,8,12,1548,771,777,492,468,264,292,7,10,4,2,0,0,4,5,767,769,488,463,264,289,7,10,4,2,0,0,4,5,4,8,4,5,0,3,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,13,1217,592,625,381,418,200,198,6,7,1,2,0,0,4,0,588,620,379,413,198,198,6,7,1,2,0,0,4,0,4,5,2,5,2,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,14,969,446,523,299,340,137,171,4,7,2,0,0,0,4,5,445,519,298,337,137,170,4,7,2,0,0,0,4,5,1,4,1,3,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,15,806,355,451,237,326,110,116,4,3,0,1,0,0,4,5,354,447,236,322,110,116,4,3,0,1,0,0,4,5,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,16,737,328,409,232,280,89,122,4,2,0,1,0,0,3,4,325,405,229,276,89,122,4,2,0,1,0,0,3,4,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,17,463,176,287,136,186,40,98,0,0,0,2,0,0,0,1,176,287,136,186,40,98,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,18,434,124,310,93,209,30,96,0,3,1,1,0,0,0,1,124,309,93,209,30,95,0,3,1,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,99,23602,11331,12271,6458,6846,4585,5121,125,123,33,40,6,2,124,139,11226,12166,6395,6775,4559,5098,121,119,30,39,2,1,119,134,105,105,63,71,26,23,4,4,3,1,4,1,5,5 -050,01,099,Alabama,Monroe County,9,0,310,173,137,84,56,79,77,1,2,0,0,0,0,9,2,170,135,82,55,78,76,1,2,0,0,0,0,9,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,1,1126,569,557,266,304,279,231,3,4,1,1,1,0,19,17,554,548,255,297,278,229,3,4,0,1,0,0,18,17,15,9,11,7,1,2,0,0,1,0,1,0,1,0 -050,01,099,Alabama,Monroe County,9,2,1704,860,844,450,407,386,399,6,9,2,4,0,0,16,25,849,836,441,403,385,397,5,8,2,3,0,0,16,25,11,8,9,4,1,2,1,1,0,1,0,0,0,0 -050,01,099,Alabama,Monroe County,9,3,1833,936,897,460,431,437,434,15,8,4,2,0,0,20,22,926,888,456,426,435,433,14,7,3,2,0,0,18,20,10,9,4,5,2,1,1,1,1,0,0,0,2,2 -050,01,099,Alabama,Monroe County,9,4,1832,967,865,440,411,499,428,12,13,3,1,3,1,10,11,959,857,439,407,494,424,12,13,3,1,1,1,10,11,8,8,1,4,5,4,0,0,0,0,2,0,0,0 -050,01,099,Alabama,Monroe County,9,5,1281,650,631,326,309,306,305,7,9,3,2,2,0,6,6,639,627,320,306,303,305,6,8,3,2,1,0,6,6,11,4,6,3,3,0,1,1,0,0,1,0,0,0 -050,01,099,Alabama,Monroe County,9,6,1197,550,647,302,320,237,309,4,8,0,1,0,0,7,9,542,639,296,314,236,308,4,7,0,1,0,0,6,9,8,8,6,6,1,1,0,1,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,9,7,1299,606,693,304,347,282,332,10,5,5,4,0,1,5,4,600,687,300,342,281,332,9,5,5,4,0,0,5,4,6,6,4,5,1,0,1,0,0,0,0,1,0,0 -050,01,099,Alabama,Monroe County,9,8,1430,665,765,420,417,232,329,10,11,0,2,0,1,3,5,659,760,416,413,231,328,10,11,0,2,0,1,2,5,6,5,4,4,1,1,0,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,9,9,1565,737,828,443,461,278,351,8,8,2,5,0,0,6,3,730,820,438,458,276,348,8,8,2,5,0,0,6,1,7,8,5,3,2,3,0,0,0,0,0,0,0,2 -050,01,099,Alabama,Monroe County,9,10,1763,877,886,501,489,353,374,14,6,2,3,0,0,7,14,873,882,499,486,351,373,14,6,2,3,0,0,7,14,4,4,2,3,2,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,11,1810,868,942,540,534,308,385,10,8,2,6,0,0,8,9,861,937,535,532,307,382,10,8,2,6,0,0,7,9,7,5,5,2,1,3,0,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,9,12,1558,755,803,459,471,279,315,9,8,4,3,0,0,4,6,751,795,455,466,279,312,9,8,4,3,0,0,4,6,4,8,4,5,0,3,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,13,1274,620,654,426,430,182,214,7,8,1,2,0,0,4,0,616,650,424,426,180,214,7,8,1,2,0,0,4,0,4,4,2,4,2,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,14,1031,496,535,322,363,163,157,5,9,2,0,0,0,4,6,495,530,321,359,163,156,5,9,2,0,0,0,4,6,1,5,1,4,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,15,821,351,470,231,320,112,139,4,3,0,0,0,0,4,8,350,466,230,316,112,139,4,3,0,0,0,0,4,8,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,16,728,325,403,228,271,90,125,3,2,0,1,0,0,4,4,321,399,225,267,89,125,3,2,0,1,0,0,4,4,4,4,3,4,1,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,17,447,161,286,121,186,39,96,0,1,1,2,0,0,0,1,161,285,121,186,39,95,0,1,1,2,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,18,428,123,305,94,203,28,97,0,3,1,1,0,0,0,1,123,304,94,203,28,96,0,3,1,1,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,99,23437,11289,12148,6417,6730,4569,5097,128,125,33,40,6,3,136,153,11179,12045,6347,6662,4545,5072,124,121,31,39,2,2,130,149,110,103,70,68,24,25,4,4,2,1,4,1,6,4 -050,01,099,Alabama,Monroe County,10,0,322,172,150,90,61,72,86,0,2,0,0,0,0,10,1,170,147,89,59,71,85,0,2,0,0,0,0,10,1,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,10,1,1130,602,528,288,274,292,231,3,5,0,1,1,0,18,17,590,519,279,266,291,230,3,5,0,1,0,0,17,17,12,9,9,8,1,1,0,0,0,0,1,0,1,0 -050,01,099,Alabama,Monroe County,10,2,1695,841,854,416,407,401,408,7,7,1,4,0,0,16,28,832,844,409,401,400,406,6,6,1,3,0,0,16,28,9,10,7,6,1,2,1,1,0,1,0,0,0,0 -050,01,099,Alabama,Monroe County,10,3,1843,944,899,474,451,426,411,16,8,4,2,0,0,24,27,932,888,468,445,424,410,15,7,3,2,0,0,22,24,12,11,6,6,2,1,1,1,1,0,0,0,2,3 -050,01,099,Alabama,Monroe County,10,4,1830,945,885,440,402,479,452,10,16,2,1,3,1,11,13,936,879,439,398,473,450,10,16,2,1,1,1,11,13,9,6,1,4,6,2,0,0,0,0,2,0,0,0 -050,01,099,Alabama,Monroe County,10,5,1214,639,575,320,286,302,275,6,5,4,1,2,0,5,8,631,573,315,284,300,275,6,5,4,1,1,0,5,8,8,2,5,2,2,0,0,0,0,0,1,0,0,0 -050,01,099,Alabama,Monroe County,10,6,1243,567,676,309,336,247,322,3,8,0,1,0,0,8,9,557,668,302,330,246,321,3,7,0,1,0,0,6,9,10,8,7,6,1,1,0,1,0,0,0,0,2,0 -050,01,099,Alabama,Monroe County,10,7,1240,594,646,302,320,274,314,7,4,5,4,0,1,6,3,589,640,299,315,273,314,6,4,5,4,0,0,6,3,5,6,3,5,1,0,1,0,0,0,0,1,0,0 -050,01,099,Alabama,Monroe County,10,8,1425,672,753,411,417,249,320,9,10,0,1,0,0,3,5,666,747,406,413,249,318,9,10,0,1,0,0,2,5,6,6,5,4,0,2,0,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,10,9,1498,685,813,417,444,253,353,8,8,2,5,0,0,5,3,677,806,411,440,251,352,8,8,2,5,0,0,5,1,8,7,6,4,2,1,0,0,0,0,0,0,0,2 -050,01,099,Alabama,Monroe County,10,10,1722,843,879,500,486,318,374,14,5,3,1,0,0,8,13,839,874,498,482,316,373,14,5,3,1,0,0,8,13,4,5,2,4,2,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,10,11,1776,862,914,520,536,318,354,12,8,2,4,0,0,10,12,855,908,515,534,317,350,12,8,2,4,0,0,9,12,7,6,5,2,1,4,0,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,10,12,1630,771,859,472,471,285,369,5,10,5,3,0,0,4,6,767,853,468,468,285,366,5,10,5,3,0,0,4,6,4,6,4,3,0,3,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,10,13,1324,653,671,440,440,199,221,9,8,1,2,0,0,4,0,649,666,438,435,197,221,9,8,1,2,0,0,4,0,4,5,2,5,2,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,10,14,1109,525,584,357,388,157,183,5,7,2,0,0,0,4,6,524,579,356,383,157,183,5,7,2,0,0,0,4,6,1,5,1,5,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,10,15,806,360,446,227,300,125,135,4,3,0,0,0,0,4,8,359,442,226,296,125,135,4,3,0,0,0,0,4,8,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,10,16,720,310,410,216,283,86,119,4,3,0,1,0,0,4,4,305,406,212,279,85,119,4,3,0,1,0,0,4,4,5,4,4,4,1,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,10,17,443,164,279,129,186,34,89,0,1,1,2,0,0,0,1,164,278,129,186,34,88,0,1,1,2,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,10,18,423,120,303,97,199,22,98,0,4,1,1,0,0,0,1,120,303,97,199,22,98,0,4,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,10,99,23393,11269,12124,6425,6687,4539,5114,122,122,33,34,6,2,144,165,11162,12020,6356,6613,4516,5094,119,119,32,33,2,1,137,160,107,104,69,74,23,20,3,3,1,1,4,1,7,5 -050,01,099,Alabama,Monroe County,11,0,296,151,145,78,72,65,69,0,3,0,0,0,0,8,1,149,142,77,70,64,68,0,3,0,0,0,0,8,1,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,11,1,1162,618,544,299,257,299,265,4,3,1,1,1,0,14,18,601,535,286,249,298,264,4,3,0,1,0,0,13,18,17,9,13,8,1,1,0,0,1,0,1,0,1,0 -050,01,099,Alabama,Monroe County,11,2,1601,790,811,390,395,375,374,7,8,1,4,0,0,17,30,780,802,382,390,374,372,6,7,1,3,0,0,17,30,10,9,8,5,1,2,1,1,0,1,0,0,0,0 -050,01,099,Alabama,Monroe County,11,3,1805,937,868,477,438,414,391,16,9,4,2,0,0,26,28,921,857,467,431,412,391,15,8,3,2,0,0,24,25,16,11,10,7,2,0,1,1,1,0,0,0,2,3 -050,01,099,Alabama,Monroe County,11,4,1848,974,874,448,391,499,454,9,13,2,1,3,2,13,13,965,867,447,387,493,451,9,13,2,1,1,2,13,13,9,7,1,4,6,3,0,0,0,0,2,0,0,0 -050,01,099,Alabama,Monroe County,11,5,1160,609,551,293,271,299,266,6,5,4,1,2,0,5,8,600,549,287,269,297,266,6,5,4,1,1,0,5,8,9,2,6,2,2,0,0,0,0,0,1,0,0,0 -050,01,099,Alabama,Monroe County,11,6,1229,568,661,315,308,242,332,3,9,0,1,0,0,8,11,560,655,310,303,241,332,3,8,0,1,0,0,6,11,8,6,5,5,1,0,0,1,0,0,0,0,2,0 -050,01,099,Alabama,Monroe County,11,7,1207,595,612,289,316,288,284,8,4,4,4,0,1,6,3,589,605,285,310,287,284,7,4,4,4,0,0,6,3,6,7,4,6,1,0,1,0,0,0,0,1,0,0 -050,01,099,Alabama,Monroe County,11,8,1440,656,784,392,416,247,349,14,12,0,1,0,1,3,5,650,778,388,412,246,347,14,12,0,1,0,1,2,5,6,6,4,4,1,2,0,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,11,9,1466,676,790,393,420,267,355,9,7,2,5,0,0,5,3,669,784,388,418,265,353,9,7,2,5,0,0,5,1,7,6,5,2,2,2,0,0,0,0,0,0,0,2 -050,01,099,Alabama,Monroe County,11,10,1685,828,857,489,489,313,347,13,5,3,1,0,0,10,15,824,852,487,485,311,346,13,5,3,1,0,0,10,15,4,5,2,4,2,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,11,11,1751,870,881,523,507,320,346,15,8,2,7,0,0,10,13,862,876,517,506,319,342,15,8,2,7,0,0,9,13,8,5,6,1,1,4,0,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,11,12,1678,784,894,458,476,310,399,7,10,5,3,0,0,4,6,780,888,454,473,310,396,7,10,5,3,0,0,4,6,4,6,4,3,0,3,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,11,13,1337,657,680,447,448,197,220,8,10,1,2,0,0,4,0,652,675,444,443,195,220,8,10,1,2,0,0,4,0,5,5,3,5,2,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,11,14,1118,528,590,354,396,162,181,6,7,2,0,0,0,4,6,528,585,354,392,162,180,6,7,2,0,0,0,4,6,0,5,0,4,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,11,15,835,382,453,244,308,130,132,4,4,0,0,0,0,4,9,381,447,243,302,130,132,4,4,0,0,0,0,4,9,1,6,1,6,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,11,16,719,307,412,211,273,86,132,5,2,0,1,0,0,5,4,302,408,207,269,85,132,5,2,0,1,0,0,5,4,5,4,4,4,1,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,11,17,434,161,273,127,186,33,83,0,1,1,2,0,0,0,1,161,272,127,186,33,82,0,1,1,2,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,11,18,447,126,321,97,212,28,103,0,4,1,1,0,0,0,1,126,321,97,212,28,103,0,4,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,11,99,23218,11217,12001,6324,6579,4574,5082,134,124,33,37,6,4,146,175,11100,11898,6247,6507,4550,5061,131,121,31,36,2,3,139,170,117,103,77,72,24,21,3,3,2,1,4,1,7,5 -050,01,099,Alabama,Monroe County,12,0,283,147,136,68,61,72,71,0,3,0,0,0,0,7,1,145,133,67,59,71,70,0,3,0,0,0,0,7,1,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,1,1099,571,528,289,247,263,260,4,3,1,1,1,0,13,17,556,519,278,239,262,259,4,3,0,1,0,0,12,17,15,9,11,8,1,1,0,0,1,0,1,0,1,0 -050,01,099,Alabama,Monroe County,12,2,1532,774,758,387,381,362,334,7,8,1,4,0,0,17,31,763,749,378,376,361,332,6,7,1,3,0,0,17,31,11,9,9,5,1,2,1,1,0,1,0,0,0,0 -050,01,099,Alabama,Monroe County,12,3,1782,918,864,452,421,418,403,17,10,4,2,0,0,27,28,907,853,447,414,416,403,16,9,3,2,0,0,25,25,11,11,5,7,2,0,1,1,1,0,0,0,2,3 -050,01,099,Alabama,Monroe County,12,4,1821,979,842,461,380,490,431,10,16,2,1,3,1,13,13,970,834,460,375,484,428,10,16,2,1,1,1,13,13,9,8,1,5,6,3,0,0,0,0,2,0,0,0 -050,01,099,Alabama,Monroe County,12,5,1172,609,563,292,272,300,276,6,6,4,1,2,0,5,8,600,561,286,270,298,276,6,6,4,1,1,0,5,8,9,2,6,2,2,0,0,0,0,0,1,0,0,0 -050,01,099,Alabama,Monroe County,12,6,1190,556,634,308,299,237,315,3,8,0,1,0,0,8,11,547,628,302,294,236,315,3,7,0,1,0,0,6,11,9,6,6,5,1,0,0,1,0,0,0,0,2,0 -050,01,099,Alabama,Monroe County,12,7,1228,591,637,299,320,271,305,10,4,5,4,0,1,6,3,585,630,295,314,270,305,9,4,5,4,0,0,6,3,6,7,4,6,1,0,1,0,0,0,0,1,0,0 -050,01,099,Alabama,Monroe County,12,8,1407,636,771,378,401,245,351,10,12,0,1,0,1,3,5,629,764,373,396,244,349,10,12,0,1,0,1,2,5,7,7,5,5,1,2,0,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,12,9,1466,663,803,374,432,274,355,8,8,2,5,0,0,5,3,656,795,369,428,272,353,8,8,2,5,0,0,5,1,7,8,5,4,2,2,0,0,0,0,0,0,0,2 -050,01,099,Alabama,Monroe County,12,10,1680,847,833,504,475,317,337,13,5,3,1,0,0,10,15,843,828,502,471,315,336,13,5,3,1,0,0,10,15,4,5,2,4,2,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,11,1711,843,868,497,471,321,370,13,8,2,6,0,0,10,13,837,863,493,470,320,366,13,8,2,6,0,0,9,13,6,5,4,1,1,4,0,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,12,12,1686,759,927,437,499,305,408,8,11,5,3,0,0,4,6,755,921,433,496,305,405,8,11,5,3,0,0,4,6,4,6,4,3,0,3,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,13,1393,706,687,462,451,230,225,9,9,1,2,0,0,4,0,701,682,459,446,228,225,9,9,1,2,0,0,4,0,5,5,3,5,2,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,14,1156,556,600,378,408,166,178,6,8,2,0,0,0,4,6,556,593,378,402,166,177,6,8,2,0,0,0,4,6,0,7,0,6,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,15,828,349,479,236,318,105,148,4,4,0,0,0,0,4,9,348,473,235,312,105,148,4,4,0,0,0,0,4,9,1,6,1,6,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,16,719,307,412,211,273,87,131,4,3,0,1,0,0,5,4,302,408,207,269,86,131,4,3,0,1,0,0,5,4,5,4,4,4,1,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,17,467,173,294,135,199,37,91,0,1,1,2,0,0,0,1,173,293,135,199,37,90,0,1,1,2,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,18,448,125,323,95,207,29,110,0,4,1,1,0,0,0,1,125,323,95,207,29,110,0,4,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,99,23068,11109,11959,6263,6515,4529,5099,132,131,34,36,6,3,145,175,10998,11850,6192,6437,4505,5078,129,128,32,35,2,2,138,170,111,109,71,78,24,21,3,3,2,1,4,1,7,5 -050,01,099,Alabama,Monroe County,13,0,283,149,134,68,59,72,70,0,3,0,0,1,0,8,2,146,133,67,58,71,70,0,3,0,0,1,0,7,2,3,1,1,1,1,0,0,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,13,1,1103,573,530,289,245,264,260,4,3,1,0,0,3,15,19,556,517,277,236,261,258,3,3,1,0,0,1,14,19,17,13,12,9,3,2,1,0,0,0,0,2,1,0 -050,01,099,Alabama,Monroe County,13,2,1530,772,758,385,381,360,333,6,7,3,4,0,1,18,32,758,746,375,375,358,331,4,6,3,3,0,0,18,31,14,12,10,6,2,2,2,1,0,1,0,1,0,1 -050,01,099,Alabama,Monroe County,13,3,1758,905,853,451,418,415,400,14,11,4,3,0,0,21,21,894,844,445,412,412,400,14,10,3,3,0,0,20,19,11,9,6,6,3,0,0,1,1,0,0,0,1,2 -050,01,099,Alabama,Monroe County,13,4,1804,973,831,457,377,487,426,9,14,5,0,2,0,13,14,958,822,452,371,481,424,9,13,4,0,0,0,12,14,15,9,5,6,6,2,0,1,1,0,2,0,1,0 -050,01,099,Alabama,Monroe County,13,5,1189,619,570,296,274,300,279,7,7,4,1,4,1,8,8,602,563,288,270,298,278,5,6,3,1,1,0,7,8,17,7,8,4,2,1,2,1,1,0,3,1,1,0 -050,01,099,Alabama,Monroe County,13,6,1202,570,632,311,299,237,313,9,8,2,3,3,1,8,8,552,624,303,294,235,313,5,6,1,3,1,0,7,8,18,8,8,5,2,0,4,2,1,0,2,1,1,0 -050,01,099,Alabama,Monroe County,13,7,1237,596,641,301,320,276,307,9,6,2,3,2,0,6,5,586,629,297,312,274,306,8,4,2,3,1,0,4,4,10,12,4,8,2,1,1,2,0,0,1,0,2,1 -050,01,099,Alabama,Monroe County,13,8,1397,629,768,371,397,242,347,9,15,3,3,0,1,4,5,624,760,366,393,242,346,9,12,3,3,0,1,4,5,5,8,5,4,0,1,0,3,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,9,1457,655,802,369,430,272,354,8,9,2,5,0,1,4,3,648,796,364,426,270,353,8,8,2,5,0,1,4,3,7,6,5,4,2,1,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,10,1657,837,820,497,468,318,334,12,6,2,1,0,0,8,11,831,816,496,465,314,333,11,6,2,1,0,0,8,11,6,4,1,3,4,1,1,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,11,1693,835,858,495,466,320,368,12,9,1,5,0,0,7,10,829,853,490,465,319,364,12,9,1,5,0,0,7,10,6,5,5,1,1,4,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,12,1684,757,927,439,499,306,408,7,10,4,5,0,0,1,5,753,920,435,496,306,404,7,10,4,5,0,0,1,5,4,7,4,3,0,4,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,13,1398,703,695,462,452,229,228,8,9,1,2,0,0,3,4,700,690,459,448,229,227,8,9,1,2,0,0,3,4,3,5,3,4,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,14,1152,556,596,378,407,166,177,5,6,5,0,0,0,2,6,556,589,378,400,166,177,5,6,5,0,0,0,2,6,0,7,0,7,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,15,825,349,476,238,319,105,149,4,3,0,1,0,0,2,4,347,469,236,313,105,148,4,3,0,1,0,0,2,4,2,7,2,6,0,1,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,16,712,302,410,210,270,87,131,3,3,0,3,0,0,2,3,298,407,206,267,87,131,3,3,0,3,0,0,2,3,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,17,463,171,292,135,197,36,90,0,1,0,1,0,0,0,3,170,290,134,195,36,90,0,1,0,1,0,0,0,3,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,18,450,126,324,96,207,29,110,0,4,1,1,0,0,0,2,126,324,96,207,29,110,0,4,1,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,99,22994,11077,11917,6248,6485,4521,5084,126,134,40,41,12,8,130,165,10934,11792,6164,6403,4493,5063,115,122,36,40,4,3,122,161,143,125,84,82,28,21,11,12,4,1,8,5,8,4 -050,01,101,Alabama,Montgomery County,1,0,3184,1640,1544,678,624,911,859,2,4,18,21,0,1,31,35,1611,1511,654,599,907,856,2,2,18,19,0,1,30,34,29,33,24,25,4,3,0,2,0,2,0,0,1,1 -050,01,101,Alabama,Montgomery County,1,1,12289,6196,6093,2509,2369,3516,3542,19,17,69,72,1,7,82,86,6114,6000,2444,2304,3501,3523,19,15,67,71,1,4,82,83,82,93,65,65,15,19,0,2,2,1,0,3,0,3 -050,01,101,Alabama,Montgomery County,1,2,16315,8178,8137,3095,3074,4892,4881,16,18,87,61,2,3,86,100,8059,8027,3013,3001,4862,4858,13,16,85,60,2,3,84,89,119,110,82,73,30,23,3,2,2,1,0,0,2,11 -050,01,101,Alabama,Montgomery County,1,3,16299,8449,7850,3325,3023,4923,4684,22,19,66,54,2,6,111,64,8338,7754,3256,2977,4889,4645,20,12,66,53,2,6,105,61,111,96,69,46,34,39,2,7,0,1,0,0,6,3 -050,01,101,Alabama,Montgomery County,1,4,17255,8824,8431,3449,3054,5204,5184,31,22,55,89,2,4,83,78,8707,8331,3368,2991,5174,5158,28,15,55,88,2,4,80,75,117,100,81,63,30,26,3,7,0,1,0,0,3,3 -050,01,101,Alabama,Montgomery County,1,5,18565,9328,9237,4016,3346,5019,5674,49,24,114,98,4,6,126,89,9147,9123,3873,3264,4992,5650,43,20,114,96,4,6,121,87,181,114,143,82,27,24,6,4,0,2,0,0,5,2 -050,01,101,Alabama,Montgomery County,1,6,16998,8288,8710,3939,3658,4140,4859,34,17,95,112,3,2,77,62,8112,8588,3793,3568,4115,4832,33,17,93,109,2,2,76,60,176,122,146,90,25,27,1,0,2,3,1,0,1,2 -050,01,101,Alabama,Montgomery County,1,7,15421,7459,7962,3846,3548,3439,4221,21,15,113,117,2,4,38,57,7306,7856,3716,3472,3420,4197,21,14,110,115,2,3,37,55,153,106,130,76,19,24,0,1,3,2,0,1,1,2 -050,01,101,Alabama,Montgomery County,1,8,17228,8352,8876,4500,4106,3679,4576,29,26,98,120,4,4,42,44,8209,8763,4388,4028,3654,4549,28,24,97,117,4,4,38,41,143,113,112,78,25,27,1,2,1,3,0,0,4,3 -050,01,101,Alabama,Montgomery County,1,9,16938,7954,8984,4244,4311,3550,4478,35,24,76,120,2,2,47,49,7856,8904,4166,4246,3537,4466,34,22,74,119,2,2,43,49,98,80,78,65,13,12,1,2,2,1,0,0,4,0 -050,01,101,Alabama,Montgomery County,1,10,15330,7078,8252,3980,4269,2981,3819,28,16,57,105,3,2,29,41,6993,8198,3909,4230,2972,3805,25,16,56,104,3,2,28,41,85,54,71,39,9,14,3,0,1,1,0,0,1,0 -050,01,101,Alabama,Montgomery County,1,11,13470,6476,6994,3923,4120,2466,2717,13,16,45,99,0,1,29,41,6411,6947,3875,4088,2453,2703,13,16,44,99,0,1,26,40,65,47,48,32,13,14,0,0,1,0,0,0,3,1 -050,01,101,Alabama,Montgomery County,1,12,9885,4608,5277,2995,3320,1530,1856,14,10,49,64,0,1,20,26,4570,5244,2962,3296,1525,1849,14,10,49,63,0,1,20,25,38,33,33,24,5,7,0,0,0,1,0,0,0,1 -050,01,101,Alabama,Montgomery County,1,13,8025,3576,4449,2315,2680,1199,1699,8,10,29,42,0,1,25,17,3549,4420,2293,2663,1195,1691,7,9,29,41,0,1,25,15,27,29,22,17,4,8,1,1,0,1,0,0,0,2 -050,01,101,Alabama,Montgomery County,1,14,7449,3310,4139,2206,2569,1075,1509,6,4,14,34,0,0,9,23,3289,4114,2187,2551,1073,1503,6,4,14,33,0,0,9,23,21,25,19,18,2,6,0,0,0,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,1,15,6454,2635,3819,1778,2517,840,1259,3,2,11,23,0,2,3,16,2621,3806,1766,2506,839,1258,3,2,10,22,0,2,3,16,14,13,12,11,1,1,0,0,1,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,1,16,5532,2000,3532,1425,2489,560,1020,2,6,4,9,0,0,9,8,1995,3523,1420,2482,560,1018,2,6,4,9,0,0,9,8,5,9,5,7,0,2,0,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,1,17,3639,1238,2401,908,1685,321,702,2,2,5,3,0,1,2,8,1236,2394,906,1679,321,702,2,2,5,3,0,1,2,7,2,7,2,6,0,0,0,0,0,0,0,0,0,1 -050,01,101,Alabama,Montgomery County,1,18,3242,773,2469,508,1668,259,791,1,0,2,3,0,0,3,7,768,2459,507,1660,256,789,1,0,2,3,0,0,2,7,5,10,1,8,3,2,0,0,0,0,0,0,1,0 -050,01,101,Alabama,Montgomery County,1,99,223518,106362,117156,53639,56430,50504,58330,335,252,1007,1246,25,47,852,851,104891,115962,52496,55605,50245,58052,314,222,992,1224,24,43,820,816,1471,1194,1143,825,259,278,21,30,15,22,1,4,32,35 -050,01,101,Alabama,Montgomery County,2,0,3214,1654,1560,679,627,920,865,2,4,20,22,0,1,33,41,1624,1526,654,601,916,862,2,2,20,20,0,1,32,40,30,34,25,26,4,3,0,2,0,2,0,0,1,1 -050,01,101,Alabama,Montgomery County,2,1,12195,6144,6051,2472,2334,3495,3526,19,17,69,73,1,7,88,94,6063,5958,2408,2269,3480,3507,19,15,67,72,1,4,88,91,81,93,64,65,15,19,0,2,2,1,0,3,0,3 -050,01,101,Alabama,Montgomery County,2,2,16146,8089,8057,3027,3013,4875,4864,16,18,89,62,2,3,80,97,7970,7946,2945,2940,4845,4840,13,16,87,61,2,3,78,86,119,111,82,73,30,24,3,2,2,1,0,0,2,11 -050,01,101,Alabama,Montgomery County,2,3,16340,8474,7866,3298,3004,4965,4725,21,19,69,55,2,6,119,57,8363,7770,3229,2958,4931,4686,19,12,69,54,2,6,113,54,111,96,69,46,34,39,2,7,0,1,0,0,6,3 -050,01,101,Alabama,Montgomery County,2,4,17221,8810,8411,3425,3031,5220,5176,31,23,56,93,2,4,76,84,8691,8312,3343,2968,5190,5151,28,16,56,92,2,4,72,81,119,99,82,63,30,25,3,7,0,1,0,0,4,3 -050,01,101,Alabama,Montgomery County,2,5,18631,9346,9285,4012,3353,5040,5718,48,24,110,92,5,6,131,92,9152,9167,3858,3267,5013,5694,42,20,110,90,4,6,125,90,194,118,154,86,27,24,6,4,0,2,1,0,6,2 -050,01,101,Alabama,Montgomery County,2,6,16834,8202,8632,3897,3616,4099,4822,34,17,95,113,3,2,74,62,8016,8504,3741,3520,4074,4795,33,17,93,110,2,2,73,60,186,128,156,96,25,27,1,0,2,3,1,0,1,2 -050,01,101,Alabama,Montgomery County,2,7,15365,7440,7925,3834,3527,3426,4203,21,15,117,121,2,4,40,55,7277,7816,3697,3448,3404,4179,21,14,114,119,2,3,39,53,163,109,137,79,22,24,0,1,3,2,0,1,1,2 -050,01,101,Alabama,Montgomery County,2,8,17147,8305,8842,4459,4075,3671,4570,29,26,101,124,4,4,41,43,8157,8726,4345,3995,3643,4542,28,24,100,121,4,4,37,40,148,116,114,80,28,28,1,2,1,3,0,0,4,3 -050,01,101,Alabama,Montgomery County,2,9,16978,7975,9003,4242,4311,3569,4494,34,24,80,125,2,2,48,47,7870,8922,4160,4245,3554,4482,33,22,78,124,2,2,43,47,105,81,82,66,15,12,1,2,2,1,0,0,5,0 -050,01,101,Alabama,Montgomery County,2,10,15414,7113,8301,3997,4285,2996,3844,28,18,59,109,3,2,30,43,7026,8247,3925,4246,2986,3830,25,18,58,108,3,2,29,43,87,54,72,39,10,14,3,0,1,1,0,0,1,0 -050,01,101,Alabama,Montgomery County,2,11,13609,6551,7058,3958,4144,2506,2756,13,16,45,100,0,1,29,41,6485,7011,3909,4112,2493,2742,13,16,44,100,0,1,26,40,66,47,49,32,13,14,0,0,1,0,0,0,3,1 -050,01,101,Alabama,Montgomery County,2,12,9938,4633,5305,3010,3331,1541,1871,14,10,49,66,0,1,19,26,4595,5272,2977,3307,1536,1864,14,10,49,65,0,1,19,25,38,33,33,24,5,7,0,0,0,1,0,0,0,1 -050,01,101,Alabama,Montgomery County,2,13,8060,3600,4460,2324,2685,1209,1707,8,10,29,42,0,1,30,15,3573,4431,2302,2668,1205,1699,7,9,29,41,0,1,30,13,27,29,22,17,4,8,1,1,0,1,0,0,0,2 -050,01,101,Alabama,Montgomery County,2,14,7455,3314,4141,2201,2561,1082,1518,6,4,14,34,0,0,11,24,3293,4116,2182,2543,1080,1512,6,4,14,33,0,0,11,24,21,25,19,18,2,6,0,0,0,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,2,15,6462,2647,3815,1777,2508,853,1263,3,2,11,24,0,2,3,16,2633,3802,1765,2497,852,1262,3,2,10,23,0,2,3,16,14,13,12,11,1,1,0,0,1,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,2,16,5546,2009,3537,1427,2484,567,1031,2,6,4,9,0,0,9,7,2004,3528,1422,2477,567,1029,2,6,4,9,0,0,9,7,5,9,5,7,0,2,0,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,2,17,3645,1246,2399,911,1682,326,704,2,2,5,3,0,1,2,7,1244,2392,909,1676,326,704,2,2,5,3,0,1,2,6,2,7,2,6,0,0,0,0,0,0,0,0,0,1 -050,01,101,Alabama,Montgomery County,2,18,3228,775,2453,510,1654,260,789,1,0,2,3,0,0,2,7,770,2443,509,1646,257,787,1,0,2,3,0,0,1,7,5,10,1,8,3,2,0,0,0,0,0,0,1,0 -050,01,101,Alabama,Montgomery County,2,99,223428,106327,117101,53460,56225,50620,58446,332,255,1024,1270,26,47,865,858,104806,115889,52280,55383,50352,58167,311,225,1009,1248,24,43,830,823,1521,1212,1180,842,268,279,21,30,15,22,2,4,35,35 -050,01,101,Alabama,Montgomery County,3,0,3495,1788,1707,683,713,1049,934,5,5,13,10,1,1,37,44,1756,1670,659,686,1044,928,4,4,13,8,0,1,36,43,32,37,24,27,5,6,1,1,0,2,1,0,1,1 -050,01,101,Alabama,Montgomery County,3,1,12246,6238,6008,2499,2335,3518,3447,26,15,81,92,4,11,110,108,6128,5897,2415,2256,3506,3432,22,11,78,90,1,6,106,102,110,111,84,79,12,15,4,4,3,2,3,5,4,6 -050,01,101,Alabama,Montgomery County,3,2,15746,7793,7953,2872,2934,4671,4785,31,25,106,82,4,4,109,123,7655,7816,2773,2844,4647,4761,25,20,103,79,2,2,105,110,138,137,99,90,24,24,6,5,3,3,2,2,4,13 -050,01,101,Alabama,Montgomery County,3,3,16542,8531,8011,3197,2968,5106,4887,23,19,90,57,2,7,113,73,8411,7905,3115,2906,5079,4855,20,11,89,57,2,6,106,70,120,106,82,62,27,32,3,8,1,0,0,1,7,3 -050,01,101,Alabama,Montgomery County,3,4,16758,8639,8119,3287,2895,5176,5013,28,26,57,96,3,4,88,85,8506,8014,3195,2833,5143,4989,24,17,57,93,2,2,85,80,133,105,92,62,33,24,4,9,0,3,1,2,3,5 -050,01,101,Alabama,Montgomery County,3,5,18679,9328,9351,3956,3273,5069,5859,46,28,118,89,9,9,130,93,9081,9198,3765,3164,5043,5830,36,23,113,86,4,6,120,89,247,153,191,109,26,29,10,5,5,3,5,3,10,4 -050,01,101,Alabama,Montgomery County,3,6,16129,7869,8260,3681,3339,3973,4730,34,18,98,104,7,5,76,64,7621,8114,3479,3225,3947,4709,28,16,93,100,2,3,72,61,248,146,202,114,26,21,6,2,5,4,5,2,4,3 -050,01,101,Alabama,Montgomery County,3,7,15386,7433,7953,3828,3520,3423,4198,29,14,101,153,7,7,45,61,7235,7811,3663,3420,3402,4171,27,10,97,149,3,3,43,58,198,142,165,100,21,27,2,4,4,4,4,4,2,3 -050,01,101,Alabama,Montgomery County,3,8,16598,7988,8610,4186,3876,3615,4515,27,25,109,139,8,4,43,51,7819,8485,4056,3789,3588,4487,24,22,108,137,5,4,38,46,169,125,130,87,27,28,3,3,1,2,3,0,5,5 -050,01,101,Alabama,Montgomery County,3,9,16807,7935,8872,4180,4251,3566,4412,35,32,98,131,2,2,54,44,7812,8776,4088,4170,3549,4400,31,29,94,131,2,2,48,44,123,96,92,81,17,12,4,3,4,0,0,0,6,0 -050,01,101,Alabama,Montgomery County,3,10,15785,7249,8536,3965,4239,3149,4124,22,11,73,105,5,5,35,52,7163,8472,3898,4195,3137,4107,21,11,72,104,3,4,32,51,86,64,67,44,12,17,1,0,1,1,2,1,3,1 -050,01,101,Alabama,Montgomery County,3,11,14242,6769,7473,3981,4281,2678,3020,14,16,59,111,0,1,37,44,6696,7417,3929,4246,2663,3002,14,16,58,110,0,1,32,42,73,56,52,35,15,18,0,0,1,1,0,0,5,2 -050,01,101,Alabama,Montgomery County,3,12,10200,4822,5378,3113,3342,1635,1933,11,6,43,70,0,1,20,26,4783,5346,3081,3321,1628,1925,11,6,43,69,0,1,20,24,39,32,32,21,7,8,0,0,0,1,0,0,0,2 -050,01,101,Alabama,Montgomery County,3,13,8093,3638,4455,2344,2664,1223,1729,13,11,35,35,0,1,23,15,3608,4428,2322,2648,1218,1722,11,10,34,34,0,1,23,13,30,27,22,16,5,7,2,1,1,1,0,0,0,2 -050,01,101,Alabama,Montgomery County,3,14,7427,3262,4165,2124,2573,1105,1530,3,3,20,36,0,0,10,23,3242,4145,2107,2559,1102,1525,3,3,20,35,0,0,10,23,20,20,17,14,3,5,0,0,0,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,3,15,6508,2726,3782,1867,2440,841,1295,0,1,14,26,0,3,4,17,2703,3766,1847,2428,839,1292,0,1,13,25,0,3,4,17,23,16,20,12,2,3,0,0,1,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,3,16,5466,1967,3499,1371,2438,584,1034,3,5,3,11,0,0,6,11,1961,3489,1365,2431,584,1031,3,5,3,11,0,0,6,11,6,10,6,7,0,3,0,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,3,17,3745,1284,2461,952,1750,323,691,2,2,4,8,0,1,3,9,1280,2455,949,1745,322,691,2,2,4,8,0,1,3,8,4,6,3,5,1,0,0,0,0,0,0,0,0,1 -050,01,101,Alabama,Montgomery County,3,18,3196,789,2407,532,1620,250,776,1,1,3,3,0,0,3,7,785,2399,532,1613,247,775,1,1,3,3,0,0,2,7,4,8,0,7,3,1,0,0,0,0,0,0,1,0 -050,01,101,Alabama,Montgomery County,3,99,223048,106048,117000,52618,55451,50954,58912,353,263,1125,1358,52,66,946,950,104245,115603,51238,54479,50688,58632,307,218,1095,1329,26,46,891,899,1803,1397,1380,972,266,280,46,45,30,29,26,20,55,51 -050,01,101,Alabama,Montgomery County,4,0,3300,1654,1646,649,626,944,955,2,4,15,18,1,1,43,42,1606,1581,609,573,938,947,2,3,15,16,0,1,42,41,48,65,40,53,6,8,0,1,0,2,1,0,1,1 -050,01,101,Alabama,Montgomery County,4,1,12669,6474,6195,2553,2409,3677,3539,23,18,82,80,4,12,135,137,6338,6061,2455,2312,3656,3523,18,13,79,78,1,6,129,129,136,134,98,97,21,16,5,5,3,2,3,6,6,8 -050,01,101,Alabama,Montgomery County,4,2,15634,7769,7865,2854,2786,4653,4803,34,24,107,106,3,5,118,141,7596,7720,2727,2690,4624,4780,27,17,106,104,1,3,111,126,173,145,127,96,29,23,7,7,1,2,2,2,7,15 -050,01,101,Alabama,Montgomery County,4,3,16691,8591,8100,3080,2889,5253,5016,21,22,110,73,3,6,124,94,8448,7981,2984,2807,5221,4993,16,15,109,72,3,5,115,89,143,119,96,82,32,23,5,7,1,1,0,1,9,5 -050,01,101,Alabama,Montgomery County,4,4,16441,8509,7932,3199,2777,5149,4950,22,22,64,93,3,4,72,86,8383,7810,3109,2710,5124,4914,17,13,63,91,2,2,68,80,126,122,90,67,25,36,5,9,1,2,1,2,4,6 -050,01,101,Alabama,Montgomery County,4,5,18820,9332,9488,3864,3311,5174,5956,42,28,107,94,12,8,133,91,9038,9306,3635,3174,5141,5929,32,23,102,90,5,5,123,85,294,182,229,137,33,27,10,5,5,4,7,3,10,6 -050,01,101,Alabama,Montgomery County,4,6,15847,7596,8251,3502,3233,3871,4825,36,20,104,92,8,5,75,76,7306,8067,3258,3083,3850,4804,29,16,99,88,3,3,67,73,290,184,244,150,21,21,7,4,5,4,5,2,8,3 -050,01,101,Alabama,Montgomery County,4,7,15460,7462,7998,3794,3448,3464,4303,25,13,124,157,7,6,48,71,7246,7857,3616,3343,3441,4281,22,10,118,153,4,3,45,67,216,141,178,105,23,22,3,3,6,4,3,3,3,4 -050,01,101,Alabama,Montgomery County,4,8,15943,7663,8280,3993,3671,3487,4363,22,26,109,155,9,5,43,60,7468,8164,3845,3582,3455,4346,18,23,108,153,5,5,37,55,195,116,148,89,32,17,4,3,1,2,4,0,6,5 -050,01,101,Alabama,Montgomery County,4,9,16710,7911,8799,4079,4139,3625,4443,31,23,120,139,4,4,52,51,7767,8696,3969,4056,3605,4426,27,20,115,139,3,4,48,51,144,103,110,83,20,17,4,3,5,0,1,0,4,0 -050,01,101,Alabama,Montgomery County,4,10,16081,7423,8658,4031,4219,3257,4247,22,19,76,117,5,3,32,53,7328,8595,3961,4172,3242,4235,19,19,75,115,3,2,28,52,95,63,70,47,15,12,3,0,1,2,2,1,4,1 -050,01,101,Alabama,Montgomery County,4,11,14146,6583,7563,3727,4097,2751,3299,17,19,52,107,0,0,36,41,6512,7506,3674,4062,2739,3280,16,19,51,106,0,0,32,39,71,57,53,35,12,19,1,0,1,1,0,0,4,2 -050,01,101,Alabama,Montgomery County,4,12,11020,5257,5763,3346,3576,1828,2063,13,7,49,88,0,2,21,27,5212,5726,3311,3555,1820,2052,12,7,48,86,0,1,21,25,45,37,35,21,8,11,1,0,1,2,0,1,0,2 -050,01,101,Alabama,Montgomery County,4,13,8201,3675,4526,2383,2731,1220,1727,10,12,36,40,0,1,26,15,3649,4499,2366,2716,1214,1719,9,11,35,39,0,1,25,13,26,27,17,15,6,8,1,1,1,1,0,0,1,2 -050,01,101,Alabama,Montgomery County,4,14,7291,3196,4095,2041,2485,1116,1545,7,5,25,38,0,0,7,22,3174,4071,2022,2470,1113,1538,7,4,25,37,0,0,7,22,22,24,19,15,3,7,0,1,0,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,4,15,6547,2774,3773,1895,2374,859,1352,2,3,13,26,0,2,5,16,2755,3758,1880,2365,856,1348,2,2,12,25,0,2,5,16,19,15,15,9,3,4,0,1,1,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,4,16,5351,1980,3371,1365,2334,595,1013,4,5,8,9,0,0,8,10,1973,3359,1358,2325,595,1010,4,5,8,9,0,0,8,10,7,12,7,9,0,3,0,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,4,17,3856,1315,2541,971,1814,332,705,3,1,6,9,0,1,3,11,1309,2533,967,1808,331,704,2,1,6,9,0,1,3,10,6,8,4,6,1,1,1,0,0,0,0,0,0,1 -050,01,101,Alabama,Montgomery County,4,18,3177,767,2410,519,1629,240,769,1,1,3,3,0,0,4,8,762,2402,517,1623,238,767,1,1,3,3,0,0,3,8,5,8,2,6,2,2,0,0,0,0,0,0,1,0 -050,01,101,Alabama,Montgomery County,4,99,223185,105931,117254,51845,54548,51495,59873,337,272,1210,1444,59,65,985,1052,103870,115692,50263,53426,51203,59596,280,222,1177,1413,30,44,917,991,2061,1562,1582,1122,292,277,57,50,33,31,29,21,68,61 -050,01,101,Alabama,Montgomery County,5,0,3114,1627,1487,664,606,901,824,5,4,16,18,1,0,40,35,1564,1432,608,561,897,819,4,2,15,16,0,0,40,34,63,55,56,45,4,5,1,2,1,2,1,0,0,1 -050,01,101,Alabama,Montgomery County,5,1,12792,6555,6237,2643,2419,3647,3557,18,18,86,87,7,15,154,141,6386,6057,2517,2280,3625,3540,13,13,83,84,1,8,147,132,169,180,126,139,22,17,5,5,3,3,6,7,7,9 -050,01,101,Alabama,Montgomery County,5,2,15166,7542,7624,2691,2623,4589,4714,32,28,105,122,5,5,120,132,7372,7451,2573,2508,4558,4685,25,21,104,119,2,3,110,115,170,173,118,115,31,29,7,7,1,3,3,2,10,17 -050,01,101,Alabama,Montgomery County,5,3,16684,8498,8186,2924,2863,5313,5108,24,23,112,80,6,5,119,107,8332,8040,2815,2758,5278,5088,19,15,111,78,2,4,107,97,166,146,109,105,35,20,5,8,1,2,4,1,12,10 -050,01,101,Alabama,Montgomery County,5,4,16429,8544,7885,3130,2660,5224,5024,25,22,85,88,4,3,76,88,8409,7779,3028,2603,5204,4995,19,14,85,85,2,1,71,81,135,106,102,57,20,29,6,8,0,3,2,2,5,7 -050,01,101,Alabama,Montgomery County,5,5,18943,9326,9617,3754,3262,5263,6120,48,26,111,105,17,8,133,96,8982,9408,3485,3105,5229,6087,37,22,106,102,8,4,117,88,344,209,269,157,34,33,11,4,5,3,9,4,16,8 -050,01,101,Alabama,Montgomery County,5,6,15577,7452,8125,3434,3114,3768,4801,39,16,125,112,11,8,75,74,7111,7934,3147,2970,3743,4772,32,12,119,108,4,4,66,68,341,191,287,144,25,29,7,4,6,4,7,4,9,6 -050,01,101,Alabama,Montgomery County,5,7,15316,7355,7961,3592,3341,3534,4356,26,18,146,157,8,9,49,80,7100,7791,3379,3222,3509,4329,23,13,140,152,4,4,45,71,255,170,213,119,25,27,3,5,6,5,4,5,4,9 -050,01,101,Alabama,Montgomery County,5,8,15349,7383,7966,3791,3442,3401,4278,26,28,108,157,9,4,48,57,7185,7822,3636,3336,3375,4257,22,22,107,154,5,4,40,49,198,144,155,106,26,21,4,6,1,3,4,0,8,8 -050,01,101,Alabama,Montgomery County,5,9,16511,7759,8752,3943,4024,3590,4496,38,24,137,155,4,5,47,48,7613,8642,3834,3933,3566,4482,34,21,134,155,2,4,43,47,146,110,109,91,24,14,4,3,3,0,2,1,4,1 -050,01,101,Alabama,Montgomery County,5,10,16165,7484,8681,3960,4170,3369,4305,21,23,93,125,4,4,37,54,7382,8616,3882,4121,3354,4292,18,23,92,125,2,3,34,52,102,65,78,49,15,13,3,0,1,0,2,1,3,2 -050,01,101,Alabama,Montgomery County,5,11,14361,6685,7676,3691,3972,2893,3531,13,19,54,107,0,1,34,46,6609,7616,3633,3931,2879,3515,13,18,54,106,0,1,30,45,76,60,58,41,14,16,0,1,0,1,0,0,4,1 -050,01,101,Alabama,Montgomery County,5,12,11550,5501,6049,3421,3658,2000,2240,12,9,43,107,3,2,22,33,5443,6010,3376,3636,1990,2228,12,9,42,105,2,1,21,31,58,39,45,22,10,12,0,0,1,2,1,1,1,2 -050,01,101,Alabama,Montgomery County,5,13,8632,3899,4733,2512,2877,1298,1782,12,14,47,42,0,2,30,16,3880,4702,2499,2857,1294,1775,11,13,46,41,0,2,30,14,19,31,13,20,4,7,1,1,1,1,0,0,0,2 -050,01,101,Alabama,Montgomery County,5,14,7206,3117,4089,1995,2476,1079,1552,6,4,25,41,0,0,12,16,3097,4066,1979,2461,1075,1546,6,3,25,40,0,0,12,16,20,23,16,15,4,6,0,1,0,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,5,15,6468,2850,3618,1900,2263,928,1313,4,3,14,21,0,2,4,16,2828,3606,1881,2256,925,1310,4,2,14,20,0,2,4,16,22,12,19,7,3,3,0,1,0,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,5,16,5360,1928,3432,1365,2355,547,1044,4,4,6,18,0,0,6,11,1921,3423,1358,2348,547,1042,4,4,6,18,0,0,6,11,7,9,7,7,0,2,0,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,5,17,3899,1329,2570,957,1792,362,757,4,1,4,9,0,1,2,10,1324,2561,953,1785,362,756,3,1,4,9,0,1,2,9,5,9,4,7,0,1,1,0,0,0,0,0,0,1 -050,01,101,Alabama,Montgomery County,5,18,3158,796,2362,560,1600,227,750,0,3,5,2,0,0,4,7,790,2356,557,1595,225,749,0,3,5,2,0,0,3,7,6,6,3,5,2,1,0,0,0,0,0,0,1,0 -050,01,101,Alabama,Montgomery County,5,99,222680,105630,117050,50927,53517,51933,60552,357,287,1322,1553,79,74,1012,1067,103328,115312,49140,52266,51635,60267,299,231,1292,1519,34,46,928,983,2302,1738,1787,1251,298,285,58,56,30,34,45,28,84,84 -050,01,101,Alabama,Montgomery County,6,0,3064,1552,1512,631,578,848,865,3,3,28,23,1,0,41,43,1490,1433,579,511,842,860,2,1,28,21,0,0,39,40,62,79,52,67,6,5,1,2,0,2,1,0,2,3 -050,01,101,Alabama,Montgomery County,6,1,12799,6548,6251,2633,2486,3639,3489,24,22,85,93,8,14,159,147,6325,6055,2458,2338,3616,3472,17,14,82,90,1,5,151,136,223,196,175,148,23,17,7,8,3,3,7,9,8,11 -050,01,101,Alabama,Montgomery County,6,2,15196,7589,7607,2582,2496,4701,4798,41,30,117,136,7,5,141,142,7383,7395,2445,2349,4663,4764,32,22,114,133,1,2,128,125,206,212,137,147,38,34,9,8,3,3,6,3,13,17 -050,01,101,Alabama,Montgomery County,6,3,16557,8369,8188,2878,2734,5232,5222,21,23,123,92,8,5,107,112,8203,8041,2768,2626,5201,5203,15,15,122,90,3,3,94,104,166,147,110,108,31,19,6,8,1,2,5,2,13,8 -050,01,101,Alabama,Montgomery County,6,4,16467,8606,7861,2959,2616,5444,5043,25,21,85,90,6,3,87,88,8436,7733,2837,2541,5412,5008,19,13,84,89,3,1,81,81,170,128,122,75,32,35,6,8,1,1,3,2,6,7 -050,01,101,Alabama,Montgomery County,6,5,18795,9265,9530,3721,3125,5257,6178,36,27,106,96,20,9,125,95,8883,9300,3418,2946,5224,6148,23,22,100,93,9,5,109,86,382,230,303,179,33,30,13,5,6,3,11,4,16,9 -050,01,101,Alabama,Montgomery County,6,6,15675,7524,8151,3331,3027,3931,4913,48,18,129,115,13,10,72,68,7137,7925,3006,2851,3906,4884,37,12,121,110,5,6,62,62,387,226,325,176,25,29,11,6,8,5,8,4,10,6 -050,01,101,Alabama,Montgomery County,6,7,15211,7222,7989,3413,3252,3558,4460,29,17,164,173,8,7,50,80,6928,7810,3170,3119,3531,4439,25,10,157,168,3,2,42,72,294,179,243,133,27,21,4,7,7,5,5,5,8,8 -050,01,101,Alabama,Montgomery County,6,8,14884,7184,7700,3621,3267,3344,4178,22,17,139,171,9,6,49,61,6977,7525,3466,3145,3315,4143,15,12,136,167,4,4,41,54,207,175,155,122,29,35,7,5,3,4,5,2,8,7 -050,01,101,Alabama,Montgomery County,6,9,16497,7745,8752,3828,3868,3668,4632,29,35,158,165,5,7,57,45,7577,8606,3705,3751,3642,4612,24,31,154,164,2,4,50,44,168,146,123,117,26,20,5,4,4,1,3,3,7,1 -050,01,101,Alabama,Montgomery County,6,10,16207,7457,8750,3869,4128,3417,4430,31,21,98,120,6,3,36,48,7353,8672,3792,4068,3400,4415,27,20,97,120,3,2,34,47,104,78,77,60,17,15,4,1,1,0,3,1,2,1 -050,01,101,Alabama,Montgomery County,6,11,14581,6756,7825,3694,3969,2941,3671,16,12,73,117,0,1,32,55,6672,7758,3630,3919,2927,3658,14,11,72,116,0,1,29,53,84,67,64,50,14,13,2,1,1,1,0,0,3,2 -050,01,101,Alabama,Montgomery County,6,12,12241,5779,6462,3497,3763,2192,2533,18,11,44,114,2,2,26,39,5724,6410,3457,3737,2181,2512,16,10,43,113,2,1,25,37,55,52,40,26,11,21,2,1,1,1,0,1,1,2 -050,01,101,Alabama,Montgomery County,6,13,8932,4104,4828,2629,2890,1382,1857,15,12,50,49,0,1,28,19,4071,4800,2605,2872,1376,1851,13,11,49,48,0,1,28,17,33,28,24,18,6,6,2,1,1,1,0,0,0,2 -050,01,101,Alabama,Montgomery County,6,14,7212,3035,4177,1918,2528,1073,1583,8,4,25,41,0,0,11,21,3011,4156,1898,2513,1069,1578,8,4,25,40,0,0,11,21,24,21,20,15,4,5,0,0,0,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,6,15,6436,2864,3572,1853,2194,985,1334,4,5,18,19,0,1,4,19,2844,3555,1835,2182,983,1331,4,4,18,18,0,1,4,19,20,17,18,12,2,3,0,1,0,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,6,16,5197,1926,3271,1374,2213,537,1019,3,4,6,24,0,0,6,11,1918,3257,1366,2202,537,1016,3,4,6,24,0,0,6,11,8,14,8,11,0,3,0,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,6,17,3930,1327,2603,948,1816,366,769,5,0,7,8,0,1,1,9,1320,2595,943,1810,365,767,4,0,7,8,0,1,1,9,7,8,5,6,1,2,1,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,6,18,3121,822,2299,599,1561,212,726,1,3,6,3,0,0,4,6,815,2292,595,1555,210,725,1,3,6,3,0,0,3,6,7,7,4,6,2,1,0,0,0,0,0,0,1,0 -050,01,101,Alabama,Montgomery County,6,99,223002,105674,117328,49978,52511,52727,61700,379,285,1461,1649,93,75,1036,1108,103067,115318,47973,51035,52400,61386,299,219,1421,1615,36,39,938,1024,2607,2010,2005,1476,327,314,80,66,40,34,57,36,98,84 -050,01,101,Alabama,Montgomery County,7,0,3113,1585,1528,611,603,906,839,4,3,26,36,1,1,37,46,1502,1419,537,504,900,836,3,1,25,35,0,1,37,42,83,109,74,99,6,3,1,2,1,1,1,0,0,4 -050,01,101,Alabama,Montgomery County,7,1,12761,6497,6264,2540,2444,3663,3524,24,24,82,104,8,14,180,154,6258,6019,2357,2250,3634,3502,17,17,79,101,1,5,170,144,239,245,183,194,29,22,7,7,3,3,7,9,10,10 -050,01,101,Alabama,Montgomery County,7,2,15141,7631,7510,2521,2414,4788,4761,31,33,134,145,6,6,151,151,7420,7297,2381,2267,4748,4728,22,24,132,141,2,2,135,135,211,213,140,147,40,33,9,9,2,4,4,4,16,16 -050,01,101,Alabama,Montgomery County,7,3,16046,8049,7997,2681,2631,5085,5132,19,18,135,96,2,4,127,116,7883,7834,2567,2508,5054,5110,16,11,134,95,2,3,110,107,166,163,114,123,31,22,3,7,1,1,0,1,17,9 -050,01,101,Alabama,Montgomery County,7,4,16698,8722,7976,2900,2535,5622,5238,19,19,88,94,8,7,85,83,8537,7847,2761,2451,5590,5211,17,14,88,92,3,3,78,76,185,129,139,84,32,27,2,5,0,2,5,4,7,7 -050,01,101,Alabama,Montgomery County,7,5,18606,9190,9416,3607,3027,5272,6154,43,24,117,102,21,11,130,98,8752,9155,3260,2821,5236,6126,30,19,111,100,7,5,108,84,438,261,347,206,36,28,13,5,6,2,14,6,22,14 -050,01,101,Alabama,Montgomery County,7,6,16312,7848,8464,3362,3061,4229,5175,37,22,133,131,11,9,76,66,7405,8191,2984,2832,4198,5147,26,18,127,128,3,5,67,61,443,273,378,229,31,28,11,4,6,3,8,4,9,5 -050,01,101,Alabama,Montgomery County,7,7,14998,7127,7871,3280,3036,3564,4540,26,16,204,188,8,6,45,85,6807,7665,3010,2876,3532,4519,22,11,199,180,3,2,41,77,320,206,270,160,32,21,4,5,5,8,5,4,4,8 -050,01,101,Alabama,Montgomery County,7,8,14616,6954,7662,3405,3138,3312,4251,25,16,154,189,7,2,51,66,6731,7500,3228,3023,3282,4219,18,13,152,187,3,2,48,56,223,162,177,115,30,32,7,3,2,2,4,0,3,10 -050,01,101,Alabama,Montgomery County,7,9,16251,7749,8502,3764,3640,3738,4601,40,33,157,178,4,5,46,45,7542,8371,3602,3535,3709,4582,34,29,154,177,2,4,41,44,207,131,162,105,29,19,6,4,3,1,2,1,5,1 -050,01,101,Alabama,Montgomery County,7,10,16134,7423,8711,3725,3990,3529,4498,26,26,107,141,6,5,30,51,7305,8609,3634,3911,3511,4482,22,25,106,140,4,4,28,47,118,102,91,79,18,16,4,1,1,1,2,1,2,4 -050,01,101,Alabama,Montgomery County,7,11,14722,6755,7967,3613,3892,3011,3875,20,11,70,133,1,1,40,55,6664,7900,3546,3845,2993,3864,19,10,69,132,1,0,36,49,91,67,67,47,18,11,1,1,1,1,0,1,4,6 -050,01,101,Alabama,Montgomery County,7,12,12917,6038,6879,3555,3919,2403,2797,9,12,49,121,1,2,21,28,5980,6825,3510,3886,2393,2780,9,11,48,120,0,2,20,26,58,54,45,33,10,17,0,1,1,1,1,0,1,2 -050,01,101,Alabama,Montgomery County,7,13,9225,4298,4927,2701,2947,1508,1888,14,11,52,56,0,1,23,24,4261,4895,2675,2925,1501,1882,12,10,51,56,0,1,22,21,37,32,26,22,7,6,2,1,1,0,0,0,1,3 -050,01,101,Alabama,Montgomery County,7,14,7249,3118,4131,1961,2441,1109,1626,7,6,29,35,0,0,12,23,3092,4110,1941,2428,1103,1621,7,5,29,35,0,0,12,21,26,21,20,13,6,5,0,1,0,0,0,0,0,2 -050,01,101,Alabama,Montgomery County,7,15,6517,2839,3678,1823,2262,987,1362,5,3,17,30,0,2,7,19,2815,3661,1803,2251,983,1358,5,2,17,29,0,2,7,19,24,17,20,11,4,4,0,1,0,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,7,16,5134,1968,3166,1369,2062,574,1061,8,4,7,26,1,0,9,13,1960,3153,1362,2051,574,1059,8,4,7,26,0,0,9,13,8,13,7,11,0,2,0,0,0,0,1,0,0,0 -050,01,101,Alabama,Montgomery County,7,17,3974,1310,2664,942,1871,352,772,4,1,7,10,0,0,5,10,1301,2655,936,1865,350,769,3,1,7,10,0,0,5,10,9,9,6,6,2,3,1,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,7,18,3194,879,2315,645,1572,222,729,1,3,6,2,0,0,5,9,873,2307,640,1566,221,727,1,3,6,2,0,0,5,9,6,8,5,6,1,2,0,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,7,99,223608,105980,117628,49005,51485,53874,62823,362,285,1574,1817,85,76,1080,1142,103088,115413,46734,49795,53512,62522,291,228,1541,1786,31,41,979,1041,2892,2215,2271,1690,362,301,71,57,33,31,54,35,101,101 -050,01,101,Alabama,Montgomery County,8,0,3240,1695,1545,622,602,981,854,4,5,45,33,2,0,41,51,1581,1422,517,488,977,851,3,4,44,32,1,0,39,47,114,123,105,114,4,3,1,1,1,1,1,0,2,4 -050,01,101,Alabama,Montgomery County,8,1,12735,6487,6248,2546,2405,3621,3522,28,26,112,121,7,15,173,159,6208,5939,2320,2160,3596,3494,20,18,111,115,0,7,161,145,279,309,226,245,25,28,8,8,1,6,7,8,12,14 -050,01,101,Alabama,Montgomery County,8,2,15641,7982,7659,2604,2495,5015,4818,25,20,157,150,5,6,176,170,7731,7410,2422,2315,4977,4781,16,12,155,147,1,3,160,152,251,249,182,180,38,37,9,8,2,3,4,3,16,18 -050,01,101,Alabama,Montgomery County,8,3,15901,7919,7982,2623,2565,4990,5139,24,21,147,118,3,5,132,134,7734,7796,2490,2424,4961,5114,19,13,146,115,1,3,117,127,185,186,133,141,29,25,5,8,1,3,2,2,15,7 -050,01,101,Alabama,Montgomery County,8,4,17014,8958,8056,2850,2495,5867,5354,28,14,110,94,6,8,97,91,8739,7898,2681,2390,5835,5322,22,9,108,92,2,4,91,81,219,158,169,105,32,32,6,5,2,2,4,4,6,10 -050,01,101,Alabama,Montgomery County,8,5,18874,9328,9546,3544,2987,5480,6311,38,32,112,111,27,10,127,95,8841,9242,3159,2757,5439,6268,23,24,102,109,11,3,107,81,487,304,385,230,41,43,15,8,10,2,16,7,20,14 -050,01,101,Alabama,Montgomery County,8,6,17211,8321,8890,3543,3145,4445,5495,56,26,180,135,14,12,83,77,7820,8602,3117,2909,4411,5465,43,20,171,130,5,7,73,71,501,288,426,236,34,30,13,6,9,5,9,5,10,6 -050,01,101,Alabama,Montgomery County,8,7,14977,7165,7812,3217,2860,3683,4638,31,22,175,195,9,7,50,90,6796,7583,2907,2680,3646,4613,27,15,168,189,3,3,45,83,369,229,310,180,37,25,4,7,7,6,6,4,5,7 -050,01,101,Alabama,Montgomery County,8,8,15118,7212,7906,3469,3198,3494,4412,21,15,172,215,8,4,48,62,6984,7733,3286,3061,3466,4390,14,10,170,212,4,4,44,56,228,173,183,137,28,22,7,5,2,3,4,0,4,6 -050,01,101,Alabama,Montgomery County,8,9,15954,7685,8269,3563,3419,3828,4561,32,25,199,209,5,6,58,49,7485,8126,3416,3308,3793,4535,26,22,195,208,2,5,53,48,200,143,147,111,35,26,6,3,4,1,3,1,5,1 -050,01,101,Alabama,Montgomery County,8,10,16194,7481,8713,3690,3955,3602,4514,25,30,120,151,4,4,40,59,7340,8591,3580,3860,3581,4496,22,29,119,149,2,2,36,55,141,122,110,95,21,18,3,1,1,2,2,2,4,4 -050,01,101,Alabama,Montgomery County,8,11,15189,6959,8230,3664,3834,3161,4183,30,16,68,137,1,1,35,59,6864,8157,3590,3781,3146,4170,29,15,68,136,0,0,31,55,95,73,74,53,15,13,1,1,0,1,1,1,4,4 -050,01,101,Alabama,Montgomery County,8,12,13586,6340,7246,3597,3996,2644,3060,14,9,63,144,2,1,20,36,6276,7194,3549,3962,2631,3046,14,9,62,142,1,1,19,34,64,52,48,34,13,14,0,0,1,2,1,0,1,2 -050,01,101,Alabama,Montgomery County,8,13,9487,4453,5034,2762,2999,1606,1944,11,12,52,60,0,0,22,19,4406,5000,2727,2974,1599,1938,9,11,51,60,0,0,20,17,47,34,35,25,7,6,2,1,1,0,0,0,2,2 -050,01,101,Alabama,Montgomery County,8,14,7258,3189,4069,2001,2386,1134,1621,7,3,37,39,0,0,10,20,3166,4044,1983,2368,1129,1616,7,3,37,39,0,0,10,18,23,25,18,18,5,5,0,0,0,0,0,0,0,2 -050,01,101,Alabama,Montgomery County,8,15,6514,2783,3731,1727,2250,1027,1425,3,3,16,32,0,0,10,21,2762,3718,1712,2242,1022,1421,3,3,15,31,0,0,10,21,21,13,15,8,5,4,0,0,1,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,8,16,5207,2048,3159,1444,2039,583,1078,3,2,7,22,1,0,10,18,2037,3141,1434,2025,583,1074,3,2,7,22,0,0,10,18,11,18,10,14,0,4,0,0,0,0,1,0,0,0 -050,01,101,Alabama,Montgomery County,8,17,3930,1303,2627,917,1853,367,757,3,1,9,6,0,1,7,9,1294,2618,911,1846,365,755,2,1,9,6,0,1,7,9,9,9,6,7,2,2,1,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,8,18,3261,926,2335,677,1597,238,723,0,3,5,2,0,0,6,10,919,2328,671,1592,237,721,0,3,5,2,0,0,6,10,7,7,6,5,1,2,0,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,8,99,227291,108234,119057,49060,51080,55766,64409,383,285,1786,1974,94,80,1145,1229,104983,116542,46472,49142,55394,64070,302,223,1743,1936,33,43,1039,1128,3251,2515,2588,1938,372,339,81,62,43,38,61,37,106,101 -050,01,101,Alabama,Montgomery County,9,0,3235,1673,1562,611,606,974,869,3,5,39,29,3,0,43,53,1523,1409,474,465,968,865,2,2,38,28,1,0,40,49,150,153,137,141,6,4,1,3,1,1,2,0,3,4 -050,01,101,Alabama,Montgomery County,9,1,12670,6522,6148,2449,2275,3724,3519,24,25,138,139,10,17,177,173,6172,5809,2173,2003,3688,3489,14,18,135,134,0,7,162,158,350,339,276,272,36,30,10,7,3,5,10,10,15,15 -050,01,101,Alabama,Montgomery County,9,2,15664,7966,7698,2587,2509,5009,4815,27,33,161,170,5,6,177,165,7686,7387,2375,2271,4974,4774,16,24,159,167,1,1,161,150,280,311,212,238,35,41,11,9,2,3,4,5,16,15 -050,01,101,Alabama,Montgomery County,9,3,15713,7899,7814,2575,2451,4999,5061,25,22,160,134,5,4,135,142,7684,7628,2424,2316,4964,5034,19,13,157,132,1,1,119,132,215,186,151,135,35,27,6,9,3,2,4,3,16,10 -050,01,101,Alabama,Montgomery County,9,4,16837,8788,8049,2688,2429,5854,5384,24,17,116,99,7,8,99,112,8547,7872,2499,2309,5820,5355,19,9,114,97,2,3,93,99,241,177,189,120,34,29,5,8,2,2,5,5,6,13 -050,01,101,Alabama,Montgomery County,9,5,18746,9127,9619,3491,2971,5338,6390,40,35,116,105,30,16,112,102,8582,9284,3059,2709,5295,6355,22,26,105,103,11,6,90,85,545,335,432,262,43,35,18,9,11,2,19,10,22,17 -050,01,101,Alabama,Montgomery County,9,6,17624,8515,9109,3550,3117,4662,5706,40,27,156,170,17,13,90,76,7943,8792,3080,2860,4617,5672,23,20,144,165,4,7,75,68,572,317,470,257,45,34,17,7,12,5,13,6,15,8 -050,01,101,Alabama,Montgomery County,9,7,14996,7148,7848,3084,2784,3735,4719,34,18,235,220,8,9,52,98,6760,7535,2759,2538,3700,4685,28,10,228,213,1,3,44,86,388,313,325,246,35,34,6,8,7,7,7,6,8,12 -050,01,101,Alabama,Montgomery County,9,8,15232,7273,7959,3386,3072,3585,4572,25,19,218,226,12,4,47,66,7007,7780,3171,2945,3554,4540,17,15,216,222,5,3,44,55,266,179,215,127,31,32,8,4,2,4,7,1,3,11 -050,01,101,Alabama,Montgomery County,9,9,15531,7427,8104,3404,3297,3689,4505,44,26,225,210,7,8,58,58,7197,7958,3240,3182,3650,4482,36,22,221,209,2,6,48,57,230,146,164,115,39,23,8,4,4,1,5,2,10,1 -050,01,101,Alabama,Montgomery County,9,10,16115,7506,8609,3666,3841,3622,4528,30,30,146,150,5,6,37,54,7361,8489,3557,3743,3599,4514,26,29,144,149,2,4,33,50,145,120,109,98,23,14,4,1,2,1,3,2,4,4 -050,01,101,Alabama,Montgomery County,9,11,15547,7141,8406,3668,3870,3330,4297,22,26,83,151,2,2,36,60,7031,8319,3585,3804,3309,4285,20,25,83,149,1,1,33,55,110,87,83,66,21,12,2,1,0,2,1,1,3,5 -050,01,101,Alabama,Montgomery County,9,12,13612,6235,7377,3425,3858,2708,3334,17,13,66,136,1,1,18,35,6170,7311,3374,3820,2698,3310,16,13,64,135,1,1,17,32,65,66,51,38,10,24,1,0,2,1,0,0,1,3 -050,01,101,Alabama,Montgomery County,9,13,10140,4775,5365,2925,3168,1763,2085,12,8,59,79,0,1,16,24,4727,5331,2891,3141,1755,2080,10,8,57,79,0,1,14,22,48,34,34,27,8,5,2,0,2,0,0,0,2,2 -050,01,101,Alabama,Montgomery County,9,14,7406,3269,4137,2037,2450,1167,1626,9,4,46,43,0,0,10,14,3249,4109,2022,2432,1162,1620,9,3,46,42,0,0,10,12,20,28,15,18,5,6,0,1,0,1,0,0,0,2 -050,01,101,Alabama,Montgomery County,9,15,6341,2699,3642,1673,2156,992,1434,5,2,20,30,0,0,9,20,2670,3628,1652,2145,985,1431,5,2,19,30,0,0,9,20,29,14,21,11,7,3,0,0,1,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,9,16,5219,2075,3144,1453,2012,600,1093,5,4,7,18,2,0,8,17,2064,3129,1444,2000,600,1090,5,4,7,18,0,0,8,17,11,15,9,12,0,3,0,0,0,0,2,0,0,0 -050,01,101,Alabama,Montgomery County,9,17,3945,1353,2592,970,1799,369,776,3,0,8,7,0,1,3,9,1345,2583,965,1792,367,774,2,0,8,7,0,1,3,9,8,9,5,7,2,2,1,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,9,18,3315,946,2369,682,1627,253,724,0,6,6,2,0,0,5,10,938,2362,675,1622,252,722,0,6,6,2,0,0,5,10,8,7,7,5,1,2,0,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,9,99,227888,108337,119551,48324,50292,56373,65437,389,320,2005,2118,114,96,1132,1288,104656,116715,45419,48097,55957,65077,289,249,1951,2081,32,45,1008,1166,3681,2836,2905,2195,416,360,100,71,54,37,82,51,124,122 -050,01,101,Alabama,Montgomery County,10,0,3373,1712,1661,609,607,987,945,2,5,62,48,3,0,49,56,1547,1490,457,451,980,939,1,2,61,47,1,0,47,51,165,171,152,156,7,6,1,3,1,1,2,0,2,5 -050,01,101,Alabama,Montgomery County,10,1,12627,6468,6159,2352,2181,3763,3617,25,32,137,128,12,19,179,182,6067,5776,2028,1866,3726,3589,13,22,136,123,1,9,163,167,401,383,324,315,37,28,12,10,1,5,11,10,16,15 -050,01,101,Alabama,Montgomery County,10,2,15523,7922,7601,2616,2518,4925,4690,35,38,163,180,8,6,175,169,7579,7286,2349,2280,4890,4652,21,27,162,175,1,1,156,151,343,315,267,238,35,38,14,11,1,5,7,5,19,18 -050,01,101,Alabama,Montgomery County,10,3,15453,7780,7673,2460,2373,4983,4982,25,13,162,159,7,2,143,144,7554,7466,2303,2216,4949,4951,18,6,159,157,2,1,123,135,226,207,157,157,34,31,7,7,3,2,5,1,20,9 -050,01,101,Alabama,Montgomery County,10,4,16896,8752,8144,2584,2394,5925,5484,21,22,108,115,9,9,105,120,8512,7952,2407,2268,5882,5451,16,15,107,112,2,4,98,102,240,192,177,126,43,33,5,7,1,3,7,5,7,18 -050,01,101,Alabama,Montgomery County,10,5,18695,9118,9577,3436,2912,5394,6417,41,29,111,93,31,15,105,111,8522,9220,2962,2626,5352,6383,23,23,97,90,9,4,79,94,596,357,474,286,42,34,18,6,14,3,22,11,26,17 -050,01,101,Alabama,Montgomery County,10,6,17582,8530,9052,3514,3038,4689,5720,51,31,162,173,19,15,95,75,7909,8682,2991,2756,4646,5662,34,23,153,167,5,8,80,66,621,370,523,282,43,58,17,8,9,6,14,7,15,9 -050,01,101,Alabama,Montgomery County,10,7,14746,6978,7768,2962,2732,3720,4688,27,20,209,215,11,9,49,104,6554,7447,2608,2482,3681,4655,21,11,201,206,2,2,41,91,424,321,354,250,39,33,6,9,8,9,9,7,8,13 -050,01,101,Alabama,Montgomery County,10,8,15383,7316,8067,3277,3038,3699,4682,21,30,249,240,12,4,58,73,6985,7829,3009,2855,3662,4647,11,24,246,237,4,3,53,63,331,238,268,183,37,35,10,6,3,3,8,1,5,10 -050,01,101,Alabama,Montgomery County,10,9,14823,7117,7706,3209,3016,3578,4401,41,29,221,205,6,7,62,48,6872,7552,3038,2902,3532,4373,32,22,216,204,2,4,52,47,245,154,171,114,46,28,9,7,5,1,4,3,10,1 -050,01,101,Alabama,Montgomery County,10,10,15980,7400,8580,3583,3704,3590,4612,22,26,164,173,6,8,35,57,7238,8439,3457,3594,3565,4591,20,25,163,172,2,5,31,52,162,141,126,110,25,21,2,1,1,1,4,3,4,5 -050,01,101,Alabama,Montgomery County,10,11,15467,7194,8273,3605,3723,3411,4321,27,33,113,136,1,1,37,59,7075,8177,3512,3646,3390,4310,25,33,113,134,1,0,34,54,119,96,93,77,21,11,2,0,0,2,0,1,3,5 -050,01,101,Alabama,Montgomery County,10,12,13706,6220,7486,3329,3734,2781,3551,18,12,73,150,2,1,17,38,6148,7416,3276,3690,2767,3529,16,12,71,149,2,1,16,35,72,70,53,44,14,22,2,0,2,1,0,0,1,3 -050,01,101,Alabama,Montgomery County,10,13,10499,4978,5521,2970,3188,1926,2215,12,10,52,83,0,1,18,24,4929,5486,2936,3162,1916,2208,11,10,50,82,0,1,16,23,49,35,34,26,10,7,1,0,2,1,0,0,2,1 -050,01,101,Alabama,Montgomery County,10,14,7910,3530,4380,2202,2578,1262,1728,10,7,46,48,0,0,10,19,3504,4355,2183,2559,1255,1725,10,6,46,48,0,0,10,17,26,25,19,19,7,3,0,1,0,0,0,0,0,2 -050,01,101,Alabama,Montgomery County,10,15,6218,2616,3602,1616,2140,959,1401,5,3,26,38,0,0,10,20,2598,3584,1602,2129,955,1394,5,3,26,38,0,0,10,20,18,18,14,11,4,7,0,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,10,16,5237,2204,3033,1498,1925,680,1071,5,3,12,19,2,0,7,15,2185,3015,1481,1911,680,1067,5,3,12,19,0,0,7,15,19,18,17,14,0,4,0,0,0,0,2,0,0,0 -050,01,101,Alabama,Montgomery County,10,17,3908,1323,2585,960,1794,347,762,3,0,9,17,0,1,4,11,1315,2576,953,1787,347,760,2,0,9,17,0,1,4,11,8,9,7,7,0,2,1,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,10,18,3435,1003,2432,729,1654,262,756,0,8,6,2,0,0,6,12,997,2422,723,1646,262,754,0,8,6,2,0,0,6,12,6,10,6,8,0,2,0,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,10,99,227461,108161,119300,47511,49249,56881,66043,391,351,2085,2222,129,98,1164,1337,104090,116170,44275,46826,56437,65640,284,275,2034,2179,34,44,1026,1206,4071,3130,3236,2423,444,403,107,76,51,43,95,54,138,131 -050,01,101,Alabama,Montgomery County,11,0,3242,1662,1580,534,532,1031,957,8,9,42,36,3,1,44,45,1511,1429,405,402,1020,949,2,3,41,35,1,0,42,40,151,151,129,130,11,8,6,6,1,1,2,1,2,5 -050,01,101,Alabama,Montgomery County,11,1,12600,6478,6122,2234,2068,3884,3668,32,28,158,156,12,20,158,182,6011,5682,1862,1716,3836,3627,18,17,155,149,0,8,140,165,467,440,372,352,48,41,14,11,3,7,12,12,18,17 -050,01,101,Alabama,Montgomery County,11,2,15507,7852,7655,2641,2499,4828,4719,29,40,173,200,9,6,172,191,7479,7289,2350,2224,4788,4674,17,28,172,195,1,0,151,168,373,366,291,275,40,45,12,12,1,5,8,6,21,23 -050,01,101,Alabama,Montgomery County,11,3,15418,7769,7649,2447,2307,4940,5000,23,17,200,166,6,3,153,156,7533,7437,2288,2145,4903,4976,15,8,197,164,1,0,129,144,236,212,159,162,37,24,8,9,3,2,5,3,24,12 -050,01,101,Alabama,Montgomery County,11,4,16499,8480,8019,2473,2304,5750,5418,22,28,122,129,10,8,103,132,8223,7796,2279,2145,5711,5388,16,20,120,126,2,2,95,115,257,223,194,159,39,30,6,8,2,3,8,6,8,17 -050,01,101,Alabama,Montgomery County,11,5,18499,8966,9533,3292,2875,5362,6412,39,30,114,83,37,16,122,117,8308,9151,2773,2564,5318,6380,19,24,98,81,11,5,89,97,658,382,519,311,44,32,20,6,16,2,26,11,33,20 -050,01,101,Alabama,Montgomery County,11,6,17394,8466,8928,3515,2971,4598,5654,65,30,166,168,24,15,98,90,7797,8561,2969,2681,4544,5609,47,21,151,163,6,7,80,80,669,367,546,290,54,45,18,9,15,5,18,8,18,10 -050,01,101,Alabama,Montgomery County,11,7,15148,7202,7946,2999,2704,3839,4838,33,27,264,259,14,10,53,108,6739,7576,2614,2419,3800,4795,26,16,255,249,4,2,40,95,463,370,385,285,39,43,7,11,9,10,10,8,13,13 -050,01,101,Alabama,Montgomery County,11,8,15212,7202,8010,3115,2873,3719,4758,21,25,273,262,19,6,55,86,6874,7771,2848,2690,3685,4727,12,18,270,259,10,4,49,73,328,239,267,183,34,31,9,7,3,3,9,2,6,13 -050,01,101,Alabama,Montgomery County,11,9,14455,7007,7448,3062,2825,3585,4300,32,27,256,233,9,9,63,54,6748,7295,2879,2710,3541,4273,23,21,252,233,3,6,50,52,259,153,183,115,44,27,9,6,4,0,6,3,13,2 -050,01,101,Alabama,Montgomery County,11,10,15814,7324,8490,3441,3549,3644,4671,23,28,176,177,4,8,36,57,7131,8366,3289,3452,3616,4653,18,27,176,177,1,5,31,52,193,124,152,97,28,18,5,1,0,0,3,3,5,5 -050,01,101,Alabama,Montgomery County,11,11,15740,7286,8454,3551,3710,3548,4513,30,33,113,135,2,1,42,62,7166,8342,3462,3621,3525,4500,28,31,112,133,0,0,39,57,120,112,89,89,23,13,2,2,1,2,2,1,3,5 -050,01,101,Alabama,Montgomery County,11,12,13904,6308,7596,3308,3689,2882,3693,16,14,80,150,3,5,19,45,6240,7522,3256,3643,2872,3671,14,13,78,150,2,3,18,42,68,74,52,46,10,22,2,1,2,0,1,2,1,3 -050,01,101,Alabama,Montgomery County,11,13,11094,5212,5882,3020,3280,2100,2464,13,13,58,98,0,2,21,25,5163,5841,2986,3250,2090,2457,11,12,56,97,0,2,20,23,49,41,34,30,10,7,2,1,2,1,0,0,1,2 -050,01,101,Alabama,Montgomery County,11,14,8217,3710,4507,2293,2621,1346,1812,9,6,52,54,0,0,10,14,3677,4476,2266,2597,1340,1809,9,5,52,53,0,0,10,12,33,31,27,24,6,3,0,1,0,1,0,0,0,2 -050,01,101,Alabama,Montgomery County,11,15,6263,2607,3656,1598,2186,966,1407,6,2,25,41,0,0,12,20,2580,3644,1578,2179,959,1403,6,1,25,41,0,0,12,20,27,12,20,7,7,4,0,1,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,11,16,5232,2211,3021,1454,1837,735,1142,4,1,10,24,2,0,6,17,2197,3006,1442,1824,735,1140,4,1,10,24,0,0,6,17,14,15,12,13,0,2,0,0,0,0,2,0,0,0 -050,01,101,Alabama,Montgomery County,11,17,3835,1344,2491,973,1690,357,769,2,0,8,20,0,1,4,11,1335,2482,965,1683,357,767,1,0,8,20,0,1,4,11,9,9,8,7,0,2,1,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,11,18,3534,1016,2518,726,1698,278,800,0,8,6,1,0,0,6,11,1011,2507,721,1689,278,798,0,8,6,1,0,0,6,11,5,11,5,9,0,2,0,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,11,99,227607,108102,119505,46676,48218,57392,66995,407,366,2296,2392,154,111,1177,1423,103723,116173,43232,45634,56918,66596,286,274,2234,2350,42,45,1011,1274,4379,3332,3444,2584,474,399,121,92,62,42,112,66,166,149 -050,01,101,Alabama,Montgomery County,12,0,3212,1657,1555,523,502,1033,954,10,11,41,36,3,1,47,51,1525,1424,416,398,1020,941,4,5,40,35,1,0,44,45,132,131,107,104,13,13,6,6,1,1,2,1,3,6 -050,01,101,Alabama,Montgomery County,12,1,12660,6487,6173,2133,1973,3961,3799,37,33,166,156,14,21,176,191,6000,5728,1757,1625,3907,3757,16,17,163,150,1,7,156,172,487,445,376,348,54,42,21,16,3,6,13,14,20,19 -050,01,101,Alabama,Montgomery County,12,2,15413,7815,7598,2567,2492,4832,4677,31,32,203,217,10,8,172,172,7413,7168,2261,2161,4783,4626,16,18,201,211,1,1,151,151,402,430,306,331,49,51,15,14,2,6,9,7,21,21 -050,01,101,Alabama,Montgomery County,12,3,15424,7772,7652,2484,2331,4904,4949,24,20,204,180,7,4,149,168,7504,7427,2290,2155,4870,4927,15,11,202,178,2,1,125,155,268,225,194,176,34,22,9,9,2,2,5,3,24,13 -050,01,101,Alabama,Montgomery County,12,4,16751,8507,8244,2540,2460,5681,5481,27,24,140,138,12,8,107,133,8189,7970,2299,2260,5633,5443,19,15,137,135,2,2,99,115,318,274,241,200,48,38,8,9,3,3,10,6,8,18 -050,01,101,Alabama,Montgomery County,12,5,18836,9206,9630,3353,2839,5535,6542,43,28,110,83,39,17,126,121,8494,9214,2799,2509,5476,6501,21,19,94,79,12,5,92,101,712,416,554,330,59,41,22,9,16,4,27,12,34,20 -050,01,101,Alabama,Montgomery County,12,6,17272,8420,8852,3528,2966,4542,5542,58,28,171,200,25,17,96,99,7709,8433,2942,2631,4491,5490,36,19,156,194,7,9,77,90,711,419,586,335,51,52,22,9,15,6,18,8,19,9 -050,01,101,Alabama,Montgomery County,12,7,15481,7433,8048,3029,2734,4057,4904,30,24,243,271,15,10,59,105,6929,7696,2615,2450,4009,4873,21,13,233,263,4,2,47,95,504,352,414,284,48,31,9,11,10,8,11,8,12,10 -050,01,101,Alabama,Montgomery County,12,8,15191,7256,7935,3047,2775,3821,4771,21,23,294,273,15,5,58,88,6908,7668,2767,2570,3782,4735,10,16,291,270,6,3,52,74,348,267,280,205,39,36,11,7,3,3,9,2,6,14 -050,01,101,Alabama,Montgomery County,12,9,14343,6946,7397,3018,2783,3558,4270,29,28,272,253,8,8,61,55,6651,7242,2806,2665,3509,4246,19,21,267,252,2,5,48,53,295,155,212,118,49,24,10,7,5,1,6,3,13,2 -050,01,101,Alabama,Montgomery County,12,10,15752,7347,8405,3420,3455,3676,4673,24,28,187,188,6,8,34,53,7147,8277,3263,3359,3649,4651,19,27,186,187,1,5,29,48,200,128,157,96,27,22,5,1,1,1,5,3,5,5 -050,01,101,Alabama,Montgomery County,12,11,15813,7359,8454,3511,3656,3654,4568,22,31,124,133,3,1,45,65,7234,8327,3418,3553,3631,4554,19,29,123,131,1,0,42,60,125,127,93,103,23,14,3,2,1,2,2,1,3,5 -050,01,101,Alabama,Montgomery County,12,12,14143,6389,7754,3294,3683,2973,3846,17,17,82,156,3,4,20,48,6316,7677,3238,3635,2962,3824,15,16,80,155,2,2,19,45,73,77,56,48,11,22,2,1,2,1,1,2,1,3 -050,01,101,Alabama,Montgomery County,12,13,11651,5465,6186,3090,3391,2275,2652,15,16,66,95,0,1,19,31,5408,6136,3048,3353,2266,2644,13,15,64,94,0,1,17,29,57,50,42,38,9,8,2,1,2,1,0,0,2,2 -050,01,101,Alabama,Montgomery County,12,14,8433,3835,4598,2329,2685,1434,1824,11,8,50,66,0,0,11,15,3800,4563,2302,2657,1426,1821,11,7,50,65,0,0,11,13,35,35,27,28,8,3,0,1,0,1,0,0,0,2 -050,01,101,Alabama,Montgomery County,12,15,6335,2670,3665,1626,2145,999,1458,6,4,28,36,0,0,11,22,2647,3647,1609,2135,993,1451,6,3,28,36,0,0,11,22,23,18,17,10,6,7,0,1,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,12,16,5278,2167,3111,1428,1903,712,1159,6,2,12,29,2,0,7,18,2154,3090,1417,1885,712,1156,6,2,12,29,0,0,7,18,13,21,11,18,0,3,0,0,0,0,2,0,0,0 -050,01,101,Alabama,Montgomery County,12,17,3811,1387,2424,982,1595,387,802,3,0,9,15,0,1,6,11,1377,2412,974,1585,386,800,2,0,9,15,0,1,6,11,10,12,8,10,1,2,1,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,12,18,3564,1049,2515,756,1680,281,819,0,3,6,2,0,0,6,11,1042,2503,749,1670,281,817,0,3,6,2,0,0,6,11,7,12,7,10,0,2,0,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,12,99,229363,109167,120196,46658,48048,58315,67690,414,360,2408,2527,162,114,1210,1457,104447,116602,42970,45256,57786,67257,268,256,2342,2481,42,44,1039,1308,4720,3594,3688,2792,529,433,146,104,66,46,120,70,171,149 -050,01,101,Alabama,Montgomery County,13,0,3216,1661,1555,524,502,1038,954,10,11,39,37,2,2,48,49,1529,1427,416,398,1025,942,4,5,39,36,1,1,44,45,132,128,108,104,13,12,6,6,0,1,1,1,4,4 -050,01,101,Alabama,Montgomery County,13,1,12649,6480,6169,2126,1967,3980,3816,37,30,164,155,11,20,162,181,6000,5734,1749,1617,3925,3776,16,16,162,150,0,5,148,170,480,435,377,350,55,40,21,14,2,5,11,15,14,11 -050,01,101,Alabama,Montgomery County,13,2,15368,7787,7581,2564,2492,4829,4676,28,28,204,218,11,9,151,158,7393,7158,2256,2159,4781,4626,14,17,203,212,1,0,138,144,394,423,308,333,48,50,14,11,1,6,10,9,13,14 -050,01,101,Alabama,Montgomery County,13,3,15373,7743,7630,2481,2331,4898,4942,21,20,207,181,6,5,130,151,7486,7416,2285,2151,4865,4923,15,12,203,180,2,3,116,147,257,214,196,180,33,19,6,8,4,1,4,2,14,4 -050,01,101,Alabama,Montgomery County,13,4,16640,8458,8182,2528,2447,5657,5453,21,19,141,136,11,6,100,121,8141,7915,2283,2245,5609,5415,17,12,137,134,2,2,93,107,317,267,245,202,48,38,4,7,4,2,9,4,7,14 -050,01,101,Alabama,Montgomery County,13,5,18907,9243,9664,3360,2844,5573,6588,41,25,112,81,38,14,119,112,8531,9251,2803,2512,5515,6546,20,18,94,79,11,3,88,93,712,413,557,332,58,42,21,7,18,2,27,11,31,19 -050,01,101,Alabama,Montgomery County,13,6,17291,8440,8851,3542,2969,4567,5549,59,29,168,196,22,14,82,94,7734,8436,2955,2634,4519,5499,35,20,154,193,5,6,66,84,706,415,587,335,48,50,24,9,14,3,17,8,16,10 -050,01,101,Alabama,Montgomery County,13,7,15570,7491,8079,3047,2749,4104,4942,28,23,240,271,13,7,59,87,6986,7736,2631,2465,4057,4914,20,12,231,262,3,1,44,82,505,343,416,284,47,28,8,11,9,9,10,6,15,5 -050,01,101,Alabama,Montgomery County,13,8,15096,7216,7880,3022,2751,3816,4753,18,25,292,271,15,4,53,76,6874,7619,2743,2547,3777,4720,9,17,291,270,6,1,48,64,342,261,279,204,39,33,9,8,1,1,9,3,5,12 -050,01,101,Alabama,Montgomery County,13,9,14307,6917,7390,3013,2781,3554,4268,26,25,272,253,8,7,44,56,6633,7236,2799,2662,3506,4244,18,21,268,252,3,5,39,52,284,154,214,119,48,24,8,4,4,1,5,2,5,4 -050,01,101,Alabama,Montgomery County,13,10,15701,7319,8382,3403,3433,3677,4672,21,29,187,189,8,7,23,52,7119,8252,3245,3339,3648,4650,17,26,187,187,2,3,20,47,200,130,158,94,29,22,4,3,0,2,6,4,3,5 -050,01,101,Alabama,Montgomery County,13,11,15849,7377,8472,3512,3657,3675,4593,22,31,125,133,2,2,41,56,7252,8349,3418,3555,3652,4579,19,31,123,131,0,1,40,52,125,123,94,102,23,14,3,0,2,2,2,1,1,4 -050,01,101,Alabama,Montgomery County,13,12,14315,6471,7844,3313,3698,2995,3875,18,18,82,162,4,7,59,84,6370,7738,3256,3651,2982,3850,14,16,80,158,1,4,37,59,101,106,57,47,13,25,4,2,2,4,3,3,22,25 -050,01,101,Alabama,Montgomery County,13,13,11840,5556,6284,3117,3422,2307,2689,15,18,69,96,3,4,45,55,5486,6222,3074,3382,2298,2681,13,17,65,95,0,2,36,45,70,62,43,40,9,8,2,1,4,1,3,2,9,10 -050,01,101,Alabama,Montgomery County,13,14,8550,3893,4657,2343,2699,1441,1834,14,12,52,67,5,6,38,39,3840,4607,2315,2669,1434,1832,12,9,50,64,4,3,25,30,53,50,28,30,7,2,2,3,2,3,1,3,13,9 -050,01,101,Alabama,Montgomery County,13,15,6413,2709,3704,1633,2154,1004,1464,11,5,28,38,4,2,29,41,2683,3673,1617,2144,998,1456,9,4,27,37,4,1,28,31,26,31,16,10,6,8,2,1,1,1,0,1,1,10 -050,01,101,Alabama,Montgomery County,13,16,5331,2196,3135,1428,1898,719,1164,9,6,11,28,3,3,26,36,2174,3105,1416,1879,717,1160,7,4,11,27,1,2,22,33,22,30,12,19,2,4,2,2,0,1,2,1,4,3 -050,01,101,Alabama,Montgomery County,13,17,3837,1401,2436,982,1586,392,804,4,1,7,14,2,3,14,28,1389,2422,977,1579,388,802,2,1,7,13,1,2,14,25,12,14,5,7,4,2,2,0,0,1,1,1,0,3 -050,01,101,Alabama,Montgomery County,13,18,3591,1058,2533,763,1687,285,828,0,3,6,2,0,0,4,13,1050,2521,756,1677,284,826,0,3,6,2,0,0,4,13,8,12,7,10,1,2,0,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,13,99,229844,109416,120428,46701,48067,58511,67864,403,358,2406,2528,168,122,1227,1489,104670,116817,42994,45265,57980,67441,261,261,2338,2482,47,45,1050,1323,4746,3611,3707,2802,531,423,142,97,68,46,121,77,177,166 -050,01,103,Alabama,Morgan County,1,0,1480,759,721,631,573,94,119,6,7,8,4,0,0,20,18,695,662,572,521,92,117,6,3,6,4,0,0,19,17,64,59,59,52,2,2,0,4,2,0,0,0,1,1 -050,01,103,Alabama,Morgan County,1,1,5840,2939,2901,2448,2352,398,434,21,19,15,18,2,2,55,76,2756,2741,2279,2207,393,426,14,16,15,17,1,1,54,74,183,160,169,145,5,8,7,3,0,1,1,1,1,2 -050,01,103,Alabama,Morgan County,1,2,7994,4099,3895,3321,3158,641,626,35,25,18,25,5,1,79,60,3908,3709,3146,2985,634,619,32,23,18,23,0,0,78,59,191,186,175,173,7,7,3,2,0,2,5,1,1,1 -050,01,103,Alabama,Morgan County,1,3,8122,4136,3986,3422,3286,612,579,32,39,21,26,1,5,48,51,3986,3851,3290,3166,602,574,30,37,20,23,0,2,44,49,150,135,132,120,10,5,2,2,1,3,1,3,4,2 -050,01,103,Alabama,Morgan County,1,4,7499,3942,3557,3340,2991,517,477,35,28,15,19,2,0,33,42,3748,3415,3157,2859,515,473,29,26,15,19,1,0,31,38,194,142,183,132,2,4,6,2,0,0,1,0,2,4 -050,01,103,Alabama,Morgan County,1,5,6593,3292,3301,2730,2701,456,517,49,38,10,20,11,1,36,24,2950,3127,2428,2543,446,506,36,36,6,18,1,0,33,24,342,174,302,158,10,11,13,2,4,2,10,1,3,0 -050,01,103,Alabama,Morgan County,1,6,7231,3702,3529,3094,2903,507,548,40,22,21,19,11,4,29,33,3396,3346,2811,2733,499,540,36,20,20,19,1,1,29,33,306,183,283,170,8,8,4,2,1,0,10,3,0,0 -050,01,103,Alabama,Morgan County,1,7,7919,3903,4016,3348,3414,476,527,23,24,21,19,7,2,28,30,3688,3879,3154,3284,467,521,16,23,21,19,3,2,27,30,215,137,194,130,9,6,7,1,0,0,4,0,1,0 -050,01,103,Alabama,Morgan County,1,8,9254,4661,4593,4093,3962,481,532,35,27,23,31,4,4,25,37,4503,4494,3948,3871,474,528,35,26,21,29,0,3,25,37,158,99,145,91,7,4,0,1,2,2,4,1,0,0 -050,01,103,Alabama,Morgan County,1,9,9008,4548,4460,4028,3845,426,498,38,42,26,35,2,0,28,40,4448,4387,3941,3778,419,496,38,39,23,35,0,0,27,39,100,73,87,67,7,2,0,3,3,0,2,0,1,1 -050,01,103,Alabama,Morgan County,1,10,8147,4053,4094,3568,3571,407,434,34,28,16,21,3,1,25,39,3967,4038,3488,3520,404,431,33,27,15,20,2,1,25,39,86,56,80,51,3,3,1,1,1,1,1,0,0,0 -050,01,103,Alabama,Morgan County,1,11,7535,3681,3854,3329,3430,269,333,35,30,17,22,1,2,30,37,3628,3815,3279,3394,266,330,35,30,17,22,1,2,30,37,53,39,50,36,3,3,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,1,12,5974,2960,3014,2719,2747,190,206,17,22,12,17,0,0,22,22,2933,2994,2697,2731,187,205,17,22,11,17,0,0,21,19,27,20,22,16,3,1,0,0,1,0,0,0,1,3 -050,01,103,Alabama,Morgan County,1,13,4775,2269,2506,2087,2305,149,170,6,7,8,6,1,0,18,18,2247,2483,2065,2284,149,170,6,6,8,5,1,0,18,18,22,23,22,21,0,0,0,1,0,1,0,0,0,0 -050,01,103,Alabama,Morgan County,1,14,4183,1910,2273,1765,2081,117,164,9,6,2,4,1,0,16,18,1891,2257,1754,2066,115,163,6,6,1,4,0,0,15,18,19,16,11,15,2,1,3,0,1,0,1,0,1,0 -050,01,103,Alabama,Morgan County,1,15,3555,1516,2039,1421,1876,75,143,5,5,2,5,1,0,12,10,1509,2031,1414,1868,75,143,5,5,2,5,1,0,12,10,7,8,7,8,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,1,16,2685,1077,1608,1000,1506,71,88,2,4,1,0,0,0,3,10,1074,1606,997,1504,71,88,2,4,1,0,0,0,3,10,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,1,17,1879,643,1236,600,1126,38,100,0,1,1,0,1,0,3,9,641,1230,598,1120,38,100,0,1,1,0,1,0,3,9,2,6,2,6,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,1,18,1403,366,1037,322,936,38,95,2,0,1,2,0,0,3,4,363,1035,319,934,38,95,2,0,1,2,0,0,3,4,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,1,99,111076,54456,56620,47266,48763,5962,6590,424,374,238,293,53,22,513,578,52331,55100,45337,47368,5884,6525,378,350,222,281,13,12,497,564,2125,1520,1929,1395,78,65,46,24,16,12,40,10,16,14 -050,01,103,Alabama,Morgan County,2,0,1487,760,727,634,578,95,121,6,7,8,4,0,0,17,17,694,666,573,524,93,119,6,3,6,4,0,0,16,16,66,61,61,54,2,2,0,4,2,0,0,0,1,1 -050,01,103,Alabama,Morgan County,2,1,5822,2929,2893,2438,2344,393,429,21,19,15,18,2,2,60,81,2745,2733,2268,2199,388,421,14,16,15,17,1,1,59,79,184,160,170,145,5,8,7,3,0,1,1,1,1,2 -050,01,103,Alabama,Morgan County,2,2,7938,4068,3870,3303,3142,632,619,35,25,18,25,5,1,75,58,3877,3684,3128,2969,625,612,32,23,18,23,0,0,74,57,191,186,175,173,7,7,3,2,0,2,5,1,1,1 -050,01,103,Alabama,Morgan County,2,3,8154,4150,4004,3432,3292,616,583,32,39,21,26,1,5,48,59,3997,3868,3297,3171,606,578,30,37,20,23,0,2,44,57,153,136,135,121,10,5,2,2,1,3,1,3,4,2 -050,01,103,Alabama,Morgan County,2,4,7518,3958,3560,3355,2994,521,478,35,28,15,19,2,0,30,41,3762,3419,3170,2863,519,474,29,26,15,19,1,0,28,37,196,141,185,131,2,4,6,2,0,0,1,0,2,4 -050,01,103,Alabama,Morgan County,2,5,6643,3326,3317,2757,2719,462,520,49,38,10,19,11,1,37,20,2977,3142,2448,2560,452,509,36,36,6,17,1,0,34,20,349,175,309,159,10,11,13,2,4,2,10,1,3,0 -050,01,103,Alabama,Morgan County,2,6,7173,3672,3501,3068,2875,506,547,40,22,21,19,11,4,26,34,3361,3313,2780,2700,498,539,36,20,20,19,1,1,26,34,311,188,288,175,8,8,4,2,1,0,10,3,0,0 -050,01,103,Alabama,Morgan County,2,7,7908,3898,4010,3345,3408,476,527,23,24,21,19,7,2,26,30,3678,3870,3146,3275,467,521,16,23,21,19,3,2,25,30,220,140,199,133,9,6,7,1,0,0,4,0,1,0 -050,01,103,Alabama,Morgan County,2,8,9212,4642,4570,4072,3937,482,531,35,27,23,31,4,4,26,40,4483,4471,3926,3846,475,527,35,26,21,29,0,3,26,40,159,99,146,91,7,4,0,1,2,2,4,1,0,0 -050,01,103,Alabama,Morgan County,2,9,9022,4558,4464,4031,3845,429,502,38,42,26,35,2,0,32,40,4457,4391,3944,3778,422,500,38,39,23,35,0,0,30,39,101,73,87,67,7,2,0,3,3,0,2,0,2,1 -050,01,103,Alabama,Morgan County,2,10,8184,4073,4111,3585,3584,410,438,34,28,16,21,3,1,25,39,3987,4055,3505,3533,407,435,33,27,15,20,2,1,25,39,86,56,80,51,3,3,1,1,1,1,1,0,0,0 -050,01,103,Alabama,Morgan County,2,11,7605,3720,3885,3360,3458,273,337,36,30,17,22,1,2,33,36,3666,3846,3309,3422,270,334,36,30,17,22,1,2,33,36,54,39,51,36,3,3,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,2,12,6013,2982,3031,2738,2762,191,207,17,22,12,17,0,0,24,23,2955,3011,2716,2746,188,206,17,22,11,17,0,0,23,20,27,20,22,16,3,1,0,0,1,0,0,0,1,3 -050,01,103,Alabama,Morgan County,2,13,4799,2281,2518,2096,2318,149,170,6,7,8,6,1,0,21,17,2259,2495,2074,2297,149,170,6,6,8,5,1,0,21,17,22,23,22,21,0,0,0,1,0,1,0,0,0,0 -050,01,103,Alabama,Morgan County,2,14,4177,1912,2265,1765,2077,119,164,9,6,2,4,1,0,16,14,1893,2249,1754,2062,117,163,6,6,1,4,0,0,15,14,19,16,11,15,2,1,3,0,1,0,1,0,1,0 -050,01,103,Alabama,Morgan County,2,15,3559,1520,2039,1424,1876,75,143,5,5,2,5,1,0,13,10,1513,2031,1417,1868,75,143,5,5,2,5,1,0,13,10,7,8,7,8,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,2,16,2698,1085,1613,1007,1511,71,89,2,4,1,0,0,0,4,9,1082,1611,1004,1509,71,89,2,4,1,0,0,0,4,9,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,2,17,1898,651,1247,608,1134,38,101,0,1,1,0,1,0,3,11,649,1241,606,1128,38,101,0,1,1,0,1,0,3,11,2,6,2,6,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,2,18,1411,369,1042,325,942,38,95,2,0,1,2,0,0,3,3,366,1040,322,940,38,95,2,0,1,2,0,0,3,3,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,2,99,111221,54554,56667,47343,48796,5976,6601,425,374,238,292,53,22,519,582,52401,55136,45387,47390,5898,6536,379,350,222,280,13,12,502,568,2153,1531,1956,1406,78,65,46,24,16,12,40,10,17,14 -050,01,103,Alabama,Morgan County,3,0,1497,749,748,613,609,105,113,3,4,6,4,0,0,22,18,653,674,525,539,103,112,2,2,3,4,0,0,20,17,96,74,88,70,2,1,1,2,3,0,0,0,2,1 -050,01,103,Alabama,Morgan County,3,1,5794,2891,2903,2392,2361,382,430,25,22,23,15,2,4,67,71,2690,2703,2209,2181,375,419,17,17,22,14,1,3,66,69,201,200,183,180,7,11,8,5,1,1,1,1,1,2 -050,01,103,Alabama,Morgan County,3,2,7795,3940,3855,3217,3106,603,616,26,32,17,31,5,1,72,69,3741,3662,3035,2934,596,606,22,27,17,28,0,0,71,67,199,193,182,172,7,10,4,5,0,3,5,1,1,2 -050,01,103,Alabama,Morgan County,3,3,8225,4278,3947,3529,3238,633,579,38,43,17,23,1,5,60,59,4092,3791,3365,3099,623,571,33,40,15,21,0,2,56,58,186,156,164,139,10,8,5,3,2,2,1,3,4,1 -050,01,103,Alabama,Morgan County,3,4,7393,3849,3544,3235,2948,524,495,38,33,14,23,2,0,36,45,3658,3386,3058,2802,519,490,32,30,14,23,1,0,34,41,191,158,177,146,5,5,6,3,0,0,1,0,2,4 -050,01,103,Alabama,Morgan County,3,5,6792,3457,3335,2865,2738,486,504,55,42,13,21,11,1,27,29,3065,3150,2514,2567,477,496,40,39,9,19,1,0,24,29,392,185,351,171,9,8,15,3,4,2,10,1,3,0 -050,01,103,Alabama,Morgan County,3,6,6940,3499,3441,2942,2820,454,543,42,22,25,20,9,5,27,31,3156,3256,2628,2651,443,535,34,18,24,20,0,1,27,31,343,185,314,169,11,8,8,4,1,0,9,4,0,0 -050,01,103,Alabama,Morgan County,3,7,7826,3874,3952,3301,3333,494,536,24,30,26,27,6,2,23,24,3624,3773,3073,3163,485,529,16,28,26,27,2,2,22,24,250,179,228,170,9,7,8,2,0,0,4,0,1,0 -050,01,103,Alabama,Morgan County,3,8,9059,4542,4517,3936,3868,513,545,37,22,24,36,4,5,28,41,4365,4400,3777,3762,504,539,34,20,22,34,0,4,28,41,177,117,159,106,9,6,3,2,2,2,4,1,0,0 -050,01,103,Alabama,Morgan County,3,9,9150,4610,4540,4095,3932,420,503,37,37,23,27,2,0,33,41,4489,4457,3992,3855,411,501,35,34,20,27,0,0,31,40,121,83,103,77,9,2,2,3,3,0,2,0,2,1 -050,01,103,Alabama,Morgan County,3,10,8377,4192,4185,3670,3622,437,458,34,51,19,20,3,1,29,33,4091,4121,3576,3563,432,455,33,50,19,19,2,1,29,33,101,64,94,59,5,3,1,1,0,1,1,0,0,0 -050,01,103,Alabama,Morgan County,3,11,7790,3797,3993,3430,3544,283,358,35,29,16,25,1,1,32,36,3728,3949,3365,3503,280,355,35,29,15,25,1,1,32,36,69,44,65,41,3,3,0,0,1,0,0,0,0,0 -050,01,103,Alabama,Morgan County,3,12,6148,3020,3128,2751,2833,207,232,21,26,13,16,0,0,28,21,2991,3104,2728,2813,204,231,20,26,12,16,0,0,27,18,29,24,23,20,3,1,1,0,1,0,0,0,1,3 -050,01,103,Alabama,Morgan County,3,13,4960,2393,2567,2195,2351,159,173,9,12,11,13,1,0,18,18,2368,2542,2171,2328,159,173,8,11,11,12,1,0,18,18,25,25,24,23,0,0,1,1,0,1,0,0,0,0 -050,01,103,Alabama,Morgan County,3,14,4233,1969,2264,1825,2065,120,171,8,9,2,5,1,0,13,14,1948,2249,1811,2051,118,170,5,9,1,5,0,0,13,14,21,15,14,14,2,1,3,0,1,0,1,0,0,0 -050,01,103,Alabama,Morgan County,3,15,3618,1543,2075,1449,1917,76,132,4,6,3,5,1,0,10,15,1535,2065,1441,1908,76,132,4,6,3,5,1,0,10,14,8,10,8,9,0,0,0,0,0,0,0,0,0,1 -050,01,103,Alabama,Morgan County,3,16,2711,1084,1627,1004,1500,68,110,2,4,1,1,0,0,9,12,1079,1624,999,1497,68,110,2,4,1,1,0,0,9,12,5,3,5,3,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,3,17,1953,687,1266,646,1169,37,89,0,1,0,0,1,0,3,7,684,1260,643,1163,37,89,0,1,0,0,1,0,3,7,3,6,3,6,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,3,18,1421,375,1046,330,940,39,100,2,1,1,2,0,0,3,3,372,1043,327,937,39,100,2,1,1,2,0,0,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,3,99,111682,54749,56933,47425,48894,6040,6687,440,426,254,314,50,25,540,587,52329,55209,45237,47316,5949,6613,374,392,235,302,11,14,523,572,2420,1724,2188,1578,91,74,66,34,19,12,39,11,17,15 -050,01,103,Alabama,Morgan County,4,0,1402,721,681,613,563,85,93,1,3,3,1,0,0,19,21,624,605,520,490,84,92,1,2,2,1,0,0,17,20,97,76,93,73,1,1,0,1,1,0,0,0,2,1 -050,01,103,Alabama,Morgan County,4,1,5859,2917,2942,2396,2377,408,445,25,20,20,18,4,3,64,79,2695,2700,2193,2160,399,434,17,12,20,16,3,2,63,76,222,242,203,217,9,11,8,8,0,2,1,1,1,3 -050,01,103,Alabama,Morgan County,4,2,7541,3759,3782,3102,3050,517,594,28,30,26,29,7,1,79,78,3547,3589,2911,2877,510,586,23,22,25,28,1,0,77,76,212,193,191,173,7,8,5,8,1,1,6,1,2,2 -050,01,103,Alabama,Morgan County,4,3,8333,4312,4021,3503,3247,676,633,54,43,17,21,2,7,60,70,4113,3848,3328,3097,666,623,47,39,16,19,0,3,56,67,199,173,175,150,10,10,7,4,1,2,2,4,4,3 -050,01,103,Alabama,Morgan County,4,4,7369,3825,3544,3221,2959,505,484,45,34,13,20,3,1,38,46,3606,3381,3023,2810,498,479,36,30,12,20,1,0,36,42,219,163,198,149,7,5,9,4,1,0,2,1,2,4 -050,01,103,Alabama,Morgan County,4,5,6768,3528,3240,2912,2673,511,488,47,29,13,17,12,3,33,30,3140,3051,2569,2502,501,480,31,24,9,15,2,0,28,30,388,189,343,171,10,8,16,5,4,2,10,3,5,0 -050,01,103,Alabama,Morgan County,4,6,6793,3430,3363,2891,2725,438,551,34,30,28,18,12,5,27,34,3051,3136,2546,2522,426,538,24,24,26,18,2,1,27,33,379,227,345,203,12,13,10,6,2,0,10,4,0,1 -050,01,103,Alabama,Morgan County,4,7,7700,3862,3838,3265,3217,495,543,41,29,27,22,6,2,28,25,3568,3661,2998,3055,484,536,32,22,27,22,2,1,25,25,294,177,267,162,11,7,9,7,0,0,4,1,3,0 -050,01,103,Alabama,Morgan County,4,8,8842,4349,4493,3767,3826,496,562,31,25,25,36,6,5,24,39,4150,4348,3590,3694,485,555,27,22,24,34,1,5,23,38,199,145,177,132,11,7,4,3,1,2,5,0,1,1 -050,01,103,Alabama,Morgan County,4,9,9157,4664,4493,4119,3878,446,500,42,35,18,36,3,1,36,43,4528,4410,4005,3803,434,498,39,30,15,36,1,1,34,42,136,83,114,75,12,2,3,5,3,0,2,0,2,1 -050,01,103,Alabama,Morgan County,4,10,8509,4252,4257,3686,3662,459,485,49,42,22,20,3,1,33,47,4157,4186,3602,3596,451,481,47,41,22,20,2,1,33,47,95,71,84,66,8,4,2,1,0,0,1,0,0,0 -050,01,103,Alabama,Morgan County,4,11,7643,3732,3911,3380,3442,270,373,32,33,12,26,1,1,37,36,3646,3857,3297,3392,267,370,32,32,12,26,1,1,37,36,86,54,83,50,3,3,0,1,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,4,12,6575,3214,3361,2944,3056,213,236,23,28,12,17,0,0,22,24,3175,3339,2909,3037,211,235,22,28,12,17,0,0,21,22,39,22,35,19,2,1,1,0,0,0,0,0,1,2 -050,01,103,Alabama,Morgan County,4,13,5192,2509,2683,2289,2460,175,174,11,18,11,12,1,0,22,19,2489,2658,2269,2437,175,174,11,17,11,11,1,0,22,19,20,25,20,23,0,0,0,1,0,1,0,0,0,0 -050,01,103,Alabama,Morgan County,4,14,4245,1970,2275,1821,2081,119,163,10,11,2,6,1,0,17,14,1950,2257,1807,2064,118,162,7,11,2,6,0,0,16,14,20,18,14,17,1,1,3,0,0,0,1,0,1,0 -050,01,103,Alabama,Morgan County,4,15,3665,1567,2098,1464,1926,83,146,3,5,3,6,1,0,13,15,1559,2089,1456,1917,83,146,3,5,3,6,1,0,13,15,8,9,8,9,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,4,16,2787,1101,1686,1025,1544,63,123,3,5,1,2,0,0,9,12,1097,1682,1021,1540,63,123,3,5,1,2,0,0,9,12,4,4,4,4,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,4,17,1944,696,1248,650,1158,39,76,0,2,1,1,1,0,5,11,693,1241,647,1151,39,76,0,2,1,1,1,0,5,11,3,7,3,7,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,4,18,1442,408,1034,365,930,36,95,3,1,1,2,0,0,3,6,406,1031,363,927,36,95,3,1,1,2,0,0,3,6,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,4,99,111766,54816,56950,47413,48774,6034,6764,482,423,255,310,63,30,569,649,52194,55069,45054,47071,5930,6683,405,369,241,300,19,15,545,631,2622,1881,2359,1703,104,81,77,54,14,10,44,15,24,18 -050,01,103,Alabama,Morgan County,5,0,1468,769,699,649,577,91,94,3,5,4,2,0,0,22,21,661,610,548,494,90,94,1,2,2,1,0,0,20,19,108,89,101,83,1,0,2,3,2,1,0,0,2,2 -050,01,103,Alabama,Morgan County,5,1,5959,2998,2961,2459,2374,400,463,27,19,24,18,5,2,83,85,2718,2688,2201,2124,392,455,18,12,23,16,3,1,81,80,280,273,258,250,8,8,9,7,1,2,2,1,2,5 -050,01,103,Alabama,Morgan County,5,2,7562,3772,3790,3107,3082,526,544,35,37,24,35,8,2,72,90,3552,3563,2916,2879,516,536,28,27,23,33,1,0,68,88,220,227,191,203,10,8,7,10,1,2,7,2,4,2 -050,01,103,Alabama,Morgan County,5,3,8409,4289,4120,3468,3325,680,651,53,48,18,15,3,6,67,75,4080,3925,3283,3156,672,639,44,43,17,13,1,2,63,72,209,195,185,169,8,12,9,5,1,2,2,4,4,3 -050,01,103,Alabama,Morgan County,5,4,7503,3930,3573,3295,2947,527,519,45,36,13,18,4,1,46,52,3688,3399,3084,2791,516,513,34,31,11,18,1,0,42,46,242,174,211,156,11,6,11,5,2,0,3,1,4,6 -050,01,103,Alabama,Morgan County,5,5,6794,3512,3282,2905,2680,503,509,45,31,14,22,11,3,34,37,3095,3091,2537,2509,491,501,28,25,10,20,2,0,27,36,417,191,368,171,12,8,17,6,4,2,9,3,7,1 -050,01,103,Alabama,Morgan County,5,6,6857,3488,3369,2885,2729,497,561,46,22,22,17,11,4,27,36,3087,3128,2520,2509,485,553,33,15,21,17,2,1,26,33,401,241,365,220,12,8,13,7,1,0,9,3,1,3 -050,01,103,Alabama,Morgan County,5,7,7787,3896,3891,3278,3259,517,544,36,27,28,29,6,3,31,29,3564,3660,2977,3045,505,536,25,20,28,29,3,1,26,29,332,231,301,214,12,8,11,7,0,0,3,2,5,0 -050,01,103,Alabama,Morgan County,5,8,8582,4262,4320,3683,3675,482,541,36,29,28,36,6,4,27,35,4030,4173,3482,3543,469,533,26,26,26,34,1,3,26,34,232,147,201,132,13,8,10,3,2,2,5,1,1,1 -050,01,103,Alabama,Morgan County,5,9,9117,4589,4528,4036,3854,456,553,41,43,19,33,2,0,35,45,4436,4436,3907,3772,443,550,36,38,16,32,1,0,33,44,153,92,129,82,13,3,5,5,3,1,1,0,2,1 -050,01,103,Alabama,Morgan County,5,10,8655,4373,4282,3822,3692,447,478,49,48,21,23,2,1,32,40,4271,4211,3732,3627,439,474,47,47,20,22,1,1,32,40,102,71,90,65,8,4,2,1,1,1,1,0,0,0 -050,01,103,Alabama,Morgan County,5,11,7707,3764,3943,3342,3441,334,400,32,30,14,28,0,0,42,44,3671,3883,3254,3385,329,397,32,29,14,28,0,0,42,44,93,60,88,56,5,3,0,1,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,5,12,6744,3293,3451,2995,3131,221,242,34,29,13,24,0,0,30,25,3251,3430,2959,3113,218,241,32,29,13,24,0,0,29,23,42,21,36,18,3,1,2,0,0,0,0,0,1,2 -050,01,103,Alabama,Morgan County,5,13,5428,2620,2808,2399,2558,169,196,14,20,12,18,2,0,24,16,2600,2782,2380,2534,169,196,13,19,12,17,2,0,24,16,20,26,19,24,0,0,1,1,0,1,0,0,0,0 -050,01,103,Alabama,Morgan County,5,14,4344,2001,2343,1857,2156,109,151,14,12,3,7,0,0,18,17,1976,2330,1838,2144,107,150,11,12,3,7,0,0,17,17,25,13,19,12,2,1,3,0,0,0,0,0,1,0 -050,01,103,Alabama,Morgan County,5,15,3687,1599,2088,1486,1902,91,157,5,5,3,7,1,0,13,17,1589,2072,1476,1886,91,157,5,5,3,7,1,0,13,17,10,16,10,16,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,5,16,2869,1156,1713,1081,1579,63,116,3,5,1,3,0,0,8,10,1149,1708,1074,1574,63,116,3,5,1,3,0,0,8,10,7,5,7,5,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,5,17,1954,684,1270,642,1174,37,79,1,2,0,1,1,0,3,14,679,1264,637,1168,37,79,1,2,0,1,1,0,3,14,5,6,5,6,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,5,18,1472,438,1034,392,929,39,97,3,1,1,2,0,0,3,5,436,1030,390,925,39,97,3,1,1,2,0,0,3,5,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,5,99,112898,55433,57465,47781,49064,6189,6895,522,449,262,338,62,26,617,693,52533,55383,45195,47178,6071,6817,420,388,244,324,20,9,583,667,2900,2082,2586,1886,118,78,102,61,18,14,42,17,34,26 -050,01,103,Alabama,Morgan County,6,0,1453,729,724,609,594,88,97,3,4,3,3,0,1,26,25,611,628,499,504,85,96,2,2,2,2,0,1,23,23,118,96,110,90,3,1,1,2,1,1,0,0,3,2 -050,01,103,Alabama,Morgan County,6,1,5975,3066,2909,2501,2310,431,477,21,21,21,19,6,3,86,79,2706,2591,2171,2021,420,468,10,12,19,16,4,1,82,73,360,318,330,289,11,9,11,9,2,3,2,2,4,6 -050,01,103,Alabama,Morgan County,6,2,7475,3717,3758,3067,3058,498,532,32,35,29,36,9,2,82,95,3486,3516,2868,2847,487,519,24,24,28,34,2,0,77,92,231,242,199,211,11,13,8,11,1,2,7,2,5,3 -050,01,103,Alabama,Morgan County,6,3,8309,4256,4053,3431,3249,686,648,45,48,16,17,2,8,76,83,4023,3834,3227,3058,676,637,35,41,13,15,0,4,72,79,233,219,204,191,10,11,10,7,3,2,2,4,4,4 -050,01,103,Alabama,Morgan County,6,4,7652,3931,3721,3289,3044,529,562,46,46,16,17,4,1,47,51,3665,3526,3052,2872,519,553,35,39,14,17,1,0,44,45,266,195,237,172,10,9,11,7,2,0,3,1,3,6 -050,01,103,Alabama,Morgan County,6,5,6660,3475,3185,2858,2627,502,463,49,29,17,17,11,3,38,46,3080,2968,2513,2432,490,454,31,22,13,15,2,0,31,45,395,217,345,195,12,9,18,7,4,2,9,3,7,1 -050,01,103,Alabama,Morgan County,6,6,6854,3484,3370,2896,2691,461,582,56,31,25,29,13,5,33,32,3049,3122,2505,2472,447,571,40,20,23,29,3,1,31,29,435,248,391,219,14,11,16,11,2,0,10,4,2,3 -050,01,103,Alabama,Morgan County,6,7,7515,3772,3743,3151,3097,513,554,39,27,29,32,7,4,33,29,3443,3501,2853,2872,502,547,28,19,29,32,4,2,27,29,329,242,298,225,11,7,11,8,0,0,3,2,6,0 -050,01,103,Alabama,Morgan County,6,8,8347,4126,4221,3577,3595,463,525,30,31,25,30,6,4,25,36,3837,4066,3317,3457,449,516,23,26,23,28,1,4,24,35,289,155,260,138,14,9,7,5,2,2,5,0,1,1 -050,01,103,Alabama,Morgan County,6,9,9083,4572,4511,4000,3837,471,543,40,41,21,46,2,1,38,43,4414,4406,3869,3741,456,540,34,36,18,46,1,1,36,42,158,105,131,96,15,3,6,5,3,0,1,0,2,1 -050,01,103,Alabama,Morgan County,6,10,8734,4371,4363,3829,3756,433,483,46,43,21,26,1,0,41,55,4269,4283,3740,3686,425,479,43,41,20,24,0,0,41,53,102,80,89,70,8,4,3,2,1,2,1,0,0,2 -050,01,103,Alabama,Morgan County,6,11,7820,3792,4028,3367,3497,346,435,29,30,13,25,0,2,37,39,3696,3958,3277,3430,341,433,29,29,12,25,0,2,37,39,96,70,90,67,5,2,0,1,1,0,0,0,0,0 -050,01,103,Alabama,Morgan County,6,12,6993,3453,3540,3133,3191,242,254,34,28,16,29,0,0,28,38,3393,3512,3081,3166,239,254,31,28,15,29,0,0,27,35,60,28,52,25,3,0,3,0,1,0,0,0,1,3 -050,01,103,Alabama,Morgan County,6,13,5635,2714,2921,2489,2666,171,200,18,23,10,15,2,0,24,17,2693,2897,2469,2644,171,200,17,22,10,14,2,0,24,17,21,24,20,22,0,0,1,1,0,1,0,0,0,0 -050,01,103,Alabama,Morgan County,6,14,4456,2081,2375,1928,2176,125,160,12,11,3,8,0,0,13,20,2058,2359,1908,2162,125,159,10,10,3,8,0,0,12,20,23,16,20,14,0,1,2,1,0,0,0,0,1,0 -050,01,103,Alabama,Morgan County,6,15,3692,1600,2092,1493,1919,84,148,5,5,3,8,1,0,14,12,1589,2075,1482,1902,84,148,5,5,3,8,1,0,14,12,11,17,11,17,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,6,16,2925,1176,1749,1097,1607,60,120,5,5,2,4,0,0,12,13,1170,1744,1091,1602,60,120,5,5,2,4,0,0,12,13,6,5,6,5,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,6,17,1959,738,1221,692,1145,40,63,1,2,0,1,1,0,4,10,734,1213,688,1137,40,63,1,2,0,1,1,0,4,10,4,8,4,8,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,6,18,1469,437,1032,393,933,37,89,3,1,1,2,0,0,3,7,435,1026,391,927,37,89,3,1,1,2,0,0,3,7,2,6,2,6,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,6,99,113006,55490,57516,47800,48992,6180,6935,514,461,271,364,65,34,660,730,52351,55225,45001,46932,6053,6846,406,384,248,349,22,16,621,698,3139,2291,2799,2060,127,89,108,77,23,15,43,18,39,32 -050,01,103,Alabama,Morgan County,7,0,1422,719,703,595,583,83,81,7,3,4,5,0,1,30,30,611,584,495,473,82,80,5,1,3,4,0,1,26,25,108,119,100,110,1,1,2,2,1,1,0,0,4,5 -050,01,103,Alabama,Morgan County,7,1,6002,3052,2950,2482,2344,431,473,20,24,20,17,7,5,92,87,2666,2599,2125,2032,419,458,12,15,19,13,4,1,87,80,386,351,357,312,12,15,8,9,1,4,3,4,5,7 -050,01,103,Alabama,Morgan County,7,2,7423,3715,3708,3068,3013,464,522,36,35,39,30,10,4,98,104,3440,3429,2830,2770,457,509,26,21,36,28,4,2,87,99,275,279,238,243,7,13,10,14,3,2,6,2,11,5 -050,01,103,Alabama,Morgan County,7,3,8249,4170,4079,3373,3276,639,658,55,35,20,19,1,8,82,83,3913,3824,3146,3052,631,645,41,30,17,17,0,4,78,76,257,255,227,224,8,13,14,5,3,2,1,4,4,7 -050,01,103,Alabama,Morgan County,7,4,7803,3998,3805,3305,3111,566,565,49,53,15,18,5,3,58,55,3708,3595,3053,2929,551,556,37,46,13,18,2,0,52,46,290,210,252,182,15,9,12,7,2,0,3,3,6,9 -050,01,103,Alabama,Morgan County,7,5,6597,3453,3144,2833,2596,508,457,40,21,16,21,11,4,45,45,3041,2893,2473,2369,491,447,23,13,14,19,3,2,37,43,412,251,360,227,17,10,17,8,2,2,8,2,8,2 -050,01,103,Alabama,Morgan County,7,6,7042,3511,3531,2919,2831,470,583,52,52,26,24,11,6,33,35,3033,3243,2492,2574,450,573,34,40,23,24,4,2,30,30,478,288,427,257,20,10,18,12,3,0,7,4,3,5 -050,01,103,Alabama,Morgan County,7,7,7428,3794,3634,3162,2973,516,565,42,32,40,27,5,3,29,34,3404,3346,2802,2709,504,556,31,22,39,26,3,1,25,32,390,288,360,264,12,9,11,10,1,1,2,2,4,2 -050,01,103,Alabama,Morgan County,7,8,8142,4027,4115,3496,3485,441,525,28,31,25,21,6,6,31,47,3711,3927,3208,3320,430,514,19,26,24,18,2,5,28,44,316,188,288,165,11,11,9,5,1,3,4,1,3,3 -050,01,103,Alabama,Morgan County,7,9,9083,4501,4582,3895,3933,485,527,41,42,26,37,5,3,49,40,4323,4453,3750,3815,468,523,34,35,21,37,3,3,47,40,178,129,145,118,17,4,7,7,5,0,2,0,2,0 -050,01,103,Alabama,Morgan County,7,10,8895,4519,4376,3970,3739,428,502,47,49,28,37,0,0,46,49,4416,4296,3878,3666,421,498,45,47,27,36,0,0,45,49,103,80,92,73,7,4,2,2,1,1,0,0,1,0 -050,01,103,Alabama,Morgan County,7,11,7957,3903,4054,3393,3540,415,430,35,25,23,19,0,2,37,38,3808,3973,3308,3466,408,427,33,24,22,19,0,1,37,36,95,81,85,74,7,3,2,1,1,0,0,1,0,2 -050,01,103,Alabama,Morgan County,7,12,7242,3533,3709,3202,3292,251,315,40,29,12,31,1,0,27,42,3472,3666,3146,3255,250,313,37,28,12,31,0,0,27,39,61,43,56,37,1,2,3,1,0,0,1,0,0,3 -050,01,103,Alabama,Morgan County,7,13,5784,2776,3008,2530,2742,183,204,20,22,14,18,1,0,28,22,2751,2989,2510,2724,181,204,18,22,14,17,1,0,27,22,25,19,20,18,2,0,2,0,0,1,0,0,1,0 -050,01,103,Alabama,Morgan County,7,14,4587,2124,2463,1969,2259,124,163,7,12,6,6,0,0,18,23,2100,2444,1949,2242,124,163,5,10,5,6,0,0,17,23,24,19,20,17,0,0,2,2,1,0,0,0,1,0 -050,01,103,Alabama,Morgan County,7,15,3798,1654,2144,1533,1976,93,143,4,3,4,8,1,0,19,14,1641,2125,1521,1958,93,143,4,3,4,8,1,0,18,13,13,19,12,18,0,0,0,0,0,0,0,0,1,1 -050,01,103,Alabama,Morgan County,7,16,2993,1229,1764,1152,1612,60,129,7,6,2,7,0,0,8,10,1220,1756,1143,1605,60,129,7,6,2,6,0,0,8,10,9,8,9,7,0,0,0,0,0,1,0,0,0,0 -050,01,103,Alabama,Morgan County,7,17,1996,765,1231,719,1144,42,73,1,3,0,1,0,0,3,10,760,1224,714,1137,42,73,1,3,0,1,0,0,3,10,5,7,5,7,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,7,18,1521,458,1063,411,970,40,82,3,1,1,2,0,0,3,8,455,1055,408,962,40,82,3,1,1,2,0,0,3,8,3,8,3,8,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,7,99,113964,55901,58063,48007,49419,6239,6997,534,478,321,348,64,45,736,776,52473,55421,44951,47058,6102,6893,415,393,296,330,27,22,682,725,3428,2642,3056,2361,137,104,119,85,25,18,37,23,54,51 -050,01,103,Alabama,Morgan County,8,0,1443,766,677,632,537,91,97,3,2,3,4,0,1,37,36,622,575,496,443,90,96,2,1,2,3,0,1,32,31,144,102,136,94,1,1,1,1,1,1,0,0,5,5 -050,01,103,Alabama,Morgan County,8,1,6082,3119,2963,2555,2399,428,420,27,25,24,20,9,9,76,90,2699,2575,2173,2050,416,407,14,13,21,16,5,5,70,84,420,388,382,349,12,13,13,12,3,4,4,4,6,6 -050,01,103,Alabama,Morgan County,8,2,7512,3729,3783,3047,3056,491,539,39,39,41,28,11,2,100,119,3415,3469,2780,2779,478,526,27,24,38,26,4,1,88,113,314,314,267,277,13,13,12,15,3,2,7,1,12,6 -050,01,103,Alabama,Morgan County,8,3,8224,4146,4078,3344,3266,641,641,50,47,16,26,3,8,92,90,3864,3806,3095,3030,633,625,35,39,12,25,1,3,88,84,282,272,249,236,8,16,15,8,4,1,2,5,4,6 -050,01,103,Alabama,Morgan County,8,4,7930,4089,3841,3362,3131,586,579,52,45,20,15,6,3,63,68,3769,3601,3081,2922,574,568,40,35,17,15,1,0,56,61,320,240,281,209,12,11,12,10,3,0,5,3,7,7 -050,01,103,Alabama,Morgan County,8,5,6592,3478,3114,2834,2548,520,479,49,24,18,17,9,3,48,43,3041,2845,2449,2303,504,468,31,15,16,17,2,1,39,41,437,269,385,245,16,11,18,9,2,0,7,2,9,2 -050,01,103,Alabama,Morgan County,8,6,7293,3645,3648,3032,2949,492,578,57,42,25,29,14,6,25,44,3141,3330,2587,2670,471,567,37,27,22,28,5,1,19,37,504,318,445,279,21,11,20,15,3,1,9,5,6,7 -050,01,103,Alabama,Morgan County,8,7,7196,3604,3592,3024,2915,484,572,33,32,27,33,6,3,30,37,3191,3298,2648,2652,468,561,21,19,26,32,5,0,23,34,413,294,376,263,16,11,12,13,1,1,1,3,7,3 -050,01,103,Alabama,Morgan County,8,8,8097,4076,4021,3499,3396,470,516,35,35,31,22,7,6,34,46,3732,3821,3192,3220,455,505,24,28,29,20,3,5,29,43,344,200,307,176,15,11,11,7,2,2,4,1,5,3 -050,01,103,Alabama,Morgan County,8,9,9021,4435,4586,3812,3909,497,559,47,43,26,40,4,3,49,32,4265,4436,3674,3771,478,556,39,37,24,39,3,3,47,30,170,150,138,138,19,3,8,6,2,1,1,0,2,2 -050,01,103,Alabama,Morgan County,8,10,9008,4535,4473,3989,3807,428,515,50,57,22,36,0,0,46,58,4402,4381,3876,3729,415,508,45,54,22,34,0,0,44,56,133,92,113,78,13,7,5,3,0,2,0,0,2,2 -050,01,103,Alabama,Morgan County,8,11,8236,4093,4143,3544,3599,429,448,50,30,28,21,0,1,42,44,3984,4052,3446,3515,421,446,48,28,27,20,0,0,42,43,109,91,98,84,8,2,2,2,1,1,0,1,0,1 -050,01,103,Alabama,Morgan County,8,12,7521,3632,3889,3266,3427,277,353,46,32,10,34,1,1,32,42,3557,3837,3200,3381,273,349,42,32,10,34,0,1,32,40,75,52,66,46,4,4,4,0,0,0,1,0,0,2 -050,01,103,Alabama,Morgan County,8,13,5956,2829,3127,2559,2827,200,231,22,27,17,15,1,0,30,27,2802,3105,2535,2808,199,230,21,26,17,15,1,0,29,26,27,22,24,19,1,1,1,1,0,0,0,0,1,1 -050,01,103,Alabama,Morgan County,8,14,4783,2265,2518,2101,2316,136,168,8,12,6,4,0,0,14,18,2243,2494,2081,2295,136,167,6,10,6,4,0,0,14,18,22,24,20,21,0,1,2,2,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,8,15,3902,1726,2176,1605,1994,94,154,6,4,4,8,0,0,17,16,1710,2156,1590,1975,94,154,6,4,4,8,0,0,16,15,16,20,15,19,0,0,0,0,0,0,0,0,1,1 -050,01,103,Alabama,Morgan County,8,16,3070,1277,1793,1189,1654,66,113,9,6,1,5,0,0,12,15,1263,1784,1178,1646,65,113,7,6,1,4,0,0,12,15,14,9,11,8,1,0,2,0,0,1,0,0,0,0 -050,01,103,Alabama,Morgan County,8,17,2044,762,1282,717,1173,39,90,2,4,0,2,0,0,4,13,756,1275,711,1166,39,90,2,4,0,2,0,0,4,13,6,7,6,7,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,8,18,1581,473,1108,423,1009,42,86,3,2,1,2,0,0,4,9,471,1101,421,1002,42,86,3,2,1,2,0,0,4,9,2,7,2,7,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,8,99,115491,56679,58812,48534,49912,6411,7138,588,508,320,361,71,46,755,847,52927,55941,45213,47357,6251,7022,450,404,295,344,30,21,688,793,3752,2871,3321,2555,160,116,138,104,25,17,41,25,67,54 -050,01,103,Alabama,Morgan County,9,0,1455,749,706,610,558,85,96,6,4,3,4,0,1,45,43,591,582,464,444,83,95,3,1,2,3,0,1,39,38,158,124,146,114,2,1,3,3,1,1,0,0,6,5 -050,01,103,Alabama,Morgan County,9,1,6039,3117,2922,2556,2362,415,417,26,26,20,21,12,9,88,87,2634,2493,2120,1979,395,400,15,14,17,16,8,4,79,80,483,429,436,383,20,17,11,12,3,5,4,5,9,7 -050,01,103,Alabama,Morgan County,9,2,7588,3750,3838,3076,3075,502,554,36,42,27,22,11,5,98,140,3397,3458,2771,2740,489,540,24,24,24,20,4,3,85,131,353,380,305,335,13,14,12,18,3,2,7,2,13,9 -050,01,103,Alabama,Morgan County,9,3,8138,4127,4011,3353,3206,605,618,48,48,26,28,2,9,93,102,3802,3721,3065,2956,595,601,32,40,22,27,0,4,88,93,325,290,288,250,10,17,16,8,4,1,2,5,5,9 -050,01,103,Alabama,Morgan County,9,4,8034,4157,3877,3383,3135,624,602,47,42,21,15,7,3,75,80,3831,3612,3100,2903,609,590,35,32,17,15,2,0,68,72,326,265,283,232,15,12,12,10,4,0,5,3,7,8 -050,01,103,Alabama,Morgan County,9,5,6629,3489,3140,2840,2566,517,474,53,30,24,17,8,4,47,49,3004,2846,2413,2302,497,459,33,20,22,17,2,2,37,46,485,294,427,264,20,15,20,10,2,0,6,2,10,3 -050,01,103,Alabama,Morgan County,9,6,7362,3718,3644,3077,2957,513,573,61,36,27,26,13,6,27,46,3182,3311,2608,2663,486,563,38,19,24,25,4,1,22,40,536,333,469,294,27,10,23,17,3,1,9,5,5,6 -050,01,103,Alabama,Morgan County,9,7,7219,3611,3608,3026,2941,483,551,35,38,30,38,6,4,31,36,3153,3228,2609,2591,464,541,22,24,29,37,5,1,24,34,458,380,417,350,19,10,13,14,1,1,1,3,7,2 -050,01,103,Alabama,Morgan County,9,8,8025,4088,3937,3452,3283,502,547,49,34,34,25,7,7,44,41,3714,3726,3117,3099,485,535,37,27,33,23,3,5,39,37,374,211,335,184,17,12,12,7,1,2,4,2,5,4 -050,01,103,Alabama,Morgan County,9,9,8918,4340,4578,3745,3869,476,577,46,44,21,54,5,1,47,33,4145,4409,3582,3713,459,573,36,39,20,52,4,1,44,31,195,169,163,156,17,4,10,5,1,2,1,0,3,2 -050,01,103,Alabama,Morgan County,9,10,8991,4526,4465,3944,3811,452,507,57,45,20,38,0,0,53,64,4382,4359,3819,3721,440,500,52,43,20,35,0,0,51,60,144,106,125,90,12,7,5,2,0,3,0,0,2,4 -050,01,103,Alabama,Morgan County,9,11,8383,4172,4211,3599,3638,455,456,48,44,27,23,1,2,42,48,4070,4106,3507,3543,448,454,46,40,27,22,0,1,42,46,102,105,92,95,7,2,2,4,0,1,1,1,0,2 -050,01,103,Alabama,Morgan County,9,12,7534,3634,3900,3260,3391,281,392,46,32,12,36,1,1,34,48,3532,3841,3166,3338,278,389,42,31,12,36,0,1,34,46,102,59,94,53,3,3,4,1,0,0,1,0,0,2 -050,01,103,Alabama,Morgan County,9,13,6433,3025,3408,2747,3090,210,240,26,32,16,19,1,0,25,27,2993,3382,2720,3067,207,239,25,31,16,19,1,0,24,26,32,26,27,23,3,1,1,1,0,0,0,0,1,1 -050,01,103,Alabama,Morgan County,9,14,5018,2383,2635,2207,2415,142,179,10,17,6,6,0,0,18,18,2357,2616,2185,2399,142,178,8,15,6,6,0,0,16,18,26,19,22,16,0,1,2,2,0,0,0,0,2,0 -050,01,103,Alabama,Morgan County,9,15,3842,1717,2125,1599,1957,91,139,6,4,5,7,0,0,16,18,1694,2102,1577,1937,91,138,6,4,5,7,0,0,15,16,23,23,22,20,0,1,0,0,0,0,0,0,1,2 -050,01,103,Alabama,Morgan County,9,16,3086,1277,1809,1179,1659,74,122,8,6,2,7,0,0,14,15,1266,1801,1170,1652,73,122,7,6,2,6,0,0,14,15,11,8,9,7,1,0,1,0,0,1,0,0,0,0 -050,01,103,Alabama,Morgan County,9,17,2075,797,1278,754,1179,33,81,2,4,1,1,0,0,7,13,792,1269,749,1170,33,81,2,4,1,1,0,0,7,13,5,9,5,9,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,9,18,1628,482,1146,433,1049,39,85,5,2,1,2,0,0,4,8,479,1135,431,1038,39,85,4,2,1,2,0,0,4,8,3,11,2,11,0,0,1,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,9,99,116397,57159,59238,48840,50141,6499,7210,615,530,323,389,74,52,808,916,53018,55997,45173,47255,6313,7083,467,416,300,369,33,24,732,850,4141,3241,3667,2886,186,127,148,114,23,20,41,28,76,66 -050,01,103,Alabama,Morgan County,10,0,1481,751,730,605,579,89,94,7,3,3,3,0,1,47,50,579,591,446,452,87,93,3,0,2,2,0,1,41,43,172,139,159,127,2,1,4,3,1,1,0,0,6,7 -050,01,103,Alabama,Morgan County,10,1,6076,3101,2975,2511,2381,404,433,35,29,16,21,13,7,122,104,2609,2492,2073,1950,380,415,18,12,16,19,9,2,113,94,492,483,438,431,24,18,17,17,0,2,4,5,9,10 -050,01,103,Alabama,Morgan County,10,2,7757,3883,3874,3189,3077,507,593,38,47,34,28,15,5,100,124,3429,3456,2787,2710,493,577,24,26,31,25,7,2,87,116,454,418,402,367,14,16,14,21,3,3,8,3,13,8 -050,01,103,Alabama,Morgan County,10,3,8059,4077,3982,3275,3208,628,580,55,37,23,24,3,10,93,123,3752,3661,2990,2932,622,562,35,28,18,23,0,5,87,111,325,321,285,276,6,18,20,9,5,1,3,5,6,12 -050,01,103,Alabama,Morgan County,10,4,8115,4163,3952,3357,3166,645,636,49,52,20,12,7,5,85,81,3803,3654,3046,2907,629,623,35,41,15,12,2,0,76,71,360,298,311,259,16,13,14,11,5,0,5,5,9,10 -050,01,103,Alabama,Morgan County,10,5,6701,3525,3176,2884,2573,515,488,50,37,25,18,10,5,41,55,3024,2874,2444,2304,493,476,30,25,23,17,3,1,31,51,501,302,440,269,22,12,20,12,2,1,7,4,10,4 -050,01,103,Alabama,Morgan County,10,6,7466,3739,3727,3089,3056,516,553,60,46,27,21,15,5,32,46,3178,3329,2597,2700,490,543,34,28,24,20,7,1,26,37,561,398,492,356,26,10,26,18,3,1,8,4,6,9 -050,01,103,Alabama,Morgan County,10,7,7218,3664,3554,3048,2865,498,569,39,41,40,35,5,5,34,39,3145,3213,2579,2562,475,558,24,24,39,33,5,0,23,36,519,341,469,303,23,11,15,17,1,2,0,5,11,3 -050,01,103,Alabama,Morgan County,10,8,8083,4085,3998,3426,3303,514,568,60,43,33,30,7,6,45,48,3689,3751,3077,3089,495,552,43,35,32,28,3,4,39,43,396,247,349,214,19,16,17,8,1,2,4,2,6,5 -050,01,103,Alabama,Morgan County,10,9,8643,4236,4407,3630,3719,485,549,42,53,22,54,6,3,51,29,4002,4236,3433,3564,464,544,31,46,20,52,5,3,49,27,234,171,197,155,21,5,11,7,2,2,1,0,2,2 -050,01,103,Alabama,Morgan County,10,10,9051,4559,4492,3961,3793,477,540,53,58,18,36,0,0,50,65,4383,4380,3807,3698,461,533,49,56,18,31,0,0,48,62,176,112,154,95,16,7,4,2,0,5,0,0,2,3 -050,01,103,Alabama,Morgan County,10,11,8597,4235,4362,3686,3767,430,466,47,52,23,29,1,2,48,46,4128,4236,3592,3652,421,464,44,47,23,28,0,1,48,44,107,126,94,115,9,2,3,5,0,1,1,1,0,2 -050,01,103,Alabama,Morgan County,10,12,7635,3696,3939,3257,3416,347,413,43,35,17,29,1,1,31,45,3590,3868,3161,3350,343,410,38,34,17,29,0,1,31,44,106,71,96,66,4,3,5,1,0,0,1,0,0,1 -050,01,103,Alabama,Morgan County,10,13,6645,3128,3517,2843,3177,214,253,28,32,17,21,1,0,25,34,3090,3489,2808,3151,212,252,28,32,17,21,1,0,24,33,38,28,35,26,2,1,0,0,0,0,0,0,1,1 -050,01,103,Alabama,Morgan County,10,14,5210,2492,2718,2306,2494,152,180,13,16,8,5,0,0,13,23,2466,2697,2283,2475,152,179,10,15,8,5,0,0,13,23,26,21,23,19,0,1,3,1,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,10,15,3995,1770,2225,1659,2048,82,150,6,3,4,8,0,0,19,16,1741,2205,1631,2030,82,149,6,3,4,8,0,0,18,15,29,20,28,18,0,1,0,0,0,0,0,0,1,1 -050,01,103,Alabama,Morgan County,10,16,3145,1330,1815,1227,1649,81,133,7,7,2,8,0,0,13,18,1313,1807,1212,1642,80,133,6,7,2,7,0,0,13,18,17,8,15,7,1,0,1,0,0,1,0,0,0,0 -050,01,103,Alabama,Morgan County,10,17,2155,851,1304,811,1217,34,66,2,5,1,2,0,0,3,14,843,1297,803,1210,34,66,2,5,1,2,0,0,3,14,8,7,8,7,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,10,18,1662,486,1176,438,1075,38,87,5,4,1,2,0,0,4,8,482,1165,435,1065,38,87,4,3,1,2,0,0,4,8,4,11,3,10,0,0,1,1,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,10,99,117694,57771,59923,49202,50563,6656,7351,639,600,334,386,84,55,856,968,53246,56401,45204,47443,6451,7216,464,467,311,364,42,21,774,890,4525,3522,3998,3120,205,135,175,133,23,22,42,34,82,78 -050,01,103,Alabama,Morgan County,11,0,1434,742,692,581,543,99,95,11,5,5,4,0,1,46,44,581,565,438,430,96,93,4,0,4,3,0,1,39,38,161,127,143,113,3,2,7,5,1,1,0,0,7,6 -050,01,103,Alabama,Morgan County,11,1,6134,3089,3045,2481,2416,423,438,38,31,23,26,11,10,113,124,2579,2498,2028,1929,403,419,18,11,20,20,7,5,103,114,510,547,453,487,20,19,20,20,3,6,4,5,10,10 -050,01,103,Alabama,Morgan County,11,2,7824,3956,3868,3224,3071,534,588,41,47,31,22,16,5,110,135,3430,3414,2753,2673,520,572,26,23,27,20,8,2,96,124,526,454,471,398,14,16,15,24,4,2,8,3,14,11 -050,01,103,Alabama,Morgan County,11,3,8101,4100,4001,3308,3207,590,588,63,46,31,26,4,12,104,122,3750,3656,3003,2909,581,571,43,34,24,25,1,6,98,111,350,345,305,298,9,17,20,12,7,1,3,6,6,11 -050,01,103,Alabama,Morgan County,11,4,8124,4163,3961,3351,3152,633,646,60,60,21,12,10,5,88,86,3800,3646,3048,2878,613,633,44,47,15,12,3,0,77,76,363,315,303,274,20,13,16,13,6,0,7,5,11,10 -050,01,103,Alabama,Morgan County,11,5,6894,3592,3302,2919,2662,540,529,52,32,19,19,9,6,53,54,3058,2968,2449,2362,519,518,30,18,17,18,3,2,40,50,534,334,470,300,21,11,22,14,2,1,6,4,13,4 -050,01,103,Alabama,Morgan County,11,6,7444,3800,3644,3120,2986,546,528,64,49,26,31,11,5,33,45,3189,3235,2588,2625,516,515,34,28,22,30,3,1,26,36,611,409,532,361,30,13,30,21,4,1,8,4,7,9 -050,01,103,Alabama,Morgan County,11,7,7494,3774,3720,3136,3001,525,587,45,51,21,33,5,6,42,42,3200,3290,2621,2613,495,574,29,32,20,31,5,1,30,39,574,430,515,388,30,13,16,19,1,2,0,5,12,3 -050,01,103,Alabama,Morgan County,11,8,7865,4033,3832,3360,3132,541,566,53,39,27,34,10,7,42,54,3619,3573,2997,2908,518,550,37,30,26,32,5,5,36,48,414,259,363,224,23,16,16,9,1,2,5,2,6,6 -050,01,103,Alabama,Morgan County,11,9,8542,4215,4327,3589,3662,507,543,41,46,19,38,4,3,55,35,3938,4140,3352,3493,485,537,29,38,18,36,3,3,51,33,277,187,237,169,22,6,12,8,1,2,1,0,4,2 -050,01,103,Alabama,Morgan County,11,10,9212,4659,4553,4015,3865,508,538,60,46,23,42,0,0,53,62,4473,4428,3858,3756,491,531,50,44,23,39,0,0,51,58,186,125,157,109,17,7,10,2,0,3,0,0,2,4 -050,01,103,Alabama,Morgan County,11,11,8701,4274,4427,3704,3816,445,478,46,53,23,32,1,1,55,47,4167,4321,3610,3720,436,476,43,48,23,32,0,0,55,45,107,106,94,96,9,2,3,5,0,0,1,1,0,2 -050,01,103,Alabama,Morgan County,11,12,7728,3747,3981,3303,3444,365,434,40,33,12,28,1,0,26,42,3649,3906,3216,3375,361,431,34,31,12,28,0,0,26,41,98,75,87,69,4,3,6,2,0,0,1,0,0,1 -050,01,103,Alabama,Morgan County,11,13,6865,3212,3653,2904,3275,233,283,26,34,19,25,0,0,30,36,3167,3616,2863,3241,230,282,26,33,19,25,0,0,29,35,45,37,41,34,3,1,0,1,0,0,0,0,1,1 -050,01,103,Alabama,Morgan County,11,14,5380,2577,2803,2390,2562,148,194,16,21,8,6,0,0,15,20,2550,2779,2366,2540,148,193,14,20,8,6,0,0,14,20,27,24,24,22,0,1,2,1,0,0,0,0,1,0 -050,01,103,Alabama,Morgan County,11,15,4122,1852,2270,1719,2080,100,158,6,4,5,8,0,0,22,20,1827,2247,1695,2058,100,157,6,4,5,8,0,0,21,20,25,23,24,22,0,1,0,0,0,0,0,0,1,0 -050,01,103,Alabama,Morgan County,11,16,3125,1327,1798,1233,1652,72,116,8,7,2,8,0,0,12,15,1312,1787,1220,1642,71,116,7,7,2,7,0,0,12,15,15,11,13,10,1,0,1,0,0,1,0,0,0,0 -050,01,103,Alabama,Morgan County,11,17,2222,882,1340,844,1244,29,75,3,6,1,3,0,0,5,12,875,1332,837,1236,29,75,3,6,1,3,0,0,5,12,7,8,7,8,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,11,18,1743,517,1226,466,1120,40,87,6,5,1,2,0,0,4,12,515,1218,465,1113,40,87,5,4,1,2,0,0,4,12,2,8,1,7,0,0,1,1,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,11,99,118954,58511,60443,49647,50890,6878,7471,679,615,317,399,82,61,908,1007,53679,56619,45407,47501,6652,7330,482,458,287,377,38,26,813,927,4832,3824,4240,3389,226,141,197,157,30,22,44,35,95,80 -050,01,103,Alabama,Morgan County,12,0,1405,717,688,556,535,101,99,13,5,4,5,0,1,43,43,569,568,430,434,95,95,5,0,3,3,0,1,36,35,148,120,126,101,6,4,8,5,1,2,0,0,7,8 -050,01,103,Alabama,Morgan County,12,1,6082,3084,2998,2454,2346,416,451,48,38,24,25,13,10,129,128,2542,2476,1975,1885,398,434,22,13,20,21,9,5,118,118,542,522,479,461,18,17,26,25,4,4,4,5,11,10 -050,01,103,Alabama,Morgan County,12,2,7928,4033,3895,3258,3096,557,566,45,52,30,24,17,7,126,150,3477,3382,2766,2646,538,548,28,26,26,20,8,3,111,139,556,513,492,450,19,18,17,26,4,4,9,4,15,11 -050,01,103,Alabama,Morgan County,12,3,8177,4146,4031,3344,3201,591,613,63,51,29,24,4,11,115,131,3743,3658,2989,2879,580,593,41,39,23,23,1,5,109,119,403,373,355,322,11,20,22,12,6,1,3,6,6,12 -050,01,103,Alabama,Morgan County,12,4,8091,4129,3962,3304,3139,626,649,57,55,25,16,9,5,108,98,3731,3636,2970,2855,604,635,40,42,19,16,2,0,96,88,398,326,334,284,22,14,17,13,6,0,7,5,12,10 -050,01,103,Alabama,Morgan County,12,5,6944,3618,3326,2918,2682,564,524,47,34,22,18,9,6,58,62,3058,2960,2426,2356,539,508,25,20,20,17,3,2,45,57,560,366,492,326,25,16,22,14,2,1,6,4,13,5 -050,01,103,Alabama,Morgan County,12,6,7501,3848,3653,3180,2993,528,525,62,48,31,31,15,6,32,50,3170,3201,2585,2594,495,510,31,26,27,30,7,1,25,40,678,452,595,399,33,15,31,22,4,1,8,5,7,10 -050,01,103,Alabama,Morgan County,12,7,7560,3816,3744,3163,3036,536,569,46,48,25,37,4,6,42,48,3233,3333,2638,2667,507,556,30,29,24,35,4,1,30,45,583,411,525,369,29,13,16,19,1,2,0,5,12,3 -050,01,103,Alabama,Morgan County,12,8,7799,4034,3765,3361,3064,537,569,49,39,27,36,10,9,50,48,3600,3476,2980,2811,516,553,31,30,26,34,5,6,42,42,434,289,381,253,21,16,18,9,1,2,5,3,8,6 -050,01,103,Alabama,Morgan County,12,9,8276,4088,4188,3472,3522,496,549,46,49,19,30,4,3,51,35,3793,3994,3219,3347,473,543,32,40,17,28,3,3,49,33,295,194,253,175,23,6,14,9,2,2,1,0,2,2 -050,01,103,Alabama,Morgan County,12,10,9200,4622,4578,3971,3870,511,552,60,55,24,36,0,0,56,65,4413,4439,3790,3748,495,545,51,52,24,33,0,0,53,61,209,139,181,122,16,7,9,3,0,3,0,0,3,4 -050,01,103,Alabama,Morgan County,12,11,8785,4366,4419,3801,3806,442,492,45,40,23,33,1,1,54,47,4251,4320,3701,3718,432,490,42,35,22,32,0,0,54,45,115,99,100,88,10,2,3,5,1,1,1,1,0,2 -050,01,103,Alabama,Morgan County,12,12,7829,3815,4014,3316,3490,401,426,45,33,16,23,1,1,36,41,3719,3930,3231,3412,397,423,39,31,16,23,0,1,36,40,96,84,85,78,4,3,6,2,0,0,1,0,0,1 -050,01,103,Alabama,Morgan County,12,13,7042,3274,3768,2946,3353,246,314,28,30,21,27,1,0,32,44,3222,3727,2899,3315,243,313,27,29,21,27,1,0,31,43,52,41,47,38,3,1,1,1,0,0,0,0,1,1 -050,01,103,Alabama,Morgan County,12,14,5503,2617,2886,2423,2625,153,200,16,25,8,9,0,0,17,27,2587,2863,2396,2605,153,199,14,23,8,9,0,0,16,27,30,23,27,20,0,1,2,2,0,0,0,0,1,0 -050,01,103,Alabama,Morgan County,12,15,4172,1871,2301,1743,2113,94,161,6,4,6,8,0,0,22,15,1846,2276,1719,2090,94,160,6,4,6,8,0,0,21,14,25,25,24,23,0,1,0,0,0,0,0,0,1,1 -050,01,103,Alabama,Morgan County,12,16,3173,1373,1800,1275,1649,75,120,8,7,2,8,0,0,13,16,1355,1790,1260,1640,74,120,6,7,2,7,0,0,13,16,18,10,15,9,1,0,2,0,0,1,0,0,0,0 -050,01,103,Alabama,Morgan County,12,17,2254,908,1346,867,1244,32,81,3,6,1,3,0,0,5,12,901,1337,860,1235,32,81,3,6,1,3,0,0,5,12,7,9,7,9,0,0,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,12,18,1769,527,1242,476,1136,40,87,6,5,1,2,0,0,4,12,524,1234,474,1129,40,87,5,4,1,2,0,0,4,12,3,8,2,7,0,0,1,1,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,12,99,119490,58886,60604,49828,50900,6946,7547,693,624,338,395,88,66,993,1072,53734,56600,45308,47366,6705,7393,478,456,306,371,43,28,894,986,5152,4004,4520,3534,241,154,215,168,32,24,45,38,99,86 -050,01,103,Alabama,Morgan County,13,0,1403,717,686,557,535,101,99,13,5,2,6,1,2,43,39,570,570,430,434,95,96,5,0,2,4,1,2,37,34,147,116,127,101,6,3,8,5,0,2,0,0,6,5 -050,01,103,Alabama,Morgan County,13,1,6064,3078,2986,2449,2339,419,453,47,36,23,25,12,10,128,123,2535,2467,1968,1876,399,435,21,13,19,21,7,4,121,118,543,519,481,463,20,18,26,23,4,4,5,6,7,5 -050,01,103,Alabama,Morgan County,13,2,7918,4027,3891,3257,3097,556,566,43,50,31,26,14,5,126,147,3473,3377,2761,2644,538,549,27,27,27,21,5,0,115,136,554,514,496,453,18,17,16,23,4,5,9,5,11,11 -050,01,103,Alabama,Morgan County,13,3,8170,4140,4030,3341,3203,592,611,60,52,30,25,3,10,114,129,3734,3661,2983,2875,580,594,40,41,23,24,1,5,107,122,406,369,358,328,12,17,20,11,7,1,2,5,7,7 -050,01,103,Alabama,Morgan County,13,4,8049,4107,3942,3285,3123,624,647,53,50,25,15,10,6,110,101,3710,3616,2948,2837,603,632,39,39,19,15,2,2,99,91,397,326,337,286,21,15,14,11,6,0,8,4,11,10 -050,01,103,Alabama,Morgan County,13,5,6976,3633,3343,2929,2690,567,531,50,35,22,17,11,7,54,63,3070,2970,2433,2361,542,514,27,21,20,16,4,1,44,57,563,373,496,329,25,17,23,14,2,1,7,6,10,6 -050,01,103,Alabama,Morgan County,13,6,7523,3867,3656,3195,2997,531,526,65,50,29,30,14,5,33,48,3185,3206,2598,2598,498,511,32,26,25,29,5,0,27,42,682,450,597,399,33,15,33,24,4,1,9,5,6,6 -050,01,103,Alabama,Morgan County,13,7,7606,3845,3761,3182,3053,544,572,47,49,24,38,4,4,44,45,3257,3348,2655,2684,514,561,31,29,22,34,3,0,32,40,588,413,527,369,30,11,16,20,2,4,1,4,12,5 -050,01,103,Alabama,Morgan County,13,8,7740,4001,3739,3335,3037,535,567,47,43,27,34,11,8,46,50,3569,3450,2954,2785,514,551,31,31,26,34,5,5,39,44,432,289,381,252,21,16,16,12,1,0,6,3,7,6 -050,01,103,Alabama,Morgan County,13,9,8271,4082,4189,3467,3517,496,549,45,48,18,31,5,5,51,39,3784,3992,3211,3341,473,543,31,40,17,28,3,4,49,36,298,197,256,176,23,6,14,8,1,3,2,1,2,3 -050,01,103,Alabama,Morgan County,13,10,9154,4600,4554,3951,3846,514,552,60,53,24,36,2,1,49,66,4387,4419,3769,3726,496,545,50,52,24,33,1,1,47,62,213,135,182,120,18,7,10,1,0,3,1,0,2,4 -050,01,103,Alabama,Morgan County,13,11,8799,4375,4424,3806,3808,444,494,45,42,22,32,4,3,54,45,4255,4326,3704,3721,434,492,42,37,21,32,1,1,53,43,120,98,102,87,10,2,3,5,1,0,3,2,1,2 -050,01,103,Alabama,Morgan County,13,12,7877,3839,4038,3336,3506,405,429,46,34,16,26,1,2,35,41,3741,3953,3250,3429,400,425,40,32,16,25,0,2,35,40,98,85,86,77,5,4,6,2,0,1,1,0,0,1 -050,01,103,Alabama,Morgan County,13,13,7121,3305,3816,2972,3385,251,321,28,30,21,29,0,0,33,51,3252,3772,2925,3346,248,319,26,30,21,28,0,0,32,49,53,44,47,39,3,2,2,0,0,1,0,0,1,2 -050,01,103,Alabama,Morgan County,13,14,5540,2636,2904,2439,2639,155,202,13,24,8,8,0,0,21,31,2607,2882,2412,2619,154,201,13,23,8,8,0,0,20,31,29,22,27,20,1,1,0,1,0,0,0,0,1,0 -050,01,103,Alabama,Morgan County,13,15,4194,1879,2315,1752,2122,94,162,7,2,6,8,0,2,20,19,1855,2291,1729,2100,94,160,7,2,6,8,0,2,19,19,24,24,23,22,0,2,0,0,0,0,0,0,1,0 -050,01,103,Alabama,Morgan County,13,16,3167,1371,1796,1275,1643,77,122,6,6,1,7,0,0,12,18,1353,1786,1259,1636,76,121,5,5,1,6,0,0,12,18,18,10,16,7,1,1,1,1,0,1,0,0,0,0 -050,01,103,Alabama,Morgan County,13,17,2254,913,1341,870,1237,33,81,4,5,3,2,0,0,3,16,905,1333,863,1231,33,81,3,5,3,1,0,0,3,15,8,8,7,6,0,0,1,0,0,1,0,0,0,1 -050,01,103,Alabama,Morgan County,13,18,1800,544,1256,481,1140,41,87,7,5,3,3,1,2,11,19,537,1244,479,1133,40,87,6,4,2,2,1,1,9,17,7,12,2,7,1,0,1,1,1,1,0,1,2,2 -050,01,103,Alabama,Morgan County,13,99,119626,58959,60667,49879,50917,6979,7571,686,619,335,398,93,72,987,1090,53779,56663,45331,47376,6731,7417,476,457,302,369,39,30,900,1014,5180,4004,4548,3541,248,154,210,162,33,29,54,42,87,76 -050,01,105,Alabama,Perry County,1,0,164,84,80,11,18,72,61,0,0,0,0,0,0,1,1,83,80,11,18,71,61,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,1,738,355,383,67,76,283,301,0,0,0,0,0,1,5,5,350,376,65,76,280,297,0,0,0,0,0,0,5,3,5,7,2,0,3,4,0,0,0,0,0,1,0,2 -050,01,105,Alabama,Perry County,1,2,981,479,502,75,99,401,401,0,0,0,0,0,0,3,2,478,498,75,98,401,398,0,0,0,0,0,0,2,2,1,4,0,1,0,3,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,1,3,988,464,524,77,98,387,425,0,0,0,0,0,0,0,1,463,517,76,96,387,420,0,0,0,0,0,0,0,1,1,7,1,2,0,5,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,4,1169,616,553,208,163,398,389,2,0,3,0,1,0,4,1,603,553,200,163,395,389,1,0,3,0,1,0,3,1,13,0,8,0,3,0,1,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,1,5,821,366,455,104,131,259,320,0,0,0,0,0,0,3,4,362,449,101,130,259,317,0,0,0,0,0,0,2,2,4,6,3,1,0,3,0,0,0,0,0,0,1,2 -050,01,105,Alabama,Perry County,1,6,673,254,419,75,92,178,324,0,1,0,0,0,0,1,2,253,415,74,91,178,322,0,1,0,0,0,0,1,1,1,4,1,1,0,2,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,1,7,615,291,324,98,76,191,247,0,1,0,0,0,0,2,0,289,322,97,76,191,245,0,1,0,0,0,0,1,0,2,2,1,0,0,2,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,1,8,749,331,418,105,89,221,327,0,0,0,0,1,0,4,2,328,415,103,88,220,326,0,0,0,0,1,0,4,1,3,3,2,1,1,1,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,1,9,767,377,390,129,112,245,271,0,2,0,0,0,0,3,5,375,386,129,112,243,269,0,2,0,0,0,0,3,3,2,4,0,0,2,2,0,0,0,0,0,0,0,2 -050,01,105,Alabama,Perry County,1,10,682,303,379,117,107,184,272,0,0,0,0,0,0,2,0,297,376,117,107,180,269,0,0,0,0,0,0,0,0,6,3,0,0,4,3,0,0,0,0,0,0,2,0 -050,01,105,Alabama,Perry County,1,11,641,304,337,118,122,185,214,0,0,0,0,0,0,1,1,302,336,118,122,184,213,0,0,0,0,0,0,0,1,2,1,0,0,1,1,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,1,12,562,249,313,108,138,140,174,0,0,0,0,0,0,1,1,247,312,107,138,140,173,0,0,0,0,0,0,0,1,2,1,1,0,0,1,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,1,13,564,258,306,119,121,138,184,0,0,0,0,0,0,1,1,258,301,119,119,138,181,0,0,0,0,0,0,1,1,0,5,0,2,0,3,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,14,484,240,244,116,116,122,127,0,1,1,0,0,0,1,0,237,240,116,116,119,123,0,1,1,0,0,0,1,0,3,4,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,15,437,180,257,88,99,92,158,0,0,0,0,0,0,0,0,178,256,87,99,91,157,0,0,0,0,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,16,311,108,203,50,103,55,100,1,0,0,0,0,0,2,0,106,203,50,103,53,100,1,0,0,0,0,0,2,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,17,247,80,167,40,83,40,83,0,0,0,0,0,0,0,1,80,167,40,83,40,83,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,18,283,89,194,38,84,50,109,1,1,0,0,0,0,0,0,89,194,38,84,50,109,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,99,11876,5428,6448,1743,1927,3641,4487,4,6,4,0,2,1,34,27,5378,6396,1723,1919,3620,4452,3,6,4,0,2,0,26,19,50,52,20,8,21,35,1,0,0,0,0,1,8,8 -050,01,105,Alabama,Perry County,2,0,164,84,80,11,18,72,61,0,0,0,0,0,0,1,1,83,80,11,18,71,61,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,1,728,350,378,67,75,278,297,0,0,0,0,0,1,5,5,345,371,65,75,275,293,0,0,0,0,0,0,5,3,5,7,2,0,3,4,0,0,0,0,0,1,0,2 -050,01,105,Alabama,Perry County,2,2,968,472,496,74,96,395,398,0,0,0,0,0,0,3,2,471,492,74,95,395,395,0,0,0,0,0,0,2,2,1,4,0,1,0,3,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,2,3,985,463,522,77,98,386,423,0,0,0,0,0,0,0,1,462,515,76,96,386,418,0,0,0,0,0,0,0,1,1,7,1,2,0,5,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,4,1164,618,546,203,160,405,385,2,0,3,0,1,0,4,1,605,546,195,160,402,385,1,0,3,0,1,0,3,1,13,0,8,0,3,0,1,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,2,5,820,368,452,102,129,263,319,0,0,0,0,0,0,3,4,364,446,99,128,263,316,0,0,0,0,0,0,2,2,4,6,3,1,0,3,0,0,0,0,0,0,1,2 -050,01,105,Alabama,Perry County,2,6,659,247,412,73,90,173,319,0,1,0,0,0,0,1,2,246,408,72,89,173,317,0,1,0,0,0,0,1,1,1,4,1,1,0,2,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,2,7,609,288,321,96,76,190,244,0,1,0,0,0,0,2,0,286,319,95,76,190,242,0,1,0,0,0,0,1,0,2,2,1,0,0,2,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,2,8,738,326,412,102,88,219,322,0,0,0,0,1,0,4,2,323,409,100,87,218,321,0,0,0,0,1,0,4,1,3,3,2,1,1,1,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,2,9,763,375,388,127,111,245,270,0,2,0,0,0,0,3,5,373,384,127,111,243,268,0,2,0,0,0,0,3,3,2,4,0,0,2,2,0,0,0,0,0,0,0,2 -050,01,105,Alabama,Perry County,2,10,685,306,379,118,107,186,272,0,0,0,0,0,0,2,0,300,376,118,107,182,269,0,0,0,0,0,0,0,0,6,3,0,0,4,3,0,0,0,0,0,0,2,0 -050,01,105,Alabama,Perry County,2,11,643,305,338,118,122,186,215,0,0,0,0,0,0,1,1,303,337,118,122,185,214,0,0,0,0,0,0,0,1,2,1,0,0,1,1,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,2,12,562,249,313,107,138,141,174,0,0,0,0,0,0,1,1,247,312,106,138,141,173,0,0,0,0,0,0,0,1,2,1,1,0,0,1,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,2,13,563,258,305,119,121,138,183,0,0,0,0,0,0,1,1,258,300,119,119,138,180,0,0,0,0,0,0,1,1,0,5,0,2,0,3,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,14,481,239,242,116,116,121,125,0,1,1,0,0,0,1,0,236,238,116,116,118,121,0,1,1,0,0,0,1,0,3,4,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,15,437,180,257,88,99,92,158,0,0,0,0,0,0,0,0,178,256,87,99,91,157,0,0,0,0,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,16,311,108,203,50,103,55,100,1,0,0,0,0,0,2,0,106,203,50,103,53,100,1,0,0,0,0,0,2,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,17,248,80,168,40,83,40,84,0,0,0,0,0,0,0,1,80,168,40,83,40,84,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,18,281,88,193,37,83,50,109,1,1,0,0,0,0,0,0,88,193,37,83,50,109,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,99,11809,5404,6405,1725,1913,3635,4458,4,6,4,0,2,1,34,27,5354,6353,1705,1905,3614,4423,3,6,4,0,2,0,26,19,50,52,20,8,21,35,1,0,0,0,0,1,8,8 -050,01,105,Alabama,Perry County,3,0,207,102,105,15,11,86,93,0,0,0,0,0,0,1,1,101,105,15,11,85,93,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,1,702,345,357,61,72,279,279,0,0,0,0,0,1,5,5,339,350,58,72,276,275,0,0,0,0,0,0,5,3,6,7,3,0,3,4,0,0,0,0,0,1,0,2 -050,01,105,Alabama,Perry County,3,2,894,447,447,73,76,371,369,0,0,0,0,0,0,3,2,446,443,73,75,371,366,0,0,0,0,0,0,2,2,1,4,0,1,0,3,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,3,3,948,432,516,69,90,363,425,0,0,0,0,0,0,0,1,431,509,68,88,363,420,0,0,0,0,0,0,0,1,1,7,1,2,0,5,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,4,1121,609,512,206,147,392,364,2,0,4,0,1,0,4,1,594,512,196,147,389,364,1,0,4,0,1,0,3,1,15,0,10,0,3,0,1,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,3,5,829,358,471,94,132,261,335,0,0,0,0,0,0,3,4,354,464,91,130,261,332,0,0,0,0,0,0,2,2,4,7,3,2,0,3,0,0,0,0,0,0,1,2 -050,01,105,Alabama,Perry County,3,6,631,263,368,77,84,185,281,0,1,0,0,0,0,1,2,262,364,76,83,185,279,0,1,0,0,0,0,1,1,1,4,1,1,0,2,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,3,7,591,258,333,92,84,164,248,0,1,0,0,0,0,2,0,256,331,91,84,164,246,0,1,0,0,0,0,1,0,2,2,1,0,0,2,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,3,8,726,310,416,99,83,206,331,0,0,0,0,1,0,4,2,307,413,97,82,205,330,0,0,0,0,1,0,4,1,3,3,2,1,1,1,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,3,9,756,383,373,122,101,258,265,0,2,0,0,0,0,3,5,381,369,122,101,256,263,0,2,0,0,0,0,3,3,2,4,0,0,2,2,0,0,0,0,0,0,0,2 -050,01,105,Alabama,Perry County,3,10,691,319,372,120,104,195,268,0,0,0,0,0,0,4,0,311,369,120,104,191,265,0,0,0,0,0,0,0,0,8,3,0,0,4,3,0,0,0,0,0,0,4,0 -050,01,105,Alabama,Perry County,3,11,648,297,351,118,116,178,234,0,0,0,0,0,0,1,1,294,350,118,116,176,233,0,0,0,0,0,0,0,1,3,1,0,0,2,1,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,3,12,553,246,307,113,140,132,166,0,0,0,0,0,0,1,1,244,306,112,140,132,165,0,0,0,0,0,0,0,1,2,1,1,0,0,1,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,3,13,579,273,306,105,125,167,180,0,0,0,0,0,0,1,1,273,301,105,123,167,177,0,0,0,0,0,0,1,1,0,5,0,2,0,3,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,14,490,241,249,122,111,117,137,0,1,1,0,0,0,1,0,238,245,122,111,114,133,0,1,1,0,0,0,1,0,3,4,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,15,433,174,259,89,94,85,165,0,0,0,0,0,0,0,0,172,258,88,94,84,164,0,0,0,0,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,16,324,117,207,58,104,57,103,1,0,0,0,0,0,1,0,115,207,58,104,55,103,1,0,0,0,0,0,1,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,17,258,82,176,35,88,47,87,0,0,0,0,0,0,0,1,82,176,35,88,47,87,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,18,264,79,185,36,85,42,99,1,1,0,0,0,0,0,0,79,185,36,85,42,99,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,99,11645,5335,6310,1704,1847,3585,4429,4,6,5,0,2,1,35,27,5279,6257,1681,1838,3563,4394,3,6,5,0,2,0,25,19,56,53,23,9,22,35,1,0,0,0,0,1,10,8 -050,01,105,Alabama,Perry County,4,0,189,112,77,28,12,83,64,0,0,0,0,0,0,1,1,111,77,28,12,82,64,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,1,704,359,345,64,59,290,280,0,0,0,0,0,1,5,5,354,338,62,59,287,276,0,0,0,0,0,0,5,3,5,7,2,0,3,4,0,0,0,0,0,1,0,2 -050,01,105,Alabama,Perry County,4,2,888,417,471,67,76,347,393,0,0,0,0,0,0,3,2,416,467,67,75,347,390,0,0,0,0,0,0,2,2,1,4,0,1,0,3,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,4,3,896,412,484,59,91,353,392,0,0,0,0,0,0,0,1,411,478,58,89,353,388,0,0,0,0,0,0,0,1,1,6,1,2,0,4,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,4,1151,627,524,222,155,395,368,2,0,4,0,1,0,3,1,611,522,210,153,392,368,1,0,4,0,1,0,3,1,16,2,12,2,3,0,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,5,844,368,476,109,142,256,330,0,0,0,0,0,0,3,4,364,469,106,139,256,328,0,0,0,0,0,0,2,2,4,7,3,3,0,2,0,0,0,0,0,0,1,2 -050,01,105,Alabama,Perry County,4,6,613,256,357,66,73,189,281,0,1,0,0,0,0,1,2,255,353,65,72,189,279,0,1,0,0,0,0,1,1,1,4,1,1,0,2,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,4,7,616,276,340,96,86,179,253,0,1,0,0,0,0,1,0,275,338,95,86,179,251,0,1,0,0,0,0,1,0,1,2,1,0,0,2,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,8,668,283,385,96,80,182,303,0,0,0,0,1,0,4,2,280,382,94,79,181,302,0,0,0,0,1,0,4,1,3,3,2,1,1,1,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,4,9,756,356,400,116,108,236,285,0,2,0,0,0,0,4,5,354,397,116,108,235,284,0,2,0,0,0,0,3,3,2,3,0,0,1,1,0,0,0,0,0,0,1,2 -050,01,105,Alabama,Perry County,4,10,674,315,359,119,92,194,267,0,0,0,0,0,0,2,0,309,356,119,92,190,264,0,0,0,0,0,0,0,0,6,3,0,0,4,3,0,0,0,0,0,0,2,0 -050,01,105,Alabama,Perry County,4,11,654,294,360,106,119,187,240,0,0,0,0,0,0,1,1,292,359,106,119,186,239,0,0,0,0,0,0,0,1,2,1,0,0,1,1,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,4,12,569,263,306,122,130,140,175,0,0,0,0,0,0,1,1,261,305,121,130,140,174,0,0,0,0,0,0,0,1,2,1,1,0,0,1,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,4,13,575,265,310,101,133,163,176,0,0,0,0,0,0,1,1,265,306,101,131,163,174,0,0,0,0,0,0,1,1,0,4,0,2,0,2,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,14,519,258,261,134,121,122,139,0,1,1,0,0,0,1,0,256,257,134,121,120,135,0,1,1,0,0,0,1,0,2,4,0,0,2,4,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,15,420,180,240,87,95,93,145,0,0,0,0,0,0,0,0,178,239,86,95,92,144,0,0,0,0,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,16,316,120,196,58,91,60,105,1,0,0,0,0,0,1,0,118,196,58,91,58,105,1,0,0,0,0,0,1,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,17,247,82,165,33,83,49,81,0,0,0,0,0,0,0,1,82,165,33,83,49,81,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,18,250,68,182,34,83,33,98,1,1,0,0,0,0,0,0,68,182,34,83,33,98,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,99,11549,5311,6238,1717,1829,3551,4375,4,6,5,0,2,1,32,27,5260,6186,1693,1817,3532,4344,3,6,5,0,2,0,25,19,51,52,24,12,19,31,1,0,0,0,0,1,7,8 -050,01,105,Alabama,Perry County,5,0,178,84,94,14,12,68,81,0,0,1,0,0,0,1,1,83,94,14,12,67,81,0,0,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,1,686,362,324,79,66,278,251,0,0,0,0,0,2,5,5,356,315,76,64,275,247,0,0,0,0,0,1,5,3,6,9,3,2,3,4,0,0,0,0,0,1,0,2 -050,01,105,Alabama,Perry County,5,2,847,389,458,54,63,332,393,0,0,0,0,0,0,3,2,388,454,54,62,332,390,0,0,0,0,0,0,2,2,1,4,0,1,0,3,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,5,3,911,435,476,73,92,362,383,0,0,0,0,0,0,0,1,434,470,72,90,362,379,0,0,0,0,0,0,0,1,1,6,1,2,0,4,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,4,1053,569,484,184,132,374,351,3,0,4,0,1,0,3,1,554,482,174,130,371,351,2,0,4,0,1,0,2,1,15,2,10,2,3,0,1,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,5,5,819,372,447,105,120,264,323,1,0,0,0,0,0,2,4,367,440,100,117,264,321,1,0,0,0,0,0,2,2,5,7,5,3,0,2,0,0,0,0,0,0,0,2 -050,01,105,Alabama,Perry County,5,6,589,253,336,60,73,192,259,0,1,0,0,0,0,1,3,252,331,59,72,192,257,0,1,0,0,0,0,1,1,1,5,1,1,0,2,0,0,0,0,0,0,0,2 -050,01,105,Alabama,Perry County,5,7,621,258,363,82,80,176,282,0,1,0,0,0,0,0,0,257,361,81,80,176,280,0,1,0,0,0,0,0,0,1,2,1,0,0,2,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,8,626,284,342,99,72,181,268,0,0,0,0,1,0,3,2,281,339,97,71,180,267,0,0,0,0,1,0,3,1,3,3,2,1,1,1,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,5,9,732,329,403,101,101,225,295,0,2,0,0,0,0,3,5,328,400,101,101,224,294,0,2,0,0,0,0,3,3,1,3,0,0,1,1,0,0,0,0,0,0,0,2 -050,01,105,Alabama,Perry County,5,10,714,339,375,117,95,220,280,0,0,0,0,0,0,2,0,333,372,117,95,216,277,0,0,0,0,0,0,0,0,6,3,0,0,4,3,0,0,0,0,0,0,2,0 -050,01,105,Alabama,Perry County,5,11,644,295,349,110,113,185,235,0,0,0,0,0,0,0,1,294,347,110,112,184,234,0,0,0,0,0,0,0,1,1,2,0,1,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,12,594,266,328,109,132,156,195,0,0,0,0,0,0,1,1,264,327,108,132,156,194,0,0,0,0,0,0,0,1,2,1,1,0,0,1,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,5,13,574,271,303,114,138,156,163,0,1,0,0,0,0,1,1,271,300,114,136,156,162,0,1,0,0,0,0,1,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,14,538,251,287,128,122,120,163,1,2,1,0,0,0,1,0,249,283,128,122,118,159,1,2,1,0,0,0,1,0,2,4,0,0,2,4,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,15,408,178,230,86,99,91,131,1,0,0,0,0,0,0,0,176,229,85,99,90,130,1,0,0,0,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,16,324,133,191,67,82,63,109,1,0,0,0,0,0,2,0,131,191,67,82,61,109,1,0,0,0,0,0,2,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,17,230,72,158,35,71,37,86,0,0,0,0,0,0,0,1,72,158,35,71,37,86,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,18,213,54,159,28,72,25,86,1,1,0,0,0,0,0,0,54,159,28,72,25,86,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,99,11301,5194,6107,1645,1735,3505,4334,8,8,6,0,2,2,28,28,5144,6052,1620,1720,3486,4304,7,8,6,0,2,1,23,19,50,55,25,15,19,30,1,0,0,0,0,1,5,9 -050,01,105,Alabama,Perry County,6,0,186,101,85,14,8,85,76,0,0,1,0,0,0,1,1,100,85,14,8,84,76,0,0,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,1,697,363,334,76,59,282,267,0,0,0,0,0,2,5,6,357,324,73,57,279,263,0,0,0,0,0,1,5,3,6,10,3,2,3,4,0,0,0,0,0,1,0,3 -050,01,105,Alabama,Perry County,6,2,808,392,416,62,61,327,353,0,0,0,0,0,0,3,2,391,412,62,60,327,350,0,0,0,0,0,0,2,2,1,4,0,1,0,3,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,6,3,873,420,453,69,88,351,364,0,0,0,0,0,0,0,1,419,447,68,86,351,360,0,0,0,0,0,0,0,1,1,6,1,2,0,4,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,4,1039,541,498,178,130,351,367,3,0,5,0,1,0,3,1,525,496,166,128,349,367,2,0,5,0,1,0,2,1,16,2,12,2,2,0,1,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,6,5,793,355,438,92,120,260,314,1,0,0,0,0,0,2,4,350,431,87,117,260,312,1,0,0,0,0,0,2,2,5,7,5,3,0,2,0,0,0,0,0,0,0,2 -050,01,105,Alabama,Perry County,6,6,584,255,329,59,80,195,245,0,1,0,0,0,0,1,3,254,324,58,79,195,243,0,1,0,0,0,0,1,1,1,5,1,1,0,2,0,0,0,0,0,0,0,2 -050,01,105,Alabama,Perry County,6,7,602,243,359,72,77,171,281,0,1,0,0,0,0,0,0,242,358,71,77,171,280,0,1,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,8,589,281,308,98,74,178,232,0,0,0,0,1,0,4,2,278,304,96,73,177,230,0,0,0,0,1,0,4,1,3,4,2,1,1,2,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,6,9,707,308,399,87,90,216,303,0,2,0,0,0,0,5,4,306,397,87,90,215,302,0,2,0,0,0,0,4,3,2,2,0,0,1,1,0,0,0,0,0,0,1,1 -050,01,105,Alabama,Perry County,6,10,726,363,363,118,103,243,259,0,0,0,0,0,0,2,1,359,360,118,103,240,256,0,0,0,0,0,0,1,1,4,3,0,0,3,3,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,6,11,646,280,366,103,88,176,277,0,0,0,0,0,0,1,1,278,362,103,87,175,274,0,0,0,0,0,0,0,1,2,4,0,1,1,3,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,6,12,651,311,340,122,147,189,192,0,0,0,0,0,0,0,1,310,339,121,147,189,191,0,0,0,0,0,0,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,13,566,269,297,117,131,151,164,0,1,0,0,0,0,1,1,269,294,117,129,151,163,0,1,0,0,0,0,1,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,14,539,245,294,121,123,121,170,1,1,1,0,0,0,1,0,243,292,121,123,119,168,1,1,1,0,0,0,1,0,2,2,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,15,402,191,211,99,93,90,118,1,0,0,0,0,0,1,0,189,210,98,93,89,117,1,0,0,0,0,0,1,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,16,336,129,207,61,94,66,113,1,0,0,0,0,0,1,0,128,206,61,94,65,112,1,0,0,0,0,0,1,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,17,198,64,134,32,59,32,75,0,0,0,0,0,0,0,0,64,134,32,59,32,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,18,211,53,158,29,70,23,87,1,1,0,0,0,0,0,0,53,158,29,70,23,87,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,99,11153,5164,5989,1609,1695,3507,4257,8,7,7,0,2,2,31,28,5115,5933,1582,1680,3491,4226,7,7,7,0,2,1,26,19,49,56,27,15,16,31,1,0,0,0,0,1,5,9 -050,01,105,Alabama,Perry County,7,0,136,66,70,15,9,49,61,0,0,1,0,0,0,1,0,65,69,14,8,49,61,0,0,1,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,1,693,357,336,70,50,286,279,0,0,0,1,0,2,1,4,354,329,68,47,285,277,0,0,0,1,0,1,1,3,3,7,2,3,1,2,0,0,0,0,0,1,0,1 -050,01,105,Alabama,Perry County,7,2,731,342,389,57,52,277,333,0,0,3,1,0,0,5,3,337,386,54,51,276,331,0,0,3,1,0,0,4,3,5,3,3,1,1,2,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,7,3,866,430,436,75,77,355,358,0,0,0,0,0,0,0,1,427,432,73,75,354,356,0,0,0,0,0,0,0,1,3,4,2,2,1,2,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,4,1000,502,498,162,132,332,365,3,0,3,0,0,0,2,1,490,496,151,130,332,365,2,0,3,0,0,0,2,1,12,2,11,2,0,0,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,5,744,353,391,94,118,255,271,1,0,2,0,0,0,1,2,346,385,88,115,254,269,1,0,2,0,0,0,1,1,7,6,6,3,1,2,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,7,6,544,228,316,49,68,179,246,0,0,0,0,0,0,0,2,226,312,47,66,179,245,0,0,0,0,0,0,0,1,2,4,2,2,0,1,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,7,7,576,223,353,57,81,166,269,0,0,0,2,0,0,0,1,222,351,56,80,166,268,0,0,0,2,0,0,0,1,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,8,568,290,278,104,61,182,215,0,0,2,1,1,0,1,1,290,274,104,60,182,213,0,0,2,1,1,0,1,0,0,4,0,1,0,2,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,7,9,680,282,398,85,83,191,310,0,1,1,1,0,0,5,3,279,396,85,83,189,309,0,1,1,1,0,0,4,2,3,2,0,0,2,1,0,0,0,0,0,0,1,1 -050,01,105,Alabama,Perry County,7,10,745,367,378,120,113,244,261,0,1,1,1,0,0,2,2,363,377,119,113,242,260,0,1,1,1,0,0,1,2,4,1,1,0,2,1,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,7,11,622,261,361,99,91,161,269,0,0,0,0,0,0,1,1,257,356,99,90,158,265,0,0,0,0,0,0,0,1,4,5,0,1,3,4,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,7,12,698,343,355,125,136,217,216,0,0,1,1,0,0,0,2,342,353,125,136,216,215,0,0,1,1,0,0,0,1,1,2,0,0,1,1,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,7,13,571,264,307,107,134,155,170,0,1,1,1,0,0,1,1,263,306,106,134,155,169,0,1,1,1,0,0,1,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,14,542,252,290,123,113,127,175,1,1,0,1,0,0,1,0,251,287,123,113,126,172,1,1,0,1,0,0,1,0,1,3,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,15,414,209,205,113,100,94,104,1,0,0,0,0,0,1,1,206,204,111,100,93,103,1,0,0,0,0,0,1,1,3,1,2,0,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,16,349,141,208,69,96,72,111,0,0,0,0,0,0,0,1,140,206,69,96,71,109,0,0,0,0,0,0,0,1,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,17,191,62,129,33,58,29,70,0,0,0,0,0,0,0,1,62,129,33,58,29,70,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,18,211,55,156,28,65,27,90,0,0,0,0,0,0,0,1,55,156,28,65,27,90,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,99,10881,5027,5854,1585,1637,3398,4173,6,4,15,10,1,2,22,28,4975,5804,1553,1620,3383,4147,5,4,15,10,1,1,18,22,52,50,32,17,15,26,1,0,0,0,0,1,4,6 -050,01,105,Alabama,Perry County,8,0,134,70,64,10,8,58,56,0,0,1,0,0,0,1,0,69,63,9,7,58,56,0,0,1,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,1,638,312,326,62,46,248,274,0,0,0,1,1,1,1,4,309,319,60,43,247,271,0,0,0,1,1,1,1,3,3,7,2,3,1,3,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,8,2,726,342,384,57,57,277,324,2,0,3,1,0,0,3,2,338,382,54,56,276,323,2,0,3,1,0,0,3,2,4,2,3,1,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,3,832,423,409,72,76,350,330,0,0,0,1,0,0,1,2,420,406,70,74,349,329,0,0,0,1,0,0,1,2,3,3,2,2,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,4,958,482,476,150,128,323,348,2,0,3,0,0,0,4,0,471,474,139,126,323,348,2,0,3,0,0,0,4,0,11,2,11,2,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,5,718,364,354,105,108,255,246,1,0,2,0,1,0,0,0,357,350,99,105,254,245,1,0,2,0,1,0,0,0,7,4,6,3,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,6,529,220,309,42,60,177,248,0,0,0,0,0,0,1,1,218,306,40,58,177,248,0,0,0,0,0,0,1,0,2,3,2,2,0,0,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,8,7,531,209,322,50,67,159,252,0,0,0,2,0,0,0,1,208,320,49,66,159,251,0,0,0,2,0,0,0,1,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,8,563,266,297,92,81,171,215,0,0,2,1,1,0,0,0,266,294,92,80,171,213,0,0,2,1,1,0,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,9,666,274,392,94,84,175,305,0,0,1,1,0,0,4,2,271,390,94,84,173,304,0,0,1,1,0,0,3,1,3,2,0,0,2,1,0,0,0,0,0,0,1,1 -050,01,105,Alabama,Perry County,8,10,727,360,367,100,103,256,260,0,1,1,1,0,0,3,2,355,366,99,103,253,259,0,1,1,1,0,0,2,2,5,1,1,0,3,1,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,8,11,672,294,378,115,97,179,280,0,0,0,0,0,0,0,1,291,373,115,96,176,276,0,0,0,0,0,0,0,1,3,5,0,1,3,4,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,12,706,346,360,129,134,216,224,0,0,1,1,0,0,0,1,345,358,129,134,215,223,0,0,1,1,0,0,0,0,1,2,0,0,1,1,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,8,13,556,252,304,112,135,139,167,0,1,1,1,0,0,0,0,250,303,111,135,138,166,0,1,1,1,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,14,537,242,295,102,114,139,178,1,1,0,1,0,0,0,1,242,292,102,114,139,175,1,1,0,1,0,0,0,1,0,3,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,15,420,209,211,119,99,88,111,1,0,0,0,0,0,1,1,208,210,118,99,88,110,1,0,0,0,0,0,1,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,16,320,117,203,55,90,62,112,0,0,0,0,0,0,0,1,116,201,55,90,61,110,0,0,0,0,0,0,0,1,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,17,219,96,123,42,57,54,66,0,0,0,0,0,0,0,0,95,123,41,57,54,66,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,18,225,64,161,27,65,37,95,0,0,0,0,0,0,0,1,64,161,27,65,37,95,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,99,10677,4942,5735,1535,1609,3363,4091,7,3,15,11,3,1,19,20,4893,5691,1503,1592,3348,4068,7,3,15,11,3,1,17,16,49,44,32,17,15,23,0,0,0,0,0,0,2,4 -050,01,105,Alabama,Perry County,9,0,148,72,76,14,9,56,67,0,0,1,0,0,0,1,0,71,75,13,8,56,67,0,0,1,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,1,626,312,314,49,37,261,270,0,0,0,1,1,2,1,4,309,307,47,34,260,267,0,0,0,1,1,2,1,3,3,7,2,3,1,3,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,9,2,729,361,368,61,49,291,316,2,0,3,1,0,0,4,2,356,366,58,48,290,315,2,0,3,1,0,0,3,2,5,2,3,1,1,1,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,9,3,812,395,417,70,67,324,347,0,0,0,1,0,0,1,2,392,414,68,65,323,346,0,0,0,1,0,0,1,2,3,3,2,2,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,4,1051,561,490,190,162,359,328,3,0,5,0,0,0,4,0,545,486,174,158,359,328,3,0,5,0,0,0,4,0,16,4,16,4,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,5,780,373,407,119,140,250,266,1,0,2,0,1,0,0,1,365,401,112,136,249,265,1,0,2,0,1,0,0,0,8,6,7,4,1,1,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,9,6,543,234,309,51,57,182,251,0,0,0,0,0,0,1,1,232,306,49,55,182,251,0,0,0,0,0,0,1,0,2,3,2,2,0,0,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,9,7,518,217,301,51,53,166,245,0,0,0,2,0,0,0,1,216,299,50,52,166,244,0,0,0,2,0,0,0,1,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,8,568,270,298,95,81,171,216,0,0,2,1,1,0,1,0,270,295,95,80,171,214,0,0,2,1,1,0,1,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,9,599,258,341,93,76,160,262,0,0,1,1,0,0,4,2,255,340,93,76,158,262,0,0,1,1,0,0,3,1,3,1,0,0,2,0,0,0,0,0,0,0,1,1 -050,01,105,Alabama,Perry County,9,10,707,338,369,101,90,233,275,0,1,1,1,0,0,3,2,334,368,100,90,231,274,0,1,1,1,0,0,2,2,4,1,1,0,2,1,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,9,11,685,291,394,108,99,182,294,0,0,0,0,0,0,1,1,286,388,108,98,178,289,0,0,0,0,0,0,0,1,5,6,0,1,4,5,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,9,12,707,349,358,120,139,228,217,0,0,1,1,0,0,0,1,348,356,120,139,227,216,0,0,1,1,0,0,0,0,1,2,0,0,1,1,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,9,13,562,269,293,130,120,138,170,0,1,1,1,0,0,0,1,267,292,129,120,137,169,0,1,1,1,0,0,0,1,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,14,519,232,287,95,127,135,156,2,2,0,1,0,0,0,1,232,285,95,127,135,154,2,2,0,1,0,0,0,1,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,15,448,218,230,117,110,97,119,2,0,0,0,0,0,2,1,217,229,116,110,97,118,2,0,0,0,0,0,2,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,16,326,119,207,60,90,59,116,0,0,0,0,0,0,0,1,119,204,60,90,59,113,0,0,0,0,0,0,0,1,0,3,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,17,217,97,120,39,58,58,62,0,0,0,0,0,0,0,0,96,120,38,58,58,62,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,18,229,57,172,32,75,25,96,0,0,0,0,0,0,0,1,57,172,32,75,25,96,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,99,10774,5023,5751,1595,1639,3375,4073,10,4,17,11,3,2,23,22,4967,5703,1557,1619,3361,4050,10,4,17,11,3,2,19,17,56,48,38,20,14,23,0,0,0,0,0,0,4,5 -050,01,105,Alabama,Perry County,10,0,159,81,78,14,10,64,68,0,0,2,0,0,0,1,0,80,77,13,9,64,68,0,0,2,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,1,590,292,298,49,38,241,253,0,0,0,1,1,2,1,4,288,289,46,33,240,250,0,0,0,1,1,2,1,3,4,9,3,5,1,3,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,10,2,715,341,374,63,51,270,320,2,0,3,1,0,0,3,2,337,373,60,50,269,320,2,0,3,1,0,0,3,2,4,1,3,1,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,3,766,369,397,57,66,311,328,0,0,0,1,0,0,1,2,366,394,55,64,310,327,0,0,0,1,0,0,1,2,3,3,2,2,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,4,1057,567,490,210,167,345,323,4,0,5,0,0,0,3,0,549,484,192,161,345,323,4,0,5,0,0,0,3,0,18,6,18,6,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,5,783,374,409,113,150,257,259,2,0,2,0,0,0,0,0,364,404,104,145,256,259,2,0,2,0,0,0,0,0,10,5,9,5,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,6,555,237,318,55,62,181,254,0,0,0,0,0,0,1,2,235,314,53,60,181,254,0,0,0,0,0,0,1,0,2,4,2,2,0,0,0,0,0,0,0,0,0,2 -050,01,105,Alabama,Perry County,10,7,519,226,293,52,55,174,235,0,0,0,2,0,0,0,1,225,291,51,54,174,234,0,0,0,2,0,0,0,1,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,8,570,256,314,82,81,171,232,0,0,2,1,1,0,0,0,256,311,82,80,171,230,0,0,2,1,1,0,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,9,573,253,320,92,78,156,239,0,0,1,1,0,0,4,2,251,319,92,78,155,239,0,0,1,1,0,0,3,1,2,1,0,0,1,0,0,0,0,0,0,0,1,1 -050,01,105,Alabama,Perry County,10,10,674,308,366,91,89,213,273,0,1,1,1,0,0,3,2,304,365,90,89,211,272,0,1,1,1,0,0,2,2,4,1,1,0,2,1,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,10,11,733,319,414,112,96,207,317,0,0,0,0,0,0,0,1,315,407,112,94,203,312,0,0,0,0,0,0,0,1,4,7,0,2,4,5,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,12,690,347,343,133,124,213,217,0,0,1,1,0,0,0,1,346,341,133,124,212,216,0,0,1,1,0,0,0,0,1,2,0,0,1,1,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,10,13,568,269,299,111,118,157,178,0,2,1,1,0,0,0,0,267,298,110,118,156,177,0,2,1,1,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,14,559,256,303,122,137,132,162,2,2,0,1,0,0,0,1,256,300,122,137,132,159,2,2,0,1,0,0,0,1,0,3,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,15,434,211,223,106,105,101,117,2,0,0,0,0,0,2,1,210,222,105,105,101,116,2,0,0,0,0,0,2,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,16,318,118,200,56,97,62,102,0,0,0,0,0,0,0,1,118,197,56,97,62,99,0,0,0,0,0,0,0,1,0,3,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,17,228,97,131,46,59,51,72,0,0,0,0,0,0,0,0,96,131,45,59,51,72,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,18,231,67,164,32,70,35,93,0,0,0,0,0,0,0,1,67,164,32,70,35,93,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,99,10722,4988,5734,1596,1653,3341,4042,12,5,18,11,2,2,19,21,4930,5681,1553,1627,3328,4020,12,5,18,11,2,2,17,16,58,53,43,26,13,22,0,0,0,0,0,0,2,5 -050,01,105,Alabama,Perry County,11,0,137,77,60,16,9,58,51,0,0,2,0,0,0,1,0,76,59,15,8,58,51,0,0,2,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,1,571,293,278,46,36,245,236,0,0,0,1,1,1,1,4,289,269,43,31,244,233,0,0,0,1,1,1,1,3,4,9,3,5,1,3,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,11,2,709,345,364,66,52,271,309,2,0,3,1,0,0,3,2,341,362,63,51,270,308,2,0,3,1,0,0,3,2,4,2,3,1,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,3,743,378,365,68,64,309,298,0,0,0,1,0,0,1,2,375,363,66,62,308,298,0,0,0,1,0,0,1,2,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,4,1065,575,490,209,164,353,326,4,0,6,0,0,0,3,0,555,484,189,158,353,326,4,0,6,0,0,0,3,0,20,6,20,6,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,5,819,377,442,124,167,248,275,2,0,2,0,1,0,0,0,367,436,115,161,247,275,2,0,2,0,1,0,0,0,10,6,9,6,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,6,564,257,307,56,65,200,240,0,0,0,0,0,0,1,2,255,303,54,63,200,240,0,0,0,0,0,0,1,0,2,4,2,2,0,0,0,0,0,0,0,0,0,2 -050,01,105,Alabama,Perry County,11,7,520,236,284,52,55,184,226,0,0,0,2,0,0,0,1,235,282,51,54,184,225,0,0,0,2,0,0,0,1,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,8,556,259,297,91,65,165,230,0,0,2,1,1,0,0,1,259,293,91,64,165,228,0,0,2,1,1,0,0,0,0,4,0,1,0,2,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,11,9,558,244,314,87,83,153,228,0,0,1,1,0,0,3,2,243,313,87,83,152,228,0,0,1,1,0,0,3,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,11,10,646,303,343,84,82,216,257,0,1,1,1,0,0,2,2,300,342,83,82,214,256,0,1,1,1,0,0,2,2,3,1,1,0,2,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,11,760,348,412,117,106,231,305,0,0,0,0,0,0,0,1,344,405,117,104,227,300,0,0,0,0,0,0,0,1,4,7,0,2,4,5,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,12,693,330,363,131,106,198,255,0,0,1,1,0,0,0,1,329,361,131,106,197,254,0,0,1,1,0,0,0,0,1,2,0,0,1,1,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,11,13,599,291,308,124,141,166,164,0,2,1,1,0,0,0,0,289,307,123,141,165,163,0,2,1,1,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,14,547,248,299,124,131,122,164,2,2,0,1,0,0,0,1,248,297,124,131,122,162,2,2,0,1,0,0,0,1,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,15,440,205,235,97,107,104,127,2,0,0,0,0,0,2,1,204,234,96,107,104,126,2,0,0,0,0,0,2,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,16,321,132,189,75,94,57,94,0,0,0,0,0,0,0,1,132,186,75,94,57,91,0,0,0,0,0,0,0,1,0,3,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,17,222,84,138,41,61,43,77,0,0,0,0,0,0,0,0,83,138,40,61,43,77,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,18,220,66,154,36,64,30,89,0,0,0,0,0,0,0,1,66,154,36,64,30,89,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,99,10690,5048,5642,1644,1652,3353,3951,12,5,19,11,3,1,17,22,4990,5588,1599,1625,3340,3930,12,5,19,11,3,1,17,16,58,54,45,27,13,21,0,0,0,0,0,0,0,6 -050,01,105,Alabama,Perry County,12,0,134,72,62,18,11,51,51,0,0,2,0,0,0,1,0,71,61,17,10,51,51,0,0,2,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,1,540,282,258,43,35,237,216,0,0,0,1,1,2,1,4,278,249,40,30,236,213,0,0,0,1,1,2,1,3,4,9,3,5,1,3,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,12,2,706,339,367,65,47,266,317,2,0,3,1,0,0,3,2,335,364,62,46,265,315,2,0,3,1,0,0,3,2,4,3,3,1,1,2,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,3,708,370,338,66,60,303,275,0,0,0,1,0,0,1,2,367,336,64,58,302,275,0,0,0,1,0,0,1,2,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,4,1048,571,477,213,159,345,318,4,0,6,0,0,0,3,0,551,471,193,153,345,318,4,0,6,0,0,0,3,0,20,6,20,6,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,5,812,363,449,117,169,241,280,2,0,2,0,1,0,0,0,353,443,108,163,240,280,2,0,2,0,1,0,0,0,10,6,9,6,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,6,554,260,294,57,67,202,225,0,0,0,0,0,0,1,2,258,290,55,65,202,225,0,0,0,0,0,0,1,0,2,4,2,2,0,0,0,0,0,0,0,0,0,2 -050,01,105,Alabama,Perry County,12,7,557,246,311,53,63,193,245,0,0,0,2,0,0,0,1,245,309,52,62,193,244,0,0,0,2,0,0,0,1,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,8,544,239,305,63,68,173,235,0,0,2,1,1,0,0,1,239,301,63,67,173,233,0,0,2,1,1,0,0,0,0,4,0,1,0,2,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,12,9,557,267,290,97,72,165,215,0,0,1,1,0,0,4,2,265,289,97,72,164,215,0,0,1,1,0,0,3,1,2,1,0,0,1,0,0,0,0,0,0,0,1,1 -050,01,105,Alabama,Perry County,12,10,632,288,344,84,76,201,264,0,1,1,1,0,0,2,2,285,343,83,76,199,263,0,1,1,1,0,0,2,2,3,1,1,0,2,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,11,759,354,405,116,107,238,297,0,0,0,0,0,0,0,1,350,398,116,105,234,292,0,0,0,0,0,0,0,1,4,7,0,2,4,5,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,12,673,304,369,118,107,185,260,0,0,1,1,0,0,0,1,303,367,118,107,184,259,0,0,1,1,0,0,0,0,1,2,0,0,1,1,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,12,13,598,297,301,120,121,176,177,0,2,1,1,0,0,0,0,295,300,119,121,175,176,0,2,1,1,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,14,528,227,301,115,129,110,168,2,2,0,1,0,0,0,1,227,299,115,129,110,166,2,2,0,1,0,0,0,1,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,15,435,200,235,90,103,106,131,2,0,0,0,0,0,2,1,199,234,89,103,106,130,2,0,0,0,0,0,2,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,16,322,144,178,80,92,64,85,0,0,0,0,0,0,0,1,144,175,80,92,64,82,0,0,0,0,0,0,0,1,0,3,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,17,253,92,161,44,66,48,95,0,0,0,0,0,0,0,0,91,161,43,66,48,95,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,18,231,65,166,36,70,29,95,0,0,0,0,0,0,0,1,65,166,36,70,29,95,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,99,10591,4980,5611,1595,1622,3333,3949,12,5,19,11,3,2,18,22,4921,5556,1550,1595,3320,3927,12,5,19,11,3,2,17,16,59,55,45,27,13,22,0,0,0,0,0,0,1,6 -050,01,105,Alabama,Perry County,13,0,129,69,60,17,9,50,51,0,0,1,0,0,0,1,0,69,60,17,9,50,51,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,1,538,282,256,44,33,235,214,1,2,0,1,0,0,2,6,276,250,40,29,234,212,0,2,0,1,0,0,2,6,6,6,4,4,1,2,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,2,697,332,365,60,45,263,316,1,1,3,1,0,0,5,2,329,362,58,45,262,313,1,1,3,1,0,0,5,2,3,3,2,0,1,3,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,3,708,369,339,63,60,301,273,1,3,1,0,0,0,3,3,366,336,62,57,299,273,1,3,1,0,0,0,3,3,3,3,1,3,2,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,4,1049,569,480,209,159,344,316,7,1,7,0,0,0,2,4,549,473,189,152,344,316,7,1,7,0,0,0,2,4,20,7,20,7,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,5,816,366,450,118,167,240,282,3,1,2,0,1,0,2,0,356,444,109,161,239,282,3,1,2,0,1,0,2,0,10,6,9,6,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,6,557,263,294,58,67,202,223,1,0,0,2,1,0,1,2,259,291,56,65,201,223,1,0,0,2,0,0,1,1,4,3,2,2,1,0,0,0,0,0,1,0,0,1 -050,01,105,Alabama,Perry County,13,7,559,251,308,55,60,196,245,0,2,0,0,0,0,0,1,249,308,53,60,196,245,0,2,0,0,0,0,0,1,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,8,542,241,301,63,66,171,229,2,3,3,1,0,0,2,2,240,300,62,66,171,229,2,3,3,1,0,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,13,9,555,263,292,93,72,164,213,2,3,2,2,0,0,2,2,261,292,93,72,163,213,2,3,2,2,0,0,1,2,2,0,0,0,1,0,0,0,0,0,0,0,1,0 -050,01,105,Alabama,Perry County,13,10,632,288,344,82,74,200,260,2,4,1,1,0,0,3,5,286,343,81,73,199,260,2,4,1,1,0,0,3,5,2,1,1,1,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,11,754,353,401,116,103,235,294,1,2,0,0,0,0,1,2,350,395,115,101,233,290,1,2,0,0,0,0,1,2,3,6,1,2,2,4,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,12,673,305,368,118,106,183,258,2,2,2,2,0,0,0,0,304,367,118,106,182,257,2,2,2,2,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,13,604,299,305,120,123,177,177,0,2,1,1,0,0,1,2,298,305,119,123,177,177,0,2,1,1,0,0,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,14,523,226,297,116,130,108,164,2,2,0,0,0,0,0,1,226,296,116,129,108,164,2,2,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,15,429,199,230,89,103,106,127,3,0,0,0,0,0,1,0,199,230,89,103,106,127,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,16,317,145,172,80,90,64,82,0,0,0,0,0,0,1,0,144,171,79,90,64,81,0,0,0,0,0,0,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,17,244,89,155,42,62,47,93,0,0,0,0,0,0,0,0,89,155,42,62,47,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,18,230,66,164,37,69,29,95,0,0,0,0,0,0,0,0,66,164,37,69,29,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,99,10556,4975,5581,1580,1598,3315,3912,28,28,23,11,2,0,27,32,4916,5542,1535,1572,3304,3901,27,28,23,11,1,0,26,30,59,39,45,26,11,11,1,0,0,0,1,0,1,2 -050,01,107,Alabama,Pickens County,1,0,310,145,165,77,77,66,84,0,0,0,0,0,0,2,4,144,165,77,77,66,84,0,0,0,0,0,0,1,4,1,0,0,0,0,0,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,1,1,1109,599,510,272,228,316,274,0,1,3,1,0,0,8,6,595,501,270,223,314,270,0,1,3,1,0,0,8,6,4,9,2,5,2,4,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,2,1561,769,792,332,384,435,403,0,0,0,0,0,0,2,5,765,788,331,383,432,401,0,0,0,0,0,0,2,4,4,4,1,1,3,2,0,0,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,1,3,1659,832,827,375,368,449,450,1,0,0,1,0,0,7,8,820,821,373,364,440,448,1,0,0,1,0,0,6,8,12,6,2,4,9,2,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,1,4,1667,829,838,386,330,434,500,1,1,0,0,0,0,8,7,823,830,384,327,431,497,1,1,0,0,0,0,7,5,6,8,2,3,3,3,0,0,0,0,0,0,1,2 -050,01,107,Alabama,Pickens County,1,5,1173,563,610,299,260,255,346,2,1,0,1,0,0,7,2,555,607,292,259,255,344,2,1,0,1,0,0,6,2,8,3,7,1,0,2,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,1,6,1152,532,620,299,331,232,288,0,0,0,1,0,0,1,0,526,614,294,326,231,287,0,0,0,1,0,0,1,0,6,6,5,5,1,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,7,1285,581,704,387,378,189,317,0,2,2,2,0,0,3,5,578,698,385,377,188,313,0,1,2,2,0,0,3,5,3,6,2,1,1,4,0,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,8,1434,670,764,426,404,237,354,2,1,1,0,0,0,4,5,662,756,420,400,236,351,2,1,1,0,0,0,3,4,8,8,6,4,1,3,0,0,0,0,0,0,1,1 -050,01,107,Alabama,Pickens County,1,9,1518,744,774,449,416,291,348,1,2,0,1,0,0,3,7,737,769,444,414,289,345,1,2,0,1,0,0,3,7,7,5,5,2,2,3,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,10,1425,707,718,428,398,275,316,3,2,0,1,0,0,1,1,704,710,427,393,273,314,3,2,0,1,0,0,1,0,3,8,1,5,2,2,0,0,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,1,11,1259,592,667,407,403,179,258,0,1,0,0,0,0,6,5,589,662,406,401,178,255,0,1,0,0,0,0,5,5,3,5,1,2,1,3,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,1,12,1050,470,580,336,389,130,183,0,0,2,4,0,2,2,2,469,579,335,389,130,183,0,0,2,3,0,2,2,2,1,1,1,0,0,0,0,0,0,1,0,0,0,0 -050,01,107,Alabama,Pickens County,1,13,1028,460,568,305,385,152,179,1,0,1,0,0,1,1,3,458,566,304,383,151,179,1,0,1,0,0,1,1,3,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,14,961,422,539,310,372,109,165,1,1,0,0,0,0,2,1,420,537,309,370,108,165,1,1,0,0,0,0,2,1,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,15,844,378,466,279,310,98,152,1,1,0,1,0,1,0,1,377,465,278,310,98,151,1,1,0,1,0,1,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,16,598,235,363,150,232,83,130,0,0,0,0,1,0,1,1,234,362,150,232,82,129,0,0,0,0,1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,17,438,150,288,104,186,46,101,0,0,0,0,0,0,0,1,150,288,104,186,46,101,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,18,443,118,325,69,188,49,136,0,0,0,1,0,0,0,0,118,325,69,188,49,136,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,99,20914,9796,11118,5690,6039,4025,4984,13,13,9,14,1,4,58,64,9724,11043,5652,6002,3997,4953,13,12,9,13,1,4,52,59,72,75,38,37,28,31,0,1,0,1,0,0,6,5 -050,01,107,Alabama,Pickens County,2,0,313,146,167,77,78,67,85,0,0,0,0,0,0,2,4,145,167,77,78,67,85,0,0,0,0,0,0,1,4,1,0,0,0,0,0,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,2,1,1097,591,506,268,225,314,272,0,1,3,1,0,0,6,7,587,497,266,220,312,268,0,1,3,1,0,0,6,7,4,9,2,5,2,4,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,2,1545,762,783,328,380,431,398,0,0,0,0,0,0,3,5,758,779,327,379,428,396,0,0,0,0,0,0,3,4,4,4,1,1,3,2,0,0,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,2,3,1659,831,828,373,366,450,453,1,0,0,1,0,0,7,8,819,822,371,362,441,451,1,0,0,1,0,0,6,8,12,6,2,4,9,2,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,2,4,1666,829,837,384,329,436,500,1,1,0,0,0,0,8,7,823,829,382,326,433,497,1,1,0,0,0,0,7,5,6,8,2,3,3,3,0,0,0,0,0,0,1,2 -050,01,107,Alabama,Pickens County,2,5,1180,569,611,301,259,259,348,2,1,0,1,0,0,7,2,560,608,293,258,259,346,2,1,0,1,0,0,6,2,9,3,8,1,0,2,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,2,6,1138,526,612,295,326,230,285,0,0,0,1,0,0,1,0,520,606,290,321,229,284,0,0,0,1,0,0,1,0,6,6,5,5,1,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,7,1279,578,701,383,376,190,316,0,2,2,2,0,0,3,5,575,695,381,375,189,312,0,1,2,2,0,0,3,5,3,6,2,1,1,4,0,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,8,1425,667,758,423,400,237,352,2,1,1,0,0,0,4,5,659,750,417,396,236,349,2,1,1,0,0,0,3,4,8,8,6,4,1,3,0,0,0,0,0,0,1,1 -050,01,107,Alabama,Pickens County,2,9,1519,744,775,447,416,293,349,1,2,0,1,0,0,3,7,737,770,442,414,291,346,1,2,0,1,0,0,3,7,7,5,5,2,2,3,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,10,1430,710,720,430,399,276,317,3,2,0,1,0,0,1,1,707,712,429,394,274,315,3,2,0,1,0,0,1,0,3,8,1,5,2,2,0,0,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,2,11,1267,596,671,408,404,182,261,0,1,0,0,0,0,6,5,593,666,407,402,181,258,0,1,0,0,0,0,5,5,3,5,1,2,1,3,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,2,12,1051,471,580,337,389,130,183,0,0,2,4,0,2,2,2,470,579,336,389,130,183,0,0,2,3,0,2,2,2,1,1,1,0,0,0,0,0,0,1,0,0,0,0 -050,01,107,Alabama,Pickens County,2,13,1027,460,567,305,384,152,179,1,0,1,0,0,1,1,3,458,565,304,382,151,179,1,0,1,0,0,1,1,3,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,14,955,421,534,308,368,110,164,1,1,0,0,0,0,2,1,419,532,307,366,109,164,1,1,0,0,0,0,2,1,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,15,845,380,465,281,309,98,152,1,1,0,1,0,1,0,1,379,464,280,309,98,151,1,1,0,1,0,1,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,16,598,235,363,150,231,83,131,0,0,0,0,1,0,1,1,234,362,150,231,82,130,0,0,0,0,1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,17,442,152,290,106,187,46,102,0,0,0,0,0,0,0,1,152,290,106,187,46,102,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,18,445,119,326,70,188,49,137,0,0,0,1,0,0,0,0,119,326,70,188,49,137,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,99,20881,9787,11094,5674,6014,4033,4984,13,13,9,14,1,4,57,65,9714,11019,5635,5977,4005,4953,13,12,9,13,1,4,51,60,73,75,39,37,28,31,0,1,0,1,0,0,6,5 -050,01,107,Alabama,Pickens County,3,0,295,142,153,71,83,69,66,0,0,0,0,0,0,2,4,141,153,71,83,69,66,0,0,0,0,0,0,1,4,1,0,0,0,0,0,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,3,1,1133,568,565,288,256,271,299,0,1,3,1,0,0,6,8,564,557,286,251,269,296,0,1,3,1,0,0,6,8,4,8,2,5,2,3,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,3,2,1445,719,726,319,348,395,373,0,0,0,0,0,0,5,5,715,722,318,347,392,371,0,0,0,0,0,0,5,4,4,4,1,1,3,2,0,0,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,3,3,1665,836,829,370,356,458,463,1,0,0,1,0,0,7,9,825,823,368,352,450,461,1,0,0,1,0,0,6,9,11,6,2,4,8,2,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,3,4,1637,825,812,378,318,438,486,1,1,0,0,0,0,8,7,819,805,376,315,435,484,1,1,0,0,0,0,7,5,6,7,2,3,3,2,0,0,0,0,0,0,1,2 -050,01,107,Alabama,Pickens County,3,5,1249,624,625,318,271,295,350,2,1,0,1,2,0,7,2,612,622,309,270,295,348,2,1,0,1,0,0,6,2,12,3,9,1,0,2,0,0,0,0,2,0,1,0 -050,01,107,Alabama,Pickens County,3,6,1052,500,552,295,286,203,265,0,0,0,1,1,0,1,0,492,547,289,282,202,264,0,0,0,1,0,0,1,0,8,5,6,4,1,1,0,0,0,0,1,0,0,0 -050,01,107,Alabama,Pickens County,3,7,1271,573,698,368,384,200,305,0,2,2,2,0,0,3,5,569,692,365,383,199,301,0,1,2,2,0,0,3,5,4,6,3,1,1,4,0,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,3,8,1404,651,753,419,388,225,359,2,1,1,0,0,0,4,5,643,744,413,382,224,357,2,1,1,0,0,0,3,4,8,9,6,6,1,2,0,0,0,0,0,0,1,1 -050,01,107,Alabama,Pickens County,3,9,1552,777,775,468,421,305,345,1,2,0,1,0,0,3,6,770,769,463,419,303,341,1,2,0,1,0,0,3,6,7,6,5,2,2,4,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,3,10,1434,691,743,414,416,273,323,3,2,0,1,0,0,1,1,688,735,413,411,271,321,3,2,0,1,0,0,1,0,3,8,1,5,2,2,0,0,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,3,11,1327,646,681,428,400,212,275,0,1,0,0,0,0,6,5,643,676,427,398,211,272,0,1,0,0,0,0,5,5,3,5,1,2,1,3,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,3,12,1063,457,606,331,394,122,205,0,0,2,4,0,1,2,2,455,605,329,394,122,205,0,0,2,3,0,1,2,2,2,1,2,0,0,0,0,0,0,1,0,0,0,0 -050,01,107,Alabama,Pickens County,3,13,1011,468,543,318,366,147,173,1,0,1,0,0,1,1,3,466,541,317,364,146,173,1,0,1,0,0,1,1,3,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,3,14,974,431,543,293,380,135,161,1,1,0,0,0,0,2,1,429,541,292,378,134,161,1,1,0,0,0,0,2,1,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,3,15,876,386,490,291,327,94,159,1,1,0,1,0,1,0,1,385,489,290,327,94,158,1,1,0,1,0,1,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,3,16,604,246,358,164,231,80,126,0,0,0,0,1,0,1,1,245,357,164,231,79,125,0,0,0,0,1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,3,17,448,148,300,99,191,49,108,0,0,0,0,0,0,0,1,148,300,99,191,49,108,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,3,18,433,118,315,73,182,45,132,0,0,0,1,0,0,0,0,118,315,73,182,45,132,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,3,99,20873,9806,11067,5705,5998,4016,4973,13,13,9,14,4,3,59,66,9727,10993,5662,5960,3989,4944,13,12,9,13,1,3,53,61,79,74,43,38,27,29,0,1,0,1,3,0,6,5 -050,01,107,Alabama,Pickens County,4,0,314,156,158,84,82,70,71,0,0,0,0,0,1,2,4,150,157,79,82,70,71,0,0,0,0,0,0,1,4,6,1,5,0,0,0,0,0,0,0,0,1,1,0 -050,01,107,Alabama,Pickens County,4,1,1173,576,597,289,283,277,303,0,1,3,1,0,0,7,9,572,589,287,278,275,300,0,1,3,1,0,0,7,9,4,8,2,5,2,3,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,2,1391,711,680,308,330,397,346,0,0,0,0,0,0,6,4,707,676,307,328,394,344,0,0,0,0,0,0,6,4,4,4,1,2,3,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,3,1661,843,818,369,371,465,437,1,0,0,1,0,0,8,9,832,812,366,367,458,435,1,0,0,1,0,0,7,9,11,6,3,4,7,2,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,4,4,1590,809,781,362,328,438,445,1,1,0,0,0,0,8,7,802,774,359,325,435,443,1,1,0,0,0,0,7,5,7,7,3,3,3,2,0,0,0,0,0,0,1,2 -050,01,107,Alabama,Pickens County,4,5,1269,629,640,316,271,300,364,2,2,0,1,3,0,8,2,616,637,307,270,300,362,2,2,0,1,0,0,7,2,13,3,9,1,0,2,0,0,0,0,3,0,1,0 -050,01,107,Alabama,Pickens County,4,6,1035,479,556,279,275,196,279,0,0,0,1,3,1,1,0,468,549,272,270,195,278,0,0,0,1,0,0,1,0,11,7,7,5,1,1,0,0,0,0,3,1,0,0 -050,01,107,Alabama,Pickens County,4,7,1233,555,678,354,376,196,293,0,2,2,2,0,0,3,5,548,671,348,374,195,289,0,1,2,2,0,0,3,5,7,7,6,2,1,4,0,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,8,1392,640,752,422,392,211,354,2,1,1,0,0,0,4,5,631,744,415,387,210,351,2,1,1,0,0,0,3,5,9,8,7,5,1,3,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,4,9,1505,744,761,451,412,289,339,1,2,0,1,0,0,3,7,737,755,446,409,287,336,1,2,0,1,0,0,3,7,7,6,5,3,2,3,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,10,1471,720,751,430,427,287,319,2,2,0,1,0,0,1,2,717,742,429,421,285,317,2,2,0,1,0,0,1,1,3,9,1,6,2,2,0,0,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,4,11,1360,674,686,430,385,238,295,0,1,0,0,0,0,6,5,671,680,429,382,237,292,0,1,0,0,0,0,5,5,3,6,1,3,1,3,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,4,12,1135,504,631,357,420,142,204,0,0,2,4,0,1,3,2,502,629,355,420,142,203,0,0,2,3,0,1,3,2,2,2,2,0,0,1,0,0,0,1,0,0,0,0 -050,01,107,Alabama,Pickens County,4,13,1022,470,552,330,381,137,166,1,0,1,0,0,2,1,3,468,550,329,379,136,166,1,0,1,0,0,2,1,3,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,14,962,443,519,291,357,149,160,1,1,0,0,0,0,2,1,441,517,290,355,148,160,1,1,0,0,0,0,2,1,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,15,864,361,503,275,337,85,162,1,1,0,1,0,1,0,1,360,502,274,337,85,161,1,1,0,1,0,1,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,16,611,251,360,183,242,66,117,0,0,0,0,1,0,1,1,250,360,183,242,65,117,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,17,429,136,293,98,192,38,100,0,0,0,0,0,0,0,1,136,293,98,192,38,100,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,18,418,109,309,71,175,38,133,0,0,0,1,0,0,0,0,109,309,71,175,38,133,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,99,20835,9810,11025,5699,6036,4019,4887,12,14,9,14,7,6,64,68,9717,10946,5644,5993,3993,4858,12,13,9,13,1,4,58,65,93,79,55,43,26,29,0,1,0,1,6,2,6,3 -050,01,107,Alabama,Pickens County,5,0,249,121,128,65,67,55,56,0,0,0,0,0,1,1,4,118,127,62,67,55,56,0,0,0,0,0,0,1,4,3,1,3,0,0,0,0,0,0,0,0,1,0,0 -050,01,107,Alabama,Pickens County,5,1,1199,595,604,295,300,287,292,0,1,3,1,1,0,9,10,586,595,288,294,286,289,0,1,3,1,0,0,9,10,9,9,7,6,1,3,0,0,0,0,1,0,0,0 -050,01,107,Alabama,Pickens County,5,2,1347,698,649,301,306,390,337,0,0,0,0,1,0,6,6,693,644,299,304,388,335,0,0,0,0,0,0,6,5,5,5,2,2,2,2,0,0,0,0,1,0,0,1 -050,01,107,Alabama,Pickens County,5,3,1575,807,768,356,359,441,399,1,0,0,1,0,0,9,9,796,763,353,356,434,397,1,0,0,1,0,0,8,9,11,5,3,3,7,2,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,5,4,1546,791,755,357,322,425,423,1,1,0,1,0,0,8,8,785,747,354,319,423,421,1,1,0,0,0,0,7,6,6,8,3,3,2,2,0,0,0,1,0,0,1,2 -050,01,107,Alabama,Pickens County,5,5,1238,596,642,282,268,297,368,2,2,0,1,6,1,9,2,579,637,272,266,297,366,2,2,0,1,0,0,8,2,17,5,10,2,0,2,0,0,0,0,6,1,1,0 -050,01,107,Alabama,Pickens County,5,6,1005,479,526,283,264,189,259,0,0,0,1,6,2,1,0,465,518,275,259,189,258,0,0,0,1,0,0,1,0,14,8,8,5,0,1,0,0,0,0,6,2,0,0 -050,01,107,Alabama,Pickens County,5,7,1171,540,631,346,339,188,283,0,2,2,2,1,0,3,5,531,623,339,336,187,279,0,1,2,2,0,0,3,5,9,8,7,3,1,4,0,1,0,0,1,0,0,0 -050,01,107,Alabama,Pickens County,5,8,1341,615,726,401,388,206,332,2,1,2,0,0,0,4,5,607,718,395,384,205,329,2,1,2,0,0,0,3,4,8,8,6,4,1,3,0,0,0,0,0,0,1,1 -050,01,107,Alabama,Pickens County,5,9,1500,744,756,449,404,291,344,1,2,0,1,0,0,3,5,736,750,443,401,289,341,1,2,0,1,0,0,3,5,8,6,6,3,2,3,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,5,10,1484,720,764,435,435,282,324,2,2,0,1,0,0,1,2,712,755,430,429,279,322,2,2,0,1,0,0,1,1,8,9,5,6,3,2,0,0,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,5,11,1381,688,693,430,379,253,308,1,1,0,0,0,0,4,5,684,687,428,376,252,305,1,1,0,0,0,0,3,5,4,6,2,3,1,3,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,5,12,1182,549,633,378,427,165,199,0,0,2,3,0,2,4,2,547,630,376,426,165,198,0,0,2,2,0,2,4,2,2,3,2,1,0,1,0,0,0,1,0,0,0,0 -050,01,107,Alabama,Pickens County,5,13,1000,440,560,312,373,126,184,1,0,1,0,0,1,0,2,437,556,311,371,124,182,1,0,1,0,0,1,0,2,3,4,1,2,2,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,5,14,977,459,518,307,366,149,149,1,1,0,1,0,0,2,1,458,516,306,364,149,149,1,1,0,1,0,0,2,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,5,15,877,361,516,277,342,83,169,1,1,0,1,0,2,0,1,360,514,276,342,83,168,1,1,0,1,0,1,0,1,1,2,1,0,0,1,0,0,0,0,0,1,0,0 -050,01,107,Alabama,Pickens County,5,16,650,284,366,193,242,89,123,0,0,0,0,1,0,1,1,283,365,193,242,88,122,0,0,0,0,1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,5,17,403,118,285,86,190,32,95,0,0,0,0,0,0,0,0,118,285,86,190,32,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,5,18,402,121,281,85,158,36,122,0,0,0,1,0,0,0,0,121,281,85,158,36,122,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,5,99,20527,9726,10801,5638,5929,3984,4766,13,14,10,15,16,9,65,68,9616,10711,5571,5884,3961,4734,13,13,10,13,1,4,60,63,110,90,67,45,23,32,0,1,0,2,15,5,5,5 -050,01,107,Alabama,Pickens County,6,0,270,131,139,71,71,57,63,0,0,0,0,0,1,3,4,126,138,67,71,57,63,0,0,0,0,0,0,2,4,5,1,4,0,0,0,0,0,0,0,0,1,1,0 -050,01,107,Alabama,Pickens County,6,1,1164,579,585,281,303,284,269,0,1,3,1,1,0,10,11,566,576,270,297,283,266,0,1,3,1,0,0,10,11,13,9,11,6,1,3,0,0,0,0,1,0,0,0 -050,01,107,Alabama,Pickens County,6,2,1279,679,600,308,281,365,314,0,0,0,0,1,0,5,5,674,596,306,279,363,312,0,0,0,0,0,0,5,5,5,4,2,2,2,2,0,0,0,0,1,0,0,0 -050,01,107,Alabama,Pickens County,6,3,1546,771,775,337,373,424,391,1,0,0,1,0,0,9,10,761,770,334,370,418,389,1,0,0,1,0,0,8,10,10,5,3,3,6,2,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,6,4,1546,773,773,351,331,414,433,1,1,0,0,1,0,6,8,765,765,348,328,411,430,1,1,0,0,0,0,5,6,8,8,3,3,3,3,0,0,0,0,1,0,1,2 -050,01,107,Alabama,Pickens County,6,5,1250,606,644,282,263,303,375,2,2,0,1,8,1,11,2,588,639,273,261,303,373,2,2,0,1,0,0,10,2,18,5,9,2,0,2,0,0,0,0,8,1,1,0 -050,01,107,Alabama,Pickens County,6,6,985,470,515,265,259,196,253,0,0,0,1,8,2,1,0,452,505,256,253,195,251,0,0,0,1,0,0,1,0,18,10,9,6,1,2,0,0,0,0,8,2,0,0 -050,01,107,Alabama,Pickens County,6,7,1137,507,630,319,333,182,287,0,2,2,2,1,0,3,6,499,623,312,330,182,284,0,1,2,2,0,0,3,6,8,7,7,3,0,3,0,1,0,0,1,0,0,0 -050,01,107,Alabama,Pickens County,6,8,1273,587,686,383,369,197,311,2,2,2,0,0,0,3,4,578,678,375,365,196,308,2,2,2,0,0,0,3,3,9,8,8,4,1,3,0,0,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,6,9,1473,728,745,440,399,283,337,1,2,0,1,0,0,4,6,720,739,434,396,281,334,1,2,0,1,0,0,4,6,8,6,6,3,2,3,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,6,10,1516,731,785,446,444,282,336,2,2,0,1,0,0,1,2,723,777,441,439,279,334,2,2,0,1,0,0,1,1,8,8,5,5,3,2,0,0,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,6,11,1403,706,697,425,392,275,299,1,1,0,0,0,0,5,5,702,691,423,389,274,296,1,1,0,0,0,0,4,5,4,6,2,3,1,3,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,6,12,1233,578,655,399,421,172,229,1,0,2,2,0,1,4,2,576,652,397,420,172,227,1,0,2,2,0,1,4,2,2,3,2,1,0,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,6,13,1000,437,563,326,381,109,179,1,0,1,0,0,1,0,2,434,559,325,379,107,177,1,0,1,0,0,1,0,2,3,4,1,2,2,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,6,14,982,463,519,300,358,160,157,1,2,0,1,0,0,2,1,461,517,299,356,159,157,1,2,0,1,0,0,2,1,2,2,1,2,1,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,6,15,844,354,490,266,332,86,154,1,1,0,1,0,2,1,0,353,488,265,332,86,153,1,1,0,1,0,1,1,0,1,2,1,0,0,1,0,0,0,0,0,1,0,0 -050,01,107,Alabama,Pickens County,6,16,682,295,387,203,251,90,135,0,0,0,0,1,0,1,1,293,387,203,251,88,135,0,0,0,0,1,0,1,1,2,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,6,17,426,145,281,103,188,41,92,0,0,0,0,0,0,1,1,145,281,103,188,41,92,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,6,18,371,110,261,75,143,35,117,0,0,0,1,0,0,0,0,110,261,75,143,35,117,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,6,99,20380,9650,10730,5580,5892,3955,4731,14,16,10,13,21,8,70,70,9526,10642,5506,5847,3930,4698,14,15,10,13,1,3,65,66,124,88,74,45,25,33,0,1,0,0,20,5,5,4 -050,01,107,Alabama,Pickens County,7,0,280,158,122,84,62,71,53,0,0,1,0,1,2,1,5,152,119,80,61,70,53,0,0,1,0,0,0,1,5,6,3,4,1,1,0,0,0,0,0,1,2,0,0 -050,01,107,Alabama,Pickens County,7,1,1077,552,525,264,284,274,230,0,0,2,1,2,1,10,9,538,517,253,278,273,229,0,0,2,1,0,0,10,9,14,8,11,6,1,1,0,0,0,0,2,1,0,0 -050,01,107,Alabama,Pickens County,7,2,1282,642,640,312,294,319,335,1,0,1,3,1,1,8,7,634,632,308,288,316,334,1,0,1,3,0,0,8,7,8,8,4,6,3,1,0,0,0,0,1,1,0,0 -050,01,107,Alabama,Pickens County,7,3,1503,752,751,323,364,420,375,1,0,0,1,0,0,8,11,742,745,317,360,416,373,1,0,0,1,0,0,8,11,10,6,6,4,4,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,7,4,1478,759,719,349,316,406,395,0,1,2,1,1,1,1,5,751,709,344,312,404,392,0,1,2,1,0,0,1,3,8,10,5,4,2,3,0,0,0,0,1,1,0,2 -050,01,107,Alabama,Pickens County,7,5,1205,579,626,296,255,259,364,2,2,2,0,9,2,11,3,556,618,285,251,259,362,2,2,1,0,0,0,9,3,23,8,11,4,0,2,0,0,1,0,9,2,2,0 -050,01,107,Alabama,Pickens County,7,6,1014,496,518,279,247,203,261,1,0,0,3,10,5,3,2,473,506,267,241,202,260,1,0,0,3,0,0,3,2,23,12,12,6,1,1,0,0,0,0,10,5,0,0 -050,01,107,Alabama,Pickens County,7,7,1120,514,606,310,328,199,268,1,3,0,1,2,2,2,4,499,596,298,322,198,267,1,2,0,1,0,0,2,4,15,10,12,6,1,1,0,1,0,0,2,2,0,0 -050,01,107,Alabama,Pickens County,7,8,1225,552,673,368,365,182,305,0,1,1,0,1,0,0,2,542,665,360,361,181,302,0,1,1,0,0,0,0,1,10,8,8,4,1,3,0,0,0,0,1,0,0,1 -050,01,107,Alabama,Pickens County,7,9,1434,687,747,416,395,266,344,1,1,1,2,0,0,3,5,677,743,410,392,262,343,1,1,1,2,0,0,3,5,10,4,6,3,4,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,7,10,1542,760,782,468,433,286,344,2,2,1,1,0,0,3,2,752,772,463,426,283,341,2,2,1,1,0,0,3,2,8,10,5,7,3,3,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,7,11,1445,728,717,443,399,280,314,3,0,0,1,0,0,2,3,725,710,440,395,280,311,3,0,0,1,0,0,2,3,3,7,3,4,0,3,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,7,12,1266,596,670,408,432,182,232,1,1,0,2,0,1,5,2,592,665,405,430,181,229,1,1,0,2,0,1,5,2,4,5,3,2,1,3,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,7,13,1022,445,577,330,395,113,177,1,1,0,1,0,1,1,2,443,574,329,394,112,175,1,1,0,1,0,1,1,2,2,3,1,1,1,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,7,14,1000,467,533,312,368,155,161,0,1,0,1,0,0,0,2,466,533,312,368,154,161,0,1,0,1,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,7,15,811,348,463,265,323,81,138,2,1,0,0,0,1,0,0,348,460,265,322,81,137,2,1,0,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,1,0,0 -050,01,107,Alabama,Pickens County,7,16,669,291,378,222,253,69,123,0,0,0,0,0,0,0,2,289,377,222,253,67,122,0,0,0,0,0,0,0,2,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,7,17,413,145,268,100,171,45,97,0,0,0,0,0,0,0,0,145,268,100,171,45,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,7,18,406,118,288,77,161,40,126,0,0,0,0,0,0,1,1,118,288,77,161,40,126,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,7,99,20192,9589,10603,5626,5845,3850,4642,16,14,11,18,27,17,59,67,9442,10497,5535,5786,3824,4614,16,13,10,18,0,2,57,64,147,106,91,59,26,28,0,1,1,0,27,15,2,3 -050,01,107,Alabama,Pickens County,8,0,246,137,109,84,60,47,42,1,0,1,0,1,2,3,5,133,106,82,59,46,42,1,0,1,0,0,0,3,5,4,3,2,1,1,0,0,0,0,0,1,2,0,0 -050,01,107,Alabama,Pickens County,8,1,1050,534,516,252,268,267,235,0,0,2,1,3,2,10,10,521,507,243,262,266,234,0,0,2,1,0,0,10,10,13,9,9,6,1,1,0,0,0,0,3,2,0,0 -050,01,107,Alabama,Pickens County,8,2,1310,657,653,328,320,319,321,1,0,1,3,1,2,7,7,648,644,323,314,316,320,1,0,1,3,0,0,7,7,9,9,5,6,3,1,0,0,0,0,1,2,0,0 -050,01,107,Alabama,Pickens County,8,3,1433,726,707,316,347,401,351,0,0,0,1,0,0,9,8,718,702,310,344,399,349,0,0,0,1,0,0,9,8,8,5,6,3,2,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,4,1439,743,696,335,295,402,393,0,0,2,2,1,1,3,5,734,687,330,291,399,390,0,0,2,1,0,0,3,5,9,9,5,4,3,3,0,0,0,1,1,1,0,0 -050,01,107,Alabama,Pickens County,8,5,1213,601,612,298,271,279,335,1,2,2,0,11,2,10,2,575,604,286,266,278,334,1,2,1,0,0,0,9,2,26,8,12,5,1,1,0,0,1,0,11,2,1,0 -050,01,107,Alabama,Pickens County,8,6,1035,496,539,279,261,203,268,1,1,2,3,11,5,0,1,472,528,266,256,203,267,1,1,2,3,0,0,0,1,24,11,13,5,0,1,0,0,0,0,11,5,0,0 -050,01,107,Alabama,Pickens County,8,7,1037,474,563,293,298,177,256,1,2,0,1,2,2,1,4,459,556,280,293,177,256,1,2,0,1,0,0,1,4,15,7,13,5,0,0,0,0,0,0,2,2,0,0 -050,01,107,Alabama,Pickens County,8,8,1196,538,658,371,380,165,274,0,1,1,0,1,0,0,3,526,653,361,376,164,273,0,1,1,0,0,0,0,3,12,5,10,4,1,1,0,0,0,0,1,0,0,0 -050,01,107,Alabama,Pickens County,8,9,1404,663,741,413,389,248,345,0,0,1,2,0,0,1,5,653,735,407,385,244,343,0,0,1,2,0,0,1,5,10,6,6,4,4,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,10,1597,801,796,491,454,303,337,2,2,2,1,0,0,3,2,789,785,484,448,299,332,2,2,1,1,0,0,3,2,12,11,7,6,4,5,0,0,1,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,11,1440,702,738,419,405,278,330,2,0,0,1,0,0,3,2,698,733,415,402,278,328,2,0,0,1,0,0,3,2,4,5,4,3,0,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,12,1342,657,685,439,432,212,249,1,2,0,1,0,1,5,0,653,679,436,430,211,245,1,2,0,1,0,1,5,0,4,6,3,2,1,4,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,13,1056,462,594,349,398,110,189,0,1,0,2,0,0,3,4,460,590,348,396,109,187,0,1,0,2,0,0,3,4,2,4,1,2,1,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,14,982,472,510,319,346,152,160,0,1,0,1,0,0,1,2,471,510,319,346,151,160,0,1,0,1,0,0,1,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,15,843,344,499,252,348,89,149,2,1,0,0,0,0,1,1,344,497,252,347,89,148,2,1,0,0,0,0,1,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,16,702,320,382,236,272,84,108,0,0,0,0,0,0,0,2,320,382,236,272,84,108,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,17,420,144,276,104,170,40,106,0,0,0,0,0,0,0,0,144,276,104,170,40,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,18,383,122,261,79,154,42,106,0,0,0,0,0,0,1,1,122,260,79,153,42,106,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,99,20128,9593,10535,5657,5868,3818,4554,12,13,14,19,31,17,61,64,9440,10434,5561,5810,3795,4528,12,13,12,18,0,1,60,64,153,101,96,58,23,26,0,0,2,1,31,16,1,0 -050,01,107,Alabama,Pickens County,9,0,259,142,117,75,57,61,52,1,0,1,0,1,3,3,5,135,113,70,56,60,52,1,0,1,0,0,0,3,5,7,4,5,1,1,0,0,0,0,0,1,3,0,0 -050,01,107,Alabama,Pickens County,9,1,946,472,474,239,254,217,208,0,0,2,1,4,2,10,9,458,466,229,248,217,208,0,0,2,1,0,0,10,9,14,8,10,6,0,0,0,0,0,0,4,2,0,0 -050,01,107,Alabama,Pickens County,9,2,1308,668,640,327,318,328,310,1,0,1,3,1,2,10,7,657,631,319,312,326,309,1,0,1,3,0,0,10,7,11,9,8,6,2,1,0,0,0,0,1,2,0,0 -050,01,107,Alabama,Pickens County,9,3,1428,741,687,339,334,391,343,0,0,0,1,0,0,11,9,733,681,333,330,389,341,0,0,0,1,0,0,11,9,8,6,6,4,2,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,4,1494,776,718,336,317,434,392,0,0,2,2,1,1,3,6,766,708,330,313,431,389,0,0,2,1,0,0,3,5,10,10,6,4,3,3,0,0,0,1,1,1,0,1 -050,01,107,Alabama,Pickens County,9,5,1184,575,609,278,282,273,320,1,2,2,0,11,2,10,3,549,601,266,277,272,319,1,2,1,0,0,0,9,3,26,8,12,5,1,1,0,0,1,0,11,2,1,0 -050,01,107,Alabama,Pickens County,9,6,1027,496,531,273,244,206,275,1,1,2,3,12,5,2,3,469,518,259,237,205,274,1,1,2,3,0,0,2,3,27,13,14,7,1,1,0,0,0,0,12,5,0,0 -050,01,107,Alabama,Pickens County,9,7,1002,450,552,279,278,167,264,1,2,0,1,2,3,1,4,433,541,264,270,167,264,1,2,0,1,0,0,1,4,17,11,15,8,0,0,0,0,0,0,2,3,0,0 -050,01,107,Alabama,Pickens County,9,8,1172,533,639,364,369,166,266,1,1,1,0,1,0,0,3,521,631,354,362,165,265,1,1,1,0,0,0,0,3,12,8,10,7,1,1,0,0,0,0,1,0,0,0 -050,01,107,Alabama,Pickens County,9,9,1364,632,732,407,386,223,340,0,0,1,2,0,0,1,4,622,727,401,382,219,339,0,0,1,2,0,0,1,4,10,5,6,4,4,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,10,1539,755,784,468,439,280,338,2,3,2,1,0,0,3,3,740,774,459,433,275,334,2,3,1,1,0,0,3,3,15,10,9,6,5,4,0,0,1,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,11,1477,729,748,442,417,282,328,2,0,0,1,0,0,3,2,725,743,438,414,282,326,2,0,0,1,0,0,3,2,4,5,4,3,0,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,12,1383,684,699,442,410,235,285,1,2,0,1,0,0,6,1,679,692,438,408,234,280,1,2,0,1,0,0,6,1,5,7,4,2,1,5,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,13,1117,495,622,368,402,124,213,0,1,0,2,0,0,3,4,492,618,367,400,122,211,0,1,0,2,0,0,3,4,3,4,1,2,2,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,14,964,441,523,303,348,136,169,0,2,0,2,1,0,1,2,439,523,303,348,135,169,0,2,0,2,0,0,1,2,2,0,0,0,1,0,0,0,0,0,1,0,0,0 -050,01,107,Alabama,Pickens County,9,15,825,349,476,245,320,101,154,2,1,0,0,0,0,1,1,349,474,245,319,101,153,2,1,0,0,0,0,1,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,16,687,296,391,220,256,76,133,0,0,0,0,0,0,0,2,295,390,220,256,75,132,0,0,0,0,0,0,0,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,17,449,168,281,130,183,37,97,0,0,0,1,0,0,1,0,168,281,130,183,37,97,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,18,364,106,258,69,139,36,118,0,0,0,0,0,0,1,1,106,257,69,138,36,118,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,99,19989,9508,10481,5604,5753,3773,4605,13,15,14,21,34,18,70,69,9336,10369,5494,5686,3748,4580,13,15,12,20,0,0,69,68,172,112,110,67,25,25,0,0,2,1,34,18,1,1 -050,01,107,Alabama,Pickens County,10,0,299,123,176,67,90,51,78,1,0,1,0,1,2,2,6,119,173,65,89,50,78,1,0,1,0,0,0,2,6,4,3,2,1,1,0,0,0,0,0,1,2,0,0 -050,01,107,Alabama,Pickens County,10,1,949,489,460,242,239,230,207,0,0,2,1,4,2,11,11,479,451,236,232,230,207,0,0,2,1,0,0,11,11,10,9,6,7,0,0,0,0,0,0,4,2,0,0 -050,01,107,Alabama,Pickens County,10,2,1304,656,648,330,318,312,317,1,0,1,3,2,2,10,8,646,639,324,312,310,316,1,0,1,3,0,0,10,8,10,9,6,6,2,1,0,0,0,0,2,2,0,0 -050,01,107,Alabama,Pickens County,10,3,1377,725,652,325,307,389,335,0,0,0,1,0,0,11,9,718,647,319,304,388,333,0,0,0,1,0,0,11,9,7,5,6,3,1,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,10,4,1440,749,691,325,309,418,373,0,0,2,1,1,1,3,7,739,682,319,305,415,370,0,0,2,1,0,0,3,6,10,9,6,4,3,3,0,0,0,0,1,1,0,1 -050,01,107,Alabama,Pickens County,10,5,1161,576,585,278,282,270,294,1,3,2,0,14,3,11,3,546,575,265,276,269,293,1,3,1,0,0,0,10,3,30,10,13,6,1,1,0,0,1,0,14,3,1,0 -050,01,107,Alabama,Pickens County,10,6,1015,476,539,249,246,207,280,1,1,2,3,15,6,2,3,445,525,234,239,206,279,1,1,2,3,0,0,2,3,31,14,15,7,1,1,0,0,0,0,15,6,0,0 -050,01,107,Alabama,Pickens County,10,7,996,453,543,274,275,173,258,1,2,0,1,3,3,2,4,435,531,259,266,173,258,1,2,0,1,0,0,2,4,18,12,15,9,0,0,0,0,0,0,3,3,0,0 -050,01,107,Alabama,Pickens County,10,8,1124,511,613,342,337,165,272,1,1,2,0,1,0,0,3,500,608,332,333,165,271,1,1,2,0,0,0,0,3,11,5,10,4,0,1,0,0,0,0,1,0,0,0 -050,01,107,Alabama,Pickens County,10,9,1340,632,708,400,382,230,321,0,0,1,2,0,0,1,3,621,703,393,378,226,320,0,0,1,2,0,0,1,3,11,5,7,4,4,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,10,10,1515,723,792,449,435,269,351,1,2,1,1,0,0,3,3,708,783,439,430,264,347,1,2,1,1,0,0,3,3,15,9,10,5,5,4,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,10,11,1503,731,772,439,423,286,346,3,0,0,1,0,0,3,2,726,767,434,420,286,344,3,0,0,1,0,0,3,2,5,5,5,3,0,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,10,12,1414,699,715,442,403,249,308,1,2,0,0,0,1,7,1,694,707,438,400,248,303,1,2,0,0,0,1,7,1,5,8,4,3,1,5,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,10,13,1172,543,629,382,406,158,217,0,1,0,2,0,0,3,3,540,623,381,404,156,213,0,1,0,2,0,0,3,3,3,6,1,2,2,4,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,10,14,979,449,530,312,350,135,173,0,2,0,2,1,1,1,2,447,530,312,350,134,173,0,2,0,2,0,1,1,2,2,0,0,0,1,0,0,0,0,0,1,0,0,0 -050,01,107,Alabama,Pickens County,10,15,844,360,484,258,331,99,151,2,1,0,0,0,0,1,1,360,482,258,330,99,150,2,1,0,0,0,0,1,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,10,16,707,292,415,218,264,74,149,0,0,0,0,0,0,0,2,291,414,218,264,73,148,0,0,0,0,0,0,0,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,10,17,455,186,269,138,177,47,91,0,0,0,1,0,0,1,0,186,269,138,177,47,91,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,10,18,357,95,262,68,144,26,117,0,0,0,0,0,0,1,1,95,261,68,143,26,117,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,10,99,19951,9468,10483,5538,5718,3788,4638,13,15,14,19,42,21,73,72,9295,10370,5432,5652,3765,4611,13,15,13,19,0,2,72,71,173,113,106,66,23,27,0,0,1,0,42,19,1,1 -050,01,107,Alabama,Pickens County,11,0,268,125,143,65,71,49,64,1,0,1,0,1,3,8,5,120,139,62,70,48,64,1,0,1,0,0,0,8,5,5,4,3,1,1,0,0,0,0,0,1,3,0,0 -050,01,107,Alabama,Pickens County,11,1,959,484,475,248,235,216,224,0,0,2,1,4,2,14,13,467,466,235,228,216,224,0,0,2,1,0,0,14,13,17,9,13,7,0,0,0,0,0,0,4,2,0,0 -050,01,107,Alabama,Pickens County,11,2,1262,642,620,315,317,311,290,1,0,1,3,2,2,12,8,633,610,310,310,309,289,1,0,1,3,0,0,12,8,9,10,5,7,2,1,0,0,0,0,2,2,0,0 -050,01,107,Alabama,Pickens County,11,3,1337,708,629,337,283,359,335,0,0,0,1,0,0,12,10,701,625,330,281,359,333,0,0,0,1,0,0,12,10,7,4,7,2,0,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,11,4,1412,720,692,323,331,391,351,0,0,2,2,1,1,3,7,710,683,317,327,388,349,0,0,2,1,0,0,3,6,10,9,6,4,3,2,0,0,0,1,1,1,0,1 -050,01,107,Alabama,Pickens County,11,5,1164,576,588,289,287,257,292,1,3,2,0,16,3,11,3,544,578,276,281,256,291,1,3,1,0,0,0,10,3,32,10,13,6,1,1,0,0,1,0,16,3,1,0 -050,01,107,Alabama,Pickens County,11,6,1048,500,548,259,248,218,286,1,1,2,3,18,7,2,3,465,532,243,240,217,285,1,1,2,3,0,0,2,3,35,16,16,8,1,1,0,0,0,0,18,7,0,0 -050,01,107,Alabama,Pickens County,11,7,1010,465,545,274,264,186,271,1,2,0,1,3,3,1,4,444,534,256,256,186,271,1,2,0,1,0,0,1,4,21,11,18,8,0,0,0,0,0,0,3,3,0,0 -050,01,107,Alabama,Pickens County,11,8,1081,487,594,322,322,161,268,1,1,2,0,1,0,0,3,476,586,313,315,160,267,1,1,2,0,0,0,0,3,11,8,9,7,1,1,0,0,0,0,1,0,0,0 -050,01,107,Alabama,Pickens County,11,9,1276,606,670,389,361,215,304,0,0,1,2,0,0,1,3,595,665,382,357,211,303,0,0,1,2,0,0,1,3,11,5,7,4,4,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,11,10,1516,725,791,457,443,261,342,1,2,3,1,0,0,3,3,708,781,447,437,256,338,1,2,1,1,0,0,3,3,17,10,10,6,5,4,0,0,2,0,0,0,0,0 -050,01,107,Alabama,Pickens County,11,11,1503,727,776,452,424,269,349,3,0,0,1,0,0,3,2,722,770,447,420,269,347,3,0,0,1,0,0,3,2,5,6,5,4,0,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,11,12,1451,726,725,435,420,283,302,1,2,0,0,0,0,7,1,720,717,430,417,282,297,1,2,0,0,0,0,7,1,6,8,5,3,1,5,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,11,13,1211,573,638,401,407,169,225,0,1,0,2,0,0,3,3,570,632,400,405,167,221,0,1,0,2,0,0,3,3,3,6,1,2,2,4,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,11,14,975,446,529,328,362,116,161,0,2,0,2,1,0,1,2,444,529,328,362,115,161,0,2,0,2,0,0,1,2,2,0,0,0,1,0,0,0,0,0,1,0,0,0 -050,01,107,Alabama,Pickens County,11,15,841,370,471,265,327,102,141,2,1,0,0,0,1,1,1,370,468,265,326,102,140,2,1,0,0,0,0,1,1,0,3,0,1,0,1,0,0,0,0,0,1,0,0 -050,01,107,Alabama,Pickens County,11,16,658,275,383,191,263,84,118,0,0,0,0,0,0,0,2,274,382,191,263,83,117,0,0,0,0,0,0,0,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,11,17,475,203,272,155,188,47,83,0,0,0,1,0,0,1,0,203,272,155,188,47,83,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,11,18,367,115,252,78,151,36,100,0,0,0,0,0,0,1,1,115,251,78,150,36,100,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,11,99,19814,9473,10341,5583,5704,3730,4506,13,15,16,20,47,22,84,74,9281,10220,5465,5633,3707,4480,13,15,13,19,0,0,83,73,192,121,118,71,23,26,0,0,3,1,47,22,1,1 -050,01,107,Alabama,Pickens County,12,0,260,122,138,59,67,56,63,1,0,1,0,1,3,4,5,118,134,57,66,55,63,1,0,1,0,0,0,4,5,4,4,2,1,1,0,0,0,0,0,1,3,0,0 -050,01,107,Alabama,Pickens County,12,1,931,471,460,226,225,224,219,0,0,2,1,4,2,15,13,459,451,218,218,224,219,0,0,2,1,0,0,15,13,12,9,8,7,0,0,0,0,0,0,4,2,0,0 -050,01,107,Alabama,Pickens County,12,2,1244,636,608,314,310,306,285,1,0,1,3,2,2,12,8,627,598,309,303,304,284,1,0,1,3,0,0,12,8,9,10,5,7,2,1,0,0,0,0,2,2,0,0 -050,01,107,Alabama,Pickens County,12,3,1336,701,635,352,298,337,326,0,0,0,1,0,0,12,10,694,630,345,295,337,324,0,0,0,1,0,0,12,10,7,5,7,3,0,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,12,4,1376,700,676,321,318,373,348,0,0,2,2,1,1,3,7,690,667,315,314,370,346,0,0,2,1,0,0,3,6,10,9,6,4,3,2,0,0,0,1,1,1,0,1 -050,01,107,Alabama,Pickens County,12,5,1147,562,585,276,282,255,294,1,3,2,0,17,3,11,3,528,575,262,276,254,293,1,3,1,0,0,0,10,3,34,10,14,6,1,1,0,0,1,0,17,3,1,0 -050,01,107,Alabama,Pickens County,12,6,1059,502,557,270,250,209,293,1,1,2,3,18,7,2,3,466,542,253,243,208,292,1,1,2,3,0,0,2,3,36,15,17,7,1,1,0,0,0,0,18,7,0,0 -050,01,107,Alabama,Pickens County,12,7,1035,481,554,281,264,194,280,1,2,0,1,3,3,2,4,459,541,262,254,194,280,1,2,0,1,0,0,2,4,22,13,19,10,0,0,0,0,0,0,3,3,0,0 -050,01,107,Alabama,Pickens County,12,8,1069,489,580,311,316,174,260,1,1,2,0,1,0,0,3,477,574,301,311,173,259,1,1,2,0,0,0,0,3,12,6,10,5,1,1,0,0,0,0,1,0,0,0 -050,01,107,Alabama,Pickens County,12,9,1240,581,659,369,359,210,295,0,0,1,2,0,0,1,3,570,653,362,354,206,294,0,0,1,2,0,0,1,3,11,6,7,5,4,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,12,10,1511,707,804,448,448,252,350,1,2,3,1,0,0,3,3,690,794,438,442,247,346,1,2,1,1,0,0,3,3,17,10,10,6,5,4,0,0,2,0,0,0,0,0 -050,01,107,Alabama,Pickens County,12,11,1509,751,758,466,409,279,346,3,0,0,1,0,0,3,2,746,752,461,405,279,344,3,0,0,1,0,0,3,2,5,6,5,4,0,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,12,12,1469,732,737,440,422,283,312,1,2,0,0,0,0,8,1,726,729,435,419,282,307,1,2,0,0,0,0,8,1,6,8,5,3,1,5,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,12,13,1224,589,635,407,398,179,231,0,1,0,2,0,0,3,3,586,629,406,396,177,227,0,1,0,2,0,0,3,3,3,6,1,2,2,4,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,12,14,990,451,539,321,366,128,166,0,2,0,2,1,1,1,2,449,539,321,366,127,166,0,2,0,2,0,1,1,2,2,0,0,0,1,0,0,0,0,0,1,0,0,0 -050,01,107,Alabama,Pickens County,12,15,846,363,483,262,343,98,137,2,1,0,0,0,1,1,1,363,480,262,342,98,136,2,1,0,0,0,0,1,1,0,3,0,1,0,1,0,0,0,0,0,1,0,0 -050,01,107,Alabama,Pickens County,12,16,640,267,373,190,258,77,113,0,0,0,0,0,0,0,2,266,372,190,258,76,112,0,0,0,0,0,0,0,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,12,17,480,202,278,160,198,41,79,0,0,0,1,0,0,1,0,202,278,160,198,41,79,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,12,18,380,121,259,79,148,41,110,0,0,0,0,0,0,1,1,121,258,79,147,41,110,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,12,99,19746,9428,10318,5552,5679,3716,4507,13,15,16,20,48,23,83,74,9237,10196,5436,5607,3693,4481,13,15,13,19,0,1,82,73,191,122,116,72,23,26,0,0,3,1,48,22,1,1 -050,01,107,Alabama,Pickens County,13,0,255,121,134,60,65,56,63,1,0,0,0,0,2,4,4,117,132,57,65,55,63,1,0,0,0,0,0,4,4,4,2,3,0,1,0,0,0,0,0,0,2,0,0 -050,01,107,Alabama,Pickens County,13,1,936,470,466,226,223,226,222,1,2,1,1,1,1,15,17,458,456,218,217,224,219,0,2,1,1,0,0,15,17,12,10,8,6,2,3,1,0,0,0,1,1,0,0 -050,01,107,Alabama,Pickens County,13,2,1245,635,610,310,310,303,285,3,2,2,4,2,1,15,8,628,600,306,303,302,283,3,2,2,4,0,0,15,8,7,10,4,7,1,2,0,0,0,0,2,1,0,0 -050,01,107,Alabama,Pickens County,13,3,1341,699,642,350,300,334,326,1,4,2,1,0,0,12,11,693,632,344,294,334,323,1,3,2,1,0,0,12,11,6,10,6,6,0,3,0,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,4,1367,693,674,315,316,369,346,2,2,3,0,0,0,4,10,688,669,310,313,369,345,2,1,3,0,0,0,4,10,5,5,5,3,0,1,0,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,5,1149,561,588,277,281,257,297,3,4,0,0,14,1,10,5,533,580,264,276,256,295,3,4,0,0,0,0,10,5,28,8,13,5,1,2,0,0,0,0,14,1,0,0 -050,01,107,Alabama,Pickens County,13,6,1051,501,550,269,250,210,291,4,1,1,2,16,3,1,3,466,539,254,243,208,290,2,1,1,2,0,0,1,3,35,11,15,7,2,1,2,0,0,0,16,3,0,0 -050,01,107,Alabama,Pickens County,13,7,1035,483,552,281,260,198,283,2,4,0,1,1,1,1,3,464,542,263,252,198,282,2,4,0,1,0,0,1,3,19,10,18,8,0,1,0,0,0,0,1,1,0,0 -050,01,107,Alabama,Pickens County,13,8,1062,490,572,307,309,172,257,3,3,5,1,0,0,3,2,481,570,298,307,172,257,3,3,5,1,0,0,3,2,9,2,9,2,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,9,1236,574,662,363,358,208,295,2,3,1,3,0,0,0,3,565,656,357,353,205,294,2,3,1,3,0,0,0,3,9,6,6,5,3,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,10,1498,701,797,444,442,250,344,2,4,2,2,0,0,3,5,686,791,433,437,247,343,2,4,1,2,0,0,3,5,15,6,11,5,3,1,0,0,1,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,11,1500,746,754,464,406,278,344,3,2,0,0,0,0,1,2,741,748,459,402,278,342,3,2,0,0,0,0,1,2,5,6,5,4,0,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,12,1467,731,736,441,421,283,310,2,3,1,2,0,0,4,0,725,729,436,418,282,306,2,3,1,2,0,0,4,0,6,7,5,3,1,4,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,13,1233,589,644,407,402,180,232,0,3,0,2,0,0,2,5,587,641,406,400,179,231,0,3,0,2,0,0,2,5,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,14,990,453,537,322,367,128,165,1,1,0,1,0,0,2,3,453,536,322,366,128,165,1,1,0,1,0,0,2,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,15,846,365,481,264,343,97,135,3,1,0,1,0,0,1,1,364,481,263,343,97,135,3,1,0,1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,16,640,269,371,190,256,77,112,1,0,0,1,0,0,1,2,268,371,189,256,77,112,1,0,0,1,0,0,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,17,475,199,276,159,196,40,78,0,0,0,0,0,0,0,2,199,276,159,196,40,78,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,18,379,121,258,80,148,41,110,0,0,0,0,0,0,0,0,121,257,80,147,41,110,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,99,19705,9401,10304,5529,5653,3707,4495,34,39,18,22,34,9,79,86,9237,10206,5418,5588,3692,4473,31,37,17,22,0,0,79,86,164,98,111,65,15,22,3,2,1,0,34,9,0,0 -050,01,109,Alabama,Pike County,1,0,384,180,204,94,113,81,85,1,1,0,0,0,0,4,5,176,199,90,108,81,85,1,1,0,0,0,0,4,5,4,5,4,5,0,0,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,1,1,1543,771,772,390,408,349,346,5,1,2,0,0,0,25,17,752,749,377,391,345,344,5,1,2,0,0,0,23,13,19,23,13,17,4,2,0,0,0,0,0,0,2,4 -050,01,109,Alabama,Pike County,1,2,1945,1036,909,544,449,465,434,12,6,0,0,0,0,15,20,1017,898,536,442,458,433,10,6,0,0,0,0,13,17,19,11,8,7,7,1,2,0,0,0,0,0,2,3 -050,01,109,Alabama,Pike County,1,3,2099,1087,1012,543,500,519,486,11,7,0,2,0,0,14,17,1076,1002,536,493,515,483,11,7,0,2,0,0,14,17,11,10,7,7,4,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,1,4,2688,1277,1411,665,804,579,580,10,10,3,4,0,1,20,12,1259,1395,653,793,574,576,10,10,3,4,0,1,19,11,18,16,12,11,5,4,0,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,1,5,3268,1505,1763,1018,1136,456,584,7,6,18,14,1,0,5,23,1471,1731,989,1114,452,576,7,6,18,14,1,0,4,21,34,32,29,22,4,8,0,0,0,0,0,0,1,2 -050,01,109,Alabama,Pike County,1,6,1973,977,996,644,547,295,432,4,6,18,5,0,0,16,6,953,984,622,537,294,431,3,6,18,5,0,0,16,5,24,12,22,10,1,1,1,0,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,1,7,1798,863,935,526,526,307,388,8,9,13,4,0,0,9,8,850,920,514,515,306,385,8,8,13,4,0,0,9,8,13,15,12,11,1,3,0,1,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,1,8,1929,931,998,558,544,352,437,8,7,1,1,0,0,12,9,922,991,549,540,352,434,8,7,1,1,0,0,12,9,9,7,9,4,0,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,1,9,2019,966,1053,613,577,335,462,6,9,4,2,0,0,8,3,958,1042,609,569,331,459,6,9,4,2,0,0,8,3,8,11,4,8,4,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,1,10,1811,862,949,556,572,286,360,9,7,0,6,1,0,10,4,858,944,554,570,284,358,9,7,0,6,1,0,10,3,4,5,2,2,2,2,0,0,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,1,11,1752,819,933,582,606,221,300,6,7,4,3,0,0,6,17,816,923,581,600,219,296,6,7,4,3,0,0,6,17,3,10,1,6,2,4,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,1,12,1472,707,765,518,549,182,200,2,9,0,1,0,1,5,5,701,756,512,542,182,198,2,9,0,1,0,1,5,5,6,9,6,7,0,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,1,13,1274,590,684,437,446,147,227,2,3,0,1,0,0,4,7,585,679,433,442,147,227,2,3,0,1,0,0,3,6,5,5,4,4,0,0,0,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,1,14,1040,457,583,317,397,134,178,2,4,0,0,0,0,4,4,454,580,315,395,133,177,2,4,0,0,0,0,4,4,3,3,2,2,1,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,1,15,870,405,465,307,327,88,127,4,1,1,2,0,1,5,7,402,462,305,325,88,127,4,1,1,2,0,1,4,6,3,3,2,2,0,0,0,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,1,16,816,310,506,228,353,74,146,2,1,1,1,0,0,5,5,309,505,227,353,74,145,2,1,1,1,0,0,5,5,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,1,17,537,161,376,126,276,35,96,0,0,0,0,0,0,0,4,161,374,126,274,35,96,0,0,0,0,0,0,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,1,18,470,129,341,94,225,34,112,1,0,0,0,0,0,0,4,129,340,94,225,34,111,1,0,0,0,0,0,0,4,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,1,99,29688,14033,15655,8760,9355,4939,5980,100,94,65,46,2,3,167,177,13849,15474,8622,9228,4904,5941,97,93,65,46,2,3,159,163,184,181,138,127,35,39,3,1,0,0,0,0,8,14 -050,01,109,Alabama,Pike County,2,0,386,181,205,94,114,82,86,1,1,0,0,0,0,4,4,177,200,90,109,82,86,1,1,0,0,0,0,4,4,4,5,4,5,0,0,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,2,1,1535,766,769,385,404,348,344,5,1,2,0,0,0,26,20,747,746,372,387,344,342,5,1,2,0,0,0,24,16,19,23,13,17,4,2,0,0,0,0,0,0,2,4 -050,01,109,Alabama,Pike County,2,2,1926,1024,902,535,444,462,431,12,6,0,0,0,0,15,21,1005,891,527,437,455,430,10,6,0,0,0,0,13,18,19,11,8,7,7,1,2,0,0,0,0,0,2,3 -050,01,109,Alabama,Pike County,2,3,2109,1091,1018,542,500,524,492,11,7,0,2,0,0,14,17,1080,1008,535,493,520,489,11,7,0,2,0,0,14,17,11,10,7,7,4,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,2,4,2699,1282,1417,667,809,582,581,10,10,3,4,0,1,20,12,1264,1401,655,798,577,577,10,10,3,4,0,1,19,11,18,16,12,11,5,4,0,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,2,5,3330,1544,1786,1022,1140,460,590,8,6,48,27,1,0,5,23,1506,1751,989,1116,456,581,8,6,48,27,1,0,4,21,38,35,33,24,4,9,0,0,0,0,0,0,1,2 -050,01,109,Alabama,Pike County,2,6,1958,971,987,639,540,294,430,4,6,19,5,0,0,15,6,947,975,617,530,293,429,3,6,19,5,0,0,15,5,24,12,22,10,1,1,1,0,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,2,7,1802,865,937,528,526,307,390,8,9,13,4,0,0,9,8,852,922,516,515,306,387,8,8,13,4,0,0,9,8,13,15,12,11,1,3,0,1,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,2,8,1917,924,993,553,540,350,436,8,7,1,1,0,0,12,9,915,986,544,536,350,433,8,7,1,1,0,0,12,9,9,7,9,4,0,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,2,9,2013,959,1054,609,576,332,464,6,9,4,2,0,0,8,3,951,1043,605,568,328,461,6,9,4,2,0,0,8,3,8,11,4,8,4,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,2,10,1813,861,952,557,573,284,362,9,7,0,6,1,0,10,4,857,947,555,571,282,360,9,7,0,6,1,0,10,3,4,5,2,2,2,2,0,0,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,2,11,1768,826,942,587,611,223,304,6,7,4,3,0,0,6,17,823,932,586,605,221,300,6,7,4,3,0,0,6,17,3,10,1,6,2,4,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,2,12,1475,709,766,519,550,182,200,2,9,0,1,0,1,6,5,703,757,513,543,182,198,2,9,0,1,0,1,6,5,6,9,6,7,0,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,2,13,1274,590,684,437,446,147,227,2,3,0,1,0,0,4,7,585,679,433,442,147,227,2,3,0,1,0,0,3,6,5,5,4,4,0,0,0,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,2,14,1028,451,577,312,392,133,177,2,4,0,0,0,0,4,4,448,574,310,390,132,176,2,4,0,0,0,0,4,4,3,3,2,2,1,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,2,15,865,402,463,303,325,88,127,4,1,1,2,0,1,6,7,399,460,301,323,88,127,4,1,1,2,0,1,5,6,3,3,2,2,0,0,0,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,2,16,815,310,505,228,351,74,147,2,1,1,1,0,0,5,5,309,504,227,351,74,146,2,1,1,1,0,0,5,5,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,2,17,544,163,381,128,280,35,97,0,0,0,0,0,0,0,4,163,379,128,278,35,97,0,0,0,0,0,0,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,2,18,491,130,361,95,245,34,112,1,0,0,0,0,0,0,4,130,360,95,245,34,111,1,0,0,0,0,0,0,4,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,2,99,29748,14049,15699,8740,9366,4941,5997,101,94,96,59,2,3,169,180,13861,15515,8598,9237,4906,5957,98,93,96,59,2,3,161,166,188,184,142,129,35,40,3,1,0,0,0,0,8,14 -050,01,109,Alabama,Pike County,3,0,427,227,200,112,103,109,93,1,1,0,0,0,0,5,3,224,199,109,102,109,93,1,1,0,0,0,0,5,3,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,3,1,1474,739,735,366,382,342,330,5,1,2,0,0,0,24,22,720,712,353,366,338,327,5,1,2,0,0,0,22,18,19,23,13,16,4,3,0,0,0,0,0,0,2,4 -050,01,109,Alabama,Pike County,3,2,1874,944,930,473,468,443,435,12,7,2,0,0,0,14,20,921,910,461,451,436,434,10,7,2,0,0,0,12,18,23,20,12,17,7,1,2,0,0,0,0,0,2,2 -050,01,109,Alabama,Pike County,3,3,2062,1101,961,549,475,523,459,14,9,1,2,0,0,14,16,1088,953,540,470,519,456,14,9,1,2,0,0,14,16,13,8,9,5,4,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,3,4,2754,1279,1475,653,855,592,589,10,9,4,7,0,1,20,14,1257,1458,639,843,585,585,10,9,4,7,0,1,19,13,22,17,14,12,7,4,0,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,3,5,3617,1699,1918,1114,1167,510,685,8,6,60,37,1,0,6,23,1654,1882,1074,1141,506,677,8,6,60,37,1,0,5,21,45,36,40,26,4,8,0,0,0,0,0,0,1,2 -050,01,109,Alabama,Pike County,3,6,1789,903,886,571,484,289,378,4,6,24,12,0,0,15,6,868,871,538,471,288,377,3,6,24,12,0,0,15,5,35,15,33,13,1,1,1,0,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,3,7,1871,897,974,564,534,303,419,8,8,13,5,0,0,9,8,881,956,549,520,302,416,8,7,13,5,0,0,9,8,16,18,15,14,1,3,0,1,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,3,8,1880,894,986,539,534,333,432,7,7,3,4,0,0,12,9,884,976,529,526,333,430,7,7,3,4,0,0,12,9,10,10,10,8,0,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,3,9,1932,935,997,568,546,349,438,6,7,4,3,0,0,8,3,924,988,561,539,345,436,6,7,4,3,0,0,8,3,11,9,7,7,4,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,3,10,1819,845,974,556,568,268,389,9,8,1,6,1,0,10,3,840,969,553,565,266,387,9,8,1,6,1,0,10,3,5,5,3,3,2,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,3,11,1753,854,899,589,589,246,284,6,6,6,3,0,0,7,17,851,890,588,583,244,281,6,6,6,3,0,0,7,17,3,9,1,6,2,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,3,12,1524,713,811,530,573,175,224,3,8,0,1,0,1,5,4,708,803,525,567,175,222,3,8,0,1,0,1,5,4,5,8,5,6,0,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,3,13,1308,611,697,433,458,172,228,2,3,0,1,0,0,4,7,606,692,429,454,172,228,2,3,0,1,0,0,3,6,5,5,4,4,0,0,0,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,3,14,1045,453,592,315,393,132,191,2,4,0,0,0,0,4,4,452,589,314,391,132,190,2,4,0,0,0,0,4,4,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,3,15,904,423,481,322,337,92,133,4,1,1,2,0,1,4,7,421,478,320,335,92,133,4,1,1,2,0,1,4,6,2,3,2,2,0,0,0,0,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,3,16,793,302,491,233,339,63,145,2,2,1,1,0,0,3,4,301,490,232,339,63,144,2,2,1,1,0,0,3,4,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,3,17,573,184,389,135,292,49,94,0,0,0,0,0,0,0,3,184,387,135,290,49,94,0,0,0,0,0,0,0,3,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,3,18,445,123,322,95,221,27,97,1,0,0,0,0,0,0,4,123,321,95,221,27,96,1,0,0,0,0,0,0,4,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,3,99,29844,14126,15718,8717,9318,5017,6043,104,93,122,84,2,3,164,177,13907,15524,8544,9174,4981,6006,101,92,122,84,2,3,157,165,219,194,173,144,36,37,3,1,0,0,0,0,7,12 -050,01,109,Alabama,Pike County,4,0,386,203,183,108,91,87,86,1,1,1,1,0,0,6,4,201,174,106,82,87,86,1,1,1,1,0,0,6,4,2,9,2,9,0,0,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,4,1,1511,781,730,387,364,360,342,4,1,5,0,0,0,25,23,763,708,375,349,356,339,4,1,5,0,0,0,23,19,18,22,12,15,4,3,0,0,0,0,0,0,2,4 -050,01,109,Alabama,Pike County,4,2,1768,858,910,436,455,394,425,10,7,3,1,0,0,15,22,834,886,422,437,388,422,8,7,3,1,0,0,13,19,24,24,14,18,6,3,2,0,0,0,0,0,2,3 -050,01,109,Alabama,Pike County,4,3,2091,1107,984,565,503,517,451,10,8,1,2,0,0,14,20,1091,971,553,494,514,447,10,8,1,2,0,0,13,20,16,13,12,9,3,4,0,0,0,0,0,0,1,0 -050,01,109,Alabama,Pike County,4,4,2641,1231,1410,633,787,565,588,8,9,6,7,0,1,19,18,1210,1395,618,776,561,585,8,9,5,7,0,1,18,17,21,15,15,11,4,3,0,0,1,0,0,0,1,1 -050,01,109,Alabama,Pike County,4,5,3720,1744,1976,1115,1143,534,754,8,8,76,48,1,0,10,23,1696,1937,1072,1114,530,746,8,8,76,48,1,0,9,21,48,39,43,29,4,8,0,0,0,0,0,0,1,2 -050,01,109,Alabama,Pike County,4,6,1618,832,786,500,437,283,321,4,6,29,15,1,1,15,6,805,767,477,420,281,320,3,6,29,15,0,0,15,6,27,19,23,17,2,1,1,0,0,0,1,1,0,0 -050,01,109,Alabama,Pike County,4,7,1894,897,997,570,540,295,437,7,7,14,5,0,0,11,8,878,978,553,525,293,434,7,6,14,5,0,0,11,8,19,19,17,15,2,3,0,1,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,4,8,1868,883,985,539,538,320,425,6,7,6,7,0,0,12,8,873,974,529,530,320,422,6,7,6,7,0,0,12,8,10,11,10,8,0,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,4,9,1918,923,995,552,534,351,447,7,8,5,3,0,0,8,3,912,983,544,525,348,444,7,8,5,3,0,0,8,3,11,12,8,9,3,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,4,10,1846,863,983,549,573,295,389,8,8,1,6,0,0,10,7,859,977,547,569,293,387,8,8,1,6,0,0,10,7,4,6,2,4,2,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,4,11,1764,834,930,547,600,269,306,7,5,4,3,0,0,7,16,831,922,546,595,267,303,7,5,4,3,0,0,7,16,3,8,1,5,2,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,4,12,1599,747,852,564,589,171,248,6,7,1,1,0,1,5,6,742,844,559,583,171,246,6,7,1,1,0,1,5,6,5,8,5,6,0,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,4,13,1304,619,685,448,452,165,221,2,3,0,2,0,0,4,7,614,680,444,448,165,221,2,3,0,2,0,0,3,6,5,5,4,4,0,0,0,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,4,14,1107,499,608,355,405,138,195,2,4,0,0,0,0,4,4,497,605,354,403,137,194,2,4,0,0,0,0,4,4,2,3,1,2,1,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,4,15,926,415,511,310,363,96,137,3,1,1,3,0,0,5,7,412,508,308,361,96,137,3,1,1,3,0,0,4,6,3,3,2,2,0,0,0,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,4,16,754,293,461,228,309,59,144,2,2,1,1,0,0,3,5,292,460,227,309,59,143,2,2,1,1,0,0,3,5,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,4,17,578,192,386,138,279,54,104,0,0,0,0,0,0,0,3,192,384,138,277,54,104,0,0,0,0,0,0,0,3,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,4,18,402,115,287,89,194,25,89,1,0,0,0,0,0,0,4,115,286,89,194,25,88,1,0,0,0,0,0,0,4,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,4,99,29695,14036,15659,8633,9156,4978,6109,96,92,154,105,2,3,173,194,13817,15439,8461,8991,4945,6068,93,91,153,105,1,2,164,182,219,220,172,165,33,41,3,1,1,0,1,1,9,12 -050,01,109,Alabama,Pike County,5,0,378,193,185,114,100,71,80,1,1,1,1,0,0,6,3,187,181,108,96,71,80,1,1,1,1,0,0,6,3,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,5,1,1567,800,767,396,379,370,366,5,1,4,0,0,1,25,20,786,734,389,354,366,363,4,1,4,0,0,0,23,16,14,33,7,25,4,3,1,0,0,0,0,1,2,4 -050,01,109,Alabama,Pike County,5,2,1727,843,884,416,449,399,407,10,6,4,2,0,0,14,20,817,864,399,434,393,403,8,6,4,2,0,0,13,19,26,20,17,15,6,4,2,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,5,3,2079,1103,976,569,486,502,461,9,8,4,3,0,1,19,17,1088,956,558,471,499,457,9,8,4,3,0,0,18,17,15,20,11,15,3,4,0,0,0,0,0,1,1,0 -050,01,109,Alabama,Pike County,5,4,2780,1332,1448,682,825,608,585,13,10,9,9,0,1,20,18,1307,1426,662,807,604,582,13,10,9,9,0,1,19,17,25,22,20,18,4,3,0,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,5,5,4030,1916,2114,1198,1255,595,768,14,9,94,59,2,0,13,23,1867,2080,1155,1232,591,759,14,9,94,59,1,0,12,21,49,34,43,23,4,9,0,0,0,0,1,0,1,2 -050,01,109,Alabama,Pike County,5,6,1486,754,732,444,386,248,313,4,5,40,19,1,2,17,7,727,709,421,369,247,310,3,5,39,19,0,0,17,6,27,23,23,17,1,3,1,0,1,0,1,2,0,1 -050,01,109,Alabama,Pike County,5,7,1927,892,1035,591,558,269,456,5,7,15,5,1,0,11,9,866,1015,568,542,267,453,5,6,15,5,0,0,11,9,26,20,23,16,2,3,0,1,0,0,1,0,0,0 -050,01,109,Alabama,Pike County,5,8,1763,848,915,527,498,299,396,5,5,7,8,0,0,10,8,838,903,517,489,299,393,5,5,7,8,0,0,10,8,10,12,10,9,0,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,5,9,1943,914,1029,530,557,364,453,6,10,6,5,0,0,8,4,904,1019,523,549,361,451,6,10,6,5,0,0,8,4,10,10,7,8,3,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,5,10,1868,878,990,569,575,287,391,9,11,1,6,1,0,11,7,870,984,563,571,285,389,9,11,1,6,1,0,11,7,8,6,6,4,2,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,5,11,1768,857,911,554,564,283,323,7,6,5,3,0,0,8,15,853,904,551,559,282,321,7,6,5,3,0,0,8,15,4,7,3,5,1,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,5,12,1637,754,883,569,621,175,244,5,10,1,1,1,0,3,7,749,874,564,614,175,242,5,10,1,1,1,0,3,7,5,9,5,7,0,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,5,13,1316,631,685,457,468,166,205,2,4,0,2,0,0,6,6,627,679,454,464,166,204,2,4,0,2,0,0,5,5,4,6,3,4,0,1,0,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,5,14,1151,533,618,383,412,143,198,2,4,0,0,1,0,4,4,532,615,382,410,143,197,2,4,0,0,1,0,4,4,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,5,15,923,392,531,291,368,92,152,3,1,1,3,0,1,5,6,390,529,289,366,92,152,3,1,1,3,0,1,5,6,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,5,16,705,297,408,236,281,55,118,2,4,1,1,0,0,3,4,296,406,235,280,55,117,2,4,1,1,0,0,3,4,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,5,17,605,203,402,147,270,55,129,0,0,0,0,0,0,1,3,203,400,147,268,55,129,0,0,0,0,0,0,1,3,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,5,18,397,99,298,84,216,14,79,1,0,0,0,0,0,0,3,99,297,84,216,14,78,1,0,0,0,0,0,0,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,5,99,30050,14239,15811,8757,9268,4995,6124,103,102,193,127,7,6,184,184,14006,15575,8569,9091,4965,6080,99,101,192,127,4,2,177,174,233,236,188,177,30,44,4,1,1,0,3,4,7,10 -050,01,109,Alabama,Pike County,6,0,389,203,186,108,110,89,71,0,0,1,2,0,0,5,3,197,181,102,105,89,71,0,0,1,2,0,0,5,3,6,5,6,5,0,0,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,6,1,1559,815,744,402,382,377,337,5,1,3,0,0,1,28,23,795,711,387,357,374,334,4,1,3,0,0,0,27,19,20,33,15,25,3,3,1,0,0,0,0,1,1,4 -050,01,109,Alabama,Pike County,6,2,1732,867,865,433,434,402,401,10,6,5,2,0,0,17,22,841,844,415,418,397,397,8,6,5,2,0,0,16,21,26,21,18,16,5,4,2,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,6,3,1984,1030,954,530,474,464,451,11,7,4,3,0,1,21,18,1012,935,516,461,461,447,11,7,4,3,0,0,20,17,18,19,14,13,3,4,0,0,0,0,0,1,1,1 -050,01,109,Alabama,Pike County,6,4,2944,1392,1552,715,903,631,607,14,10,10,12,0,1,22,19,1368,1534,696,890,627,604,14,9,10,12,0,1,21,18,24,18,19,13,4,3,0,1,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,6,5,4206,2012,2194,1251,1297,628,796,11,9,101,71,2,0,19,21,1962,2160,1207,1274,624,787,11,9,101,71,1,0,18,19,50,34,44,23,4,9,0,0,0,0,1,0,1,2 -050,01,109,Alabama,Pike County,6,6,1599,825,774,464,424,297,306,4,5,42,30,1,2,17,7,794,745,439,401,294,303,3,5,41,30,0,0,17,6,31,29,25,23,3,3,1,0,1,0,1,2,0,1 -050,01,109,Alabama,Pike County,6,7,1912,884,1028,590,548,260,459,5,7,16,5,1,0,12,9,855,1001,565,525,258,457,5,6,16,5,0,0,11,8,29,27,25,23,2,2,0,1,0,0,1,0,1,1 -050,01,109,Alabama,Pike County,6,8,1666,800,866,496,482,280,365,5,5,9,7,0,0,10,7,788,855,484,473,280,363,5,5,9,7,0,0,10,7,12,11,12,9,0,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,6,9,2013,957,1056,556,574,382,464,5,9,6,4,0,0,8,5,945,1044,547,565,379,461,5,9,6,4,0,0,8,5,12,12,9,9,3,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,6,10,1906,904,1002,586,561,296,416,9,11,2,6,0,0,11,8,895,996,580,557,293,414,9,11,2,6,0,0,11,8,9,6,6,4,3,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,6,11,1816,872,944,539,574,316,347,6,6,4,3,0,0,7,14,868,936,536,569,315,344,6,6,4,3,0,0,7,14,4,8,3,5,1,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,6,12,1658,772,886,574,618,187,252,7,7,1,1,1,1,2,7,766,878,569,611,186,251,7,7,1,1,1,1,2,7,6,8,5,7,1,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,6,13,1389,670,719,494,500,171,203,2,4,0,2,0,0,3,10,667,712,491,496,171,202,2,4,0,2,0,0,3,8,3,7,3,4,0,1,0,0,0,0,0,0,0,2 -050,01,109,Alabama,Pike County,6,14,1199,540,659,388,439,146,212,1,4,1,0,0,0,4,4,539,656,387,437,146,211,1,4,1,0,0,0,4,4,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,6,15,914,392,522,292,351,92,162,2,1,1,2,0,0,5,6,390,519,290,349,92,162,2,1,1,2,0,0,5,5,2,3,2,2,0,0,0,0,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,6,16,713,321,392,251,283,64,100,1,4,1,1,0,0,4,4,320,390,251,282,64,99,1,4,1,1,0,0,3,4,1,2,0,1,0,1,0,0,0,0,0,0,1,0 -050,01,109,Alabama,Pike County,6,17,593,188,405,141,271,46,132,0,0,0,0,0,0,1,2,188,403,141,269,46,132,0,0,0,0,0,0,1,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,6,18,401,97,304,77,212,19,89,1,0,0,0,0,0,0,3,97,303,77,212,19,88,1,0,0,0,0,0,0,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,6,99,30593,14541,16052,8887,9437,5147,6170,99,96,207,151,5,6,196,192,14287,15803,8680,9251,5115,6127,95,94,206,151,2,2,189,178,254,249,207,186,32,43,4,2,1,0,3,4,7,14 -050,01,109,Alabama,Pike County,7,0,366,181,185,96,105,77,76,0,0,1,2,0,0,7,2,170,178,87,98,76,76,0,0,1,2,0,0,6,2,11,7,9,7,1,0,0,0,0,0,0,0,1,0 -050,01,109,Alabama,Pike County,7,1,1554,846,708,424,380,388,304,3,1,3,2,2,2,26,19,826,678,411,356,386,302,2,1,3,2,0,0,24,17,20,30,13,24,2,2,1,0,0,0,2,2,2,2 -050,01,109,Alabama,Pike County,7,2,1754,883,871,435,442,421,397,5,7,6,3,0,0,16,22,851,843,410,423,415,390,5,7,6,3,0,0,15,20,32,28,25,19,6,7,0,0,0,0,0,0,1,2 -050,01,109,Alabama,Pike County,7,3,1956,1014,942,533,449,445,462,10,8,5,4,0,3,21,16,994,917,520,431,441,459,10,8,5,4,0,0,18,15,20,25,13,18,4,3,0,0,0,0,0,3,3,1 -050,01,109,Alabama,Pike County,7,4,2904,1391,1513,727,880,620,595,12,10,13,12,0,2,19,14,1367,1495,709,867,615,591,12,9,12,12,0,2,19,14,24,18,18,13,5,4,0,1,1,0,0,0,0,0 -050,01,109,Alabama,Pike County,7,5,4295,2129,2166,1308,1261,670,794,14,7,113,81,3,1,21,22,2071,2131,1263,1238,666,784,13,7,110,80,0,1,19,21,58,35,45,23,4,10,1,0,3,1,3,0,2,1 -050,01,109,Alabama,Pike County,7,6,1602,806,796,442,462,280,287,5,4,57,30,3,4,19,9,762,756,407,431,279,284,3,4,55,30,0,0,18,7,44,40,35,31,1,3,2,0,2,0,3,4,1,2 -050,01,109,Alabama,Pike County,7,7,1890,884,1006,586,529,259,453,6,8,16,9,1,0,16,7,858,980,565,509,257,451,6,5,16,9,0,0,14,6,26,26,21,20,2,2,0,3,0,0,1,0,2,1 -050,01,109,Alabama,Pike County,7,8,1687,810,877,505,475,285,374,5,5,8,15,0,1,7,7,790,865,486,467,284,371,5,5,8,15,0,0,7,7,20,12,19,8,1,3,0,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,7,9,1995,934,1061,543,585,364,456,6,9,10,5,1,0,10,6,919,1047,533,573,361,454,6,9,10,5,0,0,9,6,15,14,10,12,3,2,0,0,0,0,1,0,1,0 -050,01,109,Alabama,Pike County,7,10,1930,929,1001,590,544,317,428,8,11,3,4,1,0,10,14,921,996,584,541,315,426,8,11,3,4,1,0,10,14,8,5,6,3,2,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,7,11,1780,829,951,529,592,285,337,7,3,3,6,0,0,5,13,823,943,524,587,284,335,7,3,3,5,0,0,5,13,6,8,5,5,1,2,0,0,0,1,0,0,0,0 -050,01,109,Alabama,Pike County,7,12,1730,826,904,589,604,222,281,6,10,4,1,0,0,5,8,821,898,585,599,221,280,6,10,4,1,0,0,5,8,5,6,4,5,1,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,7,13,1447,694,753,508,544,183,196,1,4,0,3,0,0,2,6,690,750,506,542,181,195,1,4,0,3,0,0,2,6,4,3,2,2,2,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,7,14,1237,575,662,413,441,154,211,1,2,2,3,1,1,4,4,573,658,412,440,154,209,1,2,2,2,1,1,3,4,2,4,1,1,0,2,0,0,0,1,0,0,1,0 -050,01,109,Alabama,Pike County,7,15,920,391,529,279,357,105,164,3,1,0,3,0,0,4,4,391,527,279,356,105,163,3,1,0,3,0,0,4,4,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,7,16,732,349,383,275,283,69,91,2,4,0,1,0,0,3,4,348,380,275,281,69,90,2,4,0,1,0,0,2,4,1,3,0,2,0,1,0,0,0,0,0,0,1,0 -050,01,109,Alabama,Pike County,7,17,571,190,381,148,271,39,107,0,0,0,0,0,1,3,2,190,379,148,270,39,107,0,0,0,0,0,0,3,2,0,2,0,1,0,0,0,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,7,18,422,112,310,82,212,29,96,1,1,0,0,0,0,0,1,112,308,82,211,29,95,1,1,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,7,99,30772,14773,15999,9012,9416,5212,6109,95,95,244,184,12,15,198,180,14477,15729,8786,9220,5177,6062,91,91,238,181,2,4,183,171,296,270,226,196,35,47,4,4,6,3,10,11,15,9 -050,01,109,Alabama,Pike County,8,0,369,165,204,93,119,65,77,0,0,1,4,0,0,6,4,151,192,81,108,64,76,0,0,1,4,0,0,5,4,14,12,12,11,1,1,0,0,0,0,0,0,1,0 -050,01,109,Alabama,Pike County,8,1,1473,772,701,399,369,337,303,3,2,5,3,3,3,25,21,747,676,381,350,335,301,2,2,5,3,0,0,24,20,25,25,18,19,2,2,1,0,0,0,3,3,1,1 -050,01,109,Alabama,Pike County,8,2,1806,920,886,439,446,449,409,5,7,8,3,0,0,19,21,885,854,414,423,442,402,5,7,8,3,0,0,16,19,35,32,25,23,7,7,0,0,0,0,0,0,3,2 -050,01,109,Alabama,Pike County,8,3,1928,958,970,499,464,426,475,8,8,5,4,0,3,20,16,939,947,485,447,423,473,8,8,5,4,0,0,18,15,19,23,14,17,3,2,0,0,0,0,0,3,2,1 -050,01,109,Alabama,Pike County,8,4,3001,1452,1549,742,889,659,624,15,9,15,13,1,1,20,13,1425,1527,724,871,654,621,15,8,13,13,1,1,18,13,27,22,18,18,5,3,0,1,2,0,0,0,2,0 -050,01,109,Alabama,Pike County,8,5,4404,2145,2259,1310,1324,676,816,12,7,121,91,3,1,23,20,2087,2224,1265,1301,672,807,11,7,118,89,0,1,21,19,58,35,45,23,4,9,1,0,3,2,3,0,2,1 -050,01,109,Alabama,Pike County,8,6,1794,933,861,558,456,287,355,4,6,62,31,3,4,19,9,870,831,506,435,284,352,2,5,60,31,0,0,18,8,63,30,52,21,3,3,2,1,2,0,3,4,1,1 -050,01,109,Alabama,Pike County,8,7,1801,853,948,558,524,258,398,5,6,16,10,1,0,15,10,823,910,534,495,256,394,4,4,16,10,0,0,13,7,30,38,24,29,2,4,1,2,0,0,1,0,2,3 -050,01,109,Alabama,Pike County,8,8,1764,858,906,527,492,303,386,6,5,15,12,0,1,7,10,828,892,499,481,301,384,6,5,15,12,0,0,7,10,30,14,28,11,2,2,0,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,8,9,1958,907,1051,542,563,335,467,12,9,9,6,1,0,8,6,892,1040,532,556,332,464,12,9,9,5,0,0,7,6,15,11,10,7,3,3,0,0,0,1,1,0,1,0 -050,01,109,Alabama,Pike County,8,10,1939,947,992,582,541,343,422,8,11,5,5,0,0,9,13,941,986,577,538,342,419,8,11,5,5,0,0,9,13,6,6,5,3,1,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,8,11,1860,857,1003,540,598,299,384,7,3,5,6,0,0,6,12,851,997,535,594,298,383,7,3,5,5,0,0,6,12,6,6,5,4,1,1,0,0,0,1,0,0,0,0 -050,01,109,Alabama,Pike County,8,12,1755,875,880,610,596,250,267,7,7,4,1,0,0,4,9,868,873,606,591,248,266,7,7,4,1,0,0,3,8,7,7,4,5,2,1,0,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,8,13,1508,695,813,521,577,170,224,1,4,1,3,0,0,2,5,693,808,519,574,170,223,1,3,1,3,0,0,2,5,2,5,2,3,0,1,0,1,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,8,14,1271,592,679,420,450,161,215,2,3,2,3,1,1,6,7,589,674,418,449,161,212,2,3,2,2,1,1,5,7,3,5,2,1,0,3,0,0,0,1,0,0,1,0 -050,01,109,Alabama,Pike County,8,15,936,418,518,295,349,117,161,3,1,0,3,0,0,3,4,417,518,294,349,117,161,3,1,0,3,0,0,3,4,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,8,16,782,370,412,280,305,85,97,2,4,0,1,0,0,3,5,369,409,280,303,85,96,2,4,0,1,0,0,2,5,1,3,0,2,0,1,0,0,0,0,0,0,1,0 -050,01,109,Alabama,Pike County,8,17,529,171,358,141,261,26,92,0,1,0,0,0,1,4,3,170,357,140,261,26,92,0,1,0,0,0,0,4,3,1,1,1,0,0,0,0,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,8,18,431,136,295,95,199,40,94,1,1,0,0,0,0,0,1,136,292,95,198,40,92,1,1,0,0,0,0,0,1,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,8,99,31309,15024,16285,9151,9522,5286,6266,101,94,274,199,13,15,199,189,14681,16007,8885,9324,5250,6218,96,89,267,194,2,3,181,179,343,278,266,198,36,48,5,5,7,5,11,12,18,10 -050,01,109,Alabama,Pike County,9,0,402,183,219,96,123,80,91,0,0,1,1,0,0,6,4,166,203,81,108,79,90,0,0,1,1,0,0,5,4,17,16,15,15,1,1,0,0,0,0,0,0,1,0 -050,01,109,Alabama,Pike County,9,1,1390,692,698,356,392,299,274,4,2,5,3,3,3,25,24,662,677,335,376,297,272,2,2,5,3,0,0,23,24,30,21,21,16,2,2,2,0,0,0,3,3,2,0 -050,01,109,Alabama,Pike County,9,2,1842,955,887,446,438,474,414,4,6,11,4,0,0,20,25,924,850,424,410,468,407,4,6,11,4,0,0,17,23,31,37,22,28,6,7,0,0,0,0,0,0,3,2 -050,01,109,Alabama,Pike County,9,3,1874,913,961,484,452,394,480,6,8,5,4,0,3,24,14,895,942,472,439,391,478,6,8,5,4,0,0,21,13,18,19,12,13,3,2,0,0,0,0,0,3,3,1 -050,01,109,Alabama,Pike County,9,4,3202,1521,1681,793,961,671,675,18,9,17,16,1,1,21,19,1490,1657,773,941,664,672,18,8,15,16,1,1,19,19,31,24,20,20,7,3,0,1,2,0,0,0,2,0 -050,01,109,Alabama,Pike County,9,5,4507,2204,2303,1337,1334,687,831,14,9,137,106,3,1,26,22,2142,2265,1288,1308,683,823,13,9,134,104,0,1,24,20,62,38,49,26,4,8,1,0,3,2,3,0,2,2 -050,01,109,Alabama,Pike County,9,6,1952,999,953,580,496,327,399,4,6,64,38,3,4,21,10,938,918,529,472,325,395,2,5,62,38,0,0,20,8,61,35,51,24,2,4,2,1,2,0,3,4,1,2 -050,01,109,Alabama,Pike County,9,7,1658,777,881,485,481,253,374,5,6,18,8,0,1,16,11,755,842,469,453,251,370,4,4,18,8,0,0,13,7,22,39,16,28,2,4,1,2,0,0,0,1,3,4 -050,01,109,Alabama,Pike County,9,8,1814,857,957,538,518,291,402,5,4,17,21,0,1,6,11,836,948,519,512,289,400,5,4,17,21,0,0,6,11,21,9,19,6,2,2,0,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,9,9,1879,858,1021,530,561,302,440,8,7,9,5,1,0,8,8,841,1010,518,554,299,437,8,7,9,4,0,0,7,8,17,11,12,7,3,3,0,0,0,1,1,0,1,0 -050,01,109,Alabama,Pike County,9,10,1936,943,993,561,542,358,419,9,13,5,5,0,0,10,14,937,986,556,538,357,416,9,13,5,5,0,0,10,14,6,7,5,4,1,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,9,11,1914,903,1011,564,600,321,392,7,4,5,6,0,0,6,9,897,1005,559,596,320,391,7,4,5,5,0,0,6,9,6,6,5,4,1,1,0,0,0,1,0,0,0,0 -050,01,109,Alabama,Pike County,9,12,1770,845,925,573,604,256,298,6,11,4,1,2,0,4,11,839,918,569,599,254,297,6,11,4,1,2,0,4,10,6,7,4,5,2,1,0,0,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,9,13,1611,761,850,572,589,185,246,1,5,1,3,0,0,2,7,757,845,570,587,183,245,1,4,1,3,0,0,2,6,4,5,2,2,2,1,0,1,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,9,14,1266,591,675,425,451,154,209,2,3,1,3,2,1,7,8,588,670,423,450,154,206,2,3,1,2,2,1,6,8,3,5,2,1,0,3,0,0,0,1,0,0,1,0 -050,01,109,Alabama,Pike County,9,15,1000,466,534,331,371,129,155,2,1,0,3,0,0,4,4,465,533,330,371,129,154,2,1,0,3,0,0,4,4,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,9,16,803,349,454,262,320,85,126,1,3,0,1,0,0,1,4,348,451,262,318,85,125,1,3,0,1,0,0,0,4,1,3,0,2,0,1,0,0,0,0,0,0,1,0 -050,01,109,Alabama,Pike County,9,17,486,162,324,131,238,25,82,0,1,0,0,0,1,6,2,161,323,130,238,25,82,0,1,0,0,0,0,6,2,1,1,1,0,0,0,0,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,9,18,455,134,321,107,227,26,92,1,1,0,0,0,0,0,1,134,318,107,226,26,90,1,1,0,0,0,0,0,1,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,9,99,31761,15113,16648,9171,9698,5317,6399,97,99,300,228,15,16,213,208,14775,16361,8914,9496,5279,6350,91,94,293,223,5,3,193,195,338,287,257,202,38,49,6,5,7,5,10,13,20,13 -050,01,109,Alabama,Pike County,10,0,406,199,207,116,119,74,81,1,0,1,3,0,0,7,4,180,183,100,96,73,80,0,0,1,3,0,0,6,4,19,24,16,23,1,1,1,0,0,0,0,0,1,0 -050,01,109,Alabama,Pike County,10,1,1393,695,698,337,386,325,280,3,2,4,3,3,4,23,23,666,668,317,363,323,277,1,2,4,3,0,0,21,23,29,30,20,23,2,3,2,0,0,0,3,4,2,0 -050,01,109,Alabama,Pike County,10,2,1835,942,893,452,437,456,426,3,5,9,3,0,0,22,22,911,849,429,403,451,417,3,5,9,3,0,0,19,21,31,44,23,34,5,9,0,0,0,0,0,0,3,1 -050,01,109,Alabama,Pike County,10,3,1856,902,954,477,469,384,454,8,7,7,5,0,3,26,16,876,936,457,458,382,451,8,7,7,5,0,0,22,15,26,18,20,11,2,3,0,0,0,0,0,3,4,1 -050,01,109,Alabama,Pike County,10,4,3259,1568,1691,833,955,680,687,17,9,18,17,1,1,19,22,1537,1665,810,933,675,684,17,8,17,17,1,1,17,22,31,26,23,22,5,3,0,1,1,0,0,0,2,0 -050,01,109,Alabama,Pike County,10,5,4564,2255,2309,1372,1336,689,828,13,9,146,114,4,1,31,21,2187,2272,1318,1312,685,819,12,9,143,112,0,1,29,19,68,37,54,24,4,9,1,0,3,2,4,0,2,2 -050,01,109,Alabama,Pike County,10,6,2094,1081,1013,624,524,353,419,4,6,76,48,4,6,20,10,1026,975,582,499,350,415,2,5,73,48,0,0,19,8,55,38,42,25,3,4,2,1,3,0,4,6,1,2 -050,01,109,Alabama,Pike County,10,7,1616,770,846,486,441,243,380,4,5,17,7,1,1,19,12,737,809,460,415,241,376,3,3,17,7,0,0,16,8,33,37,26,26,2,4,1,2,0,0,1,1,3,4 -050,01,109,Alabama,Pike County,10,8,1811,849,962,542,529,281,399,4,3,16,21,0,1,6,9,818,942,512,511,280,398,4,3,16,21,0,0,6,9,31,20,30,18,1,1,0,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,10,9,1761,817,944,499,523,291,399,5,7,13,8,1,0,8,7,801,927,487,511,289,395,5,7,13,7,0,0,7,7,16,17,12,12,2,4,0,0,0,1,1,0,1,0 -050,01,109,Alabama,Pike County,10,10,1947,914,1033,534,564,355,434,9,14,5,5,0,0,11,16,904,1027,526,561,353,431,9,14,5,5,0,0,11,16,10,6,8,3,2,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,10,11,1970,917,1053,578,620,320,416,8,3,5,6,0,0,6,8,909,1048,571,616,319,416,8,3,5,5,0,0,6,8,8,5,7,4,1,0,0,0,0,1,0,0,0,0 -050,01,109,Alabama,Pike County,10,12,1813,900,913,574,574,306,319,11,8,4,1,1,0,4,11,894,905,571,568,304,318,11,8,4,1,1,0,3,10,6,8,3,6,2,1,0,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,10,13,1699,787,912,581,628,202,270,1,3,1,4,0,0,2,7,784,907,579,626,201,269,1,2,1,4,0,0,2,6,3,5,2,2,1,1,0,1,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,10,14,1297,627,670,460,451,154,204,2,3,2,3,2,1,7,8,625,666,459,450,154,202,2,3,2,2,2,1,6,8,2,4,1,1,0,2,0,0,0,1,0,0,1,0 -050,01,109,Alabama,Pike County,10,15,1056,496,560,346,383,144,169,2,1,0,3,0,0,4,4,495,559,345,383,144,168,2,1,0,3,0,0,4,4,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,10,16,776,311,465,229,330,79,126,0,5,0,1,0,0,3,3,309,460,229,326,79,125,0,5,0,1,0,0,1,3,2,5,0,4,0,1,0,0,0,0,0,0,2,0 -050,01,109,Alabama,Pike County,10,17,504,185,319,146,222,33,92,0,1,0,0,0,1,6,3,184,318,145,222,33,92,0,1,0,0,0,0,6,3,1,1,1,0,0,0,0,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,10,18,492,142,350,113,251,28,97,1,1,0,0,0,0,0,1,142,347,113,250,28,95,1,1,0,0,0,0,0,1,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,10,99,32149,15357,16792,9299,9742,5397,6480,96,92,324,252,17,19,224,207,14985,16463,9010,9503,5364,6428,89,87,317,247,4,3,201,195,372,329,289,239,33,52,7,5,7,5,13,16,23,12 -050,01,109,Alabama,Pike County,11,0,373,187,186,95,101,81,79,1,0,2,3,0,0,8,3,171,177,82,93,80,78,0,0,2,3,0,0,7,3,16,9,13,8,1,1,1,0,0,0,0,0,1,0 -050,01,109,Alabama,Pike County,11,1,1441,702,739,340,381,320,331,4,2,4,3,3,4,31,18,667,701,315,351,318,327,1,2,4,3,0,0,29,18,35,38,25,30,2,4,3,0,0,0,3,4,2,0 -050,01,109,Alabama,Pike County,11,2,1764,898,866,435,450,423,382,2,6,14,5,0,0,24,23,870,831,415,426,418,372,2,6,14,5,0,0,21,22,28,35,20,24,5,10,0,0,0,0,0,0,3,1 -050,01,109,Alabama,Pike County,11,3,1900,955,945,499,465,413,450,7,8,8,5,0,2,28,15,924,923,474,449,411,447,7,8,8,5,0,0,24,14,31,22,25,16,2,3,0,0,0,0,0,2,4,1 -050,01,109,Alabama,Pike County,11,4,3304,1564,1740,839,971,665,714,16,8,21,21,1,1,22,25,1532,1712,816,947,660,711,16,7,19,21,1,1,20,25,32,28,23,24,5,3,0,1,2,0,0,0,2,0 -050,01,109,Alabama,Pike County,11,5,4811,2365,2446,1427,1407,727,884,13,10,159,123,4,1,35,21,2300,2409,1376,1383,723,874,12,10,156,121,0,1,33,20,65,37,51,24,4,10,1,0,3,2,4,0,2,1 -050,01,109,Alabama,Pike County,11,6,2194,1158,1036,669,527,379,435,4,6,81,51,4,6,21,11,1089,994,614,499,375,430,2,5,78,51,0,0,20,9,69,42,55,28,4,5,2,1,3,0,4,6,1,2 -050,01,109,Alabama,Pike County,11,7,1653,778,875,477,453,259,393,3,4,17,13,2,1,20,11,743,844,452,432,255,389,2,2,17,13,0,0,17,8,35,31,25,21,4,4,1,2,0,0,2,1,3,3 -050,01,109,Alabama,Pike County,11,8,1782,833,949,522,504,287,417,3,3,15,15,0,1,6,9,802,929,493,486,285,416,3,3,15,15,0,0,6,9,31,20,29,18,2,1,0,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,11,9,1680,778,902,498,506,253,365,6,11,12,12,1,0,8,8,762,890,486,498,251,362,6,11,12,11,0,0,7,8,16,12,12,8,2,3,0,0,0,1,1,0,1,0 -050,01,109,Alabama,Pike County,11,10,1954,939,1015,545,559,368,421,9,14,6,5,0,0,11,16,928,1009,536,556,366,418,9,14,6,5,0,0,11,16,11,6,9,3,2,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,11,11,1995,931,1064,588,628,324,420,8,2,4,6,0,0,7,8,923,1060,581,625,323,420,8,2,4,5,0,0,7,8,8,4,7,3,1,0,0,0,0,1,0,0,0,0 -050,01,109,Alabama,Pike County,11,12,1825,906,919,577,573,303,324,15,10,5,1,2,0,4,11,900,912,574,568,301,323,15,10,5,1,2,0,3,10,6,7,3,5,2,1,0,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,11,13,1694,794,900,579,618,212,267,1,4,1,4,0,0,1,7,790,895,577,616,210,266,1,3,1,4,0,0,1,6,4,5,2,2,2,1,0,1,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,11,14,1324,641,683,482,481,147,187,2,3,2,3,1,1,7,8,639,678,481,480,147,184,2,3,2,2,1,1,6,8,2,5,1,1,0,3,0,0,0,1,0,0,1,0 -050,01,109,Alabama,Pike County,11,15,1105,497,608,356,413,135,187,2,1,0,3,0,0,4,4,496,607,355,413,135,186,2,1,0,3,0,0,4,4,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,11,16,750,299,451,229,323,66,117,1,7,0,1,0,0,3,3,297,446,229,319,66,116,1,7,0,1,0,0,1,3,2,5,0,4,0,1,0,0,0,0,0,0,2,0 -050,01,109,Alabama,Pike County,11,17,507,205,302,165,226,34,72,0,1,0,0,0,1,6,2,204,301,164,226,34,72,0,1,0,0,0,0,6,2,1,1,1,0,0,0,0,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,11,18,504,134,370,106,268,27,100,1,1,0,0,0,0,0,1,134,367,106,267,27,98,1,1,0,0,0,0,0,1,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,11,99,32560,15564,16996,9428,9854,5423,6545,98,101,351,274,18,18,246,204,15171,16685,9126,9634,5385,6489,90,96,343,269,4,3,223,194,393,311,302,220,38,56,8,5,8,5,14,15,23,10 -050,01,109,Alabama,Pike County,12,0,381,192,189,104,105,77,79,1,0,2,3,0,0,8,2,180,178,95,95,76,78,0,0,2,3,0,0,7,2,12,11,9,10,1,1,1,0,0,0,0,0,1,0 -050,01,109,Alabama,Pike County,12,1,1465,713,752,338,385,329,337,4,2,9,3,3,4,30,21,679,718,314,359,327,333,1,2,9,3,0,0,28,21,34,34,24,26,2,4,3,0,0,0,3,4,2,0 -050,01,109,Alabama,Pike County,12,2,1754,890,864,437,449,414,378,2,7,13,5,0,0,24,25,855,827,410,423,409,368,2,7,13,5,0,0,21,24,35,37,27,26,5,10,0,0,0,0,0,0,3,1 -050,01,109,Alabama,Pike County,12,3,1928,955,973,502,481,409,459,7,8,9,5,0,4,28,16,920,944,473,460,407,456,7,8,9,5,0,0,24,15,35,29,29,21,2,3,0,0,0,0,0,4,4,1 -050,01,109,Alabama,Pike County,12,4,3308,1564,1744,843,969,656,720,19,8,23,21,1,1,22,25,1530,1713,819,942,651,717,19,7,20,21,1,1,20,25,34,31,24,27,5,3,0,1,3,0,0,0,2,0 -050,01,109,Alabama,Pike County,12,5,4833,2385,2448,1444,1395,724,883,13,10,165,137,4,1,35,22,2314,2408,1387,1369,720,873,12,10,162,135,0,1,33,20,71,40,57,26,4,10,1,0,3,2,4,0,2,2 -050,01,109,Alabama,Pike County,12,6,2275,1208,1067,691,544,401,447,4,6,85,53,4,6,23,11,1144,1025,642,516,397,442,2,5,82,53,0,0,21,9,64,42,49,28,4,5,2,1,3,0,4,6,2,2 -050,01,109,Alabama,Pike County,12,7,1694,775,919,485,482,247,407,3,4,18,13,2,1,20,12,737,885,456,459,244,403,2,2,18,13,0,0,17,8,38,34,29,23,3,4,1,2,0,0,2,1,3,4 -050,01,109,Alabama,Pike County,12,8,1768,825,943,522,493,284,414,3,3,10,23,0,1,6,9,800,929,499,481,282,413,3,3,10,23,0,0,6,9,25,14,23,12,2,1,0,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,12,9,1737,803,934,505,516,269,391,6,9,13,10,2,0,8,8,783,918,490,504,267,388,6,9,13,9,0,0,7,8,20,16,15,12,2,3,0,0,0,1,2,0,1,0 -050,01,109,Alabama,Pike County,12,10,1899,899,1000,533,553,340,411,9,15,6,5,0,0,11,16,888,992,524,548,338,408,9,15,6,5,0,0,11,16,11,8,9,5,2,3,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,12,11,2026,952,1074,580,624,353,434,8,2,5,6,0,0,6,8,944,1070,573,621,352,434,8,2,5,5,0,0,6,8,8,4,7,3,1,0,0,0,0,1,0,0,0,0 -050,01,109,Alabama,Pike County,12,12,1866,905,961,581,595,299,344,12,10,5,1,2,0,6,11,899,954,578,590,297,343,12,10,5,1,2,0,5,10,6,7,3,5,2,1,0,0,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,12,13,1754,844,910,601,613,239,282,1,4,1,4,0,0,2,7,840,905,599,611,237,281,1,3,1,4,0,0,2,6,4,5,2,2,2,1,0,1,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,12,14,1365,656,709,496,515,148,179,2,3,2,3,1,1,7,8,654,704,495,514,148,176,2,3,2,2,1,1,6,8,2,5,1,1,0,3,0,0,0,1,0,0,1,0 -050,01,109,Alabama,Pike County,12,15,1071,491,580,354,392,131,180,2,1,0,3,0,0,4,4,490,579,353,392,131,179,2,1,0,3,0,0,4,4,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,12,16,751,297,454,219,317,74,127,1,6,0,1,0,0,3,3,295,449,219,313,74,126,1,6,0,1,0,0,1,3,2,5,0,4,0,1,0,0,0,0,0,0,2,0 -050,01,109,Alabama,Pike County,12,17,510,206,304,167,227,33,73,0,1,0,0,0,1,6,2,205,303,166,227,33,73,0,1,0,0,0,0,6,2,1,1,1,0,0,0,0,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,12,18,514,140,374,114,273,25,99,1,1,0,0,0,0,0,1,140,371,114,272,25,97,1,1,0,0,0,0,0,1,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,12,99,32899,15700,17199,9516,9928,5452,6644,98,100,366,296,19,20,249,211,15297,16872,9206,9696,5415,6588,90,95,357,291,4,3,225,199,403,327,310,232,37,56,8,5,9,5,15,17,24,12 -050,01,109,Alabama,Pike County,13,0,382,192,190,105,105,77,79,1,0,1,3,2,0,6,3,179,180,95,95,76,79,0,0,1,3,1,0,6,3,13,10,10,10,1,0,1,0,0,0,1,0,0,0 -050,01,109,Alabama,Pike County,13,1,1462,710,752,338,384,331,338,4,2,8,2,1,6,28,20,677,714,313,357,328,333,1,2,8,2,0,1,27,19,33,38,25,27,3,5,3,0,0,0,1,5,1,1 -050,01,109,Alabama,Pike County,13,2,1749,889,860,437,449,412,377,6,7,14,6,0,1,20,20,852,822,408,422,408,368,3,7,14,6,0,0,19,19,37,38,29,27,4,9,3,0,0,0,0,1,1,1 -050,01,109,Alabama,Pike County,13,3,1934,956,978,504,484,409,461,6,9,11,5,0,4,26,15,921,947,473,460,408,458,6,8,10,5,0,1,24,15,35,31,31,24,1,3,0,1,1,0,0,3,2,0 -050,01,109,Alabama,Pike County,13,4,3298,1558,1740,837,965,654,718,19,8,25,20,1,1,22,28,1518,1707,811,938,649,715,17,5,21,20,1,1,19,28,40,33,26,27,5,3,2,3,4,0,0,0,3,0 -050,01,109,Alabama,Pike County,13,5,4847,2394,2453,1450,1399,729,891,14,10,164,133,6,1,31,19,2320,2415,1391,1372,725,881,12,10,162,133,1,0,29,19,74,38,59,27,4,10,2,0,2,0,5,1,2,0 -050,01,109,Alabama,Pike County,13,6,2291,1222,1069,696,545,404,449,8,8,83,53,6,5,25,9,1153,1028,647,518,400,445,3,5,81,52,0,0,22,8,69,41,49,27,4,4,5,3,2,1,6,5,3,1 -050,01,109,Alabama,Pike County,13,7,1704,782,922,491,484,253,410,5,6,15,12,3,1,15,9,743,893,461,461,250,408,3,3,15,12,0,0,14,9,39,29,30,23,3,2,2,3,0,0,3,1,1,0 -050,01,109,Alabama,Pike County,13,8,1758,818,940,516,490,283,412,3,8,11,23,0,1,5,6,794,924,494,477,281,412,3,6,11,23,0,0,5,6,24,16,22,13,2,0,0,2,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,13,9,1735,799,936,503,518,270,391,6,11,13,11,1,0,6,5,778,917,486,505,268,388,6,9,13,10,0,0,5,5,21,19,17,13,2,3,0,2,0,1,1,0,1,0 -050,01,109,Alabama,Pike County,13,10,1889,898,991,532,549,343,411,9,14,5,5,0,0,9,12,884,983,523,545,339,407,8,14,5,5,0,0,9,12,14,8,9,4,4,4,1,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,13,11,2028,951,1077,580,624,354,437,7,3,5,6,0,0,5,7,944,1072,573,620,354,437,7,3,5,5,0,0,5,7,7,5,7,4,0,0,0,0,0,1,0,0,0,0 -050,01,109,Alabama,Pike County,13,12,1869,907,962,584,597,302,344,11,11,5,2,1,0,4,8,902,956,581,593,300,343,11,11,5,2,1,0,4,7,5,6,3,4,2,1,0,0,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,13,13,1776,854,922,606,618,242,289,1,5,1,4,0,0,4,6,850,918,604,616,240,288,1,5,1,4,0,0,4,5,4,4,2,2,2,1,0,0,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,13,14,1364,658,706,498,516,149,179,2,3,3,2,0,0,6,6,657,703,497,515,149,178,2,3,3,1,0,0,6,6,1,3,1,1,0,1,0,0,0,1,0,0,0,0 -050,01,109,Alabama,Pike County,13,15,1081,495,586,357,394,130,181,4,2,0,4,0,0,4,5,493,584,355,394,130,179,4,2,0,4,0,0,4,5,2,2,2,0,0,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,13,16,758,302,456,221,315,76,128,1,6,0,2,0,0,4,5,299,452,219,312,76,127,1,6,0,2,0,0,3,5,3,4,2,3,0,1,0,0,0,0,0,0,1,0 -050,01,109,Alabama,Pike County,13,17,514,208,306,170,227,33,74,1,2,0,0,0,0,4,3,206,305,168,226,33,74,1,2,0,0,0,0,4,3,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,13,18,518,141,377,115,274,25,100,1,1,0,0,0,0,0,2,141,374,115,273,25,98,1,1,0,0,0,0,0,2,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,13,99,32957,15734,17223,9540,9937,5476,6669,109,116,364,293,21,20,224,188,15311,16894,9214,9699,5439,6618,90,102,355,289,4,3,209,183,423,329,326,238,37,51,19,14,9,4,17,17,15,5 -050,01,111,Alabama,Randolph County,1,0,322,165,157,110,113,50,42,1,0,1,0,0,0,3,2,158,151,104,108,49,41,1,0,1,0,0,0,3,2,7,6,6,5,1,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,1,1151,574,577,409,432,151,136,3,3,1,4,0,0,10,2,563,562,400,418,149,136,3,2,1,4,0,0,10,2,11,15,9,14,2,0,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,2,1626,809,817,541,566,256,241,5,1,4,2,0,0,3,7,790,799,526,549,253,240,4,1,4,2,0,0,3,7,19,18,15,17,3,1,1,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,3,1566,824,742,598,532,219,202,0,0,3,2,0,0,4,6,817,733,593,527,217,199,0,0,3,2,0,0,4,5,7,9,5,5,2,3,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,1,4,1613,839,774,588,525,244,245,0,1,1,0,0,0,6,3,829,766,582,519,240,243,0,1,1,0,0,0,6,3,10,8,6,6,4,2,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,5,1279,640,639,445,442,189,192,1,1,2,1,0,0,3,3,621,627,426,431,189,192,1,0,2,1,0,0,3,3,19,12,19,11,0,0,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,6,1367,694,673,537,494,153,171,1,4,2,2,0,1,1,1,680,661,523,485,153,169,1,3,2,2,0,1,1,1,14,12,14,9,0,2,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,7,1410,679,731,533,556,142,167,0,2,1,2,0,0,3,4,666,719,522,545,140,166,0,2,1,2,0,0,3,4,13,12,11,11,2,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,8,1578,748,830,604,620,136,203,2,1,3,2,0,0,3,4,739,828,595,619,136,202,2,1,3,2,0,0,3,4,9,2,9,1,0,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,9,1623,855,768,653,583,194,177,2,0,3,5,0,0,3,3,842,759,641,576,194,175,2,0,2,5,0,0,3,3,13,9,12,7,0,2,0,0,1,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,10,1518,744,774,590,587,147,182,0,2,1,1,0,0,6,2,741,771,588,584,146,182,0,2,1,1,0,0,6,2,3,3,2,3,1,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,11,1438,714,724,590,565,116,146,2,5,1,1,0,0,5,7,709,719,585,560,116,146,2,5,1,1,0,0,5,7,5,5,5,5,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,12,1182,560,622,466,509,90,109,3,0,0,1,0,0,1,3,559,618,465,505,90,109,3,0,0,1,0,0,1,3,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,13,1111,542,569,451,476,89,89,0,0,1,2,0,0,1,2,537,565,446,472,89,89,0,0,1,2,0,0,1,2,5,4,5,4,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,14,996,443,553,384,464,56,81,0,3,0,0,0,0,3,5,442,552,383,463,56,81,0,3,0,0,0,0,3,5,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,15,903,393,510,333,440,55,68,2,1,1,1,0,0,2,0,391,507,332,437,54,68,2,1,1,1,0,0,2,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,16,708,271,437,236,377,34,58,0,0,0,0,0,0,1,2,269,435,234,376,34,57,0,0,0,0,0,0,1,2,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,17,486,176,310,148,266,28,44,0,0,0,0,0,0,0,0,175,309,147,265,28,44,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,18,467,127,340,104,292,23,48,0,0,0,0,0,0,0,0,125,338,102,290,23,48,0,0,0,0,0,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,99,22344,10797,11547,8320,8839,2372,2601,22,24,25,26,0,1,58,56,10653,11419,8194,8729,2356,2587,21,21,24,26,0,1,58,55,144,128,126,110,16,14,1,3,1,0,0,0,0,1 -050,01,111,Alabama,Randolph County,2,0,325,166,159,111,114,51,43,1,0,1,0,0,0,2,2,159,153,105,109,50,42,1,0,1,0,0,0,2,2,7,6,6,5,1,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,1,1146,570,576,407,430,150,136,3,3,1,4,0,0,9,3,559,561,398,416,148,136,3,2,1,4,0,0,9,3,11,15,9,14,2,0,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,2,1620,806,814,537,563,256,241,5,1,4,2,0,0,4,7,787,796,522,546,253,240,4,1,4,2,0,0,4,7,19,18,15,17,3,1,1,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,3,1572,827,745,599,533,220,204,0,0,3,2,0,0,5,6,820,736,594,528,218,201,0,0,3,2,0,0,5,5,7,9,5,5,2,3,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,2,4,1617,843,774,590,525,246,245,0,1,1,0,0,0,6,3,833,766,584,519,242,243,0,1,1,0,0,0,6,3,10,8,6,6,4,2,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,5,1290,645,645,447,446,192,194,1,1,2,1,0,0,3,3,626,633,428,435,192,194,1,0,2,1,0,0,3,3,19,12,19,11,0,0,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,6,1358,690,668,533,489,153,171,1,4,2,2,0,1,1,1,676,656,519,480,153,169,1,3,2,2,0,1,1,1,14,12,14,9,0,2,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,7,1408,679,729,534,555,141,166,0,2,1,2,0,0,3,4,666,717,523,544,139,165,0,2,1,2,0,0,3,4,13,12,11,11,2,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,8,1572,746,826,602,617,136,202,2,1,3,2,0,0,3,4,737,824,593,616,136,201,2,1,3,2,0,0,3,4,9,2,9,1,0,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,9,1630,859,771,655,584,196,179,2,0,3,5,0,0,3,3,846,762,643,577,196,177,2,0,2,5,0,0,3,3,13,9,12,7,0,2,0,0,1,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,10,1526,748,778,593,590,148,183,0,2,1,1,0,0,6,2,745,775,591,587,147,183,0,2,1,1,0,0,6,2,3,3,2,3,1,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,11,1455,723,732,597,570,118,149,2,5,1,1,0,0,5,7,718,727,592,565,118,149,2,5,1,1,0,0,5,7,5,5,5,5,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,12,1189,564,625,469,512,91,109,3,0,0,1,0,0,1,3,563,621,468,508,91,109,3,0,0,1,0,0,1,3,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,13,1116,545,571,454,478,89,89,0,0,1,2,0,0,1,2,540,567,449,474,89,89,0,0,1,2,0,0,1,2,5,4,5,4,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,14,991,441,550,382,460,56,82,0,3,0,0,0,0,3,5,440,549,381,459,56,82,0,3,0,0,0,0,3,5,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,15,903,393,510,333,438,55,70,2,1,1,1,0,0,2,0,391,507,332,435,54,70,2,1,1,1,0,0,2,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,16,706,270,436,235,376,34,58,0,0,0,0,0,0,1,2,268,434,233,375,34,57,0,0,0,0,0,0,1,2,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,17,487,178,309,150,265,28,44,0,0,0,0,0,0,0,0,177,308,149,264,28,44,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,18,466,127,339,104,291,23,48,0,0,0,0,0,0,0,0,125,337,102,289,23,48,0,0,0,0,0,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,99,22377,10820,11557,8332,8836,2383,2613,22,24,25,26,0,1,58,57,10676,11429,8206,8726,2367,2599,21,21,24,26,0,1,58,56,144,128,126,110,16,14,1,3,1,0,0,0,0,1 -050,01,111,Alabama,Randolph County,3,0,295,163,132,118,91,41,39,1,0,1,0,0,0,2,2,155,128,111,88,40,38,1,0,1,0,0,0,2,2,8,4,7,3,1,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,1,1179,590,589,441,439,138,136,3,3,1,4,0,0,7,7,571,571,424,422,136,136,3,2,1,4,0,0,7,7,19,18,17,17,2,0,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,2,1571,784,787,541,555,229,221,5,1,4,2,0,0,5,8,758,769,519,538,226,220,4,1,4,2,0,0,5,8,26,18,22,17,3,1,1,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,3,1666,883,783,633,574,242,201,0,0,3,2,0,0,5,6,871,768,623,563,240,198,0,0,3,2,0,0,5,5,12,15,10,11,2,3,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,3,4,1544,813,731,571,505,235,222,0,1,1,0,0,0,6,3,798,723,559,499,232,220,0,1,1,0,0,0,6,3,15,8,12,6,3,2,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,5,1338,674,664,465,457,203,202,1,1,2,1,0,0,3,3,653,649,444,443,203,202,1,0,2,1,0,0,3,3,21,15,21,14,0,0,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,6,1259,634,625,492,458,138,159,1,4,2,2,0,1,1,1,621,610,479,446,138,157,1,3,2,2,0,1,1,1,13,15,13,12,0,2,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,7,1440,688,752,548,570,136,174,0,1,1,3,0,0,3,4,668,738,530,557,134,173,0,1,1,3,0,0,3,4,20,14,18,13,2,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,8,1548,742,806,602,614,132,186,2,1,3,2,0,0,3,3,726,803,586,612,132,185,2,1,3,2,0,0,3,3,16,3,16,2,0,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,9,1648,863,785,660,591,195,185,2,0,3,6,0,0,3,3,848,774,646,583,195,183,2,0,2,5,0,0,3,3,15,11,14,8,0,2,0,0,1,1,0,0,0,0 -050,01,111,Alabama,Randolph County,3,10,1544,749,795,587,608,155,182,0,2,1,1,0,0,6,2,745,792,584,605,154,182,0,2,1,1,0,0,6,2,4,3,3,3,1,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,11,1530,769,761,632,586,129,163,2,5,1,1,0,0,5,6,763,756,626,581,129,163,2,5,1,1,0,0,5,6,6,5,6,5,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,12,1201,559,642,476,533,79,105,3,0,0,1,0,0,1,3,558,636,475,527,79,105,3,0,0,1,0,0,1,3,1,6,1,6,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,13,1122,558,564,465,476,89,84,1,0,1,2,0,0,2,2,553,560,460,472,89,84,1,0,1,2,0,0,2,2,5,4,5,4,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,14,1021,459,562,393,460,63,96,0,2,0,0,0,0,3,4,458,561,392,459,63,96,0,2,0,0,0,0,3,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,15,895,378,517,319,446,54,69,2,1,1,1,0,0,2,0,376,514,318,443,53,69,2,1,1,1,0,0,2,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,16,728,299,429,264,372,34,55,0,0,0,0,0,0,1,2,297,427,262,371,34,54,0,0,0,0,0,0,1,2,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,17,480,166,314,143,270,23,44,0,0,0,0,0,0,0,0,165,313,142,269,23,44,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,18,456,116,340,99,290,17,50,0,0,0,0,0,0,0,0,114,338,97,288,17,50,0,0,0,0,0,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,99,22465,10887,11578,8449,8895,2332,2573,23,22,25,28,0,1,58,59,10698,11430,8277,8766,2317,2559,22,19,24,27,0,1,58,58,189,148,172,129,15,14,1,3,1,1,0,0,0,1 -050,01,111,Alabama,Randolph County,4,0,265,145,120,100,85,40,33,1,0,1,0,0,0,3,2,138,116,94,82,39,32,1,0,1,0,0,0,3,2,7,4,6,3,1,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,1,1192,608,584,445,421,151,149,3,3,1,4,0,0,8,7,593,562,432,400,149,149,3,2,1,4,0,0,8,7,15,22,13,21,2,0,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,2,1509,760,749,535,546,208,192,5,1,4,2,0,0,8,8,738,731,516,529,206,191,4,1,4,2,0,0,8,8,22,18,19,17,2,1,1,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,3,1672,858,814,624,603,226,203,0,0,3,1,0,0,5,7,845,796,613,588,224,201,0,0,3,1,0,0,5,6,13,18,11,15,2,2,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,4,4,1503,790,713,556,500,227,208,0,1,1,0,0,0,6,4,769,702,538,491,224,206,0,1,1,0,0,0,6,4,21,11,18,9,3,2,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,5,1397,687,710,474,476,207,229,1,1,2,1,0,0,3,3,665,695,452,462,207,229,1,0,2,1,0,0,3,3,22,15,22,14,0,0,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,6,1246,650,596,501,435,141,153,1,4,3,2,1,1,3,1,628,577,483,419,141,151,1,3,2,2,0,1,1,1,22,19,18,16,0,2,0,1,1,0,1,0,2,0 -050,01,111,Alabama,Randolph County,4,7,1401,667,734,532,561,131,165,0,1,1,3,0,0,3,4,651,720,518,548,129,164,0,1,1,3,0,0,3,4,16,14,14,13,2,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,8,1499,707,792,570,603,129,183,2,1,3,2,0,0,3,3,690,788,553,600,129,182,2,1,3,2,0,0,3,3,17,4,17,3,0,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,9,1642,842,800,659,594,174,196,3,0,3,6,0,0,3,4,826,789,644,586,174,194,3,0,2,5,0,0,3,4,16,11,15,8,0,2,0,0,1,1,0,0,0,0 -050,01,111,Alabama,Randolph County,4,10,1584,799,785,621,610,171,169,1,3,1,1,0,0,5,2,792,782,615,607,170,169,1,3,1,1,0,0,5,2,7,3,6,3,1,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,11,1519,753,766,607,599,138,154,2,5,1,1,0,0,5,7,747,762,601,595,138,154,2,5,1,1,0,0,5,7,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,12,1307,634,673,544,559,86,109,3,0,0,1,0,0,1,4,631,669,541,555,86,109,3,0,0,1,0,0,1,4,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,13,1152,563,589,474,488,85,96,1,0,1,2,0,0,2,3,558,583,469,482,85,96,1,0,1,2,0,0,2,3,5,6,5,6,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,14,1026,471,555,403,466,65,82,0,2,0,0,0,0,3,5,470,554,402,465,65,82,0,2,0,0,0,0,3,5,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,15,872,373,499,316,427,52,70,2,1,1,1,0,0,2,0,372,496,315,424,52,70,2,1,1,1,0,0,2,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,16,728,297,431,255,373,41,56,0,0,0,0,0,0,1,2,295,429,253,372,41,55,0,0,0,0,0,0,1,2,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,17,521,192,329,166,284,26,45,0,0,0,0,0,0,0,0,191,328,165,283,26,45,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,18,429,113,316,94,269,19,47,0,0,0,0,0,0,0,0,112,314,93,267,19,47,0,0,0,0,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,99,22464,10909,11555,8476,8899,2317,2539,25,23,26,27,1,1,64,66,10711,11393,8297,8755,2304,2526,24,20,24,26,0,1,62,65,198,162,179,144,13,13,1,3,2,1,1,0,2,1 -050,01,111,Alabama,Randolph County,5,0,279,153,126,108,84,41,40,1,0,1,0,0,0,2,2,143,121,99,80,40,39,1,0,1,0,0,0,2,2,10,5,9,4,1,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,1,1129,583,546,424,391,146,136,3,2,1,4,0,0,9,13,569,531,412,376,144,136,3,2,1,4,0,0,9,13,14,15,12,15,2,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,2,1481,737,744,522,553,196,181,4,1,4,2,0,0,11,7,720,723,508,533,194,180,3,1,4,2,0,0,11,7,17,21,14,20,2,1,1,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,3,1645,867,778,637,554,221,214,0,0,2,1,0,0,7,9,851,756,623,535,219,212,0,0,2,1,0,0,7,8,16,22,14,19,2,2,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,5,4,1534,797,737,560,547,227,185,2,1,1,0,0,0,7,4,773,725,539,536,224,184,2,1,1,0,0,0,7,4,24,12,21,11,3,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,5,1362,658,704,454,467,196,231,2,1,2,1,0,0,4,4,635,689,431,453,196,231,2,0,2,1,0,0,4,4,23,15,23,14,0,0,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,6,1212,610,602,469,431,133,162,2,4,3,2,1,1,2,2,587,581,450,413,133,160,2,3,2,2,0,1,0,2,23,21,19,18,0,2,0,1,1,0,1,0,2,0 -050,01,111,Alabama,Randolph County,5,7,1343,658,685,509,521,144,156,0,1,1,4,0,0,4,3,634,666,488,504,142,155,0,1,1,3,0,0,3,3,24,19,21,17,2,1,0,0,0,1,0,0,1,0 -050,01,111,Alabama,Randolph County,5,8,1430,689,741,559,573,122,162,2,1,3,2,0,0,3,3,673,732,543,565,122,161,2,1,3,2,0,0,3,3,16,9,16,8,0,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,9,1634,816,818,655,620,151,189,3,1,4,4,0,0,3,4,800,805,640,609,151,187,3,1,3,4,0,0,3,4,16,13,15,11,0,2,0,0,1,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,10,1631,835,796,652,603,176,185,1,5,1,1,0,0,5,2,829,792,647,600,175,185,1,4,1,1,0,0,5,2,6,4,5,3,1,0,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,11,1504,736,768,588,601,138,154,2,4,1,2,0,0,7,7,730,764,582,597,138,154,2,4,1,2,0,0,7,7,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,12,1340,658,682,565,568,89,108,3,0,0,1,0,0,1,5,655,677,562,563,89,108,3,0,0,1,0,0,1,5,3,5,3,5,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,13,1212,586,626,493,513,88,107,1,0,1,3,0,0,3,3,581,621,488,508,88,107,1,0,1,3,0,0,3,3,5,5,5,5,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,14,1084,500,584,426,500,71,76,0,2,0,1,0,0,3,5,499,582,425,498,71,76,0,2,0,1,0,0,3,5,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,15,857,368,489,316,411,48,76,1,1,1,1,0,0,2,0,367,486,315,408,48,76,1,1,1,1,0,0,2,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,16,724,293,431,253,372,39,57,0,0,0,0,0,0,1,2,291,429,251,371,39,56,0,0,0,0,0,0,1,2,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,17,517,175,342,157,292,18,50,0,0,0,0,0,0,0,0,175,341,157,291,18,50,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,18,441,132,309,107,262,24,46,1,0,0,0,0,0,0,1,131,308,106,261,24,46,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,99,22359,10851,11508,8454,8863,2268,2515,28,24,26,29,1,1,74,76,10643,11329,8266,8701,2255,2503,27,21,24,28,0,1,71,75,208,179,188,162,13,12,1,3,2,1,1,0,3,1 -050,01,111,Alabama,Randolph County,6,0,265,146,119,113,79,29,38,1,0,1,0,0,0,2,2,138,109,106,70,28,37,1,0,1,0,0,0,2,2,8,10,7,9,1,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,1,1148,612,536,437,370,159,145,4,2,1,4,0,0,11,15,596,524,423,360,157,145,4,2,1,4,0,0,11,13,16,12,14,10,2,0,0,0,0,0,0,0,0,2 -050,01,111,Alabama,Randolph County,6,2,1455,748,707,550,525,178,172,5,1,4,2,0,0,11,7,731,686,537,505,176,171,4,1,4,2,0,0,10,7,17,21,13,20,2,1,1,0,0,0,0,0,1,0 -050,01,111,Alabama,Randolph County,6,3,1623,842,781,599,577,233,193,1,0,2,1,0,0,7,10,822,754,581,553,231,191,1,0,2,1,0,0,7,9,20,27,18,24,2,2,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,6,4,1566,816,750,583,555,223,190,2,1,1,0,0,0,7,4,794,736,564,542,220,189,2,1,1,0,0,0,7,4,22,14,19,13,3,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,5,1362,683,679,476,455,198,217,2,1,2,1,0,0,5,5,658,662,451,439,198,217,2,0,2,1,0,0,5,5,25,17,25,16,0,0,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,6,1201,566,635,421,452,137,174,2,3,3,2,1,1,2,3,544,610,403,430,137,172,2,2,2,2,0,1,0,3,22,25,18,22,0,2,0,1,1,0,1,0,2,0 -050,01,111,Alabama,Randolph County,6,7,1300,652,648,494,476,153,164,0,1,1,4,0,0,4,3,632,631,476,461,152,163,0,1,1,3,0,0,3,3,20,17,18,15,1,1,0,0,0,1,0,0,1,0 -050,01,111,Alabama,Randolph County,6,8,1410,675,735,541,563,125,165,2,2,4,2,0,0,3,3,655,725,522,554,125,164,2,2,3,2,0,0,3,3,20,10,19,9,0,1,0,0,1,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,9,1654,815,839,668,641,137,187,3,1,4,5,0,1,3,4,797,825,651,629,137,186,3,1,3,4,0,1,3,4,18,14,17,12,0,1,0,0,1,1,0,0,0,0 -050,01,111,Alabama,Randolph County,6,10,1632,844,788,656,611,181,169,1,4,1,1,0,0,5,3,836,785,649,608,180,169,1,4,1,1,0,0,5,3,8,3,7,3,1,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,11,1544,755,789,600,616,146,159,2,4,1,2,0,0,6,8,749,785,594,612,146,159,2,4,1,2,0,0,6,8,6,4,6,4,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,12,1416,692,724,592,601,96,117,3,0,0,1,0,0,1,5,688,719,588,596,96,117,3,0,0,1,0,0,1,5,4,5,4,5,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,13,1265,614,651,512,529,95,115,2,0,1,3,0,0,4,4,610,646,508,524,95,115,2,0,1,3,0,0,4,4,4,5,4,5,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,14,1111,508,603,439,511,66,83,0,2,0,1,0,0,3,6,507,601,438,509,66,83,0,2,0,1,0,0,3,6,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,15,894,387,507,326,430,58,74,1,1,0,1,0,0,2,1,385,504,325,427,57,74,1,1,0,1,0,0,2,1,2,3,1,3,1,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,16,712,288,424,258,359,30,63,0,0,0,0,0,0,0,2,286,422,256,358,30,62,0,0,0,0,0,0,0,2,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,17,531,181,350,153,304,27,46,0,0,0,0,0,0,1,0,181,349,153,303,27,46,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,18,436,132,304,110,257,21,46,1,0,0,0,0,0,0,1,131,303,109,256,21,46,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,99,22525,10956,11569,8528,8911,2292,2517,32,23,26,30,1,2,77,86,10740,11376,8334,8736,2279,2506,31,21,23,28,0,2,73,83,216,193,194,175,13,11,1,2,3,2,1,0,4,3 -050,01,111,Alabama,Randolph County,7,0,272,130,142,96,93,32,46,0,0,0,1,0,0,2,2,117,136,83,87,32,46,0,0,0,1,0,0,2,2,13,6,13,6,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,7,1,1148,612,536,448,353,149,158,2,1,1,3,1,0,11,21,590,516,428,335,148,158,2,1,1,3,0,0,11,19,22,20,20,18,1,0,0,0,0,0,1,0,0,2 -050,01,111,Alabama,Randolph County,7,2,1471,759,712,553,530,188,169,2,0,4,3,0,0,12,10,734,688,532,507,187,168,2,0,4,3,0,0,9,10,25,24,21,23,1,1,0,0,0,0,0,0,3,0 -050,01,111,Alabama,Randolph County,7,3,1620,824,796,581,593,236,191,1,1,1,1,0,0,5,10,807,766,564,565,236,190,1,1,1,1,0,0,5,9,17,30,17,28,0,1,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,7,4,1607,843,764,612,566,223,191,2,2,0,0,1,0,5,5,815,749,587,553,221,190,2,2,0,0,1,0,4,4,28,15,25,13,2,1,0,0,0,0,0,0,1,1 -050,01,111,Alabama,Randolph County,7,5,1330,673,657,483,450,184,200,2,3,1,0,0,0,3,4,643,639,453,433,184,199,2,3,1,0,0,0,3,4,30,18,30,17,0,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,7,6,1232,561,671,411,464,139,199,3,1,2,3,2,0,4,4,533,646,390,442,139,198,2,1,1,2,0,0,1,3,28,25,21,22,0,1,1,0,1,1,2,0,3,1 -050,01,111,Alabama,Randolph County,7,7,1330,669,661,506,481,155,168,1,3,0,5,0,1,7,3,645,640,486,463,155,167,1,3,0,4,0,1,3,2,24,21,20,18,0,1,0,0,0,1,0,0,4,1 -050,01,111,Alabama,Randolph County,7,8,1398,671,727,554,570,108,149,3,4,4,3,0,0,2,1,652,718,537,562,108,148,3,4,3,3,0,0,1,1,19,9,17,8,0,1,0,0,1,0,0,0,1,0 -050,01,111,Alabama,Randolph County,7,9,1602,775,827,640,612,125,206,4,2,2,3,0,0,4,4,760,816,625,602,125,206,4,2,2,2,0,0,4,4,15,11,15,10,0,0,0,0,0,1,0,0,0,0 -050,01,111,Alabama,Randolph County,7,10,1668,867,801,661,626,198,162,3,5,0,2,0,0,5,6,854,796,650,622,198,162,3,4,0,2,0,0,3,6,13,5,11,4,0,0,0,1,0,0,0,0,2,0 -050,01,111,Alabama,Randolph County,7,11,1550,764,786,620,613,133,158,3,5,1,3,0,0,7,7,754,780,611,607,133,158,3,5,1,3,0,0,6,7,10,6,9,6,0,0,0,0,0,0,0,0,1,0 -050,01,111,Alabama,Randolph County,7,12,1511,753,758,630,620,112,130,4,2,1,2,1,0,5,4,745,755,625,617,112,130,3,2,1,2,1,0,3,4,8,3,5,3,0,0,1,0,0,0,0,0,2,0 -050,01,111,Alabama,Randolph County,7,13,1221,592,629,496,519,84,101,4,2,1,2,1,0,6,5,589,625,493,515,84,101,4,2,1,2,1,0,6,5,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,7,14,1121,529,592,460,495,66,89,0,3,0,1,0,0,3,4,528,589,459,492,66,89,0,3,0,1,0,0,3,4,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,7,15,913,401,512,341,438,60,70,0,2,0,1,0,0,0,1,398,507,339,433,59,70,0,2,0,1,0,0,0,1,3,5,2,5,1,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,7,16,713,295,418,257,360,37,57,0,0,0,0,0,0,1,1,293,416,255,359,37,56,0,0,0,0,0,0,1,1,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,7,17,535,163,372,142,321,20,50,0,0,0,0,0,0,1,1,163,371,142,320,20,50,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,7,18,416,134,282,115,241,18,39,1,1,0,0,0,0,0,1,132,281,113,240,18,39,1,1,0,0,0,0,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,7,99,22658,11015,11643,8606,8945,2267,2533,35,37,18,33,6,1,83,94,10752,11434,8372,8754,2262,2525,33,36,16,30,3,1,66,88,263,209,234,191,5,8,2,1,2,3,3,0,17,6 -050,01,111,Alabama,Randolph County,8,0,266,129,137,92,92,33,42,0,0,0,1,0,0,4,2,120,131,83,86,33,42,0,0,0,1,0,0,4,2,9,6,9,6,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,8,1,1133,596,537,429,359,148,152,2,1,1,3,1,0,15,22,571,509,406,333,147,152,2,1,1,3,0,0,15,20,25,28,23,26,1,0,0,0,0,0,1,0,0,2 -050,01,111,Alabama,Randolph County,8,2,1523,796,727,584,540,187,172,3,1,4,3,0,0,18,11,774,700,567,514,186,172,2,0,4,3,0,0,15,11,22,27,17,26,1,0,1,1,0,0,0,0,3,0 -050,01,111,Alabama,Randolph County,8,3,1552,775,777,552,574,211,190,2,2,1,1,0,0,9,10,757,743,534,543,211,188,2,2,1,1,0,0,9,9,18,34,18,31,0,2,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,8,4,1631,826,805,599,599,218,199,2,2,0,0,0,0,7,5,793,789,568,584,217,198,2,2,0,0,0,0,6,5,33,16,31,15,1,1,0,0,0,0,0,0,1,0 -050,01,111,Alabama,Randolph County,8,5,1214,596,618,427,441,164,170,1,3,1,0,0,0,3,4,567,598,399,422,163,169,1,3,1,0,0,0,3,4,29,20,28,19,1,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,8,6,1298,606,692,440,471,155,213,3,1,2,4,2,0,4,3,575,669,416,449,155,213,2,1,1,3,0,0,1,3,31,23,24,22,0,0,1,0,1,1,2,0,3,0 -050,01,111,Alabama,Randolph County,8,7,1256,633,623,487,463,141,146,0,4,0,6,0,1,5,3,611,602,468,444,141,146,0,4,0,5,0,1,2,2,22,21,19,19,0,0,0,0,0,1,0,0,3,1 -050,01,111,Alabama,Randolph County,8,8,1441,687,754,567,591,109,153,3,4,4,3,0,0,4,3,666,742,548,579,109,153,3,4,3,3,0,0,3,3,21,12,19,12,0,0,0,0,1,0,0,0,1,0 -050,01,111,Alabama,Randolph County,8,9,1562,759,803,615,602,135,192,3,2,2,3,1,0,3,4,746,789,603,589,135,192,3,2,2,2,0,0,3,4,13,14,12,13,0,0,0,0,0,1,1,0,0,0 -050,01,111,Alabama,Randolph County,8,10,1670,871,799,670,626,193,160,3,4,0,3,0,0,5,6,858,794,660,622,193,160,3,3,0,3,0,0,2,6,13,5,10,4,0,0,0,1,0,0,0,0,3,0 -050,01,111,Alabama,Randolph County,8,11,1595,778,817,639,637,127,162,3,7,0,3,0,0,9,8,769,807,631,628,127,162,3,7,0,3,0,0,8,7,9,10,8,9,0,0,0,0,0,0,0,0,1,1 -050,01,111,Alabama,Randolph County,8,12,1568,787,781,651,623,124,149,4,2,1,2,1,0,6,5,779,778,646,620,124,149,3,2,1,2,1,0,4,5,8,3,5,3,0,0,1,0,0,0,0,0,2,0 -050,01,111,Alabama,Randolph County,8,13,1268,616,652,526,547,76,94,4,3,2,2,1,0,7,6,611,648,522,543,76,94,4,3,1,2,1,0,7,6,5,4,4,4,0,0,0,0,1,0,0,0,0,0 -050,01,111,Alabama,Randolph County,8,14,1148,561,587,485,492,70,88,1,3,0,1,0,0,5,3,559,584,483,489,70,88,1,3,0,1,0,0,5,3,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,8,15,916,399,517,344,433,52,81,1,1,1,1,0,0,1,1,397,512,342,428,52,81,1,1,1,1,0,0,1,1,2,5,2,5,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,8,16,703,267,436,235,382,31,51,0,1,0,1,0,0,1,1,266,434,234,380,31,51,0,1,0,1,0,0,1,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,8,17,537,197,340,180,298,16,39,0,0,0,1,0,0,1,2,197,338,180,297,16,39,0,0,0,1,0,0,1,1,0,2,0,1,0,0,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,8,18,414,120,294,102,247,17,45,1,1,0,0,0,0,0,1,118,293,100,246,17,45,1,1,0,0,0,0,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,8,99,22695,10999,11696,8624,9017,2207,2498,36,42,19,38,6,1,107,100,10734,11460,8390,8796,2203,2494,33,40,16,35,2,1,90,94,265,236,234,221,4,4,3,2,3,3,4,0,17,6 -050,01,111,Alabama,Randolph County,9,0,280,148,132,111,90,33,39,0,0,0,1,0,0,4,2,129,118,92,76,33,39,0,0,0,1,0,0,4,2,19,14,19,14,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,9,1,1100,553,547,422,370,114,152,2,1,1,3,1,0,13,21,537,524,408,349,113,152,2,1,1,3,0,0,13,19,16,23,14,21,1,0,0,0,0,0,1,0,0,2 -050,01,111,Alabama,Randolph County,9,2,1487,803,684,585,505,192,163,3,1,4,3,0,0,19,12,772,660,558,482,192,163,2,0,4,3,0,0,16,12,31,24,27,23,0,0,1,1,0,0,0,0,3,0 -050,01,111,Alabama,Randolph County,9,3,1569,776,793,564,588,199,191,2,2,1,1,0,0,10,11,755,754,543,552,199,189,2,2,1,1,0,0,10,10,21,39,21,36,0,2,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,9,4,1647,836,811,597,588,227,213,4,3,0,0,1,0,7,7,801,794,563,573,227,212,4,3,0,0,1,0,6,6,35,17,34,15,0,1,0,0,0,0,0,0,1,1 -050,01,111,Alabama,Randolph County,9,5,1238,612,626,442,452,164,167,2,3,1,0,0,0,3,4,580,606,411,433,163,166,2,3,1,0,0,0,3,4,32,20,31,19,1,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,9,6,1272,578,694,420,479,147,206,3,1,2,4,2,0,4,4,548,667,397,454,147,206,2,1,1,3,0,0,1,3,30,27,23,25,0,0,1,0,1,1,2,0,3,1 -050,01,111,Alabama,Randolph County,9,7,1215,642,573,493,429,143,131,1,4,0,5,0,1,5,3,615,551,469,408,143,131,1,4,0,5,0,1,2,2,27,22,24,21,0,0,0,0,0,0,0,0,3,1 -050,01,111,Alabama,Randolph County,9,8,1431,676,755,555,585,109,160,3,4,4,3,0,0,5,3,652,742,533,572,109,160,3,4,3,3,0,0,4,3,24,13,22,13,0,0,0,0,1,0,0,0,1,0 -050,01,111,Alabama,Randolph County,9,9,1517,725,792,586,596,130,186,3,2,2,2,1,1,3,5,711,779,573,584,130,186,3,2,2,1,0,1,3,5,14,13,13,12,0,0,0,0,0,1,1,0,0,0 -050,01,111,Alabama,Randolph County,9,10,1620,816,804,636,618,173,172,3,5,0,3,0,0,4,6,806,799,628,614,173,172,3,4,0,3,0,0,2,6,10,5,8,4,0,0,0,1,0,0,0,0,2,0 -050,01,111,Alabama,Randolph County,9,11,1620,808,812,659,643,137,151,3,6,0,3,0,0,9,9,798,804,650,636,137,151,3,6,0,3,0,0,8,8,10,8,9,7,0,0,0,0,0,0,0,0,1,1 -050,01,111,Alabama,Randolph County,9,12,1569,788,781,647,632,128,140,4,2,1,2,1,0,7,5,779,778,641,629,128,140,3,2,1,2,1,0,5,5,9,3,6,3,0,0,1,0,0,0,0,0,2,0 -050,01,111,Alabama,Randolph County,9,13,1354,669,685,574,570,79,102,5,3,2,2,1,0,8,8,664,681,570,566,79,102,5,3,1,2,1,0,8,8,5,4,4,4,0,0,0,0,1,0,0,0,0,0 -050,01,111,Alabama,Randolph County,9,14,1182,562,620,482,511,74,101,1,3,0,1,0,0,5,4,560,617,480,508,74,101,1,3,0,1,0,0,5,4,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,9,15,930,418,512,358,437,57,71,1,2,1,1,0,0,1,1,416,507,356,432,57,71,1,2,1,1,0,0,1,1,2,5,2,5,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,9,16,691,253,438,227,381,25,54,0,1,0,1,0,0,1,1,252,436,226,379,25,54,0,1,0,1,0,0,1,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,9,17,493,183,310,160,274,21,34,0,0,1,1,0,0,1,1,183,308,160,273,21,34,0,0,1,1,0,0,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,9,18,447,133,314,117,265,15,47,1,1,0,0,0,0,0,1,132,313,116,264,15,47,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,9,99,22662,10979,11683,8635,9013,2167,2480,41,44,20,36,7,2,109,108,10690,11438,8374,8784,2165,2476,38,42,17,34,3,2,93,100,289,245,261,229,2,4,3,2,3,2,4,0,16,8 -050,01,111,Alabama,Randolph County,10,0,278,139,139,110,94,26,42,0,0,0,1,0,0,3,2,124,124,95,79,26,42,0,0,0,1,0,0,3,2,15,15,15,15,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,10,1,1127,577,550,435,360,123,159,2,1,1,3,1,0,15,27,547,526,407,338,122,159,2,1,1,3,0,0,15,25,30,24,28,22,1,0,0,0,0,0,1,0,0,2 -050,01,111,Alabama,Randolph County,10,2,1485,792,693,566,517,197,163,3,1,4,3,0,0,22,9,761,669,539,494,197,163,2,0,4,3,0,0,19,9,31,24,27,23,0,0,1,1,0,0,0,0,3,0 -050,01,111,Alabama,Randolph County,10,3,1592,799,793,586,599,200,179,2,2,0,0,0,0,11,13,782,751,569,559,200,178,2,2,0,0,0,0,11,12,17,42,17,40,0,1,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,10,4,1666,853,813,604,576,235,227,4,3,0,0,1,0,9,7,813,796,566,560,235,227,4,3,0,0,1,0,7,6,40,17,38,16,0,0,0,0,0,0,0,0,2,1 -050,01,111,Alabama,Randolph County,10,5,1238,603,635,434,458,163,169,2,3,1,0,0,0,3,5,569,614,401,438,162,168,2,3,1,0,0,0,3,5,34,21,33,20,1,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,10,6,1280,598,682,432,479,152,194,3,1,3,4,3,0,5,4,562,656,406,455,152,194,2,1,1,3,0,0,1,3,36,26,26,24,0,0,1,0,2,1,3,0,4,1 -050,01,111,Alabama,Randolph County,10,7,1294,651,643,492,478,152,151,1,3,0,8,0,1,6,2,622,610,467,449,152,151,1,3,0,5,0,1,2,1,29,33,25,29,0,0,0,0,0,3,0,0,4,1 -050,01,111,Alabama,Randolph County,10,8,1370,658,712,526,554,121,148,3,4,3,3,0,0,5,3,637,700,506,542,121,148,3,4,3,3,0,0,4,3,21,12,20,12,0,0,0,0,0,0,0,0,1,0 -050,01,111,Alabama,Randolph County,10,9,1482,713,769,580,580,123,179,3,3,3,2,1,0,3,5,699,756,567,568,123,179,3,3,3,1,0,0,3,5,14,13,13,12,0,0,0,0,0,1,1,0,0,0 -050,01,111,Alabama,Randolph County,10,10,1634,803,831,642,652,153,166,4,5,0,3,0,0,4,5,794,827,635,648,153,166,4,5,0,3,0,0,2,5,9,4,7,4,0,0,0,0,0,0,0,0,2,0 -050,01,111,Alabama,Randolph County,10,11,1674,844,830,690,646,142,166,3,6,0,4,0,0,9,8,834,822,681,639,142,166,3,6,0,4,0,0,8,7,10,8,9,7,0,0,0,0,0,0,0,0,1,1 -050,01,111,Alabama,Randolph County,10,12,1571,785,786,642,632,130,144,4,2,1,2,1,0,7,6,775,782,635,628,130,144,3,2,1,2,1,0,5,6,10,4,7,4,0,0,1,0,0,0,0,0,2,0 -050,01,111,Alabama,Randolph County,10,13,1393,685,708,585,590,83,103,5,3,2,3,1,0,9,9,680,703,581,585,83,103,5,3,1,3,1,0,9,9,5,5,4,5,0,0,0,0,1,0,0,0,0,0 -050,01,111,Alabama,Randolph County,10,14,1204,561,643,485,529,70,107,1,2,0,1,0,0,5,4,559,639,483,525,70,107,1,2,0,1,0,0,5,4,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,10,15,993,450,543,368,465,79,74,1,2,1,1,0,0,1,1,448,539,366,461,79,74,1,2,1,1,0,0,1,1,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,10,16,710,273,437,241,367,31,67,0,1,0,1,0,0,1,1,272,435,240,365,31,67,0,1,0,1,0,0,1,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,10,17,502,183,319,163,279,18,37,0,0,1,1,0,0,1,2,183,317,163,278,18,37,0,0,1,1,0,0,1,1,0,2,0,1,0,0,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,10,18,453,132,321,115,257,15,61,2,1,0,0,0,0,0,2,131,321,114,257,15,61,2,1,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,10,99,22946,11099,11847,8696,9112,2213,2536,43,43,20,40,8,1,119,115,10792,11587,8421,8868,2211,2534,40,42,17,35,3,1,100,107,307,260,275,244,2,2,3,1,3,5,5,0,19,8 -050,01,111,Alabama,Randolph County,11,0,261,143,118,103,77,35,38,0,0,0,1,0,0,5,2,132,110,92,69,35,38,0,0,0,1,0,0,5,2,11,8,11,8,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,11,1,1140,560,580,402,377,139,172,2,1,1,3,1,0,15,27,526,544,370,343,138,172,2,1,1,3,0,0,15,25,34,36,32,34,1,0,0,0,0,0,1,0,0,2 -050,01,111,Alabama,Randolph County,11,2,1462,784,678,563,501,189,164,3,1,4,3,0,0,25,9,746,649,529,473,189,164,2,0,4,3,0,0,22,9,38,29,34,28,0,0,1,1,0,0,0,0,3,0 -050,01,111,Alabama,Randolph County,11,3,1606,813,793,601,606,198,171,2,2,0,0,0,0,12,14,791,746,579,561,198,170,2,2,0,0,0,0,12,13,22,47,22,45,0,1,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,11,4,1700,862,838,602,615,245,212,5,3,0,0,1,0,9,8,819,817,562,595,245,212,4,3,0,0,1,0,7,7,43,21,40,20,0,0,1,0,0,0,0,0,2,1 -050,01,111,Alabama,Randolph County,11,5,1199,574,625,430,444,137,173,2,3,1,0,0,0,4,5,539,602,396,422,136,172,2,3,1,0,0,0,4,5,35,23,34,22,1,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,11,6,1205,579,626,440,435,123,182,4,1,3,4,3,0,6,4,538,603,410,413,123,182,3,1,1,3,0,0,1,4,41,23,30,22,0,0,1,0,2,1,3,0,5,0 -050,01,111,Alabama,Randolph County,11,7,1254,609,645,450,477,151,154,1,3,1,8,0,1,6,2,577,619,423,454,151,154,1,3,0,6,0,1,2,1,32,26,27,23,0,0,0,0,1,2,0,0,4,1 -050,01,111,Alabama,Randolph County,11,8,1366,684,682,540,526,132,147,3,4,4,3,0,0,5,2,653,671,511,515,132,147,3,4,3,3,0,0,4,2,31,11,29,11,0,0,0,0,1,0,0,0,1,0 -050,01,111,Alabama,Randolph County,11,9,1478,710,768,575,581,125,178,3,2,3,2,1,0,3,5,694,745,560,559,125,178,3,2,3,1,0,0,3,5,16,23,15,22,0,0,0,0,0,1,1,0,0,0 -050,01,111,Alabama,Randolph County,11,10,1647,821,826,673,649,141,163,4,6,0,3,0,0,3,5,810,821,664,645,141,163,4,5,0,3,0,0,1,5,11,5,9,4,0,0,0,1,0,0,0,0,2,0 -050,01,111,Alabama,Randolph County,11,11,1666,830,836,664,659,151,159,4,6,0,4,0,0,11,8,818,829,655,653,151,159,3,6,0,4,0,0,9,7,12,7,9,6,0,0,1,0,0,0,0,0,2,1 -050,01,111,Alabama,Randolph County,11,12,1581,796,785,650,627,134,148,4,2,1,2,1,0,6,6,785,781,642,623,134,148,3,2,1,2,1,0,4,6,11,4,8,4,0,0,1,0,0,0,0,0,2,0 -050,01,111,Alabama,Randolph County,11,13,1431,686,745,589,624,79,106,6,3,2,3,1,0,9,9,681,740,585,619,79,106,6,3,1,3,1,0,9,9,5,5,4,5,0,0,0,0,1,0,0,0,0,0 -050,01,111,Alabama,Randolph County,11,14,1233,585,648,498,534,81,106,1,2,0,2,0,0,5,4,583,644,496,530,81,106,1,2,0,2,0,0,5,4,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,11,15,989,446,543,368,468,75,71,1,2,1,1,0,0,1,1,444,538,366,463,75,71,1,2,1,1,0,0,1,1,2,5,2,5,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,11,16,719,279,440,254,370,24,67,0,1,0,1,0,0,1,1,278,438,253,368,24,67,0,1,0,1,0,0,1,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,11,17,483,186,297,168,261,16,33,0,0,1,1,0,0,1,2,186,295,168,260,16,33,0,0,1,1,0,0,1,1,0,2,0,1,0,0,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,11,18,444,134,310,119,258,13,50,2,1,0,0,0,0,0,1,133,310,118,258,13,50,2,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,11,99,22864,11081,11783,8689,9089,2188,2494,47,43,22,41,8,1,127,115,10733,11502,8379,8823,2186,2492,42,41,17,37,3,1,106,108,348,281,310,266,2,2,5,2,5,4,5,0,21,7 -050,01,111,Alabama,Randolph County,12,0,262,142,120,106,78,32,39,0,0,0,1,0,0,4,2,127,111,91,69,32,39,0,0,0,1,0,0,4,2,15,9,15,9,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,12,1,1123,561,562,405,371,138,157,2,1,1,3,1,0,14,30,529,528,375,339,137,157,2,1,1,3,0,0,14,28,32,34,30,32,1,0,0,0,0,0,1,0,0,2 -050,01,111,Alabama,Randolph County,12,2,1468,774,694,560,509,181,170,3,1,4,3,0,0,26,11,734,662,524,478,181,170,2,0,4,3,0,0,23,11,40,32,36,31,0,0,1,1,0,0,0,0,3,0 -050,01,111,Alabama,Randolph County,12,3,1604,818,786,615,610,189,160,2,2,0,0,0,0,12,14,794,736,591,562,189,159,2,2,0,0,0,0,12,13,24,50,24,48,0,1,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,12,4,1689,851,838,605,616,231,211,5,3,0,0,1,0,9,8,805,819,562,598,231,211,4,3,0,0,1,0,7,7,46,19,43,18,0,0,1,0,0,0,0,0,2,1 -050,01,111,Alabama,Randolph County,12,5,1206,575,631,431,455,137,168,2,3,1,0,0,0,4,5,538,607,395,432,136,167,2,3,1,0,0,0,4,5,37,24,36,23,1,1,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,12,6,1191,571,620,436,434,119,176,4,1,3,4,3,0,6,5,532,593,408,409,119,176,3,1,1,3,0,0,1,4,39,27,28,25,0,0,1,0,2,1,3,0,5,1 -050,01,111,Alabama,Randolph County,12,7,1229,596,633,441,464,147,155,1,3,1,8,0,1,6,2,563,607,413,441,147,155,1,3,0,6,0,1,2,1,33,26,28,23,0,0,0,0,1,2,0,0,4,1 -050,01,111,Alabama,Randolph County,12,8,1345,666,679,525,526,129,144,3,4,4,3,0,0,5,2,637,666,498,513,129,144,3,4,3,3,0,0,4,2,29,13,27,13,0,0,0,0,1,0,0,0,1,0 -050,01,111,Alabama,Randolph County,12,9,1481,720,761,586,586,124,164,3,3,3,2,1,1,3,5,704,741,571,567,124,164,3,3,3,1,0,1,3,5,16,20,15,19,0,0,0,0,0,1,1,0,0,0 -050,01,111,Alabama,Randolph County,12,10,1632,791,841,651,649,133,178,4,6,0,3,0,0,3,5,778,836,640,645,133,178,4,5,0,3,0,0,1,5,13,5,11,4,0,0,0,1,0,0,0,0,2,0 -050,01,111,Alabama,Randolph County,12,11,1684,847,837,672,671,160,148,4,6,0,4,0,0,11,8,833,829,661,664,160,148,3,6,0,4,0,0,9,7,14,8,11,7,0,0,1,0,0,0,0,0,2,1 -050,01,111,Alabama,Randolph County,12,12,1584,791,793,655,631,123,152,4,2,1,2,1,0,7,6,780,789,647,627,123,152,3,2,1,2,1,0,5,6,11,4,8,4,0,0,1,0,0,0,0,0,2,0 -050,01,111,Alabama,Randolph County,12,13,1527,734,793,620,656,95,122,6,3,2,3,1,0,10,9,729,788,616,651,95,122,6,3,1,3,1,0,10,9,5,5,4,5,0,0,0,0,1,0,0,0,0,0 -050,01,111,Alabama,Randolph County,12,14,1233,592,641,506,534,80,99,1,2,0,2,0,0,5,4,590,637,504,530,80,99,1,2,0,2,0,0,5,4,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,12,15,987,457,530,381,448,73,78,1,2,1,1,0,0,1,1,455,525,379,443,73,78,1,2,1,1,0,0,1,1,2,5,2,5,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,12,16,733,302,431,271,377,30,51,0,1,0,1,0,0,1,1,301,429,270,375,30,51,0,1,0,1,0,0,1,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,12,17,494,182,312,162,269,18,40,0,0,1,1,0,0,1,2,182,310,162,268,18,40,0,0,1,1,0,0,1,1,0,2,0,1,0,0,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,12,18,441,134,307,119,255,13,49,2,1,0,0,0,0,0,2,133,307,118,255,13,49,2,1,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,12,99,22913,11104,11809,8747,9139,2152,2461,47,44,22,41,8,2,128,122,10744,11520,8425,8866,2150,2459,42,42,17,37,3,2,107,114,360,289,322,273,2,2,5,2,5,4,5,0,21,8 -050,01,111,Alabama,Randolph County,13,0,262,143,119,107,77,32,39,0,0,0,1,0,0,4,2,127,110,91,68,32,39,0,0,0,1,0,0,4,2,16,9,16,9,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,13,1,1126,561,565,404,368,140,160,2,2,1,3,0,1,14,31,528,529,374,337,137,157,2,2,1,3,0,0,14,30,33,36,30,31,3,3,0,0,0,0,0,1,0,1 -050,01,111,Alabama,Randolph County,13,2,1463,769,694,558,509,179,170,5,2,4,3,0,1,23,9,730,660,522,477,179,169,2,2,4,3,0,0,23,9,39,34,36,32,0,1,3,0,0,0,0,1,0,0 -050,01,111,Alabama,Randolph County,13,3,1609,820,789,616,610,188,160,1,4,2,0,0,0,13,15,795,738,591,561,188,159,1,3,2,0,0,0,13,15,25,51,25,49,0,1,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,13,4,1679,841,838,597,612,229,211,6,4,2,0,0,0,7,11,798,817,556,594,229,210,4,2,2,0,0,0,7,11,43,21,41,18,0,1,2,2,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,13,5,1220,583,637,432,456,139,172,5,4,1,0,0,0,6,5,543,612,396,433,138,170,3,4,1,0,0,0,5,5,40,25,36,23,1,2,2,0,0,0,0,0,1,0 -050,01,111,Alabama,Randolph County,13,6,1194,578,616,437,432,122,176,6,1,3,3,4,0,6,4,536,593,410,409,120,176,3,1,2,3,0,0,1,4,42,23,27,23,2,0,3,0,1,0,4,0,5,0 -050,01,111,Alabama,Randolph County,13,7,1237,602,635,444,464,152,159,2,5,0,6,1,0,3,1,571,610,416,442,151,157,2,5,0,5,0,0,2,1,31,25,28,22,1,2,0,0,0,1,1,0,1,0 -050,01,111,Alabama,Randolph County,13,8,1333,660,673,519,521,128,142,3,4,5,4,0,0,5,2,632,660,493,508,128,142,3,4,4,4,0,0,4,2,28,13,26,13,0,0,0,0,1,0,0,0,1,0 -050,01,111,Alabama,Randolph County,13,9,1479,718,761,584,585,125,165,5,5,3,2,0,0,1,4,701,743,567,567,125,165,5,5,3,2,0,0,1,4,17,18,17,18,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,13,10,1622,788,834,647,643,134,177,4,6,0,3,0,0,3,5,776,830,637,639,133,177,4,6,0,3,0,0,2,5,12,4,10,4,1,0,0,0,0,0,0,0,1,0 -050,01,111,Alabama,Randolph County,13,11,1674,840,834,672,670,159,148,3,6,0,4,0,0,6,6,829,825,661,662,159,148,3,6,0,4,0,0,6,5,11,9,11,8,0,0,0,0,0,0,0,0,0,1 -050,01,111,Alabama,Randolph County,13,12,1584,789,795,658,633,123,151,3,3,2,3,0,0,3,5,780,791,650,629,123,151,3,3,2,3,0,0,2,5,9,4,8,4,0,0,0,0,0,0,0,0,1,0 -050,01,111,Alabama,Randolph County,13,13,1538,735,803,623,661,97,127,4,3,1,3,0,0,10,9,732,798,620,656,97,127,4,3,1,3,0,0,10,9,3,5,3,5,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,13,14,1241,596,645,509,536,81,101,1,2,0,2,0,0,5,4,594,640,507,531,81,101,1,2,0,2,0,0,5,4,2,5,2,5,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,13,15,986,458,528,382,447,72,77,3,2,0,1,0,0,1,1,457,525,381,444,72,77,3,2,0,1,0,0,1,1,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,13,16,736,306,430,273,375,31,52,1,1,0,1,0,0,1,1,303,428,270,373,31,52,1,1,0,1,0,0,1,1,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,13,17,492,183,309,163,267,18,39,0,0,0,0,0,0,2,3,183,309,163,267,18,39,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,13,18,441,134,307,119,255,13,49,2,1,0,0,0,0,0,2,133,307,118,255,13,49,2,1,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,13,99,22916,11104,11812,8744,9121,2162,2475,56,55,24,39,5,2,113,120,10748,11525,8423,8852,2154,2465,46,52,22,38,0,0,103,118,356,287,321,269,8,10,10,3,2,1,5,2,10,2 -050,01,113,Alabama,Russell County,1,0,748,370,378,202,184,159,181,0,2,1,2,0,0,8,9,363,369,198,178,157,179,0,1,1,2,0,0,7,9,7,9,4,6,2,2,0,1,0,0,0,0,1,0 -050,01,113,Alabama,Russell County,1,1,2778,1398,1380,706,738,659,608,1,2,5,2,2,2,25,28,1371,1353,684,716,656,605,1,2,4,2,1,1,25,27,27,27,22,22,3,3,0,0,1,0,1,1,0,1 -050,01,113,Alabama,Russell County,1,2,3787,1988,1799,979,881,960,876,11,6,4,8,0,2,34,26,1944,1771,947,863,953,871,9,4,4,8,0,2,31,23,44,28,32,18,7,5,2,2,0,0,0,0,3,3 -050,01,113,Alabama,Russell County,1,3,3697,1927,1770,987,812,909,923,4,7,8,6,3,0,16,22,1887,1747,962,796,897,916,4,7,7,6,3,0,14,22,40,23,25,16,12,7,0,0,1,0,0,0,2,0 -050,01,113,Alabama,Russell County,1,4,3538,1828,1710,927,867,859,813,6,6,11,4,3,0,22,20,1785,1674,894,842,851,805,6,5,11,4,3,0,20,18,43,36,33,25,8,8,0,1,0,0,0,0,2,2 -050,01,113,Alabama,Russell County,1,5,3231,1536,1695,897,894,615,773,8,6,6,7,1,2,9,13,1498,1662,867,875,611,763,7,5,4,5,1,2,8,12,38,33,30,19,4,10,1,1,2,2,0,0,1,1 -050,01,113,Alabama,Russell County,1,6,3497,1687,1810,993,985,670,788,2,6,8,15,3,2,11,14,1650,1770,963,957,664,780,2,5,7,15,3,0,11,13,37,40,30,28,6,8,0,1,1,0,0,2,0,1 -050,01,113,Alabama,Russell County,1,7,3319,1636,1683,1023,891,585,758,5,11,7,9,3,2,13,12,1596,1650,989,870,582,748,4,11,7,9,2,2,12,10,40,33,34,21,3,10,1,0,0,0,1,0,1,2 -050,01,113,Alabama,Russell County,1,8,3768,1816,1952,1104,1061,684,856,11,10,4,12,2,2,11,11,1785,1923,1078,1042,681,848,10,10,4,11,2,2,10,10,31,29,26,19,3,8,1,0,0,1,0,0,1,1 -050,01,113,Alabama,Russell County,1,9,3771,1805,1966,1112,1058,664,880,8,11,7,8,2,0,12,9,1778,1935,1096,1036,655,875,7,10,7,6,2,0,11,8,27,31,16,22,9,5,1,1,0,2,0,0,1,1 -050,01,113,Alabama,Russell County,1,10,3408,1646,1762,977,1017,646,698,4,14,3,17,2,3,14,13,1626,1743,963,1006,643,692,2,14,3,17,2,2,13,12,20,19,14,11,3,6,2,0,0,0,0,1,1,1 -050,01,113,Alabama,Russell County,1,11,3042,1408,1634,903,966,485,628,6,7,4,17,3,1,7,15,1392,1627,889,961,484,626,5,7,4,17,3,1,7,15,16,7,14,5,1,2,1,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,1,12,2504,1145,1359,776,851,354,478,5,8,3,7,0,0,7,15,1139,1350,772,845,352,476,5,8,3,7,0,0,7,14,6,9,4,6,2,2,0,0,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,1,13,2206,1014,1192,676,784,330,396,4,4,1,4,0,0,3,4,1008,1186,672,780,329,395,4,3,0,4,0,0,3,4,6,6,4,4,1,1,0,1,1,0,0,0,0,0 -050,01,113,Alabama,Russell County,1,14,2010,883,1127,597,744,283,374,3,2,0,3,0,0,0,4,877,1120,591,737,283,374,3,2,0,3,0,0,0,4,6,7,6,7,0,0,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,1,15,1729,726,1003,496,655,225,336,0,3,0,2,0,0,5,7,721,998,492,653,224,335,0,2,0,2,0,0,5,6,5,5,4,2,1,1,0,1,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,1,16,1298,496,802,359,531,135,268,0,0,0,0,0,0,2,3,495,799,358,530,135,266,0,0,0,0,0,0,2,3,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,1,17,852,292,560,199,362,89,197,1,0,2,1,0,0,1,0,291,559,198,362,89,196,1,0,2,1,0,0,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,1,18,671,156,515,97,324,59,188,0,0,0,0,0,0,0,3,155,511,96,323,59,186,0,0,0,0,0,0,0,2,1,4,1,1,0,2,0,0,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,1,99,49854,23757,26097,14010,14605,9370,11019,79,105,74,124,24,16,200,228,23361,25747,13709,14372,9305,10936,70,96,68,119,22,12,187,212,396,350,301,233,65,83,9,9,6,5,2,4,13,16 -050,01,113,Alabama,Russell County,2,0,755,371,384,204,186,161,183,0,2,1,2,0,0,5,11,363,375,199,180,159,181,0,1,1,2,0,0,4,11,8,9,5,6,2,2,0,1,0,0,0,0,1,0 -050,01,113,Alabama,Russell County,2,1,2764,1388,1376,697,731,657,607,1,2,5,2,2,2,26,32,1361,1349,675,709,654,604,1,2,4,2,1,1,26,31,27,27,22,22,3,3,0,0,1,0,1,1,0,1 -050,01,113,Alabama,Russell County,2,2,3755,1973,1782,962,865,956,872,11,6,4,8,0,2,40,29,1929,1754,930,847,949,867,9,4,4,8,0,2,37,26,44,28,32,18,7,5,2,2,0,0,0,0,3,3 -050,01,113,Alabama,Russell County,2,3,3700,1927,1773,980,808,914,926,4,7,8,6,3,0,18,26,1887,1750,955,792,902,919,4,7,7,6,3,0,16,26,40,23,25,16,12,7,0,0,1,0,0,0,2,0 -050,01,113,Alabama,Russell County,2,4,3541,1832,1709,927,864,862,812,6,6,11,4,3,0,23,23,1789,1673,894,839,854,804,6,5,11,4,3,0,21,21,43,36,33,25,8,8,0,1,0,0,0,0,2,2 -050,01,113,Alabama,Russell County,2,5,3250,1543,1707,901,900,618,779,8,6,6,7,1,2,9,13,1505,1674,871,881,614,769,7,5,4,5,1,2,8,12,38,33,30,19,4,10,1,1,2,2,0,0,1,1 -050,01,113,Alabama,Russell County,2,6,3462,1667,1795,981,972,662,784,2,6,8,15,3,2,11,16,1630,1755,951,944,656,776,2,5,7,15,3,0,11,15,37,40,30,28,6,8,0,1,1,0,0,2,0,1 -050,01,113,Alabama,Russell County,2,7,3305,1630,1675,1020,885,582,754,5,11,7,9,3,2,13,14,1590,1642,986,864,579,744,4,11,7,9,2,2,12,12,40,33,34,21,3,10,1,0,0,0,1,0,1,2 -050,01,113,Alabama,Russell County,2,8,3740,1800,1940,1093,1051,679,854,11,10,4,12,2,2,11,11,1769,1911,1067,1032,676,846,10,10,4,11,2,2,10,10,31,29,26,19,3,8,1,0,0,1,0,0,1,1 -050,01,113,Alabama,Russell County,2,9,3770,1806,1964,1110,1055,666,881,8,11,7,8,2,0,13,9,1779,1933,1094,1033,657,876,7,10,7,6,2,0,12,8,27,31,16,22,9,5,1,1,0,2,0,0,1,1 -050,01,113,Alabama,Russell County,2,10,3415,1651,1764,978,1018,648,699,4,14,3,17,2,3,16,13,1631,1745,964,1007,645,693,2,14,3,17,2,2,15,12,20,19,14,11,3,6,2,0,0,0,0,1,1,1 -050,01,113,Alabama,Russell County,2,11,3062,1418,1644,907,969,491,635,6,7,4,17,3,1,7,15,1402,1637,893,964,490,633,5,7,4,17,3,1,7,15,16,7,14,5,1,2,1,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,2,12,2511,1147,1364,777,853,355,480,5,8,3,7,0,0,7,16,1141,1355,773,847,353,478,5,8,3,7,0,0,7,15,6,9,4,6,2,2,0,0,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,2,13,2210,1018,1192,678,784,332,396,4,4,1,4,0,0,3,4,1012,1186,674,780,331,395,4,3,0,4,0,0,3,4,6,6,4,4,1,1,0,1,1,0,0,0,0,0 -050,01,113,Alabama,Russell County,2,14,2007,883,1124,596,739,284,377,3,2,0,3,0,0,0,3,877,1117,590,732,284,377,3,2,0,3,0,0,0,3,6,7,6,7,0,0,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,2,15,1729,727,1002,495,651,227,338,0,3,0,2,0,0,5,8,722,997,491,649,226,337,0,2,0,2,0,0,5,7,5,5,4,2,1,1,0,1,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,2,16,1299,495,804,358,531,135,270,0,0,0,0,0,0,2,3,494,801,357,530,135,268,0,0,0,0,0,0,2,3,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,2,17,856,295,561,201,361,90,199,1,0,2,1,0,0,1,0,294,560,200,361,90,198,1,0,2,1,0,0,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,2,18,674,157,517,98,325,59,189,0,0,0,0,0,0,0,3,156,513,97,324,59,187,0,0,0,0,0,0,0,2,1,4,1,1,0,2,0,0,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,2,99,49805,23728,26077,13963,14548,9378,11035,79,105,74,124,24,16,210,249,23331,25727,13661,14315,9313,10952,70,96,68,119,22,12,197,233,397,350,302,233,65,83,9,9,6,5,2,4,13,16 -050,01,113,Alabama,Russell County,3,0,651,342,309,185,164,146,129,1,2,1,2,0,0,9,12,332,299,177,156,145,128,1,1,1,2,0,0,8,12,10,10,8,8,1,1,0,1,0,0,0,0,1,0 -050,01,113,Alabama,Russell County,3,1,2820,1447,1373,732,699,675,630,1,2,9,4,3,4,27,34,1408,1335,700,669,670,624,1,2,8,4,2,3,27,33,39,38,32,30,5,6,0,0,1,0,1,1,0,1 -050,01,113,Alabama,Russell County,3,2,3705,1918,1787,901,861,963,879,9,6,4,8,0,2,41,31,1862,1743,859,830,954,872,7,4,4,8,0,2,38,27,56,44,42,31,9,7,2,2,0,0,0,0,3,4 -050,01,113,Alabama,Russell County,3,3,3747,1961,1786,950,823,974,923,4,6,9,6,4,0,20,28,1914,1746,917,794,964,912,4,6,7,6,4,0,18,28,47,40,33,29,10,11,0,0,2,0,0,0,2,0 -050,01,113,Alabama,Russell County,3,4,3398,1766,1632,889,794,832,805,8,6,13,4,2,0,22,23,1740,1599,870,770,827,799,8,5,13,4,2,0,20,21,26,33,19,24,5,6,0,1,0,0,0,0,2,2 -050,01,113,Alabama,Russell County,3,5,3332,1559,1773,901,909,634,836,8,6,5,6,1,2,10,14,1510,1731,863,881,628,825,7,5,3,4,1,2,8,14,49,42,38,28,6,11,1,1,2,2,0,0,2,0 -050,01,113,Alabama,Russell County,3,6,3337,1593,1744,924,955,645,748,4,6,6,17,3,2,11,16,1559,1698,897,923,639,738,4,5,5,17,3,0,11,15,34,46,27,32,6,10,0,1,1,0,0,2,0,1 -050,01,113,Alabama,Russell County,3,7,3237,1557,1680,972,865,554,778,4,10,10,12,4,2,13,13,1518,1644,940,840,551,768,3,10,10,12,2,2,12,12,39,36,32,25,3,10,1,0,0,0,2,0,1,1 -050,01,113,Alabama,Russell County,3,8,3625,1733,1892,1014,1000,693,861,4,9,8,9,3,2,11,11,1694,1864,980,981,690,854,3,9,8,8,3,2,10,10,39,28,34,19,3,7,1,0,0,1,0,0,1,1 -050,01,113,Alabama,Russell County,3,9,3815,1852,1963,1171,1064,652,866,6,11,7,13,2,0,14,9,1818,1925,1147,1033,644,861,5,10,7,13,2,0,13,8,34,38,24,31,8,5,1,1,0,0,0,0,1,1 -050,01,113,Alabama,Russell County,3,10,3542,1681,1861,1002,1055,653,762,5,14,4,14,2,2,15,14,1654,1838,981,1039,650,757,3,14,4,14,2,1,14,13,27,23,21,16,3,5,2,0,0,0,0,1,1,1 -050,01,113,Alabama,Russell County,3,11,3136,1466,1670,923,976,519,645,9,10,4,22,2,2,9,15,1444,1652,905,960,516,643,8,10,4,22,2,2,9,15,22,18,18,16,3,2,1,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,3,12,2549,1176,1373,793,850,368,493,5,9,3,8,0,0,7,13,1167,1361,786,841,366,491,5,9,3,8,0,0,7,12,9,12,7,9,2,2,0,0,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,3,13,2184,997,1187,681,788,307,386,4,2,1,5,1,0,3,6,991,1179,677,781,306,385,4,2,0,5,1,0,3,6,6,8,4,7,1,1,0,0,1,0,0,0,0,0 -050,01,113,Alabama,Russell County,3,14,2017,898,1119,590,731,306,376,2,3,0,5,0,0,0,4,890,1109,582,721,306,376,2,3,0,5,0,0,0,4,8,10,8,10,0,0,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,3,15,1721,728,993,498,634,225,347,0,3,0,2,0,0,5,7,721,987,492,631,224,346,0,2,0,2,0,0,5,6,7,6,6,3,1,1,0,1,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,3,16,1292,482,810,335,538,146,269,0,0,0,0,0,0,1,3,481,808,334,537,146,268,0,0,0,0,0,0,1,3,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,3,17,853,298,555,206,366,88,187,1,0,2,1,0,1,1,0,297,555,205,366,88,187,1,0,2,1,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,3,18,661,155,506,96,316,59,187,0,0,0,0,0,0,0,3,154,502,95,315,59,185,0,0,0,0,0,0,0,2,1,4,1,1,0,2,0,0,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,3,99,49622,23609,26013,13763,14388,9439,11107,75,105,86,138,27,19,219,256,23154,25575,13407,14068,9373,11019,66,97,79,135,24,15,205,241,455,438,356,320,66,88,9,8,7,3,3,4,14,15 -050,01,113,Alabama,Russell County,4,0,644,324,320,194,169,117,135,2,1,1,2,0,0,10,13,311,313,183,163,116,134,2,1,1,2,0,0,9,13,13,7,11,6,1,1,0,0,0,0,0,0,1,0 -050,01,113,Alabama,Russell County,4,1,2893,1503,1390,728,686,728,661,2,2,6,5,4,3,35,33,1458,1351,692,656,722,654,2,2,5,5,3,2,34,32,45,39,36,30,6,7,0,0,1,0,1,1,1,1 -050,01,113,Alabama,Russell County,4,2,3570,1832,1738,810,777,964,907,9,6,4,7,0,2,45,39,1779,1691,767,745,958,898,8,4,4,7,0,2,42,35,53,47,43,32,6,9,1,2,0,0,0,0,3,4 -050,01,113,Alabama,Russell County,4,3,3748,1998,1750,964,813,993,893,5,7,8,6,4,0,24,31,1945,1712,922,783,985,885,5,7,7,6,4,0,22,31,53,38,42,30,8,8,0,0,1,0,0,0,2,0 -050,01,113,Alabama,Russell County,4,4,3451,1778,1673,891,794,837,844,9,6,12,4,2,1,27,24,1745,1636,869,766,829,838,8,5,12,4,2,1,25,22,33,37,22,28,8,6,1,1,0,0,0,0,2,2 -050,01,113,Alabama,Russell County,4,5,3360,1579,1781,872,916,674,828,11,8,6,6,3,3,13,20,1521,1736,824,890,669,814,9,7,4,4,3,3,12,18,58,45,48,26,5,14,2,1,2,2,0,0,1,2 -050,01,113,Alabama,Russell County,4,6,3224,1508,1716,887,916,594,756,3,7,9,15,3,3,12,19,1453,1670,841,885,587,746,2,6,8,15,3,1,12,17,55,46,46,31,7,10,1,1,1,0,0,2,0,2 -050,01,113,Alabama,Russell County,4,7,3206,1565,1641,926,827,607,770,8,10,8,18,2,2,14,14,1517,1602,886,800,602,760,6,10,8,18,1,1,14,13,48,39,40,27,5,10,2,0,0,0,1,1,0,1 -050,01,113,Alabama,Russell County,4,8,3487,1664,1823,951,942,679,849,10,9,7,8,4,2,13,13,1627,1793,918,923,677,840,9,9,7,7,4,2,12,12,37,30,33,19,2,9,1,0,0,1,0,0,1,1 -050,01,113,Alabama,Russell County,4,9,3738,1768,1970,1083,1081,658,855,7,11,5,12,2,0,13,11,1734,1928,1061,1048,648,851,6,10,5,9,2,0,12,10,34,42,22,33,10,4,1,1,0,3,0,0,1,1 -050,01,113,Alabama,Russell County,4,10,3632,1765,1867,1082,1043,651,782,10,13,5,13,3,2,14,14,1741,1846,1065,1032,647,775,8,13,5,13,3,1,13,12,24,21,17,11,4,7,2,0,0,0,0,1,1,2 -050,01,113,Alabama,Russell County,4,11,3153,1453,1700,889,959,540,693,10,10,4,21,2,1,8,16,1437,1680,876,943,538,689,9,10,4,21,2,1,8,16,16,20,13,16,2,4,1,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,4,12,2635,1227,1408,826,865,387,508,5,8,2,12,0,1,7,14,1210,1394,814,854,382,506,5,8,2,12,0,1,7,13,17,14,12,11,5,2,0,0,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,4,13,2246,1021,1225,686,809,325,399,4,3,1,6,1,1,4,7,1013,1216,680,801,324,398,4,3,0,6,1,1,4,7,8,9,6,8,1,1,0,0,1,0,0,0,0,0 -050,01,113,Alabama,Russell County,4,14,2013,894,1119,595,733,296,373,2,4,0,4,0,0,1,5,888,1109,589,724,296,372,2,4,0,4,0,0,1,5,6,10,6,9,0,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,4,15,1700,709,991,486,613,219,365,0,3,0,2,0,0,4,8,703,985,481,610,218,364,0,2,0,2,0,0,4,7,6,6,5,3,1,1,0,1,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,4,16,1273,477,796,336,544,140,246,0,0,0,2,0,1,1,3,476,794,335,543,140,245,0,0,0,2,0,1,1,3,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,4,17,829,279,550,189,356,86,194,1,0,1,0,0,0,2,0,277,548,188,355,85,193,1,0,1,0,0,0,2,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,4,18,687,165,522,101,318,64,201,0,0,0,0,0,0,0,3,164,518,100,317,64,199,0,0,0,0,0,0,0,2,1,4,1,1,0,2,0,0,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,4,99,49489,23509,25980,13496,14161,9559,11259,98,108,79,143,30,22,247,287,22999,25522,13091,13838,9487,11161,86,101,73,137,28,17,234,268,510,458,405,323,72,98,12,7,6,6,2,5,13,19 -050,01,113,Alabama,Russell County,5,0,627,321,306,198,189,110,101,2,2,1,2,0,0,10,12,306,291,185,178,109,99,2,1,1,2,0,0,9,11,15,15,13,11,1,2,0,1,0,0,0,0,1,1 -050,01,113,Alabama,Russell County,5,1,2764,1404,1360,716,662,644,644,2,4,6,5,4,5,32,40,1361,1319,684,633,637,637,2,2,5,5,3,4,30,38,43,41,32,29,7,7,0,2,1,0,1,1,2,2 -050,01,113,Alabama,Russell County,5,2,3393,1739,1654,778,730,904,867,8,7,3,6,1,3,45,41,1681,1606,734,698,895,858,7,4,3,6,1,3,41,37,58,48,44,32,9,9,1,3,0,0,0,0,4,4 -050,01,113,Alabama,Russell County,5,3,3785,1998,1787,938,814,1011,921,6,6,9,6,5,2,29,38,1946,1735,903,779,998,910,6,5,7,6,5,2,27,33,52,52,35,35,13,11,0,1,2,0,0,0,2,5 -050,01,113,Alabama,Russell County,5,4,3436,1759,1677,867,790,844,852,7,6,10,3,3,1,28,25,1719,1636,840,761,834,844,6,5,10,3,3,1,26,22,40,41,27,29,10,8,1,1,0,0,0,0,2,3 -050,01,113,Alabama,Russell County,5,5,3311,1580,1731,862,923,683,774,11,8,5,6,4,5,15,15,1517,1667,809,876,678,761,9,7,4,4,4,5,13,14,63,64,53,47,5,13,2,1,1,2,0,0,2,1 -050,01,113,Alabama,Russell County,5,6,3142,1520,1622,892,870,592,708,5,7,10,12,1,3,20,22,1454,1572,833,837,587,698,4,5,9,12,1,1,20,19,66,50,59,33,5,10,1,2,1,0,0,2,0,3 -050,01,113,Alabama,Russell County,5,7,3243,1577,1666,917,860,620,761,8,9,11,16,5,5,16,15,1515,1627,867,832,612,751,6,9,11,16,3,4,16,15,62,39,50,28,8,10,2,0,0,0,2,1,0,0 -050,01,113,Alabama,Russell County,5,8,3326,1579,1747,926,866,623,843,9,9,5,10,4,2,12,17,1539,1722,890,850,621,835,8,9,5,10,4,2,11,16,40,25,36,16,2,8,1,0,0,0,0,0,1,1 -050,01,113,Alabama,Russell County,5,9,3654,1741,1913,1054,1045,660,827,6,11,8,17,3,1,10,12,1705,1866,1030,1006,650,822,4,10,8,16,3,1,10,11,36,47,24,39,10,5,2,1,0,1,0,0,0,1 -050,01,113,Alabama,Russell County,5,10,3662,1735,1927,1068,1077,641,802,6,11,3,16,2,3,15,18,1711,1903,1050,1063,637,796,5,11,3,16,2,2,14,15,24,24,18,14,4,6,1,0,0,0,0,1,1,3 -050,01,113,Alabama,Russell County,5,11,3227,1518,1709,909,967,587,693,8,10,5,19,1,2,8,18,1494,1694,892,957,581,689,7,10,5,19,1,2,8,17,24,15,17,10,6,4,1,0,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,5,12,2734,1271,1463,852,891,404,540,6,7,1,10,2,1,6,14,1251,1447,837,879,399,537,6,7,1,10,2,1,6,13,20,16,15,12,5,3,0,0,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,5,13,2277,998,1279,675,853,313,409,3,3,1,8,2,1,4,5,989,1270,668,845,312,408,3,3,0,8,2,1,4,5,9,9,7,8,1,1,0,0,1,0,0,0,0,0 -050,01,113,Alabama,Russell County,5,14,1921,864,1057,578,672,282,371,3,3,0,5,0,0,1,6,859,1047,573,663,282,370,3,3,0,5,0,0,1,6,5,10,5,9,0,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,5,15,1744,773,971,506,611,263,347,0,3,0,2,0,0,4,8,766,965,500,608,262,346,0,2,0,2,0,0,4,7,7,6,6,3,1,1,0,1,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,5,16,1275,473,802,332,546,139,249,0,0,0,2,0,1,2,4,470,799,329,545,139,247,0,0,0,2,0,1,2,4,3,3,3,1,0,2,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,5,17,852,281,571,196,370,79,199,2,0,2,1,0,1,2,0,280,569,196,369,78,198,2,0,2,1,0,1,2,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,5,18,692,168,524,112,323,56,197,0,0,0,0,0,0,0,4,167,520,111,322,56,195,0,0,0,0,0,0,0,3,1,4,1,1,0,2,0,0,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,5,99,49065,23299,25766,13376,14059,9455,11105,92,106,80,146,37,36,259,314,22730,25255,12931,13701,9367,11001,80,93,74,143,34,31,244,286,569,511,445,358,88,104,12,13,6,3,3,5,15,28 -050,01,113,Alabama,Russell County,6,0,639,307,332,181,206,110,109,3,1,1,2,0,0,12,14,288,323,165,201,108,106,3,1,1,2,0,0,11,13,19,9,16,5,2,3,0,0,0,0,0,0,1,1 -050,01,113,Alabama,Russell County,6,1,2754,1388,1366,723,714,611,594,2,5,7,3,5,4,40,46,1334,1303,684,664,600,588,2,3,6,3,4,3,38,42,54,63,39,50,11,6,0,2,1,0,1,1,2,4 -050,01,113,Alabama,Russell County,6,2,3478,1769,1709,776,727,932,922,8,7,3,6,1,4,49,43,1707,1659,727,695,924,912,7,4,3,6,1,4,45,38,62,50,49,32,8,10,1,3,0,0,0,0,4,5 -050,01,113,Alabama,Russell County,6,3,3783,1966,1817,890,843,1029,918,7,8,8,5,3,2,29,41,1915,1758,854,805,1017,905,7,6,7,5,3,2,27,35,51,59,36,38,12,13,0,2,1,0,0,0,2,6 -050,01,113,Alabama,Russell County,6,4,3483,1773,1710,875,806,853,868,7,5,10,3,4,1,24,27,1739,1674,852,782,845,859,6,4,10,3,4,1,22,25,34,36,23,24,8,9,1,1,0,0,0,0,2,2 -050,01,113,Alabama,Russell County,6,5,3243,1558,1685,846,909,676,743,8,8,6,6,4,4,18,15,1510,1633,807,874,670,730,6,7,5,4,4,4,18,14,48,52,39,35,6,13,2,1,1,2,0,0,0,1 -050,01,113,Alabama,Russell County,6,6,3251,1525,1726,893,878,595,802,4,7,9,13,4,3,20,23,1454,1668,833,839,586,791,3,5,8,13,4,1,20,19,71,58,60,39,9,11,1,2,1,0,0,2,0,4 -050,01,113,Alabama,Russell County,6,7,3295,1600,1695,925,907,631,745,7,10,14,12,6,4,17,17,1543,1642,880,868,624,734,5,10,14,11,3,3,17,16,57,53,45,39,7,11,2,0,0,1,3,1,0,1 -050,01,113,Alabama,Russell County,6,8,3209,1541,1668,918,803,596,821,5,8,6,16,4,2,12,18,1493,1635,875,780,593,813,4,8,6,15,4,2,11,17,48,33,43,23,3,8,1,0,0,1,0,0,1,1 -050,01,113,Alabama,Russell County,6,9,3713,1731,1982,1036,1079,662,865,7,12,9,13,4,0,13,13,1689,1940,1006,1045,653,860,5,11,9,12,4,0,12,12,42,42,30,34,9,5,2,1,0,1,0,0,1,1 -050,01,113,Alabama,Russell County,6,10,3653,1754,1899,1078,1042,645,813,12,10,3,15,2,2,14,17,1720,1871,1051,1024,641,808,10,10,3,15,2,1,13,13,34,28,27,18,4,5,2,0,0,0,0,1,1,4 -050,01,113,Alabama,Russell County,6,11,3298,1548,1750,956,1008,568,696,8,11,4,18,3,2,9,15,1525,1727,938,991,564,690,7,11,4,18,3,2,9,15,23,23,18,17,4,6,1,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,6,12,2849,1324,1525,865,918,448,577,6,8,1,8,0,1,4,13,1303,1512,850,908,442,574,6,8,1,8,0,1,4,13,21,13,15,10,6,3,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,6,13,2384,1072,1312,716,870,345,426,3,3,2,6,2,1,4,6,1063,1302,710,861,343,425,3,3,1,6,2,1,4,6,9,10,6,9,2,1,0,0,1,0,0,0,0,0 -050,01,113,Alabama,Russell County,6,14,1946,874,1072,596,675,274,385,3,2,0,4,0,0,1,6,866,1062,588,668,274,382,3,2,0,4,0,0,1,6,8,10,8,7,0,3,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,6,15,1736,747,989,477,636,265,338,1,4,0,2,0,0,4,9,739,980,470,630,264,337,1,3,0,2,0,0,4,8,8,9,7,6,1,1,0,1,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,6,16,1244,471,773,327,530,143,232,0,0,0,2,0,1,1,8,467,770,325,529,141,230,0,0,0,2,0,1,1,8,4,3,2,1,2,2,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,6,17,873,276,597,205,378,65,215,3,0,1,1,0,2,2,1,275,594,205,376,64,214,3,0,1,1,0,2,2,1,1,3,0,2,1,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,6,18,667,165,502,107,308,58,189,0,0,0,0,0,0,0,5,164,499,106,307,58,188,0,0,0,0,0,0,0,4,1,3,1,1,0,1,0,0,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,6,99,49498,23389,26109,13390,14237,9506,11258,94,109,84,135,42,33,273,337,22794,25552,12926,13847,9411,11146,81,96,79,130,38,28,259,305,595,557,464,390,95,112,13,13,5,5,4,5,14,32 -050,01,113,Alabama,Russell County,7,0,723,371,352,227,215,124,121,3,1,0,1,0,0,17,14,348,339,208,206,123,118,3,1,0,1,0,0,14,13,23,13,19,9,1,3,0,0,0,0,0,0,3,1 -050,01,113,Alabama,Russell County,7,1,2656,1354,1302,720,718,569,519,2,3,8,5,7,3,48,54,1306,1250,689,682,560,511,2,1,7,4,6,2,42,50,48,52,31,36,9,8,0,2,1,1,1,1,6,4 -050,01,113,Alabama,Russell County,7,2,3487,1786,1701,806,702,917,942,7,7,5,5,2,3,49,42,1723,1660,758,682,910,929,6,4,4,5,2,3,43,37,63,41,48,20,7,13,1,3,1,0,0,0,6,5 -050,01,113,Alabama,Russell County,7,3,3697,1947,1750,840,803,1052,895,8,6,4,4,4,3,39,39,1892,1681,804,757,1037,881,8,3,4,4,3,3,36,33,55,69,36,46,15,14,0,3,0,0,1,0,3,6 -050,01,113,Alabama,Russell County,7,4,3507,1807,1700,894,795,864,856,7,8,8,1,6,3,28,37,1757,1660,859,771,855,848,5,7,8,1,5,2,25,31,50,40,35,24,9,8,2,1,0,0,1,1,3,6 -050,01,113,Alabama,Russell County,7,5,3292,1601,1691,861,925,690,726,10,8,13,6,5,3,22,23,1533,1644,807,899,683,711,7,6,10,4,5,3,21,21,68,47,54,26,7,15,3,2,3,2,0,0,1,2 -050,01,113,Alabama,Russell County,7,6,3338,1547,1791,923,920,580,819,7,7,9,16,5,3,23,26,1476,1732,863,880,572,809,5,4,9,15,4,3,23,21,71,59,60,40,8,10,2,3,0,1,1,0,0,5 -050,01,113,Alabama,Russell County,7,7,3254,1587,1667,906,856,635,755,11,10,8,18,5,5,22,23,1525,1615,861,817,627,748,8,9,7,18,3,4,19,19,62,52,45,39,8,7,3,1,1,0,2,1,3,4 -050,01,113,Alabama,Russell County,7,8,3008,1438,1570,852,753,555,775,5,6,9,14,5,4,12,18,1397,1532,818,730,552,766,3,6,8,13,5,3,11,14,41,38,34,23,3,9,2,0,1,1,0,1,1,4 -050,01,113,Alabama,Russell County,7,9,3732,1763,1969,1043,1070,691,865,8,12,5,10,4,1,12,11,1723,1928,1013,1034,683,861,7,11,4,10,4,1,12,11,40,41,30,36,8,4,1,1,1,0,0,0,0,0 -050,01,113,Alabama,Russell County,7,10,3721,1807,1914,1121,1050,655,821,11,11,4,13,3,0,13,19,1769,1885,1092,1030,651,816,9,10,4,13,2,0,11,16,38,29,29,20,4,5,2,1,0,0,1,0,2,3 -050,01,113,Alabama,Russell County,7,11,3365,1590,1775,959,1020,612,707,6,9,8,15,2,3,3,21,1567,1750,941,1002,607,701,6,9,8,15,2,3,3,20,23,25,18,18,5,6,0,0,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,7,12,2951,1332,1619,866,956,449,621,6,8,4,16,2,2,5,16,1308,1600,848,940,443,618,6,8,4,16,2,2,5,16,24,19,18,16,6,3,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,7,13,2469,1145,1324,777,855,354,444,4,3,1,10,3,1,6,11,1131,1314,765,846,352,443,4,3,1,10,3,1,6,11,14,10,12,9,2,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,7,14,1979,891,1088,599,697,287,380,3,1,1,5,0,0,1,5,886,1075,594,686,287,378,3,1,1,5,0,0,1,5,5,13,5,11,0,2,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,7,15,1674,727,947,461,624,265,311,0,2,0,3,0,0,1,7,719,940,455,619,263,311,0,1,0,3,0,0,1,6,8,7,6,5,2,0,0,1,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,7,16,1296,479,817,329,532,148,270,0,1,1,2,0,1,1,11,476,813,326,530,148,268,0,1,1,2,0,1,1,11,3,4,3,2,0,2,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,7,17,905,306,599,225,376,75,218,2,0,1,2,0,2,3,1,305,595,225,374,74,217,2,0,1,1,0,2,3,1,1,4,0,2,1,1,0,0,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,7,18,677,155,522,109,324,46,194,0,1,0,0,0,0,0,3,154,520,108,323,46,193,0,1,0,0,0,0,0,3,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,7,99,49731,23633,26098,13518,14191,9568,11239,100,104,89,146,53,37,305,381,22995,25533,13034,13808,9473,11127,84,86,81,140,46,33,277,339,638,565,484,383,95,112,16,18,8,6,7,4,28,42 -050,01,113,Alabama,Russell County,8,0,793,392,401,236,239,129,145,4,1,0,1,0,0,23,15,360,383,214,226,123,141,4,1,0,1,0,0,19,14,32,18,22,13,6,4,0,0,0,0,0,0,4,1 -050,01,113,Alabama,Russell County,8,1,2733,1366,1367,753,747,547,551,3,4,8,5,5,6,50,54,1294,1291,704,690,535,540,3,1,7,4,5,5,40,51,72,76,49,57,12,11,0,3,1,1,0,1,10,3 -050,01,113,Alabama,Russell County,8,2,3517,1806,1711,830,740,907,900,8,8,5,4,3,4,53,55,1742,1655,784,711,897,886,7,5,4,4,3,3,47,46,64,56,46,29,10,14,1,3,1,0,0,1,6,9 -050,01,113,Alabama,Russell County,8,3,3722,1946,1776,842,836,1045,884,8,7,5,4,3,3,43,42,1892,1696,802,781,1035,869,8,3,4,4,2,3,41,36,54,80,40,55,10,15,0,4,1,0,1,0,2,6 -050,01,113,Alabama,Russell County,8,4,3602,1859,1743,883,809,922,885,11,7,6,1,2,4,35,37,1797,1692,836,772,912,876,9,6,6,1,1,3,33,34,62,51,47,37,10,9,2,1,0,0,1,1,2,3 -050,01,113,Alabama,Russell County,8,5,3326,1617,1709,904,931,663,735,9,8,8,6,5,4,28,25,1553,1654,855,899,655,720,7,6,5,4,5,3,26,22,64,55,49,32,8,15,2,2,3,2,0,1,2,3 -050,01,113,Alabama,Russell County,8,6,3450,1613,1837,964,930,598,854,11,7,10,14,7,3,23,29,1540,1773,904,885,588,843,9,4,10,13,6,3,23,25,73,64,60,45,10,11,2,3,0,1,1,0,0,4 -050,01,113,Alabama,Russell County,8,7,3279,1622,1657,935,848,636,752,10,9,14,19,7,6,20,23,1543,1602,873,809,630,743,6,8,13,19,4,5,17,18,79,55,62,39,6,9,4,1,1,0,3,1,3,5 -050,01,113,Alabama,Russell County,8,8,3047,1449,1598,854,757,561,800,5,5,9,12,5,2,15,22,1399,1560,810,733,559,792,3,5,8,11,5,1,14,18,50,38,44,24,2,8,2,0,1,1,0,1,1,4 -050,01,113,Alabama,Russell County,8,9,3678,1737,1941,1006,1036,704,865,6,15,7,11,3,2,11,12,1696,1901,976,1001,696,862,4,13,6,11,3,2,11,12,41,40,30,35,8,3,2,2,1,0,0,0,0,0 -050,01,113,Alabama,Russell County,8,10,3729,1814,1915,1125,1068,662,806,10,9,3,13,3,1,11,18,1772,1888,1095,1050,656,800,7,8,3,13,2,1,9,16,42,27,30,18,6,6,3,1,0,0,1,0,2,2 -050,01,113,Alabama,Russell County,8,11,3460,1647,1813,988,1030,641,736,6,11,5,11,1,2,6,23,1617,1783,964,1008,635,730,6,11,5,11,1,2,6,21,30,30,24,22,6,6,0,0,0,0,0,0,0,2 -050,01,113,Alabama,Russell County,8,12,3065,1381,1684,872,991,489,648,6,10,4,20,3,2,7,13,1358,1663,858,974,480,644,6,10,4,20,3,2,7,13,23,21,14,17,9,4,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,8,13,2476,1161,1315,780,830,366,459,4,3,1,13,4,2,6,8,1149,1305,769,821,365,458,4,3,1,13,4,2,6,8,12,10,11,9,1,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,8,14,1978,898,1080,618,708,268,359,5,2,2,5,0,0,5,6,888,1068,610,699,267,356,5,2,2,5,0,0,4,6,10,12,8,9,1,3,0,0,0,0,0,0,1,0 -050,01,113,Alabama,Russell County,8,15,1724,753,971,465,640,285,319,1,1,0,2,0,0,2,9,743,967,459,636,281,319,1,1,0,2,0,0,2,9,10,4,6,4,4,0,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,8,16,1289,472,817,341,511,128,291,0,1,1,4,0,0,2,10,468,813,339,509,126,289,0,1,1,4,0,0,2,10,4,4,2,2,2,2,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,8,17,853,297,556,213,359,78,191,2,0,1,2,0,2,3,2,296,551,213,356,77,190,2,0,1,1,0,2,3,2,1,5,0,3,1,1,0,0,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,8,18,738,175,563,126,339,49,219,0,1,0,0,0,0,0,4,173,561,124,338,49,218,0,1,0,0,0,0,0,4,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,8,99,50459,24005,26454,13735,14349,9678,11399,109,109,89,147,51,43,343,407,23280,25806,13189,13898,9566,11276,91,89,80,141,44,37,310,365,725,648,546,451,112,123,18,20,9,6,7,6,33,42 -050,01,113,Alabama,Russell County,9,0,812,445,367,272,213,145,135,4,1,0,2,0,0,24,16,412,353,247,203,141,133,4,1,0,1,0,0,20,15,33,14,25,10,4,2,0,0,0,1,0,0,4,1 -050,01,113,Alabama,Russell County,9,1,2927,1448,1479,776,773,599,620,5,6,10,9,8,5,50,66,1358,1395,716,710,580,608,4,3,9,8,8,4,41,62,90,84,60,63,19,12,1,3,1,1,0,1,9,4 -050,01,113,Alabama,Russell County,9,2,3532,1830,1702,826,737,933,893,6,9,5,4,2,5,58,54,1759,1632,777,696,921,877,6,5,4,4,2,4,49,46,71,70,49,41,12,16,0,4,1,0,0,1,9,8 -050,01,113,Alabama,Russell County,9,3,3660,1933,1727,825,763,1046,898,8,7,4,4,4,5,46,50,1864,1654,779,716,1030,883,8,3,4,4,3,5,40,43,69,73,46,47,16,15,0,4,0,0,1,0,6,7 -050,01,113,Alabama,Russell County,9,4,3689,1893,1796,918,854,915,896,7,5,7,1,5,3,41,37,1833,1742,876,816,905,886,5,4,7,1,4,2,36,33,60,54,42,38,10,10,2,1,0,0,1,1,5,4 -050,01,113,Alabama,Russell County,9,5,3380,1578,1802,870,960,651,796,9,10,14,6,6,7,28,23,1509,1718,816,898,643,781,7,8,11,4,6,6,26,21,69,84,54,62,8,15,2,2,3,2,0,1,2,2 -050,01,113,Alabama,Russell County,9,6,3554,1661,1893,992,977,623,864,5,9,10,9,4,3,27,31,1560,1817,908,922,609,851,3,6,10,8,3,3,27,27,101,76,84,55,14,13,2,3,0,1,1,0,0,4 -050,01,113,Alabama,Russell County,9,7,3185,1548,1637,924,805,578,780,9,9,9,15,7,3,21,25,1465,1571,862,758,568,768,5,8,8,15,4,2,18,20,83,66,62,47,10,12,4,1,1,0,3,1,3,5 -050,01,113,Alabama,Russell County,9,8,3119,1491,1628,867,779,583,795,10,5,9,18,5,3,17,28,1417,1590,802,754,580,788,7,5,8,17,5,2,15,24,74,38,65,25,3,7,3,0,1,1,0,1,2,4 -050,01,113,Alabama,Russell County,9,9,3579,1683,1896,968,968,686,886,7,15,9,11,3,2,10,14,1647,1844,942,920,679,884,5,13,8,11,3,2,10,14,36,52,26,48,7,2,2,2,1,0,0,0,0,0 -050,01,113,Alabama,Russell County,9,10,3737,1787,1950,1066,1110,694,795,10,9,3,18,2,1,12,17,1742,1920,1032,1090,689,789,7,8,3,17,1,1,10,15,45,30,34,20,5,6,3,1,0,1,1,0,2,2 -050,01,113,Alabama,Russell County,9,11,3578,1733,1845,1059,1029,651,770,8,8,7,12,1,2,7,24,1701,1814,1034,1011,644,760,8,7,7,12,1,2,7,22,32,31,25,18,7,10,0,1,0,0,0,0,0,2 -050,01,113,Alabama,Russell County,9,12,3125,1415,1710,886,989,508,678,6,10,4,18,3,1,8,14,1389,1688,868,971,500,674,6,10,4,18,3,1,8,14,26,22,18,18,8,4,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,9,13,2579,1208,1371,817,860,378,484,3,3,1,7,3,3,6,14,1190,1361,802,851,375,483,3,3,1,7,3,3,6,14,18,10,15,9,3,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,9,14,2010,906,1104,620,726,273,357,5,4,2,8,0,0,6,9,896,1092,612,717,272,355,5,4,2,8,0,0,5,8,10,12,8,9,1,2,0,0,0,0,0,0,1,1 -050,01,113,Alabama,Russell County,9,15,1739,768,971,478,642,287,316,1,2,0,2,0,0,2,9,760,966,472,637,285,316,1,2,0,2,0,0,2,9,8,5,6,5,2,0,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,9,16,1290,480,810,338,492,139,300,0,1,1,5,0,0,2,12,476,805,336,489,137,298,0,1,1,5,0,0,2,12,4,5,2,3,2,2,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,9,17,847,299,548,220,363,73,180,3,0,1,2,0,1,2,2,297,543,220,360,71,179,3,0,1,1,0,1,2,2,2,5,0,3,2,1,0,0,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,9,18,732,170,562,115,336,55,220,0,1,0,0,0,0,0,5,168,560,113,335,55,219,0,1,0,0,0,0,0,5,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,9,99,51074,24276,26798,13837,14376,9817,11663,106,114,96,151,53,44,367,450,23443,26065,13214,13854,9684,11532,87,92,88,143,46,38,324,406,833,733,623,522,133,131,19,22,8,8,7,6,43,44 -050,01,113,Alabama,Russell County,10,0,778,412,366,233,212,148,136,5,1,0,1,0,0,26,16,370,330,205,188,138,126,5,1,0,1,0,0,22,14,42,36,28,24,10,10,0,0,0,0,0,0,4,2 -050,01,113,Alabama,Russell County,10,1,3139,1592,1547,804,776,708,675,4,7,9,6,8,10,59,73,1498,1459,737,712,694,661,3,4,8,5,8,9,48,68,94,88,67,64,14,14,1,3,1,1,0,1,11,5 -050,01,113,Alabama,Russell County,10,2,3480,1746,1734,810,759,862,900,5,10,4,2,4,6,61,57,1678,1649,766,704,847,886,5,5,3,2,4,5,53,47,68,85,44,55,15,14,0,5,1,0,0,1,8,10 -050,01,113,Alabama,Russell County,10,3,3557,1870,1687,814,754,977,869,10,7,4,5,4,4,61,48,1811,1592,773,694,966,850,10,2,4,5,3,4,55,37,59,95,41,60,11,19,0,5,0,0,1,0,6,11 -050,01,113,Alabama,Russell County,10,4,3808,1918,1890,898,850,962,985,9,5,6,0,4,4,39,46,1851,1833,848,811,954,973,6,4,6,0,3,3,34,42,67,57,50,39,8,12,3,1,0,0,1,1,5,4 -050,01,113,Alabama,Russell County,10,5,3480,1628,1852,900,979,676,826,7,9,9,6,8,6,28,26,1550,1760,836,917,669,805,4,7,7,3,8,5,26,23,78,92,64,62,7,21,3,2,2,3,0,1,2,3 -050,01,113,Alabama,Russell County,10,6,3588,1679,1909,1007,1011,618,836,7,10,12,15,7,3,28,34,1576,1828,921,953,605,823,4,6,12,14,6,3,28,29,103,81,86,58,13,13,3,4,0,1,1,0,0,5 -050,01,113,Alabama,Russell County,10,7,3208,1552,1656,913,826,579,770,10,9,17,19,8,6,25,26,1465,1578,844,768,572,759,6,8,16,18,5,4,22,21,87,78,69,58,7,11,4,1,1,1,3,2,3,5 -050,01,113,Alabama,Russell County,10,8,3141,1487,1654,875,797,572,806,9,5,7,12,6,3,18,31,1410,1609,807,764,569,800,6,5,6,11,6,2,16,27,77,45,68,33,3,6,3,0,1,1,0,1,2,4 -050,01,113,Alabama,Russell County,10,9,3437,1652,1785,948,878,658,867,17,15,11,11,4,1,14,13,1602,1747,911,844,649,865,14,13,10,11,4,1,14,13,50,38,37,34,9,2,3,2,1,0,0,0,0,0 -050,01,113,Alabama,Russell County,10,10,3682,1767,1915,1054,1073,682,807,11,5,3,13,5,0,12,17,1721,1882,1021,1051,675,801,8,4,3,12,4,0,10,14,46,33,33,22,7,6,3,1,0,1,1,0,2,3 -050,01,113,Alabama,Russell County,10,11,3639,1733,1906,1072,1041,633,810,8,7,7,16,1,5,12,27,1703,1876,1050,1021,625,802,8,7,7,16,1,5,12,25,30,30,22,20,8,8,0,0,0,0,0,0,0,2 -050,01,113,Alabama,Russell County,10,12,3157,1470,1687,888,979,563,668,6,8,3,17,2,1,8,14,1440,1664,868,960,553,664,6,8,3,17,2,1,8,14,30,23,20,19,10,4,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,10,13,2680,1229,1451,833,895,380,528,4,3,1,11,4,3,7,11,1214,1436,821,881,377,527,4,3,1,11,4,3,7,11,15,15,12,14,3,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,10,14,2051,907,1144,628,770,265,357,6,3,2,6,0,0,6,8,897,1130,621,761,263,353,6,3,2,6,0,0,5,7,10,14,7,9,2,4,0,0,0,0,0,0,1,1 -050,01,113,Alabama,Russell County,10,15,1675,748,927,482,584,263,331,1,1,0,2,0,0,2,9,739,920,476,577,260,331,1,1,0,2,0,0,2,9,9,7,6,7,3,0,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,10,16,1300,509,791,346,494,160,281,0,1,1,3,0,0,2,12,503,786,342,491,158,279,0,1,1,3,0,0,2,12,6,5,4,3,2,2,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,10,17,883,293,590,206,400,80,185,3,0,1,2,0,1,3,2,292,585,206,397,79,184,3,0,1,1,0,1,3,2,1,5,0,3,1,1,0,0,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,10,18,751,188,563,127,336,61,221,0,1,0,0,0,0,0,5,186,561,125,335,61,220,0,1,0,0,0,0,0,5,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,10,99,51434,24380,27054,13838,14414,9847,11858,122,107,97,147,65,53,411,475,23506,26225,13178,13829,9714,11709,99,83,90,138,58,46,367,420,874,829,660,585,133,149,23,24,7,9,7,7,44,55 -050,01,113,Alabama,Russell County,11,0,803,430,373,243,210,158,143,6,2,0,1,0,0,23,17,388,350,212,193,151,138,6,2,0,1,0,0,19,16,42,23,31,17,7,5,0,0,0,0,0,0,4,1 -050,01,113,Alabama,Russell County,11,1,3153,1628,1525,795,768,748,662,5,9,8,5,5,7,67,74,1520,1417,720,692,729,642,4,4,7,4,5,6,55,69,108,108,75,76,19,20,1,5,1,1,0,1,12,5 -050,01,113,Alabama,Russell County,11,2,3526,1770,1756,835,778,851,897,5,10,5,2,4,5,70,64,1677,1668,775,723,830,880,5,5,3,2,4,4,60,54,93,88,60,55,21,17,0,5,2,0,0,1,10,10 -050,01,113,Alabama,Russell County,11,3,3521,1829,1692,805,780,948,844,10,6,4,4,4,5,58,53,1764,1588,759,714,936,823,10,1,4,4,3,5,52,41,65,104,46,66,12,21,0,5,0,0,1,0,6,12 -050,01,113,Alabama,Russell County,11,4,3932,1998,1934,922,885,1017,993,7,8,6,0,5,5,41,43,1928,1859,875,830,1003,979,4,7,6,0,4,4,36,39,70,75,47,55,14,14,3,1,0,0,1,1,5,4 -050,01,113,Alabama,Russell County,11,5,3554,1629,1925,904,1040,666,833,8,10,14,6,8,8,29,28,1547,1849,836,991,659,817,5,8,12,3,8,7,27,23,82,76,68,49,7,16,3,2,2,3,0,1,2,5 -050,01,113,Alabama,Russell County,11,6,3772,1825,1947,1100,1056,669,834,11,9,9,10,3,4,33,34,1715,1854,1012,986,653,822,8,5,9,9,2,4,31,28,110,93,88,70,16,12,3,4,0,1,1,0,2,6 -050,01,113,Alabama,Russell County,11,7,3296,1597,1699,920,828,624,808,11,8,9,21,8,7,25,27,1491,1631,839,778,613,798,6,7,7,20,4,5,22,23,106,68,81,50,11,10,5,1,2,1,4,2,3,4 -050,01,113,Alabama,Russell County,11,8,3188,1511,1677,862,813,607,808,8,4,10,17,6,2,18,33,1438,1632,799,779,603,802,5,4,9,17,6,1,16,29,73,45,63,34,4,6,3,0,1,0,0,1,2,4 -050,01,113,Alabama,Russell County,11,9,3338,1608,1730,937,838,636,851,9,15,7,10,5,2,14,14,1566,1683,907,795,628,849,6,13,6,10,5,2,14,14,42,47,30,43,8,2,3,2,1,0,0,0,0,0 -050,01,113,Alabama,Russell County,11,10,3737,1771,1966,1055,1099,685,830,13,5,4,12,3,1,11,19,1721,1940,1018,1084,678,824,10,4,4,12,2,1,9,15,50,26,37,15,7,6,3,1,0,0,1,0,2,4 -050,01,113,Alabama,Russell County,11,11,3662,1754,1908,1044,1019,681,844,7,9,9,9,3,2,10,25,1719,1864,1017,986,673,835,7,8,9,9,3,2,10,24,35,44,27,33,8,9,0,1,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,11,12,3215,1498,1717,916,1012,562,665,7,10,3,15,2,2,8,13,1470,1691,897,990,553,661,7,10,3,15,2,2,8,13,28,26,19,22,9,4,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,11,13,2756,1285,1471,848,899,419,544,5,3,1,12,5,2,7,11,1270,1456,836,885,416,543,5,3,1,12,5,2,7,11,15,15,12,14,3,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,11,14,2121,951,1170,654,767,283,385,6,2,2,8,0,0,6,8,937,1151,643,753,281,381,6,2,2,8,0,0,5,7,14,19,11,14,2,4,0,0,0,0,0,0,1,1 -050,01,113,Alabama,Russell County,11,15,1680,747,933,494,608,250,310,1,3,0,2,0,0,2,10,737,927,487,603,247,310,1,2,0,2,0,0,2,10,10,6,7,5,3,0,0,1,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,11,16,1248,466,782,320,509,143,253,0,1,1,5,0,1,2,13,459,777,316,506,140,251,0,1,1,5,0,1,2,13,7,5,4,3,3,2,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,11,17,898,331,567,230,381,94,182,3,0,1,2,0,0,3,2,330,561,230,377,93,181,3,0,1,1,0,0,3,2,1,6,0,4,1,1,0,0,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,11,18,762,184,578,131,368,53,204,0,1,0,0,0,0,0,5,182,576,129,367,53,203,0,1,0,0,0,0,0,5,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,11,99,52162,24812,27350,14015,14658,10094,11890,122,115,93,141,61,53,427,493,23859,26474,13307,14032,9939,11739,98,87,84,134,53,46,378,436,953,876,708,626,155,151,24,28,9,7,8,7,49,57 -050,01,113,Alabama,Russell County,12,0,808,426,382,226,209,165,153,7,2,0,2,0,0,28,16,383,357,193,192,159,148,7,2,0,1,0,0,24,14,43,25,33,17,6,5,0,0,0,1,0,0,4,2 -050,01,113,Alabama,Russell County,12,1,3197,1650,1547,817,753,744,698,5,8,6,6,8,7,70,75,1522,1441,722,678,725,679,4,3,5,5,8,6,58,70,128,106,95,75,19,19,1,5,1,1,0,1,12,5 -050,01,113,Alabama,Russell County,12,2,3509,1775,1734,839,790,846,853,5,10,5,2,4,6,76,73,1680,1637,777,729,826,833,5,5,3,2,4,5,65,63,95,97,62,61,20,20,0,5,2,0,0,1,11,10 -050,01,113,Alabama,Russell County,12,3,3594,1900,1694,835,783,985,837,10,6,4,4,4,6,62,58,1832,1588,788,715,971,816,10,1,4,4,3,6,56,46,68,106,47,68,14,21,0,5,0,0,1,0,6,12 -050,01,113,Alabama,Russell County,12,4,3886,1967,1919,904,894,999,963,8,7,6,0,4,4,46,51,1898,1855,856,849,987,951,5,6,6,0,3,3,41,46,69,64,48,45,12,12,3,1,0,0,1,1,5,5 -050,01,113,Alabama,Russell County,12,5,3661,1691,1970,953,1060,683,857,8,10,9,6,8,8,30,29,1594,1884,872,1004,674,838,5,8,7,3,8,7,28,24,97,86,81,56,9,19,3,2,2,3,0,1,2,5 -050,01,113,Alabama,Russell County,12,6,3869,1883,1986,1166,1087,656,837,8,9,12,11,6,4,35,38,1754,1886,1061,1009,638,826,5,5,12,10,5,4,33,32,129,100,105,78,18,11,3,4,0,1,1,0,2,6 -050,01,113,Alabama,Russell County,12,7,3441,1670,1771,973,886,639,816,15,8,9,22,9,7,25,32,1551,1697,882,836,625,801,10,7,7,21,5,5,22,27,119,74,91,50,14,15,5,1,2,1,4,2,3,5 -050,01,113,Alabama,Russell County,12,8,3275,1534,1741,853,843,636,838,8,4,10,20,9,3,18,33,1467,1686,796,801,632,831,5,4,9,19,9,2,16,29,67,55,57,42,4,7,3,0,1,1,0,1,2,4 -050,01,113,Alabama,Russell County,12,9,3320,1591,1729,923,833,634,854,9,14,10,12,4,2,11,14,1543,1685,887,794,626,851,6,12,9,12,4,2,11,14,48,44,36,39,8,3,3,2,1,0,0,0,0,0 -050,01,113,Alabama,Russell County,12,10,3746,1814,1932,1056,1063,723,830,15,5,4,13,4,1,12,20,1767,1899,1022,1042,716,824,12,4,4,12,3,1,10,16,47,33,34,21,7,6,3,1,0,1,1,0,2,4 -050,01,113,Alabama,Russell County,12,11,3744,1804,1940,1076,1030,698,861,9,10,9,10,2,3,10,26,1764,1899,1045,1001,689,852,9,9,9,10,2,3,10,24,40,41,31,29,9,9,0,1,0,0,0,0,0,2 -050,01,113,Alabama,Russell County,12,12,3339,1582,1757,948,1040,613,678,7,10,3,13,3,3,8,13,1551,1728,927,1015,603,674,7,10,3,13,3,3,8,13,31,29,21,25,10,4,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,12,13,2838,1300,1538,849,924,433,581,5,3,1,15,5,2,7,13,1279,1520,831,907,430,580,5,3,1,15,5,2,7,13,21,18,18,17,3,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,12,14,2162,993,1169,683,740,296,410,6,3,2,7,0,0,6,9,981,1154,674,730,294,406,6,3,2,7,0,0,5,8,12,15,9,10,2,4,0,0,0,0,0,0,1,1 -050,01,113,Alabama,Russell County,12,15,1653,717,936,476,610,238,311,1,3,0,2,0,0,2,10,707,930,469,605,235,311,1,2,0,2,0,0,2,10,10,6,7,5,3,0,0,1,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,12,16,1231,468,763,318,513,147,229,0,1,1,6,0,1,2,13,461,758,314,510,144,227,0,1,1,6,0,1,2,13,7,5,4,3,3,2,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,12,17,895,321,574,230,375,84,194,3,0,1,2,0,1,3,2,320,568,230,371,83,193,3,0,1,1,0,1,3,2,1,6,0,4,1,1,0,0,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,12,18,779,201,578,147,370,54,202,0,1,0,0,0,0,0,5,199,576,145,369,54,201,0,1,0,0,0,0,0,5,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,12,99,52947,25287,27660,14272,14803,10273,12002,129,114,92,153,70,58,451,530,24253,26748,13491,14157,10111,11842,105,86,83,143,62,51,401,469,1034,912,781,646,162,160,24,28,9,10,8,7,50,61 -050,01,113,Alabama,Russell County,13,0,813,429,384,228,209,166,154,7,2,0,2,0,0,28,17,385,359,194,192,160,149,7,2,0,1,0,0,24,15,44,25,34,17,6,5,0,0,0,1,0,0,4,2 -050,01,113,Alabama,Russell County,13,1,3208,1652,1556,817,753,749,705,4,10,6,6,8,8,68,74,1524,1447,722,678,729,684,3,5,5,5,8,6,57,69,128,109,95,75,20,21,1,5,1,1,0,2,11,5 -050,01,113,Alabama,Russell County,13,2,3520,1783,1737,840,791,846,854,10,11,5,3,4,6,78,72,1686,1639,778,729,827,834,7,6,3,3,4,5,67,62,97,98,62,62,19,20,3,5,2,0,0,1,11,10 -050,01,113,Alabama,Russell County,13,3,3604,1902,1702,839,786,985,839,9,8,5,4,4,6,60,59,1834,1592,789,715,972,818,9,2,5,4,3,6,56,47,68,110,50,71,13,21,0,6,0,0,1,0,4,12 -050,01,113,Alabama,Russell County,13,4,3876,1959,1917,899,893,996,962,10,7,7,0,4,3,43,52,1888,1849,851,846,984,949,5,5,7,0,3,2,38,47,71,68,48,47,12,13,5,2,0,0,1,1,5,5 -050,01,113,Alabama,Russell County,13,5,3692,1707,1985,956,1065,692,867,12,11,9,6,8,7,30,29,1607,1898,875,1009,683,847,7,9,7,3,8,6,27,24,100,87,81,56,9,20,5,2,2,3,0,1,3,5 -050,01,113,Alabama,Russell County,13,6,3901,1909,1992,1177,1091,661,840,12,9,13,11,9,4,37,37,1772,1894,1071,1013,643,830,6,5,13,10,5,4,34,32,137,98,106,78,18,10,6,4,0,1,4,0,3,5 -050,01,113,Alabama,Russell County,13,7,3479,1691,1788,982,892,651,828,15,9,8,21,10,7,25,31,1570,1713,890,841,636,812,11,8,6,20,5,5,22,27,121,75,92,51,15,16,4,1,2,1,5,2,3,4 -050,01,113,Alabama,Russell County,13,8,3269,1534,1735,848,839,636,838,10,5,12,21,9,3,19,29,1468,1680,792,796,632,831,7,5,11,20,9,2,17,26,66,55,56,43,4,7,3,0,1,1,0,1,2,3 -050,01,113,Alabama,Russell County,13,9,3326,1589,1737,920,836,635,858,9,15,10,12,4,2,11,14,1541,1693,884,797,627,855,6,13,9,12,4,2,11,14,48,44,36,39,8,3,3,2,1,0,0,0,0,0 -050,01,113,Alabama,Russell County,13,10,3744,1812,1932,1055,1061,725,831,15,4,3,13,4,1,10,22,1764,1899,1020,1039,718,825,12,4,3,12,3,1,8,18,48,33,35,22,7,6,3,0,0,1,1,0,2,4 -050,01,113,Alabama,Russell County,13,11,3763,1815,1948,1081,1033,704,867,10,11,9,10,2,3,9,24,1775,1908,1050,1004,695,858,10,10,9,10,2,3,9,23,40,40,31,29,9,9,0,1,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,13,12,3364,1593,1771,956,1048,618,682,7,12,2,13,3,3,7,13,1562,1742,935,1023,608,678,7,12,2,13,3,3,7,13,31,29,21,25,10,4,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,13,13,2884,1318,1566,857,935,442,595,5,5,1,15,5,2,8,14,1297,1548,839,918,439,594,5,5,1,15,5,2,8,14,21,18,18,17,3,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,13,14,2176,999,1177,688,746,298,412,6,3,2,7,0,0,5,9,988,1163,679,736,296,408,6,3,2,7,0,0,5,9,11,14,9,10,2,4,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,13,15,1661,722,939,481,614,237,310,2,4,0,2,0,0,2,9,711,933,473,609,234,310,2,3,0,2,0,0,2,9,11,6,8,5,3,0,0,1,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,13,16,1229,469,760,320,510,146,231,1,1,1,6,0,0,1,12,462,756,314,508,145,229,1,1,1,6,0,0,1,12,7,4,6,2,1,2,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,13,17,895,323,572,234,374,84,193,2,0,1,1,0,1,2,3,322,567,234,370,83,192,2,0,1,1,0,1,2,3,1,5,0,4,1,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,13,18,784,202,582,148,372,54,204,0,1,0,0,0,0,0,5,200,580,146,371,54,203,0,1,0,0,0,0,0,5,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,13,99,53188,25408,27780,14326,14848,10325,12070,146,128,94,153,74,56,443,525,24356,26860,13536,14194,10165,11906,113,99,85,144,62,48,395,469,1052,920,790,654,160,164,33,29,9,9,12,8,48,56 -050,01,115,Alabama,St. Clair County,1,0,851,463,388,419,354,36,25,0,0,0,2,0,0,8,7,455,381,411,347,36,25,0,0,0,2,0,0,8,7,8,7,8,7,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,1,1,3403,1782,1621,1612,1483,132,112,4,6,2,4,1,1,31,15,1750,1588,1581,1453,132,111,4,5,1,4,1,1,31,14,32,33,31,30,0,1,0,1,1,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,1,2,4558,2372,2186,2152,1962,191,191,6,8,2,2,2,0,19,23,2348,2152,2129,1929,191,190,6,8,2,2,2,0,18,23,24,34,23,33,0,1,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,1,3,4860,2588,2272,2330,2045,217,203,18,11,5,1,1,0,17,12,2560,2247,2302,2020,217,203,18,11,5,1,1,0,17,12,28,25,28,25,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,1,4,4268,2251,2017,2019,1784,189,201,9,11,8,7,2,1,24,13,2224,2001,1992,1768,189,201,9,11,8,7,2,1,24,13,27,16,27,16,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,1,5,3612,1888,1724,1560,1550,307,153,5,7,2,6,0,0,14,8,1834,1694,1507,1522,307,152,4,7,2,5,0,0,14,8,54,30,53,28,0,1,1,0,0,1,0,0,0,0 -050,01,115,Alabama,St. Clair County,1,6,4466,2316,2150,1986,1961,306,161,3,7,6,8,3,1,12,12,2260,2126,1933,1938,304,161,3,6,5,8,3,1,12,12,56,24,53,23,2,0,0,1,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,1,7,4794,2455,2339,2149,2145,284,169,8,8,2,6,2,0,10,11,2418,2321,2117,2127,281,169,8,8,2,6,1,0,9,11,37,18,32,18,3,0,0,0,0,0,1,0,1,0 -050,01,115,Alabama,St. Clair County,1,8,5425,2794,2631,2479,2398,290,197,11,17,3,5,0,0,11,14,2757,2612,2444,2381,289,197,10,16,3,5,0,0,11,13,37,19,35,17,1,0,1,1,0,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,1,9,5228,2693,2535,2361,2314,298,176,16,16,1,7,1,1,16,21,2659,2513,2329,2292,298,176,15,16,1,7,1,1,15,21,34,22,32,22,0,0,1,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,1,10,4706,2401,2305,2192,2094,173,173,7,9,6,8,0,0,23,21,2390,2294,2181,2086,173,172,7,7,6,8,0,0,23,21,11,11,11,8,0,1,0,2,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,1,11,4415,2210,2205,2017,2042,156,136,10,8,1,6,2,1,24,12,2199,2194,2006,2032,156,135,10,8,1,6,2,1,24,12,11,11,11,10,0,1,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,1,12,3684,1820,1864,1707,1737,90,95,5,8,0,4,0,0,18,20,1809,1848,1697,1722,89,95,5,7,0,4,0,0,18,20,11,16,10,15,1,0,0,1,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,1,13,2898,1430,1468,1318,1363,93,84,6,3,1,0,0,0,12,18,1424,1460,1312,1355,93,84,6,3,1,0,0,0,12,18,6,8,6,8,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,1,14,2505,1185,1320,1106,1221,58,81,4,2,3,4,0,0,14,12,1182,1317,1104,1218,58,81,4,2,2,4,0,0,14,12,3,3,2,3,0,0,0,0,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,1,15,2008,904,1104,852,1042,47,50,2,1,0,5,0,0,3,6,901,1098,849,1037,47,49,2,1,0,5,0,0,3,6,3,6,3,5,0,1,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,1,16,1466,635,831,611,762,23,58,1,4,0,0,0,0,0,7,634,824,610,756,23,58,1,3,0,0,0,0,0,7,1,7,1,6,0,0,0,1,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,1,17,910,295,615,271,574,21,35,1,2,0,0,0,0,2,4,292,612,269,571,21,35,1,2,0,0,0,0,1,4,3,3,2,3,0,0,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,1,18,683,171,512,153,470,17,42,0,0,0,0,0,0,1,0,168,508,150,466,17,42,0,0,0,0,0,0,1,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,1,99,64740,32653,32087,29294,29301,2928,2342,116,128,42,75,14,5,259,236,32264,31790,28923,29020,2921,2336,113,121,39,74,13,5,255,234,389,297,371,281,7,6,3,7,3,1,1,0,4,2 -050,01,115,Alabama,St. Clair County,2,0,862,468,394,424,359,37,26,0,0,0,2,0,0,7,7,460,387,416,352,37,26,0,0,0,2,0,0,7,7,8,7,8,7,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,2,1,3410,1786,1624,1615,1485,131,111,4,6,2,4,1,1,33,17,1754,1590,1584,1454,131,110,4,5,1,4,1,1,33,16,32,34,31,31,0,1,0,1,1,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,2,2,4548,2368,2180,2154,1961,187,186,6,8,2,2,2,0,17,23,2344,2146,2131,1928,187,185,6,8,2,2,2,0,16,23,24,34,23,33,0,1,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,2,3,4903,2613,2290,2349,2064,220,202,18,11,5,1,1,0,20,12,2585,2265,2321,2039,220,202,18,11,5,1,1,0,20,12,28,25,28,25,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,2,4,4314,2280,2034,2049,1801,189,201,9,11,8,7,2,1,23,13,2253,2018,2022,1785,189,201,9,11,8,7,2,1,23,13,27,16,27,16,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,2,5,3657,1910,1747,1582,1570,304,156,5,7,2,6,0,0,17,8,1855,1717,1528,1542,304,155,4,7,2,5,0,0,17,8,55,30,54,28,0,1,1,0,0,1,0,0,0,0 -050,01,115,Alabama,St. Clair County,2,6,4441,2301,2140,1971,1950,306,161,3,7,6,8,3,1,12,13,2245,2116,1918,1927,304,161,3,6,5,8,3,1,12,13,56,24,53,23,2,0,0,1,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,2,7,4805,2459,2346,2154,2151,283,171,8,8,2,6,2,0,10,10,2422,2328,2122,2133,280,171,8,8,2,6,1,0,9,10,37,18,32,18,3,0,0,0,0,0,1,0,1,0 -050,01,115,Alabama,St. Clair County,2,8,5416,2787,2629,2474,2394,288,198,11,17,3,5,0,0,11,15,2750,2610,2439,2377,287,198,10,16,3,5,0,0,11,14,37,19,35,17,1,0,1,1,0,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,2,9,5257,2706,2551,2371,2329,301,178,16,16,1,7,1,1,16,20,2672,2529,2339,2307,301,178,15,16,1,7,1,1,15,20,34,22,32,22,0,0,1,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,2,10,4746,2417,2329,2206,2117,173,174,7,9,6,8,0,0,25,21,2406,2318,2195,2109,173,173,7,7,6,8,0,0,25,21,11,11,11,8,0,1,0,2,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,2,11,4468,2237,2231,2043,2068,158,138,10,8,1,6,2,1,23,10,2226,2220,2032,2058,158,137,10,8,1,6,2,1,23,10,11,11,11,10,0,1,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,2,12,3718,1837,1881,1723,1753,90,95,5,8,0,4,0,0,19,21,1826,1865,1713,1738,89,95,5,7,0,4,0,0,19,21,11,16,10,15,1,0,0,1,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,2,13,2920,1442,1478,1330,1374,93,84,6,3,1,0,0,0,12,17,1436,1470,1324,1366,93,84,6,3,1,0,0,0,12,17,6,8,6,8,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,2,14,2517,1191,1326,1111,1226,58,82,4,2,3,4,0,0,15,12,1188,1323,1109,1223,58,82,4,2,2,4,0,0,15,12,3,3,2,3,0,0,0,0,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,2,15,2019,911,1108,859,1046,47,50,2,1,0,5,0,0,3,6,908,1102,856,1041,47,49,2,1,0,5,0,0,3,6,3,6,3,5,0,1,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,2,16,1478,643,835,619,766,23,58,1,4,0,0,0,0,0,7,642,828,618,760,23,58,1,3,0,0,0,0,0,7,1,7,1,6,0,0,0,1,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,2,17,920,301,619,277,578,21,35,1,2,0,0,0,0,2,4,298,616,275,575,21,35,1,2,0,0,0,0,1,4,3,3,2,3,0,0,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,2,18,681,172,509,154,468,17,41,0,0,0,0,0,0,1,0,169,505,151,464,17,41,0,0,0,0,0,0,1,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,2,99,65080,32829,32251,29465,29460,2926,2347,116,128,42,75,14,5,266,236,32439,31953,29093,29178,2919,2341,113,121,39,74,13,5,262,234,390,298,372,282,7,6,3,7,3,1,1,0,4,2 -050,01,115,Alabama,St. Clair County,3,0,863,470,393,427,359,32,24,0,0,4,1,0,0,7,9,464,387,421,353,32,24,0,0,4,1,0,0,7,9,6,6,6,6,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,3,1,3427,1792,1635,1601,1467,148,130,4,6,5,10,1,1,33,21,1755,1592,1565,1427,148,129,4,5,4,10,1,1,33,20,37,43,36,40,0,1,0,1,1,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,3,2,4533,2343,2190,2126,1952,186,199,6,8,5,6,1,0,19,25,2308,2155,2092,1918,186,198,6,8,5,6,1,0,18,25,35,35,34,34,0,1,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,3,3,4971,2658,2313,2374,2106,236,179,15,10,7,3,2,0,24,15,2640,2291,2356,2084,236,179,15,10,7,3,2,0,24,15,18,22,18,22,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,3,4,4359,2312,2047,2088,1802,174,214,11,10,13,7,2,1,24,13,2286,2029,2062,1784,174,214,11,10,13,7,2,1,24,13,26,18,26,18,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,3,5,3692,1933,1759,1608,1588,294,148,6,6,5,8,0,0,20,9,1876,1737,1552,1568,294,147,5,6,5,7,0,0,20,9,57,22,56,20,0,1,1,0,0,1,0,0,0,0 -050,01,115,Alabama,St. Clair County,3,6,4218,2169,2049,1837,1854,307,161,4,9,7,10,3,1,11,14,2092,2016,1763,1822,305,161,4,8,6,10,3,1,11,14,77,33,74,32,2,0,0,1,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,3,7,4915,2479,2436,2153,2230,297,180,10,8,5,9,2,0,12,9,2447,2409,2126,2203,294,180,10,8,5,9,1,0,11,9,32,27,27,27,3,0,0,0,0,0,1,0,1,0 -050,01,115,Alabama,St. Clair County,3,8,5423,2802,2621,2484,2408,286,176,14,16,7,9,0,0,11,12,2767,2602,2451,2391,285,176,13,15,7,9,0,0,11,11,35,19,33,17,1,0,1,1,0,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,3,9,5342,2776,2566,2424,2336,311,183,21,20,4,9,1,1,15,17,2748,2542,2398,2312,311,183,20,20,4,9,1,1,14,17,28,24,26,24,0,0,1,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,3,10,4928,2496,2432,2280,2221,177,170,6,9,6,9,0,0,27,23,2479,2419,2263,2211,177,169,6,7,6,9,0,0,27,23,17,13,17,10,0,1,0,2,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,3,11,4745,2385,2360,2185,2175,158,158,10,5,5,8,2,1,25,13,2373,2347,2173,2163,158,157,10,5,5,8,2,1,25,13,12,13,12,12,0,1,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,3,12,3893,1932,1961,1799,1832,100,94,8,7,4,6,0,0,21,22,1915,1942,1783,1814,99,94,8,6,4,6,0,0,21,22,17,19,16,18,1,0,0,1,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,3,13,3033,1498,1535,1384,1422,94,89,8,5,1,2,1,0,10,17,1492,1526,1378,1413,94,89,8,5,1,2,1,0,10,17,6,9,6,9,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,3,14,2544,1207,1337,1120,1236,65,80,3,4,3,5,1,0,15,12,1204,1332,1118,1231,65,80,3,4,2,5,1,0,15,12,3,5,2,5,0,0,0,0,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,3,15,2102,952,1150,898,1094,45,44,2,1,0,4,0,0,7,7,949,1143,895,1088,45,43,2,1,0,4,0,0,7,7,3,7,3,6,0,1,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,3,16,1472,630,842,606,780,23,52,1,4,0,0,0,0,0,6,629,835,605,774,23,52,1,3,0,0,0,0,0,6,1,7,1,6,0,0,0,1,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,3,17,941,352,589,325,549,23,35,1,2,0,0,0,0,3,3,349,586,323,546,23,35,1,2,0,0,0,0,2,3,3,3,2,3,0,0,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,3,18,692,167,525,152,486,14,39,0,0,0,0,0,0,1,0,164,521,149,482,14,39,0,0,0,0,0,0,1,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,3,99,66093,33353,32740,29871,29897,2970,2355,130,130,81,106,16,5,285,247,32937,32411,29473,29584,2963,2349,127,123,78,105,15,5,281,245,416,329,398,313,7,6,3,7,3,1,1,0,4,2 -050,01,115,Alabama,St. Clair County,4,0,858,434,424,401,389,23,24,0,0,1,2,0,0,9,9,425,415,392,380,23,24,0,0,1,2,0,0,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,4,1,3452,1795,1657,1570,1483,175,130,4,6,6,6,1,1,39,31,1764,1612,1540,1442,174,129,4,5,6,6,1,1,39,29,31,45,30,41,1,1,0,1,0,0,0,0,0,2 -050,01,115,Alabama,St. Clair County,4,2,4574,2380,2194,2152,1946,189,199,6,7,6,8,2,1,25,33,2342,2156,2115,1910,189,197,6,7,6,8,2,1,24,33,38,38,37,36,0,2,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,4,3,5058,2703,2355,2414,2129,231,189,14,10,10,6,2,0,32,21,2682,2319,2393,2095,231,188,14,10,10,6,2,0,32,20,21,36,21,34,0,1,0,0,0,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,4,4,4461,2344,2117,2117,1881,181,207,8,10,10,5,1,2,27,12,2316,2097,2090,1861,181,207,8,10,10,5,1,2,26,12,28,20,27,20,0,0,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,4,5,3795,2003,1792,1677,1605,290,158,7,7,5,11,0,0,24,11,1942,1764,1617,1579,290,157,6,7,5,10,0,0,24,11,61,28,60,26,0,1,1,0,0,1,0,0,0,0 -050,01,115,Alabama,St. Clair County,4,6,4020,2036,1984,1714,1795,294,153,4,7,10,8,4,2,10,19,1972,1940,1655,1754,292,153,3,5,9,8,3,2,10,18,64,44,59,41,2,0,1,2,1,0,1,0,0,1 -050,01,115,Alabama,St. Clair County,4,7,4963,2581,2382,2231,2173,320,171,9,9,5,17,2,0,14,12,2529,2357,2184,2149,317,171,9,8,5,17,1,0,13,12,52,25,47,24,3,0,0,1,0,0,1,0,1,0 -050,01,115,Alabama,St. Clair County,4,8,5389,2764,2625,2454,2396,277,190,11,15,6,12,0,0,16,12,2720,2601,2413,2375,275,189,10,14,6,12,0,0,16,11,44,24,41,21,2,1,1,1,0,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,4,9,5470,2856,2614,2526,2371,289,198,20,15,6,11,1,1,14,18,2828,2590,2500,2347,289,198,19,15,6,11,1,1,13,18,28,24,26,24,0,0,1,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,4,10,5137,2611,2526,2338,2301,224,176,14,12,12,13,0,0,23,24,2588,2512,2316,2290,224,175,14,10,11,13,0,0,23,24,23,14,22,11,0,1,0,2,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,4,11,4740,2357,2383,2150,2178,165,169,8,10,6,10,0,1,28,15,2342,2366,2135,2162,165,168,8,10,6,10,0,1,28,15,15,17,15,16,0,1,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,4,12,4162,2045,2117,1897,1986,113,101,6,6,4,8,0,0,25,16,2039,2097,1892,1967,112,101,6,5,4,8,0,0,25,16,6,20,5,19,1,0,0,1,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,4,13,3233,1655,1578,1542,1473,88,83,8,6,2,1,0,0,15,15,1643,1569,1530,1464,88,83,8,6,2,1,0,0,15,15,12,9,12,9,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,4,14,2619,1224,1395,1128,1291,73,87,5,4,3,4,1,0,14,9,1219,1389,1124,1285,73,87,5,4,2,4,1,0,14,9,5,6,4,6,0,0,0,0,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,4,15,2080,953,1127,903,1067,39,45,3,2,0,5,0,0,8,8,950,1120,900,1061,39,44,3,2,0,5,0,0,8,8,3,7,3,6,0,1,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,4,16,1588,673,915,643,857,28,47,1,3,0,1,0,0,1,7,672,908,642,851,28,47,1,2,0,1,0,0,1,7,1,7,1,6,0,0,0,1,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,4,17,961,360,601,340,559,19,37,0,1,0,0,0,0,1,4,357,598,338,556,19,37,0,1,0,0,0,0,0,4,3,3,2,3,0,0,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,4,18,714,182,532,162,498,19,34,0,0,0,0,0,0,1,0,180,528,160,494,19,34,0,0,0,0,0,0,1,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,4,99,67274,33956,33318,30359,30378,3037,2398,128,130,92,128,14,8,326,276,33510,32938,29936,30022,3028,2389,124,121,89,127,12,8,321,271,446,380,423,356,9,9,4,9,3,1,2,0,5,5 -050,01,115,Alabama,St. Clair County,5,0,829,439,390,402,355,26,24,1,0,1,1,0,0,9,10,425,381,389,347,26,24,0,0,1,1,0,0,9,9,14,9,13,8,0,0,1,0,0,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,5,1,3442,1778,1664,1562,1485,164,133,4,6,9,7,1,1,38,32,1740,1619,1526,1445,163,132,4,5,8,7,1,1,38,29,38,45,36,40,1,1,0,1,1,0,0,0,0,3 -050,01,115,Alabama,St. Clair County,5,2,4726,2463,2263,2207,2016,205,195,6,6,8,10,1,1,36,35,2415,2217,2162,1973,205,193,4,6,8,10,1,1,35,34,48,46,45,43,0,2,2,0,0,0,0,0,1,1 -050,01,115,Alabama,St. Clair County,5,3,5068,2737,2331,2448,2089,233,197,12,14,11,7,2,0,31,24,2707,2303,2418,2064,233,195,12,14,11,7,2,0,31,23,30,28,30,25,0,2,0,0,0,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,5,4,4569,2408,2161,2181,1927,178,204,10,8,12,4,2,1,25,17,2376,2127,2150,1894,178,204,10,8,12,4,2,1,24,16,32,34,31,33,0,0,0,0,0,0,0,0,1,1 -050,01,115,Alabama,St. Clair County,5,5,3854,2066,1788,1726,1604,307,151,7,5,6,14,0,1,20,13,2012,1762,1675,1581,305,150,6,5,6,13,0,1,20,12,54,26,51,23,2,1,1,0,0,1,0,0,0,1 -050,01,115,Alabama,St. Clair County,5,6,4167,2114,2053,1779,1839,303,173,5,10,12,7,3,2,12,22,2068,2007,1738,1797,302,173,4,8,10,7,2,2,12,20,46,46,41,42,1,0,1,2,2,0,1,0,0,2 -050,01,115,Alabama,St. Clair County,5,7,5041,2604,2437,2218,2216,352,182,9,8,7,20,2,0,16,11,2536,2411,2155,2191,350,182,9,7,7,20,1,0,14,11,68,26,63,25,2,0,0,1,0,0,1,0,2,0 -050,01,115,Alabama,St. Clair County,5,8,5279,2721,2558,2398,2339,285,178,15,15,8,11,0,0,15,15,2669,2535,2349,2319,283,177,14,14,8,11,0,0,15,14,52,23,49,20,2,1,1,1,0,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,5,9,5644,2950,2694,2593,2432,318,215,19,14,8,9,1,1,11,23,2919,2670,2564,2408,318,215,18,14,8,9,1,1,10,23,31,24,29,24,0,0,1,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,5,10,5221,2690,2531,2404,2329,240,159,12,11,10,10,0,0,24,22,2662,2511,2377,2312,240,157,12,10,9,10,0,0,24,22,28,20,27,17,0,2,0,1,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,5,11,4861,2421,2440,2205,2216,173,181,9,6,6,17,1,1,27,19,2406,2423,2190,2200,173,180,9,6,6,17,1,1,27,19,15,17,15,16,0,1,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,5,12,4321,2087,2234,1929,2089,125,115,7,7,8,7,0,0,18,16,2078,2217,1921,2073,124,115,7,6,8,7,0,0,18,16,9,17,8,16,1,0,0,1,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,5,13,3459,1781,1678,1658,1566,93,86,10,7,2,4,0,0,18,15,1769,1665,1647,1553,92,86,10,7,2,4,0,0,18,15,12,13,11,13,1,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,5,14,2699,1243,1456,1148,1337,72,98,6,3,3,5,1,0,13,13,1236,1449,1142,1330,72,98,6,3,2,5,1,0,13,13,7,7,6,7,0,0,0,0,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,5,15,2101,990,1111,938,1044,41,53,4,2,0,5,1,0,6,7,987,1103,935,1037,41,52,4,2,0,5,1,0,6,7,3,8,3,7,0,1,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,5,16,1626,674,952,647,891,24,49,1,3,0,2,0,0,2,7,672,946,645,886,24,49,1,2,0,2,0,0,2,7,2,6,2,5,0,0,0,1,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,5,17,1011,387,624,366,580,17,39,1,1,0,0,0,0,3,4,384,622,364,578,17,39,1,1,0,0,0,0,2,4,3,2,2,2,0,0,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,5,18,711,164,547,143,510,19,36,0,0,0,0,0,0,2,1,162,542,141,505,19,36,0,0,0,0,0,0,2,1,2,5,2,5,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,5,99,68629,34717,33912,30952,30864,3175,2468,138,126,111,140,15,8,326,306,34223,33510,30488,30493,3165,2457,131,118,106,139,13,8,320,295,494,402,464,371,10,11,7,8,5,1,2,0,6,11 -050,01,115,Alabama,St. Clair County,6,0,859,411,448,382,411,21,26,0,0,1,1,0,0,7,10,399,441,370,405,21,26,0,0,1,1,0,0,7,9,12,7,12,6,0,0,0,0,0,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,6,1,3493,1838,1655,1592,1471,194,140,4,5,11,7,1,1,36,31,1795,1608,1552,1429,192,139,4,4,10,7,1,1,36,28,43,47,40,42,2,1,0,1,1,0,0,0,0,3 -050,01,115,Alabama,St. Clair County,6,2,4718,2453,2265,2221,2020,181,186,8,6,12,13,2,1,29,39,2395,2220,2166,1979,181,184,6,6,12,13,2,1,28,37,58,45,55,41,0,2,2,0,0,0,0,0,1,2 -050,01,115,Alabama,St. Clair County,6,3,5149,2744,2405,2448,2161,236,204,12,9,9,8,1,0,38,23,2707,2372,2412,2133,236,201,12,8,8,8,1,0,38,22,37,33,36,28,0,3,0,1,1,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,6,4,4737,2502,2235,2247,2005,202,196,13,8,13,5,4,1,23,20,2463,2201,2210,1974,202,195,13,8,13,5,3,1,22,18,39,34,37,31,0,1,0,0,0,0,1,0,1,2 -050,01,115,Alabama,St. Clair County,6,5,3953,2121,1832,1786,1645,299,153,6,7,8,14,0,0,22,13,2071,1803,1740,1618,297,152,5,7,8,13,0,0,21,13,50,29,46,27,2,1,1,0,0,1,0,0,1,0 -050,01,115,Alabama,St. Clair County,6,6,4373,2173,2200,1819,1963,320,191,6,10,13,15,4,2,11,19,2120,2152,1771,1921,319,190,5,7,11,15,3,2,11,17,53,48,48,42,1,1,1,3,2,0,1,0,0,2 -050,01,115,Alabama,St. Clair County,6,7,4952,2531,2421,2150,2191,344,189,8,7,9,21,1,0,19,13,2454,2383,2080,2154,341,189,8,6,9,21,0,0,16,13,77,38,70,37,3,0,0,1,0,0,1,0,3,0 -050,01,115,Alabama,St. Clair County,6,8,5407,2806,2601,2488,2378,280,178,11,15,11,13,1,0,15,17,2756,2574,2442,2353,277,177,10,14,11,13,1,0,15,17,50,27,46,25,3,1,1,1,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,6,9,5819,3012,2807,2645,2526,325,232,16,16,11,11,1,2,14,20,2977,2781,2612,2501,325,232,15,16,11,11,1,2,13,19,35,26,33,25,0,0,1,0,0,0,0,0,1,1 -050,01,115,Alabama,St. Clair County,6,10,5349,2763,2586,2483,2368,237,167,9,11,12,12,0,1,22,27,2732,2564,2452,2351,237,165,9,9,12,12,0,1,22,26,31,22,31,17,0,2,0,2,0,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,6,11,5023,2503,2520,2267,2293,190,180,11,9,6,16,2,1,27,21,2492,2499,2256,2273,190,179,11,9,6,16,2,1,27,21,11,21,11,20,0,1,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,6,12,4534,2183,2351,2016,2196,137,122,5,6,9,8,1,0,15,19,2168,2334,2003,2181,136,121,5,5,9,8,0,0,15,19,15,17,13,15,1,1,0,1,0,0,1,0,0,0 -050,01,115,Alabama,St. Clair County,6,13,3666,1890,1776,1761,1665,97,85,10,7,3,2,0,1,19,16,1875,1760,1748,1649,96,85,10,7,3,2,0,1,18,16,15,16,13,16,1,0,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,6,14,2842,1320,1522,1219,1410,77,86,7,4,3,5,1,1,13,16,1313,1513,1213,1401,77,86,7,4,2,5,1,1,13,16,7,9,6,9,0,0,0,0,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,6,15,2146,993,1153,944,1068,38,69,4,2,0,5,1,0,6,9,989,1144,940,1060,38,68,4,2,0,5,1,0,6,9,4,9,4,8,0,1,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,6,16,1640,675,965,650,916,21,38,1,3,0,2,0,0,3,6,673,959,648,911,21,38,1,2,0,2,0,0,3,6,2,6,2,5,0,0,0,1,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,6,17,1019,409,610,389,571,18,34,1,1,0,1,0,0,1,3,405,607,385,568,18,34,1,1,0,1,0,0,1,3,4,3,4,3,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,6,18,737,187,550,167,513,17,34,0,0,0,0,1,0,2,3,185,545,165,508,17,34,0,0,0,0,1,0,2,3,2,5,2,5,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,6,99,70416,35514,34902,31674,31771,3234,2510,132,126,131,159,21,11,322,325,34969,34460,31165,31369,3221,2495,126,115,126,158,17,11,314,312,545,442,509,402,13,15,6,11,5,1,4,0,8,13 -050,01,115,Alabama,St. Clair County,7,0,985,518,467,470,426,33,30,1,0,1,1,0,0,13,10,500,453,453,413,33,30,0,0,1,1,0,0,13,9,18,14,17,13,0,0,1,0,0,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,7,1,3549,1864,1685,1619,1494,198,139,3,5,11,10,1,0,32,37,1814,1629,1573,1444,195,138,3,4,11,10,1,0,31,33,50,56,46,50,3,1,0,1,0,0,0,0,1,4 -050,01,115,Alabama,St. Clair County,7,2,4810,2463,2347,2205,2082,196,191,8,6,12,17,4,1,38,50,2391,2297,2142,2038,193,187,5,6,11,17,2,1,38,48,72,50,63,44,3,4,3,0,1,0,2,0,0,2 -050,01,115,Alabama,St. Clair County,7,3,5062,2684,2378,2390,2123,240,196,9,16,5,11,1,1,39,31,2645,2332,2353,2086,239,193,9,14,5,10,1,1,38,28,39,46,37,37,1,3,0,2,0,1,0,0,1,3 -050,01,115,Alabama,St. Clair County,7,4,4953,2657,2296,2376,2070,219,188,18,7,17,7,3,1,24,23,2612,2266,2337,2046,218,186,17,6,16,7,2,1,22,20,45,30,39,24,1,2,1,1,1,0,1,0,2,3 -050,01,115,Alabama,St. Clair County,7,5,4097,2132,1965,1810,1765,270,159,8,9,11,13,0,2,33,17,2073,1927,1758,1732,268,159,7,7,11,13,0,1,29,15,59,38,52,33,2,0,1,2,0,0,0,1,4,2 -050,01,115,Alabama,St. Clair County,7,6,4586,2316,2270,1965,2037,320,189,7,8,13,16,2,2,9,18,2249,2217,1904,1993,320,188,4,5,12,13,0,2,9,16,67,53,61,44,0,1,3,3,1,3,2,0,0,2 -050,01,115,Alabama,St. Clair County,7,7,5065,2613,2452,2209,2192,361,209,9,8,12,27,2,0,20,16,2544,2411,2147,2155,358,207,9,6,12,27,1,0,17,16,69,41,62,37,3,2,0,2,0,0,1,0,3,0 -050,01,115,Alabama,St. Clair County,7,8,5419,2812,2607,2489,2370,288,190,6,13,13,18,1,2,15,14,2755,2577,2438,2347,285,188,5,11,12,17,1,1,14,13,57,30,51,23,3,2,1,2,1,1,0,1,1,1 -050,01,115,Alabama,St. Clair County,7,9,5950,3074,2876,2723,2595,305,235,17,17,13,8,0,0,16,21,3030,2841,2681,2562,304,235,17,16,12,8,0,0,16,20,44,35,42,33,1,0,0,1,1,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,7,10,5568,2856,2712,2525,2467,279,188,15,15,12,13,2,0,23,29,2825,2688,2498,2448,279,185,14,14,11,13,0,0,23,28,31,24,27,19,0,3,1,1,1,0,2,0,0,1 -050,01,115,Alabama,St. Clair County,7,11,5245,2624,2621,2396,2392,190,179,10,7,8,19,1,2,19,22,2609,2605,2381,2377,190,178,10,7,8,19,1,2,19,22,15,16,15,15,0,1,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,7,12,4767,2311,2456,2108,2281,157,138,12,6,11,7,1,1,22,23,2295,2441,2094,2267,156,138,11,5,11,7,1,1,22,23,16,15,14,14,1,0,1,1,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,7,13,3880,1948,1932,1822,1814,91,90,10,6,5,5,1,1,19,16,1936,1913,1813,1796,90,90,9,6,5,4,1,1,18,16,12,19,9,18,1,0,1,0,0,1,0,0,1,0 -050,01,115,Alabama,St. Clair County,7,14,2921,1394,1527,1276,1422,88,84,7,6,2,5,2,1,19,9,1388,1516,1270,1411,88,84,7,6,2,5,2,1,19,9,6,11,6,11,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,7,15,2279,1050,1229,991,1150,45,60,3,3,1,6,2,0,8,10,1046,1221,988,1143,45,59,3,3,1,6,2,0,7,10,4,8,3,7,0,1,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,7,16,1663,698,965,659,921,32,36,3,2,0,2,0,0,4,4,697,960,658,916,32,36,3,2,0,2,0,0,4,4,1,5,1,5,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,7,17,1021,421,600,404,554,16,39,0,1,0,1,0,0,1,5,420,597,403,551,16,39,0,1,0,1,0,0,1,5,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,7,18,776,194,582,176,546,15,32,0,1,0,0,1,0,2,3,192,578,174,542,15,32,0,1,0,0,1,0,2,3,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,7,99,72596,36629,35967,32613,32701,3343,2572,146,136,147,186,24,14,356,358,36021,35469,32065,32267,3324,2552,133,120,141,180,16,12,342,338,608,498,548,434,19,20,13,16,6,6,8,2,14,20 -050,01,115,Alabama,St. Clair County,8,0,1059,543,516,503,466,27,35,0,1,2,3,0,0,11,11,523,502,483,453,27,35,0,1,2,3,0,0,11,10,20,14,20,13,0,0,0,0,0,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,8,1,3750,1957,1793,1709,1590,185,146,4,7,7,11,1,3,51,36,1902,1712,1660,1517,181,145,4,5,6,11,1,1,50,33,55,81,49,73,4,1,0,2,1,0,0,2,1,3 -050,01,115,Alabama,St. Clair County,8,2,5023,2573,2450,2262,2174,243,196,8,7,10,19,4,1,46,53,2499,2387,2200,2120,240,192,5,5,9,19,2,1,43,50,74,63,62,54,3,4,3,2,1,0,2,0,3,3 -050,01,115,Alabama,St. Clair County,8,3,5173,2716,2457,2419,2205,235,189,7,15,7,13,1,1,47,34,2661,2395,2368,2153,233,186,7,13,6,12,1,1,46,30,55,62,51,52,2,3,0,2,1,1,0,0,1,4 -050,01,115,Alabama,St. Clair County,8,4,5148,2780,2368,2472,2116,247,210,15,7,15,6,2,1,29,28,2733,2329,2431,2084,246,207,14,6,14,6,1,1,27,25,47,39,41,32,1,3,1,1,1,0,1,0,2,3 -050,01,115,Alabama,St. Clair County,8,5,4256,2226,2030,1913,1822,264,163,8,10,10,13,0,2,31,20,2161,1996,1856,1792,261,163,7,8,10,13,0,1,27,19,65,34,57,30,3,0,1,2,0,0,0,1,4,1 -050,01,115,Alabama,St. Clair County,8,6,4976,2512,2464,2134,2203,336,216,9,6,19,20,4,2,10,17,2426,2409,2058,2159,334,214,5,3,18,17,1,1,10,15,86,55,76,44,2,2,4,3,1,3,3,1,0,2 -050,01,115,Alabama,St. Clair County,8,7,5168,2614,2554,2206,2279,361,226,9,7,13,25,2,0,23,17,2542,2511,2144,2240,358,224,7,5,13,25,1,0,19,17,72,43,62,39,3,2,2,2,0,0,1,0,4,0 -050,01,115,Alabama,St. Clair County,8,8,5658,2927,2731,2551,2453,331,222,10,12,13,26,2,1,20,17,2856,2692,2489,2421,327,220,7,10,12,25,2,0,19,16,71,39,62,32,4,2,3,2,1,1,0,1,1,1 -050,01,115,Alabama,St. Clair County,8,9,6000,3074,2926,2722,2637,306,237,16,15,15,10,1,1,14,26,3022,2892,2672,2607,305,236,16,14,14,10,1,1,14,24,52,34,50,30,1,1,0,1,1,0,0,0,0,2 -050,01,115,Alabama,St. Clair County,8,10,5836,3010,2826,2648,2582,308,188,17,14,11,11,4,1,22,30,2980,2795,2622,2555,308,185,16,14,10,11,2,1,22,29,30,31,26,27,0,3,1,0,1,0,2,0,0,1 -050,01,115,Alabama,St. Clair County,8,11,5547,2764,2783,2504,2509,217,206,11,10,9,27,0,2,23,29,2736,2768,2479,2496,215,205,10,10,9,26,0,2,23,29,28,15,25,13,2,1,1,0,0,1,0,0,0,0 -050,01,115,Alabama,St. Clair County,8,12,5065,2456,2609,2238,2414,164,160,11,7,13,9,2,0,28,19,2438,2592,2223,2399,163,159,10,6,13,9,1,0,28,19,18,17,15,15,1,1,1,1,0,0,1,0,0,0 -050,01,115,Alabama,St. Clair County,8,13,4065,2046,2019,1893,1893,118,92,10,9,7,7,1,1,17,17,2033,2001,1883,1876,117,92,9,9,7,6,1,1,16,17,13,18,10,17,1,0,1,0,0,1,0,0,1,0 -050,01,115,Alabama,St. Clair County,8,14,3142,1507,1635,1402,1521,83,91,7,6,2,5,1,1,12,11,1501,1624,1396,1510,83,91,7,6,2,5,1,1,12,11,6,11,6,11,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,8,15,2411,1121,1290,1052,1206,53,69,4,2,2,5,2,0,8,8,1117,1282,1049,1198,53,69,4,2,2,5,2,0,7,8,4,8,3,8,0,0,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,8,16,1809,766,1043,731,999,29,33,2,2,0,3,0,0,4,6,763,1039,728,995,29,33,2,2,0,3,0,0,4,6,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,8,17,1048,421,627,404,585,17,36,0,0,0,1,0,0,0,5,419,624,402,582,17,36,0,0,0,1,0,0,0,5,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,8,18,814,237,577,217,541,16,31,0,1,0,0,1,0,3,4,235,573,215,537,16,31,0,1,0,0,1,0,3,4,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,8,99,75948,38250,37698,33980,34195,3540,2746,148,138,155,214,28,17,399,388,37547,37123,33358,33694,3513,2723,130,120,147,207,18,12,381,367,703,575,622,501,27,23,18,18,8,7,10,5,18,21 -050,01,115,Alabama,St. Clair County,9,0,1155,563,592,526,539,23,33,1,1,2,1,0,0,11,18,539,572,503,521,23,32,0,1,2,1,0,0,11,17,24,20,23,18,0,1,1,0,0,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,9,1,3973,2104,1869,1833,1638,188,167,5,7,11,11,2,3,65,43,2043,1788,1780,1567,184,166,4,4,10,11,2,1,63,39,61,81,53,71,4,1,1,3,1,0,0,2,2,4 -050,01,115,Alabama,St. Clair County,9,2,5237,2672,2565,2334,2264,253,205,9,8,19,22,4,1,53,65,2582,2490,2257,2201,250,201,5,5,18,22,2,1,50,60,90,75,77,63,3,4,4,3,1,0,2,0,3,5 -050,01,115,Alabama,St. Clair County,9,3,5310,2786,2524,2451,2251,260,210,9,11,15,15,1,0,50,37,2716,2460,2387,2197,258,207,9,9,14,14,1,0,47,33,70,64,64,54,2,3,0,2,1,1,0,0,3,4 -050,01,115,Alabama,St. Clair County,9,4,5319,2866,2453,2535,2172,266,233,16,6,15,8,4,2,30,32,2811,2414,2487,2142,264,230,15,5,14,8,3,2,28,27,55,39,48,30,2,3,1,1,1,0,1,0,2,5 -050,01,115,Alabama,St. Clair County,9,5,4427,2292,2135,1974,1921,264,168,7,11,11,11,0,2,36,22,2221,2092,1911,1883,261,168,6,9,11,11,0,1,32,20,71,43,63,38,3,0,1,2,0,0,0,1,4,2 -050,01,115,Alabama,St. Clair County,9,6,5388,2652,2736,2267,2422,343,247,8,7,17,34,3,2,14,24,2552,2650,2178,2350,340,245,4,3,16,31,0,1,14,20,100,86,89,72,3,2,4,4,1,3,3,1,0,4 -050,01,115,Alabama,St. Clair County,9,7,5302,2721,2581,2291,2307,380,223,10,6,16,28,2,0,22,17,2634,2535,2216,2266,376,220,8,4,16,28,1,0,17,17,87,46,75,41,4,3,2,2,0,0,1,0,5,0 -050,01,115,Alabama,St. Clair County,9,8,5904,3089,2815,2678,2508,358,247,11,12,18,26,3,1,21,21,3007,2763,2606,2463,353,245,8,10,17,25,3,0,20,20,82,52,72,45,5,2,3,2,1,1,0,1,1,1 -050,01,115,Alabama,St. Clair County,9,9,6011,3092,2919,2718,2624,330,244,14,13,16,13,1,1,13,24,3037,2885,2664,2593,329,243,14,12,16,13,1,1,13,23,55,34,54,31,1,1,0,1,0,0,0,0,0,1 -050,01,115,Alabama,St. Clair County,9,10,6159,3151,3008,2783,2720,308,221,19,16,18,20,2,1,21,30,3126,2967,2763,2685,308,217,18,16,16,19,0,1,21,29,25,41,20,35,0,4,1,0,2,1,2,0,0,1 -050,01,115,Alabama,St. Clair County,9,11,5870,2928,2942,2635,2659,252,216,13,8,8,28,0,1,20,30,2893,2926,2603,2645,250,215,12,8,8,27,0,1,20,30,35,16,32,14,2,1,1,0,0,1,0,0,0,0 -050,01,115,Alabama,St. Clair County,9,12,5161,2492,2669,2261,2454,174,172,9,10,12,10,1,0,35,23,2469,2649,2240,2437,173,171,8,8,12,10,1,0,35,23,23,20,21,17,1,1,1,2,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,9,13,4371,2157,2214,1997,2075,128,107,8,8,7,7,0,1,17,16,2142,2196,1985,2058,127,107,7,8,7,6,0,1,16,16,15,18,12,17,1,0,1,0,0,1,0,0,1,0 -050,01,115,Alabama,St. Clair County,9,14,3417,1681,1736,1565,1611,86,99,10,8,2,6,3,1,15,11,1665,1723,1550,1598,85,99,10,8,2,6,3,1,15,11,16,13,15,13,1,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,9,15,2537,1163,1374,1086,1268,62,90,3,2,2,4,1,0,9,10,1158,1365,1082,1259,62,90,3,2,2,4,1,0,8,10,5,9,4,9,0,0,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,9,16,1837,778,1059,747,1015,23,34,3,1,0,4,0,0,5,5,775,1055,744,1011,23,34,3,1,0,4,0,0,5,5,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,9,17,1135,452,683,433,639,17,37,0,1,1,2,0,0,1,4,450,680,431,636,17,37,0,1,1,2,0,0,1,4,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,9,18,835,248,587,226,550,17,32,0,1,0,0,1,0,4,4,246,584,224,547,17,32,0,1,0,0,1,0,4,4,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,9,99,79348,39887,39461,35340,35637,3732,2985,155,137,190,250,28,16,442,436,39066,38794,34611,35059,3700,2959,134,115,182,242,19,11,420,408,821,667,729,578,32,26,21,22,8,8,9,5,22,28 -050,01,115,Alabama,St. Clair County,10,0,1214,608,606,560,547,30,33,1,1,2,1,0,0,15,24,582,586,535,530,30,32,0,1,2,1,0,0,15,22,26,20,25,17,0,1,1,0,0,0,0,0,0,2 -050,01,115,Alabama,St. Clair County,10,1,4253,2224,2029,1948,1806,192,152,5,8,12,17,2,2,65,44,2159,1934,1891,1721,187,151,4,5,12,17,2,0,63,40,65,95,57,85,5,1,1,3,0,0,0,2,2,4 -050,01,115,Alabama,St. Clair County,10,2,5296,2778,2518,2435,2206,249,214,11,7,20,23,4,1,59,67,2670,2432,2341,2134,246,209,6,4,19,23,2,1,56,61,108,86,94,72,3,5,5,3,1,0,2,0,3,6 -050,01,115,Alabama,St. Clair County,10,3,5439,2811,2628,2464,2337,261,219,5,14,18,18,1,1,62,39,2740,2562,2399,2282,259,215,5,12,17,17,1,1,59,35,71,66,65,55,2,4,0,2,1,1,0,0,3,4 -050,01,115,Alabama,St. Clair County,10,4,5279,2839,2440,2496,2161,276,236,13,5,18,6,5,1,31,31,2779,2399,2444,2128,274,233,12,4,17,6,4,1,28,27,60,41,52,33,2,3,1,1,1,0,1,0,3,4 -050,01,115,Alabama,St. Clair County,10,5,4427,2294,2133,2000,1909,242,175,8,11,12,11,0,2,32,25,2231,2079,1947,1861,237,175,7,9,12,11,0,1,28,22,63,54,53,48,5,0,1,2,0,0,0,1,4,3 -050,01,115,Alabama,St. Clair County,10,6,5509,2729,2780,2338,2465,345,249,8,8,21,26,4,3,13,29,2620,2700,2242,2400,342,247,4,4,19,23,0,2,13,24,109,80,96,65,3,2,4,4,2,3,4,1,0,5 -050,01,115,Alabama,St. Clair County,10,7,5541,2822,2719,2357,2406,410,257,11,7,16,33,1,0,27,16,2743,2660,2291,2353,406,254,9,4,16,33,0,0,21,16,79,59,66,53,4,3,2,3,0,0,1,0,6,0 -050,01,115,Alabama,St. Clair County,10,8,6034,3135,2899,2713,2588,374,252,12,12,13,24,1,2,22,21,3054,2831,2642,2529,369,249,9,10,12,22,1,1,21,20,81,68,71,59,5,3,3,2,1,2,0,1,1,1 -050,01,115,Alabama,St. Clair County,10,9,5945,3070,2875,2683,2582,336,229,17,11,20,30,1,0,13,23,3009,2831,2624,2542,335,228,17,10,19,30,1,0,13,21,61,44,59,40,1,1,0,1,1,0,0,0,0,2 -050,01,115,Alabama,St. Clair County,10,10,6366,3251,3115,2874,2802,328,247,12,18,15,20,4,2,18,26,3221,3081,2847,2774,328,243,11,18,15,19,2,2,18,25,30,34,27,28,0,4,1,0,0,1,2,0,0,1 -050,01,115,Alabama,St. Clair County,10,11,5950,2967,2983,2649,2699,265,221,15,10,9,28,0,1,29,24,2938,2958,2623,2676,263,220,14,10,9,27,0,1,29,24,29,25,26,23,2,1,1,0,0,1,0,0,0,0 -050,01,115,Alabama,St. Clair County,10,12,5285,2536,2749,2297,2514,174,187,12,8,21,9,1,0,31,31,2521,2730,2284,2498,173,186,11,6,21,9,1,0,31,31,15,19,13,16,1,1,1,2,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,10,13,4554,2215,2339,2046,2188,140,118,8,8,7,9,1,1,13,15,2204,2325,2038,2175,139,118,7,8,7,8,1,1,12,15,11,14,8,13,1,0,1,0,0,1,0,0,1,0 -050,01,115,Alabama,St. Clair County,10,14,3592,1777,1815,1643,1688,93,100,8,8,2,6,3,1,28,12,1761,1800,1628,1673,92,100,8,8,2,6,3,1,28,12,16,15,15,15,1,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,10,15,2588,1190,1398,1115,1303,57,76,4,2,2,4,2,0,10,13,1185,1389,1111,1294,57,76,4,2,2,4,2,0,9,13,5,9,4,9,0,0,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,10,16,1925,855,1070,818,1012,30,49,2,1,0,4,0,0,5,4,852,1066,815,1008,30,49,2,1,0,4,0,0,5,4,3,4,3,4,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,10,17,1165,433,732,415,696,16,28,0,1,1,2,0,0,1,5,431,729,413,693,16,28,0,1,1,2,0,0,1,5,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,10,18,861,259,602,238,571,16,27,0,1,0,0,1,0,4,3,257,598,236,567,16,27,0,1,0,0,1,0,4,3,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,10,99,81223,40793,40430,36089,36480,3834,3069,152,141,209,271,31,17,478,452,39957,39690,35351,35838,3799,3040,130,118,202,262,21,12,454,420,836,740,738,642,35,29,22,23,7,9,10,5,24,32 -050,01,115,Alabama,St. Clair County,11,0,1157,581,576,518,509,40,41,3,2,2,3,0,0,18,21,555,556,495,494,40,40,0,1,2,3,0,0,18,18,26,20,23,15,0,1,3,1,0,0,0,0,0,3 -050,01,115,Alabama,St. Clair County,11,1,4540,2396,2144,2087,1901,202,162,5,8,14,13,1,2,87,58,2312,2033,2012,1800,197,161,4,5,13,13,1,0,85,54,84,111,75,101,5,1,1,3,1,0,0,2,2,4 -050,01,115,Alabama,St. Clair County,11,2,5389,2786,2603,2436,2273,243,225,11,7,21,24,4,1,71,73,2681,2503,2346,2187,240,220,5,4,20,24,2,1,68,67,105,100,90,86,3,5,6,3,1,0,2,0,3,6 -050,01,115,Alabama,St. Clair County,11,3,5416,2799,2617,2479,2327,241,213,4,11,12,20,2,1,61,45,2716,2553,2402,2275,239,209,4,9,11,19,2,1,58,40,83,64,77,52,2,4,0,2,1,1,0,0,3,5 -050,01,115,Alabama,St. Clair County,11,4,5380,2856,2524,2518,2220,269,256,15,5,17,5,5,2,32,36,2799,2466,2469,2171,267,253,14,4,16,5,4,2,29,31,57,58,49,49,2,3,1,1,1,0,1,0,3,5 -050,01,115,Alabama,St. Clair County,11,5,4475,2325,2150,2008,1924,257,176,9,8,13,13,0,4,38,25,2257,2105,1950,1884,252,176,8,6,13,13,0,3,34,23,68,45,58,40,5,0,1,2,0,0,0,1,4,2 -050,01,115,Alabama,St. Clair County,11,6,5644,2802,2842,2413,2529,340,251,10,9,22,26,4,3,13,24,2692,2748,2317,2450,337,249,5,5,20,23,0,2,13,19,110,94,96,79,3,2,5,4,2,3,4,1,0,5 -050,01,115,Alabama,St. Clair County,11,7,5743,2924,2819,2439,2479,419,277,11,7,23,39,2,0,30,17,2830,2755,2358,2421,415,274,9,4,23,39,1,0,24,17,94,64,81,58,4,3,2,3,0,0,1,0,6,0 -050,01,115,Alabama,St. Clair County,11,8,5954,3068,2886,2639,2548,362,263,16,10,22,35,4,1,25,29,2976,2817,2558,2487,356,260,13,8,21,34,4,0,24,28,92,69,81,61,6,3,3,2,1,1,0,1,1,1 -050,01,115,Alabama,St. Clair County,11,9,6044,3174,2870,2770,2592,353,224,18,10,20,23,1,0,12,21,3127,2824,2724,2551,352,223,18,8,20,23,1,0,12,19,47,46,46,41,1,1,0,2,0,0,0,0,0,2 -050,01,115,Alabama,St. Clair County,11,10,6491,3308,3183,2913,2865,340,252,15,15,19,15,4,1,17,35,3273,3152,2882,2839,340,248,14,15,18,15,2,1,17,34,35,31,31,26,0,4,1,0,1,0,2,0,0,1 -050,01,115,Alabama,St. Clair County,11,11,6061,3026,3035,2706,2727,275,239,13,12,11,30,0,2,21,25,3001,3013,2684,2707,273,238,12,12,11,29,0,2,21,25,25,22,22,20,2,1,1,0,0,1,0,0,0,0 -050,01,115,Alabama,St. Clair County,11,12,5396,2593,2803,2329,2579,199,180,13,8,26,8,1,1,25,27,2572,2781,2310,2560,198,179,12,6,26,8,1,1,25,27,21,22,19,19,1,1,1,2,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,11,13,4749,2322,2427,2149,2274,140,121,9,8,8,9,2,1,14,14,2309,2415,2139,2263,139,121,8,8,8,8,2,1,13,14,13,12,10,11,1,0,1,0,0,1,0,0,1,0 -050,01,115,Alabama,St. Clair County,11,14,3753,1831,1922,1692,1777,100,114,10,7,2,6,3,1,24,17,1820,1907,1682,1762,99,114,10,7,2,6,3,1,24,17,11,15,10,15,1,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,11,15,2747,1279,1468,1200,1381,64,66,2,4,2,4,2,0,9,13,1273,1459,1195,1372,64,66,2,4,2,4,2,0,8,13,6,9,5,9,0,0,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,11,16,1912,863,1049,820,985,35,54,3,1,0,5,0,0,5,4,860,1046,817,982,35,54,3,1,0,5,0,0,5,4,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,11,17,1238,451,787,433,741,16,38,0,1,1,2,0,0,1,5,448,784,430,738,16,38,0,1,1,2,0,0,1,5,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,11,18,920,286,634,266,607,15,23,0,1,0,0,1,0,4,3,285,631,265,604,15,23,0,1,0,0,1,0,4,3,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,11,99,83009,41670,41339,36815,37238,3910,3175,167,134,235,280,36,20,507,492,40786,40548,36035,36547,3874,3146,141,109,227,273,26,15,483,458,884,791,780,691,36,29,26,25,8,7,10,5,24,34 -050,01,115,Alabama,St. Clair County,12,0,1069,535,534,475,466,40,46,3,2,3,3,0,0,14,17,510,517,453,454,40,45,0,1,3,3,0,0,14,14,25,17,22,12,0,1,3,1,0,0,0,0,0,3 -050,01,115,Alabama,St. Clair County,12,1,4464,2351,2113,2055,1871,196,155,5,8,17,18,2,3,76,58,2267,2013,1980,1782,191,154,4,5,16,18,2,1,74,53,84,100,75,89,5,1,1,3,1,0,0,2,2,5 -050,01,115,Alabama,St. Clair County,12,2,5478,2833,2645,2476,2306,249,228,11,7,20,29,4,1,73,74,2728,2546,2386,2221,246,223,5,4,19,29,2,1,70,68,105,99,90,85,3,5,6,3,1,0,2,0,3,6 -050,01,115,Alabama,St. Clair County,12,3,5447,2820,2627,2478,2327,252,220,6,13,17,20,2,1,65,46,2731,2557,2395,2270,250,215,6,11,16,19,2,1,62,41,89,70,83,57,2,5,0,2,1,1,0,0,3,5 -050,01,115,Alabama,St. Clair County,12,4,5374,2836,2538,2496,2233,271,256,13,4,18,7,4,2,34,36,2775,2472,2443,2176,269,253,12,3,17,7,3,2,31,31,61,66,53,57,2,3,1,1,1,0,1,0,3,5 -050,01,115,Alabama,St. Clair County,12,5,4530,2389,2141,2062,1915,270,178,8,7,13,12,0,3,36,26,2305,2094,1988,1874,265,178,7,5,13,12,0,2,32,23,84,47,74,41,5,0,1,2,0,0,0,1,4,3 -050,01,115,Alabama,St. Clair County,12,6,5512,2680,2832,2305,2517,325,257,10,9,23,23,4,3,13,23,2588,2751,2227,2451,322,255,5,5,21,20,0,2,13,18,92,81,78,66,3,2,5,4,2,3,4,1,0,5 -050,01,115,Alabama,St. Clair County,12,7,5841,3013,2828,2521,2490,429,275,11,7,18,38,2,0,32,18,2909,2764,2430,2432,425,272,9,4,18,38,1,0,26,18,104,64,91,58,4,3,2,3,0,0,1,0,6,0 -050,01,115,Alabama,St. Clair County,12,8,5902,3017,2885,2600,2550,353,265,13,10,23,35,3,2,25,23,2925,2822,2519,2496,347,262,10,8,22,33,3,1,24,22,92,63,81,54,6,3,3,2,1,2,0,1,1,1 -050,01,115,Alabama,St. Clair County,12,9,5979,3126,2853,2707,2557,367,238,14,12,23,25,1,1,14,20,3074,2810,2657,2519,366,237,14,10,22,25,1,1,14,18,52,43,50,38,1,1,0,2,1,0,0,0,0,2 -050,01,115,Alabama,St. Clair County,12,10,6472,3296,3176,2914,2867,326,244,16,12,17,18,4,2,19,33,3255,3139,2877,2836,326,240,15,12,16,17,2,2,19,32,41,37,37,31,0,4,1,0,1,1,2,0,0,1 -050,01,115,Alabama,St. Clair County,12,11,6160,3080,3080,2735,2764,295,243,12,14,12,30,0,1,26,28,3050,3049,2708,2735,293,242,11,14,12,29,0,1,26,28,30,31,27,29,2,1,1,0,0,1,0,0,0,0 -050,01,115,Alabama,St. Clair County,12,12,5474,2636,2838,2375,2604,202,186,11,9,21,13,2,1,25,25,2613,2819,2355,2588,201,185,10,7,21,13,1,1,25,25,23,19,20,16,1,1,1,2,0,0,1,0,0,0 -050,01,115,Alabama,St. Clair County,12,13,4982,2441,2541,2253,2363,152,142,9,12,8,9,1,1,18,14,2428,2521,2243,2344,151,142,8,12,8,8,1,1,17,14,13,20,10,19,1,0,1,0,0,1,0,0,1,0 -050,01,115,Alabama,St. Clair County,12,14,3891,1846,2045,1713,1901,95,113,11,9,2,6,2,1,23,15,1832,2027,1700,1883,94,113,11,9,2,6,2,1,23,15,14,18,13,18,1,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,12,15,2791,1339,1452,1248,1360,70,73,6,4,2,4,2,1,11,10,1333,1442,1243,1350,70,73,6,4,2,4,2,1,10,10,6,10,5,10,0,0,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,12,16,1998,901,1097,860,1038,32,48,3,1,0,5,0,0,6,5,898,1094,857,1035,32,48,3,1,0,5,0,0,6,5,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,12,17,1274,466,808,445,767,19,32,0,1,1,3,0,0,1,5,463,805,442,764,19,32,0,1,1,3,0,0,1,5,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,12,18,955,299,656,281,626,13,26,0,1,0,0,1,0,4,3,298,653,280,623,13,26,0,1,0,0,1,0,4,3,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,12,99,83593,41904,41689,36999,37522,3956,3225,162,142,238,298,34,23,515,479,40982,40895,36183,36833,3920,3195,136,117,229,289,23,18,491,443,922,794,816,689,36,30,26,25,9,9,11,5,24,36 -050,01,115,Alabama,St. Clair County,13,0,1073,537,536,477,467,40,46,3,2,3,3,0,0,14,18,511,519,454,455,40,45,0,1,3,3,0,0,14,15,26,17,23,12,0,1,3,1,0,0,0,0,0,3 -050,01,115,Alabama,St. Clair County,13,1,4463,2348,2115,2049,1867,198,159,5,8,17,18,2,4,77,59,2263,2009,1974,1777,192,155,4,5,16,18,2,1,75,53,85,106,75,90,6,4,1,3,1,0,0,3,2,6 -050,01,115,Alabama,St. Clair County,13,2,5486,2841,2645,2475,2306,249,228,16,8,20,29,4,0,77,74,2733,2546,2385,2220,246,223,7,5,19,29,2,0,74,69,108,99,90,86,3,5,9,3,1,0,2,0,3,5 -050,01,115,Alabama,St. Clair County,13,3,5456,2823,2633,2480,2329,252,221,6,14,17,20,2,1,66,48,2732,2559,2394,2269,250,216,6,11,17,19,2,1,63,43,91,74,86,60,2,5,0,3,0,1,0,0,3,5 -050,01,115,Alabama,St. Clair County,13,4,5349,2820,2529,2481,2225,269,256,14,4,19,7,4,1,33,36,2757,2458,2428,2166,267,252,11,1,18,7,3,1,30,31,63,71,53,59,2,4,3,3,1,0,1,0,3,5 -050,01,115,Alabama,St. Clair County,13,5,4554,2400,2154,2067,1923,274,182,12,8,13,12,0,3,34,26,2314,2107,1993,1882,269,182,9,6,13,12,0,2,30,23,86,47,74,41,5,0,3,2,0,0,0,1,4,3 -050,01,115,Alabama,St. Clair County,13,6,5536,2700,2836,2319,2522,326,259,13,9,23,21,4,3,15,22,2605,2758,2241,2457,323,257,6,5,21,19,0,2,14,18,95,78,78,65,3,2,7,4,2,2,4,1,1,4 -050,01,115,Alabama,St. Clair County,13,7,5884,3035,2849,2542,2509,432,278,12,7,17,37,2,0,30,18,2929,2784,2450,2451,427,274,10,4,17,37,1,0,24,18,106,65,92,58,5,4,2,3,0,0,1,0,6,0 -050,01,115,Alabama,St. Clair County,13,8,5863,2999,2864,2581,2532,353,264,13,11,23,35,3,1,26,21,2909,2802,2501,2478,347,261,11,9,22,33,3,1,25,20,90,62,80,54,6,3,2,2,1,2,0,0,1,1 -050,01,115,Alabama,St. Clair County,13,9,5981,3124,2857,2705,2559,368,241,13,12,24,25,1,0,13,20,3072,2814,2655,2521,367,240,13,10,23,25,1,0,13,18,52,43,50,38,1,1,0,2,1,0,0,0,0,2 -050,01,115,Alabama,St. Clair County,13,10,6444,3281,3163,2901,2854,327,243,16,12,15,18,4,2,18,34,3240,3126,2864,2823,327,239,15,12,14,17,2,2,18,33,41,37,37,31,0,4,1,0,1,1,2,0,0,1 -050,01,115,Alabama,St. Clair County,13,11,6172,3086,3086,2741,2770,296,244,12,14,12,30,0,1,25,27,3056,3055,2714,2741,294,243,11,14,12,29,0,1,25,27,30,31,27,29,2,1,1,0,0,1,0,0,0,0 -050,01,115,Alabama,St. Clair County,13,12,5506,2650,2856,2390,2620,203,186,11,11,20,13,2,1,24,25,2627,2837,2370,2604,202,185,10,9,20,13,1,1,24,25,23,19,20,16,1,1,1,2,0,0,1,0,0,0 -050,01,115,Alabama,St. Clair County,13,13,5035,2465,2570,2276,2387,155,147,9,13,8,9,1,0,16,14,2452,2550,2266,2368,154,147,8,13,8,8,1,0,15,14,13,20,10,19,1,0,1,0,0,1,0,0,1,0 -050,01,115,Alabama,St. Clair County,13,14,3920,1861,2059,1727,1912,97,115,10,9,2,6,2,1,23,16,1847,2041,1714,1894,96,115,10,9,2,6,2,1,23,16,14,18,13,18,1,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,13,15,2805,1348,1457,1259,1366,69,72,8,5,2,4,1,0,9,10,1341,1448,1253,1357,69,72,8,5,2,4,1,0,8,10,7,9,6,9,0,0,0,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,13,16,1997,904,1093,862,1035,33,49,3,1,0,5,0,0,6,3,899,1091,857,1033,33,49,3,1,0,5,0,0,6,3,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,13,17,1276,470,806,450,766,19,31,0,0,0,3,0,0,1,6,467,803,447,763,19,31,0,0,0,3,0,0,1,6,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,13,18,961,301,660,283,629,13,27,0,1,0,0,1,0,4,3,300,657,282,626,13,27,0,1,0,0,1,0,4,3,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,13,99,83761,41993,41768,37065,37578,3973,3248,176,149,235,295,33,18,511,480,41054,40964,36242,36885,3935,3213,142,121,227,287,22,13,486,445,939,804,823,693,38,35,34,28,8,8,11,5,25,35 -050,01,117,Alabama,Shelby County,1,0,2146,1150,996,1029,894,84,73,7,5,8,16,0,0,22,8,1109,973,992,874,83,72,6,3,8,16,0,0,20,8,41,23,37,20,1,1,1,2,0,0,0,0,2,0 -050,01,117,Alabama,Shelby County,1,1,8591,4332,4259,3917,3815,310,320,12,16,36,61,0,0,57,47,4209,4138,3803,3699,308,318,11,15,34,61,0,0,53,45,123,121,114,116,2,2,1,1,2,0,0,0,4,2 -050,01,117,Alabama,Shelby County,1,2,10626,5517,5109,4944,4565,443,422,22,22,61,55,1,0,46,45,5358,4992,4797,4459,440,418,16,18,61,55,1,0,43,42,159,117,147,106,3,4,6,4,0,0,0,0,3,3 -050,01,117,Alabama,Shelby County,1,3,10405,5354,5051,4757,4462,491,487,18,19,47,43,2,0,39,40,5262,4958,4672,4381,488,483,18,13,45,43,2,0,37,38,92,93,85,81,3,4,0,6,2,0,0,0,2,2 -050,01,117,Alabama,Shelby County,1,4,9333,4827,4506,4237,3907,489,481,12,25,67,56,1,2,21,35,4673,4417,4086,3825,487,480,12,22,67,56,1,1,20,33,154,89,151,82,2,1,0,3,0,0,0,1,1,2 -050,01,117,Alabama,Shelby County,1,5,8314,3944,4370,3515,3822,357,455,13,18,39,47,1,0,19,28,3690,4234,3268,3691,355,453,12,16,36,46,0,0,19,28,254,136,247,131,2,2,1,2,3,1,1,0,0,0 -050,01,117,Alabama,Shelby County,1,6,10826,5239,5587,4796,4998,330,462,16,23,72,78,1,0,24,26,4981,5442,4543,4864,330,459,13,19,72,77,1,0,22,23,258,145,253,134,0,3,3,4,0,1,0,0,2,3 -050,01,117,Alabama,Shelby County,1,7,11806,5912,5894,5321,5288,465,495,16,14,80,79,2,0,28,18,5700,5769,5115,5172,464,491,15,12,79,79,1,0,26,15,212,125,206,116,1,4,1,2,1,0,1,0,2,3 -050,01,117,Alabama,Shelby County,1,8,12798,6139,6659,5568,6022,441,499,30,26,72,79,1,1,27,32,5986,6565,5421,5930,440,499,28,25,71,78,1,1,25,32,153,94,147,92,1,0,2,1,1,1,0,0,2,0 -050,01,117,Alabama,Shelby County,1,9,12844,6269,6575,5747,5925,402,517,18,31,62,74,1,2,39,26,6161,6500,5641,5853,402,516,18,31,61,73,1,2,38,25,108,75,106,72,0,1,0,0,1,1,0,0,1,1 -050,01,117,Alabama,Shelby County,1,10,11420,5507,5913,5049,5375,349,420,14,24,69,61,1,3,25,30,5442,5852,4985,5316,349,420,14,22,69,61,0,3,25,30,65,61,64,59,0,0,0,2,0,0,1,0,0,0 -050,01,117,Alabama,Shelby County,1,11,10092,5024,5068,4677,4687,269,301,13,15,44,50,0,3,21,12,4979,5033,4632,4656,269,298,13,15,44,50,0,2,21,12,45,35,45,31,0,3,0,0,0,0,0,1,0,0 -050,01,117,Alabama,Shelby County,1,12,7043,3464,3579,3257,3315,154,199,5,8,32,32,0,0,16,25,3434,3556,3230,3293,153,199,4,8,32,32,0,0,15,24,30,23,27,22,1,0,1,0,0,0,0,0,1,1 -050,01,117,Alabama,Shelby County,1,13,4994,2440,2554,2260,2382,136,136,12,6,17,17,1,1,14,12,2424,2541,2246,2369,135,136,12,6,17,17,0,1,14,12,16,13,14,13,1,0,0,0,0,0,1,0,0,0 -050,01,117,Alabama,Shelby County,1,14,4028,1914,2114,1792,1971,102,113,4,4,12,19,0,1,4,6,1905,2105,1783,1962,102,113,4,4,12,19,0,1,4,6,9,9,9,9,0,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,1,15,3327,1553,1774,1470,1638,71,113,5,4,4,8,0,0,3,11,1546,1767,1463,1634,71,112,5,4,4,8,0,0,3,9,7,7,7,4,0,1,0,0,0,0,0,0,0,2 -050,01,117,Alabama,Shelby County,1,16,2413,957,1456,914,1377,36,70,3,1,3,6,0,0,1,2,951,1449,909,1370,35,70,3,1,3,6,0,0,1,2,6,7,5,7,1,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,1,17,1371,488,883,458,830,27,46,0,2,1,0,0,1,2,4,486,876,457,823,27,46,0,2,1,0,0,1,1,4,2,7,1,7,0,0,0,0,0,0,0,0,1,0 -050,01,117,Alabama,Shelby County,1,18,1052,292,760,264,703,24,54,0,1,3,0,0,0,1,2,291,758,263,701,24,54,0,1,3,0,0,0,1,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,1,99,143429,70322,73107,63972,65976,4980,5663,220,264,729,781,12,14,409,409,68587,71925,62306,64872,4962,5637,204,237,719,777,8,12,388,390,1735,1182,1666,1104,18,26,16,27,10,4,4,2,21,19 -050,01,117,Alabama,Shelby County,2,0,2178,1164,1014,1042,908,84,75,7,5,9,17,0,0,22,9,1121,990,1003,887,83,74,6,3,9,17,0,0,20,9,43,24,39,21,1,1,1,2,0,0,0,0,2,0 -050,01,117,Alabama,Shelby County,2,1,8614,4345,4269,3930,3828,309,321,12,16,36,61,0,0,58,43,4221,4147,3815,3711,307,319,11,15,34,61,0,0,54,41,124,122,115,117,2,2,1,1,2,0,0,0,4,2 -050,01,117,Alabama,Shelby County,2,2,10632,5519,5113,4954,4574,440,417,22,22,63,55,1,0,39,45,5357,4995,4804,4467,437,413,16,18,63,55,1,0,36,42,162,118,150,107,3,4,6,4,0,0,0,0,3,3 -050,01,117,Alabama,Shelby County,2,3,10501,5404,5097,4807,4510,494,489,18,19,47,44,2,0,36,35,5308,5000,4718,4425,491,485,18,13,45,44,2,0,34,33,96,97,89,85,3,4,0,6,2,0,0,0,2,2 -050,01,117,Alabama,Shelby County,2,4,9420,4882,4538,4294,3938,487,480,12,25,66,57,1,2,22,36,4722,4447,4137,3854,485,479,12,22,66,57,1,1,21,34,160,91,157,84,2,1,0,3,0,0,0,1,1,2 -050,01,117,Alabama,Shelby County,2,5,8425,3994,4431,3566,3878,362,460,12,19,39,44,1,0,14,30,3728,4288,3307,3741,360,458,11,16,36,43,0,0,14,30,266,143,259,137,2,2,1,3,3,1,1,0,0,0 -050,01,117,Alabama,Shelby County,2,6,10815,5236,5579,4787,4986,332,460,16,24,73,83,1,0,27,26,4966,5426,4522,4845,332,457,13,19,73,82,1,0,25,23,270,153,265,141,0,3,3,5,0,1,0,0,2,3 -050,01,117,Alabama,Shelby County,2,7,11885,5956,5929,5358,5320,469,500,17,14,84,80,2,0,26,15,5731,5796,5140,5196,468,496,15,12,83,80,1,0,24,12,225,133,218,124,1,4,2,2,1,0,1,0,2,3 -050,01,117,Alabama,Shelby County,2,8,12831,6158,6673,5578,6031,447,500,30,26,73,81,1,1,29,34,5997,6573,5423,5933,446,500,28,25,72,80,1,1,27,34,161,100,155,98,1,0,2,1,1,1,0,0,2,0 -050,01,117,Alabama,Shelby County,2,9,12948,6324,6624,5792,5973,407,521,18,31,63,77,1,2,43,20,6211,6546,5681,5898,407,520,18,31,62,76,1,2,42,19,113,78,111,75,0,1,0,0,1,1,0,0,1,1 -050,01,117,Alabama,Shelby County,2,10,11568,5576,5992,5109,5440,355,426,14,24,70,64,1,3,27,35,5511,5930,5045,5380,355,426,14,22,70,64,0,3,27,35,65,62,64,60,0,0,0,2,0,0,1,0,0,0 -050,01,117,Alabama,Shelby County,2,11,10259,5106,5153,4751,4762,276,308,13,17,44,50,0,3,22,13,5060,5118,4705,4731,276,305,13,17,44,50,0,2,22,13,46,35,46,31,0,3,0,0,0,0,0,1,0,0 -050,01,117,Alabama,Shelby County,2,12,7137,3510,3627,3299,3357,157,205,6,8,32,32,0,0,16,25,3480,3604,3272,3335,156,205,5,8,32,32,0,0,15,24,30,23,27,22,1,0,1,0,0,0,0,0,1,1 -050,01,117,Alabama,Shelby County,2,13,5052,2469,2583,2286,2410,140,138,12,6,17,17,1,1,13,11,2453,2570,2272,2397,139,138,12,6,17,17,0,1,13,11,16,13,14,13,1,0,0,0,0,0,1,0,0,0 -050,01,117,Alabama,Shelby County,2,14,4094,1949,2145,1821,1996,106,116,4,4,13,19,0,1,5,9,1938,2136,1810,1987,106,116,4,4,13,19,0,1,5,9,11,9,11,9,0,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,2,15,3391,1587,1804,1500,1665,74,116,5,4,5,8,0,0,3,11,1580,1797,1493,1661,74,115,5,4,5,8,0,0,3,9,7,7,7,4,0,1,0,0,0,0,0,0,0,2 -050,01,117,Alabama,Shelby County,2,16,2461,978,1483,935,1402,36,71,3,1,3,7,0,0,1,2,972,1476,930,1395,35,71,3,1,3,7,0,0,1,2,6,7,5,7,1,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,2,17,1400,500,900,470,849,27,46,0,2,1,0,0,1,2,2,498,893,469,842,27,46,0,2,1,0,0,1,1,2,2,7,1,7,0,0,0,0,0,0,0,0,1,0 -050,01,117,Alabama,Shelby County,2,18,1063,297,766,269,705,24,54,0,1,3,1,0,0,1,5,295,764,267,703,24,54,0,1,3,1,0,0,1,5,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,2,99,144674,70954,73720,64548,66532,5026,5703,221,268,741,797,12,14,406,406,69149,72496,62813,65388,5008,5677,204,239,731,793,8,12,385,387,1805,1224,1735,1144,18,26,17,29,10,4,4,2,21,19 -050,01,117,Alabama,Shelby County,3,0,2330,1205,1125,1083,1016,87,81,2,2,11,11,0,0,22,15,1149,1060,1033,952,86,81,1,1,10,11,0,0,19,15,56,65,50,64,1,0,1,1,1,0,0,0,3,0 -050,01,117,Alabama,Shelby County,3,1,8835,4529,4306,4057,3814,350,367,13,14,40,59,1,3,68,49,4360,4156,3908,3681,348,365,10,6,36,57,1,2,57,45,169,150,149,133,2,2,3,8,4,2,0,1,11,4 -050,01,117,Alabama,Shelby County,3,2,10852,5611,5241,4980,4653,484,445,23,18,67,68,1,1,56,56,5451,5104,4836,4535,481,436,15,13,66,66,1,1,52,53,160,137,144,118,3,9,8,5,1,2,0,0,4,3 -050,01,117,Alabama,Shelby County,3,3,10840,5566,5274,4946,4626,502,530,23,20,53,59,2,0,40,39,5457,5160,4850,4528,498,524,19,14,51,57,2,0,37,37,109,114,96,98,4,6,4,6,2,2,0,0,3,2 -050,01,117,Alabama,Shelby County,3,4,9643,4956,4687,4345,4063,498,495,11,18,68,61,1,3,33,47,4817,4584,4210,3970,496,494,11,15,67,58,1,2,32,45,139,103,135,93,2,1,0,3,1,3,0,1,1,2 -050,01,117,Alabama,Shelby County,3,5,8696,4194,4502,3687,3895,405,495,20,21,54,49,3,0,25,42,3872,4357,3387,3761,398,493,15,17,48,47,1,0,23,39,322,145,300,134,7,2,5,4,6,2,2,0,2,3 -050,01,117,Alabama,Shelby County,3,6,10608,5193,5415,4690,4767,394,492,18,25,60,89,0,1,31,41,4845,5244,4357,4613,391,487,11,19,59,88,0,1,27,36,348,171,333,154,3,5,7,6,1,1,0,0,4,5 -050,01,117,Alabama,Shelby County,3,7,12505,6214,6291,5615,5608,454,556,26,17,86,81,4,0,29,29,5942,6118,5360,5449,450,551,21,14,84,79,1,0,26,25,272,173,255,159,4,5,5,3,2,2,3,0,3,4 -050,01,117,Alabama,Shelby County,3,8,12984,6294,6690,5645,5991,506,536,34,21,71,100,2,1,36,41,6086,6541,5452,5850,503,533,28,19,69,98,1,1,33,40,208,149,193,141,3,3,6,2,2,2,1,0,3,1 -050,01,117,Alabama,Shelby County,3,9,13153,6390,6763,5812,6079,438,550,19,26,72,78,2,4,47,26,6257,6664,5689,5988,436,547,17,25,69,77,2,3,44,24,133,99,123,91,2,3,2,1,3,1,0,1,3,2 -050,01,117,Alabama,Shelby County,3,10,12089,5869,6220,5364,5620,385,449,17,27,72,75,1,4,30,45,5789,6152,5286,5555,385,449,16,25,72,75,0,4,30,44,80,68,78,65,0,0,1,2,0,0,1,0,0,1 -050,01,117,Alabama,Shelby County,3,11,10933,5361,5572,4961,5107,299,361,12,16,61,62,1,5,27,21,5306,5525,4906,5065,299,358,12,16,61,62,1,4,27,20,55,47,55,42,0,3,0,0,0,0,0,1,0,1 -050,01,117,Alabama,Shelby County,3,12,7444,3666,3778,3425,3482,174,220,8,12,40,40,0,0,19,24,3632,3752,3395,3457,173,220,6,12,40,40,0,0,18,23,34,26,30,25,1,0,2,0,0,0,0,0,1,1 -050,01,117,Alabama,Shelby County,3,13,5412,2628,2784,2465,2598,120,147,11,9,19,20,1,1,12,9,2613,2769,2452,2584,119,147,11,8,19,20,0,1,12,9,15,15,13,14,1,0,0,1,0,0,1,0,0,0 -050,01,117,Alabama,Shelby County,3,14,4210,2007,2203,1864,2058,117,110,3,3,17,21,0,1,6,10,1998,2196,1855,2051,117,110,3,3,17,21,0,1,6,10,9,7,9,7,0,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,3,15,3571,1664,1907,1568,1775,76,103,5,5,13,10,0,0,2,14,1655,1895,1559,1766,76,102,5,5,13,10,0,0,2,12,9,12,9,9,0,1,0,0,0,0,0,0,0,2 -050,01,117,Alabama,Shelby County,3,16,2601,1052,1549,1010,1446,34,90,3,0,5,9,0,0,0,4,1038,1541,996,1438,34,90,3,0,5,9,0,0,0,4,14,8,14,8,0,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,3,17,1529,559,970,528,920,26,36,0,3,1,4,0,1,4,6,555,959,525,910,26,36,0,3,1,4,0,1,3,5,4,11,3,10,0,0,0,0,0,0,0,0,1,1 -050,01,117,Alabama,Shelby County,3,18,1123,335,788,307,728,24,53,0,1,3,1,0,0,1,5,333,786,305,726,24,53,0,1,3,1,0,0,1,5,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,3,99,149358,73293,76065,66352,68246,5373,6116,248,258,813,897,19,25,488,523,71155,74563,64361,66879,5340,6076,204,216,790,880,11,21,449,491,2138,1502,1991,1367,33,40,44,42,23,17,8,4,39,32 -050,01,117,Alabama,Shelby County,4,0,2402,1180,1222,1052,1109,87,82,3,1,17,10,1,0,20,20,1104,1145,980,1035,87,81,2,0,16,10,1,0,18,19,76,77,72,74,0,1,1,1,1,0,0,0,2,1 -050,01,117,Alabama,Shelby County,4,1,9199,4769,4430,4191,3870,430,418,14,15,53,57,1,3,80,67,4576,4253,4021,3708,423,414,11,10,50,55,1,2,70,64,193,177,170,162,7,4,3,5,3,2,0,1,10,3 -050,01,117,Alabama,Shelby County,4,2,11062,5700,5362,5006,4750,524,459,26,21,75,72,1,0,68,60,5523,5193,4850,4603,518,452,15,16,73,69,1,0,66,53,177,169,156,147,6,7,11,5,2,3,0,0,2,7 -050,01,117,Alabama,Shelby County,4,3,11252,5765,5487,5092,4793,559,556,19,20,59,68,3,0,33,50,5616,5344,4960,4670,554,548,15,14,56,66,3,0,28,46,149,143,132,123,5,8,4,6,3,2,0,0,5,4 -050,01,117,Alabama,Shelby County,4,4,9831,5026,4805,4405,4187,495,491,16,19,63,63,1,2,46,43,4868,4672,4252,4069,493,488,16,16,61,58,1,1,45,40,158,133,153,118,2,3,0,3,2,5,0,1,1,3 -050,01,117,Alabama,Shelby County,4,5,8834,4269,4565,3740,3940,409,499,19,28,70,48,3,0,28,50,3943,4394,3436,3782,400,496,16,23,64,46,1,0,26,47,326,171,304,158,9,3,3,5,6,2,2,0,2,3 -050,01,117,Alabama,Shelby County,4,6,10796,5335,5461,4778,4741,429,557,16,26,79,83,3,1,30,53,4930,5264,4389,4568,424,549,10,18,78,82,3,1,26,46,405,197,389,173,5,8,6,8,1,1,0,0,4,7 -050,01,117,Alabama,Shelby County,4,7,12904,6397,6507,5720,5760,516,593,23,16,91,107,4,0,43,31,6081,6301,5425,5567,510,588,16,12,88,106,2,0,40,28,316,206,295,193,6,5,7,4,3,1,2,0,3,3 -050,01,117,Alabama,Shelby County,4,8,12892,6280,6612,5577,5903,540,560,42,15,93,88,2,2,26,44,6051,6434,5364,5741,537,550,36,12,90,86,1,2,23,43,229,178,213,162,3,10,6,3,3,2,1,0,3,1 -050,01,117,Alabama,Shelby County,4,9,13438,6530,6908,5883,6182,493,576,18,26,83,86,2,5,51,33,6394,6784,5757,6066,490,573,16,25,79,86,2,3,50,31,136,124,126,116,3,3,2,1,4,0,0,2,1,2 -050,01,117,Alabama,Shelby County,4,10,12413,6035,6378,5496,5775,414,450,18,37,67,77,1,3,39,36,5952,6299,5416,5700,413,449,17,35,67,76,0,3,39,36,83,79,80,75,1,1,1,2,0,1,1,0,0,0 -050,01,117,Alabama,Shelby County,4,11,11122,5429,5693,4991,5176,328,388,15,21,64,73,0,3,31,32,5354,5643,4916,5130,328,385,15,21,64,73,0,2,31,32,75,50,75,46,0,3,0,0,0,0,0,1,0,0 -050,01,117,Alabama,Shelby County,4,12,8308,4135,4173,3863,3854,200,247,15,11,41,40,0,0,16,21,4102,4148,3835,3832,199,246,13,10,41,40,0,0,14,20,33,25,28,22,1,1,2,1,0,0,0,0,2,1 -050,01,117,Alabama,Shelby County,4,13,5869,2828,3041,2636,2841,139,153,8,10,26,25,2,1,17,11,2801,3014,2613,2814,137,153,8,10,26,25,1,1,16,11,27,27,23,27,2,0,0,0,0,0,1,0,1,0 -050,01,117,Alabama,Shelby County,4,14,4362,2092,2270,1949,2121,122,110,3,5,11,20,0,1,7,13,2077,2262,1934,2113,122,110,3,5,11,20,0,1,7,13,15,8,15,8,0,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,4,15,3724,1696,2028,1587,1883,87,113,7,6,10,13,0,0,5,13,1685,2014,1576,1872,87,111,7,6,10,13,0,0,5,12,11,14,11,11,0,2,0,0,0,0,0,0,0,1 -050,01,117,Alabama,Shelby County,4,16,2675,1141,1534,1092,1421,36,96,4,1,8,12,0,0,1,4,1131,1526,1083,1413,35,96,4,1,8,12,0,0,1,4,10,8,9,8,1,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,4,17,1704,601,1103,580,1042,16,51,0,2,2,2,0,1,3,5,595,1094,575,1034,16,51,0,2,2,2,0,1,2,4,6,9,5,8,0,0,0,0,0,0,0,0,1,1 -050,01,117,Alabama,Shelby County,4,18,1189,382,807,342,741,36,58,0,1,3,2,0,0,1,5,379,804,339,738,36,58,0,1,3,2,0,0,1,5,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,4,99,153976,75590,78386,67980,70089,5860,6457,266,281,915,946,24,22,545,591,73162,76588,65721,68455,5809,6398,220,237,887,927,17,17,508,554,2428,1798,2259,1634,51,59,46,44,28,19,7,5,37,37 -050,01,117,Alabama,Shelby County,5,0,2303,1150,1153,1007,1022,101,90,3,5,14,16,1,0,24,20,1081,1087,943,961,101,90,2,3,13,16,0,0,22,17,69,66,64,61,0,0,1,2,1,0,1,0,2,3 -050,01,117,Alabama,Shelby County,5,1,9540,4872,4668,4202,4048,496,470,15,10,60,63,1,5,98,72,4617,4437,3973,3836,490,464,11,5,57,61,1,2,85,69,255,231,229,212,6,6,4,5,3,2,0,3,13,3 -050,01,117,Alabama,Shelby County,5,2,11426,5893,5533,5160,4902,558,475,19,20,77,75,1,0,78,61,5678,5346,4969,4736,551,469,8,15,75,72,1,0,74,54,215,187,191,166,7,6,11,5,2,3,0,0,4,7 -050,01,117,Alabama,Shelby County,5,3,11571,5972,5599,5260,4856,581,585,27,21,56,78,4,0,44,59,5795,5447,5107,4722,572,579,23,15,54,74,4,0,35,57,177,152,153,134,9,6,4,6,2,4,0,0,9,2 -050,01,117,Alabama,Shelby County,5,4,10304,5228,5076,4553,4413,544,533,12,21,64,62,2,2,53,45,5061,4899,4391,4261,542,522,11,16,63,58,2,1,52,41,167,177,162,152,2,11,1,5,1,4,0,1,1,4 -050,01,117,Alabama,Shelby County,5,5,9185,4499,4686,3902,4007,454,552,28,21,79,53,3,0,33,53,4134,4488,3559,3822,450,549,22,16,73,52,1,0,29,49,365,198,343,185,4,3,6,5,6,1,2,0,4,4 -050,01,117,Alabama,Shelby County,5,6,11138,5444,5694,4800,4896,492,634,19,19,89,87,3,2,41,56,5005,5428,4390,4661,482,622,10,10,88,85,2,2,33,48,439,266,410,235,10,12,9,9,1,2,1,0,8,8 -050,01,117,Alabama,Shelby County,5,7,13353,6724,6629,5965,5756,551,671,31,23,128,142,5,0,44,37,6296,6409,5559,5552,548,669,23,16,126,139,3,0,37,33,428,220,406,204,3,2,8,7,2,3,2,0,7,4 -050,01,117,Alabama,Shelby County,5,8,13006,6417,6589,5690,5806,575,614,30,21,85,106,2,1,35,41,6143,6392,5431,5625,574,606,23,17,82,104,1,1,32,39,274,197,259,181,1,8,7,4,3,2,1,0,3,2 -050,01,117,Alabama,Shelby County,5,9,13602,6549,7053,5817,6282,546,603,21,35,106,85,2,4,57,44,6399,6922,5681,6161,543,601,18,34,103,82,2,3,52,41,150,131,136,121,3,2,3,1,3,3,0,1,5,3 -050,01,117,Alabama,Shelby County,5,10,13079,6371,6708,5798,6027,444,511,16,37,81,88,1,3,31,42,6252,6626,5685,5949,442,509,15,35,81,88,0,3,29,42,119,82,113,78,2,2,1,2,0,0,1,0,2,0 -050,01,117,Alabama,Shelby County,5,11,11409,5500,5909,5030,5323,353,436,15,27,65,80,1,3,36,40,5423,5843,4953,5264,353,432,15,26,65,80,1,2,36,39,77,66,77,59,0,4,0,1,0,0,0,1,0,1 -050,01,117,Alabama,Shelby County,5,12,8878,4459,4419,4134,4098,236,242,17,12,44,46,1,0,27,21,4423,4395,4104,4077,234,240,15,12,44,46,1,0,25,20,36,24,30,21,2,2,2,0,0,0,0,0,2,1 -050,01,117,Alabama,Shelby County,5,13,6468,3092,3376,2880,3160,150,166,8,9,38,28,1,1,15,12,3063,3348,2857,3134,147,166,8,8,38,27,0,1,13,12,29,28,23,26,3,0,0,1,0,1,1,0,2,0 -050,01,117,Alabama,Shelby County,5,14,4604,2192,2412,2027,2228,137,142,4,3,14,22,0,1,10,16,2176,2399,2011,2217,137,141,4,3,14,22,0,0,10,16,16,13,16,11,0,1,0,0,0,0,0,1,0,0 -050,01,117,Alabama,Shelby County,5,15,3762,1744,2018,1612,1889,95,96,7,6,23,13,0,0,7,14,1726,1999,1595,1875,95,94,7,6,22,13,0,0,7,11,18,19,17,14,0,2,0,0,1,0,0,0,0,3 -050,01,117,Alabama,Shelby County,5,16,2990,1309,1681,1244,1552,48,113,3,1,10,11,0,0,4,4,1292,1675,1229,1546,46,113,3,1,10,11,0,0,4,4,17,6,15,6,2,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,5,17,1835,665,1170,644,1103,14,55,1,2,2,3,0,1,4,6,657,1158,637,1093,14,54,1,2,2,3,0,1,3,5,8,12,7,10,0,1,0,0,0,0,0,0,1,1 -050,01,117,Alabama,Shelby County,5,18,1251,399,852,362,778,33,66,0,1,3,2,0,0,1,5,395,842,358,768,33,66,0,1,3,2,0,0,1,5,4,10,4,10,0,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,5,99,159704,78479,81225,70087,72146,6408,7054,276,294,1038,1060,28,23,642,648,75616,79140,67432,70260,6354,6986,219,241,1013,1035,19,16,579,602,2863,2085,2655,1886,54,68,57,53,25,25,9,7,63,46 -050,01,117,Alabama,Shelby County,6,0,2471,1248,1223,1108,1074,97,94,4,2,16,30,1,0,22,23,1154,1120,1020,975,96,93,3,1,15,29,0,0,20,22,94,103,88,99,1,1,1,1,1,1,1,0,2,1 -050,01,117,Alabama,Shelby County,6,1,9926,5044,4882,4286,4151,559,553,15,13,85,72,2,6,97,87,4763,4589,4033,3892,552,541,11,6,82,69,1,2,84,79,281,293,253,259,7,12,4,7,3,3,1,4,13,8 -050,01,117,Alabama,Shelby County,6,2,11816,6080,5736,5298,5033,590,530,18,13,77,88,3,1,94,71,5828,5526,5078,4847,581,523,7,7,74,85,1,0,87,64,252,210,220,186,9,7,11,6,3,3,2,1,7,7 -050,01,117,Alabama,Shelby County,6,3,11895,6163,5732,5383,4957,627,605,17,20,76,86,5,3,55,61,5951,5529,5195,4777,619,599,13,13,73,83,3,0,48,57,212,203,188,180,8,6,4,7,3,3,2,3,7,4 -050,01,117,Alabama,Shelby County,6,4,10679,5397,5282,4680,4571,580,577,13,18,66,63,2,4,56,49,5215,5090,4509,4403,574,567,12,14,64,60,1,1,55,45,182,192,171,168,6,10,1,4,2,3,1,3,1,4 -050,01,117,Alabama,Shelby County,6,5,9541,4719,4822,4054,4076,498,592,33,28,87,65,5,2,42,59,4304,4608,3668,3879,493,590,24,22,80,62,1,1,38,54,415,214,386,197,5,2,9,6,7,3,4,1,4,5 -050,01,117,Alabama,Shelby County,6,6,11681,5665,6016,4908,5085,574,750,21,24,106,102,7,3,49,52,5218,5699,4494,4803,564,739,11,13,104,101,5,2,40,41,447,317,414,282,10,11,10,11,2,1,2,1,9,11 -050,01,117,Alabama,Shelby County,6,7,13622,6832,6790,6002,5807,595,758,29,26,152,159,7,0,47,40,6335,6540,5536,5583,589,751,19,19,149,156,3,0,39,31,497,250,466,224,6,7,10,7,3,3,4,0,8,9 -050,01,117,Alabama,Shelby County,6,8,13238,6553,6685,5741,5834,636,652,36,21,95,133,3,2,42,43,6241,6446,5451,5615,634,643,27,15,92,131,2,2,35,40,312,239,290,219,2,9,9,6,3,2,1,0,7,3 -050,01,117,Alabama,Shelby County,6,9,13977,6730,7247,5940,6410,592,658,25,32,117,99,2,4,54,44,6555,7097,5783,6273,587,654,20,30,112,97,2,2,51,41,175,150,157,137,5,4,5,2,5,2,0,2,3,3 -050,01,117,Alabama,Shelby County,6,10,13492,6654,6838,6013,6111,492,550,16,32,89,97,1,2,43,46,6514,6742,5880,6020,489,548,15,30,89,96,0,2,41,46,140,96,133,91,3,2,1,2,0,1,1,0,2,0 -050,01,117,Alabama,Shelby County,6,11,11771,5628,6143,5094,5537,410,458,15,23,75,88,0,3,34,34,5546,6065,5015,5468,410,454,12,21,75,88,0,2,34,32,82,78,79,69,0,4,3,2,0,0,0,1,0,2 -050,01,117,Alabama,Shelby County,6,12,9621,4772,4849,4417,4468,271,289,13,17,47,55,1,0,23,20,4725,4822,4377,4444,270,289,10,15,47,55,0,0,21,19,47,27,40,24,1,0,3,2,0,0,1,0,2,1 -050,01,117,Alabama,Shelby County,6,13,6957,3305,3652,3087,3397,158,199,7,10,35,33,0,1,18,12,3270,3626,3058,3373,154,199,7,10,34,31,0,1,17,12,35,26,29,24,4,0,0,0,1,2,0,0,1,0 -050,01,117,Alabama,Shelby County,6,14,4906,2343,2563,2165,2381,143,149,4,5,17,13,0,1,14,14,2322,2545,2145,2364,143,149,4,5,17,13,0,0,13,14,21,18,20,17,0,0,0,0,0,0,0,1,1,0 -050,01,117,Alabama,Shelby County,6,15,3854,1776,2078,1655,1926,93,107,7,7,13,26,1,0,7,12,1764,2062,1643,1913,93,105,7,7,13,26,1,0,7,11,12,16,12,13,0,2,0,0,0,0,0,0,0,1 -050,01,117,Alabama,Shelby County,6,16,3109,1359,1750,1288,1623,57,111,2,1,11,11,0,0,1,4,1348,1739,1277,1613,57,111,2,1,11,10,0,0,1,4,11,11,11,10,0,0,0,0,0,1,0,0,0,0 -050,01,117,Alabama,Shelby County,6,17,1914,723,1191,704,1125,12,53,1,2,3,3,0,1,3,7,714,1181,696,1118,12,52,1,2,3,3,0,1,2,5,9,10,8,7,0,1,0,0,0,0,0,0,1,2 -050,01,117,Alabama,Shelby County,6,18,1287,416,871,377,794,34,66,0,1,3,4,0,0,2,6,411,857,372,780,34,66,0,1,3,4,0,0,2,6,5,14,5,14,0,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,6,99,165757,81407,84350,72200,74360,7018,7751,276,295,1170,1227,40,33,703,684,78178,81883,69230,72140,6951,7673,205,232,1137,1199,20,16,635,623,3229,2467,2970,2220,67,78,71,63,33,28,20,17,68,61 -050,01,117,Alabama,Shelby County,7,0,2414,1209,1205,1073,1056,94,95,2,4,22,22,0,0,18,28,1111,1090,979,947,93,94,1,3,20,22,0,0,18,24,98,115,94,109,1,1,1,1,2,0,0,0,0,4 -050,01,117,Alabama,Shelby County,7,1,10226,5161,5065,4391,4234,570,607,12,23,78,110,3,5,107,86,4808,4714,4072,3925,558,585,8,15,73,107,2,2,95,80,353,351,319,309,12,22,4,8,5,3,1,3,12,6 -050,01,117,Alabama,Shelby County,7,2,12223,6246,5977,5392,5146,633,595,23,27,95,114,2,2,101,93,5959,5723,5136,4926,622,588,12,18,92,109,2,1,95,81,287,254,256,220,11,7,11,9,3,5,0,1,6,12 -050,01,117,Alabama,Shelby County,7,3,12337,6415,5922,5547,5129,686,614,24,15,80,90,3,1,75,73,6155,5690,5312,4923,680,606,17,9,77,87,3,0,66,65,260,232,235,206,6,8,7,6,3,3,0,1,9,8 -050,01,117,Alabama,Shelby County,7,4,11028,5615,5413,4845,4673,619,610,16,14,65,69,2,1,68,46,5401,5200,4639,4480,615,602,15,12,64,64,2,0,66,42,214,213,206,193,4,8,1,2,1,5,0,1,2,4 -050,01,117,Alabama,Shelby County,7,5,9812,4843,4969,4132,4156,529,642,26,19,99,83,5,2,52,67,4376,4703,3692,3913,525,637,18,12,94,80,2,1,45,60,467,266,440,243,4,5,8,7,5,3,3,1,7,7 -050,01,117,Alabama,Shelby County,7,6,12046,5772,6274,4968,5278,622,812,19,26,111,104,2,2,50,52,5266,5935,4491,4971,611,799,10,17,109,103,1,2,44,43,506,339,477,307,11,13,9,9,2,1,1,0,6,9 -050,01,117,Alabama,Shelby County,7,7,13891,6931,6960,6011,5911,660,787,28,24,165,184,4,0,63,54,6422,6638,5538,5619,647,772,17,20,161,181,1,0,58,46,509,322,473,292,13,15,11,4,4,3,3,0,5,8 -050,01,117,Alabama,Shelby County,7,8,13682,6799,6883,5949,5980,667,699,25,20,113,137,3,3,42,44,6495,6630,5664,5740,664,692,15,17,110,136,2,3,40,42,304,253,285,240,3,7,10,3,3,1,1,0,2,2 -050,01,117,Alabama,Shelby County,7,9,14273,6878,7395,6038,6504,625,700,24,26,128,108,2,4,61,53,6650,7212,5829,6332,620,697,20,24,124,106,2,2,55,51,228,183,209,172,5,3,4,2,4,2,0,2,6,2 -050,01,117,Alabama,Shelby County,7,10,13818,6751,7067,6077,6259,528,628,15,28,91,112,1,1,39,39,6601,6947,5934,6142,525,627,13,27,91,111,0,1,38,39,150,120,143,117,3,1,2,1,0,1,1,0,1,0 -050,01,117,Alabama,Shelby County,7,11,12235,5857,6378,5229,5708,474,492,14,26,96,97,3,4,41,51,5764,6287,5137,5625,473,488,14,24,96,97,3,4,41,49,93,91,92,83,1,4,0,2,0,0,0,0,0,2 -050,01,117,Alabama,Shelby County,7,12,10473,5164,5309,4756,4867,307,342,19,16,55,59,0,2,27,23,5099,5267,4697,4831,305,341,18,14,54,59,0,1,25,21,65,42,59,36,2,1,1,2,1,0,0,1,2,2 -050,01,117,Alabama,Shelby County,7,13,7305,3492,3813,3265,3523,163,223,7,8,37,39,1,2,19,18,3455,3769,3235,3484,161,223,6,7,36,37,0,1,17,17,37,44,30,39,2,0,1,1,1,2,1,1,2,1 -050,01,117,Alabama,Shelby County,7,14,5171,2439,2732,2256,2543,141,139,4,5,21,21,0,3,17,21,2416,2713,2235,2526,140,138,4,5,21,21,0,2,16,21,23,19,21,17,1,1,0,0,0,0,0,1,1,0 -050,01,117,Alabama,Shelby County,7,15,4072,1897,2175,1757,2004,106,128,7,5,21,25,1,0,5,13,1883,2163,1744,1993,106,128,7,5,20,25,1,0,5,12,14,12,13,11,0,0,0,0,1,0,0,0,0,1 -050,01,117,Alabama,Shelby County,7,16,3258,1443,1815,1358,1683,71,113,2,1,9,12,0,0,3,6,1427,1805,1344,1674,69,113,2,1,9,11,0,0,3,6,16,10,14,9,2,0,0,0,0,1,0,0,0,0 -050,01,117,Alabama,Shelby County,7,17,2063,799,1264,773,1199,19,50,1,2,2,5,0,1,4,7,791,1251,765,1189,19,49,1,2,2,5,0,1,4,5,8,13,8,10,0,1,0,0,0,0,0,0,0,2 -050,01,117,Alabama,Shelby County,7,18,1364,427,937,391,868,31,60,0,0,2,4,0,0,3,5,420,923,385,854,30,60,0,0,2,4,0,0,3,5,7,14,6,14,1,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,7,99,171691,84138,87553,74208,76721,7545,8336,268,289,1290,1395,32,33,795,779,80499,84660,70828,74094,7463,8239,198,232,1255,1365,21,21,734,709,3639,2893,3380,2627,82,97,70,57,35,30,11,12,61,70 -050,01,117,Alabama,Shelby County,8,0,2464,1226,1238,1086,1075,95,107,2,4,17,18,2,0,24,34,1081,1106,946,948,94,106,2,3,15,18,1,0,23,31,145,132,140,127,1,1,0,1,2,0,1,0,1,3 -050,01,117,Alabama,Shelby County,8,1,10430,5314,5116,4477,4229,595,642,12,13,114,135,2,5,114,92,4899,4721,4100,3870,577,626,6,5,110,131,1,4,105,85,415,395,377,359,18,16,6,8,4,4,1,1,9,7 -050,01,117,Alabama,Shelby County,8,2,12997,6646,6351,5671,5446,719,671,28,16,110,113,2,4,116,101,6284,6038,5347,5165,704,662,17,9,106,110,1,2,109,90,362,313,324,281,15,9,11,7,4,3,1,2,7,11 -050,01,117,Alabama,Shelby County,8,3,12856,6684,6172,5719,5318,754,655,20,20,98,98,4,1,89,80,6401,5886,5463,5061,748,645,13,14,95,94,2,0,80,72,283,286,256,257,6,10,7,6,3,4,2,1,9,8 -050,01,117,Alabama,Shelby County,8,4,11382,5875,5507,5034,4704,665,638,19,18,78,87,4,3,75,57,5599,5290,4771,4512,658,628,18,15,77,83,3,1,72,51,276,217,263,192,7,10,1,3,1,4,1,2,3,6 -050,01,117,Alabama,Shelby County,8,5,9971,4887,5084,4152,4190,551,723,32,28,90,77,5,2,57,64,4359,4811,3662,3939,541,718,21,20,83,76,3,0,49,58,528,273,490,251,10,5,11,8,7,1,2,2,8,6 -050,01,117,Alabama,Shelby County,8,6,12835,6077,6758,5192,5633,677,903,23,26,133,137,4,3,48,56,5501,6313,4654,5225,662,890,11,13,132,137,4,3,38,45,576,445,538,408,15,13,12,13,1,0,0,0,10,11 -050,01,117,Alabama,Shelby County,8,7,13801,6831,6970,5839,5791,720,876,34,28,170,206,5,0,63,69,6345,6559,5392,5424,707,854,21,20,167,202,2,0,56,59,486,411,447,367,13,22,13,8,3,4,3,0,7,10 -050,01,117,Alabama,Shelby County,8,8,14513,7183,7330,6270,6353,693,761,26,22,143,147,3,1,48,46,6808,7025,5919,6066,689,752,17,17,139,146,2,1,42,43,375,305,351,287,4,9,9,5,4,1,1,0,6,3 -050,01,117,Alabama,Shelby County,8,9,14370,7008,7362,6113,6396,667,765,29,24,133,131,2,2,64,44,6741,7139,5870,6184,661,761,24,22,128,130,2,1,56,41,267,223,243,212,6,4,5,2,5,1,0,1,8,3 -050,01,117,Alabama,Shelby County,8,10,14239,6872,7367,6128,6503,563,670,19,34,116,113,2,1,44,46,6702,7219,5968,6362,559,668,17,32,116,111,1,1,41,45,170,148,160,141,4,2,2,2,0,2,1,0,3,1 -050,01,117,Alabama,Shelby County,8,11,12839,6213,6626,5559,5908,513,536,15,32,88,96,2,2,36,52,6118,6528,5466,5817,512,533,15,31,88,96,1,2,36,49,95,98,93,91,1,3,0,1,0,0,1,0,0,3 -050,01,117,Alabama,Shelby County,8,12,11326,5542,5784,5062,5240,359,416,19,22,72,76,0,2,30,28,5457,5716,4983,5181,358,412,17,20,71,76,0,1,28,26,85,68,79,59,1,4,2,2,1,0,0,1,2,2 -050,01,117,Alabama,Shelby County,8,13,7764,3683,4081,3440,3752,179,257,7,10,43,40,1,1,13,21,3643,4032,3406,3708,176,256,6,9,42,39,1,0,12,20,40,49,34,44,3,1,1,1,1,1,0,1,1,1 -050,01,117,Alabama,Shelby County,8,14,5685,2698,2987,2521,2780,137,156,3,3,23,28,0,1,14,19,2669,2966,2493,2762,136,155,3,3,23,28,0,0,14,18,29,21,28,18,1,1,0,0,0,0,0,1,0,1 -050,01,117,Alabama,Shelby County,8,15,4279,1977,2302,1830,2130,120,130,6,8,15,23,1,0,5,11,1960,2286,1814,2115,120,129,6,8,14,23,1,0,5,11,17,16,16,15,0,1,0,0,1,0,0,0,0,0 -050,01,117,Alabama,Shelby County,8,16,3419,1504,1915,1413,1791,68,101,2,1,14,13,0,0,7,9,1489,1899,1398,1776,68,101,2,1,14,12,0,0,7,9,15,16,15,15,0,0,0,0,0,1,0,0,0,0 -050,01,117,Alabama,Shelby County,8,17,2167,849,1318,820,1239,19,65,1,2,4,5,0,0,5,7,843,1307,814,1230,19,64,1,2,4,5,0,0,5,6,6,11,6,9,0,1,0,0,0,0,0,0,0,1 -050,01,117,Alabama,Shelby County,8,18,1504,496,1008,459,948,31,56,0,0,3,1,0,0,3,3,488,995,452,935,30,56,0,0,3,1,0,0,3,3,8,13,7,13,1,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,8,99,178841,87565,91276,76785,79426,8125,9128,297,311,1464,1544,39,28,855,839,83387,87836,72918,76280,8019,9016,217,244,1427,1518,25,16,781,762,4178,3440,3867,3146,106,112,80,67,37,26,14,12,74,77 -050,01,117,Alabama,Shelby County,9,0,2460,1237,1223,1097,1068,94,96,2,3,20,22,2,0,22,34,1089,1085,956,937,93,95,1,2,18,21,1,0,20,30,148,138,141,131,1,1,1,1,2,1,1,0,2,4 -050,01,117,Alabama,Shelby County,9,1,10467,5386,5081,4528,4195,597,615,11,25,125,131,3,5,122,110,4921,4620,4101,3770,583,604,4,16,120,126,2,3,111,101,465,461,427,425,14,11,7,9,5,5,1,2,11,9 -050,01,117,Alabama,Shelby County,9,2,13469,6819,6650,5747,5682,792,714,30,22,121,111,1,3,128,118,6394,6254,5368,5327,771,702,17,13,117,106,0,1,121,105,425,396,379,355,21,12,13,9,4,5,1,2,7,13 -050,01,117,Alabama,Shelby County,9,3,13189,6839,6350,5833,5440,763,699,25,16,114,114,5,1,99,80,6502,5990,5531,5109,753,690,17,11,110,108,3,0,88,72,337,360,302,331,10,9,8,5,4,6,2,1,11,8 -050,01,117,Alabama,Shelby County,9,4,11762,6056,5706,5172,4831,708,700,19,17,79,90,5,3,73,65,5762,5451,4893,4603,699,688,19,14,76,87,4,1,71,58,294,255,279,228,9,12,0,3,3,3,1,2,2,7 -050,01,117,Alabama,Shelby County,9,5,10068,4960,5108,4217,4201,557,738,38,24,93,73,6,3,49,69,4399,4782,3697,3900,548,734,25,15,85,71,3,1,41,61,561,326,520,301,9,4,13,9,8,2,3,2,8,8 -050,01,117,Alabama,Shelby County,9,6,13003,6210,6793,5272,5616,723,948,25,25,130,147,4,1,56,56,5560,6349,4664,5221,712,923,11,13,127,146,3,1,43,45,650,444,608,395,11,25,14,12,3,1,1,0,13,11 -050,01,117,Alabama,Shelby County,9,7,13672,6771,6901,5746,5663,748,936,32,27,184,205,5,1,56,69,6233,6459,5250,5261,734,917,17,19,180,200,3,1,49,61,538,442,496,402,14,19,15,8,4,5,2,0,7,8 -050,01,117,Alabama,Shelby County,9,8,15120,7500,7620,6476,6508,769,871,25,18,172,168,3,4,55,51,7032,7310,6039,6221,763,862,13,11,168,167,2,3,47,46,468,310,437,287,6,9,12,7,4,1,1,1,8,5 -050,01,117,Alabama,Shelby County,9,9,14227,6930,7297,6042,6328,669,766,18,24,131,133,2,4,68,42,6620,7049,5758,6097,662,760,12,22,127,132,2,0,59,38,310,248,284,231,7,6,6,2,4,1,0,4,9,4 -050,01,117,Alabama,Shelby County,9,10,14600,7069,7531,6242,6590,624,726,19,38,132,127,3,1,49,49,6859,7357,6044,6421,618,724,17,37,132,125,1,1,47,49,210,174,198,169,6,2,2,1,0,2,2,0,2,0 -050,01,117,Alabama,Shelby County,9,11,13222,6415,6807,5712,6088,543,544,19,33,94,86,3,1,44,55,6296,6695,5598,5987,542,540,17,29,94,86,2,1,43,52,119,112,114,101,1,4,2,4,0,0,1,0,1,3 -050,01,117,Alabama,Shelby County,9,12,11550,5582,5968,5093,5351,357,476,19,23,77,81,2,1,34,36,5479,5900,4997,5292,356,473,17,20,76,81,1,0,32,34,103,68,96,59,1,3,2,3,1,0,1,1,2,2 -050,01,117,Alabama,Shelby County,9,13,8705,4175,4530,3874,4172,220,273,9,9,51,51,1,1,20,24,4131,4480,3836,4127,217,273,8,8,50,49,1,0,19,23,44,50,38,45,3,0,1,1,1,2,0,1,1,1 -050,01,117,Alabama,Shelby County,9,14,6161,2910,3251,2699,3020,162,171,4,6,29,34,0,1,16,19,2883,3226,2673,2997,161,170,4,6,29,34,0,0,16,19,27,25,26,23,1,1,0,0,0,0,0,1,0,0 -050,01,117,Alabama,Shelby County,9,15,4445,2067,2378,1909,2188,124,143,7,6,22,30,0,0,5,11,2044,2355,1887,2166,124,143,7,6,21,30,0,0,5,10,23,23,22,22,0,0,0,0,1,0,0,0,0,1 -050,01,117,Alabama,Shelby County,9,16,3526,1541,1985,1447,1857,71,100,2,1,14,19,0,0,7,8,1521,1968,1428,1841,70,100,2,1,14,18,0,0,7,8,20,17,19,16,1,0,0,0,0,1,0,0,0,0 -050,01,117,Alabama,Shelby County,9,17,2200,894,1306,862,1228,23,63,1,2,4,6,0,0,4,7,883,1294,851,1218,23,62,1,2,4,6,0,0,4,6,11,12,11,10,0,1,0,0,0,0,0,0,0,1 -050,01,117,Alabama,Shelby County,9,18,1645,534,1111,496,1039,32,65,0,0,3,4,0,0,3,3,525,1099,488,1027,31,65,0,0,3,4,0,0,3,3,9,12,8,12,1,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,9,99,183491,89895,93596,78464,81065,8576,9644,305,319,1595,1632,45,30,910,906,85133,89723,74059,77522,8460,9525,209,245,1551,1597,28,13,826,821,4762,3873,4405,3543,116,119,96,74,44,35,17,17,84,85 -050,01,117,Alabama,Shelby County,10,0,2391,1195,1196,1044,1043,96,95,3,2,22,20,1,0,29,36,1043,1044,898,898,95,94,1,1,21,19,0,0,28,32,152,152,146,145,1,1,2,1,1,1,1,0,1,4 -050,01,117,Alabama,Shelby County,10,1,10778,5534,5244,4651,4304,607,635,15,21,128,153,3,11,130,120,5007,4680,4166,3792,592,614,7,10,124,147,2,6,116,111,527,564,485,512,15,21,8,11,4,6,1,5,14,9 -050,01,117,Alabama,Shelby County,10,2,13744,7025,6719,5874,5672,835,730,30,27,135,154,3,4,148,132,6512,6279,5419,5276,805,717,16,19,131,149,1,2,140,116,513,440,455,396,30,13,14,8,4,5,2,2,8,16 -050,01,117,Alabama,Shelby County,10,3,13709,7067,6642,5972,5666,831,734,25,16,133,134,4,3,102,89,6673,6238,5620,5301,818,720,16,10,130,128,2,0,87,79,394,404,352,365,13,14,9,6,3,6,2,3,15,10 -050,01,117,Alabama,Shelby County,10,4,12171,6245,5926,5304,4939,755,787,18,15,81,105,3,3,84,77,5878,5632,4950,4674,747,775,17,13,79,99,3,1,82,70,367,294,354,265,8,12,1,2,2,6,0,2,2,7 -050,01,117,Alabama,Shelby County,10,5,10391,5162,5229,4363,4286,594,751,37,22,103,93,7,2,58,75,4547,4867,3794,3950,586,747,22,14,94,91,3,0,48,65,615,362,569,336,8,4,15,8,9,2,4,2,10,10 -050,01,117,Alabama,Shelby County,10,6,13005,6244,6761,5250,5555,793,991,27,30,110,125,5,6,59,54,5532,6286,4586,5132,779,967,11,15,107,124,5,6,44,42,712,475,664,423,14,24,16,15,3,1,0,0,15,12 -050,01,117,Alabama,Shelby County,10,7,13828,6789,7039,5701,5746,799,980,34,29,180,222,8,0,67,62,6225,6557,5186,5306,786,961,16,21,175,216,3,0,59,53,564,482,515,440,13,19,18,8,5,6,5,0,8,9 -050,01,117,Alabama,Shelby County,10,8,15563,7709,7854,6602,6613,823,960,36,20,194,202,3,2,51,57,7175,7496,6104,6284,817,946,22,14,189,199,1,2,42,51,534,358,498,329,6,14,14,6,5,3,2,0,9,6 -050,01,117,Alabama,Shelby County,10,9,14284,7042,7242,6136,6175,673,838,20,27,145,149,2,6,66,47,6680,6971,5801,5924,665,830,14,24,139,148,2,1,59,44,362,271,335,251,8,8,6,3,6,1,0,5,7,3 -050,01,117,Alabama,Shelby County,10,10,14734,7087,7647,6175,6687,705,752,20,37,136,124,2,0,49,47,6867,7455,5969,6500,699,750,17,36,136,122,0,0,46,47,220,192,206,187,6,2,3,1,0,2,2,0,3,0 -050,01,117,Alabama,Shelby County,10,11,13746,6678,7068,5937,6284,554,587,24,27,122,100,3,2,38,68,6528,6958,5792,6185,553,581,22,25,122,100,2,2,37,65,150,110,145,99,1,6,2,2,0,0,1,0,1,3 -050,01,117,Alabama,Shelby County,10,12,11880,5676,6204,5171,5519,366,536,24,24,74,87,1,1,40,37,5567,6119,5069,5442,365,533,21,22,73,87,1,0,38,35,109,85,102,77,1,3,3,2,1,0,0,1,2,2 -050,01,117,Alabama,Shelby County,10,13,9303,4474,4829,4144,4463,252,276,8,16,52,53,0,1,18,20,4414,4764,4091,4403,248,276,7,15,51,51,0,0,17,19,60,65,53,60,4,0,1,1,1,2,0,1,1,1 -050,01,117,Alabama,Shelby County,10,14,6765,3206,3559,2969,3301,174,193,4,5,45,36,0,2,14,22,3180,3536,2944,3281,173,192,4,5,45,36,0,1,14,21,26,23,25,20,1,1,0,0,0,0,0,1,0,1 -050,01,117,Alabama,Shelby County,10,15,4644,2177,2467,2009,2276,126,143,10,8,23,31,1,0,8,9,2148,2439,1981,2249,126,142,10,8,22,31,1,0,8,9,29,28,28,27,0,1,0,0,1,0,0,0,0,0 -050,01,117,Alabama,Shelby County,10,16,3495,1526,1969,1429,1860,72,79,2,1,15,20,0,0,8,9,1503,1956,1407,1848,71,79,2,1,15,19,0,0,8,9,23,13,22,12,1,0,0,0,0,1,0,0,0,0 -050,01,117,Alabama,Shelby County,10,17,2393,997,1396,960,1303,25,76,1,2,6,8,0,0,5,7,986,1382,949,1292,25,75,1,2,6,8,0,0,5,5,11,14,11,11,0,1,0,0,0,0,0,0,0,2 -050,01,117,Alabama,Shelby County,10,18,1710,576,1134,543,1067,26,59,0,0,3,4,0,0,4,4,566,1117,534,1050,25,59,0,0,3,4,0,0,4,4,10,17,9,17,1,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,10,99,188534,92409,96125,80234,82759,9106,10202,338,329,1707,1820,46,43,978,972,87031,91776,75260,78787,8975,10058,226,255,1662,1778,26,21,882,877,5378,4349,4974,3972,131,144,112,74,45,42,20,22,96,95 -050,01,117,Alabama,Shelby County,11,0,2418,1223,1195,1051,1011,115,124,4,4,21,19,2,0,30,37,1081,1064,919,889,114,122,1,2,18,18,1,0,28,33,142,131,132,122,1,2,3,2,3,1,1,0,2,4 -050,01,117,Alabama,Shelby County,11,1,10815,5600,5215,4679,4303,626,628,13,18,132,139,3,9,147,118,4992,4620,4118,3763,613,604,4,6,126,134,2,5,129,108,608,595,561,540,13,24,9,12,6,5,1,4,18,10 -050,01,117,Alabama,Shelby County,11,2,14152,7211,6941,5988,5779,872,784,30,20,144,188,3,4,174,166,6612,6372,5454,5264,839,766,15,11,139,180,1,1,164,150,599,569,534,515,33,18,15,9,5,8,2,3,10,16 -050,01,117,Alabama,Shelby County,11,3,14099,7214,6885,6080,5839,856,772,26,17,126,156,4,2,122,99,6766,6460,5672,5449,846,760,15,11,123,150,2,0,108,90,448,425,408,390,10,12,11,6,3,6,2,2,14,9 -050,01,117,Alabama,Shelby County,11,4,12491,6454,6037,5422,5040,806,772,18,15,113,119,4,3,91,88,6053,5683,5037,4718,799,760,17,12,109,112,3,1,88,80,401,354,385,322,7,12,1,3,4,7,1,2,3,8 -050,01,117,Alabama,Shelby County,11,5,10585,5257,5328,4416,4341,625,801,38,26,102,80,9,3,67,77,4571,4915,3786,3959,613,795,20,15,92,77,4,1,56,68,686,413,630,382,12,6,18,11,10,3,5,2,11,9 -050,01,117,Alabama,Shelby County,11,6,12996,6286,6710,5247,5462,835,999,25,24,101,152,5,3,73,70,5515,6224,4531,5026,820,980,7,8,97,152,3,2,57,56,771,486,716,436,15,19,18,16,4,0,2,1,16,14 -050,01,117,Alabama,Shelby County,11,7,14080,6938,7142,5801,5763,844,1049,31,30,186,228,8,1,68,71,6250,6607,5169,5270,827,1029,12,21,181,224,3,1,58,62,688,535,632,493,17,20,19,9,5,4,5,0,10,9 -050,01,117,Alabama,Shelby County,11,8,15445,7601,7844,6431,6489,858,1032,34,23,219,231,3,2,56,67,7075,7391,5943,6077,852,1008,18,16,214,229,1,2,47,59,526,453,488,412,6,24,16,7,5,2,2,0,9,8 -050,01,117,Alabama,Shelby County,11,9,14497,7180,7317,6235,6221,704,850,14,24,151,169,2,5,74,48,6746,7026,5833,5953,694,843,7,20,145,166,2,1,65,43,434,291,402,268,10,7,7,4,6,3,0,4,9,5 -050,01,117,Alabama,Shelby County,11,10,15001,7229,7772,6299,6724,727,814,22,36,131,147,3,0,47,51,6977,7554,6062,6513,722,812,18,35,131,144,1,0,43,50,252,218,237,211,5,2,4,1,0,3,2,0,4,1 -050,01,117,Alabama,Shelby County,11,11,14054,6839,7215,6061,6372,578,639,25,34,129,106,3,3,43,61,6660,7088,5886,6258,577,633,23,30,129,106,3,3,42,58,179,127,175,114,1,6,2,4,0,0,0,0,1,3 -050,01,117,Alabama,Shelby County,11,12,12178,5791,6387,5236,5661,421,570,16,26,77,93,3,2,38,35,5692,6291,5145,5575,420,566,13,23,77,93,1,1,36,33,99,96,91,86,1,4,3,3,0,0,2,1,2,2 -050,01,117,Alabama,Shelby County,11,13,9988,4752,5236,4386,4807,284,332,9,17,52,60,0,1,21,19,4682,5168,4322,4745,282,331,8,16,51,58,0,0,19,18,70,68,64,62,2,1,1,1,1,2,0,1,2,1 -050,01,117,Alabama,Shelby County,11,14,7157,3392,3765,3149,3487,173,207,4,3,50,39,0,2,16,27,3360,3745,3119,3469,172,206,4,3,50,39,0,1,15,27,32,20,30,18,1,1,0,0,0,0,0,1,1,0 -050,01,117,Alabama,Shelby County,11,15,4919,2314,2605,2133,2409,130,158,10,6,33,23,1,0,7,9,2283,2571,2103,2376,130,157,10,6,32,23,1,0,7,9,31,34,30,33,0,1,0,0,1,0,0,0,0,0 -050,01,117,Alabama,Shelby County,11,16,3534,1557,1977,1459,1839,72,100,2,1,15,28,0,0,9,9,1538,1952,1441,1815,71,100,2,1,15,27,0,0,9,9,19,25,18,24,1,0,0,0,0,1,0,0,0,0 -050,01,117,Alabama,Shelby County,11,17,2491,1033,1458,981,1365,34,77,1,2,12,6,0,0,5,8,1023,1443,971,1353,34,76,1,2,12,6,0,0,5,6,10,15,10,12,0,1,0,0,0,0,0,0,0,2 -050,01,117,Alabama,Shelby County,11,18,1808,611,1197,575,1116,29,69,0,0,3,8,0,0,4,4,600,1178,565,1097,28,69,0,0,3,8,0,0,4,4,11,19,10,19,1,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,11,99,192708,94482,98226,81629,84028,9589,10777,322,326,1797,1991,53,40,1092,1064,88476,93352,76076,79569,9453,10617,195,238,1744,1946,28,19,980,963,6006,4874,5553,4459,136,160,127,88,53,45,25,21,112,101 -050,01,117,Alabama,Shelby County,12,0,2431,1210,1221,1021,1007,130,150,6,5,20,20,2,0,31,39,1073,1089,895,886,128,147,3,3,17,19,1,0,29,34,137,132,126,121,2,3,3,2,3,1,1,0,2,5 -050,01,117,Alabama,Shelby County,12,1,10705,5535,5170,4593,4231,650,630,16,26,117,138,3,9,156,136,4931,4583,4041,3699,634,613,6,10,111,132,2,4,137,125,604,587,552,532,16,17,10,16,6,6,1,5,19,11 -050,01,117,Alabama,Shelby County,12,2,14202,7266,6936,6036,5774,867,778,33,22,158,205,3,5,169,152,6623,6333,5456,5226,839,762,16,12,152,196,1,2,159,135,643,603,580,548,28,16,17,10,6,9,2,3,10,17 -050,01,117,Alabama,Shelby County,12,3,14369,7318,7051,6133,5911,897,841,25,17,127,172,5,3,131,107,6800,6568,5662,5469,883,826,13,11,123,165,3,0,116,97,518,483,471,442,14,15,12,6,4,7,2,3,15,10 -050,01,117,Alabama,Shelby County,12,4,12688,6575,6113,5495,5112,831,766,21,15,123,121,5,3,100,96,6130,5737,5068,4771,823,753,19,12,119,113,4,1,97,87,445,376,427,341,8,13,2,3,4,8,1,2,3,9 -050,01,117,Alabama,Shelby County,12,5,10697,5293,5404,4427,4372,641,834,43,25,107,89,9,3,66,81,4578,4986,3767,3988,630,827,25,13,97,86,4,1,55,71,715,418,660,384,11,7,18,12,10,3,5,2,11,10 -050,01,117,Alabama,Shelby County,12,6,13060,6322,6738,5275,5455,837,1022,29,25,107,165,9,5,65,66,5501,6189,4510,4955,822,1006,10,9,103,164,7,4,49,51,821,549,765,500,15,16,19,16,4,1,2,1,16,15 -050,01,117,Alabama,Shelby County,12,7,14065,6934,7131,5775,5739,872,1099,36,21,173,205,9,2,69,65,6207,6564,5108,5214,855,1081,14,12,167,199,4,2,59,56,727,567,667,525,17,18,22,9,6,6,5,0,10,9 -050,01,117,Alabama,Shelby County,12,8,15174,7477,7697,6325,6356,856,1019,28,28,212,220,4,4,52,70,6900,7238,5788,5932,849,1003,11,21,207,217,2,3,43,62,577,459,537,424,7,16,17,7,5,3,2,1,9,8 -050,01,117,Alabama,Shelby County,12,9,14598,7187,7411,6193,6263,739,889,22,26,164,175,3,6,66,52,6751,7088,5789,5963,728,882,14,22,157,172,3,2,60,47,436,323,404,300,11,7,8,4,7,3,0,4,6,5 -050,01,117,Alabama,Shelby County,12,10,15183,7326,7857,6363,6787,745,830,25,33,138,153,3,0,52,54,7027,7622,6080,6559,739,827,21,32,138,151,1,0,48,53,299,235,283,228,6,3,4,1,0,2,2,0,4,1 -050,01,117,Alabama,Shelby County,12,11,14250,6909,7341,6099,6457,601,667,22,39,135,118,5,2,47,58,6728,7189,5925,6319,599,661,19,34,135,118,4,2,46,55,181,152,174,138,2,6,3,5,0,0,1,0,1,3 -050,01,117,Alabama,Shelby County,12,12,12429,5924,6505,5333,5765,442,588,21,25,88,91,2,2,38,34,5812,6408,5229,5678,441,584,18,22,87,91,1,1,36,32,112,97,104,87,1,4,3,3,1,0,1,1,2,2 -050,01,117,Alabama,Shelby County,12,13,10607,5028,5579,4636,5111,308,368,8,17,53,60,1,1,22,22,4958,5506,4574,5045,304,367,7,15,52,58,1,0,20,21,70,73,62,66,4,1,1,2,1,2,0,1,2,1 -050,01,117,Alabama,Shelby County,12,14,7426,3533,3893,3276,3590,184,231,4,6,48,37,0,2,21,27,3495,3862,3240,3562,183,230,4,6,48,37,0,1,20,26,38,31,36,28,1,1,0,0,0,0,0,1,1,1 -050,01,117,Alabama,Shelby County,12,15,5062,2380,2682,2200,2491,128,144,11,8,32,30,1,0,8,9,2352,2651,2173,2461,128,143,11,8,31,30,1,0,8,9,28,31,27,30,0,1,0,0,1,0,0,0,0,0 -050,01,117,Alabama,Shelby County,12,16,3662,1637,2025,1534,1877,77,111,2,1,15,26,0,0,9,10,1618,2002,1516,1855,76,111,2,1,15,25,0,0,9,10,19,23,18,22,1,0,0,0,0,1,0,0,0,0 -050,01,117,Alabama,Shelby County,12,17,2570,1052,1518,1001,1418,38,81,1,2,7,9,0,0,5,8,1041,1502,990,1405,38,80,1,2,7,9,0,0,5,6,11,16,11,13,0,1,0,0,0,0,0,0,0,2 -050,01,117,Alabama,Shelby County,12,18,1907,651,1256,617,1183,27,61,0,0,3,9,0,0,4,3,639,1237,606,1164,26,61,0,0,3,9,0,0,4,3,12,19,11,19,1,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,12,99,195085,95557,99528,82332,84899,9870,11109,353,341,1827,2043,64,47,1111,1089,89164,94354,76417,80151,9725,10964,214,245,1769,1991,39,23,1000,980,6393,5174,5915,4748,145,145,139,96,58,52,25,24,111,109 -050,01,117,Alabama,Shelby County,13,0,2442,1216,1226,1025,1010,131,150,6,5,20,20,2,0,32,41,1076,1094,898,889,129,147,3,3,17,19,0,0,29,36,140,132,127,121,2,3,3,2,3,1,2,0,3,5 -050,01,117,Alabama,Shelby County,13,1,10727,5541,5186,4592,4232,654,637,15,27,117,138,4,11,159,141,4930,4589,4036,3695,638,618,5,11,111,132,2,5,138,128,611,597,556,537,16,19,10,16,6,6,2,6,21,13 -050,01,117,Alabama,Shelby County,13,2,14247,7294,6953,6050,5784,869,779,38,24,160,205,3,6,174,155,6640,6344,5464,5231,840,764,18,14,154,196,1,2,163,137,654,609,586,553,29,15,20,10,6,9,2,4,11,18 -050,01,117,Alabama,Shelby County,13,3,14400,7330,7070,6144,5924,897,843,24,17,129,174,5,3,131,109,6807,6583,5667,5476,884,828,12,11,125,167,3,1,116,100,523,487,477,448,13,15,12,6,4,7,2,2,15,9 -050,01,117,Alabama,Shelby County,13,4,12656,6557,6099,5479,5099,829,767,20,15,125,122,6,1,98,95,6106,5719,5051,4754,821,753,17,11,120,114,3,0,94,87,451,380,428,345,8,14,3,4,5,8,3,1,4,8 -050,01,117,Alabama,Shelby County,13,5,10762,5328,5434,4449,4393,647,843,47,26,108,89,12,2,65,81,4601,5016,3783,4007,636,836,26,14,98,87,5,0,53,72,727,418,666,386,11,7,21,12,10,2,7,2,12,9 -050,01,117,Alabama,Shelby County,13,6,13141,6377,6764,5314,5476,844,1026,33,28,108,167,11,6,67,61,5545,6216,4544,4976,829,1011,11,9,104,165,8,5,49,50,832,548,770,500,15,15,22,19,4,2,3,1,18,11 -050,01,117,Alabama,Shelby County,13,7,14210,7004,7206,5830,5795,885,1114,37,24,172,204,10,2,70,67,6271,6632,5158,5267,867,1095,15,12,167,198,5,2,59,58,733,574,672,528,18,19,22,12,5,6,5,0,11,9 -050,01,117,Alabama,Shelby County,13,8,15118,7448,7670,6293,6323,857,1018,27,30,213,222,3,4,55,73,6870,7203,5754,5895,850,1002,11,21,208,219,2,3,45,63,578,467,539,428,7,16,16,9,5,3,1,1,10,10 -050,01,117,Alabama,Shelby County,13,9,14633,7201,7432,6204,6276,740,894,22,28,164,175,4,8,67,51,6760,7107,5796,5975,729,888,14,22,157,172,3,3,61,47,441,325,408,301,11,6,8,6,7,3,1,5,6,4 -050,01,117,Alabama,Shelby County,13,10,15164,7317,7847,6350,6772,750,832,27,34,137,154,3,0,50,55,7012,7608,6065,6542,742,828,21,32,137,152,1,0,46,54,305,239,285,230,8,4,6,2,0,2,2,0,4,1 -050,01,117,Alabama,Shelby County,13,11,14310,6937,7373,6123,6482,606,671,22,39,135,118,5,2,46,61,6755,7221,5948,6344,604,665,19,34,135,118,4,2,45,58,182,152,175,138,2,6,3,5,0,0,1,0,1,3 -050,01,117,Alabama,Shelby County,13,12,12526,5968,6558,5377,5811,445,592,21,27,86,91,2,2,37,35,5856,6460,5272,5724,444,587,18,24,86,91,1,1,35,33,112,98,105,87,1,5,3,3,0,0,1,1,2,2 -050,01,117,Alabama,Shelby County,13,13,10737,5088,5649,4691,5170,315,379,8,18,53,59,1,1,20,22,5017,5576,4628,5104,311,376,7,16,52,58,1,0,18,22,71,73,63,66,4,3,1,2,1,1,0,1,2,0 -050,01,117,Alabama,Shelby County,13,14,7489,3567,3922,3307,3621,186,233,4,6,50,37,0,1,20,24,3529,3893,3271,3593,185,232,4,6,50,37,0,1,19,24,38,29,36,28,1,1,0,0,0,0,0,0,1,0 -050,01,117,Alabama,Shelby County,13,15,5101,2399,2702,2218,2509,128,144,14,9,32,29,1,0,6,11,2370,2672,2190,2480,128,143,14,9,31,29,1,0,6,11,29,30,28,29,0,1,0,0,1,0,0,0,0,0 -050,01,117,Alabama,Shelby County,13,16,3660,1641,2019,1540,1874,77,112,2,0,14,26,0,0,8,7,1622,1998,1521,1853,77,112,2,0,14,26,0,0,8,7,19,21,19,21,0,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,13,17,2582,1063,1519,1011,1421,38,81,3,2,5,9,0,0,6,6,1050,1506,998,1408,38,81,3,2,5,9,0,0,6,6,13,13,13,13,0,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,13,18,1923,657,1266,624,1191,27,62,0,0,3,9,0,0,3,4,645,1247,613,1172,26,62,0,0,3,9,0,0,3,4,12,19,11,19,1,0,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,13,99,195828,95933,99895,82621,85163,9925,11177,370,359,1831,2048,72,49,1114,1099,89462,94684,76657,80385,9778,11028,220,251,1774,1998,40,25,993,997,6471,5211,5964,4778,147,149,150,108,57,50,32,24,121,102 -050,01,119,Alabama,Sumter County,1,0,202,101,101,19,18,82,82,0,0,0,0,0,1,0,0,97,100,17,17,80,82,0,0,0,0,0,1,0,0,4,1,2,1,2,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,1,864,442,422,83,69,355,349,0,0,0,2,0,0,4,2,434,408,81,62,349,342,0,0,0,2,0,0,4,2,8,14,2,7,6,7,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,2,1233,663,570,109,80,553,481,0,1,0,0,0,0,1,8,652,563,105,77,546,477,0,1,0,0,0,0,1,8,11,7,4,3,7,4,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,3,1248,605,643,75,100,526,536,2,1,1,0,0,0,1,6,595,632,74,99,517,526,2,1,1,0,0,0,1,6,10,11,1,1,9,10,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,4,1278,629,649,147,141,477,508,0,0,0,0,0,0,5,0,620,646,144,140,471,506,0,0,0,0,0,0,5,0,9,3,3,1,6,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,5,1268,572,696,230,259,336,433,0,1,0,0,0,0,6,3,562,683,223,254,333,425,0,1,0,0,0,0,6,3,10,13,7,5,3,8,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,6,919,423,496,129,81,291,414,0,0,0,0,0,0,3,1,414,488,126,80,285,407,0,0,0,0,0,0,3,1,9,8,3,1,6,7,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,7,831,369,462,114,108,251,352,0,0,1,1,0,0,3,1,364,454,112,105,248,347,0,0,1,1,0,0,3,1,5,8,2,3,3,5,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,8,904,417,487,110,96,303,389,0,0,3,1,0,0,1,1,415,486,109,96,302,388,0,0,3,1,0,0,1,1,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,9,1083,453,630,106,123,345,502,1,3,0,0,0,0,1,2,453,629,106,123,345,501,1,3,0,0,0,0,1,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,10,974,450,524,121,132,328,387,1,2,0,1,0,1,0,1,444,523,118,132,325,386,1,2,0,1,0,1,0,1,6,1,3,0,3,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,11,745,360,385,138,120,222,261,0,0,0,2,0,0,0,2,359,381,138,120,221,257,0,0,0,2,0,0,0,2,1,4,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,12,591,281,310,106,101,174,207,0,0,0,1,0,0,1,1,278,308,104,101,173,205,0,0,0,1,0,0,1,1,3,2,2,0,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,13,574,254,320,95,112,158,204,0,1,0,1,0,0,1,2,252,318,95,111,156,203,0,1,0,1,0,0,1,2,2,2,0,1,2,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,14,492,203,289,81,99,121,188,0,0,0,0,0,0,1,2,202,287,81,99,120,186,0,0,0,0,0,0,1,2,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,15,493,197,296,85,106,112,186,0,0,0,0,0,0,0,4,197,293,85,105,112,185,0,0,0,0,0,0,0,3,0,3,0,1,0,1,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,1,16,410,142,268,62,81,80,187,0,0,0,0,0,0,0,0,141,268,62,81,79,187,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,17,300,95,205,32,65,63,137,0,1,0,0,0,0,0,2,95,204,32,65,63,136,0,1,0,0,0,0,0,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,18,363,114,249,38,97,76,152,0,0,0,0,0,0,0,0,114,248,38,97,76,151,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,99,14772,6770,8002,1880,1988,4853,5955,4,10,5,9,0,2,28,38,6688,7919,1850,1964,4801,5897,4,10,5,9,0,2,28,37,82,83,30,24,52,58,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,2,0,202,101,101,19,18,82,82,0,0,0,0,0,1,0,0,97,100,17,17,80,82,0,0,0,0,0,1,0,0,4,1,2,1,2,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,1,856,438,418,82,69,351,345,0,0,0,2,0,0,5,2,430,404,80,62,345,338,0,0,0,2,0,0,5,2,8,14,2,7,6,7,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,2,1218,655,563,107,79,547,475,0,1,0,0,0,0,1,8,644,556,103,76,540,471,0,1,0,0,0,0,1,8,11,7,4,3,7,4,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,3,1254,607,647,75,100,528,540,2,1,1,0,0,0,1,6,597,636,74,99,519,530,2,1,1,0,0,0,1,6,10,11,1,1,9,10,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,4,1286,633,653,152,144,476,509,0,0,0,0,0,0,5,0,624,650,149,143,470,507,0,0,0,0,0,0,5,0,9,3,3,1,6,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,5,1277,577,700,231,259,340,437,0,1,0,0,0,0,6,3,567,687,224,254,337,429,0,1,0,0,0,0,6,3,10,13,7,5,3,8,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,6,906,416,490,126,80,287,409,0,0,0,0,0,0,3,1,407,482,123,79,281,402,0,0,0,0,0,0,3,1,9,8,3,1,6,7,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,7,827,366,461,114,108,248,351,0,0,1,1,0,0,3,1,361,453,112,105,245,346,0,0,1,1,0,0,3,1,5,8,2,3,3,5,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,8,892,410,482,108,95,298,385,0,0,3,1,0,0,1,1,408,481,107,95,297,384,0,0,3,1,0,0,1,1,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,9,1084,454,630,106,123,346,502,1,3,0,0,0,0,1,2,454,629,106,123,346,501,1,3,0,0,0,0,1,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,10,977,450,527,121,132,328,390,1,2,0,1,0,1,0,1,444,526,118,132,325,389,1,2,0,1,0,1,0,1,6,1,3,0,3,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,11,750,362,388,137,120,225,264,0,0,0,2,0,0,0,2,361,384,137,120,224,260,0,0,0,2,0,0,0,2,1,4,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,12,590,281,309,106,100,174,207,0,0,0,1,0,0,1,1,278,307,104,100,173,205,0,0,0,1,0,0,1,1,3,2,2,0,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,13,572,253,319,95,112,157,203,0,1,0,1,0,0,1,2,251,317,95,111,155,202,0,1,0,1,0,0,1,2,2,2,0,1,2,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,14,489,202,287,81,98,120,187,0,0,0,0,0,0,1,2,201,285,81,98,119,185,0,0,0,0,0,0,1,2,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,15,492,197,295,85,106,112,185,0,0,0,0,0,0,0,4,197,292,85,105,112,184,0,0,0,0,0,0,0,3,0,3,0,1,0,1,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,2,16,411,142,269,62,81,80,188,0,0,0,0,0,0,0,0,141,269,62,81,79,188,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,17,301,95,206,32,65,63,138,0,1,0,0,0,0,0,2,95,205,32,65,63,137,0,1,0,0,0,0,0,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,18,362,113,249,38,97,75,152,0,0,0,0,0,0,0,0,113,248,38,97,75,151,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,99,14746,6752,7994,1877,1986,4837,5949,4,10,5,9,0,2,29,38,6670,7911,1847,1962,4785,5891,4,10,5,9,0,2,29,37,82,83,30,24,52,58,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,3,0,196,98,98,18,22,80,75,0,0,0,0,0,1,0,0,94,97,16,21,78,75,0,0,0,0,0,1,0,0,4,1,2,1,2,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,1,793,398,395,68,68,326,323,0,0,0,2,0,0,4,2,390,383,66,61,320,318,0,0,0,2,0,0,4,2,8,12,2,7,6,5,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,2,1128,601,527,98,73,502,445,0,1,0,0,0,0,1,8,591,520,94,70,496,441,0,1,0,0,0,0,1,8,10,7,4,3,6,4,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,3,1281,628,653,76,96,548,551,2,1,1,0,0,0,1,5,619,643,75,95,540,542,2,1,1,0,0,0,1,5,9,10,1,1,8,9,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,4,1317,638,679,153,148,480,531,0,0,0,0,0,0,5,0,630,676,150,147,475,529,0,0,0,0,0,0,5,0,8,3,3,1,5,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,5,1316,566,750,232,264,328,482,0,1,0,0,0,0,6,3,557,740,225,260,326,476,0,1,0,0,0,0,6,3,9,10,7,4,2,6,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,6,816,401,415,118,72,280,342,0,0,0,0,0,0,3,1,393,407,115,71,275,335,0,0,0,0,0,0,3,1,8,8,3,1,5,7,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,7,854,356,498,97,104,255,392,0,0,1,1,0,0,3,1,351,490,95,101,252,387,0,0,1,1,0,0,3,1,5,8,2,3,3,5,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,8,844,385,459,100,88,281,369,0,0,3,1,0,0,1,1,383,458,99,88,280,368,0,0,3,1,0,0,1,1,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,9,1044,451,593,95,104,354,484,1,3,0,0,0,0,1,2,451,592,95,104,354,483,1,3,0,0,0,0,1,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,10,1013,460,553,121,131,338,418,1,2,0,1,0,0,0,1,454,552,118,131,335,417,1,2,0,1,0,0,0,1,6,1,3,0,3,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,11,811,387,424,143,125,244,295,0,0,0,2,0,0,0,2,386,421,143,125,243,292,0,0,0,2,0,0,0,2,1,3,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,12,582,272,310,97,106,174,202,0,0,0,1,0,0,1,1,269,308,95,106,173,200,0,0,0,1,0,0,1,1,3,2,2,0,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,13,551,254,297,96,93,157,200,0,1,0,1,0,0,1,2,253,295,96,92,156,199,0,1,0,1,0,0,1,2,1,2,0,1,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,14,504,206,298,80,98,125,198,0,0,0,0,0,0,1,2,205,296,80,98,124,196,0,0,0,0,0,0,1,2,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,15,490,195,295,83,107,112,184,0,0,0,0,0,0,0,4,195,292,83,106,112,183,0,0,0,0,0,0,0,3,0,3,0,1,0,1,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,3,16,409,138,271,59,86,79,185,0,0,0,0,0,0,0,0,137,271,59,86,78,185,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,17,316,104,212,41,73,63,136,0,1,0,0,0,0,0,2,103,211,41,73,62,135,0,1,0,0,0,0,0,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,18,365,111,254,37,92,74,162,0,0,0,0,0,0,0,0,111,253,37,92,74,161,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,99,14630,6649,7981,1812,1950,4800,5974,4,10,5,9,0,1,28,37,6572,7905,1782,1927,4753,5922,4,10,5,9,0,1,28,36,77,76,30,23,47,52,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,4,0,160,82,78,23,10,59,68,0,0,0,0,0,0,0,0,79,77,21,9,58,68,0,0,0,0,0,0,0,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,1,757,373,384,69,77,300,303,0,0,0,2,0,0,4,2,367,372,67,71,296,297,0,0,0,2,0,0,4,2,6,12,2,6,4,6,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,2,1055,540,515,90,64,449,443,0,1,0,0,0,0,1,7,530,509,86,62,443,439,0,1,0,0,0,0,1,7,10,6,4,2,6,4,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,3,1222,607,615,73,95,530,514,2,1,1,0,0,0,1,5,599,606,72,94,523,506,2,1,1,0,0,0,1,5,8,9,1,1,7,8,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,4,1324,647,677,153,149,488,528,0,0,0,0,0,0,6,0,640,674,150,148,484,526,0,0,0,0,0,0,6,0,7,3,3,1,4,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,5,1319,551,768,209,270,336,494,0,1,0,0,0,0,6,3,542,758,202,266,334,488,0,1,0,0,0,0,6,3,9,10,7,4,2,6,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,6,752,364,388,94,67,268,320,0,0,0,0,0,0,2,1,357,381,91,66,264,314,0,0,0,0,0,0,2,1,7,7,3,1,4,6,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,7,838,359,479,96,99,259,378,0,0,1,1,0,0,3,1,355,471,94,96,257,373,0,0,1,1,0,0,3,1,4,8,2,3,2,5,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,8,785,348,437,87,89,258,346,0,0,2,1,0,0,1,1,346,436,86,89,257,345,0,0,2,1,0,0,1,1,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,9,1024,452,572,98,101,352,466,1,3,0,0,0,0,1,2,452,571,98,101,352,465,1,3,0,0,0,0,1,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,10,1043,479,564,119,130,359,429,1,2,0,1,0,0,0,2,473,563,116,130,356,428,1,2,0,1,0,0,0,2,6,1,3,0,3,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,11,846,386,460,132,129,253,327,0,0,0,2,0,0,1,2,385,456,132,129,252,323,0,0,0,2,0,0,1,2,1,4,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,12,610,297,313,105,105,191,206,0,0,0,1,0,0,1,1,294,311,103,105,190,204,0,0,0,1,0,0,1,1,3,2,2,0,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,13,571,269,302,99,98,169,200,0,1,0,1,0,0,1,2,268,301,99,97,168,200,0,1,0,1,0,0,1,2,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,14,487,202,285,79,83,122,200,0,0,0,0,0,0,1,2,201,283,79,83,121,198,0,0,0,0,0,0,1,2,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,15,480,193,287,79,106,114,177,0,0,0,0,0,0,0,4,193,284,79,105,114,176,0,0,0,0,0,0,0,3,0,3,0,1,0,1,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,4,16,419,154,265,65,78,89,187,0,0,0,0,0,0,0,0,153,265,65,78,88,187,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,17,326,104,222,40,89,64,131,0,1,0,0,0,0,0,1,103,221,40,89,63,130,0,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,18,358,107,251,34,92,73,159,0,0,0,0,0,0,0,0,107,250,34,92,73,158,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,99,14376,6514,7862,1744,1931,4733,5876,4,10,4,9,0,0,29,36,6444,7789,1714,1910,4693,5825,4,10,4,9,0,0,29,35,70,73,30,21,40,51,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,5,0,184,98,86,22,16,76,70,0,0,0,0,0,0,0,0,95,85,20,15,75,70,0,0,0,0,0,0,0,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,1,723,357,366,69,71,285,290,0,0,0,3,0,0,3,2,351,356,67,66,281,285,0,0,0,3,0,0,3,2,6,10,2,5,4,5,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,2,967,487,480,77,62,409,410,0,1,0,0,0,0,1,7,478,474,73,60,404,406,0,1,0,0,0,0,1,7,9,6,4,2,5,4,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,3,1248,625,623,77,86,545,531,1,1,1,0,0,0,1,5,619,616,76,85,540,525,1,1,1,0,0,0,1,5,6,7,1,1,5,6,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,4,1307,632,675,145,152,481,523,0,0,0,0,0,0,6,0,626,672,142,150,478,522,0,0,0,0,0,0,6,0,6,3,3,2,3,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,5,1374,569,805,193,267,371,534,0,1,0,1,0,0,5,2,560,795,186,263,369,528,0,1,0,1,0,0,5,2,9,10,7,4,2,6,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,6,675,334,341,112,65,220,274,0,0,0,1,0,0,2,1,328,336,108,64,218,270,0,0,0,1,0,0,2,1,6,5,4,1,2,4,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,7,857,373,484,85,88,284,395,0,0,1,1,0,0,3,0,368,477,83,85,281,391,0,0,1,1,0,0,3,0,5,7,2,3,3,4,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,8,786,357,429,88,87,265,340,0,0,2,1,1,0,1,1,354,428,87,87,264,339,0,0,2,1,0,0,1,1,3,1,1,0,1,1,0,0,0,0,1,0,0,0 -050,01,119,Alabama,Sumter County,5,9,984,443,541,92,98,349,439,1,2,0,0,0,0,1,2,443,540,92,98,349,438,1,2,0,0,0,0,1,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,10,1078,481,597,111,120,369,473,1,1,0,1,0,0,0,2,476,596,109,120,366,472,1,1,0,1,0,0,0,2,5,1,2,0,3,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,11,856,397,459,132,121,265,335,0,0,0,2,0,0,0,1,394,456,130,121,264,332,0,0,0,2,0,0,0,1,3,3,2,0,1,3,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,12,657,335,322,116,103,217,216,0,0,0,2,0,0,2,1,332,320,114,103,216,214,0,0,0,2,0,0,2,1,3,2,2,0,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,13,579,270,309,89,104,181,202,0,1,0,1,0,0,0,1,269,308,89,103,180,202,0,1,0,1,0,0,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,14,503,214,289,90,82,123,205,0,0,0,1,0,0,1,1,213,287,90,82,122,203,0,0,0,1,0,0,1,1,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,15,465,179,286,73,110,106,172,0,0,0,0,0,0,0,4,179,283,73,109,106,171,0,0,0,0,0,0,0,3,0,3,0,1,0,1,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,5,16,414,152,262,73,83,79,178,0,0,0,0,0,0,0,1,150,261,72,83,78,178,0,0,0,0,0,0,0,0,2,1,1,0,1,0,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,5,17,316,88,228,34,79,54,146,0,1,0,0,0,0,0,2,88,227,34,79,54,145,0,1,0,0,0,0,0,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,18,356,107,249,36,96,71,153,0,0,0,0,0,0,0,0,107,248,36,96,71,152,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,99,14329,6498,7831,1714,1890,4750,5886,3,8,4,14,1,0,26,33,6430,7765,1681,1869,4716,5843,3,8,4,14,0,0,26,31,68,66,33,21,34,43,0,0,0,0,1,0,0,2 -050,01,119,Alabama,Sumter County,6,0,203,106,97,28,16,78,80,0,0,0,0,0,1,0,0,103,96,26,15,77,80,0,0,0,0,0,1,0,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,1,719,366,353,76,66,287,282,0,0,0,3,0,0,3,2,360,344,74,61,283,278,0,0,0,3,0,0,3,2,6,9,2,5,4,4,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,2,907,459,448,71,57,387,383,0,1,0,0,0,0,1,7,452,442,67,55,384,379,0,1,0,0,0,0,1,7,7,6,4,2,3,4,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,3,1212,630,582,84,73,544,505,1,1,1,0,0,0,0,3,624,575,83,72,539,499,1,1,1,0,0,0,0,3,6,7,1,1,5,6,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,4,1365,669,696,138,147,529,548,0,0,0,0,0,0,2,1,662,692,134,145,526,546,0,0,0,0,0,0,2,1,7,4,4,2,3,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,5,1378,580,798,209,267,366,527,0,1,0,1,0,0,5,2,571,786,202,261,364,521,0,1,0,1,0,0,5,2,9,12,7,6,2,6,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,6,644,310,334,101,73,208,259,0,0,0,1,0,0,1,1,303,329,97,72,205,255,0,0,0,1,0,0,1,1,7,5,4,1,3,4,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,7,883,372,511,84,77,286,432,0,0,1,1,0,0,1,1,368,505,82,74,284,429,0,0,1,1,0,0,1,1,4,6,2,3,2,3,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,8,770,346,424,89,85,253,338,0,0,2,1,1,0,1,0,344,423,88,85,253,337,0,0,2,1,0,0,1,0,2,1,1,0,0,1,0,0,0,0,1,0,0,0 -050,01,119,Alabama,Sumter County,6,9,926,428,498,83,84,342,410,1,2,0,0,0,0,2,2,428,496,83,84,342,408,1,2,0,0,0,0,2,2,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,10,1086,465,621,100,124,363,492,1,1,0,1,0,1,1,2,461,620,98,124,361,491,1,1,0,1,0,1,1,2,4,1,2,0,2,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,11,887,431,456,142,113,288,340,0,0,0,2,0,0,1,1,428,453,140,113,287,337,0,0,0,2,0,0,1,1,3,3,2,0,1,3,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,12,712,350,362,127,112,221,247,0,0,0,2,0,0,2,1,347,361,125,112,220,246,0,0,0,2,0,0,2,1,3,1,2,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,13,587,279,308,81,109,198,195,0,1,0,1,0,0,0,2,278,307,81,108,197,195,0,1,0,1,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,14,507,220,287,103,89,116,196,0,0,0,1,0,0,1,1,219,286,103,89,115,195,0,0,0,1,0,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,15,442,171,271,62,99,109,168,0,0,0,0,0,0,0,4,170,268,62,98,108,167,0,0,0,0,0,0,0,3,1,3,0,1,1,1,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,6,16,438,165,273,70,90,95,183,0,0,0,0,0,0,0,0,163,273,69,90,94,183,0,0,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,17,314,92,222,37,74,55,146,0,1,0,0,0,0,0,1,92,221,37,74,55,145,0,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,18,344,102,242,33,96,69,145,0,0,0,0,0,0,0,1,102,241,33,96,69,144,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,99,14324,6541,7783,1718,1851,4794,5876,3,8,4,14,1,2,21,32,6475,7718,1684,1828,4763,5835,3,8,4,14,0,2,21,31,66,65,34,23,31,41,0,0,0,0,1,0,0,1 -050,01,119,Alabama,Sumter County,7,0,144,78,66,23,13,55,53,0,0,0,0,0,0,0,0,75,66,21,13,54,53,0,0,0,0,0,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,1,750,401,349,82,59,316,286,0,0,0,3,0,0,3,1,395,345,79,57,313,284,0,0,0,3,0,0,3,1,6,4,3,2,3,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,2,893,439,454,66,52,372,397,0,1,1,0,0,0,0,4,432,448,62,49,369,394,0,1,1,0,0,0,0,4,7,6,4,3,3,3,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,3,1095,578,517,85,69,492,442,1,0,0,1,0,0,0,5,573,511,85,69,487,436,1,0,0,1,0,0,0,5,5,6,0,0,5,6,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,4,1324,641,683,122,147,514,535,0,0,1,0,0,0,4,1,637,681,121,146,511,534,0,0,1,0,0,0,4,1,4,2,1,1,3,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,5,1415,634,781,212,278,417,496,1,1,2,2,0,1,2,3,622,769,202,274,415,490,1,1,2,2,0,0,2,2,12,12,10,4,2,6,0,0,0,0,0,1,0,1 -050,01,119,Alabama,Sumter County,7,6,629,294,335,100,81,192,253,0,0,0,1,0,0,2,0,289,329,98,79,189,249,0,0,0,1,0,0,2,0,5,6,2,2,3,4,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,7,842,350,492,78,73,270,414,0,0,1,4,0,0,1,1,348,489,78,72,268,412,0,0,1,4,0,0,1,1,2,3,0,1,2,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,8,736,324,412,84,82,236,330,1,0,2,0,1,0,0,0,321,411,83,82,235,329,1,0,2,0,0,0,0,0,3,1,1,0,1,1,0,0,0,0,1,0,0,0 -050,01,119,Alabama,Sumter County,7,9,871,409,462,78,82,326,375,1,2,0,1,0,0,4,2,408,459,78,81,325,373,1,2,0,1,0,0,4,2,1,3,0,1,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,10,1079,459,620,95,115,361,499,1,2,1,0,0,0,1,4,456,618,93,115,360,498,1,2,1,0,0,0,1,3,3,2,2,0,1,1,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,7,11,929,433,496,118,116,312,377,1,1,0,2,0,0,2,0,429,492,115,114,311,375,1,1,0,2,0,0,2,0,4,4,3,2,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,12,763,383,380,144,116,236,260,0,0,1,3,0,0,2,1,377,380,140,116,234,260,0,0,1,3,0,0,2,1,6,0,4,0,2,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,13,584,278,306,89,107,189,197,0,0,0,1,0,0,0,1,276,305,89,107,187,196,0,0,0,1,0,0,0,1,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,14,534,230,304,91,99,139,202,0,0,0,1,0,0,0,2,230,304,91,99,139,202,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,15,445,176,269,63,102,113,164,0,0,0,0,0,0,0,3,175,268,63,102,112,163,0,0,0,0,0,0,0,3,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,16,446,161,285,77,101,84,182,0,0,0,1,0,0,0,1,159,282,76,100,83,181,0,0,0,1,0,0,0,0,2,3,1,1,1,1,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,7,17,303,99,204,46,71,53,132,0,0,0,0,0,0,0,1,98,204,46,71,52,132,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,18,361,98,263,31,92,67,171,0,0,0,0,0,0,0,0,98,263,31,92,67,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,99,14143,6465,7678,1684,1855,4744,5765,6,7,9,20,1,1,21,30,6398,7624,1651,1838,4711,5732,6,7,9,20,0,0,21,27,67,54,33,17,33,33,0,0,0,0,1,1,0,3 -050,01,119,Alabama,Sumter County,8,0,168,87,81,26,9,61,72,0,0,0,0,0,0,0,0,85,81,25,9,60,72,0,0,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,1,676,343,333,69,60,273,268,0,1,0,3,0,0,1,1,337,329,66,58,270,266,0,1,0,3,0,0,1,1,6,4,3,2,3,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,2,854,417,437,58,54,358,380,0,0,1,0,0,0,0,3,410,432,54,51,355,378,0,0,1,0,0,0,0,3,7,5,4,3,3,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,3,1083,572,511,75,64,496,440,1,0,0,1,0,0,0,6,567,507,75,64,491,436,1,0,0,1,0,0,0,6,5,4,0,0,5,4,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,4,1339,656,683,124,146,528,532,0,1,1,0,0,0,3,4,654,681,123,145,527,531,0,1,1,0,0,0,3,4,2,2,1,1,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,5,1383,626,757,214,260,406,491,1,1,2,2,0,1,3,2,612,747,204,256,402,487,1,1,2,2,0,0,3,1,14,10,10,4,4,4,0,0,0,0,0,1,0,1 -050,01,119,Alabama,Sumter County,8,6,645,276,369,95,96,179,272,0,0,0,1,0,0,2,0,273,364,94,94,177,269,0,0,0,1,0,0,2,0,3,5,1,2,2,3,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,7,748,329,419,75,56,253,359,0,0,1,4,0,0,0,0,328,417,75,56,252,357,0,0,1,4,0,0,0,0,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,8,744,333,411,85,71,245,340,1,0,1,0,1,0,0,0,329,411,84,71,243,340,1,0,1,0,0,0,0,0,4,0,1,0,2,0,0,0,0,0,1,0,0,0 -050,01,119,Alabama,Sumter County,8,9,822,376,446,81,86,292,356,0,2,0,1,0,0,3,1,375,442,81,85,291,353,0,2,0,1,0,0,3,1,1,4,0,1,1,3,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,10,1085,468,617,88,110,376,502,1,2,2,0,0,0,1,3,465,615,86,110,375,501,1,2,2,0,0,0,1,2,3,2,2,0,1,1,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,8,11,993,461,532,117,117,339,411,1,1,0,2,0,0,4,1,457,528,114,115,338,409,1,1,0,2,0,0,4,1,4,4,3,2,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,12,843,400,443,151,126,246,313,0,0,1,3,0,0,2,1,395,442,148,126,244,312,0,0,1,3,0,0,2,1,5,1,3,0,2,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,13,591,275,316,89,115,186,200,0,0,0,1,0,0,0,0,274,315,89,115,185,199,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,14,525,232,293,87,88,145,201,0,1,0,1,0,0,0,2,232,293,87,88,145,201,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,15,438,175,263,65,94,110,168,0,0,0,0,0,0,0,1,173,262,65,94,108,167,0,0,0,0,0,0,0,1,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,16,446,171,275,78,91,93,183,0,0,0,1,0,0,0,0,170,272,77,90,93,181,0,0,0,1,0,0,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,17,312,101,211,42,77,59,133,0,0,0,0,0,0,0,1,101,210,42,77,59,132,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,18,364,109,255,42,91,67,164,0,0,0,0,0,0,0,0,109,255,42,91,67,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,99,14059,6407,7652,1661,1811,4712,5785,5,9,9,20,1,1,19,26,6346,7603,1631,1795,4682,5755,5,9,9,20,0,0,19,24,61,49,30,16,30,30,0,0,0,0,1,1,0,2 -050,01,119,Alabama,Sumter County,9,0,184,90,94,28,16,62,78,0,0,0,0,0,0,0,0,88,94,27,16,61,78,0,0,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,1,683,349,334,67,50,281,279,0,1,0,3,0,0,1,1,344,331,64,48,279,278,0,1,0,3,0,0,1,1,5,3,3,2,2,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,2,771,392,379,65,46,326,330,0,0,1,0,0,0,0,3,386,374,61,43,324,328,0,0,1,0,0,0,0,3,6,5,4,3,2,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,3,1046,526,520,72,67,453,447,1,0,0,1,0,0,0,5,522,517,72,67,449,444,1,0,0,1,0,0,0,5,4,3,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,4,1350,668,682,129,147,534,529,0,1,1,0,0,0,4,5,666,679,128,146,533,527,0,1,1,0,0,0,4,5,2,3,1,1,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,5,1380,618,762,216,257,396,498,1,1,2,2,0,2,3,2,604,751,206,253,392,493,1,1,2,2,0,1,3,1,14,11,10,4,4,5,0,0,0,0,0,1,0,1 -050,01,119,Alabama,Sumter County,9,6,623,265,358,83,79,180,278,0,0,0,1,0,0,2,0,262,354,82,77,178,276,0,0,0,1,0,0,2,0,3,4,1,2,2,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,7,689,283,406,69,58,213,344,0,0,1,4,0,0,0,0,283,405,69,58,213,343,0,0,1,4,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,8,759,346,413,88,67,255,346,1,0,1,0,1,0,0,0,342,413,87,67,253,346,1,0,1,0,0,0,0,0,4,0,1,0,2,0,0,0,0,0,1,0,0,0 -050,01,119,Alabama,Sumter County,9,9,788,358,430,77,85,278,341,0,2,0,1,0,0,3,1,357,426,77,84,277,338,0,2,0,1,0,0,3,1,1,4,0,1,1,3,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,10,1057,461,596,88,101,369,489,1,2,2,0,0,0,1,4,458,594,86,101,368,488,1,2,2,0,0,0,1,3,3,2,2,0,1,1,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,9,11,1027,481,546,110,111,365,431,1,1,0,2,0,0,5,1,477,542,107,109,364,429,1,1,0,2,0,0,5,1,4,4,3,2,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,12,878,406,472,140,127,263,340,0,0,1,4,0,0,2,1,401,472,137,127,261,340,0,0,1,4,0,0,2,1,5,0,3,0,2,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,13,604,292,312,85,109,207,202,0,0,0,1,0,0,0,0,291,311,85,109,206,201,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,14,558,253,305,101,96,152,206,0,1,0,1,0,0,0,1,253,305,101,96,152,206,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,15,420,165,255,65,93,100,161,0,0,0,0,0,0,0,1,163,254,65,93,98,160,0,0,0,0,0,0,0,1,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,16,463,184,279,72,98,112,179,0,0,0,1,0,0,0,1,183,275,71,97,112,177,0,0,0,1,0,0,0,0,1,4,1,1,0,2,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,9,17,297,89,208,44,61,44,146,0,0,1,0,0,0,0,1,88,207,44,61,43,145,0,0,1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,18,349,100,249,37,95,63,153,0,0,0,0,0,0,0,1,100,249,37,95,63,153,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,99,13926,6326,7600,1636,1763,4653,5777,5,9,10,21,1,2,21,28,6268,7553,1606,1747,4626,5750,5,9,10,21,0,1,21,25,58,47,30,16,27,27,0,0,0,0,1,1,0,3 -050,01,119,Alabama,Sumter County,10,0,177,91,86,32,14,59,72,0,0,0,0,0,0,0,0,90,86,31,14,59,72,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,1,669,336,333,63,50,273,277,0,1,0,4,0,0,0,1,332,332,60,49,272,277,0,1,0,4,0,0,0,1,4,1,3,1,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,2,774,386,388,64,53,321,333,0,0,1,0,0,0,0,2,382,384,60,51,321,331,0,0,1,0,0,0,0,2,4,4,4,2,0,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,3,956,475,481,59,65,416,411,0,0,0,1,0,0,0,4,474,480,59,65,415,410,0,0,0,1,0,0,0,4,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,4,1370,670,700,135,151,530,543,0,1,1,0,0,0,4,5,668,697,134,150,529,541,0,1,1,0,0,0,4,5,2,3,1,1,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,5,1383,628,755,219,256,404,494,1,1,2,2,0,1,2,1,615,744,209,252,401,489,1,1,2,2,0,0,2,0,13,11,10,4,3,5,0,0,0,0,0,1,0,1 -050,01,119,Alabama,Sumter County,10,6,652,288,364,87,71,200,291,0,0,0,2,0,0,1,0,286,362,85,69,200,291,0,0,0,2,0,0,1,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,7,640,265,375,70,55,194,316,0,0,1,4,0,0,0,0,265,374,70,55,194,315,0,0,1,4,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,8,761,348,413,68,62,277,351,1,0,0,0,2,0,0,0,343,413,67,62,275,351,1,0,0,0,0,0,0,0,5,0,1,0,2,0,0,0,0,0,2,0,0,0 -050,01,119,Alabama,Sumter County,10,9,752,333,419,79,78,251,338,0,1,0,1,0,0,3,1,332,415,79,77,250,335,0,1,0,1,0,0,3,1,1,4,0,1,1,3,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,10,1046,458,588,90,103,363,480,1,1,2,0,0,0,2,4,455,586,89,103,362,479,1,1,2,0,0,0,1,3,3,2,1,0,1,1,0,0,0,0,0,0,1,1 -050,01,119,Alabama,Sumter County,10,11,1077,498,579,111,100,382,474,1,1,0,2,0,0,4,2,492,576,106,98,381,473,1,1,0,2,0,0,4,2,6,3,5,2,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,12,927,440,487,141,130,295,352,0,0,1,4,0,0,3,1,435,487,138,130,293,352,0,0,1,4,0,0,3,1,5,0,3,0,2,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,13,634,311,323,94,103,217,219,0,0,0,1,0,0,0,0,310,322,94,103,216,218,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,14,567,231,336,95,104,136,228,0,1,0,2,0,0,0,1,231,336,95,104,136,228,0,1,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,15,445,185,260,70,85,115,174,0,0,0,0,0,0,0,1,183,259,70,85,113,173,0,0,0,0,0,0,0,1,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,16,406,130,276,60,97,70,177,0,0,0,1,0,0,0,1,129,272,59,96,70,175,0,0,0,1,0,0,0,0,1,4,1,1,0,2,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,10,17,297,97,200,42,73,54,126,0,0,1,0,0,0,0,1,96,199,42,73,53,125,0,0,1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,18,349,92,257,37,86,55,170,0,0,0,0,0,0,0,1,92,257,37,86,55,170,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,99,13882,6262,7620,1616,1736,4612,5826,4,7,9,24,2,1,19,26,6210,7581,1584,1722,4595,5805,4,7,9,24,0,0,18,23,52,39,32,14,17,21,0,0,0,0,2,1,1,3 -050,01,119,Alabama,Sumter County,11,0,169,75,94,18,13,57,81,0,0,0,0,0,0,0,0,74,94,17,13,57,81,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,1,587,285,302,60,52,225,244,0,1,0,4,0,0,0,1,281,302,57,52,224,244,0,1,0,4,0,0,0,1,4,0,3,0,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,2,791,403,388,66,52,336,334,0,0,1,0,0,0,0,2,399,384,62,50,336,332,0,0,1,0,0,0,0,2,4,4,4,2,0,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,3,902,432,470,56,68,376,397,0,0,0,1,0,0,0,4,431,470,56,68,375,397,0,0,0,1,0,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,4,1325,681,644,134,139,541,499,0,1,1,0,0,0,5,5,680,641,133,138,541,497,0,1,1,0,0,0,5,5,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,5,1385,640,745,211,256,424,484,1,1,2,2,0,1,2,1,627,737,201,253,421,481,1,1,2,2,0,0,2,0,13,8,10,3,3,3,0,0,0,0,0,1,0,1 -050,01,119,Alabama,Sumter County,11,6,678,309,369,88,73,220,294,0,0,0,2,0,0,1,0,307,367,86,71,220,294,0,0,0,2,0,0,1,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,7,629,274,355,74,64,199,287,0,0,1,4,0,0,0,0,274,354,74,64,199,286,0,0,1,4,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,8,749,331,418,65,58,263,360,1,0,0,0,2,0,0,0,326,418,64,58,261,360,1,0,0,0,0,0,0,0,5,0,1,0,2,0,0,0,0,0,2,0,0,0 -050,01,119,Alabama,Sumter County,11,9,740,321,419,75,84,243,332,0,1,0,1,0,0,3,1,320,415,75,83,242,329,0,1,0,1,0,0,3,1,1,4,0,1,1,3,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,10,972,440,532,83,96,352,431,1,1,2,0,0,0,2,4,437,530,82,96,351,430,1,1,2,0,0,0,1,3,3,2,1,0,1,1,0,0,0,0,0,0,1,1 -050,01,119,Alabama,Sumter County,11,11,1076,474,602,106,117,362,480,1,1,0,2,0,0,5,2,468,599,101,115,361,479,1,1,0,2,0,0,5,2,6,3,5,2,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,12,962,473,489,146,120,323,364,0,0,1,4,0,0,3,1,468,489,143,120,321,364,0,0,1,4,0,0,3,1,5,0,3,0,2,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,13,710,337,373,103,115,234,257,0,0,0,1,0,0,0,0,336,372,103,115,233,256,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,14,568,236,332,92,104,144,224,0,1,0,2,0,0,0,1,236,332,92,104,144,224,0,1,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,15,472,198,274,83,100,115,173,0,0,0,0,0,0,0,1,196,273,83,100,113,172,0,0,0,0,0,0,0,1,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,16,392,136,256,52,104,84,151,0,0,0,1,0,0,0,0,134,253,50,103,84,149,0,0,0,1,0,0,0,0,2,3,2,1,0,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,17,314,116,198,49,81,66,116,0,0,1,0,0,0,0,1,115,197,49,81,65,115,0,0,1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,18,325,86,239,45,80,41,158,0,0,0,0,0,0,0,1,86,239,45,80,41,158,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,99,13746,6247,7499,1606,1776,4605,5666,4,7,9,24,2,1,21,25,6195,7466,1573,1764,4589,5648,4,7,9,24,0,0,20,23,52,33,33,12,16,18,0,0,0,0,2,1,1,2 -050,01,119,Alabama,Sumter County,12,0,150,75,75,21,10,54,65,0,0,0,0,0,0,0,0,74,75,20,10,54,65,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,1,611,295,316,55,56,240,254,0,1,0,4,0,0,0,1,291,316,52,56,239,254,0,1,0,4,0,0,0,1,4,0,3,0,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,2,748,376,372,59,48,316,322,0,0,1,0,0,0,0,2,372,368,55,46,316,320,0,0,1,0,0,0,0,2,4,4,4,2,0,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,3,901,432,469,60,69,372,395,0,0,0,1,0,0,0,4,431,469,60,69,371,395,0,0,0,1,0,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,4,1303,662,641,139,145,517,490,0,1,1,0,0,0,5,5,661,638,138,144,517,488,0,1,1,0,0,0,5,5,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,5,1420,658,762,204,257,449,499,1,1,2,2,0,2,2,1,645,754,194,254,446,496,1,1,2,2,0,1,2,0,13,8,10,3,3,3,0,0,0,0,0,1,0,1 -050,01,119,Alabama,Sumter County,12,6,730,346,384,102,75,243,307,0,0,0,2,0,0,1,0,344,382,100,73,243,307,0,0,0,2,0,0,1,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,7,663,286,377,68,72,217,301,0,0,1,4,0,0,0,0,286,376,68,72,217,300,0,0,1,4,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,8,718,320,398,67,57,250,341,1,0,0,0,2,0,0,0,315,398,66,57,248,341,1,0,0,0,0,0,0,0,5,0,1,0,2,0,0,0,0,0,2,0,0,0 -050,01,119,Alabama,Sumter County,12,9,733,313,420,74,79,236,338,0,1,0,1,0,0,3,1,312,416,74,78,235,335,0,1,0,1,0,0,3,1,1,4,0,1,1,3,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,10,932,413,519,80,98,328,416,1,1,2,0,0,0,2,4,410,517,79,98,327,415,1,1,2,0,0,0,1,3,3,2,1,0,1,1,0,0,0,0,0,0,1,1 -050,01,119,Alabama,Sumter County,12,11,1075,486,589,103,107,378,477,1,1,0,2,0,0,4,2,480,586,98,105,377,476,1,1,0,2,0,0,4,2,6,3,5,2,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,12,984,475,509,132,119,339,385,0,0,1,4,0,0,3,1,470,509,129,119,337,385,0,0,1,4,0,0,3,1,5,0,3,0,2,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,13,732,347,385,107,116,240,268,0,0,0,1,0,0,0,0,346,384,107,116,239,267,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,14,558,240,318,92,100,148,214,0,1,0,2,0,0,0,1,240,318,92,100,148,214,0,1,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,15,499,214,285,77,103,137,181,0,0,0,0,0,0,0,1,212,284,77,103,135,180,0,0,0,0,0,0,0,1,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,16,388,144,244,56,97,88,145,0,0,0,1,0,0,0,1,142,240,54,96,88,143,0,0,0,1,0,0,0,0,2,4,2,1,0,2,0,0,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,12,17,302,104,198,45,81,58,116,0,0,1,0,0,0,0,1,103,197,45,81,57,115,0,0,1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,18,316,75,241,38,81,37,159,0,0,0,0,0,0,0,1,75,241,38,81,37,159,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,99,13763,6261,7502,1579,1770,4647,5673,4,7,9,24,2,2,20,26,6209,7468,1546,1758,4631,5655,4,7,9,24,0,1,19,23,52,34,33,12,16,18,0,0,0,0,2,1,1,3 -050,01,119,Alabama,Sumter County,13,0,147,74,73,20,9,54,64,0,0,0,0,0,0,0,0,74,73,20,9,54,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,1,615,297,318,55,57,240,256,0,2,0,1,0,0,2,2,291,314,51,55,238,254,0,2,0,1,0,0,2,2,6,4,4,2,2,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,2,740,374,366,55,44,314,317,0,1,1,1,0,0,4,3,370,364,52,42,313,317,0,1,1,1,0,0,4,3,4,2,3,2,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,3,899,432,467,60,69,368,393,1,1,1,0,0,0,2,4,429,465,58,67,367,393,1,1,1,0,0,0,2,4,3,2,2,2,1,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,4,1298,658,640,135,144,513,485,2,2,3,0,0,0,5,9,657,637,134,142,513,484,2,2,3,0,0,0,5,9,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,5,1418,656,762,202,258,451,500,0,2,0,1,0,1,3,0,644,755,193,255,448,497,0,2,0,1,0,0,3,0,12,7,9,3,3,3,0,0,0,0,0,1,0,0 -050,01,119,Alabama,Sumter County,13,6,729,348,381,103,73,243,305,2,0,0,3,0,0,0,0,343,380,100,72,242,305,1,0,0,3,0,0,0,0,5,1,3,1,1,0,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,7,666,289,377,70,71,219,302,0,2,0,2,0,0,0,0,288,376,69,71,219,301,0,2,0,2,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,8,722,322,400,66,56,247,338,3,3,3,2,1,0,2,1,319,399,65,55,246,338,3,3,3,2,0,0,2,1,3,1,1,1,1,0,0,0,0,0,1,0,0,0 -050,01,119,Alabama,Sumter County,13,9,731,308,423,70,78,235,337,2,4,1,2,0,0,0,2,307,421,70,78,234,335,2,4,1,2,0,0,0,2,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,10,928,410,518,78,96,326,412,2,3,2,1,0,0,2,6,408,516,76,95,326,411,2,3,2,1,0,0,2,6,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,11,1071,485,586,102,106,379,476,2,2,0,0,0,0,2,2,478,582,96,103,378,475,2,2,0,0,0,0,2,2,7,4,6,3,1,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,12,981,472,509,131,118,338,383,1,2,2,5,0,0,0,1,467,509,128,118,336,383,1,2,2,5,0,0,0,1,5,0,3,0,2,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,13,744,353,391,108,117,243,271,1,2,0,1,0,0,1,0,353,391,108,117,243,271,1,2,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,14,560,242,318,93,101,147,213,1,1,0,2,0,0,1,1,242,317,93,100,147,213,1,1,0,2,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,15,497,214,283,78,104,134,179,1,0,0,0,0,0,1,0,214,283,78,104,134,179,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,16,384,144,240,55,95,88,145,0,0,0,0,0,0,1,0,142,238,53,93,88,145,0,0,0,0,0,0,1,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,17,296,101,195,45,80,56,114,0,0,0,0,0,0,0,1,101,195,45,80,56,114,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,18,318,75,243,38,81,37,161,0,0,0,0,0,0,0,1,75,243,38,81,37,161,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,99,13744,6254,7490,1564,1757,4632,5651,18,27,13,21,1,1,26,33,6202,7458,1527,1737,4619,5640,17,27,13,21,0,0,26,33,52,32,37,20,13,11,1,0,0,0,1,1,0,0 -050,01,121,Alabama,Talladega County,1,0,1048,547,501,333,310,199,179,1,1,1,1,0,0,13,10,540,493,328,303,197,178,1,1,1,1,0,0,13,10,7,8,5,7,2,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,1,1,4087,2039,2048,1270,1264,736,738,4,2,3,9,0,2,26,33,2013,2028,1253,1250,729,734,2,1,3,9,0,2,26,32,26,20,17,14,7,4,2,1,0,0,0,0,0,1 -050,01,121,Alabama,Talladega County,1,2,5557,2838,2719,1741,1644,1053,1042,6,3,9,4,2,0,27,26,2810,2704,1723,1636,1046,1036,4,3,9,4,1,0,27,25,28,15,18,8,7,6,2,0,0,0,1,0,0,1 -050,01,121,Alabama,Talladega County,1,3,5878,3011,2867,1831,1735,1151,1111,5,4,6,2,0,0,18,15,2996,2837,1818,1716,1149,1101,5,4,6,1,0,0,18,15,15,30,13,19,2,10,0,0,0,1,0,0,0,0 -050,01,121,Alabama,Talladega County,1,4,5874,2925,2949,1766,1716,1124,1201,6,10,3,4,3,0,23,18,2873,2926,1726,1699,1113,1195,5,10,3,4,3,0,23,18,52,23,40,17,11,6,1,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,1,5,5018,2535,2483,1471,1415,1034,1044,4,2,5,3,2,2,19,17,2473,2462,1413,1400,1030,1039,4,1,5,3,2,2,19,17,62,21,58,15,4,5,0,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,1,6,5385,2795,2590,1709,1625,1062,938,8,4,7,8,0,0,9,15,2738,2569,1656,1611,1060,933,7,4,6,8,0,0,9,13,57,21,53,14,2,5,1,0,1,0,0,0,0,2 -050,01,121,Alabama,Talladega County,1,7,5573,2836,2737,1829,1796,970,916,15,9,10,11,1,1,11,4,2771,2715,1777,1781,958,910,14,8,10,11,1,1,11,4,65,22,52,15,12,6,1,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,1,8,6033,3061,2972,2051,1990,988,949,4,7,7,9,0,1,11,16,2995,2947,1999,1971,974,944,4,7,7,9,0,1,11,15,66,25,52,19,14,5,0,0,0,0,0,0,0,1 -050,01,121,Alabama,Talladega County,1,9,6319,3173,3146,2169,2108,975,1008,8,11,6,11,1,1,14,7,3114,3131,2125,2100,960,1003,8,10,6,10,1,1,14,7,59,15,44,8,15,5,0,1,0,1,0,0,0,0 -050,01,121,Alabama,Talladega County,1,10,5940,2990,2950,2122,2016,835,893,14,8,5,8,0,0,14,25,2943,2939,2087,2007,825,891,12,8,5,8,0,0,14,25,47,11,35,9,10,2,2,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,1,11,5388,2693,2695,2011,1970,662,699,6,6,2,9,0,2,12,9,2672,2685,1991,1961,661,698,6,6,2,9,0,2,12,9,21,10,20,9,1,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,1,12,4309,2121,2188,1669,1685,428,484,6,4,4,5,0,0,14,10,2110,2178,1660,1679,426,480,6,4,4,5,0,0,14,10,11,10,9,6,2,4,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,1,13,3634,1715,1919,1345,1463,351,439,6,5,6,3,0,0,7,9,1707,1907,1339,1453,349,437,6,5,6,3,0,0,7,9,8,12,6,10,2,2,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,1,14,3200,1446,1754,1143,1326,290,408,1,5,1,1,0,1,11,13,1440,1747,1138,1319,289,408,1,5,1,1,0,1,11,13,6,7,5,7,1,0,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,1,15,2761,1137,1624,924,1288,207,328,3,1,0,1,0,1,3,5,1133,1617,921,1284,206,325,3,1,0,1,0,1,3,5,4,7,3,4,1,3,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,1,16,2153,800,1353,658,1066,136,276,3,3,1,2,0,1,2,5,792,1347,651,1062,135,275,3,2,1,2,0,1,2,5,8,6,7,4,1,1,0,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,1,17,1447,482,965,387,756,95,203,0,1,0,1,0,0,0,4,480,963,385,754,95,203,0,1,0,1,0,0,0,4,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,1,18,1130,335,795,251,621,82,169,1,1,1,0,0,0,0,4,333,793,249,620,82,168,1,1,1,0,0,0,0,4,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,1,99,80734,39479,41255,26680,27794,12378,13025,101,87,77,92,9,12,234,245,38933,40988,26239,27606,12284,12958,92,82,76,90,8,12,234,240,546,267,441,188,94,67,9,5,1,2,1,0,0,5 -050,01,121,Alabama,Talladega County,2,0,1054,549,505,335,312,201,181,1,1,1,1,0,0,11,10,542,497,330,305,199,180,1,1,1,1,0,0,11,10,7,8,5,7,2,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,2,1,4064,2032,2032,1263,1255,732,734,4,2,3,9,0,2,30,30,2006,2012,1246,1241,725,730,2,1,3,9,0,2,30,29,26,20,17,14,7,4,2,1,0,0,0,0,0,1 -050,01,121,Alabama,Talladega County,2,2,5512,2815,2697,1725,1630,1046,1035,6,3,9,4,2,0,27,25,2787,2682,1707,1622,1039,1029,4,3,9,4,1,0,27,24,28,15,18,8,7,6,2,0,0,0,1,0,0,1 -050,01,121,Alabama,Talladega County,2,3,5894,3011,2883,1828,1741,1160,1123,5,4,6,2,0,0,12,13,2996,2853,1815,1722,1158,1113,5,4,6,1,0,0,12,13,15,30,13,19,2,10,0,0,0,1,0,0,0,0 -050,01,121,Alabama,Talladega County,2,4,5877,2916,2961,1764,1724,1121,1206,6,10,3,4,3,0,19,17,2864,2938,1724,1707,1110,1200,5,10,3,4,3,0,19,17,52,23,40,17,11,6,1,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,2,5,5039,2541,2498,1475,1425,1035,1049,4,2,5,3,2,2,20,17,2479,2477,1417,1410,1031,1044,4,1,5,3,2,2,20,17,62,21,58,15,4,5,0,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,2,6,5336,2769,2567,1691,1607,1054,933,8,4,7,8,0,0,9,15,2712,2546,1638,1593,1052,928,7,4,6,8,0,0,9,13,57,21,53,14,2,5,1,0,1,0,0,0,0,2 -050,01,121,Alabama,Talladega County,2,7,5559,2829,2730,1823,1792,969,913,15,9,10,11,1,1,11,4,2764,2708,1771,1777,957,907,14,8,10,11,1,1,11,4,65,22,52,15,12,6,1,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,2,8,6012,3050,2962,2040,1978,989,951,4,7,7,9,0,1,10,16,2984,2937,1988,1959,975,946,4,7,7,9,0,1,10,15,66,25,52,19,14,5,0,0,0,0,0,0,0,1 -050,01,121,Alabama,Talladega County,2,9,6334,3181,3153,2170,2107,982,1016,8,11,6,11,1,1,14,7,3123,3138,2127,2099,967,1011,8,10,6,10,1,1,14,7,58,15,43,8,15,5,0,1,0,1,0,0,0,0 -050,01,121,Alabama,Talladega County,2,10,5969,3006,2963,2131,2022,840,899,14,8,5,8,0,0,16,26,2959,2952,2096,2013,830,897,12,8,5,8,0,0,16,26,47,11,35,9,10,2,2,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,2,11,5445,2724,2721,2029,1986,673,709,6,6,2,9,0,2,14,9,2703,2711,2009,1977,672,708,6,6,2,9,0,2,14,9,21,10,20,9,1,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,2,12,4334,2132,2202,1678,1695,430,488,6,4,4,5,0,0,14,10,2121,2192,1669,1689,428,484,6,4,4,5,0,0,14,10,11,10,9,6,2,4,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,2,13,3648,1722,1926,1349,1468,354,440,6,5,6,3,0,0,7,10,1714,1914,1343,1458,352,438,6,5,6,3,0,0,7,10,8,12,6,10,2,2,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,2,14,3192,1443,1749,1137,1318,291,411,1,5,1,1,0,1,13,13,1437,1742,1132,1311,290,411,1,5,1,1,0,1,13,13,6,7,5,7,1,0,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,2,15,2760,1140,1620,925,1283,209,329,3,1,0,1,0,1,3,5,1136,1613,922,1279,208,326,3,1,0,1,0,1,3,5,4,7,3,4,1,3,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,2,16,2159,802,1357,659,1067,137,279,3,3,1,2,0,1,2,5,794,1351,652,1063,136,278,3,2,1,2,0,1,2,5,8,6,7,4,1,1,0,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,2,17,1454,484,970,389,758,95,206,0,1,0,1,0,0,0,4,482,968,387,756,95,206,0,1,0,1,0,0,0,4,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,2,18,1130,336,794,251,620,83,169,1,1,1,0,0,0,0,4,334,792,249,619,83,168,1,1,1,0,0,0,0,4,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,2,99,80772,39482,41290,26662,27788,12401,13071,101,87,77,92,9,12,232,240,38937,41023,26222,27600,12307,13004,92,82,76,90,8,12,232,235,545,267,440,188,94,67,9,5,1,2,1,0,0,5 -050,01,121,Alabama,Talladega County,3,0,1091,537,554,334,348,192,193,1,1,1,1,0,0,9,11,533,545,331,340,191,192,1,1,1,1,0,0,9,11,4,9,3,8,1,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,3,1,4110,2097,2013,1275,1282,782,685,4,2,4,8,0,3,32,33,2068,1989,1254,1263,776,682,2,1,4,8,0,3,32,32,29,24,21,19,6,3,2,1,0,0,0,0,0,1 -050,01,121,Alabama,Talladega County,3,2,5352,2743,2609,1715,1577,981,992,5,3,12,8,2,0,28,29,2710,2586,1692,1560,974,987,3,3,12,8,1,0,28,28,33,23,23,17,7,5,2,0,0,0,1,0,0,1 -050,01,121,Alabama,Talladega County,3,3,5909,3002,2907,1806,1721,1169,1160,6,6,7,3,0,0,14,17,2990,2883,1796,1707,1167,1151,6,6,7,2,0,0,14,17,12,24,10,14,2,9,0,0,0,1,0,0,0,0 -050,01,121,Alabama,Talladega County,3,4,5826,2900,2926,1739,1674,1126,1221,6,11,4,5,2,0,23,15,2860,2897,1709,1651,1117,1215,5,11,4,5,2,0,23,15,40,29,30,23,9,6,1,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,3,5,5080,2578,2502,1493,1438,1056,1041,4,2,5,4,2,1,18,16,2513,2479,1433,1419,1051,1038,4,1,5,4,2,1,18,16,65,23,60,19,5,3,0,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,3,6,5175,2651,2524,1611,1550,1016,946,7,4,8,9,0,0,9,15,2586,2492,1550,1529,1014,937,6,4,7,9,0,0,9,13,65,32,61,21,2,9,1,0,1,0,0,0,0,2 -050,01,121,Alabama,Talladega County,3,7,5548,2832,2716,1816,1786,976,901,15,8,12,16,1,1,12,4,2757,2693,1753,1770,965,895,14,7,12,16,1,1,12,4,75,23,63,16,11,6,1,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,3,8,5952,3016,2936,2022,1961,968,944,4,5,13,8,0,2,9,16,2945,2904,1965,1935,954,939,4,5,13,8,0,2,9,15,71,32,57,26,14,5,0,0,0,0,0,0,0,1 -050,01,121,Alabama,Talladega County,3,9,6229,3144,3085,2128,2032,987,1024,6,8,8,13,1,1,14,7,3075,3070,2075,2023,971,1020,6,7,8,12,1,1,14,7,69,15,53,9,16,4,0,1,0,1,0,0,0,0 -050,01,121,Alabama,Talladega County,3,10,6102,3031,3071,2130,2073,866,952,12,8,6,6,0,0,17,32,2992,3060,2101,2063,857,951,11,8,6,6,0,0,17,32,39,11,29,10,9,1,1,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,3,11,5698,2877,2821,2111,2048,736,745,9,6,5,9,0,1,16,12,2851,2809,2086,2037,735,744,9,6,5,9,0,1,16,12,26,12,25,11,1,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,3,12,4424,2159,2265,1693,1743,441,500,6,7,3,6,0,0,16,9,2147,2255,1683,1737,439,496,6,7,3,6,0,0,16,9,12,10,10,6,2,4,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,3,13,3686,1756,1930,1359,1450,379,460,6,5,6,5,0,0,6,10,1748,1918,1353,1441,377,457,6,5,6,5,0,0,6,10,8,12,6,9,2,3,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,3,14,3160,1443,1717,1136,1290,289,411,3,4,1,1,0,0,14,11,1436,1711,1130,1284,288,411,3,4,1,1,0,0,14,11,7,6,6,6,1,0,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,3,15,2812,1159,1653,947,1321,207,325,2,1,0,1,0,1,3,4,1155,1645,944,1316,206,322,2,1,0,1,0,1,3,4,4,8,3,5,1,3,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,3,16,2180,832,1348,681,1073,145,264,3,3,1,1,0,2,2,5,824,1342,674,1069,144,263,3,2,1,1,0,2,2,5,8,6,7,4,1,1,0,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,3,17,1460,479,981,402,758,77,219,0,0,0,1,0,0,0,3,477,979,400,756,77,219,0,0,0,1,0,0,0,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,3,18,1145,322,823,237,637,83,182,1,1,1,0,0,0,0,3,320,821,235,636,83,181,1,1,1,0,0,0,0,3,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,3,99,80939,39558,41381,26635,27762,12476,13165,100,85,97,105,8,12,242,252,38987,41078,26164,27536,12386,13100,92,80,96,103,7,12,242,247,571,303,471,226,90,65,8,5,1,2,1,0,0,5 -050,01,121,Alabama,Talladega County,4,0,1106,549,557,349,367,184,172,1,1,1,1,0,0,14,16,541,541,342,352,183,171,1,1,1,1,0,0,14,16,8,16,7,15,1,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,4,1,4170,2109,2061,1272,1315,783,698,3,4,6,8,0,1,45,35,2081,2022,1253,1283,776,694,2,3,6,8,0,1,44,33,28,39,19,32,7,4,1,1,0,0,0,0,1,2 -050,01,121,Alabama,Talladega County,4,2,5229,2659,2570,1680,1565,930,958,6,3,9,10,1,0,33,34,2623,2541,1654,1542,923,953,4,3,9,10,0,0,33,33,36,29,26,23,7,5,2,0,0,0,1,0,0,1 -050,01,121,Alabama,Talladega County,4,3,5918,2997,2921,1794,1729,1172,1163,7,5,6,3,0,0,18,21,2982,2893,1781,1711,1170,1154,7,5,6,2,0,0,18,21,15,28,13,18,2,9,0,0,0,1,0,0,0,0 -050,01,121,Alabama,Talladega County,4,4,5785,2898,2887,1747,1621,1115,1229,6,12,5,5,2,0,23,20,2855,2863,1714,1603,1106,1223,5,12,5,5,2,0,23,20,43,24,33,18,9,6,1,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,4,5,5260,2670,2590,1540,1490,1094,1075,5,3,6,4,2,1,23,17,2592,2563,1469,1470,1087,1070,5,1,6,4,2,1,23,17,78,27,71,20,7,5,0,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,4,6,4915,2534,2381,1564,1476,945,879,7,4,8,7,0,0,10,15,2465,2351,1503,1455,940,873,5,4,7,7,0,0,10,12,69,30,61,21,5,6,2,0,1,0,0,0,0,3 -050,01,121,Alabama,Talladega County,4,7,5578,2815,2763,1806,1816,966,920,14,9,15,11,1,1,13,6,2744,2739,1746,1798,957,915,12,8,15,11,1,1,13,6,71,24,60,18,9,5,2,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,4,8,5820,2931,2889,1969,1919,934,940,6,6,10,7,0,1,12,16,2846,2856,1896,1893,923,935,6,5,10,7,0,1,11,15,85,33,73,26,11,5,0,1,0,0,0,0,1,1 -050,01,121,Alabama,Talladega County,4,9,6239,3117,3122,2107,2050,977,1038,7,10,8,16,1,0,17,8,3047,3102,2051,2039,963,1031,7,9,8,15,1,0,17,8,70,20,56,11,14,7,0,1,0,1,0,0,0,0 -050,01,121,Alabama,Talladega County,4,10,6200,3119,3081,2179,2055,899,983,14,10,10,6,0,0,17,27,3072,3069,2144,2044,889,982,12,10,10,6,0,0,17,27,47,12,35,11,10,1,2,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,4,11,5624,2844,2780,2077,1970,741,779,8,8,4,10,0,2,14,11,2818,2768,2052,1959,740,778,8,8,4,10,0,2,14,11,26,12,25,11,1,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,4,12,4861,2376,2485,1866,1913,487,551,6,6,5,6,0,0,12,9,2365,2476,1858,1907,484,548,6,6,5,6,0,0,12,9,11,9,8,6,3,3,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,4,13,3748,1799,1949,1384,1470,393,456,5,5,7,6,0,0,10,12,1788,1938,1375,1461,391,454,5,5,7,6,0,0,10,12,11,11,9,9,2,2,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,4,14,3173,1425,1748,1119,1326,291,400,2,4,3,3,0,1,10,14,1418,1742,1113,1320,290,400,2,4,3,3,0,1,10,14,7,6,6,6,1,0,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,4,15,2781,1181,1600,960,1253,215,341,2,1,0,1,0,0,4,4,1176,1592,955,1248,215,338,2,1,0,1,0,0,4,4,5,8,5,5,0,3,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,4,16,2134,800,1334,666,1060,127,260,4,3,1,2,0,3,2,6,792,1329,659,1057,126,259,4,2,1,2,0,3,2,6,8,5,7,3,1,1,0,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,4,17,1417,479,938,405,723,74,211,0,1,0,0,0,0,0,3,477,936,403,721,74,211,0,1,0,0,0,0,0,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,4,18,1137,310,827,226,657,82,166,1,1,1,0,0,0,0,3,308,824,224,655,82,165,1,1,1,0,0,0,0,3,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,4,99,81095,39612,41483,26710,27775,12409,13219,104,96,105,106,7,10,277,277,38990,41145,26192,27518,12319,13154,94,89,104,104,6,10,275,270,622,338,518,257,90,65,10,7,1,2,1,0,2,7 -050,01,121,Alabama,Talladega County,5,0,986,498,488,331,316,153,157,1,1,1,1,0,0,12,13,485,476,319,305,152,156,1,1,1,1,0,0,12,13,13,12,12,11,1,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,5,1,4198,2141,2057,1297,1292,785,708,3,4,5,11,0,1,51,41,2105,2016,1273,1257,776,704,2,4,5,11,0,1,49,39,36,41,24,35,9,4,1,0,0,0,0,0,2,2 -050,01,121,Alabama,Talladega County,5,2,5142,2600,2542,1630,1543,914,949,6,3,8,11,2,0,40,36,2562,2512,1603,1519,907,944,4,3,8,11,1,0,39,35,38,30,27,24,7,5,2,0,0,0,1,0,1,1 -050,01,121,Alabama,Talladega County,5,3,5894,2935,2959,1755,1696,1143,1223,7,5,6,6,0,0,24,29,2911,2929,1737,1675,1138,1215,7,5,6,5,0,0,23,29,24,30,18,21,5,8,0,0,0,1,0,0,1,0 -050,01,121,Alabama,Talladega County,5,4,5684,2934,2750,1761,1583,1132,1128,7,13,6,5,3,0,25,21,2894,2729,1730,1566,1124,1124,6,13,6,5,3,0,25,21,40,21,31,17,8,4,1,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,5,5,5222,2637,2585,1507,1458,1092,1098,8,4,6,6,2,1,22,18,2557,2555,1439,1437,1083,1091,5,2,6,6,2,1,22,18,80,30,68,21,9,7,3,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,5,6,4772,2429,2343,1475,1448,928,868,7,3,10,7,0,0,9,17,2363,2307,1416,1421,924,862,5,3,9,7,0,0,9,14,66,36,59,27,4,6,2,0,1,0,0,0,0,3 -050,01,121,Alabama,Talladega County,5,7,5510,2842,2668,1819,1741,980,892,13,11,14,15,1,1,15,8,2761,2637,1753,1719,970,887,10,9,14,13,1,1,13,8,81,31,66,22,10,5,3,2,0,2,0,0,2,0 -050,01,121,Alabama,Talladega County,5,8,5766,2877,2889,1931,1882,912,968,8,7,13,11,0,0,13,21,2794,2858,1860,1858,901,963,8,6,13,11,0,0,12,20,83,31,71,24,11,5,0,1,0,0,0,0,1,1 -050,01,121,Alabama,Talladega County,5,9,6201,3130,3071,2121,2019,975,1020,9,9,8,13,1,1,16,9,3061,3053,2065,2008,962,1015,9,8,8,13,1,1,16,8,69,18,56,11,13,5,0,1,0,0,0,0,0,1 -050,01,121,Alabama,Talladega County,5,10,6217,3094,3123,2141,2076,915,998,11,9,10,12,0,0,17,28,3037,3108,2094,2065,906,995,10,9,10,12,0,0,17,27,57,15,47,11,9,3,1,0,0,0,0,0,0,1 -050,01,121,Alabama,Talladega County,5,11,5680,2880,2800,2096,1955,753,804,8,11,5,10,0,2,18,18,2851,2788,2069,1944,751,803,8,11,5,10,0,2,18,18,29,12,27,11,2,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,5,12,5024,2461,2563,1889,1935,545,604,6,6,5,7,0,0,16,11,2445,2554,1876,1929,542,601,6,6,5,7,0,0,16,11,16,9,13,6,3,3,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,5,13,3920,1910,2010,1482,1535,409,449,6,5,6,8,0,0,7,13,1898,2000,1472,1527,407,447,6,5,6,8,0,0,7,13,12,10,10,8,2,2,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,5,14,3233,1468,1765,1142,1348,308,398,3,4,3,3,0,0,12,12,1462,1758,1137,1342,307,397,3,4,3,3,0,0,12,12,6,7,5,6,1,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,5,15,2707,1175,1532,957,1197,212,328,2,1,0,1,0,1,4,4,1171,1523,953,1191,212,325,2,1,0,1,0,1,4,4,4,9,4,6,0,3,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,5,16,2180,826,1354,682,1080,138,262,3,3,1,1,0,2,2,6,818,1348,675,1076,137,261,3,2,1,1,0,2,2,6,8,6,7,4,1,1,0,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,5,17,1455,491,964,419,745,70,212,0,2,0,1,0,0,2,4,488,961,416,743,70,212,0,2,0,1,0,0,2,3,3,3,3,2,0,0,0,0,0,0,0,0,0,1 -050,01,121,Alabama,Talladega County,5,18,1109,300,809,232,651,64,155,1,1,1,0,0,0,2,2,298,806,230,649,64,154,1,1,1,0,0,0,2,2,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,5,99,80900,39628,41272,26667,27500,12428,13221,109,102,108,129,9,9,307,311,38961,40918,26117,27231,12333,13156,96,95,107,126,8,9,300,301,667,354,550,269,95,65,13,7,1,3,1,0,7,10 -050,01,121,Alabama,Talladega County,6,0,988,503,485,347,318,142,152,1,1,1,1,0,0,12,13,489,464,334,298,141,151,1,1,1,1,0,0,12,13,14,21,13,20,1,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,6,1,4235,2120,2115,1287,1333,761,720,3,2,8,11,0,0,61,49,2080,2072,1260,1296,751,716,2,2,7,11,0,0,60,47,40,43,27,37,10,4,1,0,1,0,0,0,1,2 -050,01,121,Alabama,Talladega County,6,2,5178,2619,2559,1633,1556,935,945,6,3,6,15,1,0,38,40,2580,2527,1605,1530,928,940,4,3,6,15,0,0,37,39,39,32,28,26,7,5,2,0,0,0,1,0,1,1 -050,01,121,Alabama,Talladega County,6,3,5752,2844,2908,1671,1652,1126,1213,8,5,7,7,0,0,32,31,2820,2878,1651,1631,1123,1205,8,5,7,6,0,0,31,31,24,30,20,21,3,8,0,0,0,1,0,0,1,0 -050,01,121,Alabama,Talladega County,6,4,5795,2996,2799,1804,1627,1148,1131,5,14,10,5,3,0,26,22,2962,2775,1779,1608,1140,1127,4,14,10,5,3,0,26,21,34,24,25,19,8,4,1,0,0,0,0,0,0,1 -050,01,121,Alabama,Talladega County,6,5,5068,2501,2567,1462,1453,1000,1086,7,4,6,5,2,1,24,18,2421,2536,1394,1431,991,1080,5,2,6,5,2,1,23,17,80,31,68,22,9,6,2,2,0,0,0,0,1,1 -050,01,121,Alabama,Talladega County,6,6,4878,2466,2412,1476,1491,959,891,6,3,10,10,0,0,15,17,2391,2373,1409,1461,955,885,4,3,9,10,0,0,14,14,75,39,67,30,4,6,2,0,1,0,0,0,1,3 -050,01,121,Alabama,Talladega County,6,7,5387,2798,2589,1797,1650,958,899,13,12,13,17,1,1,16,10,2726,2559,1739,1628,949,895,10,10,13,15,1,1,14,10,72,30,58,22,9,4,3,2,0,2,0,0,2,0 -050,01,121,Alabama,Talladega County,6,8,5629,2817,2812,1883,1865,896,907,9,8,16,10,1,1,12,21,2744,2780,1822,1840,886,902,8,7,16,10,1,1,11,20,73,32,61,25,10,5,1,1,0,0,0,0,1,1 -050,01,121,Alabama,Talladega County,6,9,6194,3120,3074,2113,2026,967,1014,10,7,12,16,1,1,17,10,3048,3044,2055,2007,953,1006,10,6,12,15,1,1,17,9,72,30,58,19,14,8,0,1,0,1,0,0,0,1 -050,01,121,Alabama,Talladega County,6,10,6238,3031,3207,2081,2108,915,1050,9,10,9,10,0,0,17,29,2977,3194,2036,2099,907,1048,8,10,9,10,0,0,17,27,54,13,45,9,8,2,1,0,0,0,0,0,0,2 -050,01,121,Alabama,Talladega County,6,11,5749,2916,2833,2083,1969,802,821,8,11,7,10,0,3,16,19,2891,2815,2062,1952,799,820,8,11,7,10,0,3,15,19,25,18,21,17,3,1,0,0,0,0,0,0,1,0 -050,01,121,Alabama,Talladega County,6,12,5204,2570,2634,1965,1946,576,661,8,7,6,7,0,0,15,13,2547,2626,1947,1941,571,658,8,7,6,7,0,0,15,13,23,8,18,5,5,3,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,6,13,4146,2027,2119,1581,1620,423,468,5,6,6,9,0,0,12,16,2015,2109,1571,1612,421,466,5,6,6,9,0,0,12,16,12,10,10,8,2,2,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,6,14,3261,1508,1753,1176,1351,316,383,3,3,3,3,0,0,10,13,1501,1747,1170,1346,315,382,3,3,3,3,0,0,10,13,7,6,6,5,1,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,6,15,2650,1126,1524,914,1190,206,326,2,1,0,2,0,0,4,5,1121,1514,910,1184,205,322,2,1,0,2,0,0,4,5,5,10,4,6,1,4,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,6,16,2238,889,1349,729,1065,155,271,3,3,1,1,0,3,1,6,881,1344,722,1062,154,270,3,2,1,1,0,3,1,6,8,5,7,3,1,1,0,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,6,17,1445,498,947,427,754,69,188,2,1,0,1,0,0,0,3,496,945,425,752,69,188,2,1,0,1,0,0,0,3,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,6,18,1104,316,788,248,623,64,161,1,1,1,0,0,0,2,3,314,785,246,621,64,160,1,1,1,0,0,0,2,3,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,6,99,81139,39665,41474,26677,27597,12418,13287,109,102,122,140,9,10,330,338,39004,41087,26137,27299,12322,13221,96,95,120,136,8,10,321,326,661,387,540,298,96,66,13,7,2,4,1,0,9,12 -050,01,121,Alabama,Talladega County,7,0,994,491,503,332,318,143,168,1,0,1,0,0,0,14,17,477,484,319,300,142,167,1,0,1,0,0,0,14,17,14,19,13,18,1,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,7,1,4175,2106,2069,1310,1330,723,675,2,2,5,9,0,1,66,52,2046,2015,1263,1285,715,671,1,2,5,8,0,1,62,48,60,54,47,45,8,4,1,0,0,1,0,0,4,4 -050,01,121,Alabama,Talladega County,7,2,5260,2704,2556,1701,1561,942,928,3,2,16,17,0,0,42,48,2659,2518,1665,1529,936,924,3,2,15,17,0,0,40,46,45,38,36,32,6,4,0,0,1,0,0,0,2,2 -050,01,121,Alabama,Talladega County,7,3,5634,2817,2817,1672,1618,1087,1149,11,7,10,7,0,0,37,36,2787,2786,1650,1597,1084,1142,9,6,10,6,0,0,34,35,30,31,22,21,3,7,2,1,0,1,0,0,3,1 -050,01,121,Alabama,Talladega County,7,4,5866,3032,2834,1797,1646,1191,1144,6,13,10,4,2,0,26,27,2998,2805,1772,1625,1186,1138,4,13,10,4,2,0,24,25,34,29,25,21,5,6,2,0,0,0,0,0,2,2 -050,01,121,Alabama,Talladega County,7,5,5046,2483,2563,1497,1425,946,1107,10,4,7,6,0,1,23,20,2384,2530,1413,1403,939,1099,6,2,6,6,0,1,20,19,99,33,84,22,7,8,4,2,1,0,0,0,3,1 -050,01,121,Alabama,Talladega County,7,6,4934,2446,2488,1490,1570,918,887,11,1,13,10,0,0,14,20,2360,2440,1422,1535,912,881,6,1,11,9,0,0,9,14,86,48,68,35,6,6,5,0,2,1,0,0,5,6 -050,01,121,Alabama,Talladega County,7,7,5363,2791,2572,1748,1608,992,923,15,11,14,17,0,0,22,13,2689,2537,1668,1579,981,921,8,10,14,15,0,0,18,12,102,35,80,29,11,2,7,1,0,2,0,0,4,1 -050,01,121,Alabama,Talladega County,7,8,5567,2830,2737,1883,1823,893,877,15,9,18,9,0,1,21,18,2748,2712,1817,1806,883,873,13,7,17,9,0,1,18,16,82,25,66,17,10,4,2,2,1,0,0,0,3,2 -050,01,121,Alabama,Talladega County,7,9,6126,3091,3035,2118,1993,928,1008,14,8,12,13,1,0,18,13,3018,3003,2058,1968,917,1004,12,8,12,13,1,0,18,10,73,32,60,25,11,4,2,0,0,0,0,0,0,3 -050,01,121,Alabama,Talladega County,7,10,6220,3026,3194,2066,2118,915,1027,13,12,11,8,0,0,21,29,2972,3175,2021,2104,909,1025,10,11,11,8,0,0,21,27,54,19,45,14,6,2,3,1,0,0,0,0,0,2 -050,01,121,Alabama,Talladega County,7,11,5965,3024,2941,2147,1994,839,900,12,13,11,11,0,2,15,21,2980,2926,2110,1983,835,898,9,12,11,11,0,2,15,20,44,15,37,11,4,2,3,1,0,0,0,0,0,1 -050,01,121,Alabama,Talladega County,7,12,5419,2611,2808,1952,2066,628,710,9,9,5,10,0,0,17,13,2589,2797,1937,2058,622,707,8,9,5,10,0,0,17,13,22,11,15,8,6,3,1,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,7,13,4193,2041,2152,1602,1647,416,475,5,4,6,8,0,0,12,18,2028,2143,1593,1640,412,473,5,4,6,8,0,0,12,18,13,9,9,7,4,2,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,7,14,3327,1577,1750,1220,1337,342,395,4,3,3,3,0,0,8,12,1570,1744,1213,1332,342,394,4,3,3,3,0,0,8,12,7,6,7,5,0,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,7,15,2712,1179,1533,945,1184,226,336,3,1,0,4,0,0,5,8,1174,1520,942,1177,225,331,2,1,0,3,0,0,5,8,5,13,3,7,1,5,1,0,0,1,0,0,0,0 -050,01,121,Alabama,Talladega County,7,16,2201,863,1338,714,1051,144,274,2,1,1,2,0,2,2,8,856,1334,707,1048,144,274,2,1,1,1,0,2,2,8,7,4,7,3,0,0,0,0,0,1,0,0,0,0 -050,01,121,Alabama,Talladega County,7,17,1408,461,947,394,754,65,188,1,0,0,0,0,0,1,5,459,945,392,753,65,188,1,0,0,0,0,0,1,4,2,2,2,1,0,0,0,0,0,0,0,0,0,1 -050,01,121,Alabama,Talladega County,7,18,1136,342,794,279,614,60,177,0,0,1,0,0,0,2,3,339,790,277,611,60,176,0,0,1,0,0,0,1,3,3,4,2,3,0,1,0,0,0,0,0,0,1,0 -050,01,121,Alabama,Talladega County,7,99,81546,39915,41631,26867,27657,12398,13348,137,100,144,138,3,7,366,381,39133,41204,26239,27333,12309,13286,104,92,139,131,3,7,339,355,782,427,628,324,89,62,33,8,5,7,0,0,27,26 -050,01,121,Alabama,Talladega County,8,0,1005,471,534,328,343,126,175,1,0,1,0,0,0,15,16,452,513,310,323,125,174,1,0,1,0,0,0,15,16,19,21,18,20,1,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,8,1,4094,2051,2043,1302,1313,678,661,5,5,7,6,0,1,59,57,1986,1986,1249,1269,673,656,3,2,6,5,0,1,55,53,65,57,53,44,5,5,2,3,1,1,0,0,4,4 -050,01,121,Alabama,Talladega County,8,2,5306,2682,2624,1655,1623,958,943,6,2,12,10,0,0,51,46,2625,2571,1610,1577,950,939,5,2,11,10,0,0,49,43,57,53,45,46,8,4,1,0,1,0,0,0,2,3 -050,01,121,Alabama,Talladega County,8,3,5684,2814,2870,1697,1655,1054,1160,11,5,9,7,0,0,43,43,2779,2826,1671,1620,1051,1154,9,4,9,7,0,0,39,41,35,44,26,35,3,6,2,1,0,0,0,0,4,2 -050,01,121,Alabama,Talladega County,8,4,5914,3047,2867,1815,1675,1186,1145,4,13,11,5,1,0,30,29,3010,2836,1785,1654,1182,1138,3,13,11,5,1,0,28,26,37,31,30,21,4,7,1,0,0,0,0,0,2,3 -050,01,121,Alabama,Talladega County,8,5,4944,2406,2538,1442,1390,920,1113,13,5,7,7,0,0,24,23,2312,2501,1367,1365,912,1106,7,2,6,7,0,0,20,21,94,37,75,25,8,7,6,3,1,0,0,0,4,2 -050,01,121,Alabama,Talladega County,8,6,5006,2486,2520,1500,1588,944,901,12,1,14,8,0,0,16,22,2388,2470,1422,1551,937,894,7,1,12,8,0,0,10,16,98,50,78,37,7,7,5,0,2,0,0,0,6,6 -050,01,121,Alabama,Talladega County,8,7,5184,2709,2475,1701,1543,955,891,16,9,13,17,0,0,24,15,2585,2432,1601,1506,943,889,8,8,13,15,0,0,20,14,124,43,100,37,12,2,8,1,0,2,0,0,4,1 -050,01,121,Alabama,Talladega County,8,8,5678,2854,2824,1876,1857,923,922,13,13,16,7,0,2,26,23,2764,2793,1801,1833,915,919,11,11,15,7,0,2,22,21,90,31,75,24,8,3,2,2,1,0,0,0,4,2 -050,01,121,Alabama,Talladega County,8,9,6031,3054,2977,2105,1953,907,981,16,9,7,19,1,0,18,15,2980,2941,2045,1927,896,974,13,9,7,19,1,0,18,12,74,36,60,26,11,7,3,0,0,0,0,0,0,3 -050,01,121,Alabama,Talladega County,8,10,6166,3038,3128,2066,2062,928,1020,11,11,13,12,0,0,20,23,2968,3105,2007,2043,920,1018,8,10,13,12,0,0,20,22,70,23,59,19,8,2,3,1,0,0,0,0,0,1 -050,01,121,Alabama,Talladega County,8,11,6106,3031,3075,2130,2057,861,959,14,16,12,13,0,1,14,29,2995,3059,2103,2046,855,957,12,15,12,13,0,1,13,27,36,16,27,11,6,2,2,1,0,0,0,0,1,2 -050,01,121,Alabama,Talladega County,8,12,5623,2740,2883,2004,2110,709,744,7,6,6,10,0,0,14,13,2709,2870,1980,2101,703,740,6,6,6,10,0,0,14,13,31,13,24,9,6,4,1,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,8,13,4322,2087,2235,1628,1696,433,507,5,4,6,8,0,0,15,20,2073,2226,1617,1689,430,505,5,4,6,8,0,0,15,20,14,9,11,7,3,2,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,8,14,3389,1604,1785,1235,1351,350,417,5,4,4,3,0,0,10,10,1595,1778,1226,1346,350,415,5,4,4,3,0,0,10,10,9,7,9,5,0,2,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,8,15,2708,1181,1527,940,1151,231,362,4,1,2,4,0,0,4,9,1177,1514,938,1144,231,357,3,1,2,3,0,0,3,9,4,13,2,7,0,5,1,0,0,1,0,0,1,0 -050,01,121,Alabama,Talladega County,8,16,2248,902,1346,749,1067,147,267,2,1,1,2,0,0,3,9,895,1341,743,1065,146,266,2,1,1,1,0,0,3,8,7,5,6,2,1,1,0,0,0,1,0,0,0,1 -050,01,121,Alabama,Talladega County,8,17,1458,528,930,436,746,87,179,2,1,0,0,0,0,3,4,524,926,432,745,87,178,2,1,0,0,0,0,3,2,4,4,4,1,0,1,0,0,0,0,0,0,0,2 -050,01,121,Alabama,Talladega County,8,18,1125,318,807,267,610,49,194,0,0,0,1,0,0,2,2,315,797,265,601,49,193,0,0,0,1,0,0,1,2,3,10,2,9,0,1,0,0,0,0,0,0,1,0 -050,01,121,Alabama,Talladega County,8,99,81991,40003,41988,26876,27790,12446,13541,147,106,141,139,2,4,391,408,39132,41485,26172,27405,12355,13472,110,94,135,134,2,4,358,376,871,503,704,385,91,69,37,12,6,5,0,0,33,32 -050,01,121,Alabama,Talladega County,9,0,1016,494,522,340,327,134,175,1,0,1,0,0,0,18,20,468,490,314,296,134,174,1,0,1,0,0,0,18,20,26,32,26,31,0,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,9,1,4042,1997,2045,1262,1331,650,644,5,5,10,6,0,0,70,59,1930,1981,1211,1278,641,641,3,2,9,5,0,0,66,55,67,64,51,53,9,3,2,3,1,1,0,0,4,4 -050,01,121,Alabama,Talladega County,9,2,5321,2699,2622,1669,1600,954,947,4,2,10,22,0,0,62,51,2639,2570,1624,1554,946,944,3,2,9,22,0,0,57,48,60,52,45,46,8,3,1,0,1,0,0,0,5,3 -050,01,121,Alabama,Talladega County,9,3,5618,2790,2828,1683,1635,1045,1132,12,6,6,7,0,0,44,48,2756,2796,1659,1610,1041,1128,10,5,6,7,0,0,40,46,34,32,24,25,4,4,2,1,0,0,0,0,4,2 -050,01,121,Alabama,Talladega County,9,4,5999,3089,2910,1824,1687,1214,1177,6,14,10,4,1,0,34,28,3046,2877,1787,1664,1211,1170,5,14,10,4,1,0,32,25,43,33,37,23,3,7,1,0,0,0,0,0,2,3 -050,01,121,Alabama,Talladega County,9,5,4965,2380,2585,1424,1442,908,1104,13,5,7,10,0,1,28,23,2277,2540,1341,1410,900,1096,7,2,6,10,0,1,23,21,103,45,83,32,8,8,6,3,1,0,0,0,5,2 -050,01,121,Alabama,Talladega County,9,6,5113,2521,2592,1567,1620,916,938,11,1,12,9,0,0,15,24,2408,2535,1476,1577,907,931,6,1,10,8,0,0,9,18,113,57,91,43,9,7,5,0,2,1,0,0,6,6 -050,01,121,Alabama,Talladega County,9,7,5020,2620,2400,1620,1485,950,867,16,11,11,21,0,0,23,16,2482,2366,1507,1457,938,865,8,10,10,19,0,0,19,15,138,34,113,28,12,2,8,1,1,2,0,0,4,1 -050,01,121,Alabama,Talladega County,9,8,5743,2854,2889,1865,1878,925,960,15,13,20,12,1,1,28,25,2760,2854,1789,1850,915,957,12,11,19,12,1,1,24,23,94,35,76,28,10,3,3,2,1,0,0,0,4,2 -050,01,121,Alabama,Talladega County,9,9,5825,2977,2848,2027,1875,909,931,14,7,7,20,1,0,19,15,2903,2821,1965,1856,900,926,11,7,7,20,1,0,19,12,74,27,62,19,9,5,3,0,0,0,0,0,0,3 -050,01,121,Alabama,Talladega County,9,10,6112,2998,3114,2036,2034,915,1023,11,12,14,16,0,0,22,29,2928,3089,1976,2015,908,1020,8,11,14,16,0,0,22,27,70,25,60,19,7,3,3,1,0,0,0,0,0,2 -050,01,121,Alabama,Talladega County,9,11,6273,3121,3152,2166,2106,918,988,12,20,9,11,0,1,16,26,3086,3127,2140,2087,912,986,10,18,9,11,0,1,15,24,35,25,26,19,6,2,2,2,0,0,0,0,1,2 -050,01,121,Alabama,Talladega County,9,12,5514,2713,2801,1971,1971,707,796,8,7,6,11,0,0,21,16,2683,2787,1948,1961,701,792,7,7,6,11,0,0,21,16,30,14,23,10,6,4,1,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,9,13,4689,2239,2450,1740,1858,472,560,4,5,7,9,0,0,16,18,2223,2442,1729,1852,467,558,4,5,7,9,0,0,16,18,16,8,11,6,5,2,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,9,14,3437,1631,1806,1245,1367,363,420,5,4,6,3,0,0,12,12,1622,1797,1236,1359,363,419,5,4,6,3,0,0,12,12,9,9,9,8,0,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,9,15,2760,1193,1567,933,1186,248,366,5,1,3,4,0,0,4,10,1188,1552,931,1177,248,361,4,1,2,3,0,0,3,10,5,15,2,9,0,5,1,0,1,1,0,0,1,0 -050,01,121,Alabama,Talladega County,9,16,2202,918,1284,767,1032,147,240,0,1,1,2,0,0,3,9,912,1280,761,1031,147,239,0,1,1,1,0,0,3,8,6,4,6,1,0,1,0,0,0,1,0,0,0,1 -050,01,121,Alabama,Talladega County,9,17,1457,519,938,438,744,76,191,2,1,0,0,0,0,3,2,515,936,434,743,76,190,2,1,0,0,0,0,3,2,4,2,4,1,0,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,9,18,1120,317,803,269,614,45,186,0,0,0,1,0,0,3,2,314,797,267,609,45,185,0,0,0,1,0,0,2,2,3,6,2,5,0,1,0,0,0,0,0,0,1,0 -050,01,121,Alabama,Talladega County,9,99,82226,40070,42156,26846,27792,12496,13645,144,115,140,168,3,3,441,433,39140,41637,26095,27386,12400,13582,106,102,132,162,3,3,404,402,930,519,751,406,96,63,38,13,8,6,0,0,37,31 -050,01,121,Alabama,Talladega County,10,0,1083,537,546,361,331,155,188,1,0,1,0,0,0,19,27,512,516,336,303,155,187,1,0,1,0,0,0,19,26,25,30,25,28,0,1,0,0,0,0,0,0,0,1 -050,01,121,Alabama,Talladega County,10,1,4008,1966,2042,1226,1324,659,645,5,6,8,6,0,0,68,61,1902,1970,1182,1266,645,639,3,3,8,5,0,0,64,57,64,72,44,58,14,6,2,3,0,1,0,0,4,4 -050,01,121,Alabama,Talladega County,10,2,5307,2680,2627,1658,1637,939,916,4,2,12,12,0,0,67,60,2612,2565,1605,1582,931,913,3,2,11,12,0,0,62,56,68,62,53,55,8,3,1,0,1,0,0,0,5,4 -050,01,121,Alabama,Talladega County,10,3,5657,2805,2852,1690,1645,1038,1139,13,6,9,8,0,0,55,54,2761,2806,1658,1607,1034,1135,11,5,8,8,0,0,50,51,44,46,32,38,4,4,2,1,1,0,0,0,5,3 -050,01,121,Alabama,Talladega County,10,4,6106,3109,2997,1844,1706,1209,1238,4,15,13,5,1,0,38,33,3059,2961,1801,1678,1205,1233,3,15,13,5,1,0,36,30,50,36,43,28,4,5,1,0,0,0,0,0,2,3 -050,01,121,Alabama,Talladega County,10,5,4891,2381,2510,1428,1449,902,1018,14,6,8,12,0,0,29,25,2270,2463,1338,1413,894,1011,7,3,7,12,0,0,24,24,111,47,90,36,8,7,7,3,1,0,0,0,5,1 -050,01,121,Alabama,Talladega County,10,6,5126,2530,2596,1552,1606,937,956,11,0,15,10,0,0,15,24,2409,2536,1453,1562,928,947,6,0,13,9,0,0,9,18,121,60,99,44,9,9,5,0,2,1,0,0,6,6 -050,01,121,Alabama,Talladega County,10,7,5012,2618,2394,1623,1458,941,884,14,10,8,24,0,0,32,18,2474,2360,1504,1433,931,883,5,8,8,19,0,0,26,17,144,34,119,25,10,1,9,2,0,5,0,0,6,1 -050,01,121,Alabama,Talladega County,10,8,5747,2885,2862,1884,1867,934,944,16,15,21,9,0,0,30,27,2787,2826,1801,1839,927,941,13,12,20,9,0,0,26,25,98,36,83,28,7,3,3,3,1,0,0,0,4,2 -050,01,121,Alabama,Talladega County,10,9,5847,2929,2918,2003,1865,881,1007,14,7,9,24,1,0,21,15,2847,2886,1935,1845,871,999,11,7,9,24,1,0,20,11,82,32,68,20,10,8,3,0,0,0,0,0,1,4 -050,01,121,Alabama,Talladega County,10,10,6060,3013,3047,2058,1993,903,1004,8,13,20,14,0,0,24,23,2942,3016,1995,1968,897,1002,6,12,20,14,0,0,24,20,71,31,63,25,6,2,2,1,0,0,0,0,0,3 -050,01,121,Alabama,Talladega County,10,11,6318,3112,3206,2148,2135,924,1003,14,24,11,12,0,1,15,31,3066,3191,2114,2126,916,1001,11,22,11,12,0,1,14,29,46,15,34,9,8,2,3,2,0,0,0,0,1,2 -050,01,121,Alabama,Talladega County,10,12,5522,2734,2788,1986,1951,718,801,8,10,7,11,0,0,15,15,2703,2780,1964,1946,710,798,7,10,7,11,0,0,15,15,31,8,22,5,8,3,1,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,10,13,4839,2313,2526,1764,1867,525,619,4,5,5,12,0,0,15,23,2296,2518,1751,1861,521,617,4,5,5,12,0,0,15,23,17,8,13,6,4,2,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,10,14,3596,1704,1892,1327,1451,353,423,10,4,5,4,0,0,9,10,1697,1887,1320,1447,353,422,10,4,5,4,0,0,9,10,7,5,7,4,0,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,10,15,2823,1232,1591,963,1206,258,370,4,1,3,4,0,0,4,10,1227,1577,961,1197,258,366,3,1,2,3,0,0,3,10,5,14,2,9,0,4,1,0,1,1,0,0,1,0 -050,01,121,Alabama,Talladega County,10,16,2185,902,1283,748,1023,150,249,0,1,1,1,0,0,3,9,896,1279,742,1022,150,248,0,1,1,0,0,0,3,8,6,4,6,1,0,1,0,0,0,1,0,0,0,1 -050,01,121,Alabama,Talladega County,10,17,1467,554,913,459,727,90,182,2,1,0,0,0,0,3,3,550,909,455,726,90,181,2,1,0,0,0,0,3,1,4,4,4,1,0,1,0,0,0,0,0,0,0,2 -050,01,121,Alabama,Talladega County,10,18,1141,313,828,268,638,41,188,0,0,0,1,0,0,4,1,311,822,267,633,41,187,0,0,0,1,0,0,3,1,2,6,1,5,0,1,0,0,0,0,0,0,1,0 -050,01,121,Alabama,Talladega County,10,99,82735,40317,42418,26990,27879,12557,13774,146,126,156,169,2,1,466,469,39321,41868,26182,27454,12457,13710,106,111,149,160,2,1,425,432,996,550,808,425,100,64,40,15,7,9,0,0,41,37 -050,01,121,Alabama,Talladega County,11,0,1012,498,514,329,304,145,182,2,0,1,0,0,0,21,28,479,485,313,277,143,181,1,0,1,0,0,0,21,27,19,29,16,27,2,1,1,0,0,0,0,0,0,1 -050,01,121,Alabama,Talladega County,11,1,4052,1949,2103,1208,1307,661,718,5,6,9,7,0,0,66,65,1889,2033,1169,1251,648,713,3,3,8,6,0,0,61,60,60,70,39,56,13,5,2,3,1,1,0,0,5,5 -050,01,121,Alabama,Talladega County,11,2,5228,2621,2607,1597,1625,936,891,6,2,12,28,0,0,70,61,2551,2547,1543,1572,928,888,5,2,11,28,0,0,64,57,70,60,54,53,8,3,1,0,1,0,0,0,6,4 -050,01,121,Alabama,Talladega County,11,3,5678,2853,2825,1718,1624,1049,1113,14,7,9,11,0,0,63,70,2803,2778,1680,1584,1045,1110,12,6,8,11,0,0,58,67,50,47,38,40,4,3,2,1,1,0,0,0,5,3 -050,01,121,Alabama,Talladega County,11,4,5876,2982,2894,1766,1654,1158,1182,5,16,14,6,1,0,38,36,2931,2859,1721,1627,1155,1177,4,16,14,6,1,0,36,33,51,35,45,27,3,5,1,0,0,0,0,0,2,3 -050,01,121,Alabama,Talladega County,11,5,4903,2378,2525,1441,1455,886,1025,15,7,8,12,0,0,28,26,2270,2472,1357,1417,875,1016,8,3,7,12,0,0,23,24,108,53,84,38,11,9,7,4,1,0,0,0,5,2 -050,01,121,Alabama,Talladega County,11,6,5023,2453,2570,1557,1609,855,923,11,0,15,9,0,0,15,29,2338,2499,1466,1557,845,914,5,0,13,9,0,0,9,19,115,71,91,52,10,9,6,0,2,0,0,0,6,10 -050,01,121,Alabama,Talladega County,11,7,5123,2635,2488,1604,1536,973,901,15,12,11,20,0,0,32,19,2481,2450,1479,1505,962,900,5,10,10,17,0,0,25,18,154,38,125,31,11,1,10,2,1,3,0,0,7,1 -050,01,121,Alabama,Talladega County,11,8,5666,2840,2826,1845,1777,930,993,16,14,17,12,2,0,30,30,2741,2795,1762,1754,923,990,13,11,16,12,2,0,25,28,99,31,83,23,7,3,3,3,1,0,0,0,5,2 -050,01,121,Alabama,Talladega County,11,9,5736,2889,2847,1958,1825,883,972,15,8,11,27,1,0,21,15,2810,2817,1891,1806,875,964,12,8,11,27,1,0,20,12,79,30,67,19,8,8,3,0,0,0,0,0,1,3 -050,01,121,Alabama,Talladega County,11,10,6094,3076,3018,2097,2002,919,971,11,12,22,11,0,0,27,22,2989,2986,2020,1976,912,969,8,11,22,11,0,0,27,19,87,32,77,26,7,2,3,1,0,0,0,0,0,3 -050,01,121,Alabama,Talladega County,11,11,6298,3054,3244,2112,2146,897,1028,14,23,13,12,0,0,18,35,3003,3227,2073,2135,889,1026,11,21,13,12,0,0,17,33,51,17,39,11,8,2,3,2,0,0,0,0,1,2 -050,01,121,Alabama,Talladega County,11,12,5613,2755,2858,1963,2000,755,810,8,18,8,12,0,0,21,18,2716,2844,1934,1989,746,807,7,18,8,12,0,0,21,18,39,14,29,11,9,3,1,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,11,13,4954,2398,2556,1829,1864,545,649,4,5,6,15,0,0,14,23,2377,2549,1813,1859,540,647,4,5,6,15,0,0,14,23,21,7,16,5,5,2,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,11,14,3770,1786,1984,1407,1531,355,429,6,4,5,5,0,0,13,15,1777,1979,1398,1527,355,428,6,4,5,5,0,0,13,15,9,5,9,4,0,1,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,11,15,2847,1271,1576,1000,1194,260,366,4,1,3,4,0,0,4,11,1265,1562,997,1185,260,362,3,1,2,3,0,0,3,11,6,14,3,9,0,4,1,0,1,1,0,0,1,0 -050,01,121,Alabama,Talladega County,11,16,2135,856,1279,716,1017,136,250,0,1,1,1,0,1,3,9,851,1275,711,1016,136,249,0,1,1,0,0,1,3,8,5,4,5,1,0,1,0,0,0,1,0,0,0,1 -050,01,121,Alabama,Talladega County,11,17,1512,572,940,480,761,87,176,2,1,0,0,0,0,3,2,568,937,476,760,87,175,2,1,0,0,0,0,3,1,4,3,4,1,0,1,0,0,0,0,0,0,0,1 -050,01,121,Alabama,Talladega County,11,18,1154,330,824,282,645,44,177,0,0,0,1,0,0,4,1,327,818,280,640,44,176,0,0,0,1,0,0,3,1,3,6,2,5,0,1,0,0,0,0,0,0,1,0 -050,01,121,Alabama,Talladega County,11,99,82674,40196,42478,26909,27876,12474,13756,153,137,165,193,4,1,491,515,39166,41912,26083,27437,12368,13692,109,121,156,187,4,1,446,474,1030,566,826,439,106,64,44,16,9,6,0,0,45,41 -050,01,121,Alabama,Talladega County,12,0,962,490,472,314,278,158,177,2,0,1,0,0,0,15,17,470,447,298,255,155,176,1,0,1,0,0,0,15,16,20,25,16,23,3,1,1,0,0,0,0,0,0,1 -050,01,121,Alabama,Talladega County,12,1,3979,1948,2031,1202,1233,670,720,5,6,10,4,0,0,61,68,1879,1959,1154,1177,657,713,3,3,9,3,0,0,56,63,69,72,48,56,13,7,2,3,1,1,0,0,5,5 -050,01,121,Alabama,Talladega County,12,2,5199,2584,2615,1588,1619,903,914,6,2,12,20,0,0,75,60,2512,2550,1532,1561,894,911,5,2,11,20,0,0,70,56,72,65,56,58,9,3,1,0,1,0,0,0,5,4 -050,01,121,Alabama,Talladega County,12,3,5645,2831,2814,1678,1645,1058,1080,14,8,9,10,0,0,72,71,2781,2765,1640,1603,1054,1077,12,7,8,10,0,0,67,68,50,49,38,42,4,3,2,1,1,0,0,0,5,3 -050,01,121,Alabama,Talladega County,12,4,5747,2927,2820,1754,1626,1107,1131,6,15,14,5,1,0,45,43,2876,2783,1709,1597,1104,1126,5,15,14,5,1,0,43,40,51,37,45,29,3,5,1,0,0,0,0,0,2,3 -050,01,121,Alabama,Talladega County,12,5,4857,2328,2529,1403,1457,872,1027,15,7,8,12,0,0,30,26,2209,2481,1308,1424,861,1018,8,3,7,12,0,0,25,24,119,48,95,33,11,9,7,4,1,0,0,0,5,2 -050,01,121,Alabama,Talladega County,12,6,4867,2381,2486,1525,1541,814,906,11,0,15,12,0,0,16,27,2262,2414,1431,1487,803,897,5,0,13,11,0,0,10,19,119,72,94,54,11,9,6,0,2,1,0,0,6,8 -050,01,121,Alabama,Talladega County,12,7,5113,2622,2491,1619,1541,943,897,15,12,12,21,0,0,33,20,2455,2445,1482,1503,931,896,5,10,11,17,0,0,26,19,167,46,137,38,12,1,10,2,1,4,0,0,7,1 -050,01,121,Alabama,Talladega County,12,8,5613,2813,2800,1804,1745,942,999,18,13,17,12,1,1,31,30,2708,2760,1715,1713,935,996,15,10,16,12,1,1,26,28,105,40,89,32,7,3,3,3,1,0,0,0,5,2 -050,01,121,Alabama,Talladega County,12,9,5623,2844,2779,1901,1784,894,952,15,7,12,20,1,0,21,16,2766,2743,1836,1760,885,944,12,7,12,20,1,0,20,12,78,36,65,24,9,8,3,0,0,0,0,0,1,4 -050,01,121,Alabama,Talladega County,12,10,5973,3026,2947,2072,1944,898,952,11,12,19,15,0,0,26,24,2948,2917,2004,1920,891,950,8,11,19,15,0,0,26,21,78,30,68,24,7,2,3,1,0,0,0,0,0,3 -050,01,121,Alabama,Talladega County,12,11,6261,3060,3201,2112,2136,897,1001,17,22,15,13,0,1,19,28,3009,3179,2073,2120,889,999,14,20,15,13,0,1,18,26,51,22,39,16,8,2,3,2,0,0,0,0,1,2 -050,01,121,Alabama,Talladega County,12,12,5704,2784,2920,1967,2027,782,851,9,12,8,12,0,0,18,18,2744,2906,1937,2016,773,848,8,12,8,12,0,0,18,18,40,14,30,11,9,3,1,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,12,13,5157,2498,2659,1864,1927,608,687,4,5,6,14,0,0,16,26,2476,2652,1847,1922,603,685,4,5,6,14,0,0,16,26,22,7,17,5,5,2,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,12,14,3817,1813,2004,1424,1548,365,433,8,4,6,5,0,0,10,14,1803,1996,1414,1542,365,431,8,4,6,5,0,0,10,14,10,8,10,6,0,2,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,12,15,2917,1326,1591,1049,1207,265,368,4,1,3,4,0,0,5,11,1320,1575,1046,1197,265,363,3,1,2,3,0,0,4,11,6,16,3,10,0,5,1,0,1,1,0,0,1,0 -050,01,121,Alabama,Talladega County,12,16,2154,886,1268,730,1000,152,256,0,1,1,1,0,1,3,9,881,1264,725,999,152,255,0,1,1,0,0,1,3,8,5,4,5,1,0,1,0,0,0,1,0,0,0,1 -050,01,121,Alabama,Talladega County,12,17,1505,563,942,481,755,76,182,2,1,0,0,0,0,4,4,559,938,477,754,76,181,2,1,0,0,0,0,4,2,4,4,4,1,0,1,0,0,0,0,0,0,0,2 -050,01,121,Alabama,Talladega County,12,18,1198,353,845,290,667,59,175,0,0,0,1,0,0,4,2,350,838,288,661,59,174,0,0,0,1,0,0,3,2,3,7,2,6,0,1,0,0,0,0,0,0,1,0 -050,01,121,Alabama,Talladega County,12,99,82291,40077,42214,26777,27680,12463,13708,162,128,168,181,3,3,504,514,39008,41612,25916,27211,12352,13640,118,112,159,173,3,3,460,473,1069,602,861,469,111,68,44,16,9,8,0,0,44,41 -050,01,121,Alabama,Talladega County,13,0,960,492,468,314,277,158,175,2,0,0,1,1,0,17,15,469,445,297,254,155,175,1,0,0,1,0,0,16,15,23,23,17,23,3,0,1,0,0,0,1,0,1,0 -050,01,121,Alabama,Talladega County,13,1,3967,1941,2026,1193,1226,668,720,5,6,10,4,1,3,64,67,1872,1953,1145,1168,657,714,3,4,9,3,0,1,58,63,69,73,48,58,11,6,2,2,1,1,1,2,6,4 -050,01,121,Alabama,Talladega County,13,2,5187,2577,2610,1579,1610,900,910,10,3,13,21,2,3,73,63,2499,2541,1523,1551,890,907,6,3,11,20,1,1,68,59,78,69,56,59,10,3,4,0,2,1,1,2,5,4 -050,01,121,Alabama,Talladega County,13,3,5612,2814,2798,1668,1636,1050,1075,13,7,12,9,1,3,70,68,2765,2750,1630,1594,1048,1073,13,6,9,8,1,3,64,66,49,48,38,42,2,2,0,1,3,1,0,0,6,2 -050,01,121,Alabama,Talladega County,13,4,5711,2913,2798,1733,1610,1098,1122,7,15,15,5,5,2,55,44,2852,2753,1689,1581,1095,1117,5,13,13,4,2,1,48,37,61,45,44,29,3,5,2,2,2,1,3,1,7,7 -050,01,121,Alabama,Talladega County,13,5,4871,2334,2537,1399,1456,876,1031,14,7,11,9,3,2,31,32,2213,2489,1304,1423,866,1023,6,4,9,9,2,1,26,29,121,48,95,33,10,8,8,3,2,0,1,1,5,3 -050,01,121,Alabama,Talladega County,13,6,4863,2387,2476,1528,1536,813,904,13,3,11,10,1,1,21,22,2263,2406,1433,1483,805,896,5,0,9,9,0,1,11,17,124,70,95,53,8,8,8,3,2,1,1,0,10,5 -050,01,121,Alabama,Talladega County,13,7,5141,2634,2507,1622,1543,949,904,16,15,10,20,4,2,33,23,2467,2458,1486,1506,937,902,6,11,9,16,3,1,26,22,167,49,136,37,12,2,10,4,1,4,1,1,7,1 -050,01,121,Alabama,Talladega County,13,8,5547,2777,2770,1784,1723,936,989,17,14,17,13,1,4,22,27,2676,2731,1695,1690,931,989,14,10,16,13,0,3,20,26,101,39,89,33,5,0,3,4,1,0,1,1,2,1 -050,01,121,Alabama,Talladega County,13,9,5607,2830,2777,1890,1777,890,948,14,10,15,22,5,5,16,15,2748,2740,1824,1753,882,942,11,8,14,21,1,3,16,13,82,37,66,24,8,6,3,2,1,1,4,2,0,2 -050,01,121,Alabama,Talladega County,13,10,5924,3004,2920,2055,1923,896,948,12,12,19,15,1,2,21,20,2920,2890,1986,1901,888,946,7,10,18,14,1,1,20,18,84,30,69,22,8,2,5,2,1,1,0,1,1,2 -050,01,121,Alabama,Talladega County,13,11,6245,3058,3187,2108,2128,896,1002,17,21,14,11,4,1,19,24,3008,3167,2068,2112,891,1000,14,19,14,11,2,1,19,24,50,20,40,16,5,2,3,2,0,0,2,0,0,0 -050,01,121,Alabama,Talladega County,13,12,5714,2787,2927,1971,2029,784,851,7,13,9,15,1,1,15,18,2746,2912,1939,2018,775,848,7,12,9,15,1,1,15,18,41,15,32,11,9,3,0,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,13,13,5185,2506,2679,1873,1936,611,697,4,8,6,16,0,0,12,22,2488,2670,1856,1930,610,694,4,8,6,16,0,0,12,22,18,9,17,6,1,3,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,13,14,3818,1814,2004,1427,1551,367,434,8,3,5,5,0,0,7,11,1804,1995,1418,1544,366,432,8,3,5,5,0,0,7,11,10,9,9,7,1,2,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,13,15,2915,1329,1586,1049,1207,267,366,5,2,2,2,0,0,6,9,1324,1575,1046,1199,265,363,5,2,2,2,0,0,6,9,5,11,3,8,2,3,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,13,16,2139,883,1256,727,993,152,256,0,0,1,2,0,0,3,5,878,1254,722,991,152,256,0,0,1,2,0,0,3,5,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,13,17,1502,566,936,483,751,77,182,2,0,3,1,0,0,1,2,561,936,478,751,77,182,2,0,3,1,0,0,1,2,5,0,5,0,0,0,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,13,18,1202,354,848,291,668,60,176,0,0,0,1,0,0,3,3,351,841,289,661,59,176,0,0,0,1,0,0,3,3,3,7,2,7,1,0,0,0,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,13,99,82110,40000,42110,26694,27580,12448,13690,166,139,173,182,30,29,489,490,38904,41506,25828,27110,12349,13635,117,113,157,171,14,18,439,459,1096,604,866,470,99,55,49,26,16,11,16,11,50,31 -050,01,123,Alabama,Tallapoosa County,1,0,517,264,253,178,169,83,75,0,1,1,0,0,0,2,8,259,251,175,167,81,75,0,1,1,0,0,0,2,8,5,2,3,2,2,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,1,2047,1072,975,677,614,384,345,1,4,0,3,0,0,10,9,1057,967,664,609,382,342,1,4,0,3,0,0,10,9,15,8,13,5,2,3,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,2,2859,1484,1375,974,830,488,527,7,3,2,6,0,0,13,9,1475,1367,966,825,487,524,7,3,2,6,0,0,13,9,9,8,8,5,1,3,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,3,2891,1458,1433,1001,947,442,469,1,5,3,2,0,0,11,10,1445,1424,991,939,439,468,1,5,3,2,0,0,11,10,13,9,10,8,3,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,4,2704,1374,1330,945,884,415,429,3,8,4,4,0,0,7,5,1357,1318,931,875,414,426,3,8,4,4,0,0,5,5,17,12,14,9,1,3,0,0,0,0,0,0,2,0 -050,01,123,Alabama,Tallapoosa County,1,5,2204,1099,1105,733,685,356,411,1,4,2,1,0,0,7,4,1083,1092,720,677,354,406,1,4,2,1,0,0,6,4,16,13,13,8,2,5,0,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,1,6,2513,1203,1310,838,869,356,428,2,3,3,2,0,1,4,7,1188,1301,823,863,356,425,2,3,3,2,0,1,4,7,15,9,15,6,0,3,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,7,2697,1323,1374,982,960,327,404,7,2,3,5,0,0,4,3,1311,1368,972,955,325,403,7,2,3,5,0,0,4,3,12,6,10,5,2,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,8,2980,1466,1514,1089,1074,363,421,4,8,4,5,0,1,6,5,1458,1503,1083,1067,361,418,4,8,4,4,0,1,6,5,8,11,6,7,2,3,0,0,0,1,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,9,3112,1554,1558,1156,1141,383,396,7,5,1,7,0,0,7,9,1552,1552,1155,1138,382,394,7,4,1,7,0,0,7,9,2,6,1,3,1,2,0,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,10,2972,1473,1499,1105,1094,355,386,6,5,5,9,0,0,2,5,1465,1495,1098,1092,354,384,6,5,5,9,0,0,2,5,8,4,7,2,1,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,11,2890,1399,1491,1104,1133,289,349,1,4,1,2,0,0,4,3,1394,1489,1101,1132,287,349,1,3,1,2,0,0,4,3,5,2,3,1,2,0,0,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,12,2513,1205,1308,1014,1052,180,246,4,5,0,0,0,0,7,5,1199,1302,1009,1047,179,246,4,5,0,0,0,0,7,4,6,6,5,5,1,0,0,0,0,0,0,0,0,1 -050,01,123,Alabama,Tallapoosa County,1,13,2004,936,1068,767,865,164,193,1,0,0,2,0,0,4,8,934,1063,765,860,164,193,1,0,0,2,0,0,4,8,2,5,2,5,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,14,1892,827,1065,705,887,120,174,2,0,0,2,0,0,0,2,825,1063,703,885,120,174,2,0,0,2,0,0,0,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,15,1693,748,945,641,754,107,186,0,2,0,0,0,1,0,2,746,944,639,754,107,186,0,1,0,0,0,1,0,2,2,1,2,0,0,0,0,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,16,1385,529,856,453,714,74,136,0,2,0,1,0,0,2,3,528,855,452,713,74,136,0,2,0,1,0,0,2,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,17,997,350,647,302,544,46,102,1,1,0,0,0,0,1,0,350,646,302,544,46,101,1,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,18,901,247,654,198,535,48,115,0,0,0,0,0,0,1,4,245,653,196,534,48,115,0,0,0,0,0,0,1,4,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,99,41771,20011,21760,14862,15751,4980,5792,48,62,29,51,0,3,92,101,19871,21653,14745,15676,4960,5765,48,59,29,50,0,3,89,100,140,107,117,75,20,27,0,3,0,1,0,0,3,1 -050,01,123,Alabama,Tallapoosa County,2,0,517,265,252,178,169,84,76,0,1,1,0,0,0,2,6,260,250,175,167,82,76,0,1,1,0,0,0,2,6,5,2,3,2,2,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,1,2029,1061,968,669,609,381,344,1,4,0,3,0,0,10,8,1046,960,656,604,379,341,1,4,0,3,0,0,10,8,15,8,13,5,2,3,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,2,2830,1469,1361,962,820,485,523,7,3,2,6,0,0,13,9,1460,1353,954,815,484,520,7,3,2,6,0,0,13,9,9,8,8,5,1,3,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,3,2891,1454,1437,998,949,441,471,1,5,3,2,0,0,11,10,1441,1428,988,941,438,470,1,5,3,2,0,0,11,10,13,9,10,8,3,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,4,2708,1370,1338,943,891,413,430,3,8,4,4,0,0,7,5,1353,1326,929,882,412,427,3,8,4,4,0,0,5,5,17,12,14,9,1,3,0,0,0,0,0,0,2,0 -050,01,123,Alabama,Tallapoosa County,2,5,2216,1103,1113,737,691,356,413,1,4,2,1,0,0,7,4,1087,1100,724,683,354,408,1,4,2,1,0,0,6,4,16,13,13,8,2,5,0,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,2,6,2481,1187,1294,826,856,352,425,2,3,3,2,0,1,4,7,1172,1285,811,850,352,422,2,3,3,2,0,1,4,7,15,9,15,6,0,3,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,7,2681,1316,1365,978,954,324,401,7,2,3,5,0,0,4,3,1304,1359,968,949,322,400,7,2,3,5,0,0,4,3,12,6,10,5,2,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,8,2955,1455,1500,1082,1063,359,419,4,8,4,5,0,1,6,4,1447,1489,1076,1056,357,416,4,8,4,4,0,1,6,4,8,11,6,7,2,3,0,0,0,1,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,9,3104,1548,1556,1150,1138,383,397,7,5,1,7,0,0,7,9,1546,1550,1149,1135,382,395,7,4,1,7,0,0,7,9,2,6,1,3,1,2,0,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,10,2986,1484,1502,1112,1095,359,388,6,5,5,9,0,0,2,5,1476,1498,1105,1093,358,386,6,5,5,9,0,0,2,5,8,4,7,2,1,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,11,2913,1410,1503,1112,1141,292,353,1,4,1,2,0,0,4,3,1405,1501,1109,1140,290,353,1,3,1,2,0,0,4,3,5,2,3,1,2,0,0,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,12,2519,1209,1310,1017,1054,181,246,4,5,0,0,0,0,7,5,1203,1304,1012,1049,180,246,4,5,0,0,0,0,7,4,6,6,5,5,1,0,0,0,0,0,0,0,0,1 -050,01,123,Alabama,Tallapoosa County,2,13,2004,937,1067,768,864,164,193,1,0,0,2,0,0,4,8,935,1062,766,859,164,193,1,0,0,2,0,0,4,8,2,5,2,5,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,14,1881,825,1056,702,879,121,173,2,0,0,2,0,0,0,2,823,1054,700,877,121,173,2,0,0,2,0,0,0,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,15,1691,751,940,644,748,107,187,0,2,0,0,0,1,0,2,749,939,642,748,107,187,0,1,0,0,0,1,0,2,2,1,2,0,0,0,0,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,16,1382,530,852,454,710,74,136,0,2,0,1,0,0,2,3,529,851,453,709,74,136,0,2,0,1,0,0,2,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,17,999,352,647,304,544,46,102,1,1,0,0,0,0,1,0,352,646,304,544,46,101,1,1,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,18,902,248,654,199,537,48,114,0,0,0,0,0,0,1,3,246,653,197,536,48,114,0,0,0,0,0,0,1,3,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,99,41689,19974,21715,14835,15712,4970,5791,48,62,29,51,0,3,92,96,19834,21608,14718,15637,4950,5764,48,59,29,50,0,3,89,95,140,107,117,75,20,27,0,3,0,1,0,0,3,1 -050,01,123,Alabama,Tallapoosa County,3,0,525,241,284,155,177,82,102,0,1,1,0,0,0,3,4,234,280,149,173,81,102,0,1,1,0,0,0,3,4,7,4,6,4,1,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,1,2020,1045,975,669,598,360,355,1,4,3,3,0,0,12,15,1027,962,653,590,358,350,1,4,3,3,0,0,12,15,18,13,16,8,2,5,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,2,2727,1430,1297,917,790,491,487,6,3,3,7,0,0,13,10,1413,1285,901,781,490,484,6,3,3,7,0,0,13,10,17,12,16,9,1,3,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,3,3015,1518,1497,1026,965,476,513,1,5,3,2,0,0,12,12,1503,1486,1014,955,473,512,1,5,3,2,0,0,12,12,15,11,12,10,3,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,4,2597,1299,1298,877,852,407,428,4,8,4,4,0,0,7,6,1284,1279,864,836,406,425,4,8,4,4,0,0,6,6,15,19,13,16,1,3,0,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,3,5,2264,1136,1128,757,718,369,401,1,4,2,1,0,0,7,4,1115,1114,739,709,367,396,1,4,2,1,0,0,6,4,21,14,18,9,2,5,0,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,3,6,2306,1077,1229,744,777,323,438,2,3,4,4,0,1,4,6,1056,1213,723,765,323,434,2,3,4,4,0,1,4,6,21,16,21,12,0,4,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,7,2659,1322,1337,997,935,311,391,7,2,3,6,0,0,4,3,1304,1327,981,926,309,390,7,2,3,6,0,0,4,3,18,10,16,9,2,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,8,2870,1388,1482,1028,1047,345,416,4,8,5,6,0,1,6,4,1370,1467,1012,1036,343,413,4,8,5,5,0,1,6,4,18,15,16,11,2,3,0,0,0,1,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,9,3081,1520,1561,1129,1134,375,406,8,5,1,7,0,0,7,9,1513,1553,1123,1129,374,404,8,4,1,7,0,0,7,9,7,8,6,5,1,2,0,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,10,2924,1457,1467,1084,1063,359,384,6,5,6,9,0,0,2,6,1446,1462,1074,1060,358,382,6,5,6,9,0,0,2,6,11,5,10,3,1,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,11,3061,1489,1572,1179,1178,303,384,2,5,1,2,0,0,4,3,1484,1570,1176,1177,301,384,2,4,1,2,0,0,4,3,5,2,3,1,2,0,0,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,12,2537,1215,1322,988,1064,216,247,4,5,0,0,0,0,7,6,1210,1316,984,1059,215,247,4,5,0,0,0,0,7,5,5,6,4,5,1,0,0,0,0,0,0,0,0,1 -050,01,123,Alabama,Tallapoosa County,3,13,2078,994,1084,837,871,151,203,2,0,0,2,0,0,4,8,992,1080,835,867,151,203,2,0,0,2,0,0,4,8,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,14,1838,819,1019,690,841,126,174,2,0,0,2,0,0,1,2,817,1017,688,839,126,174,2,0,0,2,0,0,1,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,15,1705,746,959,643,770,103,184,0,2,0,0,0,1,0,2,744,958,641,770,103,184,0,1,0,0,0,1,0,2,2,1,2,0,0,0,0,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,16,1327,513,814,436,675,76,134,0,1,0,1,0,0,1,3,512,813,435,674,76,134,0,1,0,1,0,0,1,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,17,1003,338,665,295,560,41,105,1,0,0,0,0,0,1,0,338,664,295,560,41,104,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,18,869,244,625,202,511,41,111,0,0,0,0,0,0,1,3,242,624,200,510,41,111,0,0,0,0,0,0,1,3,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,99,41406,19791,21615,14653,15526,4955,5863,51,61,36,56,0,3,96,106,19604,21470,14487,15416,4936,5833,51,58,36,55,0,3,94,105,187,145,166,110,19,30,0,3,0,1,0,0,2,1 -050,01,123,Alabama,Tallapoosa County,4,0,474,249,225,169,152,76,65,0,1,1,1,0,0,3,6,237,212,158,139,75,65,0,1,1,1,0,0,3,6,12,13,11,13,1,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,1,1953,979,974,632,597,330,352,1,4,2,6,0,0,14,15,958,961,614,589,328,347,1,4,2,6,0,0,13,15,21,13,18,8,2,5,0,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,4,2,2647,1393,1254,896,774,472,460,6,3,4,7,0,0,15,10,1370,1236,875,758,471,458,6,3,4,7,0,0,14,10,23,18,21,16,1,2,0,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,4,3,2991,1523,1468,1014,927,491,520,1,6,3,3,0,0,14,12,1506,1457,999,917,489,519,1,6,3,3,0,0,14,12,17,11,15,10,2,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,4,2630,1335,1295,891,848,427,428,4,8,5,3,0,0,8,8,1318,1280,878,836,425,425,4,8,5,3,0,0,6,8,17,15,13,12,2,3,0,0,0,0,0,0,2,0 -050,01,123,Alabama,Tallapoosa County,4,5,2272,1130,1142,754,718,363,415,3,4,2,1,0,0,8,4,1098,1121,727,703,360,409,2,4,2,1,0,0,7,4,32,21,27,15,3,6,1,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,4,6,2170,1015,1155,692,705,313,436,3,3,4,4,0,1,3,6,988,1136,668,691,310,431,3,3,4,4,0,1,3,6,27,19,24,14,3,5,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,7,2567,1269,1298,960,892,295,394,6,2,3,6,0,0,5,4,1244,1281,938,877,292,392,6,2,3,6,0,0,5,4,25,17,22,15,3,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,8,2801,1347,1454,991,1021,340,414,4,7,6,6,0,1,6,5,1327,1441,974,1012,337,411,4,7,6,5,0,1,6,5,20,13,17,9,3,3,0,0,0,1,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,9,2987,1472,1515,1111,1096,345,397,6,5,3,7,0,1,7,9,1462,1505,1102,1090,344,395,6,4,3,7,0,0,7,9,10,10,9,6,1,2,0,1,0,0,0,1,0,0 -050,01,123,Alabama,Tallapoosa County,4,10,3057,1528,1529,1124,1111,386,399,6,5,6,9,0,0,6,5,1513,1522,1111,1106,385,397,6,5,5,9,0,0,6,5,15,7,13,5,1,2,0,0,1,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,11,2961,1450,1511,1122,1110,318,388,3,6,2,4,0,0,5,3,1444,1510,1118,1109,316,388,3,6,2,4,0,0,5,3,6,1,4,1,2,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,12,2727,1314,1413,1053,1132,250,267,4,5,0,2,0,0,7,7,1305,1406,1045,1126,249,267,4,5,0,2,0,0,7,6,9,7,8,6,1,0,0,0,0,0,0,0,0,1 -050,01,123,Alabama,Tallapoosa County,4,13,2158,1038,1120,873,907,159,202,2,1,0,3,0,0,4,7,1036,1116,871,903,159,202,2,1,0,3,0,0,4,7,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,14,1847,810,1037,682,840,125,193,2,0,0,2,0,0,1,2,808,1035,680,838,125,193,2,0,0,2,0,0,1,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,15,1644,698,946,610,791,87,150,0,3,0,0,0,0,1,2,696,944,608,790,87,150,0,2,0,0,0,0,1,2,2,2,2,1,0,0,0,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,16,1296,515,781,451,632,63,143,0,1,0,1,0,0,1,4,514,780,450,631,63,143,0,1,0,1,0,0,1,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,17,1024,362,662,310,547,48,114,1,1,0,0,0,0,3,0,362,661,310,547,48,113,1,1,0,0,0,0,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,18,838,238,600,194,512,43,86,0,0,0,0,0,0,1,2,236,599,192,511,43,86,0,0,0,0,0,0,1,2,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,99,41044,19665,21379,14529,15312,4931,5823,52,65,41,65,0,3,112,111,19422,21203,14318,15173,4906,5791,51,63,40,64,0,2,107,110,243,176,211,139,25,32,1,2,1,1,0,1,5,1 -050,01,123,Alabama,Tallapoosa County,5,0,480,241,239,170,154,65,79,0,1,1,1,0,0,5,4,231,222,162,137,63,79,0,1,1,1,0,0,5,4,10,17,8,17,2,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,1,2005,998,1007,659,637,320,338,1,5,2,6,0,0,16,21,972,983,635,618,319,333,1,5,2,6,0,0,15,21,26,24,24,19,1,5,0,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,5,2,2510,1348,1162,835,729,485,414,6,3,3,8,0,0,19,8,1327,1143,819,712,482,412,6,3,3,8,0,0,17,8,21,19,16,17,3,2,0,0,0,0,0,0,2,0 -050,01,123,Alabama,Tallapoosa County,5,3,2991,1532,1459,1010,899,503,541,2,4,4,3,0,0,13,12,1514,1447,994,888,501,540,2,4,4,3,0,0,13,12,18,12,16,11,2,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,4,2627,1323,1304,887,859,415,427,4,6,6,4,0,0,11,8,1301,1291,871,849,412,424,4,6,6,4,0,0,8,8,22,13,16,10,3,3,0,0,0,0,0,0,3,0 -050,01,123,Alabama,Tallapoosa County,5,5,2298,1169,1129,778,714,377,405,4,4,2,2,0,0,8,4,1133,1107,749,698,374,399,2,4,2,2,0,0,6,4,36,22,29,16,3,6,2,0,0,0,0,0,2,0 -050,01,123,Alabama,Tallapoosa County,5,6,2082,991,1091,682,672,296,402,3,3,5,5,0,1,5,8,952,1063,648,650,292,396,3,3,5,5,0,1,4,8,39,28,34,22,4,6,0,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,5,7,2551,1238,1313,898,884,327,415,4,2,4,7,0,0,5,5,1206,1292,871,867,322,412,4,2,4,7,0,0,5,4,32,21,27,17,5,3,0,0,0,0,0,0,0,1 -050,01,123,Alabama,Tallapoosa County,5,8,2749,1335,1414,991,977,330,419,3,6,6,7,0,1,5,4,1313,1397,973,964,326,416,3,6,6,6,0,1,5,4,22,17,18,13,4,3,0,0,0,1,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,9,2930,1424,1506,1070,1083,335,400,5,5,5,7,0,1,9,10,1409,1494,1058,1076,333,398,5,4,5,7,0,0,8,9,15,12,12,7,2,2,0,1,0,0,0,1,1,1 -050,01,123,Alabama,Tallapoosa County,5,10,3052,1529,1523,1125,1098,384,407,6,4,7,8,0,1,7,5,1512,1514,1110,1091,383,405,6,4,6,8,0,1,7,5,17,9,15,7,1,2,0,0,1,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,11,2873,1408,1465,1056,1079,340,368,3,8,3,4,0,0,6,6,1401,1463,1051,1078,338,368,3,7,3,4,0,0,6,6,7,2,5,1,2,0,0,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,12,2796,1351,1445,1087,1142,251,289,4,5,1,2,0,0,8,7,1342,1438,1079,1136,250,289,4,5,1,2,0,0,8,6,9,7,8,6,1,0,0,0,0,0,0,0,0,1 -050,01,123,Alabama,Tallapoosa County,5,13,2316,1117,1199,949,968,162,220,2,2,0,3,0,0,4,6,1115,1194,947,963,162,220,2,2,0,3,0,0,4,6,2,5,2,5,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,14,1865,830,1035,702,842,125,187,2,1,0,2,0,0,1,3,827,1033,699,840,125,187,2,1,0,2,0,0,1,3,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,15,1637,686,951,601,784,84,160,0,3,0,0,0,1,1,3,684,949,599,783,84,160,0,2,0,0,0,1,1,3,2,2,2,1,0,0,0,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,16,1342,562,780,483,645,77,129,0,1,0,1,0,0,2,4,561,779,482,644,77,129,0,1,0,1,0,0,2,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,17,944,324,620,276,507,45,112,1,1,0,0,0,0,2,0,324,619,276,507,45,111,1,1,0,0,0,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,18,850,250,600,206,516,43,80,0,0,0,0,0,0,1,4,248,599,204,515,43,80,0,0,0,0,0,0,1,4,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,99,40898,19656,21242,14465,15189,4964,5792,50,64,49,70,0,5,128,122,19372,21027,14227,15016,4931,5758,48,61,48,69,0,4,118,119,284,215,238,173,33,34,2,3,1,1,0,1,10,3 -050,01,123,Alabama,Tallapoosa County,6,0,459,223,236,149,157,68,73,0,1,1,1,0,0,5,4,214,220,142,141,66,73,0,1,1,1,0,0,5,4,9,16,7,16,2,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,6,1,1973,954,1019,649,645,284,349,1,4,3,4,0,0,17,17,926,980,623,613,283,343,1,4,3,4,0,0,16,16,28,39,26,32,1,6,0,0,0,0,0,0,1,1 -050,01,123,Alabama,Tallapoosa County,6,2,2487,1328,1159,809,732,492,401,6,4,4,9,0,0,17,13,1301,1137,785,712,491,399,6,4,4,9,0,0,15,13,27,22,24,20,1,2,0,0,0,0,0,0,2,0 -050,01,123,Alabama,Tallapoosa County,6,3,2936,1518,1418,981,878,514,520,2,5,4,3,0,0,17,12,1502,1405,967,867,512,518,2,5,4,3,0,0,17,12,16,13,14,11,2,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,6,4,2682,1357,1325,916,848,418,460,4,5,6,3,0,0,13,9,1338,1306,903,834,415,455,4,5,6,3,0,0,10,9,19,19,13,14,3,5,0,0,0,0,0,0,3,0 -050,01,123,Alabama,Tallapoosa County,6,5,2327,1160,1167,793,747,354,405,4,6,2,2,0,0,7,7,1117,1140,759,727,350,399,2,6,2,2,0,0,4,6,43,27,34,20,4,6,2,0,0,0,0,0,3,1 -050,01,123,Alabama,Tallapoosa County,6,6,2057,980,1077,658,657,309,401,2,3,6,6,0,2,5,8,931,1046,616,632,303,395,2,3,6,6,0,2,4,8,49,31,42,25,6,6,0,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,6,7,2487,1184,1303,861,870,310,417,4,2,4,8,0,0,5,6,1154,1283,835,854,306,415,4,2,4,8,0,0,5,4,30,20,26,16,4,2,0,0,0,0,0,0,0,2 -050,01,123,Alabama,Tallapoosa County,6,8,2719,1334,1385,978,939,339,427,3,6,7,8,0,1,7,4,1309,1367,958,925,336,424,3,6,7,7,0,1,5,4,25,18,20,14,3,3,0,0,0,1,0,0,2,0 -050,01,123,Alabama,Tallapoosa County,6,9,2904,1430,1474,1071,1061,338,389,5,6,5,7,0,1,11,10,1414,1457,1059,1050,336,387,5,5,5,7,0,0,9,8,16,17,12,11,2,2,0,1,0,0,0,1,2,2 -050,01,123,Alabama,Tallapoosa County,6,10,3046,1505,1541,1114,1123,372,396,6,6,6,8,0,1,7,7,1491,1531,1101,1116,371,394,6,6,6,8,0,0,7,7,14,10,13,7,1,2,0,0,0,0,0,1,0,0 -050,01,123,Alabama,Tallapoosa County,6,11,2959,1448,1511,1083,1099,350,394,4,8,3,4,0,0,8,6,1441,1509,1078,1097,348,394,4,8,3,4,0,0,8,6,7,2,5,2,2,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,6,12,2812,1353,1459,1062,1157,278,287,4,5,1,4,0,0,8,6,1341,1452,1053,1151,275,287,4,5,1,4,0,0,8,5,12,7,9,6,3,0,0,0,0,0,0,0,0,1 -050,01,123,Alabama,Tallapoosa County,6,13,2470,1199,1271,1015,1023,175,236,4,3,0,3,0,0,5,6,1196,1266,1013,1018,174,236,4,3,0,3,0,0,5,6,3,5,2,5,1,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,6,14,1901,852,1049,713,854,135,189,2,1,0,2,0,0,2,3,851,1046,712,852,135,188,2,1,0,2,0,0,2,3,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,6,15,1662,715,947,622,781,90,160,1,2,0,0,0,0,2,4,713,945,620,780,90,159,1,2,0,0,0,0,2,4,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,6,16,1261,530,731,470,595,59,130,0,1,0,1,0,0,1,4,529,730,469,594,59,130,0,1,0,1,0,0,1,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,6,17,947,325,622,272,507,49,113,1,1,0,0,0,0,3,1,324,621,271,507,49,112,1,1,0,0,0,0,3,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,6,18,815,247,568,208,487,38,79,0,0,0,0,0,0,1,2,246,567,207,486,38,79,0,0,0,0,0,0,1,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,6,99,40904,19642,21262,14424,15160,4972,5826,53,69,52,73,0,5,141,129,19338,21008,14171,14956,4937,5787,51,68,52,72,0,3,127,122,304,254,253,204,35,39,2,1,0,1,0,2,14,7 -050,01,123,Alabama,Tallapoosa County,7,0,453,220,233,139,152,76,72,0,1,1,2,0,0,4,6,214,221,134,140,75,72,0,1,1,2,0,0,4,6,6,12,5,12,1,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,7,1,1899,950,949,633,609,292,313,1,2,2,7,0,0,22,18,921,912,609,577,290,309,1,2,2,7,0,0,19,17,29,37,24,32,2,4,0,0,0,0,0,0,3,1 -050,01,123,Alabama,Tallapoosa County,7,2,2457,1283,1174,801,719,453,428,4,3,6,9,1,0,18,15,1253,1157,777,703,451,427,4,3,6,9,0,0,15,15,30,17,24,16,2,1,0,0,0,0,1,0,3,0 -050,01,123,Alabama,Tallapoosa County,7,3,2870,1516,1354,972,830,518,503,3,6,4,1,2,0,17,14,1490,1338,953,819,515,500,3,5,4,1,0,0,15,13,26,16,19,11,3,3,0,1,0,0,2,0,2,1 -050,01,123,Alabama,Tallapoosa County,7,4,2796,1400,1396,927,879,447,498,5,4,8,6,0,0,13,9,1378,1374,909,863,445,494,5,4,7,6,0,0,12,7,22,22,18,16,2,4,0,0,1,0,0,0,1,2 -050,01,123,Alabama,Tallapoosa County,7,5,2243,1103,1140,732,737,350,386,6,5,3,3,2,1,10,8,1054,1113,698,719,345,379,2,5,3,3,0,0,6,7,49,27,34,18,5,7,4,0,0,0,2,1,4,1 -050,01,123,Alabama,Tallapoosa County,7,6,2091,1022,1069,701,652,308,401,3,0,5,7,0,2,5,7,975,1028,664,622,301,393,3,0,5,6,0,1,2,6,47,41,37,30,7,8,0,0,0,1,0,1,3,1 -050,01,123,Alabama,Tallapoosa County,7,7,2363,1122,1241,800,826,309,397,5,3,4,11,0,0,4,4,1080,1220,766,810,304,393,4,3,4,11,0,0,2,3,42,21,34,16,5,4,1,0,0,0,0,0,2,1 -050,01,123,Alabama,Tallapoosa County,7,8,2706,1323,1383,972,951,331,410,4,5,10,9,0,0,6,8,1285,1355,938,932,329,406,4,5,10,9,0,0,4,3,38,28,34,19,2,4,0,0,0,0,0,0,2,5 -050,01,123,Alabama,Tallapoosa County,7,9,2855,1369,1486,1016,1055,330,410,6,5,7,6,1,1,9,9,1350,1471,1003,1044,328,409,5,5,6,6,0,0,8,7,19,15,13,11,2,1,1,0,1,0,1,1,1,2 -050,01,123,Alabama,Tallapoosa County,7,10,3115,1555,1560,1160,1143,378,394,4,7,5,8,0,1,8,7,1539,1549,1147,1136,376,393,4,7,4,7,0,0,8,6,16,11,13,7,2,1,0,0,1,1,0,1,0,1 -050,01,123,Alabama,Tallapoosa County,7,11,2967,1457,1510,1088,1092,349,401,7,8,4,4,0,0,9,5,1448,1507,1083,1090,347,400,6,8,4,4,0,0,8,5,9,3,5,2,2,1,1,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,7,12,2917,1427,1490,1101,1164,312,309,3,5,2,5,0,0,9,7,1416,1486,1093,1160,309,309,3,5,2,5,0,0,9,7,11,4,8,4,3,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,7,13,2491,1185,1306,997,1060,179,235,3,3,1,2,0,0,5,6,1182,1300,996,1055,177,235,3,3,1,2,0,0,5,5,3,6,1,5,2,0,0,0,0,0,0,0,0,1 -050,01,123,Alabama,Tallapoosa County,7,14,1922,886,1036,734,850,145,181,3,2,0,2,0,0,4,1,882,1033,731,848,145,180,3,2,0,2,0,0,3,1,4,3,3,2,0,1,0,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,7,15,1681,724,957,631,788,90,164,1,2,0,1,0,0,2,2,719,953,627,786,89,162,1,2,0,1,0,0,2,2,5,4,4,2,1,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,7,16,1307,559,748,490,582,68,158,0,1,0,0,0,0,1,7,559,747,490,581,68,158,0,1,0,0,0,0,1,7,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,7,17,884,304,580,262,474,38,101,1,1,0,0,0,0,3,4,303,579,261,473,38,101,1,1,0,0,0,0,3,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,7,18,840,255,585,218,495,36,86,0,1,0,0,0,0,1,3,254,584,217,494,36,86,0,1,0,0,0,0,1,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,7,99,40857,19660,21197,14374,15058,5009,5847,59,64,62,83,6,5,150,140,19302,20927,14096,14852,4968,5806,52,63,59,81,0,1,127,124,358,270,278,206,41,41,7,1,3,2,6,4,23,16 -050,01,123,Alabama,Tallapoosa County,8,0,516,272,244,194,138,71,94,0,1,2,2,0,0,5,9,255,233,179,127,69,94,0,1,2,2,0,0,5,9,17,11,15,11,2,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,8,1,1872,942,930,611,592,306,309,2,2,4,7,0,0,19,20,906,892,582,563,302,305,2,2,4,7,0,0,16,15,36,38,29,29,4,4,0,0,0,0,0,0,3,5 -050,01,123,Alabama,Tallapoosa County,8,2,2457,1245,1212,769,757,448,423,4,3,6,10,1,0,17,19,1216,1194,746,741,445,422,4,3,6,10,0,0,15,18,29,18,23,16,3,1,0,0,0,0,1,0,2,1 -050,01,123,Alabama,Tallapoosa County,8,3,2827,1497,1330,951,816,522,492,1,6,5,1,2,0,16,15,1467,1312,929,804,518,488,1,5,5,1,0,0,14,14,30,18,22,12,4,4,0,1,0,0,2,0,2,1 -050,01,123,Alabama,Tallapoosa County,8,4,2950,1475,1475,979,934,464,518,5,4,8,7,1,0,18,12,1452,1448,963,913,462,514,5,3,7,7,0,0,15,11,23,27,16,21,2,4,0,1,1,0,1,0,3,1 -050,01,123,Alabama,Tallapoosa County,8,5,2223,1108,1115,736,696,351,401,7,4,3,3,3,1,8,10,1047,1086,693,675,344,395,3,4,3,3,0,0,4,9,61,29,43,21,7,6,4,0,0,0,3,1,4,1 -050,01,123,Alabama,Tallapoosa County,8,6,2181,1067,1114,728,705,325,389,4,0,6,8,0,2,4,10,1005,1068,677,670,317,382,4,0,6,7,0,1,1,8,62,46,51,35,8,7,0,0,0,1,0,1,3,2 -050,01,123,Alabama,Tallapoosa County,8,7,2262,1059,1203,756,781,287,405,6,2,4,10,0,0,6,5,1008,1184,715,769,281,400,4,2,4,10,0,0,4,3,51,19,41,12,6,5,2,0,0,0,0,0,2,2 -050,01,123,Alabama,Tallapoosa County,8,8,2735,1359,1376,1003,977,334,371,5,5,10,10,0,0,7,13,1326,1344,975,954,332,368,5,5,10,10,0,0,4,7,33,32,28,23,2,3,0,0,0,0,0,0,3,6 -050,01,123,Alabama,Tallapoosa County,8,9,2824,1345,1479,989,1044,334,415,6,5,7,6,1,0,8,9,1318,1463,969,1032,332,414,4,5,6,6,0,0,7,6,27,16,20,12,2,1,2,0,1,0,1,0,1,3 -050,01,123,Alabama,Tallapoosa County,8,10,3105,1551,1554,1152,1126,380,405,5,6,5,7,0,2,9,8,1535,1543,1139,1119,378,404,5,6,4,6,0,1,9,7,16,11,13,7,2,1,0,0,1,1,0,1,0,1 -050,01,123,Alabama,Tallapoosa County,8,11,2984,1463,1521,1089,1080,353,419,6,11,4,4,0,0,11,7,1455,1519,1084,1079,352,418,5,11,4,4,0,0,10,7,8,2,5,1,1,1,1,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,8,12,3061,1506,1555,1176,1198,317,341,2,4,2,5,0,0,9,7,1492,1550,1166,1193,313,341,2,4,2,5,0,0,9,7,14,5,10,5,4,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,8,13,2548,1207,1341,986,1082,209,245,4,5,2,3,0,0,6,6,1202,1335,983,1078,207,244,4,5,2,3,0,0,6,5,5,6,3,4,2,1,0,0,0,0,0,0,0,1 -050,01,123,Alabama,Tallapoosa County,8,14,1992,949,1043,800,850,143,187,3,2,1,2,0,0,2,2,944,1039,795,848,143,185,3,2,1,2,0,0,2,2,5,4,5,2,0,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,8,15,1677,733,944,627,773,102,166,1,2,1,1,0,0,2,2,727,939,622,769,101,165,1,2,1,1,0,0,2,2,6,5,5,4,1,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,8,16,1332,540,792,467,632,72,154,0,1,0,0,0,0,1,5,539,791,466,631,72,154,0,1,0,0,0,0,1,5,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,8,17,883,324,559,265,456,56,98,0,1,1,1,0,0,2,3,323,558,264,455,56,98,0,1,1,1,0,0,2,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,8,18,814,241,573,207,475,33,93,0,1,0,0,0,0,1,4,240,572,206,474,33,93,0,1,0,0,0,0,1,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,8,99,41243,19883,21360,14485,15112,5107,5925,61,65,71,87,8,5,151,166,19457,21070,14153,14894,5057,5884,52,63,68,85,0,2,127,142,426,290,332,218,50,41,9,2,3,2,8,3,24,24 -050,01,123,Alabama,Tallapoosa County,9,0,517,262,255,174,152,80,91,0,1,2,2,0,0,6,9,247,236,160,134,79,90,0,1,2,2,0,0,6,9,15,19,14,18,1,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,9,1,1855,933,922,625,574,286,315,2,2,4,8,0,0,16,23,884,879,582,543,283,308,2,2,4,8,0,0,13,18,49,43,43,31,3,7,0,0,0,0,0,0,3,5 -050,01,123,Alabama,Tallapoosa County,9,2,2463,1287,1176,806,753,451,389,3,3,7,12,1,0,19,19,1244,1154,771,735,447,388,3,3,7,11,0,0,16,17,43,22,35,18,4,1,0,0,0,1,1,0,3,2 -050,01,123,Alabama,Tallapoosa County,9,3,2745,1453,1292,934,784,490,487,2,6,5,1,2,0,20,14,1425,1271,913,769,487,483,2,5,5,1,0,0,18,13,28,21,21,15,3,4,0,1,0,0,2,0,2,1 -050,01,123,Alabama,Tallapoosa County,9,4,2963,1495,1468,986,905,474,538,5,3,8,7,1,0,21,15,1468,1435,967,881,472,533,5,2,7,7,0,0,17,12,27,33,19,24,2,5,0,1,1,0,1,0,4,3 -050,01,123,Alabama,Tallapoosa County,9,5,2244,1112,1132,745,718,345,394,7,4,3,3,3,1,9,12,1047,1104,699,698,338,388,3,4,3,3,0,0,4,11,65,28,46,20,7,6,4,0,0,0,3,1,5,1 -050,01,123,Alabama,Tallapoosa County,9,6,2213,1067,1146,737,716,316,408,4,0,7,10,0,1,3,11,999,1098,681,681,307,399,4,0,7,9,0,0,0,9,68,48,56,35,9,9,0,0,0,1,0,1,3,2 -050,01,123,Alabama,Tallapoosa County,9,7,2178,1045,1133,735,719,296,397,4,2,4,10,0,0,6,5,993,1110,693,703,291,392,2,2,4,10,0,0,3,3,52,23,42,16,5,5,2,0,0,0,0,0,3,2 -050,01,123,Alabama,Tallapoosa County,9,8,2744,1342,1402,992,964,327,409,5,5,10,11,0,0,8,13,1308,1366,963,938,325,406,5,5,10,11,0,0,5,6,34,36,29,26,2,3,0,0,0,0,0,0,3,7 -050,01,123,Alabama,Tallapoosa County,9,9,2811,1353,1458,981,1024,350,415,6,4,7,6,1,0,8,9,1321,1440,956,1011,348,413,4,4,6,6,0,0,7,6,32,18,25,13,2,2,2,0,1,0,1,0,1,3 -050,01,123,Alabama,Tallapoosa County,9,10,3036,1502,1534,1126,1119,355,392,4,6,6,7,0,2,11,8,1485,1523,1113,1112,353,391,4,6,4,6,0,1,11,7,17,11,13,7,2,1,0,0,2,1,0,1,0,1 -050,01,123,Alabama,Tallapoosa County,9,11,3160,1551,1609,1143,1145,382,441,8,10,4,5,0,0,14,8,1543,1605,1138,1142,381,440,7,10,4,5,0,0,13,8,8,4,5,3,1,1,1,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,9,12,2972,1480,1492,1131,1121,336,347,2,4,2,11,0,0,9,9,1467,1487,1122,1116,332,347,2,4,2,11,0,0,9,9,13,5,9,5,4,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,9,13,2743,1306,1437,1066,1165,227,258,5,5,2,3,0,0,6,6,1301,1428,1063,1159,225,256,5,5,2,3,0,0,6,5,5,9,3,6,2,2,0,0,0,0,0,0,0,1 -050,01,123,Alabama,Tallapoosa County,9,14,2027,976,1051,813,860,154,184,3,2,1,2,0,0,5,3,970,1048,808,859,154,182,3,2,1,2,0,0,4,3,6,3,5,1,0,2,0,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,9,15,1706,750,956,632,768,113,181,2,3,1,1,0,0,2,3,745,951,628,764,112,180,2,3,1,1,0,0,2,3,5,5,4,4,1,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,9,16,1308,529,779,461,648,67,126,0,0,0,0,0,0,1,5,528,778,460,647,67,126,0,0,0,0,0,0,1,5,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,9,17,905,349,556,297,438,48,112,0,1,1,1,0,0,3,4,347,555,295,437,48,112,0,1,1,1,0,0,3,4,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,9,18,824,256,568,221,471,34,92,0,1,0,0,0,0,1,4,255,567,220,470,34,92,0,1,0,0,0,0,1,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,9,99,41414,20048,21366,14605,15044,5131,5976,62,62,74,100,8,4,168,180,19577,21035,14232,14799,5083,5926,53,60,70,97,0,1,139,152,471,331,373,245,48,50,9,2,4,3,8,3,29,28 -050,01,123,Alabama,Tallapoosa County,10,0,538,286,252,192,158,84,83,0,1,2,2,0,0,8,8,268,229,174,136,84,82,0,1,2,2,0,0,8,8,18,23,18,22,0,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,10,1,1881,948,933,621,583,300,310,2,3,5,7,0,0,20,30,893,890,573,551,297,304,2,3,5,7,0,0,16,25,55,43,48,32,3,6,0,0,0,0,0,0,4,5 -050,01,123,Alabama,Tallapoosa County,10,2,2442,1241,1201,819,768,393,399,3,3,7,13,1,0,18,18,1183,1173,772,743,388,399,3,3,7,12,0,0,13,16,58,28,47,25,5,0,0,0,0,1,1,0,5,2 -050,01,123,Alabama,Tallapoosa County,10,3,2691,1420,1271,886,790,503,459,3,5,6,2,2,0,20,15,1395,1247,868,772,500,455,3,4,6,2,0,0,18,14,25,24,18,18,3,4,0,1,0,0,2,0,2,1 -050,01,123,Alabama,Tallapoosa County,10,4,3004,1541,1463,1029,880,476,558,4,2,9,7,1,0,22,16,1506,1433,1006,859,472,553,4,1,8,7,0,0,16,13,35,30,23,21,4,5,0,1,1,0,1,0,6,3 -050,01,123,Alabama,Tallapoosa County,10,5,2239,1112,1127,743,713,345,394,9,4,3,4,3,1,9,11,1041,1092,693,687,338,387,3,4,3,4,0,0,4,10,71,35,50,26,7,7,6,0,0,0,3,1,5,1 -050,01,123,Alabama,Tallapoosa County,10,6,2238,1066,1172,748,736,301,413,5,0,8,10,0,3,4,10,996,1119,693,699,290,401,5,0,8,9,0,2,0,8,70,53,55,37,11,12,0,0,0,1,0,1,4,2 -050,01,123,Alabama,Tallapoosa County,10,7,2114,1029,1085,736,708,277,359,3,2,5,9,0,0,8,7,975,1051,694,682,270,354,1,2,5,9,0,0,5,4,54,34,42,26,7,5,2,0,0,0,0,0,3,3 -050,01,123,Alabama,Tallapoosa County,10,8,2703,1288,1415,930,966,336,420,4,3,11,12,0,0,7,14,1250,1379,898,940,333,417,4,3,11,12,0,0,4,7,38,36,32,26,3,3,0,0,0,0,0,0,3,7 -050,01,123,Alabama,Tallapoosa County,10,9,2824,1382,1442,1011,991,344,430,5,4,10,6,1,2,11,9,1344,1419,982,976,342,428,3,4,9,6,0,0,8,5,38,23,29,15,2,2,2,0,1,0,1,2,3,4 -050,01,123,Alabama,Tallapoosa County,10,10,3027,1495,1532,1102,1114,373,397,4,5,4,6,0,1,12,9,1479,1517,1088,1104,371,396,4,5,4,5,0,0,12,7,16,15,14,10,2,1,0,0,0,1,0,1,0,2 -050,01,123,Alabama,Tallapoosa County,10,11,3218,1571,1647,1172,1182,371,436,8,13,6,7,0,0,14,9,1562,1643,1166,1179,370,435,7,13,6,7,0,0,13,9,9,4,6,3,1,1,1,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,10,12,2912,1446,1466,1065,1088,368,360,2,4,3,5,0,0,8,9,1433,1461,1056,1083,364,360,2,4,3,5,0,0,8,9,13,5,9,5,4,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,10,13,2851,1387,1464,1143,1177,231,271,5,7,2,4,0,0,6,5,1382,1456,1140,1172,229,269,5,7,2,4,0,0,6,4,5,8,3,5,2,2,0,0,0,0,0,0,0,1 -050,01,123,Alabama,Tallapoosa County,10,14,2156,1043,1113,861,904,173,201,3,3,1,2,0,0,5,3,1039,1109,858,902,173,199,3,3,1,2,0,0,4,3,4,4,3,2,0,2,0,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,10,15,1728,752,976,628,780,119,188,2,4,1,1,0,0,2,3,747,970,624,776,118,186,2,4,1,1,0,0,2,3,5,6,4,4,1,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,10,16,1329,527,802,465,643,61,153,0,0,0,0,0,0,1,6,526,801,464,642,61,153,0,0,0,0,0,0,1,6,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,10,17,990,373,617,320,486,49,124,0,1,0,1,0,0,4,5,371,616,318,485,49,124,0,1,0,1,0,0,4,5,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,10,18,783,242,541,209,434,32,102,0,1,0,0,0,0,1,4,241,540,208,433,32,102,0,1,0,0,0,0,1,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,10,99,41668,20149,21519,14680,15101,5136,6057,62,65,83,98,8,7,180,191,19631,21145,14275,14821,5081,6004,51,63,81,95,0,2,143,160,518,374,405,280,55,53,11,2,2,3,8,5,37,31 -050,01,123,Alabama,Tallapoosa County,11,0,492,247,245,149,150,88,81,1,1,2,3,0,0,7,10,233,224,137,130,87,80,0,1,2,3,0,0,7,10,14,21,12,20,1,1,1,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,11,1,1930,988,942,646,574,314,329,2,3,4,12,0,0,22,24,929,897,594,540,311,323,2,3,4,12,0,0,18,19,59,45,52,34,3,6,0,0,0,0,0,0,4,5 -050,01,123,Alabama,Tallapoosa County,11,2,2426,1229,1197,796,769,402,390,3,3,8,14,1,0,19,21,1174,1167,751,742,398,390,3,3,8,13,0,0,14,19,55,30,45,27,4,0,0,0,0,1,1,0,5,2 -050,01,123,Alabama,Tallapoosa County,11,3,2700,1411,1289,885,809,491,455,3,5,6,2,2,0,24,18,1377,1271,858,797,488,451,3,4,6,2,0,0,22,17,34,18,27,12,3,4,0,1,0,0,2,0,2,1 -050,01,123,Alabama,Tallapoosa County,11,4,2940,1506,1434,1013,870,451,538,6,2,10,7,1,0,25,17,1475,1401,994,845,447,534,6,1,9,7,0,0,19,14,31,33,19,25,4,4,0,1,1,0,1,0,6,3 -050,01,123,Alabama,Tallapoosa County,11,5,2219,1099,1120,748,693,328,407,8,4,3,4,3,1,9,11,1022,1086,693,668,320,400,2,4,3,4,0,0,4,10,77,34,55,25,8,7,6,0,0,0,3,1,5,1 -050,01,123,Alabama,Tallapoosa County,11,6,2299,1108,1191,753,763,338,405,5,0,8,11,0,1,4,11,1035,1133,696,719,326,395,5,0,8,10,0,0,0,9,73,58,57,44,12,10,0,0,0,1,0,1,4,2 -050,01,123,Alabama,Tallapoosa County,11,7,2133,1047,1086,753,711,279,353,3,2,5,12,0,0,7,8,984,1046,702,682,272,346,1,2,5,12,0,0,4,4,63,40,51,29,7,7,2,0,0,0,0,0,3,4 -050,01,123,Alabama,Tallapoosa County,11,8,2696,1259,1437,901,985,335,422,4,3,12,13,0,0,7,14,1202,1395,851,953,331,419,4,3,12,13,0,0,4,7,57,42,50,32,4,3,0,0,0,0,0,0,3,7 -050,01,123,Alabama,Tallapoosa County,11,9,2788,1370,1418,1001,957,341,441,6,4,11,6,1,1,10,9,1332,1393,973,939,338,439,4,4,10,6,0,0,7,5,38,25,28,18,3,2,2,0,1,0,1,1,3,4 -050,01,123,Alabama,Tallapoosa County,11,10,2976,1488,1488,1091,1074,375,392,4,5,5,6,0,2,13,9,1470,1466,1076,1057,373,391,4,5,4,5,0,1,13,7,18,22,15,17,2,1,0,0,1,1,0,1,0,2 -050,01,123,Alabama,Tallapoosa County,11,11,3225,1574,1651,1182,1203,361,417,9,14,6,7,0,0,16,10,1564,1646,1175,1199,360,416,8,14,6,7,0,0,15,10,10,5,7,4,1,1,1,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,11,12,3040,1492,1548,1111,1147,368,383,2,4,3,5,0,0,8,9,1477,1542,1100,1141,364,383,2,4,3,5,0,0,8,9,15,6,11,6,4,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,11,13,2861,1380,1481,1111,1170,255,295,6,7,2,4,0,0,6,5,1374,1473,1108,1165,252,293,6,7,2,4,0,0,6,4,6,8,3,5,3,2,0,0,0,0,0,0,0,1 -050,01,123,Alabama,Tallapoosa County,11,14,2295,1104,1191,915,974,179,208,3,3,1,2,0,0,6,4,1096,1187,907,972,179,206,3,3,1,2,0,0,6,4,8,4,8,2,0,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,11,15,1745,786,959,656,781,124,171,2,3,1,1,0,0,3,3,780,952,651,776,123,169,2,3,1,1,0,0,3,3,6,7,5,5,1,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,11,16,1319,559,760,474,626,84,128,0,0,0,0,0,0,1,6,558,759,473,625,84,128,0,0,0,0,0,0,1,6,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,11,17,949,374,575,316,459,53,108,0,1,1,1,0,0,4,6,372,574,314,458,53,108,0,1,1,1,0,0,4,6,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,11,18,798,259,539,220,429,38,106,0,1,0,0,0,0,1,3,258,538,219,428,38,106,0,1,0,0,0,0,1,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,11,99,41831,20280,21551,14721,15144,5204,6029,67,65,88,110,8,5,192,198,19712,21150,14272,14836,5144,5977,55,63,85,107,0,1,156,166,568,401,449,308,60,52,12,2,3,3,8,4,36,32 -050,01,123,Alabama,Tallapoosa County,12,0,473,237,236,146,138,81,87,1,1,2,3,0,0,7,7,224,217,136,120,79,86,0,1,2,3,0,0,7,7,13,19,10,18,2,1,1,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,12,1,1937,984,953,616,591,336,322,2,3,6,12,0,0,24,25,934,898,573,548,333,315,2,3,6,12,0,0,20,20,50,55,43,43,3,7,0,0,0,0,0,0,4,5 -050,01,123,Alabama,Tallapoosa County,12,2,2372,1208,1164,775,744,398,381,3,3,8,14,1,0,23,22,1151,1130,728,713,394,381,3,3,8,13,0,0,18,20,57,34,47,31,4,0,0,0,0,1,1,0,5,2 -050,01,123,Alabama,Tallapoosa County,12,3,2691,1396,1295,893,809,468,459,3,5,6,2,2,0,24,20,1359,1276,863,796,465,455,3,4,6,2,0,0,22,19,37,19,30,13,3,4,0,1,0,0,2,0,2,1 -050,01,123,Alabama,Tallapoosa County,12,4,2848,1480,1368,989,834,449,508,6,2,10,7,1,0,25,17,1441,1332,962,807,445,503,6,1,9,7,0,0,19,14,39,36,27,27,4,5,0,1,1,0,1,0,6,3 -050,01,123,Alabama,Tallapoosa County,12,5,2237,1102,1135,741,686,336,428,10,4,3,4,3,1,9,12,1015,1098,677,659,327,420,4,4,3,4,0,0,4,11,87,37,64,27,9,8,6,0,0,0,3,1,5,1 -050,01,123,Alabama,Tallapoosa County,12,6,2236,1070,1166,739,747,313,394,5,0,9,12,0,2,4,11,976,1106,662,702,300,383,5,0,9,11,0,1,0,9,94,60,77,45,13,11,0,0,0,1,0,1,4,2 -050,01,123,Alabama,Tallapoosa County,12,7,2160,1081,1079,780,707,285,350,3,2,5,12,0,0,8,8,1007,1037,719,676,277,343,1,2,5,12,0,0,5,4,74,42,61,31,8,7,2,0,0,0,0,0,3,4 -050,01,123,Alabama,Tallapoosa County,12,8,2582,1197,1385,845,940,327,415,4,3,12,13,0,0,9,14,1138,1345,795,910,323,412,4,3,12,13,0,0,4,7,59,40,50,30,4,3,0,0,0,0,0,0,5,7 -050,01,123,Alabama,Tallapoosa County,12,9,2716,1331,1385,973,940,329,424,5,4,11,6,2,1,11,10,1291,1359,944,922,326,422,3,4,10,6,0,0,8,5,40,26,29,18,3,2,2,0,1,0,2,1,3,5 -050,01,123,Alabama,Tallapoosa County,12,10,2938,1449,1489,1068,1057,358,410,4,5,6,6,0,2,13,9,1429,1468,1051,1041,356,409,4,5,5,5,0,1,13,7,20,21,17,16,2,1,0,0,1,1,0,1,0,2 -050,01,123,Alabama,Tallapoosa County,12,11,3248,1579,1669,1183,1217,365,421,9,14,6,7,0,0,16,10,1569,1665,1176,1214,364,420,8,14,6,7,0,0,15,10,10,4,7,3,1,1,1,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,12,12,3039,1499,1540,1121,1155,364,365,2,4,3,7,0,0,9,9,1481,1534,1107,1149,360,365,2,4,3,7,0,0,9,9,18,6,14,6,4,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,12,13,2946,1432,1514,1149,1182,269,316,6,7,2,4,0,0,6,5,1426,1506,1146,1177,266,314,6,7,2,4,0,0,6,4,6,8,3,5,3,2,0,0,0,0,0,0,0,1 -050,01,123,Alabama,Tallapoosa County,12,14,2325,1110,1215,921,995,178,211,3,3,1,2,0,0,7,4,1103,1211,915,993,178,209,3,3,1,2,0,0,6,4,7,4,6,2,0,2,0,0,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,12,15,1782,820,962,680,783,134,170,2,4,1,1,0,0,3,4,814,955,675,778,133,168,2,4,1,1,0,0,3,4,6,7,5,5,1,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,12,16,1332,563,769,483,630,79,133,0,0,0,0,0,0,1,6,562,768,482,629,79,133,0,0,0,0,0,0,1,6,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,12,17,960,385,575,320,456,60,111,0,1,1,1,0,0,4,6,383,574,318,455,60,111,0,1,1,1,0,0,4,6,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,12,18,794,267,527,224,421,42,101,0,1,0,0,0,0,1,4,266,526,223,420,42,101,0,1,0,0,0,0,1,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,12,99,41616,20190,21426,14646,15032,5171,6006,68,66,92,113,9,6,204,203,19569,21005,14152,14709,5107,5950,56,64,89,110,0,2,165,170,621,421,494,323,64,56,12,2,3,3,9,4,39,33 -050,01,123,Alabama,Tallapoosa County,13,0,470,239,231,147,136,81,85,1,1,1,2,1,0,8,7,223,214,136,119,79,85,0,1,1,2,0,0,7,7,16,17,11,17,2,0,1,0,0,0,1,0,1,0 -050,01,123,Alabama,Tallapoosa County,13,1,1939,986,953,612,590,335,323,2,4,7,11,1,2,29,23,935,897,569,545,333,316,2,4,6,10,0,1,25,21,51,56,43,45,2,7,0,0,1,1,1,1,4,2 -050,01,123,Alabama,Tallapoosa County,13,2,2373,1210,1163,770,739,398,380,5,3,11,13,2,2,24,26,1149,1125,723,708,392,379,3,3,10,12,1,0,20,23,61,38,47,31,6,1,2,0,1,1,1,2,4,3 -050,01,123,Alabama,Tallapoosa County,13,3,2681,1388,1293,887,804,463,456,4,3,10,4,2,2,22,24,1353,1275,857,791,462,453,4,3,8,3,1,2,21,23,35,18,30,13,1,3,0,0,2,1,1,0,1,1 -050,01,123,Alabama,Tallapoosa County,13,4,2816,1456,1360,975,825,445,503,6,4,9,6,4,0,17,22,1422,1322,950,798,442,499,4,2,8,6,2,0,16,17,34,38,25,27,3,4,2,2,1,0,2,0,1,5 -050,01,123,Alabama,Tallapoosa County,13,5,2240,1100,1140,738,688,337,429,10,6,3,3,2,1,10,13,1018,1102,674,660,329,422,4,5,2,3,1,0,8,12,82,38,64,28,8,7,6,1,1,0,1,1,2,1 -050,01,123,Alabama,Tallapoosa County,13,6,2237,1077,1160,741,744,309,391,7,3,8,11,1,1,11,10,977,1102,663,700,300,382,3,0,6,10,0,1,5,9,100,58,78,44,9,9,4,3,2,1,1,0,6,1 -050,01,123,Alabama,Tallapoosa County,13,7,2169,1086,1083,781,706,286,350,5,6,4,13,3,2,7,6,1011,1041,721,677,279,343,2,3,3,11,2,1,4,6,75,42,60,29,7,7,3,3,1,2,1,1,3,0 -050,01,123,Alabama,Tallapoosa County,13,8,2555,1186,1369,836,926,324,410,4,7,13,13,1,1,8,12,1130,1331,785,896,321,408,4,4,13,13,0,0,7,10,56,38,51,30,3,2,0,3,0,0,1,1,1,2 -050,01,123,Alabama,Tallapoosa County,13,9,2706,1317,1389,965,936,327,425,4,8,11,8,3,2,7,10,1282,1365,937,918,324,423,3,6,11,8,1,1,6,9,35,24,28,18,3,2,1,2,0,0,2,1,1,1 -050,01,123,Alabama,Tallapoosa County,13,10,2913,1439,1474,1059,1044,358,407,6,6,5,5,0,0,11,12,1415,1456,1041,1030,354,406,4,5,5,4,0,0,11,11,24,18,18,14,4,1,2,1,0,1,0,0,0,1 -050,01,123,Alabama,Tallapoosa County,13,11,3231,1565,1666,1179,1215,365,420,8,14,4,6,1,0,8,11,1556,1660,1171,1211,365,419,7,13,4,6,1,0,8,11,9,6,8,4,0,1,1,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,13,12,3036,1495,1541,1121,1155,362,364,2,3,2,10,0,0,8,9,1478,1534,1107,1149,359,363,2,3,2,10,0,0,8,9,17,7,14,6,3,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,13,13,2964,1440,1524,1155,1188,272,320,5,8,2,4,0,0,6,4,1434,1518,1150,1184,271,318,5,8,2,4,0,0,6,4,6,6,5,4,1,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,13,14,2329,1113,1216,923,996,179,211,3,3,3,2,0,0,5,4,1107,1212,917,993,179,210,3,3,3,2,0,0,5,4,6,4,6,3,0,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,13,15,1777,817,960,677,782,133,169,3,4,2,0,0,0,2,5,814,954,674,777,133,168,3,4,2,0,0,0,2,5,3,6,3,5,0,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,13,16,1328,563,765,481,625,79,134,0,0,1,2,0,0,2,4,562,763,480,623,79,134,0,0,1,2,0,0,2,4,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,13,17,958,386,572,321,453,60,113,2,0,0,1,0,0,3,5,384,572,319,453,60,113,2,0,0,1,0,0,3,5,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,13,18,794,267,527,224,421,42,102,0,1,0,0,0,0,1,3,266,526,223,420,42,102,0,1,0,0,0,0,1,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,13,99,41516,20130,21386,14592,14973,5155,5992,77,84,96,114,21,13,189,210,19516,20969,14097,14652,5103,5943,55,68,87,107,9,6,165,193,614,417,495,321,52,49,22,16,9,7,12,7,24,17 -050,01,125,Alabama,Tuscaloosa County,1,0,2140,1115,1025,690,627,407,374,0,3,7,7,0,0,11,14,1098,998,674,603,407,372,0,3,7,6,0,0,10,14,17,27,16,24,0,2,0,0,0,1,0,0,1,0 -050,01,125,Alabama,Tuscaloosa County,1,1,8451,4296,4155,2608,2449,1599,1604,5,5,27,36,0,0,57,61,4217,4069,2546,2383,1587,1589,4,5,27,36,0,0,53,56,79,86,62,66,12,15,1,0,0,0,0,0,4,5 -050,01,125,Alabama,Tuscaloosa County,1,2,10859,5547,5312,3284,3157,2146,2055,7,8,49,33,0,0,61,59,5429,5232,3190,3087,2125,2047,6,8,48,33,0,0,60,57,118,80,94,70,21,8,1,0,1,0,0,0,1,2 -050,01,125,Alabama,Tuscaloosa County,1,3,10693,5473,5220,3388,3198,2003,1911,9,10,28,44,1,0,44,57,5409,5145,3339,3132,1992,1904,9,10,26,43,1,0,42,56,64,75,49,66,11,7,0,0,2,1,0,0,2,1 -050,01,125,Alabama,Tuscaloosa County,1,4,14566,6922,7644,4476,4602,2301,2910,19,21,62,60,4,1,60,50,6809,7563,4385,4537,2283,2900,19,18,61,59,3,0,58,49,113,81,91,65,18,10,0,3,1,1,1,1,2,1 -050,01,125,Alabama,Tuscaloosa County,1,5,19129,9305,9824,6792,6501,2249,3109,22,27,171,136,9,3,62,48,9089,9705,6595,6402,2240,3094,21,24,170,135,2,3,61,47,216,119,197,99,9,15,1,3,1,1,7,0,1,1 -050,01,125,Alabama,Tuscaloosa County,1,6,12345,6209,6136,4351,3894,1641,2082,12,13,164,98,2,5,39,44,6051,6054,4207,3823,1633,2074,11,11,163,98,0,4,37,44,158,82,144,71,8,8,1,2,1,0,2,1,2,0 -050,01,125,Alabama,Tuscaloosa County,1,7,10614,5230,5384,3766,3569,1333,1685,20,15,88,78,5,2,18,35,5116,5307,3663,3505,1329,1676,19,14,87,78,0,2,18,32,114,77,103,64,4,9,1,1,1,0,5,0,0,3 -050,01,125,Alabama,Tuscaloosa County,1,8,11270,5515,5755,4002,3856,1405,1797,10,15,69,66,1,0,28,21,5412,5700,3910,3809,1398,1790,9,15,68,65,0,0,27,21,103,55,92,47,7,7,1,0,1,1,1,0,1,0 -050,01,125,Alabama,Tuscaloosa County,1,9,12056,5719,6337,4098,4302,1526,1938,18,16,38,39,0,1,39,41,5660,6278,4050,4249,1522,1934,16,15,36,39,0,0,36,41,59,59,48,53,4,4,2,1,2,0,0,1,3,0 -050,01,125,Alabama,Tuscaloosa County,1,10,11603,5629,5974,4082,4066,1479,1816,6,18,30,43,4,2,28,29,5571,5931,4030,4032,1478,1810,5,18,30,43,0,1,28,27,58,43,52,34,1,6,1,0,0,0,4,1,0,2 -050,01,125,Alabama,Tuscaloosa County,1,11,9770,4758,5012,3663,3695,1025,1225,17,23,29,41,2,1,22,27,4731,4977,3642,3663,1021,1222,17,23,29,41,0,1,22,27,27,35,21,32,4,3,0,0,0,0,2,0,0,0 -050,01,125,Alabama,Tuscaloosa County,1,12,7079,3444,3635,2731,2784,663,800,5,7,17,19,2,0,26,25,3419,3614,2711,2766,661,797,5,7,17,19,1,0,24,25,25,21,20,18,2,3,0,0,0,0,1,0,2,0 -050,01,125,Alabama,Tuscaloosa County,1,13,5781,2730,3051,2151,2275,555,749,6,6,9,11,1,0,8,10,2714,3033,2137,2263,554,744,6,6,9,11,0,0,8,9,16,18,14,12,1,5,0,0,0,0,1,0,0,1 -050,01,125,Alabama,Tuscaloosa County,1,14,5363,2338,3025,1834,2294,490,703,4,6,3,10,1,0,6,12,2329,3014,1828,2283,488,703,4,6,3,10,0,0,6,12,9,11,6,11,2,0,0,0,0,0,1,0,0,0 -050,01,125,Alabama,Tuscaloosa County,1,15,5033,2113,2920,1707,2187,391,703,4,3,5,8,1,0,5,19,2103,2901,1699,2171,391,701,4,3,5,8,0,0,4,18,10,19,8,16,0,2,0,0,0,0,1,0,1,1 -050,01,125,Alabama,Tuscaloosa County,1,16,3752,1603,2149,1295,1689,290,444,9,2,6,8,1,1,2,5,1593,2133,1287,1675,288,443,9,2,6,8,1,0,2,5,10,16,8,14,2,1,0,0,0,0,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,1,17,2368,860,1508,701,1167,156,330,1,0,0,3,0,2,2,6,856,1496,697,1157,156,330,1,0,0,3,0,0,2,6,4,12,4,10,0,0,0,0,0,0,0,2,0,0 -050,01,125,Alabama,Tuscaloosa County,1,18,2060,586,1474,432,1081,149,385,0,0,3,2,0,0,2,6,584,1470,430,1077,149,385,0,0,3,2,0,0,2,6,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,1,99,164932,79392,85540,56051,57393,21808,26620,174,198,805,742,34,18,520,569,78190,84620,55020,56617,21702,26515,165,188,795,737,8,11,500,552,1202,920,1031,776,106,105,9,10,10,5,26,7,20,17 -050,01,125,Alabama,Tuscaloosa County,2,0,2152,1119,1033,692,631,411,378,0,3,7,7,0,0,9,14,1101,1005,675,606,411,376,0,3,7,6,0,0,8,14,18,28,17,25,0,2,0,0,0,1,0,0,1,0 -050,01,125,Alabama,Tuscaloosa County,2,1,8402,4270,4132,2589,2430,1590,1598,5,5,27,36,0,0,59,63,4191,4046,2527,2364,1578,1583,4,5,27,36,0,0,55,58,79,86,62,66,12,15,1,0,0,0,0,0,4,5 -050,01,125,Alabama,Tuscaloosa County,2,2,10789,5510,5279,3254,3130,2139,2045,7,8,49,33,0,0,61,63,5392,5199,3160,3060,2118,2037,6,8,48,33,0,0,60,61,118,80,94,70,21,8,1,0,1,0,0,0,1,2 -050,01,125,Alabama,Tuscaloosa County,2,3,10721,5486,5235,3385,3201,2023,1928,9,10,28,44,1,0,40,52,5422,5160,3336,3135,2012,1921,9,10,26,43,1,0,38,51,64,75,49,66,11,7,0,0,2,1,0,0,2,1 -050,01,125,Alabama,Tuscaloosa County,2,4,14687,6997,7690,4527,4654,2316,2909,19,21,80,61,4,1,51,44,6881,7605,4434,4588,2298,2896,19,18,79,60,3,0,48,43,116,85,93,66,18,13,0,3,1,1,1,1,3,1 -050,01,125,Alabama,Tuscaloosa County,2,5,19381,9403,9978,6854,6568,2272,3114,22,32,194,189,9,3,52,72,9173,9846,6643,6457,2263,3098,21,29,193,188,2,3,51,71,230,132,211,111,9,16,1,3,1,1,7,0,1,1 -050,01,125,Alabama,Tuscaloosa County,2,6,12272,6174,6098,4323,3863,1632,2073,12,13,167,100,2,5,38,44,6008,6013,4171,3789,1624,2065,11,11,166,100,0,4,36,44,166,85,152,74,8,8,1,2,1,0,2,1,2,0 -050,01,125,Alabama,Tuscaloosa County,2,7,10622,5235,5387,3766,3568,1335,1689,20,15,89,78,5,2,20,35,5118,5309,3660,3503,1331,1680,19,14,88,78,0,2,20,32,117,78,106,65,4,9,1,1,1,0,5,0,0,3 -050,01,125,Alabama,Tuscaloosa County,2,8,11228,5489,5739,3974,3833,1406,1800,10,15,69,66,1,0,29,25,5384,5683,3880,3785,1399,1793,9,15,68,65,0,0,28,25,105,56,94,48,7,7,1,0,1,1,1,0,1,0 -050,01,125,Alabama,Tuscaloosa County,2,9,12077,5730,6347,4101,4305,1534,1950,18,16,38,39,0,1,39,36,5670,6287,4052,4251,1530,1946,16,15,36,39,0,0,36,36,60,60,49,54,4,4,2,1,2,0,0,1,3,0 -050,01,125,Alabama,Tuscaloosa County,2,10,11674,5667,6007,4103,4085,1495,1829,6,18,30,43,4,2,29,30,5609,5964,4051,4051,1494,1823,5,18,30,43,0,1,29,28,58,43,52,34,1,6,1,0,0,0,4,1,0,2 -050,01,125,Alabama,Tuscaloosa County,2,11,9865,4802,5063,3694,3726,1039,1244,17,23,29,41,2,1,21,28,4775,5028,3673,3694,1035,1241,17,23,29,41,0,1,21,28,27,35,21,32,4,3,0,0,0,0,2,0,0,0 -050,01,125,Alabama,Tuscaloosa County,2,12,7130,3469,3661,2747,2800,668,806,5,7,17,20,2,0,30,28,3444,3640,2727,2782,666,803,5,7,17,20,1,0,28,28,25,21,20,18,2,3,0,0,0,0,1,0,2,0 -050,01,125,Alabama,Tuscaloosa County,2,13,5806,2743,3063,2160,2285,560,754,6,6,9,11,1,0,7,7,2727,3045,2146,2273,559,749,6,6,9,11,0,0,7,6,16,18,14,12,1,5,0,0,0,0,1,0,0,1 -050,01,125,Alabama,Tuscaloosa County,2,14,5365,2341,3024,1831,2288,495,707,4,6,3,10,1,0,7,13,2332,3013,1825,2277,493,707,4,6,3,10,0,0,7,13,9,11,6,11,2,0,0,0,0,0,1,0,0,0 -050,01,125,Alabama,Tuscaloosa County,2,15,5034,2117,2917,1708,2180,394,706,4,3,5,8,1,0,5,20,2107,2898,1700,2164,394,704,4,3,5,8,0,0,4,19,10,19,8,16,0,2,0,0,0,0,1,0,1,1 -050,01,125,Alabama,Tuscaloosa County,2,16,3765,1609,2156,1296,1690,295,450,9,2,6,8,1,1,2,5,1599,2140,1288,1676,293,449,9,2,6,8,1,0,2,5,10,16,8,14,2,1,0,0,0,0,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,2,17,2382,866,1516,705,1174,158,333,1,0,0,3,0,2,2,4,862,1504,701,1164,158,333,1,0,0,3,0,0,2,4,4,12,4,10,0,0,0,0,0,0,0,2,0,0 -050,01,125,Alabama,Tuscaloosa County,2,18,2062,586,1476,433,1086,148,383,0,0,3,2,0,0,2,5,584,1472,431,1082,148,383,0,0,3,2,0,0,2,5,2,4,2,4,0,0,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,2,99,165414,79613,85801,56142,57497,21910,26696,174,203,850,799,34,18,503,588,78379,84857,55080,56701,21804,26587,165,193,840,794,8,11,482,571,1234,944,1062,796,106,109,9,10,10,5,26,7,21,17 -050,01,125,Alabama,Tuscaloosa County,3,0,2180,1122,1058,692,651,403,377,0,2,12,11,1,1,14,16,1090,1031,664,626,401,376,0,2,12,10,0,1,13,16,32,27,28,25,2,1,0,0,0,1,1,0,1,0 -050,01,125,Alabama,Tuscaloosa County,3,1,8321,4288,4033,2612,2401,1589,1531,7,5,21,32,0,0,59,64,4211,3935,2555,2318,1576,1521,5,5,21,32,0,0,54,59,77,98,57,83,13,10,2,0,0,0,0,0,5,5 -050,01,125,Alabama,Tuscaloosa County,3,2,10710,5497,5213,3212,3046,2158,2058,11,6,53,37,0,0,63,66,5381,5124,3122,2971,2136,2046,9,6,52,37,0,0,62,64,116,89,90,75,22,12,2,0,1,0,0,0,1,2 -050,01,125,Alabama,Tuscaloosa County,3,3,10742,5459,5283,3301,3204,2070,1986,13,9,27,30,1,1,47,53,5377,5204,3232,3136,2062,1977,13,9,24,30,1,1,45,51,82,79,69,68,8,9,0,0,3,0,0,0,2,2 -050,01,125,Alabama,Tuscaloosa County,3,4,15158,7226,7932,4675,4862,2384,2916,19,19,97,75,6,1,45,59,7102,7826,4576,4779,2365,2900,18,15,96,74,4,0,43,58,124,106,99,83,19,16,1,4,1,1,2,1,2,1 -050,01,125,Alabama,Tuscaloosa County,3,5,20630,10136,10494,7425,6915,2407,3242,27,45,200,198,11,4,66,90,9818,10319,7133,6762,2394,3227,24,40,199,197,3,4,65,89,318,175,292,153,13,15,3,5,1,1,8,0,1,1 -050,01,125,Alabama,Tuscaloosa County,3,6,11262,5595,5667,3972,3625,1432,1862,19,11,131,118,5,6,36,45,5388,5567,3791,3536,1419,1855,14,9,130,118,1,5,33,44,207,100,181,89,13,7,5,2,1,0,4,1,3,1 -050,01,125,Alabama,Tuscaloosa County,3,7,10946,5388,5558,3827,3626,1426,1797,15,14,89,83,6,2,25,36,5241,5467,3695,3551,1420,1787,13,11,88,83,0,2,25,33,147,91,132,75,6,10,2,3,1,0,6,0,0,3 -050,01,125,Alabama,Tuscaloosa County,3,8,11013,5313,5700,3868,3782,1341,1807,12,18,65,65,1,0,26,28,5181,5641,3749,3733,1334,1798,10,18,64,64,0,0,24,28,132,59,119,49,7,9,2,0,1,1,1,0,2,0 -050,01,125,Alabama,Tuscaloosa County,3,9,11746,5617,6129,4070,4150,1450,1889,19,18,38,34,0,1,40,37,5538,6070,4003,4100,1445,1883,17,17,36,33,0,0,37,37,79,59,67,50,5,6,2,1,2,1,0,1,3,0 -050,01,125,Alabama,Tuscaloosa County,3,10,11822,5725,6097,4091,4173,1561,1840,8,11,28,41,5,2,32,30,5664,6047,4042,4132,1556,1834,6,11,28,41,0,1,32,28,61,50,49,41,5,6,2,0,0,0,5,1,0,2 -050,01,125,Alabama,Tuscaloosa County,3,11,10488,5061,5427,3841,3896,1148,1427,19,24,29,46,2,1,22,33,5034,5391,3821,3863,1143,1424,19,24,29,46,0,1,22,33,27,36,20,33,5,3,0,0,0,0,2,0,0,0 -050,01,125,Alabama,Tuscaloosa County,3,12,7262,3514,3748,2777,2855,685,832,8,10,18,21,2,0,24,30,3489,3726,2758,2836,682,829,7,10,18,21,1,0,23,30,25,22,19,19,3,3,1,0,0,0,1,0,1,0 -050,01,125,Alabama,Tuscaloosa County,3,13,5987,2867,3120,2276,2341,563,750,8,8,11,11,1,0,8,10,2847,3105,2258,2331,562,746,8,8,11,11,0,0,8,9,20,15,18,10,1,4,0,0,0,0,1,0,0,1 -050,01,125,Alabama,Tuscaloosa County,3,14,5349,2352,2997,1839,2242,490,720,6,6,8,14,1,0,8,15,2341,2987,1831,2232,488,720,6,6,8,14,0,0,8,15,11,10,8,10,2,0,0,0,0,0,1,0,0,0 -050,01,125,Alabama,Tuscaloosa County,3,15,4983,2076,2907,1661,2213,401,661,4,3,5,8,1,0,4,22,2067,2887,1654,2197,401,659,4,3,5,8,0,0,3,20,9,20,7,16,0,2,0,0,0,0,1,0,1,2 -050,01,125,Alabama,Tuscaloosa County,3,16,3894,1669,2225,1346,1737,304,471,10,2,6,10,1,1,2,4,1660,2204,1338,1718,303,470,10,2,6,10,1,0,2,4,9,21,8,19,1,1,0,0,0,0,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,3,17,2433,879,1554,719,1213,156,329,1,0,0,3,0,2,3,7,876,1539,716,1200,156,329,1,0,0,3,0,0,3,7,3,15,3,13,0,0,0,0,0,0,0,2,0,0 -050,01,125,Alabama,Tuscaloosa County,3,18,2025,585,1440,436,1070,143,363,1,0,3,2,0,0,2,5,584,1436,435,1066,143,363,1,0,3,2,0,0,2,5,1,4,1,4,0,0,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,3,99,166951,80369,86582,56640,58002,22111,26858,207,211,841,839,44,22,526,650,78889,85506,55373,57087,21986,26744,185,196,830,834,11,15,504,630,1480,1076,1267,915,125,114,22,15,11,5,33,7,22,20 -050,01,125,Alabama,Tuscaloosa County,4,0,2182,1114,1068,696,652,394,383,0,2,8,11,1,1,15,19,1074,1044,661,630,392,382,0,2,8,10,0,1,13,19,40,24,35,22,2,1,0,0,0,1,1,0,2,0 -050,01,125,Alabama,Tuscaloosa County,4,1,8381,4281,4100,2604,2478,1591,1505,7,5,21,38,1,0,57,74,4191,3990,2531,2386,1582,1494,4,5,21,38,1,0,52,67,90,110,73,92,9,11,3,0,0,0,0,0,5,7 -050,01,125,Alabama,Tuscaloosa County,4,2,10667,5486,5181,3167,2994,2191,2069,10,9,51,35,2,0,65,74,5376,5079,3087,2909,2167,2055,6,8,51,35,1,0,64,72,110,102,80,85,24,14,4,1,0,0,1,0,1,2 -050,01,125,Alabama,Tuscaloosa County,4,3,10914,5540,5374,3339,3207,2121,2064,7,10,27,34,1,1,45,58,5435,5285,3249,3132,2111,2054,6,9,25,33,1,1,43,56,105,89,90,75,10,10,1,1,2,1,0,0,2,2 -050,01,125,Alabama,Tuscaloosa County,4,4,15131,7207,7924,4668,4998,2360,2762,20,23,100,83,6,2,53,56,7097,7798,4581,4894,2346,2747,17,18,98,83,4,1,51,55,110,126,87,104,14,15,3,5,2,0,2,1,2,1 -050,01,125,Alabama,Tuscaloosa County,4,5,21291,10556,10735,7780,7116,2449,3274,29,40,211,208,12,4,75,93,10221,10525,7476,6939,2434,3250,26,35,210,207,3,3,72,91,335,210,304,177,15,24,3,5,1,1,9,1,3,2 -050,01,125,Alabama,Tuscaloosa County,4,6,10841,5349,5492,3756,3562,1427,1774,20,14,110,98,4,7,32,37,5117,5386,3550,3471,1414,1765,13,10,109,98,1,5,30,37,232,106,206,91,13,9,7,4,1,0,3,2,2,0 -050,01,125,Alabama,Tuscaloosa County,4,7,11230,5583,5647,3945,3642,1473,1870,16,16,110,83,6,2,33,34,5434,5546,3815,3558,1465,1861,13,12,109,83,0,1,32,31,149,101,130,84,8,9,3,4,1,0,6,1,1,3 -050,01,125,Alabama,Tuscaloosa County,4,8,10807,5195,5612,3753,3718,1338,1788,15,18,60,57,2,0,27,31,5062,5542,3633,3660,1332,1778,13,17,59,56,0,0,25,31,133,70,120,58,6,10,2,1,1,1,2,0,2,0 -050,01,125,Alabama,Tuscaloosa County,4,9,11453,5436,6017,3969,4069,1380,1859,18,17,31,39,1,1,37,32,5338,5952,3885,4017,1375,1850,14,15,29,38,1,0,34,32,98,65,84,52,5,9,4,2,2,1,0,1,3,0 -050,01,125,Alabama,Tuscaloosa County,4,10,12049,5842,6207,4147,4194,1615,1922,9,16,34,42,6,1,31,32,5774,6151,4093,4147,1610,1916,7,15,33,42,0,0,31,31,68,56,54,47,5,6,2,1,1,0,6,1,0,1 -050,01,125,Alabama,Tuscaloosa County,4,11,10558,5113,5445,3799,3829,1246,1522,19,22,25,45,2,1,22,26,5081,5413,3776,3800,1241,1519,17,22,25,45,0,1,22,26,32,32,23,29,5,3,2,0,0,0,2,0,0,0 -050,01,125,Alabama,Tuscaloosa County,4,12,7900,3794,4106,2990,3125,741,910,11,11,21,30,3,0,28,30,3761,4079,2965,3101,736,907,10,11,21,30,2,0,27,30,33,27,25,24,5,3,1,0,0,0,1,0,1,0 -050,01,125,Alabama,Tuscaloosa County,4,13,6154,2957,3197,2365,2398,559,765,9,8,13,13,1,0,10,13,2939,3179,2350,2386,557,761,9,7,13,13,0,0,10,12,18,18,15,12,2,4,0,1,0,0,1,0,0,1 -050,01,125,Alabama,Tuscaloosa County,4,14,5314,2343,2971,1850,2203,471,734,5,7,8,12,1,0,8,15,2332,2958,1841,2190,470,734,5,7,8,12,0,0,8,15,11,13,9,13,1,0,0,0,0,0,1,0,0,0 -050,01,125,Alabama,Tuscaloosa County,4,15,4937,2032,2905,1603,2203,414,669,4,3,5,8,1,0,5,22,2021,2888,1594,2188,414,668,4,3,5,8,0,0,4,21,11,17,9,15,0,1,0,0,0,0,1,0,1,1 -050,01,125,Alabama,Tuscaloosa County,4,16,3878,1669,2209,1348,1714,306,478,7,2,6,9,1,1,1,5,1659,2192,1340,1699,304,477,7,2,6,9,1,0,1,5,10,17,8,15,2,1,0,0,0,0,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,4,17,2457,894,1563,741,1253,150,301,1,0,0,3,0,1,2,5,890,1552,737,1243,150,301,1,0,0,3,0,0,2,5,4,11,4,10,0,0,0,0,0,0,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,4,18,2010,582,1428,438,1053,138,368,1,1,2,2,0,0,3,4,580,1420,436,1045,138,368,1,1,2,2,0,0,3,4,2,8,2,8,0,0,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,4,99,168154,80973,87181,56958,58408,22364,27017,208,224,843,850,51,22,549,660,79382,85979,55600,57395,22238,26887,173,199,832,845,15,13,524,640,1591,1202,1358,1013,126,130,35,25,11,5,36,9,25,20 -050,01,125,Alabama,Tuscaloosa County,5,0,2045,1066,979,659,636,370,314,0,3,18,13,2,1,17,12,1018,941,615,602,369,312,0,2,17,12,1,1,16,12,48,38,44,34,1,2,0,1,1,1,1,0,1,0 -050,01,125,Alabama,Tuscaloosa County,5,1,8436,4275,4161,2628,2536,1553,1510,7,4,26,27,1,0,60,84,4153,4048,2531,2438,1537,1503,4,4,26,27,1,0,54,76,122,113,97,98,16,7,3,0,0,0,0,0,6,8 -050,01,125,Alabama,Tuscaloosa County,5,2,10565,5425,5140,3170,2922,2120,2104,13,10,44,32,4,0,74,72,5324,5039,3092,2842,2103,2086,9,9,44,32,3,0,73,70,101,101,78,80,17,18,4,1,0,0,1,0,1,2 -050,01,125,Alabama,Tuscaloosa County,5,3,11074,5632,5442,3351,3207,2176,2130,10,9,36,29,0,2,59,65,5506,5347,3244,3126,2164,2121,9,8,34,28,0,2,55,62,126,95,107,81,12,9,1,1,2,1,0,0,4,3 -050,01,125,Alabama,Tuscaloosa County,5,4,15162,7272,7890,4744,5036,2351,2682,19,23,99,90,6,1,53,58,7141,7751,4640,4920,2335,2668,15,18,97,89,4,0,50,56,131,139,104,116,16,14,4,5,2,1,2,1,3,2 -050,01,125,Alabama,Tuscaloosa County,5,5,22256,11016,11240,8049,7550,2614,3316,28,42,229,218,14,6,82,108,10670,11006,7739,7351,2596,3291,25,37,228,217,3,5,79,105,346,234,310,199,18,25,3,5,1,1,11,1,3,3 -050,01,125,Alabama,Tuscaloosa County,5,6,10728,5298,5430,3782,3501,1343,1773,20,15,108,91,3,7,42,43,5046,5293,3553,3383,1333,1762,12,11,107,91,1,5,40,41,252,137,229,118,10,11,8,4,1,0,2,2,2,2 -050,01,125,Alabama,Tuscaloosa County,5,7,11241,5580,5661,3953,3639,1457,1886,17,18,116,81,5,4,32,33,5407,5542,3799,3538,1449,1876,13,14,115,81,0,3,31,30,173,119,154,101,8,10,4,4,1,0,5,1,1,3 -050,01,125,Alabama,Tuscaloosa County,5,8,10785,5175,5610,3760,3704,1304,1798,18,20,64,58,2,0,27,30,5028,5538,3626,3640,1297,1792,16,19,63,57,0,0,26,30,147,72,134,64,7,6,2,1,1,1,2,0,1,0 -050,01,125,Alabama,Tuscaloosa County,5,9,11313,5421,5892,3957,3963,1362,1837,19,19,40,44,1,1,42,28,5300,5823,3853,3903,1355,1831,15,17,37,44,1,0,39,28,121,69,104,60,7,6,4,2,3,0,0,1,3,0 -050,01,125,Alabama,Tuscaloosa County,5,10,12058,5750,6308,4067,4228,1600,1987,11,18,35,36,6,3,31,36,5678,6251,4008,4182,1595,1980,9,17,35,36,1,2,30,34,72,57,59,46,5,7,2,1,0,0,5,1,1,2 -050,01,125,Alabama,Tuscaloosa County,5,11,10761,5240,5521,3845,3832,1325,1585,18,24,30,48,1,1,21,31,5205,5484,3819,3799,1320,1582,15,24,30,48,0,1,21,30,35,37,26,33,5,3,3,0,0,0,1,0,0,1 -050,01,125,Alabama,Tuscaloosa County,5,12,8374,4035,4339,3168,3286,801,984,15,11,21,28,4,0,26,30,4000,4315,3141,3265,796,981,14,11,21,28,3,0,25,30,35,24,27,21,5,3,1,0,0,0,1,0,1,0 -050,01,125,Alabama,Tuscaloosa County,5,13,6410,3043,3367,2409,2559,597,774,9,7,13,14,1,0,14,13,3024,3350,2393,2547,595,771,9,6,13,14,0,0,14,12,19,17,16,12,2,3,0,1,0,0,1,0,0,1 -050,01,125,Alabama,Tuscaloosa County,5,14,5213,2371,2842,1863,2093,484,720,5,7,8,11,1,0,10,11,2360,2830,1854,2081,483,720,5,7,8,11,0,0,10,11,11,12,9,12,1,0,0,0,0,0,1,0,0,0 -050,01,125,Alabama,Tuscaloosa County,5,15,4859,2013,2846,1587,2144,412,665,3,3,6,15,1,0,4,19,2001,2827,1578,2129,410,662,3,3,6,15,0,0,4,18,12,19,9,15,2,3,0,0,0,0,1,0,0,1 -050,01,125,Alabama,Tuscaloosa County,5,16,3978,1641,2337,1330,1821,294,496,8,3,7,9,1,1,1,7,1630,2320,1321,1806,292,495,8,3,7,9,1,0,1,7,11,17,9,15,2,1,0,0,0,0,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,5,17,2501,945,1556,778,1234,165,308,0,1,0,4,0,1,2,8,940,1545,773,1224,165,308,0,1,0,4,0,0,2,8,5,11,5,10,0,0,0,0,0,0,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,5,18,1966,570,1396,440,1029,126,363,1,1,1,1,0,0,2,2,567,1389,437,1022,126,363,1,1,1,1,0,0,2,2,3,7,3,7,0,0,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,5,99,169725,81768,87957,57540,58920,22454,27232,221,238,901,849,53,28,599,690,79998,86639,56016,57798,22320,27104,182,212,889,844,19,19,572,662,1770,1318,1524,1122,134,128,39,26,12,5,34,9,27,28 -050,01,125,Alabama,Tuscaloosa County,6,0,2098,1047,1051,661,673,351,337,0,3,11,15,1,3,23,20,1003,1001,622,630,350,332,0,2,11,14,0,3,20,20,44,50,39,43,1,5,0,1,0,1,1,0,3,0 -050,01,125,Alabama,Tuscaloosa County,6,1,8435,4290,4145,2616,2534,1565,1484,14,9,31,38,1,2,63,78,4153,4009,2500,2415,1558,1478,8,8,31,38,1,0,55,70,137,136,116,119,7,6,6,1,0,0,0,2,8,8 -050,01,125,Alabama,Tuscaloosa County,6,2,10526,5390,5136,3136,2951,2110,2068,14,8,50,33,4,2,76,74,5286,5030,3058,2866,2091,2053,9,7,50,33,3,0,75,71,104,106,78,85,19,15,5,1,0,0,1,2,1,3 -050,01,125,Alabama,Tuscaloosa County,6,3,11191,5652,5539,3307,3243,2232,2190,10,9,42,31,2,3,59,63,5519,5444,3194,3161,2220,2184,8,8,42,30,1,2,54,59,133,95,113,82,12,6,2,1,0,1,1,1,5,4 -050,01,125,Alabama,Tuscaloosa County,6,4,15312,7341,7971,4852,5108,2318,2690,21,23,99,85,5,2,46,63,7181,7824,4720,4982,2300,2680,17,18,97,84,3,1,44,59,160,147,132,126,18,10,4,5,2,1,2,1,2,4 -050,01,125,Alabama,Tuscaloosa County,6,5,22970,11478,11492,8415,7891,2687,3226,31,40,239,211,14,7,92,117,11083,11237,8072,7671,2660,3203,26,34,236,210,3,5,86,114,395,255,343,220,27,23,5,6,3,1,11,2,6,3 -050,01,125,Alabama,Tuscaloosa County,6,6,10901,5382,5519,3746,3548,1449,1798,23,18,112,102,9,8,43,45,5091,5350,3489,3401,1437,1790,12,13,110,102,4,5,39,39,291,169,257,147,12,8,11,5,2,0,5,3,4,6 -050,01,125,Alabama,Tuscaloosa County,6,7,11511,5687,5824,3976,3625,1525,2041,26,17,123,100,5,3,32,38,5471,5695,3787,3519,1514,2030,20,11,122,100,0,1,28,34,216,129,189,106,11,11,6,6,1,0,5,2,4,4 -050,01,125,Alabama,Tuscaloosa County,6,8,10545,5106,5439,3702,3559,1287,1760,12,20,73,65,4,1,28,34,4952,5365,3564,3497,1281,1753,9,17,72,64,0,1,26,33,154,74,138,62,6,7,3,3,1,1,4,0,2,1 -050,01,125,Alabama,Tuscaloosa County,6,9,11273,5475,5798,3974,3893,1378,1809,25,17,56,48,1,1,41,30,5348,5721,3867,3826,1371,1803,21,15,54,47,0,0,35,30,127,77,107,67,7,6,4,2,2,1,1,1,6,0 -050,01,125,Alabama,Tuscaloosa County,6,10,12045,5691,6354,4014,4238,1580,2023,15,16,38,39,5,2,39,36,5606,6300,3944,4195,1574,2017,13,14,37,39,1,2,37,33,85,54,70,43,6,6,2,2,1,0,4,0,2,3 -050,01,125,Alabama,Tuscaloosa County,6,11,11003,5368,5635,3910,3887,1389,1643,15,21,31,49,0,1,23,34,5332,5592,3881,3849,1385,1639,13,21,31,49,0,1,22,33,36,43,29,38,4,4,2,0,0,0,0,0,1,1 -050,01,125,Alabama,Tuscaloosa County,6,12,8975,4278,4697,3354,3478,857,1132,15,14,26,40,2,0,24,33,4228,4672,3314,3456,851,1129,13,14,26,40,1,0,23,33,50,25,40,22,6,3,2,0,0,0,1,0,1,0 -050,01,125,Alabama,Tuscaloosa County,6,13,6639,3180,3459,2534,2623,608,795,11,8,11,16,0,1,16,16,3161,3438,2519,2609,605,791,11,6,11,16,0,1,15,15,19,21,15,14,3,4,0,2,0,0,0,0,1,1 -050,01,125,Alabama,Tuscaloosa County,6,14,5295,2411,2884,1881,2142,504,702,5,9,10,14,1,0,10,17,2400,2871,1872,2129,503,702,5,9,10,14,0,0,10,17,11,13,9,13,1,0,0,0,0,0,1,0,0,0 -050,01,125,Alabama,Tuscaloosa County,6,15,4720,1962,2758,1557,2090,387,634,5,4,7,14,1,0,5,16,1947,2742,1547,2075,384,633,5,4,7,14,0,0,4,16,15,16,10,15,3,1,0,0,0,0,1,0,1,0 -050,01,125,Alabama,Tuscaloosa County,6,16,4072,1624,2448,1322,1879,284,552,6,3,9,8,1,1,2,5,1612,2428,1311,1861,283,551,6,3,9,8,1,0,2,5,12,20,11,18,1,1,0,0,0,0,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,6,17,2495,966,1529,801,1227,162,289,1,1,1,3,0,1,1,8,962,1518,797,1218,162,289,1,1,1,3,0,0,1,7,4,11,4,9,0,0,0,0,0,0,0,1,0,1 -050,01,125,Alabama,Tuscaloosa County,6,18,1954,593,1361,457,1007,128,349,1,1,4,1,0,0,3,3,590,1353,454,999,128,349,1,1,4,1,0,0,3,3,3,8,3,8,0,0,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,6,99,171960,82921,89039,58215,59596,22801,27522,250,241,973,912,56,38,626,730,80925,87590,56512,58359,22657,27406,198,206,961,906,18,22,579,691,1996,1449,1703,1237,144,116,52,35,12,6,38,16,47,39 -050,01,125,Alabama,Tuscaloosa County,7,0,2128,1092,1036,704,644,346,362,1,2,17,12,2,3,22,13,1039,981,662,594,341,360,1,1,16,12,0,3,19,11,53,55,42,50,5,2,0,1,1,0,2,0,3,2 -050,01,125,Alabama,Tuscaloosa County,7,1,8555,4342,4213,2676,2559,1531,1498,10,11,49,55,2,3,74,87,4193,4063,2548,2429,1522,1490,4,8,49,55,1,1,69,80,149,150,128,130,9,8,6,3,0,0,1,2,5,7 -050,01,125,Alabama,Tuscaloosa County,7,2,10697,5505,5192,3183,2973,2164,2089,15,11,51,33,5,2,87,84,5392,5063,3094,2862,2148,2077,10,9,51,33,4,2,85,80,113,129,89,111,16,12,5,2,0,0,1,0,2,4 -050,01,125,Alabama,Tuscaloosa County,7,3,11192,5699,5493,3312,3190,2262,2201,10,8,46,28,1,4,68,62,5553,5391,3184,3105,2250,2189,8,7,45,28,1,3,65,59,146,102,128,85,12,12,2,1,1,0,0,1,3,3 -050,01,125,Alabama,Tuscaloosa County,7,4,16043,7679,8364,5056,5378,2433,2801,22,24,102,92,7,2,59,67,7494,8210,4906,5244,2413,2792,17,19,100,91,5,1,53,63,185,154,150,134,20,9,5,5,2,1,2,1,6,4 -050,01,125,Alabama,Tuscaloosa County,7,5,23822,11891,11931,8822,8338,2677,3227,33,38,247,215,10,6,102,107,11469,11663,8445,8106,2654,3204,29,32,245,213,2,4,94,104,422,268,377,232,23,23,4,6,2,2,8,2,8,3 -050,01,125,Alabama,Tuscaloosa County,7,6,11175,5634,5541,3846,3420,1585,1932,21,17,126,111,8,8,48,53,5312,5361,3558,3267,1573,1916,10,13,123,110,4,5,44,50,322,180,288,153,12,16,11,4,3,1,4,3,4,3 -050,01,125,Alabama,Tuscaloosa County,7,7,11777,5852,5925,4135,3690,1540,2065,21,15,112,117,6,4,38,34,5629,5802,3940,3588,1527,2052,15,11,111,117,1,2,35,32,223,123,195,102,13,13,6,4,1,0,5,2,3,2 -050,01,125,Alabama,Tuscaloosa County,7,8,10611,5178,5433,3702,3499,1333,1816,23,21,88,57,2,1,30,39,5006,5350,3547,3423,1327,1812,17,20,88,57,0,1,27,37,172,83,155,76,6,4,6,1,0,0,2,0,3,2 -050,01,125,Alabama,Tuscaloosa County,7,9,11166,5417,5749,3940,3834,1370,1823,15,14,51,49,1,0,40,29,5274,5663,3814,3757,1363,1818,12,13,49,48,1,0,35,27,143,86,126,77,7,5,3,1,2,1,0,0,5,2 -050,01,125,Alabama,Tuscaloosa County,7,10,12013,5710,6303,4042,4262,1574,1944,15,15,40,46,6,1,33,35,5621,6235,3968,4207,1568,1940,13,12,40,46,2,0,30,30,89,68,74,55,6,4,2,3,0,0,4,1,3,5 -050,01,125,Alabama,Tuscaloosa County,7,11,11325,5522,5803,3985,3954,1457,1758,13,21,36,43,0,0,31,27,5477,5753,3948,3910,1452,1754,11,20,36,43,0,0,30,26,45,50,37,44,5,4,2,1,0,0,0,0,1,1 -050,01,125,Alabama,Tuscaloosa County,7,12,9567,4553,5014,3523,3683,947,1241,16,17,35,40,2,0,30,33,4509,4985,3487,3658,943,1237,14,17,35,40,1,0,29,33,44,29,36,25,4,4,2,0,0,0,1,0,1,0 -050,01,125,Alabama,Tuscaloosa County,7,13,6816,3271,3545,2591,2691,639,801,8,8,12,22,0,1,21,22,3245,3527,2568,2677,637,798,8,8,12,22,0,1,20,21,26,18,23,14,2,3,0,0,0,0,0,0,1,1 -050,01,125,Alabama,Tuscaloosa County,7,14,5361,2483,2878,1938,2111,516,727,6,9,11,11,0,0,12,20,2471,2861,1926,2097,516,724,6,9,11,11,0,0,12,20,12,17,12,14,0,3,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,7,15,4664,1930,2734,1524,2081,394,629,2,2,6,7,0,0,4,15,1923,2717,1518,2067,393,627,2,2,6,7,0,0,4,14,7,17,6,14,1,2,0,0,0,0,0,0,0,1 -050,01,125,Alabama,Tuscaloosa County,7,16,4139,1664,2475,1355,1879,293,579,5,4,6,8,2,0,3,5,1652,2457,1344,1862,292,578,5,4,6,8,2,0,3,5,12,18,11,17,1,1,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,7,17,2594,997,1597,838,1280,153,300,1,1,2,5,0,1,3,10,992,1584,833,1270,153,299,1,1,2,5,0,0,3,9,5,13,5,10,0,1,0,0,0,0,0,1,0,1 -050,01,125,Alabama,Tuscaloosa County,7,18,2086,649,1437,487,1078,154,353,1,1,4,1,0,0,3,4,645,1427,484,1069,153,352,1,1,4,1,0,0,3,4,4,10,3,9,1,1,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,7,99,175731,85068,90663,59659,60544,23368,28146,238,239,1041,952,54,36,708,746,82896,89093,57774,59192,23225,28019,184,207,1029,947,24,23,660,705,2172,1570,1885,1352,143,127,54,32,12,5,30,13,48,41 -050,01,125,Alabama,Tuscaloosa County,8,0,2206,1172,1034,709,628,418,371,1,2,15,9,3,4,26,20,1091,985,637,584,414,369,1,1,14,9,1,3,24,19,81,49,72,44,4,2,0,1,1,0,2,1,2,1 -050,01,125,Alabama,Tuscaloosa County,8,1,8709,4402,4307,2771,2631,1491,1518,14,7,50,67,2,0,74,84,4249,4120,2639,2465,1481,1504,9,5,50,67,1,0,69,79,153,187,132,166,10,14,5,2,0,0,1,0,5,5 -050,01,125,Alabama,Tuscaloosa County,8,2,10961,5673,5288,3298,3024,2193,2126,15,13,61,37,6,4,100,84,5543,5140,3190,2898,2178,2110,10,11,61,37,5,2,99,82,130,148,108,126,15,16,5,2,0,0,1,2,1,2 -050,01,125,Alabama,Tuscaloosa County,8,3,11414,5811,5603,3351,3214,2324,2270,12,7,49,39,2,4,73,69,5649,5498,3211,3124,2310,2261,10,6,49,39,1,3,68,65,162,105,140,90,14,9,2,1,0,0,1,1,5,4 -050,01,125,Alabama,Tuscaloosa County,8,4,16980,8124,8856,5308,5682,2618,2979,22,27,105,93,6,4,65,71,7897,8663,5118,5518,2595,2964,16,20,104,91,4,4,60,66,227,193,190,164,23,15,6,7,1,2,2,0,5,5 -050,01,125,Alabama,Tuscaloosa County,8,5,24969,12520,12449,9326,8748,2778,3310,34,46,259,218,13,5,110,122,12066,12160,8927,8490,2749,3290,28,40,257,217,3,4,102,119,454,289,399,258,29,20,6,6,2,1,10,1,8,3 -050,01,125,Alabama,Tuscaloosa County,8,6,12105,6076,6029,4134,3651,1725,2184,25,15,134,119,7,9,51,51,5718,5842,3816,3493,1710,2169,11,10,132,119,5,6,44,45,358,187,318,158,15,15,14,5,2,0,2,3,7,6 -050,01,125,Alabama,Tuscaloosa County,8,7,11475,5677,5798,3993,3607,1530,2014,24,18,87,120,6,5,37,34,5424,5651,3772,3486,1515,2001,18,10,86,120,0,3,33,31,253,147,221,121,15,13,6,8,1,0,6,2,4,3 -050,01,125,Alabama,Tuscaloosa County,8,8,11126,5438,5688,3821,3633,1482,1932,26,22,77,64,2,2,30,35,5251,5580,3650,3537,1476,1926,20,20,77,64,0,1,28,32,187,108,171,96,6,6,6,2,0,0,2,1,2,3 -050,01,125,Alabama,Tuscaloosa County,8,9,11188,5412,5776,3923,3795,1367,1884,17,18,62,49,2,0,41,30,5243,5673,3775,3708,1359,1872,13,17,61,48,1,0,34,28,169,103,148,87,8,12,4,1,1,1,1,0,7,2 -050,01,125,Alabama,Tuscaloosa County,8,10,11932,5684,6248,4063,4189,1519,1949,16,27,46,47,4,2,36,34,5575,6172,3975,4128,1509,1943,13,23,44,47,1,2,33,29,109,76,88,61,10,6,3,4,2,0,3,0,3,5 -050,01,125,Alabama,Tuscaloosa County,8,11,11653,5672,5981,4011,4089,1580,1793,15,24,40,46,0,0,26,29,5614,5929,3961,4045,1576,1788,13,22,40,46,0,0,24,28,58,52,50,44,4,5,2,2,0,0,0,0,2,1 -050,01,125,Alabama,Tuscaloosa County,8,12,10348,4927,5421,3747,3862,1101,1457,16,15,31,56,3,1,29,30,4879,5394,3709,3840,1094,1452,14,15,31,56,3,1,28,30,48,27,38,22,7,5,2,0,0,0,0,0,1,0 -050,01,125,Alabama,Tuscaloosa County,8,13,7048,3376,3672,2660,2800,669,822,11,12,13,17,0,1,23,20,3348,3642,2635,2775,667,820,11,10,13,17,0,1,22,19,28,30,25,25,2,2,0,2,0,0,0,0,1,1 -050,01,125,Alabama,Tuscaloosa County,8,14,5579,2623,2956,2061,2194,540,726,3,4,12,15,0,0,7,17,2609,2941,2047,2182,540,723,3,4,12,15,0,0,7,17,14,15,14,12,0,3,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,8,15,4611,1911,2700,1524,2043,373,634,3,0,7,8,0,0,4,15,1902,2685,1516,2030,372,633,3,0,7,8,0,0,4,14,9,15,8,13,1,1,0,0,0,0,0,0,0,1 -050,01,125,Alabama,Tuscaloosa County,8,16,4165,1640,2525,1319,1932,304,576,4,5,8,7,2,0,3,5,1631,2506,1311,1914,303,575,4,5,8,7,2,0,3,5,9,19,8,18,1,1,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,8,17,2732,1027,1705,863,1347,159,343,0,2,2,4,0,1,3,8,1023,1691,859,1335,159,343,0,2,2,4,0,0,3,7,4,14,4,12,0,0,0,0,0,0,0,1,0,1 -050,01,125,Alabama,Tuscaloosa County,8,18,2182,671,1511,525,1140,139,366,1,1,3,0,0,0,3,4,667,1500,522,1130,138,365,1,1,3,0,0,0,3,4,4,11,3,10,1,1,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,8,99,181383,87836,93547,61407,62209,24310,29254,259,265,1061,1015,58,42,741,762,85379,91772,59270,60682,24145,29108,198,222,1051,1011,27,30,688,719,2457,1775,2137,1527,165,146,61,43,10,4,31,12,53,43 -050,01,125,Alabama,Tuscaloosa County,9,0,2304,1194,1110,722,671,421,395,1,2,14,11,3,5,33,26,1095,1040,632,606,418,394,1,1,13,11,1,4,30,24,99,70,90,65,3,1,0,1,1,0,2,1,3,2 -050,01,125,Alabama,Tuscaloosa County,9,1,8757,4477,4280,2752,2626,1567,1496,14,10,55,64,2,3,87,81,4293,4093,2595,2463,1551,1484,10,7,55,64,1,1,81,74,184,187,157,163,16,12,4,3,0,0,1,2,6,7 -050,01,125,Alabama,Tuscaloosa County,9,2,11186,5851,5335,3425,3034,2233,2140,18,15,69,39,4,4,102,103,5698,5180,3294,2896,2221,2130,11,13,69,39,3,2,100,100,153,155,131,138,12,10,7,2,0,0,1,2,2,3 -050,01,125,Alabama,Tuscaloosa County,9,3,11421,5821,5600,3338,3191,2325,2284,9,10,61,40,2,7,86,68,5654,5475,3201,3082,2307,2274,7,9,59,40,1,5,79,65,167,125,137,109,18,10,2,1,2,0,1,2,7,3 -050,01,125,Alabama,Tuscaloosa County,9,4,17126,8248,8878,5354,5754,2690,2930,21,27,109,91,7,4,67,72,7980,8677,5124,5579,2667,2918,16,20,108,89,4,4,61,67,268,201,230,175,23,12,5,7,1,2,3,0,6,5 -050,01,125,Alabama,Tuscaloosa County,9,5,25296,12787,12509,9588,8957,2790,3180,39,36,254,211,12,6,104,119,12272,12190,9125,8673,2762,3160,33,28,252,209,3,4,97,116,515,319,463,284,28,20,6,8,2,2,9,2,7,3 -050,01,125,Alabama,Tuscaloosa County,9,6,12868,6427,6441,4365,3840,1843,2367,34,18,118,147,9,8,58,61,6034,6231,4022,3660,1825,2353,18,12,115,146,5,6,49,54,393,210,343,180,18,14,16,6,3,1,4,2,9,7 -050,01,125,Alabama,Tuscaloosa County,9,7,11428,5623,5805,3859,3600,1591,2052,21,20,106,96,8,6,38,31,5375,5663,3646,3487,1574,2036,15,12,105,96,2,3,33,29,248,142,213,113,17,16,6,8,1,0,6,3,5,2 -050,01,125,Alabama,Tuscaloosa County,9,8,11403,5562,5841,3885,3691,1548,2017,20,23,71,73,4,2,34,35,5362,5710,3705,3573,1540,2012,14,19,71,73,0,1,32,32,200,131,180,118,8,5,6,4,0,0,4,1,2,3 -050,01,125,Alabama,Tuscaloosa County,9,9,11012,5338,5674,3848,3728,1354,1856,23,18,74,45,3,0,36,27,5172,5567,3703,3633,1345,1848,19,17,73,44,2,0,30,25,166,107,145,95,9,8,4,1,1,1,1,0,6,2 -050,01,125,Alabama,Tuscaloosa County,9,10,11763,5550,6213,3980,4125,1470,1974,23,27,40,49,6,3,31,35,5416,6126,3870,4058,1461,1964,19,22,37,49,2,2,27,31,134,87,110,67,9,10,4,5,3,0,4,1,4,4 -050,01,125,Alabama,Tuscaloosa County,9,11,11982,5854,6128,4115,4179,1646,1837,17,22,53,55,0,1,23,34,5794,6059,4065,4120,1640,1831,15,19,53,55,0,1,21,33,60,69,50,59,6,6,2,3,0,0,0,0,2,1 -050,01,125,Alabama,Tuscaloosa County,9,12,10536,5038,5498,3782,3866,1182,1529,17,17,29,56,1,0,27,30,4985,5475,3739,3846,1176,1526,14,17,29,56,1,0,26,30,53,23,43,20,6,3,3,0,0,0,0,0,1,0 -050,01,125,Alabama,Tuscaloosa County,9,13,7689,3680,4009,2882,3033,743,921,15,13,20,23,0,0,20,19,3652,3971,2856,3000,741,919,15,11,20,22,0,0,20,19,28,38,26,33,2,2,0,2,0,1,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,9,14,5818,2704,3114,2155,2344,522,728,6,6,12,15,0,0,9,21,2687,3094,2140,2327,522,725,6,6,12,15,0,0,7,21,17,20,15,17,0,3,0,0,0,0,0,0,2,0 -050,01,125,Alabama,Tuscaloosa County,9,15,4627,1961,2666,1567,2003,380,644,3,1,6,8,0,0,5,10,1951,2650,1560,1989,377,643,3,1,6,8,0,0,5,9,10,16,7,14,3,1,0,0,0,0,0,0,0,1 -050,01,125,Alabama,Tuscaloosa County,9,16,4098,1604,2494,1268,1910,321,566,2,3,8,9,2,0,3,6,1595,2474,1259,1891,321,565,2,3,8,9,2,0,3,6,9,20,9,19,0,1,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,9,17,2738,1044,1694,868,1325,170,355,0,3,2,4,0,0,4,7,1041,1685,865,1318,170,354,0,3,2,4,0,0,4,6,3,9,3,7,0,1,0,0,0,0,0,0,0,1 -050,01,125,Alabama,Tuscaloosa County,9,18,2298,721,1577,567,1233,145,338,3,2,3,1,0,0,3,3,717,1565,564,1222,144,337,3,2,3,1,0,0,3,3,4,12,3,11,1,1,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,9,99,184350,89484,94866,62320,63110,24941,29609,286,273,1104,1037,63,49,770,788,86773,92925,59965,61423,24762,29473,221,222,1090,1030,27,33,708,744,2711,1941,2355,1687,179,136,65,51,14,7,36,16,62,44 -050,01,125,Alabama,Tuscaloosa County,10,0,2309,1213,1096,734,677,430,375,2,2,15,9,2,4,30,29,1100,1003,629,591,429,372,1,1,15,9,0,3,26,27,113,93,105,86,1,3,1,1,0,0,2,1,4,2 -050,01,125,Alabama,Tuscaloosa County,10,1,8936,4486,4450,2709,2682,1586,1597,14,11,72,68,3,3,102,89,4275,4246,2537,2509,1564,1582,6,7,72,68,2,0,94,80,211,204,172,173,22,15,8,4,0,0,1,3,8,9 -050,01,125,Alabama,Tuscaloosa County,10,2,11245,5866,5379,3462,3147,2219,2067,20,19,60,57,9,4,96,85,5678,5191,3300,2977,2206,2056,11,16,60,57,7,2,94,83,188,188,162,170,13,11,9,3,0,0,2,2,2,2 -050,01,125,Alabama,Tuscaloosa County,10,3,11503,5858,5645,3368,3166,2346,2342,13,11,58,43,2,7,71,76,5701,5505,3233,3047,2334,2330,10,8,57,43,1,5,66,72,157,140,135,119,12,12,3,3,1,0,1,2,5,4 -050,01,125,Alabama,Tuscaloosa County,10,4,17757,8546,9211,5559,5997,2756,3001,25,25,113,101,9,7,84,80,8219,8979,5282,5798,2728,2984,16,18,111,99,4,7,78,73,327,232,277,199,28,17,9,7,2,2,5,0,6,7 -050,01,125,Alabama,Tuscaloosa County,10,5,25726,13008,12718,9776,9147,2816,3186,40,46,253,210,17,6,106,123,12458,12365,9294,8827,2782,3171,32,37,251,209,3,3,96,118,550,353,482,320,34,15,8,9,2,1,14,3,10,5 -050,01,125,Alabama,Tuscaloosa County,10,6,13453,6715,6738,4504,4031,1975,2461,34,18,131,147,8,11,63,70,6289,6515,4127,3843,1957,2446,15,11,129,146,6,7,55,62,426,223,377,188,18,15,19,7,2,1,2,4,8,8 -050,01,125,Alabama,Tuscaloosa County,10,7,11682,5738,5944,3975,3636,1584,2143,25,26,109,103,6,6,39,30,5460,5772,3732,3498,1567,2126,18,17,109,103,1,2,33,26,278,172,243,138,17,17,7,9,0,0,5,4,6,4 -050,01,125,Alabama,Tuscaloosa County,10,8,11586,5564,6022,3852,3745,1578,2125,21,24,75,87,5,3,33,38,5357,5889,3664,3625,1573,2120,14,20,75,87,0,2,31,35,207,133,188,120,5,5,7,4,0,0,5,1,2,3 -050,01,125,Alabama,Tuscaloosa County,10,9,10973,5283,5690,3843,3729,1322,1870,17,19,63,45,3,0,35,27,5098,5577,3683,3631,1311,1860,11,17,63,44,2,0,28,25,185,113,160,98,11,10,6,2,0,1,1,0,7,2 -050,01,125,Alabama,Tuscaloosa County,10,10,11640,5568,6072,3979,4023,1489,1932,18,18,47,59,6,2,29,38,5434,5989,3867,3954,1481,1926,14,15,45,59,2,1,25,34,134,83,112,69,8,6,4,3,2,0,4,1,4,4 -050,01,125,Alabama,Tuscaloosa County,10,11,12096,5842,6254,4101,4228,1640,1923,20,22,55,53,0,0,26,28,5767,6181,4038,4165,1635,1916,15,20,55,53,0,0,24,27,75,73,63,63,5,7,5,2,0,0,0,0,2,1 -050,01,125,Alabama,Tuscaloosa County,10,12,10938,5243,5695,3862,3934,1298,1640,21,16,39,72,0,0,23,33,5180,5665,3810,3908,1290,1636,18,16,39,72,0,0,23,33,63,30,52,26,8,4,3,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,10,13,8166,3962,4204,3090,3176,811,960,11,16,26,26,0,1,24,25,3934,4173,3065,3149,808,959,11,14,26,25,0,1,24,25,28,31,25,27,3,1,0,2,0,1,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,10,14,6167,2811,3356,2224,2561,557,749,7,6,12,17,0,0,11,23,2791,3338,2205,2546,557,746,7,6,12,17,0,0,10,23,20,18,19,15,0,3,0,0,0,0,0,0,1,0 -050,01,125,Alabama,Tuscaloosa County,10,15,4553,1966,2587,1579,1951,372,619,3,1,7,6,0,0,5,10,1960,2571,1575,1937,370,618,3,1,7,6,0,0,5,9,6,16,4,14,2,1,0,0,0,0,0,0,0,1 -050,01,125,Alabama,Tuscaloosa County,10,16,4070,1636,2434,1301,1866,322,547,1,4,8,11,1,0,3,6,1626,2411,1291,1844,322,546,1,4,8,11,1,0,3,6,10,23,10,22,0,1,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,10,17,2912,1057,1855,894,1464,158,373,0,4,2,6,0,0,3,8,1053,1842,890,1452,158,373,0,4,2,6,0,0,3,7,4,13,4,12,0,0,0,0,0,0,0,0,0,1 -050,01,125,Alabama,Tuscaloosa County,10,18,2381,774,1607,601,1253,162,349,3,2,5,0,0,0,3,3,770,1597,598,1244,161,348,3,2,5,0,0,0,3,3,4,10,3,9,1,1,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,10,99,188093,91136,96957,63413,64413,25421,30259,295,290,1150,1120,71,54,786,821,88150,94809,60820,62545,25233,30115,206,234,1141,1114,29,33,721,768,2986,2148,2593,1868,188,144,89,56,9,6,42,21,65,53 -050,01,125,Alabama,Tuscaloosa County,11,0,2422,1238,1184,728,717,456,422,2,4,13,8,4,6,35,27,1119,1093,621,635,453,419,1,1,12,8,1,5,31,25,119,91,107,82,3,3,1,3,1,0,3,1,4,2 -050,01,125,Alabama,Tuscaloosa County,11,1,9077,4597,4480,2742,2688,1673,1612,17,9,48,62,2,3,115,106,4364,4231,2541,2470,1659,1597,8,6,48,62,1,0,107,96,233,249,201,218,14,15,9,3,0,0,1,3,8,10 -050,01,125,Alabama,Tuscaloosa County,11,2,11415,5897,5518,3479,3251,2227,2090,22,13,58,56,9,4,102,104,5679,5302,3290,3060,2212,2075,12,10,58,56,7,2,100,99,218,216,189,191,15,15,10,3,0,0,2,2,2,5 -050,01,125,Alabama,Tuscaloosa County,11,3,11532,5866,5666,3409,3205,2305,2325,13,9,52,47,2,7,85,73,5700,5527,3264,3084,2294,2317,10,6,51,47,1,6,80,67,166,139,145,121,11,8,3,3,1,0,1,1,5,6 -050,01,125,Alabama,Tuscaloosa County,11,4,18485,8891,9594,5779,6229,2867,3127,26,32,122,106,10,6,87,94,8532,9350,5476,6015,2835,3113,16,24,120,105,5,6,80,87,359,244,303,214,32,14,10,8,2,1,5,0,7,7 -050,01,125,Alabama,Tuscaloosa County,11,5,26581,13433,13148,10197,9476,2835,3271,42,37,237,226,13,8,109,130,12828,12755,9657,9120,2800,3253,33,27,235,224,4,6,99,125,605,393,540,356,35,18,9,10,2,2,9,2,10,5 -050,01,125,Alabama,Tuscaloosa County,11,6,13851,6986,6865,4740,4170,1986,2475,47,21,147,128,9,10,57,61,6535,6633,4349,3973,1963,2459,24,14,144,128,6,6,49,53,451,232,391,197,23,16,23,7,3,0,3,4,8,8 -050,01,125,Alabama,Tuscaloosa County,11,7,12003,5883,6120,3957,3695,1737,2258,22,21,109,108,9,10,49,28,5606,5926,3720,3539,1718,2239,13,11,109,108,3,5,43,24,277,194,237,156,19,19,9,10,0,0,6,5,6,4 -050,01,125,Alabama,Tuscaloosa County,11,8,11863,5729,6134,3935,3750,1635,2223,24,25,94,97,5,2,36,37,5483,5989,3710,3616,1630,2220,16,21,94,97,0,1,33,34,246,145,225,134,5,3,8,4,0,0,5,1,3,3 -050,01,125,Alabama,Tuscaloosa County,11,9,10962,5291,5671,3840,3729,1343,1844,14,23,58,46,3,0,33,29,5095,5561,3668,3634,1333,1835,9,20,57,45,2,0,26,27,196,110,172,95,10,9,5,3,1,1,1,0,7,2 -050,01,125,Alabama,Tuscaloosa County,11,10,11696,5714,5982,4055,3945,1548,1910,21,24,57,65,5,3,28,35,5560,5893,3930,3872,1536,1903,16,20,52,65,2,2,24,31,154,89,125,73,12,7,5,4,5,0,3,1,4,4 -050,01,125,Alabama,Tuscaloosa County,11,11,12154,5775,6379,4053,4290,1623,1979,20,27,51,58,1,0,27,25,5688,6301,3980,4223,1617,1972,15,24,51,58,0,0,25,24,87,78,73,67,6,7,5,3,0,0,1,0,2,1 -050,01,125,Alabama,Tuscaloosa County,11,12,11246,5444,5802,3955,3987,1406,1713,20,14,37,57,0,0,26,31,5370,5768,3893,3957,1398,1709,16,14,37,57,0,0,26,31,74,34,62,30,8,4,4,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,11,13,8840,4235,4605,3279,3396,885,1129,17,15,33,41,0,1,21,23,4198,4574,3246,3371,882,1126,17,13,33,40,0,1,20,23,37,31,33,25,3,3,0,2,0,1,0,0,1,0 -050,01,125,Alabama,Tuscaloosa County,11,14,6420,2988,3432,2375,2604,584,778,8,5,12,18,0,0,9,27,2973,3414,2361,2588,584,776,8,5,12,18,0,0,8,27,15,18,14,16,0,2,0,0,0,0,0,0,1,0 -050,01,125,Alabama,Tuscaloosa County,11,15,4677,2005,2672,1597,2029,392,621,3,1,8,9,0,0,5,12,1994,2658,1590,2017,388,620,3,1,8,9,0,0,5,11,11,14,7,12,4,1,0,0,0,0,0,0,0,1 -050,01,125,Alabama,Tuscaloosa County,11,16,4070,1617,2453,1284,1875,319,557,0,5,9,10,1,0,4,6,1605,2433,1273,1856,318,556,0,5,9,10,1,0,4,6,12,20,11,19,1,1,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,11,17,3022,1066,1956,905,1508,156,432,0,2,2,6,0,0,3,8,1062,1945,901,1499,156,431,0,2,2,6,0,0,3,7,4,11,4,9,0,1,0,0,0,0,0,0,0,1 -050,01,125,Alabama,Tuscaloosa County,11,18,2476,799,1677,624,1319,166,354,3,2,3,0,0,0,3,2,795,1663,621,1306,165,353,3,2,3,0,0,0,3,2,4,14,3,13,1,1,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,11,99,192792,93454,99338,64933,65863,26143,31120,321,289,1150,1148,73,60,834,858,90186,97016,62091,63835,25941,30973,220,226,1135,1143,33,40,766,799,3268,2322,2842,2028,202,147,101,63,15,5,40,20,68,59 -050,01,125,Alabama,Tuscaloosa County,12,0,2348,1214,1134,702,668,455,417,2,4,15,11,4,6,36,28,1122,1062,624,606,450,413,1,1,14,11,1,5,32,26,92,72,78,62,5,4,1,3,1,0,3,1,4,2 -050,01,125,Alabama,Tuscaloosa County,12,1,9248,4689,4559,2715,2703,1779,1677,21,11,49,43,3,4,122,121,4417,4274,2481,2452,1761,1660,10,7,49,43,2,1,114,111,272,285,234,251,18,17,11,4,0,0,1,3,8,10 -050,01,125,Alabama,Tuscaloosa County,12,2,11515,5957,5558,3533,3309,2205,2076,23,14,73,53,9,4,114,102,5733,5312,3338,3085,2190,2064,13,11,73,53,7,2,112,97,224,246,195,224,15,12,10,3,0,0,2,2,2,5 -050,01,125,Alabama,Tuscaloosa County,12,3,11599,5895,5704,3441,3235,2308,2324,13,10,42,48,2,8,89,79,5717,5547,3285,3098,2297,2316,10,7,41,48,1,6,83,72,178,157,156,137,11,8,3,3,1,0,1,2,6,7 -050,01,125,Alabama,Tuscaloosa County,12,4,18398,8889,9509,5787,6222,2847,3043,26,29,122,114,10,6,97,95,8528,9254,5487,6000,2810,3028,16,21,120,112,5,6,90,87,361,255,300,222,37,15,10,8,2,2,5,0,7,8 -050,01,125,Alabama,Tuscaloosa County,12,5,26934,13628,13306,10334,9661,2887,3240,43,33,234,227,15,8,115,137,12999,12884,9778,9283,2846,3217,34,23,232,225,4,5,105,131,629,422,556,378,41,23,9,10,2,2,11,3,10,6 -050,01,125,Alabama,Tuscaloosa County,12,6,14045,7024,7021,4767,4311,1952,2459,39,25,190,145,11,11,65,70,6544,6743,4352,4069,1927,2443,16,18,187,144,7,7,55,62,480,278,415,242,25,16,23,7,3,1,4,4,10,8 -050,01,125,Alabama,Tuscaloosa County,12,7,12129,5937,6192,3962,3691,1793,2340,28,23,98,98,7,10,49,30,5615,5984,3685,3519,1770,2323,19,13,97,98,1,5,43,26,322,208,277,172,23,17,9,10,1,0,6,5,6,4 -050,01,125,Alabama,Tuscaloosa County,12,8,11869,5765,6104,3965,3716,1648,2232,23,26,88,89,5,3,36,38,5516,5962,3738,3586,1642,2228,15,22,88,89,0,2,33,35,249,142,227,130,6,4,8,4,0,0,5,1,3,3 -050,01,125,Alabama,Tuscaloosa County,12,9,10934,5268,5666,3787,3704,1361,1870,17,20,65,45,3,0,35,27,5073,5541,3617,3595,1350,1860,11,17,64,44,2,0,29,25,195,125,170,109,11,10,6,3,1,1,1,0,6,2 -050,01,125,Alabama,Tuscaloosa County,12,10,11576,5648,5928,3997,3875,1538,1933,24,21,58,63,5,3,26,33,5489,5842,3865,3806,1526,1926,19,16,55,63,2,2,22,29,159,86,132,69,12,7,5,5,3,0,3,1,4,4 -050,01,125,Alabama,Tuscaloosa County,12,11,12148,5779,6369,4063,4305,1615,1947,18,27,51,58,1,0,31,32,5679,6294,3977,4241,1609,1940,13,24,51,58,0,0,29,31,100,75,86,64,6,7,5,3,0,0,1,0,2,1 -050,01,125,Alabama,Tuscaloosa County,12,12,11559,5554,6005,4005,4073,1459,1819,23,18,39,62,2,1,26,32,5467,5966,3931,4038,1450,1815,19,18,39,62,2,1,26,32,87,39,74,35,9,4,4,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,12,13,9304,4464,4840,3417,3550,971,1208,18,14,33,42,0,1,25,25,4430,4803,3387,3519,968,1206,18,11,33,41,0,1,24,25,34,37,30,31,3,2,0,3,0,1,0,0,1,0 -050,01,125,Alabama,Tuscaloosa County,12,14,6594,3074,3520,2416,2680,618,791,8,7,18,19,0,0,14,23,3054,3498,2397,2661,618,788,8,7,18,19,0,0,13,23,20,22,19,19,0,3,0,0,0,0,0,0,1,0 -050,01,125,Alabama,Tuscaloosa County,12,15,4755,2092,2663,1660,2012,416,629,3,1,8,9,0,0,5,12,2078,2648,1649,1999,413,628,3,1,8,9,0,0,5,11,14,15,11,13,3,1,0,0,0,0,0,0,0,1 -050,01,125,Alabama,Tuscaloosa County,12,16,4072,1594,2478,1274,1893,305,561,0,5,9,13,1,0,5,6,1582,2457,1263,1873,304,560,0,5,9,13,1,0,5,6,12,21,11,20,1,1,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,12,17,3113,1126,1987,946,1531,174,437,0,4,3,6,0,0,3,9,1120,1975,940,1521,174,436,0,4,3,6,0,0,3,8,6,12,6,10,0,1,0,0,0,0,0,0,0,1 -050,01,125,Alabama,Tuscaloosa County,12,18,2516,803,1713,644,1355,150,353,3,2,3,0,0,0,3,3,799,1699,641,1342,149,352,3,2,3,0,0,0,3,3,4,14,3,13,1,1,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,12,99,194656,94400,100256,65415,66494,26481,31356,332,294,1198,1145,78,65,896,902,90962,97745,62435,64293,26254,31203,228,228,1184,1138,35,43,826,840,3438,2511,2980,2201,227,153,104,66,14,7,43,22,70,62 -050,01,125,Alabama,Tuscaloosa County,13,0,2348,1216,1132,703,668,457,417,2,4,15,11,4,6,35,26,1124,1061,625,606,452,413,1,1,14,11,0,5,32,25,92,71,78,62,5,4,1,3,1,0,4,1,3,1 -050,01,125,Alabama,Tuscaloosa County,13,1,9258,4690,4568,2706,2696,1788,1690,19,10,51,45,4,6,122,121,4420,4276,2472,2443,1770,1671,9,6,50,43,2,2,117,111,270,292,234,253,18,19,10,4,1,2,2,4,5,10 -050,01,125,Alabama,Tuscaloosa County,13,2,11520,5965,5555,3531,3305,2207,2077,26,14,75,53,9,2,117,104,5734,5307,3335,3080,2191,2065,14,12,74,53,6,0,114,97,231,248,196,225,16,12,12,2,1,0,3,2,3,7 -050,01,125,Alabama,Tuscaloosa County,13,3,11599,5894,5705,3436,3233,2308,2326,12,10,46,51,4,7,88,78,5714,5547,3278,3093,2297,2318,10,7,43,50,2,5,84,74,180,158,158,140,11,8,2,3,3,1,2,2,4,4 -050,01,125,Alabama,Tuscaloosa County,13,4,18311,8845,9466,5757,6194,2836,3034,25,28,124,114,11,4,92,92,8485,9207,5456,5970,2799,3017,15,19,121,112,6,4,88,85,360,259,301,224,37,17,10,9,3,2,5,0,4,7 -050,01,125,Alabama,Tuscaloosa County,13,5,27038,13678,13360,10362,9692,2911,3265,46,35,236,227,15,7,108,134,13045,12935,9803,9311,2870,3242,35,23,234,226,3,3,100,130,633,425,559,381,41,23,11,12,2,1,12,4,8,4 -050,01,125,Alabama,Tuscaloosa County,13,6,14100,7067,7033,4794,4320,1964,2465,40,28,192,146,8,10,69,64,6580,6755,4377,4078,1939,2450,16,18,187,144,5,6,56,59,487,278,417,242,25,15,24,10,5,2,3,4,13,5 -050,01,125,Alabama,Tuscaloosa County,13,7,12234,5990,6244,3988,3718,1817,2360,29,27,99,99,8,10,49,30,5664,6033,3711,3546,1793,2343,20,14,97,98,1,4,42,28,326,211,277,172,24,17,9,13,2,1,7,6,7,2 -050,01,125,Alabama,Tuscaloosa County,13,8,11800,5731,6069,3935,3684,1646,2228,22,29,89,89,6,3,33,36,5479,5922,3706,3552,1640,2223,15,22,88,89,0,2,30,34,252,147,229,132,6,5,7,7,1,0,6,1,3,2 -050,01,125,Alabama,Tuscaloosa County,13,9,10944,5269,5675,3784,3703,1362,1872,16,24,66,47,6,3,35,26,5072,5544,3612,3592,1351,1863,10,18,65,45,2,1,32,25,197,131,172,111,11,9,6,6,1,2,4,2,3,1 -050,01,125,Alabama,Tuscaloosa County,13,10,11538,5629,5909,3980,3854,1541,1932,26,22,56,63,5,2,21,36,5467,5822,3846,3785,1527,1924,19,17,54,63,2,1,19,32,162,87,134,69,14,8,7,5,2,0,3,1,2,4 -050,01,125,Alabama,Tuscaloosa County,13,11,12183,5793,6390,4070,4312,1625,1960,18,27,51,58,3,0,26,33,5695,6315,3984,4248,1619,1953,13,24,51,58,2,0,26,32,98,75,86,64,6,7,5,3,0,0,1,0,0,1 -050,01,125,Alabama,Tuscaloosa County,13,12,11633,5589,6044,4026,4095,1471,1831,23,21,39,63,2,2,28,32,5500,6004,3951,4061,1461,1826,19,20,39,63,2,2,28,32,89,40,75,34,10,5,4,1,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,13,13,9397,4505,4892,3446,3580,986,1232,18,15,33,41,0,0,22,24,4469,4855,3415,3549,982,1228,18,13,33,41,0,0,21,24,36,37,31,31,4,4,0,2,0,0,0,0,1,0 -050,01,125,Alabama,Tuscaloosa County,13,14,6637,3095,3542,2432,2696,622,797,8,7,20,19,0,0,13,23,3075,3519,2413,2677,621,793,8,7,20,19,0,0,13,23,20,23,19,19,1,4,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,13,15,4777,2103,2674,1667,2019,419,632,5,3,8,8,0,0,4,12,2088,2660,1656,2007,415,630,5,3,8,8,0,0,4,12,15,14,11,12,4,2,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,13,16,4064,1595,2469,1276,1886,307,563,0,3,8,13,0,0,4,4,1584,2449,1265,1867,307,562,0,3,8,13,0,0,4,4,11,20,11,19,0,1,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,13,17,3122,1137,1985,953,1531,175,441,2,2,2,6,0,0,5,5,1129,1974,945,1521,175,440,2,2,2,6,0,0,5,5,8,11,8,10,0,1,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,13,18,2533,808,1725,649,1361,151,358,3,2,3,0,0,0,2,4,804,1711,646,1348,150,357,3,2,3,0,0,0,2,4,4,14,3,13,1,1,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,13,99,195036,94599,100437,65495,66547,26593,31480,340,311,1213,1153,85,62,873,884,91128,97896,62496,64334,26359,31318,232,231,1191,1142,33,35,817,836,3471,2541,2999,2213,234,162,108,80,22,11,52,27,56,48 -050,01,127,Alabama,Walker County,1,0,864,485,379,445,344,29,26,2,1,1,3,0,0,8,5,478,372,441,338,27,25,2,1,1,3,0,0,7,5,7,7,4,6,2,1,0,0,0,0,0,0,1,0 -050,01,127,Alabama,Walker County,1,1,3656,1812,1844,1635,1655,145,149,3,1,4,5,0,0,25,34,1794,1813,1620,1627,142,147,3,1,4,5,0,0,25,33,18,31,15,28,3,2,0,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,1,2,4554,2384,2170,2147,1965,201,181,13,4,5,5,0,1,18,14,2351,2146,2119,1943,197,180,13,4,5,5,0,1,17,13,33,24,28,22,4,1,0,0,0,0,0,0,1,1 -050,01,127,Alabama,Walker County,1,3,4709,2430,2279,2198,2096,203,160,8,4,3,8,0,1,18,10,2412,2253,2183,2076,200,155,8,4,3,8,0,0,18,10,18,26,15,20,3,5,0,0,0,0,0,1,0,0 -050,01,127,Alabama,Walker County,1,4,4700,2368,2332,2129,2114,207,197,8,5,12,2,1,1,11,13,2326,2313,2098,2097,203,195,7,5,6,2,1,1,11,13,42,19,31,17,4,2,1,0,6,0,0,0,0,0 -050,01,127,Alabama,Walker County,1,5,4251,2071,2180,1896,1984,154,180,10,5,4,3,0,0,7,8,2015,2162,1846,1970,151,177,9,5,2,3,0,0,7,7,56,18,50,14,3,3,1,0,2,0,0,0,0,1 -050,01,127,Alabama,Walker County,1,6,4588,2343,2245,2193,2092,121,139,15,3,6,5,0,0,8,6,2296,2218,2148,2066,121,138,14,3,5,5,0,0,8,6,47,27,45,26,0,1,1,0,1,0,0,0,0,0 -050,01,127,Alabama,Walker County,1,7,4699,2401,2298,2270,2138,112,142,3,2,5,8,0,0,11,8,2370,2276,2240,2119,111,139,3,2,5,8,0,0,11,8,31,22,30,19,1,3,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,1,8,5171,2575,2596,2407,2401,147,167,8,10,8,10,0,1,5,7,2550,2569,2384,2377,145,165,8,9,8,10,0,1,5,7,25,27,23,24,2,2,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,1,9,5332,2599,2733,2402,2508,159,183,14,18,5,5,0,1,19,18,2589,2718,2394,2496,158,182,13,18,5,5,0,1,19,16,10,15,8,12,1,1,1,0,0,0,0,0,0,2 -050,01,127,Alabama,Walker County,1,10,5034,2476,2558,2300,2371,146,162,8,10,4,4,1,1,17,10,2468,2546,2292,2359,146,162,8,10,4,4,1,1,17,10,8,12,8,12,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,1,11,4990,2414,2576,2283,2426,105,118,10,9,2,5,2,0,12,18,2408,2564,2278,2417,105,117,10,9,2,5,2,0,11,16,6,12,5,9,0,1,0,0,0,0,0,0,1,2 -050,01,127,Alabama,Walker County,1,12,4070,1917,2153,1810,2041,90,94,4,4,1,4,1,0,11,10,1910,2146,1804,2034,89,94,4,4,1,4,1,0,11,10,7,7,6,7,1,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,1,13,3621,1707,1914,1632,1808,61,92,6,2,3,4,1,0,4,8,1701,1900,1627,1795,60,91,6,2,3,4,1,0,4,8,6,14,5,13,1,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,1,14,3038,1435,1603,1368,1492,55,92,2,2,1,3,0,0,9,14,1428,1600,1362,1489,55,92,2,2,1,3,0,0,8,14,7,3,6,3,0,0,0,0,0,0,0,0,1,0 -050,01,127,Alabama,Walker County,1,15,2738,1132,1606,1084,1532,37,60,3,2,1,4,0,0,7,8,1130,1598,1082,1524,37,60,3,2,1,4,0,0,7,8,2,8,2,8,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,1,16,2178,844,1334,805,1253,35,69,0,1,1,3,0,1,3,7,841,1332,802,1251,35,69,0,1,1,3,0,1,3,7,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,1,17,1321,430,891,398,848,30,40,0,0,1,1,0,0,1,2,428,889,396,846,30,40,0,0,1,1,0,0,1,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,1,18,1174,281,893,254,832,26,56,0,2,0,0,0,0,1,3,281,891,254,830,26,56,0,2,0,0,0,0,1,3,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,1,99,70688,34104,36584,31656,33900,2063,2307,117,85,67,82,6,7,195,203,33776,36306,31370,33654,2038,2284,113,84,58,82,6,6,191,196,328,278,286,246,25,23,4,1,9,0,0,1,4,7 -050,01,127,Alabama,Walker County,2,0,867,486,381,447,346,29,26,2,1,1,3,0,0,7,5,479,374,443,340,27,25,2,1,1,3,0,0,6,5,7,7,4,6,2,1,0,0,0,0,0,0,1,0 -050,01,127,Alabama,Walker County,2,1,3619,1792,1827,1621,1641,142,147,3,1,4,5,0,0,22,33,1774,1796,1606,1613,139,145,3,1,4,5,0,0,22,32,18,31,15,28,3,2,0,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,2,2,4511,2360,2151,2127,1949,196,176,13,4,5,5,0,1,19,16,2327,2127,2099,1927,192,175,13,4,5,5,0,1,18,15,33,24,28,22,4,1,0,0,0,0,0,0,1,1 -050,01,127,Alabama,Walker County,2,3,4707,2427,2280,2195,2096,202,159,8,4,3,8,0,1,19,12,2409,2254,2180,2076,199,154,8,4,3,8,0,0,19,12,18,26,15,20,3,5,0,0,0,0,0,1,0,0 -050,01,127,Alabama,Walker County,2,4,4708,2374,2334,2134,2115,207,196,8,5,12,2,1,1,12,15,2332,2315,2103,2098,203,194,7,5,6,2,1,1,12,15,42,19,31,17,4,2,1,0,6,0,0,0,0,0 -050,01,127,Alabama,Walker County,2,5,4279,2083,2196,1905,1998,156,182,10,5,4,3,0,0,8,8,2027,2178,1855,1984,153,179,9,5,2,3,0,0,8,7,56,18,50,14,3,3,1,0,2,0,0,0,0,1 -050,01,127,Alabama,Walker County,2,6,4526,2312,2214,2162,2061,121,139,15,3,6,5,0,0,8,6,2265,2187,2117,2035,121,138,14,3,5,5,0,0,8,6,47,27,45,26,0,1,1,0,1,0,0,0,0,0 -050,01,127,Alabama,Walker County,2,7,4676,2387,2289,2257,2129,111,142,3,2,5,8,0,0,11,8,2356,2267,2227,2110,110,139,3,2,5,8,0,0,11,8,31,22,30,19,1,3,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,2,8,5133,2556,2577,2388,2382,147,167,8,10,8,10,0,1,5,7,2531,2550,2365,2358,145,165,8,9,8,10,0,1,5,7,25,27,23,24,2,2,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,2,9,5321,2591,2730,2394,2504,159,183,14,18,5,5,0,1,19,19,2581,2715,2386,2492,158,182,13,18,5,5,0,1,19,17,10,15,8,12,1,1,1,0,0,0,0,0,0,2 -050,01,127,Alabama,Walker County,2,10,5051,2484,2567,2308,2379,146,163,8,10,4,4,1,1,17,10,2476,2555,2300,2367,146,163,8,10,4,4,1,1,17,10,8,12,8,12,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,2,11,5022,2431,2591,2297,2439,107,120,10,9,2,5,2,0,13,18,2425,2579,2292,2430,107,119,10,9,2,5,2,0,12,16,6,12,5,9,0,1,0,0,0,0,0,0,1,2 -050,01,127,Alabama,Walker County,2,12,4089,1925,2164,1817,2051,90,94,4,4,1,4,1,0,12,11,1918,2157,1811,2044,89,94,4,4,1,4,1,0,12,11,7,7,6,7,1,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,2,13,3628,1711,1917,1636,1810,61,92,6,2,3,4,1,0,4,9,1705,1903,1631,1797,60,91,6,2,3,4,1,0,4,9,6,14,5,13,1,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,2,14,3036,1436,1600,1368,1488,56,93,2,2,1,3,0,0,9,14,1429,1597,1362,1485,56,93,2,2,1,3,0,0,8,14,7,3,6,3,0,0,0,0,0,0,0,0,1,0 -050,01,127,Alabama,Walker County,2,15,2737,1134,1603,1085,1528,38,60,3,2,1,4,0,0,7,9,1132,1595,1083,1520,38,60,3,2,1,4,0,0,7,9,2,8,2,8,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,2,16,2187,848,1339,809,1257,35,70,0,1,1,3,0,1,3,7,845,1337,806,1255,35,70,0,1,1,3,0,1,3,7,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,2,17,1331,435,896,403,853,30,40,0,0,1,1,0,0,1,2,433,894,401,851,30,40,0,0,1,1,0,0,1,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,2,18,1174,282,892,255,832,26,55,0,2,0,0,0,0,1,3,282,890,255,830,26,55,0,2,0,0,0,0,1,3,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,2,99,70602,34054,36548,31608,33858,2059,2304,117,85,67,82,6,7,197,212,33726,36270,31322,33612,2034,2281,113,84,58,82,6,6,193,205,328,278,286,246,25,23,4,1,9,0,0,1,4,7 -050,01,127,Alabama,Walker County,3,0,981,507,474,464,418,32,43,2,1,1,3,0,0,8,9,491,465,450,410,31,42,2,1,1,3,0,0,7,9,16,9,14,8,1,1,0,0,0,0,0,0,1,0 -050,01,127,Alabama,Walker County,3,1,3528,1784,1744,1628,1553,123,152,3,1,4,5,0,0,26,33,1767,1711,1614,1524,120,149,3,1,4,5,0,0,26,32,17,33,14,29,3,3,0,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,3,2,4397,2293,2104,2050,1894,204,174,12,4,6,8,0,1,21,23,2255,2084,2017,1876,200,173,12,4,6,8,0,1,20,22,38,20,33,18,4,1,0,0,0,0,0,0,1,1 -050,01,127,Alabama,Walker County,3,3,4748,2472,2276,2239,2088,194,162,9,3,6,8,0,1,24,14,2442,2246,2212,2064,191,157,9,3,6,8,0,0,24,14,30,30,27,24,3,5,0,0,0,0,0,1,0,0 -050,01,127,Alabama,Walker County,3,4,4491,2261,2230,2048,2021,181,185,7,5,12,2,0,1,13,16,2223,2211,2021,2004,177,183,6,5,6,2,0,1,13,16,38,19,27,17,4,2,1,0,6,0,0,0,0,0 -050,01,127,Alabama,Walker County,3,5,4472,2173,2299,1975,2090,174,195,12,5,4,3,0,0,8,6,2116,2273,1924,2068,171,192,11,5,2,3,0,0,8,5,57,26,51,22,3,3,1,0,2,0,0,0,0,1 -050,01,127,Alabama,Walker County,3,6,4218,2147,2071,1992,1923,127,134,14,3,6,6,0,0,8,5,2093,2043,1940,1896,127,133,13,3,5,6,0,0,8,5,54,28,52,27,0,1,1,0,1,0,0,0,0,0 -050,01,127,Alabama,Walker County,3,7,4732,2399,2333,2275,2167,105,147,3,2,5,9,0,0,11,8,2364,2302,2241,2139,104,144,3,2,5,9,0,0,11,8,35,31,34,28,1,3,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,3,8,4974,2477,2497,2298,2296,156,171,10,10,8,12,0,1,5,7,2445,2477,2268,2279,154,169,10,9,8,12,0,1,5,7,32,20,30,17,2,2,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,3,9,5336,2611,2725,2407,2511,164,176,15,14,5,6,0,1,20,17,2601,2703,2399,2492,163,175,14,14,5,6,0,1,20,15,10,22,8,19,1,1,1,0,0,0,0,0,0,2 -050,01,127,Alabama,Walker County,3,10,5068,2463,2605,2288,2418,142,155,12,12,4,6,1,0,16,14,2451,2589,2276,2402,142,155,12,12,4,6,1,0,16,14,12,16,12,16,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,3,11,5199,2540,2659,2400,2502,115,123,10,8,2,4,2,0,11,22,2533,2647,2394,2494,115,122,10,8,2,4,2,0,10,19,7,12,6,8,0,1,0,0,0,0,0,0,1,3 -050,01,127,Alabama,Walker County,3,12,4101,1960,2141,1860,2024,80,97,5,7,1,4,1,0,13,9,1951,2129,1852,2012,79,97,5,7,1,4,1,0,13,9,9,12,8,12,1,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,3,13,3666,1738,1928,1649,1828,71,84,9,3,3,4,1,0,5,9,1730,1916,1642,1817,70,83,9,3,3,4,1,0,5,9,8,12,7,11,1,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,3,14,3119,1453,1666,1386,1543,53,104,3,4,1,3,0,0,10,12,1446,1662,1380,1539,53,104,3,4,1,3,0,0,9,12,7,4,6,4,0,0,0,0,0,0,0,0,1,0 -050,01,127,Alabama,Walker County,3,15,2702,1125,1577,1080,1510,37,53,3,2,1,4,0,0,4,8,1123,1566,1078,1499,37,53,3,2,1,4,0,0,4,8,2,11,2,11,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,3,16,2166,836,1330,797,1253,36,65,0,1,1,3,0,1,2,7,832,1328,793,1251,36,65,0,1,1,3,0,1,2,7,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,3,17,1374,456,918,422,877,31,39,0,0,1,1,0,0,2,1,454,916,420,875,31,39,0,0,1,1,0,0,2,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,3,18,1092,252,840,228,786,23,49,0,2,0,0,0,0,1,3,252,837,228,783,23,49,0,2,0,0,0,0,1,3,0,3,0,3,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,3,99,70364,33947,36417,31486,33702,2048,2308,129,87,71,91,5,6,208,223,33569,36105,31149,33424,2024,2284,125,86,62,91,5,5,204,215,378,312,337,278,24,24,4,1,9,0,0,1,4,8 -050,01,127,Alabama,Walker County,4,0,846,438,408,399,358,27,36,2,1,1,2,0,0,9,11,424,399,388,350,25,35,2,1,1,2,0,0,8,11,14,9,11,8,2,1,0,0,0,0,0,0,1,0 -050,01,127,Alabama,Walker County,4,1,3516,1787,1729,1627,1531,123,161,3,2,4,5,1,1,29,29,1756,1696,1600,1501,120,159,3,2,4,5,0,1,29,28,31,33,27,30,3,2,0,0,0,0,1,0,0,1 -050,01,127,Alabama,Walker County,4,2,4386,2275,2111,2052,1888,180,181,12,5,7,7,0,1,24,29,2237,2088,2019,1867,176,180,12,5,7,7,0,1,23,28,38,23,33,21,4,1,0,0,0,0,0,0,1,1 -050,01,127,Alabama,Walker County,4,3,4632,2410,2222,2175,2026,197,168,11,3,3,8,0,1,24,16,2376,2194,2144,2003,194,164,11,3,3,8,0,0,24,16,34,28,31,23,3,4,0,0,0,0,0,1,0,0 -050,01,127,Alabama,Walker County,4,4,4452,2266,2186,2072,1992,159,169,7,5,12,2,0,1,16,17,2234,2165,2051,1973,155,167,6,5,6,2,0,1,16,17,32,21,21,19,4,2,1,0,6,0,0,0,0,0 -050,01,127,Alabama,Walker County,4,5,4341,2099,2242,1904,2043,171,184,11,5,4,3,0,0,9,7,2040,2209,1853,2014,168,181,9,5,2,3,0,0,8,6,59,33,51,29,3,3,2,0,2,0,0,0,1,1 -050,01,127,Alabama,Walker County,4,6,4137,2111,2026,1933,1874,146,137,12,4,8,6,1,0,11,5,2047,2006,1875,1856,145,136,11,3,6,6,0,0,10,5,64,20,58,18,1,1,1,1,2,0,1,0,1,0 -050,01,127,Alabama,Walker County,4,7,4621,2338,2283,2215,2121,102,141,4,2,5,9,1,0,11,10,2294,2250,2175,2091,100,138,3,2,5,9,0,0,11,10,44,33,40,30,2,3,1,0,0,0,1,0,0,0 -050,01,127,Alabama,Walker County,4,8,4855,2422,2433,2263,2230,136,174,6,9,8,11,1,2,8,7,2381,2408,2225,2208,134,172,6,8,8,11,0,2,8,7,41,25,38,22,2,2,0,1,0,0,1,0,0,0 -050,01,127,Alabama,Walker County,4,9,5261,2621,2640,2399,2423,180,181,15,14,5,5,0,1,22,16,2606,2615,2387,2401,179,180,13,14,5,5,0,1,22,14,15,25,12,22,1,1,2,0,0,0,0,0,0,2 -050,01,127,Alabama,Walker County,4,10,5107,2467,2640,2287,2451,142,155,16,11,4,6,1,1,17,16,2454,2626,2274,2439,142,155,16,11,4,6,1,0,17,15,13,14,13,12,0,0,0,0,0,0,0,1,0,1 -050,01,127,Alabama,Walker County,4,11,5059,2464,2595,2313,2434,123,129,11,9,2,5,1,0,14,18,2455,2587,2305,2429,123,128,11,9,2,5,1,0,13,16,9,8,8,5,0,1,0,0,0,0,0,0,1,2 -050,01,127,Alabama,Walker County,4,12,4388,2136,2252,2041,2140,74,89,6,7,2,5,1,0,12,11,2127,2243,2033,2132,73,88,6,7,2,5,1,0,12,11,9,9,8,8,1,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,4,13,3696,1714,1982,1624,1870,75,94,6,4,3,4,1,0,5,10,1708,1969,1619,1858,74,93,6,4,3,4,1,0,5,10,6,13,5,12,1,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,4,14,3184,1487,1697,1421,1588,52,91,5,2,1,3,0,0,8,13,1480,1691,1415,1582,52,91,5,2,1,3,0,0,7,13,7,6,6,6,0,0,0,0,0,0,0,0,1,0 -050,01,127,Alabama,Walker County,4,15,2580,1099,1481,1055,1407,35,58,2,2,1,4,0,0,6,10,1097,1470,1053,1396,35,58,2,2,1,4,0,0,6,10,2,11,2,11,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,4,16,2216,848,1368,813,1289,32,67,0,1,1,3,0,1,2,7,844,1366,809,1287,32,67,0,1,1,3,0,1,2,7,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,4,17,1382,463,919,438,876,22,40,0,1,0,0,0,0,3,2,462,917,437,874,22,40,0,1,0,0,0,0,3,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,4,18,1106,272,834,241,785,30,44,0,2,0,0,0,0,1,3,272,832,241,783,30,44,0,2,0,0,0,0,1,3,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,4,99,69765,33717,36048,31272,33326,2006,2299,129,89,71,88,8,9,231,237,33294,35731,30903,33044,1979,2276,122,87,61,88,4,7,225,229,423,317,369,282,27,23,7,2,10,0,4,2,6,8 -050,01,127,Alabama,Walker County,5,0,871,453,418,412,377,28,27,2,1,1,2,0,0,10,11,438,408,402,368,26,26,1,1,1,2,0,0,8,11,15,10,10,9,2,1,1,0,0,0,0,0,2,0 -050,01,127,Alabama,Walker County,5,1,3378,1760,1618,1592,1423,128,150,3,2,4,5,1,2,32,36,1722,1574,1559,1385,124,147,3,2,4,4,0,1,32,35,38,44,33,38,4,3,0,0,0,1,1,1,0,1 -050,01,127,Alabama,Walker County,5,2,4329,2217,2112,2018,1897,160,175,11,5,6,8,1,0,21,27,2180,2084,1987,1870,156,174,11,5,6,8,0,0,20,27,37,28,31,27,4,1,0,0,0,0,1,0,1,0 -050,01,127,Alabama,Walker County,5,3,4569,2356,2213,2120,2019,190,164,9,3,6,8,0,1,31,18,2314,2189,2083,2000,186,160,9,3,5,8,0,0,31,18,42,24,37,19,4,4,0,0,1,0,0,1,0,0 -050,01,127,Alabama,Walker County,5,4,4449,2285,2164,2101,1984,153,155,6,5,9,2,1,0,15,18,2255,2143,2078,1965,150,153,5,5,6,2,1,0,15,18,30,21,23,19,3,2,1,0,3,0,0,0,0,0 -050,01,127,Alabama,Walker County,5,5,4315,2109,2206,1894,1998,188,185,12,7,4,4,1,0,10,12,2058,2175,1851,1971,186,182,10,7,2,4,0,0,9,11,51,31,43,27,2,3,2,0,2,0,1,0,1,1 -050,01,127,Alabama,Walker County,5,6,3986,1998,1988,1834,1827,130,145,11,4,10,6,2,0,11,6,1929,1960,1773,1801,129,144,9,3,8,6,0,0,10,6,69,28,61,26,1,1,2,1,2,0,2,0,1,0 -050,01,127,Alabama,Walker County,5,7,4520,2279,2241,2146,2082,113,137,4,2,5,9,1,0,10,11,2231,2206,2102,2050,111,135,3,2,5,9,0,0,10,10,48,35,44,32,2,2,1,0,0,0,1,0,0,1 -050,01,127,Alabama,Walker County,5,8,4770,2396,2374,2233,2188,137,159,6,8,9,9,2,2,9,8,2345,2349,2185,2166,135,157,6,7,9,9,1,2,9,8,51,25,48,22,2,2,0,1,0,0,1,0,0,0 -050,01,127,Alabama,Walker County,5,9,5132,2570,2562,2374,2351,155,171,15,14,4,8,0,1,22,17,2551,2544,2358,2336,154,170,13,14,4,8,0,1,22,15,19,18,16,15,1,1,2,0,0,0,0,0,0,2 -050,01,127,Alabama,Walker County,5,10,5113,2474,2639,2291,2446,148,157,13,11,4,6,1,1,17,18,2462,2627,2279,2436,148,157,13,11,4,6,1,0,17,17,12,12,12,10,0,0,0,0,0,0,0,1,0,1 -050,01,127,Alabama,Walker County,5,11,4945,2403,2542,2238,2367,136,140,11,13,2,4,0,0,16,18,2390,2531,2226,2358,136,139,11,13,2,4,0,0,15,17,13,11,12,9,0,1,0,0,0,0,0,0,1,1 -050,01,127,Alabama,Walker County,5,12,4557,2230,2327,2131,2209,75,94,8,7,3,5,1,0,12,12,2220,2316,2122,2199,74,93,8,7,3,5,1,0,12,12,10,11,9,10,1,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,5,13,3753,1711,2042,1626,1936,64,86,6,4,3,4,2,0,10,12,1703,2031,1619,1925,63,86,6,4,3,4,2,0,10,12,8,11,7,11,1,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,5,14,3195,1526,1669,1457,1562,57,88,3,3,1,4,0,0,8,12,1519,1661,1451,1554,57,88,3,3,1,4,0,0,7,12,7,8,6,8,0,0,0,0,0,0,0,0,1,0 -050,01,127,Alabama,Walker County,5,15,2529,1078,1451,1025,1368,39,65,3,2,1,4,0,0,10,12,1076,1443,1023,1361,39,65,3,2,1,4,0,0,10,11,2,8,2,7,0,0,0,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,5,16,2196,832,1364,803,1297,25,55,0,1,1,3,0,1,3,7,827,1362,798,1295,25,55,0,1,1,3,0,1,3,7,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,5,17,1432,496,936,470,881,23,53,0,1,1,0,0,0,2,1,494,934,468,879,23,53,0,1,1,0,0,0,2,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,5,18,1066,274,792,245,752,28,35,0,2,0,0,0,0,1,3,274,790,245,750,28,35,0,2,0,0,0,0,1,3,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,5,99,69105,33447,35658,31010,32964,1977,2241,123,95,74,91,13,8,250,259,32988,35327,30609,32669,1950,2219,114,93,66,90,6,5,243,251,459,331,401,295,27,22,9,2,8,1,7,3,7,8 -050,01,127,Alabama,Walker County,6,0,875,440,435,398,390,28,31,1,1,1,2,0,0,12,11,427,418,389,374,26,30,1,1,1,2,0,0,10,11,13,17,9,16,2,1,0,0,0,0,0,0,2,0 -050,01,127,Alabama,Walker County,6,1,3363,1780,1583,1598,1400,133,136,4,2,4,6,1,2,40,37,1740,1545,1563,1369,129,133,4,2,4,5,0,1,40,35,40,38,35,31,4,3,0,0,0,1,1,1,0,2 -050,01,127,Alabama,Walker County,6,2,4256,2152,2104,1954,1897,155,158,9,5,7,9,1,1,26,34,2115,2069,1922,1864,152,157,9,5,7,9,0,1,25,33,37,35,32,33,3,1,0,0,0,0,1,0,1,1 -050,01,127,Alabama,Walker County,6,3,4531,2374,2157,2122,1963,204,155,11,7,6,8,0,2,31,22,2329,2123,2082,1933,200,152,11,7,5,8,0,1,31,22,45,34,40,30,4,3,0,0,1,0,0,1,0,0 -050,01,127,Alabama,Walker County,6,4,4376,2265,2111,2083,1938,148,144,6,5,9,3,0,1,19,20,2228,2087,2055,1917,143,142,5,5,6,2,0,1,19,20,37,24,28,21,5,2,1,0,3,1,0,0,0,0 -050,01,127,Alabama,Walker County,6,5,4200,2022,2178,1810,1974,186,182,11,6,4,4,1,0,10,12,1972,2143,1768,1943,184,179,9,6,2,4,0,0,9,11,50,35,42,31,2,3,2,0,2,0,1,0,1,1 -050,01,127,Alabama,Walker County,6,6,4058,2052,2006,1888,1834,129,153,11,5,10,7,2,0,12,7,1960,1972,1804,1803,128,152,9,3,8,7,0,0,11,7,92,34,84,31,1,1,2,2,2,0,2,0,1,0 -050,01,127,Alabama,Walker County,6,7,4320,2147,2173,2016,2005,110,142,4,2,6,10,2,1,9,13,2100,2135,1973,1971,108,140,3,2,6,9,1,1,9,12,47,38,43,34,2,2,1,0,0,1,1,0,0,1 -050,01,127,Alabama,Walker County,6,8,4678,2398,2280,2246,2111,123,140,7,8,10,10,2,2,10,9,2343,2253,2195,2087,121,138,7,7,9,10,1,2,10,9,55,27,51,24,2,2,0,1,1,0,1,0,0,0 -050,01,127,Alabama,Walker County,6,9,5052,2522,2530,2322,2317,158,172,16,13,4,10,0,0,22,18,2491,2503,2294,2293,157,171,14,13,4,10,0,0,22,16,31,27,28,24,1,1,2,0,0,0,0,0,0,2 -050,01,127,Alabama,Walker County,6,10,5136,2457,2679,2302,2473,124,172,10,12,4,7,1,2,16,13,2447,2665,2293,2461,124,172,10,12,4,7,0,1,16,12,10,14,9,12,0,0,0,0,0,0,1,1,0,1 -050,01,127,Alabama,Walker County,6,11,4893,2405,2488,2228,2304,149,150,10,11,2,5,1,0,15,18,2390,2476,2215,2295,149,149,10,11,2,5,1,0,13,16,15,12,13,9,0,1,0,0,0,0,0,0,2,2 -050,01,127,Alabama,Walker County,6,12,4708,2272,2436,2167,2315,80,91,7,12,3,5,1,1,14,12,2262,2426,2158,2307,79,90,7,12,3,5,1,0,14,12,10,10,9,8,1,1,0,0,0,0,0,1,0,0 -050,01,127,Alabama,Walker County,6,13,3775,1753,2022,1663,1918,73,79,8,5,3,6,2,0,4,14,1745,2012,1656,1908,72,79,8,5,3,6,2,0,4,14,8,10,7,10,1,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,6,14,3288,1518,1770,1460,1674,45,78,3,2,1,4,0,0,9,12,1511,1763,1453,1667,45,78,3,2,1,4,0,0,9,12,7,7,7,7,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,6,15,2493,1106,1387,1049,1300,45,73,2,2,1,4,0,0,9,8,1103,1378,1046,1292,45,73,2,2,1,4,0,0,9,7,3,9,3,8,0,0,0,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,6,16,2097,817,1280,794,1219,19,49,1,1,1,3,0,1,2,7,810,1278,788,1217,18,49,1,1,1,3,0,1,2,7,7,2,6,2,1,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,6,17,1465,501,964,471,917,24,44,1,1,0,1,0,0,5,1,499,962,469,915,24,44,1,1,0,1,0,0,5,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,6,18,1065,273,792,248,754,24,33,0,2,0,0,0,0,1,3,273,790,248,752,24,33,0,2,0,0,0,0,1,3,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,6,99,68629,33254,35375,30819,32703,1957,2182,122,102,76,104,14,13,266,271,32745,34998,30371,32368,1928,2161,114,99,67,101,6,9,259,260,509,377,448,335,29,21,8,3,9,3,8,4,7,11 -050,01,127,Alabama,Walker County,7,0,860,449,411,411,371,27,26,2,1,1,1,0,0,8,12,431,394,396,356,26,25,1,0,1,1,0,0,7,12,18,17,15,15,1,1,1,1,0,0,0,0,1,0 -050,01,127,Alabama,Walker County,7,1,3372,1710,1662,1522,1455,128,160,4,1,4,6,2,3,50,37,1667,1620,1486,1418,127,159,4,1,4,5,1,2,45,35,43,42,36,37,1,1,0,0,0,1,1,1,5,2 -050,01,127,Alabama,Walker County,7,2,4282,2180,2102,1996,1900,143,149,8,7,6,8,2,0,25,38,2139,2063,1963,1864,140,148,7,7,5,8,1,0,23,36,41,39,33,36,3,1,1,0,1,0,1,0,2,2 -050,01,127,Alabama,Walker County,7,3,4469,2355,2114,2124,1915,186,163,8,6,5,7,0,1,32,22,2308,2081,2085,1887,181,160,8,5,4,7,0,0,30,22,47,33,39,28,5,3,0,1,1,0,0,1,2,0 -050,01,127,Alabama,Walker County,7,4,4479,2321,2158,2124,1987,154,134,8,10,9,3,2,1,24,23,2283,2125,2096,1962,152,132,5,6,6,2,1,1,23,22,38,33,28,25,2,2,3,4,3,1,1,0,1,1 -050,01,127,Alabama,Walker County,7,5,3988,1944,2044,1722,1842,190,179,11,6,5,6,4,1,12,10,1885,2010,1673,1812,188,177,8,6,4,6,2,0,10,9,59,34,49,30,2,2,3,0,1,0,2,1,2,1 -050,01,127,Alabama,Walker County,7,6,4089,2021,2068,1846,1886,132,158,11,6,13,7,5,0,14,11,1929,2029,1769,1854,130,156,8,2,9,6,1,0,12,11,92,39,77,32,2,2,3,4,4,1,4,0,2,0 -050,01,127,Alabama,Walker County,7,7,4244,2105,2139,1965,1959,112,145,8,5,4,11,4,2,12,17,2030,2101,1901,1928,110,143,5,3,4,11,0,1,10,15,75,38,64,31,2,2,3,2,0,0,4,1,2,2 -050,01,127,Alabama,Walker County,7,8,4597,2366,2231,2205,2067,130,137,8,7,10,9,3,2,10,9,2303,2197,2148,2038,130,134,7,6,8,9,1,2,9,8,63,34,57,29,0,3,1,1,2,0,2,0,1,1 -050,01,127,Alabama,Walker County,7,9,4934,2491,2443,2321,2260,133,146,15,12,4,9,0,1,18,15,2461,2411,2294,2229,131,146,14,12,4,9,0,1,18,14,30,32,27,31,2,0,1,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,7,10,5160,2482,2678,2308,2458,142,188,9,12,5,5,1,1,17,14,2466,2661,2295,2445,142,186,9,12,5,5,0,0,15,13,16,17,13,13,0,2,0,0,0,0,1,1,2,1 -050,01,127,Alabama,Walker County,7,11,4883,2423,2460,2246,2263,141,158,14,15,1,3,1,0,20,21,2406,2451,2231,2255,141,158,12,15,1,3,1,0,20,20,17,9,15,8,0,0,2,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,7,12,4851,2349,2502,2226,2373,91,101,8,11,6,6,1,0,17,11,2339,2493,2216,2365,91,100,8,11,6,6,1,0,17,11,10,9,10,8,0,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,7,13,3836,1760,2076,1659,1968,75,79,8,6,4,7,1,0,13,16,1752,2064,1652,1957,75,79,7,6,4,7,1,0,13,15,8,12,7,11,0,0,1,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,7,14,3294,1538,1756,1477,1668,51,75,2,2,1,2,0,0,7,9,1532,1745,1471,1657,51,75,2,2,1,2,0,0,7,9,6,11,6,11,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,7,15,2528,1143,1385,1090,1292,39,76,4,1,1,4,0,0,9,12,1139,1376,1086,1283,39,76,4,1,1,4,0,0,9,12,4,9,4,9,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,7,16,2087,809,1278,778,1234,24,34,2,3,0,3,0,0,5,4,804,1274,773,1231,24,33,2,3,0,3,0,0,5,4,5,4,5,3,0,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,7,17,1490,511,979,491,928,16,46,1,2,0,0,0,0,3,3,508,976,488,925,16,46,1,2,0,0,0,0,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,7,18,1057,283,774,256,738,25,35,0,0,0,0,0,0,2,1,282,772,255,736,25,35,0,0,0,0,0,0,2,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,7,99,68500,33240,35260,30767,32564,1939,2189,131,113,79,97,26,12,298,285,32664,34843,30278,32202,1919,2168,112,100,67,94,10,7,278,272,576,417,489,362,20,21,19,13,12,3,16,5,20,13 -050,01,127,Alabama,Walker County,8,0,815,433,382,399,337,20,30,1,0,1,1,0,0,12,14,418,365,387,321,18,29,1,0,1,1,0,0,11,14,15,17,12,16,2,1,0,0,0,0,0,0,1,0 -050,01,127,Alabama,Walker County,8,1,3259,1704,1555,1505,1368,133,139,7,3,6,6,3,2,50,37,1664,1506,1473,1326,132,137,6,2,6,5,2,1,45,35,40,49,32,42,1,2,1,1,0,1,1,1,5,2 -050,01,127,Alabama,Walker County,8,2,4313,2207,2106,2009,1888,139,156,10,7,8,9,3,1,38,45,2159,2062,1972,1848,136,155,7,7,7,9,1,0,36,43,48,44,37,40,3,1,3,0,1,0,2,1,2,2 -050,01,127,Alabama,Walker County,8,3,4392,2288,2104,2040,1900,194,163,14,6,5,7,0,3,35,25,2242,2074,2003,1875,188,160,14,5,4,7,0,2,33,25,46,30,37,25,6,3,0,1,1,0,0,1,2,0 -050,01,127,Alabama,Walker County,8,4,4528,2343,2185,2154,2000,146,139,7,10,9,3,1,1,26,32,2299,2152,2118,1976,145,136,5,6,6,3,0,0,25,31,44,33,36,24,1,3,2,4,3,0,1,1,1,1 -050,01,127,Alabama,Walker County,8,5,3779,1861,1918,1673,1737,157,160,8,4,5,5,4,2,14,10,1803,1879,1625,1702,154,159,6,4,4,5,2,0,12,9,58,39,48,35,3,1,2,0,1,0,2,2,2,1 -050,01,127,Alabama,Walker County,8,6,4186,2057,2129,1855,1940,158,165,9,6,13,7,7,0,15,11,1956,2083,1771,1901,155,163,6,2,9,6,2,0,13,11,101,46,84,39,3,2,3,4,4,1,5,0,2,0 -050,01,127,Alabama,Walker County,8,7,4066,2004,2062,1854,1887,114,138,11,5,5,10,7,3,13,19,1932,2011,1797,1846,112,135,5,3,5,10,2,1,11,16,72,51,57,41,2,3,6,2,0,0,5,2,2,3 -050,01,127,Alabama,Walker County,8,8,4644,2388,2256,2231,2097,121,131,11,7,9,9,3,3,13,9,2324,2224,2174,2069,121,129,9,6,7,9,1,3,12,8,64,32,57,28,0,2,2,1,2,0,2,0,1,1 -050,01,127,Alabama,Walker County,8,9,4785,2410,2375,2238,2201,136,147,15,9,5,4,0,0,16,14,2377,2350,2209,2177,134,147,13,9,5,4,0,0,16,13,33,25,29,24,2,0,2,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,8,10,5176,2479,2697,2299,2470,145,188,12,17,5,8,1,1,17,13,2460,2674,2285,2452,144,186,12,17,5,7,0,0,14,12,19,23,14,18,1,2,0,0,0,1,1,1,3,1 -050,01,127,Alabama,Walker County,8,11,4845,2376,2469,2215,2279,126,155,12,14,1,3,0,0,22,18,2361,2454,2203,2266,125,155,11,13,1,3,0,0,21,17,15,15,12,13,1,0,1,1,0,0,0,0,1,1 -050,01,127,Alabama,Walker County,8,12,5055,2471,2584,2328,2445,108,109,8,12,6,6,0,0,21,12,2456,2574,2313,2438,108,108,8,12,6,6,0,0,21,10,15,10,15,7,0,1,0,0,0,0,0,0,0,2 -050,01,127,Alabama,Walker County,8,13,3850,1803,2047,1717,1936,64,82,8,5,4,8,2,0,8,16,1795,2033,1710,1924,64,82,7,5,4,8,2,0,8,14,8,14,7,12,0,0,1,0,0,0,0,0,0,2 -050,01,127,Alabama,Walker County,8,14,3308,1538,1770,1471,1688,53,64,6,4,1,3,0,0,7,11,1531,1758,1464,1677,53,64,6,4,1,3,0,0,7,10,7,12,7,11,0,0,0,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,8,15,2613,1159,1454,1112,1359,35,83,4,0,1,2,0,0,7,10,1155,1443,1108,1348,35,83,4,0,1,2,0,0,7,10,4,11,4,11,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,8,16,2089,828,1261,792,1208,29,41,2,3,0,3,0,0,5,6,822,1255,787,1203,28,40,2,3,0,3,0,0,5,6,6,6,5,5,1,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,8,17,1472,514,958,490,911,18,40,2,3,0,0,0,0,4,4,512,956,488,909,18,40,2,3,0,0,0,0,4,4,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,8,18,1059,280,779,261,744,16,34,0,0,0,0,0,0,3,1,279,777,260,742,16,34,0,0,0,0,0,0,3,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,8,99,68234,33143,35091,30643,32395,1912,2164,147,115,84,94,31,16,326,307,32545,34630,30147,32000,1886,2142,124,101,72,91,12,7,304,289,598,461,496,395,26,22,23,14,12,3,19,9,22,18 -050,01,127,Alabama,Walker County,9,0,878,444,434,408,392,22,24,1,1,1,1,0,0,12,16,420,415,388,375,20,23,0,0,1,1,0,0,11,16,24,19,20,17,2,1,1,1,0,0,0,0,1,0 -050,01,127,Alabama,Walker County,9,1,3150,1647,1503,1450,1307,127,144,7,3,7,7,3,5,53,37,1602,1461,1416,1274,125,142,5,2,7,5,2,3,47,35,45,42,34,33,2,2,2,1,0,2,1,2,6,2 -050,01,127,Alabama,Walker County,9,2,4186,2176,2010,1982,1810,141,138,10,7,7,10,3,1,33,44,2119,1965,1936,1769,138,137,7,7,6,10,1,0,31,42,57,45,46,41,3,1,3,0,1,0,2,1,2,2 -050,01,127,Alabama,Walker County,9,3,4436,2312,2124,2072,1921,184,159,8,8,5,7,0,3,43,26,2263,2085,2032,1888,178,156,8,7,4,7,0,2,41,25,49,39,40,33,6,3,0,1,1,0,0,1,2,1 -050,01,127,Alabama,Walker County,9,4,4446,2295,2151,2097,1955,155,143,7,12,9,4,1,1,26,36,2245,2121,2056,1935,153,140,5,8,6,3,0,0,25,35,50,30,41,20,2,3,2,4,3,1,1,1,1,1 -050,01,127,Alabama,Walker County,9,5,3739,1841,1898,1663,1713,145,162,7,5,5,5,4,2,17,11,1777,1850,1609,1669,142,161,5,5,4,5,2,0,15,10,64,48,54,44,3,1,2,0,1,0,2,2,2,1 -050,01,127,Alabama,Walker County,9,6,4018,1989,2029,1791,1859,152,143,7,7,13,8,7,0,19,12,1881,1985,1700,1823,149,141,4,2,9,7,2,0,17,12,108,44,91,36,3,2,3,5,4,1,5,0,2,0 -050,01,127,Alabama,Walker County,9,7,3928,1914,2014,1760,1828,121,144,11,5,6,11,4,4,12,22,1843,1959,1704,1783,119,141,5,3,5,11,0,2,10,19,71,55,56,45,2,3,6,2,1,0,4,2,2,3 -050,01,127,Alabama,Walker County,9,8,4585,2364,2221,2210,2064,117,129,11,6,9,8,4,4,13,10,2293,2187,2146,2034,117,127,9,5,7,8,2,4,12,9,71,34,64,30,0,2,2,1,2,0,2,0,1,1 -050,01,127,Alabama,Walker County,9,9,4707,2346,2361,2176,2200,131,127,15,12,6,7,0,0,18,15,2313,2338,2147,2178,129,127,13,12,6,7,0,0,18,14,33,23,29,22,2,0,2,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,9,10,5107,2495,2612,2311,2392,152,185,7,15,5,7,2,1,18,12,2473,2591,2295,2376,151,183,7,15,5,6,0,0,15,11,22,21,16,16,1,2,0,0,0,1,2,1,3,1 -050,01,127,Alabama,Walker County,9,11,4867,2367,2500,2197,2310,134,150,17,14,1,3,0,0,18,23,2347,2490,2180,2301,133,150,16,13,1,3,0,0,17,23,20,10,17,9,1,0,1,1,0,0,0,0,1,0 -050,01,127,Alabama,Walker County,9,12,4958,2433,2525,2290,2376,107,114,10,13,6,7,0,1,20,14,2420,2508,2277,2364,107,113,10,13,6,6,0,0,20,12,13,17,13,12,0,1,0,0,0,1,0,1,0,2 -050,01,127,Alabama,Walker County,9,13,4081,1922,2159,1835,2049,64,77,9,6,4,9,1,0,9,18,1907,2147,1821,2039,64,77,8,6,4,9,1,0,9,16,15,12,14,10,0,0,1,0,0,0,0,0,0,2 -050,01,127,Alabama,Walker County,9,14,3380,1573,1807,1496,1714,62,78,3,3,1,3,0,0,11,9,1566,1795,1489,1703,62,78,3,3,1,3,0,0,11,8,7,12,7,11,0,0,0,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,9,15,2675,1187,1488,1142,1401,31,73,4,0,1,2,0,0,9,12,1183,1476,1138,1389,31,73,4,0,1,2,0,0,9,12,4,12,4,12,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,9,16,2017,821,1196,782,1140,32,45,2,3,0,3,0,0,5,5,815,1190,776,1135,32,44,2,3,0,3,0,0,5,5,6,6,6,5,0,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,9,17,1496,539,957,514,916,18,35,2,2,0,0,0,0,5,4,538,954,513,914,18,34,2,2,0,0,0,0,5,4,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,9,18,1041,292,749,274,716,16,32,0,0,0,0,0,0,2,1,291,748,273,715,16,32,0,0,0,0,0,0,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,9,99,67695,32957,34738,30450,32063,1911,2102,138,122,86,102,29,22,343,327,32296,34265,29896,31664,1884,2079,113,106,73,96,10,11,320,309,661,473,554,399,27,23,25,16,13,6,19,11,23,18 -050,01,127,Alabama,Walker County,10,0,895,441,454,404,409,22,25,2,1,1,0,0,0,12,19,412,428,381,386,20,24,0,0,1,0,0,0,10,18,29,26,23,23,2,1,2,1,0,0,0,0,2,1 -050,01,127,Alabama,Walker County,10,1,3194,1639,1555,1453,1358,109,133,8,4,7,6,4,4,58,50,1581,1498,1407,1312,107,129,6,3,7,4,2,2,52,48,58,57,46,46,2,4,2,1,0,2,2,2,6,2 -050,01,127,Alabama,Walker County,10,2,4182,2177,2005,1972,1788,154,145,8,9,7,11,3,1,33,51,2109,1954,1914,1741,151,144,5,9,7,11,1,0,31,49,68,51,58,47,3,1,3,0,0,0,2,1,2,2 -050,01,127,Alabama,Walker County,10,3,4480,2308,2172,2070,1964,183,159,6,5,7,7,0,2,42,35,2259,2123,2031,1919,177,158,6,4,5,7,0,1,40,34,49,49,39,45,6,1,0,1,2,0,0,1,2,1 -050,01,127,Alabama,Walker County,10,4,4430,2263,2167,2065,1987,158,135,6,10,7,3,1,1,26,31,2214,2137,2023,1966,156,132,4,6,6,3,0,0,25,30,49,30,42,21,2,3,2,4,1,0,1,1,1,1 -050,01,127,Alabama,Walker County,10,5,3710,1855,1855,1675,1673,143,153,10,6,5,6,5,2,17,15,1780,1806,1612,1628,141,152,7,6,4,6,2,0,14,14,75,49,63,45,2,1,3,0,1,0,3,2,3,1 -050,01,127,Alabama,Walker County,10,6,3968,1991,1977,1785,1818,156,133,8,7,16,7,10,0,16,12,1865,1936,1682,1785,152,131,4,2,11,6,3,0,13,12,126,41,103,33,4,2,4,5,5,1,7,0,3,0 -050,01,127,Alabama,Walker County,10,7,3883,1851,2032,1694,1838,121,151,11,5,5,12,8,3,12,23,1779,1982,1638,1798,119,149,5,3,5,11,2,1,10,20,72,50,56,40,2,2,6,2,0,1,6,2,2,3 -050,01,127,Alabama,Walker County,10,8,4575,2358,2217,2195,2056,122,134,12,5,9,10,4,1,16,11,2281,2169,2124,2012,122,132,10,4,8,10,2,1,15,10,77,48,71,44,0,2,2,1,1,0,2,0,1,1 -050,01,127,Alabama,Walker County,10,9,4655,2344,2311,2178,2152,124,127,17,11,5,9,0,0,20,12,2299,2283,2139,2125,122,127,14,11,5,9,0,0,19,11,45,28,39,27,2,0,3,0,0,0,0,0,1,1 -050,01,127,Alabama,Walker County,10,10,5084,2493,2591,2327,2372,134,179,8,16,5,9,2,2,17,13,2473,2567,2313,2358,133,177,8,16,5,5,0,0,14,11,20,24,14,14,1,2,0,0,0,4,2,2,3,2 -050,01,127,Alabama,Walker County,10,11,4884,2374,2510,2187,2318,142,149,21,14,1,3,0,0,23,26,2351,2500,2168,2310,141,149,19,13,1,3,0,0,22,25,23,10,19,8,1,0,2,1,0,0,0,0,1,1 -050,01,127,Alabama,Walker County,10,12,4872,2383,2489,2229,2335,117,121,10,11,7,8,0,1,20,13,2369,2476,2215,2328,117,119,10,11,7,7,0,0,20,11,14,13,14,7,0,2,0,0,0,1,0,1,0,2 -050,01,127,Alabama,Walker County,10,13,4229,2015,2214,1925,2087,67,90,9,5,4,10,2,0,8,22,2005,2203,1916,2078,67,90,8,5,4,10,2,0,8,20,10,11,9,9,0,0,1,0,0,0,0,0,0,2 -050,01,127,Alabama,Walker County,10,14,3447,1574,1873,1501,1770,60,87,4,4,1,3,0,0,8,9,1566,1860,1493,1758,60,87,4,4,1,3,0,0,8,8,8,13,8,12,0,0,0,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,10,15,2761,1272,1489,1218,1416,39,62,3,0,1,2,0,0,11,9,1268,1476,1214,1403,39,62,3,0,1,2,0,0,11,9,4,13,4,13,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,10,16,2029,839,1190,801,1133,32,47,1,3,0,3,0,0,5,4,833,1183,795,1127,32,46,1,3,0,3,0,0,5,4,6,7,6,6,0,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,10,17,1508,531,977,507,926,17,46,2,2,0,0,0,0,5,3,529,974,505,924,17,45,2,2,0,0,0,0,5,3,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,10,18,1049,298,751,281,712,16,38,0,0,0,0,0,0,1,1,297,749,280,710,16,38,0,0,0,0,0,0,1,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,10,99,67835,33006,34829,30467,32112,1916,2114,146,118,88,109,39,17,350,359,32270,34304,29850,31668,1889,2091,116,102,78,100,14,5,323,338,736,525,617,444,27,23,30,16,10,9,25,12,27,21 -050,01,127,Alabama,Walker County,11,0,794,389,405,353,351,22,33,3,2,1,0,0,0,10,19,367,379,337,329,21,32,0,0,1,0,0,0,8,18,22,26,16,22,1,1,3,2,0,0,0,0,2,1 -050,01,127,Alabama,Walker County,11,1,3175,1626,1549,1451,1371,103,123,9,4,7,6,3,4,53,41,1557,1493,1395,1325,101,120,6,3,7,4,1,2,47,39,69,56,56,46,2,3,3,1,0,2,2,2,6,2 -050,01,127,Alabama,Walker County,11,2,4103,2103,2000,1890,1769,156,150,7,9,7,9,4,1,39,62,2040,1944,1838,1718,153,149,4,9,7,9,1,0,37,59,63,56,52,51,3,1,3,0,0,0,3,1,2,3 -050,01,127,Alabama,Walker County,11,3,4413,2233,2180,1983,1975,179,154,9,4,8,7,0,3,54,37,2185,2138,1947,1937,172,153,9,3,5,7,0,2,52,36,48,42,36,38,7,1,0,1,3,0,0,1,2,1 -050,01,127,Alabama,Walker County,11,4,4418,2296,2122,2082,1934,170,135,5,9,7,3,1,1,31,40,2245,2088,2038,1909,168,132,3,5,6,3,0,0,30,39,51,34,44,25,2,3,2,4,1,0,1,1,1,1 -050,01,127,Alabama,Walker County,11,5,3685,1839,1846,1659,1677,145,139,8,5,5,7,5,2,17,16,1761,1784,1593,1620,143,138,5,5,4,6,2,0,14,15,78,62,66,57,2,1,3,0,1,1,3,2,3,1 -050,01,127,Alabama,Walker County,11,6,3831,1904,1927,1719,1754,137,144,6,8,16,8,8,0,18,13,1764,1884,1602,1721,133,141,2,2,11,7,1,0,15,13,140,43,117,33,4,3,4,6,5,1,7,0,3,0 -050,01,127,Alabama,Walker County,11,7,3917,1880,2037,1728,1831,115,162,12,5,6,13,7,4,12,22,1793,1996,1660,1799,113,160,5,3,4,12,1,2,10,20,87,41,68,32,2,2,7,2,2,1,6,2,2,2 -050,01,127,Alabama,Walker County,11,8,4385,2259,2126,2094,1990,122,110,13,5,10,7,4,2,16,12,2188,2081,2031,1949,122,108,11,4,8,7,1,2,15,11,71,45,63,41,0,2,2,1,2,0,3,0,1,1 -050,01,127,Alabama,Walker County,11,9,4568,2353,2215,2199,2074,115,111,15,9,5,8,0,0,19,13,2304,2186,2155,2046,113,111,13,9,5,8,0,0,18,12,49,29,44,28,2,0,2,0,0,0,0,0,1,1 -050,01,127,Alabama,Walker County,11,10,5030,2463,2567,2299,2338,130,186,11,17,5,10,2,2,16,14,2441,2544,2282,2323,129,184,11,17,5,8,0,0,14,12,22,23,17,15,1,2,0,0,0,2,2,2,2,2 -050,01,127,Alabama,Walker County,11,11,4970,2407,2563,2235,2369,122,150,27,18,1,5,0,0,22,21,2385,2546,2217,2353,121,150,25,17,1,5,0,0,21,21,22,17,18,16,1,0,2,1,0,0,0,0,1,0 -050,01,127,Alabama,Walker County,11,12,4863,2394,2469,2230,2307,126,123,10,13,8,8,0,1,20,17,2380,2454,2216,2298,126,121,10,13,8,7,0,0,20,15,14,15,14,9,0,2,0,0,0,1,0,1,0,2 -050,01,127,Alabama,Walker County,11,13,4373,2043,2330,1940,2210,73,86,14,5,4,10,2,0,10,19,2030,2319,1928,2201,73,86,13,5,4,10,2,0,10,17,13,11,12,9,0,0,1,0,0,0,0,0,0,2 -050,01,127,Alabama,Walker County,11,14,3449,1618,1831,1539,1738,62,76,5,4,1,4,0,0,11,9,1610,1819,1531,1727,62,76,5,4,1,4,0,0,11,8,8,12,8,11,0,0,0,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,11,15,2839,1266,1573,1220,1509,31,51,4,0,1,2,0,0,10,11,1262,1556,1216,1493,31,51,4,0,1,2,0,0,10,10,4,17,4,16,0,0,0,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,11,16,2046,891,1155,846,1086,38,59,2,3,0,3,0,0,5,4,883,1148,839,1080,37,58,2,3,0,3,0,0,5,4,8,7,7,6,1,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,11,17,1405,533,872,508,846,18,20,2,3,0,0,0,0,5,3,531,869,506,844,18,19,2,3,0,0,0,0,5,3,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,11,18,1083,298,785,282,759,14,25,0,0,0,0,0,0,2,1,297,784,281,758,14,25,0,0,0,0,0,0,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,11,99,67347,32795,34552,30257,31888,1878,2037,162,123,92,110,36,20,370,374,32023,34012,29612,31430,1850,2014,130,105,78,102,9,8,344,353,772,540,645,458,28,23,32,18,14,8,27,12,26,21 -050,01,127,Alabama,Walker County,12,0,762,378,384,342,332,23,30,3,2,1,0,0,0,9,20,357,360,328,312,21,29,0,0,1,0,0,0,7,19,21,24,14,20,2,1,3,2,0,0,0,0,2,1 -050,01,127,Alabama,Walker County,12,1,3109,1564,1545,1387,1359,102,120,9,4,7,6,4,5,55,51,1499,1483,1335,1307,100,117,6,3,7,4,2,3,49,49,65,62,52,52,2,3,3,1,0,2,2,2,6,2 -050,01,127,Alabama,Walker County,12,2,4101,2107,1994,1889,1767,156,146,7,9,8,12,4,1,43,59,2036,1939,1830,1717,153,145,4,9,7,12,1,0,41,56,71,55,59,50,3,1,3,0,1,0,3,1,2,3 -050,01,127,Alabama,Walker County,12,3,4440,2277,2163,2036,1944,170,161,9,6,8,7,0,3,54,42,2231,2119,2001,1904,163,160,9,5,6,7,0,2,52,41,46,44,35,40,7,1,0,1,2,0,0,1,2,1 -050,01,127,Alabama,Walker County,12,4,4360,2279,2081,2068,1880,168,143,5,11,7,4,1,1,30,42,2229,2045,2025,1854,166,140,3,7,6,3,0,0,29,41,50,36,43,26,2,3,2,4,1,1,1,1,1,1 -050,01,127,Alabama,Walker County,12,5,3737,1869,1868,1681,1705,149,132,8,5,5,7,5,2,21,17,1785,1814,1609,1656,147,131,5,5,4,6,2,0,18,16,84,54,72,49,2,1,3,0,1,1,3,2,3,1 -050,01,127,Alabama,Walker County,12,6,3694,1862,1832,1664,1657,145,145,6,8,17,9,10,0,20,13,1732,1784,1557,1618,141,143,2,2,12,8,3,0,17,13,130,48,107,39,4,2,4,6,5,1,7,0,3,0 -050,01,127,Alabama,Walker County,12,7,3973,1876,2097,1711,1898,126,154,12,5,7,13,8,4,12,23,1792,2051,1647,1862,123,152,5,3,5,12,2,2,10,20,84,46,64,36,3,2,7,2,2,1,6,2,2,3 -050,01,127,Alabama,Walker County,12,8,4238,2174,2064,2013,1924,117,111,11,5,10,8,7,4,16,12,2104,2030,1951,1894,117,109,9,4,8,8,4,4,15,11,70,34,62,30,0,2,2,1,2,0,3,0,1,1 -050,01,127,Alabama,Walker County,12,9,4450,2288,2162,2132,2016,115,116,17,8,5,9,0,0,19,13,2241,2134,2091,1989,113,116,14,8,5,9,0,0,18,12,47,28,41,27,2,0,3,0,0,0,0,0,1,1 -050,01,127,Alabama,Walker County,12,10,4944,2442,2502,2287,2293,120,169,11,12,5,11,2,2,17,15,2411,2477,2262,2276,119,167,11,12,5,9,0,0,14,13,31,25,25,17,1,2,0,0,0,2,2,2,3,2 -050,01,127,Alabama,Walker County,12,11,4992,2426,2566,2250,2358,131,158,22,19,1,4,0,0,22,27,2401,2551,2229,2345,130,158,20,18,1,4,0,0,21,26,25,15,21,13,1,0,2,1,0,0,0,0,1,1 -050,01,127,Alabama,Walker County,12,12,4857,2398,2459,2227,2291,127,127,11,16,8,8,0,1,25,16,2384,2443,2213,2281,127,125,11,16,8,7,0,0,25,14,14,16,14,10,0,2,0,0,0,1,0,1,0,2 -050,01,127,Alabama,Walker County,12,13,4472,2086,2386,1980,2250,78,97,12,8,4,11,2,0,10,20,2075,2375,1970,2241,78,97,11,8,4,11,2,0,10,18,11,11,10,9,0,0,1,0,0,0,0,0,0,2 -050,01,127,Alabama,Walker County,12,14,3487,1616,1871,1533,1774,68,79,5,5,1,4,0,0,9,9,1608,1859,1525,1763,68,79,5,5,1,4,0,0,9,8,8,12,8,11,0,0,0,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,12,15,2848,1282,1566,1232,1493,33,61,4,0,1,2,0,0,12,10,1278,1553,1228,1481,33,61,4,0,1,2,0,0,12,9,4,13,4,12,0,0,0,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,12,16,2051,899,1152,860,1089,32,53,2,3,0,3,0,0,5,4,891,1145,853,1083,31,52,2,3,0,3,0,0,5,4,8,7,7,6,1,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,12,17,1408,526,882,501,847,17,29,2,3,0,0,0,0,6,3,524,879,499,845,17,28,2,3,0,0,0,0,6,3,2,3,2,2,0,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,12,18,1100,319,781,304,756,13,24,0,0,0,0,0,0,2,1,318,779,303,754,13,24,0,0,0,0,0,0,2,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,12,99,67023,32668,34355,30097,31633,1890,2055,156,129,95,118,43,23,387,397,31896,33820,29456,31182,1860,2033,123,111,81,109,16,11,360,374,772,535,641,451,30,22,33,18,14,9,27,12,27,23 -050,01,127,Alabama,Walker County,13,0,757,378,379,342,331,23,28,3,2,0,0,1,0,9,18,357,357,328,311,21,28,0,0,0,0,0,0,8,18,21,22,14,20,2,0,3,2,0,0,1,0,1,0 -050,01,127,Alabama,Walker County,13,1,3099,1554,1545,1379,1354,102,122,7,4,8,6,2,3,56,56,1490,1479,1327,1300,100,118,5,3,7,4,0,1,51,53,64,66,52,54,2,4,2,1,1,2,2,2,5,3 -050,01,127,Alabama,Walker County,13,2,4096,2105,1991,1884,1759,154,145,7,9,10,12,4,2,46,64,2031,1936,1824,1709,151,143,4,9,8,12,1,2,43,61,74,55,60,50,3,2,3,0,2,0,3,0,3,3 -050,01,127,Alabama,Walker County,13,3,4424,2266,2158,2027,1936,167,163,9,5,9,9,2,2,52,43,2222,2110,1992,1895,163,161,9,4,8,8,1,1,49,41,44,48,35,41,4,2,0,1,1,1,1,1,3,2 -050,01,127,Alabama,Walker County,13,4,4319,2257,2062,2048,1865,166,141,4,8,5,3,2,1,32,44,2207,2024,2006,1838,164,139,2,5,4,2,1,0,30,40,50,38,42,27,2,2,2,3,1,1,1,1,2,4 -050,01,127,Alabama,Walker County,13,5,3750,1872,1878,1681,1709,152,133,8,6,5,6,5,4,21,20,1785,1822,1608,1658,150,133,3,4,4,5,2,2,18,20,87,56,73,51,2,0,5,2,1,1,3,2,3,0 -050,01,127,Alabama,Walker County,13,6,3693,1861,1832,1670,1657,147,144,5,8,12,9,4,1,23,13,1732,1783,1562,1618,142,143,2,2,9,8,1,1,16,11,129,49,108,39,5,1,3,6,3,1,3,0,7,2 -050,01,127,Alabama,Walker County,13,7,3984,1880,2104,1719,1905,127,154,10,7,5,12,7,3,12,23,1800,2061,1655,1870,124,152,4,5,4,11,3,1,10,22,80,43,64,35,3,2,6,2,1,1,4,2,2,1 -050,01,127,Alabama,Walker County,13,8,4193,2147,2046,1994,1902,116,109,10,6,10,9,3,4,14,16,2077,2009,1930,1870,116,108,8,4,8,9,1,4,14,14,70,37,64,32,0,1,2,2,2,0,2,0,0,2 -050,01,127,Alabama,Walker County,13,9,4450,2281,2169,2126,2010,115,118,15,13,6,11,3,3,16,14,2231,2135,2083,1983,113,118,13,10,6,10,0,1,16,13,50,34,43,27,2,0,2,3,0,1,3,2,0,1 -050,01,127,Alabama,Walker County,13,10,4904,2422,2482,2270,2275,122,166,10,13,6,10,1,2,13,16,2390,2458,2245,2259,119,165,9,12,5,8,0,0,12,14,32,24,25,16,3,1,1,1,1,2,1,2,1,2 -050,01,127,Alabama,Walker County,13,11,4980,2424,2556,2250,2357,131,157,21,18,1,4,4,0,17,20,2398,2541,2229,2343,130,157,19,17,1,4,2,0,17,20,26,15,21,14,1,0,2,1,0,0,2,0,0,0 -050,01,127,Alabama,Walker County,13,12,4873,2407,2466,2235,2299,128,127,10,16,9,8,0,0,25,16,2390,2451,2219,2288,127,124,10,16,9,8,0,0,25,15,17,15,16,11,1,3,0,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,13,13,4504,2097,2407,1992,2264,82,102,10,10,4,12,0,0,9,19,2085,2396,1981,2255,81,100,10,10,4,12,0,0,9,19,12,11,11,9,1,2,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,13,14,3506,1626,1880,1538,1781,70,83,6,4,3,3,0,0,9,9,1618,1867,1531,1770,69,81,6,4,3,3,0,0,9,9,8,13,7,11,1,2,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,13,15,2854,1283,1571,1233,1496,35,62,5,2,0,2,0,0,10,9,1279,1558,1231,1485,33,61,5,2,0,2,0,0,10,8,4,13,2,11,2,1,0,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,13,16,2039,897,1142,859,1080,32,53,1,2,1,4,0,0,4,3,892,1137,854,1075,32,53,1,2,1,4,0,0,4,3,5,5,5,5,0,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,13,17,1413,531,882,504,845,18,31,2,1,1,1,0,0,6,4,529,880,502,844,18,30,2,1,1,1,0,0,6,4,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,13,18,1109,323,786,306,759,14,25,0,0,0,0,0,0,3,2,321,783,305,756,13,25,0,0,0,0,0,0,3,2,2,3,1,3,1,0,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,13,99,66947,32611,34336,30057,31584,1901,2063,143,134,95,121,38,25,377,409,31834,33787,29412,31127,1866,2039,112,110,82,111,12,13,350,387,777,549,645,457,35,24,31,24,13,10,26,12,27,22 -050,01,129,Alabama,Washington County,1,0,259,123,136,82,88,29,37,10,9,0,0,0,0,2,2,121,135,81,87,28,37,10,9,0,0,0,0,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,1,1,1049,562,487,335,267,164,157,61,53,0,0,0,0,2,10,557,480,333,264,162,154,60,53,0,0,0,0,2,9,5,7,2,3,2,3,1,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,1,2,1497,784,713,443,406,263,220,63,75,1,0,1,0,13,12,775,706,437,401,261,219,63,75,1,0,1,0,12,11,9,7,6,5,2,1,0,0,0,0,0,0,1,1 -050,01,129,Alabama,Washington County,1,3,1477,763,714,445,400,252,240,52,64,2,2,0,0,12,8,756,707,443,399,248,235,51,64,2,2,0,0,12,7,7,7,2,1,4,5,1,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,1,4,1451,737,714,435,423,233,220,59,66,0,0,0,0,10,5,727,713,431,423,228,219,59,66,0,0,0,0,9,5,10,1,4,0,5,1,0,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,1,5,1010,498,512,323,321,132,139,41,49,0,0,0,0,2,3,495,508,321,319,132,138,40,48,0,0,0,0,2,3,3,4,2,2,0,1,1,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,1,6,1132,561,571,367,360,140,165,50,43,0,1,0,1,4,1,556,563,364,355,139,162,49,43,0,1,0,1,4,1,5,8,3,5,1,3,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,1,7,1185,562,623,390,389,121,174,49,56,0,0,0,0,2,4,554,618,383,386,120,172,49,56,0,0,0,0,2,4,8,5,7,3,1,2,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,1,8,1322,628,694,427,442,150,200,47,43,0,2,0,1,4,6,621,689,424,437,146,200,47,43,0,2,0,1,4,6,7,5,3,5,4,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,1,9,1316,639,677,441,430,155,189,37,49,0,1,0,0,6,8,634,672,439,426,153,188,36,49,0,1,0,0,6,8,5,5,2,4,2,1,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,1,10,1242,584,658,393,430,152,179,36,45,0,0,0,0,3,4,582,655,391,429,152,178,36,45,0,0,0,0,3,3,2,3,2,1,0,1,0,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,1,11,1156,587,569,400,399,139,132,44,35,0,1,0,0,4,2,583,565,399,396,138,132,43,34,0,1,0,0,3,2,4,4,1,3,1,0,1,1,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,1,12,974,493,481,362,353,105,99,24,26,1,0,0,0,1,3,486,476,357,349,104,99,24,25,1,0,0,0,0,3,7,5,5,4,1,0,0,1,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,1,13,765,380,385,296,288,69,75,15,20,0,0,0,0,0,2,378,382,294,285,69,75,15,20,0,0,0,0,0,2,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,1,14,698,328,370,243,256,74,92,9,16,0,0,0,1,2,5,323,364,240,252,72,90,9,16,0,0,0,1,2,5,5,6,3,4,2,2,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,1,15,567,261,306,193,220,56,67,9,16,0,0,1,0,2,3,261,305,193,220,56,66,9,16,0,0,1,0,2,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,1,16,437,179,258,125,186,49,66,5,5,0,0,0,0,0,1,177,256,124,185,48,66,5,4,0,0,0,0,0,1,2,2,1,1,1,0,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,1,17,275,112,163,89,126,22,33,1,3,0,0,0,0,0,1,112,163,89,126,22,33,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,1,18,265,75,190,54,127,19,59,2,3,0,0,0,0,0,1,75,187,54,125,19,58,2,3,0,0,0,0,0,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,1,99,18077,8856,9221,5843,5911,2324,2543,614,676,4,7,2,3,69,81,8773,9144,5797,5864,2297,2521,608,672,4,7,2,3,65,77,83,77,46,47,27,22,6,4,0,0,0,0,4,4 -050,01,129,Alabama,Washington County,2,0,260,123,137,82,89,29,37,10,9,0,0,0,0,2,2,121,136,81,88,28,37,10,9,0,0,0,0,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,2,1,1043,558,485,332,266,163,156,61,53,0,0,0,0,2,10,553,478,330,263,161,153,60,53,0,0,0,0,2,9,5,7,2,3,2,3,1,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,2,2,1488,779,709,439,402,262,220,63,75,1,0,1,0,13,12,770,702,433,397,260,219,63,75,1,0,1,0,12,11,9,7,6,5,2,1,0,0,0,0,0,0,1,1 -050,01,129,Alabama,Washington County,2,3,1479,763,716,444,400,253,241,52,65,2,2,0,0,12,8,756,709,442,399,249,236,51,65,2,2,0,0,12,7,7,7,2,1,4,5,1,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,2,4,1458,744,714,440,424,235,220,59,65,0,0,0,0,10,5,734,713,436,424,230,219,59,65,0,0,0,0,9,5,10,1,4,0,5,1,0,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,2,5,1019,503,516,326,325,135,139,40,49,0,0,0,0,2,3,500,512,324,323,135,138,39,48,0,0,0,0,2,3,3,4,2,2,0,1,1,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,2,6,1125,558,567,363,356,141,165,50,43,0,1,0,1,4,1,553,559,360,351,140,162,49,43,0,1,0,1,4,1,5,8,3,5,1,3,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,2,7,1185,563,622,392,388,120,174,49,56,0,0,0,0,2,4,555,617,385,385,119,172,49,56,0,0,0,0,2,4,8,5,7,3,1,2,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,2,8,1317,626,691,425,439,150,200,47,43,0,2,0,1,4,6,619,686,422,434,146,200,47,43,0,2,0,1,4,6,7,5,3,5,4,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,2,9,1320,641,679,441,429,157,192,37,49,0,1,0,0,6,8,636,674,439,425,155,191,36,49,0,1,0,0,6,8,5,5,2,4,2,1,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,2,10,1249,586,663,394,434,153,180,36,45,0,0,0,0,3,4,584,660,392,433,153,179,36,45,0,0,0,0,3,3,2,3,2,1,0,1,0,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,2,11,1166,594,572,404,401,142,133,44,35,0,1,0,0,4,2,590,568,403,398,141,133,43,34,0,1,0,0,3,2,4,4,1,3,1,0,1,1,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,2,12,979,495,484,364,356,105,99,24,26,1,0,0,0,1,3,488,479,359,352,104,99,24,25,1,0,0,0,0,3,7,5,5,4,1,0,0,1,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,2,13,765,380,385,296,288,69,75,15,20,0,0,0,0,0,2,378,382,294,285,69,75,15,20,0,0,0,0,0,2,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,2,14,695,328,367,243,254,74,92,9,15,0,0,0,1,2,5,323,361,240,250,72,90,9,15,0,0,0,1,2,5,5,6,3,4,2,2,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,2,15,568,262,306,194,220,56,67,9,16,0,0,1,0,2,3,262,305,194,220,56,66,9,16,0,0,1,0,2,3,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,2,16,437,179,258,125,186,49,66,5,5,0,0,0,0,0,1,177,256,124,185,48,66,5,4,0,0,0,0,0,1,2,2,1,1,1,0,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,2,17,278,113,165,90,128,22,33,1,3,0,0,0,0,0,1,113,165,90,128,22,33,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,2,18,270,77,193,56,130,19,59,2,3,0,0,0,0,0,1,77,190,56,128,19,58,2,3,0,0,0,0,0,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,2,99,18101,8872,9229,5850,5915,2334,2548,613,675,4,7,2,3,69,81,8789,9152,5804,5868,2307,2526,607,671,4,7,2,3,65,77,83,77,46,47,27,22,6,4,0,0,0,0,4,4 -050,01,129,Alabama,Washington County,3,0,232,121,111,75,64,34,36,10,9,0,0,0,0,2,2,119,110,74,63,33,36,10,9,0,0,0,0,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,3,1,992,511,481,321,286,143,140,45,45,0,0,0,0,2,10,507,475,319,283,141,138,45,45,0,0,0,0,2,9,4,6,2,3,2,2,0,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,3,2,1445,757,688,431,394,244,217,70,65,1,0,0,0,11,12,748,681,425,389,242,216,70,65,1,0,0,0,10,11,9,7,6,5,2,1,0,0,0,0,0,0,1,1 -050,01,129,Alabama,Washington County,3,3,1493,771,722,448,412,248,241,62,60,2,2,0,0,11,7,762,716,444,411,244,236,61,60,2,2,0,0,11,7,9,6,4,1,4,5,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,3,4,1392,732,660,420,385,245,216,58,54,0,0,0,0,9,5,722,658,416,384,240,215,58,54,0,0,0,0,8,5,10,2,4,1,5,1,0,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,3,5,1062,535,527,342,320,145,149,46,55,0,0,0,0,2,3,532,523,340,318,145,148,45,54,0,0,0,0,2,3,3,4,2,2,0,1,1,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,3,6,1003,469,534,320,331,106,156,39,44,0,1,0,1,4,1,464,526,317,326,105,153,38,44,0,1,0,1,4,1,5,8,3,5,1,3,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,3,7,1156,550,606,392,392,117,156,39,54,0,0,0,0,2,4,542,601,385,389,116,154,39,54,0,0,0,0,2,4,8,5,7,3,1,2,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,3,8,1298,638,660,421,422,162,181,51,49,0,2,0,1,4,5,631,655,418,417,158,181,51,49,0,2,0,1,4,5,7,5,3,5,4,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,3,9,1348,651,697,452,427,152,204,41,57,0,1,0,0,6,8,647,692,450,423,151,203,40,57,0,1,0,0,6,8,4,5,2,4,1,1,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,3,10,1216,572,644,385,407,144,183,40,51,0,0,0,0,3,3,570,642,383,406,144,182,40,51,0,0,0,0,3,3,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,3,11,1259,635,624,425,445,156,147,50,29,0,1,0,0,4,2,631,621,424,442,155,147,49,29,0,1,0,0,3,2,4,3,1,3,1,0,1,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,3,12,985,512,473,374,349,112,97,24,25,1,0,0,0,1,2,505,468,369,345,111,97,24,24,1,0,0,0,0,2,7,5,5,4,1,0,0,1,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,3,13,810,399,411,308,308,72,85,19,16,0,0,0,0,0,2,397,408,306,305,72,85,19,16,0,0,0,0,0,2,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,3,14,687,327,360,247,250,64,90,14,15,0,0,0,0,2,5,323,354,244,246,63,88,14,15,0,0,0,0,2,5,4,6,3,4,1,2,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,3,15,586,272,314,205,239,57,59,7,14,0,0,2,0,1,2,272,313,205,239,57,58,7,14,0,0,2,0,1,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,3,16,446,180,266,130,189,44,68,6,8,0,0,0,0,0,1,178,264,129,188,43,68,6,7,0,0,0,0,0,1,2,2,1,1,1,0,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,3,17,260,102,158,74,120,27,32,1,5,0,0,0,0,0,1,102,158,74,120,27,32,1,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,3,18,263,71,192,51,131,18,57,2,3,0,0,0,0,0,1,71,189,51,129,18,56,2,3,0,0,0,0,0,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,3,99,17933,8805,9128,5821,5871,2290,2514,624,658,4,7,2,2,64,76,8723,9054,5773,5823,2265,2493,619,655,4,7,2,2,60,74,82,74,48,48,25,21,5,3,0,0,0,0,4,2 -050,01,129,Alabama,Washington County,4,0,240,123,117,75,78,34,27,11,9,0,0,0,0,3,3,121,116,74,77,33,27,11,9,0,0,0,0,3,3,2,1,1,1,1,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,4,1,1033,512,521,312,316,142,147,56,48,0,0,0,0,2,10,509,514,310,313,141,144,56,48,0,0,0,0,2,9,3,7,2,3,1,3,0,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,4,2,1367,711,656,404,380,232,198,61,66,1,0,1,0,12,12,702,649,398,375,230,197,61,66,1,0,1,0,11,11,9,7,6,5,2,1,0,0,0,0,0,0,1,1 -050,01,129,Alabama,Washington County,4,3,1472,774,698,461,396,231,242,68,50,2,2,0,0,12,8,767,691,458,394,228,238,67,50,2,2,0,0,12,7,7,7,3,2,3,4,1,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,4,4,1395,749,646,430,368,242,207,67,64,0,0,0,0,10,7,739,643,426,367,237,206,67,64,0,0,0,0,9,6,10,3,4,1,5,1,0,0,0,0,0,0,1,1 -050,01,129,Alabama,Washington County,4,5,1094,537,557,337,338,156,156,42,61,0,0,0,0,2,2,534,553,335,336,156,155,41,60,0,0,0,0,2,2,3,4,2,2,0,1,1,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,4,6,954,461,493,305,312,108,130,45,48,0,1,0,1,3,1,456,485,302,307,107,127,44,48,0,1,0,1,3,1,5,8,3,5,1,3,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,4,7,1141,538,603,388,386,112,161,36,51,0,0,0,0,2,5,530,598,381,383,111,159,36,51,0,0,0,0,2,5,8,5,7,3,1,2,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,4,8,1282,625,657,424,408,138,187,59,55,0,2,0,0,4,5,618,652,420,403,135,187,59,55,0,2,0,0,4,5,7,5,4,5,3,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,4,9,1286,605,681,414,425,151,195,34,53,0,1,0,0,6,7,601,676,412,421,150,194,33,53,0,1,0,0,6,7,4,5,2,4,1,1,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,4,10,1299,640,659,441,419,152,183,44,51,0,0,0,0,3,6,638,656,439,418,152,182,44,51,0,0,0,0,3,5,2,3,2,1,0,1,0,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,4,11,1183,583,600,396,425,142,140,41,32,0,1,0,0,4,2,579,595,395,421,141,140,40,31,0,1,0,0,3,2,4,5,1,4,1,0,1,1,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,4,12,1067,543,524,386,377,126,110,29,33,1,0,0,0,1,4,537,519,382,373,125,110,29,32,1,0,0,0,0,4,6,5,4,4,1,0,0,1,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,4,13,830,401,429,318,328,68,82,15,16,0,0,0,0,0,3,399,426,316,325,68,82,15,16,0,0,0,0,0,3,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,4,14,717,351,366,268,247,69,99,12,14,0,0,0,1,2,5,347,361,265,244,68,97,12,14,0,0,0,1,2,5,4,5,3,3,1,2,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,4,15,571,263,308,203,228,49,61,8,18,0,0,1,0,2,1,263,306,203,227,49,60,8,18,0,0,1,0,2,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,4,16,431,174,257,132,192,38,58,4,6,0,0,0,0,0,1,172,255,131,191,37,58,4,5,0,0,0,0,0,1,2,2,1,1,1,0,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,4,17,271,111,160,75,117,33,39,3,3,0,0,0,0,0,1,109,159,74,117,32,38,3,3,0,0,0,0,0,1,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,4,18,262,72,190,49,131,21,55,2,3,0,0,0,0,0,1,72,187,49,129,21,54,2,3,0,0,0,0,0,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,4,99,17895,8773,9122,5818,5871,2244,2477,637,681,4,7,2,2,68,84,8693,9041,5770,5821,2221,2455,632,677,4,7,2,2,64,79,80,81,48,50,23,22,5,4,0,0,0,0,4,5 -050,01,129,Alabama,Washington County,5,0,219,110,109,68,72,29,24,11,10,0,0,0,0,2,3,108,108,67,71,28,24,11,10,0,0,0,0,2,3,2,1,1,1,1,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,5,1,1006,485,521,302,328,135,137,45,47,0,0,0,0,3,9,482,514,300,324,134,135,45,47,0,0,0,0,3,8,3,7,2,4,1,2,0,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,5,2,1331,701,630,414,354,211,201,63,62,1,0,0,0,12,13,693,624,409,350,209,200,63,62,1,0,0,0,11,12,8,6,5,4,2,1,0,0,0,0,0,0,1,1 -050,01,129,Alabama,Washington County,5,3,1465,777,688,451,386,242,237,69,56,2,2,1,0,12,7,768,682,446,384,239,233,68,56,2,2,1,0,12,7,9,6,5,2,3,4,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,5,4,1369,726,643,432,375,223,208,61,53,0,1,0,0,10,6,718,640,429,374,219,207,61,53,0,1,0,0,9,5,8,3,3,1,4,1,0,0,0,0,0,0,1,1 -050,01,129,Alabama,Washington County,5,5,1128,553,575,336,357,165,159,50,57,0,0,0,0,2,2,549,571,333,355,165,158,49,56,0,0,0,0,2,2,4,4,3,2,0,1,1,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,5,6,957,459,498,292,310,108,133,55,49,0,1,0,1,4,4,454,491,289,306,107,130,54,49,0,1,0,1,4,4,5,7,3,4,1,3,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,5,7,1110,536,574,372,367,118,163,44,39,0,0,0,0,2,5,528,569,366,364,117,161,43,39,0,0,0,0,2,5,8,5,6,3,1,2,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,5,8,1238,614,624,437,391,120,180,53,44,0,2,0,1,4,6,607,619,433,387,117,180,53,44,0,2,0,1,4,5,7,5,4,4,3,0,0,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,5,9,1315,612,703,412,435,154,206,40,54,0,1,0,0,6,7,608,698,410,431,153,205,39,54,0,1,0,0,6,7,4,5,2,4,1,1,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,5,10,1307,635,672,432,437,159,185,41,45,0,1,0,0,3,4,632,670,429,436,159,184,41,45,0,1,0,0,3,4,3,2,3,1,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,5,11,1173,580,593,406,412,130,140,39,37,0,1,0,1,5,2,575,590,405,409,129,140,38,37,0,1,0,1,3,2,5,3,1,3,1,0,1,0,0,0,0,0,2,0 -050,01,129,Alabama,Washington County,5,12,1083,553,530,383,377,133,114,35,35,1,0,0,0,1,4,547,527,379,374,132,114,35,35,1,0,0,0,0,4,6,3,4,3,1,0,0,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,5,13,902,428,474,331,365,73,88,23,18,0,0,0,0,1,3,425,471,329,362,73,88,22,18,0,0,0,0,1,3,3,3,2,3,0,0,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,5,14,719,356,363,278,256,64,86,11,16,0,0,0,0,3,5,351,357,275,252,63,84,11,16,0,0,0,0,2,5,5,6,3,4,1,2,0,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,5,15,590,277,313,208,228,56,66,10,17,0,0,1,0,2,2,277,311,208,227,56,65,10,17,0,0,1,0,2,2,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,5,16,448,184,264,151,192,29,60,4,11,0,0,0,0,0,1,182,262,150,191,28,60,4,10,0,0,0,0,0,1,2,2,1,1,1,0,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,5,17,294,117,177,82,130,33,41,2,5,0,0,0,0,0,1,115,176,81,130,32,40,2,5,0,0,0,0,0,1,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,5,18,256,72,184,51,131,18,50,2,2,0,0,0,0,1,1,72,181,51,129,18,49,2,2,0,0,0,0,1,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,5,99,17910,8775,9135,5838,5903,2200,2478,658,657,4,9,2,3,73,85,8691,9061,5789,5856,2178,2457,651,655,4,9,2,3,67,81,84,74,49,47,22,21,7,2,0,0,0,0,6,4 -050,01,129,Alabama,Washington County,6,0,177,91,86,59,53,19,18,11,11,0,0,0,0,2,4,89,85,58,52,18,18,11,11,0,0,0,0,2,4,2,1,1,1,1,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,6,1,951,439,512,259,307,127,144,50,50,0,0,0,0,3,11,436,505,257,303,126,142,50,50,0,0,0,0,3,10,3,7,2,4,1,2,0,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,6,2,1305,676,629,414,373,182,190,67,53,1,0,0,1,12,12,669,624,409,369,181,189,67,53,1,0,0,1,11,12,7,5,5,4,1,1,0,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,6,3,1503,814,689,468,383,259,226,76,70,2,2,0,1,9,7,803,683,461,381,256,222,75,70,2,2,0,1,9,7,11,6,7,2,3,4,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,6,4,1345,713,632,442,359,214,216,46,48,0,1,0,0,11,8,707,627,439,357,212,215,46,48,0,1,0,0,10,6,6,5,3,2,2,1,0,0,0,0,0,0,1,2 -050,01,129,Alabama,Washington County,6,5,1051,502,549,307,346,156,149,37,52,0,0,0,0,2,2,498,546,304,344,156,149,36,51,0,0,0,0,2,2,4,3,3,2,0,0,1,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,6,6,945,456,489,302,305,106,124,44,54,0,1,0,1,4,4,450,483,299,301,104,122,43,54,0,1,0,1,4,4,6,6,3,4,2,2,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,6,7,1070,507,563,350,357,109,153,46,48,0,0,0,0,2,5,500,558,344,354,109,151,45,48,0,0,0,0,2,5,7,5,6,3,0,2,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,6,8,1197,581,616,408,378,119,181,51,50,0,2,0,0,3,5,573,612,403,374,116,181,51,50,0,2,0,0,3,5,8,4,5,4,3,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,6,9,1347,648,699,445,457,156,183,41,50,0,1,0,0,6,8,644,694,443,453,155,182,40,50,0,1,0,0,6,8,4,5,2,4,1,1,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,6,10,1337,648,689,440,438,169,196,36,48,0,1,0,0,3,6,644,686,437,437,168,195,36,48,0,1,0,0,3,5,4,3,3,1,1,1,0,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,6,11,1204,571,633,393,430,129,156,45,44,0,1,0,0,4,2,567,629,392,427,128,155,44,44,0,1,0,0,3,2,4,4,1,3,1,1,1,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,6,12,1104,584,520,399,359,141,115,41,42,1,0,0,0,2,4,577,516,395,356,140,115,41,41,1,0,0,0,0,4,7,4,4,3,1,0,0,1,0,0,0,0,2,0 -050,01,129,Alabama,Washington County,6,13,931,438,493,343,375,77,96,17,18,0,0,0,0,1,4,436,490,341,372,77,96,17,18,0,0,0,0,1,4,2,3,2,3,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,6,14,732,364,368,285,270,60,77,16,16,0,0,0,0,3,5,360,362,282,266,60,75,16,16,0,0,0,0,2,5,4,6,3,4,0,2,0,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,6,15,601,275,326,208,232,57,75,7,18,0,0,1,0,2,1,275,324,208,231,57,74,7,18,0,0,1,0,2,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,6,16,459,200,259,154,192,39,56,7,10,0,0,0,0,0,1,198,257,153,191,38,56,7,9,0,0,0,0,0,1,2,2,1,1,1,0,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,6,17,304,116,188,86,131,26,51,4,5,0,0,0,0,0,1,114,187,85,131,25,50,4,5,0,0,0,0,0,1,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,6,18,238,69,169,52,118,15,48,1,2,0,0,0,0,1,1,69,166,52,116,15,47,1,2,0,0,0,0,1,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,6,99,17801,8692,9109,5814,5863,2160,2454,643,689,4,9,1,3,70,91,8609,9034,5762,5815,2141,2434,637,686,4,9,1,3,64,87,83,75,52,48,19,20,6,3,0,0,0,0,6,4 -050,01,129,Alabama,Washington County,7,0,180,93,87,56,53,22,19,12,10,0,0,0,0,3,5,92,87,55,53,22,19,12,10,0,0,0,0,3,5,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,7,1,863,424,439,257,270,118,119,44,38,0,0,0,0,5,12,423,436,257,268,117,118,44,38,0,0,0,0,5,12,1,3,0,2,1,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,7,2,1263,645,618,404,364,166,184,63,55,1,0,0,0,11,15,637,613,400,360,165,183,60,55,1,0,0,0,11,15,8,5,4,4,1,1,3,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,7,3,1487,799,688,450,389,265,216,74,73,0,0,1,2,9,8,790,681,445,386,262,213,73,72,0,0,1,2,9,8,9,7,5,3,3,3,1,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,7,4,1334,709,625,450,354,204,205,45,55,2,2,0,0,8,9,701,621,446,352,202,205,44,54,2,2,0,0,7,8,8,4,4,2,2,0,1,1,0,0,0,0,1,1 -050,01,129,Alabama,Washington County,7,5,1011,502,509,293,315,146,143,58,47,0,0,1,0,4,4,499,507,291,315,146,142,58,46,0,0,0,0,4,4,3,2,2,0,0,1,0,1,0,0,1,0,0,0 -050,01,129,Alabama,Washington County,7,6,912,450,462,300,301,105,102,38,51,0,1,2,0,5,7,444,457,299,299,103,100,37,50,0,1,0,0,5,7,6,5,1,2,2,2,1,1,0,0,2,0,0,0 -050,01,129,Alabama,Washington County,7,7,1010,487,523,333,331,107,138,43,49,0,0,0,1,4,4,480,520,328,328,107,138,42,49,0,0,0,1,3,4,7,3,5,3,0,0,1,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,7,8,1219,580,639,407,400,127,175,45,53,0,4,0,2,1,5,571,633,402,397,124,175,45,53,0,3,0,2,0,3,9,6,5,3,3,0,0,0,0,1,0,0,1,2 -050,01,129,Alabama,Washington County,7,9,1319,629,690,420,439,166,184,38,60,1,0,0,0,4,7,623,689,416,438,165,184,38,60,0,0,0,0,4,7,6,1,4,1,1,0,0,0,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,7,10,1343,647,696,446,438,154,191,44,56,1,2,0,0,2,9,644,692,444,436,153,190,44,56,1,2,0,0,2,8,3,4,2,2,1,1,0,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,7,11,1221,577,644,408,424,132,168,33,47,0,2,0,1,4,2,569,640,403,421,131,167,32,47,0,2,0,1,3,2,8,4,5,3,1,1,1,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,7,12,1162,591,571,406,400,137,125,46,40,0,0,0,0,2,6,589,568,405,397,137,125,46,40,0,0,0,0,1,6,2,3,1,3,0,0,0,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,7,13,977,493,484,378,356,86,102,26,21,0,1,0,0,3,4,491,483,377,355,86,102,25,21,0,1,0,0,3,4,2,1,1,1,0,0,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,7,14,759,359,400,286,297,55,80,16,19,0,0,0,0,2,4,355,394,283,293,55,78,16,19,0,0,0,0,1,4,4,6,3,4,0,2,0,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,7,15,621,288,333,215,237,63,80,8,15,0,0,1,0,1,1,286,331,213,236,63,79,8,15,0,0,1,0,1,1,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,7,16,453,205,248,169,186,32,51,4,9,0,1,0,0,0,1,203,245,168,185,31,50,4,8,0,1,0,0,0,1,2,3,1,1,1,1,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,7,17,314,118,196,76,133,38,56,3,5,0,0,0,0,1,2,116,195,75,133,37,55,3,5,0,0,0,0,1,2,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,7,18,242,72,170,51,123,19,45,1,2,0,0,0,0,1,0,72,169,51,122,19,45,1,2,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,7,99,17690,8668,9022,5805,5810,2142,2383,641,705,5,13,5,6,70,105,8585,8961,5758,5774,2125,2368,632,700,4,12,2,6,64,101,83,61,47,36,17,15,9,5,1,1,3,0,6,4 -050,01,129,Alabama,Washington County,8,0,163,82,81,50,49,17,16,12,13,0,0,0,0,3,3,81,81,49,49,17,16,12,13,0,0,0,0,3,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,8,1,834,416,418,252,261,114,108,45,37,0,0,0,1,5,11,414,413,252,259,113,107,44,35,0,0,0,1,5,11,2,5,0,2,1,1,1,2,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,8,2,1259,632,627,398,366,159,184,63,63,1,0,0,0,11,14,624,623,394,363,158,184,60,62,1,0,0,0,11,14,8,4,4,3,1,0,3,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,8,3,1465,791,674,452,377,267,217,64,71,0,0,1,1,7,8,785,667,449,374,265,214,63,70,0,0,1,1,7,8,6,7,3,3,2,3,1,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,8,4,1353,711,642,454,369,199,199,49,61,2,2,0,0,7,11,703,635,450,365,197,199,48,60,2,2,0,0,6,9,8,7,4,4,2,0,1,1,0,0,0,0,1,2 -050,01,129,Alabama,Washington County,8,5,960,479,481,287,305,138,132,47,40,0,0,1,0,6,4,476,480,285,305,138,132,47,39,0,0,0,0,6,4,3,1,2,0,0,0,0,1,0,0,1,0,0,0 -050,01,129,Alabama,Washington County,8,6,988,497,491,309,319,120,103,59,60,0,1,2,1,7,7,491,488,308,317,118,103,58,59,0,1,0,1,7,7,6,3,1,2,2,0,1,1,0,0,2,0,0,0 -050,01,129,Alabama,Washington County,8,7,944,430,514,295,312,99,139,32,58,0,0,1,1,3,4,422,512,291,310,99,139,30,58,0,0,0,1,2,4,8,2,4,2,0,0,2,0,0,0,1,0,1,0 -050,01,129,Alabama,Washington County,8,8,1195,566,629,396,404,115,171,53,46,0,3,0,1,2,4,559,625,392,401,113,171,53,46,0,3,0,1,1,3,7,4,4,3,2,0,0,0,0,0,0,0,1,1 -050,01,129,Alabama,Washington County,8,9,1315,646,669,432,429,171,175,40,59,1,0,0,0,2,6,640,667,428,428,170,174,40,59,0,0,0,0,2,6,6,2,4,1,1,1,0,0,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,8,10,1342,652,690,450,445,153,193,47,43,1,2,0,0,1,7,648,686,448,443,151,192,47,43,1,2,0,0,1,6,4,4,2,2,2,1,0,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,8,11,1227,579,648,414,419,126,173,35,50,0,2,0,1,4,3,575,644,410,416,126,172,35,50,0,2,0,1,4,3,4,4,4,3,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,8,12,1229,611,618,425,428,149,144,34,39,0,0,0,0,3,7,608,613,424,425,149,143,34,38,0,0,0,0,1,7,3,5,1,3,0,1,0,1,0,0,0,0,2,0 -050,01,129,Alabama,Washington County,8,13,979,500,479,377,347,95,98,23,30,0,1,0,0,5,3,499,479,376,347,95,98,23,30,0,1,0,0,5,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,8,14,801,371,430,291,315,61,93,17,18,0,0,0,0,2,4,366,424,288,310,60,92,17,18,0,0,0,0,1,4,5,6,3,5,1,1,0,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,8,15,611,293,318,215,229,64,76,12,12,0,0,0,0,2,1,291,315,213,227,64,76,12,11,0,0,0,0,2,1,2,3,2,2,0,0,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,8,16,476,222,254,180,191,36,49,5,12,0,1,0,0,1,1,219,251,178,190,35,48,5,11,0,1,0,0,1,1,3,3,2,1,1,1,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,8,17,320,123,197,83,131,36,59,4,6,0,0,0,0,0,1,120,196,81,131,35,58,4,6,0,0,0,0,0,1,3,1,2,0,1,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,8,18,244,76,168,47,125,27,41,1,2,0,0,0,0,1,0,76,167,47,124,27,41,1,2,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,8,99,17705,8677,9028,5807,5821,2146,2370,642,720,5,12,5,6,72,99,8597,8966,5763,5784,2130,2359,633,710,4,12,1,6,66,95,80,62,44,37,16,11,9,10,1,0,4,0,6,4 -050,01,129,Alabama,Washington County,9,0,176,89,87,57,58,16,13,12,12,0,0,0,0,4,4,88,87,56,58,16,13,12,12,0,0,0,0,4,4,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,9,1,829,403,426,247,251,103,121,48,43,0,0,0,1,5,10,402,422,247,249,103,121,47,41,0,0,0,1,5,10,1,4,0,2,0,0,1,2,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,9,2,1253,619,634,389,373,155,176,63,69,1,0,0,1,11,15,611,630,385,370,154,176,60,68,1,0,0,1,11,15,8,4,4,3,1,0,3,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,9,3,1374,743,631,418,361,252,194,65,66,0,0,1,1,7,9,738,624,415,358,251,191,64,65,0,0,1,1,7,9,5,7,3,3,1,3,1,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,9,4,1331,727,604,464,340,195,195,59,57,2,2,0,0,7,10,719,597,460,336,193,195,58,56,2,2,0,0,6,8,8,7,4,4,2,0,1,1,0,0,0,0,1,2 -050,01,129,Alabama,Washington County,9,5,946,477,469,286,299,132,128,51,38,0,0,1,1,7,3,474,468,284,299,132,128,51,37,0,0,0,1,7,3,3,1,2,0,0,0,0,1,0,0,1,0,0,0 -050,01,129,Alabama,Washington County,9,6,953,469,484,296,304,113,110,52,61,0,1,2,1,6,7,463,481,295,302,111,110,51,60,0,1,0,1,6,7,6,3,1,2,2,0,1,1,0,0,2,0,0,0 -050,01,129,Alabama,Washington County,9,7,893,417,476,291,298,92,121,31,53,0,0,0,0,3,4,410,474,287,296,92,121,29,53,0,0,0,0,2,4,7,2,4,2,0,0,2,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,9,8,1187,567,620,390,399,116,165,59,48,0,3,0,1,2,4,561,616,386,396,115,165,59,48,0,3,0,1,1,3,6,4,4,3,1,0,0,0,0,0,0,0,1,1 -050,01,129,Alabama,Washington County,9,9,1268,629,639,421,406,159,166,46,61,1,0,0,0,2,6,623,637,417,405,158,165,46,61,0,0,0,0,2,6,6,2,4,1,1,1,0,0,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,9,10,1286,627,659,430,425,150,177,45,48,1,2,0,0,1,7,623,655,428,423,148,176,45,48,1,2,0,0,1,6,4,4,2,2,2,1,0,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,9,11,1288,619,669,451,440,131,178,33,45,0,2,0,1,4,3,614,665,446,437,131,177,33,45,0,2,0,1,4,3,5,4,5,3,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,9,12,1198,586,612,392,421,146,145,45,38,0,0,0,0,3,8,583,606,391,418,146,144,45,36,0,0,0,0,1,8,3,6,1,3,0,1,0,2,0,0,0,0,2,0 -050,01,129,Alabama,Washington County,9,13,1032,515,517,381,369,103,113,26,31,0,1,0,0,5,3,514,517,380,369,103,113,26,31,0,1,0,0,5,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,9,14,797,368,429,285,325,64,77,18,22,0,0,0,0,1,5,365,424,282,321,64,76,18,22,0,0,0,0,1,5,3,5,3,4,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,9,15,634,306,328,231,228,58,83,15,17,0,0,0,0,2,0,304,325,229,226,58,83,15,16,0,0,0,0,2,0,2,3,2,2,0,0,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,9,16,471,215,256,178,188,34,55,2,11,0,1,0,0,1,1,212,253,176,187,33,54,2,10,0,1,0,0,1,1,3,3,2,1,1,1,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,9,17,313,117,196,84,136,27,52,5,7,0,0,0,0,1,1,113,195,82,136,25,51,5,7,0,0,0,0,1,1,4,1,2,0,2,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,9,18,262,93,169,55,124,35,42,2,3,0,0,0,0,1,0,93,167,55,123,35,42,2,2,0,0,0,0,1,0,0,2,0,1,0,0,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,9,99,17491,8586,8905,5746,5745,2081,2311,677,730,5,12,4,7,73,100,8510,8843,5701,5709,2068,2301,668,718,4,12,1,7,68,96,76,62,45,36,13,10,9,12,1,0,3,0,5,4 -050,01,129,Alabama,Washington County,10,0,194,92,102,55,68,21,18,13,12,0,0,0,0,3,4,91,102,54,68,21,18,13,12,0,0,0,0,3,4,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,10,1,865,429,436,266,277,108,99,50,51,0,0,0,0,5,9,428,430,266,274,108,99,49,48,0,0,0,0,5,9,1,6,0,3,0,0,1,3,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,10,2,1207,615,592,365,351,170,159,69,66,1,0,0,1,10,15,609,589,362,349,170,159,66,65,1,0,0,1,10,15,6,3,3,2,0,0,3,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,10,3,1340,715,625,422,354,226,193,60,67,0,0,0,2,7,9,709,618,418,350,225,191,59,66,0,0,0,2,7,9,6,7,4,4,1,2,1,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,10,4,1363,730,633,444,351,207,193,70,76,2,3,0,0,7,10,723,627,441,348,205,193,69,75,2,3,0,0,6,8,7,6,3,3,2,0,1,1,0,0,0,0,1,2 -050,01,129,Alabama,Washington County,10,5,914,475,439,295,272,120,126,52,38,0,0,1,0,7,3,471,438,292,272,120,126,52,37,0,0,0,0,7,3,4,1,3,0,0,0,0,1,0,0,1,0,0,0 -050,01,129,Alabama,Washington County,10,6,966,460,506,296,318,113,114,42,64,0,1,2,1,7,8,454,504,295,317,111,114,41,63,0,1,0,1,7,8,6,2,1,1,2,0,1,1,0,0,2,0,0,0 -050,01,129,Alabama,Washington County,10,7,887,420,467,283,298,97,122,36,42,0,0,1,0,3,5,412,465,280,296,97,122,33,42,0,0,0,0,2,5,8,2,3,2,0,0,3,0,0,0,1,0,1,0 -050,01,129,Alabama,Washington County,10,8,1154,561,593,378,384,121,172,60,29,0,4,0,0,2,4,554,589,373,382,120,172,60,29,0,3,0,0,1,3,7,4,5,2,1,0,0,0,0,1,0,0,1,1 -050,01,129,Alabama,Washington County,10,9,1235,618,617,431,385,142,169,42,58,1,0,0,0,2,5,613,615,427,384,142,168,42,58,0,0,0,0,2,5,5,2,4,1,0,1,0,0,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,10,10,1311,621,690,414,428,158,203,47,47,1,3,0,0,1,9,615,686,411,426,155,202,47,47,1,3,0,0,1,8,6,4,3,2,3,1,0,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,10,11,1308,626,682,452,452,136,179,34,45,0,2,0,1,4,3,621,678,448,449,136,178,33,45,0,2,0,1,4,3,5,4,4,3,0,1,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,10,12,1179,576,603,395,402,133,149,45,44,0,0,0,0,3,8,574,598,395,400,133,148,45,42,0,0,0,0,1,8,2,5,0,2,0,1,0,2,0,0,0,0,2,0 -050,01,129,Alabama,Washington County,10,13,1058,526,532,373,382,111,111,37,34,0,1,0,0,5,4,524,532,372,382,111,111,36,34,0,1,0,0,5,4,2,0,1,0,0,0,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,10,14,839,382,457,289,343,72,85,19,25,0,0,0,0,2,4,379,452,287,339,72,84,19,25,0,0,0,0,1,4,3,5,2,4,0,1,0,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,10,15,624,315,309,250,228,56,68,7,13,0,0,0,0,2,0,313,306,248,226,56,68,7,12,0,0,0,0,2,0,2,3,2,2,0,0,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,10,16,477,223,254,174,179,45,57,3,16,0,1,0,0,1,1,220,251,172,178,44,56,3,15,0,1,0,0,1,1,3,3,2,1,1,1,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,10,17,323,125,198,96,137,22,54,6,6,0,0,0,0,1,1,122,197,94,137,21,53,6,6,0,0,0,0,1,1,3,1,2,0,1,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,10,18,252,83,169,46,127,34,40,2,2,0,0,0,0,1,0,83,167,46,126,34,40,2,1,0,0,0,0,1,0,0,2,0,1,0,0,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,10,99,17496,8592,8904,5724,5736,2092,2311,694,735,5,15,4,5,73,102,8515,8844,5681,5703,2081,2302,682,722,4,14,0,5,67,98,77,60,43,33,11,9,12,13,1,1,4,0,6,4 -050,01,129,Alabama,Washington County,11,0,165,86,79,49,44,19,16,15,15,0,0,0,0,3,4,85,79,48,44,19,16,15,15,0,0,0,0,3,4,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,11,1,915,431,484,261,290,116,122,48,62,0,0,0,1,6,9,430,478,261,287,116,122,47,59,0,0,0,1,6,9,1,6,0,3,0,0,1,3,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,11,2,1183,601,582,359,343,164,153,66,69,1,0,0,2,11,15,595,579,356,341,164,153,63,68,1,0,0,2,11,15,6,3,3,2,0,0,3,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,11,3,1367,737,630,446,378,219,186,64,55,0,0,1,2,7,9,729,623,440,374,218,184,63,54,0,0,1,2,7,9,8,7,6,4,1,2,1,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,11,4,1365,753,612,452,351,221,194,70,53,2,3,0,0,8,11,745,604,449,346,219,194,68,52,2,3,0,0,7,9,8,8,3,5,2,0,2,1,0,0,0,0,1,2 -050,01,129,Alabama,Washington County,11,5,900,477,423,283,251,135,129,51,40,0,0,1,0,7,3,473,422,280,251,135,129,51,39,0,0,0,0,7,3,4,1,3,0,0,0,0,1,0,0,1,0,0,0 -050,01,129,Alabama,Washington County,11,6,998,487,511,302,326,115,109,61,66,0,1,2,0,7,9,481,509,301,325,113,109,60,65,0,1,0,0,7,9,6,2,1,1,2,0,1,1,0,0,2,0,0,0 -050,01,129,Alabama,Washington County,11,7,901,434,467,305,300,98,116,27,45,0,0,1,1,3,5,426,465,302,298,98,116,24,45,0,0,0,1,2,5,8,2,3,2,0,0,3,0,0,0,1,0,1,0 -050,01,129,Alabama,Washington County,11,8,1077,499,578,330,366,110,156,57,47,0,4,0,1,2,4,491,573,324,364,109,156,57,47,0,3,0,1,1,2,8,5,6,2,1,0,0,0,0,1,0,0,1,2 -050,01,129,Alabama,Washington County,11,9,1192,597,595,427,366,132,169,35,55,1,0,0,0,2,5,592,593,423,365,132,168,35,55,0,0,0,0,2,5,5,2,4,1,0,1,0,0,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,11,10,1320,640,680,438,452,157,172,43,45,1,3,0,0,1,8,634,676,435,450,154,171,43,45,1,3,0,0,1,7,6,4,3,2,3,1,0,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,11,11,1326,628,698,450,455,147,190,27,46,0,2,0,2,4,3,622,694,445,452,147,189,26,46,0,2,0,2,4,3,6,4,5,3,0,1,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,11,12,1159,542,617,391,410,114,149,34,50,0,0,0,0,3,8,540,612,391,408,114,148,34,48,0,0,0,0,1,8,2,5,0,2,0,1,0,2,0,0,0,0,2,0 -050,01,129,Alabama,Washington County,11,13,1072,555,517,392,372,125,111,33,29,0,1,0,0,5,4,553,517,391,372,125,111,32,29,0,1,0,0,5,4,2,0,1,0,0,0,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,11,14,870,403,467,309,346,68,91,24,25,0,0,0,0,2,5,398,462,306,342,67,90,24,25,0,0,0,0,1,5,5,5,3,4,1,1,0,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,11,15,646,323,323,250,244,56,62,15,17,0,0,0,0,2,0,321,319,248,241,56,62,15,16,0,0,0,0,2,0,2,4,2,3,0,0,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,11,16,460,219,241,169,177,47,54,2,8,0,1,0,0,1,1,216,238,167,176,46,53,2,7,0,1,0,0,1,1,3,3,2,1,1,1,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,11,17,315,134,181,95,131,33,41,5,8,0,0,0,0,1,1,130,180,92,131,32,40,5,8,0,0,0,0,1,1,4,1,3,0,1,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,11,18,262,81,181,52,136,26,43,2,2,0,0,0,0,1,0,81,179,52,135,26,43,2,1,0,0,0,0,1,0,0,2,0,1,0,0,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,11,99,17493,8627,8866,5760,5738,2102,2263,679,737,5,15,5,9,76,104,8542,8802,5711,5702,2090,2254,666,724,4,14,1,9,70,99,85,64,49,36,12,9,13,13,1,1,4,0,6,5 -050,01,129,Alabama,Washington County,12,0,167,87,80,46,43,21,16,17,17,0,0,0,0,3,4,86,80,45,43,21,16,17,17,0,0,0,0,3,4,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,12,1,887,422,465,254,274,114,126,48,55,0,0,0,1,6,9,421,459,254,271,114,126,47,52,0,0,0,1,6,9,1,6,0,3,0,0,1,3,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,12,2,1209,616,593,373,360,164,140,67,77,1,0,0,1,11,15,610,590,370,358,164,140,64,76,1,0,0,1,11,15,6,3,3,2,0,0,3,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,12,3,1342,723,619,443,367,204,186,68,55,0,0,1,2,7,9,714,612,436,363,203,184,67,54,0,0,1,2,7,9,9,7,7,4,1,2,1,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,12,4,1367,733,634,442,370,220,192,61,58,2,3,0,0,8,11,725,626,439,365,218,192,59,57,2,3,0,0,7,9,8,8,3,5,2,0,2,1,0,0,0,0,1,2 -050,01,129,Alabama,Washington County,12,5,928,486,442,289,265,142,128,47,45,0,0,1,1,7,3,482,441,286,265,142,128,47,44,0,0,0,1,7,3,4,1,3,0,0,0,0,1,0,0,1,0,0,0 -050,01,129,Alabama,Washington County,12,6,1005,485,520,297,322,115,117,64,70,0,1,2,1,7,9,479,518,296,321,113,117,63,69,0,1,0,1,7,9,6,2,1,1,2,0,1,1,0,0,2,0,0,0 -050,01,129,Alabama,Washington County,12,7,911,450,461,308,297,106,113,32,45,0,0,1,1,3,5,442,459,305,295,106,113,29,45,0,0,0,1,2,5,8,2,3,2,0,0,3,0,0,0,1,0,1,0 -050,01,129,Alabama,Washington County,12,8,1057,501,556,348,351,106,151,45,45,0,4,0,1,2,4,493,551,342,349,105,151,45,45,0,3,0,1,1,2,8,5,6,2,1,0,0,0,0,1,0,0,1,2 -050,01,129,Alabama,Washington County,12,9,1171,561,610,396,388,128,164,34,53,1,0,0,0,2,5,556,608,392,387,128,163,34,53,0,0,0,0,2,5,5,2,4,1,0,1,0,0,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,12,10,1308,641,667,435,447,159,170,45,39,1,3,0,0,1,8,635,663,432,445,156,169,45,39,1,3,0,0,1,7,6,4,3,2,3,1,0,0,0,0,0,0,0,1 -050,01,129,Alabama,Washington County,12,11,1318,633,685,452,443,148,186,29,50,0,2,0,1,4,3,627,681,447,440,148,185,28,50,0,2,0,1,4,3,6,4,5,3,0,1,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,12,12,1212,580,632,409,407,127,167,41,50,0,0,0,0,3,8,578,627,409,405,127,166,41,48,0,0,0,0,1,8,2,5,0,2,0,1,0,2,0,0,0,0,2,0 -050,01,129,Alabama,Washington County,12,13,1109,559,550,395,394,121,121,38,30,0,1,0,0,5,4,557,550,394,394,121,121,37,30,0,1,0,0,5,4,2,0,1,0,0,0,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,12,14,876,425,451,324,337,77,84,22,25,0,0,0,0,2,5,420,446,321,333,76,83,22,25,0,0,0,0,1,5,5,5,3,4,1,1,0,0,0,0,0,0,1,0 -050,01,129,Alabama,Washington County,12,15,657,316,341,243,259,59,66,12,16,0,0,0,0,2,0,314,337,241,256,59,66,12,15,0,0,0,0,2,0,2,4,2,3,0,0,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,12,16,489,230,259,174,188,52,58,3,11,0,1,0,0,1,1,227,256,172,187,51,57,3,10,0,1,0,0,1,1,3,3,2,1,1,1,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,12,17,307,128,179,97,129,25,43,5,6,0,0,0,0,1,1,124,178,94,129,24,42,5,6,0,0,0,0,1,1,4,1,3,0,1,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,12,18,261,80,181,51,134,26,45,2,2,0,0,0,0,1,0,80,178,51,132,26,45,2,1,0,0,0,0,1,0,0,3,0,2,0,0,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,12,99,17581,8656,8925,5776,5775,2114,2273,680,749,5,15,5,9,76,104,8570,8860,5726,5738,2102,2264,667,736,4,14,1,9,70,99,86,65,50,37,12,9,13,13,1,1,4,0,6,5 -050,01,129,Alabama,Washington County,13,0,166,88,78,46,43,21,16,17,17,0,0,1,0,3,2,86,78,45,43,21,16,17,17,0,0,0,0,3,2,2,0,1,0,0,0,0,0,0,0,1,0,0,0 -050,01,129,Alabama,Washington County,13,1,888,427,461,254,275,116,129,47,50,1,1,1,0,8,6,420,452,252,270,115,127,46,49,1,0,0,0,6,6,7,9,2,5,1,2,1,1,0,1,1,0,2,0 -050,01,129,Alabama,Washington County,13,2,1208,620,588,373,357,165,139,63,76,2,1,0,0,17,15,613,584,369,355,164,139,62,75,2,1,0,0,16,14,7,4,4,2,1,0,1,1,0,0,0,0,1,1 -050,01,129,Alabama,Washington County,13,3,1341,722,619,443,369,204,187,67,53,2,1,0,0,6,9,713,609,435,362,204,185,66,52,2,1,0,0,6,9,9,10,8,7,0,2,1,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,13,4,1352,721,631,438,369,217,193,59,56,2,3,0,0,5,10,715,620,435,362,216,191,57,54,2,3,0,0,5,10,6,11,3,7,1,2,2,2,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,13,5,939,492,447,289,268,145,130,47,44,2,1,1,0,8,4,484,443,285,267,145,130,45,42,1,0,0,0,8,4,8,4,4,1,0,0,2,2,1,1,1,0,0,0 -050,01,129,Alabama,Washington County,13,6,1010,488,522,302,323,115,117,62,69,1,4,1,0,7,9,479,518,298,321,114,117,60,68,1,3,0,0,6,9,9,4,4,2,1,0,2,1,0,1,1,0,1,0 -050,01,129,Alabama,Washington County,13,7,919,452,467,311,298,108,114,29,46,0,1,2,0,2,8,442,462,307,295,107,113,27,45,0,1,0,0,1,8,10,5,4,3,1,1,2,1,0,0,2,0,1,0 -050,01,129,Alabama,Washington County,13,8,1059,504,555,349,348,105,152,44,46,3,4,0,1,3,4,493,546,339,344,104,151,44,44,3,4,0,1,3,2,11,9,10,4,1,1,0,2,0,0,0,0,0,2 -050,01,129,Alabama,Washington County,13,9,1170,558,612,394,388,128,166,33,55,1,0,0,0,2,3,553,607,389,386,128,165,33,53,1,0,0,0,2,3,5,5,5,2,0,1,0,2,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,13,10,1300,641,659,435,443,159,169,43,38,2,3,0,0,2,6,633,656,430,441,156,168,43,38,2,3,0,0,2,6,8,3,5,2,3,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,13,11,1313,631,682,452,445,149,184,28,49,0,2,0,0,2,2,625,678,447,441,149,184,27,49,0,2,0,0,2,2,6,4,5,4,0,0,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,13,12,1209,583,626,409,406,127,166,40,47,2,2,0,0,5,5,580,625,409,405,127,166,40,47,2,2,0,0,2,5,3,1,0,1,0,0,0,0,0,0,0,0,3,0 -050,01,129,Alabama,Washington County,13,13,1120,563,557,397,396,124,125,36,30,0,1,0,0,6,5,562,557,396,396,124,125,36,30,0,1,0,0,6,5,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,13,14,879,428,451,325,339,78,86,21,23,2,0,0,0,2,3,425,446,323,334,77,86,21,23,2,0,0,0,2,3,3,5,2,5,1,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,13,15,662,315,347,241,263,60,67,12,14,0,0,0,0,2,3,314,342,240,259,60,66,12,14,0,0,0,0,2,3,1,5,1,4,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,13,16,488,228,260,172,187,52,60,3,9,0,4,0,0,1,0,228,257,172,185,52,59,3,9,0,4,0,0,1,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,13,17,313,131,182,102,131,24,45,4,4,0,0,0,0,1,2,126,181,97,130,24,45,4,4,0,0,0,0,1,2,5,1,5,1,0,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,13,18,261,79,182,51,134,26,46,2,2,0,0,0,0,0,0,79,179,51,132,26,46,2,1,0,0,0,0,0,0,0,3,0,2,0,0,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,13,99,17597,8671,8926,5783,5782,2123,2291,657,728,20,28,6,1,82,96,8570,8840,5719,5728,2113,2279,645,714,19,25,0,1,74,93,101,86,64,54,10,12,12,14,1,3,6,0,8,3 -050,01,131,Alabama,Wilcox County,1,0,210,101,109,17,26,84,83,0,0,0,0,0,0,0,0,99,108,17,26,82,82,0,0,0,0,0,0,0,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,1,855,464,391,109,76,353,314,0,1,0,0,0,0,2,0,460,385,108,75,351,309,0,1,0,0,0,0,1,0,4,6,1,1,2,5,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,1,2,1099,549,550,97,98,448,452,0,0,0,0,2,0,2,0,542,545,93,96,445,449,0,0,0,0,2,0,2,0,7,5,4,2,3,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,3,1134,551,583,100,82,450,499,0,0,0,0,0,0,1,2,549,575,100,81,448,492,0,0,0,0,0,0,1,2,2,8,0,1,2,7,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,4,1162,611,551,109,93,499,455,2,1,1,0,0,0,0,2,608,547,109,92,496,452,2,1,1,0,0,0,0,2,3,4,0,1,3,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,5,746,321,425,62,64,258,357,1,1,0,2,0,0,0,1,320,419,61,63,258,354,1,1,0,0,0,0,0,1,1,6,1,1,0,3,0,0,0,2,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,6,750,331,419,82,94,249,324,0,0,0,0,0,0,0,1,327,417,82,94,245,322,0,0,0,0,0,0,0,1,4,2,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,7,757,345,412,113,104,230,305,0,2,1,0,0,0,1,1,342,407,111,102,229,302,0,2,1,0,0,0,1,1,3,5,2,2,1,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,8,855,368,487,92,94,273,390,2,0,1,1,0,0,0,2,367,481,92,92,273,387,2,0,0,0,0,0,0,2,1,6,0,2,0,3,0,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,9,877,389,488,112,135,275,353,1,0,1,0,0,0,0,0,389,487,112,134,275,353,1,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,10,842,378,464,139,112,239,350,0,1,0,1,0,0,0,0,376,462,137,111,239,349,0,1,0,1,0,0,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,11,746,355,391,127,137,227,250,0,0,1,2,0,0,0,2,355,388,127,135,227,250,0,0,1,1,0,0,0,2,0,3,0,2,0,0,0,0,0,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,12,588,285,303,138,124,145,177,1,0,0,1,0,0,1,1,285,301,138,123,145,176,1,0,0,1,0,0,1,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,13,569,242,327,133,150,107,176,0,0,0,0,0,0,2,1,240,323,132,149,106,173,0,0,0,0,0,0,2,1,2,4,1,1,1,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,14,474,188,286,89,122,99,162,0,1,0,1,0,0,0,0,187,284,88,121,99,161,0,1,0,1,0,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,15,459,201,258,96,115,103,141,1,0,1,1,0,0,0,1,200,256,96,115,103,140,1,0,0,0,0,0,0,1,1,2,0,0,0,1,0,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,16,355,122,233,53,98,67,133,1,1,1,1,0,0,0,0,120,231,53,98,66,132,1,1,0,0,0,0,0,0,2,2,0,0,1,1,0,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,17,246,84,162,31,74,53,88,0,0,0,0,0,0,0,0,84,162,31,74,53,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,18,271,83,188,26,75,57,112,0,1,0,0,0,0,0,0,83,187,26,75,57,111,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,99,12995,5968,7027,1725,1873,4216,5121,9,9,7,10,2,0,9,14,5933,6965,1713,1856,4197,5082,9,9,4,4,2,0,8,14,35,62,12,17,19,39,0,0,3,6,0,0,1,0 -050,01,131,Alabama,Wilcox County,2,0,211,102,109,17,26,85,83,0,0,0,0,0,0,0,0,100,108,17,26,83,82,0,0,0,0,0,0,0,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,1,844,459,385,106,74,351,310,0,1,0,0,0,0,2,0,455,379,105,73,349,305,0,1,0,0,0,0,1,0,4,6,1,1,2,5,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,2,2,1084,541,543,95,95,442,448,0,0,0,0,2,0,2,0,534,538,91,93,439,445,0,0,0,0,2,0,2,0,7,5,4,2,3,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,3,1134,551,583,100,82,450,499,0,0,0,0,0,0,1,2,549,575,100,81,448,492,0,0,0,0,0,0,1,2,2,8,0,1,2,7,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,4,1143,606,537,105,86,498,448,2,1,1,0,0,0,0,2,603,533,105,85,495,445,2,1,1,0,0,0,0,2,3,4,0,1,3,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,5,733,320,413,58,58,261,351,1,1,0,2,0,0,0,1,319,407,57,57,261,348,1,1,0,0,0,0,0,1,1,6,1,1,0,3,0,0,0,2,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,6,746,334,412,82,91,252,320,0,0,0,0,0,0,0,1,330,410,82,91,248,318,0,0,0,0,0,0,0,1,4,2,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,7,763,352,411,117,104,233,304,0,2,1,0,0,0,1,1,349,406,115,102,232,301,0,2,1,0,0,0,1,1,3,5,2,2,1,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,8,854,369,485,91,93,275,389,2,0,1,1,0,0,0,2,368,479,91,91,275,386,2,0,0,0,0,0,0,2,1,6,0,2,0,3,0,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,9,880,393,487,113,135,278,352,1,0,1,0,0,0,0,0,393,486,113,134,278,352,1,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,10,844,380,464,140,112,240,350,0,1,0,1,0,0,0,0,378,462,138,111,240,349,0,1,0,1,0,0,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,11,753,358,395,127,139,230,252,0,0,1,2,0,0,0,2,358,392,127,137,230,252,0,0,1,1,0,0,0,2,0,3,0,2,0,0,0,0,0,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,12,586,284,302,137,123,145,177,1,0,0,1,0,0,1,1,284,300,137,122,145,176,1,0,0,1,0,0,1,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,13,570,242,328,133,151,107,176,0,0,0,0,0,0,2,1,240,324,132,150,106,173,0,0,0,0,0,0,2,1,2,4,1,1,1,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,14,468,185,283,88,120,97,161,0,1,0,1,0,0,0,0,184,281,87,119,97,160,0,1,0,1,0,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,15,458,201,257,96,116,103,139,1,0,1,1,0,0,0,1,200,255,96,116,103,138,1,0,0,0,0,0,0,1,1,2,0,0,0,1,0,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,16,354,122,232,53,97,67,133,1,1,1,1,0,0,0,0,120,230,53,97,66,132,1,1,0,0,0,0,0,0,2,2,0,0,1,1,0,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,17,246,84,162,31,74,53,88,0,0,0,0,0,0,0,0,84,162,31,74,53,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,18,268,83,185,26,73,57,111,0,1,0,0,0,0,0,0,83,184,26,73,57,110,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,99,12939,5966,6973,1715,1849,4224,5091,9,9,7,10,2,0,9,14,5931,6911,1703,1832,4205,5052,9,9,4,4,2,0,8,14,35,62,12,17,19,39,0,0,3,6,0,0,1,0 -050,01,131,Alabama,Wilcox County,3,0,230,112,118,13,20,99,98,0,0,0,0,0,0,0,0,110,117,13,20,97,97,0,0,0,0,0,0,0,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,1,785,437,348,100,69,335,278,0,1,0,0,0,0,2,0,433,343,99,68,333,274,0,1,0,0,0,0,1,0,4,5,1,1,2,4,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,3,2,1079,541,538,94,96,444,442,0,0,0,0,1,0,2,0,534,533,90,94,441,439,0,0,0,0,1,0,2,0,7,5,4,2,3,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,3,1149,549,600,102,91,446,507,0,0,0,0,0,0,1,2,547,592,102,90,444,500,0,0,0,0,0,0,1,2,2,8,0,1,2,7,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,4,1088,565,523,104,82,458,438,2,1,1,0,0,0,0,2,563,519,104,81,456,435,2,1,1,0,0,0,0,2,2,4,0,1,2,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,5,749,353,396,58,51,294,341,1,1,0,2,0,0,0,1,352,390,57,50,294,338,1,1,0,0,0,0,0,1,1,6,1,1,0,3,0,0,0,2,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,6,661,291,370,71,70,220,299,0,0,0,0,0,0,0,1,287,368,71,70,216,297,0,0,0,0,0,0,0,1,4,2,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,7,725,317,408,97,110,218,295,0,2,1,0,0,0,1,1,314,403,95,108,217,292,0,2,1,0,0,0,1,1,3,5,2,2,1,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,8,839,385,454,89,84,293,367,2,0,1,1,0,0,0,2,384,448,89,82,293,364,2,0,0,0,0,0,0,2,1,6,0,2,0,3,0,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,9,860,371,489,119,132,250,357,1,0,1,0,0,0,0,0,371,488,119,131,250,357,1,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,10,883,396,487,143,119,253,366,0,1,0,1,0,0,0,0,394,485,141,118,253,365,0,1,0,1,0,0,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,11,739,359,380,115,133,243,243,0,0,1,2,0,0,0,2,359,377,115,131,243,243,0,0,1,1,0,0,0,2,0,3,0,2,0,0,0,0,0,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,12,615,292,323,142,137,148,184,1,0,0,1,0,0,1,1,292,321,142,136,148,183,1,0,0,1,0,0,1,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,13,593,266,327,138,135,126,191,0,0,0,0,0,0,2,1,264,324,137,134,125,189,0,0,0,0,0,0,2,1,2,3,1,1,1,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,14,466,185,281,86,122,99,157,0,1,0,1,0,0,0,0,184,279,85,121,99,156,0,1,0,1,0,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,15,470,204,266,101,119,101,145,1,0,1,1,0,0,0,1,203,264,101,119,101,144,1,0,0,0,0,0,0,1,1,2,0,0,0,1,0,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,16,362,134,228,58,90,74,136,1,1,1,1,0,0,0,0,132,226,58,90,73,135,1,1,0,0,0,0,0,0,2,2,0,0,1,1,0,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,17,254,91,163,35,79,56,84,0,0,0,0,0,0,0,0,91,163,35,79,56,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,18,259,74,185,25,80,49,104,0,1,0,0,0,0,0,0,74,184,25,80,49,103,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,99,12806,5922,6884,1690,1819,4206,5032,9,9,7,10,1,0,9,14,5888,6824,1678,1802,4188,4995,9,9,4,4,1,0,8,14,34,60,12,17,18,37,0,0,3,6,0,0,1,0 -050,01,131,Alabama,Wilcox County,4,0,198,97,101,17,19,80,82,0,0,0,0,0,0,0,0,96,100,17,19,79,81,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,1,843,449,394,89,77,358,316,0,1,0,0,0,0,2,0,445,388,88,76,356,311,0,1,0,0,0,0,1,0,4,6,1,1,2,5,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,4,2,1056,551,505,94,81,454,424,0,0,0,0,1,0,2,0,545,501,91,79,451,422,0,0,0,0,1,0,2,0,6,4,3,2,3,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,3,1152,557,595,95,90,460,503,0,0,0,0,0,0,2,2,555,587,95,89,458,496,0,0,0,0,0,0,2,2,2,8,0,1,2,7,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,4,1065,552,513,93,77,456,433,2,1,1,0,0,0,0,2,550,509,93,76,454,430,2,1,1,0,0,0,0,2,2,4,0,1,2,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,5,773,372,401,74,63,297,334,1,1,0,2,0,0,0,1,371,395,73,62,297,331,1,1,0,0,0,0,0,1,1,6,1,1,0,3,0,0,0,2,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,6,645,293,352,75,61,218,290,0,0,0,0,0,0,0,1,290,349,75,60,215,288,0,0,0,0,0,0,0,1,3,3,0,1,3,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,7,723,326,397,99,105,225,289,0,2,1,0,0,0,1,1,323,392,97,103,224,286,0,2,1,0,0,0,1,1,3,5,2,2,1,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,8,811,369,442,86,91,281,348,2,0,0,1,0,0,0,2,369,436,86,89,281,345,2,0,0,0,0,0,0,2,0,6,0,2,0,3,0,0,0,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,9,847,367,480,112,113,253,367,1,0,1,0,0,0,0,0,367,479,112,112,253,367,1,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,10,895,416,479,149,132,267,345,0,1,0,1,0,0,0,0,414,477,147,131,267,344,0,1,0,1,0,0,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,11,783,348,435,108,124,239,308,0,0,1,2,0,0,0,1,348,432,108,122,239,308,0,0,1,1,0,0,0,1,0,3,0,2,0,0,0,0,0,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,12,658,312,346,152,157,158,187,1,0,0,1,0,0,1,1,311,344,152,156,157,186,1,0,0,1,0,0,1,1,1,2,0,1,1,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,13,561,270,291,137,128,131,163,0,0,0,0,0,0,2,0,268,288,136,127,130,161,0,0,0,0,0,0,2,0,2,3,1,1,1,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,14,489,207,282,101,112,106,168,0,1,0,1,0,0,0,0,206,280,100,111,106,167,0,1,0,1,0,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,15,427,180,247,90,123,88,122,1,0,1,1,0,0,0,1,179,245,90,123,88,121,1,0,0,0,0,0,0,1,1,2,0,0,0,1,0,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,16,343,124,219,55,84,67,133,1,1,1,1,0,0,0,0,122,218,55,84,66,133,1,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,17,248,89,159,36,78,53,81,0,0,0,0,0,0,0,0,89,159,36,78,53,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,18,261,76,185,27,79,49,105,0,1,0,0,0,0,0,0,76,184,27,79,49,104,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,99,12778,5955,6823,1689,1794,4240,4998,9,9,6,10,1,0,10,12,5924,6763,1678,1776,4223,4962,9,9,4,4,1,0,9,12,31,60,11,18,17,36,0,0,2,6,0,0,1,0 -050,01,131,Alabama,Wilcox County,5,0,190,106,84,29,18,77,66,0,0,0,0,0,0,0,0,105,83,29,18,76,65,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,1,825,422,403,79,69,341,333,0,1,0,0,0,0,2,0,417,398,77,68,339,329,0,1,0,0,0,0,1,0,5,5,2,1,2,4,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,5,2,1028,542,486,96,99,443,387,0,0,0,0,1,0,2,0,537,482,93,97,441,385,0,0,0,0,1,0,2,0,5,4,3,2,2,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,3,1146,569,577,98,86,469,489,0,0,0,0,0,0,2,2,567,570,98,85,467,483,0,0,0,0,0,0,2,2,2,7,0,1,2,6,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,4,1008,496,512,82,74,412,435,1,1,1,0,0,0,0,2,494,509,82,73,410,433,1,1,1,0,0,0,0,2,2,3,0,1,2,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,5,777,395,382,87,58,307,319,1,1,0,2,0,0,0,2,394,376,86,57,307,316,1,1,0,0,0,0,0,2,1,6,1,1,0,3,0,0,0,2,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,6,627,277,350,62,60,215,289,0,0,0,0,0,0,0,1,275,347,62,59,213,287,0,0,0,0,0,0,0,1,2,3,0,1,2,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,7,761,323,438,105,108,215,327,0,2,1,0,0,0,2,1,319,433,103,106,214,324,0,2,1,0,0,0,1,1,4,5,2,2,1,3,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,5,8,759,354,405,89,85,262,318,2,0,1,0,0,0,0,2,353,400,89,83,262,315,2,0,0,0,0,0,0,2,1,5,0,2,0,3,0,0,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,9,828,370,458,105,111,263,347,1,0,1,0,0,0,0,0,370,457,105,110,263,347,1,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,10,880,396,484,147,138,249,344,0,1,0,1,0,0,0,0,393,481,144,136,249,343,0,1,0,1,0,0,0,0,3,3,3,2,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,11,800,347,453,117,130,229,320,0,0,1,1,0,0,0,2,347,451,117,128,229,320,0,0,1,1,0,0,0,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,12,686,335,351,142,147,191,202,1,0,0,1,0,0,1,1,334,348,142,146,190,200,1,0,0,1,0,0,1,1,1,3,0,1,1,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,13,548,279,269,129,115,148,153,0,0,0,0,0,0,2,1,278,266,128,114,148,151,0,0,0,0,0,0,2,1,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,14,488,186,302,102,121,84,179,0,1,0,1,0,0,0,0,185,299,101,120,84,177,0,1,0,1,0,0,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,15,417,162,255,83,122,78,131,0,0,1,1,0,0,0,1,161,253,83,122,78,130,0,0,0,0,0,0,0,1,1,2,0,0,0,1,0,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,16,326,130,196,60,87,68,107,1,1,1,1,0,0,0,0,128,194,60,87,67,106,1,1,0,0,0,0,0,0,2,2,0,0,1,1,0,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,17,242,84,158,27,62,57,96,0,0,0,0,0,0,0,0,84,158,27,62,57,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,18,264,80,184,30,85,50,98,0,1,0,0,0,0,0,0,80,183,30,85,50,97,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,99,12600,5853,6747,1669,1775,4158,4940,7,9,7,8,1,0,11,15,5821,6688,1656,1756,4144,4904,7,9,4,4,1,0,9,15,32,59,13,19,14,36,0,0,3,4,0,0,2,0 -050,01,131,Alabama,Wilcox County,6,0,207,100,107,20,19,80,88,0,0,0,0,0,0,0,0,99,106,20,19,79,87,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,1,802,414,388,85,79,328,308,0,1,0,0,0,0,1,0,407,383,81,78,326,304,0,1,0,0,0,0,0,0,7,5,4,1,2,4,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,6,2,1008,523,485,93,91,427,394,0,0,0,0,1,0,2,0,518,481,90,89,425,392,0,0,0,0,1,0,2,0,5,4,3,2,2,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,3,1117,577,540,101,90,474,448,0,0,0,0,0,0,2,2,575,535,101,89,472,444,0,0,0,0,0,0,2,2,2,5,0,1,2,4,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,4,999,468,531,81,62,385,466,1,1,1,0,0,0,0,2,466,528,81,61,383,464,1,1,1,0,0,0,0,2,2,3,0,1,2,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,5,781,398,383,83,70,313,308,1,1,0,2,0,0,1,2,397,378,82,69,313,306,1,1,0,0,0,0,1,2,1,5,1,1,0,2,0,0,0,2,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,6,580,260,320,59,52,201,267,0,0,0,0,0,0,0,1,259,317,59,51,200,265,0,0,0,0,0,0,0,1,1,3,0,1,1,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,7,755,319,436,113,110,204,323,0,2,1,0,0,0,1,1,316,432,111,108,204,321,0,2,1,0,0,0,0,1,3,4,2,2,0,2,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,6,8,755,365,390,104,88,258,299,2,0,1,1,0,0,0,2,364,384,104,86,258,296,2,0,0,0,0,0,0,2,1,6,0,2,0,3,0,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,9,805,353,452,85,98,266,353,1,0,1,0,0,0,0,1,353,450,85,97,266,352,1,0,1,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,10,874,396,478,134,141,262,334,0,1,0,1,0,0,0,1,393,475,131,139,262,333,0,1,0,1,0,0,0,1,3,3,3,2,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,11,796,359,437,136,115,222,317,0,0,1,2,0,0,0,3,359,433,136,113,222,316,0,0,1,1,0,0,0,3,0,4,0,2,0,1,0,0,0,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,12,741,365,376,140,148,223,225,1,0,0,1,0,0,1,2,364,372,140,147,222,222,1,0,0,1,0,0,1,2,1,4,0,1,1,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,13,564,287,277,136,113,149,164,0,0,0,0,0,0,2,0,285,274,135,112,148,162,0,0,0,0,0,0,2,0,2,3,1,1,1,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,14,489,187,302,105,139,81,161,0,1,0,1,0,0,1,0,186,300,104,138,81,160,0,1,0,1,0,0,1,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,15,405,152,253,79,111,72,140,0,0,1,1,0,0,0,1,151,251,79,111,72,139,0,0,0,0,0,0,0,1,1,2,0,0,0,1,0,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,16,346,134,212,58,87,74,123,1,1,1,1,0,0,0,0,132,210,58,87,73,122,1,1,0,0,0,0,0,0,2,2,0,0,1,1,0,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,17,224,88,136,32,51,56,85,0,0,0,0,0,0,0,0,88,136,32,51,56,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,18,245,70,175,22,84,48,90,0,1,0,0,0,0,0,0,70,174,22,84,48,89,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,99,12493,5815,6678,1666,1748,4123,4893,7,9,7,10,1,0,11,18,5782,6619,1651,1729,4110,4859,7,9,4,4,1,0,9,18,33,59,15,19,13,34,0,0,3,6,0,0,2,0 -050,01,131,Alabama,Wilcox County,7,0,161,77,84,16,20,61,64,0,0,0,0,0,0,0,0,75,84,16,20,59,64,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,1,792,432,360,83,74,347,285,0,0,0,0,1,0,1,1,428,358,79,74,347,283,0,0,0,0,1,0,1,1,4,2,4,0,0,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,2,964,492,472,86,79,401,393,0,0,0,0,1,0,4,0,489,469,85,77,399,392,0,0,0,0,1,0,4,0,3,3,1,2,2,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,3,1077,562,515,115,97,444,415,1,0,0,0,0,0,2,3,557,510,114,96,440,411,1,0,0,0,0,0,2,3,5,5,1,1,4,4,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,4,1038,497,541,89,64,403,477,1,0,0,0,0,0,4,0,493,540,89,64,399,476,1,0,0,0,0,0,4,0,4,1,0,0,4,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,5,724,377,347,75,66,297,280,1,0,0,0,0,0,4,1,376,344,74,66,297,277,1,0,0,0,0,0,4,1,1,3,1,0,0,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,6,592,272,320,60,47,211,273,0,0,0,0,1,0,0,0,266,317,57,46,209,271,0,0,0,0,0,0,0,0,6,3,3,1,2,2,0,0,0,0,1,0,0,0 -050,01,131,Alabama,Wilcox County,7,7,711,306,405,94,89,210,315,0,0,1,0,0,0,1,1,304,404,94,89,209,314,0,0,1,0,0,0,0,1,2,1,0,0,1,1,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,7,8,728,349,379,107,94,242,283,0,0,0,1,0,0,0,1,348,375,107,93,241,281,0,0,0,0,0,0,0,1,1,4,0,1,1,2,0,0,0,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,9,808,357,451,79,82,275,366,0,1,0,0,0,0,3,2,355,450,79,82,274,365,0,1,0,0,0,0,2,2,2,1,0,0,1,1,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,7,10,843,377,466,120,143,257,320,0,1,0,0,0,0,0,2,374,464,119,142,255,319,0,1,0,0,0,0,0,2,3,2,1,1,2,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,11,852,392,460,147,110,243,346,1,1,1,0,0,0,0,3,392,456,147,108,243,344,1,1,1,0,0,0,0,3,0,4,0,2,0,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,12,787,393,394,144,144,245,246,1,1,0,1,0,0,3,2,391,390,144,144,243,242,1,1,0,1,0,0,3,2,2,4,0,0,2,4,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,13,558,280,278,130,110,148,166,0,1,0,1,0,0,2,0,280,275,130,109,148,164,0,1,0,1,0,0,2,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,14,526,218,308,118,151,99,156,1,0,0,1,0,0,0,0,218,305,118,150,99,154,1,0,0,1,0,0,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,15,399,150,249,69,108,80,140,0,0,1,1,0,0,0,0,149,246,69,108,80,138,0,0,0,0,0,0,0,0,1,3,0,0,0,2,0,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,16,349,129,220,69,92,60,127,0,1,0,0,0,0,0,0,129,220,69,92,60,127,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,17,205,76,129,39,56,37,73,0,0,0,0,0,0,0,0,76,129,39,56,37,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,18,255,84,171,24,76,60,94,0,1,0,0,0,0,0,0,84,170,24,76,60,93,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,99,12369,5820,6549,1664,1702,4120,4819,6,7,3,5,3,0,24,16,5784,6506,1653,1692,4099,4788,6,7,2,3,2,0,22,16,36,43,11,10,21,31,0,0,1,2,1,0,2,0 -050,01,131,Alabama,Wilcox County,8,0,162,86,76,13,6,73,70,0,0,0,0,0,0,0,0,85,76,13,6,72,70,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,1,701,385,316,81,69,301,246,1,0,0,0,1,0,1,1,382,314,78,69,301,244,1,0,0,0,1,0,1,1,3,2,3,0,0,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,2,949,478,471,87,75,386,396,0,0,0,0,1,0,4,0,474,468,86,73,383,395,0,0,0,0,1,0,4,0,4,3,1,2,3,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,3,1073,565,508,115,111,446,394,1,0,0,0,0,0,3,3,560,502,114,110,442,389,1,0,0,0,0,0,3,3,5,6,1,1,4,5,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,4,1017,499,518,92,58,401,458,1,0,0,0,0,0,5,2,494,517,92,58,396,457,1,0,0,0,0,0,5,2,5,1,0,0,5,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,5,690,355,335,65,61,285,273,0,0,0,0,0,0,5,1,353,333,64,61,284,271,0,0,0,0,0,0,5,1,2,2,1,0,1,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,6,585,257,328,55,50,201,278,0,0,0,0,1,0,0,0,252,326,52,49,200,277,0,0,0,0,0,0,0,0,5,2,3,1,1,1,0,0,0,0,1,0,0,0 -050,01,131,Alabama,Wilcox County,8,7,668,296,372,91,76,205,295,0,0,0,0,0,0,0,1,296,372,91,76,205,295,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,8,698,328,370,102,100,224,270,1,0,0,0,0,0,1,0,327,367,102,99,223,268,1,0,0,0,0,0,1,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,9,794,379,415,80,76,296,336,0,1,0,0,0,0,3,2,376,412,79,76,295,333,0,1,0,0,0,0,2,2,3,3,1,0,1,3,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,8,10,833,368,465,131,142,237,320,0,1,0,0,0,0,0,2,365,463,130,141,235,319,0,1,0,0,0,0,0,2,3,2,1,1,2,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,11,924,422,502,148,118,271,380,1,1,1,0,0,0,1,3,422,499,148,117,271,378,1,1,1,0,0,0,1,3,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,12,816,405,411,130,156,272,252,1,1,0,1,0,0,2,1,402,407,130,156,269,248,1,1,0,1,0,0,2,1,3,4,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,13,594,283,311,130,116,151,193,0,1,0,1,0,0,2,0,283,309,130,115,151,192,0,1,0,1,0,0,2,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,14,497,226,271,120,126,105,144,1,0,0,1,0,0,0,0,226,270,120,126,105,143,1,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,15,381,150,231,68,102,82,129,0,0,0,0,0,0,0,0,150,230,68,102,82,128,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,16,363,142,221,67,90,75,130,0,1,0,0,0,0,0,0,142,221,67,90,75,130,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,17,237,91,146,50,54,41,91,0,0,0,0,0,0,0,1,91,146,50,54,41,91,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,18,239,67,172,22,77,45,94,0,1,0,0,0,0,0,0,67,171,22,77,45,93,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,99,12221,5782,6439,1647,1663,4097,4749,7,7,1,3,3,0,27,17,5747,6403,1636,1655,4075,4721,7,7,1,3,2,0,26,17,35,36,11,8,22,28,0,0,0,0,1,0,1,0 -050,01,131,Alabama,Wilcox County,9,0,156,84,72,16,14,68,58,0,0,0,0,0,0,0,0,83,72,16,14,67,58,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,1,658,367,291,75,57,289,233,1,0,0,0,1,0,1,1,365,290,73,57,289,232,1,0,0,0,1,0,1,1,2,1,2,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,2,943,451,492,86,74,362,417,0,0,0,0,0,0,3,1,447,489,85,72,359,416,0,0,0,0,0,0,3,1,4,3,1,2,3,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,3,1045,560,485,110,110,446,372,1,0,0,0,0,0,3,3,555,480,109,109,442,368,1,0,0,0,0,0,3,3,5,5,1,1,4,4,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,4,1051,521,530,94,63,421,465,1,0,0,0,0,0,5,2,517,529,94,63,417,464,1,0,0,0,0,0,5,2,4,1,0,0,4,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,5,686,355,331,63,64,287,265,0,0,0,0,0,0,5,2,353,329,62,64,286,263,0,0,0,0,0,0,5,2,2,2,1,0,1,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,6,631,281,350,67,50,213,300,0,0,0,0,1,0,0,0,275,348,64,49,211,299,0,0,0,0,0,0,0,0,6,2,3,1,2,1,0,0,0,0,1,0,0,0 -050,01,131,Alabama,Wilcox County,9,7,666,297,369,85,79,212,289,0,0,0,0,0,0,0,1,297,369,85,79,212,289,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,8,683,309,374,87,100,220,274,1,0,0,0,0,0,1,0,308,371,87,99,219,272,1,0,0,0,0,0,1,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,9,801,374,427,77,87,294,337,0,1,0,0,0,0,3,2,371,424,76,87,293,334,0,1,0,0,0,0,2,2,3,3,1,0,1,3,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,9,10,843,371,472,127,128,244,341,0,1,0,0,0,0,0,2,368,470,126,127,242,340,0,1,0,0,0,0,0,2,3,2,1,1,2,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,11,937,439,498,149,132,287,362,1,1,1,0,0,0,1,3,439,495,149,131,287,360,1,1,1,0,0,0,1,3,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,12,816,380,436,121,145,256,287,1,1,0,1,0,0,2,2,376,432,121,145,252,283,1,1,0,1,0,0,2,2,4,4,0,0,4,4,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,13,648,312,336,145,131,165,203,0,1,0,1,0,0,2,0,312,334,145,130,165,202,0,1,0,1,0,0,2,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,14,479,227,252,122,112,103,139,1,0,0,1,0,0,1,0,226,251,122,112,102,138,1,0,0,1,0,0,1,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,15,395,160,235,76,96,84,139,0,0,0,0,0,0,0,0,160,233,76,96,84,137,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,16,319,109,210,58,86,51,123,0,1,0,0,0,0,0,0,108,210,58,86,50,123,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,17,217,85,132,44,56,41,75,0,0,0,0,0,0,0,1,85,132,44,56,41,75,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,18,234,72,162,25,69,47,92,0,1,0,0,0,0,0,0,72,161,25,69,47,91,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,99,12208,5754,6454,1627,1653,4090,4771,7,7,1,3,2,0,27,20,5717,6419,1617,1645,4065,4744,7,7,1,3,1,0,26,20,37,35,10,8,25,27,0,0,0,0,1,0,1,0 -050,01,131,Alabama,Wilcox County,10,0,146,71,75,15,16,56,59,0,0,0,0,0,0,0,0,70,75,15,16,55,59,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,1,631,332,299,67,55,262,243,1,0,0,0,1,0,1,1,329,298,64,55,262,242,1,0,0,0,1,0,1,1,3,1,3,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,2,938,454,484,90,77,361,406,0,0,0,0,0,0,3,1,451,482,89,75,359,406,0,0,0,0,0,0,3,1,3,2,1,2,2,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,3,1022,546,476,116,106,426,367,1,0,0,0,0,0,3,3,541,473,115,105,422,365,1,0,0,0,0,0,3,3,5,3,1,1,4,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,4,1043,542,501,101,63,436,436,0,0,0,0,0,0,5,2,538,501,101,63,432,436,0,0,0,0,0,0,5,2,4,0,0,0,4,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,5,620,314,306,52,53,257,251,0,0,0,0,0,0,5,2,312,305,51,53,256,250,0,0,0,0,0,0,5,2,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,6,646,310,336,68,55,241,281,0,0,0,0,1,0,0,0,305,333,65,53,240,280,0,0,0,0,0,0,0,0,5,3,3,2,1,1,0,0,0,0,1,0,0,0 -050,01,131,Alabama,Wilcox County,10,7,639,269,370,72,82,197,287,0,0,0,0,0,0,0,1,269,370,72,82,197,287,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,8,686,306,380,84,81,220,299,1,0,0,0,0,0,1,0,306,377,84,80,220,297,1,0,0,0,0,0,1,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,9,749,341,408,79,97,259,308,0,1,0,0,0,0,3,2,338,405,78,97,258,305,0,1,0,0,0,0,2,2,3,3,1,0,1,3,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,10,10,821,376,445,115,127,261,315,0,1,0,0,0,0,0,2,372,442,113,125,259,314,0,1,0,0,0,0,0,2,4,3,2,2,2,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,11,935,426,509,132,127,291,378,1,1,1,0,0,0,1,3,426,506,132,126,291,376,1,1,1,0,0,0,1,3,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,12,855,400,455,138,143,259,308,1,1,0,1,0,0,2,2,397,451,138,143,256,304,1,1,0,1,0,0,2,2,3,4,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,13,694,331,363,137,132,192,229,0,1,0,1,0,0,2,0,331,361,137,131,192,228,0,1,0,1,0,0,2,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,14,485,244,241,115,114,127,126,1,0,0,1,0,0,1,0,243,239,115,114,126,124,1,0,0,1,0,0,1,0,1,2,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,15,400,153,247,82,97,71,150,0,0,0,0,0,0,0,0,153,245,82,97,71,148,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,16,370,127,243,65,87,62,155,0,1,0,0,0,0,0,0,126,243,65,87,61,155,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,17,228,95,133,48,63,47,69,0,0,0,0,0,0,0,1,95,133,48,63,47,69,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,18,240,72,168,24,59,48,108,0,1,0,0,0,0,0,0,72,167,24,59,48,107,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,99,12148,5709,6439,1600,1634,4073,4775,6,7,1,3,2,0,27,20,5674,6406,1588,1624,4052,4752,6,7,1,3,1,0,26,20,35,33,12,10,21,23,0,0,0,0,1,0,1,0 -050,01,131,Alabama,Wilcox County,11,0,153,87,66,13,9,74,57,0,0,0,0,0,0,0,0,86,66,13,9,73,57,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,1,567,284,283,60,45,221,237,1,0,0,0,1,0,1,1,279,282,55,45,221,236,1,0,0,0,1,0,1,1,5,1,5,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,2,894,444,450,84,83,357,366,0,0,0,0,0,0,3,1,442,448,84,81,355,366,0,0,0,0,0,0,3,1,2,2,0,2,2,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,3,983,530,453,112,98,413,352,1,0,0,0,0,0,4,3,525,450,111,97,409,350,1,0,0,0,0,0,4,3,5,3,1,1,4,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,4,990,521,469,99,63,417,404,0,0,0,0,0,0,5,2,517,469,99,63,413,404,0,0,0,0,0,0,5,2,4,0,0,0,4,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,5,576,288,288,51,43,232,243,0,0,0,0,0,0,5,2,286,287,50,43,231,242,0,0,0,0,0,0,5,2,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,6,640,302,338,60,57,241,281,0,0,0,0,1,0,0,0,297,335,57,55,240,280,0,0,0,0,0,0,0,0,5,3,3,2,1,1,0,0,0,0,1,0,0,0 -050,01,131,Alabama,Wilcox County,11,7,645,286,359,72,76,213,282,0,0,0,0,0,0,1,1,285,359,72,76,213,282,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,11,8,686,311,375,84,83,225,292,1,0,0,0,0,0,1,0,310,372,84,82,224,290,1,0,0,0,0,0,1,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,9,736,345,391,94,97,248,291,0,1,0,0,0,0,3,2,342,388,93,97,247,288,0,1,0,0,0,0,2,2,3,3,1,0,1,3,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,11,10,798,360,438,101,111,259,324,0,1,0,0,0,0,0,2,356,435,99,109,257,323,0,1,0,0,0,0,0,2,4,3,2,2,2,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,11,931,426,505,132,135,291,366,1,1,1,0,0,0,1,3,426,502,132,134,291,364,1,1,1,0,0,0,1,3,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,12,838,407,431,160,130,244,297,1,1,0,1,0,0,2,2,403,426,160,130,240,292,1,1,0,1,0,0,2,2,4,5,0,0,4,5,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,13,704,348,356,132,134,214,220,0,1,0,1,0,0,2,0,348,354,132,133,214,219,0,1,0,1,0,0,2,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,14,527,247,280,124,128,121,151,1,0,0,1,0,0,1,0,245,278,124,128,119,149,1,0,0,1,0,0,1,0,2,2,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,15,406,167,239,86,110,81,129,0,0,0,0,0,0,0,0,167,237,86,110,81,127,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,16,352,134,218,60,85,74,132,0,1,0,0,0,0,0,0,133,218,60,85,73,132,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,17,223,89,134,49,59,40,74,0,0,0,0,0,0,0,1,89,134,49,59,40,74,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,18,221,58,163,22,62,36,99,0,2,0,0,0,0,0,0,58,162,22,62,36,98,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,99,11870,5634,6236,1595,1608,4001,4597,6,8,1,3,2,0,29,20,5594,6202,1582,1598,3977,4573,6,8,1,3,1,0,27,20,40,34,13,10,24,24,0,0,0,0,1,0,2,0 -050,01,131,Alabama,Wilcox County,12,0,144,80,64,13,12,67,52,0,0,0,0,0,0,0,0,79,64,13,12,66,52,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,1,568,293,275,53,34,237,240,1,0,0,0,1,0,1,1,290,274,50,34,237,239,1,0,0,0,1,0,1,1,3,1,3,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,2,870,435,435,79,80,353,354,0,0,0,0,0,0,3,1,433,433,79,78,351,354,0,0,0,0,0,0,3,1,2,2,0,2,2,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,3,970,520,450,117,99,398,348,1,0,0,0,0,0,4,3,515,447,116,98,394,346,1,0,0,0,0,0,4,3,5,3,1,1,4,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,4,936,489,447,95,72,389,373,0,0,0,0,0,0,5,2,485,447,95,72,385,373,0,0,0,0,0,0,5,2,4,0,0,0,4,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,5,607,300,307,51,52,244,253,0,0,0,0,0,0,5,2,298,306,50,52,243,252,0,0,0,0,0,0,5,2,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,6,596,290,306,60,51,229,255,0,0,0,0,1,0,0,0,285,303,57,49,228,254,0,0,0,0,0,0,0,0,5,3,3,2,1,1,0,0,0,0,1,0,0,0 -050,01,131,Alabama,Wilcox County,12,7,643,279,364,69,70,209,293,0,0,0,0,0,0,1,1,278,364,69,70,209,293,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,12,8,664,307,357,70,70,235,287,1,0,0,0,0,0,1,0,306,354,70,69,234,285,1,0,0,0,0,0,1,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,9,686,313,373,87,102,223,268,0,1,0,0,0,0,3,2,310,370,86,102,222,265,0,1,0,0,0,0,2,2,3,3,1,0,1,3,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,12,10,767,348,419,91,93,257,323,0,1,0,0,0,0,0,2,344,416,89,91,255,322,0,1,0,0,0,0,0,2,4,3,2,2,2,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,11,897,417,480,128,139,286,337,1,1,1,0,0,0,1,3,417,477,128,138,286,335,1,1,1,0,0,0,1,3,0,3,0,1,0,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,12,850,407,443,157,135,247,304,1,1,0,1,0,0,2,2,403,438,157,135,243,299,1,1,0,1,0,0,2,2,4,5,0,0,4,5,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,13,720,351,369,133,128,216,239,0,1,0,1,0,0,2,0,351,367,133,127,216,238,0,1,0,1,0,0,2,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,14,527,250,277,121,121,127,155,1,0,0,1,0,0,1,0,248,275,121,121,125,153,1,0,0,1,0,0,1,0,2,2,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,15,444,187,257,96,118,91,139,0,0,0,0,0,0,0,0,187,255,96,118,91,137,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,16,346,122,224,55,85,67,138,0,1,0,0,0,0,0,0,121,224,55,85,66,138,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,17,206,69,137,43,65,26,71,0,0,0,0,0,0,0,1,69,137,43,65,26,71,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,18,229,61,168,24,64,37,102,0,2,0,0,0,0,0,0,61,167,24,64,37,101,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,99,11670,5518,6152,1542,1590,3938,4531,6,8,1,3,2,0,29,20,5480,6118,1531,1580,3914,4507,6,8,1,3,1,0,27,20,38,34,11,10,24,24,0,0,0,0,1,0,2,0 -050,01,131,Alabama,Wilcox County,13,0,140,78,62,13,11,65,51,0,0,0,0,0,0,0,0,78,62,13,11,65,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,1,565,287,278,51,35,234,240,0,0,1,0,0,0,1,3,284,273,48,33,234,237,0,0,1,0,0,0,1,3,3,5,3,2,0,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,2,866,435,431,77,75,351,350,1,1,1,1,0,0,5,4,432,430,76,74,349,350,1,1,1,1,0,0,5,4,3,1,1,1,2,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,3,964,516,448,115,97,393,345,3,1,1,1,0,0,4,4,512,445,113,95,391,344,3,1,1,1,0,0,4,4,4,3,2,2,2,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,4,925,479,446,92,70,382,369,3,3,1,0,0,0,1,4,478,444,92,69,381,369,3,2,1,0,0,0,1,4,1,2,0,1,1,0,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,5,604,297,307,47,50,245,254,0,1,0,0,0,0,5,2,295,306,46,50,244,253,0,1,0,0,0,0,5,2,2,1,1,0,1,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,6,595,289,306,60,51,228,252,1,0,0,3,0,0,0,0,285,303,58,48,227,252,0,0,0,3,0,0,0,0,4,3,2,3,1,0,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,7,644,279,365,70,69,209,293,0,2,0,1,0,0,0,0,279,365,70,69,209,293,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,8,665,311,354,71,66,232,282,3,3,3,2,0,0,2,1,308,353,68,65,232,282,3,3,3,2,0,0,2,1,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,9,681,309,372,85,100,220,267,2,3,1,0,0,0,1,2,307,369,84,100,219,264,2,3,1,0,0,0,1,2,2,3,1,0,1,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,10,768,351,417,90,92,256,318,2,3,1,0,0,0,2,4,346,414,86,89,255,318,2,3,1,0,0,0,2,4,5,3,4,3,1,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,11,895,417,478,128,139,286,334,1,2,1,0,0,0,1,3,416,475,127,137,286,333,1,2,1,0,0,0,1,3,1,3,1,2,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,12,844,404,440,156,134,244,299,2,3,1,3,0,0,1,1,400,437,156,134,240,296,2,3,1,3,0,0,1,1,4,3,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,13,725,352,373,132,129,217,239,1,3,0,1,0,0,2,1,352,372,132,128,217,239,1,3,0,1,0,0,2,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,14,525,249,276,122,123,123,151,1,0,0,1,0,0,3,1,249,274,122,122,123,150,1,0,0,1,0,0,3,1,0,2,0,1,0,1,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,15,438,186,252,93,118,91,134,1,0,0,0,0,0,1,0,186,251,93,117,91,134,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,16,339,119,220,52,83,66,137,0,0,0,0,0,0,1,0,119,218,52,81,66,137,0,0,0,0,0,0,1,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,17,204,69,135,44,64,25,70,0,0,0,0,0,0,0,1,69,135,44,64,25,70,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,18,228,61,167,24,63,37,102,0,2,0,0,0,0,0,0,61,167,24,63,37,102,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,99,11615,5488,6127,1522,1569,3904,4487,21,27,11,13,0,0,30,31,5456,6093,1504,1549,3891,4474,20,26,11,13,0,0,30,31,32,34,18,20,13,13,1,1,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,1,0,343,159,184,153,180,1,1,3,1,0,0,0,0,2,2,154,177,149,174,1,1,3,0,0,0,0,0,1,2,5,7,4,6,0,0,0,1,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,1,1,1203,611,592,590,574,3,4,5,5,1,3,0,0,12,6,591,574,572,559,3,3,5,4,1,2,0,0,10,6,20,18,18,15,0,1,0,1,0,1,0,0,2,0 -050,01,133,Alabama,Winston County,1,2,1650,832,818,819,802,5,6,4,1,0,0,0,0,4,9,817,808,807,792,5,6,2,1,0,0,0,0,3,9,15,10,12,10,0,0,2,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,1,3,1677,869,808,856,795,5,4,5,3,1,3,0,0,2,3,854,792,842,780,5,4,5,2,1,3,0,0,1,3,15,16,14,15,0,0,0,1,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,1,4,1624,860,764,842,751,2,2,6,6,1,0,0,1,9,4,835,757,818,744,2,2,6,6,1,0,0,1,8,4,25,7,24,7,0,0,0,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,1,5,1343,690,653,680,641,4,3,0,3,0,2,2,1,4,3,648,637,640,626,4,3,0,3,0,2,1,0,3,3,42,16,40,15,0,0,0,0,0,0,1,1,1,0 -050,01,133,Alabama,Winston County,1,6,1619,803,816,790,802,5,2,3,5,0,3,0,0,5,4,763,798,750,785,5,2,3,4,0,3,0,0,5,4,40,18,40,17,0,0,0,1,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,1,7,1759,891,868,877,858,4,2,4,2,2,2,0,0,4,4,865,859,851,851,4,2,4,2,2,1,0,0,4,3,26,9,26,7,0,0,0,0,0,1,0,0,0,1 -050,01,133,Alabama,Winston County,1,8,1975,1010,965,988,952,5,3,10,4,0,2,0,0,7,4,994,956,972,945,5,3,10,3,0,2,0,0,7,3,16,9,16,7,0,0,0,1,0,0,0,0,0,1 -050,01,133,Alabama,Winston County,1,9,1772,882,890,872,871,2,1,2,8,1,1,0,0,5,9,876,879,867,860,2,1,2,8,1,1,0,0,4,9,6,11,5,11,0,0,0,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,1,10,1670,831,839,822,822,0,6,5,5,0,1,0,0,4,5,823,834,814,817,0,6,5,5,0,1,0,0,4,5,8,5,8,5,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,1,11,1797,883,914,873,895,3,3,2,5,0,2,0,0,5,9,876,912,866,893,3,3,2,5,0,2,0,0,5,9,7,2,7,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,1,12,1539,755,784,738,767,2,3,5,4,3,0,0,0,7,10,751,783,734,766,2,3,5,4,3,0,0,0,7,10,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,1,13,1305,630,675,625,664,1,1,1,2,0,1,0,0,3,7,628,673,623,662,1,1,1,2,0,1,0,0,3,7,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,1,14,1032,509,523,503,517,2,1,0,0,0,0,0,1,4,4,504,521,498,515,2,1,0,0,0,0,0,1,4,4,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,1,15,959,403,556,398,550,0,3,1,0,1,1,0,0,3,2,403,556,398,550,0,3,1,0,1,1,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,1,16,704,278,426,278,423,0,1,0,0,0,0,0,0,0,2,278,424,278,421,0,1,0,0,0,0,0,0,0,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,1,17,444,153,291,152,289,1,1,0,1,0,0,0,0,0,0,152,291,151,289,1,1,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,1,18,391,97,294,94,290,1,2,1,0,0,1,0,0,1,1,97,293,94,289,1,2,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,1,99,24806,12146,12660,11950,12443,46,49,57,55,10,22,2,3,81,88,11909,12524,11724,12318,46,48,55,50,10,20,1,2,73,86,237,136,226,125,0,1,2,5,0,2,1,1,8,2 -050,01,133,Alabama,Winston County,2,0,344,160,184,154,180,1,1,3,1,0,0,0,0,2,2,155,177,150,174,1,1,3,0,0,0,0,0,1,2,5,7,4,6,0,0,0,1,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,2,1,1197,607,590,587,572,3,4,5,5,1,3,0,0,11,6,587,572,569,557,3,3,5,4,1,2,0,0,9,6,20,18,18,15,0,1,0,1,0,1,0,0,2,0 -050,01,133,Alabama,Winston County,2,2,1648,832,816,818,800,5,6,4,1,0,0,0,0,5,9,817,806,806,790,5,6,2,1,0,0,0,0,4,9,15,10,12,10,0,0,2,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,2,3,1682,872,810,859,797,5,4,5,3,1,3,0,0,2,3,857,794,845,782,5,4,5,2,1,3,0,0,1,3,15,16,14,15,0,0,0,1,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,2,4,1630,863,767,845,754,2,2,6,6,1,0,0,1,9,4,838,760,821,747,2,2,6,6,1,0,0,1,8,4,25,7,24,7,0,0,0,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,2,5,1356,696,660,686,648,4,3,0,3,0,2,2,1,4,3,654,644,646,633,4,3,0,3,0,2,1,0,3,3,42,16,40,15,0,0,0,0,0,0,1,1,1,0 -050,01,133,Alabama,Winston County,2,6,1603,794,809,781,795,5,2,3,5,0,3,0,0,5,4,754,790,741,777,5,2,3,4,0,3,0,0,5,4,40,19,40,18,0,0,0,1,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,2,7,1758,888,870,874,860,4,2,4,2,2,2,0,0,4,4,862,861,848,853,4,2,4,2,2,1,0,0,4,3,26,9,26,7,0,0,0,0,0,1,0,0,0,1 -050,01,133,Alabama,Winston County,2,8,1964,1003,961,981,948,5,3,10,4,0,2,0,0,7,4,987,952,965,941,5,3,10,3,0,2,0,0,7,3,16,9,16,7,0,0,0,1,0,0,0,0,0,1 -050,01,133,Alabama,Winston County,2,9,1777,884,893,874,874,2,1,2,8,1,1,0,0,5,9,878,882,869,863,2,1,2,8,1,1,0,0,4,9,6,11,5,11,0,0,0,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,2,10,1680,835,845,826,828,0,6,5,5,0,1,0,0,4,5,827,840,818,823,0,6,5,5,0,1,0,0,4,5,8,5,8,5,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,2,11,1818,893,925,883,907,3,3,2,5,0,2,0,0,5,8,886,923,876,905,3,3,2,5,0,2,0,0,5,8,7,2,7,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,2,12,1547,759,788,742,771,2,3,5,4,3,0,0,0,7,10,755,787,738,770,2,3,5,4,3,0,0,0,7,10,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,2,13,1314,636,678,631,667,1,1,1,2,0,1,0,0,3,7,634,676,629,665,1,1,1,2,0,1,0,0,3,7,2,2,2,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,2,14,1028,507,521,501,515,2,1,0,0,0,0,0,1,4,4,502,519,496,513,2,1,0,0,0,0,0,1,4,4,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,2,15,958,404,554,399,548,0,3,1,0,1,1,0,0,3,2,404,554,399,548,0,3,1,0,1,1,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,2,16,709,279,430,279,427,0,1,0,0,0,0,0,0,0,2,279,428,279,425,0,1,0,0,0,0,0,0,0,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,2,17,448,155,293,154,291,1,1,0,1,0,0,0,0,0,0,154,293,153,291,1,1,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,2,18,396,98,298,95,294,1,2,1,0,0,1,0,0,1,1,98,297,95,293,1,2,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,2,99,24857,12165,12692,11969,12476,46,49,57,55,10,22,2,3,81,87,11928,12555,11743,12350,46,48,55,50,10,20,1,2,73,85,237,137,226,126,0,1,2,5,0,2,1,1,8,2 -050,01,133,Alabama,Winston County,3,0,297,160,137,154,133,1,1,3,1,0,0,0,0,2,2,154,131,149,128,1,1,3,0,0,0,0,0,1,2,6,6,5,5,0,0,0,1,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,3,1,1190,576,614,555,597,3,4,5,4,1,3,0,0,12,6,557,590,539,576,3,3,5,3,1,2,0,0,9,6,19,24,16,21,0,1,0,1,0,1,0,0,3,0 -050,01,133,Alabama,Winston County,3,2,1636,844,792,831,778,5,4,4,1,0,0,0,0,4,9,825,781,815,767,5,4,2,1,0,0,0,0,3,9,19,11,16,11,0,0,2,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,3,3,1633,841,792,827,778,5,5,6,3,1,3,0,0,2,3,832,775,819,762,5,5,6,2,1,3,0,0,1,3,9,17,8,16,0,0,0,1,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,3,4,1552,817,735,800,724,2,1,5,6,1,0,0,0,9,4,798,720,782,709,2,1,5,6,1,0,0,0,8,4,19,15,18,15,0,0,0,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,3,5,1379,690,689,680,677,4,3,0,3,0,2,2,1,4,3,658,679,650,668,4,3,0,3,0,2,1,0,3,3,32,10,30,9,0,0,0,0,0,0,1,1,1,0 -050,01,133,Alabama,Winston County,3,6,1493,777,716,764,702,5,2,3,5,0,3,0,0,5,4,730,698,717,685,5,2,3,4,0,3,0,0,5,4,47,18,47,17,0,0,0,1,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,3,7,1708,866,842,851,832,4,2,5,2,2,2,0,0,4,4,832,830,818,822,4,2,4,2,2,1,0,0,4,3,34,12,33,10,0,0,1,0,0,1,0,0,0,1 -050,01,133,Alabama,Winston County,3,8,1931,989,942,967,928,5,4,10,4,0,2,0,0,7,4,972,931,950,919,5,4,10,3,0,2,0,0,7,3,17,11,17,9,0,0,0,1,0,0,0,0,0,1 -050,01,133,Alabama,Winston County,3,9,1835,916,919,905,901,2,1,3,7,1,1,0,0,5,9,909,908,899,890,2,1,3,7,1,1,0,0,4,9,7,11,6,11,0,0,0,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,3,10,1614,814,800,805,782,0,6,5,5,0,1,0,0,4,6,805,792,796,774,0,6,5,5,0,1,0,0,4,6,9,8,9,8,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,3,11,1836,894,942,882,926,3,3,3,5,0,2,0,0,6,6,887,940,875,924,3,3,3,5,0,2,0,0,6,6,7,2,7,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,3,12,1583,784,799,767,783,2,3,5,4,3,0,0,0,7,9,780,798,763,782,2,3,5,4,3,0,0,0,7,9,4,1,4,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,3,13,1347,647,700,641,690,1,1,1,2,0,1,0,0,4,6,642,698,636,688,1,1,1,2,0,1,0,0,4,6,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,3,14,1063,534,529,528,523,2,1,0,0,0,0,0,1,4,4,529,527,523,521,2,1,0,0,0,0,0,1,4,4,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,3,15,961,402,559,397,553,0,3,1,0,1,1,0,0,3,2,402,559,397,553,0,3,1,0,1,1,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,3,16,700,279,421,279,418,0,1,0,0,0,0,0,0,0,2,278,419,278,416,0,1,0,0,0,0,0,0,0,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,3,17,449,146,303,145,302,1,1,0,0,0,0,0,0,0,0,145,303,144,302,1,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,3,18,390,101,289,98,285,1,2,1,0,0,1,0,0,1,1,101,288,98,284,1,2,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,3,99,24597,12077,12520,11876,12312,46,48,60,52,10,22,2,2,83,84,11836,12367,11648,12170,46,47,57,47,10,20,1,1,74,82,241,153,228,142,0,1,3,5,0,2,1,1,9,2 -050,01,133,Alabama,Winston County,4,0,264,138,126,133,123,1,1,2,0,0,0,0,0,2,2,134,122,130,119,1,1,2,0,0,0,0,0,1,2,4,4,3,4,0,0,0,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,4,1,1186,566,620,545,601,3,4,5,5,1,3,0,0,12,7,546,592,527,576,3,3,5,4,1,2,0,0,10,7,20,28,18,25,0,1,0,1,0,1,0,0,2,0 -050,01,133,Alabama,Winston County,4,2,1603,841,762,825,745,5,5,4,1,0,1,2,0,5,10,815,747,804,730,5,5,2,1,0,1,0,0,4,10,26,15,21,15,0,0,2,0,0,0,2,0,1,0 -050,01,133,Alabama,Winston County,4,3,1653,848,805,834,790,5,6,5,3,1,3,0,0,3,3,837,786,824,772,5,6,5,2,1,3,0,0,2,3,11,19,10,18,0,0,0,1,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,4,4,1527,806,721,787,708,3,2,6,5,1,0,0,1,9,5,792,712,775,699,3,2,5,5,1,0,0,1,8,5,14,9,12,9,0,0,1,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,4,5,1381,699,682,685,669,5,3,1,3,0,2,2,1,6,4,657,665,646,654,5,3,0,3,0,2,1,0,5,3,42,17,39,15,0,0,1,0,0,0,1,1,1,1 -050,01,133,Alabama,Winston County,4,6,1440,743,697,729,683,5,3,2,5,0,2,1,0,6,4,693,680,681,667,5,3,2,4,0,2,0,0,5,4,50,17,48,16,0,0,0,1,0,0,1,0,1,0 -050,01,133,Alabama,Winston County,4,7,1698,859,839,843,827,4,2,6,4,2,2,0,0,4,4,831,828,816,818,4,2,5,3,2,2,0,0,4,3,28,11,27,9,0,0,1,1,0,0,0,0,0,1 -050,01,133,Alabama,Winston County,4,8,1862,944,918,923,899,5,8,9,4,0,2,1,0,6,5,916,904,896,888,5,8,9,3,0,2,0,0,6,3,28,14,27,11,0,0,0,1,0,0,1,0,0,2 -050,01,133,Alabama,Winston County,4,9,1874,953,921,939,902,3,1,4,7,2,1,0,0,5,10,941,914,928,895,3,1,4,7,2,1,0,0,4,10,12,7,11,7,0,0,0,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,4,10,1643,842,801,830,781,1,5,5,6,0,1,1,0,5,8,834,794,822,774,1,5,5,6,0,1,1,0,5,8,8,7,8,7,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,4,11,1781,863,918,851,898,3,3,3,6,0,2,0,0,6,9,850,915,838,895,3,3,3,6,0,2,0,0,6,9,13,3,13,3,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,4,12,1688,823,865,804,845,2,4,7,4,3,0,0,0,7,12,817,864,798,844,2,4,7,4,3,0,0,0,7,12,6,1,6,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,4,13,1385,661,724,653,711,2,2,2,3,0,1,0,1,4,6,656,722,648,709,2,2,2,3,0,1,0,1,4,6,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,4,14,1090,551,539,546,533,2,1,0,0,0,0,0,1,3,4,547,537,542,531,2,1,0,0,0,0,0,1,3,4,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,4,15,973,409,564,403,558,0,3,1,0,1,1,0,0,4,2,409,564,403,558,0,3,1,0,1,1,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,4,16,717,283,434,283,431,0,1,0,0,0,0,0,0,0,2,282,432,282,429,0,1,0,0,0,0,0,0,0,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,4,17,450,148,302,147,300,1,1,0,1,0,0,0,0,0,0,147,302,146,300,1,1,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,4,18,385,102,283,99,279,1,2,1,0,0,1,0,0,1,1,102,282,99,278,1,2,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,4,99,24600,12079,12521,11859,12283,51,57,63,57,11,22,7,4,88,98,11806,12362,11605,12136,51,56,58,52,11,21,2,3,79,94,273,159,254,147,0,1,5,5,0,1,5,1,9,4 -050,01,133,Alabama,Winston County,5,0,233,112,121,107,117,1,1,2,1,0,0,0,0,2,2,109,114,105,111,1,1,2,0,0,0,0,0,1,2,3,7,2,6,0,0,0,1,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,5,1,1219,579,640,552,618,6,3,6,8,1,3,1,1,13,7,557,602,535,586,6,2,4,5,1,2,0,0,11,7,22,38,17,32,0,1,2,3,0,1,1,1,2,0 -050,01,133,Alabama,Winston County,5,2,1582,818,764,800,742,4,6,4,1,0,1,3,2,7,12,790,752,778,732,4,6,2,1,0,1,0,0,6,12,28,12,22,10,0,0,2,0,0,0,3,2,1,0 -050,01,133,Alabama,Winston County,5,3,1643,833,810,815,793,4,7,5,3,1,3,1,0,7,4,823,788,807,772,4,7,5,2,1,3,0,0,6,4,10,22,8,21,0,0,0,1,0,0,1,0,1,0 -050,01,133,Alabama,Winston County,5,4,1535,797,738,776,722,3,3,8,6,2,0,0,0,8,7,783,726,764,711,3,3,7,5,2,0,0,0,7,7,14,12,12,11,0,0,1,1,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,5,5,1358,691,667,677,652,4,3,1,4,0,2,3,1,6,5,650,643,640,632,4,3,0,3,0,2,1,0,5,3,41,24,37,20,0,0,1,1,0,0,2,1,1,2 -050,01,133,Alabama,Winston County,5,6,1381,708,673,694,658,4,3,4,5,0,2,1,0,5,5,659,657,649,645,4,3,2,3,0,2,0,0,4,4,49,16,45,13,0,0,2,2,0,0,1,0,1,1 -050,01,133,Alabama,Winston County,5,7,1645,833,812,816,800,6,2,6,4,2,3,0,0,3,3,796,797,781,787,6,2,4,3,2,2,0,0,3,3,37,15,35,13,0,0,2,1,0,1,0,0,0,0 -050,01,133,Alabama,Winston County,5,8,1794,892,902,871,886,5,4,9,5,0,2,1,0,6,5,865,888,845,874,5,4,9,4,0,2,0,0,6,4,27,14,26,12,0,0,0,1,0,0,1,0,0,1 -050,01,133,Alabama,Winston County,5,9,1923,966,957,951,937,2,1,5,7,2,3,0,0,6,9,957,949,943,929,2,1,5,7,2,3,0,0,5,9,9,8,8,8,0,0,0,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,5,10,1713,904,809,889,790,1,5,7,5,0,1,0,0,7,8,892,804,877,785,1,5,7,5,0,1,0,0,7,8,12,5,12,5,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,5,11,1726,840,886,825,871,3,2,4,6,0,2,0,0,8,5,830,881,815,866,3,2,4,6,0,2,0,0,8,5,10,5,10,5,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,5,12,1711,818,893,797,876,2,4,6,4,3,0,1,0,9,9,811,890,791,873,2,4,6,4,3,0,0,0,9,9,7,3,6,3,0,0,0,0,0,0,1,0,0,0 -050,01,133,Alabama,Winston County,5,13,1431,697,734,687,721,4,2,2,3,0,1,0,1,4,6,694,732,684,719,4,2,2,3,0,1,0,1,4,6,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,5,14,1174,584,590,579,582,2,1,0,1,0,0,0,1,3,5,581,588,576,580,2,1,0,1,0,0,0,1,3,5,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,5,15,929,413,516,407,509,0,3,1,0,1,1,0,0,4,3,413,515,407,508,0,3,1,0,1,1,0,0,4,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,5,16,752,293,459,292,455,0,1,0,0,0,0,0,0,1,3,291,458,290,454,0,1,0,0,0,0,0,0,1,3,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,5,17,450,149,301,147,299,1,1,0,1,0,0,0,0,1,0,148,301,146,299,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,5,18,377,91,286,88,281,1,2,1,0,0,1,0,0,1,2,91,285,88,280,1,2,1,0,0,1,0,0,1,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,5,99,24576,12018,12558,11770,12309,53,54,71,64,12,25,11,6,101,100,11740,12370,11521,12143,53,53,61,53,12,23,1,2,92,96,278,188,249,166,0,1,10,11,0,2,10,4,9,4 -050,01,133,Alabama,Winston County,6,0,264,140,124,135,119,1,1,2,1,0,0,0,1,2,2,131,121,127,117,1,1,2,0,0,0,0,1,1,2,9,3,8,2,0,0,0,1,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,6,1,1148,563,585,529,560,11,3,7,9,1,3,1,1,14,9,545,557,516,539,11,2,5,5,1,2,0,0,12,9,18,28,13,21,0,1,2,4,0,1,1,1,2,0 -050,01,133,Alabama,Winston County,6,2,1566,786,780,763,754,7,9,4,2,0,1,3,2,9,12,757,763,740,739,7,9,2,2,0,1,0,0,8,12,29,17,23,15,0,0,2,0,0,0,3,2,1,0 -050,01,133,Alabama,Winston County,6,3,1643,835,808,817,792,4,5,5,3,1,3,1,0,7,5,824,788,808,773,4,5,5,2,1,3,0,0,6,5,11,20,9,19,0,0,0,1,0,0,1,0,1,0 -050,01,133,Alabama,Winston County,6,4,1573,796,777,774,760,3,2,8,6,2,0,0,0,9,9,785,765,765,749,3,2,7,5,2,0,0,0,8,9,11,12,9,11,0,0,1,1,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,6,5,1353,709,644,696,628,4,3,1,5,0,2,3,1,5,5,668,629,659,617,4,3,0,4,0,2,1,0,4,3,41,15,37,11,0,0,1,1,0,0,2,1,1,2 -050,01,133,Alabama,Winston County,6,6,1346,680,666,666,650,4,3,4,6,0,2,1,0,5,5,630,648,620,636,4,3,2,3,0,2,0,0,4,4,50,18,46,14,0,0,2,3,0,0,1,0,1,1 -050,01,133,Alabama,Winston County,6,7,1568,803,765,781,750,7,2,7,6,2,4,0,0,6,3,763,749,745,738,7,2,4,4,2,2,0,0,5,3,40,16,36,12,0,0,3,2,0,2,0,0,1,0 -050,01,133,Alabama,Winston County,6,8,1757,881,876,861,858,5,4,8,6,0,2,1,0,6,6,850,861,831,846,5,4,8,5,0,2,0,0,6,4,31,15,30,12,0,0,0,1,0,0,1,0,0,2 -050,01,133,Alabama,Winston County,6,9,1900,959,941,941,921,2,1,6,7,2,3,0,0,8,9,948,929,932,909,2,1,6,7,2,3,0,0,6,9,11,12,9,12,0,0,0,0,0,0,0,0,2,0 -050,01,133,Alabama,Winston County,6,10,1814,941,873,927,853,1,4,6,6,0,1,0,0,7,9,931,865,917,845,1,4,6,6,0,1,0,0,7,9,10,8,10,8,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,6,11,1707,814,893,798,878,3,2,4,6,0,2,0,0,9,5,805,887,789,872,3,2,4,6,0,2,0,0,9,5,9,6,9,6,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,6,12,1751,855,896,835,878,2,3,6,5,3,0,0,0,9,10,847,893,827,875,2,3,6,5,3,0,0,0,9,10,8,3,8,3,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,6,13,1477,707,770,698,757,2,2,2,3,0,1,0,1,5,6,704,768,695,755,2,2,2,3,0,1,0,1,5,6,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,6,14,1226,595,631,589,624,2,1,1,1,0,0,0,1,3,4,592,629,586,622,2,1,1,1,0,0,0,1,3,4,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,6,15,920,431,489,426,482,0,3,1,0,0,1,0,0,4,3,431,488,426,481,0,3,1,0,0,1,0,0,4,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,6,16,758,307,451,305,446,0,1,0,0,0,0,0,0,2,4,304,450,302,445,0,1,0,0,0,0,0,0,2,4,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,6,17,455,163,292,161,290,1,1,0,1,0,0,0,0,1,0,162,291,160,289,1,1,0,1,0,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,6,18,388,84,304,81,299,1,2,1,0,0,1,0,0,1,2,84,303,81,298,1,2,1,0,0,1,0,0,1,2,0,1,0,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,6,99,24614,12049,12565,11783,12299,60,52,73,73,11,26,10,7,112,108,11761,12384,11526,12145,60,51,62,59,11,23,1,3,101,103,288,181,257,154,0,1,11,14,0,3,9,4,11,5 -050,01,133,Alabama,Winston County,7,0,279,147,132,140,127,2,0,2,1,0,1,0,1,3,2,137,119,130,116,2,0,2,0,0,0,0,1,3,2,10,13,10,11,0,0,0,1,0,1,0,0,0,0 -050,01,133,Alabama,Winston County,7,1,1076,552,524,527,502,7,3,5,6,1,2,1,1,11,10,525,507,506,490,6,3,3,4,1,0,0,0,9,10,27,17,21,12,1,0,2,2,0,2,1,1,2,0 -050,01,133,Alabama,Winston County,7,2,1596,793,803,767,768,6,10,1,3,2,5,5,2,12,15,764,774,745,741,5,10,0,3,2,5,1,0,11,15,29,29,22,27,1,0,1,0,0,0,4,2,1,0 -050,01,133,Alabama,Winston County,7,3,1618,841,777,820,760,2,5,6,3,1,3,2,1,10,5,822,755,805,740,2,5,5,2,1,3,0,0,9,5,19,22,15,20,0,0,1,1,0,0,2,1,1,0 -050,01,133,Alabama,Winston County,7,4,1524,768,756,746,737,3,4,8,7,3,2,1,0,7,6,759,745,739,727,3,4,7,6,3,2,0,0,7,6,9,11,7,10,0,0,1,1,0,0,1,0,0,0 -050,01,133,Alabama,Winston County,7,5,1390,712,678,694,661,4,3,4,6,1,1,3,0,6,7,667,663,656,649,4,3,1,4,0,1,0,0,6,6,45,15,38,12,0,0,3,2,1,0,3,0,0,1 -050,01,133,Alabama,Winston County,7,6,1322,662,660,644,643,4,3,7,6,1,1,3,1,3,6,616,642,606,631,4,2,3,3,0,1,0,0,3,5,46,18,38,12,0,1,4,3,1,0,3,1,0,1 -050,01,133,Alabama,Winston County,7,7,1566,804,762,779,747,6,2,10,8,1,3,0,0,8,2,761,741,743,733,6,2,6,3,1,2,0,0,5,1,43,21,36,14,0,0,4,5,0,1,0,0,3,1 -050,01,133,Alabama,Winston County,7,8,1656,832,824,817,811,3,3,5,4,1,1,1,2,5,3,802,810,789,799,2,3,5,4,1,1,0,1,5,2,30,14,28,12,1,0,0,0,0,0,1,1,0,1 -050,01,133,Alabama,Winston County,7,9,1955,983,972,960,946,4,3,8,8,3,4,0,0,8,11,970,965,950,940,4,3,7,8,3,4,0,0,6,10,13,7,10,6,0,0,1,0,0,0,0,0,2,1 -050,01,133,Alabama,Winston County,7,10,1807,931,876,913,851,4,5,6,5,0,3,0,0,8,12,919,864,901,839,4,5,6,5,0,3,0,0,8,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,7,11,1718,842,876,820,858,5,4,6,6,1,1,1,0,9,7,832,872,811,854,5,4,6,6,1,1,0,0,9,7,10,4,9,4,0,0,0,0,0,0,1,0,0,0 -050,01,133,Alabama,Winston County,7,12,1822,896,926,876,906,2,5,6,6,3,1,1,0,8,8,883,920,864,900,2,5,6,6,3,1,0,0,8,8,13,6,12,6,0,0,0,0,0,0,1,0,0,0 -050,01,133,Alabama,Winston County,7,13,1515,726,789,717,772,2,3,3,3,0,1,0,2,4,8,723,785,714,769,2,3,3,3,0,1,0,1,4,8,3,4,3,3,0,0,0,0,0,0,0,1,0,0 -050,01,133,Alabama,Winston County,7,14,1267,603,664,598,654,1,2,1,2,0,2,0,0,3,4,601,663,596,653,1,2,1,2,0,2,0,0,3,4,2,1,2,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,7,15,899,431,468,425,463,0,0,2,0,0,1,0,0,4,4,430,466,424,461,0,0,2,0,0,1,0,0,4,4,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,7,16,760,305,455,303,451,1,2,0,0,0,0,0,0,1,2,302,453,300,449,1,2,0,0,0,0,0,0,1,2,3,2,3,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,7,17,449,162,287,162,282,0,3,0,0,0,1,0,0,0,1,162,287,162,282,0,3,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,7,18,410,96,314,95,310,0,2,0,0,0,0,0,0,1,2,95,314,94,310,0,2,0,0,0,0,0,0,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,7,99,24629,12086,12543,11803,12249,56,62,80,74,18,33,18,10,111,115,11770,12345,11535,12083,53,61,63,59,16,29,1,3,102,110,316,198,268,166,3,1,17,15,2,4,17,7,9,5 -050,01,133,Alabama,Winston County,8,0,249,129,120,124,118,2,0,1,1,0,0,0,0,2,1,117,112,112,110,2,0,1,1,0,0,0,0,2,1,12,8,12,8,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,8,1,1070,534,536,513,512,6,3,5,7,1,1,1,2,8,11,507,504,491,486,5,3,3,4,1,0,0,0,7,11,27,32,22,26,1,0,2,3,0,1,1,2,1,0 -050,01,133,Alabama,Winston County,8,2,1621,795,826,768,790,6,9,2,6,2,5,5,2,12,14,762,795,742,764,5,9,0,4,2,5,1,0,12,13,33,31,26,26,1,0,2,2,0,0,4,2,0,1 -050,01,133,Alabama,Winston County,8,3,1635,854,781,831,759,2,6,7,4,1,3,2,1,11,8,830,756,812,736,2,6,5,3,1,3,0,0,10,8,24,25,19,23,0,0,2,1,0,0,2,1,1,0 -050,01,133,Alabama,Winston County,8,4,1547,779,768,751,750,4,4,9,5,3,2,2,0,10,7,764,752,739,735,4,4,8,4,3,2,0,0,10,7,15,16,12,15,0,0,1,1,0,0,2,0,0,0 -050,01,133,Alabama,Winston County,8,5,1274,675,599,657,583,4,3,4,5,1,2,3,0,6,6,635,582,624,570,4,3,1,3,0,1,0,0,6,5,40,17,33,13,0,0,3,2,1,1,3,0,0,1 -050,01,133,Alabama,Winston County,8,6,1404,695,709,676,693,4,3,7,6,1,1,3,1,4,5,650,689,639,678,4,2,3,3,0,1,0,0,4,5,45,20,37,15,0,1,4,3,1,0,3,1,0,0 -050,01,133,Alabama,Winston County,8,7,1482,771,711,745,697,5,2,12,7,1,3,0,0,8,2,717,691,700,684,5,2,6,2,1,2,0,0,5,1,54,20,45,13,0,0,6,5,0,1,0,0,3,1 -050,01,133,Alabama,Winston County,8,8,1676,844,832,828,816,2,3,5,4,1,1,2,2,6,6,816,818,802,805,2,3,5,4,1,1,0,1,6,4,28,14,26,11,0,0,0,0,0,0,2,1,0,2 -050,01,133,Alabama,Winston County,8,9,1940,990,950,966,926,4,3,8,8,4,4,0,0,8,9,973,943,951,920,4,3,7,8,4,4,0,0,7,8,17,7,15,6,0,0,1,0,0,0,0,0,1,1 -050,01,133,Alabama,Winston County,8,10,1877,953,924,930,897,4,4,9,5,0,3,1,1,9,14,939,914,916,888,4,4,9,5,0,3,1,0,9,14,14,10,14,9,0,0,0,0,0,0,0,1,0,0 -050,01,133,Alabama,Winston County,8,11,1692,840,852,817,833,5,4,7,7,1,1,1,0,9,7,828,846,808,827,5,4,6,7,1,1,0,0,8,7,12,6,9,6,0,0,1,0,0,0,1,0,1,0 -050,01,133,Alabama,Winston County,8,12,1861,913,948,893,927,2,8,6,4,3,1,0,0,9,8,904,942,884,921,2,8,6,4,3,1,0,0,9,8,9,6,9,6,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,8,13,1561,767,794,754,778,2,3,4,3,1,3,1,0,5,7,765,789,752,774,2,3,4,3,1,3,1,0,5,6,2,5,2,4,0,0,0,0,0,0,0,0,0,1 -050,01,133,Alabama,Winston County,8,14,1321,612,709,604,696,1,2,2,4,2,4,0,0,3,3,609,709,601,696,1,2,2,4,2,4,0,0,3,3,3,0,3,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,8,15,916,458,458,453,451,0,0,1,1,0,1,0,0,4,5,457,456,452,449,0,0,1,1,0,1,0,0,4,5,1,2,1,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,8,16,803,316,487,314,482,1,2,0,1,0,0,0,0,1,2,312,485,310,480,1,2,0,1,0,0,0,0,1,2,4,2,4,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,8,17,424,160,264,159,258,0,3,0,0,0,1,0,0,1,2,159,264,158,258,0,3,0,0,0,1,0,0,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,8,18,443,107,336,106,332,0,2,0,0,0,0,0,0,1,2,106,336,105,332,0,2,0,0,0,0,0,0,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,8,99,24796,12192,12604,11889,12298,54,64,89,78,22,36,21,9,117,119,11850,12383,11598,12113,52,63,67,61,20,33,3,1,110,112,342,221,291,185,2,1,22,17,2,3,18,8,7,7 -050,01,133,Alabama,Winston County,9,0,269,136,133,131,128,2,0,1,2,0,1,0,1,2,1,125,118,120,115,2,0,1,1,0,0,0,1,2,1,11,15,11,13,0,0,0,1,0,1,0,0,0,0 -050,01,133,Alabama,Winston County,9,1,1067,538,529,518,503,5,3,4,7,1,1,2,2,8,13,509,498,496,477,4,3,2,5,1,0,0,0,6,13,29,31,22,26,1,0,2,2,0,1,2,2,2,0 -050,01,133,Alabama,Winston County,9,2,1612,766,846,733,812,10,8,3,6,2,5,5,2,13,13,724,813,699,784,9,8,0,4,2,5,1,0,13,12,42,33,34,28,1,0,3,2,0,0,4,2,0,1 -050,01,133,Alabama,Winston County,9,3,1614,857,757,833,736,2,5,7,4,1,3,2,1,12,8,835,725,816,706,2,5,5,3,1,3,0,0,11,8,22,32,17,30,0,0,2,1,0,0,2,1,1,0 -050,01,133,Alabama,Winston County,9,4,1554,802,752,774,732,4,5,9,5,3,2,2,0,10,8,788,737,763,718,4,5,8,4,3,2,0,0,10,8,14,15,11,14,0,0,1,1,0,0,2,0,0,0 -050,01,133,Alabama,Winston County,9,5,1273,659,614,641,596,3,3,4,6,1,2,3,0,7,7,626,597,615,583,3,3,1,4,0,1,0,0,7,6,33,17,26,13,0,0,3,2,1,1,3,0,0,1 -050,01,133,Alabama,Winston County,9,6,1378,676,702,657,685,4,3,6,5,2,1,4,1,3,7,616,672,606,662,4,2,2,2,0,1,1,0,3,5,60,30,51,23,0,1,4,3,2,0,3,1,0,2 -050,01,133,Alabama,Winston County,9,7,1438,750,688,723,673,6,2,12,8,1,3,0,0,8,2,689,670,673,662,5,2,5,3,1,2,0,0,5,1,61,18,50,11,1,0,7,5,0,1,0,0,3,1 -050,01,133,Alabama,Winston County,9,8,1671,857,814,840,797,3,4,4,4,1,1,2,2,7,6,824,797,810,783,2,4,4,4,1,1,0,1,7,4,33,17,30,14,1,0,0,0,0,0,2,1,0,2 -050,01,133,Alabama,Winston County,9,9,1849,929,920,903,895,4,3,9,8,4,4,0,0,9,10,903,907,879,883,4,3,8,8,4,4,0,0,8,9,26,13,24,12,0,0,1,0,0,0,0,0,1,1 -050,01,133,Alabama,Winston County,9,10,1891,976,915,955,889,4,4,9,4,0,3,0,1,8,14,964,907,943,882,4,4,9,4,0,3,0,0,8,14,12,8,12,7,0,0,0,0,0,0,0,1,0,0 -050,01,133,Alabama,Winston County,9,11,1748,881,867,856,844,5,4,8,7,1,1,1,0,10,11,870,861,848,838,5,4,7,7,1,1,0,0,9,11,11,6,8,6,0,0,1,0,0,0,1,0,1,0 -050,01,133,Alabama,Winston County,9,12,1800,881,919,862,903,2,5,6,4,3,1,0,0,8,6,870,913,851,897,2,5,6,4,3,1,0,0,8,6,11,6,11,6,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,9,13,1660,808,852,792,835,5,3,4,3,1,3,1,1,5,7,803,847,788,831,5,3,4,3,1,3,0,1,5,6,5,5,4,4,0,0,0,0,0,0,1,0,0,1 -050,01,133,Alabama,Winston County,9,14,1366,640,726,632,712,1,2,2,5,2,4,0,0,3,3,638,726,630,712,1,2,2,5,2,4,0,0,3,3,2,0,2,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,9,15,963,494,469,487,463,0,0,2,0,0,1,0,0,5,5,493,466,486,460,0,0,2,0,0,1,0,0,5,5,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,9,16,821,333,488,329,483,1,2,0,1,0,0,0,0,3,2,328,486,324,481,1,2,0,1,0,0,0,0,3,2,5,2,5,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,9,17,454,181,273,179,266,0,3,0,0,0,2,0,0,2,2,180,272,178,265,0,3,0,0,0,2,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,9,18,430,105,325,104,321,0,2,0,0,0,0,0,0,1,2,104,325,103,321,0,2,0,0,0,0,0,0,1,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,9,99,24858,12269,12589,11949,12273,61,61,90,79,23,38,22,11,124,127,11889,12337,11628,12060,57,60,66,62,20,34,2,3,116,118,380,252,321,213,4,1,24,17,3,4,20,8,8,9 -050,01,133,Alabama,Winston County,10,0,275,145,130,139,126,2,0,1,2,0,0,0,1,3,1,133,115,127,112,2,0,1,1,0,0,0,1,3,1,12,15,12,14,0,0,0,1,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,10,1,1071,541,530,517,502,6,2,4,8,1,1,2,3,11,14,508,497,491,476,5,2,2,5,1,0,0,0,9,14,33,33,26,26,1,0,2,3,0,1,2,3,2,0 -050,01,133,Alabama,Winston County,10,2,1601,794,807,760,767,9,9,3,6,2,6,6,2,14,17,747,766,722,733,8,9,0,4,2,5,1,0,14,15,47,41,38,34,1,0,3,2,0,1,5,2,0,2 -050,01,133,Alabama,Winston County,10,3,1537,800,737,775,714,1,6,6,4,1,3,3,1,14,9,777,712,758,691,1,6,4,3,1,3,0,0,13,9,23,25,17,23,0,0,2,1,0,0,3,1,1,0 -050,01,133,Alabama,Winston County,10,4,1526,798,728,770,705,2,5,11,6,4,2,2,0,9,10,784,708,760,687,2,5,9,4,4,2,0,0,9,10,14,20,10,18,0,0,2,2,0,0,2,0,0,0 -050,01,133,Alabama,Winston County,10,5,1252,641,611,622,591,2,3,5,6,1,3,4,0,7,8,614,593,604,580,2,3,1,3,0,1,0,0,7,6,27,18,18,11,0,0,4,3,1,2,4,0,0,2 -050,01,133,Alabama,Winston County,10,6,1334,654,680,634,662,3,4,8,6,1,0,4,1,4,7,584,652,575,642,3,3,2,2,0,0,1,0,3,5,70,28,59,20,0,1,6,4,1,0,3,1,1,2 -050,01,133,Alabama,Winston County,10,7,1373,722,651,689,633,11,2,13,10,1,4,0,0,8,2,658,632,637,622,10,2,5,4,1,3,0,0,5,1,64,19,52,11,1,0,8,6,0,1,0,0,3,1 -050,01,133,Alabama,Winston County,10,8,1620,832,788,815,768,3,4,4,5,1,1,3,3,6,7,803,772,790,756,2,4,4,5,1,1,0,1,6,5,29,16,25,12,1,0,0,0,0,0,3,2,0,2 -050,01,133,Alabama,Winston County,10,9,1846,919,927,893,900,4,3,9,8,4,6,0,0,9,10,897,919,873,893,4,3,8,8,4,6,0,0,8,9,22,8,20,7,0,0,1,0,0,0,0,0,1,1 -050,01,133,Alabama,Winston County,10,10,1897,952,945,929,917,5,4,7,5,0,3,1,1,10,15,939,934,916,907,5,4,7,5,0,3,1,0,10,15,13,11,13,10,0,0,0,0,0,0,0,1,0,0 -050,01,133,Alabama,Winston County,10,11,1797,914,883,888,866,5,3,8,7,1,1,1,0,11,6,901,878,878,861,5,3,7,7,1,1,0,0,10,6,13,5,10,5,0,0,1,0,0,0,1,0,1,0 -050,01,133,Alabama,Winston County,10,12,1711,831,880,810,861,2,5,6,5,3,1,0,2,10,6,825,872,804,853,2,5,6,5,3,1,0,2,10,6,6,8,6,8,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,10,13,1717,828,889,814,869,2,4,5,4,1,3,1,2,5,7,822,883,809,865,2,4,5,4,1,3,0,1,5,6,6,6,5,4,0,0,0,0,0,0,1,1,0,1 -050,01,133,Alabama,Winston County,10,14,1403,674,729,665,714,1,2,2,6,2,4,0,0,4,3,673,729,664,714,1,2,2,6,2,4,0,0,4,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,10,15,1042,525,517,518,510,0,0,2,1,0,1,0,0,5,5,524,514,517,507,0,0,2,1,0,1,0,0,5,5,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,10,16,763,320,443,316,437,1,2,0,1,0,0,0,0,3,3,314,441,310,435,1,2,0,1,0,0,0,0,3,3,6,2,6,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,10,17,510,189,321,187,314,0,3,0,0,0,2,0,0,2,2,188,320,186,313,0,3,0,0,0,2,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,10,18,421,105,316,104,311,0,2,0,0,0,0,0,0,1,3,104,316,103,311,0,2,0,0,0,0,0,0,1,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,10,99,24696,12184,12512,11845,12167,59,63,94,90,23,41,27,16,136,135,11795,12253,11524,11958,55,62,65,68,21,36,3,5,127,124,389,259,321,209,4,1,29,22,2,5,24,11,9,11 -050,01,133,Alabama,Winston County,11,0,230,121,109,114,104,2,0,2,3,0,0,0,1,3,1,110,100,104,97,2,0,1,1,0,0,0,1,3,1,11,9,10,7,0,0,1,2,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,11,1,1149,579,570,551,539,8,2,7,11,1,1,2,3,10,14,545,527,527,505,7,2,2,6,1,0,0,0,8,14,34,43,24,34,1,0,5,5,0,1,2,3,2,0 -050,01,133,Alabama,Winston County,11,2,1504,772,732,735,689,8,9,3,6,2,6,8,4,16,18,722,698,696,663,7,9,0,4,2,6,1,0,16,16,50,34,39,26,1,0,3,2,0,0,7,4,0,2 -050,01,133,Alabama,Winston County,11,3,1589,818,771,791,748,1,6,6,4,1,3,3,1,16,9,787,738,766,717,1,6,4,3,1,3,0,0,15,9,31,33,25,31,0,0,2,1,0,0,3,1,1,0 -050,01,133,Alabama,Winston County,11,4,1517,772,745,743,723,2,5,12,5,4,2,2,0,9,10,756,732,732,712,2,5,9,3,4,2,0,0,9,10,16,13,11,11,0,0,3,2,0,0,2,0,0,0 -050,01,133,Alabama,Winston County,11,5,1271,646,625,623,604,4,3,5,6,1,3,4,0,9,9,612,607,598,594,4,3,1,3,0,1,0,0,9,6,34,18,25,10,0,0,4,3,1,2,4,0,0,3 -050,01,133,Alabama,Winston County,11,6,1304,645,659,624,642,3,4,8,6,2,0,4,1,4,6,591,634,583,624,3,3,2,2,0,0,0,0,3,5,54,25,41,18,0,1,6,4,2,0,4,1,1,1 -050,01,133,Alabama,Winston County,11,7,1336,680,656,649,636,6,2,15,10,1,6,0,0,9,2,620,633,603,623,5,2,6,4,1,3,0,0,5,1,60,23,46,13,1,0,9,6,0,3,0,0,4,1 -050,01,133,Alabama,Winston County,11,8,1566,805,761,789,742,3,3,3,5,1,1,3,3,6,7,773,740,761,725,2,3,3,5,1,1,0,1,6,5,32,21,28,17,1,0,0,0,0,0,3,2,0,2 -050,01,133,Alabama,Winston County,11,9,1797,899,898,870,872,4,3,11,7,5,6,0,0,9,10,879,889,852,864,4,3,10,7,5,6,0,0,8,9,20,9,18,8,0,0,1,0,0,0,0,0,1,1 -050,01,133,Alabama,Winston County,11,10,1893,963,930,938,902,5,3,10,5,0,3,1,1,9,16,953,917,928,890,5,3,10,5,0,3,1,0,9,16,10,13,10,12,0,0,0,0,0,0,0,1,0,0 -050,01,133,Alabama,Winston County,11,11,1847,943,904,914,886,5,3,9,7,1,1,1,0,13,7,931,899,905,881,5,3,8,7,1,1,0,0,12,7,12,5,9,5,0,0,1,0,0,0,1,0,1,0 -050,01,133,Alabama,Winston County,11,12,1718,837,881,815,865,2,5,6,5,3,1,1,1,10,4,820,873,799,857,2,5,6,5,3,1,0,1,10,4,17,8,16,8,0,0,0,0,0,0,1,0,0,0 -050,01,133,Alabama,Winston County,11,13,1725,851,874,835,854,4,4,5,4,1,3,0,2,6,7,845,868,829,850,4,4,5,4,1,3,0,1,6,6,6,6,6,4,0,0,0,0,0,0,0,1,0,1 -050,01,133,Alabama,Winston County,11,14,1476,690,786,681,771,1,2,2,6,2,4,0,0,4,3,689,786,680,771,1,2,2,6,2,4,0,0,4,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,11,15,1071,526,545,518,536,0,0,2,1,0,1,0,0,6,7,525,542,517,533,0,0,2,1,0,1,0,0,6,7,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,11,16,773,342,431,338,425,1,2,0,1,0,0,0,0,3,3,336,429,332,423,1,2,0,1,0,0,0,0,3,3,6,2,6,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,11,17,522,194,328,192,321,0,3,0,0,0,2,0,0,2,2,193,327,191,320,0,3,0,0,0,2,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,11,18,403,99,304,98,299,0,2,0,0,0,0,0,0,1,3,98,304,97,299,0,2,0,0,0,0,0,0,1,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,11,99,24691,12182,12509,11818,12158,59,61,106,92,25,43,29,17,145,138,11785,12243,11500,11948,55,60,71,67,22,37,2,4,135,127,397,266,318,210,4,1,35,25,3,6,27,13,10,11 -050,01,133,Alabama,Winston County,12,0,221,117,104,109,98,2,0,2,3,0,1,0,1,4,1,110,95,103,92,2,0,1,1,0,0,0,1,4,1,7,9,6,6,0,0,1,2,0,1,0,0,0,0 -050,01,133,Alabama,Winston County,12,1,1108,556,552,529,520,5,2,7,12,1,1,2,3,12,14,523,514,506,492,4,2,2,6,1,0,0,0,10,14,33,38,23,28,1,0,5,6,0,1,2,3,2,0 -050,01,133,Alabama,Winston County,12,2,1464,738,726,701,683,8,8,3,6,2,7,8,4,16,18,688,687,662,653,7,8,0,4,2,6,1,0,16,16,50,39,39,30,1,0,3,2,0,1,7,4,0,2 -050,01,133,Alabama,Winston County,12,3,1557,790,767,761,745,1,5,7,4,1,3,3,1,17,9,762,728,739,708,1,5,5,3,1,3,0,0,16,9,28,39,22,37,0,0,2,1,0,0,3,1,1,0 -050,01,133,Alabama,Winston County,12,4,1524,785,739,753,717,5,5,12,5,4,2,2,0,9,10,766,717,739,697,5,5,9,3,4,2,0,0,9,10,19,22,14,20,0,0,3,2,0,0,2,0,0,0 -050,01,133,Alabama,Winston County,12,5,1246,622,624,598,603,5,3,5,6,1,3,4,0,9,9,588,600,573,587,5,3,1,3,0,1,0,0,9,6,34,24,25,16,0,0,4,3,1,2,4,0,0,3 -050,01,133,Alabama,Winston County,12,6,1242,610,632,588,614,3,4,8,6,2,0,5,1,4,7,573,609,564,599,3,3,2,2,0,0,1,0,3,5,37,23,24,15,0,1,6,4,2,0,4,1,1,2 -050,01,133,Alabama,Winston County,12,7,1294,645,649,613,631,8,2,15,10,1,4,0,0,8,2,593,626,574,616,7,2,6,4,1,3,0,0,5,1,52,23,39,15,1,0,9,6,0,1,0,0,3,1 -050,01,133,Alabama,Winston County,12,8,1522,777,745,761,725,3,4,3,5,1,1,3,3,6,7,753,726,741,710,2,4,3,5,1,1,0,1,6,5,24,19,20,15,1,0,0,0,0,0,3,2,0,2 -050,01,133,Alabama,Winston County,12,9,1714,877,837,848,811,4,3,11,7,5,6,0,0,9,10,854,829,827,804,4,3,10,7,5,6,0,0,8,9,23,8,21,7,0,0,1,0,0,0,0,0,1,1 -050,01,133,Alabama,Winston County,12,10,1919,957,962,933,934,5,3,8,5,0,3,1,1,10,16,945,949,921,922,5,3,8,5,0,3,1,0,10,16,12,13,12,12,0,0,0,0,0,0,0,1,0,0 -050,01,133,Alabama,Winston County,12,11,1841,918,923,889,901,5,3,9,8,1,1,1,0,13,10,907,916,881,894,5,3,8,8,1,1,0,0,12,10,11,7,8,7,0,0,1,0,0,0,1,0,1,0 -050,01,133,Alabama,Winston County,12,12,1709,857,852,834,834,2,5,7,5,3,1,1,1,10,6,847,844,825,826,2,5,7,5,3,1,0,1,10,6,10,8,9,8,0,0,0,0,0,0,1,0,0,0 -050,01,133,Alabama,Winston County,12,13,1790,887,903,870,883,3,4,5,4,1,3,2,2,6,7,882,897,866,879,3,4,5,4,1,3,1,1,6,6,5,6,4,4,0,0,0,0,0,0,1,1,0,1 -050,01,133,Alabama,Winston County,12,14,1505,707,798,698,782,1,2,2,6,2,4,0,0,4,4,706,798,697,782,1,2,2,6,2,4,0,0,4,4,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,12,15,1123,538,585,530,576,0,0,2,1,0,1,0,0,6,7,537,582,529,573,0,0,2,1,0,1,0,0,6,7,1,3,1,3,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,12,16,762,342,420,338,414,1,2,0,1,0,0,0,0,3,3,336,418,332,412,1,2,0,1,0,0,0,0,3,3,6,2,6,2,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,12,17,527,187,340,185,333,0,3,0,0,0,2,0,0,2,2,186,339,184,332,0,3,0,0,0,2,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,12,18,416,111,305,110,300,0,2,0,0,0,0,0,0,1,3,110,305,109,300,0,2,0,0,0,0,0,0,1,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,12,99,24484,12021,12463,11648,12104,61,60,106,94,25,43,32,17,149,145,11666,12179,11372,11878,57,59,71,68,22,37,4,4,140,133,355,284,276,226,4,1,35,26,3,6,28,13,9,12 -050,01,133,Alabama,Winston County,13,0,218,117,101,108,96,2,1,2,3,0,0,1,0,4,1,110,93,103,91,2,0,1,1,0,0,0,0,4,1,7,8,5,5,0,1,1,2,0,0,1,0,0,0 -050,01,133,Alabama,Winston County,13,1,1104,554,550,524,517,5,7,6,8,2,2,2,1,15,15,520,510,501,489,4,4,2,3,2,1,0,0,11,13,34,40,23,28,1,3,4,5,0,1,2,1,4,2 -050,01,133,Alabama,Winston County,13,2,1449,733,716,695,678,8,8,4,4,2,6,6,2,18,18,682,682,656,648,6,8,1,4,2,5,1,0,16,17,51,34,39,30,2,0,3,0,0,1,5,2,2,1 -050,01,133,Alabama,Winston County,13,3,1541,777,764,755,741,3,7,3,3,2,2,1,2,13,9,755,723,734,704,3,6,3,2,2,2,0,1,13,8,22,41,21,37,0,1,0,1,0,0,1,1,0,1 -050,01,133,Alabama,Winston County,13,4,1502,770,732,743,708,6,8,11,6,4,3,0,0,6,7,753,707,731,689,5,6,7,2,4,3,0,0,6,7,17,25,12,19,1,2,4,4,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,13,5,1245,624,621,595,602,10,4,6,6,2,3,2,0,9,6,590,601,570,587,10,4,1,3,0,2,0,0,9,5,34,20,25,15,0,0,5,3,2,1,2,0,0,1 -050,01,133,Alabama,Winston County,13,6,1245,611,634,589,612,4,6,5,5,4,4,3,0,6,7,575,614,564,597,3,5,1,2,2,3,0,0,5,7,36,20,25,15,1,1,4,3,2,1,3,0,1,0 -050,01,133,Alabama,Winston County,13,7,1292,643,649,613,629,11,4,11,9,0,2,1,1,7,4,592,629,575,616,9,3,4,5,0,2,0,0,4,3,51,20,38,13,2,1,7,4,0,0,1,1,3,1 -050,01,133,Alabama,Winston County,13,8,1508,771,737,753,711,5,7,2,8,3,2,2,0,6,9,746,717,732,697,4,5,1,6,3,2,0,0,6,7,25,20,21,14,1,2,1,2,0,0,2,0,0,2 -050,01,133,Alabama,Winston County,13,9,1700,867,833,840,803,4,6,10,9,6,5,1,1,6,9,846,826,821,798,4,6,9,7,6,5,0,1,6,9,21,7,19,5,0,0,1,2,0,0,1,0,0,0 -050,01,133,Alabama,Winston County,13,10,1895,946,949,922,924,7,4,6,6,1,3,0,0,10,12,933,937,910,914,6,2,6,6,1,3,0,0,10,12,13,12,12,10,1,2,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,13,11,1833,912,921,886,901,6,2,7,8,2,0,0,0,11,10,903,912,878,893,6,2,7,7,2,0,0,0,10,10,9,9,8,8,0,0,0,1,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,13,12,1709,854,855,834,835,2,5,6,5,3,2,0,1,9,7,845,846,825,827,2,4,6,5,3,2,0,1,9,7,9,9,9,8,0,1,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,13,13,1798,890,908,872,886,6,8,5,5,1,3,0,1,6,5,886,904,868,883,6,8,5,5,1,3,0,0,6,5,4,4,4,3,0,0,0,0,0,0,0,1,0,0 -050,01,133,Alabama,Winston County,13,14,1512,711,801,700,785,4,4,1,6,2,2,0,0,4,4,710,800,699,784,4,4,1,6,2,2,0,0,4,4,1,1,1,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,13,15,1129,538,591,528,578,3,2,3,3,0,1,0,0,4,7,537,586,527,574,3,1,3,3,0,1,0,0,4,7,1,5,1,4,0,1,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,13,16,762,340,422,334,412,3,5,0,2,0,1,0,0,3,2,335,419,329,409,3,5,0,2,0,1,0,0,3,2,5,3,5,3,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,13,17,536,192,344,188,333,1,8,1,0,1,1,0,0,1,2,189,343,185,332,1,8,1,0,1,1,0,0,1,2,3,1,3,1,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,13,18,417,111,306,110,300,0,3,0,0,0,0,0,0,1,3,110,306,109,300,0,3,0,0,0,0,0,0,1,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,13,99,24395,11961,12434,11589,12051,90,99,89,96,35,42,19,9,139,137,11617,12155,11317,11832,81,84,59,69,31,38,1,3,128,129,344,279,272,219,9,15,30,27,4,4,18,6,11,8 +50,1,1,Alabama,Autauga County,9,3,4220,2122,2098,1645,1595,418,431,10,9,12,15,3,1,34,47,2067,2040,1608,1548,408,428,8,7,12,14,2,0,29,43,55,58,37,47,10,3,2,2,0,1,1,1,5,4 +50,1,1,Alabama,Autauga County,11,1,2876,1510,1366,1160,1039,271,253,5,3,11,21,1,0,62,50,1430,1312,1093,991,266,249,2,2,11,21,0,0,58,49,80,54,67,48,5,4,3,1,0,0,1,0,4,1 +50,1,1,Alabama,Autauga County,13,17,743,303,440,274,370,26,65,1,0,1,4,0,0,1,1,297,437,268,367,26,65,1,0,1,4,0,0,1,1,6,3,6,3,0,0,0,0,0,0,0,0,0,0 +50,1,3,Alabama,Baldwin County,3,0,1894,926,968,788,802,106,133,3,1,3,5,0,1,26,26,892,929,756,767,105,132,3,1,3,5,0,1,25,23,34,39,32,35,1,1,0,0,0,0,0,0,1,3 +50,1,3,Alabama,Baldwin County,5,0,1810,923,887,778,745,107,107,4,5,3,5,1,0,30,25,891,845,750,706,106,107,3,5,3,5,1,0,28,22,32,42,28,39,1,0,1,0,0,0,0,0,2,3 +50,1,3,Alabama,Baldwin County,7,10,12358,5924,6434,5230,5667,573,625,46,49,27,36,1,4,47,53,5785,6315,5104,5554,570,621,41,48,26,36,1,4,43,52,139,119,126,113,3,4,5,1,1,0,0,0,4,1 +50,1,5,Alabama,Barbour County,4,10,2045,1077,968,595,513,472,444,6,4,1,3,0,0,3,4,1065,957,587,505,468,442,6,3,1,3,0,0,3,4,12,11,8,8,4,2,0,1,0,0,0,0,0,0 +50,1,5,Alabama,Barbour County,5,3,2108,1061,1047,459,434,587,600,6,4,4,2,0,0,5,7,1048,1029,449,420,584,597,6,3,4,2,0,0,5,7,13,18,10,14,3,3,0,1,0,0,0,0,0,0 +50,1,5,Alabama,Barbour County,10,13,1676,787,889,520,543,256,334,5,4,1,3,0,0,5,5,780,883,515,539,254,333,5,3,1,3,0,0,5,5,7,6,5,4,2,1,0,1,0,0,0,0,0,0 +50,1,5,Alabama,Barbour County,10,18,437,119,318,73,191,44,124,0,1,2,2,0,0,0,0,118,315,72,191,44,122,0,0,2,2,0,0,0,0,1,3,1,0,0,2,0,1,0,0,0,0,0,0 +50,1,5,Alabama,Barbour County,11,15,950,428,522,305,334,120,185,0,1,1,1,1,0,1,1,425,519,303,333,119,183,0,1,1,1,1,0,1,1,3,3,2,1,1,2,0,0,0,0,0,0,0,0 +50,1,5,Alabama,Barbour County,12,10,2108,1164,944,613,467,536,468,6,3,3,4,1,0,5,2,1132,922,590,448,530,466,5,3,3,4,0,0,4,1,32,22,23,19,6,2,1,0,0,0,1,0,1,1 +50,1,7,Alabama,Bibb County,1,17,251,84,167,66,134,17,33,1,0,0,0,0,0,0,0,84,167,66,134,17,33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,7,Alabama,Bibb County,2,0,331,181,150,149,116,30,32,0,0,0,0,0,0,2,2,176,148,144,116,30,30,0,0,0,0,0,0,2,2,5,2,5,0,0,2,0,0,0,0,0,0,0,0 +50,1,7,Alabama,Bibb County,4,6,1489,814,675,554,531,255,137,2,2,0,2,0,0,3,3,795,670,537,526,253,137,2,2,0,2,0,0,3,3,19,5,17,5,2,0,0,0,0,0,0,0,0,0 +50,1,7,Alabama,Bibb County,4,16,539,192,347,170,279,20,64,0,2,0,0,0,0,2,2,190,345,168,278,20,63,0,2,0,0,0,0,2,2,2,2,2,1,0,1,0,0,0,0,0,0,0,0 +50,1,7,Alabama,Bibb County,9,4,1531,797,734,560,550,221,170,3,3,2,2,6,0,5,9,781,730,551,547,220,170,3,3,2,2,0,0,5,8,16,4,9,3,1,0,0,0,0,0,6,0,0,1 +50,1,7,Alabama,Bibb County,10,3,1489,789,700,606,559,171,138,3,0,2,0,2,0,5,3,772,691,591,552,171,136,3,0,2,0,0,0,5,3,17,9,15,7,0,2,0,0,0,0,2,0,0,0 +50,1,7,Alabama,Bibb County,12,8,1747,1003,744,700,594,295,142,2,5,1,1,1,0,4,2,978,737,676,588,294,141,2,5,1,1,1,0,4,2,25,7,24,6,1,1,0,0,0,0,0,0,0,0 +50,1,7,Alabama,Bibb County,12,13,1334,684,650,568,553,110,94,4,1,0,0,0,0,2,2,675,648,559,551,110,94,4,1,0,0,0,0,2,2,9,2,9,2,0,0,0,0,0,0,0,0,0,0 +50,1,9,Alabama,Blount County,6,16,1362,541,821,530,801,5,9,2,2,0,1,0,0,4,8,534,816,523,796,5,9,2,2,0,1,0,0,4,8,7,5,7,5,0,0,0,0,0,0,0,0,0,0 +50,1,9,Alabama,Blount County,9,7,3477,1763,1714,1706,1654,33,30,10,11,5,6,3,1,6,12,1538,1551,1490,1499,30,25,7,10,5,6,1,0,5,11,225,163,216,155,3,5,3,1,0,0,2,1,1,1 +50,1,9,Alabama,Blount County,10,4,3971,2071,1900,1975,1822,42,28,25,16,2,2,3,4,24,28,1873,1736,1793,1669,39,26,18,12,2,2,1,0,20,27,198,164,182,153,3,2,7,4,0,0,2,4,4,1 +50,1,11,Alabama,Bullock County,2,16,316,117,199,60,68,55,128,0,0,1,0,0,0,1,3,117,198,60,68,55,128,0,0,1,0,0,0,1,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1 +50,1,11,Alabama,Bullock County,7,1,482,259,223,72,61,175,157,2,0,1,0,3,3,6,2,225,195,48,37,170,156,1,0,1,0,1,0,4,2,34,28,24,24,5,1,1,0,0,0,2,3,2,0 +50,1,13,Alabama,Butler County,1,12,1100,528,572,364,404,159,163,2,1,1,2,0,0,2,2,521,570,363,404,154,161,2,1,1,2,0,0,1,2,7,2,1,0,5,2,0,0,0,0,0,0,1,0 +50,1,13,Alabama,Butler County,2,12,1100,529,571,364,403,160,163,2,1,1,2,0,0,2,2,522,569,363,403,155,161,2,1,1,2,0,0,1,2,7,2,1,0,5,2,0,0,0,0,0,0,1,0 +50,1,13,Alabama,Butler County,4,6,1031,492,539,271,250,219,281,1,3,0,4,0,0,1,1,485,536,265,247,218,281,1,3,0,4,0,0,1,1,7,3,6,3,1,0,0,0,0,0,0,0,0,0 +50,1,13,Alabama,Butler County,5,13,1031,479,552,328,366,148,184,1,2,1,0,0,0,1,0,476,549,327,364,147,183,1,2,1,0,0,0,0,0,3,3,1,2,1,1,0,0,0,0,0,0,1,0 +50,1,13,Alabama,Butler County,8,10,1531,720,811,440,460,273,339,4,2,2,4,0,0,1,6,714,803,436,455,271,337,4,2,2,4,0,0,1,5,6,8,4,5,2,2,0,0,0,0,0,0,0,1 +50,1,13,Alabama,Butler County,10,14,950,442,508,289,329,147,172,1,1,2,2,0,0,3,4,439,506,288,327,146,172,1,1,2,2,0,0,2,4,3,2,1,2,1,0,0,0,0,0,0,0,1,0 +50,1,13,Alabama,Butler County,11,0,260,144,116,68,47,72,67,0,1,1,0,2,0,1,1,142,115,67,47,72,66,0,1,1,0,1,0,1,1,2,1,1,0,0,1,0,0,0,0,1,0,0,0 +50,1,13,Alabama,Butler County,11,3,1489,757,732,353,313,381,401,3,4,12,6,0,0,8,8,753,728,351,310,380,401,3,4,12,6,0,0,7,7,4,4,2,3,1,0,0,0,0,0,0,0,1,1 +50,1,13,Alabama,Butler County,12,12,1531,714,817,440,462,267,349,4,4,1,0,0,0,2,2,712,814,439,461,266,347,4,4,1,0,0,0,2,2,2,3,1,1,1,2,0,0,0,0,0,0,0,0 +50,1,15,Alabama,Calhoun County,2,16,3215,1169,2046,1037,1766,122,265,0,1,1,5,0,0,9,9,1162,2039,1030,1760,122,264,0,1,1,5,0,0,9,9,7,7,7,6,0,1,0,0,0,0,0,0,0,0 +50,1,15,Alabama,Calhoun County,5,17,2203,736,1467,654,1258,79,200,0,0,0,3,0,0,3,6,732,1459,651,1250,79,200,0,0,0,3,0,0,2,6,4,8,3,8,0,0,0,0,0,0,0,0,1,0 +50,1,15,Alabama,Calhoun County,11,15,4103,1825,2278,1602,1958,202,293,6,5,4,13,1,0,10,9,1809,2258,1591,1938,197,293,6,5,4,13,1,0,10,9,16,20,11,20,5,0,0,0,0,0,0,0,0,0 +50,1,17,Alabama,Chambers County,3,18,800,209,591,146,438,62,152,1,0,0,0,0,0,0,1,208,586,145,435,62,150,1,0,0,0,0,0,0,1,1,5,1,3,0,2,0,0,0,0,0,0,0,0 +50,1,17,Alabama,Chambers County,10,5,1847,929,918,499,460,409,439,3,4,9,5,4,1,5,9,899,903,484,449,406,438,2,2,2,5,0,0,5,9,30,15,15,11,3,1,1,2,7,0,4,1,0,0 +50,1,17,Alabama,Chambers County,12,2,2045,1081,964,581,481,470,447,1,2,1,7,2,0,26,27,1049,937,557,461,463,441,0,2,1,7,2,0,26,26,32,27,24,20,7,6,1,0,0,0,0,0,0,1 +50,1,19,Alabama,Cherokee County,2,18,394,115,279,107,258,8,20,0,0,0,0,0,0,0,1,115,279,107,258,8,20,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,19,Alabama,Cherokee County,5,7,1579,805,774,757,724,37,39,3,3,0,2,0,0,8,6,795,770,747,720,37,39,3,3,0,2,0,0,8,6,10,4,10,4,0,0,0,0,0,0,0,0,0,0 +50,1,19,Alabama,Cherokee County,8,18,394,115,279,112,269,3,9,0,0,0,0,0,0,0,1,114,278,111,268,3,9,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 +50,1,19,Alabama,Cherokee County,10,6,1334,678,656,612,615,55,30,2,2,5,2,2,1,2,6,667,641,603,601,55,30,2,2,5,2,0,0,2,6,11,15,9,14,0,0,0,0,0,0,2,1,0,0 +50,1,23,Alabama,Choctaw County,5,3,1100,530,570,233,269,293,296,1,0,0,0,0,0,3,5,526,567,232,267,291,295,1,0,0,0,0,0,2,5,4,3,1,2,2,1,0,0,0,0,0,0,1,0 +50,1,23,Alabama,Choctaw County,7,11,1031,470,561,254,312,213,248,2,0,0,0,0,0,1,1,467,558,251,310,213,247,2,0,0,0,0,0,1,1,3,3,3,2,0,1,0,0,0,0,0,0,0,0 +50,1,23,Alabama,Choctaw County,7,13,881,440,441,295,263,145,174,0,1,0,0,0,0,0,3,439,437,295,261,144,173,0,1,0,0,0,0,0,2,1,4,0,2,1,1,0,0,0,0,0,0,0,1 +50,1,23,Alabama,Choctaw County,13,0,131,71,60,34,38,37,22,0,0,0,0,0,0,0,0,71,60,34,38,37,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,25,Alabama,Clarke County,8,0,316,166,150,75,69,84,78,1,1,1,0,0,0,5,2,165,148,75,68,83,78,1,1,1,0,0,0,5,1,1,2,0,1,1,0,0,0,0,0,0,0,0,1 +50,1,25,Alabama,Clarke County,8,5,1446,737,709,383,316,344,384,3,3,3,1,0,0,4,5,728,702,375,312,343,381,3,3,3,1,0,0,4,5,9,7,8,4,1,3,0,0,0,0,0,0,0,0 +50,1,25,Alabama,Clarke County,11,1,1184,629,555,293,290,319,251,3,4,2,5,1,0,11,5,614,550,285,288,312,249,3,4,2,5,1,0,11,4,15,5,8,2,7,2,0,0,0,0,0,0,0,1 +50,1,27,Alabama,Clay County,1,12,800,379,421,336,351,38,63,2,2,0,0,0,0,3,5,377,416,335,347,37,62,2,2,0,0,0,0,3,5,2,5,1,4,1,1,0,0,0,0,0,0,0,0 +50,1,27,Alabama,Clay County,1,15,575,251,324,231,294,20,28,0,1,0,1,0,0,0,0,251,324,231,294,20,28,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,27,Alabama,Clay County,4,1,743,393,350,329,266,56,78,2,1,0,0,0,0,6,5,381,338,317,255,56,77,2,1,0,0,0,0,6,5,12,12,12,11,0,1,0,0,0,0,0,0,0,0 +50,1,27,Alabama,Clay County,7,12,950,472,478,417,395,53,71,1,2,0,2,0,0,1,8,467,473,414,390,51,71,1,2,0,2,0,0,1,8,5,5,3,5,2,0,0,0,0,0,0,0,0,0 +50,1,27,Alabama,Clay County,7,17,316,112,204,100,181,12,23,0,0,0,0,0,0,0,0,111,203,99,180,12,23,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 +50,1,27,Alabama,Clay County,7,18,294,77,217,68,201,8,15,0,0,0,0,0,0,1,1,74,216,65,200,8,15,0,0,0,0,0,0,1,1,3,1,3,1,0,0,0,0,0,0,0,0,0,0 +50,1,27,Alabama,Clay County,9,4,950,484,466,358,350,116,105,1,3,1,0,0,0,8,8,463,452,339,336,114,105,1,3,1,0,0,0,8,8,21,14,19,14,2,0,0,0,0,0,0,0,0,0 +50,1,27,Alabama,Clay County,11,9,950,469,481,395,387,68,84,2,3,0,1,0,0,4,6,450,476,376,382,68,84,2,3,0,1,0,0,4,6,19,5,19,5,0,0,0,0,0,0,0,0,0,0 +50,1,27,Alabama,Clay County,13,0,153,83,70,57,51,18,12,0,1,1,0,0,0,7,6,77,63,51,45,18,11,0,1,1,0,0,0,7,6,6,7,6,6,0,1,0,0,0,0,0,0,0,0 +50,1,29,Alabama,Cleburne County,4,16,331,134,197,133,193,1,4,0,0,0,0,0,0,0,0,133,197,132,193,1,4,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 +50,1,29,Alabama,Cleburne County,4,17,260,90,170,84,165,5,4,0,0,0,0,0,0,1,1,89,169,83,164,5,4,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 +50,1,29,Alabama,Cleburne County,8,18,217,50,167,47,165,3,1,0,0,0,1,0,0,0,0,50,166,47,164,3,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 +50,1,29,Alabama,Cleburne County,11,4,1100,568,532,541,508,24,17,1,0,0,0,0,1,2,6,543,521,516,499,24,17,1,0,0,0,0,0,2,5,25,11,25,9,0,0,0,0,0,0,0,1,0,1 +50,1,31,Alabama,Coffee County,1,0,575,296,279,206,209,75,56,1,1,2,1,1,0,11,12,281,260,194,194,72,52,1,1,2,1,1,0,11,12,15,19,12,15,3,4,0,0,0,0,0,0,0,0 +50,1,31,Alabama,Coffee County,2,8,3215,1632,1583,1295,1237,292,284,12,17,12,24,2,2,19,19,1593,1561,1259,1218,291,284,12,17,11,24,2,1,18,17,39,22,36,19,1,0,0,0,1,0,0,1,1,2 +50,1,31,Alabama,Coffee County,3,8,3144,1570,1574,1241,1220,284,292,9,17,16,25,2,2,18,18,1527,1551,1202,1200,283,292,8,17,15,25,2,1,17,16,43,23,39,20,1,0,1,0,1,0,0,1,1,2 +50,1,31,Alabama,Coffee County,3,18,743,189,554,156,453,32,96,1,1,0,1,0,0,0,3,187,553,154,452,32,96,1,1,0,1,0,0,0,3,2,1,2,1,0,0,0,0,0,0,0,0,0,0 +50,1,31,Alabama,Coffee County,6,3,3215,1656,1559,1177,1119,377,347,26,25,20,15,2,0,54,53,1584,1494,1117,1070,372,336,23,24,18,14,2,0,52,50,72,65,60,49,5,11,3,1,2,1,0,0,2,3 +50,1,33,Alabama,Colbert County,5,12,3368,1626,1742,1352,1472,253,245,6,4,5,4,0,0,10,17,1611,1735,1337,1465,253,245,6,4,5,4,0,0,10,17,15,7,15,7,0,0,0,0,0,0,0,0,0,0 +50,1,35,Alabama,Conecuh County,2,5,800,367,433,187,201,178,227,0,1,0,0,0,0,2,4,366,431,186,200,178,226,0,1,0,0,0,0,2,4,1,2,1,1,0,1,0,0,0,0,0,0,0,0 +50,1,35,Alabama,Conecuh County,4,15,539,259,280,192,186,67,94,0,0,0,0,0,0,0,0,258,279,191,186,67,93,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0 +50,1,35,Alabama,Conecuh County,12,11,1031,510,521,303,251,202,266,3,2,0,1,0,0,2,1,505,519,302,249,199,266,3,2,0,1,0,0,1,1,5,2,1,2,3,0,0,0,0,0,0,0,1,0 +50,1,35,Alabama,Conecuh County,12,18,251,97,154,67,98,29,56,0,0,0,0,0,0,1,0,97,154,67,98,29,56,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,37,Alabama,Coosa County,5,16,358,160,198,120,154,40,44,0,0,0,0,0,0,0,0,160,198,120,154,40,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,37,Alabama,Coosa County,8,0,87,43,44,25,26,17,15,0,1,0,0,0,0,1,2,42,41,25,24,16,15,0,1,0,0,0,0,1,1,1,3,0,2,1,0,0,0,0,0,0,0,0,1 +50,1,37,Alabama,Coosa County,9,0,102,53,49,35,27,17,19,0,1,0,0,0,0,1,2,52,46,35,25,16,19,0,1,0,0,0,0,1,1,1,3,0,2,1,0,0,0,0,0,0,0,0,1 +50,1,37,Alabama,Coosa County,9,18,186,77,109,61,69,16,39,0,0,0,0,0,0,0,1,77,109,61,69,16,39,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,37,Alabama,Coosa County,10,2,626,328,298,227,183,94,106,3,1,0,1,0,0,4,7,318,288,220,177,93,104,1,0,0,1,0,0,4,6,10,10,7,6,1,2,2,1,0,0,0,0,0,1 +50,1,37,Alabama,Coosa County,13,12,950,480,470,329,333,140,134,1,0,1,0,0,0,9,3,478,465,329,330,138,132,1,0,1,0,0,0,9,3,2,5,0,3,2,2,0,0,0,0,0,0,0,0 +50,1,39,Alabama,Covington County,5,99,36860,17742,19118,15379,16357,2077,2467,88,102,46,52,3,1,149,139,17553,18958,15215,16221,2061,2449,84,99,43,52,2,0,148,137,189,160,164,136,16,18,4,3,3,0,1,1,1,2 +50,1,39,Alabama,Covington County,6,8,2379,1163,1216,1026,1042,119,157,5,7,6,5,1,0,6,5,1153,1206,1017,1034,119,155,5,7,5,5,1,0,6,5,10,10,9,8,0,2,0,0,1,0,0,0,0,0 +50,1,39,Alabama,Covington County,11,16,1334,594,740,557,662,29,75,2,0,0,0,0,0,6,3,589,737,554,659,28,75,1,0,0,0,0,0,6,3,5,3,3,3,1,0,1,0,0,0,0,0,0,0 +50,1,41,Alabama,Crenshaw County,2,12,743,388,355,318,276,68,77,1,0,0,2,0,0,1,0,385,350,316,272,67,76,1,0,0,2,0,0,1,0,3,5,2,4,1,1,0,0,0,0,0,0,0,0 +50,1,41,Alabama,Crenshaw County,6,5,743,355,388,261,279,90,105,1,1,2,1,0,0,1,2,349,387,256,278,90,105,1,1,2,1,0,0,0,2,6,1,5,1,0,0,0,0,0,0,0,0,1,0 +50,1,41,Alabama,Crenshaw County,6,15,539,244,295,192,227,51,67,0,0,0,0,0,0,1,1,244,295,192,227,51,67,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,41,Alabama,Crenshaw County,8,17,331,105,226,93,175,12,51,0,0,0,0,0,0,0,0,104,226,92,175,12,51,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 +50,1,41,Alabama,Crenshaw County,11,6,743,357,386,277,285,62,96,2,2,9,2,1,0,6,1,336,378,258,278,62,96,2,1,9,2,0,0,5,1,21,8,19,7,0,0,0,1,0,0,1,0,1,0 +50,1,41,Alabama,Crenshaw County,11,15,539,221,318,179,227,39,91,1,0,0,0,0,0,2,0,219,316,177,225,39,91,1,0,0,0,0,0,2,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0 +50,1,41,Alabama,Crenshaw County,13,17,294,88,206,74,170,14,34,0,1,0,0,0,0,0,1,87,205,73,169,14,34,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0 +50,1,43,Alabama,Cullman County,4,11,5239,2593,2646,2535,2565,21,27,13,23,3,11,0,2,21,18,2567,2635,2509,2554,21,27,13,23,3,11,0,2,21,18,26,11,26,11,0,0,0,0,0,0,0,0,0,0 +50,1,43,Alabama,Cullman County,8,14,3788,1735,2053,1706,2007,9,16,6,8,3,4,0,0,11,18,1727,2043,1698,1997,9,16,6,8,3,4,0,0,11,18,8,10,8,10,0,0,0,0,0,0,0,0,0,0 +50,1,45,Alabama,Dale County,1,8,3788,1914,1874,1530,1400,329,409,14,13,9,34,6,1,26,17,1835,1813,1463,1350,323,403,13,10,7,32,5,1,24,17,79,61,67,50,6,6,1,3,2,2,1,0,2,0 +50,1,45,Alabama,Dale County,10,16,1334,584,750,530,596,45,124,4,1,1,22,0,0,4,7,578,739,524,585,45,124,4,1,1,22,0,0,4,7,6,11,6,11,0,0,0,0,0,0,0,0,0,0 +50,1,45,Alabama,Dale County,11,15,1709,719,990,637,829,73,118,2,4,3,25,1,2,3,12,710,979,629,820,73,117,2,4,3,25,0,1,3,12,9,11,8,9,0,1,0,0,0,0,1,1,0,0 +50,1,49,Alabama,DeKalb County,2,13,2958,1330,1628,1280,1572,17,28,7,6,3,2,0,0,23,20,1323,1611,1273,1555,17,28,7,6,3,2,0,0,23,20,7,17,7,17,0,0,0,0,0,0,0,0,0,0 +50,1,49,Alabama,DeKalb County,3,12,3561,1703,1858,1651,1777,24,26,12,13,4,8,2,3,10,31,1681,1833,1631,1754,24,26,12,13,4,7,0,2,10,31,22,25,20,23,0,0,0,0,0,1,2,1,0,0 +50,1,49,Alabama,DeKalb County,6,0,1031,508,523,477,501,8,7,3,4,1,2,5,4,14,5,372,399,354,386,5,6,2,1,0,1,0,0,11,5,136,124,123,115,3,1,1,3,1,1,5,4,3,0 +50,1,49,Alabama,DeKalb County,9,6,4669,2323,2346,2139,2172,40,37,60,56,7,11,30,25,47,45,1802,1972,1708,1874,33,30,23,24,2,6,1,1,35,37,521,374,431,298,7,7,37,32,5,5,29,24,12,8 +50,1,51,Alabama,Elmore County,4,16,1446,606,840,549,730,56,101,1,1,0,1,0,0,0,7,603,835,547,726,55,100,1,1,0,1,0,0,0,7,3,5,2,4,1,1,0,0,0,0,0,0,0,0 +50,1,51,Alabama,Elmore County,6,3,5239,2609,2630,1915,1950,627,620,13,12,16,11,2,1,36,36,2545,2576,1860,1907,622,612,11,10,16,11,1,1,35,35,64,54,55,43,5,8,2,2,0,0,1,0,1,1 +50,1,51,Alabama,Elmore County,10,16,1579,737,842,655,718,75,115,2,0,0,4,1,1,4,4,733,833,652,715,75,110,2,0,0,3,0,1,4,4,4,9,3,3,0,5,0,0,0,1,1,0,0,0 +50,1,53,Alabama,Escambia County,12,2,2379,1161,1218,735,685,356,441,34,53,2,8,1,0,33,31,1127,1187,709,660,351,437,33,52,2,8,1,0,31,30,34,31,26,25,5,4,1,1,0,0,0,0,2,1 +50,1,55,Alabama,Etowah County,1,9,7724,3743,3981,3180,3265,503,639,16,20,16,20,2,2,26,35,3690,3939,3132,3230,500,634,15,19,16,19,1,2,26,35,53,42,48,35,3,5,1,1,0,1,1,0,0,0 +50,1,57,Alabama,Fayette County,2,99,18512,8926,9586,7861,8300,1002,1204,21,18,6,23,0,2,36,39,8849,9511,7789,8236,1000,1198,19,16,6,23,0,0,35,38,77,75,72,64,2,6,2,2,0,0,0,2,1,1 +50,1,57,Alabama,Fayette County,5,6,950,475,475,426,416,47,55,0,1,0,2,0,0,2,1,461,469,412,410,47,55,0,1,0,2,0,0,2,1,14,6,14,6,0,0,0,0,0,0,0,0,0,0 +50,1,57,Alabama,Fayette County,11,10,1268,642,626,559,554,76,67,0,3,2,1,0,0,5,1,635,621,552,550,76,67,0,2,2,1,0,0,5,1,7,5,7,4,0,0,0,1,0,0,0,0,0,0 +50,1,57,Alabama,Fayette County,12,9,1100,547,553,493,470,50,75,2,3,0,2,0,0,2,3,539,547,486,465,50,75,1,2,0,2,0,0,2,3,8,6,7,5,0,0,1,1,0,0,0,0,0,0 +50,1,59,Alabama,Franklin County,3,16,950,388,562,372,537,14,18,0,0,0,0,1,0,1,7,381,559,366,535,14,18,0,0,0,0,0,0,1,6,7,3,6,2,0,0,0,0,0,0,1,0,0,1 +50,1,59,Alabama,Franklin County,4,7,2045,1029,1016,970,968,39,33,9,10,2,0,1,2,8,3,867,918,821,879,37,30,2,6,1,0,0,0,6,3,162,98,149,89,2,3,7,4,1,0,1,2,2,0 +50,1,59,Alabama,Franklin County,6,17,668,255,413,246,395,8,16,0,0,0,0,0,0,1,2,254,411,245,393,8,16,0,0,0,0,0,0,1,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0 +50,1,59,Alabama,Franklin County,8,12,1957,954,1003,908,939,32,40,5,4,0,5,2,0,7,15,918,983,874,922,32,39,4,4,0,5,2,0,6,13,36,20,34,17,0,1,1,0,0,0,0,0,1,2 +50,1,59,Alabama,Franklin County,9,12,1894,915,979,876,920,26,38,5,5,0,4,1,0,7,12,883,952,845,897,26,37,4,4,0,4,1,0,7,10,32,27,31,23,0,1,1,1,0,0,0,0,0,2 +50,1,59,Alabama,Franklin County,10,16,881,381,500,360,472,16,22,0,2,0,0,0,0,5,4,372,498,351,470,16,22,0,2,0,0,0,0,5,4,9,2,9,2,0,0,0,0,0,0,0,0,0,0 +50,1,61,Alabama,Geneva County,2,10,1810,889,921,804,822,75,85,2,7,0,2,0,0,8,5,886,915,801,817,75,84,2,7,0,2,0,0,8,5,3,6,3,5,0,1,0,0,0,0,0,0,0,0 +50,1,61,Alabama,Geneva County,10,5,1489,681,808,600,715,62,76,6,3,3,2,1,0,9,12,629,775,553,687,62,74,3,2,2,1,1,0,8,11,52,33,47,28,0,2,3,1,1,1,0,0,1,1 +50,1,61,Alabama,Geneva County,12,3,1676,882,794,759,681,92,83,9,7,1,1,2,1,19,21,825,743,708,636,91,82,7,3,1,1,0,0,18,21,57,51,51,45,1,1,2,4,0,0,2,1,1,0 +50,1,61,Alabama,Geneva County,12,13,1847,903,944,813,842,68,81,13,7,1,4,0,0,8,10,892,931,802,829,68,81,13,7,1,4,0,0,8,10,11,13,11,13,0,0,0,0,0,0,0,0,0,0 +50,1,61,Alabama,Geneva County,13,17,626,235,391,220,367,14,21,1,1,0,0,0,0,0,2,231,391,217,367,14,21,0,1,0,0,0,0,0,2,4,0,3,0,0,0,1,0,0,0,0,0,0,0 +50,1,63,Alabama,Greene County,1,5,539,249,290,33,35,216,255,0,0,0,0,0,0,0,0,248,290,33,35,215,255,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 +50,1,63,Alabama,Greene County,2,18,251,68,183,12,35,56,148,0,0,0,0,0,0,0,0,67,182,12,35,55,147,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0 +50,1,63,Alabama,Greene County,3,9,743,332,411,82,77,248,334,1,0,0,0,0,0,1,0,329,409,82,77,245,332,1,0,0,0,0,0,1,0,3,2,0,0,3,2,0,0,0,0,0,0,0,0 +50,1,63,Alabama,Greene County,7,0,99,52,47,9,6,41,41,0,0,0,0,0,0,2,0,52,47,9,6,41,41,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,63,Alabama,Greene County,7,1,539,282,257,47,31,233,224,0,0,1,0,0,0,1,2,280,255,45,30,233,223,0,0,1,0,0,0,1,2,2,2,2,1,0,1,0,0,0,0,0,0,0,0 +50,1,63,Alabama,Greene County,7,15,358,176,182,63,47,113,135,0,0,0,0,0,0,0,0,176,181,63,47,113,134,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 +50,1,63,Alabama,Greene County,8,4,743,409,334,38,41,370,292,0,0,0,0,0,0,1,1,405,331,36,39,368,291,0,0,0,0,0,0,1,1,4,3,2,2,2,1,0,0,0,0,0,0,0,0 +50,1,65,Alabama,Hale County,1,8,1446,773,673,353,255,411,414,2,0,3,0,1,0,3,4,766,664,347,250,410,411,2,0,3,0,1,0,3,3,7,9,6,5,1,3,0,0,0,0,0,0,0,1 +50,1,65,Alabama,Hale County,1,9,1395,715,680,331,229,381,442,1,3,2,1,0,0,0,5,710,676,328,228,379,439,1,3,2,1,0,0,0,5,5,4,3,1,2,3,0,0,0,0,0,0,0,0 +50,1,65,Alabama,Hale County,1,17,331,125,206,72,108,52,96,0,0,0,0,0,0,1,2,124,204,72,108,51,94,0,0,0,0,0,0,1,2,1,2,0,0,1,2,0,0,0,0,0,0,0,0 +50,1,65,Alabama,Hale County,3,18,325,80,245,33,122,47,122,0,0,0,0,0,0,0,1,80,241,33,120,47,120,0,0,0,0,0,0,0,1,0,4,0,2,0,2,0,0,0,0,0,0,0,0 +50,1,65,Alabama,Hale County,5,6,1031,544,487,207,170,334,310,1,1,1,3,0,0,1,3,535,483,200,169,332,307,1,1,1,3,0,0,1,3,9,4,7,1,2,3,0,0,0,0,0,0,0,0 +50,1,65,Alabama,Hale County,8,2,1184,575,609,155,180,417,423,1,1,0,0,0,0,2,5,567,599,151,174,413,420,1,1,0,0,0,0,2,4,8,10,4,6,4,3,0,0,0,0,0,0,0,1 +50,1,65,Alabama,Hale County,8,3,1334,691,643,203,184,484,451,2,1,1,3,0,0,1,4,685,636,199,182,482,448,2,1,1,3,0,0,1,2,6,7,4,2,2,3,0,0,0,0,0,0,0,2 +50,1,65,Alabama,Hale County,8,14,668,310,358,160,184,146,173,0,0,0,0,0,0,4,1,310,353,160,180,146,172,0,0,0,0,0,0,4,1,0,5,0,4,0,1,0,0,0,0,0,0,0,0 +50,1,65,Alabama,Hale County,8,99,16427,7917,8510,3296,3276,4564,5157,12,14,11,23,0,0,34,40,7851,8436,3249,3234,4549,5130,11,13,11,23,0,0,31,36,66,74,47,42,15,27,1,1,0,0,0,0,3,4 +50,1,65,Alabama,Hale County,10,4,1334,680,654,209,190,464,458,3,4,1,0,0,0,3,2,672,649,204,188,463,456,3,3,1,0,0,0,1,2,8,5,5,2,1,2,0,1,0,0,0,0,2,0 +50,1,65,Alabama,Hale County,12,16,437,184,253,114,132,70,121,0,0,0,0,0,0,0,0,184,253,114,132,70,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,67,Alabama,Henry County,1,6,950,463,487,315,299,142,185,1,0,0,0,1,0,4,3,445,475,298,290,142,183,1,0,0,0,0,0,4,2,18,12,17,9,0,2,0,0,0,0,1,0,0,1 +50,1,67,Alabama,Henry County,5,8,1031,510,521,365,328,140,190,3,1,0,1,0,0,2,1,495,513,351,321,139,189,3,1,0,1,0,0,2,1,15,8,14,7,1,1,0,0,0,0,0,0,0,0 +50,1,67,Alabama,Henry County,6,5,950,474,476,288,280,184,193,1,1,0,0,0,1,1,1,456,462,270,269,184,191,1,1,0,0,0,0,1,1,18,14,18,11,0,2,0,0,0,0,0,1,0,0 +50,1,67,Alabama,Henry County,7,0,186,99,87,76,54,21,31,0,0,0,0,0,0,2,2,97,84,74,51,21,31,0,0,0,0,0,0,2,2,2,3,2,3,0,0,0,0,0,0,0,0,0,0 +50,1,67,Alabama,Henry County,11,1,743,379,364,260,234,100,113,1,2,3,2,0,0,15,13,357,347,242,222,98,108,1,2,2,2,0,0,14,13,22,17,18,12,2,5,0,0,1,0,0,0,1,0 +50,1,67,Alabama,Henry County,12,9,1031,503,528,365,362,124,158,5,1,5,1,0,0,4,6,488,520,352,355,123,158,5,1,4,1,0,0,4,5,15,8,13,7,1,0,0,0,1,0,0,0,0,1 +50,1,69,Alabama,Houston County,3,14,3477,1617,1860,1347,1506,260,329,4,6,2,10,0,0,4,9,1606,1841,1339,1489,257,327,4,6,2,10,0,0,4,9,11,19,8,17,3,2,0,0,0,0,0,0,0,0 +50,1,69,Alabama,Houston County,12,3,6936,3528,3408,2298,2187,1088,1091,15,18,31,16,0,3,96,93,3404,3301,2209,2101,1072,1083,8,15,30,14,0,3,85,85,124,107,89,86,16,8,7,3,1,2,0,0,11,8 +50,1,69,Alabama,Houston County,12,12,6648,3089,3559,2382,2692,651,773,17,18,15,40,0,0,24,36,3032,3524,2334,2665,644,769,15,17,15,40,0,0,24,33,57,35,48,27,7,4,2,1,0,0,0,0,0,3 +50,1,71,Alabama,Jackson County,4,11,3788,1848,1940,1702,1786,73,83,31,23,5,11,0,0,37,37,1835,1928,1690,1777,72,82,31,22,5,11,0,0,37,36,13,12,12,9,1,1,0,1,0,0,0,0,0,1 +50,1,71,Alabama,Jackson County,5,6,3215,1635,1580,1511,1472,63,43,29,24,5,6,2,1,25,34,1566,1548,1446,1443,62,43,29,23,4,4,1,1,24,34,69,32,65,29,1,0,0,1,1,2,1,0,1,0 +50,1,71,Alabama,Jackson County,10,16,1531,649,882,621,840,17,30,1,2,0,1,0,0,10,9,648,876,620,834,17,30,1,2,0,1,0,0,10,9,1,6,1,6,0,0,0,0,0,0,0,0,0,0 +50,1,71,Alabama,Jackson County,13,16,1579,665,914,640,872,15,30,0,2,3,1,0,0,7,9,662,908,639,868,13,28,0,2,3,1,0,0,7,9,3,6,1,4,2,2,0,0,0,0,0,0,0,0 +50,1,73,Alabama,Jefferson County,8,10,50337,23563,26774,14013,14629,9045,11628,73,88,277,275,4,7,151,147,23134,26412,13657,14321,8994,11590,64,84,273,274,4,4,142,139,429,362,356,308,51,38,9,4,4,1,0,3,9,8 +50,1,73,Alabama,Jefferson County,12,12,44702,20837,23865,12427,13198,8060,10250,73,60,155,219,4,2,118,136,20554,23667,12211,13045,8023,10217,53,54,151,219,3,2,113,130,283,198,216,153,37,33,20,6,4,0,1,0,5,6 +50,1,75,Alabama,Lamar County,5,18,294,85,209,79,184,6,25,0,0,0,0,0,0,0,0,84,208,78,183,6,25,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 +50,1,75,Alabama,Lamar County,8,17,331,105,226,89,206,15,19,0,0,0,0,0,0,1,1,105,224,89,204,15,19,0,0,0,0,0,0,1,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0 +50,1,79,Alabama,Lawrence County,2,2,2543,1320,1223,975,888,200,189,104,103,0,0,0,0,41,43,1301,1205,957,874,199,187,104,101,0,0,0,0,41,43,19,18,18,14,1,2,0,2,0,0,0,0,0,0 +50,1,79,Alabama,Lawrence County,3,1,1709,887,822,693,646,107,95,51,41,0,2,0,0,36,38,863,801,675,630,106,91,47,40,0,2,0,0,35,38,24,21,18,16,1,4,4,1,0,0,0,0,1,0 +50,1,79,Alabama,Lawrence County,4,15,1184,557,627,504,526,40,83,5,12,0,0,0,0,8,6,557,625,504,524,40,83,5,12,0,0,0,0,8,6,0,2,0,2,0,0,0,0,0,0,0,0,0,0 +50,1,79,Alabama,Lawrence County,8,0,437,220,217,176,181,24,23,4,1,1,1,0,0,15,11,211,206,168,170,24,23,4,1,1,1,0,0,14,11,9,11,8,11,0,0,0,0,0,0,0,0,1,0 +50,1,81,Alabama,Lee County,3,16,1847,693,1154,568,847,115,292,5,2,3,5,0,0,2,8,690,1146,566,841,115,291,4,1,3,5,0,0,2,8,3,8,2,6,0,1,1,1,0,0,0,0,0,0 +50,1,83,Alabama,Limestone County,6,10,5461,2860,2601,2352,2185,443,341,23,25,15,21,2,0,25,29,2816,2569,2311,2159,443,339,21,24,15,21,2,0,24,26,44,32,41,26,0,2,2,1,0,0,0,0,1,3 +50,1,83,Alabama,Limestone County,7,0,950,456,494,391,411,32,64,1,1,5,2,3,1,24,15,406,432,347,351,31,63,1,1,5,2,0,0,22,15,50,62,44,60,1,1,0,0,0,0,3,1,2,0 +50,1,83,Alabama,Limestone County,8,0,950,483,467,420,395,35,50,1,1,6,2,4,1,17,18,429,409,373,340,34,48,1,1,6,2,0,0,15,18,54,58,47,55,1,2,0,0,0,0,4,1,2,0 +50,1,83,Alabama,Limestone County,9,15,2379,1125,1254,1021,1128,88,112,5,3,4,2,0,0,7,9,1115,1246,1012,1120,88,112,5,3,4,2,0,0,6,9,10,8,9,8,0,0,0,0,0,0,0,0,1,0 +50,1,85,Alabama,Lowndes County,4,12,626,296,330,122,114,171,213,2,2,0,0,0,0,1,1,295,329,122,114,171,212,2,2,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,1,0 +50,1,85,Alabama,Lowndes County,6,17,186,93,93,45,33,48,59,0,0,0,1,0,0,0,0,93,93,45,33,48,59,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,85,Alabama,Lowndes County,8,17,186,81,105,36,35,45,69,0,0,0,1,0,0,0,0,81,105,36,35,45,69,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,85,Alabama,Lowndes County,9,16,294,119,175,70,57,49,118,0,0,0,0,0,0,0,0,119,174,70,56,49,118,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 +50,1,85,Alabama,Lowndes County,10,16,316,106,210,59,55,47,155,0,0,0,0,0,0,0,0,106,209,59,54,47,155,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0 +50,1,85,Alabama,Lowndes County,12,6,575,270,305,37,48,227,254,2,1,3,1,0,0,1,1,267,303,37,48,227,253,2,1,1,0,0,0,0,1,3,2,0,0,0,1,0,0,2,1,0,0,1,0 +50,1,85,Alabama,Lowndes County,12,17,186,68,118,32,34,36,81,0,0,0,3,0,0,0,0,68,118,32,34,36,81,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,87,Alabama,Macon County,1,2,1709,886,823,105,71,776,749,0,0,0,0,0,0,5,3,878,814,103,70,770,741,0,0,0,0,0,0,5,3,8,9,2,1,6,8,0,0,0,0,0,0,0,0 +50,1,87,Alabama,Macon County,5,17,539,226,313,40,58,185,254,0,1,0,0,0,0,1,0,224,311,38,58,185,252,0,1,0,0,0,0,1,0,2,2,2,0,0,2,0,0,0,0,0,0,0,0 +50,1,87,Alabama,Macon County,7,12,1395,653,742,123,144,519,592,1,1,2,1,0,0,8,4,647,739,122,143,515,590,1,1,2,1,0,0,7,4,6,3,1,1,4,2,0,0,0,0,0,0,1,0 +50,1,87,Alabama,Macon County,10,0,229,109,120,19,24,87,92,0,0,0,0,0,0,3,4,107,119,19,24,85,91,0,0,0,0,0,0,3,4,2,1,0,0,2,1,0,0,0,0,0,0,0,0 +50,1,91,Alabama,Marengo County,2,8,1579,724,855,397,415,322,430,2,2,1,5,0,1,2,2,715,845,390,412,321,424,2,2,0,5,0,0,2,2,9,10,7,3,1,6,0,0,1,0,0,1,0,0 +50,1,91,Alabama,Marengo County,3,8,1531,705,826,382,374,318,442,2,2,1,5,0,1,2,2,694,816,373,371,317,436,2,2,0,5,0,0,2,2,11,10,9,3,1,6,0,0,1,0,0,1,0,0 +50,1,91,Alabama,Marengo County,4,1,1184,600,584,266,243,327,333,0,0,3,1,0,0,4,7,584,569,253,230,325,331,0,0,2,1,0,0,4,7,16,15,13,13,2,2,0,0,1,0,0,0,0,0 +50,1,91,Alabama,Marengo County,5,1,1184,624,560,272,253,344,297,0,0,3,2,1,0,4,8,610,547,262,242,342,295,0,0,2,2,0,0,4,8,14,13,10,11,2,2,0,0,1,0,1,0,0,0 +50,1,91,Alabama,Marengo County,5,15,800,344,456,215,286,126,167,2,0,0,1,0,0,1,2,340,451,214,284,123,165,2,0,0,0,0,0,1,2,4,5,1,2,3,2,0,0,0,1,0,0,0,0 +50,1,91,Alabama,Marengo County,8,8,1268,508,760,252,296,252,453,1,1,2,5,1,2,0,3,496,746,242,289,251,449,1,1,2,5,0,0,0,2,12,14,10,7,1,4,0,0,0,0,1,2,0,1 +50,1,91,Alabama,Marengo County,8,9,1531,729,802,393,374,326,423,2,1,1,2,1,0,6,2,717,794,384,370,324,419,2,1,1,2,0,0,6,2,12,8,9,4,2,4,0,0,0,0,1,0,0,0 +50,1,91,Alabama,Marengo County,8,14,950,446,504,257,311,186,191,1,0,1,1,0,0,1,1,442,502,254,311,185,189,1,0,1,1,0,0,1,1,4,2,3,0,1,2,0,0,0,0,0,0,0,0 +50,1,91,Alabama,Marengo County,13,2,1362,707,655,321,270,366,371,4,4,2,4,1,1,13,5,693,639,311,258,365,369,2,3,2,4,0,0,13,5,14,16,10,12,1,2,2,1,0,0,1,1,0,0 +50,1,93,Alabama,Marion County,3,0,331,178,153,167,143,6,5,1,0,0,1,0,1,4,3,176,148,165,139,6,4,1,0,0,1,0,1,4,3,2,5,2,4,0,1,0,0,0,0,0,0,0,0 +50,1,93,Alabama,Marion County,5,14,1531,705,826,678,800,20,19,2,3,0,0,0,0,5,4,702,822,675,797,20,19,2,2,0,0,0,0,5,4,3,4,3,3,0,0,0,1,0,0,0,0,0,0 +50,1,93,Alabama,Marion County,11,0,325,180,145,168,135,5,4,0,0,1,0,1,0,5,6,169,137,159,129,5,4,0,0,0,0,0,0,5,4,11,8,9,6,0,0,0,0,1,0,1,0,0,2 +50,1,93,Alabama,Marion County,11,2,1779,957,822,909,761,33,38,0,2,0,2,0,1,15,18,917,780,872,726,33,36,0,2,0,2,0,1,12,13,40,42,37,35,0,2,0,0,0,0,0,0,3,5 +50,1,95,Alabama,Marshall County,1,18,1268,350,918,343,910,7,6,0,0,0,0,0,0,0,2,347,918,340,910,7,6,0,0,0,0,0,0,0,2,3,0,3,0,0,0,0,0,0,0,0,0,0,0 +50,1,95,Alabama,Marshall County,3,11,5562,2649,2913,2582,2825,30,39,9,17,5,12,2,0,21,20,2609,2866,2544,2780,30,39,9,17,5,12,0,0,21,18,40,47,38,45,0,0,0,0,0,0,2,0,0,2 +50,1,97,Alabama,Mobile County,10,11,29647,14272,15375,9334,9398,4498,5467,128,146,202,226,4,6,106,132,14054,15177,9159,9250,4469,5432,123,144,202,221,3,5,98,125,218,198,175,148,29,35,5,2,0,5,1,1,8,7 +50,1,97,Alabama,Mobile County,10,13,21362,10154,11208,7355,7744,2519,3139,93,92,120,137,5,7,62,89,10029,11096,7255,7661,2501,3118,91,90,116,135,5,6,61,86,125,112,100,83,18,21,2,2,4,2,0,1,1,3 +50,1,97,Alabama,Mobile County,13,7,26148,12683,13465,7901,7622,4176,5278,140,124,320,292,15,6,131,143,12102,13117,7433,7349,4124,5237,113,110,314,289,9,5,109,127,581,348,468,273,52,41,27,14,6,3,6,1,22,16 +50,1,99,Alabama,Monroe County,4,9,1747,827,920,499,506,314,399,8,6,1,5,0,0,5,4,824,915,496,504,314,396,8,6,1,5,0,0,5,4,3,5,3,2,0,3,0,0,0,0,0,0,0,0 +50,1,99,Alabama,Monroe County,6,99,23769,11403,12366,6560,6936,4583,5138,133,131,35,37,1,4,91,120,11312,12266,6496,6875,4563,5106,130,128,33,37,1,2,89,118,91,100,64,61,20,32,3,3,2,0,0,2,2,2 +50,1,99,Alabama,Monroe County,9,11,1810,868,942,540,534,308,385,10,8,2,6,0,0,8,9,861,937,535,532,307,382,10,8,2,6,0,0,7,9,7,5,5,2,1,3,0,0,0,0,0,0,1,0 +50,1,99,Alabama,Monroe County,9,14,1031,496,535,322,363,163,157,5,9,2,0,0,0,4,6,495,530,321,359,163,156,5,9,2,0,0,0,4,6,1,5,1,4,0,1,0,0,0,0,0,0,0,0 +50,1,101,Alabama,Montgomery County,9,11,15547,7141,8406,3668,3870,3330,4297,22,26,83,151,2,2,36,60,7031,8319,3585,3804,3309,4285,20,25,83,149,1,1,33,55,110,87,83,66,21,12,2,1,0,2,1,1,3,5 +50,1,103,Alabama,Morgan County,7,10,8895,4519,4376,3970,3739,428,502,47,49,28,37,0,0,46,49,4416,4296,3878,3666,421,498,45,47,27,36,0,0,45,49,103,80,92,73,7,4,2,2,1,1,0,0,1,0 +50,1,103,Alabama,Morgan County,8,3,8224,4146,4078,3344,3266,641,641,50,47,16,26,3,8,92,90,3864,3806,3095,3030,633,625,35,39,12,25,1,3,88,84,282,272,249,236,8,16,15,8,4,1,2,5,4,6 +50,1,103,Alabama,Morgan County,8,16,3070,1277,1793,1189,1654,66,113,9,6,1,5,0,0,12,15,1263,1784,1178,1646,65,113,7,6,1,4,0,0,12,15,14,9,11,8,1,0,2,0,0,1,0,0,0,0 +50,1,105,Alabama,Perry County,1,15,437,180,257,88,99,92,158,0,0,0,0,0,0,0,0,178,256,87,99,91,157,0,0,0,0,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 +50,1,105,Alabama,Perry County,2,15,437,180,257,88,99,92,158,0,0,0,0,0,0,0,0,178,256,87,99,91,157,0,0,0,0,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0 +50,1,105,Alabama,Perry County,4,8,668,283,385,96,80,182,303,0,0,0,0,1,0,4,2,280,382,94,79,181,302,0,0,0,0,1,0,4,1,3,3,2,1,1,1,0,0,0,0,0,0,0,1 +50,1,105,Alabama,Perry County,4,13,575,265,310,101,133,163,176,0,0,0,0,0,0,1,1,265,306,101,131,163,174,0,0,0,0,0,0,1,1,0,4,0,2,0,2,0,0,0,0,0,0,0,0 +50,1,105,Alabama,Perry County,4,16,316,120,196,58,91,60,105,1,0,0,0,0,0,1,0,118,196,58,91,58,105,1,0,0,0,0,0,1,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0 +50,1,105,Alabama,Perry County,5,8,626,284,342,99,72,181,268,0,0,0,0,1,0,3,2,281,339,97,71,180,267,0,0,0,0,1,0,3,1,3,3,2,1,1,1,0,0,0,0,0,0,0,1 +50,1,105,Alabama,Perry County,6,0,186,101,85,14,8,85,76,0,0,1,0,0,0,1,1,100,85,14,8,84,76,0,0,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0 +50,1,105,Alabama,Perry County,6,14,539,245,294,121,123,121,170,1,1,1,0,0,0,1,0,243,292,121,123,119,168,1,1,1,0,0,0,1,0,2,2,0,0,2,2,0,0,0,0,0,0,0,0 +50,1,105,Alabama,Perry County,9,1,626,312,314,49,37,261,270,0,0,0,1,1,2,1,4,309,307,47,34,260,267,0,0,0,1,1,2,1,3,3,7,2,3,1,3,0,0,0,0,0,0,0,1 +50,1,105,Alabama,Perry County,9,17,217,97,120,39,58,58,62,0,0,0,0,0,0,0,0,96,120,38,58,58,62,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0 +50,1,105,Alabama,Perry County,9,18,229,57,172,32,75,25,96,0,0,0,0,0,0,0,1,57,172,32,75,25,96,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,105,Alabama,Perry County,11,0,137,77,60,16,9,58,51,0,0,2,0,0,0,1,0,76,59,15,8,58,51,0,0,2,0,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0 +50,1,105,Alabama,Perry County,11,3,743,378,365,68,64,309,298,0,0,0,1,0,0,1,2,375,363,66,62,308,298,0,0,0,1,0,0,1,2,3,2,2,2,1,0,0,0,0,0,0,0,0,0 +50,1,107,Alabama,Pickens County,9,5,1184,575,609,278,282,273,320,1,2,2,0,11,2,10,3,549,601,266,277,272,319,1,2,1,0,0,0,9,3,26,8,12,5,1,1,0,0,1,0,11,2,1,0 +50,1,107,Alabama,Pickens County,12,0,260,122,138,59,67,56,63,1,0,1,0,1,3,4,5,118,134,57,66,55,63,1,0,1,0,0,0,4,5,4,4,2,1,1,0,0,0,0,0,1,3,0,0 +50,1,109,Alabama,Pike County,4,7,1894,897,997,570,540,295,437,7,7,14,5,0,0,11,8,878,978,553,525,293,434,7,6,14,5,0,0,11,8,19,19,17,15,2,3,0,1,0,0,0,0,0,0 +50,1,111,Alabama,Randolph County,2,0,325,166,159,111,114,51,43,1,0,1,0,0,0,2,2,159,153,105,109,50,42,1,0,1,0,0,0,2,2,7,6,6,5,1,1,0,0,0,0,0,0,0,0 +50,1,111,Alabama,Randolph County,5,5,1362,658,704,454,467,196,231,2,1,2,1,0,0,4,4,635,689,431,453,196,231,2,0,2,1,0,0,4,4,23,15,23,14,0,0,0,1,0,0,0,0,0,0 +50,1,111,Alabama,Randolph County,6,5,1362,683,679,476,455,198,217,2,1,2,1,0,0,5,5,658,662,451,439,198,217,2,0,2,1,0,0,5,5,25,17,25,16,0,0,0,1,0,0,0,0,0,0 +50,1,111,Alabama,Randolph County,8,13,1268,616,652,526,547,76,94,4,3,2,2,1,0,7,6,611,648,522,543,76,94,4,3,1,2,1,0,7,6,5,4,4,4,0,0,0,0,1,0,0,0,0,0 +50,1,111,Alabama,Randolph County,9,1,1100,553,547,422,370,114,152,2,1,1,3,1,0,13,21,537,524,408,349,113,152,2,1,1,3,0,0,13,19,16,23,14,21,1,0,0,0,0,0,1,0,0,2 +50,1,113,Alabama,Russell County,11,12,3215,1498,1717,916,1012,562,665,7,10,3,15,2,2,8,13,1470,1691,897,990,553,661,7,10,3,15,2,2,8,13,28,26,19,22,9,4,0,0,0,0,0,0,0,0 +50,1,115,Alabama,St. Clair County,6,16,1640,675,965,650,916,21,38,1,3,0,2,0,0,3,6,673,959,648,911,21,38,1,2,0,2,0,0,3,6,2,6,2,5,0,0,0,1,0,0,0,0,0,0 +50,1,117,Alabama,Shelby County,12,2,14202,7266,6936,6036,5774,867,778,33,22,158,205,3,5,169,152,6623,6333,5456,5226,839,762,16,12,152,196,1,2,159,135,643,603,580,548,28,16,17,10,6,9,2,3,10,17 +50,1,119,Alabama,Sumter County,1,5,1268,572,696,230,259,336,433,0,1,0,0,0,0,6,3,562,683,223,254,333,425,0,1,0,0,0,0,6,3,10,13,7,5,3,8,0,0,0,0,0,0,0,0 +50,1,119,Alabama,Sumter County,3,17,316,104,212,41,73,63,136,0,1,0,0,0,0,0,2,103,211,41,73,62,135,0,1,0,0,0,0,0,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0 +50,1,119,Alabama,Sumter County,4,18,358,107,251,34,92,73,159,0,0,0,0,0,0,0,0,107,250,34,92,73,158,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 +50,1,119,Alabama,Sumter County,5,17,316,88,228,34,79,54,146,0,1,0,0,0,0,0,2,88,227,34,79,54,145,0,1,0,0,0,0,0,2,0,1,0,0,0,1,0,0,0,0,0,0,0,0 +50,1,119,Alabama,Sumter County,11,18,325,86,239,45,80,41,158,0,0,0,0,0,0,0,1,86,239,45,80,41,158,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,119,Alabama,Sumter County,12,18,316,75,241,38,81,37,159,0,0,0,0,0,0,0,1,75,241,38,81,37,159,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,121,Alabama,Talladega County,2,13,3648,1722,1926,1349,1468,354,440,6,5,6,3,0,0,7,10,1714,1914,1343,1458,352,438,6,5,6,3,0,0,7,10,8,12,6,10,2,2,0,0,0,0,0,0,0,0 +50,1,123,Alabama,Tallapoosa County,4,14,1847,810,1037,682,840,125,193,2,0,0,2,0,0,1,2,808,1035,680,838,125,193,2,0,0,2,0,0,1,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0 +50,1,125,Alabama,Tuscaloosa County,5,0,2045,1066,979,659,636,370,314,0,3,18,13,2,1,17,12,1018,941,615,602,369,312,0,2,17,12,1,1,16,12,48,38,44,34,1,2,0,1,1,1,1,0,1,0 +50,1,125,Alabama,Tuscaloosa County,10,6,13453,6715,6738,4504,4031,1975,2461,34,18,131,147,8,11,63,70,6289,6515,4127,3843,1957,2446,15,11,129,146,6,7,55,62,426,223,377,188,18,15,19,7,2,1,2,4,8,8 +50,1,125,Alabama,Tuscaloosa County,11,14,6420,2988,3432,2375,2604,584,778,8,5,12,18,0,0,9,27,2973,3414,2361,2588,584,776,8,5,12,18,0,0,8,27,15,18,14,16,0,2,0,0,0,0,0,0,1,0 +50,1,127,Alabama,Walker County,10,3,4480,2308,2172,2070,1964,183,159,6,5,7,7,0,2,42,35,2259,2123,2031,1919,177,158,6,4,5,7,0,1,40,34,49,49,39,45,6,1,0,1,2,0,0,1,2,1 +50,1,127,Alabama,Walker County,10,12,4872,2383,2489,2229,2335,117,121,10,11,7,8,0,1,20,13,2369,2476,2215,2328,117,119,10,11,7,7,0,0,20,11,14,13,14,7,0,2,0,0,0,1,0,1,0,2 +50,1,127,Alabama,Walker County,11,2,4103,2103,2000,1890,1769,156,150,7,9,7,9,4,1,39,62,2040,1944,1838,1718,153,149,4,9,7,9,1,0,37,59,63,56,52,51,3,1,3,0,0,0,3,1,2,3 +50,1,127,Alabama,Walker County,12,18,1100,319,781,304,756,13,24,0,0,0,0,0,0,2,1,318,779,303,754,13,24,0,0,0,0,0,0,2,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0 +50,1,129,Alabama,Washington County,1,16,437,179,258,125,186,49,66,5,5,0,0,0,0,0,1,177,256,124,185,48,66,5,4,0,0,0,0,0,1,2,2,1,1,1,0,0,1,0,0,0,0,0,0 +50,1,129,Alabama,Washington County,2,0,260,123,137,82,89,29,37,10,9,0,0,0,0,2,2,121,136,81,88,28,37,10,9,0,0,0,0,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0 +50,1,129,Alabama,Washington County,2,16,437,179,258,125,186,49,66,5,5,0,0,0,0,0,1,177,256,124,185,48,66,5,4,0,0,0,0,0,1,2,2,1,1,1,0,0,1,0,0,0,0,0,0 +50,1,129,Alabama,Washington County,3,17,260,102,158,74,120,27,32,1,5,0,0,0,0,0,1,102,158,74,120,27,32,1,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,129,Alabama,Washington County,4,4,1395,749,646,430,368,242,207,67,64,0,0,0,0,10,7,739,643,426,367,237,206,67,64,0,0,0,0,9,6,10,3,4,1,5,1,0,0,0,0,0,0,1,1 +50,1,129,Alabama,Washington County,5,17,294,117,177,82,130,33,41,2,5,0,0,0,0,0,1,115,176,81,130,32,40,2,5,0,0,0,0,0,1,2,1,1,0,1,1,0,0,0,0,0,0,0,0 +50,1,129,Alabama,Washington County,7,4,1334,709,625,450,354,204,205,45,55,2,2,0,0,8,9,701,621,446,352,202,205,44,54,2,2,0,0,7,8,8,4,4,2,2,0,1,1,0,0,0,0,1,1 +50,1,129,Alabama,Washington County,9,9,1268,629,639,421,406,159,166,46,61,1,0,0,0,2,6,623,637,417,405,158,165,46,61,0,0,0,0,2,6,6,2,4,1,1,1,0,0,1,0,0,0,0,0 +50,1,131,Alabama,Wilcox County,5,11,800,347,453,117,130,229,320,0,0,1,1,0,0,0,2,347,451,117,128,229,320,0,0,1,1,0,0,0,2,0,2,0,2,0,0,0,0,0,0,0,0,0,0 +50,1,131,Alabama,Wilcox County,8,7,668,296,372,91,76,205,295,0,0,0,0,0,0,0,1,296,372,91,76,205,295,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,131,Alabama,Wilcox County,9,17,217,85,132,44,56,41,75,0,0,0,0,0,0,0,1,85,132,44,56,41,75,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,131,Alabama,Wilcox County,11,0,153,87,66,13,9,74,57,0,0,0,0,0,0,0,0,86,66,13,9,73,57,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0 +50,1,131,Alabama,Wilcox County,12,18,229,61,168,24,64,37,102,0,2,0,0,0,0,0,0,61,167,24,64,37,101,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0 +50,1,133,Alabama,Winston County,8,8,1676,844,832,828,816,2,3,5,4,1,1,2,2,6,6,816,818,802,805,2,3,5,4,1,1,0,1,6,4,28,14,26,11,0,0,0,0,0,0,2,1,0,2 +50,1,133,Alabama,Winston County,10,6,1334,654,680,634,662,3,4,8,6,1,0,4,1,4,7,584,652,575,642,3,3,2,2,0,0,1,0,3,5,70,28,59,20,0,1,6,4,1,0,3,1,1,2 +50,1,133,Alabama,Winston County,11,11,1847,943,904,914,886,5,3,9,7,1,1,1,0,13,7,931,899,905,881,5,3,8,7,1,1,0,0,12,7,12,5,9,5,0,0,1,0,0,0,1,0,1,0 +50,1,133,Alabama,Winston County,12,12,1709,857,852,834,834,2,5,7,5,3,1,1,1,10,6,847,844,825,826,2,5,7,5,3,1,0,1,10,6,10,8,9,8,0,0,0,0,0,0,1,0,0,0 +50,1,133,Alabama,Winston County,13,12,1709,854,855,834,835,2,5,6,5,3,2,0,1,9,7,845,846,825,827,2,4,6,5,3,2,0,1,9,7,9,9,9,8,0,1,0,0,0,0,0,0,0,0 diff --git a/scripts/us_census/pep/pep_by_srh/testdata/input_files/2010_2020/county/CC-EST2020-ALLDATA.csv b/scripts/us_census/pep/pep_by_srh/testdata/input_files/2010_2020/county/CC-EST2020-ALLDATA.csv index 7581dc631c..678e60854c 100644 --- a/scripts/us_census/pep/pep_by_srh/testdata/input_files/2010_2020/county/CC-EST2020-ALLDATA.csv +++ b/scripts/us_census/pep/pep_by_srh/testdata/input_files/2010_2020/county/CC-EST2020-ALLDATA.csv @@ -1,16550 +1,166 @@ -SUMLEV,STATE,COUNTY,STNAME,CTYNAME,YEAR,AGEGRP,TOT_POP,TOT_MALE,TOT_FEMALE,WA_MALE,WA_FEMALE,BA_MALE,BA_FEMALE,IA_MALE,IA_FEMALE,AA_MALE,AA_FEMALE,NA_MALE,NA_FEMALE,TOM_MALE,TOM_FEMALE,WAC_MALE,WAC_FEMALE,BAC_MALE,BAC_FEMALE,IAC_MALE,IAC_FEMALE,AAC_MALE,AAC_FEMALE,NAC_MALE,NAC_FEMALE,NH_MALE,NH_FEMALE,NHWA_MALE,NHWA_FEMALE,NHBA_MALE,NHBA_FEMALE,NHIA_MALE,NHIA_FEMALE,NHAA_MALE,NHAA_FEMALE,NHNA_MALE,NHNA_FEMALE,NHTOM_MALE,NHTOM_FEMALE,NHWAC_MALE,NHWAC_FEMALE,NHBAC_MALE,NHBAC_FEMALE,NHIAC_MALE,NHIAC_FEMALE,NHAAC_MALE,NHAAC_FEMALE,NHNAC_MALE,NHNAC_FEMALE,H_MALE,H_FEMALE,HWA_MALE,HWA_FEMALE,HBA_MALE,HBA_FEMALE,HIA_MALE,HIA_FEMALE,HAA_MALE,HAA_FEMALE,HNA_MALE,HNA_FEMALE,HTOM_MALE,HTOM_FEMALE,HWAC_MALE,HWAC_FEMALE,HBAC_MALE,HBAC_FEMALE,HIAC_MALE,HIAC_FEMALE,HAAC_MALE,HAAC_FEMALE,HNAC_MALE,HNAC_FEMALE -050,01,001,Alabama,Autauga County,1,0,54571,26569,28002,21295,22002,4559,5130,119,139,200,284,29,18,367,429,21633,22391,4704,5306,277,314,300,409,42,37,25875,27386,20709,21485,4512,5091,103,115,194,280,13,9,344,406,21026,21853,4647,5258,251,282,291,398,23,27,694,616,586,517,47,39,16,24,6,4,16,9,23,23,607,538,57,48,26,32,9,11,19,10 -050,01,001,Alabama,Autauga County,1,1,3579,1866,1713,1411,1316,362,317,5,3,13,15,1,0,74,62,1479,1368,405,362,23,18,34,28,3,1,1778,1651,1337,1260,356,313,2,2,13,15,0,0,70,61,1402,1312,396,357,19,17,34,28,1,0,88,62,74,56,6,4,3,1,0,0,1,0,4,1,77,56,9,5,4,1,0,0,2,1 -050,01,001,Alabama,Autauga County,1,2,3991,2001,1990,1521,1526,399,374,14,8,17,21,1,3,49,58,1570,1583,425,403,27,19,32,42,3,4,1933,1916,1460,1465,398,372,12,2,17,21,0,3,46,53,1506,1517,423,400,25,12,30,39,1,4,68,74,61,61,1,2,2,6,0,0,1,0,3,5,64,66,2,3,2,7,2,3,2,0 -050,01,001,Alabama,Autauga County,1,3,4290,2171,2119,1658,1620,431,406,15,12,23,18,4,1,40,62,1694,1681,453,436,29,27,32,37,4,5,2105,2055,1613,1570,421,403,12,9,22,18,3,0,34,55,1643,1624,440,429,24,22,30,36,3,4,66,64,45,50,10,3,3,3,1,0,1,1,6,7,51,57,13,7,5,5,2,1,1,1 -050,01,001,Alabama,Autauga County,1,4,4290,2213,2077,1628,1585,502,424,12,7,25,14,4,2,42,45,1664,1624,525,444,23,20,39,31,6,5,2153,2026,1580,1543,495,420,12,5,23,14,1,1,42,43,1616,1580,518,439,23,18,37,30,3,4,60,51,48,42,7,4,0,2,2,0,3,1,0,2,48,44,7,5,0,2,2,1,3,1 -050,01,001,Alabama,Autauga County,1,5,3080,1539,1541,1201,1184,293,312,6,9,8,7,3,2,28,27,1228,1206,301,324,17,24,16,12,5,3,1474,1499,1141,1151,291,308,6,7,8,6,2,1,26,26,1166,1172,299,320,15,21,16,11,4,2,65,42,60,33,2,4,0,2,0,1,1,1,2,1,62,34,2,4,2,3,0,1,1,1 -050,01,001,Alabama,Autauga County,1,6,3157,1543,1614,1234,1223,277,350,1,3,7,23,6,3,18,12,1250,1235,280,351,14,12,12,25,6,3,1477,1570,1180,1184,272,347,1,3,5,23,1,1,18,12,1196,1196,275,348,14,12,10,25,1,1,66,44,54,39,5,3,0,0,2,0,5,2,0,0,54,39,5,3,0,0,2,0,5,2 -050,01,001,Alabama,Autauga County,1,7,3330,1594,1736,1289,1298,276,378,1,10,12,25,3,1,13,24,1301,1319,279,386,6,15,18,40,3,2,1533,1674,1234,1245,273,373,1,8,12,25,1,0,12,23,1245,1266,275,380,6,13,18,39,1,1,61,62,55,53,3,5,0,2,0,0,2,1,1,1,56,53,4,6,0,2,0,1,2,1 -050,01,001,Alabama,Autauga County,1,8,4157,2004,2153,1596,1645,338,432,11,9,30,30,2,3,27,34,1621,1675,342,446,29,22,38,44,2,3,1948,2108,1547,1610,336,429,8,7,30,29,1,1,26,32,1571,1638,340,442,25,20,38,42,1,1,56,45,49,35,2,3,3,2,0,1,1,2,1,2,50,37,2,4,4,2,0,2,1,2 -050,01,001,Alabama,Autauga County,1,9,4086,1974,2112,1625,1658,303,384,9,14,16,36,1,2,20,18,1643,1673,307,388,22,27,22,41,3,4,1923,2073,1580,1624,301,383,8,11,16,36,0,1,18,18,1596,1639,304,387,20,24,22,41,2,3,51,39,45,34,2,1,1,3,0,0,1,1,2,0,47,34,3,1,2,3,0,0,1,1 -050,01,001,Alabama,Autauga County,1,10,4332,2174,2158,1810,1744,315,353,14,11,19,27,3,0,13,23,1823,1762,317,359,22,25,22,32,3,5,2140,2111,1785,1704,312,348,11,11,18,26,3,0,11,22,1796,1721,314,354,17,24,21,31,3,5,34,47,25,40,3,5,3,0,1,1,0,0,2,1,27,41,3,5,5,1,1,1,0,0 -050,01,001,Alabama,Autauga County,1,11,3873,1866,2007,1508,1573,323,385,11,12,10,17,0,0,14,20,1521,1592,325,388,24,28,11,20,0,0,1842,1986,1487,1557,321,383,10,11,10,17,0,0,14,18,1500,1574,323,386,23,25,11,20,0,0,24,21,21,16,2,2,1,1,0,0,0,0,0,2,21,18,2,2,1,3,0,0,0,0 -050,01,001,Alabama,Autauga County,1,12,3083,1524,1559,1265,1232,237,302,7,9,6,9,1,0,8,7,1271,1238,239,304,11,14,8,11,3,0,1504,1546,1248,1220,235,302,7,9,6,9,1,0,7,6,1254,1225,236,304,11,13,8,11,2,0,20,13,17,12,2,0,0,0,0,0,0,0,1,1,17,13,3,0,0,1,0,0,1,0 -050,01,001,Alabama,Autauga County,1,13,2777,1279,1498,1086,1237,171,220,6,13,7,13,0,1,9,14,1095,1251,171,220,14,26,8,14,0,2,1270,1483,1077,1225,171,218,6,12,7,13,0,1,9,14,1086,1239,171,218,14,25,8,14,0,2,9,15,9,12,0,2,0,1,0,0,0,0,0,0,9,12,0,2,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,1,14,2277,1014,1263,873,1056,128,177,3,8,4,9,0,0,6,13,877,1069,130,178,7,20,5,9,1,0,1002,1246,864,1040,126,177,3,8,4,8,0,0,5,13,867,1053,128,178,6,20,5,8,1,0,12,17,9,16,2,0,0,0,0,1,0,0,1,0,10,16,2,0,1,0,0,1,0,0 -050,01,001,Alabama,Autauga County,1,15,1736,807,929,688,796,109,114,4,5,2,8,0,0,4,6,692,802,110,115,7,8,2,10,0,0,801,920,682,789,109,113,4,4,2,8,0,0,4,6,686,795,110,114,7,7,2,10,0,0,6,9,6,7,0,1,0,1,0,0,0,0,0,0,6,7,0,1,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,1,16,1251,546,705,498,597,46,92,0,6,1,7,0,0,1,3,499,600,46,92,1,8,1,8,0,0,543,698,495,590,46,92,0,6,1,7,0,0,1,3,496,593,46,92,1,8,1,8,0,0,3,7,3,7,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,1,17,731,295,436,268,368,26,63,0,0,0,5,0,0,1,0,269,368,26,63,1,0,0,5,0,0,291,434,264,366,26,63,0,0,0,5,0,0,1,0,265,366,26,63,1,0,0,5,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,1,18,551,159,392,136,344,23,47,0,0,0,0,0,0,0,1,136,345,23,47,0,1,0,0,0,0,158,390,135,342,23,47,0,0,0,0,0,0,0,1,135,343,23,47,0,1,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,2,0,54582,26576,28006,21296,22004,4566,5133,119,139,200,284,29,18,366,428,21633,22392,4710,5308,277,314,300,409,42,37,25883,27390,20711,21487,4519,5094,103,115,194,280,13,9,343,405,21027,21854,4653,5260,251,282,291,398,23,27,693,616,585,517,47,39,16,24,6,4,16,9,23,23,606,538,57,48,26,32,9,11,19,10 -050,01,001,Alabama,Autauga County,2,1,3582,1868,1714,1412,1318,364,317,5,3,13,15,1,0,73,61,1479,1369,406,361,23,18,34,28,3,1,1780,1652,1338,1262,358,313,2,2,13,15,0,0,69,60,1402,1313,397,356,19,17,34,28,1,0,88,62,74,56,6,4,3,1,0,0,1,0,4,1,77,56,9,5,4,1,0,0,2,1 -050,01,001,Alabama,Autauga County,2,2,3994,2004,1990,1523,1526,400,374,14,8,17,21,1,3,49,58,1572,1583,426,403,27,19,32,42,3,4,1936,1916,1462,1465,399,372,12,2,17,21,0,3,46,53,1508,1517,424,400,25,12,30,39,1,4,68,74,61,61,1,2,2,6,0,0,1,0,3,5,64,66,2,3,2,7,2,3,2,0 -050,01,001,Alabama,Autauga County,2,3,4294,2173,2121,1659,1621,432,407,15,12,23,18,4,1,40,62,1695,1682,454,437,29,27,32,37,4,5,2107,2057,1614,1571,422,404,12,9,22,18,3,0,34,55,1644,1625,441,430,24,22,30,36,3,4,66,64,45,50,10,3,3,3,1,0,1,1,6,7,51,57,13,7,5,5,2,1,1,1 -050,01,001,Alabama,Autauga County,2,4,4291,2213,2078,1628,1586,502,424,12,7,25,14,4,2,42,45,1664,1625,525,444,23,20,39,31,6,5,2154,2027,1581,1544,495,420,12,5,23,14,1,1,42,43,1617,1581,518,439,23,18,37,30,3,4,59,51,47,42,7,4,0,2,2,0,3,1,0,2,47,44,7,5,0,2,2,1,3,1 -050,01,001,Alabama,Autauga County,2,5,3080,1539,1541,1201,1184,293,312,6,9,8,7,3,2,28,27,1228,1206,301,324,17,24,16,12,5,3,1474,1499,1141,1151,291,308,6,7,8,6,2,1,26,26,1166,1172,299,320,15,21,16,11,4,2,65,42,60,33,2,4,0,2,0,1,1,1,2,1,62,34,2,4,2,3,0,1,1,1 -050,01,001,Alabama,Autauga County,2,6,3160,1545,1615,1234,1223,279,351,1,3,7,23,6,3,18,12,1250,1235,282,352,14,12,12,25,6,3,1479,1571,1180,1184,274,348,1,3,5,23,1,1,18,12,1196,1196,277,349,14,12,10,25,1,1,66,44,54,39,5,3,0,0,2,0,5,2,0,0,54,39,5,3,0,0,2,0,5,2 -050,01,001,Alabama,Autauga County,2,7,3329,1593,1736,1288,1298,276,378,1,10,12,25,3,1,13,24,1300,1319,279,386,6,15,18,40,3,2,1532,1674,1233,1245,273,373,1,8,12,25,1,0,12,23,1244,1266,275,380,6,13,18,39,1,1,61,62,55,53,3,5,0,2,0,0,2,1,1,1,56,53,4,6,0,2,0,1,2,1 -050,01,001,Alabama,Autauga County,2,8,4157,2004,2153,1595,1644,339,433,11,9,30,30,2,3,27,34,1620,1674,343,447,29,22,38,44,2,3,1948,2108,1546,1609,337,430,8,7,30,29,1,1,26,32,1570,1637,341,443,25,20,38,42,1,1,56,45,49,35,2,3,3,2,0,1,1,2,1,2,50,37,2,4,4,2,0,2,1,2 -050,01,001,Alabama,Autauga County,2,9,4086,1973,2113,1624,1659,303,384,9,14,16,36,1,2,20,18,1642,1674,307,388,22,27,22,41,3,4,1922,2074,1579,1625,301,383,8,11,16,36,0,1,18,18,1595,1640,304,387,20,24,22,41,2,3,51,39,45,34,2,1,1,3,0,0,1,1,2,0,47,34,3,1,2,3,0,0,1,1 -050,01,001,Alabama,Autauga County,2,10,4333,2176,2157,1812,1743,315,353,14,11,19,27,3,0,13,23,1825,1761,317,359,22,25,22,32,3,5,2142,2110,1787,1703,312,348,11,11,18,26,3,0,11,22,1798,1720,314,354,17,24,21,31,3,5,34,47,25,40,3,5,3,0,1,1,0,0,2,1,27,41,3,5,5,1,1,1,0,0 -050,01,001,Alabama,Autauga County,2,11,3874,1866,2008,1508,1574,323,385,11,12,10,17,0,0,14,20,1521,1593,325,388,24,28,11,20,0,0,1842,1987,1487,1558,321,383,10,11,10,17,0,0,14,18,1500,1575,323,386,23,25,11,20,0,0,24,21,21,16,2,2,1,1,0,0,0,0,0,2,21,18,2,2,1,3,0,0,0,0 -050,01,001,Alabama,Autauga County,2,12,3083,1524,1559,1265,1232,237,302,7,9,6,9,1,0,8,7,1271,1238,239,304,11,14,8,11,3,0,1504,1546,1248,1220,235,302,7,9,6,9,1,0,7,6,1254,1225,236,304,11,13,8,11,2,0,20,13,17,12,2,0,0,0,0,0,0,0,1,1,17,13,3,0,0,1,0,0,1,0 -050,01,001,Alabama,Autauga County,2,13,2777,1279,1498,1086,1237,171,220,6,13,7,13,0,1,9,14,1095,1251,171,220,14,26,8,14,0,2,1270,1483,1077,1225,171,218,6,12,7,13,0,1,9,14,1086,1239,171,218,14,25,8,14,0,2,9,15,9,12,0,2,0,1,0,0,0,0,0,0,9,12,0,2,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,2,14,2277,1014,1263,873,1056,128,177,3,8,4,9,0,0,6,13,877,1069,130,178,7,20,5,9,1,0,1002,1246,864,1040,126,177,3,8,4,8,0,0,5,13,867,1053,128,178,6,20,5,8,1,0,12,17,9,16,2,0,0,0,0,1,0,0,1,0,10,16,2,0,1,0,0,1,0,0 -050,01,001,Alabama,Autauga County,2,15,1734,806,928,687,795,109,114,4,5,2,8,0,0,4,6,691,801,110,115,7,8,2,10,0,0,800,919,681,788,109,113,4,4,2,8,0,0,4,6,685,794,110,114,7,7,2,10,0,0,6,9,6,7,0,1,0,1,0,0,0,0,0,0,6,7,0,1,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,2,16,1250,546,704,498,596,46,92,0,6,1,7,0,0,1,3,499,599,46,92,1,8,1,8,0,0,543,697,495,589,46,92,0,6,1,7,0,0,1,3,496,592,46,92,1,8,1,8,0,0,3,7,3,7,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,2,17,730,294,436,267,368,26,63,0,0,0,5,0,0,1,0,268,368,26,63,1,0,0,5,0,0,290,434,263,366,26,63,0,0,0,5,0,0,1,0,264,366,26,63,1,0,0,5,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,2,18,551,159,392,136,344,23,47,0,0,0,0,0,0,0,1,136,345,23,47,0,1,0,0,0,0,158,390,135,342,23,47,0,0,0,0,0,0,0,1,135,343,23,47,0,1,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,3,0,54761,26667,28094,21355,22057,4596,5153,116,133,201,296,27,19,372,436,21695,22450,4778,5370,258,297,295,405,38,34,25977,27475,20762,21524,4550,5122,105,115,197,292,13,10,350,412,21082,21897,4716,5326,241,267,285,395,23,21,690,619,593,533,46,31,11,18,4,4,14,9,22,24,613,553,62,44,17,30,10,10,15,13 -050,01,001,Alabama,Autauga County,3,1,3575,1862,1713,1415,1316,356,319,3,2,13,15,0,0,75,61,1485,1375,415,369,9,4,29,25,2,1,1777,1654,1340,1262,351,315,2,2,13,15,0,0,71,60,1406,1320,406,364,7,4,28,25,2,1,85,59,75,54,5,4,1,0,0,0,0,0,4,1,79,55,9,5,2,0,1,0,0,0 -050,01,001,Alabama,Autauga County,3,2,3964,1984,1980,1506,1517,398,369,15,6,15,22,1,4,49,62,1553,1578,435,410,22,16,27,34,1,5,1916,1908,1446,1455,397,368,12,2,15,22,0,4,46,57,1490,1511,432,407,18,10,27,34,0,4,68,72,60,62,1,1,3,4,0,0,1,0,3,5,63,67,3,3,4,6,0,0,1,1 -050,01,001,Alabama,Autauga County,3,3,4292,2163,2129,1657,1621,427,409,13,13,23,19,4,1,39,66,1694,1682,454,454,20,29,32,35,6,5,2098,2064,1609,1570,418,406,11,10,23,19,3,0,34,59,1641,1625,441,446,17,23,31,33,5,2,65,65,48,51,9,3,2,3,0,0,1,1,5,7,53,57,13,8,3,6,1,2,1,3 -050,01,001,Alabama,Autauga County,3,4,4228,2181,2047,1600,1551,497,426,13,6,25,16,4,2,42,46,1636,1590,519,454,30,18,37,31,4,3,2125,1996,1556,1508,490,422,13,5,23,16,1,1,42,44,1592,1546,512,448,30,16,35,31,1,2,56,51,44,43,7,4,0,1,2,0,3,1,0,2,44,44,7,6,0,2,2,0,3,1 -050,01,001,Alabama,Autauga County,3,5,3151,1573,1578,1223,1219,306,315,6,7,6,7,3,2,29,28,1248,1242,314,327,17,15,20,19,5,6,1511,1537,1167,1184,303,313,6,6,6,6,2,1,27,27,1190,1206,311,324,16,13,19,18,4,5,62,41,56,35,3,2,0,1,0,1,1,1,2,1,58,36,3,3,1,2,1,1,1,1 -050,01,001,Alabama,Autauga County,3,6,3188,1573,1615,1250,1234,289,341,1,3,9,23,6,3,18,11,1267,1243,292,346,10,7,18,27,6,3,1504,1568,1192,1192,285,338,1,3,7,23,1,1,18,11,1209,1201,288,343,10,7,16,27,1,1,69,47,58,42,4,3,0,0,2,0,5,2,0,0,58,42,4,3,0,0,2,0,5,2 -050,01,001,Alabama,Autauga County,3,7,3369,1614,1755,1303,1310,281,385,1,10,13,26,2,1,14,23,1315,1330,286,391,7,22,18,37,2,1,1551,1695,1245,1255,278,384,1,8,13,26,1,0,13,22,1257,1274,282,390,7,19,17,36,1,0,63,60,58,55,3,1,0,2,0,0,1,1,1,1,58,56,4,1,0,3,1,1,1,1 -050,01,001,Alabama,Autauga County,3,8,4142,2000,2142,1585,1632,347,432,10,8,31,33,2,3,25,34,1608,1662,351,437,23,27,39,46,4,4,1943,2097,1534,1596,344,429,9,7,31,32,1,1,24,32,1556,1624,347,434,22,24,39,45,3,2,57,45,51,36,3,3,1,1,0,1,1,2,1,2,52,38,4,3,1,3,0,1,1,2 -050,01,001,Alabama,Autauga County,3,9,4116,1998,2118,1642,1661,305,387,9,14,17,36,1,2,24,18,1664,1678,310,391,29,28,20,40,4,2,1945,2081,1595,1628,303,387,8,11,17,36,0,1,22,18,1616,1645,306,391,27,25,19,40,2,1,53,37,47,33,2,0,1,3,0,0,1,1,2,0,48,33,4,0,2,3,1,0,2,1 -050,01,001,Alabama,Autauga County,3,10,4321,2163,2158,1798,1741,316,356,13,10,19,28,3,0,14,23,1809,1763,322,362,24,27,19,30,3,0,2130,2108,1772,1698,313,351,11,10,19,27,3,0,12,22,1781,1719,317,357,22,26,19,28,3,0,33,50,26,43,3,5,2,0,0,1,0,0,2,1,28,44,5,5,2,1,0,2,0,0 -050,01,001,Alabama,Autauga County,3,11,3908,1884,2024,1531,1588,318,386,11,13,10,18,0,0,14,19,1544,1604,320,390,23,26,11,22,0,1,1860,2002,1510,1571,316,384,10,12,10,18,0,0,14,17,1523,1587,318,388,22,24,11,20,0,0,24,22,21,17,2,2,1,1,0,0,0,0,0,2,21,17,2,2,1,2,0,2,0,1 -050,01,001,Alabama,Autauga County,3,12,3119,1533,1586,1267,1255,243,304,8,9,6,9,1,0,8,9,1273,1262,245,308,15,14,7,10,1,1,1512,1570,1249,1241,241,304,8,9,6,9,1,0,7,7,1254,1246,243,306,15,14,6,10,1,1,21,16,18,14,2,0,0,0,0,0,0,0,1,2,19,16,2,2,0,0,1,0,0,0 -050,01,001,Alabama,Autauga County,3,13,2789,1292,1497,1096,1229,175,228,6,13,7,13,0,1,8,13,1104,1239,176,231,12,25,8,14,0,1,1284,1481,1088,1216,175,226,6,12,7,13,0,1,8,13,1096,1226,176,229,12,24,8,14,0,1,8,16,8,13,0,2,0,1,0,0,0,0,0,0,8,13,0,2,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,3,14,2289,1018,1271,876,1064,128,179,3,7,4,9,0,0,7,12,883,1074,128,182,9,18,5,11,0,0,1007,1255,868,1049,126,179,3,7,4,8,0,0,6,12,874,1059,126,182,8,18,5,10,0,0,11,16,8,15,2,0,0,0,0,1,0,0,1,0,9,15,2,0,1,0,0,1,0,0 -050,01,001,Alabama,Autauga County,3,15,1752,814,938,692,801,112,116,4,5,2,9,0,0,4,7,696,807,113,116,6,10,4,11,0,1,808,928,686,793,112,115,4,4,2,9,0,0,4,7,690,799,113,115,6,9,4,11,0,1,6,10,6,8,0,1,0,1,0,0,0,0,0,0,6,8,0,1,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,3,16,1259,552,707,500,599,50,90,0,7,1,8,0,0,1,3,501,601,50,91,1,10,1,8,0,0,549,700,497,592,50,90,0,7,1,8,0,0,1,3,498,594,50,91,1,10,1,8,0,0,3,7,3,7,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,3,17,743,299,444,273,375,25,64,0,0,0,5,0,0,1,0,274,375,25,64,1,0,0,5,0,0,294,441,268,372,25,64,0,0,0,5,0,0,1,0,269,372,25,64,1,0,0,5,0,0,5,3,5,3,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,3,18,556,164,392,141,344,23,47,0,0,0,0,0,0,0,1,141,345,23,47,0,1,0,0,0,0,163,390,140,342,23,47,0,0,0,0,0,0,0,1,140,343,23,47,0,1,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,4,0,55229,26980,28249,21495,22206,4727,5160,116,144,208,308,33,18,401,413,21867,22583,4924,5359,262,295,305,413,49,39,26283,27612,20893,21655,4689,5127,106,123,204,304,20,13,371,390,21240,22014,4870,5315,235,261,296,400,33,32,697,637,602,551,38,33,10,21,4,4,13,5,30,23,627,569,54,44,27,34,9,13,16,7 -050,01,001,Alabama,Autauga County,4,1,3552,1851,1701,1406,1311,346,323,2,3,14,9,1,0,82,55,1484,1365,407,366,10,6,31,19,4,0,1757,1626,1322,1242,342,318,2,2,14,9,1,0,76,55,1395,1296,401,361,6,5,30,19,4,0,94,75,84,69,4,5,0,1,0,0,0,0,6,0,89,69,6,5,4,1,1,0,0,0 -050,01,001,Alabama,Autauga County,4,2,3905,1938,1967,1499,1538,369,340,7,6,11,26,1,3,51,54,1549,1589,406,378,15,10,23,42,2,6,1875,1894,1441,1474,368,339,7,3,11,26,1,3,47,49,1488,1522,403,374,12,6,22,39,2,4,63,73,58,64,1,1,0,3,0,0,0,0,4,5,61,67,3,4,3,4,1,3,0,2 -050,01,001,Alabama,Autauga County,4,3,4321,2202,2119,1684,1642,420,388,14,11,24,14,6,2,54,62,1733,1700,453,424,24,25,39,32,9,6,2137,2058,1630,1593,420,386,11,8,24,14,4,2,48,55,1675,1645,449,419,20,18,38,29,5,6,65,61,54,49,0,2,3,3,0,0,2,0,6,7,58,55,4,5,4,7,1,3,4,0 -050,01,001,Alabama,Autauga County,4,4,4031,2072,1959,1516,1471,469,419,16,7,28,19,4,2,39,41,1552,1508,491,442,28,17,39,32,4,5,2022,1911,1478,1432,463,415,16,6,26,19,1,1,38,38,1513,1467,484,436,28,15,37,30,1,4,50,48,38,39,6,4,0,1,2,0,3,1,1,3,39,41,7,6,0,2,2,2,3,1 -050,01,001,Alabama,Autauga County,4,5,3398,1742,1656,1296,1262,394,346,8,9,5,6,4,1,35,32,1329,1286,406,364,23,18,19,20,8,4,1692,1602,1251,1213,392,343,8,8,5,6,3,1,33,31,1282,1236,403,360,21,17,19,20,7,4,50,54,45,49,2,3,0,1,0,0,1,0,2,1,47,50,3,4,2,1,0,0,1,0 -050,01,001,Alabama,Autauga County,4,6,3215,1609,1606,1248,1256,315,307,3,5,15,24,5,3,23,11,1267,1267,321,310,14,8,23,28,7,4,1534,1556,1187,1215,309,303,3,3,13,23,1,1,21,11,1204,1226,314,306,13,6,21,27,3,2,75,50,61,41,6,4,0,2,2,1,4,2,2,0,63,41,7,4,1,2,2,1,4,2 -050,01,001,Alabama,Autauga County,4,7,3443,1663,1780,1315,1321,320,397,2,9,11,33,2,1,13,19,1327,1337,325,404,6,18,16,41,2,3,1601,1724,1260,1269,315,395,2,8,11,33,1,1,12,18,1271,1284,320,402,5,16,16,41,1,3,62,56,55,52,5,2,0,1,0,0,1,0,1,1,56,53,5,2,1,2,0,0,1,0 -050,01,001,Alabama,Autauga County,4,8,4002,1937,2065,1554,1550,324,430,7,14,30,34,3,2,19,35,1569,1583,330,437,19,34,34,45,5,4,1876,2023,1500,1516,321,429,6,10,30,34,2,1,17,33,1513,1547,326,436,16,28,34,45,4,3,61,42,54,34,3,1,1,4,0,0,1,1,2,2,56,36,4,1,3,6,0,0,1,1 -050,01,001,Alabama,Autauga County,4,9,4167,2030,2137,1659,1674,314,396,12,11,18,37,2,3,25,16,1682,1689,319,401,30,22,22,37,2,4,1975,2098,1611,1639,312,395,9,10,18,36,1,2,24,16,1633,1654,316,400,27,21,22,36,1,3,55,39,48,35,2,1,3,1,0,1,1,1,1,0,49,35,3,1,3,1,0,1,1,1 -050,01,001,Alabama,Autauga County,4,10,4196,2074,2122,1712,1703,311,355,13,9,20,33,3,0,15,22,1725,1720,314,361,27,26,22,35,4,2,2041,2080,1686,1666,309,352,11,8,20,32,3,0,12,22,1697,1683,310,358,23,25,20,34,3,2,33,42,26,37,2,3,2,1,0,1,0,0,3,0,28,37,4,3,4,1,2,1,1,0 -050,01,001,Alabama,Autauga County,4,11,4035,1985,2050,1625,1627,324,377,10,14,10,18,0,0,16,14,1641,1640,324,380,24,25,12,19,0,0,1954,2030,1598,1612,321,373,10,13,10,18,0,0,15,14,1613,1625,321,376,23,24,12,19,0,0,31,20,27,15,3,4,0,1,0,0,0,0,1,0,28,15,3,4,1,1,0,0,0,0 -050,01,001,Alabama,Autauga County,4,12,3247,1582,1665,1262,1320,293,309,10,10,8,10,1,0,8,16,1269,1334,295,313,16,24,9,12,1,0,1561,1645,1244,1304,291,309,9,10,8,10,1,0,8,12,1251,1315,293,311,15,20,9,11,1,0,21,20,18,16,2,0,1,0,0,0,0,0,0,4,18,19,2,2,1,4,0,1,0,0 -050,01,001,Alabama,Autauga County,4,13,2856,1339,1517,1139,1223,181,255,5,13,6,12,1,1,7,13,1146,1235,182,257,11,23,6,14,1,1,1329,1500,1129,1208,181,254,5,12,6,12,1,1,7,13,1136,1220,182,256,11,22,6,14,1,1,10,17,10,15,0,1,0,1,0,0,0,0,0,0,10,15,0,1,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,4,14,2323,1021,1302,881,1088,127,188,3,9,4,9,0,0,6,8,887,1096,130,190,5,13,5,11,0,0,1011,1288,873,1076,125,187,3,9,4,8,0,0,6,8,879,1084,128,189,5,13,5,10,0,0,10,14,8,12,2,1,0,0,0,1,0,0,0,0,8,12,2,1,0,0,0,1,0,0 -050,01,001,Alabama,Autauga County,4,15,1843,844,999,720,854,112,121,4,7,3,7,0,0,5,10,725,863,113,123,8,15,3,8,0,0,836,986,713,843,112,120,4,6,3,7,0,0,4,10,717,852,112,122,8,14,3,8,0,0,8,13,7,11,0,1,0,1,0,0,0,0,1,0,8,11,1,1,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,4,16,1312,585,727,522,621,60,86,0,6,1,11,0,0,2,3,524,624,60,86,1,8,2,12,0,0,583,720,520,614,60,86,0,6,1,11,0,0,2,3,522,617,60,86,1,8,2,12,0,0,2,7,2,7,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,4,17,782,315,467,291,391,23,68,0,1,0,6,0,0,1,1,292,392,23,68,1,2,0,6,0,0,311,463,287,387,23,68,0,1,0,6,0,0,1,1,288,388,23,68,1,2,0,6,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,4,18,601,191,410,166,354,25,55,0,0,0,0,0,0,0,1,166,355,25,55,0,1,0,0,0,0,188,408,163,352,25,55,0,0,0,0,0,0,0,1,163,353,25,55,0,1,0,0,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,5,0,54970,26830,28140,21334,21994,4735,5223,120,153,210,345,30,14,401,411,21703,22369,4929,5421,270,314,311,437,48,36,26136,27526,20744,21458,4695,5192,110,135,207,341,18,11,362,389,21081,21814,4867,5380,246,281,298,428,28,31,694,614,590,536,40,31,10,18,3,4,12,3,39,22,622,555,62,41,24,33,13,9,20,5 -050,01,001,Alabama,Autauga County,5,1,3405,1792,1613,1364,1234,338,306,6,5,14,13,1,0,69,55,1430,1286,390,350,13,9,30,21,3,2,1696,1550,1277,1174,333,303,5,5,14,13,1,0,66,55,1340,1226,384,347,10,9,29,21,3,2,96,63,87,60,5,3,1,0,0,0,0,0,3,0,90,60,6,3,3,0,1,0,0,0 -050,01,001,Alabama,Autauga County,5,2,3800,1913,1887,1468,1456,370,340,4,8,12,29,1,3,58,51,1521,1502,409,376,16,17,25,40,4,4,1854,1815,1418,1392,369,338,4,6,12,29,1,3,50,47,1465,1435,405,372,11,13,23,38,2,4,59,72,50,64,1,2,0,2,0,0,0,0,8,4,56,67,4,4,5,4,2,2,2,0 -050,01,001,Alabama,Autauga County,5,3,4364,2199,2165,1672,1672,426,403,17,9,25,17,4,1,55,63,1722,1730,465,440,26,24,40,30,8,5,2130,2104,1617,1620,426,402,16,8,25,17,2,1,44,56,1658,1672,457,437,23,17,37,30,3,5,69,61,55,52,0,1,1,1,0,0,2,0,11,7,64,58,8,3,3,7,3,0,5,0 -050,01,001,Alabama,Autauga County,5,4,4050,2118,1932,1548,1443,494,420,11,9,24,21,3,1,38,38,1583,1480,514,442,22,19,35,31,4,4,2061,1891,1507,1407,486,418,10,9,23,21,2,1,33,35,1538,1441,505,439,19,18,31,30,2,4,57,41,41,36,8,2,1,0,1,0,1,0,5,3,45,39,9,3,3,1,4,1,2,0 -050,01,001,Alabama,Autauga County,5,5,3369,1718,1651,1280,1231,372,366,11,11,8,9,5,1,42,33,1321,1262,388,380,28,19,24,23,5,3,1661,1613,1231,1199,370,362,11,10,7,9,2,1,40,32,1270,1229,384,375,28,18,23,23,2,3,57,38,49,32,2,4,0,1,1,0,3,0,2,1,51,33,4,5,0,1,1,0,3,0 -050,01,001,Alabama,Autauga County,5,6,3203,1577,1626,1234,1268,311,312,2,5,7,24,2,3,21,14,1250,1279,317,317,13,10,16,32,3,4,1514,1563,1180,1214,307,309,2,2,6,23,0,1,19,14,1194,1225,312,314,12,7,15,31,1,2,63,63,54,54,4,3,0,3,1,1,2,2,2,0,56,54,5,3,1,3,1,1,2,2 -050,01,001,Alabama,Autauga County,5,7,3324,1599,1725,1267,1279,299,384,3,11,14,35,2,0,14,16,1281,1294,301,389,8,15,19,43,4,1,1538,1678,1214,1237,293,382,3,9,14,35,1,0,13,15,1227,1251,294,387,8,12,19,42,3,1,61,47,53,42,6,2,0,2,0,0,1,0,1,1,54,43,7,2,0,3,0,1,1,0 -050,01,001,Alabama,Autauga County,5,8,3823,1826,1997,1441,1475,327,425,7,15,24,49,5,0,22,33,1463,1507,333,433,19,32,28,61,6,1,1772,1949,1394,1433,326,424,6,11,24,49,3,0,19,32,1413,1464,330,432,17,27,28,61,4,1,54,48,47,42,1,1,1,4,0,0,2,0,3,1,50,43,3,1,2,5,0,0,2,0 -050,01,001,Alabama,Autauga County,5,9,4187,2027,2160,1660,1681,305,412,13,9,23,36,2,3,24,19,1681,1699,309,416,30,22,29,39,5,4,1968,2128,1609,1653,301,411,10,8,23,35,2,2,23,19,1630,1671,304,415,27,21,28,38,4,3,59,32,51,28,4,1,3,1,0,1,0,1,1,0,51,28,5,1,3,1,1,1,1,1 -050,01,001,Alabama,Autauga County,5,10,4082,2001,2081,1643,1664,308,350,10,9,25,34,4,1,11,23,1654,1683,309,353,20,28,26,37,4,3,1969,2035,1616,1624,306,346,8,8,25,33,3,1,11,23,1627,1643,307,349,18,27,26,36,3,3,32,46,27,40,2,4,2,1,0,1,1,0,0,0,27,40,2,4,2,1,0,1,1,0 -050,01,001,Alabama,Autauga County,5,11,4121,2082,2039,1707,1618,338,371,11,15,10,21,0,0,16,14,1721,1630,340,376,24,25,12,22,1,1,2054,2015,1683,1601,336,366,11,14,10,21,0,0,14,13,1696,1612,337,370,23,24,12,22,0,1,28,24,24,17,2,5,0,1,0,0,0,0,2,1,25,18,3,6,1,1,0,0,1,0 -050,01,001,Alabama,Autauga County,5,12,3273,1545,1728,1232,1357,285,335,10,11,7,9,1,0,10,16,1241,1370,287,342,19,25,7,10,1,2,1523,1709,1214,1341,282,335,9,11,7,9,1,0,10,13,1223,1351,284,340,18,22,7,9,1,1,22,19,18,16,3,0,1,0,0,0,0,0,0,3,18,19,3,2,1,3,0,1,0,1 -050,01,001,Alabama,Autauga County,5,13,2778,1325,1453,1113,1154,192,262,8,12,6,13,0,1,6,11,1117,1161,194,267,14,22,6,13,0,2,1314,1438,1102,1141,192,262,8,11,6,13,0,1,6,10,1106,1148,194,266,14,20,6,13,0,1,11,15,11,13,0,0,0,1,0,0,0,0,0,1,11,13,0,1,0,2,0,0,0,1 -050,01,001,Alabama,Autauga County,5,14,2458,1090,1368,937,1151,137,193,3,8,6,8,0,0,7,8,943,1159,138,195,9,14,7,8,0,0,1082,1354,930,1140,136,191,3,8,6,7,0,0,7,8,936,1148,137,193,9,14,7,7,0,0,8,14,7,11,1,2,0,0,0,1,0,0,0,0,7,11,1,2,0,0,0,1,0,0 -050,01,001,Alabama,Autauga County,5,15,1908,864,1044,734,890,118,130,4,7,3,6,0,0,5,11,739,901,119,130,7,18,4,6,0,0,855,1028,727,875,117,129,4,7,3,6,0,0,4,11,731,886,117,129,7,18,4,6,0,0,9,16,7,15,1,1,0,0,0,0,0,0,1,0,8,15,2,1,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,5,16,1359,608,751,539,636,65,92,0,5,2,14,0,0,2,4,541,639,65,93,1,9,3,14,0,0,604,743,535,629,65,92,0,4,2,14,0,0,2,4,537,632,65,93,1,8,3,14,0,0,4,8,4,7,0,0,0,1,0,0,0,0,0,0,4,7,0,0,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,5,17,834,340,494,313,420,26,63,0,4,0,6,0,0,1,1,313,421,27,63,1,5,0,6,0,0,338,490,311,416,26,63,0,4,0,6,0,0,1,1,311,417,27,63,1,5,0,6,0,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,5,18,632,206,426,182,365,24,59,0,0,0,1,0,0,0,1,182,366,24,59,0,1,0,1,0,0,203,423,179,362,24,59,0,0,0,1,0,0,0,1,179,363,24,59,0,1,0,1,0,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,6,0,54747,26588,28159,21037,21929,4698,5291,127,148,227,338,31,15,468,438,21468,22328,4926,5510,274,304,351,442,58,38,25893,27500,20467,21371,4647,5243,114,134,222,330,20,13,423,409,20861,21746,4855,5448,237,272,333,427,42,31,695,659,570,558,51,48,13,14,5,8,11,2,45,29,607,582,71,62,37,32,18,15,16,7 -050,01,001,Alabama,Autauga County,6,1,3217,1671,1546,1245,1153,316,307,7,5,13,15,1,0,89,66,1331,1218,383,358,14,9,31,25,4,2,1575,1488,1160,1100,312,304,4,5,13,15,1,0,85,64,1243,1163,376,354,9,8,31,25,3,2,96,58,85,53,4,3,3,0,0,0,0,0,4,2,88,55,7,4,5,1,0,0,1,0 -050,01,001,Alabama,Autauga County,6,2,3760,1891,1869,1435,1424,362,355,5,5,16,30,0,4,73,51,1506,1474,414,391,12,11,32,40,4,6,1813,1802,1373,1367,357,351,5,4,15,29,0,4,63,47,1434,1413,405,385,9,7,27,38,3,6,78,67,62,57,5,4,0,1,1,1,0,0,10,4,72,61,9,6,3,4,5,2,1,0 -050,01,001,Alabama,Autauga County,6,3,4206,2095,2111,1583,1626,419,399,11,8,22,10,6,1,54,67,1628,1689,451,440,23,22,38,30,12,3,2036,2048,1539,1572,417,397,11,8,22,9,4,1,43,61,1578,1630,444,435,16,18,34,25,7,2,59,63,44,54,2,2,0,0,0,1,2,0,11,6,50,59,7,5,7,4,4,5,5,1 -050,01,001,Alabama,Autauga County,6,4,3990,2071,1919,1520,1435,456,402,10,11,32,21,2,1,51,49,1569,1477,481,436,23,24,46,34,4,4,2020,1873,1485,1398,449,401,9,11,31,21,2,1,44,41,1528,1435,473,430,17,21,42,32,4,1,51,46,35,37,7,1,1,0,1,0,0,0,7,8,41,42,8,6,6,3,4,2,0,3 -050,01,001,Alabama,Autauga County,6,5,3468,1791,1677,1325,1259,392,367,9,11,13,11,4,0,48,29,1366,1286,413,381,27,19,31,23,8,1,1727,1634,1271,1223,391,363,7,9,12,11,1,0,45,28,1309,1249,410,376,23,17,29,23,5,1,64,43,54,36,1,4,2,2,1,0,3,0,3,1,57,37,3,5,4,2,2,0,3,0 -050,01,001,Alabama,Autauga County,6,6,3292,1570,1722,1218,1326,316,351,2,5,6,21,2,4,26,15,1242,1338,322,357,9,9,20,29,4,5,1510,1654,1162,1266,315,348,2,3,5,20,0,2,26,15,1186,1278,321,354,9,7,19,28,2,3,60,68,56,60,1,3,0,2,1,1,2,2,0,0,56,60,1,3,0,2,1,1,2,2 -050,01,001,Alabama,Autauga County,6,7,3309,1609,1700,1254,1247,312,389,10,11,13,32,4,0,16,21,1267,1266,317,395,15,20,21,40,5,1,1554,1652,1210,1206,304,385,10,9,13,32,2,0,15,20,1222,1224,308,391,15,17,21,40,3,1,55,48,44,41,8,4,0,2,0,0,2,0,1,1,45,42,9,4,0,3,0,0,2,0 -050,01,001,Alabama,Autauga County,6,8,3622,1728,1894,1371,1419,306,396,4,13,20,36,5,1,22,29,1392,1443,310,404,15,27,25,46,8,4,1680,1841,1331,1370,302,396,4,11,20,36,4,1,19,27,1349,1392,304,403,14,23,25,46,7,4,48,53,40,49,4,0,0,2,0,0,1,0,3,2,43,51,6,1,1,4,0,0,1,0 -050,01,001,Alabama,Autauga County,6,9,4116,1977,2139,1623,1635,286,429,13,8,26,43,2,2,27,22,1646,1653,291,433,33,25,33,47,2,4,1913,2094,1574,1596,278,427,10,7,26,40,1,2,24,22,1595,1614,281,431,28,24,33,44,1,4,64,45,49,39,8,2,3,1,0,3,1,0,3,0,51,39,10,2,5,1,0,3,1,0 -050,01,001,Alabama,Autauga County,6,10,4000,1941,2059,1579,1614,315,381,9,10,22,33,2,1,14,20,1592,1631,316,387,20,22,26,36,2,3,1910,2006,1552,1579,312,365,8,9,22,32,2,1,14,20,1565,1596,313,371,19,21,26,35,2,3,31,53,27,35,3,16,1,1,0,1,0,0,0,0,27,35,3,16,1,1,0,1,0,0 -050,01,001,Alabama,Autauga County,6,11,4144,2090,2054,1716,1646,326,355,16,12,19,24,1,0,12,17,1727,1662,329,358,25,27,20,25,1,0,2061,2020,1695,1620,323,349,14,11,18,24,1,0,10,16,1704,1635,326,352,22,25,18,25,1,0,29,34,21,26,3,6,2,1,1,0,0,0,2,1,23,27,3,6,3,2,2,0,0,0 -050,01,001,Alabama,Autauga County,6,12,3441,1610,1831,1276,1455,305,334,9,11,8,15,0,0,12,16,1288,1469,307,339,18,23,8,15,1,1,1594,1812,1263,1439,303,334,8,11,8,15,0,0,12,13,1275,1450,305,338,17,21,8,15,1,1,16,19,13,16,2,0,1,0,0,0,0,0,0,3,13,19,2,1,1,2,0,0,0,0 -050,01,001,Alabama,Autauga County,6,13,2769,1323,1446,1091,1143,204,271,14,9,7,13,1,1,6,9,1096,1151,207,271,18,16,8,14,1,3,1307,1434,1076,1132,203,271,14,9,7,13,1,1,6,8,1081,1140,206,271,18,15,8,14,1,2,16,12,15,11,1,0,0,0,0,0,0,0,0,1,15,11,1,0,0,1,0,0,0,1 -050,01,001,Alabama,Autauga County,6,14,2480,1135,1345,975,1120,143,197,3,12,5,7,0,0,9,9,984,1128,144,198,11,20,5,8,0,0,1128,1326,969,1105,142,195,3,11,5,6,0,0,9,9,978,1113,143,196,11,19,5,7,0,0,7,19,6,15,1,2,0,1,0,1,0,0,0,0,6,15,1,2,0,1,0,1,0,0 -050,01,001,Alabama,Autauga County,6,15,1982,868,1114,742,948,113,142,5,6,2,7,1,0,5,11,747,958,113,144,7,14,4,8,2,1,858,1098,734,933,112,141,5,6,2,7,1,0,4,11,738,943,112,143,6,14,4,8,2,1,10,16,8,15,1,1,0,0,0,0,0,0,1,0,9,15,1,1,1,0,0,0,0,0 -050,01,001,Alabama,Autauga County,6,16,1425,631,794,552,681,73,89,0,6,3,13,0,0,3,5,554,685,74,90,3,10,3,14,0,0,625,788,546,676,73,89,0,5,3,13,0,0,3,5,548,680,74,90,3,9,3,14,0,0,6,6,6,5,0,0,0,1,0,0,0,0,0,0,6,5,0,0,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,6,17,890,378,512,345,436,32,65,0,5,0,5,0,0,1,1,346,437,32,65,1,5,0,6,0,0,377,505,344,429,32,65,0,5,0,5,0,0,1,1,345,430,32,65,1,5,0,6,0,0,1,7,1,7,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,6,18,636,209,427,187,362,22,62,0,0,0,2,0,0,0,1,187,363,22,63,0,1,0,2,0,0,205,425,183,360,22,62,0,0,0,2,0,0,0,1,183,361,22,63,0,1,0,2,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,7,0,54922,26804,28118,21106,21874,4811,5300,123,149,237,340,34,16,493,439,21568,22263,5050,5535,283,306,374,454,52,38,26076,27429,20506,21301,4747,5245,112,131,234,335,22,14,455,403,20940,21661,4968,5455,253,269,358,441,35,29,728,689,600,573,64,55,11,18,3,5,12,2,38,36,628,602,82,80,30,37,16,13,17,9 -050,01,001,Alabama,Autauga County,7,1,3183,1659,1524,1234,1136,323,294,7,4,12,18,1,0,82,72,1312,1204,386,351,12,9,31,35,3,1,1586,1470,1167,1090,321,293,4,3,12,18,1,0,81,66,1244,1152,383,347,9,5,31,31,3,1,73,54,67,46,2,1,3,1,0,0,0,0,1,6,68,52,3,4,3,4,0,4,0,0 -050,01,001,Alabama,Autauga County,7,2,3720,1908,1812,1425,1367,377,355,3,7,19,28,1,3,83,52,1506,1414,439,395,14,13,35,37,1,5,1827,1749,1361,1312,370,352,3,7,18,28,0,3,75,47,1435,1355,427,388,10,11,33,37,0,5,81,63,64,55,7,3,0,0,1,0,1,0,8,5,71,59,12,7,4,2,2,0,1,0 -050,01,001,Alabama,Autauga County,7,3,4165,2069,2096,1554,1611,427,397,10,6,19,14,6,3,53,65,1603,1671,459,439,19,21,35,30,8,5,1995,2024,1492,1550,422,395,10,5,19,14,4,3,48,57,1539,1602,451,432,16,17,33,30,6,3,74,72,62,61,5,2,0,1,0,0,2,0,5,8,64,69,8,7,3,4,2,0,2,2 -050,01,001,Alabama,Autauga County,7,4,3912,2063,1849,1523,1402,444,370,8,11,31,17,3,1,54,48,1572,1443,475,403,21,24,48,29,6,7,2002,1797,1479,1364,437,365,8,10,31,17,3,1,44,40,1520,1401,466,392,15,18,44,26,4,4,61,52,44,38,7,5,0,1,0,0,0,0,10,8,52,42,9,11,6,6,4,3,2,3 -050,01,001,Alabama,Autauga County,7,5,3554,1812,1742,1333,1298,400,392,9,15,18,8,4,0,48,29,1379,1322,420,407,27,22,36,19,7,3,1747,1701,1275,1262,398,390,9,13,18,8,1,0,46,28,1319,1286,416,404,25,19,35,19,4,2,65,41,58,36,2,2,0,2,0,0,3,0,2,1,60,36,4,3,2,3,1,0,3,1 -050,01,001,Alabama,Autauga County,7,6,3361,1680,1681,1287,1287,350,353,6,4,5,14,1,2,31,21,1314,1305,357,361,16,13,23,25,3,3,1608,1615,1223,1229,349,349,4,2,4,13,0,1,28,21,1248,1247,355,357,13,11,20,24,2,2,72,66,64,58,1,4,2,2,1,1,1,1,3,0,66,58,2,4,3,2,3,1,1,1 -050,01,001,Alabama,Autauga County,7,7,3357,1631,1726,1273,1288,305,377,8,5,19,31,4,2,22,23,1295,1309,309,384,14,15,30,43,5,3,1565,1665,1217,1232,299,375,8,5,19,31,1,1,21,21,1238,1251,302,381,14,14,30,42,2,1,66,61,56,56,6,2,0,0,0,0,3,1,1,2,57,58,7,3,0,1,0,1,3,2 -050,01,001,Alabama,Autauga County,7,8,3502,1660,1842,1308,1372,302,391,6,14,17,41,6,1,21,23,1328,1393,305,397,17,25,24,50,8,3,1617,1790,1273,1328,296,389,6,10,17,40,5,1,20,22,1292,1348,299,394,17,21,24,49,6,3,43,52,35,44,6,2,0,4,0,1,1,0,1,1,36,45,6,3,0,4,0,1,2,0 -050,01,001,Alabama,Autauga County,7,9,4126,1994,2132,1587,1631,331,427,11,10,34,42,3,2,28,20,1611,1647,337,431,28,22,44,48,5,5,1937,2084,1546,1590,323,424,9,7,33,41,2,2,24,20,1568,1606,327,428,26,19,40,47,2,5,57,48,41,41,8,3,2,3,1,1,1,0,4,0,43,41,10,3,2,3,4,1,3,0 -050,01,001,Alabama,Autauga County,7,10,3943,1916,2027,1561,1568,307,387,12,11,17,38,0,1,19,22,1579,1587,308,393,27,29,20,41,1,1,1869,1973,1526,1536,297,366,10,10,17,38,0,1,19,22,1544,1555,298,372,25,28,20,41,1,1,47,54,35,32,10,21,2,1,0,0,0,0,0,0,35,32,10,21,2,1,0,0,0,0 -050,01,001,Alabama,Autauga County,7,11,4131,2060,2071,1700,1663,314,357,14,10,16,26,3,0,13,15,1712,1676,316,359,24,25,18,27,3,0,2034,2031,1680,1631,311,351,13,10,16,25,3,0,11,14,1691,1644,312,352,21,24,18,26,3,0,26,40,20,32,3,6,1,0,0,1,0,0,2,1,21,32,4,7,3,1,0,1,0,0 -050,01,001,Alabama,Autauga County,7,12,3528,1658,1870,1332,1475,293,353,9,12,10,15,0,0,14,15,1346,1489,296,357,21,24,10,17,0,0,1638,1848,1316,1458,290,352,8,11,10,15,0,0,14,12,1330,1469,293,353,20,21,10,17,0,0,20,22,16,17,3,1,1,1,0,0,0,0,0,3,16,20,3,4,1,3,0,0,0,0 -050,01,001,Alabama,Autauga County,7,13,2841,1393,1448,1120,1141,249,280,10,8,8,11,1,1,5,7,1124,1148,250,281,15,13,8,12,1,1,1376,1439,1105,1133,247,280,10,8,8,11,1,1,5,6,1109,1139,248,281,15,12,8,12,1,1,17,9,15,8,2,0,0,0,0,0,0,0,0,1,15,9,2,0,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,7,14,2481,1130,1351,969,1131,140,188,6,14,6,9,0,0,9,9,977,1140,142,191,14,19,6,10,0,0,1126,1326,965,1110,140,186,6,13,6,8,0,0,9,9,973,1119,142,189,14,18,6,9,0,0,4,25,4,21,0,2,0,1,0,1,0,0,0,0,4,21,0,2,0,1,0,1,0,0 -050,01,001,Alabama,Autauga County,7,15,2031,886,1145,767,971,108,149,3,7,3,8,0,0,5,10,772,979,108,151,8,14,3,10,0,1,877,1131,761,958,106,148,3,7,3,8,0,0,4,10,765,966,106,150,7,14,3,10,0,1,9,14,6,13,2,1,0,0,0,0,0,0,1,0,7,13,2,1,1,0,0,0,0,0 -050,01,001,Alabama,Autauga County,7,16,1475,653,822,558,705,85,94,1,6,3,12,1,0,5,5,562,706,86,98,6,11,3,12,1,0,647,815,552,699,85,94,1,5,3,12,1,0,5,5,556,700,86,98,6,10,3,12,1,0,6,7,6,6,0,0,0,1,0,0,0,0,0,0,6,6,0,0,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,7,17,944,400,544,366,460,34,73,0,5,0,4,0,0,0,2,366,461,34,74,0,6,0,5,0,0,398,538,364,454,34,73,0,5,0,4,0,0,0,2,364,455,34,74,0,6,0,5,0,0,2,6,2,6,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,7,18,668,232,436,209,368,22,63,0,0,0,4,0,0,1,1,210,369,23,63,0,1,0,4,0,0,227,433,204,365,22,63,0,0,0,4,0,0,1,1,205,366,23,63,0,1,0,4,0,0,5,3,5,3,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,8,0,54903,26752,28151,20967,21724,4910,5482,115,140,265,336,29,18,466,451,21393,22127,5141,5722,265,279,395,449,46,49,25990,27455,20340,21153,4838,5421,102,124,263,328,18,15,429,414,20736,21524,5049,5641,236,250,382,429,31,35,762,696,627,571,72,61,13,16,2,8,11,3,37,37,657,603,92,81,29,29,13,20,15,14 -050,01,001,Alabama,Autauga County,8,1,3122,1605,1517,1222,1088,298,325,5,4,14,19,1,0,65,81,1283,1167,347,386,12,9,28,34,2,2,1530,1472,1154,1052,294,324,3,2,14,17,1,0,64,77,1214,1127,342,384,10,6,28,31,2,1,75,45,68,36,4,1,2,2,0,2,0,0,1,4,69,40,5,2,2,3,0,3,0,1 -050,01,001,Alabama,Autauga County,8,2,3694,1893,1801,1415,1356,368,367,5,7,21,17,2,0,82,54,1492,1407,429,407,13,13,43,27,5,2,1811,1728,1349,1291,362,364,4,7,20,16,1,0,75,50,1420,1339,418,401,9,13,39,24,2,1,82,73,66,65,6,3,1,0,1,1,1,0,7,4,72,68,11,6,4,0,4,3,3,1 -050,01,001,Alabama,Autauga County,8,3,4089,2037,2052,1503,1572,452,384,9,3,15,24,2,6,56,63,1555,1630,489,426,14,15,30,42,6,11,1957,1977,1434,1512,449,381,9,2,15,24,1,6,49,52,1480,1560,480,416,12,9,30,38,4,7,80,75,69,60,3,3,0,1,0,0,1,0,7,11,75,70,9,10,2,6,0,4,2,4 -050,01,001,Alabama,Autauga County,8,4,3816,1989,1827,1467,1369,435,374,2,8,33,16,5,0,47,60,1508,1425,463,410,12,20,51,31,6,5,1924,1777,1421,1329,427,371,2,8,33,16,4,0,37,53,1454,1378,452,403,8,18,45,28,5,3,65,50,46,40,8,3,0,0,0,0,1,0,10,7,54,47,11,7,4,2,6,3,1,2 -050,01,001,Alabama,Autauga County,8,5,3503,1789,1714,1275,1257,426,405,10,8,30,12,3,1,45,31,1314,1283,445,421,24,16,50,24,4,3,1726,1677,1218,1223,423,404,10,8,30,12,0,1,45,29,1257,1247,442,418,24,15,50,24,1,3,63,37,57,34,3,1,0,0,0,0,3,0,0,2,57,36,3,3,0,1,0,0,3,0 -050,01,001,Alabama,Autauga County,8,6,3367,1676,1691,1261,1286,362,369,7,5,17,16,3,3,26,12,1283,1296,372,373,14,8,29,24,4,4,1617,1635,1210,1238,360,366,5,3,16,15,1,1,25,12,1231,1248,369,370,12,6,28,23,2,2,59,56,51,48,2,3,2,2,1,1,2,2,1,0,52,48,3,3,2,2,1,1,2,2 -050,01,001,Alabama,Autauga County,8,7,3418,1648,1770,1287,1334,318,372,4,5,18,36,3,3,18,20,1303,1349,322,378,11,11,27,48,3,4,1574,1702,1224,1271,311,370,4,5,18,36,1,2,16,18,1238,1285,315,375,10,11,26,47,1,2,74,68,63,63,7,2,0,0,0,0,2,1,2,2,65,64,7,3,1,0,1,1,2,2 -050,01,001,Alabama,Autauga County,8,8,3410,1639,1771,1311,1313,286,388,5,13,14,37,3,0,20,20,1330,1330,291,394,16,22,18,44,4,2,1583,1720,1263,1269,280,386,5,9,14,37,2,0,19,19,1281,1285,284,391,16,18,18,44,3,2,56,51,48,44,6,2,0,4,0,0,1,0,1,1,49,45,7,3,0,4,0,0,1,0 -050,01,001,Alabama,Autauga County,8,9,4018,1936,2082,1499,1536,368,471,8,11,32,35,2,2,27,27,1523,1559,373,479,27,26,37,41,3,4,1875,2033,1452,1496,359,467,8,8,32,34,2,2,22,26,1473,1518,362,475,24,22,36,40,2,4,61,49,47,40,9,4,0,3,0,1,0,0,5,1,50,41,11,4,3,4,1,1,1,0 -050,01,001,Alabama,Autauga County,8,10,3918,1924,1994,1552,1547,319,385,11,11,18,33,0,1,24,17,1576,1563,323,388,25,23,25,36,0,5,1869,1950,1514,1522,305,368,8,10,18,32,0,1,24,17,1538,1538,309,371,22,22,25,35,0,5,55,44,38,25,14,17,3,1,0,1,0,0,0,0,38,25,14,17,3,1,0,1,0,0 -050,01,001,Alabama,Autauga County,8,11,4126,2037,2089,1660,1662,325,374,17,10,18,29,3,0,14,14,1672,1673,327,377,29,20,19,31,4,2,2015,2032,1646,1624,323,357,13,10,18,28,3,0,12,13,1657,1634,324,360,23,19,19,30,4,2,22,57,14,38,2,17,4,0,0,1,0,0,2,1,15,39,3,17,6,1,0,1,0,0 -050,01,001,Alabama,Autauga County,8,12,3656,1738,1918,1415,1502,286,374,11,12,11,14,0,0,15,16,1429,1513,290,380,23,26,12,16,0,0,1712,1898,1394,1487,282,372,10,11,11,14,0,0,15,14,1408,1497,286,378,22,23,12,15,0,0,26,20,21,15,4,2,1,1,0,0,0,0,0,2,21,16,4,2,1,3,0,1,0,0 -050,01,001,Alabama,Autauga County,8,13,2924,1453,1471,1166,1167,260,279,10,8,10,9,1,1,6,7,1171,1172,261,281,15,12,11,10,1,3,1436,1458,1151,1156,258,279,10,8,10,9,1,1,6,5,1156,1160,259,280,15,12,11,10,1,1,17,13,15,11,2,0,0,0,0,0,0,0,0,2,15,12,2,1,0,0,0,0,0,2 -050,01,001,Alabama,Autauga County,8,14,2585,1169,1416,997,1162,153,215,4,15,7,11,0,1,8,12,1004,1174,154,218,11,24,7,11,1,1,1166,1398,994,1147,153,213,4,14,7,11,0,1,8,12,1001,1159,154,216,11,23,7,11,1,1,3,18,3,15,0,2,0,1,0,0,0,0,0,0,3,15,0,2,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,8,15,2059,893,1166,775,988,105,156,3,8,4,7,0,0,6,7,781,994,106,157,8,14,5,8,2,0,884,1146,769,969,103,156,3,8,4,6,0,0,5,7,774,975,104,157,7,14,5,7,2,0,9,20,6,19,2,0,0,0,0,1,0,0,1,0,7,19,2,0,1,0,0,1,0,0 -050,01,001,Alabama,Autauga County,8,16,1497,665,832,564,701,90,108,3,5,2,12,1,0,5,6,569,704,90,111,8,9,2,13,1,1,658,822,557,693,90,107,3,4,2,12,1,0,5,6,562,696,90,110,8,8,2,13,1,1,7,10,7,8,0,1,0,1,0,0,0,0,0,0,7,8,0,1,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,8,17,991,414,577,377,501,35,62,0,7,1,4,0,0,1,3,378,504,35,62,1,10,1,4,0,0,412,571,375,495,35,62,0,7,1,4,0,0,1,3,376,498,35,62,1,10,1,4,0,0,2,6,2,6,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,8,18,710,247,463,221,383,24,74,1,0,0,5,0,0,1,1,222,384,24,74,2,1,0,5,0,0,241,459,215,379,24,74,1,0,0,5,0,0,1,1,216,380,24,74,2,1,0,5,0,0,6,4,6,4,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,9,0,55302,26999,28303,21002,21735,5051,5568,118,133,294,367,29,22,505,478,21469,22169,5301,5822,271,296,430,488,51,50,26220,27613,20377,21163,4972,5511,102,124,289,360,17,17,463,438,20808,21565,5200,5740,236,263,418,477,37,38,779,690,625,572,79,57,16,9,5,7,12,5,42,40,661,604,101,82,35,33,12,11,14,12 -050,01,001,Alabama,Autauga County,9,1,3195,1654,1541,1219,1105,318,328,4,3,26,32,0,1,87,72,1301,1172,384,385,11,10,45,45,5,4,1579,1496,1156,1066,313,328,3,3,24,30,0,1,83,68,1236,1130,376,382,8,7,43,42,3,3,75,45,63,39,5,0,1,0,2,2,0,0,4,4,65,42,8,3,3,3,2,3,2,1 -050,01,001,Alabama,Autauga County,9,2,3608,1869,1739,1392,1283,355,356,5,4,22,16,2,2,93,78,1483,1358,419,414,15,12,44,35,3,4,1787,1678,1326,1230,348,353,5,4,21,16,2,1,85,74,1410,1301,408,408,11,10,42,35,3,3,82,61,66,53,7,3,0,0,1,0,0,1,8,4,73,57,11,6,4,2,2,0,0,1 -050,01,001,Alabama,Autauga County,9,3,3971,1973,1998,1442,1518,445,377,10,4,17,29,3,3,56,67,1496,1581,478,417,18,16,34,48,4,8,1898,1918,1384,1452,439,376,9,4,16,29,1,3,49,54,1431,1505,469,408,13,8,33,46,2,7,75,80,58,66,6,1,1,0,1,0,2,0,7,13,65,76,9,9,5,8,1,2,2,1 -050,01,001,Alabama,Autauga County,9,4,3850,1998,1852,1464,1390,452,384,6,7,28,13,5,2,43,56,1504,1442,478,417,11,21,40,31,8,4,1934,1800,1415,1348,446,381,5,7,28,13,3,2,37,49,1450,1394,468,409,9,17,38,30,6,4,64,52,49,42,6,3,1,0,0,0,2,0,6,7,54,48,10,8,2,4,2,1,2,0 -050,01,001,Alabama,Autauga County,9,5,3366,1721,1645,1239,1196,398,388,7,9,34,19,3,1,40,32,1274,1223,415,402,18,18,48,31,6,5,1666,1609,1195,1166,391,386,6,8,34,19,0,1,40,29,1230,1190,408,399,17,16,48,31,3,4,55,36,44,30,7,2,1,1,0,0,3,0,0,3,44,33,7,3,1,2,0,0,3,1 -050,01,001,Alabama,Autauga County,9,6,3565,1786,1779,1333,1337,384,396,9,8,23,15,2,3,35,20,1363,1354,392,404,23,14,42,25,4,5,1712,1734,1267,1297,384,393,7,7,22,15,0,2,32,20,1294,1314,391,401,19,13,41,25,2,4,74,45,66,40,0,3,2,1,1,0,2,1,3,0,69,40,1,3,4,1,1,0,2,1 -050,01,001,Alabama,Autauga County,9,7,3465,1710,1755,1307,1328,351,364,7,6,20,34,4,4,21,19,1327,1344,354,370,18,15,29,43,4,5,1617,1684,1231,1266,342,359,5,6,20,34,2,2,17,17,1247,1280,345,365,12,13,28,43,2,3,93,71,76,62,9,5,2,0,0,0,2,2,4,2,80,64,9,5,6,2,1,0,2,2 -050,01,001,Alabama,Autauga County,9,8,3557,1696,1861,1311,1345,329,439,5,7,25,48,3,0,23,22,1331,1365,334,445,17,20,30,56,8,1,1643,1807,1268,1297,323,437,5,5,25,47,2,0,20,21,1285,1316,326,443,16,17,30,55,7,0,53,54,43,48,6,2,0,2,0,1,1,0,3,1,46,49,8,2,1,3,0,1,1,1 -050,01,001,Alabama,Autauga County,9,9,3813,1842,1971,1408,1450,371,452,6,10,31,33,1,1,25,25,1432,1472,377,458,23,25,36,40,1,3,1793,1920,1367,1404,366,449,6,9,31,33,1,1,22,24,1388,1426,371,454,22,23,35,40,1,3,49,51,41,46,5,3,0,1,0,0,0,0,3,1,44,46,6,4,1,2,1,0,0,0 -050,01,001,Alabama,Autauga County,9,10,3956,1928,2028,1565,1566,313,397,10,11,15,36,1,3,24,15,1586,1580,319,402,26,22,21,37,1,3,1871,1994,1530,1545,295,388,7,10,15,34,1,2,23,15,1551,1559,300,393,23,21,20,35,1,2,57,34,35,21,18,9,3,1,0,2,0,1,1,0,35,21,19,9,3,1,1,2,0,1 -050,01,001,Alabama,Autauga County,9,11,3988,1948,2040,1576,1614,323,374,17,8,17,25,3,0,12,19,1587,1629,325,379,25,21,20,29,3,2,1926,1979,1560,1574,322,355,13,8,17,24,3,0,11,18,1570,1588,323,360,21,21,20,28,3,1,22,61,16,40,1,19,4,0,0,1,0,0,1,1,17,41,2,19,4,0,0,1,0,1 -050,01,001,Alabama,Autauga County,9,12,3774,1830,1944,1494,1538,299,370,10,11,12,17,0,0,15,8,1505,1544,305,373,21,19,12,17,2,0,1800,1923,1469,1522,295,366,10,10,12,17,0,0,14,8,1479,1528,300,369,21,18,12,17,2,0,30,21,25,16,4,4,0,1,0,0,0,0,1,0,26,16,5,4,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,9,13,3101,1525,1576,1208,1243,286,296,10,9,10,11,1,1,10,16,1218,1256,288,304,17,21,11,12,1,4,1505,1556,1192,1227,283,296,9,9,10,11,1,1,10,12,1202,1238,285,300,16,19,11,12,1,2,20,20,16,16,3,0,1,0,0,0,0,0,0,4,16,18,3,4,1,2,0,0,0,2 -050,01,001,Alabama,Autauga County,9,14,2648,1226,1422,1040,1156,169,231,4,13,5,10,0,1,8,11,1047,1165,172,234,11,23,6,10,0,1,1219,1406,1033,1142,169,230,4,12,5,10,0,1,8,11,1040,1151,172,233,11,22,6,10,0,1,7,16,7,14,0,1,0,1,0,0,0,0,0,0,7,14,0,1,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,9,15,2098,889,1209,773,1014,102,174,3,9,6,7,0,0,5,5,778,1019,103,174,7,14,6,7,0,0,882,1191,768,998,100,173,3,9,6,6,0,0,5,5,773,1003,101,173,7,14,6,6,0,0,7,18,5,16,2,1,0,0,0,1,0,0,0,0,5,16,2,1,0,0,0,1,0,0 -050,01,001,Alabama,Autauga County,9,16,1551,689,862,585,735,92,103,4,7,2,9,1,0,5,8,588,743,94,104,7,14,4,9,1,0,680,848,577,723,92,102,4,6,2,9,1,0,4,8,580,731,93,103,7,13,3,9,1,0,9,14,8,12,0,1,0,1,0,0,0,0,1,0,8,12,1,1,0,1,1,0,0,0 -050,01,001,Alabama,Autauga County,9,17,1032,442,590,397,511,42,62,0,6,1,8,0,0,2,3,399,514,42,63,2,8,1,8,0,1,440,583,395,504,42,62,0,6,1,8,0,0,2,3,397,507,42,63,2,8,1,8,0,1,2,7,2,7,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,9,18,764,273,491,249,406,22,77,1,1,0,5,0,0,1,2,250,408,22,77,1,3,1,5,0,0,268,487,244,402,22,77,1,1,0,5,0,0,1,2,245,404,22,77,1,3,1,5,0,0,5,4,5,4,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,10,0,55448,27041,28407,20886,21720,5162,5654,111,143,297,396,32,27,553,467,21391,22143,5452,5897,266,285,459,523,57,50,26219,27689,20225,21122,5078,5598,97,126,291,390,18,19,510,434,20697,21519,5344,5825,227,252,445,512,40,37,822,718,661,598,84,56,14,17,6,6,14,8,43,33,694,624,108,72,39,33,14,11,17,13 -050,01,001,Alabama,Autauga County,10,1,3286,1718,1568,1225,1122,331,339,4,6,34,24,4,4,120,73,1343,1194,422,398,12,9,62,37,4,4,1641,1515,1162,1081,328,334,1,3,31,23,1,2,118,72,1278,1152,419,393,7,5,59,36,1,2,77,53,63,41,3,5,3,3,3,1,3,2,2,1,65,42,3,5,5,4,3,1,3,2 -050,01,001,Alabama,Autauga County,10,2,3552,1832,1720,1322,1252,381,362,7,6,18,27,2,2,102,71,1417,1319,456,415,20,14,42,43,5,5,1742,1658,1247,1197,374,362,7,6,17,27,2,1,95,65,1338,1260,444,412,15,11,39,43,5,2,90,62,75,55,7,0,0,0,1,0,0,1,7,6,79,59,12,3,5,3,3,0,0,3 -050,01,001,Alabama,Autauga County,10,3,3867,1949,1918,1448,1444,426,372,3,6,12,32,3,3,57,61,1503,1503,462,408,9,15,27,51,5,5,1875,1839,1388,1377,421,367,3,6,11,31,1,3,51,55,1438,1430,453,400,6,14,26,47,3,5,74,79,60,67,5,5,0,0,1,1,2,0,6,6,65,73,9,8,3,1,1,4,2,0 -050,01,001,Alabama,Autauga County,10,4,3825,1936,1889,1416,1425,439,390,8,7,24,13,4,2,45,52,1458,1472,467,418,15,18,37,30,6,5,1871,1832,1367,1380,434,387,7,7,24,13,2,2,37,43,1401,1419,459,412,10,12,34,28,4,5,65,57,49,45,5,3,1,0,0,0,2,0,8,9,57,53,8,6,5,6,3,2,2,0 -050,01,001,Alabama,Autauga County,10,5,3288,1683,1605,1201,1166,398,382,6,10,39,19,2,1,37,27,1233,1190,413,393,16,16,55,32,4,3,1627,1564,1156,1130,391,380,6,8,39,19,1,1,34,26,1185,1153,404,390,16,14,54,32,3,3,56,41,45,36,7,2,0,2,0,0,1,0,3,1,48,37,9,3,0,2,1,0,1,0 -050,01,001,Alabama,Autauga County,10,6,3671,1834,1837,1351,1356,408,417,11,4,20,25,3,5,41,30,1385,1379,417,429,26,12,44,42,6,7,1750,1785,1276,1313,407,413,9,3,20,25,0,3,38,28,1307,1335,415,423,22,10,44,42,3,5,84,52,75,43,1,4,2,1,0,0,3,2,3,2,78,44,2,6,4,2,0,0,3,2 -050,01,001,Alabama,Autauga County,10,7,3497,1705,1792,1285,1356,363,370,4,8,29,35,2,4,22,19,1301,1371,368,376,11,12,42,47,6,6,1624,1729,1213,1298,358,369,4,6,28,35,1,2,20,19,1228,1313,362,375,9,10,41,47,4,4,81,63,72,58,5,1,0,2,1,0,1,2,2,0,73,58,6,1,2,2,1,0,2,2 -050,01,001,Alabama,Autauga County,10,8,3583,1719,1864,1328,1369,337,419,7,9,16,45,3,0,28,22,1353,1390,343,425,23,19,27,50,5,4,1646,1788,1275,1306,323,414,7,5,16,43,2,0,23,20,1297,1325,328,419,18,15,26,48,4,3,73,76,53,63,14,5,0,4,0,2,1,0,5,2,56,65,15,6,5,4,1,2,1,1 -050,01,001,Alabama,Autauga County,10,9,3655,1745,1910,1326,1373,364,460,3,9,26,42,3,1,23,25,1346,1393,370,466,16,25,35,49,5,2,1689,1864,1278,1330,360,458,3,9,26,42,2,1,20,24,1297,1350,363,464,16,24,34,49,3,1,56,46,48,43,4,2,0,0,0,0,1,0,3,1,49,43,7,2,0,1,1,0,2,1 -050,01,001,Alabama,Autauga County,10,10,3943,1922,2021,1544,1569,324,393,9,9,25,32,1,3,19,15,1562,1582,328,397,24,20,29,35,1,4,1860,1995,1508,1549,302,389,6,8,25,32,1,2,18,15,1525,1562,305,393,21,19,29,35,1,3,62,26,36,20,22,4,3,1,0,0,0,1,1,0,37,20,23,4,3,1,0,0,0,1 -050,01,001,Alabama,Autauga County,10,11,3910,1911,1999,1529,1571,337,370,13,11,19,31,3,1,10,15,1537,1585,341,374,21,21,19,33,3,1,1889,1946,1512,1537,336,353,9,10,19,30,3,1,10,15,1520,1551,340,357,17,20,19,32,3,1,22,53,17,34,1,17,4,1,0,1,0,0,0,0,17,34,1,17,4,1,0,1,0,0 -050,01,001,Alabama,Autauga County,10,12,3933,1950,1983,1600,1555,311,382,11,12,13,21,0,0,15,13,1613,1566,316,385,21,24,15,22,2,0,1919,1956,1573,1535,309,377,11,11,13,21,0,0,13,12,1584,1546,312,379,19,22,15,22,2,0,31,27,27,20,2,5,0,1,0,0,0,0,2,1,29,20,4,6,2,2,0,0,0,0 -050,01,001,Alabama,Autauga County,10,13,3068,1463,1605,1153,1265,279,311,10,8,8,8,1,0,12,13,1165,1275,279,318,21,17,8,8,2,1,1446,1586,1142,1249,274,311,9,8,8,8,1,0,12,10,1154,1257,274,316,20,16,8,8,2,0,17,19,11,16,5,0,1,0,0,0,0,0,0,3,11,18,5,2,1,1,0,0,0,1 -050,01,001,Alabama,Autauga County,10,14,2619,1237,1382,1043,1089,179,256,6,12,2,12,0,1,7,12,1047,1100,182,259,11,22,3,13,1,2,1226,1367,1033,1076,178,256,6,11,2,12,0,1,7,11,1037,1086,181,259,11,20,3,13,1,2,11,15,10,13,1,0,0,1,0,0,0,0,0,1,10,14,1,0,0,2,0,0,0,0 -050,01,001,Alabama,Autauga County,10,15,2232,959,1273,826,1073,116,176,3,10,7,7,0,0,7,7,832,1079,117,178,9,16,8,7,0,0,954,1255,822,1058,115,174,3,10,7,6,0,0,7,7,828,1064,116,176,9,16,8,6,0,0,5,18,4,15,1,2,0,0,0,1,0,0,0,0,4,15,1,2,0,0,0,1,0,0 -050,01,001,Alabama,Autauga County,10,16,1630,718,912,607,781,97,111,5,7,3,7,1,0,5,6,611,787,98,112,8,12,4,7,2,0,709,895,600,765,96,110,5,7,3,7,1,0,4,6,604,771,96,111,8,12,4,7,1,0,9,17,7,16,1,1,0,0,0,0,0,0,1,0,7,16,2,1,0,0,0,0,1,0 -050,01,001,Alabama,Autauga County,10,17,1088,473,615,422,525,47,69,0,5,2,12,0,0,2,4,424,527,47,71,2,8,2,13,0,0,469,607,418,518,47,69,0,4,2,12,0,0,2,4,420,520,47,71,2,7,2,13,0,0,4,8,4,7,0,0,0,1,0,0,0,0,0,0,4,7,0,0,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,10,18,801,287,514,260,429,25,75,1,4,0,4,0,0,1,2,261,431,26,75,1,5,0,4,0,1,282,508,255,423,25,75,1,4,0,4,0,0,1,2,256,425,26,75,1,5,0,4,0,1,5,6,5,6,0,0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,11,0,55533,27049,28484,20933,21708,5143,5740,121,142,287,384,34,27,531,483,21417,22150,5432,6001,283,284,434,513,56,54,26183,27746,20208,21079,5081,5685,107,134,279,378,20,22,488,448,20654,21492,5343,5929,246,256,414,499,40,45,866,738,725,629,62,55,14,8,8,6,14,5,43,35,763,658,89,72,37,28,20,14,16,9 -050,01,001,Alabama,Autauga County,11,1,3353,1754,1599,1248,1133,359,360,5,2,34,22,4,4,104,78,1348,1206,438,426,14,2,55,38,7,6,1668,1544,1180,1086,356,356,3,2,30,21,1,2,98,77,1274,1158,431,421,9,2,50,37,4,4,86,55,68,47,3,4,2,0,4,1,3,2,6,1,74,48,7,5,5,0,5,1,3,2 -050,01,001,Alabama,Autauga County,11,2,3412,1769,1643,1288,1194,362,342,7,8,14,23,2,2,96,74,1379,1264,432,397,19,12,38,40,4,4,1682,1585,1210,1137,362,342,6,8,13,23,2,2,89,73,1296,1206,428,397,15,11,34,40,3,4,87,58,78,57,0,0,1,0,1,0,0,0,7,1,83,58,4,0,4,1,4,0,1,0 -050,01,001,Alabama,Autauga County,11,3,3877,1974,1903,1464,1409,433,392,4,7,14,31,3,4,56,60,1514,1467,474,429,12,17,31,47,5,5,1888,1829,1395,1347,427,386,4,7,13,30,1,3,48,56,1439,1401,461,422,8,13,28,45,3,4,86,74,69,62,6,6,0,0,1,1,2,1,8,4,75,66,13,7,4,4,3,2,2,1 -050,01,001,Alabama,Autauga County,11,4,3753,1905,1848,1399,1383,424,388,10,4,18,15,5,2,49,56,1442,1434,459,426,20,15,29,32,7,6,1837,1777,1344,1322,420,387,9,4,18,15,3,2,43,47,1381,1367,450,419,15,10,29,31,5,4,68,71,55,61,4,1,1,0,0,0,2,0,6,9,61,67,9,7,5,5,0,1,2,2 -050,01,001,Alabama,Autauga County,11,5,3183,1636,1547,1184,1158,381,336,5,7,37,13,1,1,28,32,1207,1187,398,351,13,16,47,23,5,4,1581,1496,1136,1114,377,335,5,7,37,13,1,1,25,26,1157,1138,391,346,11,14,46,22,5,2,55,51,48,44,4,1,0,0,0,0,0,0,3,6,50,49,7,5,2,2,1,1,0,2 -050,01,001,Alabama,Autauga County,11,6,3716,1837,1879,1350,1362,410,445,10,11,17,29,4,2,46,30,1388,1386,426,456,28,20,38,42,6,7,1752,1826,1274,1321,409,436,8,10,17,29,1,2,43,28,1309,1343,424,446,24,18,38,42,3,7,85,53,76,41,1,9,2,1,0,0,3,0,3,2,79,43,2,10,4,2,0,0,3,0 -050,01,001,Alabama,Autauga County,11,7,3482,1676,1806,1276,1350,347,398,5,2,25,32,3,6,20,18,1293,1365,350,403,11,10,37,39,5,8,1600,1751,1203,1299,347,397,5,2,24,31,1,4,20,18,1220,1314,350,402,11,10,36,38,3,6,76,55,73,51,0,1,0,0,1,1,2,2,0,0,73,51,0,1,0,0,1,1,2,2 -050,01,001,Alabama,Autauga County,11,8,3632,1776,1856,1359,1342,359,444,9,8,20,39,3,0,26,23,1384,1361,366,452,23,20,30,49,4,4,1685,1789,1283,1282,349,442,9,8,20,39,2,0,22,18,1304,1297,354,448,21,16,27,48,2,4,91,67,76,60,10,2,0,0,0,0,1,0,4,5,80,64,12,4,2,4,3,1,2,0 -050,01,001,Alabama,Autauga County,11,9,3623,1714,1909,1325,1404,335,433,3,10,21,42,3,1,27,19,1350,1422,340,436,23,20,27,51,3,1,1659,1856,1276,1356,332,432,3,8,20,41,2,1,26,18,1300,1374,337,434,22,18,26,49,2,1,55,53,49,48,3,1,0,2,1,1,1,0,1,1,50,48,3,2,1,2,1,2,1,0 -050,01,001,Alabama,Autauga County,11,10,3952,1905,2047,1519,1556,330,434,8,7,28,32,1,3,19,15,1537,1570,334,438,19,17,32,34,2,3,1840,2016,1478,1530,312,430,5,6,28,32,1,3,16,15,1493,1544,315,434,15,16,31,34,2,3,65,31,41,26,18,4,3,1,0,0,0,0,3,0,44,26,19,4,4,1,1,0,0,0 -050,01,001,Alabama,Autauga County,11,11,3806,1859,1947,1499,1512,318,376,12,14,17,27,2,1,11,17,1508,1528,320,379,21,24,19,31,3,2,1829,1899,1474,1483,316,359,9,13,17,26,2,1,11,17,1483,1499,318,362,18,23,19,30,3,2,30,48,25,29,2,17,3,1,0,1,0,0,0,0,25,29,2,17,3,1,0,1,0,0 -050,01,001,Alabama,Autauga County,11,12,3927,1954,1973,1591,1568,319,357,15,12,17,23,1,0,11,13,1602,1580,321,360,21,24,20,24,1,0,1928,1938,1571,1541,316,351,14,11,17,23,1,0,9,12,1580,1552,318,354,19,22,19,24,1,0,26,35,20,27,3,6,1,1,0,0,0,0,2,1,22,28,3,6,2,2,1,0,0,0 -050,01,001,Alabama,Autauga County,11,13,3250,1499,1751,1192,1382,275,331,9,7,10,16,0,0,13,15,1203,1395,279,336,20,18,14,19,1,1,1483,1732,1181,1366,271,331,8,7,10,16,0,0,13,12,1192,1376,275,336,19,17,14,17,1,1,16,19,11,16,4,0,1,0,0,0,0,0,0,3,11,19,4,0,1,1,0,2,0,0 -050,01,001,Alabama,Autauga County,11,14,2602,1243,1359,1033,1063,191,264,9,10,3,10,1,1,6,11,1039,1074,192,266,13,18,4,11,1,1,1226,1346,1018,1051,189,264,9,10,3,10,1,1,6,10,1024,1061,190,266,13,18,4,10,1,1,17,13,15,12,2,0,0,0,0,0,0,0,0,1,15,13,2,0,0,0,0,1,0,0 -050,01,001,Alabama,Autauga County,11,15,2296,1021,1275,872,1063,129,177,3,16,5,9,0,0,12,10,884,1072,130,180,14,24,5,11,0,2,1016,1251,868,1044,128,175,3,15,5,8,0,0,12,9,880,1052,129,177,14,22,5,10,0,2,5,24,4,19,1,2,0,1,0,1,0,0,0,1,4,20,1,3,0,2,0,1,0,0 -050,01,001,Alabama,Autauga County,11,16,1696,707,989,607,849,86,122,6,6,3,5,1,0,4,7,610,854,87,124,9,13,4,5,1,0,700,973,601,834,85,121,6,6,3,5,1,0,4,7,604,839,86,123,9,13,4,5,1,0,7,16,6,15,1,1,0,0,0,0,0,0,0,0,6,15,1,1,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,11,17,1100,484,616,422,529,56,67,0,6,4,11,0,0,2,3,424,532,56,67,1,8,4,12,1,0,478,608,416,522,56,67,0,5,4,11,0,0,2,3,418,525,56,67,1,7,4,12,1,0,6,8,6,7,0,0,0,1,0,0,0,0,0,0,6,7,0,0,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,11,18,873,336,537,305,451,29,74,1,5,0,5,0,0,1,2,305,453,30,75,2,6,0,5,0,0,331,530,300,444,29,74,1,5,0,5,0,0,1,2,300,446,30,75,2,6,0,5,0,0,5,7,5,7,0,0,0,0,0,0,0,0,0,0,5,7,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,12,0,55769,27078,28691,20842,21648,5257,5995,122,144,288,380,32,26,537,498,21333,22104,5538,6267,273,294,440,514,56,47,26194,27922,20107,21009,5189,5920,106,135,279,372,18,21,495,465,20564,21438,5450,6175,236,269,422,496,37,39,884,769,735,639,68,75,16,9,9,8,14,5,42,33,769,666,88,92,37,25,18,18,19,8 -050,01,001,Alabama,Autauga County,12,1,3251,1700,1551,1214,1097,350,354,6,4,32,24,3,3,95,69,1303,1164,421,407,12,9,52,37,8,3,1608,1499,1147,1056,343,347,4,4,26,21,0,3,88,68,1231,1122,411,400,7,9,45,33,3,3,92,52,67,41,7,7,2,0,6,3,3,0,7,1,72,42,10,7,5,0,7,4,5,0 -050,01,001,Alabama,Autauga County,12,2,3461,1782,1679,1284,1187,386,370,11,10,18,27,0,3,83,82,1363,1266,448,433,21,20,36,40,3,5,1697,1612,1209,1133,386,361,8,8,17,27,0,1,77,82,1283,1212,446,424,14,18,34,40,2,3,85,67,75,54,0,9,3,2,1,0,0,2,6,0,80,54,2,9,7,2,2,0,1,2 -050,01,001,Alabama,Autauga County,12,3,3854,1976,1878,1437,1354,446,418,3,9,18,25,2,4,70,68,1505,1419,494,464,10,15,35,48,5,7,1883,1800,1359,1289,439,410,3,9,17,24,0,3,65,65,1422,1352,483,453,8,13,34,46,3,6,93,78,78,65,7,8,0,0,1,1,2,1,5,3,83,67,11,11,2,2,1,2,2,1 -050,01,001,Alabama,Autauga County,12,4,3669,1858,1811,1347,1336,435,402,5,0,18,15,5,3,48,55,1393,1385,465,434,13,12,29,33,8,5,1795,1737,1297,1274,430,399,4,0,18,15,3,3,43,46,1338,1317,458,427,9,6,29,30,5,5,63,74,50,62,5,3,1,0,0,0,2,0,5,9,55,68,7,7,4,6,0,3,3,0 -050,01,001,Alabama,Autauga County,12,5,3183,1634,1549,1190,1146,376,346,3,11,27,14,1,1,37,31,1223,1176,395,364,10,20,42,22,2,2,1573,1498,1138,1103,373,344,3,11,27,14,1,1,31,25,1166,1127,389,358,8,18,40,22,2,1,61,51,52,43,3,2,0,0,0,0,0,0,6,6,57,49,6,6,2,2,2,0,0,1 -050,01,001,Alabama,Autauga County,12,6,3814,1870,1944,1360,1409,432,469,6,9,22,22,3,0,47,35,1400,1439,447,482,20,18,49,43,5,2,1792,1900,1290,1372,430,463,6,9,22,22,0,0,44,34,1327,1401,445,476,19,18,47,42,2,2,78,44,70,37,2,6,0,0,0,0,3,0,3,1,73,38,2,6,1,0,2,1,3,0 -050,01,001,Alabama,Autauga County,12,7,3548,1740,1808,1307,1329,379,426,7,5,20,24,2,3,25,21,1328,1347,384,432,16,11,35,38,3,4,1671,1752,1245,1280,377,421,5,5,19,24,1,2,24,20,1265,1297,382,427,13,10,34,37,2,3,69,56,62,49,2,5,2,0,1,0,1,1,1,1,63,50,2,5,3,1,1,1,1,1 -050,01,001,Alabama,Autauga County,12,8,3663,1762,1901,1359,1371,340,457,9,5,24,40,4,2,26,26,1381,1395,348,466,23,18,33,48,5,3,1671,1830,1278,1309,335,455,9,5,24,39,2,1,23,21,1298,1329,341,461,21,15,33,46,3,1,91,71,81,62,5,2,0,0,0,1,2,1,3,5,83,66,7,5,2,3,0,2,2,2 -050,01,001,Alabama,Autauga County,12,9,3610,1682,1928,1281,1388,350,466,4,10,20,45,4,1,23,18,1299,1401,356,474,17,21,27,49,7,2,1622,1858,1229,1325,344,463,4,8,20,44,3,1,22,17,1247,1337,349,470,17,19,26,48,6,2,60,70,52,63,6,3,0,2,0,1,1,0,1,1,52,64,7,4,0,2,1,1,1,0 -050,01,001,Alabama,Autauga County,12,10,3889,1884,2005,1494,1495,328,450,11,4,33,34,1,3,17,19,1509,1513,333,454,22,16,36,37,2,7,1818,1971,1445,1466,316,446,9,3,33,34,1,3,14,19,1459,1484,319,450,18,15,35,37,1,7,66,34,49,29,12,4,2,1,0,0,0,0,3,0,50,29,14,4,4,1,1,0,1,0 -050,01,001,Alabama,Autauga County,12,11,3780,1863,1917,1498,1480,320,387,15,12,14,22,2,1,14,15,1512,1493,323,391,24,26,16,23,3,2,1817,1879,1465,1459,311,371,11,11,14,22,2,1,14,15,1479,1472,314,375,20,25,16,23,3,2,46,38,33,21,9,16,4,1,0,0,0,0,0,0,33,21,9,16,4,1,0,0,0,0 -050,01,001,Alabama,Autauga County,12,12,3904,1899,2005,1543,1592,314,363,12,12,15,27,3,0,12,11,1554,1602,318,364,20,20,17,29,3,1,1878,1963,1527,1558,312,357,11,12,15,26,3,0,10,10,1536,1567,315,358,18,20,16,27,3,1,21,42,16,34,2,6,1,0,0,1,0,0,2,1,18,35,3,6,2,0,1,2,0,0 -050,01,001,Alabama,Autauga County,12,13,3360,1556,1804,1240,1402,280,357,11,9,10,19,0,0,15,17,1254,1416,281,362,25,20,12,22,0,2,1536,1780,1224,1383,277,356,10,8,10,19,0,0,15,14,1238,1395,278,359,24,19,12,21,0,1,20,24,16,19,3,1,1,1,0,0,0,0,0,3,16,21,3,3,1,1,0,1,0,1 -050,01,001,Alabama,Autauga County,12,14,2722,1311,1411,1058,1110,237,272,7,8,3,9,1,2,5,10,1062,1119,238,275,11,17,4,9,1,2,1294,1400,1044,1100,234,272,7,8,3,9,1,2,5,9,1048,1108,235,275,11,16,4,9,1,2,17,11,14,10,3,0,0,0,0,0,0,0,0,1,14,11,3,0,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,12,15,2282,999,1283,867,1064,109,181,6,17,5,11,0,0,12,10,878,1073,110,183,16,26,7,11,0,0,995,1255,863,1041,109,179,6,16,5,10,0,0,12,9,874,1049,110,181,16,24,7,10,0,0,4,28,4,23,0,2,0,1,0,1,0,0,0,1,4,24,0,2,0,2,0,1,0,0 -050,01,001,Alabama,Autauga County,12,16,1737,730,1007,637,864,81,123,5,8,4,7,0,0,3,5,640,869,81,124,8,11,4,8,0,0,723,992,632,850,79,122,5,8,4,7,0,0,3,5,635,855,79,123,8,11,4,8,0,0,7,15,5,14,2,1,0,0,0,0,0,0,0,0,5,14,2,1,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,12,17,1133,487,646,414,555,62,72,1,6,5,10,1,0,4,3,416,557,64,74,4,7,6,11,1,0,481,638,408,548,62,72,1,5,5,10,1,0,4,3,410,550,64,74,4,6,6,11,1,0,6,8,6,7,0,0,0,1,0,0,0,0,0,0,6,7,0,0,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,12,18,909,345,564,312,469,32,82,0,5,0,5,0,0,1,3,313,470,32,84,1,7,0,6,0,0,340,558,307,463,32,82,0,5,0,5,0,0,1,3,308,464,32,84,1,7,0,6,0,0,5,6,5,6,0,0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,0 -050,01,001,Alabama,Autauga County,13,0,56145,27226,28919,20818,21697,5422,6152,127,139,282,375,33,28,544,528,21331,22185,5690,6442,287,277,446,523,47,54,26290,28114,20050,21029,5335,6073,111,128,272,366,18,22,504,496,20527,21491,5583,6348,251,250,427,499,31,44,936,805,768,668,87,79,16,11,10,9,15,6,40,32,804,694,107,94,36,27,19,24,16,10 -050,01,001,Alabama,Autauga County,13,1,3370,1746,1624,1248,1129,379,382,3,3,29,24,3,3,84,83,1329,1212,440,447,9,7,50,38,5,3,1648,1561,1175,1077,369,374,3,3,23,22,0,3,78,82,1250,1159,426,438,7,7,42,36,2,3,98,63,73,52,10,8,0,0,6,2,3,0,6,1,79,53,14,9,2,0,8,2,3,0 -050,01,001,Alabama,Autauga County,13,2,3488,1777,1711,1278,1217,392,371,12,9,20,28,0,4,75,82,1350,1297,447,433,17,13,37,46,1,6,1693,1634,1205,1153,388,364,7,7,20,27,0,2,73,81,1275,1232,442,426,11,10,37,45,1,4,84,77,73,64,4,7,5,2,0,1,0,2,2,1,75,65,5,7,6,3,0,1,0,2 -050,01,001,Alabama,Autauga County,13,3,3816,1952,1864,1389,1331,464,430,7,11,15,21,2,2,75,69,1463,1395,516,477,18,17,35,40,2,5,1870,1777,1321,1259,457,421,7,11,13,20,0,1,72,65,1392,1319,507,467,17,14,33,39,0,4,82,87,68,72,7,9,0,0,2,1,2,1,3,4,71,76,9,10,1,3,2,1,2,1 -050,01,001,Alabama,Autauga County,13,4,3602,1812,1790,1300,1308,430,397,7,2,21,25,4,6,50,52,1348,1357,459,427,17,11,35,44,7,10,1735,1722,1241,1253,425,392,6,2,20,24,2,5,41,46,1281,1296,451,419,10,7,32,39,4,8,77,68,59,55,5,5,1,0,1,1,2,1,9,6,67,61,8,8,7,4,3,5,3,2 -050,01,001,Alabama,Autauga County,13,5,3132,1606,1526,1170,1105,358,363,3,5,29,11,3,0,43,42,1210,1144,381,386,16,13,44,27,4,4,1547,1473,1122,1057,355,360,3,5,29,11,2,0,36,40,1157,1094,374,381,12,12,42,27,3,4,59,53,48,48,3,3,0,0,0,0,1,0,7,2,53,50,7,5,4,1,2,0,1,0 -050,01,001,Alabama,Autauga County,13,6,3816,1897,1919,1394,1411,441,457,6,10,10,15,3,1,43,25,1434,1431,453,470,21,16,36,24,6,3,1808,1877,1314,1375,438,454,6,9,10,15,0,1,40,23,1352,1394,449,465,19,15,34,23,3,3,89,42,80,36,3,3,0,1,0,0,3,0,3,2,82,37,4,5,2,1,2,1,3,0 -050,01,001,Alabama,Autauga County,13,7,3666,1758,1908,1314,1415,376,427,7,8,24,28,2,3,35,27,1343,1439,385,439,15,19,46,42,4,3,1686,1837,1253,1352,370,422,5,7,23,28,1,2,34,26,1281,1375,379,434,12,17,45,42,3,2,72,71,61,63,6,5,2,1,1,0,1,1,1,1,62,64,6,5,3,2,1,0,1,1 -050,01,001,Alabama,Autauga County,13,8,3773,1840,1933,1413,1387,363,471,6,6,24,41,4,2,30,26,1439,1412,369,476,20,17,37,55,5,5,1728,1867,1315,1331,353,468,6,6,24,40,2,1,28,21,1339,1352,358,470,19,16,37,49,3,2,112,66,98,56,10,3,0,0,0,1,2,1,2,5,100,60,11,6,1,1,0,6,2,3 -050,01,001,Alabama,Autauga County,13,9,3595,1706,1889,1291,1339,367,476,5,8,21,43,3,2,19,21,1309,1357,370,483,17,19,25,49,4,2,1648,1821,1241,1281,361,472,5,6,21,42,2,2,18,18,1258,1297,364,477,16,16,25,47,3,2,58,68,50,58,6,4,0,2,0,1,1,0,1,3,51,60,6,6,1,3,0,2,1,0 -050,01,001,Alabama,Autauga County,13,10,3792,1827,1965,1389,1421,375,478,10,7,31,35,2,2,20,22,1408,1441,380,484,20,19,37,42,2,3,1761,1930,1335,1392,367,474,10,6,31,35,2,2,16,21,1350,1411,369,480,20,17,36,42,2,3,66,35,54,29,8,4,0,1,0,0,0,0,4,1,58,30,11,4,0,2,1,0,0,0 -050,01,001,Alabama,Autauga County,13,11,3646,1796,1850,1449,1423,302,384,13,9,17,19,2,1,13,14,1461,1434,306,388,21,20,19,20,2,3,1744,1816,1413,1407,289,367,10,8,17,19,2,1,13,14,1425,1418,293,371,18,19,19,20,2,3,52,34,36,16,13,17,3,1,0,0,0,0,0,0,36,16,13,17,3,1,0,0,0,0 -050,01,001,Alabama,Autauga County,13,12,3910,1920,1990,1528,1587,347,361,14,12,12,20,3,0,16,10,1544,1597,348,364,27,18,14,23,3,0,1896,1943,1513,1548,344,355,10,12,12,19,3,0,14,9,1527,1557,344,358,22,18,14,21,3,0,24,47,15,39,3,6,4,0,0,1,0,0,2,1,17,40,4,6,5,0,0,2,0,0 -050,01,001,Alabama,Autauga County,13,13,3457,1594,1863,1301,1432,260,382,13,11,8,19,0,0,12,19,1312,1446,263,388,23,24,8,22,0,2,1568,1841,1280,1415,256,380,12,10,8,19,0,0,12,17,1291,1428,259,385,22,21,8,22,0,2,26,22,21,17,4,2,1,1,0,0,0,0,0,2,21,18,4,3,1,3,0,0,0,0 -050,01,001,Alabama,Autauga County,13,14,2806,1360,1446,1076,1150,262,267,9,6,5,12,1,1,7,10,1083,1159,264,268,15,11,5,16,1,2,1343,1429,1062,1135,259,267,9,6,5,12,1,1,7,8,1069,1143,261,268,15,10,5,14,1,2,17,17,14,15,3,0,0,0,0,0,0,0,0,2,14,16,3,0,0,1,0,2,0,0 -050,01,001,Alabama,Autauga County,13,15,2406,1035,1371,888,1117,123,218,5,11,7,11,0,1,12,13,900,1127,124,220,16,22,7,12,0,3,1031,1350,884,1100,123,216,5,10,7,11,0,1,12,12,896,1110,124,218,16,21,7,11,0,2,4,21,4,17,0,2,0,1,0,0,0,0,0,1,4,17,0,2,0,1,0,1,0,1 -050,01,001,Alabama,Autauga County,13,16,1803,751,1052,658,897,81,134,4,10,4,7,0,0,4,4,662,901,81,135,8,13,4,7,0,0,745,1034,654,880,79,134,4,10,4,6,0,0,4,4,658,884,79,135,8,13,4,6,0,0,6,18,4,17,2,0,0,0,0,1,0,0,0,0,4,17,2,0,0,0,0,1,0,0 -050,01,001,Alabama,Autauga County,13,17,1140,496,644,414,542,70,81,3,5,4,11,1,0,4,5,417,547,71,83,6,8,5,11,1,0,489,634,407,534,70,80,3,4,4,11,1,0,4,5,410,539,71,82,6,7,5,11,1,0,7,10,7,8,0,1,0,1,0,0,0,0,0,0,7,8,0,1,0,1,0,0,0,0 -050,01,001,Alabama,Autauga County,13,18,927,353,574,318,486,32,73,0,6,1,5,0,0,2,4,319,489,33,74,1,10,2,5,0,0,350,568,315,480,32,73,0,6,1,5,0,0,2,4,316,483,33,74,1,10,2,5,0,0,3,6,3,6,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,1,0,182265,89196,93069,78334,81376,8396,8878,662,677,540,829,72,49,1192,1260,79452,82576,8804,9327,1295,1346,783,1072,127,84,84771,89502,74314,78160,8268,8754,558,592,532,817,47,39,1052,1140,75299,79251,8648,9173,1106,1183,729,1024,82,58,4425,3567,4020,3216,128,124,104,85,8,12,25,10,140,120,4153,3325,156,154,189,163,54,48,45,26 -050,01,003,Alabama,Baldwin County,1,1,11158,5614,5544,4666,4636,673,616,30,42,39,41,5,2,201,207,4865,4837,798,753,75,88,83,82,10,9,5065,5046,4170,4179,656,606,22,34,39,41,3,1,175,185,4343,4360,773,736,57,67,72,73,6,5,549,498,496,457,17,10,8,8,0,0,2,1,26,22,522,477,25,17,18,21,11,9,4,4 -050,01,003,Alabama,Baldwin County,1,2,11599,5832,5767,4959,4885,630,611,50,38,31,64,7,3,155,166,5112,5045,719,710,90,83,61,95,14,9,5430,5383,4601,4539,617,600,38,30,31,64,5,2,138,148,4737,4681,699,693,73,65,55,92,9,5,402,384,358,346,13,11,12,8,0,0,2,1,17,18,375,364,20,17,17,18,6,3,5,4 -050,01,003,Alabama,Baldwin County,1,3,11926,6076,5850,5128,4856,709,725,51,53,59,61,2,6,127,149,5250,5000,767,798,96,113,89,89,6,7,5743,5546,4829,4592,693,709,46,46,58,59,1,5,116,135,4941,4722,747,777,84,97,84,85,5,6,333,304,299,264,16,16,5,7,1,2,1,1,11,14,309,278,20,21,12,16,5,4,1,1 -050,01,003,Alabama,Baldwin County,1,4,11600,5930,5670,4860,4636,863,818,53,50,47,64,6,7,101,95,4951,4723,900,854,103,94,75,93,11,7,5604,5407,4562,4412,855,805,49,40,46,62,2,3,90,85,4643,4490,891,838,91,77,72,86,4,3,326,263,298,224,8,13,4,10,1,2,4,4,11,10,308,233,9,16,12,17,3,7,7,4 -050,01,003,Alabama,Baldwin County,1,5,9449,4793,4656,3991,3830,645,660,39,33,39,69,15,1,64,63,4052,3889,662,678,70,70,55,83,19,4,4270,4341,3516,3542,630,643,23,27,39,69,10,1,52,59,3565,3598,646,661,45,60,55,82,12,4,523,315,475,288,15,17,16,6,0,0,5,0,12,4,487,291,16,17,25,10,0,1,7,0 -050,01,003,Alabama,Baldwin County,1,6,10247,5183,5064,4425,4362,617,543,34,43,32,54,10,2,65,60,4486,4418,631,561,74,73,51,72,17,9,4659,4719,3949,4040,605,538,20,32,31,53,8,2,46,54,3992,4090,616,554,47,60,42,68,10,4,524,345,476,322,12,5,14,11,1,1,2,0,19,6,494,328,15,7,27,13,9,4,7,5 -050,01,003,Alabama,Baldwin County,1,7,10709,5317,5392,4615,4667,546,543,42,47,42,59,8,8,64,68,4673,4728,558,565,84,89,62,73,10,9,4859,5065,4193,4368,536,532,29,39,42,58,6,7,53,61,4240,4423,548,554,63,74,56,71,7,8,458,327,422,299,10,11,13,8,0,1,2,1,11,7,433,305,10,11,21,15,6,2,3,1 -050,01,003,Alabama,Baldwin County,1,8,11558,5725,5833,5051,5065,508,572,44,33,54,78,8,2,60,83,5101,5143,517,585,83,85,74,104,13,4,5387,5570,4738,4823,500,563,40,33,54,78,4,1,51,72,4780,4892,508,573,74,79,71,101,8,1,338,263,313,242,8,9,4,0,0,0,4,1,9,11,321,251,9,12,9,6,3,3,5,3 -050,01,003,Alabama,Baldwin County,1,9,11995,5895,6100,5239,5324,500,562,40,63,55,86,5,5,56,60,5291,5382,506,567,87,111,60,96,7,5,5618,5895,4985,5150,487,554,35,51,55,84,3,5,53,51,5035,5200,493,558,81,92,57,92,5,5,277,205,254,174,13,8,5,12,0,2,2,0,3,9,256,182,13,9,6,19,3,4,2,0 -050,01,003,Alabama,Baldwin County,1,10,13431,6622,6809,5822,5924,642,699,62,59,36,66,0,5,60,56,5879,5979,646,705,114,104,40,77,3,7,6415,6614,5640,5742,639,693,50,58,34,65,0,4,52,52,5690,5793,642,699,96,99,37,74,2,5,207,195,182,182,3,6,12,1,2,1,0,1,8,4,189,186,4,6,18,5,3,3,1,2 -050,01,003,Alabama,Baldwin County,1,11,13490,6425,7065,5671,6236,601,655,54,56,34,46,2,4,63,68,5729,6301,610,663,103,111,45,53,3,7,6246,6916,5508,6105,597,648,49,51,33,46,1,4,58,62,5561,6165,606,654,93,103,44,51,2,6,179,149,163,131,4,7,5,5,1,0,1,0,5,6,168,136,4,9,10,8,1,2,1,1 -050,01,003,Alabama,Baldwin County,1,12,12523,5943,6580,5347,5870,474,562,41,48,27,47,1,0,53,53,5388,5919,486,567,84,92,36,54,5,1,5839,6489,5254,5790,471,559,39,45,26,46,1,0,48,49,5291,5835,482,564,77,86,34,52,4,1,104,91,93,80,3,3,2,3,1,1,0,0,5,4,97,84,4,3,7,6,2,2,1,0 -050,01,003,Alabama,Baldwin County,1,13,12012,5728,6284,5279,5780,350,393,42,40,18,24,2,2,37,45,5313,5824,356,397,73,83,22,24,2,2,5632,6208,5188,5713,348,390,41,36,17,24,2,2,36,43,5221,5755,354,394,71,77,21,24,2,2,96,76,91,67,2,3,1,4,1,0,0,0,1,2,92,69,2,3,2,6,1,0,0,0 -050,01,003,Alabama,Baldwin County,1,14,10174,4895,5279,4535,4900,261,291,47,26,15,24,0,2,37,36,4569,4933,264,295,80,57,16,28,3,2,4850,5222,4496,4849,258,288,45,25,15,24,0,2,36,34,4529,4881,261,291,77,55,16,27,3,2,45,57,39,51,3,3,2,1,0,0,0,0,1,2,40,52,3,4,3,2,0,1,0,0 -050,01,003,Alabama,Baldwin County,1,15,7629,3663,3966,3456,3678,165,238,17,18,4,14,0,0,21,18,3476,3696,170,239,37,35,5,15,2,0,3637,3936,3431,3649,165,237,17,18,4,14,0,0,20,18,3450,3667,169,238,36,35,4,15,1,0,26,30,25,29,0,1,0,0,0,0,0,0,1,0,26,29,1,1,1,0,1,0,1,0 -050,01,003,Alabama,Baldwin County,1,16,5598,2644,2954,2503,2750,107,158,11,14,3,22,1,0,19,10,2522,2759,108,158,29,22,4,24,1,1,2630,2927,2490,2726,107,157,10,13,3,22,1,0,19,9,2509,2735,108,157,28,21,4,23,1,0,14,27,13,24,0,1,1,1,0,0,0,0,0,1,13,24,0,1,1,1,0,1,0,1 -050,01,003,Alabama,Baldwin County,1,17,3934,1735,2199,1662,2051,64,122,1,9,4,6,0,0,4,11,1666,2062,64,122,4,20,4,6,1,0,1724,2174,1652,2027,63,122,1,9,4,5,0,0,4,11,1656,2038,63,122,4,20,4,5,1,0,11,25,10,24,1,0,0,0,0,1,0,0,0,0,10,24,1,0,0,0,0,1,0,0 -050,01,003,Alabama,Baldwin County,1,18,3233,1176,2057,1125,1926,41,110,4,5,1,4,0,0,5,12,1129,1938,42,110,9,16,1,4,0,1,1163,2044,1112,1914,41,110,4,5,1,3,0,0,5,12,1116,1926,42,110,9,16,1,3,0,1,13,13,13,12,0,0,0,0,0,1,0,0,0,0,13,12,0,0,0,0,0,1,0,0 -050,01,003,Alabama,Baldwin County,2,0,182263,89195,93068,78333,81375,8396,8878,662,677,540,829,72,49,1192,1260,79451,82575,8804,9327,1295,1346,783,1072,127,84,84770,89501,74313,78159,8268,8754,558,592,532,817,47,39,1052,1140,75298,79250,8648,9173,1106,1183,729,1024,82,58,4425,3567,4020,3216,128,124,104,85,8,12,25,10,140,120,4153,3325,156,154,189,163,54,48,45,26 -050,01,003,Alabama,Baldwin County,2,1,11158,5614,5544,4666,4636,673,616,30,42,39,41,5,2,201,207,4865,4837,798,753,75,88,83,82,10,9,5065,5046,4170,4179,656,606,22,34,39,41,3,1,175,185,4343,4360,773,736,57,67,72,73,6,5,549,498,496,457,17,10,8,8,0,0,2,1,26,22,522,477,25,17,18,21,11,9,4,4 -050,01,003,Alabama,Baldwin County,2,2,11599,5832,5767,4959,4885,630,611,50,38,31,64,7,3,155,166,5112,5045,719,710,90,83,61,95,14,9,5430,5383,4601,4539,617,600,38,30,31,64,5,2,138,148,4737,4681,699,693,73,65,55,92,9,5,402,384,358,346,13,11,12,8,0,0,2,1,17,18,375,364,20,17,17,18,6,3,5,4 -050,01,003,Alabama,Baldwin County,2,3,11926,6076,5850,5128,4856,709,725,51,53,59,61,2,6,127,149,5250,5000,767,798,96,113,89,89,6,7,5743,5546,4829,4592,693,709,46,46,58,59,1,5,116,135,4941,4722,747,777,84,97,84,85,5,6,333,304,299,264,16,16,5,7,1,2,1,1,11,14,309,278,20,21,12,16,5,4,1,1 -050,01,003,Alabama,Baldwin County,2,4,11600,5930,5670,4860,4636,863,818,53,50,47,64,6,7,101,95,4951,4723,900,854,103,94,75,93,11,7,5604,5407,4562,4412,855,805,49,40,46,62,2,3,90,85,4643,4490,891,838,91,77,72,86,4,3,326,263,298,224,8,13,4,10,1,2,4,4,11,10,308,233,9,16,12,17,3,7,7,4 -050,01,003,Alabama,Baldwin County,2,5,9449,4793,4656,3991,3830,645,660,39,33,39,69,15,1,64,63,4052,3889,662,678,70,70,55,83,19,4,4270,4341,3516,3542,630,643,23,27,39,69,10,1,52,59,3565,3598,646,661,45,60,55,82,12,4,523,315,475,288,15,17,16,6,0,0,5,0,12,4,487,291,16,17,25,10,0,1,7,0 -050,01,003,Alabama,Baldwin County,2,6,10247,5183,5064,4425,4362,617,543,34,43,32,54,10,2,65,60,4486,4418,631,561,74,73,51,72,17,9,4659,4719,3949,4040,605,538,20,32,31,53,8,2,46,54,3992,4090,616,554,47,60,42,68,10,4,524,345,476,322,12,5,14,11,1,1,2,0,19,6,494,328,15,7,27,13,9,4,7,5 -050,01,003,Alabama,Baldwin County,2,7,10709,5317,5392,4615,4667,546,543,42,47,42,59,8,8,64,68,4673,4728,558,565,84,89,62,73,10,9,4859,5065,4193,4368,536,532,29,39,42,58,6,7,53,61,4240,4423,548,554,63,74,56,71,7,8,458,327,422,299,10,11,13,8,0,1,2,1,11,7,433,305,10,11,21,15,6,2,3,1 -050,01,003,Alabama,Baldwin County,2,8,11558,5725,5833,5051,5065,508,572,44,33,54,78,8,2,60,83,5101,5143,517,585,83,85,74,104,13,4,5387,5570,4738,4823,500,563,40,33,54,78,4,1,51,72,4780,4892,508,573,74,79,71,101,8,1,338,263,313,242,8,9,4,0,0,0,4,1,9,11,321,251,9,12,9,6,3,3,5,3 -050,01,003,Alabama,Baldwin County,2,9,11995,5895,6100,5239,5324,500,562,40,63,55,86,5,5,56,60,5291,5382,506,567,87,111,60,96,7,5,5618,5895,4985,5150,487,554,35,51,55,84,3,5,53,51,5035,5200,493,558,81,92,57,92,5,5,277,205,254,174,13,8,5,12,0,2,2,0,3,9,256,182,13,9,6,19,3,4,2,0 -050,01,003,Alabama,Baldwin County,2,10,13431,6622,6809,5822,5924,642,699,62,59,36,66,0,5,60,56,5879,5979,646,705,114,104,40,77,3,7,6415,6614,5640,5742,639,693,50,58,34,65,0,4,52,52,5690,5793,642,699,96,99,37,74,2,5,207,195,182,182,3,6,12,1,2,1,0,1,8,4,189,186,4,6,18,5,3,3,1,2 -050,01,003,Alabama,Baldwin County,2,11,13490,6425,7065,5671,6236,601,655,54,56,34,46,2,4,63,68,5729,6301,610,663,103,111,45,53,3,7,6246,6916,5508,6105,597,648,49,51,33,46,1,4,58,62,5561,6165,606,654,93,103,44,51,2,6,179,149,163,131,4,7,5,5,1,0,1,0,5,6,168,136,4,9,10,8,1,2,1,1 -050,01,003,Alabama,Baldwin County,2,12,12523,5943,6580,5347,5870,474,562,41,48,27,47,1,0,53,53,5388,5919,486,567,84,92,36,54,5,1,5839,6489,5254,5790,471,559,39,45,26,46,1,0,48,49,5291,5835,482,564,77,86,34,52,4,1,104,91,93,80,3,3,2,3,1,1,0,0,5,4,97,84,4,3,7,6,2,2,1,0 -050,01,003,Alabama,Baldwin County,2,13,12011,5728,6283,5279,5779,350,393,42,40,18,24,2,2,37,45,5313,5823,356,397,73,83,22,24,2,2,5632,6207,5188,5712,348,390,41,36,17,24,2,2,36,43,5221,5754,354,394,71,77,21,24,2,2,96,76,91,67,2,3,1,4,1,0,0,0,1,2,92,69,2,3,2,6,1,0,0,0 -050,01,003,Alabama,Baldwin County,2,14,10173,4894,5279,4534,4900,261,291,47,26,15,24,0,2,37,36,4568,4933,264,295,80,57,16,28,3,2,4849,5222,4495,4849,258,288,45,25,15,24,0,2,36,34,4528,4881,261,291,77,55,16,27,3,2,45,57,39,51,3,3,2,1,0,0,0,0,1,2,40,52,3,4,3,2,0,1,0,0 -050,01,003,Alabama,Baldwin County,2,15,7629,3663,3966,3456,3678,165,238,17,18,4,14,0,0,21,18,3476,3696,170,239,37,35,5,15,2,0,3637,3936,3431,3649,165,237,17,18,4,14,0,0,20,18,3450,3667,169,238,36,35,4,15,1,0,26,30,25,29,0,1,0,0,0,0,0,0,1,0,26,29,1,1,1,0,1,0,1,0 -050,01,003,Alabama,Baldwin County,2,16,5598,2644,2954,2503,2750,107,158,11,14,3,22,1,0,19,10,2522,2759,108,158,29,22,4,24,1,1,2630,2927,2490,2726,107,157,10,13,3,22,1,0,19,9,2509,2735,108,157,28,21,4,23,1,0,14,27,13,24,0,1,1,1,0,0,0,0,0,1,13,24,0,1,1,1,0,1,0,1 -050,01,003,Alabama,Baldwin County,2,17,3934,1735,2199,1662,2051,64,122,1,9,4,6,0,0,4,11,1666,2062,64,122,4,20,4,6,1,0,1724,2174,1652,2027,63,122,1,9,4,5,0,0,4,11,1656,2038,63,122,4,20,4,5,1,0,11,25,10,24,1,0,0,0,0,1,0,0,0,0,10,24,1,0,0,0,0,1,0,0 -050,01,003,Alabama,Baldwin County,2,18,3233,1176,2057,1125,1926,41,110,4,5,1,4,0,0,5,12,1129,1938,42,110,9,16,1,4,0,1,1163,2044,1112,1914,41,110,4,5,1,3,0,0,5,12,1116,1926,42,110,9,16,1,3,0,1,13,13,13,12,0,0,0,0,0,1,0,0,0,0,13,12,0,0,0,0,0,1,0,0 -050,01,003,Alabama,Baldwin County,3,0,183121,89623,93498,78721,81759,8419,8910,663,671,549,832,74,54,1197,1272,79837,82937,8849,9410,1308,1338,793,1087,124,117,85175,89886,74681,78498,8290,8782,561,594,542,820,48,44,1053,1148,75669,79575,8666,9221,1120,1190,755,1044,81,83,4448,3612,4040,3261,129,128,102,77,7,12,26,10,144,124,4168,3362,183,189,188,148,38,43,43,34 -050,01,003,Alabama,Baldwin County,3,1,11156,5617,5539,4675,4620,662,621,30,43,38,42,7,2,205,211,4870,4825,790,759,82,91,83,91,16,11,5070,5033,4179,4156,646,610,22,35,38,42,5,1,180,189,4350,4340,762,734,61,71,78,84,11,6,547,506,496,464,16,11,8,8,0,0,2,1,25,22,520,485,28,25,21,20,5,7,5,5 -050,01,003,Alabama,Baldwin County,3,2,11620,5851,5769,4976,4890,636,611,50,36,30,60,6,3,153,169,5121,5053,725,704,96,86,64,93,12,9,5446,5385,4611,4542,627,600,38,30,30,60,4,2,136,151,4742,4690,708,685,75,71,62,91,8,6,405,384,365,348,9,11,12,6,0,0,2,1,17,18,379,363,17,19,21,15,2,2,4,3 -050,01,003,Alabama,Baldwin County,3,3,12020,6127,5893,5165,4902,715,727,55,49,62,61,3,6,127,148,5284,5044,778,804,102,108,91,94,8,14,5792,5576,4866,4626,699,711,49,42,61,59,1,5,116,133,4976,4754,758,779,89,91,87,88,5,11,335,317,299,276,16,16,6,7,1,2,2,1,11,15,308,290,20,25,13,17,4,6,3,3 -050,01,003,Alabama,Baldwin County,3,4,11618,5936,5682,4874,4641,855,819,52,52,50,62,6,8,99,100,4961,4732,898,870,99,93,74,86,8,13,5607,5417,4572,4416,847,804,48,43,49,60,2,5,89,89,4651,4498,886,848,89,80,71,80,3,7,329,265,302,225,8,15,4,9,1,2,4,3,10,11,310,234,12,22,10,13,3,6,5,6 -050,01,003,Alabama,Baldwin County,3,5,9564,4843,4721,4028,3888,651,665,41,31,45,70,14,3,64,64,4090,3945,666,688,75,62,61,86,16,9,4333,4410,3567,3600,636,651,24,27,45,70,9,2,52,60,3617,3654,650,673,51,55,57,86,11,7,510,311,461,288,15,14,17,4,0,0,5,1,12,4,473,291,16,15,24,7,4,0,5,2 -050,01,003,Alabama,Baldwin County,3,6,10282,5198,5084,4442,4372,619,548,30,43,31,57,11,2,65,62,4500,4425,639,571,68,76,47,73,15,5,4672,4737,3962,4048,606,542,19,34,30,56,9,2,46,55,4002,4098,618,560,44,62,44,71,12,4,526,347,480,324,13,6,11,9,1,1,2,0,19,7,498,327,21,11,24,14,3,2,3,1 -050,01,003,Alabama,Baldwin County,3,7,10803,5355,5448,4648,4715,554,551,42,47,41,58,8,9,62,68,4705,4776,569,569,83,88,57,78,9,10,4889,5116,4219,4412,543,541,30,38,41,57,6,8,50,60,4265,4466,556,557,61,72,55,77,6,8,466,332,429,303,11,10,12,9,0,1,2,1,12,8,440,310,13,12,22,16,2,1,3,2 -050,01,003,Alabama,Baldwin County,3,8,11506,5706,5800,5037,5039,506,566,42,36,52,78,8,1,61,80,5093,5111,518,583,81,88,65,98,13,6,5361,5526,4719,4787,497,556,38,35,52,78,4,0,51,70,4767,4850,505,569,72,81,64,96,7,4,345,274,318,252,9,10,4,1,0,0,4,1,10,10,326,261,13,14,9,7,1,2,6,2 -050,01,003,Alabama,Baldwin County,3,9,12075,5936,6139,5271,5361,506,563,40,62,56,88,5,6,58,59,5327,5416,517,574,84,112,65,96,8,7,5658,5933,5018,5184,493,555,35,51,56,86,3,6,53,51,5070,5233,500,564,78,94,64,93,5,6,278,206,253,177,13,8,5,11,0,2,2,0,5,8,257,183,17,10,6,18,1,3,3,1 -050,01,003,Alabama,Baldwin County,3,10,13431,6619,6812,5829,5931,632,693,60,57,36,68,0,6,62,57,5885,5983,640,703,114,101,44,76,1,12,6409,6614,5643,5748,628,686,50,56,35,67,0,5,53,52,5691,5796,634,695,97,97,41,73,0,7,210,198,186,183,4,7,10,1,1,1,0,1,9,5,194,187,6,8,17,4,3,3,1,5 -050,01,003,Alabama,Baldwin County,3,11,13551,6451,7100,5689,6258,607,667,55,57,35,45,2,3,63,70,5748,6319,612,682,107,114,45,55,4,7,6272,6952,5528,6129,602,660,49,52,34,45,1,3,58,63,5582,6187,607,670,98,106,42,52,3,4,179,148,161,129,5,7,6,5,1,0,1,0,5,7,166,132,5,12,9,8,3,3,1,3 -050,01,003,Alabama,Baldwin County,3,12,12636,5997,6639,5397,5928,477,560,41,49,26,48,1,1,55,53,5445,5976,486,569,85,93,34,54,7,2,5888,6541,5301,5844,473,555,38,46,25,47,1,1,50,48,5346,5887,479,562,79,89,30,51,4,2,109,98,96,84,4,5,3,3,1,1,0,0,5,5,99,89,7,7,6,4,4,3,3,0 -050,01,003,Alabama,Baldwin County,3,13,12090,5779,6311,5322,5803,361,402,40,37,19,23,2,2,35,44,5354,5840,366,409,71,75,21,28,3,5,5685,6237,5232,5736,360,399,39,35,18,23,2,2,34,42,5263,5772,364,406,70,73,20,26,3,4,94,74,90,67,1,3,1,2,1,0,0,0,1,2,91,68,2,3,1,2,1,2,0,1 -050,01,003,Alabama,Baldwin County,3,14,10222,4909,5313,4544,4933,262,291,50,25,14,25,0,2,39,37,4582,4967,264,297,84,58,18,29,1,5,4859,5255,4503,4881,258,288,47,24,14,25,0,2,37,35,4539,4914,260,293,80,56,17,28,1,5,50,58,41,52,4,3,3,1,0,0,0,0,2,2,43,53,4,4,4,2,1,1,0,0 -050,01,003,Alabama,Baldwin County,3,15,7705,3699,4006,3490,3726,165,231,18,18,5,14,0,0,21,17,3511,3742,168,231,35,34,9,15,1,1,3672,3975,3464,3696,165,230,18,18,5,14,0,0,20,17,3484,3712,167,230,34,34,8,15,0,1,27,31,26,30,0,1,0,0,0,0,0,0,1,0,27,30,1,1,1,0,1,0,1,0 -050,01,003,Alabama,Baldwin County,3,16,5616,2655,2961,2511,2755,108,162,12,14,3,21,1,0,20,9,2531,2763,108,163,30,23,5,21,1,0,2642,2936,2498,2732,108,161,12,13,3,21,1,0,20,9,2518,2740,108,162,30,22,5,21,1,0,13,25,13,23,0,1,0,1,0,0,0,0,0,0,13,23,0,1,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,3,17,3970,1761,2209,1688,2059,64,121,1,10,5,8,0,0,3,11,1691,2069,65,122,3,20,7,9,1,0,1749,2185,1677,2036,63,121,1,10,5,7,0,0,3,11,1680,2046,64,122,3,20,7,8,1,0,12,24,11,23,1,0,0,0,0,1,0,0,0,0,11,23,1,0,0,0,0,1,0,0 -050,01,003,Alabama,Baldwin County,3,18,3256,1184,2072,1135,1938,39,112,4,5,1,4,0,0,5,13,1139,1951,40,112,9,16,3,5,0,1,1171,2058,1122,1925,39,112,4,5,1,3,0,0,5,13,1126,1938,40,112,9,16,3,4,0,1,13,14,13,13,0,0,0,0,0,1,0,0,0,0,13,13,0,0,0,0,0,1,0,0 -050,01,003,Alabama,Baldwin County,4,0,186579,91199,95380,80073,83397,8495,9025,687,686,596,851,64,59,1284,1362,81275,84658,8960,9539,1358,1380,854,1132,123,136,86747,91614,76044,79990,8371,8899,587,609,586,838,42,47,1117,1231,77094,81139,8774,9367,1160,1223,815,1084,82,104,4452,3766,4029,3407,124,126,100,77,10,13,22,12,167,131,4181,3519,186,172,198,157,39,48,41,32 -050,01,003,Alabama,Baldwin County,4,1,11243,5695,5548,4704,4615,681,621,36,47,40,39,4,3,230,223,4922,4828,820,760,87,98,92,83,19,12,5155,5009,4222,4126,667,605,25,39,39,39,2,1,200,199,4412,4318,793,734,62,79,86,78,12,6,540,539,482,489,14,16,11,8,1,0,2,2,30,24,510,510,27,26,25,19,6,5,7,6 -050,01,003,Alabama,Baldwin County,4,2,11762,5921,5841,5013,4944,667,600,40,34,29,64,3,4,169,195,5176,5128,761,711,92,89,70,107,9,14,5506,5461,4641,4595,655,594,33,29,29,64,3,3,145,176,4783,4763,739,696,70,73,67,103,7,11,415,380,372,349,12,6,7,5,0,0,0,1,24,19,393,365,22,15,22,16,3,4,2,3 -050,01,003,Alabama,Baldwin County,4,3,12286,6298,5988,5295,5003,723,722,60,46,80,63,2,7,138,147,5428,5142,793,792,108,103,114,99,8,15,5934,5629,4970,4689,707,706,52,37,79,61,0,6,126,130,5091,4812,771,771,93,82,110,91,4,11,364,359,325,314,16,16,8,9,1,2,2,1,12,17,337,330,22,21,15,21,4,8,4,4 -050,01,003,Alabama,Baldwin County,4,4,11608,5908,5700,4893,4677,791,794,58,56,54,53,4,7,108,113,4991,4780,839,847,106,104,79,84,9,11,5582,5439,4598,4449,783,779,51,51,52,52,2,6,96,102,4686,4543,827,826,92,91,75,78,6,10,326,261,295,228,8,15,7,5,2,1,2,1,12,11,305,237,12,21,14,13,4,6,3,1 -050,01,003,Alabama,Baldwin County,4,5,9945,4964,4981,4073,4081,702,701,43,26,60,87,12,7,74,79,4144,4149,728,732,86,61,77,111,15,14,4538,4682,3689,3805,689,694,33,23,60,85,7,3,60,72,3747,3866,712,724,67,54,74,106,8,10,426,299,384,276,13,7,10,3,0,2,5,4,14,7,397,283,16,8,19,7,3,5,7,4 -050,01,003,Alabama,Baldwin County,4,6,10409,5298,5111,4541,4380,597,563,36,43,40,60,12,0,72,65,4610,4439,615,584,78,73,54,78,15,3,4761,4763,4051,4055,582,554,25,35,40,60,10,0,53,59,4101,4108,594,572,56,63,52,77,13,2,537,348,490,325,15,9,11,8,0,0,2,0,19,6,509,331,21,12,22,10,2,1,2,1 -050,01,003,Alabama,Baldwin County,4,7,11138,5492,5646,4780,4875,561,585,36,51,47,58,7,8,61,69,4837,4939,576,605,71,91,61,75,11,15,5056,5309,4385,4569,551,577,23,40,46,56,6,7,45,60,4428,4626,560,596,48,74,58,72,8,11,436,337,395,306,10,8,13,11,1,2,1,1,16,9,409,313,16,9,23,17,3,3,3,4 -050,01,003,Alabama,Baldwin County,4,8,11180,5516,5664,4877,4913,491,555,40,42,42,71,7,1,59,82,4927,4985,505,575,81,97,56,90,12,9,5146,5362,4529,4637,484,544,37,37,42,71,3,0,51,73,4572,4703,493,561,72,87,55,88,7,5,370,302,348,276,7,11,3,5,0,0,4,1,8,9,355,282,12,14,9,10,1,2,5,4 -050,01,003,Alabama,Baldwin County,4,9,12491,6147,6344,5456,5557,521,576,43,50,57,92,6,6,64,63,5515,5613,531,587,90,97,68,100,9,10,5850,6126,5185,5364,512,565,37,43,56,91,3,6,57,57,5238,5416,519,574,82,86,65,98,4,9,297,218,271,193,9,11,6,7,1,1,3,0,7,6,277,197,12,13,8,11,3,2,5,1 -050,01,003,Alabama,Baldwin County,4,10,13174,6452,6722,5721,5866,571,656,60,60,38,74,1,8,61,58,5774,5916,579,667,109,107,47,87,4,13,6227,6512,5518,5674,568,651,51,56,37,73,1,7,52,51,5565,5720,573,660,95,98,44,81,2,9,225,210,203,192,3,5,9,4,1,1,0,1,9,7,209,196,6,7,14,9,3,6,2,4 -050,01,003,Alabama,Baldwin County,4,11,13803,6557,7246,5755,6365,646,696,58,59,30,50,2,2,66,74,5816,6438,651,703,112,119,41,60,5,7,6385,7094,5605,6230,641,690,50,55,29,49,1,2,59,68,5659,6297,645,695,98,111,39,58,4,7,172,152,150,135,5,6,8,4,1,1,1,0,7,6,157,141,6,8,14,8,2,2,1,0 -050,01,003,Alabama,Baldwin County,4,12,13041,6192,6849,5586,6114,487,575,42,55,25,48,1,2,51,55,5632,6166,496,581,85,101,31,53,1,5,6065,6731,5471,6014,481,568,39,51,25,48,1,2,48,48,5514,6059,488,572,80,91,31,53,1,5,127,118,115,100,6,7,3,4,0,0,0,0,3,7,118,107,8,9,5,10,0,0,0,0 -050,01,003,Alabama,Baldwin County,4,13,12694,6044,6650,5531,6092,414,449,40,40,22,25,2,2,35,42,5564,6129,417,454,73,78,24,29,2,5,5960,6575,5453,6022,414,447,39,39,20,24,2,2,32,41,5483,6058,417,452,70,76,21,28,2,5,84,75,78,70,0,2,1,1,2,1,0,0,3,1,81,71,0,2,3,2,3,1,0,0 -050,01,003,Alabama,Baldwin County,4,14,10459,4980,5479,4610,5086,260,301,56,26,14,22,0,2,40,42,4648,5127,263,304,90,62,18,27,2,2,4916,5416,4556,5030,255,297,53,25,14,22,0,2,38,40,4592,5069,258,300,85,60,17,26,2,2,64,63,54,56,5,4,3,1,0,0,0,0,2,2,56,58,5,4,5,2,1,1,0,0 -050,01,003,Alabama,Baldwin County,4,15,8076,3854,4222,3626,3933,173,233,21,22,8,14,0,0,26,20,3652,3951,173,235,46,39,9,17,0,0,3824,4186,3596,3900,173,231,21,21,8,14,0,0,26,20,3622,3918,173,233,46,38,9,17,0,0,30,36,30,33,0,2,0,1,0,0,0,0,0,0,30,33,0,2,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,4,16,5831,2785,3046,2642,2837,102,166,14,13,4,18,1,0,22,12,2662,2848,104,168,33,24,6,18,2,0,2768,3018,2626,2811,102,165,14,12,4,18,1,0,21,12,2645,2822,104,167,33,23,5,18,2,0,17,28,16,26,0,1,0,1,0,0,0,0,1,0,17,26,0,1,0,1,1,0,0,0 -050,01,003,Alabama,Baldwin County,4,17,4105,1854,2251,1776,2101,69,119,1,11,5,10,0,0,3,10,1779,2110,69,120,4,20,5,11,0,0,1843,2230,1766,2081,68,119,1,11,5,9,0,0,3,10,1769,2090,68,120,4,20,5,10,0,0,11,21,10,20,1,0,0,0,0,1,0,0,0,0,10,20,1,0,0,0,0,1,0,0 -050,01,003,Alabama,Baldwin County,4,18,3334,1242,2092,1194,1958,39,113,3,5,1,3,0,0,5,13,1198,1970,40,114,7,17,2,3,0,1,1231,2072,1183,1939,39,113,3,5,1,2,0,0,5,13,1187,1951,40,114,7,17,2,2,0,1,11,20,11,19,0,0,0,0,0,1,0,0,0,0,11,19,0,0,0,0,0,1,0,0 -050,01,003,Alabama,Baldwin County,5,0,190203,92728,97475,81252,85019,8638,9249,704,706,687,956,62,60,1385,1485,82556,86400,9161,9839,1401,1459,971,1260,131,129,88303,93581,77259,81495,8509,9119,607,626,678,943,40,44,1210,1354,78408,82770,8955,9652,1212,1300,932,1210,91,99,4425,3894,3993,3524,129,130,97,80,9,13,22,16,175,131,4148,3630,206,187,189,159,39,50,40,30 -050,01,003,Alabama,Baldwin County,5,1,11217,5735,5482,4716,4513,666,644,28,49,50,38,3,3,272,235,4979,4739,830,789,100,101,115,87,14,12,5221,4976,4258,4060,652,630,19,38,49,37,2,2,241,209,4493,4261,801,764,72,77,110,79,12,9,514,506,458,453,14,14,9,11,1,1,1,1,31,26,486,478,29,25,28,24,5,8,2,3 -050,01,003,Alabama,Baldwin County,5,2,11971,6016,5955,5067,5023,675,615,35,37,38,55,4,6,197,219,5254,5230,786,739,94,104,85,104,14,16,5570,5533,4666,4634,666,610,30,33,38,55,2,3,168,198,4825,4824,765,727,74,85,77,98,8,10,446,422,401,389,9,5,5,4,0,0,2,3,29,21,429,406,21,12,20,19,8,6,6,6 -050,01,003,Alabama,Baldwin County,5,3,12365,6275,6090,5233,5084,736,706,64,45,88,82,3,6,151,167,5378,5240,814,790,115,107,120,115,11,12,5898,5735,4900,4765,718,696,54,37,87,81,1,4,138,152,5034,4911,789,774,101,88,117,111,6,10,377,355,333,319,18,10,10,8,1,1,2,2,13,15,344,329,25,16,14,19,3,4,5,2 -050,01,003,Alabama,Baldwin County,5,4,11631,5925,5706,4947,4689,754,783,53,58,54,47,3,9,114,120,5053,4803,804,843,96,109,83,75,9,14,5620,5428,4665,4447,748,764,50,52,54,45,2,6,101,114,4758,4555,793,822,90,99,79,71,7,11,305,278,282,242,6,19,3,6,0,2,1,3,13,6,295,248,11,21,6,10,4,4,2,3 -050,01,003,Alabama,Baldwin County,5,5,10603,5334,5269,4293,4281,809,738,44,32,108,115,13,5,67,98,4359,4372,831,778,77,74,122,141,14,13,4918,4966,3918,4004,795,731,35,29,107,113,7,2,56,87,3973,4085,812,768,62,66,121,134,8,6,416,303,375,277,14,7,9,3,1,2,6,3,11,11,386,287,19,10,15,8,1,7,6,7 -050,01,003,Alabama,Baldwin County,5,6,10490,5250,5240,4478,4446,610,621,39,33,47,64,9,1,67,75,4538,4514,630,646,77,72,65,89,14,3,4777,4892,4050,4116,594,611,27,31,47,64,7,1,52,69,4097,4180,607,632,56,66,64,87,10,3,473,348,428,330,16,10,12,2,0,0,2,0,15,6,441,334,23,14,21,6,1,2,4,0 -050,01,003,Alabama,Baldwin County,5,7,11231,5527,5704,4793,4897,576,607,40,57,40,73,9,6,69,64,4858,4954,590,628,81,88,56,89,11,11,5081,5370,4399,4602,563,595,24,41,39,71,7,5,49,56,4445,4653,571,612,53,67,52,87,9,9,446,334,394,295,13,12,16,16,1,2,2,1,20,8,413,301,19,16,28,21,4,2,2,2 -050,01,003,Alabama,Baldwin County,5,8,11290,5485,5805,4847,5014,486,546,43,45,39,114,4,4,66,82,4909,5092,498,562,88,96,52,135,7,9,5131,5475,4516,4711,477,536,41,39,39,114,1,2,57,73,4571,4781,485,550,80,86,51,131,4,6,354,330,331,303,9,10,2,6,0,0,3,2,9,9,338,311,13,12,8,10,1,4,3,3 -050,01,003,Alabama,Baldwin County,5,9,12837,6307,6530,5589,5732,540,599,41,45,62,88,7,4,68,62,5654,5789,552,611,91,91,76,100,12,8,5993,6283,5300,5507,532,588,34,39,61,87,5,4,61,58,5360,5561,541,597,80,83,72,99,7,7,314,247,289,225,8,11,7,6,1,1,2,0,7,4,294,228,11,14,11,8,4,1,5,1 -050,01,003,Alabama,Baldwin County,5,10,13058,6361,6697,5664,5837,542,636,61,69,41,74,2,6,51,75,5712,5903,548,650,101,128,47,87,6,10,6118,6496,5446,5657,537,629,52,63,40,73,1,6,42,68,5487,5720,539,638,86,117,44,83,5,10,243,201,218,180,5,7,9,6,1,1,1,0,9,7,225,183,9,12,15,11,3,4,1,0 -050,01,003,Alabama,Baldwin County,5,11,13861,6632,7229,5826,6324,634,715,67,53,36,58,1,4,68,75,5887,6395,643,728,123,115,45,71,4,8,6474,7060,5689,6171,630,711,59,49,35,57,1,3,60,69,5745,6237,635,720,109,108,44,69,3,7,158,169,137,153,4,4,8,4,1,1,0,1,8,6,142,158,8,8,14,7,1,2,1,1 -050,01,003,Alabama,Baldwin County,5,12,13555,6374,7181,5731,6401,517,611,47,56,25,44,1,2,53,67,5780,6461,524,625,92,111,33,52,3,4,6232,7049,5601,6290,510,602,44,52,25,44,1,2,51,59,5648,6342,515,613,89,102,33,51,3,4,142,132,130,111,7,9,3,4,0,0,0,0,2,8,132,119,9,12,3,9,0,1,0,0 -050,01,003,Alabama,Baldwin County,5,13,12547,5921,6626,5393,6040,429,470,37,39,23,34,1,1,38,42,5429,6075,433,480,69,77,26,38,3,3,5827,6539,5306,5958,429,468,36,38,22,33,1,1,33,41,5337,5993,432,477,67,75,23,37,2,2,94,87,87,82,0,2,1,1,1,1,0,0,5,1,92,82,1,3,2,2,3,1,1,1 -050,01,003,Alabama,Baldwin County,5,14,11384,5426,5958,5067,5553,252,309,53,32,15,19,1,3,38,42,5099,5589,257,316,86,69,21,24,5,5,5353,5894,5003,5499,248,303,50,31,14,19,1,3,37,39,5035,5534,253,308,82,66,20,21,4,4,73,64,64,54,4,6,3,1,1,0,0,0,1,3,64,55,4,8,4,3,1,3,1,1 -050,01,003,Alabama,Baldwin County,5,15,8479,4027,4452,3760,4142,195,243,27,24,11,16,0,0,34,27,3793,4167,198,246,56,51,14,17,1,1,3997,4413,3732,4106,194,241,27,23,11,16,0,0,33,27,3764,4131,196,244,56,50,14,17,1,1,30,39,28,36,1,2,0,1,0,0,0,0,1,0,29,36,2,2,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,5,16,6080,2940,3140,2787,2918,109,175,20,14,3,20,1,0,20,13,2804,2931,111,175,38,26,4,21,3,0,2922,3104,2770,2885,109,173,20,13,3,20,1,0,19,13,2787,2898,110,173,38,25,4,21,2,0,18,36,17,33,0,2,0,1,0,0,0,0,1,0,17,33,1,2,0,1,0,0,1,0 -050,01,003,Alabama,Baldwin County,5,17,4120,1855,2265,1775,2121,66,114,2,9,5,12,0,0,7,9,1780,2130,69,114,9,18,5,12,0,0,1843,2244,1764,2101,65,114,2,9,5,11,0,0,7,9,1769,2110,68,114,9,18,5,11,0,0,12,21,11,20,1,0,0,0,0,1,0,0,0,0,11,20,1,0,0,0,0,1,0,0 -050,01,003,Alabama,Baldwin County,5,18,3484,1338,2146,1286,2004,42,117,3,9,2,3,0,0,5,13,1290,2016,43,119,8,22,2,3,0,0,1328,2124,1276,1982,42,117,3,9,2,3,0,0,5,13,1280,1994,43,119,8,22,2,3,0,0,10,22,10,22,0,0,0,0,0,0,0,0,0,0,10,22,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,6,0,194978,95140,99838,83245,87016,8929,9360,731,732,733,1085,59,58,1443,1587,84608,88498,9479,9989,1446,1517,1022,1423,124,140,90653,95836,79196,83385,8800,9238,625,647,723,1068,40,45,1269,1453,80403,84751,9277,9815,1238,1347,980,1374,88,109,4487,4002,4049,3631,129,122,106,85,10,17,19,13,174,134,4205,3747,202,174,208,170,42,49,36,31 -050,01,003,Alabama,Baldwin County,6,1,11206,5713,5493,4700,4529,636,625,37,52,54,31,2,2,284,254,4974,4774,810,783,101,107,120,84,16,14,5210,4994,4250,4079,626,614,21,39,54,30,2,1,257,231,4499,4302,783,763,70,80,118,77,13,11,503,499,450,450,10,11,16,13,0,1,0,1,27,23,475,472,27,20,31,27,2,7,3,3 -050,01,003,Alabama,Baldwin County,6,2,12234,6155,6079,5191,5132,700,629,30,44,36,52,4,3,194,219,5377,5339,809,756,80,106,78,98,13,11,5673,5626,4759,4714,689,621,26,40,36,52,2,2,161,197,4914,4902,785,739,62,90,71,95,8,9,482,453,432,418,11,8,4,4,0,0,2,1,33,22,463,437,24,17,18,16,7,3,5,2 -050,01,003,Alabama,Baldwin County,6,3,12735,6408,6327,5390,5232,706,710,67,43,76,156,3,8,166,178,5545,5404,788,800,129,105,109,198,11,16,6030,5953,5051,4893,697,702,57,35,75,155,1,5,149,163,5193,5051,772,785,107,88,106,192,6,12,378,374,339,339,9,8,10,8,1,1,2,3,17,15,352,353,16,15,22,17,3,6,5,4 -050,01,003,Alabama,Baldwin County,6,4,11859,6015,5844,5040,4785,731,790,52,57,60,63,2,7,130,142,5164,4917,788,866,105,114,91,101,6,11,5710,5565,4761,4542,720,776,49,48,60,60,2,5,118,134,4874,4668,774,848,92,100,87,95,6,6,305,279,279,243,11,14,3,9,0,3,0,2,12,8,290,249,14,18,13,14,4,6,0,5 -050,01,003,Alabama,Baldwin County,6,5,11015,5644,5371,4462,4316,919,747,47,39,132,130,10,7,74,132,4531,4440,948,800,89,102,147,165,13,16,5232,5096,4087,4066,909,739,38,36,131,128,4,4,63,123,4145,4182,933,787,71,94,145,162,7,11,412,275,375,250,10,8,9,3,1,2,6,3,11,9,386,258,15,13,18,8,2,3,6,5 -050,01,003,Alabama,Baldwin County,6,6,10815,5401,5414,4574,4602,658,642,38,36,53,62,12,1,66,71,4639,4668,677,664,71,69,71,84,15,3,4933,5056,4152,4260,639,635,28,35,53,61,8,1,53,64,4204,4319,652,654,54,65,69,82,10,3,468,358,422,342,19,7,10,1,0,1,4,0,13,7,435,349,25,10,17,4,2,2,5,0 -050,01,003,Alabama,Baldwin County,6,7,11387,5602,5785,4839,4990,610,593,46,53,34,76,8,5,65,68,4900,5053,625,611,87,90,50,96,10,9,5187,5448,4462,4688,595,580,37,42,34,71,7,5,52,62,4510,4746,607,596,68,76,50,89,9,8,415,337,377,302,15,13,9,11,0,5,1,0,13,6,390,307,18,15,19,14,0,7,1,1 -050,01,003,Alabama,Baldwin County,6,8,11390,5565,5825,4881,5019,525,545,45,53,46,134,5,2,63,72,4938,5082,538,563,85,99,60,154,10,7,5210,5515,4557,4736,517,540,37,42,45,134,2,1,52,62,4605,4790,525,553,71,81,56,150,7,5,355,310,324,283,8,5,8,11,1,0,3,1,11,10,333,292,13,10,14,18,4,4,3,2 -050,01,003,Alabama,Baldwin County,6,9,13186,6456,6730,5714,5913,551,623,47,35,62,86,6,4,76,69,5784,5973,563,634,105,88,78,98,7,10,6126,6459,5413,5667,541,609,38,31,61,85,5,3,68,64,5477,5723,550,620,90,79,74,97,6,8,330,271,301,246,10,14,9,4,1,1,1,1,8,5,307,250,13,14,15,9,4,1,1,2 -050,01,003,Alabama,Baldwin County,6,10,13004,6341,6663,5648,5812,540,614,52,71,47,77,2,9,52,80,5698,5885,545,627,91,130,57,91,5,16,6106,6441,5435,5618,534,605,44,62,46,76,2,9,45,71,5479,5686,536,616,81,113,55,88,3,14,235,222,213,194,6,9,8,9,1,1,0,0,7,9,219,199,9,11,10,17,2,3,2,2 -050,01,003,Alabama,Baldwin County,6,11,14221,6854,7367,6025,6458,662,718,67,61,35,57,1,4,64,69,6081,6523,671,728,116,116,45,68,6,6,6667,7174,5867,6279,657,717,57,57,32,57,1,3,53,61,5914,6337,663,724,100,107,38,66,5,4,187,193,158,179,5,1,10,4,3,0,0,1,11,8,167,186,8,4,16,9,7,2,1,2 -050,01,003,Alabama,Baldwin County,6,12,14011,6584,7427,5896,6615,537,637,60,46,29,49,1,2,61,78,5952,6688,544,648,111,110,37,58,3,9,6424,7290,5753,6499,529,625,54,44,29,49,1,2,58,71,5807,6565,535,634,103,103,36,56,2,8,160,137,143,116,8,12,6,2,0,0,0,0,3,7,145,123,9,14,8,7,1,2,1,1 -050,01,003,Alabama,Baldwin County,6,13,12754,6012,6742,5473,6122,450,493,31,45,26,36,1,1,31,45,5502,6163,454,499,59,85,30,40,3,5,5917,6649,5385,6035,449,492,30,43,25,35,1,1,27,43,5410,6076,452,497,56,82,28,38,1,3,95,93,88,87,1,1,1,2,1,1,0,0,4,2,92,87,2,2,3,3,2,2,2,2 -050,01,003,Alabama,Baldwin County,6,14,11876,5668,6208,5292,5768,260,341,53,32,17,21,2,2,44,44,5335,5805,264,348,95,72,18,27,2,2,5581,6139,5213,5709,257,335,50,30,16,21,2,2,43,42,5255,5744,261,342,91,68,17,27,2,2,87,69,79,59,3,6,3,2,1,0,0,0,1,2,80,61,3,6,4,4,1,0,0,0 -050,01,003,Alabama,Baldwin County,6,15,9127,4303,4824,4003,4509,216,235,33,30,14,19,0,1,37,30,4038,4536,222,239,64,56,16,21,2,3,4272,4773,3976,4463,214,232,33,29,14,19,0,1,35,29,4009,4489,218,236,64,54,16,21,2,3,31,51,27,46,2,3,0,1,0,0,0,0,2,1,29,47,4,3,0,2,0,0,0,0 -050,01,003,Alabama,Baldwin County,6,16,6428,3113,3315,2951,3084,119,183,19,15,3,18,0,0,21,15,2969,3098,122,184,37,29,5,19,2,0,3093,3279,2932,3051,119,181,19,14,3,18,0,0,20,15,2950,3065,121,182,37,28,4,19,1,0,20,36,19,33,0,2,0,1,0,0,0,0,1,0,19,33,1,2,0,1,1,0,1,0 -050,01,003,Alabama,Baldwin County,6,17,4081,1872,2209,1788,2072,66,110,4,7,4,12,0,0,10,8,1798,2079,67,112,13,14,4,12,0,0,1860,2187,1777,2051,65,110,4,7,4,11,0,0,10,8,1787,2058,66,112,13,14,4,11,0,0,12,22,11,21,1,0,0,0,0,1,0,0,0,0,11,21,1,0,0,0,0,1,0,0 -050,01,003,Alabama,Baldwin County,6,18,3649,1434,2215,1378,2058,43,125,3,13,5,6,0,0,5,13,1383,2071,44,127,8,25,6,9,0,2,1422,2192,1366,2035,43,125,3,13,5,6,0,0,5,13,1371,2048,44,127,8,25,6,9,0,2,12,23,12,23,0,0,0,0,0,0,0,0,0,0,12,23,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,7,0,199306,97216,102090,84952,88860,9129,9597,760,745,753,1154,59,55,1563,1679,86429,90410,9741,10296,1521,1551,1082,1533,142,131,92682,98025,80882,85191,8986,9453,646,664,740,1140,42,45,1386,1532,82206,86616,9519,10080,1296,1392,1042,1478,108,100,4534,4065,4070,3669,143,144,114,81,13,14,17,10,177,147,4223,3794,222,216,225,159,40,55,34,31 -050,01,003,Alabama,Baldwin County,7,1,11318,5763,5555,4734,4569,623,630,44,47,59,38,2,1,301,270,5026,4823,807,804,113,99,129,101,16,13,5276,5051,4313,4121,606,616,21,33,57,35,2,1,277,245,4581,4352,779,779,79,74,124,89,14,9,487,504,421,448,17,14,23,14,2,3,0,0,24,25,445,471,28,25,34,25,5,12,2,4 -050,01,003,Alabama,Baldwin County,7,2,12386,6276,6110,5248,5089,718,676,37,51,48,54,2,2,223,238,5462,5311,848,821,100,119,96,105,11,13,5744,5640,4768,4672,707,659,34,44,46,54,1,1,188,210,4951,4871,820,787,76,99,88,98,8,8,532,470,480,417,11,17,3,7,2,0,1,1,35,28,511,440,28,34,24,20,8,7,3,5 -050,01,003,Alabama,Baldwin County,7,3,12919,6525,6394,5530,5304,720,661,56,44,47,195,5,7,167,183,5688,5480,805,753,112,107,82,239,15,17,6161,6010,5201,4956,710,653,49,38,47,195,2,5,152,163,5347,5113,787,737,96,90,81,234,10,11,364,384,329,348,10,8,7,6,0,0,3,2,15,20,341,367,18,16,16,17,1,5,5,6 -050,01,003,Alabama,Baldwin County,7,4,12003,6043,5960,5032,4846,733,828,53,54,68,72,2,8,155,152,5178,4989,807,905,114,117,107,109,10,15,5741,5673,4761,4587,720,818,52,46,67,70,1,6,140,146,4895,4727,789,890,103,104,101,106,6,12,302,287,271,259,13,10,1,8,1,2,1,2,15,6,283,262,18,15,11,13,6,3,4,3 -050,01,003,Alabama,Baldwin County,7,5,11242,5767,5475,4530,4413,938,751,52,51,156,111,5,6,86,143,4614,4544,971,813,94,111,175,152,7,12,5403,5211,4199,4178,926,737,43,48,156,110,2,4,77,134,4275,4301,954,793,79,104,174,147,4,8,364,264,331,235,12,14,9,3,0,1,3,2,9,9,339,243,17,20,15,7,1,5,3,4 -050,01,003,Alabama,Baldwin County,7,6,11121,5477,5644,4648,4799,661,656,33,31,54,74,11,1,70,83,4714,4878,681,686,69,70,75,101,13,5,5023,5308,4232,4482,650,646,21,30,54,74,7,1,59,75,4287,4554,666,670,51,66,73,99,9,4,454,336,416,317,11,10,12,1,0,0,4,0,11,8,427,324,15,16,18,4,2,2,4,1 -050,01,003,Alabama,Baldwin County,7,7,11488,5734,5754,4904,4938,658,630,57,47,36,58,10,4,69,77,4968,5012,673,652,97,88,54,82,14,7,5305,5437,4524,4641,637,619,46,41,36,58,8,4,54,74,4576,4712,647,640,75,80,53,82,10,7,429,317,380,297,21,11,11,6,0,0,2,0,15,3,392,300,26,12,22,8,1,0,4,0 -050,01,003,Alabama,Baldwin County,7,8,11648,5697,5951,4998,5123,538,547,47,56,46,153,6,3,62,69,5055,5184,550,565,88,97,61,171,14,7,5321,5628,4656,4837,531,537,36,44,45,150,4,2,49,58,4703,4889,537,550,68,80,59,166,10,5,376,323,342,286,7,10,11,12,1,3,2,1,13,11,352,295,13,15,20,17,2,5,4,2 -050,01,003,Alabama,Baldwin County,7,9,13228,6444,6784,5685,5924,569,653,49,42,60,89,7,3,74,73,5754,5992,581,663,101,94,77,107,14,6,6122,6493,5388,5663,561,638,43,36,60,87,6,2,64,67,5449,5725,570,647,89,84,74,104,11,5,322,291,297,261,8,15,6,6,0,2,1,1,10,6,305,267,11,16,12,10,3,3,3,1 -050,01,003,Alabama,Baldwin County,7,10,12987,6370,6617,5680,5789,518,607,52,67,52,71,3,8,65,75,5741,5855,524,623,105,125,65,85,10,13,6117,6398,5453,5596,507,597,45,61,50,70,3,8,59,66,5508,5655,512,610,92,112,63,80,10,12,253,219,227,193,11,10,7,6,2,1,0,0,6,9,233,200,12,13,13,13,2,5,0,1 -050,01,003,Alabama,Baldwin County,7,11,14543,7031,7512,6195,6596,671,731,65,53,30,61,0,4,70,67,6257,6657,683,740,122,106,41,73,3,7,6829,7306,6025,6407,665,727,52,50,28,61,0,3,59,58,6077,6461,672,733,100,96,37,72,2,5,202,206,170,189,6,4,13,3,2,0,0,1,11,9,180,196,11,7,22,10,4,1,1,2 -050,01,003,Alabama,Baldwin County,7,12,14289,6701,7588,6004,6750,547,655,65,50,23,53,2,3,60,77,6057,6819,557,669,113,114,33,64,4,5,6545,7443,5863,6620,543,647,59,48,22,53,2,3,56,72,5912,6685,551,658,104,111,32,62,4,5,156,145,141,130,4,8,6,2,1,0,0,0,4,5,145,134,6,11,9,3,1,2,0,0 -050,01,003,Alabama,Baldwin County,7,13,13182,6195,6987,5610,6323,480,516,35,50,28,44,2,1,40,53,5648,6371,487,523,72,95,31,52,4,4,6092,6885,5518,6232,475,513,34,47,27,43,2,1,36,49,5553,6277,479,519,69,89,30,50,4,3,103,102,92,91,5,3,1,3,1,1,0,0,4,4,95,94,8,4,3,6,1,2,0,1 -050,01,003,Alabama,Baldwin County,7,14,12507,5949,6558,5545,6083,289,366,48,35,20,26,2,2,45,46,5586,6123,294,375,88,76,23,30,4,4,5851,6479,5455,6015,287,360,45,33,19,26,2,2,43,43,5495,6053,291,368,83,72,22,28,3,3,98,79,90,68,2,6,3,2,1,0,0,0,2,3,91,70,3,7,5,4,1,2,1,1 -050,01,003,Alabama,Baldwin County,7,15,9723,4607,5116,4298,4779,220,260,38,26,15,17,0,2,36,32,4333,4804,222,266,69,53,19,22,2,3,4560,5062,4258,4730,216,257,37,25,15,17,0,2,34,31,4292,4754,216,262,68,52,18,22,2,3,47,54,40,49,4,3,1,1,0,0,0,0,2,1,41,50,6,4,1,1,1,0,0,0 -050,01,003,Alabama,Baldwin County,7,16,6702,3197,3505,3023,3270,130,182,18,19,2,17,0,0,24,17,3044,3282,134,187,40,36,3,17,1,0,3179,3470,3006,3236,130,181,18,19,2,17,0,0,23,17,3027,3248,133,186,40,36,2,17,1,0,18,35,17,34,0,1,0,0,0,0,0,0,1,0,17,34,1,1,0,0,1,0,0,0 -050,01,003,Alabama,Baldwin County,7,17,4263,1975,2288,1881,2145,72,112,7,8,3,14,0,0,12,9,1893,2153,72,113,18,16,4,15,0,0,1961,2264,1868,2123,71,112,7,7,3,13,0,0,12,9,1880,2131,71,113,18,15,4,14,0,0,14,24,13,22,1,0,0,1,0,1,0,0,0,0,13,22,1,0,0,1,0,1,0,0 -050,01,003,Alabama,Baldwin County,7,18,3757,1465,2292,1407,2120,44,136,4,14,6,7,0,0,4,15,1411,2133,45,138,6,28,7,8,0,0,1452,2267,1394,2095,44,136,4,14,6,7,0,0,4,15,1398,2108,45,138,6,28,7,8,0,0,13,25,13,25,0,0,0,0,0,0,0,0,0,0,13,25,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,8,0,203101,98977,104124,86531,90674,9174,9665,777,737,789,1237,59,60,1647,1751,88077,92299,9847,10395,1576,1548,1136,1609,126,146,94339,99924,82390,86870,9015,9514,663,657,773,1224,40,50,1458,1609,83768,88373,9595,10183,1361,1387,1089,1566,88,122,4638,4200,4141,3804,159,151,114,80,16,13,19,10,189,142,4309,3926,252,212,215,161,47,43,38,24 -050,01,003,Alabama,Baldwin County,8,1,11592,5902,5690,4883,4698,611,596,45,44,53,47,7,2,303,303,5174,4987,802,790,121,105,123,114,19,10,5374,5190,4432,4258,591,580,26,29,48,42,3,2,274,279,4697,4526,766,765,88,80,115,101,12,8,528,500,451,440,20,16,19,15,5,5,4,0,29,24,477,461,36,25,33,25,8,13,7,2 -050,01,003,Alabama,Baldwin County,8,2,12392,6270,6122,5238,5089,708,682,31,52,61,52,3,2,229,245,5459,5327,847,832,89,119,116,102,11,13,5750,5653,4772,4671,692,665,24,44,58,52,2,1,202,220,4969,4884,816,799,69,100,108,99,6,10,520,469,466,418,16,17,7,8,3,0,1,1,27,25,490,443,31,33,20,19,8,3,5,3 -050,01,003,Alabama,Baldwin County,8,3,13049,6550,6499,5551,5419,714,661,53,37,44,179,3,7,185,196,5731,5606,813,765,109,97,87,226,13,14,6164,6099,5209,5047,703,654,47,34,44,179,2,5,159,180,5363,5219,786,752,93,84,82,222,9,11,386,400,342,372,11,7,6,3,0,0,1,2,26,16,368,387,27,13,16,13,5,4,4,3 -050,01,003,Alabama,Baldwin County,8,4,12268,6218,6050,5182,4868,755,816,46,60,74,133,0,8,161,165,5329,5023,835,895,110,120,111,167,6,17,5900,5727,4890,4578,743,804,45,54,73,132,0,6,149,153,5028,4721,818,879,102,107,107,165,5,15,318,323,292,290,12,12,1,6,1,1,0,2,12,12,301,302,17,16,8,13,4,2,1,2 -050,01,003,Alabama,Baldwin County,8,5,11237,5739,5498,4532,4465,917,767,47,43,150,95,3,4,90,124,4616,4578,956,821,89,93,170,129,4,12,5426,5239,4250,4233,907,753,41,41,150,94,1,3,77,115,4322,4340,940,801,76,86,168,125,1,9,313,259,282,232,10,14,6,2,0,1,2,1,13,9,294,238,16,20,13,7,2,4,3,3 -050,01,003,Alabama,Baldwin County,8,6,11417,5645,5772,4754,4910,717,654,41,28,43,77,11,4,79,99,4828,5001,744,692,81,72,63,109,13,11,5215,5439,4371,4597,699,644,26,26,43,77,5,3,71,92,4437,4682,723,677,61,67,63,108,7,10,430,333,383,313,18,10,15,2,0,0,6,1,8,7,391,319,21,15,20,5,0,1,6,1 -050,01,003,Alabama,Baldwin County,8,7,11544,5720,5824,4888,5027,651,625,59,46,47,61,10,2,65,63,4947,5082,667,643,98,81,66,80,12,4,5311,5490,4523,4711,632,615,52,41,47,60,8,2,49,61,4568,4765,642,631,80,74,62,79,9,4,409,334,365,316,19,10,7,5,0,1,2,0,16,2,379,317,25,12,18,7,4,1,3,0 -050,01,003,Alabama,Baldwin County,8,8,12129,5928,6201,5157,5300,586,622,50,51,56,145,7,6,72,77,5225,5373,601,639,96,100,68,162,11,13,5528,5871,4799,5004,576,609,36,39,55,145,5,5,57,69,4853,5070,584,622,75,82,66,161,8,11,400,330,358,296,10,13,14,12,1,0,2,1,15,8,372,303,17,17,21,18,2,1,3,2 -050,01,003,Alabama,Baldwin County,8,9,12950,6343,6607,5612,5754,543,619,51,42,63,105,4,3,70,84,5675,5829,554,636,102,102,76,119,8,8,5994,6305,5288,5476,534,610,47,38,63,104,3,3,59,74,5342,5543,541,626,90,89,75,117,5,7,349,302,324,278,9,9,4,4,0,1,1,0,11,10,333,286,13,10,12,13,1,2,3,1 -050,01,003,Alabama,Baldwin County,8,10,13200,6494,6706,5813,5917,501,573,47,61,61,81,4,8,68,66,5879,5976,513,584,96,108,73,97,5,15,6217,6470,5561,5713,489,562,40,51,60,79,4,7,63,58,5622,5767,497,570,88,93,72,92,5,13,277,236,252,204,12,11,7,10,1,2,0,1,5,8,257,209,16,14,8,15,1,5,0,2 -050,01,003,Alabama,Baldwin County,8,11,14447,6999,7448,6225,6550,604,705,71,54,29,71,0,4,70,64,6286,6607,615,717,129,103,42,82,5,8,6774,7241,6032,6364,600,695,56,52,28,71,0,3,58,56,6084,6414,607,705,104,96,38,80,3,6,225,207,193,186,4,10,15,2,1,0,0,1,12,8,202,193,8,12,25,7,4,2,2,2 -050,01,003,Alabama,Baldwin County,8,12,14537,6797,7740,6043,6855,583,692,68,53,28,53,2,3,73,84,6111,6928,593,706,127,123,39,67,4,7,6631,7582,5900,6713,576,684,60,50,26,53,2,3,67,79,5962,6782,584,697,114,117,37,65,4,7,166,158,143,142,7,8,8,3,2,0,0,0,6,5,149,146,9,9,13,6,2,2,0,0 -050,01,003,Alabama,Baldwin County,8,13,13787,6466,7321,5868,6612,467,551,50,51,28,51,2,1,51,55,5913,6656,473,561,93,97,34,59,5,6,6348,7197,5762,6502,462,547,49,47,27,50,2,1,46,50,5803,6544,465,555,90,91,32,57,4,3,118,124,106,110,5,4,1,4,1,1,0,0,5,5,110,112,8,6,3,6,2,2,1,3 -050,01,003,Alabama,Baldwin County,8,14,13118,6162,6956,5709,6440,338,395,41,47,25,26,3,3,46,45,5750,6484,342,399,82,86,30,29,5,3,6064,6873,5615,6366,337,390,40,45,24,26,3,3,45,43,5656,6408,340,394,81,82,28,29,5,3,98,83,94,74,1,5,1,2,1,0,0,0,1,2,94,76,2,5,1,4,2,0,0,0 -050,01,003,Alabama,Baldwin County,8,15,10182,4918,5264,4596,4922,219,255,48,24,15,22,0,3,40,38,4632,4956,226,259,85,59,22,25,5,3,4861,5207,4548,4871,215,251,45,23,15,22,0,3,38,37,4583,4904,221,255,81,57,21,25,5,3,57,57,48,51,4,4,3,1,0,0,0,0,2,1,49,52,5,4,4,2,1,0,0,0 -050,01,003,Alabama,Baldwin County,8,16,6948,3254,3694,3078,3454,139,193,12,18,3,12,0,0,22,17,3100,3468,139,196,32,33,5,13,0,1,3236,3660,3061,3421,139,192,12,18,3,12,0,0,21,17,3082,3435,139,195,32,33,4,13,0,1,18,34,17,33,0,1,0,0,0,0,0,0,1,0,18,33,0,1,0,0,1,0,0,0 -050,01,003,Alabama,Baldwin County,8,17,4404,2054,2350,1953,2193,66,115,13,12,3,19,0,0,19,11,1970,2203,70,115,30,22,4,20,0,1,2040,2327,1940,2171,65,115,13,11,3,19,0,0,19,11,1957,2181,69,115,30,21,4,20,0,1,14,23,13,22,1,0,0,1,0,0,0,0,0,0,13,22,1,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,8,18,3900,1518,2382,1449,2201,55,144,4,14,6,8,0,0,4,15,1452,2215,57,145,7,28,7,9,0,0,1506,2354,1437,2174,55,144,4,14,6,7,0,0,4,15,1440,2188,57,145,7,28,7,8,0,0,12,28,12,27,0,0,0,0,0,1,0,0,0,0,12,27,0,0,0,0,0,1,0,0 -050,01,003,Alabama,Baldwin County,9,0,207787,101069,106718,88380,92895,9210,9848,822,757,839,1299,64,60,1754,1859,90039,94630,9920,10650,1655,1627,1210,1708,148,151,96245,102355,84091,88970,9043,9671,697,679,825,1286,40,50,1549,1699,85562,90571,9662,10397,1417,1453,1162,1657,103,120,4824,4363,4289,3925,167,177,125,78,14,13,24,10,205,160,4477,4059,258,253,238,174,48,51,45,31 -050,01,003,Alabama,Baldwin County,9,1,11714,5916,5798,4889,4754,588,631,51,49,66,49,7,4,315,311,5192,5052,787,827,125,116,140,119,24,15,5395,5321,4444,4350,576,607,32,30,62,44,3,4,278,286,4714,4625,754,793,87,84,129,107,14,12,521,477,445,404,12,24,19,19,4,5,4,0,37,25,478,427,33,34,38,32,11,12,10,3 -050,01,003,Alabama,Baldwin County,9,2,12479,6338,6141,5288,5079,677,675,43,47,72,53,3,3,255,284,5536,5350,829,846,106,124,127,111,12,17,5786,5647,4791,4634,662,657,33,44,71,53,1,2,228,257,5012,4882,802,813,82,108,124,105,9,13,552,494,497,445,15,18,10,3,1,0,2,1,27,27,524,468,27,33,24,16,3,6,3,4 -050,01,003,Alabama,Baldwin County,9,3,13146,6627,6519,5582,5461,741,663,41,38,49,128,4,5,210,224,5782,5677,851,779,109,109,104,183,15,13,6198,6099,5207,5074,726,657,38,31,47,128,3,3,177,206,5377,5273,820,765,88,90,95,179,11,10,429,420,375,387,15,6,3,7,2,0,1,2,33,18,405,404,31,14,21,19,9,4,4,3 -050,01,003,Alabama,Baldwin County,9,4,12509,6289,6220,5266,4987,727,800,53,53,74,201,1,7,168,172,5427,5149,808,890,120,119,109,244,4,14,5945,5858,4946,4664,719,787,49,46,74,199,0,6,157,156,5097,4812,796,867,111,102,107,240,2,10,344,362,320,323,8,13,4,7,0,2,1,1,11,16,330,337,12,23,9,17,2,4,2,4 -050,01,003,Alabama,Baldwin County,9,5,11048,5615,5433,4546,4457,835,730,49,47,84,71,1,6,100,122,4640,4571,879,782,90,97,107,104,7,12,5312,5159,4269,4212,824,715,44,45,84,70,1,5,90,112,4353,4317,862,762,81,90,106,101,7,10,303,274,277,245,11,15,5,2,0,1,0,1,10,10,287,254,17,20,9,7,1,3,0,2 -050,01,003,Alabama,Baldwin County,9,6,11956,5864,6092,4874,5149,768,725,49,36,68,80,14,3,91,99,4956,5238,796,765,103,81,97,111,19,10,5468,5775,4542,4860,747,709,30,34,68,80,5,2,76,90,4613,4942,769,744,72,74,94,107,9,7,396,317,332,289,21,16,19,2,0,0,9,1,15,9,343,296,27,21,31,7,3,4,10,3 -050,01,003,Alabama,Baldwin County,9,7,11730,5859,5871,4985,5053,680,641,52,48,61,60,9,0,72,69,5054,5118,694,663,94,85,80,79,10,3,5409,5535,4585,4747,656,619,42,45,61,60,7,0,58,64,4640,4807,668,638,75,78,78,79,7,3,450,336,400,306,24,22,10,3,0,0,2,0,14,5,414,311,26,25,19,7,2,0,3,0 -050,01,003,Alabama,Baldwin County,9,8,12579,6078,6501,5257,5528,595,669,56,53,83,160,7,6,80,85,5331,5604,614,691,109,109,96,183,14,9,5682,6169,4913,5230,578,659,39,42,82,159,6,5,64,74,4972,5298,589,676,82,90,95,178,12,7,396,332,344,298,17,10,17,11,1,1,1,1,16,11,359,306,25,15,27,19,1,5,2,2 -050,01,003,Alabama,Baldwin County,9,9,12592,6187,6405,5478,5588,537,582,50,42,52,116,4,2,66,75,5538,5656,552,596,97,97,65,128,7,9,5821,6063,5137,5270,526,572,47,39,52,115,2,1,57,66,5189,5330,537,584,90,86,62,127,4,8,366,342,341,318,11,10,3,3,0,1,2,1,9,9,349,326,15,12,7,11,3,1,3,1 -050,01,003,Alabama,Baldwin County,9,10,13738,6724,7014,6000,6199,525,590,50,53,69,99,7,8,73,65,6068,6256,535,605,106,98,84,118,11,15,6446,6762,5750,5975,515,579,42,47,68,97,5,7,66,57,5812,6027,523,591,93,88,81,111,7,10,278,252,250,224,10,11,8,6,1,2,2,1,7,8,256,229,12,14,13,10,3,7,4,5 -050,01,003,Alabama,Baldwin County,9,11,14401,6950,7451,6213,6544,561,684,69,67,44,74,1,6,62,76,6270,6611,568,701,116,125,57,89,5,8,6696,7232,5985,6352,556,673,58,62,43,73,1,5,53,67,6033,6412,559,686,101,114,53,87,4,7,254,219,228,192,5,11,11,5,1,1,0,1,9,9,237,199,9,15,15,11,4,2,1,1 -050,01,003,Alabama,Baldwin County,9,12,15006,7034,7972,6242,7061,618,726,72,45,30,58,2,2,70,80,6303,7136,630,742,126,112,42,70,8,6,6862,7822,6095,6922,611,720,64,43,28,58,2,2,62,77,6150,6995,620,734,114,108,39,70,5,6,172,150,147,139,7,6,8,2,2,0,0,0,8,3,153,141,10,8,12,4,3,0,3,0 -050,01,003,Alabama,Baldwin County,9,13,14368,6721,7647,6110,6900,467,571,62,56,27,57,2,2,53,61,6159,6955,474,582,106,109,32,61,4,7,6582,7503,5984,6773,461,565,58,52,27,57,2,2,50,54,6030,6823,466,574,102,100,31,60,4,5,139,144,126,127,6,6,4,4,0,0,0,0,3,7,129,132,8,8,4,9,1,1,0,2 -050,01,003,Alabama,Baldwin County,9,14,13983,6600,7383,6084,6828,401,425,40,49,28,33,2,2,45,46,6128,6868,406,433,80,91,32,36,4,4,6500,7291,5990,6741,401,422,39,48,26,33,2,2,42,45,6031,6781,405,429,77,90,30,35,4,3,100,92,94,87,0,3,1,1,2,0,0,0,3,1,97,87,1,4,3,1,2,1,0,1 -050,01,003,Alabama,Baldwin County,9,15,10549,5059,5490,4728,5131,224,269,49,26,15,20,0,4,43,40,4770,5166,226,275,87,62,17,25,2,6,4989,5426,4667,5073,220,266,46,25,15,20,0,4,41,38,4707,5107,222,271,82,60,17,24,2,6,70,64,61,58,4,3,3,1,0,0,0,0,2,2,63,59,4,4,5,2,0,1,0,0 -050,01,003,Alabama,Baldwin County,9,16,7349,3422,3927,3227,3672,143,197,18,22,7,13,0,0,27,23,3252,3695,146,199,42,43,8,15,1,0,3399,3893,3204,3641,143,195,18,21,7,13,0,0,27,23,3229,3664,146,197,42,42,8,15,1,0,23,34,23,31,0,2,0,1,0,0,0,0,0,0,23,31,0,2,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,9,17,4608,2176,2432,2074,2272,64,119,14,11,4,18,0,0,20,12,2093,2282,65,120,33,20,5,21,0,2,2160,2405,2060,2247,63,118,14,10,4,18,0,0,19,12,2078,2257,64,119,32,19,5,21,0,2,16,27,14,25,1,1,0,1,0,0,0,0,1,0,15,25,1,1,1,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,9,18,4032,1610,2422,1537,2232,59,151,4,15,6,9,0,0,4,15,1540,2246,60,154,6,30,8,11,1,1,1595,2395,1522,2205,59,151,4,15,6,9,0,0,4,15,1525,2219,60,154,6,30,8,11,1,1,15,27,15,27,0,0,0,0,0,0,0,0,0,0,15,27,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,10,0,212737,103324,109413,90420,95285,9262,9967,855,764,894,1378,71,70,1822,1949,92139,97110,10018,10809,1704,1644,1302,1810,161,172,98286,104886,85929,91226,9088,9772,720,684,879,1367,45,60,1625,1777,87477,92901,9752,10533,1454,1464,1253,1753,108,131,5038,4527,4491,4059,174,195,135,80,15,11,26,10,197,172,4662,4209,266,276,250,180,49,57,53,41 -050,01,003,Alabama,Baldwin County,10,1,11901,6117,5784,5032,4718,616,635,54,44,80,52,8,5,327,330,5348,5036,819,850,132,111,159,129,18,16,5609,5313,4600,4319,604,609,36,26,74,46,4,5,291,308,4884,4616,788,816,94,80,146,114,12,11,508,471,432,399,12,26,18,18,6,6,4,0,36,22,464,420,31,34,38,31,13,15,6,5 -050,01,003,Alabama,Baldwin County,10,2,12722,6465,6257,5377,5196,689,673,43,48,73,68,3,4,280,268,5644,5459,863,830,111,120,144,125,20,15,5889,5743,4860,4734,674,654,32,43,72,67,2,3,249,242,5100,4972,829,799,87,101,134,121,12,11,576,514,517,462,15,19,11,5,1,1,1,1,31,26,544,487,34,31,24,19,10,4,8,4 -050,01,003,Alabama,Baldwin County,10,3,13394,6795,6599,5727,5531,733,687,42,40,66,91,4,4,223,246,5940,5768,853,821,111,113,113,152,11,14,6317,6149,5304,5123,719,677,36,34,64,91,2,2,192,222,5491,5339,823,798,89,95,109,144,6,11,478,450,423,408,14,10,6,6,2,0,2,2,31,24,449,429,30,23,22,18,4,8,5,3 -050,01,003,Alabama,Baldwin County,10,4,12739,6355,6384,5333,5104,724,791,53,45,71,249,3,5,171,190,5495,5280,812,888,114,112,111,296,11,16,5980,6016,4987,4766,714,782,49,42,71,249,1,4,158,173,5136,4927,797,868,102,98,109,293,9,13,375,368,346,338,10,9,4,3,0,0,2,1,13,17,359,353,15,20,12,14,2,3,2,3 -050,01,003,Alabama,Baldwin County,10,5,10884,5510,5374,4567,4455,755,670,43,54,44,69,1,7,100,119,4661,4567,799,723,86,102,67,100,5,11,5216,5106,4286,4212,750,659,41,49,44,68,1,6,94,112,4376,4317,791,708,83,95,65,98,3,10,294,268,281,243,5,11,2,5,0,1,0,1,6,7,285,250,8,15,3,7,2,2,2,1 -050,01,003,Alabama,Baldwin County,10,6,12363,6043,6320,4978,5318,807,752,58,45,90,84,17,9,93,112,5060,5418,834,795,108,94,122,120,23,17,5644,6000,4641,5035,786,733,37,41,90,84,9,8,81,99,4713,5124,807,769,78,83,121,115,13,12,399,320,337,283,21,19,21,4,0,0,8,1,12,13,347,294,27,26,30,11,1,5,10,5 -050,01,003,Alabama,Baldwin County,10,7,11817,5822,5995,4972,5120,659,670,46,43,74,71,6,1,65,90,5031,5201,675,697,82,88,94,96,11,8,5401,5650,4598,4812,631,641,36,42,74,71,4,1,58,83,4650,4888,645,666,67,81,94,95,8,6,421,345,374,308,28,29,10,1,0,0,2,0,7,7,381,313,30,31,15,7,0,1,3,2 -050,01,003,Alabama,Baldwin County,10,8,12901,6242,6659,5368,5690,630,674,56,51,98,165,8,6,82,73,5447,5757,646,694,111,100,121,184,15,14,5799,6313,4984,5382,611,662,36,40,97,164,6,5,65,60,5048,5438,621,676,78,80,117,179,11,9,443,346,384,308,19,12,20,11,1,1,2,1,17,13,399,319,25,18,33,20,4,5,4,5 -050,01,003,Alabama,Baldwin County,10,9,12739,6210,6529,5477,5706,550,581,61,38,50,125,3,2,69,77,5542,5773,563,599,109,94,64,139,8,5,5836,6181,5127,5385,538,569,59,35,50,125,1,1,61,66,5187,5442,548,582,102,83,63,139,3,3,374,348,350,321,12,12,2,3,0,0,2,1,8,11,355,331,15,17,7,11,1,0,5,2 -050,01,003,Alabama,Baldwin County,10,10,14127,6909,7218,6181,6370,519,620,52,50,75,102,7,7,75,69,6251,6431,531,639,107,98,90,113,12,15,6612,6936,5915,6116,510,606,41,44,74,101,5,6,67,63,5978,6171,518,622,91,89,89,111,10,13,297,282,266,254,9,14,11,6,1,1,2,1,8,6,273,260,13,17,16,9,1,2,2,2 -050,01,003,Alabama,Baldwin County,10,11,14285,6879,7406,6140,6497,556,673,69,71,49,77,2,6,63,82,6198,6572,565,688,123,131,59,93,4,10,6603,7193,5891,6312,551,661,58,65,48,76,2,6,53,73,5939,6380,557,673,103,118,56,90,4,9,276,213,249,185,5,12,11,6,1,1,0,0,10,9,259,192,8,15,20,13,3,3,0,1 -050,01,003,Alabama,Baldwin County,10,12,15233,7178,8055,6401,7153,595,709,71,46,33,66,3,4,75,77,6469,7225,607,723,130,106,46,78,10,7,6990,7880,6242,6994,586,703,61,42,32,66,2,3,67,72,6304,7062,594,714,116,99,43,75,5,5,188,175,159,159,9,6,10,4,1,0,1,1,8,5,165,163,13,9,14,7,3,3,5,2 -050,01,003,Alabama,Baldwin County,10,13,15092,7023,8069,6370,7256,507,627,70,64,25,48,1,3,50,71,6419,7319,512,637,113,124,30,59,3,9,6867,7911,6230,7117,498,619,65,60,25,48,1,3,48,64,6277,7177,503,627,106,117,30,55,3,6,156,158,140,139,9,8,5,4,0,0,0,0,2,7,142,142,9,10,7,7,0,4,0,3 -050,01,003,Alabama,Baldwin County,10,14,13990,6536,7454,6006,6861,408,453,40,43,31,42,2,1,49,54,6048,6911,416,459,81,91,38,50,5,3,6428,7348,5906,6757,407,453,39,42,30,42,2,1,44,53,5944,6806,413,458,77,89,35,49,4,2,108,106,100,104,1,0,1,1,1,0,0,0,5,1,104,105,3,1,4,2,3,1,1,1 -050,01,003,Alabama,Baldwin County,10,15,11790,5658,6132,5317,5757,228,271,53,34,17,26,1,6,42,38,5358,5791,230,276,91,63,21,29,2,11,5577,6063,5244,5698,225,266,50,33,16,26,1,6,41,34,5284,5729,227,270,87,61,20,28,2,9,81,69,73,59,3,5,3,1,1,0,0,0,1,4,74,62,3,6,4,2,1,1,0,2 -050,01,003,Alabama,Baldwin County,10,16,7818,3665,4153,3434,3875,163,211,23,24,10,16,0,0,35,27,3467,3902,165,215,54,49,13,18,1,0,3632,4117,3403,3843,162,208,23,23,10,16,0,0,34,27,3435,3870,164,212,54,48,12,18,1,0,33,36,31,32,1,3,0,1,0,0,0,0,1,0,32,32,1,3,0,1,1,0,0,0 -050,01,003,Alabama,Baldwin County,10,17,4765,2241,2524,2132,2354,70,128,19,13,3,17,2,0,15,12,2145,2363,73,132,32,24,4,18,2,0,2226,2496,2119,2327,69,128,19,12,3,17,2,0,14,12,2131,2336,72,132,31,23,4,18,2,0,15,28,13,27,1,0,0,1,0,0,0,0,1,0,14,27,1,0,1,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,10,18,4177,1676,2501,1608,2324,53,142,2,11,5,10,0,0,8,14,1616,2337,55,143,9,24,6,11,0,1,1660,2471,1592,2294,53,142,2,11,5,10,0,0,8,14,1600,2307,55,143,9,24,6,11,0,1,16,30,16,30,0,0,0,0,0,0,0,0,0,0,16,30,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,11,0,218071,105782,112289,92640,97898,9353,10083,853,783,932,1416,71,71,1933,2038,94458,99815,10176,10949,1731,1699,1380,1875,173,173,100551,107531,87990,93628,9174,9884,708,702,913,1402,46,62,1720,1853,89623,95390,9898,10674,1465,1514,1310,1821,119,144,5231,4758,4650,4270,179,199,145,81,19,14,25,9,213,185,4835,4425,278,275,266,185,70,54,54,29 -050,01,003,Alabama,Baldwin County,11,1,12006,6237,5769,5104,4710,622,633,57,35,83,54,9,6,362,331,5452,5021,851,851,139,102,165,131,25,17,5650,5319,4605,4319,609,616,31,22,77,48,4,6,324,308,4919,4612,816,824,94,77,152,120,16,15,587,450,499,391,13,17,26,13,6,6,5,0,38,23,533,409,35,27,45,25,13,11,9,2 -050,01,003,Alabama,Baldwin County,11,2,12824,6511,6313,5434,5244,667,659,41,49,79,78,3,4,287,279,5713,5513,843,827,118,119,147,140,12,18,5985,5793,4963,4774,655,641,33,43,78,77,2,3,254,255,5213,5022,812,800,92,100,139,135,7,12,526,520,471,470,12,18,8,6,1,1,1,1,33,24,500,491,31,27,26,19,8,5,5,6 -050,01,003,Alabama,Baldwin County,11,3,13895,7049,6846,5944,5716,763,717,38,48,71,91,4,1,229,273,6162,5979,885,862,111,134,135,156,19,14,6520,6366,5473,5288,747,705,32,40,69,91,2,0,197,242,5662,5521,852,839,86,107,125,150,14,9,529,480,471,428,16,12,6,8,2,0,2,1,32,31,500,458,33,23,25,27,10,6,5,5 -050,01,003,Alabama,Baldwin County,11,4,12872,6387,6485,5356,5233,723,769,54,45,68,239,2,7,184,192,5528,5412,815,870,122,111,108,291,9,18,6021,6080,5022,4865,716,757,48,44,68,238,1,5,166,171,5177,5028,802,846,104,101,105,285,6,15,366,405,334,368,7,12,6,1,0,1,1,2,18,21,351,384,13,24,18,10,3,6,3,3 -050,01,003,Alabama,Baldwin County,11,5,10960,5533,5427,4626,4492,699,697,46,48,43,57,2,5,117,128,4735,4615,755,754,97,100,72,86,4,12,5223,5139,4333,4233,690,686,44,43,43,55,1,4,112,118,4437,4348,744,737,90,90,72,82,3,8,310,288,293,259,9,11,2,5,0,2,1,1,5,10,298,267,11,17,7,10,0,4,1,4 -050,01,003,Alabama,Baldwin County,11,6,12510,6173,6337,5091,5345,845,721,52,47,79,92,11,10,95,122,5175,5461,880,766,98,104,105,128,17,17,5799,6039,4775,5081,829,703,29,43,79,92,7,9,80,111,4846,5187,858,744,69,95,101,125,12,15,374,298,316,264,16,18,23,4,0,0,4,1,15,11,329,274,22,22,29,9,4,3,5,2 -050,01,003,Alabama,Baldwin County,11,7,12097,5958,6139,5078,5250,676,678,41,46,67,74,10,2,86,89,5159,5330,697,705,87,90,97,100,13,10,5513,5764,4685,4904,647,658,31,45,67,74,6,2,77,81,4757,4978,667,681,71,83,95,100,9,9,445,375,393,346,29,20,10,1,0,0,4,0,9,8,402,352,30,24,16,7,2,0,4,1 -050,01,003,Alabama,Baldwin County,11,8,13295,6383,6912,5477,5910,638,709,63,48,125,165,7,4,73,76,5546,5977,655,730,110,99,144,185,12,7,5971,6568,5112,5605,621,687,48,42,124,164,6,4,60,66,5170,5665,633,704,87,86,139,182,9,7,412,344,365,305,17,22,15,6,1,1,1,0,13,10,376,312,22,26,23,13,5,3,3,0 -050,01,003,Alabama,Baldwin County,11,9,12911,6278,6633,5528,5763,550,592,58,50,62,140,5,2,75,86,5594,5843,566,609,111,107,78,158,12,5,5901,6267,5188,5441,538,576,48,39,60,140,2,1,65,70,5248,5508,549,588,96,85,71,156,4,3,377,366,340,322,12,16,10,11,2,0,3,1,10,16,346,335,17,21,15,22,7,2,8,2 -050,01,003,Alabama,Baldwin County,11,10,14445,7024,7421,6255,6575,562,636,56,38,65,98,4,5,82,69,6332,6639,574,649,113,81,83,114,6,10,6700,7125,5968,6302,546,619,46,36,64,98,4,4,72,66,6037,6365,554,630,97,79,80,111,6,9,324,296,287,273,16,17,10,2,1,0,0,1,10,3,295,274,20,19,16,2,3,3,0,1 -050,01,003,Alabama,Baldwin County,11,11,14268,6837,7431,6150,6538,514,645,51,73,56,86,5,8,61,81,6201,6613,524,656,98,130,70,101,13,15,6532,7189,5867,6327,508,634,46,64,54,84,3,8,54,72,5914,6394,515,641,90,115,65,98,8,14,305,242,283,211,6,11,5,9,2,2,2,0,7,9,287,219,9,15,8,15,5,3,5,1 -050,01,003,Alabama,Baldwin County,11,12,15777,7437,8340,6634,7401,621,725,73,63,33,68,2,5,74,78,6705,7473,630,734,127,125,51,85,10,11,7229,8133,6462,7212,613,723,59,56,32,67,1,4,62,71,6522,7278,619,730,104,113,46,82,6,10,208,207,172,189,8,2,14,7,1,1,1,1,12,7,183,195,11,4,23,12,5,3,4,1 -050,01,003,Alabama,Baldwin County,11,13,15660,7301,8359,6618,7520,521,654,75,51,23,51,1,5,63,78,6677,7593,528,668,126,117,35,62,8,9,7119,8172,6455,7353,511,641,69,49,23,51,1,5,60,73,6511,7421,517,654,118,112,35,60,8,8,182,187,163,167,10,13,6,2,0,0,0,0,3,5,166,172,11,14,8,5,0,2,0,1 -050,01,003,Alabama,Baldwin County,11,14,14250,6575,7675,6044,7039,412,479,39,49,36,48,3,1,41,59,6081,7093,419,487,72,100,41,56,5,1,6458,7565,5935,6937,411,477,38,47,35,48,3,1,36,55,5968,6988,415,484,69,97,38,53,4,1,117,110,109,102,1,2,1,2,1,0,0,0,5,4,113,105,4,3,3,3,3,3,1,0 -050,01,003,Alabama,Baldwin County,11,15,12472,5995,6477,5651,6068,227,301,53,34,19,28,1,5,44,41,5695,6108,229,307,94,71,22,31,2,7,5899,6397,5562,5998,224,296,50,32,18,28,1,5,44,38,5606,6035,226,301,91,67,21,31,2,7,96,80,89,70,3,5,3,2,1,0,0,0,0,3,89,73,3,6,3,4,1,0,0,0 -050,01,003,Alabama,Baldwin County,11,16,8490,3992,4498,3735,4215,178,203,31,29,12,22,0,1,36,28,3767,4240,183,206,64,55,13,24,2,1,3958,4453,3705,4174,176,200,31,28,12,22,0,1,34,28,3736,4199,180,203,63,54,13,24,1,1,34,45,30,41,2,3,0,1,0,0,0,0,2,0,31,41,3,3,1,1,0,0,1,0 -050,01,003,Alabama,Baldwin County,11,17,5077,2377,2700,2256,2523,79,131,19,14,5,16,2,0,16,16,2270,2537,82,133,31,28,7,18,3,0,2357,2669,2240,2493,77,131,19,13,4,16,2,0,15,16,2253,2507,79,133,31,27,6,18,3,0,20,31,16,30,2,0,0,1,1,0,0,0,1,0,17,30,3,0,0,1,1,0,0,0 -050,01,003,Alabama,Baldwin County,11,18,4262,1735,2527,1659,2356,56,134,6,16,6,9,0,0,8,12,1666,2368,60,135,13,26,7,9,1,1,1716,2493,1640,2322,56,134,6,16,6,9,0,0,8,12,1647,2334,60,135,13,26,7,9,1,1,19,34,19,34,0,0,0,0,0,0,0,0,0,0,19,34,0,0,0,0,0,0,0,0 -050,01,003,Alabama,Baldwin County,12,0,223565,108396,115169,94842,100461,9502,10123,891,833,976,1460,78,77,2107,2215,96823,102540,10430,11081,1810,1807,1459,1963,183,176,102983,110214,90035,96021,9322,9915,738,745,954,1444,52,68,1882,2021,91824,97939,10150,10796,1535,1606,1387,1897,122,144,5413,4955,4807,4440,180,208,153,88,22,16,26,9,225,194,4999,4601,280,285,275,201,72,66,61,32 -050,01,003,Alabama,Baldwin County,12,1,12068,6306,5762,5149,4662,620,645,48,33,88,66,7,4,394,352,5527,5000,870,873,132,100,176,141,26,17,5702,5295,4625,4259,606,628,27,20,81,59,5,4,358,325,4972,4573,838,846,91,73,165,127,17,13,604,467,524,403,14,17,21,13,7,7,2,0,36,27,555,427,32,27,41,27,11,14,9,4 -050,01,003,Alabama,Baldwin County,12,2,13114,6731,6383,5588,5295,681,623,38,46,81,88,8,5,335,326,5915,5609,882,820,127,133,157,150,19,16,6216,5889,5143,4855,666,603,28,41,80,86,4,5,295,299,5434,5146,849,787,97,114,148,144,12,15,515,494,445,440,15,20,10,5,1,2,4,0,40,27,481,463,33,33,30,19,9,6,7,1 -050,01,003,Alabama,Baldwin County,12,3,14088,7102,6986,5963,5830,762,721,47,50,76,85,2,4,252,296,6202,6114,905,885,117,133,137,161,14,20,6524,6468,5442,5368,750,705,39,43,74,85,1,2,218,265,5650,5625,875,850,97,111,124,153,7,15,578,518,521,462,12,16,8,7,2,0,1,2,34,31,552,489,30,35,20,22,13,8,7,5 -050,01,003,Alabama,Baldwin County,12,4,13168,6598,6570,5560,5298,722,794,54,41,59,230,5,5,198,202,5747,5490,821,900,121,112,112,283,14,13,6204,6161,5205,4923,714,786,44,36,59,229,2,4,180,183,5376,5099,807,884,101,94,105,278,10,12,394,409,355,375,8,8,10,5,0,1,3,1,18,19,371,391,14,16,20,18,7,5,4,1 -050,01,003,Alabama,Baldwin County,12,5,11140,5600,5540,4639,4588,715,681,49,60,50,62,4,7,143,142,4775,4724,781,744,106,113,86,98,9,15,5290,5225,4356,4304,703,670,46,53,49,61,3,6,133,131,4483,4430,765,729,98,102,84,95,7,10,310,315,283,284,12,11,3,7,1,1,1,1,10,11,292,294,16,15,8,11,2,3,2,5 -050,01,003,Alabama,Baldwin County,12,6,12645,6253,6392,5139,5390,851,704,59,55,89,100,6,10,109,133,5241,5512,887,757,111,114,127,143,9,14,5893,6100,4830,5132,838,686,40,53,88,99,3,9,94,121,4919,5245,870,734,83,104,121,139,6,13,360,292,309,258,13,18,19,2,1,1,3,1,15,12,322,267,17,23,28,10,6,4,3,1 -050,01,003,Alabama,Baldwin County,12,7,12565,6137,6428,5230,5510,694,696,48,46,64,80,10,3,91,93,5312,5593,718,724,100,92,92,110,12,5,5712,6035,4859,5153,666,673,34,43,64,80,6,3,83,83,4935,5228,688,699,79,81,92,107,6,4,425,393,371,357,28,23,14,3,0,0,4,0,8,10,377,365,30,25,21,11,0,3,6,1 -050,01,003,Alabama,Baldwin County,12,8,13462,6588,6874,5670,5882,656,696,51,53,128,146,10,6,73,91,5738,5965,671,717,94,107,148,173,19,11,6132,6532,5263,5583,632,673,42,45,128,145,8,5,59,81,5318,5658,641,692,77,93,146,169,15,9,456,342,407,299,24,23,9,8,0,1,2,1,14,10,420,307,30,25,17,14,2,4,4,2 -050,01,003,Alabama,Baldwin County,12,9,13225,6371,6854,5605,5955,550,598,65,51,66,163,7,2,78,85,5676,6032,571,618,117,108,82,181,12,7,5982,6504,5257,5644,542,580,48,43,64,163,5,1,66,73,5320,5710,556,595,95,93,76,180,8,5,389,350,348,311,8,18,17,8,2,0,2,1,12,12,356,322,15,23,22,15,6,1,4,2 -050,01,003,Alabama,Baldwin County,12,10,14451,6940,7511,6167,6652,564,642,59,46,71,92,5,5,74,74,6236,6717,578,659,114,97,86,109,11,13,6616,7176,5872,6345,555,626,50,40,69,92,4,4,66,69,5936,6407,566,641,98,88,84,105,7,9,324,335,295,307,9,16,9,6,2,0,1,1,8,5,300,310,12,18,16,9,2,4,4,4 -050,01,003,Alabama,Baldwin County,12,11,14330,6892,7438,6200,6560,504,619,51,78,61,90,5,8,71,83,6266,6637,518,632,104,141,78,107,11,15,6585,7175,5920,6329,493,606,45,69,59,88,3,8,65,75,5980,6399,504,617,94,127,75,103,8,14,307,263,280,231,11,13,6,9,2,2,2,0,6,8,286,238,14,15,10,14,3,4,3,1 -050,01,003,Alabama,Baldwin County,12,12,16289,7739,8550,6904,7596,644,727,78,65,35,75,1,5,77,82,6972,7669,657,739,136,130,50,90,10,11,7502,8309,6705,7377,635,723,63,58,34,74,0,4,65,73,6764,7444,643,732,113,116,45,87,4,9,237,241,199,219,9,4,15,7,1,1,1,1,12,9,208,225,14,7,23,14,5,3,6,2 -050,01,003,Alabama,Baldwin County,12,13,16146,7407,8739,6705,7901,535,650,81,53,22,52,2,5,62,78,6760,7972,543,663,132,115,32,64,5,7,7222,8542,6535,7716,530,642,75,52,22,52,2,5,58,75,6587,7785,536,655,123,112,32,63,5,6,185,197,170,185,5,8,6,1,0,0,0,0,4,3,173,187,7,8,9,3,0,1,0,1 -050,01,003,Alabama,Baldwin County,12,14,14873,6887,7986,6341,7303,419,505,46,59,32,50,2,2,47,67,6381,7367,429,512,88,116,37,61,4,4,6755,7857,6221,7187,414,501,44,56,31,50,2,2,43,61,6257,7246,423,507,83,108,34,57,4,3,132,129,120,116,5,4,2,3,1,0,0,0,4,6,124,121,6,5,5,8,3,4,0,1 -050,01,003,Alabama,Baldwin County,12,15,13168,6274,6894,5896,6431,252,337,50,40,29,34,2,3,45,49,5937,6475,259,343,89,81,32,40,4,4,6171,6810,5799,6358,251,331,47,38,28,34,2,3,44,46,5839,6400,257,336,86,78,31,39,4,3,103,84,97,73,1,6,3,2,1,0,0,0,1,3,98,75,2,7,3,3,1,1,0,1 -050,01,003,Alabama,Baldwin County,12,16,9042,4262,4780,3989,4478,182,223,39,26,16,21,0,3,36,29,4023,4505,185,225,72,53,17,23,2,3,4211,4724,3945,4427,178,220,38,25,16,21,0,3,34,28,3979,4454,179,222,71,51,16,22,0,3,51,56,44,51,4,3,1,1,0,0,0,0,2,1,44,51,6,3,1,2,1,1,2,0 -050,01,003,Alabama,Baldwin County,12,17,5380,2493,2887,2369,2708,90,127,17,19,3,15,0,0,14,18,2380,2724,93,131,31,36,3,15,0,0,2472,2859,2352,2680,88,127,17,19,2,15,0,0,13,18,2362,2696,91,131,30,36,2,15,0,0,21,28,17,28,2,0,0,0,1,0,0,0,1,0,18,28,2,0,1,0,1,0,0,0 -050,01,003,Alabama,Baldwin County,12,18,4411,1816,2595,1728,2422,61,135,11,12,6,11,2,0,8,15,1735,2435,62,139,19,26,7,14,2,1,1794,2553,1706,2381,61,135,11,11,6,11,2,0,8,15,1713,2394,62,139,19,25,7,14,2,1,22,42,22,41,0,0,0,1,0,0,0,0,0,0,22,41,0,0,0,1,0,0,0,0 -050,01,003,Alabama,Baldwin County,13,0,229287,111000,118287,97202,103276,9585,10252,923,865,1020,1509,72,80,2198,2305,99278,105435,10528,11280,1874,1850,1527,2046,173,202,105492,113170,92305,98710,9404,10037,770,763,1000,1492,45,65,1968,2103,94181,100693,10249,10973,1598,1636,1458,1973,116,150,5508,5117,4897,4566,181,215,153,102,20,17,27,15,230,202,5097,4742,279,307,276,214,69,73,57,52 -050,01,003,Alabama,Baldwin County,13,1,12092,6317,5775,5154,4685,653,640,52,38,86,67,8,6,364,339,5499,5012,881,865,127,102,170,143,23,14,5736,5313,4649,4288,635,620,31,24,81,61,5,5,335,315,4969,4592,850,833,91,78,160,131,18,11,581,462,505,397,18,20,21,14,5,6,3,1,29,24,530,420,31,32,36,24,10,12,5,3 -050,01,003,Alabama,Baldwin County,13,2,13409,6909,6500,5697,5358,684,652,48,41,92,94,8,7,380,348,6062,5695,910,860,140,126,178,172,24,24,6377,6005,5241,4927,668,630,38,33,90,90,5,5,335,320,5564,5238,874,826,109,102,167,164,15,18,532,495,456,431,16,22,10,8,2,4,3,2,45,28,498,457,36,34,31,24,11,8,9,6 -050,01,003,Alabama,Baldwin County,13,3,14271,7206,7065,6049,5896,744,728,42,56,94,85,3,4,274,296,6316,6177,895,896,124,140,163,156,16,18,6627,6540,5522,5430,735,709,31,49,91,85,1,2,247,265,5765,5683,872,863,100,117,155,148,11,12,579,525,527,466,9,19,11,7,3,0,2,2,27,31,551,494,23,33,24,23,8,8,5,6 -050,01,003,Alabama,Baldwin County,13,4,13435,6714,6721,5664,5467,729,791,57,47,59,188,1,4,204,224,5857,5679,823,909,130,118,114,247,11,15,6294,6294,5287,5073,720,786,49,41,59,188,1,2,178,204,5457,5267,808,892,103,102,106,243,9,10,420,427,377,394,9,5,8,6,0,0,0,2,26,20,400,412,15,17,27,16,8,4,2,5 -050,01,003,Alabama,Baldwin County,13,5,11328,5694,5634,4725,4642,699,683,52,50,59,95,4,6,155,158,4875,4793,770,756,118,109,97,142,8,19,5376,5299,4438,4341,688,675,49,43,58,93,1,5,142,142,4577,4477,753,739,108,94,93,137,5,15,318,335,287,301,11,8,3,7,1,2,3,1,13,16,298,316,17,17,10,15,4,5,3,4 -050,01,003,Alabama,Baldwin County,13,6,12465,6252,6213,5157,5216,833,711,61,45,84,87,5,8,112,146,5262,5346,875,774,115,106,120,131,14,22,5908,5931,4856,4967,822,696,45,44,84,87,3,7,98,130,4949,5084,857,747,90,98,115,124,7,14,344,282,301,249,11,15,16,1,0,0,2,1,14,16,313,262,18,27,25,8,5,7,7,8 -050,01,003,Alabama,Baldwin County,13,7,12962,6294,6668,5348,5703,725,709,60,52,52,89,9,6,100,109,5439,5805,751,746,108,109,88,125,11,12,5901,6307,5005,5383,705,685,43,46,52,89,4,5,92,99,5089,5476,729,718,86,94,86,121,6,10,393,361,343,320,20,24,17,6,0,0,5,1,8,10,350,329,22,28,22,15,2,4,5,2 -050,01,003,Alabama,Baldwin County,13,8,13565,6590,6975,5715,6005,629,678,49,57,119,148,10,4,68,83,5778,6082,648,698,89,108,135,171,14,10,6117,6592,5298,5662,595,652,43,51,119,147,8,3,54,77,5347,5735,607,669,77,98,134,168,12,7,473,383,417,343,34,26,6,6,0,1,2,1,14,6,431,347,41,29,12,10,1,3,2,3 -050,01,003,Alabama,Baldwin County,13,9,13920,6681,7239,5838,6286,601,638,64,57,85,169,4,4,89,85,5919,6360,619,659,125,113,102,187,9,8,6273,6882,5474,5974,593,620,44,43,84,168,2,3,76,74,5545,6040,608,639,96,90,98,184,4,5,408,357,364,312,8,18,20,14,1,1,2,1,13,11,374,320,11,20,29,23,4,3,5,3 -050,01,003,Alabama,Baldwin County,13,10,14298,6948,7350,6186,6484,559,621,58,50,62,108,5,4,78,83,6258,6557,571,639,113,101,79,129,9,13,6599,6995,5862,6155,552,609,51,45,61,108,4,3,69,75,5927,6224,560,626,101,92,77,124,7,7,349,355,324,329,7,12,7,5,1,0,1,1,9,8,331,333,11,13,12,9,2,5,2,6 -050,01,003,Alabama,Baldwin County,13,11,14610,6995,7615,6318,6799,488,580,46,69,67,89,5,8,71,70,6386,6865,497,593,96,122,83,101,11,15,6705,7345,6052,6559,477,569,41,59,65,87,3,8,67,63,6117,6618,484,581,90,108,80,97,8,13,290,270,266,240,11,11,5,10,2,2,2,0,4,7,269,247,13,12,6,14,3,4,3,2 -050,01,003,Alabama,Baldwin County,13,12,16450,7758,8692,6969,7707,596,741,78,70,42,86,1,6,72,82,7036,7783,606,758,131,133,55,101,7,10,7501,8434,6744,7481,590,728,65,63,41,85,0,4,61,73,6801,7549,594,741,113,119,52,97,3,7,257,258,225,226,6,13,13,7,1,1,1,2,11,9,235,234,12,17,18,14,3,4,4,3 -050,01,003,Alabama,Baldwin County,13,13,16997,7811,9186,7040,8276,586,691,78,60,31,58,3,4,73,97,7107,8362,601,709,137,133,42,71,7,9,7608,8966,6863,8071,578,684,68,57,30,58,2,4,67,92,6925,8152,590,699,125,127,39,71,5,9,203,220,177,205,8,7,10,3,1,0,1,0,6,5,182,210,11,10,12,6,3,0,2,0 -050,01,003,Alabama,Baldwin County,13,14,15731,7232,8499,6660,7786,430,522,63,63,28,61,1,2,50,65,6705,7844,436,530,108,116,32,74,3,3,7080,8353,6523,7656,424,517,61,59,27,61,1,2,44,58,6565,7708,429,524,101,108,30,70,1,3,152,146,137,130,6,5,2,4,1,0,0,0,6,7,140,136,7,6,7,8,2,4,2,0 -050,01,003,Alabama,Baldwin County,13,15,13973,6589,7384,6166,6877,292,369,47,50,33,34,3,4,48,50,6212,6922,299,376,91,92,36,40,3,7,6480,7284,6062,6785,291,365,46,48,32,34,3,4,46,48,6106,6829,296,371,90,90,35,39,3,6,109,100,104,92,1,4,1,2,1,0,0,0,2,2,106,93,3,5,1,2,1,1,0,1 -050,01,003,Alabama,Baldwin County,13,16,9554,4560,4994,4280,4679,185,227,43,24,16,27,0,3,36,34,4312,4710,189,233,78,52,18,30,0,3,4506,4937,4235,4630,181,222,40,23,16,27,0,3,34,32,4266,4660,183,227,74,50,17,29,0,3,54,57,45,49,4,5,3,1,0,0,0,0,2,2,46,50,6,6,4,2,1,1,0,0 -050,01,003,Alabama,Baldwin County,13,17,5678,2572,3106,2440,2925,101,135,11,18,4,10,0,0,16,18,2453,2941,104,140,24,34,6,11,1,0,2547,3069,2418,2889,99,134,11,18,4,10,0,0,15,18,2430,2905,102,139,24,34,6,11,0,0,25,37,22,36,2,1,0,0,0,0,0,0,1,0,23,36,2,1,0,0,0,0,1,0 -050,01,003,Alabama,Baldwin County,13,18,4549,1878,2671,1796,2485,51,136,14,18,7,14,2,0,8,18,1802,2502,53,139,20,36,9,15,2,0,1857,2624,1776,2439,51,136,14,17,6,14,2,0,8,18,1782,2456,53,139,20,35,8,15,2,0,21,47,20,46,0,0,0,1,1,0,0,0,0,0,20,46,0,0,0,1,1,0,0,0 -050,01,005,Alabama,Barbour County,1,0,27457,14576,12881,7463,6524,6808,6133,93,73,59,53,29,18,124,80,7546,6583,6898,6182,162,116,67,57,33,23,13799,12271,6832,6017,6746,6084,31,31,59,53,16,8,115,78,6909,6074,6832,6133,93,72,66,57,19,13,777,610,631,507,62,49,62,42,0,0,13,10,9,2,637,509,66,49,69,44,1,0,14,10 -050,01,005,Alabama,Barbour County,1,1,1702,847,855,346,389,473,439,10,9,3,2,1,0,14,16,360,404,484,451,10,13,5,3,2,0,750,730,269,281,463,431,1,0,3,2,1,0,13,16,282,296,474,443,1,4,5,3,1,0,97,125,77,108,10,8,9,9,0,0,0,0,1,0,78,108,10,8,9,9,0,0,1,0 -050,01,005,Alabama,Barbour County,1,2,1642,826,816,353,358,455,445,2,3,6,3,1,1,9,6,361,364,464,450,2,4,7,3,1,1,765,748,298,300,449,440,2,0,6,3,1,0,9,5,306,305,458,445,2,0,7,3,1,0,61,68,55,58,6,5,0,3,0,0,0,1,0,1,55,59,6,5,0,4,0,0,0,1 -050,01,005,Alabama,Barbour County,1,3,1599,820,779,359,319,443,443,4,1,4,3,1,1,9,12,367,328,449,452,8,7,4,3,1,1,789,750,333,296,441,439,1,0,4,3,1,0,9,12,341,305,447,448,5,6,4,3,1,0,31,29,26,23,2,4,3,1,0,0,0,1,0,0,26,23,2,4,3,1,0,0,0,1 -050,01,005,Alabama,Barbour County,1,4,1731,919,812,426,336,466,454,8,9,6,1,2,3,11,9,437,343,469,462,15,10,8,3,2,3,854,774,370,306,463,451,5,7,6,1,1,0,9,9,379,313,466,459,10,8,7,3,1,0,65,38,56,30,3,3,3,2,0,0,1,3,2,0,58,30,3,3,5,2,1,0,1,3 -050,01,005,Alabama,Barbour County,1,5,1794,1048,746,425,322,582,403,17,11,4,5,8,3,12,2,431,324,592,404,26,12,4,5,8,3,934,664,330,254,578,399,5,1,4,5,5,3,12,2,336,256,588,400,14,2,4,5,5,3,114,82,95,68,4,4,12,10,0,0,3,0,0,0,95,68,4,4,12,10,0,0,3,0 -050,01,005,Alabama,Barbour County,1,6,2010,1212,798,517,337,653,441,16,14,3,3,9,1,14,2,519,338,667,442,28,16,3,3,9,1,1082,715,419,271,643,435,1,3,3,3,4,1,12,2,421,272,655,436,11,5,3,3,4,1,130,83,98,66,10,6,15,11,0,0,5,0,2,0,98,66,12,6,17,11,0,0,5,0 -050,01,005,Alabama,Barbour County,1,7,1808,1162,646,523,305,612,331,8,3,8,7,2,0,9,0,529,305,620,331,12,3,8,7,2,0,1064,595,442,257,605,330,0,1,8,7,1,0,8,0,447,257,612,330,4,1,8,7,1,0,98,51,81,48,7,1,8,2,0,0,1,0,1,0,82,48,8,1,8,2,0,0,1,0 -050,01,005,Alabama,Barbour County,1,8,1819,1046,773,548,402,478,360,6,2,5,2,1,2,8,5,554,405,486,361,7,6,5,2,2,4,989,729,502,363,473,358,1,1,5,2,0,0,8,5,508,366,481,359,2,5,5,2,1,2,57,44,46,39,5,2,5,1,0,0,1,2,0,0,46,39,5,2,5,1,0,0,1,2 -050,01,005,Alabama,Barbour County,1,9,1809,1069,740,556,351,501,375,1,5,3,2,1,3,7,4,561,354,504,376,8,9,3,2,1,3,1030,712,521,331,500,371,0,4,3,2,0,0,6,4,525,334,503,372,6,8,3,2,0,0,39,28,35,20,1,4,1,1,0,0,1,3,1,0,36,20,1,4,2,1,0,0,1,3 -050,01,005,Alabama,Barbour County,1,10,2108,1164,944,613,467,536,468,6,3,3,4,1,0,5,2,616,469,538,468,11,5,3,4,1,0,1132,922,590,448,530,466,5,3,3,4,0,0,4,1,593,449,531,466,9,4,3,4,0,0,32,22,23,19,6,2,1,0,0,0,1,0,1,1,23,20,7,2,2,1,0,0,1,0 -050,01,005,Alabama,Barbour County,1,11,1910,1000,910,567,489,413,409,5,1,4,4,1,2,10,5,573,492,418,411,13,5,5,5,1,2,980,898,554,480,410,406,2,1,4,4,1,2,9,5,559,483,415,408,9,5,5,5,1,2,20,12,13,9,3,3,3,0,0,0,0,0,1,0,14,9,3,3,4,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,12,1817,910,907,492,482,410,411,2,4,1,6,0,0,5,4,493,484,415,413,6,6,1,6,0,2,895,899,479,475,409,410,1,4,1,6,0,0,5,4,480,477,414,412,5,6,1,6,0,2,15,8,13,7,1,1,1,0,0,0,0,0,0,0,13,7,1,1,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,13,1799,859,940,543,555,305,370,5,4,1,4,0,0,5,7,546,558,307,374,8,10,2,4,1,1,851,934,537,551,303,369,5,3,1,4,0,0,5,7,540,554,305,373,8,9,2,4,1,1,8,6,6,4,2,1,0,1,0,0,0,0,0,0,6,4,2,1,0,1,0,0,0,0 -050,01,005,Alabama,Barbour County,1,14,1290,631,659,436,427,187,226,1,0,5,4,0,0,2,2,438,428,188,227,2,2,5,4,0,0,626,656,433,424,186,226,0,0,5,4,0,0,2,2,435,425,187,227,1,2,5,4,0,0,5,3,3,3,1,0,1,0,0,0,0,0,0,0,3,3,1,0,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,15,948,436,512,315,335,118,174,0,1,1,1,1,0,1,1,316,336,119,174,1,2,2,1,2,0,433,509,313,334,117,172,0,1,1,1,1,0,1,1,314,335,118,172,1,2,2,1,2,0,3,3,2,1,1,2,0,0,0,0,0,0,0,0,2,1,1,2,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,16,685,303,382,218,252,84,127,0,1,0,0,0,2,1,0,219,252,84,127,1,1,0,0,0,2,303,379,218,249,84,127,0,1,0,0,0,2,1,0,219,249,84,127,1,1,0,0,0,2,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,17,543,195,348,135,204,56,140,2,1,0,0,0,0,2,3,135,205,58,142,4,4,0,0,0,0,194,346,134,203,56,139,2,1,0,0,0,0,2,3,134,204,58,141,4,4,0,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,1,18,443,129,314,91,194,36,117,0,1,2,2,0,0,0,0,91,194,36,117,0,1,2,2,0,0,128,311,90,194,36,115,0,0,2,2,0,0,0,0,90,194,36,115,0,0,2,2,0,0,1,3,1,0,0,2,0,1,0,0,0,0,0,0,1,0,0,2,0,1,0,0,0,0 -050,01,005,Alabama,Barbour County,2,0,27454,14575,12879,7463,6523,6807,6132,93,73,59,53,29,18,124,80,7546,6582,6897,6181,162,116,67,57,33,23,13798,12269,6832,6016,6745,6083,31,31,59,53,16,8,115,78,6909,6073,6831,6132,93,72,66,57,19,13,777,610,631,507,62,49,62,42,0,0,13,10,9,2,637,509,66,49,69,44,1,0,14,10 -050,01,005,Alabama,Barbour County,2,1,1702,847,855,346,389,473,439,10,9,3,2,1,0,14,16,360,404,484,451,10,13,5,3,2,0,750,730,269,281,463,431,1,0,3,2,1,0,13,16,282,296,474,443,1,4,5,3,1,0,97,125,77,108,10,8,9,9,0,0,0,0,1,0,78,108,10,8,9,9,0,0,1,0 -050,01,005,Alabama,Barbour County,2,2,1642,826,816,353,358,455,445,2,3,6,3,1,1,9,6,361,364,464,450,2,4,7,3,1,1,765,748,298,300,449,440,2,0,6,3,1,0,9,5,306,305,458,445,2,0,7,3,1,0,61,68,55,58,6,5,0,3,0,0,0,1,0,1,55,59,6,5,0,4,0,0,0,1 -050,01,005,Alabama,Barbour County,2,3,1599,820,779,359,319,443,443,4,1,4,3,1,1,9,12,367,328,449,452,8,7,4,3,1,1,789,750,333,296,441,439,1,0,4,3,1,0,9,12,341,305,447,448,5,6,4,3,1,0,31,29,26,23,2,4,3,1,0,0,0,1,0,0,26,23,2,4,3,1,0,0,0,1 -050,01,005,Alabama,Barbour County,2,4,1731,919,812,426,336,466,454,8,9,6,1,2,3,11,9,437,343,469,462,15,10,8,3,2,3,854,774,370,306,463,451,5,7,6,1,1,0,9,9,379,313,466,459,10,8,7,3,1,0,65,38,56,30,3,3,3,2,0,0,1,3,2,0,58,30,3,3,5,2,1,0,1,3 -050,01,005,Alabama,Barbour County,2,5,1794,1048,746,425,322,582,403,17,11,4,5,8,3,12,2,431,324,592,404,26,12,4,5,8,3,934,664,330,254,578,399,5,1,4,5,5,3,12,2,336,256,588,400,14,2,4,5,5,3,114,82,95,68,4,4,12,10,0,0,3,0,0,0,95,68,4,4,12,10,0,0,3,0 -050,01,005,Alabama,Barbour County,2,6,2010,1212,798,517,337,653,441,16,14,3,3,9,1,14,2,519,338,667,442,28,16,3,3,9,1,1082,715,419,271,643,435,1,3,3,3,4,1,12,2,421,272,655,436,11,5,3,3,4,1,130,83,98,66,10,6,15,11,0,0,5,0,2,0,98,66,12,6,17,11,0,0,5,0 -050,01,005,Alabama,Barbour County,2,7,1808,1162,646,523,305,612,331,8,3,8,7,2,0,9,0,529,305,620,331,12,3,8,7,2,0,1064,595,442,257,605,330,0,1,8,7,1,0,8,0,447,257,612,330,4,1,8,7,1,0,98,51,81,48,7,1,8,2,0,0,1,0,1,0,82,48,8,1,8,2,0,0,1,0 -050,01,005,Alabama,Barbour County,2,8,1819,1046,773,548,402,478,360,6,2,5,2,1,2,8,5,554,405,486,361,7,6,5,2,2,4,989,729,502,363,473,358,1,1,5,2,0,0,8,5,508,366,481,359,2,5,5,2,1,2,57,44,46,39,5,2,5,1,0,0,1,2,0,0,46,39,5,2,5,1,0,0,1,2 -050,01,005,Alabama,Barbour County,2,9,1808,1068,740,556,351,500,375,1,5,3,2,1,3,7,4,561,354,503,376,8,9,3,2,1,3,1029,712,521,331,499,371,0,4,3,2,0,0,6,4,525,334,502,372,6,8,3,2,0,0,39,28,35,20,1,4,1,1,0,0,1,3,1,0,36,20,1,4,2,1,0,0,1,3 -050,01,005,Alabama,Barbour County,2,10,2108,1164,944,613,467,536,468,6,3,3,4,1,0,5,2,616,469,538,468,11,5,3,4,1,0,1132,922,590,448,530,466,5,3,3,4,0,0,4,1,593,449,531,466,9,4,3,4,0,0,32,22,23,19,6,2,1,0,0,0,1,0,1,1,23,20,7,2,2,1,0,0,1,0 -050,01,005,Alabama,Barbour County,2,11,1910,1000,910,567,489,413,409,5,1,4,4,1,2,10,5,573,492,418,411,13,5,5,5,1,2,980,898,554,480,410,406,2,1,4,4,1,2,9,5,559,483,415,408,9,5,5,5,1,2,20,12,13,9,3,3,3,0,0,0,0,0,1,0,14,9,3,3,4,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,12,1817,910,907,492,482,410,411,2,4,1,6,0,0,5,4,493,484,415,413,6,6,1,6,0,2,895,899,479,475,409,410,1,4,1,6,0,0,5,4,480,477,414,412,5,6,1,6,0,2,15,8,13,7,1,1,1,0,0,0,0,0,0,0,13,7,1,1,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,13,1799,859,940,543,555,305,370,5,4,1,4,0,0,5,7,546,558,307,374,8,10,2,4,1,1,851,934,537,551,303,369,5,3,1,4,0,0,5,7,540,554,305,373,8,9,2,4,1,1,8,6,6,4,2,1,0,1,0,0,0,0,0,0,6,4,2,1,0,1,0,0,0,0 -050,01,005,Alabama,Barbour County,2,14,1289,631,658,436,427,187,225,1,0,5,4,0,0,2,2,438,428,188,226,2,2,5,4,0,0,626,655,433,424,186,225,0,0,5,4,0,0,2,2,435,425,187,226,1,2,5,4,0,0,5,3,3,3,1,0,1,0,0,0,0,0,0,0,3,3,1,0,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,15,948,436,512,315,335,118,174,0,1,1,1,1,0,1,1,316,336,119,174,1,2,2,1,2,0,433,509,313,334,117,172,0,1,1,1,1,0,1,1,314,335,118,172,1,2,2,1,2,0,3,3,2,1,1,2,0,0,0,0,0,0,0,0,2,1,1,2,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,16,685,303,382,218,252,84,127,0,1,0,0,0,2,1,0,219,252,84,127,1,1,0,0,0,2,303,379,218,249,84,127,0,1,0,0,0,2,1,0,219,249,84,127,1,1,0,0,0,2,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,17,542,195,347,135,203,56,140,2,1,0,0,0,0,2,3,135,204,58,142,4,4,0,0,0,0,194,345,134,202,56,139,2,1,0,0,0,0,2,3,134,203,58,141,4,4,0,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,2,18,443,129,314,91,194,36,117,0,1,2,2,0,0,0,0,91,194,36,117,0,1,2,2,0,0,128,311,90,194,36,115,0,0,2,2,0,0,0,0,90,194,36,115,0,0,2,2,0,0,1,3,1,0,0,2,0,1,0,0,0,0,0,0,1,0,0,2,0,1,0,0,0,0 -050,01,005,Alabama,Barbour County,3,0,27325,14501,12824,7414,6483,6783,6109,88,72,59,59,29,17,128,84,7502,6557,6876,6157,150,109,70,70,35,18,13754,12227,6803,5985,6726,6060,32,34,59,59,15,7,119,82,6886,6058,6812,6107,90,69,69,70,20,8,747,597,611,498,57,49,56,38,0,0,14,10,9,2,616,499,64,50,60,40,1,0,15,10 -050,01,005,Alabama,Barbour County,3,1,1676,834,842,338,385,465,430,10,8,5,2,1,0,15,17,351,402,476,444,14,8,6,4,2,1,741,721,265,280,455,422,1,0,5,2,1,0,14,17,277,297,465,436,5,0,6,4,2,1,93,121,73,105,10,8,9,8,0,0,0,0,1,0,74,105,11,8,9,8,0,0,0,0 -050,01,005,Alabama,Barbour County,3,2,1633,816,817,348,353,450,449,3,3,6,3,1,1,8,8,356,361,458,454,4,5,7,4,1,1,755,749,293,297,445,442,2,0,6,3,1,0,8,7,301,304,453,447,3,1,7,4,1,0,61,68,55,56,5,7,1,3,0,0,0,1,0,1,55,57,5,7,1,4,0,0,0,1 -050,01,005,Alabama,Barbour County,3,3,1600,820,780,361,318,441,446,4,1,4,3,1,1,9,11,370,328,448,454,6,5,5,6,1,1,787,751,333,295,439,442,1,0,4,3,1,0,9,11,342,305,446,450,3,4,5,6,1,0,33,29,28,23,2,4,3,1,0,0,0,1,0,0,28,23,2,4,3,1,0,0,0,1 -050,01,005,Alabama,Barbour County,3,4,1711,902,809,413,335,461,451,7,9,6,2,2,3,13,9,423,343,467,456,13,13,9,3,3,3,844,773,362,307,459,448,5,7,6,2,1,0,11,9,370,315,465,453,11,11,8,3,1,0,58,36,51,28,2,3,2,2,0,0,1,3,2,0,53,28,2,3,2,2,1,0,2,3 -050,01,005,Alabama,Barbour County,3,5,1795,1050,745,425,323,585,403,16,9,4,5,8,3,12,2,432,325,594,404,22,9,6,6,8,3,946,668,339,257,582,400,5,1,4,5,4,3,12,2,346,259,591,401,11,1,6,6,4,3,104,77,86,66,3,3,11,8,0,0,4,0,0,0,86,66,3,3,11,8,0,0,4,0 -050,01,005,Alabama,Barbour County,3,6,1990,1202,788,518,337,645,433,13,12,2,3,9,1,15,2,522,339,658,434,24,13,3,3,10,1,1076,706,420,269,636,428,1,3,2,3,4,1,13,2,424,271,647,429,10,4,3,3,5,1,126,82,98,68,9,5,12,9,0,0,5,0,2,0,98,68,11,5,14,9,0,0,5,0 -050,01,005,Alabama,Barbour County,3,7,1815,1165,650,518,297,620,341,8,4,8,8,2,0,9,0,524,297,629,341,11,4,8,8,2,0,1072,603,442,255,613,339,0,1,8,8,1,0,8,0,447,255,621,339,3,1,8,8,1,0,93,47,76,42,7,2,8,3,0,0,1,0,1,0,77,42,8,2,8,3,0,0,1,0 -050,01,005,Alabama,Barbour County,3,8,1799,1043,756,543,393,478,352,7,2,5,2,1,2,9,5,551,398,484,354,9,4,7,3,2,2,987,713,498,355,473,350,2,1,5,2,0,0,9,5,506,360,479,352,4,3,7,3,1,0,56,43,45,38,5,2,5,1,0,0,1,2,0,0,45,38,5,2,5,1,0,0,1,2 -050,01,005,Alabama,Barbour County,3,9,1798,1065,733,556,351,497,365,1,6,4,3,1,3,6,5,559,355,502,368,5,9,4,3,1,3,1025,706,520,330,496,363,0,5,4,3,0,0,5,5,522,334,500,366,4,8,4,3,0,0,40,27,36,21,1,2,1,1,0,0,1,3,1,0,37,21,2,2,1,1,0,0,1,3 -050,01,005,Alabama,Barbour County,3,10,2100,1153,947,604,464,534,472,6,4,3,5,1,0,5,2,606,465,537,473,11,6,3,5,1,0,1121,922,579,443,529,469,6,4,3,5,0,0,4,1,581,444,531,469,10,5,3,5,0,0,32,25,25,21,5,3,0,0,0,0,1,0,1,1,25,21,6,4,1,1,0,0,1,0 -050,01,005,Alabama,Barbour County,3,11,1893,989,904,560,484,411,408,4,1,3,4,1,1,10,6,566,489,417,411,12,4,3,5,1,1,970,893,547,475,408,406,2,1,3,4,1,1,9,6,553,480,413,409,9,4,3,5,1,1,19,11,13,9,3,2,2,0,0,0,0,0,1,0,13,9,4,2,3,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,12,1826,915,911,495,486,410,411,2,5,1,5,0,0,7,4,499,488,415,413,5,9,1,5,2,0,901,901,483,478,409,409,1,5,1,5,0,0,7,4,487,480,414,411,4,9,1,5,2,0,14,10,12,8,1,2,1,0,0,0,0,0,0,0,12,8,1,2,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,13,1786,853,933,539,547,304,368,4,4,1,7,0,0,5,7,542,551,308,371,7,11,1,7,0,0,845,926,533,542,302,367,4,3,1,7,0,0,5,7,536,546,306,370,7,10,1,7,0,0,8,7,6,5,2,1,0,1,0,0,0,0,0,0,6,5,2,1,0,1,0,0,0,0 -050,01,005,Alabama,Barbour County,3,14,1303,636,667,440,433,189,228,1,0,4,4,0,0,2,2,442,435,190,228,2,2,4,4,0,0,632,664,438,430,188,228,0,0,4,4,0,0,2,2,440,432,189,228,1,2,4,4,0,0,4,3,2,3,1,0,1,0,0,0,0,0,0,0,2,3,1,0,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,15,940,434,506,313,329,118,174,0,1,1,1,1,0,1,1,314,330,118,174,1,2,1,1,1,0,430,503,310,328,117,172,0,1,1,1,1,0,1,1,311,329,117,172,1,2,1,1,1,0,4,3,3,1,1,2,0,0,0,0,0,0,0,0,3,1,1,2,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,16,687,304,383,218,252,85,128,0,1,0,0,0,2,1,0,219,252,85,128,1,1,0,0,0,2,304,380,218,249,85,128,0,1,0,0,0,2,1,0,219,249,85,128,1,1,0,0,0,2,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,17,534,191,343,135,204,53,135,2,1,0,0,0,0,1,3,136,207,53,135,3,3,0,1,0,0,190,341,134,203,53,134,2,1,0,0,0,0,1,3,135,206,53,134,3,3,0,1,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,3,18,439,129,310,90,192,37,115,0,1,2,2,0,0,0,0,90,192,37,115,0,1,2,2,0,0,128,307,89,192,37,113,0,0,2,2,0,0,0,0,89,192,37,113,0,0,2,2,0,0,1,3,1,0,0,2,0,1,0,0,0,0,0,0,1,0,0,2,0,1,0,0,0,0 -050,01,005,Alabama,Barbour County,4,0,27344,14656,12688,7476,6407,6861,6043,88,70,67,64,30,18,134,86,7572,6483,6953,6093,150,105,85,76,36,20,13912,12126,6864,5945,6808,5991,33,35,67,64,16,8,124,83,6955,6019,6893,6039,89,68,85,76,20,10,744,562,612,462,53,52,55,35,0,0,14,10,10,3,617,464,60,54,61,37,0,0,16,10 -050,01,005,Alabama,Barbour County,4,1,1663,820,843,351,388,438,434,9,6,4,1,1,0,17,14,367,401,451,446,11,8,6,2,3,0,714,724,259,283,433,426,1,0,4,1,1,0,16,14,274,296,446,438,3,2,6,2,2,0,106,119,92,105,5,8,8,6,0,0,0,0,1,0,93,105,5,8,8,6,0,0,1,0 -050,01,005,Alabama,Barbour County,4,2,1644,829,815,351,349,458,441,5,7,7,3,1,1,7,14,358,362,461,451,9,9,8,6,1,2,761,736,291,286,453,433,2,1,7,3,1,0,7,13,298,299,456,442,6,2,8,6,1,1,68,79,60,63,5,8,3,6,0,0,0,1,0,1,60,63,5,9,3,7,0,0,0,1 -050,01,005,Alabama,Barbour County,4,3,1605,845,760,368,324,459,424,3,1,5,3,2,1,8,7,375,330,465,427,5,5,7,4,2,1,818,725,346,295,456,420,1,0,5,3,2,0,8,7,353,301,462,423,3,4,7,4,2,0,27,35,22,29,3,4,2,1,0,0,0,1,0,0,22,29,3,4,2,1,0,0,0,1 -050,01,005,Alabama,Barbour County,4,4,1607,844,763,387,323,429,421,5,6,6,1,2,3,15,9,400,332,439,427,11,8,8,2,3,3,801,730,351,299,428,416,3,6,6,1,0,0,13,8,362,307,437,421,8,8,8,2,1,0,43,33,36,24,1,5,2,0,0,0,2,3,2,1,38,25,2,6,3,0,0,0,2,3 -050,01,005,Alabama,Barbour County,4,5,1817,1091,726,452,314,602,393,14,7,4,7,6,1,13,4,460,317,610,396,23,8,5,9,6,1,992,668,365,263,601,391,5,2,4,7,4,1,13,4,373,266,609,394,14,3,5,9,4,1,99,58,87,51,1,2,9,5,0,0,2,0,0,0,87,51,1,2,9,5,0,0,2,0 -050,01,005,Alabama,Barbour County,4,6,1948,1213,735,519,304,654,415,12,9,4,3,10,3,14,1,524,305,667,416,22,9,4,3,10,3,1101,683,437,263,642,411,1,2,4,3,5,3,12,1,442,264,653,412,9,2,4,3,5,3,112,52,82,41,12,4,11,7,0,0,5,0,2,0,82,41,14,4,13,7,0,0,5,0 -050,01,005,Alabama,Barbour County,4,7,1894,1226,668,534,285,660,367,8,7,10,8,3,0,11,1,542,286,670,368,12,7,10,8,3,0,1123,627,449,254,653,363,0,1,10,8,1,0,10,1,456,255,662,364,4,1,10,8,1,0,103,41,85,31,7,4,8,6,0,0,2,0,1,0,86,31,8,4,8,6,0,0,2,0 -050,01,005,Alabama,Barbour County,4,8,1740,1041,699,542,361,480,327,6,3,4,3,1,1,8,4,548,365,485,329,9,3,6,4,2,2,982,657,495,323,474,325,1,2,4,3,0,0,8,4,501,327,479,327,4,2,6,4,1,1,59,42,47,38,6,2,5,1,0,0,1,1,0,0,47,38,6,2,5,1,0,0,1,1 -050,01,005,Alabama,Barbour County,4,9,1822,1082,740,570,363,498,360,2,5,5,3,1,3,6,6,573,368,502,364,4,8,7,3,2,3,1041,708,532,336,498,359,1,4,5,3,0,0,5,6,535,341,501,363,3,7,7,3,0,0,41,32,38,27,0,1,1,1,0,0,1,3,1,0,38,27,1,1,1,1,0,0,2,3 -050,01,005,Alabama,Barbour County,4,10,2080,1143,937,585,461,540,464,9,4,3,5,1,1,5,2,587,463,543,464,13,6,4,5,1,1,1108,908,556,438,537,460,8,4,3,5,0,0,4,1,558,439,539,460,11,5,4,5,0,0,35,29,29,23,3,4,1,0,0,0,1,1,1,1,29,24,4,4,2,1,0,0,1,1 -050,01,005,Alabama,Barbour County,4,11,1881,996,885,548,464,429,405,4,1,4,7,1,2,10,6,554,470,434,406,10,5,6,8,2,2,980,875,539,455,424,404,3,1,4,7,1,2,9,6,544,461,429,405,8,5,6,8,2,2,16,10,9,9,5,1,1,0,0,0,0,0,1,0,10,9,5,1,2,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,12,1833,933,900,512,488,407,400,2,6,3,3,0,0,9,3,517,491,414,401,7,7,4,4,0,0,920,887,502,479,406,396,1,6,3,3,0,0,8,3,507,482,412,397,5,7,4,4,0,0,13,13,10,9,1,4,1,0,0,0,0,0,1,0,10,9,2,4,2,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,13,1798,855,943,532,541,311,379,6,4,1,10,0,0,5,9,536,547,314,383,9,13,1,10,0,0,846,937,526,537,310,378,4,3,1,10,0,0,5,9,530,543,313,382,7,12,1,10,0,0,9,6,6,4,1,1,2,1,0,0,0,0,0,0,6,4,1,1,2,1,0,0,0,0 -050,01,005,Alabama,Barbour County,4,14,1377,660,717,448,460,204,251,1,0,4,4,0,0,3,2,451,461,206,252,1,2,5,4,0,0,655,713,446,456,202,251,0,0,4,4,0,0,3,2,449,457,204,252,0,2,5,4,0,0,5,4,2,4,2,0,1,0,0,0,0,0,0,0,2,4,2,0,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,15,947,440,507,320,328,118,176,0,1,0,1,1,0,1,1,321,329,118,176,0,1,1,2,1,0,436,505,317,328,117,174,0,1,0,1,1,0,1,1,318,329,117,174,0,1,1,2,1,0,4,2,3,0,1,2,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,16,708,315,393,229,251,84,140,0,0,1,0,0,2,1,0,230,251,84,140,1,0,1,0,0,2,314,390,228,248,84,140,0,0,1,0,0,2,1,0,229,248,84,140,1,0,1,0,0,2,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,17,519,186,333,133,201,50,128,2,1,0,0,0,0,1,3,134,203,50,129,3,4,0,0,0,0,185,331,132,200,50,127,2,1,0,0,0,0,1,3,133,202,50,128,3,4,0,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,4,18,461,137,324,95,202,40,118,0,2,2,2,0,0,0,0,95,202,40,118,0,2,2,2,0,0,135,322,93,202,40,117,0,1,2,2,0,0,0,0,93,202,40,117,0,1,2,2,0,0,2,2,2,0,0,1,0,1,0,0,0,0,0,0,2,0,0,1,0,1,0,0,0,0 -050,01,005,Alabama,Barbour County,5,0,27172,14542,12630,7344,6351,6880,6037,87,66,63,61,29,17,139,98,7442,6437,6974,6098,156,107,82,72,35,22,13843,12105,6775,5931,6827,5980,33,32,63,61,16,7,129,94,6868,6015,6913,6040,98,70,80,70,21,12,699,525,569,420,53,57,54,34,0,0,13,10,10,4,574,422,61,58,58,37,2,2,14,10 -050,01,005,Alabama,Barbour County,5,1,1582,755,827,316,368,411,437,3,3,4,1,0,0,21,18,334,385,426,450,6,7,9,3,2,0,678,727,247,279,407,429,0,0,4,1,0,0,20,18,264,296,422,442,3,4,8,3,2,0,77,100,69,89,4,8,3,3,0,0,0,0,1,0,70,89,4,8,3,3,1,0,0,0 -050,01,005,Alabama,Barbour County,5,2,1635,834,801,348,365,463,407,9,9,5,3,2,0,7,17,354,380,468,418,11,15,6,4,2,1,762,718,288,299,458,400,2,0,5,3,2,0,7,16,294,314,463,411,4,5,6,3,2,1,72,83,60,66,5,7,7,9,0,0,0,0,0,1,60,66,5,7,7,10,0,1,0,0 -050,01,005,Alabama,Barbour County,5,3,1643,841,802,363,327,460,463,3,1,5,3,1,2,9,6,371,333,467,468,6,2,6,3,2,2,809,763,335,296,457,458,2,0,5,3,1,0,9,6,343,302,464,463,5,1,6,3,2,0,32,39,28,31,3,5,1,1,0,0,0,2,0,0,28,31,3,5,1,1,0,0,0,2 -050,01,005,Alabama,Barbour County,5,4,1557,841,716,354,308,457,391,8,4,9,1,3,3,10,9,363,316,465,399,10,7,10,1,3,3,808,689,328,291,456,385,5,4,9,1,1,0,9,8,336,299,463,392,7,6,10,1,1,0,33,27,26,17,1,6,3,0,0,0,2,3,1,1,27,17,2,7,3,1,0,0,2,3 -050,01,005,Alabama,Barbour County,5,5,1802,1093,709,436,282,627,411,9,7,2,4,3,0,16,5,446,287,641,414,18,8,2,5,3,1,1017,685,371,263,625,410,2,3,2,4,2,0,15,5,380,268,638,413,11,4,2,5,2,1,76,24,65,19,2,1,7,4,0,0,1,0,1,0,66,19,3,1,7,4,0,0,1,0 -050,01,005,Alabama,Barbour County,5,6,1962,1224,738,530,324,651,393,13,8,6,6,9,4,15,3,534,327,662,394,24,10,9,7,11,4,1109,675,444,270,639,390,2,2,6,6,5,4,13,3,448,273,648,391,11,4,9,7,7,4,115,63,86,54,12,3,11,6,0,0,4,0,2,0,86,54,14,3,13,6,0,0,4,0 -050,01,005,Alabama,Barbour County,5,7,1866,1179,687,509,274,635,396,10,8,9,7,5,0,11,2,517,275,644,398,14,9,10,7,5,0,1087,649,435,248,629,391,1,1,9,7,3,0,10,2,442,249,637,393,5,2,10,7,3,0,92,38,74,26,6,5,9,7,0,0,2,0,1,0,75,26,7,5,9,7,0,0,2,0 -050,01,005,Alabama,Barbour County,5,8,1663,1025,638,531,335,480,292,4,3,3,3,1,1,6,4,536,339,485,295,6,4,3,3,1,1,961,599,478,300,474,291,0,2,3,3,0,0,6,3,483,303,479,294,2,2,3,3,0,0,64,39,53,35,6,1,4,1,0,0,1,1,0,1,53,36,6,1,4,2,0,0,1,1 -050,01,005,Alabama,Barbour County,5,9,1842,1091,751,579,360,494,376,5,3,5,3,2,2,6,7,583,365,498,379,10,8,5,4,2,2,1046,714,540,329,493,373,2,2,5,3,0,0,6,7,544,334,497,376,7,7,5,4,0,0,45,37,39,31,1,3,3,1,0,0,2,2,0,0,39,31,1,3,3,1,0,0,2,2 -050,01,005,Alabama,Barbour County,5,10,1974,1090,884,549,428,525,442,8,5,2,5,1,2,5,2,551,430,529,442,11,6,3,6,1,2,1053,857,518,409,523,437,7,5,2,5,0,0,3,1,520,410,525,437,9,6,2,5,0,0,37,27,31,19,2,5,1,0,0,0,1,2,2,1,31,20,4,5,2,0,1,1,1,2 -050,01,005,Alabama,Barbour County,5,11,1909,1014,895,558,467,438,412,4,2,3,6,0,1,11,7,565,472,443,416,11,4,5,9,1,3,994,884,545,458,433,410,3,2,3,6,0,1,10,7,552,463,437,414,10,4,5,9,0,3,20,11,13,9,5,2,1,0,0,0,0,0,1,0,13,9,6,2,1,0,0,0,1,0 -050,01,005,Alabama,Barbour County,5,12,1783,905,878,501,492,392,378,2,4,1,2,1,0,8,2,506,494,395,380,10,5,3,2,1,0,892,861,492,479,390,374,1,4,1,2,1,0,7,2,496,481,393,376,8,5,3,2,1,0,13,17,9,13,2,4,1,0,0,0,0,0,1,0,10,13,2,4,2,0,0,0,0,0 -050,01,005,Alabama,Barbour County,5,13,1777,850,927,504,512,332,392,5,5,2,9,0,0,7,9,510,518,334,396,10,13,3,10,0,1,841,921,498,509,331,390,3,4,2,9,0,0,7,9,504,515,333,394,8,12,3,10,0,1,9,6,6,3,1,2,2,1,0,0,0,0,0,0,6,3,1,2,2,1,0,0,0,0 -050,01,005,Alabama,Barbour County,5,14,1489,698,791,473,500,217,284,2,0,2,5,0,0,4,2,477,502,218,286,4,0,3,5,0,0,693,787,470,497,216,283,1,0,2,5,0,0,4,2,474,499,217,285,3,0,3,5,0,0,5,4,3,3,1,1,1,0,0,0,0,0,0,0,3,3,1,1,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,5,15,980,453,527,323,347,126,178,0,0,2,0,1,0,1,2,324,349,126,178,1,2,2,0,1,0,448,524,320,346,124,176,0,0,2,0,1,0,1,2,321,348,124,176,1,2,2,0,1,0,5,3,3,1,2,2,0,0,0,0,0,0,0,0,3,1,2,2,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,5,16,732,319,413,232,259,85,150,0,1,1,1,0,2,1,0,233,259,85,150,1,1,1,1,0,2,318,411,231,257,85,150,0,1,1,1,0,2,1,0,232,257,85,150,1,1,1,1,0,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,5,17,494,189,305,134,194,52,107,2,1,0,0,0,0,1,3,134,197,53,107,3,4,0,0,0,0,188,303,133,192,52,107,2,1,0,0,0,0,1,3,133,195,53,107,3,4,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,5,18,482,141,341,104,209,35,128,0,2,2,2,0,0,0,0,104,209,35,128,0,2,2,2,0,0,139,338,102,209,35,126,0,1,2,2,0,0,0,0,102,209,35,126,0,1,2,2,0,0,2,3,2,0,0,2,0,1,0,0,0,0,0,0,2,0,0,2,0,1,0,0,0,0 -050,01,005,Alabama,Barbour County,6,0,26946,14382,12564,7180,6259,6884,6058,82,65,64,65,28,15,144,102,7291,6349,6979,6122,153,104,81,77,30,20,13739,12052,6657,5846,6834,6004,33,31,64,65,16,7,135,99,6763,5933,6922,6067,97,68,81,77,17,12,643,512,523,413,50,54,49,34,0,0,12,8,9,3,528,416,57,55,56,36,0,0,13,8 -050,01,005,Alabama,Barbour County,6,1,1556,736,820,321,355,384,442,1,0,5,0,0,0,25,23,346,378,402,460,4,4,9,0,1,1,647,731,237,273,380,435,0,0,5,0,0,0,25,23,262,296,398,453,3,4,9,0,1,1,89,89,84,82,4,7,1,0,0,0,0,0,0,0,84,82,4,7,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,6,2,1625,818,807,330,346,468,430,9,12,5,4,2,0,4,15,334,360,472,441,9,15,5,6,2,1,755,722,278,281,465,422,1,1,5,4,2,0,4,14,282,294,469,433,1,3,5,6,2,1,63,85,52,65,3,8,8,11,0,0,0,0,0,1,52,66,3,8,8,12,0,0,0,0 -050,01,005,Alabama,Barbour County,6,3,1626,837,789,361,347,453,427,4,3,8,2,1,2,10,8,370,354,458,434,8,5,9,2,2,2,795,742,324,312,450,420,3,0,8,2,1,0,9,8,333,319,455,427,6,2,9,2,1,0,42,47,37,35,3,7,1,3,0,0,0,2,1,0,37,35,3,7,2,3,0,0,1,2 -050,01,005,Alabama,Barbour County,6,4,1469,782,687,325,280,437,391,3,4,4,3,2,3,11,6,336,285,446,395,5,6,5,4,2,4,762,665,309,266,436,386,2,4,4,3,1,0,10,6,319,271,444,390,3,6,5,4,1,1,20,22,16,14,1,5,1,0,0,0,1,3,1,0,17,14,2,5,2,0,0,0,1,3 -050,01,005,Alabama,Barbour County,6,5,1819,1093,726,418,279,645,429,9,6,2,5,2,0,17,7,428,285,657,432,22,9,4,8,2,0,1053,704,387,263,643,428,4,2,2,5,1,0,16,6,396,268,655,431,16,4,4,8,1,0,40,22,31,16,2,1,5,4,0,0,1,0,1,1,32,17,2,1,6,5,0,0,1,0 -050,01,005,Alabama,Barbour County,6,6,1926,1187,739,500,324,648,397,9,6,7,5,8,3,15,4,505,328,662,400,18,6,9,6,8,3,1102,692,438,284,637,394,2,2,7,5,5,3,13,4,443,288,649,397,9,2,9,6,5,3,85,47,62,40,11,3,7,4,0,0,3,0,2,0,62,40,13,3,9,4,0,0,3,0 -050,01,005,Alabama,Barbour County,6,7,1874,1184,690,497,280,646,393,14,8,8,7,7,1,12,1,506,281,655,393,19,9,9,7,7,1,1086,637,422,238,640,389,1,1,8,7,4,1,11,1,430,239,648,389,6,2,9,7,4,1,98,53,75,42,6,4,13,7,0,0,3,0,1,0,76,42,7,4,13,7,0,0,3,0 -050,01,005,Alabama,Barbour County,6,8,1642,1030,612,517,303,498,294,3,4,5,7,1,1,6,3,522,305,501,297,5,6,7,7,1,1,970,575,466,270,493,293,0,2,5,7,0,0,6,3,471,272,496,296,2,4,7,7,0,0,60,37,51,33,5,1,3,2,0,0,1,1,0,0,51,33,5,1,3,2,0,0,1,1 -050,01,005,Alabama,Barbour County,6,9,1802,1057,745,565,359,476,373,5,0,5,4,1,1,5,8,568,366,478,374,9,6,6,5,1,2,1008,712,523,329,474,371,1,0,5,4,0,0,5,8,526,336,476,372,5,6,6,5,0,1,49,33,42,30,2,2,4,0,0,0,1,1,0,0,42,30,2,2,4,0,0,0,1,1 -050,01,005,Alabama,Barbour County,6,10,1863,1066,797,522,382,530,404,5,7,2,2,2,1,5,1,525,383,533,405,9,7,2,2,2,1,1029,769,491,359,529,401,4,6,2,2,0,0,3,1,493,360,530,402,7,6,2,2,0,0,37,28,31,23,1,3,1,1,0,0,2,1,2,0,32,23,3,3,2,1,0,0,2,1 -050,01,005,Alabama,Barbour County,6,11,1935,999,936,567,480,411,440,8,2,2,6,0,1,11,7,573,487,418,442,16,6,3,7,0,1,975,925,550,473,405,437,7,2,2,6,0,1,11,6,556,479,412,438,15,6,3,7,0,1,24,11,17,7,6,3,1,0,0,0,0,0,0,1,17,8,6,4,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,6,12,1747,904,843,484,479,406,355,2,2,3,4,1,0,8,3,491,480,410,358,8,3,3,5,1,0,892,825,476,465,404,351,1,2,3,4,1,0,7,3,482,466,407,354,6,3,3,5,1,0,12,18,8,14,2,4,1,0,0,0,0,0,1,0,9,14,3,4,2,0,0,0,0,0 -050,01,005,Alabama,Barbour County,6,13,1760,837,923,488,501,336,406,5,5,1,6,0,0,7,5,494,505,339,408,11,8,2,6,0,1,828,917,482,497,335,404,3,5,1,6,0,0,7,5,488,501,338,406,9,8,2,6,0,1,9,6,6,4,1,2,2,0,0,0,0,0,0,0,6,4,1,2,2,0,0,0,0,0 -050,01,005,Alabama,Barbour County,6,14,1510,704,806,469,499,226,293,3,2,1,6,0,0,5,6,474,503,228,295,6,8,1,6,0,0,698,803,465,498,225,292,2,1,1,6,0,0,5,6,470,502,227,294,5,7,1,6,0,0,6,3,4,1,1,1,1,1,0,0,0,0,0,0,4,1,1,1,1,1,0,0,0,0 -050,01,005,Alabama,Barbour County,6,15,1068,494,574,350,377,139,194,0,0,3,1,1,0,1,2,351,378,139,196,0,0,4,2,1,0,489,569,347,374,137,192,0,0,3,1,1,0,1,2,348,375,137,194,0,0,4,2,1,0,5,5,3,3,2,2,0,0,0,0,0,0,0,0,3,3,2,2,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,6,16,758,324,434,225,274,98,156,0,1,1,1,0,2,0,0,225,274,98,156,0,1,1,1,0,2,323,432,224,272,98,156,0,1,1,1,0,2,0,0,224,272,98,156,0,1,1,1,0,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,6,17,484,193,291,145,186,45,102,1,1,0,0,0,0,2,2,147,188,45,103,3,2,0,0,0,0,192,289,144,184,45,102,1,1,0,0,0,0,2,2,146,186,45,103,3,2,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,6,18,482,137,345,96,208,38,132,1,2,2,2,0,0,0,1,96,209,38,133,1,3,2,3,0,0,135,343,94,208,38,131,1,1,2,2,0,0,0,1,94,209,38,132,1,2,2,3,0,0,2,2,2,0,0,1,0,1,0,0,0,0,0,0,2,0,0,1,0,1,0,0,0,0 -050,01,005,Alabama,Barbour County,7,0,26768,14255,12513,7137,6229,6785,6044,94,66,60,55,28,14,151,105,7256,6316,6888,6110,158,99,79,75,32,22,13616,12019,6622,5829,6734,5993,41,34,60,55,16,6,143,102,6736,5915,6830,6058,101,65,79,74,20,13,639,494,515,400,51,51,53,32,0,0,12,8,8,3,520,401,58,52,57,34,0,1,12,9 -050,01,005,Alabama,Barbour County,7,1,1532,731,801,327,355,369,426,3,0,1,0,0,0,31,20,356,373,395,444,7,0,4,3,1,1,645,710,247,270,365,420,1,0,1,0,0,0,31,20,276,288,391,438,5,0,4,3,1,1,86,91,80,85,4,6,2,0,0,0,0,0,0,0,80,85,4,6,2,0,0,0,0,0 -050,01,005,Alabama,Barbour County,7,2,1676,828,848,338,354,472,462,10,10,4,3,2,0,2,19,340,369,473,478,11,13,4,6,2,3,757,761,280,287,468,453,1,0,4,3,2,0,2,18,282,302,469,468,2,2,4,6,2,3,71,87,58,67,4,9,9,10,0,0,0,0,0,1,58,67,4,10,9,11,0,0,0,0 -050,01,005,Alabama,Barbour County,7,3,1594,802,792,342,346,435,427,7,5,7,3,1,1,10,10,351,356,441,432,10,9,9,4,1,1,762,748,308,313,432,421,4,1,7,3,1,0,10,10,317,323,438,426,7,5,9,4,1,0,40,44,34,33,3,6,3,4,0,0,0,1,0,0,34,33,3,6,3,4,0,0,0,1 -050,01,005,Alabama,Barbour County,7,4,1412,755,657,319,271,416,371,3,2,5,0,2,3,10,10,329,280,423,379,6,6,8,0,2,3,737,631,304,251,416,369,2,1,5,0,1,0,9,10,313,260,422,377,5,5,8,0,1,0,18,26,15,20,0,2,1,1,0,0,1,3,1,0,16,20,1,2,1,1,0,0,1,3 -050,01,005,Alabama,Barbour County,7,5,1827,1074,753,428,280,619,455,7,7,1,4,2,1,17,6,440,284,632,458,15,7,3,7,2,3,1043,736,404,269,617,452,4,6,1,4,1,0,16,5,415,273,629,455,12,6,3,6,1,1,31,17,24,11,2,3,3,1,0,0,1,1,1,1,25,11,3,3,3,1,0,1,1,2 -050,01,005,Alabama,Barbour County,7,6,1935,1201,734,511,326,652,389,9,7,6,6,8,3,15,3,517,329,664,390,19,8,8,7,8,3,1121,697,452,297,643,387,2,1,6,6,5,3,13,3,458,300,653,388,10,2,8,7,5,3,80,37,59,29,9,2,7,6,0,0,3,0,2,0,59,29,11,2,9,6,0,0,3,0 -050,01,005,Alabama,Barbour County,7,7,1882,1166,716,490,300,634,399,13,9,8,6,7,1,14,1,501,301,643,399,18,9,11,7,7,1,1072,672,419,266,627,395,1,3,8,6,4,1,13,1,429,267,635,395,6,3,11,7,4,1,94,44,71,34,7,4,12,6,0,0,3,0,1,0,72,34,8,4,12,6,0,0,3,0 -050,01,005,Alabama,Barbour County,7,8,1569,1003,566,492,263,490,290,7,3,8,8,1,0,5,2,496,265,495,291,8,4,8,8,1,0,931,539,432,238,485,289,1,2,8,8,0,0,5,2,436,240,490,290,2,3,8,8,0,0,72,27,60,25,5,1,6,1,0,0,1,0,0,0,60,25,5,1,6,1,0,0,1,0 -050,01,005,Alabama,Barbour County,7,9,1778,1033,745,552,377,464,354,7,1,5,4,1,2,4,7,554,384,467,356,10,5,5,5,1,2,982,702,509,339,461,352,3,0,5,4,0,0,4,7,511,346,464,354,6,4,5,5,0,0,51,43,43,38,3,2,4,1,0,0,1,2,0,0,43,38,3,2,4,1,0,0,1,2 -050,01,005,Alabama,Barbour County,7,10,1770,1034,736,516,351,504,376,5,4,2,1,1,1,6,3,520,353,507,378,9,5,3,1,2,2,1002,716,489,335,503,373,4,4,2,1,0,0,4,3,492,337,505,375,6,5,3,1,1,1,32,20,27,16,1,3,1,0,0,0,1,1,2,0,28,16,2,3,3,0,0,0,1,1 -050,01,005,Alabama,Barbour County,7,11,1947,1007,940,549,490,432,436,9,5,2,3,1,1,14,5,558,494,439,436,18,9,4,4,2,2,983,921,533,475,426,433,8,5,2,3,0,1,14,4,542,478,433,433,17,8,4,4,1,2,24,19,16,15,6,3,1,0,0,0,1,0,0,1,16,16,6,3,1,1,0,0,1,0 -050,01,005,Alabama,Barbour County,7,12,1713,874,839,473,463,386,365,3,1,4,5,1,0,7,5,479,467,390,367,6,4,4,7,2,0,859,825,463,452,383,362,2,1,4,5,1,0,6,5,468,456,386,364,5,4,4,7,2,0,15,14,10,11,3,3,1,0,0,0,0,0,1,0,11,11,4,3,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,7,13,1711,832,879,481,488,339,382,3,5,1,2,0,0,8,2,488,489,343,384,9,6,1,2,0,0,823,871,475,481,338,381,1,5,1,2,0,0,8,2,482,482,342,383,7,6,1,2,0,0,9,8,6,7,1,1,2,0,0,0,0,0,0,0,6,7,1,1,2,0,0,0,0,0 -050,01,005,Alabama,Barbour County,7,14,1574,726,848,472,506,244,327,5,3,0,6,0,0,5,6,477,511,246,329,7,6,1,8,0,0,721,842,468,504,243,324,5,2,0,6,0,0,5,6,473,509,245,326,7,5,1,8,0,0,5,6,4,2,1,3,0,1,0,0,0,0,0,0,4,2,1,3,0,1,0,0,0,0 -050,01,005,Alabama,Barbour County,7,15,1094,507,587,349,386,152,196,1,0,4,2,0,0,1,3,350,387,152,198,2,2,4,3,0,0,501,583,346,383,150,195,0,0,4,2,0,0,1,3,347,384,150,197,1,2,4,3,0,0,6,4,3,3,2,1,1,0,0,0,0,0,0,0,3,3,2,1,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,7,16,779,347,432,254,275,92,156,0,1,0,0,1,0,0,0,254,275,92,156,0,1,0,0,1,0,345,430,252,274,92,155,0,1,0,0,1,0,0,0,252,274,92,155,0,1,0,0,1,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,7,17,500,201,299,155,192,45,104,0,1,0,0,0,1,1,1,156,193,45,104,1,2,0,0,0,1,200,296,154,189,45,104,0,1,0,0,0,1,1,1,155,190,45,104,1,2,0,0,0,1,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,7,18,475,134,341,89,206,40,129,2,2,2,2,0,0,1,2,90,206,41,131,2,3,2,3,0,0,132,339,87,206,40,128,2,1,2,2,0,0,1,2,88,206,41,130,2,2,2,3,0,0,2,2,2,0,0,1,0,1,0,0,0,0,0,0,2,0,0,1,0,1,0,0,0,0 -050,01,005,Alabama,Barbour County,8,0,26300,13985,12315,6964,6114,6680,5958,90,60,57,57,28,14,166,112,7082,6210,6805,6028,165,95,78,75,32,22,13365,11835,6461,5724,6635,5908,38,31,57,57,16,6,158,109,6574,5818,6752,5976,108,65,78,74,20,13,620,480,503,390,45,50,52,29,0,0,12,8,8,3,508,392,53,52,57,30,0,1,12,9 -050,01,005,Alabama,Barbour County,8,1,1462,707,755,311,326,358,406,0,0,2,3,0,0,36,20,342,345,387,421,8,2,7,7,1,0,633,669,242,244,353,402,0,0,2,3,0,0,36,20,273,263,382,417,8,2,7,7,1,0,74,86,69,82,5,4,0,0,0,0,0,0,0,0,69,82,5,4,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,8,2,1622,804,818,318,362,460,427,12,8,4,2,1,0,9,19,325,379,467,441,13,12,7,4,1,1,738,734,264,294,458,419,2,0,4,2,1,0,9,19,271,311,465,433,3,4,7,4,1,1,66,84,54,68,2,8,10,8,0,0,0,0,0,0,54,68,2,8,10,8,0,0,0,0 -050,01,005,Alabama,Barbour County,8,3,1583,804,779,344,335,439,423,6,6,5,3,1,1,9,11,352,346,446,432,8,6,7,5,1,1,754,730,300,300,436,416,3,1,5,3,1,0,9,10,308,310,443,424,5,1,7,5,1,0,50,49,44,35,3,7,3,5,0,0,0,1,0,1,44,36,3,8,3,5,0,0,0,1 -050,01,005,Alabama,Barbour County,8,4,1411,739,672,305,277,416,381,3,0,2,1,2,1,11,12,314,288,423,390,5,3,6,1,2,2,722,650,289,258,416,379,2,0,2,1,2,0,11,12,298,269,423,388,4,3,6,1,2,1,17,22,16,19,0,2,1,0,0,0,0,1,0,0,16,19,0,2,1,0,0,0,0,1 -050,01,005,Alabama,Barbour County,8,5,1750,1045,705,420,255,597,434,5,6,1,2,3,3,19,5,432,259,615,435,15,7,1,5,5,4,1005,684,387,240,596,432,3,6,1,2,1,0,17,4,397,244,612,433,12,7,1,4,3,0,40,21,33,15,1,2,2,0,0,0,2,3,2,1,35,15,3,2,3,0,0,1,2,4 -050,01,005,Alabama,Barbour County,8,6,1839,1150,689,469,289,644,381,11,6,4,7,7,3,15,3,474,292,658,382,22,7,4,8,7,3,1088,665,427,273,637,378,3,1,4,7,4,3,13,3,432,276,649,379,12,2,4,8,4,3,62,24,42,16,7,3,8,5,0,0,3,0,2,0,42,16,9,3,10,5,0,0,3,0 -050,01,005,Alabama,Barbour County,8,7,1866,1134,732,469,312,626,400,11,7,8,7,7,1,13,5,478,315,636,404,18,10,8,7,7,1,1057,687,412,275,620,397,1,2,8,7,4,1,12,5,420,278,629,401,8,5,8,7,4,1,77,45,57,37,6,3,10,5,0,0,3,0,1,0,58,37,7,3,10,5,0,0,3,0 -050,01,005,Alabama,Barbour County,8,8,1614,1018,596,490,271,501,313,9,4,10,8,2,0,6,0,495,271,506,313,11,4,10,8,2,0,936,566,421,246,497,311,1,1,10,8,1,0,6,0,426,246,502,311,3,1,10,8,1,0,82,30,69,25,4,2,8,3,0,0,1,0,0,0,69,25,4,2,8,3,0,0,1,0 -050,01,005,Alabama,Barbour County,8,9,1679,970,709,517,353,438,345,7,2,2,1,1,2,5,6,520,357,442,349,10,4,2,1,1,4,923,664,479,313,434,343,3,1,2,1,0,0,5,6,482,317,438,347,6,3,2,1,0,2,47,45,38,40,4,2,4,1,0,0,1,2,0,0,38,40,4,2,4,1,0,0,1,2 -050,01,005,Alabama,Barbour County,8,10,1707,1002,705,516,348,471,346,3,2,5,2,1,1,6,6,520,354,476,348,6,6,5,3,1,1,971,691,490,338,470,343,2,2,5,2,0,0,4,6,493,344,473,345,4,6,5,3,0,0,31,14,26,10,1,3,1,0,0,0,1,1,2,0,27,10,3,3,2,0,0,0,1,1 -050,01,005,Alabama,Barbour County,8,11,1856,962,894,522,454,415,432,10,4,2,1,1,0,12,3,528,456,424,434,19,6,3,1,1,1,929,872,495,437,410,428,10,4,2,1,0,0,12,2,501,438,419,429,19,5,3,1,0,1,33,22,27,17,5,4,0,0,0,0,1,0,0,1,27,18,5,5,0,1,0,0,1,0 -050,01,005,Alabama,Barbour County,8,12,1694,868,826,471,459,380,349,4,2,4,8,1,1,8,7,476,462,384,354,9,5,6,10,2,2,856,813,465,448,377,347,2,2,4,8,1,1,7,7,469,451,380,352,6,5,6,10,2,2,12,13,6,11,3,2,2,0,0,0,0,0,1,0,7,11,4,2,3,0,0,0,0,0 -050,01,005,Alabama,Barbour County,8,13,1660,809,851,459,470,339,373,2,5,1,0,0,0,8,3,464,473,343,373,7,6,3,2,0,1,796,844,449,465,337,371,1,5,1,0,0,0,8,3,454,468,341,371,6,6,3,2,0,1,13,7,10,5,2,2,1,0,0,0,0,0,0,0,10,5,2,2,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,8,14,1622,731,891,465,517,256,358,4,4,1,6,0,0,5,6,470,523,257,360,8,8,2,6,0,0,726,883,462,513,255,355,3,3,1,6,0,0,5,6,467,519,256,357,7,7,2,6,0,0,5,8,3,4,1,3,1,1,0,0,0,0,0,0,3,4,1,3,1,1,0,0,0,0 -050,01,005,Alabama,Barbour County,8,15,1171,558,613,387,411,165,196,1,0,4,4,0,0,1,2,388,412,165,197,2,1,4,5,0,0,553,610,384,408,164,196,0,0,4,4,0,0,1,2,385,409,164,197,1,1,4,5,0,0,5,3,3,3,1,0,1,0,0,0,0,0,0,0,3,3,1,0,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,8,16,771,333,438,244,279,87,157,0,1,0,0,1,0,1,1,245,280,87,157,1,2,0,0,1,0,330,435,241,278,87,155,0,1,0,0,1,0,1,1,242,279,87,155,1,2,0,0,1,0,3,3,3,1,0,2,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,8,17,517,220,297,166,181,53,114,0,1,0,0,0,1,1,0,167,181,53,114,0,1,1,0,0,1,220,296,166,180,53,114,0,1,0,0,0,1,1,0,167,180,53,114,0,1,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,8,18,476,131,345,91,215,35,123,2,2,2,2,0,0,1,3,92,217,36,124,3,5,2,2,0,0,128,342,88,214,35,122,2,1,2,2,0,0,1,3,89,216,36,123,3,4,2,2,0,0,3,3,3,1,0,1,0,1,0,0,0,0,0,0,3,1,0,1,0,1,0,0,0,0 -050,01,005,Alabama,Barbour County,9,0,25828,13637,12191,6774,6059,6523,5871,92,64,53,58,28,13,167,126,6901,6168,6635,5949,170,112,70,76,33,18,13010,11703,6267,5663,6477,5820,40,34,53,58,16,6,157,122,6387,5768,6582,5897,112,80,70,75,21,11,627,488,507,396,46,51,52,30,0,0,12,7,10,4,514,400,53,52,58,32,0,1,12,7 -050,01,005,Alabama,Barbour County,9,1,1400,708,692,293,280,380,382,0,3,2,3,0,0,33,24,324,302,407,402,5,5,5,6,1,1,640,618,230,215,375,376,0,0,2,3,0,0,33,24,261,237,402,396,5,2,5,6,1,1,68,74,63,65,5,6,0,3,0,0,0,0,0,0,63,65,5,6,0,3,0,0,0,0 -050,01,005,Alabama,Barbour County,9,2,1592,773,819,318,374,429,415,9,7,2,3,1,0,14,20,332,391,439,431,11,10,4,6,1,1,706,735,264,303,425,409,0,0,2,3,1,0,14,20,278,320,435,425,2,3,4,6,1,1,67,84,54,71,4,6,9,7,0,0,0,0,0,0,54,71,4,6,9,7,0,0,0,0 -050,01,005,Alabama,Barbour County,9,3,1546,767,779,315,338,430,416,8,5,6,4,1,1,7,15,322,353,433,425,11,9,7,6,1,1,712,717,267,292,428,408,3,0,6,4,1,0,7,13,274,305,431,417,6,3,7,5,1,0,55,62,48,46,2,8,5,5,0,0,0,1,0,2,48,48,2,8,5,6,0,1,0,1 -050,01,005,Alabama,Barbour County,9,4,1449,752,697,325,292,408,391,5,1,1,1,2,1,11,11,336,303,414,398,8,4,2,2,3,1,727,670,301,268,408,389,4,1,1,1,2,0,11,11,312,279,414,396,7,4,2,2,3,0,25,27,24,24,0,2,1,0,0,0,0,1,0,0,24,24,0,2,1,0,0,0,0,1 -050,01,005,Alabama,Barbour County,9,5,1665,980,685,386,264,564,404,4,5,2,0,2,3,22,9,400,272,582,409,16,11,3,0,2,3,945,668,357,253,563,402,3,5,2,0,0,0,20,8,369,260,579,407,15,10,3,0,0,0,35,17,29,11,1,2,1,0,0,0,2,3,2,1,31,12,3,2,1,1,0,0,2,3 -050,01,005,Alabama,Barbour County,9,6,1827,1148,679,474,282,642,386,12,4,2,3,6,1,12,3,476,284,652,388,22,6,3,3,7,1,1082,655,426,263,637,384,3,1,2,3,4,1,10,3,428,265,645,386,11,3,3,3,5,1,66,24,48,19,5,2,9,3,0,0,2,0,2,0,48,19,7,2,11,3,0,0,2,0 -050,01,005,Alabama,Barbour County,9,7,1798,1075,723,454,320,585,383,10,6,5,8,8,3,13,3,463,323,596,384,16,9,5,8,8,3,990,680,389,285,578,380,1,1,5,8,5,3,12,3,397,288,588,381,7,4,5,8,5,3,85,43,65,35,7,3,9,5,0,0,3,0,1,0,66,35,8,3,9,5,0,0,3,0 -050,01,005,Alabama,Barbour County,9,8,1576,975,601,452,264,495,322,8,6,10,6,3,0,7,3,458,266,500,324,11,8,11,6,3,0,910,569,402,239,491,319,1,2,10,6,1,0,5,3,406,241,495,321,3,4,11,6,1,0,65,32,50,25,4,3,7,4,0,0,2,0,2,0,52,25,5,3,8,4,0,0,2,0 -050,01,005,Alabama,Barbour County,9,9,1571,919,652,493,324,413,316,6,4,2,2,1,0,4,6,495,329,416,319,9,7,2,2,1,1,862,610,446,285,408,314,2,3,2,2,0,0,4,6,448,290,411,317,5,6,2,2,0,1,57,42,47,39,5,2,4,1,0,0,1,0,0,0,47,39,5,2,4,1,0,0,1,0 -050,01,005,Alabama,Barbour County,9,10,1642,939,703,488,342,432,348,6,1,6,4,1,2,6,6,492,346,434,351,10,5,8,6,1,2,916,684,469,327,432,346,5,1,6,4,0,0,4,6,472,331,433,349,7,5,8,6,0,0,23,19,19,15,0,2,1,0,0,0,1,2,2,0,20,15,1,2,3,0,0,0,1,2 -050,01,005,Alabama,Barbour County,9,11,1780,911,869,482,445,403,417,11,4,3,1,1,0,11,2,488,447,409,418,20,5,5,1,1,0,878,844,454,425,400,413,10,4,3,1,0,0,11,1,460,426,406,413,19,5,5,1,0,0,33,25,28,20,3,4,1,0,0,0,1,0,0,1,28,21,3,5,1,0,0,0,1,0 -050,01,005,Alabama,Barbour County,9,12,1648,849,799,464,436,369,344,3,5,5,7,1,1,7,6,468,441,373,346,8,7,7,10,1,1,834,789,456,427,363,343,2,5,5,7,1,1,7,6,460,432,367,345,7,7,7,10,1,1,15,10,8,9,6,1,1,0,0,0,0,0,0,0,8,9,6,1,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,9,13,1657,810,847,462,477,336,358,2,5,0,3,0,0,10,4,470,481,340,360,10,7,0,5,0,1,799,836,455,470,334,354,1,5,0,3,0,0,9,4,462,474,338,356,8,7,0,5,0,1,11,11,7,7,2,4,1,0,0,0,0,0,1,0,8,7,2,4,2,0,0,0,0,0 -050,01,005,Alabama,Barbour County,9,14,1608,729,879,460,497,258,363,5,4,1,7,0,0,5,8,464,502,261,367,8,11,1,7,0,0,721,872,454,494,258,360,3,3,1,7,0,0,5,8,458,499,261,364,6,10,1,7,0,0,8,7,6,3,0,3,2,1,0,0,0,0,0,0,6,3,0,3,2,1,0,0,0,0 -050,01,005,Alabama,Barbour County,9,15,1242,581,661,384,434,190,221,1,0,4,4,0,0,2,2,386,435,190,221,2,0,4,6,1,1,574,657,380,430,188,221,0,0,4,4,0,0,2,2,382,431,188,221,1,0,4,6,1,1,7,4,4,4,2,0,1,0,0,0,0,0,0,0,4,4,2,0,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,9,16,783,344,439,249,283,93,154,0,1,0,0,1,0,1,1,250,284,93,154,0,2,0,0,2,0,341,436,246,282,93,152,0,1,0,0,1,0,1,1,247,283,93,152,0,2,0,0,2,0,3,3,3,1,0,2,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,9,17,554,235,319,177,196,57,122,0,0,0,0,0,1,1,0,178,196,57,122,1,0,0,0,0,1,234,318,176,195,57,122,0,0,0,0,0,1,1,0,177,195,57,122,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,9,18,490,142,348,98,211,39,129,2,3,2,2,0,0,1,3,99,213,39,130,2,6,3,2,0,0,139,345,95,210,39,128,2,2,2,2,0,0,1,3,96,212,39,129,2,5,3,2,0,0,3,3,3,1,0,1,0,1,0,0,0,0,0,0,3,1,0,1,0,1,0,0,0,0 -050,01,005,Alabama,Barbour County,10,0,25169,13228,11941,6522,5910,6363,5756,94,66,54,64,30,14,165,131,6641,6022,6475,5847,169,110,80,82,40,20,12603,11448,6029,5510,6314,5705,40,37,54,64,18,7,148,125,6137,5618,6417,5793,102,78,78,81,25,12,625,493,493,400,49,51,54,29,0,0,12,7,17,6,504,404,58,54,67,32,2,1,15,8 -050,01,005,Alabama,Barbour County,10,1,1325,651,674,278,264,350,376,0,3,1,5,1,0,21,26,299,287,365,399,3,6,5,7,1,1,588,598,222,197,344,370,0,0,1,5,1,0,20,26,242,220,359,393,2,3,5,7,1,1,63,76,56,67,6,6,0,3,0,0,0,0,1,0,57,67,6,6,1,3,0,0,0,0 -050,01,005,Alabama,Barbour County,10,2,1495,729,766,293,347,406,391,2,3,5,4,0,1,23,20,312,367,425,408,6,7,9,7,3,1,668,683,241,273,400,385,0,0,5,4,0,1,22,20,260,293,418,402,3,4,9,7,3,1,61,83,52,74,6,6,2,3,0,0,0,0,1,0,52,74,7,6,3,3,0,0,0,0 -050,01,005,Alabama,Barbour County,10,3,1510,771,739,325,334,418,379,13,9,5,3,3,0,7,14,332,347,422,391,15,12,6,4,3,0,702,670,271,283,415,371,2,0,5,3,3,0,6,13,277,296,419,382,3,3,6,3,3,0,69,69,54,51,3,8,11,9,0,0,0,0,1,1,55,51,3,9,12,9,0,1,0,0 -050,01,005,Alabama,Barbour County,10,4,1433,744,689,317,283,407,394,6,0,3,1,1,2,10,9,325,292,416,398,7,3,4,3,2,2,710,663,285,262,407,392,4,0,3,1,1,0,10,8,293,270,416,396,5,2,4,3,2,0,34,26,32,21,0,2,2,0,0,0,0,2,0,1,32,22,0,2,2,1,0,0,0,2 -050,01,005,Alabama,Barbour County,10,5,1528,897,631,337,249,532,365,5,4,2,0,3,3,18,10,350,257,544,371,14,7,5,2,3,4,875,609,319,233,532,363,4,4,2,0,1,0,17,9,331,240,543,369,12,6,5,2,1,1,22,22,18,16,0,2,1,0,0,0,2,3,1,1,19,17,1,2,2,1,0,0,2,3 -050,01,005,Alabama,Barbour County,10,6,1800,1137,663,475,265,630,385,10,6,2,2,3,0,17,5,479,270,644,387,24,7,3,3,4,1,1056,649,413,255,624,384,1,3,2,2,2,0,14,5,416,260,635,386,13,4,3,3,3,1,81,14,62,10,6,1,9,3,0,0,1,0,3,0,63,10,9,1,11,3,0,0,1,0 -050,01,005,Alabama,Barbour County,10,7,1732,1021,711,407,324,577,365,12,5,4,10,8,4,13,3,416,326,587,367,17,5,5,12,9,4,959,666,368,286,570,362,2,1,4,10,5,4,10,3,374,288,579,364,6,1,5,12,5,4,62,45,39,38,7,3,10,4,0,0,3,0,3,0,42,38,8,3,11,4,0,0,4,0 -050,01,005,Alabama,Barbour County,10,8,1525,932,593,437,231,465,342,8,5,9,9,5,0,8,6,442,235,471,347,12,9,11,9,7,0,862,561,383,209,462,338,1,1,9,9,3,0,4,4,386,212,466,341,2,4,9,9,3,0,70,32,54,22,3,4,7,4,0,0,2,0,4,2,56,23,5,6,10,5,2,0,4,0 -050,01,005,Alabama,Barbour County,10,9,1468,869,599,444,296,411,291,3,5,5,2,1,0,5,5,447,301,414,293,7,8,7,3,1,0,821,564,406,263,405,290,0,4,5,2,0,0,5,5,409,268,408,292,4,7,7,3,0,0,48,35,38,33,6,1,3,1,0,0,1,0,0,0,38,33,6,1,3,1,0,0,1,0 -050,01,005,Alabama,Barbour County,10,10,1634,928,706,476,341,430,354,10,0,5,4,2,1,5,6,479,345,433,358,13,2,6,5,2,2,898,683,452,320,430,353,7,0,5,4,0,0,4,6,455,324,432,357,9,2,6,5,0,1,30,23,24,21,0,1,3,0,0,0,2,1,1,0,24,21,1,1,4,0,0,0,2,1 -050,01,005,Alabama,Barbour County,10,11,1676,858,818,452,412,385,396,8,6,2,1,1,1,10,2,458,414,391,397,16,6,2,1,1,2,826,792,424,394,384,390,7,6,2,1,0,0,9,1,429,395,390,391,14,6,2,1,0,0,32,26,28,18,1,6,1,0,0,0,1,1,1,1,29,19,1,6,2,0,0,0,1,2 -050,01,005,Alabama,Barbour County,10,12,1668,855,813,469,433,369,360,6,6,3,6,0,1,8,7,474,438,373,363,11,10,4,8,1,1,837,803,458,424,363,359,5,6,3,6,0,1,8,7,463,429,367,362,10,10,4,8,1,1,18,10,11,9,6,1,1,0,0,0,0,0,0,0,11,9,6,1,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,10,13,1607,772,835,448,489,310,335,2,4,2,4,1,0,9,3,456,491,312,338,8,6,5,4,1,0,760,821,441,479,307,331,1,4,2,4,1,0,8,3,448,481,309,334,6,6,5,4,1,0,12,14,7,10,3,4,1,0,0,0,0,0,1,0,8,10,3,4,2,0,0,0,0,0 -050,01,005,Alabama,Barbour County,10,14,1572,724,848,440,461,273,368,5,5,0,6,0,0,6,8,444,467,276,371,8,12,1,7,1,0,715,842,433,458,273,366,3,4,0,6,0,0,6,8,437,464,276,369,6,11,1,7,1,0,9,6,7,3,0,2,2,1,0,0,0,0,0,0,7,3,0,2,2,1,0,0,0,0 -050,01,005,Alabama,Barbour County,10,15,1334,602,732,400,467,196,257,1,1,2,5,0,0,3,2,403,468,196,258,3,2,3,5,0,1,596,728,396,464,195,256,0,1,2,5,0,0,3,2,399,465,195,257,2,2,3,5,0,1,6,4,4,3,1,1,1,0,0,0,0,0,0,0,4,3,1,1,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,10,16,829,367,462,259,306,103,154,1,0,2,0,1,0,1,2,259,308,104,155,2,1,2,0,1,0,363,458,256,304,102,152,1,0,2,0,1,0,1,2,256,306,103,153,2,1,2,0,1,0,4,4,3,2,1,2,0,0,0,0,0,0,0,0,3,2,1,2,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,10,17,547,218,329,163,207,55,120,0,1,0,0,0,1,0,0,163,207,55,120,0,1,0,0,0,1,217,329,162,207,55,120,0,1,0,0,0,1,0,0,162,207,55,120,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,10,18,486,153,333,102,201,46,124,2,3,2,2,0,0,1,3,103,202,47,126,3,6,2,2,0,0,150,329,99,199,46,123,2,2,2,2,0,0,1,3,100,200,47,125,3,5,2,2,0,0,3,4,3,2,0,1,0,1,0,0,0,0,0,0,3,2,0,1,0,1,0,0,0,0 -050,01,005,Alabama,Barbour County,11,0,24887,13157,11730,6407,5762,6390,5689,97,64,52,59,31,15,180,141,6539,5884,6525,5789,175,112,73,77,35,17,12561,11253,5944,5370,6340,5640,45,39,51,59,19,8,162,137,6065,5489,6460,5738,110,84,70,77,23,10,596,477,463,392,50,49,52,25,1,0,12,7,18,4,474,395,65,51,65,28,3,0,12,7 -050,01,005,Alabama,Barbour County,11,1,1307,676,631,268,246,374,355,4,3,2,2,1,0,27,25,293,269,397,378,10,5,5,5,1,0,609,571,216,192,367,351,1,1,1,2,1,0,23,25,237,215,386,374,5,3,3,5,1,0,67,60,52,54,7,4,3,2,1,0,0,0,4,0,56,54,11,4,5,2,2,0,0,0 -050,01,005,Alabama,Barbour County,11,2,1445,718,727,284,313,401,386,3,0,4,3,1,1,25,24,307,335,421,406,8,2,6,6,1,2,654,646,227,239,396,379,1,0,4,3,1,1,25,24,250,261,416,399,6,2,6,6,1,2,64,81,57,74,5,7,2,0,0,0,0,0,0,0,57,74,5,7,2,0,0,0,0,0 -050,01,005,Alabama,Barbour County,11,3,1509,775,734,326,338,418,362,12,8,5,6,3,0,11,20,336,356,425,377,14,13,8,8,4,0,714,669,281,286,414,358,1,0,5,6,3,0,10,19,290,303,420,372,2,5,8,8,4,0,61,65,45,52,4,4,11,8,0,0,0,0,1,1,46,53,5,5,12,8,0,0,0,0 -050,01,005,Alabama,Barbour County,11,4,1458,765,693,324,298,419,383,6,1,3,1,1,2,12,8,335,304,429,389,6,3,6,3,1,2,719,662,282,276,418,378,4,0,3,1,1,0,11,7,292,282,427,383,4,1,6,3,1,0,46,31,42,22,1,5,2,1,0,0,0,2,1,1,43,22,2,6,2,2,0,0,0,2 -050,01,005,Alabama,Barbour County,11,5,1464,865,599,323,231,516,352,3,4,2,0,2,3,19,9,334,240,533,360,12,4,6,1,2,3,848,580,308,216,516,351,3,4,2,0,1,0,18,9,318,225,533,359,11,4,6,1,1,0,17,19,15,15,0,1,0,0,0,0,1,3,1,0,16,15,0,1,1,0,0,0,1,3 -050,01,005,Alabama,Barbour County,11,6,1790,1129,661,456,252,645,392,8,7,2,1,2,1,16,8,461,260,658,397,21,12,3,1,2,1,1078,640,419,236,640,391,3,4,2,1,1,1,13,7,424,243,651,396,13,8,2,1,1,1,51,21,37,16,5,1,5,3,0,0,1,0,3,1,37,17,7,1,8,4,1,0,1,0 -050,01,005,Alabama,Barbour County,11,7,1660,989,671,391,296,569,362,6,3,4,5,8,3,11,2,398,298,579,363,11,4,4,5,8,3,937,628,354,258,562,359,2,1,4,5,5,3,10,2,360,260,571,360,7,2,4,5,5,3,52,43,37,38,7,3,4,2,0,0,3,0,1,0,38,38,8,3,4,2,0,0,3,0 -050,01,005,Alabama,Barbour County,11,8,1526,919,607,423,240,457,346,13,6,8,8,7,1,11,6,431,243,466,352,18,10,8,9,7,1,861,585,386,227,455,342,1,1,8,8,4,1,7,6,392,230,461,348,3,5,8,9,4,1,58,22,37,13,2,4,12,5,0,0,3,0,4,0,39,13,5,4,15,5,0,0,3,0 -050,01,005,Alabama,Barbour County,11,9,1437,860,577,433,275,414,287,3,6,4,6,1,0,5,3,436,278,416,287,8,8,4,7,1,0,809,540,391,242,409,285,0,4,4,6,0,0,5,3,394,245,411,285,5,6,4,7,0,0,51,37,42,33,5,2,3,2,0,0,1,0,0,0,42,33,5,2,3,2,0,0,1,0 -050,01,005,Alabama,Barbour County,11,10,1622,928,694,484,334,425,347,11,0,3,4,1,1,4,8,486,342,428,351,14,4,3,5,1,1,884,665,448,307,423,346,7,0,3,4,0,0,3,8,450,315,425,350,9,4,3,5,0,0,44,29,36,27,2,1,4,0,0,0,1,1,1,0,36,27,3,1,5,0,0,0,1,1 -050,01,005,Alabama,Barbour County,11,11,1597,844,753,428,389,394,356,7,4,3,2,2,1,10,1,433,390,402,357,15,4,3,2,2,1,816,730,404,371,394,352,6,4,3,2,0,0,9,1,408,372,401,353,13,4,3,2,0,0,28,23,24,18,0,4,1,0,0,0,2,1,1,0,25,18,1,4,2,0,0,0,2,1 -050,01,005,Alabama,Barbour County,11,12,1685,835,850,465,440,352,389,8,8,2,5,0,1,8,7,472,446,355,390,12,14,3,7,1,2,812,838,450,432,345,386,7,8,2,5,0,1,8,6,457,437,348,387,11,13,3,7,1,2,23,12,15,8,7,3,1,0,0,0,0,0,0,1,15,9,7,3,1,1,0,0,0,0 -050,01,005,Alabama,Barbour County,11,13,1540,758,782,439,460,303,310,2,2,4,6,1,0,9,4,444,462,308,313,7,4,7,7,3,0,747,767,433,449,300,306,1,2,4,6,1,0,8,4,438,451,304,309,5,4,7,7,3,0,11,15,6,11,3,4,1,0,0,0,0,0,1,0,6,11,4,4,2,0,0,0,0,0 -050,01,005,Alabama,Barbour County,11,14,1544,704,840,415,452,277,376,6,5,0,2,0,0,6,5,420,456,280,378,9,9,1,2,0,0,694,834,407,448,277,374,4,5,0,2,0,0,6,5,412,452,280,376,7,9,1,2,0,0,10,6,8,4,0,2,2,0,0,0,0,0,0,0,8,4,0,2,2,0,0,0,0,0 -050,01,005,Alabama,Barbour County,11,15,1328,599,729,382,454,210,264,2,2,1,4,0,0,4,5,386,457,210,266,6,7,1,4,0,0,594,726,379,453,209,263,1,1,1,4,0,0,4,5,383,456,209,265,5,6,1,4,0,0,5,3,3,1,1,1,1,1,0,0,0,0,0,0,3,1,1,1,1,1,0,0,0,0 -050,01,005,Alabama,Barbour County,11,16,903,401,502,286,333,109,163,1,1,3,2,1,0,1,3,286,335,110,164,2,3,3,3,1,0,397,496,283,329,108,161,1,1,3,2,1,0,1,3,283,331,109,162,2,3,3,3,1,0,4,6,3,4,1,2,0,0,0,0,0,0,0,0,3,4,1,2,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,11,17,571,236,335,170,207,66,126,0,1,0,0,0,1,0,0,170,207,66,126,0,1,0,0,0,1,235,335,169,207,66,126,0,1,0,0,0,1,0,0,169,207,66,126,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,11,18,501,156,345,110,204,41,133,2,3,2,2,0,0,1,3,111,206,42,135,2,5,2,2,0,0,153,341,107,202,41,132,2,2,2,2,0,0,1,3,108,204,42,134,2,4,2,2,0,0,3,4,3,2,0,1,0,1,0,0,0,0,0,0,3,2,0,1,0,1,0,0,0,0 -050,01,005,Alabama,Barbour County,12,0,24657,13030,11627,6360,5701,6302,5635,101,67,55,60,34,18,178,146,6495,5826,6433,5734,176,117,74,82,37,22,12415,11146,5884,5309,6246,5583,50,42,54,60,21,10,160,142,6006,5430,6364,5680,115,90,73,82,23,14,615,481,476,392,56,52,51,25,1,0,13,8,18,4,489,396,69,54,61,27,1,0,14,8 -050,01,005,Alabama,Barbour County,12,1,1311,674,637,276,247,365,356,4,4,1,3,2,1,26,26,298,272,387,376,8,8,5,6,3,1,604,577,225,198,355,348,1,2,0,3,1,0,22,26,244,223,374,368,3,6,4,6,1,0,70,60,51,49,10,8,3,2,1,0,1,1,4,0,54,49,13,8,5,2,1,0,2,1 -050,01,005,Alabama,Barbour County,12,2,1410,689,721,285,305,364,384,5,0,4,4,2,2,29,26,312,327,388,405,9,8,7,5,2,2,623,646,228,237,357,377,3,0,4,4,2,2,29,26,255,259,381,398,7,8,7,5,2,2,66,75,57,68,7,7,2,0,0,0,0,0,0,0,57,68,7,7,2,0,0,0,0,0 -050,01,005,Alabama,Barbour County,12,3,1473,739,734,301,331,409,374,11,7,7,1,3,0,8,21,309,352,414,389,14,9,7,5,3,1,680,660,256,269,406,370,1,0,7,1,3,0,7,20,263,289,410,384,4,2,7,5,3,1,59,74,45,62,3,4,10,7,0,0,0,0,1,1,46,63,4,5,10,7,0,0,0,0 -050,01,005,Alabama,Barbour County,12,4,1398,734,664,315,291,396,358,6,3,5,3,1,1,11,8,326,298,403,365,9,5,6,3,1,1,684,633,270,267,394,355,4,1,5,3,1,0,10,7,280,273,401,362,6,2,6,3,1,0,50,31,45,24,2,3,2,2,0,0,0,1,1,1,46,25,2,3,3,3,0,0,0,1 -050,01,005,Alabama,Barbour County,12,5,1474,879,595,334,236,520,344,4,2,1,1,2,3,18,9,346,245,535,349,11,6,3,2,2,3,858,574,316,220,520,342,3,2,1,1,1,0,17,9,327,229,534,347,10,6,3,2,1,0,21,21,18,16,0,2,1,0,0,0,1,3,1,0,19,16,1,2,1,0,0,0,1,3 -050,01,005,Alabama,Barbour County,12,6,1774,1130,644,450,249,649,374,7,7,5,2,3,1,16,11,457,258,663,381,18,10,6,4,3,2,1094,628,426,237,644,373,4,6,5,2,2,0,13,10,432,245,656,380,12,8,6,4,2,1,36,16,24,12,5,1,3,1,0,0,1,1,3,1,25,13,7,1,6,2,0,0,1,1 -050,01,005,Alabama,Barbour County,12,7,1660,1004,656,388,283,589,357,6,6,2,3,8,5,11,2,396,285,597,358,11,6,3,4,8,5,957,625,354,258,584,355,2,2,2,3,5,5,10,2,361,260,591,356,7,2,3,4,5,5,47,31,34,25,5,2,4,4,0,0,3,0,1,0,35,25,6,2,4,4,0,0,3,0 -050,01,005,Alabama,Barbour County,12,8,1538,905,633,426,260,448,354,11,6,6,6,7,1,7,6,432,264,452,359,14,9,8,7,8,1,840,592,377,228,445,350,1,1,6,6,4,1,7,6,383,232,449,355,4,4,8,7,5,1,65,41,49,32,3,4,10,5,0,0,3,0,0,0,49,32,3,4,10,5,0,0,3,0 -050,01,005,Alabama,Barbour County,12,9,1408,858,550,424,267,411,265,7,5,7,10,1,0,8,3,428,268,417,267,11,7,8,12,2,1,791,520,373,240,406,263,1,4,7,10,0,0,4,3,374,241,409,265,3,6,8,12,1,1,67,30,51,27,5,2,6,1,0,0,1,0,4,0,54,27,8,2,8,1,0,0,1,0 -050,01,005,Alabama,Barbour County,12,10,1575,892,683,463,334,410,339,11,1,3,3,1,1,4,5,465,337,414,342,14,3,3,4,1,2,845,649,425,304,407,337,7,0,3,3,0,0,3,5,427,307,410,340,9,2,3,4,0,1,47,34,38,30,3,2,4,1,0,0,1,1,1,0,38,30,4,2,5,1,0,0,1,1 -050,01,005,Alabama,Barbour County,12,11,1503,800,703,427,358,355,336,7,3,2,2,1,1,8,3,432,360,362,337,11,6,2,3,1,1,774,686,404,346,355,332,6,3,2,2,0,0,7,3,408,348,361,333,10,6,2,3,0,0,26,17,23,12,0,4,1,0,0,0,1,1,1,0,24,12,1,4,1,0,0,0,1,1 -050,01,005,Alabama,Barbour County,12,12,1706,841,865,455,447,365,401,7,9,2,2,1,1,11,5,464,452,371,404,16,10,2,5,1,1,817,849,440,435,358,398,6,9,2,2,0,1,11,4,449,439,364,400,15,10,2,5,0,1,24,16,15,12,7,3,1,0,0,0,1,0,0,1,15,13,7,4,1,0,0,0,1,0 -050,01,005,Alabama,Barbour County,12,13,1534,762,772,450,445,297,312,3,1,3,10,1,0,8,4,455,448,301,314,8,3,5,11,1,0,748,761,441,437,294,309,2,1,3,10,1,0,7,4,445,440,298,311,6,3,5,11,1,0,14,11,9,8,3,3,1,0,0,0,0,0,1,0,10,8,3,3,2,0,0,0,0,0 -050,01,005,Alabama,Barbour County,12,14,1515,701,814,402,441,287,364,4,5,1,2,0,0,7,2,407,443,290,365,9,6,2,2,0,0,691,806,394,434,287,363,2,5,1,2,0,0,7,2,399,436,290,364,7,6,2,2,0,0,10,8,8,7,0,1,2,0,0,0,0,0,0,0,8,7,0,1,2,0,0,0,0,0 -050,01,005,Alabama,Barbour County,12,15,1372,610,762,392,452,210,297,4,3,0,3,0,0,4,7,394,457,212,299,7,10,1,3,0,0,607,756,390,450,209,294,4,2,0,3,0,0,4,7,392,455,211,296,7,9,1,3,0,0,3,6,2,2,1,3,0,1,0,0,0,0,0,0,2,2,1,3,0,1,0,0,0,0 -050,01,005,Alabama,Barbour County,12,16,916,407,509,277,336,123,165,2,1,4,3,0,0,1,4,278,340,123,166,3,3,4,4,0,0,401,504,274,332,121,164,1,1,4,3,0,0,1,4,275,336,121,165,2,3,4,4,0,0,6,5,3,4,2,1,1,0,0,0,0,0,0,0,3,4,2,1,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,12,17,590,244,346,185,218,58,127,0,1,0,0,1,0,0,0,185,218,58,127,0,1,0,0,1,0,242,345,183,218,58,126,0,1,0,0,1,0,0,0,183,218,58,126,0,1,0,0,1,0,2,1,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,12,18,500,161,339,110,201,46,128,2,3,2,2,0,1,1,4,111,202,46,131,3,7,2,2,0,1,159,335,108,199,46,127,2,2,2,2,0,1,1,4,109,200,46,130,3,6,2,2,0,1,2,4,2,2,0,1,0,1,0,0,0,0,0,0,2,2,0,1,0,1,0,0,0,0 -050,01,005,Alabama,Barbour County,13,0,24589,12987,11602,6352,5693,6266,5600,102,70,50,62,33,17,184,160,6494,5835,6391,5714,183,111,72,83,40,25,12349,11091,5856,5274,6209,5547,50,44,49,62,19,8,166,156,5985,5413,6325,5659,121,83,67,81,24,16,638,511,496,419,57,53,52,26,1,0,14,9,18,4,509,422,66,55,62,28,5,2,16,9 -050,01,005,Alabama,Barbour County,13,1,1316,674,642,275,252,368,350,6,6,1,2,2,2,22,30,294,281,385,375,10,10,4,5,3,2,600,581,222,204,358,342,2,3,0,2,0,0,18,30,238,233,374,367,4,7,2,5,0,0,74,61,53,48,10,8,4,3,1,0,2,2,4,0,56,48,11,8,6,3,2,0,3,2 -050,01,005,Alabama,Barbour County,13,2,1328,648,680,282,278,329,367,2,0,4,5,2,1,29,29,308,305,351,392,6,4,8,8,4,1,586,597,228,201,321,361,2,0,4,5,2,1,29,29,254,228,343,386,6,4,8,8,4,1,62,83,54,77,8,6,0,0,0,0,0,0,0,0,54,77,8,6,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,13,3,1531,766,765,302,363,427,373,12,5,7,2,2,0,16,22,318,383,437,392,19,7,8,4,2,1,699,680,251,289,424,367,1,0,7,2,2,0,14,22,265,309,434,386,6,2,8,4,2,1,67,85,51,74,3,6,11,5,0,0,0,0,2,0,53,74,3,6,13,5,0,0,0,0 -050,01,005,Alabama,Barbour County,13,4,1386,723,663,308,300,390,343,7,4,5,3,1,1,12,12,320,311,397,352,10,7,7,5,2,1,668,621,259,268,388,340,4,0,5,3,1,0,11,10,270,278,395,348,6,1,7,4,2,0,55,42,49,32,2,3,3,4,0,0,0,1,1,2,50,33,2,4,4,6,0,1,0,1 -050,01,005,Alabama,Barbour County,13,5,1460,882,578,349,242,511,322,4,1,1,2,2,1,15,10,358,251,524,327,12,4,2,4,2,4,857,562,325,228,511,321,3,1,1,2,2,0,15,10,334,237,524,326,11,4,2,4,2,3,25,16,24,14,0,1,1,0,0,0,0,1,0,0,24,14,0,1,1,0,0,0,0,1 -050,01,005,Alabama,Barbour County,13,6,1751,1103,648,435,245,634,380,6,6,4,3,3,3,21,11,446,255,648,386,20,9,8,4,4,5,1064,626,408,228,630,379,4,6,4,3,1,0,17,10,417,237,641,384,15,9,8,4,2,2,39,22,27,17,4,1,2,0,0,0,2,3,4,1,29,18,7,2,5,0,0,0,2,3 -050,01,005,Alabama,Barbour County,13,7,1640,998,642,389,272,583,353,8,8,2,1,7,4,9,4,394,276,592,355,12,9,2,2,7,4,950,619,356,257,577,350,3,3,2,1,4,4,8,4,360,261,585,352,7,4,2,2,4,4,48,23,33,15,6,3,5,5,0,0,3,0,1,0,34,15,7,3,5,5,0,0,3,0 -050,01,005,Alabama,Barbour County,13,8,1562,898,664,409,281,461,365,9,5,5,6,7,1,7,6,415,287,465,368,13,8,5,6,7,1,850,624,375,247,458,362,1,2,5,6,4,1,7,6,381,253,462,365,5,5,5,6,4,1,48,40,34,34,3,3,8,3,0,0,3,0,0,0,34,34,3,3,8,3,0,0,3,0 -050,01,005,Alabama,Barbour County,13,9,1496,915,581,464,267,428,295,9,6,5,11,2,0,7,2,468,268,433,296,12,7,8,12,3,0,841,547,406,238,424,293,1,3,5,11,1,0,4,2,408,239,427,294,4,4,5,12,1,0,74,34,58,29,4,2,8,3,0,0,1,0,3,0,60,29,6,2,8,3,3,0,2,0 -050,01,005,Alabama,Barbour County,13,10,1540,861,679,448,324,395,348,9,3,2,0,1,1,6,3,450,327,399,349,13,4,4,1,1,1,809,647,406,297,391,345,5,2,2,0,0,0,5,3,408,300,394,346,8,3,4,1,0,0,52,32,42,27,4,3,4,1,0,0,1,1,1,0,42,27,5,3,5,1,0,0,1,1 -050,01,005,Alabama,Barbour County,13,11,1457,795,662,424,343,356,305,5,2,1,5,1,1,8,6,429,348,362,308,10,6,1,5,1,2,767,648,399,333,356,302,4,2,1,5,0,0,7,6,403,338,362,305,8,6,1,5,0,1,28,14,25,10,0,3,1,0,0,0,1,1,1,0,26,10,0,3,2,0,0,0,1,1 -050,01,005,Alabama,Barbour County,13,12,1644,822,822,443,422,359,390,8,6,2,1,1,0,9,3,449,424,362,392,16,7,2,2,2,0,794,800,422,405,353,386,8,6,2,1,0,0,9,2,428,406,356,388,16,7,2,1,1,0,28,22,21,17,6,4,0,0,0,0,1,0,0,1,21,18,6,4,0,0,0,1,1,0 -050,01,005,Alabama,Barbour County,13,13,1496,733,763,433,438,283,305,4,4,3,10,1,1,9,5,441,440,289,309,9,5,3,12,1,2,722,752,428,429,280,303,2,4,3,10,1,1,8,5,435,431,285,307,7,5,3,12,1,2,11,11,5,9,3,2,2,0,0,0,0,0,1,0,6,9,4,2,2,0,0,0,0,0 -050,01,005,Alabama,Barbour County,13,14,1490,685,805,403,441,271,354,3,5,1,2,0,0,7,3,410,443,275,356,5,6,2,3,0,0,672,797,392,435,270,352,2,5,1,2,0,0,7,3,399,437,274,354,4,6,2,3,0,0,13,8,11,6,1,2,1,0,0,0,0,0,0,0,11,6,1,2,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,13,15,1412,620,792,386,456,223,322,6,4,1,3,0,0,4,7,390,461,223,324,10,10,1,4,0,0,615,784,383,452,222,319,5,3,1,3,0,0,4,7,387,457,222,321,9,9,1,4,0,0,5,8,3,4,1,3,1,1,0,0,0,0,0,0,3,4,1,3,1,1,0,0,0,0 -050,01,005,Alabama,Barbour County,13,16,982,446,536,304,357,136,171,1,1,4,4,0,0,1,3,305,360,136,174,2,1,4,4,0,0,443,532,303,353,135,171,0,1,4,4,0,0,1,3,304,356,135,174,1,1,4,4,0,0,3,4,1,4,1,0,1,0,0,0,0,0,0,0,1,4,1,0,1,0,0,0,0,0 -050,01,005,Alabama,Barbour County,13,17,582,244,338,180,207,61,129,1,1,0,0,1,0,1,1,180,208,62,130,2,1,0,0,1,0,240,336,177,207,60,127,1,1,0,0,1,0,1,1,177,208,61,128,2,1,0,0,1,0,4,2,3,0,1,2,0,0,0,0,0,0,0,0,3,0,1,2,0,0,0,0,0,0 -050,01,005,Alabama,Barbour County,13,18,516,174,342,118,205,51,128,2,3,2,2,0,1,1,3,119,207,51,129,2,6,3,2,0,1,172,338,116,203,51,127,2,2,2,2,0,1,1,3,117,205,51,128,2,5,3,2,0,1,2,4,2,2,0,1,0,1,0,0,0,0,0,0,2,2,0,1,0,1,0,0,0,0 -050,01,007,Alabama,Bibb County,1,0,22915,12301,10614,9055,8494,3079,1981,35,33,13,9,28,5,91,92,9133,8567,3119,2028,84,76,26,30,33,9,12003,10506,8798,8410,3065,1967,35,32,13,9,6,1,86,87,8876,8480,3100,2010,83,73,21,29,10,4,298,108,257,84,14,14,0,1,0,0,22,4,5,5,257,87,19,18,1,3,5,1,23,5 -050,01,007,Alabama,Bibb County,1,1,1378,712,666,551,495,144,151,4,1,0,0,1,1,12,18,562,509,152,168,8,4,1,4,1,1,701,651,541,484,143,149,4,0,0,0,1,1,12,17,552,497,151,165,8,3,1,4,1,1,11,15,10,11,1,2,0,1,0,0,0,0,0,1,10,12,1,3,0,1,0,0,0,0 -050,01,007,Alabama,Bibb County,1,2,1405,759,646,615,516,132,117,2,2,2,2,1,1,7,8,621,524,138,123,3,5,2,2,2,1,739,634,600,509,128,113,2,2,2,2,0,0,7,8,606,517,134,119,3,5,2,2,1,0,20,12,15,7,4,4,0,0,0,0,1,1,0,0,15,7,4,4,0,0,0,0,1,1 -050,01,007,Alabama,Bibb County,1,3,1440,771,669,588,535,170,131,4,0,2,0,2,0,5,3,593,537,173,134,6,1,3,0,2,0,758,658,577,527,170,128,4,0,2,0,0,0,5,3,582,529,173,131,6,1,3,0,0,0,13,11,11,8,0,3,0,0,0,0,2,0,0,0,11,8,0,3,0,0,0,0,2,0 -050,01,007,Alabama,Bibb County,1,4,1543,806,737,592,542,197,181,3,3,2,2,7,0,5,9,597,548,199,186,6,8,2,5,7,0,785,733,579,539,196,181,3,3,2,2,0,0,5,8,584,544,198,185,6,7,2,5,0,0,21,4,13,3,1,0,0,0,0,0,7,0,0,1,13,4,1,1,0,1,0,0,7,0 -050,01,007,Alabama,Bibb County,1,5,1491,811,680,514,501,284,173,2,0,0,0,7,0,4,6,517,507,287,176,3,3,0,0,8,0,777,674,484,495,283,173,2,0,0,0,4,0,4,6,487,501,286,176,3,3,0,0,5,0,34,6,30,6,1,0,0,0,0,0,3,0,0,0,30,6,1,0,0,0,0,0,3,0 -050,01,007,Alabama,Bibb County,1,6,1603,987,616,589,474,384,130,2,4,1,0,5,2,6,6,594,478,387,133,4,5,3,3,5,3,932,608,541,468,382,130,2,4,1,0,0,0,6,6,546,472,385,133,4,5,3,3,0,1,55,8,48,6,2,0,0,0,0,0,5,2,0,0,48,6,2,0,0,0,0,0,5,2 -050,01,007,Alabama,Bibb County,1,7,1646,1013,633,640,507,364,116,2,3,1,1,2,0,4,6,643,512,367,117,3,6,2,4,3,0,970,625,601,499,363,116,2,3,1,1,0,0,3,6,604,504,365,117,3,6,1,4,0,0,43,8,39,8,1,0,0,0,0,0,2,0,1,0,39,8,2,0,0,0,1,0,3,0 -050,01,007,Alabama,Bibb County,1,8,1747,1003,744,700,594,295,142,2,5,1,1,1,0,4,2,703,596,297,142,4,7,2,1,1,0,978,737,676,588,294,141,2,5,1,1,1,0,4,2,679,590,296,141,4,7,2,1,1,0,25,7,24,6,1,1,0,0,0,0,0,0,0,0,24,6,1,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,9,1635,892,743,663,608,223,128,0,3,1,0,2,1,3,3,666,610,223,130,3,4,1,0,2,2,871,731,644,598,223,127,0,3,1,0,0,0,3,3,647,600,223,129,3,4,1,0,0,1,21,12,19,10,0,1,0,0,0,0,2,1,0,0,19,10,0,1,0,0,0,0,2,1 -050,01,007,Alabama,Bibb County,1,10,1805,1036,769,746,597,279,163,1,3,0,0,0,0,10,6,756,601,280,165,7,8,2,0,1,1,1019,757,730,587,278,162,1,3,0,0,0,0,10,5,740,591,279,163,7,8,2,0,1,0,17,12,16,10,1,1,0,0,0,0,0,0,0,1,16,10,1,2,0,0,0,0,0,1 -050,01,007,Alabama,Bibb County,1,11,1581,847,734,664,598,179,125,1,4,0,1,0,0,3,6,666,602,180,127,3,8,1,3,0,0,833,731,653,597,177,125,1,4,0,1,0,0,2,4,655,600,177,126,3,7,0,2,0,0,14,3,11,1,2,0,0,0,0,0,0,0,1,2,11,2,3,1,0,1,1,1,0,0 -050,01,007,Alabama,Bibb County,1,12,1401,734,667,550,542,167,117,4,2,1,1,0,0,12,5,561,547,170,117,12,5,3,3,0,0,727,665,544,540,167,117,4,2,1,1,0,0,11,5,555,545,169,117,12,5,2,3,0,0,7,2,6,2,0,0,0,0,0,0,0,0,1,0,6,2,1,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,1,13,1334,684,650,568,553,110,94,4,1,0,0,0,0,2,2,570,555,110,94,6,2,0,1,0,0,675,648,559,551,110,94,4,1,0,0,0,0,2,2,561,553,110,94,6,2,0,1,0,0,9,2,9,2,0,0,0,0,0,0,0,0,0,0,9,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,14,966,456,510,397,447,53,60,1,1,1,0,0,0,4,2,399,449,55,60,4,3,1,0,1,0,453,509,394,446,53,60,1,1,1,0,0,0,4,2,396,448,55,60,4,3,1,0,1,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,15,757,347,410,304,357,37,47,3,1,0,1,0,0,3,4,306,360,38,48,6,3,0,3,0,0,346,408,303,355,37,47,3,1,0,1,0,0,3,4,305,358,38,48,6,3,0,3,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,16,549,232,317,199,274,30,42,0,0,1,0,0,0,2,1,201,275,30,42,2,1,1,0,0,0,231,316,198,274,30,41,0,0,1,0,0,0,2,1,200,275,30,41,2,1,1,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,1,17,355,138,217,117,190,18,22,0,0,0,0,0,0,3,5,119,193,19,24,2,3,1,1,0,1,136,216,116,189,18,22,0,0,0,0,0,0,2,5,118,192,18,24,2,3,0,1,0,1,2,1,1,1,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,1,18,279,73,206,58,164,13,42,0,0,0,0,0,0,2,0,59,164,14,42,2,0,1,0,0,0,72,205,58,164,13,41,0,0,0,0,0,0,1,0,59,164,13,41,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,0,0,0 -050,01,007,Alabama,Bibb County,2,0,22904,12298,10606,9052,8484,3079,1982,35,34,13,9,28,5,91,92,9130,8557,3119,2029,84,77,26,30,33,9,12000,10498,8795,8400,3065,1968,35,33,13,9,6,1,86,87,8873,8470,3100,2011,83,74,21,29,10,4,298,108,257,84,14,14,0,1,0,0,22,4,5,5,257,87,19,18,1,3,5,1,23,5 -050,01,007,Alabama,Bibb County,2,1,1376,712,664,551,493,144,151,4,1,0,0,1,1,12,18,562,507,152,168,8,4,1,4,1,1,701,649,541,482,143,149,4,0,0,0,1,1,12,17,552,495,151,165,8,3,1,4,1,1,11,15,10,11,1,2,0,1,0,0,0,0,0,1,10,12,1,3,0,1,0,0,0,0 -050,01,007,Alabama,Bibb County,2,2,1405,759,646,615,516,132,117,2,2,2,2,1,1,7,8,621,524,138,123,3,5,2,2,2,1,739,634,600,509,128,113,2,2,2,2,0,0,7,8,606,517,134,119,3,5,2,2,1,0,20,12,15,7,4,4,0,0,0,0,1,1,0,0,15,7,4,4,0,0,0,0,1,1 -050,01,007,Alabama,Bibb County,2,3,1438,771,667,588,533,170,131,4,0,2,0,2,0,5,3,593,535,173,134,6,1,3,0,2,0,758,656,577,525,170,128,4,0,2,0,0,0,5,3,582,527,173,131,6,1,3,0,0,0,13,11,11,8,0,3,0,0,0,0,2,0,0,0,11,8,0,3,0,0,0,0,2,0 -050,01,007,Alabama,Bibb County,2,4,1540,805,735,591,540,197,181,3,3,2,2,7,0,5,9,596,546,199,186,6,8,2,5,7,0,784,731,578,537,196,181,3,3,2,2,0,0,5,8,583,542,198,185,6,7,2,5,0,0,21,4,13,3,1,0,0,0,0,0,7,0,0,1,13,4,1,1,0,1,0,0,7,0 -050,01,007,Alabama,Bibb County,2,5,1487,809,678,512,499,284,173,2,0,0,0,7,0,4,6,515,505,287,176,3,3,0,0,8,0,775,672,482,493,283,173,2,0,0,0,4,0,4,6,485,499,286,176,3,3,0,0,5,0,34,6,30,6,1,0,0,0,0,0,3,0,0,0,30,6,1,0,0,0,0,0,3,0 -050,01,007,Alabama,Bibb County,2,6,1603,987,616,589,474,384,130,2,4,1,0,5,2,6,6,594,478,387,133,4,5,3,3,5,3,932,608,541,468,382,130,2,4,1,0,0,0,6,6,546,472,385,133,4,5,3,3,0,1,55,8,48,6,2,0,0,0,0,0,5,2,0,0,48,6,2,0,0,0,0,0,5,2 -050,01,007,Alabama,Bibb County,2,7,1646,1013,633,640,507,364,116,2,3,1,1,2,0,4,6,643,512,367,117,3,6,2,4,3,0,970,625,601,499,363,116,2,3,1,1,0,0,3,6,604,504,365,117,3,6,1,4,0,0,43,8,39,8,1,0,0,0,0,0,2,0,1,0,39,8,2,0,0,0,1,0,3,0 -050,01,007,Alabama,Bibb County,2,8,1749,1004,745,701,595,295,142,2,5,1,1,1,0,4,2,704,597,297,142,4,7,2,1,1,0,979,738,677,589,294,141,2,5,1,1,1,0,4,2,680,591,296,141,4,7,2,1,1,0,25,7,24,6,1,1,0,0,0,0,0,0,0,0,24,6,1,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,9,1633,891,742,662,607,223,128,0,3,1,0,2,1,3,3,665,609,223,130,3,4,1,0,2,2,870,730,643,597,223,127,0,3,1,0,0,0,3,3,646,599,223,129,3,4,1,0,0,1,21,12,19,10,0,1,0,0,0,0,2,1,0,0,19,10,0,1,0,0,0,0,2,1 -050,01,007,Alabama,Bibb County,2,10,1803,1035,768,745,596,279,163,1,3,0,0,0,0,10,6,755,600,280,165,7,8,2,0,1,1,1018,756,729,586,278,162,1,3,0,0,0,0,10,5,739,590,279,163,7,8,2,0,1,0,17,12,16,10,1,1,0,0,0,0,0,0,0,1,16,10,1,2,0,0,0,0,0,1 -050,01,007,Alabama,Bibb County,2,11,1580,848,732,665,596,179,125,1,4,0,1,0,0,3,6,667,600,180,127,3,8,1,3,0,0,834,729,654,595,177,125,1,4,0,1,0,0,2,4,656,598,177,126,3,7,0,2,0,0,14,3,11,1,2,0,0,0,0,0,0,0,1,2,11,2,3,1,0,1,1,1,0,0 -050,01,007,Alabama,Bibb County,2,12,1400,733,667,549,542,167,117,4,2,1,1,0,0,12,5,560,547,170,117,12,5,3,3,0,0,726,665,543,540,167,117,4,2,1,1,0,0,11,5,554,545,169,117,12,5,2,3,0,0,7,2,6,2,0,0,0,0,0,0,0,0,1,0,6,2,1,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,2,13,1336,684,652,568,554,110,95,4,1,0,0,0,0,2,2,570,556,110,95,6,2,0,1,0,0,675,650,559,552,110,95,4,1,0,0,0,0,2,2,561,554,110,95,6,2,0,1,0,0,9,2,9,2,0,0,0,0,0,0,0,0,0,0,9,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,14,968,457,511,398,447,53,60,1,2,1,0,0,0,4,2,400,449,55,60,4,4,1,0,1,0,454,510,395,446,53,60,1,2,1,0,0,0,4,2,397,448,55,60,4,4,1,0,1,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,15,757,347,410,304,357,37,47,3,1,0,1,0,0,3,4,306,360,38,48,6,3,0,3,0,0,346,408,303,355,37,47,3,1,0,1,0,0,3,4,305,358,38,48,6,3,0,3,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,16,549,232,317,199,274,30,42,0,0,1,0,0,0,2,1,201,275,30,42,2,1,1,0,0,0,231,316,198,274,30,41,0,0,1,0,0,0,2,1,200,275,30,41,2,1,1,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,2,17,355,138,217,117,190,18,22,0,0,0,0,0,0,3,5,119,193,19,24,2,3,1,1,0,1,136,216,116,189,18,22,0,0,0,0,0,0,2,5,118,192,18,24,2,3,0,1,0,1,2,1,1,1,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,2,18,279,73,206,58,164,13,42,0,0,0,0,0,0,2,0,59,164,14,42,2,0,1,0,0,0,72,205,58,164,13,41,0,0,0,0,0,0,1,0,59,164,13,41,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,0,0,0 -050,01,007,Alabama,Bibb County,3,0,22858,12261,10597,9028,8478,3069,1972,36,33,12,10,27,5,89,99,9104,8568,3106,2018,84,81,29,27,32,9,11960,10487,8767,8390,3056,1960,36,32,12,10,5,1,84,94,8842,8475,3089,2002,80,77,26,26,10,4,301,110,261,88,13,12,0,1,0,0,22,4,5,5,262,93,17,16,4,4,3,1,22,5 -050,01,007,Alabama,Bibb County,3,1,1347,697,650,538,488,143,143,4,1,0,0,1,1,11,17,547,503,150,157,7,4,3,3,1,1,684,636,526,477,142,142,4,0,0,0,1,1,11,16,535,491,149,155,7,2,3,3,1,1,13,14,12,11,1,1,0,1,0,0,0,0,0,1,12,12,1,2,0,2,0,0,0,0 -050,01,007,Alabama,Bibb County,3,2,1400,755,645,612,510,132,121,2,1,2,2,1,1,6,10,618,519,137,127,2,3,2,4,2,2,736,631,598,501,128,117,2,1,2,2,0,0,6,10,604,510,133,123,2,3,2,4,1,1,19,14,14,9,4,4,0,0,0,0,1,1,0,0,14,9,4,4,0,0,0,0,1,1 -050,01,007,Alabama,Bibb County,3,3,1435,773,662,590,532,171,127,3,0,1,0,2,0,6,3,596,535,175,129,5,0,2,1,2,0,761,651,580,524,171,124,3,0,1,0,0,0,6,3,586,527,175,126,5,0,2,1,0,0,12,11,10,8,0,3,0,0,0,0,2,0,0,0,10,8,0,3,0,0,0,0,2,0 -050,01,007,Alabama,Bibb County,3,4,1501,779,722,570,532,192,177,3,3,2,2,7,0,5,8,575,540,194,183,7,7,2,3,7,0,759,718,558,529,191,177,3,3,2,2,0,0,5,7,563,536,193,182,7,6,2,3,0,0,20,4,12,3,1,0,0,0,0,0,7,0,0,1,12,4,1,1,0,1,0,0,7,0 -050,01,007,Alabama,Bibb County,3,5,1492,815,677,522,496,280,173,2,0,0,0,7,0,4,8,526,503,281,175,3,3,2,2,7,2,779,671,491,490,279,173,2,0,0,0,3,0,4,8,495,497,280,175,3,3,2,2,3,2,36,6,31,6,1,0,0,0,0,0,4,0,0,0,31,6,1,0,0,0,0,0,4,0 -050,01,007,Alabama,Bibb County,3,6,1594,980,614,582,473,384,129,2,4,1,0,5,2,6,6,587,479,387,130,3,7,3,2,6,2,925,606,534,467,382,129,2,4,1,0,0,0,6,6,539,473,385,130,3,7,3,2,1,0,55,8,48,6,2,0,0,0,0,0,5,2,0,0,48,6,2,0,0,0,0,0,5,2 -050,01,007,Alabama,Bibb County,3,7,1651,1012,639,640,509,363,120,2,2,1,1,2,0,4,7,644,514,365,122,4,7,1,3,2,0,968,631,600,501,362,120,2,2,1,1,0,0,3,7,603,506,364,122,3,7,1,3,0,0,44,8,40,8,1,0,0,0,0,0,2,0,1,0,41,8,1,0,1,0,0,0,2,0 -050,01,007,Alabama,Bibb County,3,8,1734,999,735,693,589,298,137,2,6,1,1,1,0,4,2,696,591,300,138,3,6,3,2,2,0,975,728,670,583,297,136,2,6,1,1,1,0,4,2,673,585,299,137,3,6,3,2,2,0,24,7,23,6,1,1,0,0,0,0,0,0,0,0,23,6,1,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,9,1621,885,736,658,602,222,128,0,3,1,0,1,1,3,2,660,604,223,129,2,5,1,0,2,1,865,725,639,592,222,128,0,3,1,0,0,0,3,2,641,594,223,129,2,5,1,0,1,0,20,11,19,10,0,0,0,0,0,0,1,1,0,0,19,10,0,0,0,0,0,0,1,1 -050,01,007,Alabama,Bibb County,3,10,1812,1034,778,745,601,279,165,1,3,0,1,0,0,9,8,753,609,280,169,10,6,0,2,0,1,1016,766,728,591,278,164,1,3,0,1,0,0,9,7,736,598,279,168,10,6,0,1,0,0,18,12,17,10,1,1,0,0,0,0,0,0,0,1,17,11,1,1,0,0,0,1,0,1 -050,01,007,Alabama,Bibb County,3,11,1581,853,728,672,592,175,124,1,4,0,1,0,0,5,7,676,599,177,128,5,8,0,1,0,0,838,724,659,590,174,124,1,4,0,1,0,0,4,5,663,595,175,126,4,7,0,1,0,0,15,4,13,2,1,0,0,0,0,0,0,0,1,2,13,4,2,2,1,1,0,0,0,0 -050,01,007,Alabama,Bibb County,3,12,1407,732,675,551,548,165,119,4,2,1,1,0,0,11,5,559,552,168,120,13,7,3,1,1,0,725,673,545,546,165,119,4,2,1,1,0,0,10,5,553,550,167,120,12,7,2,1,1,0,7,2,6,2,0,0,0,0,0,0,0,0,1,0,6,2,1,0,1,0,1,0,0,0 -050,01,007,Alabama,Bibb County,3,13,1343,686,657,569,559,109,95,6,1,0,0,0,0,2,2,570,561,110,95,8,3,0,0,0,0,677,654,560,556,109,95,6,1,0,0,0,0,2,2,561,558,110,95,8,3,0,0,0,0,9,3,9,3,0,0,0,0,0,0,0,0,0,0,9,3,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,14,977,460,517,400,452,55,60,1,2,1,0,0,0,3,3,403,455,55,60,4,4,1,1,0,0,456,516,396,451,55,60,1,2,1,0,0,0,3,3,399,454,55,60,4,4,1,1,0,0,4,1,4,1,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,15,766,352,414,307,359,39,48,3,1,0,1,0,0,3,5,310,364,40,48,4,5,1,2,0,0,351,412,306,357,39,48,3,1,0,1,0,0,3,5,309,362,40,48,4,5,1,2,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,16,548,228,320,196,277,29,42,0,0,1,0,0,0,2,1,198,278,29,42,2,1,1,0,0,0,227,319,195,277,29,41,0,0,1,0,0,0,2,1,197,278,29,41,2,1,1,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,3,17,368,147,221,124,194,20,22,0,0,0,0,0,0,3,5,126,197,21,24,1,5,2,0,0,0,145,220,123,193,20,22,0,0,0,0,0,0,2,5,125,196,20,24,1,5,1,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,3,18,281,74,207,59,165,13,42,0,0,0,0,0,0,2,0,60,165,14,42,1,0,2,0,0,0,73,206,59,165,13,41,0,0,0,0,0,0,1,0,60,165,13,41,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,0,0,0 -050,01,007,Alabama,Bibb County,4,0,22736,12270,10466,9020,8435,3072,1878,41,37,16,13,26,5,95,98,9107,8514,3110,1924,88,85,35,36,32,11,11951,10320,8753,8312,3051,1866,39,35,15,13,5,1,88,93,8835,8386,3085,1909,83,81,32,35,10,7,319,146,267,123,21,12,2,2,1,0,21,4,7,5,272,128,25,15,5,4,3,1,22,4 -050,01,007,Alabama,Bibb County,4,1,1288,677,611,528,473,128,122,4,3,0,0,1,1,16,12,543,484,139,131,6,5,5,2,2,1,661,596,515,460,127,122,4,2,0,0,1,1,14,11,528,470,137,130,6,4,4,2,2,1,16,15,13,13,1,0,0,1,0,0,0,0,2,1,15,14,2,1,0,1,1,0,0,0 -050,01,007,Alabama,Bibb County,4,2,1362,753,609,610,483,132,110,4,2,2,2,0,0,5,12,614,492,132,117,7,2,4,9,1,2,732,591,594,470,127,106,4,1,2,2,0,0,5,12,598,479,127,113,7,1,4,9,1,2,21,18,16,13,5,4,0,1,0,0,0,0,0,0,16,13,5,4,0,1,0,0,0,0 -050,01,007,Alabama,Bibb County,4,3,1435,777,658,592,530,172,121,3,0,1,0,3,1,6,6,598,534,174,123,5,5,3,1,4,1,758,646,579,523,169,117,3,0,1,0,0,0,6,6,585,527,171,119,5,5,3,1,1,0,19,12,13,7,3,4,0,0,0,0,3,1,0,0,13,7,3,4,0,0,0,0,3,1 -050,01,007,Alabama,Bibb County,4,4,1392,731,661,530,499,183,152,5,3,2,1,6,0,5,6,535,504,186,156,7,6,2,2,6,0,716,653,524,492,182,152,3,3,2,1,0,0,5,5,529,496,185,155,5,5,2,2,0,0,15,8,6,7,1,0,2,0,0,0,6,0,0,1,6,8,1,1,2,1,0,0,6,0 -050,01,007,Alabama,Bibb County,4,5,1537,854,683,555,496,284,177,2,1,2,1,6,0,5,8,560,500,284,182,6,6,3,5,6,1,818,676,524,489,283,177,2,1,1,1,3,0,5,8,529,493,283,182,6,6,2,5,3,1,36,7,31,7,1,0,0,0,1,0,3,0,0,0,31,7,1,0,0,0,1,0,3,0 -050,01,007,Alabama,Bibb County,4,6,1599,970,629,571,494,386,123,2,3,0,0,5,2,6,7,577,501,390,127,4,4,0,1,5,3,913,604,523,471,382,123,2,3,0,0,0,0,6,7,529,478,386,127,4,4,0,1,0,1,57,25,48,23,4,0,0,0,0,0,5,2,0,0,48,23,4,0,0,0,0,0,5,2 -050,01,007,Alabama,Bibb County,4,7,1662,1032,630,644,506,374,116,2,2,3,0,3,0,6,6,650,510,377,118,3,6,4,2,4,1,981,618,600,494,371,116,2,2,3,0,0,0,5,6,605,498,374,118,3,6,4,2,0,1,51,12,44,12,3,0,0,0,0,0,3,0,1,0,45,12,3,0,0,0,0,0,4,0 -050,01,007,Alabama,Bibb County,4,8,1653,969,684,669,562,293,114,2,6,1,0,1,0,3,2,670,564,296,116,2,6,3,0,1,0,941,676,642,555,292,113,2,6,1,0,1,0,3,2,643,557,295,115,2,6,3,0,1,0,28,8,27,7,1,1,0,0,0,0,0,0,0,0,27,7,1,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,9,1624,883,741,651,603,226,130,0,5,1,1,1,1,4,1,655,604,227,131,2,5,2,1,1,1,868,731,637,594,226,130,0,5,1,1,0,0,4,1,641,595,227,131,2,5,2,1,0,0,15,10,14,9,0,0,0,0,0,0,1,1,0,0,14,9,0,0,0,0,0,0,1,1 -050,01,007,Alabama,Bibb County,4,10,1807,1023,784,735,606,281,163,1,3,0,4,0,0,6,8,740,614,282,164,6,8,0,6,1,0,1003,772,716,596,280,162,1,3,0,4,0,0,6,7,721,603,281,163,6,8,0,5,1,0,20,12,19,10,1,1,0,0,0,0,0,0,0,1,19,11,1,1,0,0,0,1,0,0 -050,01,007,Alabama,Bibb County,4,11,1589,878,711,695,580,175,118,2,4,0,1,0,0,6,8,701,588,176,120,6,10,1,1,0,0,862,705,680,576,174,118,2,4,0,1,0,0,6,6,686,582,175,119,6,9,1,1,0,0,16,6,15,4,1,0,0,0,0,0,0,0,0,2,15,6,1,1,0,1,0,0,0,0 -050,01,007,Alabama,Bibb County,4,12,1433,727,706,541,565,170,131,2,2,2,2,0,0,12,6,552,571,174,131,10,7,3,3,0,0,722,703,538,562,170,131,2,2,2,2,0,0,10,6,548,568,173,131,8,7,3,3,0,0,5,3,3,3,0,0,0,0,0,0,0,0,2,0,4,3,1,0,2,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,13,1355,698,657,578,567,110,87,7,1,0,0,0,0,3,2,581,568,110,89,10,2,0,0,0,0,688,654,568,564,110,87,7,1,0,0,0,0,3,2,571,565,110,89,10,2,0,0,0,0,10,3,10,3,0,0,0,0,0,0,0,0,0,0,10,3,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,14,1004,482,522,419,458,58,59,2,2,1,0,0,0,2,3,420,460,60,60,3,5,1,0,0,0,479,521,416,457,58,59,2,2,1,0,0,0,2,3,417,459,60,60,3,5,1,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,15,790,372,418,323,363,44,50,3,0,0,1,0,0,2,4,325,365,44,52,5,3,0,2,0,0,370,415,321,360,44,50,3,0,0,1,0,0,2,4,323,362,44,52,5,3,0,2,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,16,542,213,329,184,289,25,38,0,0,1,0,0,0,3,2,187,290,25,39,3,0,1,1,0,1,211,328,182,289,25,37,0,0,1,0,0,0,3,2,185,290,25,38,3,0,1,1,0,1,2,1,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,17,389,159,230,138,200,18,26,0,0,0,0,0,0,3,4,141,203,20,27,2,4,1,0,1,0,158,229,138,199,18,26,0,0,0,0,0,0,2,4,140,202,19,27,2,4,1,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,4,18,275,72,203,57,161,13,41,0,0,0,0,0,0,2,1,58,162,14,41,1,1,2,0,0,0,70,202,56,161,13,40,0,0,0,0,0,0,1,1,57,162,13,40,0,1,1,0,0,0,2,1,1,0,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0 -050,01,007,Alabama,Bibb County,5,0,22657,12212,10445,8975,8428,3056,1849,43,39,14,16,25,5,99,108,9065,8520,3103,1905,92,85,29,35,29,13,11899,10278,8711,8288,3034,1837,41,33,14,16,6,1,93,103,8795,8377,3079,1889,86,77,28,33,9,9,313,167,264,140,22,12,2,6,0,0,19,4,6,5,270,143,24,16,6,8,1,2,20,4 -050,01,007,Alabama,Bibb County,5,1,1251,637,614,489,483,126,109,4,6,0,0,1,0,17,16,503,496,139,119,9,10,2,4,2,1,621,596,476,470,125,109,4,2,0,0,1,0,15,15,488,483,137,118,7,6,2,3,2,1,16,18,13,13,1,0,0,4,0,0,0,0,2,1,15,13,2,1,2,4,0,1,0,0 -050,01,007,Alabama,Bibb County,5,2,1333,743,590,601,454,127,118,4,3,1,2,0,1,10,12,610,464,133,127,6,5,3,4,1,2,718,569,582,438,121,114,4,2,1,2,0,1,10,12,591,448,127,123,6,4,3,4,1,2,25,21,19,16,6,4,0,1,0,0,0,0,0,0,19,16,6,4,0,1,0,0,0,0 -050,01,007,Alabama,Bibb County,5,3,1406,764,642,610,515,143,119,2,0,2,0,1,1,6,7,616,521,147,124,5,2,2,1,1,1,748,630,598,507,140,116,2,0,2,0,0,0,6,7,604,513,144,121,5,2,2,1,0,0,16,12,12,8,3,3,0,0,0,0,1,1,0,0,12,8,3,3,0,0,0,0,1,1 -050,01,007,Alabama,Bibb County,5,4,1376,758,618,550,481,192,126,5,2,1,1,6,0,4,8,554,488,196,134,5,6,1,1,6,0,741,608,540,473,191,125,5,2,1,1,0,0,4,7,544,479,195,132,5,5,1,1,0,0,17,10,10,8,1,1,0,0,0,0,6,0,0,1,10,9,1,2,0,1,0,0,6,0 -050,01,007,Alabama,Bibb County,5,5,1517,830,687,516,506,298,170,1,2,2,1,5,0,8,8,524,513,303,173,5,5,3,3,5,1,797,683,487,503,297,170,1,1,2,1,2,0,8,8,495,510,302,173,5,4,3,3,2,1,33,4,29,3,1,0,0,1,0,0,3,0,0,0,29,3,1,0,0,1,0,0,3,0 -050,01,007,Alabama,Bibb County,5,6,1637,977,660,591,514,372,133,2,2,1,0,6,2,5,9,595,520,374,137,4,5,2,4,7,3,924,630,547,486,368,133,2,2,1,0,1,0,5,9,551,492,370,137,4,5,2,4,2,1,53,30,44,28,4,0,0,0,0,0,5,2,0,0,44,28,4,0,0,0,0,0,5,2 -050,01,007,Alabama,Bibb County,5,7,1591,1004,587,629,476,361,105,4,2,2,0,2,0,6,4,635,478,364,107,5,2,4,2,2,2,963,576,593,465,358,105,4,2,2,0,0,0,6,4,599,467,361,107,5,2,4,2,0,2,41,11,36,11,3,0,0,0,0,0,2,0,0,0,36,11,3,0,0,0,0,0,2,0 -050,01,007,Alabama,Bibb County,5,8,1598,924,674,607,543,307,122,2,4,2,0,2,0,4,5,610,548,310,126,3,6,3,0,2,0,890,664,576,534,306,121,2,4,2,0,1,0,3,5,578,539,309,125,2,6,3,0,1,0,34,10,31,9,1,1,0,0,0,0,1,0,1,0,32,9,1,1,1,0,0,0,1,0 -050,01,007,Alabama,Bibb County,5,9,1664,913,751,667,611,240,130,2,6,1,1,2,1,1,2,668,613,241,130,2,7,1,1,2,2,894,740,651,601,240,130,0,6,1,1,1,0,1,2,652,603,241,130,0,7,1,1,1,1,19,11,16,10,0,0,2,0,0,0,1,1,0,0,16,10,0,0,2,0,0,0,1,1 -050,01,007,Alabama,Bibb County,5,10,1743,1001,742,731,591,264,138,0,2,0,7,0,0,6,4,737,595,264,138,5,6,1,7,0,0,982,731,713,581,263,137,0,2,0,7,0,0,6,4,719,585,263,137,5,6,1,7,0,0,19,11,18,10,1,1,0,0,0,0,0,0,0,0,18,10,1,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,5,11,1643,889,754,698,609,182,130,3,5,0,0,0,0,6,10,703,617,183,134,8,10,1,2,0,1,875,745,685,603,181,130,3,5,0,0,0,0,6,7,690,609,182,132,8,9,1,1,0,1,14,9,13,6,1,0,0,0,0,0,0,0,0,3,13,8,1,2,0,1,0,1,0,0 -050,01,007,Alabama,Bibb County,5,12,1423,721,702,546,568,164,125,1,1,0,2,0,0,10,6,555,574,167,128,9,4,1,3,0,0,714,699,541,565,164,125,1,1,0,2,0,0,8,6,548,571,166,128,8,4,1,3,0,0,7,3,5,3,0,0,0,0,0,0,0,0,2,0,7,3,1,0,1,0,0,0,0,0 -050,01,007,Alabama,Bibb County,5,13,1327,685,642,561,540,113,99,7,1,0,1,0,0,4,1,565,540,113,100,10,2,1,1,0,0,676,633,552,531,113,99,7,1,0,1,0,0,4,1,556,531,113,100,10,2,1,1,0,0,9,9,9,9,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,5,14,1097,512,585,438,508,68,69,3,3,1,0,0,0,2,5,440,513,68,71,5,6,1,0,0,0,509,583,435,506,68,69,3,3,1,0,0,0,2,5,437,511,68,71,5,6,1,0,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,5,15,826,396,430,347,377,43,51,3,0,0,0,0,0,3,2,350,379,43,51,5,2,1,0,0,0,392,428,343,375,43,51,3,0,0,0,0,0,3,2,346,377,43,51,5,2,1,0,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,5,16,560,220,340,190,296,26,39,0,0,1,1,0,0,3,4,193,300,26,40,3,2,1,2,0,0,220,338,190,295,26,38,0,0,1,1,0,0,3,4,193,299,26,39,3,2,1,2,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,5,17,389,164,225,144,196,18,26,0,0,0,0,0,0,2,3,145,199,20,26,2,3,0,0,0,0,163,224,143,195,18,26,0,0,0,0,0,0,2,3,144,198,20,26,2,3,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,5,18,276,74,202,60,160,12,40,0,0,0,0,0,0,2,2,62,162,12,40,1,2,1,0,1,0,72,201,59,160,12,39,0,0,0,0,0,0,1,2,60,162,12,39,1,2,0,0,0,0,2,1,1,0,0,1,0,0,0,0,0,0,1,0,2,0,0,1,0,0,1,0,1,0 -050,01,007,Alabama,Bibb County,6,0,22510,12108,10402,8886,8380,3041,1851,46,40,14,20,24,4,97,107,8972,8474,3084,1906,96,90,33,39,27,8,11813,10207,8635,8214,3023,1837,44,34,14,20,6,1,91,101,8717,8302,3063,1889,90,80,31,37,8,5,295,195,251,166,18,14,2,6,0,0,18,3,6,6,255,172,21,17,6,10,2,2,19,3 -050,01,007,Alabama,Bibb County,6,1,1195,585,610,453,488,107,101,4,3,0,0,1,0,20,18,473,505,118,114,9,6,4,2,2,2,569,590,440,474,106,100,4,0,0,0,1,0,18,16,458,489,116,112,8,2,4,1,2,2,16,20,13,14,1,1,0,3,0,0,0,0,2,2,15,16,2,2,1,4,0,1,0,0 -050,01,007,Alabama,Bibb County,6,2,1323,734,589,591,431,131,137,4,4,2,1,0,1,6,15,596,444,137,149,4,8,3,2,0,1,711,571,574,419,125,133,4,2,2,1,0,1,6,15,579,432,131,145,4,6,3,2,0,1,23,18,17,12,6,4,0,2,0,0,0,0,0,0,17,12,6,4,0,2,0,0,0,0 -050,01,007,Alabama,Bibb County,6,3,1412,741,671,592,542,138,119,2,0,2,1,1,1,6,8,597,550,140,122,5,3,4,3,1,1,731,657,584,532,137,116,2,0,2,1,0,0,6,8,589,540,139,119,5,3,4,3,0,0,10,14,8,10,1,3,0,0,0,0,1,1,0,0,8,10,1,3,0,0,0,0,1,1 -050,01,007,Alabama,Bibb County,6,4,1341,743,598,540,472,190,117,5,0,1,3,3,0,4,6,544,476,194,120,5,3,1,6,3,0,725,587,526,463,189,116,5,0,1,3,0,0,4,5,530,466,193,118,5,2,1,6,0,0,18,11,14,9,1,1,0,0,0,0,3,0,0,1,14,10,1,2,0,1,0,0,3,0 -050,01,007,Alabama,Bibb County,6,5,1466,807,659,498,490,293,158,1,5,2,1,7,0,6,5,503,495,296,161,7,7,2,2,7,1,777,655,474,487,292,158,1,4,2,1,2,0,6,5,479,492,295,161,7,6,2,2,2,1,30,4,24,3,1,0,0,1,0,0,5,0,0,0,24,3,1,0,0,1,0,0,5,0 -050,01,007,Alabama,Bibb County,6,6,1618,977,641,573,509,390,122,2,3,1,0,5,0,6,7,579,516,393,126,3,6,3,1,5,0,937,608,541,476,386,122,2,3,1,0,1,0,6,7,547,483,389,126,3,6,3,1,1,0,40,33,32,33,4,0,0,0,0,0,4,0,0,0,32,33,4,0,0,0,0,0,4,0 -050,01,007,Alabama,Bibb County,6,7,1574,1003,571,629,453,361,112,5,2,0,0,2,2,6,2,634,455,363,114,8,3,2,0,2,2,956,554,585,439,360,111,5,2,0,0,0,0,6,2,590,441,362,113,8,3,2,0,0,0,47,17,44,14,1,1,0,0,0,0,2,2,0,0,44,14,1,1,0,0,0,0,2,2 -050,01,007,Alabama,Bibb County,6,8,1588,919,669,608,537,299,124,2,4,2,0,3,0,5,4,611,541,303,125,3,5,4,2,3,0,885,659,578,528,298,123,2,4,2,0,1,0,4,4,581,532,301,124,2,5,4,2,1,0,34,10,30,9,1,1,0,0,0,0,2,0,1,0,30,9,2,1,1,0,0,0,2,0 -050,01,007,Alabama,Bibb County,6,9,1638,909,729,667,595,233,125,4,5,2,2,2,0,1,2,668,597,233,125,5,7,2,2,2,0,888,717,649,583,233,125,2,5,2,2,1,0,1,2,650,585,233,125,3,7,2,2,1,0,21,12,18,12,0,0,2,0,0,0,1,0,0,0,18,12,0,0,2,0,0,0,1,0 -050,01,007,Alabama,Bibb County,6,10,1694,955,739,694,591,257,131,0,3,0,7,0,0,4,7,698,598,258,134,3,7,1,7,0,0,942,728,681,581,257,130,0,3,0,7,0,0,4,7,685,588,258,133,3,7,1,7,0,0,13,11,13,10,0,1,0,0,0,0,0,0,0,0,13,10,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,6,11,1648,902,746,705,593,189,137,2,6,0,1,0,0,6,9,710,602,191,140,7,12,0,2,0,0,887,736,692,586,187,137,2,6,0,1,0,0,6,6,697,592,189,139,7,10,0,1,0,0,15,10,13,7,2,0,0,0,0,0,0,0,0,3,13,10,2,1,0,2,0,1,0,0 -050,01,007,Alabama,Bibb County,6,12,1488,760,728,590,581,161,139,1,1,0,2,0,0,8,5,598,583,162,142,7,5,1,3,1,0,753,726,585,579,161,139,1,1,0,2,0,0,6,5,591,581,162,142,6,5,0,3,0,0,7,2,5,2,0,0,0,0,0,0,0,0,2,0,7,2,0,0,1,0,1,0,1,0 -050,01,007,Alabama,Bibb County,6,13,1305,662,643,528,537,120,101,7,1,0,1,0,0,7,3,535,539,120,102,12,3,2,2,1,0,655,622,521,516,120,101,7,1,0,1,0,0,7,3,528,518,120,102,12,3,2,2,1,0,7,21,7,21,0,0,0,0,0,0,0,0,0,0,7,21,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,6,14,1119,531,588,452,509,73,72,3,2,1,0,0,0,2,5,454,513,73,73,5,5,1,2,0,1,526,583,447,504,73,72,3,2,1,0,0,0,2,5,449,508,73,73,5,5,1,2,0,1,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,6,15,843,412,431,364,378,41,50,4,1,0,0,0,0,3,2,366,378,42,52,6,2,1,1,0,0,409,430,361,377,41,50,4,1,0,0,0,0,3,2,363,377,42,52,6,2,1,1,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,6,16,583,229,354,200,310,26,40,0,0,1,1,0,0,2,3,201,313,27,40,2,2,1,2,0,0,228,353,199,309,26,40,0,0,1,1,0,0,2,3,200,312,27,40,2,2,1,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,6,17,386,159,227,137,197,20,27,0,0,0,0,0,0,2,3,138,200,21,27,2,3,0,0,0,0,157,225,135,196,20,26,0,0,0,0,0,0,2,3,136,199,21,26,2,3,0,0,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,6,18,289,80,209,65,167,12,39,0,0,0,0,0,0,3,3,67,169,13,40,3,3,1,0,0,0,77,206,63,165,12,38,0,0,0,0,0,0,2,3,65,167,12,39,2,3,0,0,0,0,3,3,2,2,0,1,0,0,0,0,0,0,1,0,2,2,1,1,1,0,1,0,0,0 -050,01,007,Alabama,Bibb County,7,0,22541,12148,10393,8890,8405,3080,1817,44,37,15,23,24,4,95,107,8980,8496,3126,1875,84,87,31,40,27,11,11859,10199,8643,8238,3061,1804,42,32,15,23,6,1,92,101,8731,8325,3105,1857,81,80,30,37,8,8,289,194,247,167,19,13,2,5,0,0,18,3,3,6,249,171,21,18,3,7,1,3,19,3 -050,01,007,Alabama,Bibb County,7,1,1203,595,608,449,474,131,111,2,3,0,0,1,0,12,20,461,491,140,127,4,3,1,5,2,2,583,591,439,461,129,110,2,1,0,0,1,0,12,19,451,477,138,126,4,1,1,4,2,2,12,17,10,13,2,1,0,2,0,0,0,0,0,1,10,14,2,1,0,2,0,1,0,0 -050,01,007,Alabama,Bibb County,7,2,1277,701,576,559,441,127,119,2,3,2,1,0,1,11,11,569,452,136,126,5,3,3,2,0,4,683,561,544,431,124,117,2,1,2,1,0,1,11,10,554,441,133,123,5,1,3,2,0,4,18,15,15,10,3,2,0,2,0,0,0,0,0,1,15,11,3,3,0,2,0,0,0,0 -050,01,007,Alabama,Bibb County,7,3,1368,743,625,594,508,138,105,4,1,2,1,1,1,4,9,598,516,139,109,6,7,3,2,1,1,731,609,586,496,135,102,4,1,2,1,0,0,4,9,590,504,136,106,6,7,3,2,0,0,12,16,8,12,3,3,0,0,0,0,1,1,0,0,8,12,3,3,0,0,0,0,1,1 -050,01,007,Alabama,Bibb County,7,4,1323,729,594,535,482,180,107,4,0,2,2,3,0,5,3,540,485,184,110,5,1,3,2,3,0,711,582,521,472,179,106,4,0,2,2,0,0,5,2,526,474,183,108,5,0,3,2,0,0,18,12,14,10,1,1,0,0,0,0,3,0,0,1,14,11,1,2,0,1,0,0,3,0 -050,01,007,Alabama,Bibb County,7,5,1490,831,659,521,492,296,158,1,4,1,1,6,0,6,4,526,496,299,160,3,5,2,2,7,0,804,651,501,485,294,158,1,3,1,1,1,0,6,4,506,489,297,160,3,4,2,2,2,0,27,8,20,7,2,0,0,1,0,0,5,0,0,0,20,7,2,0,0,1,0,0,5,0 -050,01,007,Alabama,Bibb County,7,6,1604,958,646,546,515,394,121,2,2,1,0,5,0,10,8,555,522,399,125,5,6,4,2,5,1,930,612,523,482,392,120,2,2,1,0,2,0,10,8,532,489,397,124,5,6,4,2,2,1,28,34,23,33,2,1,0,0,0,0,3,0,0,0,23,33,2,1,0,0,0,0,3,0 -050,01,007,Alabama,Bibb County,7,7,1618,1029,589,635,476,383,108,4,2,0,0,3,2,4,1,639,477,386,109,4,2,1,0,3,2,973,575,585,465,380,107,4,2,0,0,0,0,4,1,589,466,383,108,4,2,1,0,0,0,56,14,50,11,3,1,0,0,0,0,3,2,0,0,50,11,3,1,0,0,0,0,3,2 -050,01,007,Alabama,Bibb County,7,8,1530,904,626,592,507,301,110,3,4,1,0,3,0,4,5,595,510,305,113,3,8,2,1,3,0,873,614,565,495,300,110,3,4,1,0,1,0,3,5,567,498,303,113,3,8,2,1,1,0,31,12,27,12,1,0,0,0,0,0,2,0,1,0,28,12,2,0,0,0,0,0,2,0 -050,01,007,Alabama,Bibb County,7,9,1649,925,724,682,584,229,130,6,5,3,1,2,0,3,4,685,588,230,132,8,7,3,1,2,0,897,710,657,571,229,129,4,5,3,1,1,0,3,4,660,575,230,131,6,7,3,1,1,0,28,14,25,13,0,1,2,0,0,0,1,0,0,0,25,13,0,1,2,0,0,0,1,0 -050,01,007,Alabama,Bibb County,7,10,1665,920,745,663,600,255,125,0,3,0,10,0,0,2,7,665,605,255,128,2,9,0,10,0,0,909,737,652,593,255,124,0,3,0,10,0,0,2,7,654,598,255,127,2,9,0,10,0,0,11,8,11,7,0,1,0,0,0,0,0,0,0,0,11,7,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,7,11,1667,906,761,702,600,194,146,1,5,1,3,0,0,8,7,710,606,195,149,6,10,3,5,0,0,890,749,687,590,193,146,1,5,1,3,0,0,8,5,695,595,194,147,6,9,3,4,0,0,16,12,15,10,1,0,0,0,0,0,0,0,0,2,15,11,1,2,0,1,0,1,0,0 -050,01,007,Alabama,Bibb County,7,12,1505,762,743,603,602,153,129,1,1,0,2,0,0,5,9,607,609,155,133,4,6,1,5,1,0,752,740,595,600,152,129,1,1,0,2,0,0,4,8,599,607,153,132,4,6,0,4,0,0,10,3,8,2,1,0,0,0,0,0,0,0,1,1,8,2,2,1,0,0,1,1,1,0 -050,01,007,Alabama,Bibb County,7,13,1288,659,629,519,517,125,108,5,1,0,1,0,0,10,2,529,519,127,108,13,2,1,2,0,0,654,619,515,507,125,108,5,1,0,1,0,0,9,2,524,509,127,108,12,2,1,2,0,0,5,10,4,10,0,0,0,0,0,0,0,0,1,0,5,10,0,0,1,0,0,0,0,0 -050,01,007,Alabama,Bibb County,7,14,1173,573,600,487,517,79,78,5,1,1,0,0,0,1,4,488,521,79,79,6,4,1,0,0,0,565,589,479,506,79,78,5,1,1,0,0,0,1,4,480,510,79,79,6,4,1,0,0,0,8,11,8,11,0,0,0,0,0,0,0,0,0,0,8,11,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,7,15,860,412,448,368,393,38,50,3,2,0,0,0,0,3,3,371,395,39,51,5,5,0,0,0,0,409,447,365,392,38,50,3,2,0,0,0,0,3,3,368,394,39,51,5,5,0,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,7,16,632,256,376,225,327,28,44,1,0,0,1,0,0,2,4,227,329,28,46,3,3,0,1,0,1,254,375,223,326,28,44,1,0,0,1,0,0,2,4,225,328,28,46,3,3,0,1,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,7,17,358,148,210,128,178,17,30,0,0,1,0,0,0,2,2,130,180,17,30,1,2,2,0,0,0,146,209,126,178,17,29,0,0,1,0,0,0,2,2,128,180,17,29,1,2,2,0,0,0,2,1,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,7,18,331,97,234,82,192,12,38,0,0,0,0,0,0,3,4,85,195,13,40,1,4,1,0,0,0,95,229,80,188,12,37,0,0,0,0,0,0,3,4,83,191,13,39,1,4,1,0,0,0,2,5,2,4,0,1,0,0,0,0,0,0,0,0,2,4,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,8,0,22553,12112,10441,8836,8397,3090,1861,46,41,16,24,24,4,100,114,8926,8489,3140,1922,95,90,37,46,26,12,11808,10217,8583,8206,3067,1847,42,32,16,24,6,1,94,107,8667,8292,3113,1902,86,79,37,45,8,9,304,224,253,191,23,14,4,9,0,0,18,3,6,7,259,197,27,20,9,11,0,1,18,3 -050,01,007,Alabama,Bibb County,8,1,1247,618,629,464,485,133,117,2,5,0,0,0,0,19,22,480,504,147,134,9,8,3,3,0,2,587,607,443,470,128,116,0,0,0,0,0,0,16,21,456,488,140,132,5,3,3,3,0,2,31,22,21,15,5,1,2,5,0,0,0,0,3,1,24,16,7,2,4,5,0,0,0,0 -050,01,007,Alabama,Bibb County,8,2,1246,663,583,524,445,123,125,4,4,0,0,1,1,11,8,533,453,130,130,6,7,4,0,1,1,652,563,514,431,122,123,4,1,0,0,1,1,11,7,523,438,129,127,6,4,4,0,1,1,11,20,10,14,1,2,0,3,0,0,0,0,0,1,10,15,1,3,0,3,0,0,0,0 -050,01,007,Alabama,Bibb County,8,3,1295,709,586,569,467,128,103,3,1,3,2,1,1,5,12,574,476,131,111,5,5,4,3,1,3,699,570,563,456,125,99,3,1,3,2,0,0,5,12,568,465,128,107,5,5,4,3,0,2,10,16,6,11,3,4,0,0,0,0,1,1,0,0,6,11,3,4,0,0,0,0,1,1 -050,01,007,Alabama,Bibb County,8,4,1334,748,586,552,470,183,110,4,1,1,2,2,0,6,3,558,472,185,112,5,4,4,2,2,0,727,572,535,460,181,107,4,1,1,2,0,0,6,2,541,461,183,108,5,3,4,2,0,0,21,14,17,10,2,3,0,0,0,0,2,0,0,1,17,11,2,4,0,1,0,0,2,0 -050,01,007,Alabama,Bibb County,8,5,1463,810,653,504,481,291,157,2,4,3,2,6,0,4,9,508,487,295,163,3,5,3,6,6,1,785,642,487,471,289,157,2,4,3,2,0,0,4,8,491,476,293,162,3,5,3,6,0,1,25,11,17,10,2,0,0,0,0,0,6,0,0,1,17,11,2,1,0,0,0,0,6,0 -050,01,007,Alabama,Bibb County,8,6,1670,981,689,552,541,411,140,2,2,2,0,6,0,8,6,560,545,416,143,4,4,3,3,6,1,951,648,527,501,409,140,2,1,2,0,3,0,8,6,535,505,414,143,4,3,3,3,3,1,30,41,25,40,2,0,0,1,0,0,3,0,0,0,25,40,2,0,0,1,0,0,3,0 -050,01,007,Alabama,Bibb County,8,7,1583,984,599,581,487,392,105,3,3,0,0,3,2,5,2,586,489,394,106,5,3,1,1,3,2,933,584,538,474,387,105,3,3,0,0,0,0,5,2,543,476,389,106,5,3,1,1,0,0,51,15,43,13,5,0,0,0,0,0,3,2,0,0,43,13,5,0,0,0,0,0,3,2 -050,01,007,Alabama,Bibb County,8,8,1527,929,598,623,484,296,106,3,2,1,0,2,0,4,6,626,490,300,108,4,5,2,1,2,0,894,585,591,471,296,106,3,2,1,0,0,0,3,6,593,477,299,108,3,5,2,1,0,0,35,13,32,13,0,0,0,0,0,0,2,0,1,0,33,13,1,0,1,0,0,0,2,0 -050,01,007,Alabama,Bibb County,8,9,1615,891,724,651,576,231,139,3,5,2,1,2,0,2,3,653,579,231,141,5,5,2,1,2,1,867,712,628,565,230,138,3,5,2,1,2,0,2,3,630,568,230,140,5,5,2,1,2,1,24,12,23,11,1,1,0,0,0,0,0,0,0,0,23,11,1,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,8,10,1648,905,743,660,613,238,113,4,4,1,6,1,0,1,7,661,619,238,116,4,10,2,7,1,0,891,733,649,603,238,113,2,4,1,6,0,0,1,7,650,609,238,116,2,10,2,7,0,0,14,10,11,10,0,0,2,0,0,0,1,0,0,0,11,10,0,0,2,0,0,0,1,0 -050,01,007,Alabama,Bibb County,8,11,1718,939,779,724,600,205,163,1,3,1,7,0,0,8,6,730,602,208,167,8,8,2,8,0,0,922,769,708,592,204,162,1,3,1,7,0,0,8,5,714,594,207,165,8,7,2,8,0,0,17,10,16,8,1,1,0,0,0,0,0,0,0,1,16,8,1,2,0,1,0,0,0,0 -050,01,007,Alabama,Bibb County,8,12,1476,771,705,610,581,156,110,1,3,0,2,0,0,4,9,614,587,157,116,4,8,0,3,1,0,758,701,599,579,155,110,1,3,0,2,0,0,3,7,602,583,155,115,3,8,0,2,1,0,13,4,11,2,1,0,0,0,0,0,0,0,1,2,12,4,2,1,1,0,0,1,0,0 -050,01,007,Alabama,Bibb County,8,13,1293,637,656,501,533,121,117,4,1,0,1,0,0,11,4,511,537,123,117,14,4,1,2,0,0,634,641,499,518,121,117,4,1,0,1,0,0,10,4,508,522,123,117,13,4,1,2,0,0,3,15,2,15,0,0,0,0,0,0,0,0,1,0,3,15,0,0,1,0,0,0,0,0 -050,01,007,Alabama,Bibb County,8,14,1203,582,621,493,528,81,89,6,1,0,0,0,0,2,3,495,531,81,90,8,3,1,0,0,0,573,610,484,517,81,89,6,1,0,0,0,0,2,3,486,520,81,90,8,3,1,0,0,0,9,11,9,11,0,0,0,0,0,0,0,0,0,0,9,11,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,8,15,859,410,449,368,392,37,51,1,2,1,0,0,0,3,4,370,395,39,52,4,5,1,1,0,0,406,447,364,390,37,51,1,2,1,0,0,0,3,4,366,393,39,52,4,5,1,1,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,8,16,645,274,371,240,320,29,46,3,0,0,1,0,0,2,4,242,323,29,46,5,2,0,3,0,1,272,369,238,318,29,46,3,0,0,1,0,0,2,4,240,321,29,46,5,2,0,3,0,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,8,17,383,147,236,123,204,21,31,0,0,1,0,0,0,2,1,125,205,21,31,0,0,3,1,0,0,146,235,122,204,21,30,0,0,1,0,0,0,2,1,124,205,21,30,0,0,3,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,8,18,348,114,234,97,190,14,39,0,0,0,0,0,0,3,5,100,195,15,39,2,4,1,1,1,0,111,229,94,186,14,38,0,0,0,0,0,0,3,5,97,191,15,38,2,4,1,1,1,0,3,5,3,4,0,1,0,0,0,0,0,0,0,0,3,4,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,9,0,22590,12074,10516,8838,8481,3040,1852,45,39,20,24,24,4,107,116,8940,8581,3088,1911,95,92,36,46,25,11,11755,10281,8572,8274,3017,1841,41,31,18,24,6,1,101,110,8668,8370,3063,1896,88,80,33,44,7,6,319,235,266,207,23,11,4,8,2,0,18,3,6,6,272,211,25,15,7,12,3,2,18,5 -050,01,007,Alabama,Bibb County,9,1,1290,644,646,478,497,145,122,2,5,1,0,0,0,18,22,496,516,156,137,6,11,3,4,1,1,612,617,455,475,142,121,0,0,0,0,0,0,15,21,470,493,152,136,3,5,1,4,1,1,32,29,23,22,3,1,2,5,1,0,0,0,3,1,26,23,4,1,3,6,2,0,0,0 -050,01,007,Alabama,Bibb County,9,2,1260,651,609,511,478,118,115,4,2,0,0,1,1,17,13,528,488,128,124,7,5,4,3,1,2,636,595,499,466,115,115,4,1,0,0,1,1,17,12,516,476,125,123,7,3,4,3,1,2,15,14,12,12,3,0,0,1,0,0,0,0,0,1,12,12,3,1,0,2,0,0,0,0 -050,01,007,Alabama,Bibb County,9,3,1287,697,590,570,465,115,110,3,2,3,2,0,0,6,11,576,475,118,116,5,6,5,4,0,0,683,573,559,450,112,109,3,1,3,2,0,0,6,11,565,460,115,115,5,5,5,4,0,0,14,17,11,15,3,1,0,1,0,0,0,0,0,0,11,15,3,1,0,1,0,0,0,0 -050,01,007,Alabama,Bibb County,9,4,1307,743,564,548,449,182,109,3,0,1,0,3,1,6,5,553,454,185,112,5,2,3,1,3,1,726,549,536,440,180,105,3,0,1,0,0,0,6,4,541,444,183,107,5,1,3,1,0,0,17,15,12,9,2,4,0,0,0,0,3,1,0,1,12,10,2,5,0,1,0,0,3,1 -050,01,007,Alabama,Bibb County,9,5,1402,797,605,491,459,290,136,2,2,3,2,6,0,5,6,496,463,293,139,4,5,3,3,6,1,772,589,474,443,288,136,2,2,3,2,0,0,5,6,479,447,291,139,4,5,3,3,0,1,25,16,17,16,2,0,0,0,0,0,6,0,0,0,17,16,2,0,0,0,0,0,6,0 -050,01,007,Alabama,Bibb County,9,6,1728,1006,722,598,556,389,154,2,4,4,1,5,0,8,7,606,562,393,157,5,9,5,2,5,0,972,691,568,527,387,153,2,3,4,1,3,0,8,7,576,533,391,156,5,8,5,2,3,0,34,31,30,29,2,1,0,1,0,0,2,0,0,0,30,29,2,1,0,1,0,0,2,0 -050,01,007,Alabama,Bibb County,9,7,1604,990,614,590,498,390,107,3,2,0,0,3,2,4,5,594,503,393,110,4,4,0,1,3,2,937,585,543,471,387,107,3,2,0,0,0,0,4,5,547,476,390,110,4,4,0,1,0,0,53,29,47,27,3,0,0,0,0,0,3,2,0,0,47,27,3,0,0,0,0,0,3,2 -050,01,007,Alabama,Bibb County,9,8,1509,892,617,588,500,292,110,3,2,1,0,3,0,5,5,592,504,295,113,5,4,2,1,3,0,855,606,557,489,290,110,3,2,1,0,0,0,4,5,560,493,292,113,5,4,2,1,0,0,37,11,31,11,2,0,0,0,0,0,3,0,1,0,32,11,3,0,0,0,0,0,3,0 -050,01,007,Alabama,Bibb County,9,9,1529,861,668,629,547,225,114,2,5,1,0,2,0,2,2,631,549,226,116,3,6,1,0,2,0,835,654,604,534,224,113,2,5,1,0,2,0,2,2,606,536,225,115,3,6,1,0,2,0,26,14,25,13,1,1,0,0,0,0,0,0,0,0,25,13,1,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,9,10,1656,908,748,663,607,235,122,5,6,2,7,1,0,2,6,665,612,236,125,6,10,2,7,1,0,890,737,648,596,235,122,3,6,2,7,0,0,2,6,650,601,236,125,4,10,2,7,0,0,18,11,15,11,0,0,2,0,0,0,1,0,0,0,15,11,0,0,2,0,0,0,1,0 -050,01,007,Alabama,Bibb County,9,11,1711,932,779,722,606,204,158,1,2,1,8,0,0,4,5,726,610,204,158,4,5,2,10,0,1,922,767,713,596,203,157,1,2,1,8,0,0,4,4,717,600,203,157,4,5,2,9,0,0,10,12,9,10,1,1,0,0,0,0,0,0,0,1,9,10,1,1,0,0,0,1,0,1 -050,01,007,Alabama,Bibb County,9,12,1470,757,713,604,582,146,117,1,4,0,1,0,0,6,9,608,590,149,121,6,7,1,5,0,2,744,710,592,581,145,117,1,4,0,1,0,0,6,7,596,587,148,119,6,6,1,4,0,1,13,3,12,1,1,0,0,0,0,0,0,0,0,2,12,3,1,2,0,1,0,1,0,1 -050,01,007,Alabama,Bibb County,9,13,1321,642,679,514,556,115,115,2,1,0,2,0,0,11,5,524,561,117,117,12,4,0,2,0,0,638,670,512,547,115,115,2,1,0,2,0,0,9,5,520,552,117,117,10,4,0,2,0,0,4,9,2,9,0,0,0,0,0,0,0,0,2,0,4,9,0,0,2,0,0,0,0,0 -050,01,007,Alabama,Bibb County,9,14,1233,604,629,506,538,88,87,7,1,0,0,0,0,3,3,509,541,89,88,9,3,0,0,0,0,594,611,496,520,88,87,7,1,0,0,0,0,3,3,499,523,89,88,9,3,0,0,0,0,10,18,10,18,0,0,0,0,0,0,0,0,0,0,10,18,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,9,15,859,396,463,351,409,39,51,2,1,2,0,0,0,2,2,353,411,39,51,4,2,2,1,0,0,392,462,348,408,39,51,2,1,1,0,0,0,2,2,350,410,39,51,4,2,1,1,0,0,4,1,3,1,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,9,16,663,285,378,246,326,34,48,3,0,0,1,0,0,2,3,248,329,34,48,5,3,0,1,0,0,282,375,243,323,34,48,3,0,0,1,0,0,2,3,245,326,34,48,5,3,0,1,0,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,9,17,403,151,252,128,219,19,31,0,0,1,0,0,0,3,2,131,220,19,32,3,1,1,1,0,1,150,251,127,219,19,30,0,0,1,0,0,0,3,2,130,220,19,31,3,1,1,1,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,9,18,358,118,240,101,189,14,46,0,0,0,0,0,0,3,5,104,193,14,47,2,5,2,0,0,0,115,239,98,189,14,45,0,0,0,0,0,0,3,5,101,193,14,46,2,5,2,0,0,0,3,1,3,0,0,1,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,10,0,22532,12047,10485,8836,8436,2996,1853,54,41,21,24,23,4,117,127,8939,8549,3055,1921,106,95,46,47,30,11,11700,10249,8550,8228,2970,1840,47,35,18,24,5,1,110,121,8647,8336,3024,1903,95,86,43,46,11,7,347,236,286,208,26,13,7,6,3,0,18,3,7,6,292,213,31,18,11,9,3,1,19,4 -050,01,007,Alabama,Bibb County,10,1,1328,686,642,515,491,140,124,5,3,2,0,0,0,24,24,537,514,157,142,10,5,8,5,2,0,640,623,481,475,138,124,1,1,0,0,0,0,20,23,500,497,152,141,4,3,6,5,1,0,46,19,34,16,2,0,4,2,2,0,0,0,4,1,37,17,5,1,6,2,2,0,1,0 -050,01,007,Alabama,Bibb County,10,2,1183,599,584,465,455,113,109,5,4,0,0,1,0,15,16,479,471,123,121,9,8,2,3,3,0,584,563,454,441,110,106,4,1,0,0,1,0,15,15,468,456,120,118,8,4,2,3,3,0,15,21,11,14,3,3,1,3,0,0,0,0,0,1,11,15,3,3,1,4,0,0,0,0 -050,01,007,Alabama,Bibb County,10,3,1311,710,601,572,461,123,119,3,3,2,2,0,1,10,15,581,475,129,130,6,9,4,2,0,2,690,583,558,445,117,118,3,2,2,2,0,1,10,15,567,459,123,129,6,8,4,2,0,2,20,18,14,16,6,1,0,1,0,0,0,0,0,0,14,16,6,1,0,1,0,0,0,0 -050,01,007,Alabama,Bibb County,10,4,1285,709,576,539,458,156,108,5,0,2,0,1,1,6,9,544,467,160,111,6,5,3,2,2,2,695,563,529,448,153,107,5,0,2,0,0,0,6,8,534,456,157,109,6,4,3,2,1,1,14,13,10,10,3,1,0,0,0,0,1,1,0,1,10,11,3,2,0,1,0,0,1,1 -050,01,007,Alabama,Bibb County,10,5,1389,826,563,521,440,291,115,2,2,2,2,6,0,4,4,524,442,292,117,5,3,3,4,6,1,803,547,506,426,289,113,2,2,2,2,0,0,4,4,509,428,290,115,5,3,3,4,0,1,23,16,15,14,2,2,0,0,0,0,6,0,0,0,15,14,2,2,0,0,0,0,6,0 -050,01,007,Alabama,Bibb County,10,6,1730,997,733,590,559,388,161,2,4,3,1,5,0,9,8,597,564,392,165,7,7,5,3,6,2,960,705,558,532,386,160,2,4,3,1,2,0,9,8,565,537,390,164,7,7,5,3,3,2,37,28,32,27,2,1,0,0,0,0,3,0,0,0,32,27,2,1,0,0,0,0,3,0 -050,01,007,Alabama,Bibb County,10,7,1615,986,629,595,501,378,121,1,2,2,0,5,2,5,3,599,504,381,122,3,3,3,1,5,2,932,591,548,466,375,120,1,2,2,0,1,0,5,3,552,469,378,121,3,3,3,1,1,0,54,38,47,35,3,1,0,0,0,0,4,2,0,0,47,35,3,1,0,0,0,0,4,2 -050,01,007,Alabama,Bibb County,10,8,1516,898,618,588,494,297,117,5,2,0,0,2,0,6,5,593,499,300,119,7,6,2,0,2,0,867,608,561,484,295,117,5,2,0,0,0,0,6,5,566,489,298,119,7,6,2,0,0,0,31,10,27,10,2,0,0,0,0,0,2,0,0,0,27,10,2,0,0,0,0,0,2,0 -050,01,007,Alabama,Bibb County,10,9,1464,805,659,573,541,222,109,5,5,2,0,1,0,2,4,575,545,223,110,6,7,3,1,1,0,769,645,540,528,221,108,5,5,2,0,0,0,1,4,541,532,221,109,5,7,3,1,0,0,36,14,33,13,1,1,0,0,0,0,1,0,1,0,34,13,2,1,1,0,0,0,1,0 -050,01,007,Alabama,Bibb County,10,10,1654,920,734,668,597,242,124,5,7,2,4,2,0,1,2,669,599,243,125,5,8,2,4,2,0,897,725,648,588,242,124,3,7,2,4,1,0,1,2,649,590,243,125,3,8,2,4,1,0,23,9,20,9,0,0,2,0,0,0,1,0,0,0,20,9,0,0,2,0,0,0,1,0 -050,01,007,Alabama,Bibb County,10,11,1630,898,732,714,576,178,138,0,2,1,11,0,0,5,5,717,581,181,140,3,4,2,12,0,0,890,723,707,568,177,137,0,2,1,11,0,0,5,5,710,573,180,139,3,4,2,12,0,0,8,9,7,8,1,1,0,0,0,0,0,0,0,0,7,8,1,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,10,12,1509,758,751,593,607,158,128,2,4,0,1,0,0,5,11,597,615,160,134,5,10,1,4,0,1,746,744,582,603,157,128,2,4,0,1,0,0,5,8,586,609,159,131,5,9,1,3,0,0,12,7,11,4,1,0,0,0,0,0,0,0,0,3,11,6,1,3,0,1,0,1,0,1 -050,01,007,Alabama,Bibb County,10,13,1295,643,652,521,541,111,103,1,1,0,1,0,0,10,6,531,546,112,103,9,6,2,2,0,1,637,647,517,536,111,103,1,1,0,1,0,0,8,6,525,541,111,103,8,6,2,2,0,1,6,5,4,5,0,0,0,0,0,0,0,0,2,0,6,5,1,0,1,0,0,0,0,0 -050,01,007,Alabama,Bibb County,10,14,1199,592,607,496,516,85,88,7,0,0,1,0,0,4,2,499,518,86,88,11,2,0,1,0,0,584,585,488,494,85,88,7,0,0,1,0,0,4,2,491,496,86,88,11,2,0,1,0,0,8,22,8,22,0,0,0,0,0,0,0,0,0,0,8,22,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,10,15,939,427,512,368,444,52,63,3,2,2,0,0,0,2,3,370,446,52,64,4,4,3,1,0,0,422,510,364,442,52,63,3,2,1,0,0,0,2,3,366,444,52,64,4,4,2,1,0,0,5,2,4,2,0,0,0,0,1,0,0,0,0,0,4,2,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,10,16,705,319,386,285,338,28,47,3,0,0,0,0,0,3,1,288,339,29,48,5,0,0,0,0,0,314,384,280,336,28,47,3,0,0,0,0,0,3,1,283,337,29,48,5,0,0,0,0,0,5,2,5,2,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,10,17,402,152,250,130,214,18,31,0,0,1,1,0,0,3,4,133,217,18,33,2,3,2,1,1,0,152,248,130,213,18,30,0,0,1,1,0,0,3,4,133,216,18,32,2,3,2,1,1,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,10,18,378,122,256,103,203,16,48,0,0,0,0,0,0,3,5,106,207,17,49,3,5,1,1,0,0,118,255,99,203,16,47,0,0,0,0,0,0,3,5,102,207,17,48,3,5,1,1,0,0,4,1,4,0,0,1,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,11,0,22300,11884,10416,8738,8397,2928,1807,51,47,22,25,23,4,122,136,8848,8520,2997,1888,100,105,40,42,31,7,11541,10170,8457,8179,2901,1795,45,41,18,24,5,1,115,130,8562,8296,2965,1873,90,94,36,41,12,4,343,246,281,218,27,12,6,6,4,1,18,3,7,6,286,224,32,15,10,11,4,1,19,3 -050,01,007,Alabama,Bibb County,11,1,1294,645,649,496,493,120,121,5,7,3,1,0,0,21,27,515,516,137,144,9,13,5,6,1,0,603,624,465,471,118,121,1,5,0,0,0,0,19,27,482,494,133,144,5,11,2,5,1,0,42,25,31,22,2,0,4,2,3,1,0,0,2,0,33,22,4,0,4,2,3,1,0,0 -050,01,007,Alabama,Bibb County,11,2,1168,607,561,479,443,102,96,4,3,0,0,1,0,21,19,499,461,118,111,11,6,2,2,1,1,585,541,462,430,99,93,4,1,0,0,1,0,19,17,480,446,114,107,9,3,2,2,1,1,22,20,17,13,3,3,0,2,0,0,0,0,2,2,19,15,4,4,2,3,0,0,0,0 -050,01,007,Alabama,Bibb County,11,3,1319,708,611,560,454,131,136,2,4,2,1,0,1,13,15,571,467,139,147,3,9,7,2,1,1,688,592,546,438,125,135,2,2,2,1,0,1,13,15,557,451,133,146,3,7,7,2,1,1,20,19,14,16,6,1,0,2,0,0,0,0,0,0,14,16,6,1,0,2,0,0,0,0 -050,01,007,Alabama,Bibb County,11,4,1265,681,584,522,468,147,102,5,0,2,1,1,1,4,12,526,479,150,111,5,5,3,4,1,1,670,570,515,457,144,101,5,0,2,1,0,0,4,11,519,467,147,109,5,4,3,4,0,0,11,14,7,11,3,1,0,0,0,0,1,1,0,1,7,12,3,2,0,1,0,0,1,1 -050,01,007,Alabama,Bibb County,11,5,1309,771,538,482,432,276,99,2,1,2,2,3,0,6,4,488,436,280,101,4,3,3,2,3,0,753,523,469,418,274,98,2,1,2,2,0,0,6,4,475,422,278,100,4,3,3,2,0,0,18,15,13,14,2,1,0,0,0,0,3,0,0,0,13,14,2,1,0,0,0,0,3,0 -050,01,007,Alabama,Bibb County,11,6,1725,997,728,597,556,381,159,2,6,3,1,7,0,7,6,602,561,385,162,7,9,3,1,7,1,963,700,570,529,379,158,2,6,3,1,2,0,7,6,575,534,383,161,7,9,3,1,2,1,34,28,27,27,2,1,0,0,0,0,5,0,0,0,27,27,2,1,0,0,0,0,5,0 -050,01,007,Alabama,Bibb County,11,7,1597,957,640,565,516,378,117,2,2,2,0,5,0,5,5,570,520,380,120,3,4,3,1,6,0,915,599,530,475,375,117,2,2,2,0,1,0,5,5,535,479,377,120,3,4,3,1,2,0,42,41,35,41,3,0,0,0,0,0,4,0,0,0,35,41,3,0,0,0,0,0,4,0 -050,01,007,Alabama,Bibb County,11,8,1511,914,597,602,466,299,124,5,3,0,0,2,2,6,2,607,468,303,126,7,3,1,0,2,2,872,586,564,458,297,123,5,3,0,0,0,0,6,2,569,460,301,125,7,3,1,0,0,0,42,11,38,8,2,1,0,0,0,0,2,2,0,0,38,8,2,1,0,0,0,0,2,2 -050,01,007,Alabama,Bibb County,11,9,1441,793,648,562,546,219,92,5,5,2,0,2,0,3,5,565,551,220,93,7,7,2,2,2,0,754,635,527,534,218,91,5,5,2,0,0,0,2,5,529,539,218,92,7,7,2,2,0,0,39,13,35,12,1,1,0,0,0,0,2,0,1,0,36,12,2,1,0,0,0,0,2,0 -050,01,007,Alabama,Bibb County,11,10,1588,887,701,644,567,235,123,3,5,2,3,2,0,1,3,645,570,236,125,3,6,2,3,2,0,867,696,627,562,235,123,1,5,2,3,1,0,1,3,628,565,236,125,1,6,2,3,1,0,20,5,17,5,0,0,2,0,0,0,1,0,0,0,17,5,0,0,2,0,0,0,1,0 -050,01,007,Alabama,Bibb County,11,11,1570,832,738,660,599,167,120,0,3,1,11,0,0,4,5,664,604,167,121,3,6,2,11,0,1,823,727,651,589,167,119,0,3,1,11,0,0,4,5,655,594,167,120,3,6,2,11,0,1,9,11,9,10,0,1,0,0,0,0,0,0,0,0,9,10,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,11,12,1523,794,729,619,576,169,135,1,5,0,2,0,0,5,11,624,587,170,138,4,15,1,2,0,0,781,721,608,571,167,135,1,5,0,2,0,0,5,8,613,579,168,137,4,12,1,2,0,0,13,8,11,5,2,0,0,0,0,0,0,0,0,3,11,8,2,1,0,3,0,0,0,0 -050,01,007,Alabama,Bibb County,11,13,1339,665,674,553,559,103,108,1,1,0,1,0,0,8,5,559,562,105,111,7,3,2,3,3,0,659,671,549,556,103,108,1,1,0,1,0,0,6,5,555,559,104,111,5,3,2,3,2,0,6,3,4,3,0,0,0,0,0,0,0,0,2,0,4,3,1,0,2,0,0,0,1,0 -050,01,007,Alabama,Bibb County,11,14,1180,576,604,474,507,88,92,7,0,0,1,0,0,7,4,480,511,90,93,12,3,1,1,0,0,567,581,466,484,87,92,7,0,0,1,0,0,7,4,472,488,89,93,12,3,1,1,0,0,9,23,8,23,1,0,0,0,0,0,0,0,0,0,8,23,1,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,11,15,959,438,521,376,455,55,62,3,1,2,0,0,0,2,3,378,458,55,62,5,4,2,0,0,0,432,516,371,450,55,62,3,1,1,0,0,0,2,3,373,453,55,62,5,4,1,0,0,0,6,5,5,5,0,0,0,0,1,0,0,0,0,0,5,5,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,11,16,711,322,389,290,343,25,44,4,1,0,0,0,0,3,1,292,343,26,45,6,2,0,0,1,0,318,387,286,341,25,44,4,1,0,0,0,0,3,1,288,341,26,45,6,2,0,0,1,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,11,17,424,174,250,154,213,17,33,0,0,1,1,0,0,2,3,156,216,18,33,2,2,1,2,0,0,172,249,152,212,17,33,0,0,1,1,0,0,2,3,154,215,18,33,2,2,1,2,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,11,18,377,123,254,103,204,16,44,0,0,0,0,0,0,4,6,107,210,18,45,2,5,0,0,1,0,119,252,99,204,16,42,0,0,0,0,0,0,4,6,103,210,18,43,2,5,0,0,1,0,4,2,4,0,0,2,0,0,0,0,0,0,0,0,4,0,0,2,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,12,0,22313,11878,10435,8708,8378,2936,1822,54,48,25,27,23,4,132,156,8816,8515,3016,1912,108,105,54,54,27,12,11526,10168,8423,8148,2905,1807,48,41,21,25,5,1,124,146,8526,8275,2979,1893,100,92,47,50,9,9,352,267,285,230,31,15,6,7,4,2,18,3,8,10,290,240,37,19,8,13,7,4,18,3 -050,01,007,Alabama,Bibb County,12,1,1256,612,644,468,483,112,120,6,2,4,2,0,0,22,37,486,515,130,146,11,9,8,9,1,2,572,621,439,466,111,120,2,0,0,0,0,0,20,35,456,496,127,146,6,6,4,6,1,2,40,23,29,17,1,0,4,2,4,2,0,0,2,2,30,19,3,0,5,3,4,3,0,0 -050,01,007,Alabama,Bibb County,12,2,1193,630,563,481,435,118,100,3,4,0,0,1,0,27,24,505,457,139,116,10,12,4,1,2,2,605,540,463,421,113,96,3,2,0,0,1,0,25,21,486,440,133,111,9,9,3,0,2,2,25,23,18,14,5,4,0,2,0,0,0,0,2,3,19,17,6,5,1,3,1,1,0,0 -050,01,007,Alabama,Bibb County,12,3,1263,665,598,526,443,119,132,2,3,3,3,0,1,15,16,536,457,130,142,7,7,7,7,0,2,643,580,511,429,113,131,2,1,3,3,0,1,14,15,520,442,123,140,7,4,7,7,0,2,22,18,15,14,6,1,0,2,0,0,0,0,1,1,16,15,7,2,0,3,0,0,0,0 -050,01,007,Alabama,Bibb County,12,4,1276,698,578,533,465,153,98,4,1,2,1,1,1,5,12,538,477,156,106,5,4,3,2,1,2,684,560,526,450,147,97,4,1,2,1,0,0,5,11,531,461,150,104,5,3,3,2,0,1,14,18,7,15,6,1,0,0,0,0,1,1,0,1,7,16,6,2,0,1,0,0,1,1 -050,01,007,Alabama,Bibb County,12,5,1333,772,561,483,445,272,110,4,1,3,1,3,0,7,4,488,449,277,113,5,2,5,2,4,0,753,544,468,429,271,109,4,1,3,1,0,0,7,4,473,433,276,112,5,2,5,2,1,0,19,17,15,16,1,1,0,0,0,0,3,0,0,0,15,16,1,1,0,0,0,0,3,0 -050,01,007,Alabama,Bibb County,12,6,1706,1011,695,621,539,373,143,2,8,2,1,6,0,7,4,627,543,378,146,4,8,3,2,6,0,976,658,594,505,370,141,2,7,2,1,1,0,7,4,600,509,375,144,4,7,3,2,1,0,35,37,27,34,3,2,0,1,0,0,5,0,0,0,27,34,3,2,0,1,0,0,5,0 -050,01,007,Alabama,Bibb County,12,7,1604,948,656,548,521,384,124,3,2,3,0,5,0,5,9,552,529,387,128,4,4,4,3,6,1,915,615,519,481,383,123,3,2,3,0,2,0,5,9,523,489,386,127,4,4,4,3,3,1,33,41,29,40,1,1,0,0,0,0,3,0,0,0,29,40,1,1,0,0,0,0,3,0 -050,01,007,Alabama,Bibb County,12,8,1525,909,616,593,483,303,122,5,4,0,1,3,2,5,4,597,486,306,124,7,5,3,3,3,2,860,604,551,474,299,121,5,4,0,1,0,0,5,4,555,477,302,123,7,5,3,3,0,0,49,12,42,9,4,1,0,0,0,0,3,2,0,0,42,9,4,1,0,0,0,0,3,2 -050,01,007,Alabama,Bibb County,12,9,1410,790,620,565,512,214,98,5,5,2,0,2,0,2,5,567,515,215,101,5,8,3,0,2,1,759,608,538,500,213,98,5,5,2,0,0,0,1,5,539,503,214,101,5,8,2,0,0,1,31,12,27,12,1,0,0,0,0,0,2,0,1,0,28,12,1,0,0,0,1,0,2,0 -050,01,007,Alabama,Bibb County,12,10,1622,907,715,654,577,242,129,4,5,3,1,2,0,2,3,656,579,243,131,6,6,4,2,2,0,876,706,626,569,242,128,2,5,3,1,1,0,2,3,628,571,243,130,4,6,4,2,1,0,31,9,28,8,0,1,2,0,0,0,1,0,0,0,28,8,0,1,2,0,0,0,1,0 -050,01,007,Alabama,Bibb County,12,11,1526,804,722,644,591,158,113,0,3,0,10,0,0,2,5,646,596,158,114,2,8,1,10,0,0,796,712,636,582,158,112,0,3,0,10,0,0,2,5,638,587,158,113,2,8,1,10,0,0,8,10,8,9,0,1,0,0,0,0,0,0,0,0,8,9,0,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,12,12,1513,793,720,618,569,166,136,1,5,1,3,0,0,7,7,625,576,167,138,6,8,2,6,0,0,782,710,608,561,165,136,1,5,1,3,0,0,7,5,615,566,166,137,6,7,2,6,0,0,11,10,10,8,1,0,0,0,0,0,0,0,0,2,10,10,1,1,0,1,0,0,0,0 -050,01,007,Alabama,Bibb County,12,13,1382,680,702,560,577,114,113,1,1,0,2,0,0,5,9,563,585,117,116,4,6,1,4,0,0,671,698,553,574,113,113,1,1,0,2,0,0,4,8,555,581,115,116,4,5,1,4,0,0,9,4,7,3,1,0,0,0,0,0,0,0,1,1,8,4,2,0,0,1,0,0,0,0 -050,01,007,Alabama,Bibb County,12,14,1158,565,593,464,492,86,97,5,1,0,1,0,0,10,2,471,494,89,97,12,3,3,1,0,0,558,576,459,475,85,97,5,1,0,1,0,0,9,2,466,477,87,97,12,3,2,1,0,0,7,17,5,17,1,0,0,0,0,0,0,0,1,0,5,17,2,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,12,15,1022,475,547,404,473,64,69,5,2,1,0,0,0,1,3,404,475,65,70,6,5,1,0,0,0,467,536,396,462,64,69,5,2,1,0,0,0,1,3,396,464,65,70,6,5,1,0,0,0,8,11,8,11,0,0,0,0,0,0,0,0,0,0,8,11,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,12,16,691,312,379,280,334,26,41,3,1,0,0,0,0,3,3,283,336,26,43,6,3,0,0,0,0,308,377,276,332,26,41,3,1,0,0,0,0,3,3,279,334,26,43,6,3,0,0,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,12,17,450,178,272,158,232,17,36,1,0,0,1,0,0,2,3,160,235,17,38,3,2,0,1,0,0,176,271,156,231,17,36,1,0,0,1,0,0,2,3,158,234,17,38,3,2,0,1,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,12,18,383,129,254,108,207,15,41,0,0,1,0,0,0,5,6,112,211,16,43,5,5,2,1,0,0,125,252,104,207,15,39,0,0,1,0,0,0,5,6,108,211,16,41,5,5,2,1,0,0,4,2,4,0,0,2,0,0,0,0,0,0,0,0,4,0,0,2,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,13,0,22136,11773,10363,8624,8336,2897,1794,58,44,26,31,23,4,145,154,8758,8475,2966,1893,116,96,52,54,32,11,11419,10068,8338,8082,2866,1778,52,37,21,26,5,1,137,144,8464,8211,2931,1871,107,84,45,48,12,8,354,295,286,254,31,16,6,7,5,5,18,3,8,10,294,264,35,22,9,12,7,6,20,3 -050,01,007,Alabama,Bibb County,13,1,1223,593,630,459,470,103,123,4,1,4,2,0,0,23,34,481,501,117,148,10,7,8,8,0,1,554,604,428,449,102,122,2,1,0,0,0,0,22,32,449,478,116,146,7,7,4,5,0,1,39,26,31,21,1,1,2,0,4,2,0,0,1,2,32,23,1,2,3,0,4,3,0,0 -050,01,007,Alabama,Bibb County,13,2,1193,624,569,467,444,125,92,5,5,0,2,0,0,27,26,490,470,143,113,9,8,7,6,4,1,594,540,447,425,120,91,3,1,0,0,0,0,24,23,467,448,136,110,7,3,5,4,3,1,30,29,20,19,5,1,2,4,0,2,0,0,3,3,23,22,7,3,2,5,2,2,1,0 -050,01,007,Alabama,Bibb County,13,3,1223,638,585,495,441,119,125,5,3,0,2,1,1,18,13,510,452,132,134,11,8,3,3,1,1,620,557,483,419,114,122,5,1,0,2,1,1,17,12,497,429,126,131,11,5,3,3,1,1,18,28,12,22,5,3,0,2,0,0,0,0,1,1,13,23,6,3,0,3,0,0,0,0 -050,01,007,Alabama,Bibb County,13,4,1205,667,538,511,429,138,89,4,2,4,2,1,1,9,15,520,443,142,100,6,6,6,5,2,2,650,523,501,417,132,88,4,2,4,2,0,0,9,14,510,430,136,98,6,5,6,5,1,1,17,15,10,12,6,1,0,0,0,0,1,1,0,1,10,13,6,2,0,1,0,0,1,1 -050,01,007,Alabama,Bibb County,13,5,1309,771,538,486,433,270,100,4,1,2,0,2,0,7,4,493,437,273,102,7,2,3,1,2,2,751,519,470,416,268,98,4,1,2,0,0,0,7,4,477,420,271,100,7,2,3,1,0,2,20,19,16,17,2,2,0,0,0,0,2,0,0,0,16,17,2,2,0,0,0,0,2,0 -050,01,007,Alabama,Bibb County,13,6,1703,1001,702,612,537,371,152,2,4,3,4,6,0,7,5,618,540,375,156,4,5,5,5,7,1,972,665,592,502,368,151,2,4,3,3,0,0,7,5,598,505,372,155,4,5,5,4,1,1,29,37,20,35,3,1,0,0,0,1,6,0,0,0,20,35,3,1,0,0,0,1,6,0 -050,01,007,Alabama,Bibb County,13,7,1604,965,639,564,497,379,133,4,2,4,0,6,0,8,7,572,504,381,136,7,5,6,2,7,0,928,599,531,460,378,131,4,1,4,0,3,0,8,7,539,467,380,134,7,4,6,2,4,0,37,40,33,37,1,2,0,1,0,0,3,0,0,0,33,37,1,2,0,1,0,0,3,0 -050,01,007,Alabama,Bibb County,13,8,1507,884,623,566,503,304,109,4,5,0,1,3,2,7,3,572,505,307,112,8,6,1,2,3,2,841,598,530,481,300,108,4,5,0,1,0,0,7,3,536,483,303,111,8,6,1,2,0,0,43,25,36,22,4,1,0,0,0,0,3,2,0,0,36,22,4,1,0,0,0,0,3,2 -050,01,007,Alabama,Bibb County,13,9,1393,791,602,572,495,211,97,2,3,2,0,2,0,2,7,574,502,211,100,4,5,2,2,3,0,755,593,539,486,211,97,2,3,2,0,0,0,1,7,540,493,211,100,3,5,2,2,0,0,36,9,33,9,0,0,0,0,0,0,2,0,1,0,34,9,0,0,1,0,0,0,3,0 -050,01,007,Alabama,Bibb County,13,10,1601,879,722,626,583,242,129,5,6,2,1,1,0,3,3,629,586,243,132,6,6,3,1,1,0,853,714,601,576,241,128,5,6,2,1,1,0,3,3,604,579,242,131,6,6,3,1,1,0,26,8,25,7,1,1,0,0,0,0,0,0,0,0,25,7,1,1,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,13,11,1482,794,688,639,574,150,100,2,4,1,6,1,0,1,4,640,577,150,101,2,7,2,6,1,1,779,679,627,565,150,100,0,4,1,6,0,0,1,4,628,568,150,101,0,7,2,6,0,1,15,9,12,9,0,0,2,0,0,0,1,0,0,0,12,9,0,0,2,0,0,0,1,0 -050,01,007,Alabama,Bibb County,13,12,1551,808,743,629,583,170,144,1,3,1,7,0,0,7,6,636,588,171,148,7,7,1,7,0,0,798,731,620,573,169,143,1,3,1,7,0,0,7,5,627,577,170,146,7,6,1,7,0,0,10,12,9,10,1,1,0,0,0,0,0,0,0,1,9,11,1,2,0,1,0,0,0,0 -050,01,007,Alabama,Bibb County,13,13,1362,683,679,572,568,106,97,1,3,0,2,0,0,4,9,576,576,109,102,3,7,0,3,0,0,671,675,562,566,105,97,1,3,0,2,0,0,3,7,565,572,107,101,3,6,0,3,0,0,12,4,10,2,1,0,0,0,0,0,0,0,1,2,11,4,2,1,0,1,0,0,0,0 -050,01,007,Alabama,Bibb County,13,14,1163,546,617,445,505,86,106,4,1,0,1,0,0,11,4,456,508,88,108,13,4,0,1,0,0,541,600,442,488,85,106,4,1,0,1,0,0,10,4,452,491,87,108,12,4,0,1,0,0,5,17,3,17,1,0,0,0,0,0,0,0,1,0,4,17,1,0,1,0,0,0,0,0 -050,01,007,Alabama,Bibb County,13,15,1054,496,558,428,476,59,79,6,0,1,0,0,0,2,3,430,478,59,80,8,2,1,1,0,0,486,547,419,465,59,79,6,0,0,0,0,0,2,3,421,467,59,80,8,2,0,1,0,0,10,11,9,11,0,0,0,0,1,0,0,0,0,0,9,11,0,0,0,0,1,0,0,0 -050,01,007,Alabama,Bibb County,13,16,697,305,392,273,347,27,42,1,1,1,0,0,0,3,2,276,349,27,42,3,3,1,0,1,0,300,390,268,345,27,42,1,1,1,0,0,0,3,2,271,347,27,42,3,3,1,0,1,0,5,2,5,2,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,13,17,468,190,278,165,235,19,38,4,0,0,1,0,0,2,4,167,239,19,39,5,3,1,1,0,0,188,276,163,233,19,38,4,0,0,1,0,0,2,4,165,237,19,39,5,3,1,1,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,007,Alabama,Bibb County,13,18,398,138,260,115,216,18,39,0,0,1,0,0,0,4,5,118,220,19,40,3,5,2,0,0,0,138,258,115,216,18,37,0,0,1,0,0,0,4,5,118,220,19,38,3,5,2,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,1,0,57322,28362,28960,27398,27970,420,397,178,173,45,80,38,25,283,315,27670,28275,493,472,364,376,81,134,45,31,25793,26903,24982,26009,368,363,134,151,44,76,11,7,254,297,25228,26297,433,434,298,341,79,128,17,13,2569,2057,2416,1961,52,34,44,22,1,4,27,18,29,18,2442,1978,60,38,66,35,2,6,28,18 -050,01,009,Alabama,Blount County,1,1,3616,1805,1811,1724,1728,36,37,10,10,2,4,2,3,31,29,1753,1755,58,56,13,19,10,8,2,5,1487,1509,1428,1441,28,31,4,8,2,3,0,0,25,26,1452,1466,46,48,5,15,9,7,0,2,318,302,296,287,8,6,6,2,0,1,2,3,6,3,301,289,12,8,8,4,1,1,2,3 -050,01,009,Alabama,Blount County,1,2,3880,1936,1944,1855,1860,20,29,18,7,6,5,5,2,32,41,1885,1901,40,47,29,19,9,16,6,2,1663,1666,1601,1589,19,26,10,6,6,5,1,1,26,39,1627,1628,37,44,16,17,9,15,1,1,273,278,254,271,1,3,8,1,0,0,4,1,6,2,258,273,3,3,13,2,0,1,5,1 -050,01,009,Alabama,Blount County,1,3,4084,2113,1971,2031,1872,34,39,12,19,2,7,3,2,31,32,2062,1904,47,49,27,35,6,17,3,2,1883,1742,1808,1652,30,36,11,18,2,7,1,0,31,29,1839,1681,43,46,26,32,6,16,1,0,230,229,223,220,4,3,1,1,0,0,2,2,0,3,223,223,4,3,1,3,0,1,2,2 -050,01,009,Alabama,Blount County,1,4,4033,2139,1894,2039,1815,46,23,22,19,2,2,3,4,27,31,2065,1845,52,32,42,37,4,7,5,5,1897,1701,1815,1633,43,21,13,15,2,2,1,0,23,30,1837,1662,49,30,29,32,4,7,3,1,242,193,224,182,3,2,9,4,0,0,2,4,4,1,228,183,3,2,13,5,0,0,2,4 -050,01,009,Alabama,Blount County,1,5,3107,1577,1530,1510,1475,29,18,9,12,4,4,4,3,21,18,1530,1492,33,24,21,23,9,7,5,3,1329,1380,1275,1338,22,15,6,7,3,3,3,1,20,16,1294,1353,26,20,17,17,8,6,4,1,248,150,235,137,7,3,3,5,1,1,1,2,1,2,236,139,7,4,4,6,1,1,1,2 -050,01,009,Alabama,Blount County,1,6,3436,1735,1701,1679,1647,30,23,11,14,1,3,2,2,12,12,1690,1658,32,24,19,23,4,5,3,3,1434,1517,1404,1471,16,21,4,10,1,3,0,1,9,11,1412,1481,16,21,11,19,4,5,1,2,301,184,275,176,14,2,7,4,0,0,2,1,3,1,278,177,16,3,8,4,0,0,2,1 -050,01,009,Alabama,Blount County,1,7,3441,1730,1711,1673,1655,30,25,12,12,5,7,4,1,6,11,1679,1666,30,25,18,19,5,11,4,1,1472,1522,1428,1476,24,18,9,11,5,7,1,0,5,10,1433,1486,24,18,14,17,5,11,1,0,258,189,245,179,6,7,3,1,0,0,3,1,1,1,246,180,6,7,4,2,0,0,3,1 -050,01,009,Alabama,Blount County,1,8,3892,1989,1903,1929,1838,30,21,10,10,1,12,4,1,15,21,1944,1859,30,22,21,26,4,16,5,1,1791,1744,1743,1686,28,20,7,7,1,12,0,0,12,19,1755,1705,28,21,15,21,4,16,1,0,198,159,186,152,2,1,3,3,0,0,4,1,3,2,189,154,2,1,6,5,0,0,4,1 -050,01,009,Alabama,Blount County,1,9,4033,2033,2000,1963,1926,26,29,17,14,6,7,4,2,17,22,1977,1947,28,32,33,32,9,9,4,3,1887,1885,1826,1816,23,27,14,14,6,6,1,0,17,22,1840,1837,25,30,30,32,9,8,1,1,146,115,137,110,3,2,3,0,0,1,3,2,0,0,137,110,3,2,3,0,0,1,3,2 -050,01,009,Alabama,Blount County,1,10,4163,2096,2067,2039,2005,25,22,8,11,3,7,2,1,19,21,2058,2026,25,23,24,30,6,7,2,2,1988,1978,1934,1917,25,22,8,11,3,7,1,1,17,20,1951,1937,25,23,22,29,6,7,1,2,108,89,105,88,0,0,0,0,0,0,1,0,2,1,107,89,0,0,2,1,0,0,1,0 -050,01,009,Alabama,Blount County,1,11,3922,1972,1950,1916,1888,27,32,6,9,6,4,2,0,15,17,1930,1902,28,36,20,23,7,7,3,0,1879,1879,1824,1821,27,30,6,9,6,4,2,0,14,15,1837,1833,28,34,19,21,7,7,3,0,93,71,92,67,0,2,0,0,0,0,0,0,1,2,93,69,0,2,1,2,0,0,0,0 -050,01,009,Alabama,Blount County,1,12,3694,1810,1884,1749,1822,27,26,11,11,3,7,1,1,19,17,1768,1838,27,28,30,27,3,9,1,1,1752,1854,1694,1793,26,25,10,11,3,7,0,1,19,17,1713,1809,26,27,29,27,3,9,0,1,58,30,55,29,1,1,1,0,0,0,1,0,0,0,55,29,1,1,1,0,0,0,1,0 -050,01,009,Alabama,Blount County,1,13,3582,1700,1882,1645,1830,24,25,13,10,1,5,1,0,16,12,1661,1842,26,26,27,18,1,8,1,0,1667,1858,1616,1809,22,24,13,9,1,4,0,0,15,12,1631,1821,24,25,26,17,1,7,0,0,33,24,29,21,2,1,0,1,0,1,1,0,1,0,30,21,2,1,1,1,0,1,1,0 -050,01,009,Alabama,Blount County,1,14,2892,1352,1540,1320,1503,12,12,7,8,3,6,0,2,10,9,1330,1512,12,12,17,17,3,6,0,2,1329,1513,1298,1478,12,11,7,8,3,6,0,1,9,9,1307,1487,12,11,16,17,3,6,0,1,23,27,22,25,0,1,0,0,0,0,0,1,1,0,23,25,0,1,1,0,0,0,0,1 -050,01,009,Alabama,Blount County,1,15,2187,1039,1148,1019,1120,7,15,3,3,0,0,0,1,10,9,1029,1129,8,15,12,12,1,0,0,1,1021,1139,1002,1111,6,15,3,3,0,0,0,1,10,9,1012,1120,7,15,12,12,1,0,0,1,18,9,17,9,1,0,0,0,0,0,0,0,0,0,17,9,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,1,16,1517,684,833,676,820,5,4,3,3,0,0,0,0,0,6,676,826,5,4,3,9,0,0,0,0,677,828,669,815,5,4,3,3,0,0,0,0,0,6,669,821,5,4,3,9,0,0,0,0,7,5,7,5,0,0,0,0,0,0,0,0,0,0,7,5,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,1,17,1035,418,617,402,604,7,8,6,0,0,0,1,0,2,5,404,609,7,8,8,4,0,1,1,0,410,617,395,604,7,8,6,0,0,0,0,0,2,5,397,609,7,8,8,4,0,1,0,0,8,0,7,0,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,1,18,808,234,574,229,562,5,9,0,1,0,0,0,0,0,2,229,564,5,9,0,3,0,0,0,0,227,571,222,559,5,9,0,1,0,0,0,0,0,2,222,561,5,9,0,3,0,0,0,0,7,3,7,3,0,0,0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,2,0,57322,28358,28964,27394,27973,420,397,178,174,45,80,38,25,283,315,27666,28278,493,472,364,377,81,134,45,31,25788,26905,24977,26010,368,363,134,152,44,76,11,7,254,297,25223,26298,433,434,298,342,79,128,17,13,2570,2059,2417,1963,52,34,44,22,1,4,27,18,29,18,2443,1980,60,38,66,35,2,6,28,18 -050,01,009,Alabama,Blount County,2,1,3617,1805,1812,1724,1729,36,37,10,10,2,4,2,3,31,29,1753,1756,58,56,13,19,10,8,2,5,1487,1510,1428,1442,28,31,4,8,2,3,0,0,25,26,1452,1467,46,48,5,15,9,7,0,2,318,302,296,287,8,6,6,2,0,1,2,3,6,3,301,289,12,8,8,4,1,1,2,3 -050,01,009,Alabama,Blount County,2,2,3880,1936,1944,1855,1860,20,29,18,7,6,5,5,2,32,41,1885,1901,40,47,29,19,9,16,6,2,1663,1666,1601,1589,19,26,10,6,6,5,1,1,26,39,1627,1628,37,44,16,17,9,15,1,1,273,278,254,271,1,3,8,1,0,0,4,1,6,2,258,273,3,3,13,2,0,1,5,1 -050,01,009,Alabama,Blount County,2,3,4085,2113,1972,2031,1873,34,39,12,19,2,7,3,2,31,32,2062,1905,47,49,27,35,6,17,3,2,1883,1743,1808,1653,30,36,11,18,2,7,1,0,31,29,1839,1682,43,46,26,32,6,16,1,0,230,229,223,220,4,3,1,1,0,0,2,2,0,3,223,223,4,3,1,3,0,1,2,2 -050,01,009,Alabama,Blount County,2,4,4032,2138,1894,2038,1815,46,23,22,19,2,2,3,4,27,31,2064,1845,52,32,42,37,4,7,5,5,1896,1700,1814,1632,43,21,13,15,2,2,1,0,23,30,1836,1661,49,30,29,32,4,7,3,1,242,194,224,183,3,2,9,4,0,0,2,4,4,1,228,184,3,2,13,5,0,0,2,4 -050,01,009,Alabama,Blount County,2,5,3107,1578,1529,1511,1474,29,18,9,12,4,4,4,3,21,18,1531,1491,33,24,21,23,9,7,5,3,1330,1379,1276,1337,22,15,6,7,3,3,3,1,20,16,1295,1352,26,20,17,17,8,6,4,1,248,150,235,137,7,3,3,5,1,1,1,2,1,2,236,139,7,4,4,6,1,1,1,2 -050,01,009,Alabama,Blount County,2,6,3437,1735,1702,1679,1648,30,23,11,14,1,3,2,2,12,12,1690,1659,32,24,19,23,4,5,3,3,1434,1518,1404,1472,16,21,4,10,1,3,0,1,9,11,1412,1482,16,21,11,19,4,5,1,2,301,184,275,176,14,2,7,4,0,0,2,1,3,1,278,177,16,3,8,4,0,0,2,1 -050,01,009,Alabama,Blount County,2,7,3441,1730,1711,1673,1655,30,25,12,12,5,7,4,1,6,11,1679,1666,30,25,18,19,5,11,4,1,1472,1522,1428,1476,24,18,9,11,5,7,1,0,5,10,1433,1486,24,18,14,17,5,11,1,0,258,189,245,179,6,7,3,1,0,0,3,1,1,1,246,180,6,7,4,2,0,0,3,1 -050,01,009,Alabama,Blount County,2,8,3895,1991,1904,1931,1839,30,21,10,10,1,12,4,1,15,21,1946,1860,30,22,21,26,4,16,5,1,1793,1745,1745,1687,28,20,7,7,1,12,0,0,12,19,1757,1706,28,21,15,21,4,16,1,0,198,159,186,152,2,1,3,3,0,0,4,1,3,2,189,154,2,1,6,5,0,0,4,1 -050,01,009,Alabama,Blount County,2,9,4030,2031,1999,1961,1925,26,29,17,14,6,7,4,2,17,22,1975,1946,28,32,33,32,9,9,4,3,1884,1884,1823,1815,23,27,14,14,6,6,1,0,17,22,1837,1836,25,30,30,32,9,8,1,1,147,115,138,110,3,2,3,0,0,1,3,2,0,0,138,110,3,2,3,0,0,1,3,2 -050,01,009,Alabama,Blount County,2,10,4160,2094,2066,2037,2004,25,22,8,11,3,7,2,1,19,21,2056,2025,25,23,24,30,6,7,2,2,1986,1976,1932,1915,25,22,8,11,3,7,1,1,17,20,1949,1935,25,23,22,29,6,7,1,2,108,90,105,89,0,0,0,0,0,0,1,0,2,1,107,90,0,0,2,1,0,0,1,0 -050,01,009,Alabama,Blount County,2,11,3923,1971,1952,1915,1890,27,32,6,9,6,4,2,0,15,17,1929,1904,28,36,20,23,7,7,3,0,1878,1881,1823,1823,27,30,6,9,6,4,2,0,14,15,1836,1835,28,34,19,21,7,7,3,0,93,71,92,67,0,2,0,0,0,0,0,0,1,2,93,69,0,2,1,2,0,0,0,0 -050,01,009,Alabama,Blount County,2,12,3692,1808,1884,1747,1822,27,26,11,11,3,7,1,1,19,17,1766,1838,27,28,30,27,3,9,1,1,1750,1854,1692,1793,26,25,10,11,3,7,0,1,19,17,1711,1809,26,27,29,27,3,9,0,1,58,30,55,29,1,1,1,0,0,0,1,0,0,0,55,29,1,1,1,0,0,0,1,0 -050,01,009,Alabama,Blount County,2,13,3582,1700,1882,1645,1829,24,25,13,11,1,5,1,0,16,12,1661,1841,26,26,27,19,1,8,1,0,1667,1858,1616,1808,22,24,13,10,1,4,0,0,15,12,1631,1820,24,25,26,18,1,7,0,0,33,24,29,21,2,1,0,1,0,1,1,0,1,0,30,21,2,1,1,1,0,1,1,0 -050,01,009,Alabama,Blount County,2,14,2896,1355,1541,1323,1504,12,12,7,8,3,6,0,2,10,9,1333,1513,12,12,17,17,3,6,0,2,1332,1514,1301,1479,12,11,7,8,3,6,0,1,9,9,1310,1488,12,11,16,17,3,6,0,1,23,27,22,25,0,1,0,0,0,0,0,1,1,0,23,25,0,1,1,0,0,0,0,1 -050,01,009,Alabama,Blount County,2,15,2185,1037,1148,1017,1120,7,15,3,3,0,0,0,1,10,9,1027,1129,8,15,12,12,1,0,0,1,1019,1139,1000,1111,6,15,3,3,0,0,0,1,10,9,1010,1120,7,15,12,12,1,0,0,1,18,9,17,9,1,0,0,0,0,0,0,0,0,0,17,9,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,2,16,1517,684,833,676,820,5,4,3,3,0,0,0,0,0,6,676,826,5,4,3,9,0,0,0,0,677,828,669,815,5,4,3,3,0,0,0,0,0,6,669,821,5,4,3,9,0,0,0,0,7,5,7,5,0,0,0,0,0,0,0,0,0,0,7,5,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,2,17,1035,418,617,402,604,7,8,6,0,0,0,1,0,2,5,404,609,7,8,8,4,0,1,1,0,410,617,395,604,7,8,6,0,0,0,0,0,2,5,397,609,7,8,8,4,0,1,0,0,8,0,7,0,0,0,0,0,0,0,1,0,0,0,7,0,0,0,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,2,18,808,234,574,229,562,5,9,0,1,0,0,0,0,0,2,229,564,5,9,0,3,0,0,0,0,227,571,222,559,5,9,0,1,0,0,0,0,0,2,222,561,5,9,0,3,0,0,0,0,7,3,7,3,0,0,0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,3,0,57372,28381,28991,27412,27997,423,390,177,174,48,83,35,25,286,322,27675,28299,514,492,353,380,85,117,48,36,25797,26910,24974,26011,374,357,135,153,47,79,10,7,257,303,25211,26297,451,446,299,351,79,111,21,16,2584,2081,2438,1986,49,33,42,21,1,4,25,18,29,19,2464,2002,63,46,54,29,6,6,27,20 -050,01,009,Alabama,Blount County,3,1,3615,1802,1813,1722,1731,33,33,10,9,2,4,1,3,34,33,1750,1763,52,54,23,17,10,8,2,5,1484,1514,1423,1446,27,28,4,7,2,3,0,0,28,30,1447,1475,43,46,13,14,8,7,1,2,318,299,299,285,6,5,6,2,0,1,1,3,6,3,303,288,9,8,10,3,2,1,1,3 -050,01,009,Alabama,Blount County,3,2,3848,1917,1931,1835,1845,22,29,18,7,6,6,6,2,30,42,1864,1887,38,49,30,24,9,11,7,3,1646,1649,1583,1570,20,27,11,6,6,6,1,1,25,39,1607,1609,34,45,20,22,9,11,2,2,271,282,252,275,2,2,7,1,0,0,5,1,5,3,257,278,4,4,10,2,0,0,5,1 -050,01,009,Alabama,Blount County,3,3,4095,2114,1981,2034,1884,32,38,12,17,3,6,3,2,30,34,2062,1915,46,54,23,33,8,13,5,3,1873,1745,1800,1657,29,35,11,16,3,6,1,0,29,31,1827,1685,42,48,22,31,8,13,3,1,241,236,234,227,3,3,1,1,0,0,2,2,1,3,235,230,4,6,1,2,0,0,2,2 -050,01,009,Alabama,Blount County,3,4,3992,2127,1865,2028,1785,46,24,20,20,2,2,3,4,28,30,2054,1814,54,35,35,37,8,6,5,5,1885,1667,1802,1598,44,22,12,16,2,2,1,0,24,29,1824,1626,51,32,27,33,6,6,2,1,242,198,226,187,2,2,8,4,0,0,2,4,4,1,230,188,3,3,8,4,2,0,3,4 -050,01,009,Alabama,Blount County,3,5,3141,1579,1562,1515,1503,29,20,9,14,3,4,3,3,20,18,1533,1517,33,25,22,25,8,7,4,6,1342,1411,1290,1366,22,17,6,8,2,3,2,1,20,16,1308,1379,26,21,19,17,7,6,3,4,237,151,225,137,7,3,3,6,1,1,1,2,0,2,225,138,7,4,3,8,1,1,1,2 -050,01,009,Alabama,Blount County,3,6,3424,1731,1693,1676,1641,31,22,9,13,1,4,1,2,13,11,1687,1652,36,25,17,19,3,6,1,2,1436,1510,1404,1465,18,20,3,10,1,4,0,1,10,10,1412,1475,21,22,10,16,3,6,0,1,295,183,272,176,13,2,6,3,0,0,1,1,3,1,275,177,15,3,7,3,0,0,1,1 -050,01,009,Alabama,Blount County,3,7,3458,1748,1710,1690,1651,31,27,11,14,5,6,4,1,7,11,1697,1659,35,31,15,23,5,7,4,2,1487,1518,1442,1470,24,19,9,13,5,6,1,0,6,10,1448,1478,28,23,12,21,5,7,1,0,261,192,248,181,7,8,2,1,0,0,3,1,1,1,249,181,7,8,3,2,0,0,3,2 -050,01,009,Alabama,Blount County,3,8,3847,1963,1884,1901,1820,29,20,12,9,1,12,4,1,16,22,1916,1842,34,23,21,24,2,16,7,2,1759,1725,1710,1668,27,19,8,6,1,12,0,0,13,20,1723,1688,30,22,16,20,2,15,2,1,204,159,191,152,2,1,4,3,0,0,4,1,3,2,193,154,4,1,5,4,0,1,5,1 -050,01,009,Alabama,Blount County,3,9,4032,2027,2005,1959,1933,26,30,16,13,7,6,3,2,16,21,1973,1954,31,32,29,31,7,8,4,2,1877,1888,1818,1821,23,28,12,13,7,5,1,0,16,21,1832,1842,28,30,25,31,7,7,2,0,150,117,141,112,3,2,4,0,0,1,2,2,0,0,141,112,3,2,4,0,0,1,2,2 -050,01,009,Alabama,Blount County,3,10,4153,2094,2059,2038,1994,26,21,7,13,3,7,2,1,18,23,2055,2016,28,26,23,32,4,7,2,1,1982,1966,1929,1902,26,21,7,13,3,7,1,1,16,22,1944,1924,27,25,22,31,4,7,1,1,112,93,109,92,0,0,0,0,0,0,1,0,2,1,111,92,1,1,1,1,0,0,1,0 -050,01,009,Alabama,Blount County,3,11,3942,1989,1953,1926,1895,29,29,8,8,7,4,2,0,17,17,1942,1911,32,34,21,20,9,5,2,1,1897,1880,1836,1826,29,27,8,8,7,4,2,0,15,15,1850,1840,31,31,21,20,8,4,2,0,92,73,90,69,0,2,0,0,0,0,0,0,2,2,92,71,1,3,0,0,1,1,0,1 -050,01,009,Alabama,Blount County,3,12,3737,1826,1911,1764,1846,27,27,11,11,4,9,1,1,19,17,1781,1861,30,29,28,28,5,9,2,1,1764,1880,1705,1816,26,26,10,11,4,9,0,1,19,17,1722,1831,29,28,27,28,5,9,1,1,62,31,59,30,1,1,1,0,0,0,1,0,0,0,59,30,1,1,1,0,0,0,1,0 -050,01,009,Alabama,Blount County,3,13,3600,1713,1887,1654,1834,27,23,15,11,1,6,1,0,15,13,1668,1845,29,25,28,24,2,6,1,0,1680,1864,1625,1813,25,22,15,11,1,5,0,0,14,13,1638,1824,26,24,28,24,2,5,0,0,33,23,29,21,2,1,0,0,0,1,1,0,1,0,30,21,3,1,0,0,0,1,1,0 -050,01,009,Alabama,Blount County,3,14,2906,1365,1541,1331,1504,13,12,7,8,3,6,0,2,11,9,1342,1512,13,13,17,17,4,6,0,2,1341,1515,1308,1480,13,11,7,8,3,6,0,1,10,9,1318,1488,13,12,16,17,4,6,0,1,24,26,23,24,0,1,0,0,0,0,0,1,1,0,24,24,0,1,1,0,0,0,0,1 -050,01,009,Alabama,Blount County,3,15,2199,1040,1159,1020,1132,7,13,3,3,0,1,0,1,10,9,1030,1141,8,13,10,11,1,2,1,1,1021,1150,1002,1123,6,13,3,3,0,1,0,1,10,9,1012,1132,7,13,10,11,1,2,1,1,19,9,18,9,1,0,0,0,0,0,0,0,0,0,18,9,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,3,16,1534,692,842,684,828,5,5,3,3,0,0,0,0,0,6,684,834,5,5,3,9,0,0,0,0,684,837,676,823,5,5,3,3,0,0,0,0,0,6,676,829,5,5,3,9,0,0,0,0,8,5,8,5,0,0,0,0,0,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,3,17,1035,417,618,403,606,5,8,6,0,0,0,1,0,2,4,405,609,5,10,8,3,0,0,1,0,409,617,396,605,5,8,6,0,0,0,0,0,2,4,398,608,5,10,8,3,0,0,0,0,8,1,7,1,0,0,0,0,0,0,1,0,0,0,7,1,0,0,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,3,18,814,237,577,232,565,5,9,0,1,0,0,0,0,0,2,232,567,5,9,0,3,0,0,0,0,230,574,225,562,5,9,0,1,0,0,0,0,0,2,225,564,5,9,0,3,0,0,0,0,7,3,7,3,0,0,0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,4,0,57561,28446,29115,27466,28085,438,403,176,172,49,87,36,25,281,343,27734,28398,518,517,353,383,88,134,46,35,25785,26977,24951,26047,389,371,132,145,48,83,12,8,253,323,25196,26343,456,474,296,349,82,126,20,16,2661,2138,2515,2038,49,32,44,27,1,4,24,17,28,20,2538,2055,62,43,57,34,6,8,26,19 -050,01,009,Alabama,Blount County,4,1,3636,1833,1803,1755,1711,26,31,10,9,4,6,2,2,36,44,1787,1754,45,55,20,19,15,15,5,4,1496,1510,1435,1434,23,26,4,3,4,5,1,0,29,42,1462,1475,40,49,10,13,13,14,3,1,337,293,320,277,3,5,6,6,0,1,1,2,7,2,325,279,5,6,10,6,2,1,2,3 -050,01,009,Alabama,Blount County,4,2,3777,1850,1927,1780,1834,27,31,15,12,3,7,6,2,19,41,1798,1869,34,52,25,27,6,17,7,4,1584,1644,1533,1559,23,30,8,11,3,7,2,1,15,36,1548,1591,28,48,15,24,6,16,3,2,266,283,247,275,4,1,7,1,0,0,4,1,4,5,250,278,6,4,10,3,0,1,4,2 -050,01,009,Alabama,Blount County,4,3,4139,2125,2014,2038,1921,28,40,14,9,6,4,5,3,34,37,2071,1954,42,56,31,26,12,12,6,4,1861,1761,1784,1678,24,36,12,8,6,4,2,0,33,35,1816,1709,38,51,28,24,12,12,3,1,264,253,254,243,4,4,2,1,0,0,3,3,1,2,255,245,4,5,3,2,0,0,3,3 -050,01,009,Alabama,Blount County,4,4,3855,2073,1782,1987,1704,38,20,16,20,2,5,2,3,28,30,2013,1732,49,32,31,35,7,10,4,3,1831,1570,1758,1500,37,19,9,18,2,5,1,0,24,28,1780,1526,46,29,23,33,6,10,3,0,242,212,229,204,1,1,7,2,0,0,1,3,4,2,233,206,3,3,8,2,1,0,1,3 -050,01,009,Alabama,Blount County,4,5,3277,1656,1621,1588,1560,36,22,13,11,2,4,2,3,15,21,1603,1576,39,30,25,28,4,8,2,4,1417,1469,1362,1420,29,19,9,7,1,3,1,1,15,19,1377,1434,32,26,21,23,3,6,1,2,239,152,226,140,7,3,4,4,1,1,1,2,0,2,226,142,7,4,4,5,1,2,1,2 -050,01,009,Alabama,Blount County,4,6,3415,1695,1720,1634,1659,34,22,8,18,4,8,1,3,14,10,1648,1669,39,27,16,22,4,9,2,3,1407,1539,1365,1490,23,21,3,10,4,8,0,1,12,9,1377,1499,26,25,11,14,4,9,1,1,288,181,269,169,11,1,5,8,0,0,1,2,2,1,271,170,13,2,5,8,0,0,1,2 -050,01,009,Alabama,Blount County,4,7,3524,1808,1716,1742,1648,39,31,11,18,4,5,3,2,9,12,1749,1660,43,35,17,25,5,7,3,3,1547,1524,1498,1467,30,24,7,16,4,5,1,1,7,11,1505,1478,32,27,12,23,4,7,1,2,261,192,244,181,9,7,4,2,0,0,2,1,2,1,244,182,11,8,5,2,1,0,2,1 -050,01,009,Alabama,Blount County,4,8,3697,1852,1845,1789,1784,29,22,12,7,1,8,5,0,16,24,1804,1807,33,26,23,24,2,11,6,1,1641,1680,1590,1625,28,20,8,5,1,8,0,0,14,22,1603,1646,31,24,19,21,2,10,0,1,211,165,199,159,1,2,4,2,0,0,5,0,2,2,201,161,2,2,4,3,0,1,6,0 -050,01,009,Alabama,Blount County,4,9,4044,2037,2007,1972,1944,28,32,14,8,6,6,2,2,15,15,1986,1958,32,35,24,21,8,6,2,2,1879,1881,1824,1824,24,29,11,8,6,5,0,0,14,15,1837,1838,27,32,21,21,8,5,0,0,158,126,148,120,4,3,3,0,0,1,2,2,1,0,149,120,5,3,3,0,0,1,2,2 -050,01,009,Alabama,Blount County,4,10,4046,2053,1993,2004,1917,24,20,5,16,3,7,3,1,14,32,2018,1948,24,23,17,45,5,8,3,1,1928,1891,1881,1816,24,20,4,16,3,7,2,1,14,31,1895,1846,24,23,16,44,5,8,2,1,125,102,123,101,0,0,1,0,0,0,1,0,0,1,123,102,0,0,1,1,0,0,1,0 -050,01,009,Alabama,Blount County,4,11,3962,2019,1943,1947,1892,32,23,11,10,6,3,2,0,21,15,1968,1906,33,25,28,23,8,4,3,0,1935,1872,1866,1825,32,22,11,9,6,3,2,0,18,13,1884,1838,33,23,26,21,7,3,3,0,84,71,81,67,0,1,0,1,0,0,0,0,3,2,84,68,0,2,2,2,1,1,0,0 -050,01,009,Alabama,Blount County,4,12,3817,1839,1978,1783,1915,24,28,7,8,4,10,1,1,20,16,1803,1931,27,29,23,22,5,11,1,1,1763,1938,1710,1877,23,26,6,8,4,10,0,1,20,16,1730,1893,26,27,22,22,5,11,0,1,76,40,73,38,1,2,1,0,0,0,1,0,0,0,73,38,1,2,1,0,0,0,1,0 -050,01,009,Alabama,Blount County,4,13,3690,1761,1929,1695,1868,33,29,19,10,1,7,1,0,12,15,1707,1881,34,32,30,23,1,8,1,1,1723,1904,1662,1845,30,28,19,10,1,6,0,0,11,15,1673,1858,31,31,29,23,1,7,0,1,38,25,33,23,3,1,0,0,0,1,1,0,1,0,34,23,3,1,1,0,0,1,1,0 -050,01,009,Alabama,Blount County,4,14,2916,1377,1539,1340,1502,14,14,7,7,3,3,0,2,13,11,1352,1512,17,16,17,17,4,3,0,2,1353,1517,1316,1482,14,13,7,7,3,3,0,1,13,11,1328,1492,17,15,17,17,4,3,0,1,24,22,24,20,0,1,0,0,0,0,0,1,0,0,24,20,0,1,0,0,0,0,0,1 -050,01,009,Alabama,Blount County,4,15,2264,1052,1212,1027,1183,9,14,5,5,0,4,0,0,11,6,1038,1187,10,16,14,10,1,5,0,0,1030,1203,1007,1174,8,14,5,5,0,4,0,0,10,6,1017,1178,8,16,14,10,1,5,0,0,22,9,20,9,1,0,0,0,0,0,0,0,1,0,21,9,2,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,4,16,1602,740,862,729,844,6,7,3,2,0,0,0,1,2,8,731,850,6,10,5,8,0,0,0,2,731,856,720,838,6,7,3,2,0,0,0,1,2,8,722,844,6,10,5,8,0,0,0,2,9,6,9,6,0,0,0,0,0,0,0,0,0,0,9,6,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,4,17,1052,420,632,409,621,6,7,4,1,0,0,0,0,1,3,410,623,6,8,5,4,0,0,0,0,412,629,401,618,6,7,4,1,0,0,0,0,1,3,402,620,6,8,5,4,0,0,0,0,8,3,8,3,0,0,0,0,0,0,0,0,0,0,8,3,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,4,18,848,256,592,247,578,5,10,2,1,0,0,1,0,1,3,248,581,5,10,2,4,1,0,1,0,247,589,239,575,5,10,2,1,0,0,0,0,1,3,240,578,5,10,2,4,1,0,0,0,9,3,8,3,0,0,0,0,0,0,1,0,0,0,8,3,0,0,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,5,0,57585,28429,29156,27365,28067,485,424,175,169,58,90,39,25,307,381,27654,28421,592,561,368,388,92,147,44,37,25758,26995,24846,26018,429,389,133,147,56,86,15,8,279,347,25109,26342,520,515,312,349,88,131,18,18,2671,2161,2519,2049,56,35,42,22,2,4,24,17,28,34,2545,2079,72,46,56,39,4,16,26,19 -050,01,009,Alabama,Blount County,5,1,3636,1859,1777,1765,1671,31,33,8,5,5,5,2,0,48,63,1810,1733,56,66,23,21,15,21,4,0,1538,1497,1459,1403,27,28,4,2,4,4,1,0,43,60,1499,1463,52,60,15,17,13,18,3,0,321,280,306,268,4,5,4,3,1,1,1,0,5,3,311,270,4,6,8,4,2,3,1,0 -050,01,009,Alabama,Blount County,5,2,3797,1825,1972,1735,1853,42,38,12,13,4,7,6,4,26,57,1758,1906,56,64,25,38,7,18,7,6,1550,1667,1480,1570,38,36,5,13,4,7,2,1,21,40,1498,1607,50,56,15,29,6,13,2,2,275,305,255,283,4,2,7,0,0,0,4,3,5,17,260,299,6,8,10,9,1,5,5,4 -050,01,009,Alabama,Blount County,5,3,4037,2091,1946,1997,1859,30,30,19,11,7,4,4,3,34,39,2030,1896,49,47,34,28,13,10,4,4,1815,1704,1736,1628,23,26,15,9,7,4,2,0,32,37,1767,1663,40,43,29,24,13,10,2,1,276,242,261,231,7,4,4,2,0,0,2,3,2,2,263,233,9,4,5,4,0,0,2,3 -050,01,009,Alabama,Blount County,5,4,3751,2012,1739,1924,1663,37,30,15,17,3,5,4,3,29,21,1952,1682,51,41,28,30,6,8,4,4,1787,1529,1712,1461,34,28,10,16,3,5,2,0,26,19,1737,1479,45,38,23,28,6,7,2,1,225,210,212,202,3,2,5,1,0,0,2,3,3,2,215,203,6,3,5,2,0,1,2,3 -050,01,009,Alabama,Blount County,5,5,3370,1716,1654,1639,1588,45,22,10,12,2,4,3,3,17,25,1656,1612,52,32,20,26,4,7,3,4,1472,1492,1406,1436,40,20,7,8,1,3,2,1,16,24,1422,1459,46,29,17,22,3,6,2,2,244,162,233,152,5,2,3,4,1,1,1,2,1,1,234,153,6,3,3,4,1,1,1,2 -050,01,009,Alabama,Blount County,5,6,3374,1665,1709,1593,1647,47,18,8,19,4,9,1,3,12,13,1603,1657,52,23,16,26,5,13,1,5,1399,1526,1347,1476,34,16,4,12,4,9,0,1,10,12,1355,1485,37,21,12,19,5,12,0,3,266,183,246,171,13,2,4,7,0,0,1,2,2,1,248,172,15,2,4,7,0,1,1,2 -050,01,009,Alabama,Blount County,5,7,3441,1759,1682,1691,1614,37,32,14,17,4,5,4,2,9,12,1700,1624,39,37,20,21,5,8,4,4,1505,1503,1456,1443,29,27,7,16,4,5,2,1,7,11,1463,1452,30,31,12,20,5,8,2,3,254,179,235,171,8,5,7,1,0,0,2,1,2,1,237,172,9,6,8,1,0,0,2,1 -050,01,009,Alabama,Blount County,5,8,3656,1795,1861,1734,1794,26,28,10,7,4,8,4,0,17,24,1751,1817,30,34,23,24,4,9,4,1,1568,1685,1517,1628,24,24,7,4,4,8,0,0,16,21,1533,1648,27,30,20,19,4,8,0,1,227,176,217,166,2,4,3,3,0,0,4,0,1,3,218,169,3,4,3,5,0,1,4,0 -050,01,009,Alabama,Blount County,5,9,4075,2089,1986,2009,1914,43,37,11,9,5,10,3,2,18,14,2026,1927,45,39,25,20,8,12,4,2,1921,1856,1851,1790,39,34,10,9,5,9,0,0,16,14,1867,1803,41,36,22,20,8,11,0,0,168,130,158,124,4,3,1,0,0,1,3,2,2,0,159,124,4,3,3,0,0,1,4,2 -050,01,009,Alabama,Blount County,5,10,4002,1997,2005,1938,1928,28,23,9,14,4,7,3,0,15,33,1953,1955,29,29,22,43,5,10,3,1,1874,1899,1819,1823,28,23,6,14,4,7,2,0,15,32,1834,1850,29,28,19,43,5,9,2,1,123,106,119,105,0,0,3,0,0,0,1,0,0,1,119,105,0,1,3,0,0,1,1,0 -050,01,009,Alabama,Blount County,5,11,3965,2048,1917,1983,1869,26,20,11,9,7,3,1,1,20,15,2000,1883,31,24,31,20,7,5,1,2,1951,1852,1889,1809,26,19,11,8,7,3,1,1,17,12,1904,1820,29,23,28,17,7,4,1,1,97,65,94,60,0,1,0,1,0,0,0,0,3,3,96,63,2,1,3,3,0,1,0,1 -050,01,009,Alabama,Blount County,5,12,3865,1887,1978,1829,1916,25,30,8,6,4,8,2,1,19,17,1846,1932,27,34,24,20,6,9,3,1,1809,1925,1754,1865,24,28,7,6,4,8,1,1,19,17,1771,1881,26,32,23,20,6,9,2,1,78,53,75,51,1,2,1,0,0,0,1,0,0,0,75,51,1,2,1,0,0,0,1,0 -050,01,009,Alabama,Blount County,5,13,3568,1689,1879,1630,1817,26,29,18,11,2,6,1,0,12,16,1641,1832,28,32,28,26,3,6,1,0,1647,1855,1593,1795,23,27,18,11,2,6,0,0,11,16,1603,1810,24,30,28,26,3,6,0,0,42,24,37,22,3,2,0,0,0,0,1,0,1,0,38,22,4,2,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,5,14,3091,1448,1643,1408,1606,17,14,7,9,1,3,0,1,15,10,1423,1616,18,16,20,16,2,4,0,1,1418,1625,1379,1590,16,13,7,9,1,2,0,1,15,10,1394,1600,17,15,20,16,2,3,0,1,30,18,29,16,1,1,0,0,0,1,0,0,0,0,29,16,1,1,0,0,0,1,0,0 -050,01,009,Alabama,Blount County,5,15,2336,1069,1267,1044,1234,10,15,3,5,2,6,0,1,10,6,1053,1240,13,15,12,11,2,6,0,1,1052,1252,1029,1220,9,15,3,5,2,6,0,0,9,6,1037,1226,11,15,12,11,2,6,0,0,17,15,15,14,1,0,0,0,0,0,0,1,1,0,16,14,2,0,0,0,0,0,0,1 -050,01,009,Alabama,Blount County,5,16,1667,769,898,755,878,5,8,5,2,0,0,0,1,4,9,759,887,5,9,9,9,0,1,0,1,761,890,747,870,5,8,5,2,0,0,0,1,4,9,751,879,5,9,9,9,0,1,0,1,8,8,8,8,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,5,17,1075,438,637,428,624,4,7,5,2,0,0,0,0,1,4,429,628,5,8,5,5,0,0,0,0,428,635,418,622,4,7,5,2,0,0,0,0,1,4,419,626,5,8,5,5,0,0,0,0,10,2,10,2,0,0,0,0,0,0,0,0,0,0,10,2,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,5,18,879,273,606,263,592,6,10,2,1,0,0,1,0,1,3,264,594,6,11,3,4,0,0,1,0,263,603,254,589,6,10,2,1,0,0,0,0,1,3,255,591,6,11,3,4,0,0,0,0,10,3,9,3,0,0,0,0,0,0,1,0,0,0,9,3,0,0,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,6,0,57630,28443,29187,27363,28053,492,457,177,166,66,93,37,24,308,394,27651,28416,581,593,376,399,111,152,50,37,25752,26968,24829,25958,437,423,133,144,61,88,13,7,279,348,25093,26278,515,543,315,350,102,139,19,17,2691,2219,2534,2095,55,34,44,22,5,5,24,17,29,46,2558,2138,66,50,61,49,9,13,31,20 -050,01,009,Alabama,Blount County,6,1,3549,1777,1772,1690,1656,31,44,3,4,7,4,0,0,46,64,1734,1719,54,80,18,21,16,15,2,2,1478,1491,1401,1387,28,40,3,2,5,2,0,0,41,60,1442,1446,49,75,14,17,14,11,1,2,299,281,289,269,3,4,0,2,2,2,0,0,5,4,292,273,5,5,4,4,2,4,1,0 -050,01,009,Alabama,Blount County,6,2,3830,1842,1988,1756,1879,35,35,13,12,6,4,5,4,27,54,1781,1931,47,57,23,36,11,12,8,6,1542,1667,1483,1585,29,33,3,11,4,4,1,1,22,33,1504,1617,41,50,11,22,8,10,1,1,300,321,273,294,6,2,10,1,2,0,4,3,5,21,277,314,6,7,12,14,3,2,7,5 -050,01,009,Alabama,Blount County,6,3,4024,2049,1975,1950,1863,35,38,18,12,8,5,4,3,34,54,1982,1914,49,58,34,41,15,17,5,3,1783,1717,1698,1622,32,33,13,10,8,5,1,0,31,47,1727,1667,43,50,28,33,14,16,2,0,266,258,252,241,3,5,5,2,0,0,3,3,3,7,255,247,6,8,6,8,1,1,3,3 -050,01,009,Alabama,Blount County,6,4,3727,2019,1708,1937,1632,36,29,14,15,5,7,4,1,23,24,1960,1653,47,40,24,26,8,12,4,2,1794,1511,1722,1441,32,27,12,14,5,7,2,0,21,22,1743,1460,41,37,21,25,8,12,2,0,225,197,215,191,4,2,2,1,0,0,2,1,2,2,217,193,6,3,3,1,0,0,2,2 -050,01,009,Alabama,Blount County,6,5,3371,1724,1647,1642,1574,42,31,15,11,3,4,2,4,20,23,1659,1595,49,40,31,26,6,9,3,6,1477,1477,1410,1415,38,29,8,8,2,3,1,1,18,21,1425,1434,45,37,23,22,5,8,1,3,247,170,232,159,4,2,7,3,1,1,1,3,2,2,234,161,4,3,8,4,1,1,2,3 -050,01,009,Alabama,Blount County,6,6,3318,1650,1668,1570,1591,55,29,9,19,2,10,2,4,12,15,1582,1604,60,34,16,28,3,13,3,4,1404,1510,1344,1447,43,27,4,11,2,10,1,1,10,14,1354,1459,47,31,10,20,3,13,2,1,246,158,226,144,12,2,5,8,0,0,1,3,2,1,228,145,13,3,6,8,0,0,1,3 -050,01,009,Alabama,Blount County,6,7,3431,1737,1694,1677,1636,32,28,12,16,3,5,2,0,11,9,1684,1645,36,30,20,22,6,7,3,0,1486,1517,1443,1463,23,26,7,15,3,5,1,0,9,8,1450,1471,26,28,13,20,6,7,1,0,251,177,234,173,9,2,5,1,0,0,1,0,2,1,234,174,10,2,7,2,0,0,2,0 -050,01,009,Alabama,Blount County,6,8,3563,1745,1818,1686,1751,22,32,11,7,7,8,4,1,15,19,1700,1767,24,39,23,19,9,11,4,2,1512,1638,1466,1581,18,27,6,5,7,8,1,0,14,17,1479,1596,19,32,18,16,9,10,1,1,233,180,220,170,4,5,5,2,0,0,3,1,1,2,221,171,5,7,5,3,0,1,3,1 -050,01,009,Alabama,Blount County,6,9,4028,2045,1983,1964,1917,48,26,12,9,4,12,4,1,13,18,1976,1933,48,27,22,23,7,15,5,3,1868,1836,1797,1777,44,24,12,8,4,11,0,0,11,16,1807,1791,44,25,22,21,6,13,0,2,177,147,167,140,4,2,0,1,0,1,4,1,2,2,169,142,4,2,0,2,1,2,5,1 -050,01,009,Alabama,Blount County,6,10,3991,1999,1992,1929,1913,30,30,11,15,4,7,4,1,21,26,1950,1939,31,34,29,36,6,8,6,1,1875,1881,1811,1805,30,28,7,15,4,7,2,0,21,26,1832,1831,31,32,25,36,6,8,4,0,124,111,118,108,0,2,4,0,0,0,2,1,0,0,118,108,0,2,4,0,0,0,2,1 -050,01,009,Alabama,Blount County,6,11,4028,2082,1946,2017,1896,29,19,11,6,6,3,2,1,17,21,2033,1915,33,24,26,23,7,5,2,1,1974,1877,1911,1831,29,18,11,6,6,3,2,1,15,18,1925,1847,32,22,24,21,6,4,2,1,108,69,106,65,0,1,0,0,0,0,0,0,2,3,108,68,1,2,2,2,1,1,0,0 -050,01,009,Alabama,Blount County,6,12,3840,1905,1935,1850,1869,24,33,7,7,4,9,2,0,18,17,1868,1883,25,38,23,21,5,10,2,0,1823,1868,1772,1806,23,31,6,6,4,9,1,0,17,16,1789,1819,24,35,21,20,5,10,1,0,82,67,78,63,1,2,1,1,0,0,1,0,1,1,79,64,1,3,2,1,0,0,1,0 -050,01,009,Alabama,Blount County,6,13,3547,1690,1857,1625,1792,28,30,15,12,4,6,1,1,17,16,1641,1807,30,32,30,26,7,6,1,2,1646,1831,1584,1768,27,28,15,12,4,6,0,1,16,16,1599,1783,29,30,29,26,7,6,0,2,44,26,41,24,1,2,0,0,0,0,1,0,1,0,42,24,1,2,1,0,0,0,1,0 -050,01,009,Alabama,Blount County,6,14,3204,1494,1710,1448,1674,18,14,10,8,1,2,0,1,17,11,1465,1683,19,16,26,18,1,3,0,2,1452,1686,1409,1652,15,13,10,8,1,1,0,1,17,11,1426,1661,16,15,26,18,1,2,0,2,42,24,39,22,3,1,0,0,0,1,0,0,0,0,39,22,3,1,0,0,0,1,0,0 -050,01,009,Alabama,Blount County,6,15,2457,1140,1317,1113,1279,13,16,3,6,2,7,0,1,9,8,1120,1284,15,19,11,12,3,8,0,2,1123,1297,1098,1260,12,16,3,6,2,7,0,0,8,8,1104,1265,14,19,10,12,3,8,0,1,17,20,15,19,1,0,0,0,0,0,0,1,1,0,16,19,1,0,1,0,0,0,0,1 -050,01,009,Alabama,Blount County,6,16,1726,800,926,785,906,4,9,5,3,0,0,0,1,6,7,790,912,4,10,10,9,1,1,1,1,791,919,776,899,4,9,5,3,0,0,0,1,6,7,781,905,4,10,10,9,1,1,1,1,9,7,9,7,0,0,0,0,0,0,0,0,0,0,9,7,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,6,17,1098,458,640,447,630,4,5,6,2,0,0,0,0,1,3,448,633,4,5,7,5,0,0,0,0,448,638,437,628,4,5,6,2,0,0,0,0,1,3,438,631,4,5,7,5,0,0,0,0,10,2,10,2,0,0,0,0,0,0,0,0,0,0,10,2,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,6,18,898,287,611,277,595,6,9,2,2,0,0,1,0,1,5,278,599,6,10,3,7,0,0,1,0,276,607,267,591,6,9,2,2,0,0,0,0,1,5,268,595,6,10,3,7,0,0,0,0,11,4,10,4,0,0,0,0,0,0,1,0,0,0,10,4,0,0,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,7,0,57536,28370,29166,27287,28038,484,413,181,168,73,93,39,24,306,430,27581,28434,575,580,359,401,119,161,48,40,25673,26888,24742,25908,430,375,139,138,67,87,14,7,281,373,25013,26255,511,515,304,341,109,146,22,18,2697,2278,2545,2130,54,38,42,30,6,6,25,17,25,57,2568,2179,64,65,55,60,10,15,26,22 -050,01,009,Alabama,Blount County,7,1,3465,1740,1725,1654,1603,28,28,1,7,9,5,2,0,46,82,1699,1682,53,77,14,26,19,21,4,2,1459,1459,1381,1350,26,26,1,1,7,3,0,0,44,79,1424,1426,50,74,13,20,17,18,2,1,281,266,273,253,2,2,0,6,2,2,2,0,2,3,275,256,3,3,1,6,2,3,2,1 -050,01,009,Alabama,Blount County,7,2,3741,1813,1928,1727,1808,37,34,12,13,6,5,2,4,29,64,1755,1866,53,68,22,39,9,16,3,7,1499,1604,1437,1522,30,29,3,11,3,5,1,1,25,36,1461,1556,43,49,12,21,6,12,2,3,314,324,290,286,7,5,9,2,3,0,1,3,4,28,294,310,10,19,10,18,3,4,1,4 -050,01,009,Alabama,Blount County,7,3,3962,1976,1986,1880,1880,34,33,21,9,7,2,6,2,28,60,1904,1939,46,56,33,40,14,12,8,2,1707,1705,1627,1623,32,25,14,7,7,2,1,0,26,48,1650,1670,42,44,25,30,13,11,3,0,269,281,253,257,2,8,7,2,0,0,5,2,2,12,254,269,4,12,8,10,1,1,5,2 -050,01,009,Alabama,Blount County,7,4,3684,1974,1710,1902,1632,35,31,10,14,6,7,3,2,18,24,1919,1651,45,44,17,25,9,10,3,4,1763,1509,1698,1437,31,29,10,14,6,7,1,0,17,22,1714,1455,40,41,17,23,9,10,1,2,211,201,204,195,4,2,0,0,0,0,2,2,1,2,205,196,5,3,0,2,0,0,2,2 -050,01,009,Alabama,Blount County,7,5,3461,1789,1672,1705,1613,42,18,12,12,5,3,1,4,24,22,1729,1631,49,26,26,22,9,9,1,6,1550,1493,1477,1443,40,17,7,9,4,2,1,1,21,21,1498,1461,46,25,19,19,8,7,1,2,239,179,228,170,2,1,5,3,1,1,0,3,3,1,231,170,3,1,7,3,1,2,0,4 -050,01,009,Alabama,Blount County,7,6,3214,1633,1581,1559,1518,47,18,12,16,3,7,4,3,8,19,1567,1537,49,26,15,26,6,11,4,3,1401,1436,1345,1386,36,15,7,10,3,7,2,1,8,17,1353,1403,38,21,10,20,6,11,2,1,232,145,214,132,11,3,5,6,0,0,2,2,0,2,214,134,11,5,5,6,0,0,2,2 -050,01,009,Alabama,Blount County,7,7,3416,1692,1724,1631,1674,32,22,12,15,3,6,2,1,12,6,1643,1679,34,25,18,18,6,7,3,1,1439,1541,1396,1499,22,20,6,11,3,6,2,0,10,5,1406,1503,24,23,10,13,6,7,3,0,253,183,235,175,10,2,6,4,0,0,0,1,2,1,237,176,10,2,8,5,0,0,0,1 -050,01,009,Alabama,Blount County,7,8,3467,1717,1750,1659,1678,25,31,9,13,7,9,4,1,13,18,1672,1694,27,36,18,25,9,13,4,2,1467,1569,1424,1507,20,27,5,10,7,9,1,0,10,16,1434,1522,22,30,12,22,8,12,1,0,250,181,235,171,5,4,4,3,0,0,3,1,3,2,238,172,5,6,6,3,1,1,3,2 -050,01,009,Alabama,Blount County,7,9,3959,1985,1974,1910,1907,39,27,10,5,4,13,4,1,18,21,1927,1927,43,30,21,21,6,16,6,1,1819,1826,1755,1765,36,25,9,3,4,13,0,0,15,20,1770,1784,38,27,20,19,5,16,1,0,166,148,155,142,3,2,1,2,0,0,4,1,3,1,157,143,5,3,1,2,1,0,5,1 -050,01,009,Alabama,Blount County,7,10,3984,2008,1976,1931,1898,29,32,17,13,5,7,4,1,22,25,1952,1919,31,38,36,36,7,7,4,2,1878,1857,1808,1786,28,29,13,12,5,6,2,0,22,24,1829,1806,30,35,32,34,7,6,2,1,130,119,123,112,1,3,4,1,0,1,2,1,0,1,123,113,1,3,4,2,0,1,2,1 -050,01,009,Alabama,Blount County,7,11,4054,2076,1978,2003,1926,36,19,11,9,5,3,2,1,19,20,2022,1946,37,22,27,26,7,5,2,2,1958,1901,1888,1851,36,18,11,9,5,3,1,1,17,19,1905,1870,37,21,25,25,7,5,1,2,118,77,115,75,0,1,0,0,0,0,1,0,2,1,117,76,0,1,2,1,0,0,1,0 -050,01,009,Alabama,Blount County,7,12,3817,1883,1934,1831,1864,22,30,8,9,5,9,2,0,15,22,1844,1885,25,34,21,26,5,12,3,1,1800,1859,1751,1796,20,28,8,8,5,8,2,0,14,19,1763,1815,23,30,20,24,5,10,3,0,83,75,80,68,2,2,0,1,0,1,0,0,1,3,81,70,2,4,1,2,0,2,0,1 -050,01,009,Alabama,Blount County,7,13,3570,1734,1836,1664,1776,31,27,14,10,4,6,2,1,19,16,1683,1792,33,28,29,21,6,9,2,2,1680,1809,1615,1751,30,25,13,10,4,6,0,1,18,16,1633,1767,32,26,28,21,5,9,0,2,54,27,49,25,1,2,1,0,0,0,2,0,1,0,50,25,1,2,1,0,1,0,2,0 -050,01,009,Alabama,Blount County,7,14,3341,1554,1787,1505,1741,18,23,14,9,2,4,0,1,15,9,1519,1749,19,25,27,17,4,4,0,1,1509,1759,1463,1715,15,22,14,9,2,3,0,1,15,9,1477,1723,16,24,27,17,4,3,0,1,45,28,42,26,3,1,0,0,0,1,0,0,0,0,42,26,3,1,0,0,0,1,0,0 -050,01,009,Alabama,Blount County,7,15,2518,1163,1355,1133,1318,13,16,5,7,2,7,0,1,10,6,1143,1322,14,17,13,12,3,8,0,2,1145,1326,1117,1290,12,16,5,7,2,7,0,0,9,6,1126,1294,13,17,12,12,3,8,0,1,18,29,16,28,1,0,0,0,0,0,0,1,1,0,17,28,1,0,1,0,0,0,0,1 -050,01,009,Alabama,Blount County,7,16,1795,847,948,828,928,6,10,5,2,0,0,0,1,8,7,836,933,6,13,13,8,0,0,0,1,834,940,815,920,6,10,5,2,0,0,0,1,8,7,823,925,6,13,13,8,0,0,0,1,13,8,13,8,0,0,0,0,0,0,0,0,0,0,13,8,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,7,17,1135,472,663,463,651,4,6,4,3,0,0,0,0,1,3,464,653,4,6,5,5,0,1,0,1,462,660,453,648,4,6,4,3,0,0,0,0,1,3,454,650,4,6,5,5,0,1,0,1,10,3,10,3,0,0,0,0,0,0,0,0,0,0,10,3,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,7,18,953,314,639,302,623,6,8,4,2,0,0,1,0,1,6,303,629,7,9,4,8,0,0,1,0,303,635,292,619,6,8,4,2,0,0,0,0,1,6,293,625,7,9,4,8,0,0,0,0,11,4,10,4,0,0,0,0,0,0,1,0,0,0,10,4,0,0,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,8,0,57535,28351,29184,27242,28040,499,421,174,177,72,89,39,24,325,433,27544,28450,612,570,370,414,118,156,46,45,25658,26862,24695,25864,448,384,135,148,63,83,14,7,303,376,24978,26221,548,514,322,351,103,142,21,22,2693,2322,2547,2176,51,37,39,29,9,6,25,17,22,57,2566,2229,64,56,48,63,15,14,25,23 -050,01,009,Alabama,Blount County,8,1,3505,1775,1730,1678,1618,30,31,2,5,11,3,2,0,52,73,1726,1689,59,72,20,22,22,18,3,2,1528,1486,1441,1385,26,28,2,2,7,1,0,0,52,70,1489,1453,55,68,20,18,18,15,1,2,247,244,237,233,4,3,0,3,4,2,2,0,0,3,237,236,4,4,0,4,4,3,2,0 -050,01,009,Alabama,Blount County,8,2,3689,1840,1849,1750,1745,38,31,9,13,6,6,0,3,37,51,1784,1794,57,58,20,34,17,12,0,5,1504,1533,1431,1458,33,27,2,9,3,5,0,0,35,34,1464,1490,51,45,13,21,12,11,0,1,336,316,319,287,5,4,7,4,3,1,0,3,2,17,320,304,6,13,7,13,5,1,0,4 -050,01,009,Alabama,Blount County,8,3,3871,1903,1968,1815,1855,33,37,19,9,5,3,6,2,25,62,1839,1914,46,60,28,42,12,13,7,4,1639,1675,1570,1593,32,31,10,8,4,3,1,1,22,39,1591,1630,42,49,18,25,10,8,2,2,264,293,245,262,1,6,9,1,1,0,5,1,3,23,248,284,4,11,10,17,2,5,5,2 -050,01,009,Alabama,Blount County,8,4,3666,1946,1720,1864,1628,34,34,14,14,6,7,4,2,24,35,1885,1661,43,49,24,32,11,12,7,4,1732,1513,1658,1429,31,31,13,13,6,7,2,0,22,33,1677,1460,40,45,21,30,11,12,5,2,214,207,206,199,3,3,1,1,0,0,2,2,2,2,208,201,3,4,3,2,0,0,2,2 -050,01,009,Alabama,Blount County,8,5,3416,1777,1639,1688,1575,53,17,7,13,4,2,3,4,22,28,1707,1600,65,26,17,26,8,8,3,8,1555,1452,1474,1398,51,14,6,11,4,2,2,0,18,27,1490,1423,60,23,15,23,7,8,2,3,222,187,214,177,2,3,1,2,0,0,1,4,4,1,217,177,5,3,2,3,1,0,1,5 -050,01,009,Alabama,Blount County,8,6,3278,1641,1637,1581,1578,36,11,7,16,4,8,3,3,10,21,1591,1598,40,15,13,25,4,16,3,5,1433,1495,1385,1450,29,9,4,9,3,7,2,1,10,19,1395,1468,33,13,10,17,3,14,2,3,208,142,196,128,7,2,3,7,1,1,1,2,0,2,196,130,7,2,3,8,1,2,1,2 -050,01,009,Alabama,Blount County,8,7,3345,1659,1686,1602,1641,34,18,10,13,1,6,1,2,11,6,1613,1644,37,21,18,17,1,6,1,4,1390,1505,1354,1468,21,17,5,9,1,6,0,1,9,4,1363,1471,23,20,12,11,1,6,0,1,269,181,248,173,13,1,5,4,0,0,1,1,2,2,250,173,14,1,6,6,0,0,1,3 -050,01,009,Alabama,Blount County,8,8,3506,1750,1756,1679,1675,36,41,12,16,7,6,5,1,11,17,1690,1691,39,44,20,29,7,8,5,1,1505,1579,1451,1508,29,35,6,14,7,6,2,0,10,16,1461,1523,31,38,14,26,7,8,2,0,245,177,228,167,7,6,6,2,0,0,3,1,1,1,229,168,8,6,6,3,0,0,3,1 -050,01,009,Alabama,Blount County,8,9,3807,1883,1924,1820,1857,29,24,12,9,1,10,4,1,17,23,1837,1879,32,29,24,25,2,12,5,2,1698,1743,1646,1685,27,22,10,5,1,10,0,0,14,21,1660,1705,29,26,21,21,1,11,1,1,185,181,174,172,2,2,2,4,0,0,4,1,3,2,177,174,3,3,3,4,1,1,4,1 -050,01,009,Alabama,Blount County,8,10,3969,1993,1976,1907,1908,40,29,16,11,7,6,4,1,19,21,1926,1928,43,32,31,26,8,10,4,3,1855,1853,1777,1791,38,26,12,11,7,5,2,0,19,20,1796,1810,41,29,27,26,8,9,2,1,138,123,130,117,2,3,4,0,0,1,2,1,0,1,130,118,2,3,4,0,0,1,2,2 -050,01,009,Alabama,Blount County,8,11,4043,2055,1988,1984,1926,36,22,8,8,4,6,2,1,21,25,2000,1949,40,26,27,30,8,8,2,1,1944,1903,1876,1842,36,22,8,8,4,6,1,1,19,24,1891,1864,39,25,26,29,7,8,1,1,111,85,108,84,0,0,0,0,0,0,1,0,2,1,109,85,1,1,1,1,1,0,1,0 -050,01,009,Alabama,Blount County,8,12,3830,1914,1916,1856,1854,22,31,9,9,6,4,2,0,19,18,1874,1871,26,36,24,22,6,5,3,1,1824,1852,1767,1795,22,29,9,8,6,4,2,0,18,16,1784,1810,25,33,24,20,6,5,3,1,90,64,89,59,0,2,0,1,0,0,0,0,1,2,90,61,1,3,0,2,0,0,0,0 -050,01,009,Alabama,Blount County,8,13,3615,1738,1877,1676,1806,26,29,11,17,4,9,1,1,20,15,1695,1821,28,30,31,28,4,12,1,2,1677,1836,1619,1766,24,28,10,17,4,9,0,1,20,15,1638,1781,26,29,30,28,4,12,0,2,61,41,57,40,2,1,1,0,0,0,1,0,0,0,57,40,2,1,1,0,0,0,1,0 -050,01,009,Alabama,Blount County,8,14,3425,1621,1804,1565,1754,20,26,18,7,2,5,1,0,15,12,1580,1766,21,29,33,16,3,5,1,0,1572,1773,1520,1724,18,26,18,7,2,4,0,0,14,12,1534,1736,18,29,32,16,3,4,0,0,49,31,45,30,2,0,0,0,0,1,1,0,1,0,46,30,3,0,1,0,0,1,1,0 -050,01,009,Alabama,Blount County,8,15,2591,1183,1408,1149,1367,15,13,6,9,3,7,0,2,10,10,1157,1376,18,14,15,18,3,8,0,2,1168,1374,1135,1335,15,12,6,9,3,7,0,1,9,10,1142,1344,18,13,14,18,3,8,0,1,15,34,14,32,0,1,0,0,0,0,0,1,1,0,15,32,0,1,1,0,0,0,0,1 -050,01,009,Alabama,Blount County,8,16,1827,863,964,842,943,6,12,4,3,1,1,0,1,10,4,852,947,6,13,13,6,2,2,0,1,846,955,826,934,5,12,4,3,1,1,0,1,10,4,836,938,5,13,13,6,2,2,0,1,17,9,16,9,1,0,0,0,0,0,0,0,0,0,16,9,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,8,17,1147,476,671,468,657,4,5,4,3,0,0,0,0,0,6,468,663,4,6,4,8,0,1,0,0,469,669,461,655,4,5,4,3,0,0,0,0,0,6,461,661,4,6,4,8,0,1,0,0,7,2,7,2,0,0,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,8,18,1005,334,671,318,653,7,10,6,2,0,0,1,0,2,6,320,659,8,10,8,8,0,0,1,0,319,666,304,648,7,10,6,2,0,0,0,0,2,6,306,654,8,10,8,8,0,0,0,0,15,5,14,5,0,0,0,0,0,0,1,0,0,0,14,5,0,0,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,9,0,57487,28298,29189,27191,28044,478,421,171,175,74,87,39,24,345,438,27517,28456,595,577,363,420,131,153,48,40,25562,26778,24607,25784,425,382,127,134,66,80,14,7,323,391,24914,26154,526,517,314,352,117,136,20,21,2736,2411,2584,2260,53,39,44,41,8,7,25,17,22,47,2603,2302,69,60,49,68,14,17,28,19 -050,01,009,Alabama,Blount County,9,1,3414,1700,1714,1603,1595,27,27,3,16,15,7,2,0,50,69,1652,1661,55,64,16,34,25,22,4,2,1451,1455,1367,1362,19,23,3,2,12,3,0,0,50,65,1416,1424,47,60,16,17,22,17,2,2,249,259,236,233,8,4,0,14,3,4,2,0,0,4,236,237,8,4,0,17,3,5,2,0 -050,01,009,Alabama,Blount County,9,2,3727,1902,1825,1804,1724,37,26,8,9,6,4,0,2,47,60,1849,1777,61,61,23,30,16,16,0,5,1574,1518,1490,1440,34,22,2,5,3,3,0,0,45,48,1533,1485,57,49,16,20,13,13,0,2,328,307,314,284,3,4,6,4,3,1,0,2,2,12,316,292,4,12,7,10,3,3,0,3 -050,01,009,Alabama,Blount County,9,3,3817,1858,1959,1765,1843,37,41,15,8,4,7,5,2,32,58,1795,1900,51,65,26,33,12,21,6,4,1588,1657,1515,1564,33,38,7,6,3,7,1,1,29,41,1543,1605,46,55,17,22,10,15,1,2,270,302,250,279,4,3,8,2,1,0,4,1,3,17,252,295,5,10,9,11,2,6,5,2 -050,01,009,Alabama,Blount County,9,4,3694,1932,1762,1843,1672,31,39,14,8,6,4,5,3,33,36,1874,1708,43,53,29,25,13,10,6,4,1691,1529,1613,1454,29,32,10,5,6,4,2,0,31,34,1642,1488,40,44,25,21,12,10,3,1,241,233,230,218,2,7,4,3,0,0,3,3,2,2,232,220,3,9,4,4,1,0,3,3 -050,01,009,Alabama,Blount County,9,5,3289,1706,1583,1632,1512,36,18,7,19,5,4,3,3,23,27,1654,1537,48,26,18,36,6,7,3,5,1491,1385,1424,1321,34,17,7,17,5,4,2,0,19,26,1442,1345,42,25,18,33,6,7,2,2,215,198,208,191,2,1,0,2,0,0,1,3,4,1,212,192,6,1,0,3,0,0,1,3 -050,01,009,Alabama,Blount County,9,6,3426,1716,1710,1644,1658,50,14,8,8,3,6,3,3,8,21,1651,1676,52,22,14,20,4,10,3,4,1510,1562,1450,1522,44,10,4,5,2,5,2,1,8,19,1457,1538,46,17,10,16,3,9,2,2,206,148,194,136,6,4,4,3,1,1,1,2,0,2,194,138,6,5,4,4,1,1,1,2 -050,01,009,Alabama,Blount County,9,7,3290,1628,1662,1573,1603,34,21,8,18,2,5,1,3,10,12,1583,1614,38,24,13,26,3,6,1,4,1379,1483,1342,1437,22,20,4,10,2,5,0,1,9,10,1351,1446,25,23,9,16,3,6,0,2,249,179,231,166,12,1,4,8,0,0,1,2,1,2,232,168,13,1,4,10,0,0,1,2 -050,01,009,Alabama,Blount County,9,8,3523,1778,1745,1712,1672,30,36,15,18,7,4,4,1,10,14,1721,1684,33,41,22,28,11,5,5,2,1532,1567,1486,1503,21,31,8,16,7,4,2,0,8,13,1493,1514,22,36,14,25,10,5,2,1,246,178,226,169,9,5,7,2,0,0,2,1,2,1,228,170,11,5,8,3,1,0,3,1 -050,01,009,Alabama,Blount County,9,9,3637,1783,1854,1720,1795,28,23,12,7,2,9,5,0,16,20,1735,1814,31,27,23,24,5,9,6,1,1579,1668,1528,1615,27,21,8,5,2,9,0,0,14,18,1541,1632,29,25,19,20,4,9,1,1,204,186,192,180,1,2,4,2,0,0,5,0,2,2,194,182,2,2,4,4,1,0,5,0 -050,01,009,Alabama,Blount County,9,10,3975,2009,1966,1933,1912,37,26,15,6,5,4,2,2,17,16,1949,1927,39,30,28,19,8,5,2,2,1865,1838,1800,1790,34,23,10,6,5,4,0,0,16,15,1815,1804,35,26,23,18,8,5,0,0,144,128,133,122,3,3,5,0,0,0,2,2,1,1,134,123,4,4,5,1,0,0,2,2 -050,01,009,Alabama,Blount County,9,11,3993,2024,1969,1963,1897,30,22,6,9,4,7,4,1,17,33,1980,1928,31,27,22,37,5,10,4,1,1900,1869,1841,1799,30,21,5,9,4,7,3,1,17,32,1858,1829,31,25,21,37,5,10,3,1,124,100,122,98,0,1,1,0,0,0,1,0,0,1,122,99,0,2,1,0,0,0,1,0 -050,01,009,Alabama,Blount County,9,12,3846,1952,1894,1884,1840,22,26,13,8,6,2,2,0,25,18,1906,1857,27,29,35,19,9,6,2,1,1864,1840,1799,1790,22,25,13,7,6,2,2,0,22,16,1818,1805,25,27,33,18,9,5,2,1,88,54,85,50,0,1,0,1,0,0,0,0,3,2,88,52,2,2,2,1,0,1,0,0 -050,01,009,Alabama,Blount County,9,13,3679,1757,1922,1701,1852,25,29,7,14,4,10,1,1,19,16,1719,1868,27,31,25,28,4,10,1,1,1693,1870,1639,1802,25,27,6,14,4,10,0,1,19,16,1657,1818,27,29,24,28,4,10,0,1,64,52,62,50,0,2,1,0,0,0,1,0,0,0,62,50,0,2,1,0,0,0,1,0 -050,01,009,Alabama,Blount County,9,14,3470,1637,1833,1586,1776,19,31,18,9,1,5,1,0,12,12,1596,1787,22,33,27,20,3,5,1,0,1587,1805,1540,1749,17,31,18,9,1,4,0,0,11,12,1550,1760,19,33,27,20,2,4,0,0,50,28,46,27,2,0,0,0,0,1,1,0,1,0,46,27,3,0,0,0,1,1,1,0 -050,01,009,Alabama,Blount County,9,15,2649,1218,1431,1180,1390,15,16,8,8,3,4,0,2,12,11,1192,1401,15,16,19,18,3,5,1,2,1197,1391,1159,1352,15,15,8,8,3,4,0,1,12,11,1171,1363,15,15,19,18,3,5,1,1,21,40,21,38,0,1,0,0,0,0,0,1,0,0,21,38,0,1,0,0,0,0,0,1 -050,01,009,Alabama,Blount County,9,16,1813,838,975,816,954,7,10,4,5,1,4,0,0,10,2,825,956,9,11,10,6,3,4,2,0,825,965,805,944,6,10,4,5,1,4,0,0,9,2,814,946,7,11,10,6,2,4,1,0,13,10,11,10,1,0,0,0,0,0,0,0,1,0,11,10,2,0,0,0,1,0,1,0 -050,01,009,Alabama,Blount County,9,17,1223,514,709,502,693,6,6,4,2,0,0,0,1,2,7,504,699,6,7,6,8,0,1,0,2,506,706,494,690,6,6,4,2,0,0,0,1,2,7,496,696,6,7,6,8,0,1,0,2,8,3,8,3,0,0,0,0,0,0,0,0,0,0,8,3,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,9,18,1022,346,676,330,656,7,10,6,3,0,1,1,0,2,6,332,662,7,10,7,9,1,1,1,0,330,670,315,650,7,10,6,3,0,1,0,0,2,6,317,656,7,10,7,9,1,1,0,0,16,6,15,6,0,0,0,0,0,0,1,0,0,0,15,6,0,0,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,10,0,57801,28526,29275,27365,28105,489,442,180,177,88,89,41,24,363,438,27698,28511,616,605,394,420,142,162,52,39,25687,26805,24699,25788,428,403,134,139,79,83,14,7,333,385,25006,26148,541,543,331,352,130,144,23,18,2839,2470,2666,2317,61,39,46,38,9,6,27,17,30,53,2692,2363,75,62,63,68,12,18,29,21 -050,01,009,Alabama,Blount County,10,1,3466,1782,1684,1669,1584,30,22,2,10,20,9,3,1,58,58,1725,1638,62,57,18,24,34,20,3,3,1516,1437,1422,1354,20,20,2,3,19,5,0,0,53,55,1473,1406,50,53,16,16,32,15,0,2,266,247,247,230,10,2,0,7,1,4,3,1,5,3,252,232,12,4,2,8,2,5,3,1 -050,01,009,Alabama,Blount County,10,2,3725,1897,1828,1799,1718,36,31,10,11,7,3,0,0,45,65,1841,1782,60,63,25,36,16,15,1,1,1585,1528,1500,1440,33,25,5,5,4,2,0,0,43,56,1540,1496,56,54,19,24,13,14,1,0,312,300,299,278,3,6,5,6,3,1,0,0,2,9,301,286,4,9,6,12,3,1,0,1 -050,01,009,Alabama,Blount County,10,3,3859,1884,1975,1787,1854,43,39,11,9,6,8,5,4,32,61,1818,1910,59,67,24,38,10,20,5,8,1601,1643,1525,1552,39,36,4,8,4,8,1,1,28,38,1552,1588,52,55,16,22,8,13,1,3,283,332,262,302,4,3,7,1,2,0,4,3,4,23,266,322,7,12,8,16,2,7,4,5 -050,01,009,Alabama,Blount County,10,4,3679,1914,1765,1816,1668,36,43,20,11,5,2,4,3,33,38,1844,1704,54,57,34,29,10,10,6,5,1647,1528,1564,1448,33,37,13,6,5,2,2,0,30,35,1589,1481,50,50,25,22,10,10,4,2,267,237,252,220,3,6,7,5,0,0,2,3,3,3,255,223,4,7,9,7,0,0,2,3 -050,01,009,Alabama,Blount County,10,5,3239,1683,1556,1607,1481,34,25,6,14,6,4,5,3,25,29,1630,1507,42,39,20,30,11,9,6,4,1466,1353,1402,1287,29,23,5,11,6,4,2,0,22,28,1422,1312,34,36,18,27,11,9,3,1,217,203,205,194,5,2,1,3,0,0,3,3,3,1,208,195,8,3,2,3,0,0,3,3 -050,01,009,Alabama,Blount County,10,6,3572,1776,1796,1710,1747,41,15,8,10,4,5,3,3,10,16,1719,1761,43,22,17,19,7,8,3,3,1557,1643,1500,1604,37,12,5,7,3,5,2,1,10,14,1509,1616,39,18,14,15,6,8,2,1,219,153,210,143,4,3,3,3,1,0,1,2,0,2,210,145,4,4,3,4,1,0,1,2 -050,01,009,Alabama,Blount County,10,7,3374,1672,1702,1598,1632,46,23,8,20,4,6,1,3,15,18,1610,1649,50,27,22,29,5,13,2,3,1424,1522,1373,1466,31,21,4,13,4,6,0,1,12,15,1383,1480,35,24,15,21,5,11,0,1,248,180,225,166,15,2,4,7,0,0,1,2,3,3,227,169,15,3,7,8,0,2,2,2 -050,01,009,Alabama,Blount County,10,8,3458,1756,1702,1699,1631,26,34,13,18,6,5,4,1,8,13,1706,1644,28,38,18,27,7,6,5,1,1524,1525,1485,1462,18,31,7,15,6,5,2,0,6,12,1490,1474,20,34,10,24,7,6,3,0,232,177,214,169,8,3,6,3,0,0,2,1,2,1,216,170,8,4,8,3,0,0,2,1 -050,01,009,Alabama,Blount County,10,9,3581,1758,1823,1690,1769,30,25,13,5,3,7,4,0,18,17,1708,1784,31,29,28,18,4,9,5,1,1537,1635,1482,1589,28,21,7,4,3,7,0,0,17,14,1499,1602,29,24,21,16,4,8,1,0,221,188,208,180,2,4,6,1,0,0,4,0,1,3,209,182,2,5,7,2,0,1,4,1 -050,01,009,Alabama,Blount County,10,10,3957,1993,1964,1923,1901,30,31,14,8,5,6,3,2,18,16,1940,1915,32,36,27,20,8,6,4,3,1835,1825,1779,1770,26,28,11,7,3,6,0,0,16,14,1794,1782,28,32,22,18,6,6,1,1,158,139,144,131,4,3,3,1,2,0,3,2,2,2,146,133,4,4,5,2,2,0,3,2 -050,01,009,Alabama,Blount County,10,11,3934,1964,1970,1900,1897,28,23,10,10,4,7,4,0,18,33,1916,1928,31,29,26,35,5,11,4,1,1847,1864,1787,1793,28,22,7,10,4,7,3,0,18,32,1803,1824,31,27,23,35,5,10,3,1,117,106,113,104,0,1,3,0,0,0,1,0,0,1,113,104,0,2,3,0,0,1,1,0 -050,01,009,Alabama,Blount County,10,12,3885,2025,1860,1954,1811,28,22,15,5,6,4,1,1,21,17,1972,1826,33,26,32,19,9,6,2,1,1921,1799,1853,1754,28,21,15,4,6,4,1,1,18,15,1870,1767,31,24,30,16,7,6,2,1,104,61,101,57,0,1,0,1,0,0,0,0,3,2,102,59,2,2,2,3,2,0,0,0 -050,01,009,Alabama,Blount County,10,13,3715,1780,1935,1722,1858,22,34,8,13,5,9,2,1,21,20,1742,1877,24,34,26,31,7,11,2,2,1707,1881,1651,1805,22,33,7,13,5,9,1,1,21,20,1671,1824,24,33,25,31,7,11,1,2,73,54,71,53,0,1,1,0,0,0,1,0,0,0,71,53,0,1,1,0,0,0,1,0 -050,01,009,Alabama,Blount County,10,14,3315,1560,1755,1507,1695,21,30,17,12,2,5,1,0,12,13,1516,1708,25,31,26,23,3,7,2,0,1511,1728,1461,1669,20,29,17,12,2,5,0,0,11,13,1469,1682,23,30,26,23,3,7,1,0,49,27,46,26,1,1,0,0,0,0,1,0,1,0,47,26,2,1,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,10,15,2838,1293,1545,1251,1506,19,16,7,10,1,3,0,1,15,9,1266,1514,19,17,21,17,2,4,0,2,1257,1507,1216,1470,18,15,7,10,1,2,0,1,15,9,1231,1478,18,16,21,17,2,3,0,2,36,38,35,36,1,1,0,0,0,1,0,0,0,0,35,36,1,1,0,0,0,1,0,0 -050,01,009,Alabama,Blount County,10,16,1875,850,1025,828,1001,6,11,4,5,4,5,0,0,8,3,834,1004,9,11,10,8,4,5,1,0,839,1008,819,984,5,11,4,5,4,5,0,0,7,3,825,987,7,11,10,8,4,5,0,0,11,17,9,17,1,0,0,0,0,0,0,0,1,0,9,17,2,0,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,10,17,1275,565,710,551,694,5,8,5,2,0,0,0,1,4,5,555,696,5,11,9,6,0,1,0,1,558,705,544,689,5,8,5,2,0,0,0,1,4,5,548,691,5,11,9,6,0,1,0,1,7,5,7,5,0,0,0,0,0,0,0,0,0,0,7,5,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,10,18,1054,374,680,354,658,8,10,9,4,0,1,1,0,2,7,356,664,9,11,11,11,0,1,1,0,355,674,336,652,8,10,9,4,0,1,0,0,2,7,338,658,9,11,11,11,0,1,0,0,19,6,18,6,0,0,0,0,0,0,1,0,0,0,18,6,0,0,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,11,0,57770,28522,29248,27326,28075,493,430,194,182,95,99,43,24,371,438,27672,28487,630,590,390,424,160,167,55,36,25637,26762,24620,25738,431,391,145,145,86,91,14,7,341,390,24938,26112,551,534,329,356,146,152,23,15,2885,2486,2706,2337,62,39,49,37,9,8,29,17,30,48,2734,2375,79,56,61,68,14,15,32,21 -050,01,009,Alabama,Blount County,11,1,3463,1794,1669,1670,1574,26,21,12,12,24,7,3,1,59,54,1726,1624,61,54,27,28,34,19,7,1,1534,1433,1432,1356,20,20,6,2,23,4,0,0,53,51,1482,1405,51,52,19,15,33,15,3,0,260,236,238,218,6,1,6,10,1,3,3,1,6,3,244,219,10,2,8,13,1,4,4,1 -050,01,009,Alabama,Blount County,11,2,3615,1834,1781,1738,1672,35,31,6,11,9,7,1,0,45,60,1782,1729,59,63,22,30,17,17,1,3,1530,1494,1446,1400,30,26,5,7,6,4,0,0,43,57,1488,1455,54,57,19,24,14,14,0,2,304,287,292,272,5,5,1,4,3,3,1,0,2,3,294,274,5,6,3,6,3,3,1,1 -050,01,009,Alabama,Blount County,11,3,3914,1929,1985,1826,1873,45,35,11,12,7,6,4,4,36,55,1858,1924,65,59,21,37,15,15,6,6,1624,1652,1545,1565,38,33,2,11,5,6,1,1,33,36,1574,1599,55,51,12,25,13,11,3,2,305,333,281,308,7,2,9,1,2,0,3,3,3,19,284,325,10,8,9,12,2,4,3,4 -050,01,009,Alabama,Blount County,11,4,3675,1893,1782,1789,1673,35,40,21,12,5,5,5,3,38,49,1825,1718,51,62,38,33,12,17,5,6,1626,1529,1539,1443,33,33,13,8,5,5,2,0,34,40,1571,1480,47,51,28,23,12,17,2,3,267,253,250,230,2,7,8,4,0,0,3,3,4,9,254,238,4,11,10,10,0,0,3,3 -050,01,009,Alabama,Blount County,11,5,3177,1673,1504,1600,1424,35,31,11,11,6,6,5,1,16,31,1612,1454,43,44,20,27,10,11,5,1,1457,1319,1395,1245,30,29,10,9,6,6,2,0,14,30,1405,1274,37,41,17,25,10,11,2,0,216,185,205,179,5,2,1,2,0,0,3,1,2,1,207,180,6,3,3,2,0,0,3,1 -050,01,009,Alabama,Blount County,11,6,3572,1789,1783,1732,1739,27,14,6,9,3,4,3,4,18,13,1748,1752,33,17,17,18,6,7,5,4,1568,1609,1520,1576,24,11,4,6,2,4,1,1,17,11,1535,1587,29,14,15,14,5,6,3,1,221,174,212,163,3,3,2,3,1,0,2,3,1,2,213,165,4,3,2,4,1,1,2,3 -050,01,009,Alabama,Blount County,11,7,3372,1683,1689,1600,1622,55,18,9,18,5,5,2,4,12,22,1611,1641,58,24,15,31,9,10,3,5,1448,1544,1384,1489,41,16,6,12,5,5,1,1,11,21,1394,1508,44,22,11,24,9,10,2,1,235,145,216,133,14,2,3,6,0,0,1,3,1,1,217,133,14,2,4,7,0,0,1,4 -050,01,009,Alabama,Blount County,11,8,3494,1764,1730,1701,1664,34,28,13,20,3,8,2,0,11,10,1710,1673,39,32,19,27,5,8,2,0,1512,1546,1466,1487,25,26,8,16,3,8,1,0,9,9,1474,1495,29,30,13,22,4,8,1,0,252,184,235,177,9,2,5,4,0,0,1,0,2,1,236,178,10,2,6,5,1,0,1,0 -050,01,009,Alabama,Blount County,11,9,3507,1722,1785,1652,1727,31,28,14,7,6,5,4,1,15,17,1666,1743,33,32,27,19,7,8,4,1,1498,1596,1443,1548,27,23,7,6,6,4,1,0,14,15,1456,1563,28,25,20,18,7,6,1,0,224,189,209,179,4,5,7,1,0,1,3,1,1,2,210,180,5,7,7,1,0,2,3,1 -050,01,009,Alabama,Blount County,11,10,3912,1966,1946,1897,1881,33,32,11,7,6,8,4,1,15,17,1912,1897,36,36,20,20,9,8,4,2,1811,1798,1754,1739,29,30,11,6,4,8,0,0,13,15,1767,1754,31,34,20,17,6,8,0,0,155,148,143,142,4,2,0,1,2,0,4,1,2,2,145,143,5,2,0,3,3,0,4,2 -050,01,009,Alabama,Blount County,11,11,3882,1912,1970,1846,1899,25,22,16,12,1,7,4,1,20,29,1863,1928,29,26,32,34,4,10,4,2,1792,1858,1734,1792,25,20,10,12,1,7,2,0,20,27,1751,1819,29,23,26,33,4,10,2,1,120,112,112,107,0,2,6,0,0,0,2,1,0,2,112,109,0,3,6,1,0,0,2,1 -050,01,009,Alabama,Blount County,11,12,3938,2037,1901,1969,1847,29,22,13,6,5,6,2,1,19,19,1988,1866,32,25,26,23,7,6,4,1,1922,1826,1857,1775,29,21,13,6,5,6,2,1,16,17,1873,1792,31,24,25,21,6,6,3,1,115,75,112,72,0,1,0,0,0,0,0,0,3,2,115,74,1,1,1,2,1,0,1,0 -050,01,009,Alabama,Blount County,11,13,3661,1781,1880,1732,1797,17,39,7,11,5,10,2,0,18,23,1750,1817,19,43,20,30,10,14,2,0,1702,1818,1656,1740,17,36,6,10,5,10,1,0,17,22,1673,1760,18,39,19,28,10,14,1,0,79,62,76,57,0,3,1,1,0,0,1,0,1,1,77,57,1,4,1,2,0,0,1,0 -050,01,009,Alabama,Blount County,11,14,3248,1536,1712,1475,1650,24,29,14,12,4,5,1,1,18,15,1492,1665,26,31,30,25,6,5,1,1,1488,1686,1429,1625,24,28,14,12,4,5,0,1,17,15,1445,1640,26,30,29,25,5,5,0,1,48,26,46,25,0,1,0,0,0,0,1,0,1,0,47,25,0,1,1,0,1,0,1,0 -050,01,009,Alabama,Blount County,11,15,2946,1330,1616,1284,1583,18,14,9,7,2,1,0,1,17,10,1301,1592,18,15,26,16,2,1,0,2,1286,1577,1242,1546,16,13,9,7,2,0,0,1,17,10,1259,1555,16,14,26,16,2,0,0,2,44,39,42,37,2,1,0,0,0,1,0,0,0,0,42,37,2,1,0,0,0,1,0,0 -050,01,009,Alabama,Blount County,11,16,1997,912,1085,885,1058,11,10,4,8,3,7,0,0,9,2,893,1060,14,10,10,9,5,8,1,0,900,1059,875,1032,10,10,4,8,3,7,0,0,8,2,883,1034,12,10,10,9,4,8,0,0,12,26,10,26,1,0,0,0,0,0,0,0,1,0,10,26,2,0,0,0,1,0,1,0 -050,01,009,Alabama,Blount County,11,17,1301,558,743,545,727,4,7,5,3,1,1,0,1,3,4,548,731,4,7,7,6,2,2,0,1,550,737,537,721,4,7,5,3,1,1,0,1,3,4,540,725,4,7,7,6,2,2,0,1,8,6,8,6,0,0,0,0,0,0,0,0,0,0,8,6,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,11,18,1096,409,687,385,665,9,9,12,4,0,1,1,0,2,8,387,673,10,10,13,11,0,1,1,0,389,681,366,659,9,9,12,4,0,1,0,0,2,8,368,667,10,10,13,11,0,1,0,0,20,6,19,6,0,0,0,0,0,0,1,0,0,0,19,6,0,0,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,12,0,57840,28554,29286,27314,28094,514,465,191,175,105,95,43,25,387,432,27669,28497,655,620,402,411,172,164,62,39,25632,26740,24580,25703,452,424,138,134,96,88,14,7,352,384,24903,26064,580,564,331,346,155,146,26,17,2922,2546,2734,2391,62,41,53,41,9,7,29,18,35,48,2766,2433,75,56,71,65,17,18,36,22 -050,01,009,Alabama,Blount County,12,1,3466,1792,1674,1648,1585,34,26,12,11,28,7,2,2,68,43,1713,1627,71,48,31,25,44,15,4,2,1524,1422,1405,1353,26,24,5,2,27,4,0,0,61,39,1463,1391,60,46,19,13,42,11,1,0,268,252,243,232,8,2,7,9,1,3,2,2,7,4,250,236,11,2,12,12,2,4,3,2 -050,01,009,Alabama,Blount County,12,2,3624,1855,1769,1760,1656,31,34,7,14,9,7,3,0,45,58,1803,1712,53,65,20,35,18,16,6,1,1551,1483,1471,1384,26,31,3,8,8,5,0,0,43,55,1512,1437,48,61,15,28,16,13,3,1,304,286,289,272,5,3,4,6,1,2,3,0,2,3,291,275,5,4,5,7,2,3,3,0 -050,01,009,Alabama,Blount County,12,3,3874,1916,1958,1809,1843,46,40,11,7,8,5,2,4,40,59,1845,1900,67,63,25,30,16,21,3,5,1616,1637,1530,1548,40,37,3,6,5,5,1,1,37,40,1563,1588,58,54,17,18,13,17,2,2,300,321,279,295,6,3,8,1,3,0,1,3,3,19,282,312,9,9,8,12,3,4,1,3 -050,01,009,Alabama,Blount County,12,4,3602,1875,1727,1774,1620,37,39,21,11,3,3,6,2,34,52,1806,1667,54,63,37,32,8,13,7,4,1597,1460,1517,1376,35,31,12,6,3,3,1,0,29,44,1545,1418,49,52,26,23,8,11,1,0,278,267,257,244,2,8,9,5,0,0,5,2,5,8,261,249,5,11,11,9,0,2,6,4 -050,01,009,Alabama,Blount County,12,5,3190,1653,1537,1580,1449,33,41,6,13,8,5,4,2,22,27,1599,1475,44,50,15,27,12,9,5,3,1444,1341,1377,1263,30,38,6,10,7,5,2,0,22,25,1396,1287,41,47,15,22,11,9,3,1,209,196,203,186,3,3,0,3,1,0,2,2,0,2,203,188,3,3,0,5,1,0,2,2 -050,01,009,Alabama,Blount County,12,6,3594,1815,1779,1745,1722,34,21,9,7,3,3,2,4,22,22,1764,1742,40,27,21,19,10,8,5,5,1591,1596,1533,1549,31,19,7,3,2,3,1,1,17,21,1547,1568,37,25,15,15,7,7,3,2,224,183,212,173,3,2,2,4,1,0,1,3,5,1,217,174,3,2,6,4,3,1,2,3 -050,01,009,Alabama,Blount County,12,7,3354,1673,1681,1599,1626,49,20,7,15,5,1,4,3,9,16,1604,1640,53,27,14,25,7,3,4,4,1459,1534,1401,1491,38,17,4,10,5,1,2,1,9,14,1406,1503,42,23,11,19,7,3,2,2,214,147,198,135,11,3,3,5,0,0,2,2,0,2,198,137,11,4,3,6,0,0,2,2 -050,01,009,Alabama,Blount County,12,8,3522,1727,1795,1662,1735,36,26,14,18,3,8,1,1,11,7,1673,1741,39,30,21,20,6,10,1,1,1475,1615,1430,1563,24,24,8,14,3,8,1,0,9,6,1439,1568,26,27,14,16,6,10,1,0,252,180,232,172,12,2,6,4,0,0,0,1,2,1,234,173,13,3,7,4,0,0,0,1 -050,01,009,Alabama,Blount County,12,9,3454,1721,1733,1647,1661,39,36,11,8,7,9,4,1,13,18,1659,1674,42,43,19,20,10,11,5,4,1491,1557,1430,1494,34,32,7,7,7,8,1,0,12,16,1441,1506,37,38,15,19,9,9,2,2,230,176,217,167,5,4,4,1,0,1,3,1,1,2,218,168,5,5,4,1,1,2,3,2 -050,01,009,Alabama,Blount County,12,10,3874,1943,1931,1871,1869,30,28,15,6,6,9,4,1,17,18,1887,1886,35,32,28,20,8,10,5,2,1774,1768,1715,1712,27,26,12,4,6,9,0,0,14,17,1728,1728,30,30,25,18,7,10,1,0,169,163,156,157,3,2,3,2,0,0,4,1,3,1,159,158,5,2,3,2,1,0,4,2 -050,01,009,Alabama,Blount County,12,11,3827,1889,1938,1830,1863,22,30,14,10,4,8,4,1,15,26,1844,1887,24,33,27,33,5,11,4,2,1761,1821,1713,1752,21,27,8,10,2,8,2,0,15,24,1727,1774,23,30,21,32,3,10,2,1,128,117,117,111,1,3,6,0,2,0,2,1,0,2,117,113,1,3,6,1,2,1,2,1 -050,01,009,Alabama,Blount County,12,12,3983,2011,1972,1945,1917,31,24,10,7,5,4,2,1,18,19,1963,1936,33,26,26,20,7,8,3,3,1892,1888,1829,1835,31,23,10,7,5,4,1,1,16,18,1845,1853,33,24,24,20,6,8,1,3,119,84,116,82,0,1,0,0,0,0,1,0,2,1,118,83,0,2,2,0,1,0,2,0 -050,01,009,Alabama,Blount County,12,13,3652,1795,1857,1742,1784,18,27,8,13,6,9,2,0,19,24,1758,1807,20,31,23,32,9,11,5,0,1719,1795,1669,1726,18,26,8,12,6,9,2,0,16,22,1683,1747,19,29,22,30,8,11,3,0,76,62,73,58,0,1,0,1,0,0,0,0,3,2,75,60,1,2,1,2,1,0,2,0 -050,01,009,Alabama,Blount County,12,14,3320,1596,1724,1525,1661,31,27,14,12,4,5,2,1,20,18,1542,1678,34,30,31,29,5,5,4,1,1533,1695,1466,1635,31,24,13,12,4,5,0,1,19,18,1483,1652,34,27,29,29,5,5,1,1,63,29,59,26,0,3,1,0,0,0,2,0,1,0,59,26,0,3,2,0,0,0,3,0 -050,01,009,Alabama,Blount County,12,15,3015,1369,1646,1323,1602,17,21,11,8,2,3,0,1,16,11,1337,1612,19,22,26,19,3,3,0,1,1329,1612,1285,1570,15,20,11,8,2,2,0,1,16,11,1299,1580,17,21,26,19,3,2,0,1,40,34,38,32,2,1,0,0,0,1,0,0,0,0,38,32,2,1,0,0,0,1,0,0 -050,01,009,Alabama,Blount County,12,16,2058,920,1138,889,1111,13,9,4,9,3,7,0,0,11,2,900,1113,14,10,14,10,3,7,0,0,903,1101,874,1074,12,9,4,9,3,7,0,0,10,2,884,1076,13,10,13,10,3,7,0,0,17,37,15,37,1,0,0,0,0,0,0,0,1,0,16,37,1,0,1,0,0,0,0,0 -050,01,009,Alabama,Blount County,12,17,1320,597,723,580,708,5,8,6,2,1,0,0,1,5,4,585,712,5,10,11,4,1,0,0,1,587,717,570,702,5,8,6,2,1,0,0,1,5,4,575,706,5,10,11,4,1,0,0,1,10,6,10,6,0,0,0,0,0,0,0,0,0,0,10,6,0,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,12,18,1111,407,704,385,682,8,8,11,4,0,2,1,0,2,8,387,688,8,10,13,11,0,3,1,0,386,698,365,676,8,8,11,4,0,2,0,0,2,8,367,682,8,10,13,11,0,3,0,0,21,6,20,6,0,0,0,0,0,0,1,0,0,0,20,6,0,0,0,0,0,0,1,0 -050,01,009,Alabama,Blount County,13,0,57879,28617,29262,27362,28029,526,473,191,173,115,105,44,26,379,456,27717,28455,662,656,396,408,175,183,52,42,25675,26680,24619,25619,458,426,138,130,106,97,14,7,340,401,24939,25996,575,581,324,334,160,166,21,18,2942,2582,2743,2410,68,47,53,43,9,8,30,19,39,55,2778,2459,87,75,72,74,15,17,31,24 -050,01,009,Alabama,Blount County,13,1,3437,1792,1645,1656,1534,34,26,13,13,27,8,3,3,59,61,1713,1592,67,65,29,30,37,20,5,5,1536,1377,1425,1292,27,24,6,4,27,5,0,0,51,52,1474,1342,57,56,19,17,35,15,2,1,256,268,231,242,7,2,7,9,0,3,3,3,8,9,239,250,10,9,10,13,2,5,3,4 -050,01,009,Alabama,Blount County,13,2,3590,1807,1783,1714,1665,30,42,6,11,13,6,3,0,41,59,1752,1723,48,74,19,27,24,17,5,2,1523,1517,1450,1411,20,39,2,6,12,5,0,0,39,56,1487,1467,38,69,14,21,22,16,1,1,284,266,264,254,10,3,4,5,1,1,3,0,2,3,265,256,10,5,5,6,2,1,4,1 -050,01,009,Alabama,Blount County,13,3,3810,1903,1907,1797,1809,43,33,8,9,12,6,0,3,43,47,1838,1854,65,55,24,27,21,16,0,3,1581,1583,1491,1505,38,28,2,6,9,5,0,0,41,39,1530,1542,58,48,18,18,18,14,0,0,322,324,306,304,5,5,6,3,3,1,0,3,2,8,308,312,7,7,6,9,3,2,0,3 -050,01,009,Alabama,Blount County,13,4,3602,1816,1786,1719,1683,38,31,19,8,5,6,6,2,29,56,1746,1736,50,55,33,34,8,17,8,3,1546,1505,1472,1431,35,25,9,6,4,6,1,1,25,36,1496,1465,45,42,20,19,7,15,3,2,270,281,247,252,3,6,10,2,1,0,5,1,4,20,250,271,5,13,13,15,1,2,5,1 -050,01,009,Alabama,Blount County,13,5,3181,1670,1511,1592,1418,35,43,8,13,7,4,4,2,24,31,1616,1449,44,52,20,29,10,14,4,5,1458,1313,1388,1238,32,37,7,6,6,4,2,0,23,28,1411,1266,40,45,19,20,9,13,2,2,212,198,204,180,3,6,1,7,1,0,2,2,1,3,205,183,4,7,1,9,1,1,2,3 -050,01,009,Alabama,Blount County,13,6,3561,1821,1740,1741,1665,42,29,9,9,3,6,4,4,22,27,1761,1688,50,40,22,24,8,11,4,7,1603,1550,1536,1487,38,26,7,5,3,6,2,0,17,26,1551,1510,44,36,16,20,8,10,2,2,218,190,205,178,4,3,2,4,0,0,2,4,5,1,210,178,6,4,6,4,0,1,2,5 -050,01,009,Alabama,Blount County,13,7,3428,1698,1730,1627,1684,44,12,9,10,2,5,3,3,13,16,1636,1698,50,17,15,19,7,10,3,3,1499,1582,1440,1546,37,10,6,5,1,5,2,1,13,15,1449,1560,43,14,12,13,6,10,2,1,199,148,187,138,7,2,3,5,1,0,1,2,0,1,187,138,7,3,3,6,1,0,1,2 -050,01,009,Alabama,Blount County,13,8,3424,1700,1724,1639,1665,36,29,9,13,4,9,1,2,11,6,1649,1670,41,35,14,15,5,10,2,2,1440,1557,1402,1507,21,27,6,9,4,9,0,1,7,4,1408,1510,23,31,10,9,5,10,1,1,260,167,237,158,15,2,3,4,0,0,1,1,4,2,241,160,18,4,4,6,0,0,1,1 -050,01,009,Alabama,Blount County,13,9,3525,1761,1764,1676,1685,46,37,14,14,8,9,5,1,12,18,1688,1700,47,42,24,25,9,13,5,2,1524,1592,1458,1523,39,31,8,13,8,8,2,0,9,17,1467,1537,40,35,15,24,9,12,2,1,237,172,218,162,7,6,6,1,0,1,3,1,3,1,221,163,7,7,9,1,0,1,3,1 -050,01,009,Alabama,Blount County,13,10,3747,1879,1868,1811,1804,26,29,14,6,6,8,4,1,18,20,1828,1822,30,35,27,21,9,8,4,2,1695,1700,1640,1643,24,27,10,4,6,8,0,0,15,18,1654,1660,26,32,21,17,9,8,0,1,184,168,171,161,2,2,4,2,0,0,4,1,3,2,174,162,4,3,6,4,0,0,4,1 -050,01,009,Alabama,Blount County,13,11,3867,1930,1937,1861,1867,29,33,18,9,6,6,4,1,12,21,1873,1886,31,38,26,26,8,7,4,3,1799,1814,1742,1750,27,30,12,9,4,6,2,0,12,19,1754,1767,29,34,20,26,6,6,2,1,131,123,119,117,2,3,6,0,2,0,2,1,0,2,119,119,2,4,6,0,2,1,2,2 -050,01,009,Alabama,Blount County,13,12,4018,2010,2008,1944,1942,30,26,10,6,4,8,2,1,20,25,1961,1965,34,31,27,26,6,9,2,2,1897,1916,1834,1851,30,26,10,6,4,8,1,1,18,24,1851,1873,32,30,26,26,5,9,1,2,113,92,110,91,0,0,0,0,0,0,1,0,2,1,110,92,2,1,1,0,1,0,1,0 -050,01,009,Alabama,Blount County,13,13,3690,1835,1855,1783,1792,16,28,8,10,6,5,2,0,20,20,1802,1812,22,32,22,23,7,8,3,0,1745,1798,1696,1741,16,26,8,9,6,4,2,0,17,18,1712,1759,21,29,21,22,6,6,3,0,90,57,87,51,0,2,0,1,0,1,0,0,3,2,90,53,1,3,1,1,1,2,0,0 -050,01,009,Alabama,Blount County,13,14,3340,1616,1724,1549,1660,30,24,12,17,5,6,1,1,19,16,1567,1674,33,27,29,31,5,7,1,1,1553,1681,1488,1620,30,21,11,17,5,6,0,1,19,16,1506,1634,33,24,28,31,5,7,0,1,63,43,61,40,0,3,1,0,0,0,1,0,0,0,61,40,0,3,1,0,0,0,1,0 -050,01,009,Alabama,Blount County,13,15,3072,1416,1656,1366,1604,19,26,13,7,2,4,1,0,15,15,1380,1617,21,29,26,19,3,6,1,0,1365,1632,1319,1581,17,26,13,7,2,3,0,0,14,15,1332,1594,18,29,26,19,3,5,0,0,51,24,47,23,2,0,0,0,0,1,1,0,1,0,48,23,3,0,0,0,0,1,1,0 -050,01,009,Alabama,Blount County,13,16,2158,964,1194,928,1161,15,10,6,10,3,6,0,1,12,6,939,1167,16,12,17,13,4,7,0,1,950,1146,915,1114,15,9,6,10,3,6,0,1,11,6,925,1120,16,11,17,13,3,7,0,1,14,48,13,47,0,1,0,0,0,0,0,0,1,0,14,47,0,1,0,0,1,0,0,0 -050,01,009,Alabama,Blount County,13,17,1318,590,728,572,712,5,8,4,3,2,1,0,1,7,3,579,714,5,9,10,6,3,1,0,1,575,722,558,706,4,8,4,3,2,1,0,1,7,3,565,708,4,9,10,6,3,1,0,1,15,6,14,6,1,0,0,0,0,0,0,0,0,0,14,6,1,0,0,0,0,0,0,0 -050,01,009,Alabama,Blount County,13,18,1111,409,702,387,679,8,7,11,5,0,2,1,0,2,9,389,688,8,8,12,13,1,2,1,0,386,695,365,673,8,6,11,5,0,2,0,0,2,9,367,682,8,7,12,13,1,2,0,0,23,7,22,6,0,1,0,0,0,0,1,0,0,0,22,6,0,1,0,0,0,0,1,0 -050,01,011,Alabama,Bullock County,1,0,10914,5912,5002,1761,1107,3999,3760,37,50,10,10,46,36,59,39,1806,1135,4031,3782,62,76,26,15,47,37,5473,4664,1499,894,3924,3720,5,15,10,10,2,2,33,23,1525,913,3941,3728,22,33,15,13,3,3,439,338,262,213,75,40,32,35,0,0,44,34,26,16,281,222,90,54,40,43,11,2,44,34 -050,01,011,Alabama,Bullock County,1,1,742,402,340,86,75,287,245,11,9,0,0,7,7,11,4,92,78,295,247,16,10,4,2,7,7,328,275,45,30,276,243,1,0,0,0,1,0,5,2,48,32,280,243,2,0,2,2,1,0,74,65,41,45,11,2,10,9,0,0,6,7,6,2,44,46,15,4,14,10,2,0,6,7 -050,01,011,Alabama,Bullock County,1,2,570,295,275,52,67,225,188,2,2,2,0,3,8,11,10,60,74,231,195,6,9,6,0,3,8,257,226,28,36,219,186,0,0,2,0,0,0,8,4,34,40,223,187,3,3,5,0,0,0,38,49,24,31,6,2,2,2,0,0,3,8,3,6,26,34,8,8,3,6,1,0,3,8 -050,01,011,Alabama,Bullock County,1,3,675,337,338,71,48,259,284,1,2,1,0,2,1,3,3,73,50,260,285,3,4,2,1,2,1,311,323,55,38,253,282,1,0,1,0,0,0,1,3,56,40,253,283,2,2,1,1,0,0,26,15,16,10,6,2,0,2,0,0,2,1,2,0,17,10,7,2,1,2,1,0,2,1 -050,01,011,Alabama,Bullock County,1,4,726,365,361,63,49,298,307,1,3,0,0,2,1,1,1,64,50,298,307,1,3,1,1,2,1,337,341,45,38,292,303,0,0,0,0,0,0,0,0,45,38,292,303,0,0,0,0,0,0,28,20,18,11,6,4,1,3,0,0,2,1,1,1,19,12,6,4,1,3,1,1,2,1 -050,01,011,Alabama,Bullock County,1,5,711,392,319,107,56,265,248,4,7,1,0,10,5,5,3,112,57,267,251,4,10,4,0,10,5,315,273,60,29,252,241,0,1,1,0,0,0,2,2,62,30,254,243,0,3,1,0,0,0,77,46,47,27,13,7,4,6,0,0,10,5,3,1,50,27,13,8,4,7,3,0,10,5 -050,01,011,Alabama,Bullock County,1,6,822,500,322,145,70,328,228,7,9,2,1,9,9,9,5,153,73,334,232,8,11,5,2,9,9,414,255,97,30,314,221,0,1,2,1,0,2,1,0,98,30,315,221,0,1,2,1,0,2,86,67,48,40,14,7,7,8,0,0,9,7,8,5,55,43,19,11,8,10,3,1,9,7 -050,01,011,Alabama,Bullock County,1,7,733,444,289,139,59,292,216,3,4,0,2,6,4,4,4,142,63,294,216,6,8,0,2,6,4,405,253,112,35,289,211,1,1,0,2,1,0,2,4,114,39,289,211,3,5,0,2,1,0,39,36,27,24,3,5,2,3,0,0,5,4,2,0,28,24,5,5,3,3,0,0,5,4 -050,01,011,Alabama,Bullock County,1,8,712,440,272,151,44,280,224,2,2,0,1,3,0,4,1,155,45,282,224,4,3,0,1,3,0,409,264,129,36,275,224,1,2,0,1,0,0,4,1,133,37,277,224,3,3,0,1,0,0,31,8,22,8,5,0,1,0,0,0,3,0,0,0,22,8,5,0,1,0,0,0,3,0 -050,01,011,Alabama,Bullock County,1,9,650,376,274,123,39,249,228,1,4,2,2,1,0,0,1,123,40,249,229,1,4,2,2,1,0,370,269,119,36,248,227,1,4,2,2,0,0,0,0,119,36,248,227,1,4,2,2,0,0,6,5,4,3,1,1,0,0,0,0,1,0,0,1,4,4,1,2,0,0,0,0,1,0 -050,01,011,Alabama,Bullock County,1,10,845,500,345,156,64,341,275,0,2,1,2,0,0,2,2,158,66,342,276,1,4,1,2,0,0,495,340,153,62,340,274,0,0,1,2,0,0,1,2,154,64,340,275,1,2,1,2,0,0,5,5,3,2,1,1,0,2,0,0,0,0,1,0,4,2,2,1,0,2,0,0,0,0 -050,01,011,Alabama,Bullock County,1,11,852,472,380,135,79,333,298,2,1,1,0,0,0,1,2,136,80,333,299,3,3,1,0,0,0,464,370,130,74,332,293,0,1,1,0,0,0,1,2,131,75,332,294,1,3,1,0,0,0,8,10,5,5,1,5,2,0,0,0,0,0,0,0,5,5,1,5,2,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,12,768,433,335,145,87,283,246,1,1,0,1,1,0,3,0,147,87,284,246,4,1,0,1,1,0,427,331,144,83,280,246,0,1,0,1,0,0,3,0,146,83,281,246,3,1,0,1,0,0,6,4,1,4,3,0,1,0,0,0,1,0,0,0,1,4,3,0,1,0,0,0,1,0 -050,01,011,Alabama,Bullock County,1,13,639,330,309,118,85,208,220,0,1,0,0,2,1,2,2,120,86,209,222,1,2,0,0,2,2,327,308,117,85,208,220,0,1,0,0,0,0,2,2,119,86,209,222,1,2,0,0,0,1,3,1,1,0,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,2,1 -050,01,011,Alabama,Bullock County,1,14,476,223,253,87,78,131,173,2,1,0,0,0,0,3,1,88,79,133,173,4,2,0,0,1,0,216,250,84,77,129,171,0,1,0,0,0,0,3,1,85,78,131,171,2,2,0,0,1,0,7,3,3,1,2,2,2,0,0,0,0,0,0,0,3,1,2,2,2,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,15,359,170,189,75,68,95,121,0,0,0,0,0,0,0,0,75,68,95,121,0,0,0,0,0,0,168,188,74,68,94,120,0,0,0,0,0,0,0,0,74,68,94,120,0,0,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,16,275,117,158,50,59,67,98,0,0,0,1,0,0,0,0,50,59,67,98,0,0,0,1,0,0,114,156,49,57,65,98,0,0,0,1,0,0,0,0,49,57,65,98,0,0,0,1,0,0,3,2,1,2,2,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,17,151,54,97,35,38,19,57,0,2,0,0,0,0,0,0,35,38,19,57,0,2,0,0,0,0,54,96,35,38,19,56,0,2,0,0,0,0,0,0,35,38,19,56,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,1,18,208,62,146,23,42,39,104,0,0,0,0,0,0,0,0,23,42,39,104,0,0,0,0,0,0,62,146,23,42,39,104,0,0,0,0,0,0,0,0,23,42,39,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,0,10913,5911,5002,1760,1107,3999,3760,37,50,10,10,46,36,59,39,1805,1135,4031,3782,62,76,26,15,47,37,5472,4664,1498,894,3924,3720,5,15,10,10,2,2,33,23,1524,913,3941,3728,22,33,15,13,3,3,439,338,262,213,75,40,32,35,0,0,44,34,26,16,281,222,90,54,40,43,11,2,44,34 -050,01,011,Alabama,Bullock County,2,1,742,402,340,86,75,287,245,11,9,0,0,7,7,11,4,92,78,295,247,16,10,4,2,7,7,328,275,45,30,276,243,1,0,0,0,1,0,5,2,48,32,280,243,2,0,2,2,1,0,74,65,41,45,11,2,10,9,0,0,6,7,6,2,44,46,15,4,14,10,2,0,6,7 -050,01,011,Alabama,Bullock County,2,2,572,296,276,53,68,225,188,2,2,2,0,3,8,11,10,61,75,231,195,6,9,6,0,3,8,258,227,29,37,219,186,0,0,2,0,0,0,8,4,35,41,223,187,3,3,5,0,0,0,38,49,24,31,6,2,2,2,0,0,3,8,3,6,26,34,8,8,3,6,1,0,3,8 -050,01,011,Alabama,Bullock County,2,3,675,337,338,71,48,259,284,1,2,1,0,2,1,3,3,73,50,260,285,3,4,2,1,2,1,311,323,55,38,253,282,1,0,1,0,0,0,1,3,56,40,253,283,2,2,1,1,0,0,26,15,16,10,6,2,0,2,0,0,2,1,2,0,17,10,7,2,1,2,1,0,2,1 -050,01,011,Alabama,Bullock County,2,4,726,365,361,63,49,298,307,1,3,0,0,2,1,1,1,64,50,298,307,1,3,1,1,2,1,337,341,45,38,292,303,0,0,0,0,0,0,0,0,45,38,292,303,0,0,0,0,0,0,28,20,18,11,6,4,1,3,0,0,2,1,1,1,19,12,6,4,1,3,1,1,2,1 -050,01,011,Alabama,Bullock County,2,5,711,392,319,107,56,265,248,4,7,1,0,10,5,5,3,112,57,267,251,4,10,4,0,10,5,315,273,60,29,252,241,0,1,1,0,0,0,2,2,62,30,254,243,0,3,1,0,0,0,77,46,47,27,13,7,4,6,0,0,10,5,3,1,50,27,13,8,4,7,3,0,10,5 -050,01,011,Alabama,Bullock County,2,6,823,500,323,145,71,328,228,7,9,2,1,9,9,9,5,153,74,334,232,8,11,5,2,9,9,414,256,97,31,314,221,0,1,2,1,0,2,1,0,98,31,315,221,0,1,2,1,0,2,86,67,48,40,14,7,7,8,0,0,9,7,8,5,55,43,19,11,8,10,3,1,9,7 -050,01,011,Alabama,Bullock County,2,7,733,444,289,139,59,292,216,3,4,0,2,6,4,4,4,142,63,294,216,6,8,0,2,6,4,405,253,112,35,289,211,1,1,0,2,1,0,2,4,114,39,289,211,3,5,0,2,1,0,39,36,27,24,3,5,2,3,0,0,5,4,2,0,28,24,5,5,3,3,0,0,5,4 -050,01,011,Alabama,Bullock County,2,8,712,440,272,151,44,280,224,2,2,0,1,3,0,4,1,155,45,282,224,4,3,0,1,3,0,409,264,129,36,275,224,1,2,0,1,0,0,4,1,133,37,277,224,3,3,0,1,0,0,31,8,22,8,5,0,1,0,0,0,3,0,0,0,22,8,5,0,1,0,0,0,3,0 -050,01,011,Alabama,Bullock County,2,9,650,376,274,123,39,249,228,1,4,2,2,1,0,0,1,123,40,249,229,1,4,2,2,1,0,370,269,119,36,248,227,1,4,2,2,0,0,0,0,119,36,248,227,1,4,2,2,0,0,6,5,4,3,1,1,0,0,0,0,1,0,0,1,4,4,1,2,0,0,0,0,1,0 -050,01,011,Alabama,Bullock County,2,10,844,500,344,156,63,341,275,0,2,1,2,0,0,2,2,158,65,342,276,1,4,1,2,0,0,495,339,153,61,340,274,0,0,1,2,0,0,1,2,154,63,340,275,1,2,1,2,0,0,5,5,3,2,1,1,0,2,0,0,0,0,1,0,4,2,2,1,0,2,0,0,0,0 -050,01,011,Alabama,Bullock County,2,11,852,472,380,135,79,333,298,2,1,1,0,0,0,1,2,136,80,333,299,3,3,1,0,0,0,464,370,130,74,332,293,0,1,1,0,0,0,1,2,131,75,332,294,1,3,1,0,0,0,8,10,5,5,1,5,2,0,0,0,0,0,0,0,5,5,1,5,2,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,12,767,432,335,144,87,283,246,1,1,0,1,1,0,3,0,146,87,284,246,4,1,0,1,1,0,426,331,143,83,280,246,0,1,0,1,0,0,3,0,145,83,281,246,3,1,0,1,0,0,6,4,1,4,3,0,1,0,0,0,1,0,0,0,1,4,3,0,1,0,0,0,1,0 -050,01,011,Alabama,Bullock County,2,13,639,330,309,118,85,208,220,0,1,0,0,2,1,2,2,120,86,209,222,1,2,0,0,2,2,327,308,117,85,208,220,0,1,0,0,0,0,2,2,119,86,209,222,1,2,0,0,0,1,3,1,1,0,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,2,1 -050,01,011,Alabama,Bullock County,2,14,475,223,252,87,77,131,173,2,1,0,0,0,0,3,1,88,78,133,173,4,2,0,0,1,0,216,249,84,76,129,171,0,1,0,0,0,0,3,1,85,77,131,171,2,2,0,0,1,0,7,3,3,1,2,2,2,0,0,0,0,0,0,0,3,1,2,2,2,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,15,358,169,189,74,68,95,121,0,0,0,0,0,0,0,0,74,68,95,121,0,0,0,0,0,0,167,188,73,68,94,120,0,0,0,0,0,0,0,0,73,68,94,120,0,0,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,16,275,117,158,50,59,67,98,0,0,0,1,0,0,0,0,50,59,67,98,0,0,0,1,0,0,114,156,49,57,65,98,0,0,0,1,0,0,0,0,49,57,65,98,0,0,0,1,0,0,3,2,1,2,2,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,17,151,54,97,35,38,19,57,0,2,0,0,0,0,0,0,35,38,19,57,0,2,0,0,0,0,54,96,35,38,19,56,0,2,0,0,0,0,0,0,35,38,19,56,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,2,18,208,62,146,23,42,39,104,0,0,0,0,0,0,0,0,23,42,39,104,0,0,0,0,0,0,62,146,23,42,39,104,0,0,0,0,0,0,0,0,23,42,39,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,0,10876,5879,4997,1753,1115,3983,3749,36,49,10,8,43,36,54,40,1800,1147,4011,3773,60,65,23,17,44,37,5450,4651,1491,893,3912,3711,5,15,10,8,2,1,30,23,1518,911,3929,3723,15,23,16,16,2,2,429,346,262,222,71,38,31,34,0,0,41,35,24,17,282,236,82,50,45,42,7,1,42,35 -050,01,011,Alabama,Bullock County,3,1,747,404,343,95,76,283,247,11,9,0,0,6,7,9,4,103,79,287,250,14,10,4,1,6,7,326,275,46,28,274,245,1,0,0,0,1,0,4,2,50,30,275,246,2,0,2,1,1,0,78,68,49,48,9,2,10,9,0,0,5,7,5,2,53,49,12,4,12,10,2,0,5,7 -050,01,011,Alabama,Bullock County,3,2,573,297,276,56,70,223,186,2,2,2,0,3,8,11,10,66,80,230,192,5,6,4,1,3,8,258,223,31,35,217,184,0,0,2,0,0,0,8,4,39,39,223,186,1,1,3,1,0,0,39,53,25,35,6,2,2,2,0,0,3,8,3,6,27,41,7,6,4,5,1,0,3,8 -050,01,011,Alabama,Bullock County,3,3,674,334,340,70,52,257,279,1,2,1,0,2,2,3,5,73,56,260,283,2,2,2,2,2,3,307,322,53,41,251,277,1,0,1,0,0,0,1,4,54,44,252,280,1,0,1,2,0,1,27,18,17,11,6,2,0,2,0,0,2,2,2,1,19,12,8,3,1,2,1,0,2,2 -050,01,011,Alabama,Bullock County,3,4,712,357,355,60,52,293,299,1,2,0,0,2,1,1,1,61,53,293,300,2,2,0,0,2,1,330,337,43,41,287,296,0,0,0,0,0,0,0,0,43,41,287,296,0,0,0,0,0,0,27,18,17,11,6,3,1,2,0,0,2,1,1,1,18,12,6,4,2,2,0,0,2,1 -050,01,011,Alabama,Bullock County,3,5,716,388,328,99,56,269,257,4,7,1,0,10,5,5,3,103,57,271,259,6,9,2,1,11,5,318,282,59,29,256,250,0,1,1,0,0,0,2,2,61,30,258,251,0,2,1,1,0,0,70,46,40,27,13,7,4,6,0,0,10,5,3,1,42,27,13,8,6,7,1,0,11,5 -050,01,011,Alabama,Bullock County,3,6,817,497,320,143,70,330,227,7,9,2,1,8,8,7,5,149,74,335,230,11,11,3,2,8,8,418,252,98,29,317,220,0,1,2,1,0,1,1,0,99,29,318,220,0,1,2,1,0,1,79,68,45,41,13,7,7,8,0,0,8,7,6,5,50,45,17,10,11,10,1,1,8,7 -050,01,011,Alabama,Bullock County,3,7,734,449,285,142,58,294,215,3,4,0,1,6,4,4,3,146,60,294,216,6,6,1,2,6,4,407,251,113,36,291,210,1,1,0,1,1,0,1,3,114,38,291,211,2,3,0,2,1,0,42,34,29,22,3,5,2,3,0,0,5,4,3,0,32,22,3,5,4,3,1,0,5,4 -050,01,011,Alabama,Bullock County,3,8,705,432,273,147,43,278,226,2,2,0,1,2,0,3,1,150,44,281,226,2,3,0,1,2,0,406,264,128,34,274,226,1,2,0,1,0,0,3,1,131,35,277,226,1,3,0,1,0,0,26,9,19,9,4,0,1,0,0,0,2,0,0,0,19,9,4,0,1,0,0,0,2,0 -050,01,011,Alabama,Bullock County,3,9,651,376,275,126,42,246,226,1,4,2,2,1,0,0,1,126,43,246,226,1,5,2,2,1,0,368,269,120,38,245,225,1,4,2,2,0,0,0,0,120,38,245,225,1,4,2,2,0,0,8,6,6,4,1,1,0,0,0,0,1,0,0,1,6,5,1,1,0,1,0,0,1,0 -050,01,011,Alabama,Bullock County,3,10,832,496,336,155,61,338,270,0,1,1,2,0,0,2,2,156,63,340,271,1,2,1,2,0,0,492,332,153,59,337,269,0,0,1,2,0,0,1,2,153,61,338,270,1,1,1,2,0,0,4,4,2,2,1,1,0,1,0,0,0,0,1,0,3,2,2,1,0,1,0,0,0,0 -050,01,011,Alabama,Bullock County,3,11,845,466,379,134,78,329,297,1,2,1,0,0,0,1,2,134,80,330,298,2,2,1,1,0,0,458,369,128,73,328,293,0,1,1,0,0,0,1,2,128,75,329,294,1,1,1,1,0,0,8,10,6,5,1,4,1,1,0,0,0,0,0,0,6,5,1,4,1,1,0,0,0,0 -050,01,011,Alabama,Bullock County,3,12,774,434,340,143,88,286,251,1,1,0,0,1,0,3,0,145,88,286,251,3,1,2,0,1,0,428,336,142,84,283,251,0,1,0,0,0,0,3,0,144,84,283,251,2,1,2,0,0,0,6,4,1,4,3,0,1,0,0,0,1,0,0,0,1,4,3,0,1,0,0,0,1,0 -050,01,011,Alabama,Bullock County,3,13,647,335,312,119,85,212,223,0,1,0,0,2,1,2,2,121,86,213,224,0,2,1,1,2,1,332,311,118,85,212,223,0,1,0,0,0,0,2,2,120,86,213,224,0,2,1,1,0,0,3,1,1,0,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,2,1 -050,01,011,Alabama,Bullock County,3,14,465,216,249,85,78,126,169,2,1,0,0,0,0,3,1,88,78,126,170,5,2,0,0,0,0,209,246,82,77,124,167,0,1,0,0,0,0,3,1,85,77,124,168,3,2,0,0,0,0,7,3,3,1,2,2,2,0,0,0,0,0,0,0,3,1,2,2,2,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,15,356,167,189,72,67,95,122,0,0,0,0,0,0,0,0,72,67,95,122,0,0,0,0,0,0,165,188,71,67,94,121,0,0,0,0,0,0,0,0,71,67,94,121,0,0,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,16,269,116,153,49,57,67,95,0,0,0,1,0,0,0,0,49,57,67,95,0,0,0,1,0,0,114,151,48,55,66,95,0,0,0,1,0,0,0,0,48,55,66,95,0,0,0,1,0,0,2,2,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,17,154,53,101,34,41,19,58,0,2,0,0,0,0,0,0,34,41,19,58,0,2,0,0,0,0,52,100,34,41,18,57,0,2,0,0,0,0,0,0,34,41,18,57,0,2,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,3,18,205,62,143,24,41,38,102,0,0,0,0,0,0,0,0,24,41,38,102,0,0,0,0,0,0,62,143,24,41,38,102,0,0,0,0,0,0,0,0,24,41,38,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,4,0,10680,5766,4914,1777,1122,3848,3657,34,48,10,8,42,35,55,44,1827,1159,3876,3680,56,71,19,15,45,38,5315,4540,1488,867,3779,3622,5,15,10,8,2,1,31,27,1517,892,3797,3633,14,30,15,12,3,2,451,374,289,255,69,35,29,33,0,0,40,34,24,17,310,267,79,47,42,41,4,3,42,36 -050,01,011,Alabama,Bullock County,4,1,742,404,338,105,80,278,240,8,7,0,0,5,5,8,6,112,86,282,244,10,9,2,0,6,5,317,270,44,28,268,238,0,0,0,0,1,0,4,4,48,32,270,240,0,2,2,0,1,0,87,68,61,52,10,2,8,7,0,0,4,5,4,2,64,54,12,4,10,7,0,0,5,5 -050,01,011,Alabama,Bullock County,4,2,589,307,282,64,73,221,193,4,2,1,0,4,7,13,7,77,77,226,197,8,4,4,4,5,7,259,225,32,30,216,192,1,0,1,0,0,0,9,3,41,33,220,192,3,0,3,3,1,0,48,57,32,43,5,1,3,2,0,0,4,7,4,4,36,44,6,5,5,4,1,1,4,7 -050,01,011,Alabama,Bullock County,4,3,648,310,338,65,59,239,264,1,3,1,0,2,4,2,8,67,67,239,267,3,8,1,1,2,4,286,308,49,42,235,261,1,0,1,0,0,0,0,5,49,47,235,263,1,3,1,0,0,0,24,30,16,17,4,3,0,3,0,0,2,4,2,3,18,20,4,4,2,5,0,1,2,4 -050,01,011,Alabama,Bullock County,4,4,616,309,307,58,44,247,259,1,1,1,0,1,1,1,2,59,46,247,259,2,3,1,0,1,1,286,292,44,35,241,256,0,0,1,0,0,0,0,1,44,36,241,256,0,1,1,0,0,0,23,15,14,9,6,3,1,1,0,0,1,1,1,1,15,10,6,3,2,2,0,0,1,1 -050,01,011,Alabama,Bullock County,4,5,716,383,333,90,57,277,261,2,6,1,0,8,6,5,3,95,59,280,263,3,8,2,0,8,7,325,291,56,31,266,257,0,1,1,0,0,0,2,2,58,33,268,258,0,2,1,0,0,0,58,42,34,26,11,4,2,5,0,0,8,6,3,1,37,26,12,5,3,6,1,0,8,7 -050,01,011,Alabama,Bullock County,4,6,791,485,306,145,61,318,223,7,10,2,1,9,6,4,5,149,66,322,227,7,11,2,2,9,6,409,238,102,20,304,214,0,1,2,1,0,1,1,1,103,21,305,215,0,1,2,1,0,1,76,68,43,41,14,9,7,9,0,0,9,5,3,4,46,45,17,12,7,10,0,1,9,5 -050,01,011,Alabama,Bullock County,4,7,739,463,276,141,60,305,202,4,5,0,1,7,4,6,4,146,64,308,203,7,7,2,2,7,5,413,239,109,34,301,200,1,1,0,1,1,0,1,3,110,37,302,201,1,3,0,2,1,0,50,37,32,26,4,2,3,4,0,0,6,4,5,1,36,27,6,2,6,4,2,0,6,5 -050,01,011,Alabama,Bullock County,4,8,683,413,270,153,43,253,223,1,2,0,0,2,1,4,1,157,43,256,224,3,3,0,0,2,1,384,256,131,31,250,222,0,2,0,0,0,0,3,1,134,31,252,223,1,3,0,0,0,0,29,14,22,12,3,1,1,0,0,0,2,1,1,0,23,12,4,1,2,0,0,0,2,1 -050,01,011,Alabama,Bullock County,4,9,663,380,283,142,59,234,217,2,4,1,3,1,0,0,0,142,59,234,217,2,4,1,3,1,0,358,268,123,44,232,217,2,4,1,3,0,0,0,0,123,44,232,217,2,4,1,3,0,0,22,15,19,15,2,0,0,0,0,0,1,0,0,0,19,15,2,0,0,0,0,0,1,0 -050,01,011,Alabama,Bullock County,4,10,773,474,299,155,52,317,242,0,0,1,2,0,0,1,3,156,53,317,243,1,3,1,2,0,1,470,294,152,50,316,240,0,0,1,2,0,0,1,2,153,51,316,240,1,2,1,2,0,1,4,5,3,2,1,2,0,0,0,0,0,0,0,1,3,2,1,3,0,1,0,0,0,0 -050,01,011,Alabama,Bullock County,4,11,829,457,372,137,71,315,296,1,3,2,0,0,0,2,2,138,73,315,297,3,4,2,0,1,0,449,362,132,66,314,293,0,1,2,0,0,0,1,2,133,68,314,294,1,2,2,0,0,0,8,10,5,5,1,3,1,2,0,0,0,0,1,0,5,5,1,3,2,2,0,0,1,0 -050,01,011,Alabama,Bullock County,4,12,773,434,339,140,85,291,253,1,1,0,0,0,0,2,0,142,85,293,253,1,1,0,0,0,0,429,335,139,82,288,252,0,1,0,0,0,0,2,0,141,82,290,252,0,1,0,0,0,0,5,4,1,3,3,1,1,0,0,0,0,0,0,0,1,3,3,1,1,0,0,0,0,0 -050,01,011,Alabama,Bullock County,4,13,670,336,334,118,89,213,241,0,1,0,0,2,1,3,2,120,91,215,243,2,2,0,0,2,1,333,332,117,88,213,241,0,1,0,0,0,0,3,2,119,90,215,243,2,2,0,0,0,0,3,2,1,1,0,0,0,0,0,0,2,1,0,0,1,1,0,0,0,0,0,0,2,1 -050,01,011,Alabama,Bullock County,4,14,462,215,247,89,82,119,163,2,1,0,0,1,0,4,1,92,83,121,163,4,2,1,0,1,0,207,244,86,81,117,161,0,1,0,0,0,0,4,1,89,82,119,161,2,2,1,0,0,0,8,3,3,1,2,2,2,0,0,0,1,0,0,0,3,1,2,2,2,0,0,0,1,0 -050,01,011,Alabama,Bullock County,4,15,347,160,187,67,65,93,122,0,0,0,0,0,0,0,0,67,65,93,122,0,0,0,0,0,0,157,186,65,65,92,121,0,0,0,0,0,0,0,0,65,65,92,121,0,0,0,0,0,0,3,1,2,0,1,1,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,4,16,278,123,155,52,61,71,93,0,0,0,1,0,0,0,0,52,61,71,93,0,0,0,1,0,0,122,153,51,59,71,93,0,0,0,1,0,0,0,0,51,59,71,93,0,0,0,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,4,17,159,49,110,30,41,19,67,0,2,0,0,0,0,0,0,30,41,19,67,0,2,0,0,0,0,47,109,30,41,17,66,0,2,0,0,0,0,0,0,30,41,17,66,0,2,0,0,0,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,4,18,202,64,138,26,40,38,98,0,0,0,0,0,0,0,0,26,40,38,98,0,0,0,0,0,0,64,138,26,40,38,98,0,0,0,0,0,0,0,0,26,40,38,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,5,0,10610,5772,4838,1775,1087,3847,3604,35,50,11,12,42,35,62,50,1829,1131,3877,3633,63,70,22,26,45,40,5336,4475,1501,844,3779,3570,6,17,11,10,3,1,36,33,1530,874,3799,3589,23,30,15,17,5,2,436,363,274,243,68,34,29,33,0,2,39,34,26,17,299,257,78,44,40,40,7,9,40,38 -050,01,011,Alabama,Bullock County,5,1,655,337,318,81,74,237,226,7,6,0,2,4,2,8,8,88,82,239,231,10,9,3,4,5,2,265,257,29,25,231,225,0,0,0,0,1,0,4,7,32,32,233,229,2,3,1,2,1,0,72,61,52,49,6,1,7,6,0,2,3,2,4,1,56,50,6,2,8,6,2,2,4,2 -050,01,011,Alabama,Bullock County,5,2,621,330,291,76,71,227,203,4,3,2,0,5,7,16,7,89,78,235,205,12,5,4,5,6,8,278,235,46,31,218,201,1,0,2,0,0,0,11,3,54,34,225,201,6,1,3,2,1,0,52,56,30,40,9,2,3,3,0,0,5,7,5,4,35,44,10,4,6,4,1,3,5,8 -050,01,011,Alabama,Bullock County,5,3,605,286,319,55,59,223,238,2,3,1,1,2,7,3,11,57,70,225,245,2,7,3,2,3,8,261,283,39,40,219,235,1,0,1,1,0,0,1,7,39,47,219,240,1,2,2,1,1,0,25,36,16,19,4,3,1,3,0,0,2,7,2,4,18,23,6,5,1,5,1,1,2,8 -050,01,011,Alabama,Bullock County,5,4,633,316,317,59,50,252,264,1,1,1,0,1,1,2,1,61,51,252,264,2,2,2,1,1,2,297,299,47,37,247,262,1,0,1,0,0,0,1,0,48,37,247,262,1,0,2,0,0,0,19,18,12,13,5,2,0,1,0,0,1,1,1,1,13,14,5,2,1,2,0,1,1,2 -050,01,011,Alabama,Bullock County,5,5,713,399,314,96,53,289,248,2,4,0,0,6,6,6,3,102,56,292,251,4,4,1,0,6,6,349,279,65,30,280,246,0,1,0,0,1,0,3,2,68,32,282,248,1,1,0,0,1,0,50,35,31,23,9,2,2,3,0,0,5,6,3,1,34,24,10,3,3,3,1,0,5,6 -050,01,011,Alabama,Bullock County,5,6,797,496,301,147,51,327,229,6,10,3,1,9,5,4,5,151,53,329,231,8,11,3,4,9,7,419,247,100,24,315,219,0,0,3,1,0,1,1,2,101,25,316,220,0,0,3,2,0,2,77,54,47,27,12,10,6,10,0,0,9,4,3,3,50,28,13,11,8,11,0,2,9,5 -050,01,011,Alabama,Bullock County,5,7,733,469,264,140,57,309,189,6,7,0,1,7,5,7,5,146,60,314,193,8,10,1,2,7,5,415,228,111,36,301,186,1,2,0,1,1,0,1,3,112,38,302,188,1,4,0,2,1,0,54,36,29,21,8,3,5,5,0,0,6,5,6,2,34,22,12,5,7,6,1,0,6,5 -050,01,011,Alabama,Bullock County,5,8,664,414,250,153,42,252,203,1,3,0,0,3,1,5,1,158,43,254,204,3,3,1,0,3,1,390,232,136,26,250,202,0,3,0,0,0,0,4,1,140,27,252,203,2,3,0,0,0,0,24,18,17,16,2,1,1,0,0,0,3,1,1,0,18,16,2,1,1,0,1,0,3,1 -050,01,011,Alabama,Bullock County,5,9,700,410,290,152,61,254,221,2,4,1,4,1,0,0,0,152,61,254,221,2,4,1,4,1,0,382,270,128,41,251,221,2,4,1,4,0,0,0,0,128,41,251,221,2,4,1,4,0,0,28,20,24,20,3,0,0,0,0,0,1,0,0,0,24,20,3,0,0,0,0,0,1,0 -050,01,011,Alabama,Bullock County,5,10,727,441,286,157,48,282,235,0,0,1,2,1,0,0,1,157,49,282,236,0,1,1,2,1,0,438,282,156,47,281,233,0,0,1,2,0,0,0,0,156,47,281,233,0,0,1,2,0,0,3,4,1,1,1,2,0,0,0,0,1,0,0,1,1,2,1,3,0,1,0,0,1,0 -050,01,011,Alabama,Bullock County,5,11,834,467,367,136,67,326,293,1,3,2,0,0,0,2,4,137,71,328,295,3,6,2,0,0,0,458,358,130,62,325,291,0,1,2,0,0,0,1,4,130,66,326,293,1,4,2,0,0,0,9,9,6,5,1,2,1,2,0,0,0,0,1,0,7,5,2,2,2,2,0,0,0,0 -050,01,011,Alabama,Bullock County,5,12,783,444,339,143,82,299,256,0,1,0,0,0,0,2,0,144,82,300,256,2,1,0,0,0,0,439,332,141,77,296,254,0,1,0,0,0,0,2,0,142,77,297,254,2,1,0,0,0,0,5,7,2,5,3,2,0,0,0,0,0,0,0,0,2,5,3,2,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,5,13,654,329,325,109,82,216,238,1,2,0,0,1,1,2,2,111,83,217,240,2,3,0,0,1,1,327,323,109,81,216,238,0,2,0,0,0,0,2,2,111,82,217,240,1,3,0,0,0,0,2,2,0,1,0,0,1,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0,1,1 -050,01,011,Alabama,Bullock County,5,14,495,236,259,95,85,134,171,0,1,0,0,2,0,5,2,100,87,136,171,3,2,0,1,2,0,229,256,91,84,133,169,0,1,0,0,0,0,5,2,96,86,135,169,3,2,0,1,0,0,7,3,4,1,1,2,0,0,0,0,2,0,0,0,4,1,1,2,0,0,0,0,2,0 -050,01,011,Alabama,Bullock County,5,15,349,161,188,71,59,88,129,2,0,0,0,0,0,0,0,71,59,88,129,2,0,0,0,0,0,155,187,69,59,86,128,0,0,0,0,0,0,0,0,69,59,86,128,0,0,0,0,0,0,6,1,2,0,2,1,2,0,0,0,0,0,0,0,2,0,2,1,2,0,0,0,0,0 -050,01,011,Alabama,Bullock County,5,16,293,122,171,49,67,73,103,0,0,0,1,0,0,0,0,49,67,73,103,0,0,0,1,0,0,122,170,49,66,73,103,0,0,0,1,0,0,0,0,49,66,73,103,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,5,17,169,58,111,31,41,27,68,0,2,0,0,0,0,0,0,31,41,27,68,0,2,0,0,0,0,55,109,30,40,25,67,0,2,0,0,0,0,0,0,30,40,25,67,0,2,0,0,0,0,3,2,1,1,2,1,0,0,0,0,0,0,0,0,1,1,2,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,5,18,185,57,128,25,38,32,90,0,0,0,0,0,0,0,0,25,38,32,90,0,0,0,0,0,0,57,128,25,38,32,90,0,0,0,0,0,0,0,0,25,38,32,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,6,0,10557,5743,4814,1723,1051,3874,3619,32,50,15,14,40,35,59,45,1775,1092,3908,3642,58,72,23,21,45,38,5315,4481,1450,839,3806,3583,6,17,14,12,3,2,36,28,1483,865,3825,3599,20,30,19,14,4,3,428,333,273,212,68,36,26,33,1,2,37,33,23,17,292,227,83,43,38,42,4,7,41,35 -050,01,011,Alabama,Bullock County,6,1,617,323,294,78,67,229,211,5,5,2,2,2,1,7,8,84,75,233,215,8,8,3,2,3,2,260,250,30,34,225,209,0,0,1,0,0,0,4,7,34,41,227,213,0,2,2,0,1,1,63,44,48,33,4,2,5,5,1,2,2,1,3,1,50,34,6,2,8,6,1,2,2,1 -050,01,011,Alabama,Bullock County,6,2,645,350,295,75,53,253,222,6,5,1,0,6,8,9,7,82,60,259,225,7,8,4,1,7,8,300,251,48,27,242,220,1,0,1,0,1,1,7,3,54,30,247,222,2,1,3,0,1,1,50,44,27,26,11,2,5,5,0,0,5,7,2,4,28,30,12,3,5,7,1,1,6,7 -050,01,011,Alabama,Bullock County,6,3,567,271,296,44,54,213,224,3,2,2,1,2,8,7,7,49,61,217,227,7,6,3,3,4,10,242,258,25,32,210,222,1,0,2,1,0,0,4,3,28,35,213,223,3,2,2,1,0,0,29,38,19,22,3,2,2,2,0,0,2,8,3,4,21,26,4,4,4,4,1,2,4,10 -050,01,011,Alabama,Bullock County,6,4,627,313,314,66,53,242,256,1,2,1,0,1,1,2,2,68,54,243,258,2,3,1,0,1,1,294,298,54,43,237,254,1,0,1,0,0,0,1,1,55,44,237,255,2,0,1,0,0,0,19,16,12,10,5,2,0,2,0,0,1,1,1,1,13,10,6,3,0,3,0,0,1,1 -050,01,011,Alabama,Bullock County,6,5,733,418,315,88,43,316,263,1,3,1,0,6,4,6,2,93,45,320,264,4,3,1,1,6,4,377,292,63,30,308,260,0,1,1,0,1,0,4,1,66,31,311,260,2,1,1,1,1,0,41,23,25,13,8,3,1,2,0,0,5,4,2,1,27,14,9,4,2,2,0,0,5,4 -050,01,011,Alabama,Bullock County,6,6,775,476,299,139,54,320,229,4,10,1,0,7,4,5,2,144,56,324,230,5,10,1,1,7,4,402,250,91,29,309,220,0,0,1,0,0,1,1,0,92,29,310,220,0,0,1,0,0,1,74,49,48,25,11,9,4,10,0,0,7,3,4,2,52,27,14,10,5,10,0,1,7,3 -050,01,011,Alabama,Bullock County,6,7,742,471,271,137,54,317,197,3,6,1,2,8,6,5,6,141,59,321,199,6,9,1,4,9,6,414,226,105,26,307,193,0,2,1,2,1,0,0,3,105,28,307,195,0,3,1,3,1,0,57,45,32,28,10,4,3,4,0,0,7,6,5,3,36,31,14,4,6,6,0,1,8,6 -050,01,011,Alabama,Bullock County,6,8,656,403,253,152,43,238,202,3,3,1,1,3,2,6,2,158,45,242,204,4,3,2,1,3,2,373,231,132,25,235,201,1,2,1,1,0,0,4,2,136,27,238,203,1,2,2,1,0,0,30,22,20,18,3,1,2,1,0,0,3,2,2,0,22,18,4,1,3,1,0,0,3,2 -050,01,011,Alabama,Bullock County,6,9,683,404,279,152,58,248,213,2,4,0,4,1,0,1,0,153,58,248,213,3,4,0,4,1,0,373,259,124,38,246,213,2,4,0,4,0,0,1,0,125,38,246,213,3,4,0,4,0,0,31,20,28,20,2,0,0,0,0,0,1,0,0,0,28,20,2,0,0,0,0,0,1,0 -050,01,011,Alabama,Bullock County,6,10,713,424,289,156,50,265,235,0,1,2,2,1,0,0,1,156,50,265,236,0,2,2,2,1,0,419,283,154,47,263,233,0,1,2,2,0,0,0,0,154,47,263,233,0,1,2,2,0,0,5,6,2,3,2,2,0,0,0,0,1,0,0,1,2,3,2,3,0,1,0,0,1,0 -050,01,011,Alabama,Bullock County,6,11,828,465,363,121,61,340,295,1,3,1,1,0,0,2,3,123,64,342,297,2,5,2,1,0,0,458,356,117,58,339,293,0,1,1,1,0,0,1,3,118,61,340,295,0,3,1,1,0,0,7,7,4,3,1,2,1,2,0,0,0,0,1,0,5,3,2,2,2,2,1,0,0,0 -050,01,011,Alabama,Bullock County,6,12,801,432,369,135,94,294,273,0,1,2,0,0,0,1,1,136,95,294,273,1,2,2,0,0,0,429,361,134,89,292,270,0,1,2,0,0,0,1,1,135,90,292,270,1,2,2,0,0,0,3,8,1,5,2,3,0,0,0,0,0,0,0,0,1,5,2,3,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,6,13,642,346,296,102,76,239,215,1,2,0,0,1,1,3,2,105,78,240,216,2,4,1,0,1,1,342,292,101,73,238,215,0,2,0,0,0,0,3,2,104,75,239,216,1,4,1,0,0,0,4,4,1,3,1,0,1,0,0,0,1,1,0,0,1,3,1,0,1,0,0,0,1,1 -050,01,011,Alabama,Bullock County,6,14,519,245,274,97,82,142,190,0,1,0,0,2,0,4,1,101,82,142,191,4,2,0,0,2,0,239,271,94,81,141,188,0,1,0,0,0,0,4,1,98,81,141,189,4,2,0,0,0,0,6,3,3,1,1,2,0,0,0,0,2,0,0,0,3,1,1,2,0,0,0,0,2,0 -050,01,011,Alabama,Bullock County,6,15,356,158,198,73,67,82,130,2,0,0,0,0,0,1,1,74,68,82,130,3,1,0,0,0,0,153,198,72,67,80,130,0,0,0,0,0,0,1,1,73,68,80,130,1,1,0,0,0,0,5,0,1,0,2,0,2,0,0,0,0,0,0,0,1,0,2,0,2,0,0,0,0,0 -050,01,011,Alabama,Bullock County,6,16,298,130,168,53,60,77,107,0,0,0,1,0,0,0,0,53,60,77,107,0,0,0,1,0,0,129,166,52,59,77,106,0,0,0,1,0,0,0,0,52,59,77,106,0,0,0,1,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,6,17,176,60,116,32,43,28,72,0,1,0,0,0,0,0,0,32,43,28,72,0,1,0,0,0,0,57,114,31,42,26,71,0,1,0,0,0,0,0,0,31,42,26,71,0,1,0,0,0,0,3,2,1,1,2,1,0,0,0,0,0,0,0,0,1,1,2,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,6,18,179,54,125,23,39,31,85,0,1,0,0,0,0,0,0,23,39,31,85,0,1,0,0,0,0,54,125,23,39,31,85,0,1,0,0,0,0,0,0,23,39,31,85,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,7,0,10668,5825,4843,1715,1068,3957,3629,37,53,15,11,40,34,61,48,1772,1104,3995,3659,58,71,22,22,43,38,5426,4505,1474,852,3889,3590,8,20,14,9,3,2,38,32,1509,876,3913,3611,20,31,19,18,4,4,399,338,241,216,68,39,29,33,1,2,37,32,23,16,263,228,82,48,38,40,3,4,39,34 -050,01,011,Alabama,Bullock County,7,1,623,313,310,80,80,223,215,3,4,1,2,1,0,5,9,85,87,226,223,4,6,2,5,1,0,259,259,35,37,219,213,0,1,1,0,0,0,4,8,39,43,221,221,1,2,2,3,0,0,54,51,45,43,4,2,3,3,0,2,1,0,1,1,46,44,5,2,3,4,0,2,1,0 -050,01,011,Alabama,Bullock County,7,2,665,364,301,73,49,264,231,7,7,2,0,6,8,12,6,84,53,273,235,9,8,4,2,7,9,318,259,52,27,255,228,1,0,1,0,1,1,8,3,59,30,260,230,2,0,3,1,2,1,46,42,21,22,9,3,6,7,1,0,5,7,4,3,25,23,13,5,7,8,1,1,5,8 -050,01,011,Alabama,Bullock County,7,3,552,283,269,49,53,218,198,4,1,2,0,3,8,7,9,56,61,223,200,6,7,4,0,3,10,246,229,26,30,213,194,1,0,2,0,0,0,4,5,30,35,215,195,2,3,3,0,0,1,37,40,23,23,5,4,3,1,0,0,3,8,3,4,26,26,8,5,4,4,1,0,3,9 -050,01,011,Alabama,Bullock County,7,4,602,313,289,67,49,242,235,0,3,1,0,1,1,2,1,69,50,244,236,1,3,1,0,1,1,295,275,54,40,239,234,0,0,1,0,0,0,1,1,55,41,240,235,1,0,1,0,0,0,18,14,13,9,3,1,0,3,0,0,1,1,1,0,14,9,4,1,0,3,0,0,1,1 -050,01,011,Alabama,Bullock County,7,5,746,432,314,80,35,338,271,2,3,1,1,5,3,6,1,86,36,343,272,3,3,1,1,5,3,408,295,69,26,331,267,1,1,1,1,1,0,5,0,74,26,335,267,2,1,1,1,1,0,24,19,11,9,7,4,1,2,0,0,4,3,1,1,12,10,8,5,1,2,0,0,4,3 -050,01,011,Alabama,Bullock County,7,6,780,474,306,132,61,326,231,3,8,1,0,7,3,5,3,137,64,329,234,5,8,1,0,7,3,403,266,85,38,316,225,0,1,1,0,0,1,1,1,86,39,317,226,0,1,1,0,0,1,71,40,47,23,10,6,3,7,0,0,7,2,4,2,51,25,12,8,5,7,0,0,7,2 -050,01,011,Alabama,Bullock County,7,7,792,500,292,136,54,343,215,6,8,1,1,8,8,6,6,142,59,344,220,9,9,2,2,9,8,439,242,108,28,329,209,0,2,1,1,1,0,0,2,108,29,329,211,0,2,1,2,1,0,61,50,28,26,14,6,6,6,0,0,7,8,6,4,34,30,15,9,9,7,1,0,8,8 -050,01,011,Alabama,Bullock County,7,8,687,422,265,153,56,254,198,4,3,1,2,4,2,6,4,158,59,259,200,5,4,1,4,5,3,398,237,140,34,252,196,1,1,1,2,0,0,4,4,144,37,256,198,1,2,1,4,0,1,24,28,13,22,2,2,3,2,0,0,4,2,2,0,14,22,3,2,4,2,0,0,5,2 -050,01,011,Alabama,Bullock County,7,9,690,415,275,155,66,257,204,1,3,0,2,1,0,1,0,156,66,257,204,2,3,0,2,1,0,386,255,130,46,254,204,1,3,0,2,0,0,1,0,131,46,254,204,2,3,0,2,0,0,29,20,25,20,3,0,0,0,0,0,1,0,0,0,25,20,3,0,0,0,0,0,1,0 -050,01,011,Alabama,Bullock County,7,10,711,429,282,161,48,262,229,3,3,2,1,1,0,0,1,161,48,262,229,3,4,2,2,1,0,425,275,159,43,261,228,3,3,2,1,0,0,0,0,159,43,261,228,3,3,2,1,0,0,4,7,2,5,1,1,0,0,0,0,1,0,0,1,2,5,1,1,0,1,0,1,1,0 -050,01,011,Alabama,Bullock County,7,11,798,436,362,114,58,319,297,1,3,1,2,0,0,1,2,115,59,319,298,2,4,1,3,0,0,428,356,110,56,317,295,0,1,1,2,0,0,0,2,110,57,317,296,0,2,1,3,0,0,8,6,4,2,2,2,1,2,0,0,0,0,1,0,5,2,2,2,2,2,0,0,0,0 -050,01,011,Alabama,Bullock County,7,12,790,414,376,125,89,286,285,0,0,2,0,0,0,1,2,126,90,286,286,1,1,2,1,0,0,410,367,123,84,284,281,0,0,2,0,0,0,1,2,124,85,284,282,1,1,2,1,0,0,4,9,2,5,2,4,0,0,0,0,0,0,0,0,2,5,2,4,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,7,13,672,379,293,114,74,259,214,1,3,0,0,1,1,4,1,118,74,262,215,2,4,0,0,1,1,375,288,113,70,258,214,0,3,0,0,0,0,4,1,117,70,261,215,1,4,0,0,0,0,4,5,1,4,1,0,1,0,0,0,1,1,0,0,1,4,1,0,1,0,0,0,1,1 -050,01,011,Alabama,Bullock County,7,14,535,251,284,95,81,151,200,0,1,0,0,2,0,3,2,96,83,153,200,2,3,1,0,2,0,245,282,92,80,150,199,0,1,0,0,0,0,3,2,93,82,152,199,2,3,1,0,0,0,6,2,3,1,1,1,0,0,0,0,2,0,0,0,3,1,1,1,0,0,0,0,2,0 -050,01,011,Alabama,Bullock County,7,15,353,150,203,67,68,79,133,2,1,0,0,0,0,2,1,69,68,79,134,4,2,0,0,0,0,146,202,66,68,78,132,0,1,0,0,0,0,2,1,68,68,78,133,2,2,0,0,0,0,4,1,1,0,1,1,2,0,0,0,0,0,0,0,1,0,1,1,2,0,0,0,0,0 -050,01,011,Alabama,Bullock County,7,16,302,130,172,56,58,74,114,0,0,0,0,0,0,0,0,56,58,74,114,0,0,0,0,0,0,128,170,55,57,73,113,0,0,0,0,0,0,0,0,55,57,73,113,0,0,0,0,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,7,17,187,63,124,33,52,30,72,0,0,0,0,0,0,0,0,33,52,30,72,0,0,0,0,0,0,60,123,32,51,28,72,0,0,0,0,0,0,0,0,32,51,28,72,0,0,0,0,0,0,3,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,7,18,183,57,126,25,37,32,87,0,2,0,0,0,0,0,0,25,37,32,87,0,2,0,0,0,0,57,125,25,37,32,86,0,2,0,0,0,0,0,0,25,37,32,86,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,8,0,10404,5639,4765,1666,1058,3814,3561,39,52,12,14,40,34,68,46,1728,1099,3855,3586,66,68,22,22,40,39,5231,4420,1421,840,3743,3518,9,21,11,9,3,2,44,30,1461,866,3769,3535,28,29,16,15,3,6,408,345,245,218,71,43,30,31,1,5,37,32,24,16,267,233,86,51,38,39,6,7,37,33 -050,01,011,Alabama,Bullock County,8,1,610,308,302,80,77,221,212,0,0,1,4,0,0,6,9,85,84,224,218,4,2,1,5,0,2,259,253,36,35,216,209,0,0,1,0,0,0,6,9,41,42,219,215,4,2,1,1,0,2,49,49,44,42,5,3,0,0,0,4,0,0,0,0,44,42,5,3,0,0,0,4,0,0 -050,01,011,Alabama,Bullock County,8,2,646,346,300,73,52,243,227,10,10,2,1,6,7,12,3,82,55,251,230,12,10,8,1,6,7,294,256,49,27,235,225,1,1,1,1,1,1,7,1,54,28,239,226,2,1,5,1,1,1,52,44,24,25,8,2,9,9,1,0,5,6,5,2,28,27,12,4,10,9,3,0,5,6 -050,01,011,Alabama,Bullock County,8,3,532,273,259,54,59,200,182,3,2,2,0,3,8,11,8,65,67,209,186,6,4,3,2,3,8,237,216,32,35,194,178,1,0,2,0,0,0,8,3,40,38,200,180,4,0,3,1,0,0,36,43,22,24,6,4,2,2,0,0,3,8,3,5,25,29,9,6,2,4,0,1,3,8 -050,01,011,Alabama,Bullock County,8,4,564,284,280,59,43,217,230,2,2,1,0,2,2,3,3,62,46,218,231,4,3,1,1,2,3,262,267,46,37,213,228,1,0,1,0,0,0,1,2,47,39,213,228,2,1,1,1,0,1,22,13,13,6,4,2,1,2,0,0,2,2,2,1,15,7,5,3,2,2,0,0,2,2 -050,01,011,Alabama,Bullock County,8,5,699,402,297,78,36,313,255,2,2,0,1,3,1,6,2,84,38,319,256,2,2,0,2,3,1,379,281,64,28,308,251,1,0,0,1,1,0,5,1,69,29,313,251,1,0,0,2,1,0,23,16,14,8,5,4,1,2,0,0,2,1,1,1,15,9,6,5,1,2,0,0,2,1 -050,01,011,Alabama,Bullock County,8,6,769,465,304,121,55,327,235,3,8,1,0,8,4,5,2,126,57,329,235,6,9,1,1,8,4,404,265,84,34,317,228,0,2,1,0,0,0,2,1,86,35,318,228,1,2,1,1,0,0,61,39,37,21,10,7,3,6,0,0,8,4,3,1,40,22,11,7,5,7,0,0,8,4 -050,01,011,Alabama,Bullock County,8,7,770,495,275,144,53,332,199,6,9,1,1,6,7,6,6,150,58,334,202,10,13,2,2,6,8,426,226,109,28,316,192,0,3,1,1,0,1,0,1,109,29,316,193,0,3,1,1,0,1,69,49,35,25,16,7,6,6,0,0,6,6,6,5,41,29,18,9,10,10,1,1,6,7 -050,01,011,Alabama,Bullock County,8,8,661,397,264,138,54,243,199,3,3,1,1,6,4,6,3,144,57,248,201,3,4,2,1,6,4,370,233,124,32,240,196,1,1,1,1,1,0,3,3,127,35,243,198,1,2,1,1,1,0,27,31,14,22,3,3,2,2,0,0,5,4,3,0,17,22,5,3,2,2,1,0,5,4 -050,01,011,Alabama,Bullock County,8,9,685,406,279,147,68,253,206,2,2,0,2,2,0,2,1,149,68,254,206,3,2,0,3,2,1,379,253,126,42,250,206,1,2,0,2,0,0,2,1,128,42,251,206,2,2,0,3,0,1,27,26,21,26,3,0,1,0,0,0,2,0,0,0,21,26,3,0,1,0,0,0,2,0 -050,01,011,Alabama,Bullock County,8,10,656,397,259,151,44,242,209,1,4,2,1,1,0,0,1,151,45,242,209,1,5,2,1,1,0,388,252,144,39,241,208,1,4,2,1,0,0,0,0,144,39,241,208,1,4,2,1,0,0,9,7,7,5,1,1,0,0,0,0,1,0,0,1,7,6,1,1,0,1,0,0,1,0 -050,01,011,Alabama,Bullock County,8,11,744,405,339,107,61,294,273,2,1,1,2,0,0,1,2,107,62,295,274,2,3,2,2,0,0,400,337,104,61,293,272,2,0,1,2,0,0,0,2,104,62,293,273,2,2,1,2,0,0,5,2,3,0,1,1,0,1,0,0,0,0,1,0,3,0,2,1,0,1,1,0,0,0 -050,01,011,Alabama,Bullock County,8,12,789,415,374,126,80,286,290,2,2,0,0,0,0,1,2,127,82,287,292,2,2,0,0,0,0,408,362,123,73,284,286,0,1,0,0,0,0,1,2,124,75,285,288,0,1,0,0,0,0,7,12,3,7,2,4,2,1,0,0,0,0,0,0,3,7,2,4,2,1,0,0,0,0 -050,01,011,Alabama,Bullock County,8,13,686,382,304,119,79,257,224,1,1,0,0,1,0,4,0,123,79,258,224,4,1,0,0,1,0,377,299,118,75,255,223,0,1,0,0,0,0,4,0,122,75,256,223,3,1,0,0,0,0,5,5,1,4,2,1,1,0,0,0,1,0,0,0,1,4,2,1,1,0,0,0,1,0 -050,01,011,Alabama,Bullock County,8,14,534,245,289,82,78,160,205,0,2,0,1,2,1,1,2,83,80,160,207,1,2,0,1,2,1,242,287,81,78,160,205,0,2,0,0,0,0,1,2,82,80,160,207,1,2,0,0,0,0,3,2,1,0,0,0,0,0,0,1,2,1,0,0,1,0,0,0,0,0,0,1,2,1 -050,01,011,Alabama,Bullock County,8,15,381,163,218,71,67,86,147,2,2,0,0,0,0,4,2,74,69,87,147,6,4,0,0,0,0,156,215,68,66,84,145,0,2,0,0,0,0,4,2,71,68,85,145,4,4,0,0,0,0,7,3,3,1,2,2,2,0,0,0,0,0,0,0,3,1,2,2,2,0,0,0,0,0 -050,01,011,Alabama,Bullock County,8,16,291,130,161,56,61,74,100,0,0,0,0,0,0,0,0,56,61,74,100,0,0,0,0,0,0,126,160,54,61,72,99,0,0,0,0,0,0,0,0,54,61,72,99,0,0,0,0,0,0,4,1,2,0,2,1,0,0,0,0,0,0,0,0,2,0,2,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,8,17,196,73,123,39,48,34,75,0,0,0,0,0,0,0,0,39,48,34,75,0,0,0,0,0,0,71,121,38,46,33,75,0,0,0,0,0,0,0,0,38,46,33,75,0,0,0,0,0,0,2,2,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,8,18,191,53,138,21,43,32,93,0,2,0,0,0,0,0,0,21,43,32,93,0,2,0,0,0,0,53,137,21,43,32,92,0,2,0,0,0,0,0,0,21,43,32,92,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,9,0,10397,5652,4745,1664,1071,3826,3522,39,51,11,15,40,35,72,51,1734,1115,3868,3548,66,76,20,23,44,39,5251,4382,1428,838,3753,3477,9,20,10,10,3,2,48,35,1474,870,3783,3494,25,36,16,15,4,3,401,363,236,233,73,45,30,31,1,5,37,33,24,16,260,245,85,54,41,40,4,8,40,36 -050,01,011,Alabama,Bullock County,9,1,617,296,321,76,92,208,221,0,0,1,2,0,0,11,6,87,98,217,224,2,1,2,4,1,0,255,264,38,40,205,218,0,0,1,0,0,0,11,6,49,46,214,221,2,1,2,2,1,0,41,57,38,52,3,3,0,0,0,2,0,0,0,0,38,52,3,3,0,0,0,2,0,0 -050,01,011,Alabama,Bullock County,9,2,640,341,299,65,47,251,226,8,9,2,3,5,5,10,9,75,54,256,233,12,13,3,4,5,5,289,261,41,28,240,223,0,1,1,1,1,1,6,7,47,34,243,228,2,4,2,2,1,1,52,38,24,19,11,3,8,8,1,2,4,4,4,2,28,20,13,5,10,9,1,2,4,4 -050,01,011,Alabama,Bullock County,9,3,554,295,259,63,56,212,188,3,2,1,0,4,7,12,6,75,62,217,192,7,4,4,2,5,8,253,221,35,34,207,185,1,0,1,0,0,0,9,2,44,36,212,186,3,1,4,0,0,0,42,38,28,22,5,3,2,2,0,0,4,7,3,4,31,26,5,6,4,3,0,2,5,8 -050,01,011,Alabama,Bullock County,9,4,545,279,266,46,48,223,206,4,3,1,0,2,4,3,5,49,52,225,209,4,6,2,1,2,4,259,242,37,37,219,202,2,0,1,0,0,0,0,3,37,39,219,204,2,1,1,1,0,0,20,24,9,11,4,4,2,3,0,0,2,4,3,2,12,13,6,5,2,5,1,0,2,4 -050,01,011,Alabama,Bullock County,9,5,671,384,287,77,42,297,242,1,1,1,0,2,1,6,1,83,42,303,242,1,1,1,1,2,2,367,273,68,35,292,238,0,0,1,0,1,0,5,0,73,35,297,238,0,0,1,0,1,0,17,14,9,7,5,4,1,1,0,0,1,1,1,1,10,7,6,4,1,1,0,1,1,2 -050,01,011,Alabama,Bullock County,9,6,756,463,293,115,47,332,229,3,6,1,2,7,5,5,4,120,51,333,230,6,9,3,2,7,5,412,259,87,29,321,224,1,1,1,2,0,0,2,3,89,32,322,225,1,3,2,2,0,0,51,34,28,18,11,5,2,5,0,0,7,5,3,1,31,19,11,5,5,6,1,0,7,5 -050,01,011,Alabama,Bullock County,9,7,810,519,291,155,61,346,209,7,9,1,1,7,6,3,5,158,65,347,211,9,12,1,1,7,7,441,236,111,31,329,201,0,1,1,1,0,1,0,1,111,32,329,202,0,1,1,1,0,1,78,55,44,30,17,8,7,8,0,0,7,5,3,4,47,33,18,9,9,11,0,0,7,6 -050,01,011,Alabama,Bullock County,9,8,677,415,262,139,50,257,198,3,5,1,1,7,4,8,4,147,52,263,200,5,7,2,2,9,5,386,234,126,32,254,195,1,3,1,1,1,0,3,3,129,34,256,196,2,4,1,2,1,1,29,28,13,18,3,3,2,2,0,0,6,4,5,1,18,18,7,4,3,3,1,0,8,4 -050,01,011,Alabama,Bullock County,9,9,665,388,277,150,71,232,201,1,2,0,1,2,1,3,1,153,72,234,202,2,2,0,1,2,1,359,245,127,41,230,200,0,2,0,1,0,0,2,1,129,42,231,201,1,2,0,1,0,0,29,32,23,30,2,1,1,0,0,0,2,1,1,0,24,30,3,1,1,0,0,0,2,1 -050,01,011,Alabama,Bullock County,9,10,668,416,252,162,50,250,196,2,4,1,2,1,0,0,0,162,50,250,196,2,4,1,2,1,0,406,240,155,38,248,196,2,4,1,2,0,0,0,0,155,38,248,196,2,4,1,2,0,0,10,12,7,12,2,0,0,0,0,0,1,0,0,0,7,12,2,0,0,0,0,0,1,0 -050,01,011,Alabama,Bullock County,9,11,713,387,326,105,57,280,263,2,0,0,2,0,0,0,4,105,61,280,264,2,3,0,2,0,0,384,323,103,57,279,261,2,0,0,2,0,0,0,3,103,60,279,261,2,3,0,2,0,0,3,3,2,0,1,2,0,0,0,0,0,0,0,1,2,1,1,3,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,9,12,777,411,366,128,74,278,287,2,3,1,0,0,0,2,2,130,76,279,288,4,4,1,0,0,0,403,354,125,67,276,284,0,1,1,0,0,0,1,2,126,69,276,285,1,2,1,0,0,0,8,12,3,7,2,3,2,2,0,0,0,0,1,0,4,7,3,3,3,2,0,0,0,0 -050,01,011,Alabama,Bullock County,9,13,678,369,309,114,80,251,228,1,1,0,0,0,0,3,0,116,80,254,228,2,1,0,0,0,0,365,304,113,77,249,226,0,1,0,0,0,0,3,0,115,77,252,226,1,1,0,0,0,0,4,5,1,3,2,2,1,0,0,0,0,0,0,0,1,3,2,2,1,0,0,0,0,0 -050,01,011,Alabama,Bullock County,9,14,564,269,295,86,77,179,212,0,2,0,0,2,2,2,2,88,79,179,213,2,3,0,0,2,2,266,292,85,76,179,212,0,2,0,0,0,0,2,2,87,78,179,213,2,3,0,0,0,0,3,3,1,1,0,0,0,0,0,0,2,2,0,0,1,1,0,0,0,0,0,0,2,2 -050,01,011,Alabama,Bullock County,9,15,378,164,214,72,66,85,143,2,2,0,1,1,0,4,2,75,68,86,143,6,4,0,1,1,0,156,210,69,65,83,141,0,2,0,0,0,0,4,2,72,67,84,141,4,4,0,0,0,0,8,4,3,1,2,2,2,0,0,1,1,0,0,0,3,1,2,2,2,0,0,1,1,0 -050,01,011,Alabama,Bullock County,9,16,284,123,161,53,59,70,102,0,0,0,0,0,0,0,0,53,59,70,102,0,0,0,0,0,0,119,160,51,59,68,101,0,0,0,0,0,0,0,0,51,59,68,101,0,0,0,0,0,0,4,1,2,0,2,1,0,0,0,0,0,0,0,0,2,0,2,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,9,17,206,79,127,35,48,44,79,0,0,0,0,0,0,0,0,35,48,44,79,0,0,0,0,0,0,78,125,34,46,44,79,0,0,0,0,0,0,0,0,34,46,44,79,0,0,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,9,18,194,54,140,23,46,31,92,0,2,0,0,0,0,0,0,23,46,31,92,0,2,0,0,0,0,53,139,23,46,30,91,0,2,0,0,0,0,0,0,23,46,30,91,0,2,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,10,0,10181,5519,4662,1615,1047,3742,3472,38,46,9,12,40,34,75,51,1681,1092,3784,3501,68,66,23,20,49,39,5107,4281,1368,793,3668,3425,8,19,8,7,3,2,52,35,1414,826,3697,3445,23,32,19,14,7,3,412,381,247,254,74,47,30,27,1,5,37,32,23,16,267,266,87,56,45,34,4,6,42,36 -050,01,011,Alabama,Bullock County,10,1,609,287,322,58,78,219,236,0,0,1,2,0,0,9,6,67,83,223,242,2,0,4,3,0,0,252,271,25,31,217,234,0,0,1,0,0,0,9,6,34,36,221,240,2,0,4,1,0,0,35,51,33,47,2,2,0,0,0,2,0,0,0,0,33,47,2,2,0,0,0,2,0,0 -050,01,011,Alabama,Bullock County,10,2,598,314,284,66,57,224,208,8,6,2,3,4,2,10,8,75,65,230,215,9,8,5,5,7,2,262,239,36,24,217,205,0,1,1,1,1,1,7,7,42,31,221,211,0,3,3,3,3,1,52,45,30,33,7,3,8,5,1,2,3,1,3,1,33,34,9,4,9,5,2,2,4,1 -050,01,011,Alabama,Bullock County,10,3,587,314,273,66,51,226,206,2,3,0,0,5,7,15,6,78,56,235,211,8,4,1,1,7,8,268,230,40,28,216,200,0,0,0,0,0,0,12,2,50,30,224,202,4,0,1,0,1,0,46,43,26,23,10,6,2,3,0,0,5,7,3,4,28,26,11,9,4,4,0,1,6,8 -050,01,011,Alabama,Bullock County,10,4,533,274,259,51,45,214,198,4,2,0,0,2,7,3,7,54,51,216,199,5,6,0,1,2,9,247,234,35,34,209,196,2,0,0,0,0,0,1,4,36,38,210,196,2,2,0,1,0,1,27,25,16,11,5,2,2,2,0,0,2,7,2,3,18,13,6,3,3,4,0,0,2,8 -050,01,011,Alabama,Bullock County,10,5,638,374,264,75,44,291,217,0,1,1,0,1,1,6,1,81,45,295,218,1,1,2,0,1,1,356,247,64,34,286,213,0,0,1,0,0,0,5,0,69,34,289,213,1,0,2,0,0,0,18,17,11,10,5,4,0,1,0,0,1,1,1,1,12,11,6,5,0,1,0,0,1,1 -050,01,011,Alabama,Bullock County,10,6,741,452,289,103,34,334,243,3,4,0,0,6,5,6,3,107,37,339,245,5,5,0,0,7,5,413,264,83,21,325,240,1,1,0,0,1,0,3,2,84,23,328,241,2,2,0,0,2,0,39,25,20,13,9,3,2,3,0,0,5,5,3,1,23,14,11,4,3,3,0,0,5,5 -050,01,011,Alabama,Bullock County,10,7,785,497,288,149,58,330,213,6,8,2,1,7,4,3,4,151,61,330,214,9,11,2,1,8,5,418,237,101,31,315,203,0,0,2,1,0,1,0,1,101,32,315,203,0,1,2,1,0,1,79,51,48,27,15,10,6,8,0,0,7,3,3,3,50,29,15,11,9,10,0,0,8,4 -050,01,011,Alabama,Bullock County,10,8,662,398,264,133,55,243,191,5,6,1,1,7,5,9,6,141,60,250,193,10,10,3,1,8,6,359,228,117,33,236,187,1,3,1,1,1,0,3,4,120,37,238,188,1,6,2,1,1,0,39,36,16,22,7,4,4,3,0,0,6,5,6,2,21,23,12,5,9,4,1,0,7,6 -050,01,011,Alabama,Bullock County,10,9,637,376,261,144,70,225,185,1,3,0,1,3,1,3,1,147,71,226,185,3,3,0,2,3,1,351,225,125,36,224,184,0,3,0,1,0,0,2,1,127,37,225,184,1,3,0,2,0,0,25,36,19,34,1,1,1,0,0,0,3,1,1,0,20,34,1,1,2,0,0,0,3,1 -050,01,011,Alabama,Bullock County,10,10,666,412,254,162,59,246,189,2,4,1,2,1,0,0,0,162,59,246,189,2,4,1,2,1,0,393,235,147,40,243,189,2,4,1,2,0,0,0,0,147,40,243,189,2,4,1,2,0,0,19,19,15,19,3,0,0,0,0,0,1,0,0,0,15,19,3,0,0,0,0,0,1,0 -050,01,011,Alabama,Bullock County,10,11,660,355,305,108,47,244,256,2,0,0,1,1,0,0,1,108,48,244,256,2,1,0,1,1,0,352,300,107,46,243,253,2,0,0,1,0,0,0,0,107,46,243,253,2,0,0,1,0,0,3,5,1,1,1,3,0,0,0,0,1,0,0,1,1,2,1,3,0,1,0,0,1,0 -050,01,011,Alabama,Bullock County,10,12,763,406,357,115,76,286,274,2,3,1,0,0,0,2,4,117,79,288,277,4,4,2,2,1,0,398,348,112,71,284,272,0,1,1,0,0,0,1,4,113,74,285,275,1,2,1,2,0,0,8,9,3,5,2,2,2,2,0,0,0,0,1,0,4,5,3,2,3,2,1,0,1,0 -050,01,011,Alabama,Bullock County,10,13,686,370,316,121,81,246,234,0,1,0,0,0,0,3,0,123,81,248,234,0,1,2,0,0,0,366,308,119,76,244,231,0,1,0,0,0,0,3,0,121,76,246,231,0,1,2,0,0,0,4,8,2,5,2,3,0,0,0,0,0,0,0,0,2,5,2,3,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,10,14,535,252,283,72,76,177,201,1,2,0,0,1,2,1,2,73,78,177,201,2,4,0,0,1,2,250,280,72,75,177,201,0,2,0,0,0,0,1,2,73,77,177,201,1,4,0,0,0,0,2,3,0,1,0,0,1,0,0,0,1,2,0,0,0,1,0,0,1,0,0,0,1,2 -050,01,011,Alabama,Bullock County,10,15,410,184,226,82,77,95,145,0,1,0,1,2,0,5,2,87,79,95,146,4,2,1,1,2,0,177,222,78,76,94,143,0,1,0,0,0,0,5,2,83,78,94,144,4,2,1,0,0,0,7,4,4,1,1,2,0,0,0,1,2,0,0,0,4,1,1,2,0,0,0,1,2,0 -050,01,011,Alabama,Bullock County,10,16,273,119,154,50,45,67,109,2,0,0,0,0,0,0,0,50,45,67,109,2,0,0,0,0,0,112,153,48,45,64,108,0,0,0,0,0,0,0,0,48,45,64,108,0,0,0,0,0,0,7,1,2,0,3,1,2,0,0,0,0,0,0,0,2,0,3,1,2,0,0,0,0,0 -050,01,011,Alabama,Bullock County,10,17,212,77,135,36,52,41,83,0,0,0,0,0,0,0,0,36,52,41,83,0,0,0,0,0,0,77,134,36,51,41,83,0,0,0,0,0,0,0,0,36,51,41,83,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,10,18,186,58,128,24,42,34,84,0,2,0,0,0,0,0,0,24,42,34,84,0,2,0,0,0,0,56,126,23,41,33,83,0,2,0,0,0,0,0,0,23,41,33,83,0,2,0,0,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,11,0,10165,5527,4638,1620,1063,3747,3432,38,44,8,13,40,34,74,52,1681,1107,3788,3461,69,60,21,26,45,41,5103,4236,1361,785,3673,3388,8,17,7,8,3,2,51,36,1403,816,3701,3408,29,28,16,15,5,6,424,402,259,278,74,44,30,27,1,5,37,32,23,16,278,291,87,53,40,32,5,11,40,35 -050,01,011,Alabama,Bullock County,11,1,597,282,315,65,74,209,234,0,0,1,2,0,0,7,5,71,78,214,238,2,0,2,4,0,0,243,264,26,27,209,232,0,0,1,0,0,0,7,5,32,31,214,236,2,0,2,2,0,0,39,51,39,47,0,2,0,0,0,2,0,0,0,0,39,47,0,2,0,0,0,2,0,0 -050,01,011,Alabama,Bullock County,11,2,599,303,296,64,69,220,208,5,6,2,3,2,1,10,9,72,77,225,214,10,6,4,5,3,3,256,244,34,29,214,205,0,1,1,1,0,0,7,8,40,37,217,210,3,1,3,3,0,1,47,52,30,40,6,3,5,5,1,2,2,1,3,1,32,40,8,4,7,5,1,2,3,2 -050,01,011,Alabama,Bullock County,11,3,603,341,262,68,44,251,202,5,3,0,0,6,7,11,6,76,50,258,205,7,4,3,1,8,8,289,224,41,22,238,199,0,0,0,0,1,1,9,2,48,24,243,201,1,0,3,0,3,1,52,38,27,22,13,3,5,3,0,0,5,6,2,4,28,26,15,4,6,4,0,1,5,7 -050,01,011,Alabama,Bullock County,11,4,528,268,260,45,55,209,189,4,1,0,0,2,8,8,7,51,60,215,194,7,3,1,3,2,9,238,229,26,39,205,186,2,0,0,0,0,0,5,4,29,42,209,188,4,2,1,1,0,0,30,31,19,16,4,3,2,1,0,0,2,8,3,3,22,18,6,6,3,1,0,2,2,9 -050,01,011,Alabama,Bullock County,11,5,626,368,258,81,42,281,210,0,2,0,0,1,1,5,3,84,45,285,212,1,2,2,1,1,1,351,243,71,34,276,207,0,0,0,0,0,0,4,2,73,36,280,209,1,0,1,0,0,0,17,15,10,8,5,3,0,2,0,0,1,1,1,1,11,9,5,3,0,2,1,1,1,1 -050,01,011,Alabama,Bullock County,11,6,766,483,283,110,30,359,243,2,3,0,0,6,4,6,3,115,33,362,244,6,4,1,1,6,4,452,263,95,20,351,240,1,1,0,0,1,0,4,2,98,22,354,241,3,2,0,0,1,0,31,20,15,10,8,3,1,2,0,0,5,4,2,1,17,11,8,3,3,2,1,1,5,4 -050,01,011,Alabama,Bullock County,11,7,761,476,285,144,54,316,218,4,8,1,0,7,3,4,2,148,56,318,219,5,9,1,1,8,3,401,242,95,32,305,209,0,0,1,0,0,1,0,0,95,32,305,209,0,0,1,0,0,1,75,43,49,22,11,9,4,8,0,0,7,2,4,2,53,24,13,10,5,9,0,1,8,2 -050,01,011,Alabama,Bullock County,11,8,691,421,270,137,57,262,192,6,6,1,2,8,6,7,7,142,61,267,196,9,10,2,3,9,7,369,224,116,28,249,187,0,3,1,2,1,0,2,4,118,30,251,189,0,5,1,3,1,1,52,46,21,29,13,5,6,3,0,0,7,6,5,3,24,31,16,7,9,5,1,0,8,6 -050,01,011,Alabama,Bullock County,11,9,643,372,271,143,79,218,185,3,3,1,1,3,2,4,1,147,80,219,185,5,4,2,1,3,2,346,220,125,32,217,184,1,2,1,1,0,0,2,1,127,33,217,184,3,3,1,1,0,0,26,51,18,47,1,1,2,1,0,0,3,2,2,0,20,47,2,1,2,1,1,0,3,2 -050,01,011,Alabama,Bullock County,11,10,650,404,246,164,62,236,180,2,2,0,2,1,0,1,0,165,62,236,180,3,2,0,2,1,0,384,226,147,42,234,180,2,2,0,2,0,0,1,0,148,42,234,180,3,2,0,2,0,0,20,20,17,20,2,0,0,0,0,0,1,0,0,0,17,20,2,0,0,0,0,0,1,0 -050,01,011,Alabama,Bullock County,11,11,602,335,267,101,43,230,221,2,1,1,1,1,0,0,1,101,44,230,222,2,2,1,1,1,0,330,260,99,40,228,218,2,1,1,1,0,0,0,0,99,40,228,218,2,1,1,1,0,0,5,7,2,3,2,3,0,0,0,0,1,0,0,1,2,4,2,4,0,1,0,0,1,0 -050,01,011,Alabama,Bullock County,11,12,766,404,362,114,73,285,283,2,3,1,0,0,0,2,3,116,76,286,284,3,5,1,0,0,1,396,355,111,70,283,281,0,1,1,0,0,0,1,3,112,73,283,282,1,3,1,0,0,1,8,7,3,3,2,2,2,2,0,0,0,0,1,0,4,3,3,2,2,2,0,0,0,0 -050,01,011,Alabama,Bullock County,11,13,687,364,323,119,86,243,235,0,1,0,0,0,0,2,1,121,87,245,235,0,1,0,1,0,0,362,315,118,81,242,232,0,1,0,0,0,0,2,1,120,82,244,232,0,1,0,1,0,0,2,8,1,5,1,3,0,0,0,0,0,0,0,0,1,5,1,3,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,11,14,545,267,278,72,75,191,197,1,2,0,0,1,2,2,2,74,77,191,197,2,4,1,0,1,2,263,273,71,72,190,197,0,2,0,0,0,0,2,2,73,74,190,197,1,4,1,0,0,0,4,5,1,3,1,0,1,0,0,0,1,2,0,0,1,3,1,0,1,0,0,0,1,2 -050,01,011,Alabama,Bullock County,11,15,409,179,230,80,71,93,154,0,1,0,2,2,0,4,2,84,72,93,155,4,2,0,2,2,1,173,226,77,70,92,152,0,1,0,1,0,0,4,2,81,71,92,153,4,2,0,1,0,1,6,4,3,1,1,2,0,0,0,1,2,0,0,0,3,1,1,2,0,0,0,1,2,0 -050,01,011,Alabama,Bullock County,11,16,281,119,162,53,54,63,108,2,0,0,0,0,0,1,0,54,54,63,108,3,0,0,0,0,0,112,162,51,54,60,108,0,0,0,0,0,0,1,0,52,54,60,108,1,0,0,0,0,0,7,0,2,0,3,0,2,0,0,0,0,0,0,0,2,0,3,0,2,0,0,0,0,0 -050,01,011,Alabama,Bullock County,11,17,226,90,136,38,50,52,86,0,0,0,0,0,0,0,0,38,50,52,86,0,0,0,0,0,0,89,134,37,49,52,85,0,0,0,0,0,0,0,0,37,49,52,85,0,0,0,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,11,18,185,51,134,22,45,29,87,0,2,0,0,0,0,0,0,22,45,29,87,0,2,0,0,0,0,49,132,21,44,28,86,0,2,0,0,0,0,0,0,21,44,28,86,0,2,0,0,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,12,0,10144,5547,4597,1645,1048,3740,3396,39,45,10,14,38,35,75,59,1710,1101,3780,3431,72,68,22,24,43,36,5105,4191,1365,769,3667,3352,9,17,9,9,3,2,52,42,1408,806,3699,3379,28,32,19,17,6,3,442,406,280,279,73,44,30,28,1,5,35,33,23,17,302,295,81,52,44,36,3,7,37,33 -050,01,011,Alabama,Bullock County,12,1,566,268,298,68,69,192,214,1,1,1,2,1,1,5,11,72,79,195,220,3,4,2,5,1,1,223,245,26,24,191,211,0,0,1,0,0,0,5,10,30,33,194,217,2,2,2,3,0,0,45,53,42,45,1,3,1,1,0,2,1,1,0,1,42,46,1,3,1,2,0,2,1,1 -050,01,011,Alabama,Bullock County,12,2,612,303,309,69,80,219,213,3,4,0,2,1,0,11,10,80,88,225,221,5,9,2,3,2,0,255,254,30,34,215,210,0,1,0,0,0,0,10,9,40,42,221,217,1,5,2,1,1,0,48,55,39,46,4,3,3,3,0,2,1,0,1,1,40,46,4,4,4,4,0,2,1,0 -050,01,011,Alabama,Bullock County,12,3,618,345,273,69,44,249,210,6,5,2,1,6,8,13,5,78,49,258,212,13,7,3,2,6,8,291,230,42,19,238,207,0,0,1,1,1,1,9,2,47,21,245,208,5,1,2,1,1,1,54,43,27,25,11,3,6,5,1,0,5,7,4,3,31,28,13,4,8,6,1,1,5,7 -050,01,011,Alabama,Bullock County,12,4,522,272,250,49,55,207,180,5,0,0,0,3,8,8,7,57,62,212,185,7,2,2,0,4,8,231,217,24,38,200,176,2,0,0,0,0,0,5,3,29,41,203,179,3,0,2,0,1,0,41,33,25,17,7,4,3,0,0,0,3,8,3,4,28,21,9,6,4,2,0,0,3,8 -050,01,011,Alabama,Bullock County,12,5,601,352,249,82,43,264,199,0,3,1,0,1,1,4,3,86,46,268,200,0,5,1,0,1,1,336,233,72,33,260,197,0,0,1,0,0,0,3,3,75,36,263,198,0,2,1,0,0,0,16,16,10,10,4,2,0,3,0,0,1,1,1,0,11,10,5,2,0,3,0,0,1,1 -050,01,011,Alabama,Bullock County,12,6,767,495,272,111,29,370,235,3,3,0,0,5,3,6,2,116,31,373,237,5,3,2,0,5,3,470,254,100,19,362,233,2,1,0,0,1,0,5,1,104,20,365,234,3,1,2,0,1,0,25,18,11,10,8,2,1,2,0,0,4,3,1,1,12,11,8,3,2,2,0,0,4,3 -050,01,011,Alabama,Bullock County,12,7,731,457,274,146,51,296,212,3,5,1,0,7,3,4,3,149,54,297,214,6,6,1,0,8,3,385,237,98,29,286,206,0,0,1,0,0,1,0,1,98,30,286,207,0,0,1,0,0,1,72,37,48,22,10,6,3,5,0,0,7,2,4,2,51,24,11,7,6,6,0,0,8,2 -050,01,011,Alabama,Bullock County,12,8,739,453,286,148,55,284,209,5,9,1,1,7,7,8,5,156,60,287,211,9,11,2,2,7,7,390,237,118,30,268,202,0,3,1,1,1,0,2,1,120,31,270,203,0,3,1,1,1,0,63,49,30,25,16,7,5,6,0,0,6,7,6,4,36,29,17,8,9,8,1,1,6,7 -050,01,011,Alabama,Bullock County,12,9,664,396,268,147,82,236,176,4,2,1,2,4,2,4,4,151,84,238,180,6,3,1,5,4,2,373,215,133,34,236,174,1,1,1,2,0,0,2,4,135,36,237,178,2,2,1,5,0,0,23,53,14,48,0,2,3,1,0,0,4,2,2,0,16,48,1,2,4,1,0,0,4,2 -050,01,011,Alabama,Bullock County,12,10,628,399,229,166,51,230,173,1,3,0,2,1,0,1,0,166,51,230,173,1,3,1,2,2,0,377,217,148,39,227,173,1,3,0,2,0,0,1,0,148,39,227,173,1,3,1,2,1,0,22,12,18,12,3,0,0,0,0,0,1,0,0,0,18,12,3,0,0,0,0,0,1,0 -050,01,011,Alabama,Bullock County,12,11,577,328,249,100,38,223,207,3,1,1,2,1,0,0,1,100,39,223,208,3,1,1,2,1,0,324,241,98,33,222,205,3,1,1,2,0,0,0,0,98,33,222,205,3,1,1,2,0,0,4,8,2,5,1,2,0,0,0,0,1,0,0,1,2,6,1,3,0,0,0,0,1,0 -050,01,011,Alabama,Bullock County,12,12,719,374,345,102,64,269,276,1,3,1,0,0,0,1,2,103,66,269,276,2,3,2,1,1,1,365,339,98,62,266,274,0,1,1,0,0,0,0,2,98,64,266,274,0,1,1,1,0,1,9,6,4,2,3,2,1,2,0,0,0,0,1,0,5,2,3,2,2,2,1,0,1,0 -050,01,011,Alabama,Bullock County,12,13,700,359,341,112,88,243,251,1,0,1,0,0,0,2,2,114,90,244,252,2,1,1,0,0,0,355,332,110,83,242,247,0,0,1,0,0,0,2,2,112,85,243,248,1,1,1,0,0,0,4,9,2,5,1,4,1,0,0,0,0,0,0,0,2,5,1,4,1,0,0,0,0,0 -050,01,011,Alabama,Bullock County,12,14,572,295,277,85,77,205,195,1,3,0,0,1,1,3,1,88,77,205,196,3,4,1,0,1,1,291,272,84,73,204,195,0,3,0,0,0,0,3,1,87,73,204,196,2,4,1,0,0,0,4,5,1,4,1,0,1,0,0,0,1,1,0,0,1,4,1,0,1,0,0,0,1,1 -050,01,011,Alabama,Bullock County,12,15,425,183,242,78,71,102,164,0,1,0,2,0,1,3,3,79,74,105,164,3,4,0,2,0,1,180,238,75,70,102,163,0,1,0,1,0,0,3,3,76,73,105,163,3,4,0,1,0,0,3,4,3,1,0,1,0,0,0,1,0,1,0,0,3,1,0,1,0,0,0,1,0,1 -050,01,011,Alabama,Bullock County,12,16,277,120,157,49,53,67,104,2,0,0,0,0,0,2,0,51,53,67,104,4,0,0,0,0,0,115,156,47,53,66,103,0,0,0,0,0,0,2,0,49,53,66,103,2,0,0,0,0,0,5,1,2,0,1,1,2,0,0,0,0,0,0,0,2,0,1,1,2,0,0,0,0,0 -050,01,011,Alabama,Bullock County,12,17,230,90,140,39,48,51,92,0,0,0,0,0,0,0,0,39,48,51,92,0,0,0,0,0,0,88,138,38,47,50,91,0,0,0,0,0,0,0,0,38,47,50,91,0,0,0,0,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,12,18,196,58,138,25,50,33,86,0,2,0,0,0,0,0,0,25,50,33,86,0,2,0,0,0,0,56,136,24,49,32,85,0,2,0,0,0,0,0,0,24,49,32,85,0,2,0,0,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,13,0,9976,5461,4515,1638,1038,3652,3326,41,47,12,15,40,36,78,53,1706,1085,3697,3363,72,66,25,26,43,36,4998,4093,1352,752,3574,3278,9,17,6,9,3,2,54,35,1401,783,3603,3302,32,28,14,17,4,2,463,422,286,286,78,48,32,30,6,6,37,34,24,18,305,302,94,61,40,38,11,9,39,34 -050,01,011,Alabama,Bullock County,13,1,566,275,291,58,65,200,213,3,3,5,1,3,3,6,6,64,71,205,216,4,5,5,2,3,3,228,235,25,22,197,208,0,0,1,1,0,0,5,4,30,26,201,210,1,1,1,2,0,0,47,56,33,43,3,5,3,3,4,0,3,3,1,2,34,45,4,6,3,4,4,0,3,3 -050,01,011,Alabama,Bullock County,13,2,584,285,299,64,79,210,207,0,0,0,4,0,0,11,9,72,87,216,215,4,1,3,5,1,0,246,240,30,27,205,204,0,0,0,0,0,0,11,9,38,35,211,212,4,1,3,1,1,0,39,59,34,52,5,3,0,0,0,4,0,0,0,0,34,52,5,3,0,0,0,4,0,0 -050,01,011,Alabama,Bullock County,13,3,609,337,272,71,43,237,209,9,8,2,1,6,7,12,4,83,47,244,212,14,9,4,1,7,7,273,227,37,16,228,206,0,1,0,1,1,1,7,2,44,18,232,208,3,1,1,1,1,1,64,45,34,27,9,3,9,7,2,0,5,6,5,2,39,29,12,4,11,8,3,0,6,6 -050,01,011,Alabama,Bullock County,13,4,509,271,238,57,51,198,171,3,1,0,0,3,7,10,8,65,58,203,178,8,4,2,2,3,7,229,203,30,33,190,167,1,0,0,0,0,0,8,3,37,36,194,170,5,1,1,0,0,0,42,35,27,18,8,4,2,1,0,0,3,7,2,5,28,22,9,8,3,3,1,2,3,7 -050,01,011,Alabama,Bullock County,13,5,558,332,226,81,35,242,183,2,2,0,1,2,2,5,3,86,38,247,184,2,3,0,3,2,2,306,213,66,31,236,180,1,0,0,0,0,0,3,2,69,33,239,180,1,1,0,2,0,0,26,13,15,4,6,3,1,2,0,1,2,2,2,1,17,5,8,4,1,2,0,1,2,2 -050,01,011,Alabama,Bullock County,13,6,723,473,250,108,29,353,216,3,2,0,0,3,1,6,2,114,31,356,218,5,2,2,0,3,1,453,236,98,22,347,213,2,0,0,0,1,0,5,1,103,23,349,214,4,0,2,0,1,0,20,14,10,7,6,3,1,2,0,0,2,1,1,1,11,8,7,4,1,2,0,0,2,1 -050,01,011,Alabama,Bullock County,13,7,739,470,269,138,44,317,212,3,7,1,0,8,4,3,2,141,45,318,214,4,8,2,0,8,4,403,232,96,23,306,207,0,1,1,0,0,0,0,1,96,24,306,208,0,1,1,0,0,0,67,37,42,21,11,5,3,6,0,0,8,4,3,1,45,21,12,6,4,7,1,0,8,4 -050,01,011,Alabama,Bullock County,13,8,710,439,271,151,52,268,198,5,8,1,1,6,6,8,6,157,57,276,203,6,10,2,3,6,6,372,224,117,27,252,191,0,3,1,1,0,1,2,1,119,27,254,192,0,3,1,2,0,1,67,47,34,25,16,7,5,5,0,0,6,5,6,5,38,30,22,11,6,7,1,1,6,5 -050,01,011,Alabama,Bullock County,13,9,667,378,289,140,89,226,189,3,3,0,1,5,4,4,3,143,92,226,190,6,5,1,2,6,4,352,228,125,37,224,186,1,1,0,1,1,0,1,3,126,40,224,187,2,3,0,2,1,0,26,61,15,52,2,3,2,2,0,0,4,4,3,0,17,52,2,3,4,2,1,0,5,4 -050,01,011,Alabama,Bullock County,13,10,639,410,229,171,56,233,169,2,2,0,1,2,0,2,1,172,57,234,169,3,3,1,1,2,0,383,211,150,38,230,169,1,2,0,1,0,0,2,1,151,39,231,169,2,3,1,1,0,0,27,18,21,18,3,0,1,0,0,0,2,0,0,0,21,18,3,0,1,0,0,0,2,0 -050,01,011,Alabama,Bullock County,13,11,543,313,230,101,37,209,188,1,2,1,2,1,0,0,1,101,38,209,188,1,3,1,2,1,0,305,222,95,32,208,186,1,2,1,2,0,0,0,0,95,32,208,186,1,2,1,2,0,0,8,8,6,5,1,2,0,0,0,0,1,0,0,1,6,6,1,2,0,1,0,0,1,0 -050,01,011,Alabama,Bullock County,13,12,651,336,315,96,65,236,246,2,1,1,1,0,0,1,2,96,66,237,248,3,3,1,1,0,0,329,313,92,65,234,245,2,0,1,1,0,0,0,2,92,66,234,247,2,2,1,1,0,0,7,2,4,0,2,1,0,1,0,0,0,0,1,0,4,0,3,1,1,1,0,0,0,0 -050,01,011,Alabama,Bullock County,13,13,715,370,345,120,84,246,257,2,2,0,0,0,0,2,2,122,86,248,258,2,3,0,0,0,0,364,333,117,77,245,253,0,1,0,0,0,0,2,2,119,79,247,254,0,2,0,0,0,0,6,12,3,7,1,4,2,1,0,0,0,0,0,0,3,7,1,4,2,1,0,0,0,0 -050,01,011,Alabama,Bullock County,13,14,597,301,296,91,86,204,209,1,1,1,0,1,0,3,0,94,86,205,209,3,1,1,0,1,0,296,291,90,82,202,208,0,1,1,0,0,0,3,0,93,82,203,208,2,1,1,0,0,0,5,5,1,4,2,1,1,0,0,0,1,0,0,0,1,4,2,1,1,0,0,0,1,0 -050,01,011,Alabama,Bullock County,13,15,428,186,242,70,67,115,166,0,2,0,2,0,2,1,3,71,69,115,168,1,3,0,3,0,2,185,239,69,67,115,166,0,2,0,1,0,0,1,3,70,69,115,168,1,3,0,2,0,0,1,3,1,0,0,0,0,0,0,1,0,2,0,0,1,0,0,0,0,0,0,1,0,2 -050,01,011,Alabama,Bullock County,13,16,309,124,185,53,58,65,125,2,1,0,0,0,0,4,1,57,59,65,125,6,1,0,1,0,0,118,182,50,57,64,123,0,1,0,0,0,0,4,1,54,58,64,123,4,1,0,1,0,0,6,3,3,1,1,2,2,0,0,0,0,0,0,0,3,1,1,2,2,0,0,0,0,0 -050,01,011,Alabama,Bullock County,13,17,221,96,125,42,49,54,76,0,0,0,0,0,0,0,0,42,49,54,76,0,0,0,0,0,0,93,124,40,49,53,75,0,0,0,0,0,0,0,0,40,49,53,75,0,0,0,0,0,0,3,1,2,0,1,1,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0 -050,01,011,Alabama,Bullock County,13,18,208,65,143,26,49,39,92,0,2,0,0,0,0,0,0,26,49,39,92,0,2,0,0,0,0,63,140,25,47,38,91,0,2,0,0,0,0,0,0,25,47,38,91,0,2,0,0,0,0,2,3,1,2,1,1,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,0,20947,9838,11109,5498,5944,4141,4969,27,36,96,86,3,5,73,69,5561,6004,4184,5007,54,65,109,97,6,7,9732,11024,5437,5892,4109,4943,26,34,90,84,2,5,68,66,5497,5949,4147,4980,51,60,100,95,5,7,106,85,61,52,32,26,1,2,6,2,1,0,5,3,64,55,37,27,3,5,9,2,1,0 -050,01,013,Alabama,Butler County,1,1,1372,714,658,352,315,337,319,1,5,7,7,3,1,14,11,365,326,351,327,2,5,7,10,3,1,700,647,345,312,332,313,1,4,6,6,2,1,14,11,358,323,346,321,2,4,6,9,2,1,14,11,7,3,5,6,0,1,1,1,1,0,0,0,7,3,5,6,0,1,1,1,1,0 -050,01,013,Alabama,Butler County,1,2,1351,726,625,296,279,401,321,2,3,12,10,0,1,15,11,310,290,413,328,5,5,13,12,1,1,716,616,290,272,400,320,2,2,10,10,0,1,14,11,303,283,411,327,5,4,10,12,1,1,10,9,6,7,1,1,0,1,2,0,0,0,1,0,7,7,2,1,0,1,3,0,0,0 -050,01,013,Alabama,Butler County,1,3,1465,750,715,335,319,392,378,3,4,12,6,0,0,8,8,341,327,396,383,6,6,16,8,0,0,746,709,333,314,391,378,3,4,12,6,0,0,7,7,338,321,394,382,5,5,16,8,0,0,4,6,2,5,1,0,0,0,0,0,0,0,1,1,3,6,2,1,1,1,0,0,0,0 -050,01,013,Alabama,Butler County,1,4,1391,744,647,343,277,389,363,1,0,4,5,0,0,7,2,350,279,392,365,2,0,7,5,0,0,733,644,335,275,386,362,1,0,4,5,0,0,7,2,342,277,389,364,2,0,7,5,0,0,11,3,8,2,3,1,0,0,0,0,0,0,0,0,8,2,3,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,5,1170,534,636,251,288,275,339,0,5,4,3,0,0,4,1,254,289,279,340,2,5,4,3,0,0,523,626,243,282,273,335,0,5,4,3,0,0,3,1,245,283,276,336,1,5,4,3,0,0,11,10,8,6,2,4,0,0,0,0,0,0,1,0,9,6,3,4,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,6,1283,578,705,282,321,290,373,1,2,5,8,0,0,0,1,282,322,290,374,1,2,5,8,0,0,566,697,272,316,289,371,1,2,4,7,0,0,0,1,272,317,289,372,1,2,4,7,0,0,12,8,10,5,1,2,0,0,1,1,0,0,0,0,10,5,1,2,0,0,1,1,0,0 -050,01,013,Alabama,Butler County,1,7,1244,574,670,321,288,247,360,2,3,4,13,0,1,0,5,321,293,247,361,2,6,4,14,0,1,565,666,317,285,243,360,1,3,4,13,0,1,0,4,317,289,243,361,1,5,4,14,0,1,9,4,4,3,4,0,1,0,0,0,0,0,0,1,4,4,4,0,1,1,0,0,0,0 -050,01,013,Alabama,Butler County,1,8,1162,541,621,322,328,196,277,2,0,19,13,0,0,2,3,323,330,197,278,4,2,19,14,0,0,538,615,320,323,196,276,2,0,18,13,0,0,2,3,321,325,197,277,4,2,18,14,0,0,3,6,2,5,0,1,0,0,1,0,0,0,0,0,2,5,0,1,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,1,9,1215,550,665,324,334,217,320,0,2,9,4,0,2,0,3,324,335,217,323,0,4,9,5,0,2,544,661,322,330,214,320,0,2,8,4,0,2,0,3,322,331,214,323,0,4,8,5,0,2,6,4,2,4,3,0,0,0,1,0,0,0,0,0,2,4,3,0,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,1,10,1428,638,790,382,429,247,346,4,1,4,8,0,0,1,6,383,433,248,349,4,4,4,8,0,2,632,782,378,424,245,344,4,1,4,8,0,0,1,5,379,427,246,347,4,3,4,8,0,2,6,8,4,5,2,2,0,0,0,0,0,0,0,1,4,6,2,2,0,1,0,0,0,0 -050,01,013,Alabama,Butler County,1,11,1552,763,789,480,443,266,334,5,3,8,5,0,0,4,4,483,446,267,335,9,7,8,5,0,0,754,784,477,443,260,329,5,3,8,5,0,0,4,4,480,446,261,330,9,7,8,5,0,0,9,5,3,0,6,5,0,0,0,0,0,0,0,0,3,0,6,5,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,12,1531,714,817,440,462,267,349,4,4,1,0,0,0,2,2,442,464,267,350,6,5,1,0,0,0,712,814,439,461,266,347,4,4,1,0,0,0,2,2,441,463,266,348,6,5,1,0,0,0,2,3,1,1,1,2,0,0,0,0,0,0,0,0,1,1,1,2,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,13,1294,628,666,414,416,206,248,0,0,3,1,0,0,5,1,419,417,207,248,3,1,4,1,0,0,626,665,414,416,204,247,0,0,3,1,0,0,5,1,419,417,205,247,3,1,4,1,0,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,14,1004,492,512,337,348,148,156,1,1,2,2,0,0,4,5,339,353,150,157,3,4,4,3,0,0,488,510,336,346,147,156,1,1,2,2,0,0,2,5,338,351,147,157,3,4,2,3,0,0,4,2,1,2,1,0,0,0,0,0,0,0,2,0,1,2,3,0,0,0,2,0,0,0 -050,01,013,Alabama,Butler County,1,15,825,347,478,234,311,108,160,0,2,1,1,0,0,4,4,238,314,108,161,3,6,2,1,0,0,346,477,233,311,108,159,0,2,1,1,0,0,4,4,237,314,108,160,3,6,2,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,16,660,253,407,171,285,77,120,1,1,1,0,0,0,3,1,173,285,77,121,2,2,2,0,2,0,251,405,169,283,77,120,1,1,1,0,0,0,3,1,171,283,77,121,2,2,2,0,2,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,17,488,155,333,119,245,36,88,0,0,0,0,0,0,0,0,119,245,36,88,0,0,0,0,0,0,155,331,119,243,36,88,0,0,0,0,0,0,0,0,119,243,36,88,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,1,18,512,137,375,95,256,42,118,0,0,0,0,0,0,0,1,95,256,42,119,0,1,0,0,0,0,137,375,95,256,42,118,0,0,0,0,0,0,0,1,95,256,42,119,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,0,20940,9834,11106,5494,5941,4141,4969,27,36,96,86,3,5,73,69,5557,6001,4184,5007,54,65,109,97,6,7,9728,11021,5433,5889,4109,4943,26,34,90,84,2,5,68,66,5493,5946,4147,4980,51,60,100,95,5,7,106,85,61,52,32,26,1,2,6,2,1,0,5,3,64,55,37,27,3,5,9,2,1,0 -050,01,013,Alabama,Butler County,2,1,1372,714,658,352,315,337,319,1,5,7,7,3,1,14,11,365,326,351,327,2,5,7,10,3,1,700,647,345,312,332,313,1,4,6,6,2,1,14,11,358,323,346,321,2,4,6,9,2,1,14,11,7,3,5,6,0,1,1,1,1,0,0,0,7,3,5,6,0,1,1,1,1,0 -050,01,013,Alabama,Butler County,2,2,1351,726,625,296,279,401,321,2,3,12,10,0,1,15,11,310,290,413,328,5,5,13,12,1,1,716,616,290,272,400,320,2,2,10,10,0,1,14,11,303,283,411,327,5,4,10,12,1,1,10,9,6,7,1,1,0,1,2,0,0,0,1,0,7,7,2,1,0,1,3,0,0,0 -050,01,013,Alabama,Butler County,2,3,1465,750,715,335,319,392,378,3,4,12,6,0,0,8,8,341,327,396,383,6,6,16,8,0,0,746,709,333,314,391,378,3,4,12,6,0,0,7,7,338,321,394,382,5,5,16,8,0,0,4,6,2,5,1,0,0,0,0,0,0,0,1,1,3,6,2,1,1,1,0,0,0,0 -050,01,013,Alabama,Butler County,2,4,1391,744,647,343,277,389,363,1,0,4,5,0,0,7,2,350,279,392,365,2,0,7,5,0,0,733,644,335,275,386,362,1,0,4,5,0,0,7,2,342,277,389,364,2,0,7,5,0,0,11,3,8,2,3,1,0,0,0,0,0,0,0,0,8,2,3,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,5,1169,533,636,250,288,275,339,0,5,4,3,0,0,4,1,253,289,279,340,2,5,4,3,0,0,522,626,242,282,273,335,0,5,4,3,0,0,3,1,244,283,276,336,1,5,4,3,0,0,11,10,8,6,2,4,0,0,0,0,0,0,1,0,9,6,3,4,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,6,1282,577,705,281,321,290,373,1,2,5,8,0,0,0,1,281,322,290,374,1,2,5,8,0,0,565,697,271,316,289,371,1,2,4,7,0,0,0,1,271,317,289,372,1,2,4,7,0,0,12,8,10,5,1,2,0,0,1,1,0,0,0,0,10,5,1,2,0,0,1,1,0,0 -050,01,013,Alabama,Butler County,2,7,1244,574,670,321,288,247,360,2,3,4,13,0,1,0,5,321,293,247,361,2,6,4,14,0,1,565,666,317,285,243,360,1,3,4,13,0,1,0,4,317,289,243,361,1,5,4,14,0,1,9,4,4,3,4,0,1,0,0,0,0,0,0,1,4,4,4,0,1,1,0,0,0,0 -050,01,013,Alabama,Butler County,2,8,1162,541,621,322,328,196,277,2,0,19,13,0,0,2,3,323,330,197,278,4,2,19,14,0,0,538,615,320,323,196,276,2,0,18,13,0,0,2,3,321,325,197,277,4,2,18,14,0,0,3,6,2,5,0,1,0,0,1,0,0,0,0,0,2,5,0,1,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,2,9,1215,550,665,324,334,217,320,0,2,9,4,0,2,0,3,324,335,217,323,0,4,9,5,0,2,544,661,322,330,214,320,0,2,8,4,0,2,0,3,322,331,214,323,0,4,8,5,0,2,6,4,2,4,3,0,0,0,1,0,0,0,0,0,2,4,3,0,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,2,10,1427,637,790,381,429,247,346,4,1,4,8,0,0,1,6,382,433,248,349,4,4,4,8,0,2,631,782,377,424,245,344,4,1,4,8,0,0,1,5,378,427,246,347,4,3,4,8,0,2,6,8,4,5,2,2,0,0,0,0,0,0,0,1,4,6,2,2,0,1,0,0,0,0 -050,01,013,Alabama,Butler County,2,11,1550,763,787,480,441,266,334,5,3,8,5,0,0,4,4,483,444,267,335,9,7,8,5,0,0,754,782,477,441,260,329,5,3,8,5,0,0,4,4,480,444,261,330,9,7,8,5,0,0,9,5,3,0,6,5,0,0,0,0,0,0,0,0,3,0,6,5,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,12,1530,713,817,439,462,267,349,4,4,1,0,0,0,2,2,441,464,267,350,6,5,1,0,0,0,711,814,438,461,266,347,4,4,1,0,0,0,2,2,440,463,266,348,6,5,1,0,0,0,2,3,1,1,1,2,0,0,0,0,0,0,0,0,1,1,1,2,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,13,1294,628,666,414,416,206,248,0,0,3,1,0,0,5,1,419,417,207,248,3,1,4,1,0,0,626,665,414,416,204,247,0,0,3,1,0,0,5,1,419,417,205,247,3,1,4,1,0,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,14,1003,492,511,337,347,148,156,1,1,2,2,0,0,4,5,339,352,150,157,3,4,4,3,0,0,488,509,336,345,147,156,1,1,2,2,0,0,2,5,338,350,147,157,3,4,2,3,0,0,4,2,1,2,1,0,0,0,0,0,0,0,2,0,1,2,3,0,0,0,2,0,0,0 -050,01,013,Alabama,Butler County,2,15,825,347,478,234,311,108,160,0,2,1,1,0,0,4,4,238,314,108,161,3,6,2,1,0,0,346,477,233,311,108,159,0,2,1,1,0,0,4,4,237,314,108,160,3,6,2,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,16,660,253,407,171,285,77,120,1,1,1,0,0,0,3,1,173,285,77,121,2,2,2,0,2,0,251,405,169,283,77,120,1,1,1,0,0,0,3,1,171,283,77,121,2,2,2,0,2,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,17,488,155,333,119,245,36,88,0,0,0,0,0,0,0,0,119,245,36,88,0,0,0,0,0,0,155,331,119,243,36,88,0,0,0,0,0,0,0,0,119,243,36,88,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,2,18,512,137,375,95,256,42,118,0,0,0,0,0,0,0,1,95,256,42,119,0,1,0,0,0,0,137,375,95,256,42,118,0,0,0,0,0,0,0,1,95,256,42,119,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,0,20933,9838,11095,5482,5935,4155,4964,27,35,98,85,3,5,73,71,5549,6001,4193,5004,55,64,109,91,7,8,9730,11005,5421,5878,4121,4938,26,33,92,83,2,5,68,68,5483,5942,4156,4976,51,60,103,89,6,7,108,90,61,57,34,26,1,2,6,2,1,0,5,3,66,59,37,28,4,4,6,2,1,1 -050,01,013,Alabama,Butler County,3,1,1381,712,669,349,318,338,325,1,4,6,8,3,1,15,13,361,330,350,337,4,4,8,9,4,2,699,654,343,313,333,317,1,3,5,7,2,1,15,13,355,325,345,329,4,3,7,8,3,2,13,15,6,5,5,8,0,1,1,1,1,0,0,0,6,5,5,8,0,1,1,1,1,0 -050,01,013,Alabama,Butler County,3,2,1339,720,619,300,279,394,316,2,3,10,9,0,1,14,11,314,290,406,324,3,5,11,9,1,2,711,611,295,273,393,315,2,2,8,9,0,1,13,11,308,284,404,323,3,4,9,9,1,2,9,8,5,6,1,1,0,1,2,0,0,0,1,0,6,6,2,1,0,1,2,0,0,0 -050,01,013,Alabama,Butler County,3,3,1459,749,710,329,318,396,373,3,4,12,7,0,0,9,8,337,326,403,378,5,6,13,8,0,0,745,704,327,313,395,373,3,4,12,7,0,0,8,7,334,320,402,377,4,6,13,8,0,0,4,6,2,5,1,0,0,0,0,0,0,0,1,1,3,6,1,1,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,4,1394,744,650,343,274,389,369,1,0,5,5,0,0,6,2,348,276,391,371,3,0,7,5,1,0,734,647,336,272,386,368,1,0,5,5,0,0,6,2,341,274,388,370,3,0,7,5,1,0,10,3,7,2,3,1,0,0,0,0,0,0,0,0,7,2,3,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,5,1180,545,635,252,288,286,338,0,5,4,3,0,0,3,1,255,288,286,339,1,5,6,4,0,0,531,625,242,282,283,334,0,5,4,3,0,0,2,1,244,282,283,335,0,5,6,4,0,0,14,10,10,6,3,4,0,0,0,0,0,0,1,0,11,6,3,4,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,6,1271,573,698,280,318,286,370,1,2,6,7,0,0,0,1,280,319,286,371,1,2,6,7,0,0,561,689,270,312,285,368,1,2,5,6,0,0,0,1,270,313,285,369,1,2,5,6,0,0,12,9,10,6,1,2,0,0,1,1,0,0,0,0,10,6,1,2,0,0,1,1,0,0 -050,01,013,Alabama,Butler County,3,7,1247,575,672,319,290,250,361,2,3,4,13,0,1,0,4,319,293,250,363,2,7,4,13,0,1,566,669,315,288,246,361,1,3,4,13,0,1,0,3,315,290,246,362,1,6,4,13,0,1,9,3,4,2,4,0,1,0,0,0,0,0,0,1,4,3,4,1,1,1,0,0,0,0 -050,01,013,Alabama,Butler County,3,8,1167,548,619,321,322,205,281,2,0,18,12,0,0,2,4,322,326,206,283,4,1,18,13,0,0,545,613,319,317,205,280,2,0,17,12,0,0,2,4,320,321,206,282,4,1,17,13,0,0,3,6,2,5,0,1,0,0,1,0,0,0,0,0,2,5,0,1,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,3,9,1216,551,665,328,336,212,319,0,2,11,4,0,2,0,2,328,338,212,319,0,4,11,4,0,2,545,661,326,332,209,319,0,2,10,4,0,2,0,2,326,334,209,319,0,4,10,4,0,2,6,4,2,4,3,0,0,0,1,0,0,0,0,0,2,4,3,0,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,3,10,1414,636,778,378,423,248,341,4,1,5,7,0,0,1,6,379,428,248,344,5,4,5,7,0,1,630,768,374,416,246,339,4,1,5,7,0,0,1,5,375,421,246,342,5,3,5,7,0,0,6,10,4,7,2,2,0,0,0,0,0,0,0,1,4,7,2,2,0,1,0,0,0,1 -050,01,013,Alabama,Butler County,3,11,1543,755,788,473,440,266,334,5,3,7,5,0,0,4,6,477,445,267,337,7,6,7,6,1,0,745,785,469,440,260,331,5,3,7,5,0,0,4,6,473,445,261,334,7,6,7,6,1,0,10,3,4,0,6,3,0,0,0,0,0,0,0,0,4,0,6,3,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,12,1531,712,819,439,466,266,346,4,4,1,1,0,0,2,2,441,468,266,346,6,6,1,1,0,0,710,816,438,465,265,344,4,4,1,1,0,0,2,2,440,467,265,344,6,6,1,1,0,0,2,3,1,1,1,2,0,0,0,0,0,0,0,0,1,1,1,2,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,13,1294,627,667,410,417,208,248,0,0,4,1,0,0,5,1,415,418,208,249,3,1,6,1,0,0,624,666,410,417,205,247,0,0,4,1,0,0,5,1,415,418,205,248,3,1,6,1,0,0,3,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,14,1018,497,521,344,353,145,161,1,1,3,2,0,0,4,4,348,357,147,161,4,5,3,2,0,0,493,518,343,350,144,161,1,1,3,2,0,0,2,4,345,354,144,161,3,5,3,2,0,0,4,3,1,3,1,0,0,0,0,0,0,0,2,0,3,3,3,0,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,15,818,345,473,230,306,109,160,0,2,1,1,0,0,5,4,235,310,110,160,3,5,2,2,0,0,344,472,229,306,109,159,0,2,1,1,0,0,5,4,234,310,110,159,3,5,2,2,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,16,659,256,403,174,286,77,115,1,1,1,0,0,0,3,1,177,287,77,115,4,2,1,0,0,0,254,400,172,283,77,115,1,1,1,0,0,0,3,1,175,284,77,115,4,2,1,0,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,17,489,156,333,120,245,36,88,0,0,0,0,0,0,0,0,120,245,36,88,0,0,0,0,0,0,156,331,120,243,36,88,0,0,0,0,0,0,0,0,120,243,36,88,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,3,18,513,137,376,93,256,44,119,0,0,0,0,0,0,0,1,93,257,44,119,0,1,0,0,0,0,137,376,93,256,44,119,0,0,0,0,0,0,0,1,93,257,44,119,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,0,20867,9810,11057,5454,5884,4142,4968,27,39,107,92,4,5,76,69,5525,5946,4183,4999,56,74,119,104,8,6,9691,10949,5381,5813,4109,4940,26,37,101,88,3,5,71,66,5447,5872,4147,4969,54,71,112,100,6,6,119,108,73,71,33,28,1,2,6,4,1,0,5,3,78,74,36,30,2,3,7,4,2,0 -050,01,013,Alabama,Butler County,4,1,1364,708,656,347,298,336,331,0,4,7,14,3,1,15,8,362,306,347,336,1,6,10,15,3,1,694,640,339,294,332,323,0,3,6,11,2,1,15,8,354,302,343,328,1,5,9,12,2,1,14,16,8,4,4,8,0,1,1,3,1,0,0,0,8,4,4,8,0,1,1,3,1,0 -050,01,013,Alabama,Butler County,4,2,1315,712,603,315,280,373,300,3,5,10,7,0,1,11,10,326,289,379,306,6,6,11,11,1,1,702,595,309,274,371,299,3,4,9,7,0,1,10,10,319,283,377,305,5,5,10,11,1,1,10,8,6,6,2,1,0,1,1,0,0,0,1,0,7,6,2,1,1,1,1,0,0,0 -050,01,013,Alabama,Butler County,4,3,1423,747,676,309,315,411,342,2,3,12,8,0,0,13,8,321,323,420,346,6,6,16,9,1,0,742,665,307,306,410,341,2,3,11,8,0,0,12,7,318,313,418,345,6,5,15,9,1,0,5,11,2,9,1,1,0,0,1,0,0,0,1,1,3,10,2,1,0,1,1,0,0,0 -050,01,013,Alabama,Butler County,4,4,1386,727,659,341,265,371,383,2,1,7,6,0,0,6,4,346,269,376,383,3,5,8,6,0,0,720,654,335,261,370,382,2,1,7,6,0,0,6,4,340,265,375,382,3,5,8,6,0,0,7,5,6,4,1,1,0,0,0,0,0,0,0,0,6,4,1,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,5,1204,572,632,258,270,305,349,0,8,4,2,1,0,4,3,262,272,307,351,2,9,4,3,1,0,554,623,245,265,301,345,0,8,4,2,1,0,3,3,248,267,302,347,2,9,4,3,1,0,18,9,13,5,4,4,0,0,0,0,0,0,1,0,14,5,5,4,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,6,1248,551,697,281,320,261,371,1,2,8,3,0,0,0,1,281,321,261,371,1,2,8,4,0,0,537,686,268,311,261,369,1,2,7,3,0,0,0,1,268,312,261,369,1,2,7,4,0,0,14,11,13,9,0,2,0,0,1,0,0,0,0,0,13,9,0,2,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,4,7,1273,576,697,323,304,249,368,2,2,2,19,0,1,0,3,323,307,249,370,2,2,2,20,0,2,567,689,319,299,245,367,1,2,2,18,0,1,0,2,319,301,245,368,1,2,2,19,0,2,9,8,4,5,4,1,1,0,0,1,0,0,0,1,4,6,4,2,1,0,0,1,0,0 -050,01,013,Alabama,Butler County,4,8,1172,566,606,306,302,240,288,2,0,17,11,0,0,1,5,306,307,241,291,3,1,17,12,0,0,563,599,304,296,240,287,2,0,16,11,0,0,1,5,304,301,241,290,3,1,16,12,0,0,3,7,2,6,0,1,0,0,1,0,0,0,0,0,2,6,0,1,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,4,9,1202,554,648,335,328,203,311,0,2,15,4,0,2,1,1,336,328,204,312,0,3,15,4,0,2,544,644,328,324,201,311,0,2,14,4,0,2,1,1,329,324,202,312,0,3,14,4,0,2,10,4,7,4,2,0,0,0,1,0,0,0,0,0,7,4,2,0,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,4,10,1359,617,742,366,400,241,331,3,1,7,6,0,0,0,4,366,404,241,332,3,4,7,6,0,0,612,732,363,392,239,329,3,1,7,6,0,0,0,4,363,396,239,330,3,4,7,6,0,0,5,10,3,8,2,2,0,0,0,0,0,0,0,0,3,8,2,2,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,11,1525,716,809,454,452,247,343,5,3,5,4,0,0,5,7,459,459,248,345,8,8,5,4,1,0,706,803,450,450,241,340,5,3,5,4,0,0,5,6,455,456,242,341,8,8,5,4,1,0,10,6,4,2,6,3,0,0,0,0,0,0,0,1,4,3,6,4,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,12,1556,722,834,444,482,268,341,5,4,4,4,0,0,1,3,444,485,269,341,6,7,4,4,0,0,718,831,443,481,265,339,5,4,4,4,0,0,1,3,443,484,266,339,6,7,4,4,0,0,4,3,1,1,3,2,0,0,0,0,0,0,0,0,1,1,3,2,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,13,1333,640,693,410,429,220,262,0,0,4,1,0,0,6,1,415,430,222,263,5,1,4,1,0,0,637,692,410,429,217,261,0,0,4,1,0,0,6,1,415,430,219,262,5,1,4,1,0,0,3,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,14,1055,517,538,361,360,149,170,1,1,3,2,0,0,3,5,364,364,150,171,2,6,4,2,1,0,513,535,360,357,148,170,1,1,3,2,0,0,1,5,361,361,148,171,2,6,3,2,0,0,4,3,1,3,1,0,0,0,0,0,0,0,2,0,3,3,2,0,0,0,1,0,1,0 -050,01,013,Alabama,Butler County,4,15,786,329,457,214,295,108,156,0,2,1,1,0,0,6,3,220,297,108,158,4,4,3,2,0,0,328,456,213,295,108,155,0,2,1,1,0,0,6,3,219,297,108,157,4,4,3,2,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,16,663,262,401,180,287,76,111,1,1,1,0,0,0,4,2,184,287,77,112,4,3,1,1,0,0,260,398,178,284,76,111,1,1,1,0,0,0,4,2,182,284,77,112,4,3,1,1,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,17,493,158,335,121,244,37,91,0,0,0,0,0,0,0,0,121,244,37,91,0,0,0,0,0,0,158,334,121,243,37,91,0,0,0,0,0,0,0,0,121,243,37,91,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,4,18,510,136,374,89,253,47,120,0,0,0,0,0,0,0,1,89,254,47,120,0,1,0,0,0,0,136,373,89,252,47,120,0,0,0,0,0,0,0,1,89,253,47,120,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,0,20672,9682,10990,5376,5831,4077,4950,31,34,112,100,5,5,81,70,5446,5892,4125,4988,64,57,120,114,11,10,9553,10875,5296,5753,4039,4921,30,32,107,97,4,5,77,67,5362,5811,4085,4959,60,54,115,109,10,9,129,115,80,78,38,29,1,2,5,3,1,0,4,3,84,81,40,29,4,3,5,5,1,1 -050,01,013,Alabama,Butler County,5,1,1297,675,622,331,287,317,312,0,3,8,10,4,1,15,9,344,296,328,318,2,4,10,12,6,1,660,608,321,278,314,308,0,3,7,9,3,1,15,9,334,287,325,314,2,4,9,11,5,1,15,14,10,9,3,4,0,0,1,1,1,0,0,0,10,9,3,4,0,0,1,1,1,0 -050,01,013,Alabama,Butler County,5,2,1344,717,627,327,300,366,308,2,2,9,9,0,1,13,7,339,306,374,313,7,4,9,10,1,1,703,613,318,293,363,304,2,0,8,8,0,1,12,7,329,299,371,309,6,2,8,9,1,1,14,14,9,7,3,4,0,2,1,1,0,0,1,0,10,7,3,4,1,2,1,1,0,0 -050,01,013,Alabama,Butler County,5,3,1416,733,683,294,313,414,351,4,3,7,11,0,0,14,5,307,318,425,355,7,4,8,11,2,0,725,674,290,305,412,350,4,3,6,11,0,0,13,5,302,310,422,354,6,4,7,11,2,0,8,9,4,8,2,1,0,0,1,0,0,0,1,0,5,8,3,1,1,0,1,0,0,0 -050,01,013,Alabama,Butler County,5,4,1273,660,613,323,250,323,350,1,2,8,6,0,0,5,5,328,255,327,353,1,3,9,7,0,0,653,610,317,248,322,350,1,2,8,6,0,0,5,4,322,252,326,353,1,2,9,7,0,0,7,3,6,2,1,0,0,0,0,0,0,0,0,1,6,3,1,0,0,1,0,0,0,0 -050,01,013,Alabama,Butler County,5,5,1257,588,669,254,286,326,374,1,3,3,2,1,0,3,4,257,290,328,376,2,4,3,2,1,1,575,660,245,282,322,369,1,3,3,2,1,0,3,4,248,286,324,371,2,4,3,2,1,1,13,9,9,4,4,5,0,0,0,0,0,0,0,0,9,4,4,5,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,6,1242,556,686,288,320,254,357,1,5,11,2,0,0,2,2,289,321,255,358,2,5,12,3,0,1,536,672,272,309,251,354,1,5,11,2,0,0,1,2,272,310,252,355,1,5,12,3,0,1,20,14,16,11,3,3,0,0,0,0,0,0,1,0,17,11,3,3,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,7,1297,596,701,320,301,269,375,4,1,3,21,0,1,0,2,320,302,269,375,4,2,3,22,0,2,587,692,315,294,266,374,3,1,3,20,0,1,0,2,315,295,266,374,3,2,3,21,0,2,9,9,5,7,3,1,1,0,0,1,0,0,0,0,5,7,3,1,1,0,0,1,0,0 -050,01,013,Alabama,Butler County,5,8,1162,553,609,289,279,243,311,2,0,17,13,0,0,2,6,290,284,244,315,4,2,17,14,0,0,548,602,286,274,242,310,2,0,16,13,0,0,2,5,287,278,243,314,4,2,16,13,0,0,5,7,3,5,1,1,0,0,1,0,0,0,0,1,3,6,1,1,0,0,1,1,0,0 -050,01,013,Alabama,Butler County,5,9,1200,545,655,330,339,198,304,0,3,15,6,0,2,2,1,332,339,199,305,0,3,16,7,0,2,539,651,326,335,196,304,0,3,15,6,0,2,2,1,328,335,197,305,0,3,16,7,0,2,6,4,4,4,2,0,0,0,0,0,0,0,0,0,4,4,2,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,10,1248,564,684,341,372,211,303,2,1,9,6,0,0,1,2,342,373,212,304,2,2,9,6,0,1,558,675,339,365,208,301,2,1,8,6,0,0,1,2,340,366,209,302,2,2,8,6,0,1,6,9,2,7,3,2,0,0,1,0,0,0,0,0,2,7,3,2,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,5,11,1458,675,783,420,432,236,332,6,3,9,6,0,0,4,10,423,441,237,336,9,7,10,9,0,1,668,774,417,427,232,329,6,3,9,6,0,0,4,9,420,435,233,333,9,7,10,8,0,0,7,9,3,5,4,3,0,0,0,0,0,0,0,1,3,6,4,3,0,0,0,1,0,1 -050,01,013,Alabama,Butler County,5,12,1570,732,838,460,485,261,341,5,3,4,4,0,0,2,5,461,490,262,343,5,5,5,5,1,0,722,835,455,485,256,338,5,3,4,4,0,0,2,5,456,490,257,340,5,5,5,5,1,0,10,3,5,0,5,3,0,0,0,0,0,0,0,0,5,0,5,3,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,13,1353,654,699,411,417,234,279,1,1,4,1,0,0,4,1,414,418,235,280,5,1,4,1,0,0,651,697,411,416,231,278,1,1,4,1,0,0,4,1,414,417,232,279,5,1,4,1,0,0,3,2,0,1,3,1,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,14,1098,536,562,369,383,159,172,1,1,3,2,0,0,4,4,373,387,160,173,4,3,3,3,0,0,533,559,368,380,158,172,1,1,3,2,0,0,3,4,371,384,158,173,4,3,3,3,0,0,3,3,1,3,1,0,0,0,0,0,0,0,1,0,2,3,2,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,15,807,341,466,233,295,102,165,0,2,1,1,0,0,5,3,237,298,104,165,5,5,1,1,0,0,340,465,232,295,102,164,0,2,1,1,0,0,5,3,236,298,104,164,5,5,1,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,16,655,264,391,182,280,77,107,1,1,1,0,0,0,3,3,184,282,78,109,4,2,1,1,0,0,262,388,180,277,77,107,1,1,1,0,0,0,3,3,182,279,78,109,4,2,1,1,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,17,502,166,336,121,240,43,96,0,0,0,0,0,0,2,0,123,240,44,96,1,0,0,0,0,0,166,336,121,240,43,96,0,0,0,0,0,0,2,0,123,240,44,96,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,5,18,493,127,366,83,252,44,113,0,0,0,0,0,0,0,1,83,252,44,114,0,1,0,0,0,0,127,364,83,250,44,113,0,0,0,0,0,0,0,1,83,250,44,114,0,1,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,0,20359,9480,10879,5239,5755,4008,4913,35,34,112,100,5,5,81,72,5309,5820,4051,4950,76,68,121,108,7,10,9342,10763,5151,5681,3969,4879,34,32,107,97,4,5,77,69,5217,5743,4010,4914,73,64,115,104,6,10,138,116,88,74,39,34,1,2,5,3,1,0,4,3,92,77,41,36,3,4,6,4,1,0 -050,01,013,Alabama,Butler County,6,1,1228,630,598,311,268,291,307,2,2,8,7,3,1,15,13,326,281,302,318,4,4,10,7,4,1,617,581,301,257,289,302,2,2,8,6,2,1,15,13,316,270,300,313,4,4,10,6,3,1,13,17,10,11,2,5,0,0,0,1,1,0,0,0,10,11,2,5,0,0,0,1,1,0 -050,01,013,Alabama,Butler County,6,2,1317,702,615,335,299,347,298,2,3,8,9,1,1,9,5,343,303,355,303,2,3,10,10,1,1,680,603,321,294,342,293,2,2,6,8,1,1,8,5,328,298,349,298,2,2,8,9,1,1,22,12,14,5,5,5,0,1,2,1,0,0,1,0,15,5,6,5,0,1,2,1,0,0 -050,01,013,Alabama,Butler County,6,3,1363,710,653,283,283,402,351,4,3,7,11,0,0,14,5,296,288,411,353,8,7,9,11,0,0,703,645,280,278,399,349,4,2,6,11,0,0,14,5,293,283,408,351,8,6,8,11,0,0,7,8,3,5,3,2,0,1,1,0,0,0,0,0,3,5,3,2,0,1,1,0,0,0 -050,01,013,Alabama,Butler County,6,4,1269,657,612,304,271,340,328,2,3,5,6,0,0,6,4,310,275,343,329,5,3,5,9,0,0,652,605,301,265,339,328,2,3,5,6,0,0,5,3,306,268,342,329,4,3,5,8,0,0,5,7,3,6,1,0,0,0,0,0,0,0,1,1,4,7,1,0,1,0,0,1,0,0 -050,01,013,Alabama,Butler County,6,5,1247,601,646,261,277,328,356,1,3,4,6,1,0,6,4,264,281,331,356,7,4,4,7,2,2,588,637,252,275,324,349,1,3,4,6,1,0,6,4,255,279,327,349,7,4,4,7,2,2,13,9,9,2,4,7,0,0,0,0,0,0,0,0,9,2,4,7,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,6,1175,517,658,268,301,237,347,1,5,9,3,0,0,2,2,270,302,239,347,1,5,9,5,0,1,498,645,252,292,235,343,1,5,9,3,0,0,1,2,253,293,236,343,1,5,9,5,0,1,19,13,16,9,2,4,0,0,0,0,0,0,1,0,17,9,3,4,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,7,1265,583,682,309,302,264,363,3,0,7,14,0,1,0,2,309,303,264,364,3,2,7,14,0,1,569,676,299,297,261,363,2,0,7,13,0,1,0,2,299,298,261,364,2,2,7,13,0,1,14,6,10,5,3,0,1,0,0,1,0,0,0,0,10,5,3,0,1,0,0,1,0,0 -050,01,013,Alabama,Butler County,6,8,1180,528,652,269,305,237,326,3,0,18,15,0,0,1,6,269,311,238,330,4,2,18,16,0,0,524,644,266,299,236,325,3,0,18,15,0,0,1,5,266,304,237,328,4,1,18,16,0,0,4,8,3,6,1,1,0,0,0,0,0,0,0,1,3,7,1,2,0,1,0,0,0,0 -050,01,013,Alabama,Butler County,6,9,1172,549,623,328,316,205,297,1,1,13,6,0,2,2,1,330,317,205,297,3,2,13,6,0,2,539,620,321,313,203,297,1,1,12,6,0,2,2,1,323,314,203,297,3,2,12,6,0,2,10,3,7,3,2,0,0,0,1,0,0,0,0,0,7,3,2,0,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,6,10,1146,509,637,312,328,188,299,1,3,7,4,0,0,1,3,313,331,188,301,2,4,7,4,0,0,504,631,310,323,186,298,1,3,6,4,0,0,1,3,311,326,186,300,2,4,6,4,0,0,5,6,2,5,2,1,0,0,1,0,0,0,0,0,2,5,2,1,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,6,11,1447,642,805,380,445,246,339,4,3,8,8,0,0,4,10,383,455,247,342,8,11,8,8,0,0,634,793,377,438,241,335,4,3,8,8,0,0,4,9,380,447,242,337,8,10,8,8,0,0,8,12,3,7,5,4,0,0,0,0,0,0,0,1,3,8,5,5,0,1,0,0,0,0 -050,01,013,Alabama,Butler County,6,12,1538,742,796,477,468,249,316,7,2,7,6,0,0,2,4,479,471,249,319,9,4,7,6,0,0,733,794,473,468,244,314,7,2,7,6,0,0,2,4,475,471,244,317,9,4,7,6,0,0,9,2,4,0,5,2,0,0,0,0,0,0,0,0,4,0,5,2,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,13,1387,640,747,386,428,244,313,2,2,5,2,0,0,3,2,388,430,245,313,4,4,6,2,0,0,637,743,386,426,241,311,2,2,5,2,0,0,3,2,388,428,242,311,4,4,6,2,0,0,3,4,0,2,3,2,0,0,0,0,0,0,0,0,0,2,3,2,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,14,1143,560,583,390,387,161,192,0,1,4,1,0,0,5,2,395,388,161,194,5,3,5,1,0,0,557,580,389,384,160,192,0,1,4,1,0,0,4,2,393,385,160,194,4,3,4,1,0,0,3,3,1,3,1,0,0,0,0,0,0,0,1,0,2,3,1,0,1,0,1,0,0,0 -050,01,013,Alabama,Butler County,6,15,792,337,455,232,295,100,153,1,1,1,1,0,0,3,5,233,299,102,155,3,5,2,1,0,1,337,454,232,295,100,152,1,1,1,1,0,0,3,5,233,299,102,154,3,5,2,1,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,16,664,272,392,183,269,82,119,1,1,1,1,0,0,5,2,188,271,83,119,5,2,1,1,0,1,269,389,180,266,82,119,1,1,1,1,0,0,5,2,185,268,83,119,5,2,1,1,0,1,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,17,508,168,340,118,243,47,95,0,1,0,0,0,0,3,1,120,244,48,95,3,2,0,0,0,0,168,340,118,243,47,95,0,1,0,0,0,0,3,1,120,244,48,95,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,6,18,518,133,385,93,270,40,114,0,0,0,0,0,0,0,1,93,270,40,115,0,1,0,0,0,0,133,383,93,268,40,114,0,0,0,0,0,0,0,1,93,268,40,115,0,1,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,0,20332,9446,10886,5156,5691,4039,4965,34,31,126,105,5,5,86,89,5237,5764,4083,5027,66,61,138,119,9,10,9312,10770,5072,5612,4000,4936,33,29,121,102,4,5,82,86,5150,5682,4043,4997,62,58,133,114,7,9,134,116,84,79,39,29,1,2,5,3,1,0,4,3,87,82,40,30,4,3,5,5,2,1 -050,01,013,Alabama,Butler County,7,1,1228,629,599,304,262,300,309,1,2,7,7,2,0,15,19,319,277,311,328,3,3,8,9,3,1,613,585,290,252,299,306,1,2,7,6,1,0,15,19,305,267,310,325,3,3,8,8,2,1,16,14,14,10,1,3,0,0,0,1,1,0,0,0,14,10,1,3,0,0,0,1,1,0 -050,01,013,Alabama,Butler County,7,2,1334,698,636,335,311,339,308,2,3,7,8,2,1,13,5,348,315,349,313,3,3,8,9,3,1,679,621,323,305,333,301,2,2,6,7,2,1,13,5,336,309,343,306,3,2,7,8,3,1,19,15,12,6,6,7,0,1,1,1,0,0,0,0,12,6,6,7,0,1,1,1,0,0 -050,01,013,Alabama,Butler County,7,3,1333,713,620,290,259,396,339,4,3,8,9,0,1,15,9,304,267,407,346,8,4,10,10,0,2,702,611,286,252,392,338,4,2,6,9,0,1,14,9,299,260,402,345,8,3,8,10,0,2,11,9,4,7,4,1,0,1,2,0,0,0,1,0,5,7,5,1,0,1,2,0,0,0 -050,01,013,Alabama,Butler County,7,4,1253,634,619,281,282,339,322,2,3,6,7,0,0,6,5,287,287,343,327,3,3,7,8,0,1,630,612,279,277,338,321,2,3,6,7,0,0,5,4,284,281,342,325,2,3,7,7,0,0,4,7,2,5,1,1,0,0,0,0,0,0,1,1,3,6,1,2,1,0,0,1,0,1 -050,01,013,Alabama,Butler County,7,5,1216,606,610,272,259,322,341,1,1,5,5,1,0,5,4,277,263,324,344,3,1,6,6,1,0,596,607,264,257,320,340,1,1,5,5,1,0,5,4,269,261,322,343,3,1,6,6,1,0,10,3,8,2,2,1,0,0,0,0,0,0,0,0,8,2,2,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,6,1183,516,667,246,292,252,364,0,3,14,7,0,0,4,1,250,293,254,365,1,3,15,7,0,0,500,651,234,281,249,359,0,3,14,7,0,0,3,1,237,282,251,360,0,3,15,7,0,0,16,16,12,11,3,5,0,0,0,0,0,0,1,0,13,11,3,5,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,7,1263,569,694,282,310,274,367,3,1,10,11,0,0,0,5,282,314,274,369,3,4,10,12,0,0,559,688,275,305,271,367,3,1,10,10,0,0,0,5,275,309,271,369,3,4,10,11,0,0,10,6,7,5,3,0,0,0,0,1,0,0,0,0,7,5,3,0,0,0,0,1,0,0 -050,01,013,Alabama,Butler County,7,8,1210,536,674,271,288,236,361,4,0,24,19,0,1,1,5,271,292,237,363,5,3,24,20,0,1,528,667,265,282,235,361,3,0,24,19,0,1,1,4,265,285,236,363,4,3,24,19,0,1,8,7,6,6,1,0,1,0,0,0,0,0,0,1,6,7,1,0,1,0,0,1,0,0 -050,01,013,Alabama,Butler County,7,9,1164,535,629,323,319,200,296,1,1,9,9,0,0,2,4,325,323,200,297,2,3,9,10,1,0,528,624,318,315,199,295,1,1,8,9,0,0,2,4,320,319,199,296,2,3,8,10,1,0,7,5,5,4,1,1,0,0,1,0,0,0,0,0,5,4,1,1,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,7,10,1109,491,618,298,305,182,301,1,3,10,3,0,2,0,4,298,308,182,304,1,6,10,3,0,2,485,613,296,301,179,300,1,3,9,3,0,2,0,4,296,304,179,303,1,6,9,3,0,2,6,5,2,4,3,1,0,0,1,0,0,0,0,0,2,4,3,1,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,7,11,1428,623,805,375,452,236,332,4,2,6,9,0,0,2,10,377,460,236,336,4,8,8,12,0,0,616,793,372,444,232,329,4,2,6,9,0,0,2,9,374,451,232,333,4,7,8,12,0,0,7,12,3,8,4,3,0,0,0,0,0,0,0,1,3,9,4,3,0,1,0,0,0,0 -050,01,013,Alabama,Butler County,7,12,1515,745,770,463,453,264,307,6,1,8,5,0,0,4,4,467,456,265,310,9,3,8,5,0,1,736,766,459,452,259,304,6,1,8,5,0,0,4,4,463,455,260,307,9,3,8,5,0,1,9,4,4,1,5,3,0,0,0,0,0,0,0,0,4,1,5,3,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,13,1413,637,776,393,434,235,332,3,4,4,3,0,0,2,3,395,436,235,333,5,5,4,5,0,0,633,773,392,432,232,331,3,4,4,3,0,0,2,3,394,434,232,332,5,5,4,5,0,0,4,3,1,2,3,1,0,0,0,0,0,0,0,0,1,2,3,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,14,1155,567,588,382,388,174,198,0,0,5,1,0,0,6,1,386,389,175,198,4,1,7,1,1,0,564,585,381,386,173,197,0,0,5,1,0,0,5,1,385,387,174,197,3,1,7,1,0,0,3,3,1,2,1,1,0,0,0,0,0,0,1,0,1,2,1,1,1,0,0,0,1,0 -050,01,013,Alabama,Butler County,7,15,825,372,453,249,295,119,150,1,2,1,1,0,0,2,5,251,298,119,153,3,6,1,1,0,0,371,452,249,294,118,150,1,2,1,1,0,0,2,5,251,297,118,153,3,6,1,1,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,16,693,278,415,187,278,83,132,1,1,1,1,0,0,6,3,193,280,83,134,6,2,2,1,0,1,276,412,185,276,83,131,1,1,1,1,0,0,6,3,191,278,83,133,6,2,2,1,0,1,2,3,2,2,0,1,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,17,483,165,318,109,223,52,93,0,1,1,0,0,0,3,1,111,224,53,93,3,2,1,0,0,0,164,317,108,222,52,93,0,1,1,0,0,0,3,1,110,223,53,93,3,2,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,7,18,527,132,395,96,281,36,113,0,0,0,0,0,0,0,1,96,282,36,114,0,1,0,0,0,0,132,393,96,279,36,113,0,0,0,0,0,0,0,1,96,280,36,114,0,1,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,0,20168,9402,10766,5100,5604,4038,4917,32,36,141,109,5,5,86,95,5177,5689,4089,4968,70,74,151,125,9,9,9267,10633,5014,5510,3999,4890,31,31,137,106,4,5,82,91,5087,5591,4047,4939,69,67,146,122,8,9,135,133,86,94,39,27,1,5,4,3,1,0,4,4,90,98,42,29,1,7,5,3,1,0 -050,01,013,Alabama,Butler County,8,1,1197,621,576,298,276,298,266,1,4,6,8,0,0,18,22,313,296,312,283,7,8,7,10,1,1,607,554,284,259,298,265,1,2,6,7,0,0,18,21,299,278,312,282,7,5,7,9,1,1,14,22,14,17,0,1,0,2,0,1,0,0,0,1,14,18,0,1,0,3,0,1,0,0 -050,01,013,Alabama,Butler County,8,2,1313,686,627,329,297,333,316,2,3,6,4,4,1,12,6,340,303,342,319,4,5,8,5,4,1,665,606,317,286,326,308,2,2,5,3,3,1,12,6,328,292,335,311,4,4,7,4,3,1,21,21,12,11,7,8,0,1,1,1,1,0,0,0,12,11,7,8,0,1,1,1,1,0 -050,01,013,Alabama,Butler County,8,3,1274,684,590,277,249,386,320,1,4,9,7,0,1,11,9,288,257,394,328,4,5,11,8,0,1,672,580,271,241,383,319,1,3,7,7,0,1,10,9,281,249,390,327,4,4,9,8,0,1,12,10,6,8,3,1,0,1,2,0,0,0,1,0,7,8,4,1,0,1,2,0,0,0 -050,01,013,Alabama,Butler County,8,4,1280,645,635,279,279,349,339,4,4,6,7,0,0,7,6,284,285,354,343,4,6,9,7,1,0,642,628,278,274,348,339,4,3,6,7,0,0,6,5,282,279,353,342,4,5,8,7,1,0,3,7,1,5,1,0,0,1,0,0,0,0,1,1,2,6,1,1,0,1,1,0,0,0 -050,01,013,Alabama,Butler County,8,5,1199,590,609,271,252,304,344,2,1,8,7,1,0,4,5,275,257,307,345,4,2,8,10,1,0,584,608,268,251,301,344,2,1,8,7,1,0,4,5,272,256,304,345,4,2,8,10,1,0,6,1,3,1,3,0,0,0,0,0,0,0,0,0,3,1,3,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,6,1175,541,634,257,264,258,353,0,3,21,12,0,0,5,2,262,265,261,354,2,3,21,14,0,0,526,621,246,255,255,349,0,3,21,12,0,0,4,2,250,256,257,350,2,3,21,14,0,0,15,13,11,9,3,4,0,0,0,0,0,0,1,0,12,9,4,4,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,7,1207,555,652,261,295,278,346,3,2,12,7,0,0,1,2,262,296,278,347,4,3,12,8,0,0,541,644,248,289,277,345,3,2,12,6,0,0,1,2,249,290,277,346,4,3,12,7,0,0,14,8,13,6,1,1,0,0,0,1,0,0,0,0,13,6,1,1,0,0,0,1,0,0 -050,01,013,Alabama,Butler County,8,8,1254,557,697,291,294,234,375,2,0,29,21,0,1,1,6,291,299,235,378,3,4,29,22,0,1,545,686,283,284,231,375,1,0,29,21,0,1,1,5,283,288,232,378,2,3,29,22,0,1,12,11,8,10,3,0,1,0,0,0,0,0,0,1,8,11,3,0,1,1,0,0,0,0 -050,01,013,Alabama,Butler County,8,9,1133,511,622,304,324,195,287,3,1,8,6,0,0,1,4,305,328,195,289,4,2,8,7,0,1,508,616,302,319,194,286,3,1,8,6,0,0,1,4,303,323,194,288,4,2,8,7,0,1,3,6,2,5,1,1,0,0,0,0,0,0,0,0,2,5,1,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,10,1137,507,630,303,320,197,299,0,2,7,4,0,2,0,3,303,323,197,300,0,3,7,5,0,2,500,627,300,318,194,298,0,2,6,4,0,2,0,3,300,321,194,299,0,3,6,5,0,2,7,3,3,2,3,1,0,0,1,0,0,0,0,0,3,2,3,1,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,8,11,1343,584,759,343,415,230,325,3,1,6,8,0,0,2,10,344,424,231,328,5,9,6,9,0,0,579,747,340,407,228,322,3,1,6,8,0,0,2,9,341,415,229,324,5,9,6,9,0,0,5,12,3,8,2,3,0,0,0,0,0,0,0,1,3,9,2,4,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,12,1461,712,749,450,428,242,306,5,3,11,6,0,0,4,6,454,432,244,308,6,7,12,7,0,1,702,745,446,427,236,303,5,3,11,6,0,0,4,6,450,431,238,305,6,7,12,7,0,1,10,4,4,1,6,3,0,0,0,0,0,0,0,0,4,1,6,3,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,13,1453,663,790,407,455,247,326,4,4,3,3,0,0,2,2,409,457,248,328,6,4,3,3,0,0,659,785,405,452,245,324,4,4,3,3,0,0,2,2,407,454,246,326,6,4,3,3,0,0,4,5,2,3,2,2,0,0,0,0,0,0,0,0,2,3,2,2,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,14,1168,562,606,371,381,182,221,0,0,4,3,0,0,5,1,376,382,182,222,5,0,4,3,0,0,559,605,371,381,179,220,0,0,4,3,0,0,5,1,376,382,179,221,5,0,4,3,0,0,3,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,15,869,404,465,273,311,124,143,1,1,3,5,0,0,3,5,276,316,126,143,2,5,3,5,0,1,401,462,272,308,123,143,1,1,3,5,0,0,2,5,274,313,124,143,2,5,3,5,0,1,3,3,1,3,1,0,0,0,0,0,0,0,1,0,2,3,2,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,16,693,276,417,184,263,85,147,0,2,1,1,0,0,6,4,190,267,85,148,5,5,1,2,1,0,275,416,183,263,85,146,0,2,1,1,0,0,6,4,189,267,85,147,5,5,1,2,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,17,479,167,312,106,223,55,87,1,1,1,0,0,0,4,1,109,223,57,88,5,2,2,0,1,0,165,309,104,220,55,87,1,1,1,0,0,0,4,1,107,220,57,88,5,2,2,0,1,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,8,18,533,137,396,96,278,41,117,0,0,0,0,0,0,0,1,96,279,41,117,0,1,0,0,0,0,137,394,96,276,41,117,0,0,0,0,0,0,0,1,96,277,41,117,0,1,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,0,20040,9328,10712,5016,5541,4013,4905,34,41,166,120,5,5,94,100,5104,5631,4065,4955,70,86,178,134,6,7,9189,10583,4931,5455,3973,4874,33,37,161,116,4,5,87,96,5012,5542,4020,4921,67,79,173,130,5,7,139,129,85,86,40,31,1,4,5,4,1,0,7,4,92,89,45,34,3,7,5,4,1,0 -050,01,013,Alabama,Butler County,9,1,1161,591,570,258,252,310,279,1,5,5,9,0,0,17,25,275,275,325,299,2,8,6,13,0,1,584,553,252,242,310,275,1,3,5,9,0,0,16,24,268,264,324,294,2,5,6,13,0,1,7,17,6,10,0,4,0,2,0,0,0,0,1,1,7,11,1,5,0,3,0,0,0,0 -050,01,013,Alabama,Butler County,9,2,1340,712,628,337,298,336,308,1,5,17,8,4,1,17,8,354,305,348,314,3,7,20,9,4,1,689,602,323,283,330,300,1,4,16,6,3,1,16,8,339,290,341,306,3,6,19,7,3,1,23,26,14,15,6,8,0,1,1,2,1,0,1,0,15,15,7,8,0,1,1,2,1,0 -050,01,013,Alabama,Butler County,9,3,1252,691,561,295,238,377,304,3,5,7,6,0,1,9,7,304,245,382,309,6,7,8,6,0,1,675,553,286,232,373,303,3,4,6,6,0,1,7,7,293,239,377,308,5,6,7,6,0,1,16,8,9,6,4,1,0,1,1,0,0,0,2,0,11,6,5,1,1,1,1,0,0,0 -050,01,013,Alabama,Butler County,9,4,1235,628,607,247,269,361,323,3,2,6,8,0,0,11,5,258,274,367,325,6,5,8,8,0,0,624,600,247,264,359,322,3,2,5,8,0,0,10,4,257,268,364,323,6,5,7,8,0,0,4,7,0,5,2,1,0,0,1,0,0,0,1,1,1,6,3,2,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,9,5,1196,585,611,268,253,298,344,3,1,11,6,0,0,5,7,273,259,302,349,4,4,11,6,0,0,581,609,266,251,296,344,3,1,11,6,0,0,5,7,271,257,300,349,4,4,11,6,0,0,4,2,2,2,2,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,6,1215,573,642,272,277,262,346,1,5,32,11,1,0,5,3,276,280,264,346,4,7,33,12,1,0,559,634,263,272,258,343,1,5,32,11,1,0,4,3,266,275,260,343,3,7,33,12,1,0,14,8,9,5,4,3,0,0,0,0,0,0,1,0,10,5,4,3,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,7,1162,519,643,249,290,250,341,2,3,16,7,0,0,2,2,251,292,250,341,4,4,16,8,0,0,508,633,238,282,250,339,2,3,16,7,0,0,2,2,240,284,250,339,4,4,16,8,0,0,11,10,11,8,0,2,0,0,0,0,0,0,0,0,11,8,0,2,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,8,1239,545,694,281,284,234,379,2,0,27,27,0,1,1,3,281,287,235,380,3,1,27,28,0,1,532,683,273,275,230,379,1,0,27,26,0,1,1,2,273,277,231,380,2,0,27,27,0,1,13,11,8,9,4,0,1,0,0,1,0,0,0,1,8,10,4,0,1,1,0,1,0,0 -050,01,013,Alabama,Butler County,9,9,1095,485,610,276,299,202,300,2,0,4,6,0,0,1,5,277,302,203,303,2,3,4,6,0,1,482,605,273,295,202,299,2,0,4,6,0,0,1,5,274,298,203,302,2,3,4,6,0,1,3,5,3,4,0,1,0,0,0,0,0,0,0,0,3,4,0,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,10,1181,540,641,329,325,198,305,2,3,11,5,0,2,0,1,329,326,198,306,2,3,11,5,0,2,526,637,319,323,195,304,2,3,10,4,0,2,0,1,319,324,195,305,2,3,10,4,0,2,14,4,10,2,3,1,0,0,1,1,0,0,0,0,10,2,3,1,0,0,1,1,0,0 -050,01,013,Alabama,Butler County,9,11,1265,555,710,318,389,226,307,3,1,7,5,0,0,1,8,318,395,227,310,4,5,7,8,0,0,551,700,316,382,224,304,3,1,7,5,0,0,1,8,316,388,225,307,4,5,7,8,0,0,4,10,2,7,2,3,0,0,0,0,0,0,0,0,2,7,2,3,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,12,1428,678,750,429,425,233,305,4,3,7,6,0,0,5,11,433,434,234,308,9,11,8,8,0,0,667,743,424,422,227,302,4,3,7,6,0,0,5,10,428,431,228,304,9,10,8,8,0,0,11,7,5,3,6,3,0,0,0,0,0,0,0,1,5,3,6,4,0,1,0,0,0,0 -050,01,013,Alabama,Butler County,9,13,1447,655,792,406,463,237,317,5,4,6,5,0,0,1,3,407,466,237,318,6,6,6,5,0,0,649,788,404,461,234,315,5,4,5,5,0,0,1,3,405,464,234,316,6,6,5,5,0,0,6,4,2,2,3,2,0,0,1,0,0,0,0,0,2,2,3,2,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,9,14,1188,561,627,368,387,182,238,0,0,5,1,0,0,6,1,373,388,183,238,5,1,6,1,0,0,558,626,368,387,179,237,0,0,5,1,0,0,6,1,373,388,180,237,5,1,6,1,0,0,3,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,15,914,435,479,296,316,133,148,1,1,3,9,0,0,2,5,297,321,135,148,2,5,3,10,0,0,432,476,295,313,132,148,1,1,3,9,0,0,1,5,295,318,133,148,2,5,3,10,0,0,3,3,1,3,1,0,0,0,0,0,0,0,1,0,2,3,2,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,16,670,263,407,177,253,79,148,0,2,1,1,0,0,6,3,183,256,80,148,3,5,2,1,1,0,262,406,176,253,79,147,0,2,1,1,0,0,6,3,182,256,80,147,3,5,2,1,1,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,17,501,177,324,120,234,50,87,1,1,1,0,0,0,5,2,125,236,50,87,5,3,2,0,0,0,175,321,118,231,50,87,1,1,1,0,0,0,5,2,123,233,50,87,5,3,2,0,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,9,18,551,135,416,90,289,45,126,0,0,0,0,0,0,0,1,90,290,45,126,0,1,0,0,0,0,135,414,90,287,45,126,0,0,0,0,0,0,0,1,90,288,45,126,0,1,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,10,0,19911,9302,10609,4983,5439,4008,4918,36,38,174,105,5,5,96,104,5070,5532,4060,4975,78,75,189,123,8,14,9154,10477,4888,5353,3969,4885,35,33,169,101,4,5,89,100,4968,5442,4017,4940,72,67,184,118,7,13,148,132,95,86,39,33,1,5,5,4,1,0,7,4,102,90,43,35,6,8,5,5,1,1 -050,01,013,Alabama,Butler County,10,1,1174,605,569,268,241,311,294,1,4,3,6,0,0,22,24,290,263,327,314,4,7,8,8,0,1,595,554,259,235,311,288,1,2,3,6,0,0,21,23,280,256,326,308,3,4,8,8,0,1,10,15,9,6,0,6,0,2,0,0,0,0,1,1,10,7,1,6,1,3,0,0,0,0 -050,01,013,Alabama,Butler County,10,2,1263,666,597,324,277,309,299,1,4,16,5,4,1,12,11,335,288,318,306,4,5,16,8,5,2,645,580,312,265,303,295,1,4,15,4,3,1,11,11,322,276,311,302,4,5,15,7,4,2,21,17,12,12,6,4,0,0,1,1,1,0,1,0,13,12,7,4,0,0,1,1,1,0 -050,01,013,Alabama,Butler County,10,3,1295,704,591,311,262,372,307,2,3,8,10,0,1,11,8,321,270,381,314,6,4,8,10,0,1,688,577,302,257,368,301,2,1,7,9,0,1,9,8,310,265,375,308,5,2,7,9,0,1,16,14,9,5,4,6,0,2,1,1,0,0,2,0,11,5,6,6,1,2,1,1,0,0 -050,01,013,Alabama,Butler County,10,4,1233,647,586,258,254,369,317,4,3,5,7,0,0,11,5,267,258,377,319,7,4,7,9,1,1,640,583,256,251,366,317,4,3,4,7,0,0,10,5,264,255,374,319,6,4,6,9,1,1,7,3,2,3,3,0,0,0,1,0,0,0,1,0,3,3,3,0,1,0,1,0,0,0 -050,01,013,Alabama,Butler County,10,5,1103,551,552,254,227,281,311,2,3,10,2,0,0,4,9,258,234,281,319,4,6,12,4,0,0,549,545,252,222,281,311,2,2,10,2,0,0,4,8,256,228,281,318,4,5,12,4,0,0,2,7,2,5,0,0,0,1,0,0,0,0,0,1,2,6,0,1,0,1,0,0,0,0 -050,01,013,Alabama,Butler County,10,6,1238,597,641,272,270,282,362,2,4,36,4,1,0,4,1,276,271,283,362,5,5,37,4,1,0,586,631,264,262,279,360,2,4,36,4,1,0,4,1,268,263,280,360,5,5,37,4,1,0,11,10,8,8,3,2,0,0,0,0,0,0,0,0,8,8,3,2,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,10,7,1158,510,648,250,290,238,346,0,3,18,7,0,0,4,2,254,292,240,347,2,3,18,8,0,0,494,636,236,281,237,343,0,3,18,7,0,0,3,2,239,283,239,344,1,3,18,8,0,0,16,12,14,9,1,3,0,0,0,0,0,0,1,0,15,9,1,3,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,10,8,1242,557,685,275,287,248,372,5,0,28,23,0,1,1,2,275,289,249,372,6,1,28,24,0,1,542,677,264,280,245,372,4,0,28,22,0,1,1,2,264,282,246,372,5,1,28,23,0,1,15,8,11,7,3,0,1,0,0,1,0,0,0,0,11,7,3,0,1,0,0,1,0,0 -050,01,013,Alabama,Butler County,10,9,1102,494,608,266,290,216,308,2,0,9,4,0,0,1,6,267,296,216,308,3,4,9,5,0,1,491,598,264,282,215,307,2,0,9,4,0,0,1,5,265,287,215,307,3,3,9,5,0,1,3,10,2,8,1,1,0,0,0,0,0,0,0,1,2,9,1,1,0,1,0,0,0,0 -050,01,013,Alabama,Butler County,10,10,1183,530,653,331,337,189,304,2,3,8,6,0,2,0,1,331,337,189,305,2,4,8,6,0,2,520,649,323,335,187,303,2,3,8,5,0,2,0,1,323,335,187,304,2,4,8,5,0,2,10,4,8,2,2,1,0,0,0,1,0,0,0,0,8,2,2,1,0,0,0,1,0,0 -050,01,013,Alabama,Butler County,10,11,1178,531,647,301,353,220,283,2,1,7,4,0,0,1,6,302,359,221,286,2,4,7,4,0,0,522,638,296,346,217,281,2,1,6,4,0,0,1,6,297,352,218,284,2,4,6,4,0,0,9,9,5,7,3,2,0,0,1,0,0,0,0,0,5,7,3,2,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,10,12,1386,629,757,393,412,220,324,4,3,8,7,0,0,4,11,396,421,220,328,7,10,10,10,0,2,622,748,390,407,216,321,4,3,8,7,0,0,4,10,393,415,216,324,7,9,10,9,0,1,7,9,3,5,4,3,0,0,0,0,0,0,0,1,3,6,4,4,0,1,0,1,0,1 -050,01,013,Alabama,Butler County,10,13,1457,662,795,418,466,230,312,5,3,7,9,0,0,2,5,420,470,231,312,6,6,7,11,0,1,652,791,414,465,225,309,5,3,6,9,0,0,2,5,416,469,226,309,6,6,6,11,0,1,10,4,4,1,5,3,0,0,1,0,0,0,0,0,4,1,5,3,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,10,14,1212,574,638,363,371,200,264,2,1,5,1,0,0,4,1,366,372,201,264,5,2,6,1,0,0,570,636,362,370,197,263,2,1,5,1,0,0,4,1,365,371,198,263,5,2,6,1,0,0,4,2,1,1,3,1,0,0,0,0,0,0,0,0,1,1,3,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,10,15,947,449,498,301,338,139,146,1,0,4,9,0,0,4,5,305,343,139,147,4,2,5,10,0,1,446,495,300,335,138,146,1,0,4,9,0,0,3,5,303,340,138,147,3,2,5,10,0,1,3,3,1,3,1,0,0,0,0,0,0,0,1,0,2,3,1,0,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,10,16,697,282,415,198,259,78,150,0,2,1,1,0,0,5,3,201,262,80,151,5,4,1,1,0,0,281,414,197,259,78,149,0,2,1,1,0,0,5,3,200,262,80,150,5,4,1,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,10,17,480,180,300,118,214,57,82,1,1,1,0,0,0,3,3,121,216,57,83,4,3,1,0,0,1,177,298,115,212,57,82,1,1,1,0,0,0,3,3,118,214,57,83,4,3,1,0,0,1,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,10,18,563,134,429,82,291,49,137,0,0,0,0,0,0,3,1,85,291,50,138,2,1,1,0,1,0,134,427,82,289,49,137,0,0,0,0,0,0,3,1,85,289,50,138,2,1,1,0,1,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,0,19675,9171,10504,4907,5361,3941,4896,35,38,180,101,5,5,103,103,4996,5459,4004,4956,72,71,195,119,9,10,9021,10368,4810,5272,3904,4861,34,34,175,97,4,5,94,99,4892,5367,3960,4918,67,66,189,114,8,10,150,136,97,89,37,35,1,4,5,4,1,0,9,4,104,92,44,38,5,5,6,5,1,0 -050,01,013,Alabama,Butler County,11,1,1121,561,560,251,241,282,292,0,3,5,4,0,0,23,20,272,261,301,309,3,6,7,6,1,0,549,545,240,233,282,286,0,3,5,4,0,0,22,19,260,252,300,302,3,6,7,6,1,0,12,15,11,8,0,6,0,0,0,0,0,0,1,1,12,9,1,7,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,2,1242,669,573,326,252,313,294,2,4,9,6,3,1,16,16,341,267,326,308,4,5,12,8,3,2,654,553,317,240,311,289,2,2,9,5,2,1,13,16,330,255,322,303,3,3,11,7,2,2,15,20,9,12,2,5,0,2,0,1,1,0,3,0,11,12,4,5,1,2,1,1,1,0 -050,01,013,Alabama,Butler County,11,3,1297,703,594,329,264,351,306,2,4,11,11,1,1,9,8,335,272,359,313,3,5,13,12,2,1,681,581,316,259,346,300,2,3,9,10,1,1,7,8,321,267,352,307,2,4,11,11,2,1,22,13,13,5,5,6,0,1,2,1,0,0,2,0,14,5,7,6,1,1,2,1,0,0 -050,01,013,Alabama,Butler County,11,4,1172,626,546,242,224,362,308,4,3,8,7,0,0,10,4,251,227,369,311,6,5,10,8,0,0,618,542,238,221,359,308,4,2,7,7,0,0,10,4,247,224,366,311,6,4,9,8,0,0,8,4,4,3,3,0,0,1,1,0,0,0,0,0,4,3,3,0,0,1,1,0,0,0 -050,01,013,Alabama,Butler County,11,5,1082,548,534,253,217,279,306,3,3,9,3,0,0,4,5,257,221,282,309,4,5,10,4,0,0,545,526,252,210,278,306,3,3,9,3,0,0,3,4,255,214,280,309,3,4,10,3,0,0,3,8,1,7,1,0,0,0,0,0,0,0,1,1,2,7,2,0,1,1,0,1,0,0 -050,01,013,Alabama,Butler County,11,6,1199,596,603,266,264,285,329,1,3,34,4,1,0,9,3,273,267,289,331,7,4,34,4,2,0,585,597,257,259,283,328,1,3,34,4,1,0,9,3,264,262,287,330,7,4,34,4,2,0,11,6,9,5,2,1,0,0,0,0,0,0,0,0,9,5,2,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,7,1086,457,629,233,279,201,340,0,2,19,6,0,0,4,2,237,281,202,341,1,3,21,6,0,0,440,617,219,271,199,336,0,2,19,6,0,0,3,2,222,273,199,337,1,3,21,6,0,0,17,12,14,8,2,4,0,0,0,0,0,0,1,0,15,8,3,4,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,8,1240,573,667,273,285,264,363,3,1,32,16,0,1,1,1,273,286,265,364,4,1,32,16,0,1,560,660,264,279,261,363,2,1,32,15,0,1,1,1,264,280,262,364,3,1,32,15,0,1,13,7,9,6,3,0,1,0,0,1,0,0,0,0,9,6,3,0,1,0,0,1,0,0 -050,01,013,Alabama,Butler County,11,9,1135,492,643,256,301,222,329,3,0,11,6,0,0,0,7,256,308,222,331,3,2,11,9,0,0,489,633,254,293,221,328,3,0,11,6,0,0,0,6,254,299,221,329,3,2,11,9,0,0,3,10,2,8,1,1,0,0,0,0,0,0,0,1,2,9,1,2,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,10,1179,541,638,331,336,199,293,3,1,7,5,0,2,1,1,332,337,199,294,4,1,7,5,0,2,532,632,324,331,197,293,3,1,7,4,0,2,1,1,325,332,197,294,4,1,7,4,0,2,9,6,7,5,2,0,0,0,0,1,0,0,0,0,7,5,2,0,0,0,0,1,0,0 -050,01,013,Alabama,Butler County,11,11,1122,498,624,286,326,204,284,1,3,6,4,0,0,1,7,287,333,205,285,1,7,6,6,0,0,490,616,281,321,202,281,1,3,5,4,0,0,1,7,282,328,203,282,1,7,5,6,0,0,8,8,5,5,2,3,0,0,1,0,0,0,0,0,5,5,2,3,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,11,12,1372,607,765,368,415,223,328,2,3,10,8,0,0,4,11,372,425,223,332,5,9,10,9,1,2,599,752,365,407,218,324,2,3,10,8,0,0,4,10,369,416,218,327,5,9,10,9,1,2,8,13,3,8,5,4,0,0,0,0,0,0,0,1,3,9,5,5,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,13,1443,677,766,436,450,226,300,6,2,7,10,0,0,2,4,438,453,226,301,7,3,8,13,0,0,667,764,432,450,221,298,6,2,6,10,0,0,2,4,434,453,221,299,7,3,7,13,0,0,10,2,4,0,5,2,0,0,1,0,0,0,0,0,4,0,5,2,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,11,14,1247,562,685,344,400,207,279,3,3,5,1,0,0,3,2,346,402,208,280,5,4,6,1,0,0,558,681,343,398,204,277,3,3,5,1,0,0,3,2,345,400,205,278,5,4,6,1,0,0,4,4,1,2,3,2,0,0,0,0,0,0,0,0,1,2,3,2,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,15,975,463,512,310,337,143,164,0,0,5,8,0,0,5,3,315,340,143,164,5,2,5,8,0,1,460,509,309,334,142,164,0,0,5,8,0,0,4,3,313,337,142,164,4,2,5,8,0,1,3,3,1,3,1,0,0,0,0,0,0,0,1,0,2,3,1,0,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,16,696,275,421,199,268,71,146,1,1,1,1,0,0,3,5,201,273,73,147,3,5,1,3,0,0,275,420,199,268,71,145,1,1,1,1,0,0,3,5,201,273,73,146,3,5,1,3,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,17,495,192,303,120,204,65,95,1,1,1,1,0,0,5,2,123,206,67,95,5,2,2,1,0,1,189,301,117,202,65,95,1,1,1,1,0,0,5,2,120,204,67,95,5,2,2,1,0,1,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,11,18,572,131,441,84,298,44,140,0,1,0,0,0,0,3,2,87,300,45,141,2,2,0,0,0,0,130,439,83,296,44,140,0,1,0,0,0,0,3,2,86,298,45,141,2,2,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,0,19501,9076,10425,4851,5317,3895,4860,36,39,188,101,4,4,102,104,4940,5408,3954,4918,73,82,206,118,9,8,8923,10282,4750,5222,3859,4827,35,34,183,97,3,4,93,98,4830,5308,3914,4882,68,75,200,113,8,7,153,143,101,95,36,33,1,5,5,4,1,0,9,6,110,100,40,36,5,7,6,5,1,1 -050,01,013,Alabama,Butler County,12,1,1095,548,547,238,227,287,295,0,3,5,6,0,0,18,16,254,243,301,307,2,5,8,8,1,0,539,530,230,215,287,291,0,3,5,6,0,0,17,15,245,230,300,302,2,5,8,8,1,0,9,17,8,12,0,4,0,0,0,0,0,0,1,1,9,13,1,5,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,2,1193,625,568,312,252,282,289,1,4,11,5,2,0,17,18,329,267,294,303,3,8,14,6,3,2,607,545,297,239,282,284,1,2,11,4,1,0,15,16,312,252,293,297,2,5,14,5,2,2,18,23,15,13,0,5,0,2,0,1,1,0,2,2,17,15,1,6,1,3,0,1,1,0 -050,01,013,Alabama,Butler County,12,3,1273,671,602,322,279,324,299,2,4,11,11,1,1,11,8,330,287,332,304,5,6,14,12,1,1,651,588,310,273,319,293,2,3,10,10,1,1,9,8,316,281,326,298,5,5,12,11,1,1,20,14,12,6,5,6,0,1,1,1,0,0,2,0,14,6,6,6,0,1,2,1,0,0 -050,01,013,Alabama,Butler County,12,4,1149,625,524,238,209,364,300,4,3,7,6,0,0,12,6,249,215,371,306,8,3,9,6,0,0,613,518,233,204,360,300,4,2,5,6,0,0,11,6,243,210,367,306,7,2,7,6,0,0,12,6,5,5,4,0,0,1,2,0,0,0,1,0,6,5,4,0,1,1,2,0,0,0 -050,01,013,Alabama,Butler County,12,5,1097,550,547,248,228,284,302,4,4,9,6,0,0,5,7,253,235,289,306,4,7,9,6,0,0,547,540,247,223,283,302,4,3,9,6,0,0,4,6,251,229,287,305,4,6,9,6,0,0,3,7,1,5,1,0,0,1,0,0,0,0,1,1,2,6,2,1,0,1,0,0,0,0 -050,01,013,Alabama,Butler County,12,6,1139,586,553,271,242,274,304,1,1,34,3,1,0,5,3,275,245,277,305,1,3,36,3,2,0,578,547,264,236,273,304,1,1,34,3,1,0,5,3,268,239,276,305,1,3,36,3,2,0,8,6,7,6,1,0,0,0,0,0,0,0,0,0,7,6,1,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,7,1091,473,618,245,264,206,345,1,3,17,5,0,0,4,1,247,265,207,345,3,3,19,6,1,0,455,607,231,257,203,341,1,3,17,5,0,0,3,1,232,258,204,341,2,3,19,6,1,0,18,11,14,7,3,4,0,0,0,0,0,0,1,0,15,7,3,4,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,8,1231,576,655,254,283,277,351,2,2,41,17,0,0,2,2,255,285,279,352,3,3,41,17,0,0,562,650,243,279,274,351,2,2,41,16,0,0,2,2,244,281,276,352,3,3,41,16,0,0,14,5,11,4,3,0,0,0,0,1,0,0,0,0,11,4,3,0,0,0,0,1,0,0 -050,01,013,Alabama,Butler County,12,9,1126,479,647,245,287,219,352,4,0,11,4,0,1,0,3,245,287,219,354,4,1,11,6,0,2,476,637,244,278,218,352,3,0,11,4,0,1,0,2,244,278,218,354,3,1,11,5,0,1,3,10,1,9,1,0,1,0,0,0,0,0,0,1,1,9,1,0,1,0,0,1,0,1 -050,01,013,Alabama,Butler County,12,10,1172,539,633,337,334,192,288,3,1,6,6,0,0,1,4,338,337,193,290,4,4,6,8,0,0,529,627,328,329,191,287,3,1,6,6,0,0,1,4,329,332,192,289,4,4,6,8,0,0,10,6,9,5,1,1,0,0,0,0,0,0,0,0,9,5,1,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,11,1092,482,610,287,307,186,289,1,3,8,3,0,2,0,6,287,312,186,290,1,7,8,4,0,3,473,603,282,303,183,287,1,3,7,2,0,2,0,6,282,308,183,288,1,7,7,3,0,3,9,7,5,4,3,2,0,0,1,1,0,0,0,0,5,4,3,2,0,0,1,1,0,0 -050,01,013,Alabama,Butler County,12,12,1353,588,765,352,425,223,317,2,2,8,10,0,0,3,11,355,435,223,320,4,9,9,14,0,0,581,750,349,416,219,312,2,2,8,10,0,0,3,10,352,425,219,315,4,8,9,14,0,0,7,15,3,9,4,5,0,0,0,0,0,0,0,1,3,10,4,5,0,1,0,0,0,0 -050,01,013,Alabama,Butler County,12,13,1429,693,736,430,436,246,288,5,1,8,7,0,0,4,4,434,440,248,288,8,4,8,8,0,0,683,733,426,436,241,285,5,1,7,7,0,0,4,4,430,440,243,285,8,4,7,8,0,0,10,3,4,0,5,3,0,0,1,0,0,0,0,0,4,0,5,3,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,12,14,1274,553,721,349,412,194,299,4,5,4,2,0,0,2,3,351,414,195,300,5,8,4,2,0,0,549,717,348,409,191,298,4,5,4,2,0,0,2,3,350,411,192,299,5,8,4,2,0,0,4,4,1,3,3,1,0,0,0,0,0,0,0,0,1,3,3,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,15,988,462,526,310,343,141,173,0,0,5,8,0,0,6,2,314,344,143,174,6,1,5,9,0,0,459,523,309,341,140,172,0,0,5,8,0,0,5,2,312,342,142,173,5,1,5,9,0,0,3,3,1,2,1,1,0,0,0,0,0,0,1,0,2,2,1,1,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,16,705,308,397,210,259,93,131,1,1,1,1,0,0,3,5,213,263,93,133,3,5,2,1,0,0,307,396,210,258,92,131,1,1,1,1,0,0,3,5,213,262,92,133,3,5,2,1,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,17,533,190,343,121,228,61,110,1,1,1,1,0,0,6,3,127,231,62,112,6,2,1,2,1,0,188,341,119,227,61,109,1,1,1,1,0,0,6,3,125,230,62,111,6,2,1,2,1,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,12,18,561,128,433,82,302,42,128,0,1,1,0,0,0,3,2,84,303,42,129,3,3,2,0,0,0,126,430,80,299,42,128,0,1,1,0,0,0,3,2,82,300,42,129,3,3,2,0,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,0,19504,9084,10420,4866,5293,3900,4875,37,40,165,101,4,4,112,107,4962,5391,3964,4941,81,71,180,116,10,11,8912,10269,4749,5194,3861,4838,36,35,160,97,3,4,103,101,4838,5286,3921,4901,76,64,173,111,8,11,172,151,117,99,39,37,1,5,5,4,1,0,9,6,124,105,43,40,5,7,7,5,2,0 -050,01,013,Alabama,Butler County,13,1,1097,547,550,243,223,283,307,0,2,4,6,0,0,17,12,260,235,296,317,3,5,4,6,1,0,531,534,229,208,282,306,0,2,4,6,0,0,16,12,245,220,294,316,3,5,4,6,1,0,16,16,14,15,1,1,0,0,0,0,0,0,1,0,15,15,2,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,2,1188,629,559,305,257,290,270,2,4,10,6,0,0,22,22,323,279,306,286,7,5,13,10,3,2,613,537,293,247,288,263,2,2,10,5,0,0,20,20,310,267,303,278,5,2,13,9,3,2,16,22,12,10,2,7,0,2,0,1,0,0,2,2,13,12,3,8,2,3,0,1,0,0 -050,01,013,Alabama,Butler County,13,3,1287,678,609,326,286,326,305,2,4,8,6,3,1,13,7,337,292,335,311,5,5,11,7,3,1,652,587,309,275,321,296,2,3,7,5,2,1,11,7,318,281,329,302,4,4,10,6,2,1,26,22,17,11,5,9,0,1,1,1,1,0,2,0,19,11,6,9,1,1,1,1,1,0 -050,01,013,Alabama,Butler County,13,4,1131,630,501,247,203,360,280,2,4,8,8,0,0,13,6,260,209,368,286,5,4,9,8,1,0,613,495,237,198,356,280,2,3,6,8,0,0,12,6,249,204,364,286,4,3,7,8,1,0,17,6,10,5,4,0,0,1,2,0,0,0,1,0,11,5,4,0,1,1,2,0,0,0 -050,01,013,Alabama,Butler County,13,5,1105,553,552,242,229,294,304,4,5,7,7,0,0,6,7,248,234,297,309,6,7,7,9,1,0,550,546,241,225,293,304,4,4,7,7,0,0,5,6,246,229,296,308,6,6,7,9,0,0,3,6,1,4,1,0,0,1,0,0,0,0,1,1,2,5,1,1,0,1,0,0,1,0 -050,01,013,Alabama,Butler County,13,6,1125,561,564,264,233,263,322,2,0,25,5,1,0,6,4,268,236,267,325,4,0,27,6,1,1,552,559,256,229,262,321,2,0,25,5,1,0,6,4,260,232,266,324,4,0,27,6,1,1,9,5,8,4,1,1,0,0,0,0,0,0,0,0,8,4,1,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,7,1084,496,588,261,265,212,317,1,3,18,3,0,0,4,0,263,265,214,317,3,3,20,3,0,0,481,576,250,256,209,314,1,3,18,3,0,0,3,0,251,256,211,314,3,3,19,3,0,0,15,12,11,9,3,3,0,0,0,0,0,0,1,0,12,9,3,3,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,13,8,1178,548,630,246,268,263,346,2,3,34,9,0,0,3,4,248,272,264,349,5,3,34,10,0,0,536,625,235,266,262,345,2,3,34,8,0,0,3,3,237,269,263,348,5,3,34,8,0,0,12,5,11,2,1,1,0,0,0,1,0,0,0,1,11,3,1,1,0,0,0,2,0,0 -050,01,013,Alabama,Butler County,13,9,1205,524,681,280,293,231,375,6,0,7,10,0,1,0,2,280,295,231,376,6,0,7,11,0,1,513,670,273,283,228,375,5,0,7,10,0,1,0,1,273,284,228,375,5,0,7,11,0,1,11,11,7,10,3,0,1,0,0,0,0,0,0,1,7,11,3,1,1,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,10,1118,487,631,297,325,181,294,3,1,5,6,0,0,1,5,298,330,181,296,4,3,5,6,0,1,483,623,294,318,180,293,3,1,5,6,0,0,1,5,295,323,180,295,4,3,5,6,0,1,4,8,3,7,1,1,0,0,0,0,0,0,0,0,3,7,1,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,11,1139,511,628,304,323,197,294,0,2,10,4,0,2,0,3,304,326,197,295,0,4,10,4,0,2,499,624,296,321,194,293,0,2,9,3,0,2,0,3,296,324,194,294,0,4,9,3,0,2,12,4,8,2,3,1,0,0,1,1,0,0,0,0,8,2,3,1,0,0,1,1,0,0 -050,01,013,Alabama,Butler County,13,12,1281,544,737,320,396,214,315,3,1,5,12,0,0,2,13,322,406,214,320,5,8,5,14,0,2,538,722,316,387,212,310,3,1,5,12,0,0,2,12,318,396,212,315,5,7,5,14,0,2,6,15,4,9,2,5,0,0,0,0,0,0,0,1,4,10,2,5,0,1,0,0,0,0 -050,01,013,Alabama,Butler County,13,13,1395,670,725,421,422,230,288,4,3,11,6,0,0,4,6,425,428,232,290,5,6,12,7,0,0,660,721,417,421,224,285,4,3,11,6,0,0,4,6,421,427,226,287,5,6,12,7,0,0,10,4,4,1,6,3,0,0,0,0,0,0,0,0,4,1,6,3,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,14,1301,575,726,356,431,209,286,4,5,4,2,0,0,2,2,358,432,210,287,5,6,4,3,0,0,570,721,354,428,207,284,4,5,3,2,0,0,2,2,356,429,208,285,5,6,3,3,0,0,5,5,2,3,2,2,0,0,1,0,0,0,0,0,2,3,2,2,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,13,15,990,455,535,303,335,143,194,0,0,4,5,0,0,5,1,307,336,144,195,5,0,4,5,0,0,452,534,303,335,140,193,0,0,4,5,0,0,5,1,307,336,141,194,5,0,4,5,0,0,3,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,16,750,343,407,234,270,101,125,1,0,3,5,0,0,4,7,236,276,103,127,4,4,4,6,0,1,340,403,233,267,100,124,1,0,3,5,0,0,3,7,235,273,101,126,4,4,3,6,0,1,3,4,1,3,1,1,0,0,0,0,0,0,1,0,1,3,2,1,0,0,1,0,0,0 -050,01,013,Alabama,Butler County,13,17,551,195,356,125,226,63,123,0,2,1,1,0,0,6,4,130,230,64,124,5,6,2,1,0,0,194,355,124,226,63,122,0,2,1,1,0,0,6,4,129,230,64,123,5,6,2,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,013,Alabama,Butler County,13,18,579,138,441,92,308,40,130,1,1,1,0,0,0,4,2,95,310,41,131,4,2,2,0,0,0,135,437,89,304,40,130,1,1,1,0,0,0,4,2,92,306,41,131,4,2,2,0,0,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,1,0,118572,57176,61396,44186,46430,11367,13180,321,270,365,519,60,53,877,944,44974,47284,11803,13667,655,628,550,714,118,122,55054,59625,42412,44969,11198,13034,257,226,340,499,50,45,797,852,43134,45741,11594,13475,566,554,499,659,101,104,2122,1771,1774,1461,169,146,64,44,25,20,10,8,80,92,1840,1543,209,192,89,74,51,55,17,18 -050,01,015,Alabama,Calhoun County,1,1,7204,3705,3499,2566,2363,893,928,19,11,30,35,8,0,189,162,2741,2523,1026,1046,46,40,66,60,22,5,3429,3250,2348,2162,864,909,11,6,29,32,6,0,171,141,2509,2301,985,1014,32,31,61,52,19,3,276,249,218,201,29,19,8,5,1,3,2,0,18,21,232,222,41,32,14,9,5,8,3,2 -050,01,015,Alabama,Calhoun County,1,2,7521,3881,3640,2745,2571,961,879,19,14,27,32,3,4,126,140,2867,2702,1051,986,43,40,45,48,9,11,3673,3455,2576,2423,940,860,11,11,26,29,2,4,118,128,2692,2542,1025,960,34,34,42,42,5,10,208,185,169,148,21,19,8,3,1,3,1,0,8,12,175,160,26,26,9,6,3,6,4,1 -050,01,015,Alabama,Calhoun County,1,3,7719,3936,3783,2848,2767,951,885,17,11,26,20,7,2,87,98,2930,2856,1009,956,40,31,38,38,14,9,3772,3629,2716,2634,935,878,12,9,24,18,5,2,80,88,2792,2714,990,944,31,25,33,30,12,7,164,154,132,133,16,7,5,2,2,2,2,0,7,10,138,142,19,12,9,6,5,8,2,2 -050,01,015,Alabama,Calhoun County,1,4,8607,4343,4264,3013,2860,1217,1297,22,14,22,20,4,10,65,63,3075,2915,1255,1339,41,31,34,36,6,19,4154,4139,2849,2755,1202,1291,19,10,19,19,3,7,62,57,2908,2804,1239,1330,37,25,30,31,5,13,189,125,164,105,15,6,3,4,3,1,1,3,3,6,167,111,16,9,4,6,4,5,1,6 -050,01,015,Alabama,Calhoun County,1,5,9022,4474,4548,3167,3059,1193,1352,25,24,35,26,3,3,51,84,3208,3138,1218,1385,43,54,54,49,6,11,4254,4337,2984,2896,1171,1322,16,16,34,26,3,2,46,75,3021,2966,1193,1352,33,43,51,46,6,10,220,211,183,163,22,30,9,8,1,0,0,1,5,9,187,172,25,33,10,11,3,3,0,1 -050,01,015,Alabama,Calhoun County,1,6,7601,3711,3890,2813,2783,781,973,29,23,24,33,5,7,59,71,2863,2845,806,1007,51,50,45,54,7,14,3448,3720,2589,2641,767,959,19,18,20,31,4,7,49,64,2631,2697,788,989,38,43,36,50,6,14,263,170,224,142,14,14,10,5,4,2,1,0,10,7,232,148,18,18,13,7,9,4,1,0 -050,01,015,Alabama,Calhoun County,1,7,7186,3517,3669,2710,2686,701,876,24,20,33,38,3,3,46,46,2751,2726,713,894,46,36,50,56,6,5,3303,3502,2528,2540,688,869,17,14,28,34,3,3,39,42,2562,2577,698,884,38,29,42,51,5,4,214,167,182,146,13,7,7,6,5,4,0,0,7,4,189,149,15,10,8,7,8,5,1,1 -050,01,015,Alabama,Calhoun County,1,8,7232,3524,3708,2797,2836,628,784,19,16,42,36,6,6,32,30,2819,2863,642,792,32,31,52,45,12,9,3370,3599,2658,2742,624,777,17,16,41,36,4,4,26,24,2675,2764,634,783,29,28,50,43,9,6,154,109,139,94,4,7,2,0,1,0,2,2,6,6,144,99,8,9,3,3,2,2,3,3 -050,01,015,Alabama,Calhoun County,1,9,7395,3637,3758,2940,2888,622,770,16,21,30,34,3,5,26,40,2964,2919,625,784,33,45,36,45,5,9,3525,3665,2846,2814,616,762,11,17,29,34,3,4,20,34,2865,2843,618,773,25,38,33,41,4,8,112,93,94,74,6,8,5,4,1,0,0,1,6,6,99,76,7,11,8,7,3,4,1,1 -050,01,015,Alabama,Calhoun County,1,10,8291,4086,4205,3282,3204,701,886,28,25,24,33,5,5,46,52,3321,3247,713,896,61,64,35,43,9,11,3979,4128,3190,3142,695,878,25,20,23,32,4,5,42,51,3227,3184,705,888,56,59,32,41,8,11,107,77,92,62,6,8,3,5,1,1,1,0,4,1,94,63,8,8,5,5,3,2,1,0 -050,01,015,Alabama,Calhoun County,1,11,8695,4172,4523,3297,3470,779,925,24,35,22,48,4,1,46,44,3335,3507,787,936,61,66,28,56,8,4,4100,4453,3232,3414,775,918,23,35,21,46,4,0,45,40,3269,3449,783,928,59,64,27,51,8,3,72,70,65,56,4,7,1,0,1,2,0,1,1,4,66,58,4,8,2,2,1,5,0,1 -050,01,015,Alabama,Calhoun County,1,12,8024,3858,4166,3088,3302,681,766,28,16,17,51,4,1,40,30,3123,3330,686,773,57,36,27,58,6,1,3807,4103,3051,3253,673,759,25,14,16,49,4,1,38,27,3084,3278,678,765,53,33,25,55,6,1,51,63,37,49,8,7,3,2,1,2,0,0,2,3,39,52,8,8,4,3,2,3,0,0 -050,01,015,Alabama,Calhoun County,1,13,7085,3372,3713,2857,3069,463,553,21,14,12,46,1,2,18,29,2872,3092,467,559,34,34,14,52,3,5,3333,3686,2826,3047,458,550,21,14,10,46,1,2,17,27,2840,3068,461,555,34,33,12,52,3,5,39,27,31,22,5,3,0,0,2,0,0,0,1,2,32,24,6,4,0,1,2,0,0,0 -050,01,015,Alabama,Calhoun County,1,14,5337,2470,2867,2110,2445,310,364,12,16,9,26,2,1,27,15,2134,2458,316,366,33,28,13,28,2,2,2451,2849,2094,2429,310,362,12,16,8,26,2,1,25,15,2116,2442,314,364,33,28,12,28,2,2,19,18,16,16,0,2,0,0,1,0,0,0,2,0,18,16,2,2,0,0,1,0,0,0 -050,01,015,Alabama,Calhoun County,1,15,4100,1849,2251,1617,1934,207,286,6,5,7,14,1,1,11,11,1627,1945,209,286,15,13,8,17,1,3,1835,2230,1607,1913,203,286,6,5,7,14,1,1,11,11,1617,1924,205,286,15,13,8,17,1,3,14,21,10,21,4,0,0,0,0,0,0,0,0,0,10,21,4,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,1,16,3374,1336,2038,1191,1737,124,267,11,3,3,17,0,1,7,13,1198,1749,124,268,18,15,3,18,0,1,1328,2022,1183,1721,124,267,11,3,3,17,0,1,7,13,1190,1733,124,268,18,15,3,18,0,1,8,16,8,16,0,0,0,0,0,0,0,0,0,0,8,16,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,1,17,2375,838,1537,749,1305,86,212,0,2,2,6,1,1,0,11,749,1316,86,214,0,10,2,7,1,2,830,1525,742,1294,85,212,0,2,2,6,1,1,0,10,742,1304,85,214,0,9,2,7,1,2,8,12,7,11,1,0,0,0,0,0,0,0,0,1,7,12,1,0,0,1,0,0,0,0 -050,01,015,Alabama,Calhoun County,1,18,1804,467,1337,396,1151,69,177,1,0,0,4,0,0,1,5,397,1153,70,180,1,4,0,4,1,1,463,1333,393,1149,68,175,1,0,0,4,0,0,1,5,394,1151,69,178,1,4,0,4,1,1,4,4,3,2,1,2,0,0,0,0,0,0,0,0,3,2,1,2,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,2,0,118533,57153,61380,44167,46417,11366,13179,320,270,365,519,60,53,875,942,44953,47269,11800,13666,654,626,550,714,118,122,55031,59609,42393,44956,11197,13033,256,226,340,499,50,45,795,850,43113,45726,11591,13474,565,552,499,659,101,104,2122,1771,1774,1461,169,146,64,44,25,20,10,8,80,92,1840,1543,209,192,89,74,51,55,17,18 -050,01,015,Alabama,Calhoun County,2,1,7201,3705,3496,2566,2360,893,928,19,11,30,35,8,0,189,162,2741,2520,1026,1046,46,40,66,60,22,5,3429,3247,2348,2159,864,909,11,6,29,32,6,0,171,141,2509,2298,985,1014,32,31,61,52,19,3,276,249,218,201,29,19,8,5,1,3,2,0,18,21,232,222,41,32,14,9,5,8,3,2 -050,01,015,Alabama,Calhoun County,2,2,7522,3881,3641,2745,2572,961,879,19,14,27,32,3,4,126,140,2867,2703,1051,986,43,40,45,48,9,11,3673,3456,2576,2424,940,860,11,11,26,29,2,4,118,128,2692,2543,1025,960,34,34,42,42,5,10,208,185,169,148,21,19,8,3,1,3,1,0,8,12,175,160,26,26,9,6,3,6,4,1 -050,01,015,Alabama,Calhoun County,2,3,7717,3932,3785,2846,2769,951,885,17,11,26,20,7,2,85,98,2926,2858,1007,956,40,31,38,38,14,9,3768,3631,2714,2636,935,878,12,9,24,18,5,2,78,88,2788,2716,988,944,31,25,33,30,12,7,164,154,132,133,16,7,5,2,2,2,2,0,7,10,138,142,19,12,9,6,5,8,2,2 -050,01,015,Alabama,Calhoun County,2,4,8605,4342,4263,3012,2859,1217,1297,22,14,22,20,4,10,65,63,3074,2914,1255,1339,41,31,34,36,6,19,4153,4138,2848,2754,1202,1291,19,10,19,19,3,7,62,57,2907,2803,1239,1330,37,25,30,31,5,13,189,125,164,105,15,6,3,4,3,1,1,3,3,6,167,111,16,9,4,6,4,5,1,6 -050,01,015,Alabama,Calhoun County,2,5,9015,4469,4546,3162,3058,1193,1351,25,24,35,26,3,3,51,84,3203,3137,1218,1384,43,54,54,49,6,11,4249,4335,2979,2895,1171,1321,16,16,34,26,3,2,46,75,3016,2965,1193,1351,33,43,51,46,6,10,220,211,183,163,22,30,9,8,1,0,0,1,5,9,187,172,25,33,10,11,3,3,0,1 -050,01,015,Alabama,Calhoun County,2,6,7600,3711,3889,2813,2782,781,973,29,23,24,33,5,7,59,71,2863,2844,806,1007,51,50,45,54,7,14,3448,3719,2589,2640,767,959,19,18,20,31,4,7,49,64,2631,2696,788,989,38,43,36,50,6,14,263,170,224,142,14,14,10,5,4,2,1,0,10,7,232,148,18,18,13,7,9,4,1,0 -050,01,015,Alabama,Calhoun County,2,7,7183,3515,3668,2708,2685,701,876,24,20,33,38,3,3,46,46,2749,2725,713,894,46,36,50,56,6,5,3301,3501,2526,2539,688,869,17,14,28,34,3,3,39,42,2560,2576,698,884,38,29,42,51,5,4,214,167,182,146,13,7,7,6,5,4,0,0,7,4,189,149,15,10,8,7,8,5,1,1 -050,01,015,Alabama,Calhoun County,2,8,7230,3524,3706,2797,2835,628,784,19,16,42,36,6,6,32,29,2819,2861,642,792,32,30,52,45,12,9,3370,3597,2658,2741,624,777,17,16,41,36,4,4,26,23,2675,2762,634,783,29,27,50,43,9,6,154,109,139,94,4,7,2,0,1,0,2,2,6,6,144,99,8,9,3,3,2,2,3,3 -050,01,015,Alabama,Calhoun County,2,9,7395,3639,3756,2942,2886,622,770,16,21,30,34,3,5,26,40,2966,2917,625,784,33,45,36,45,5,9,3527,3663,2848,2812,616,762,11,17,29,34,3,4,20,34,2867,2841,618,773,25,38,33,41,4,8,112,93,94,74,6,8,5,4,1,0,0,1,6,6,99,76,7,11,8,7,3,4,1,1 -050,01,015,Alabama,Calhoun County,2,10,8290,4084,4206,3280,3205,702,886,27,25,24,33,5,5,46,52,3319,3248,714,896,60,64,35,43,9,11,3977,4129,3188,3143,696,878,24,20,23,32,4,5,42,51,3225,3185,706,888,55,59,32,41,8,11,107,77,92,62,6,8,3,5,1,1,1,0,4,1,94,63,8,8,5,5,3,2,1,0 -050,01,015,Alabama,Calhoun County,2,11,8687,4169,4518,3294,3466,779,925,24,35,22,48,4,1,46,43,3332,3502,787,936,61,65,28,56,8,4,4097,4448,3229,3410,775,918,23,35,21,46,4,0,45,39,3266,3444,783,928,59,63,27,51,8,3,72,70,65,56,4,7,1,0,1,2,0,1,1,4,66,58,4,8,2,2,1,5,0,1 -050,01,015,Alabama,Calhoun County,2,12,8012,3851,4161,3083,3297,679,766,28,16,17,51,4,1,40,30,3118,3325,684,773,57,36,27,58,6,1,3800,4098,3046,3248,671,759,25,14,16,49,4,1,38,27,3079,3273,676,765,53,33,25,55,6,1,51,63,37,49,8,7,3,2,1,2,0,0,2,3,39,52,8,8,4,3,2,3,0,0 -050,01,015,Alabama,Calhoun County,2,13,7077,3367,3710,2852,3066,463,553,21,14,12,46,1,2,18,29,2867,3089,467,559,34,34,14,52,3,5,3328,3683,2821,3044,458,550,21,14,10,46,1,2,17,27,2835,3065,461,555,34,33,12,52,3,5,39,27,31,22,5,3,0,0,2,0,0,0,1,2,32,24,6,4,0,1,2,0,0,0 -050,01,015,Alabama,Calhoun County,2,14,5338,2472,2866,2112,2444,310,364,12,16,9,26,2,1,27,15,2136,2457,316,366,33,28,13,28,2,2,2453,2848,2096,2428,310,362,12,16,8,26,2,1,25,15,2118,2441,314,364,33,28,12,28,2,2,19,18,16,16,0,2,0,0,1,0,0,0,2,0,18,16,2,2,0,0,1,0,0,0 -050,01,015,Alabama,Calhoun County,2,15,4103,1849,2254,1617,1937,207,286,6,5,7,14,1,1,11,11,1627,1948,209,286,15,13,8,17,1,3,1835,2233,1607,1916,203,286,6,5,7,14,1,1,11,11,1617,1927,205,286,15,13,8,17,1,3,14,21,10,21,4,0,0,0,0,0,0,0,0,0,10,21,4,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,2,16,3378,1339,2039,1194,1738,124,267,11,3,3,17,0,1,7,13,1201,1750,124,268,18,15,3,18,0,1,1331,2023,1186,1722,124,267,11,3,3,17,0,1,7,13,1193,1734,124,268,18,15,3,18,0,1,8,16,8,16,0,0,0,0,0,0,0,0,0,0,8,16,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,2,17,2376,838,1538,749,1306,86,212,0,2,2,6,1,1,0,11,749,1317,86,214,0,10,2,7,1,2,830,1526,742,1295,85,212,0,2,2,6,1,1,0,10,742,1305,85,214,0,9,2,7,1,2,8,12,7,11,1,0,0,0,0,0,0,0,0,1,7,12,1,0,0,1,0,0,0,0 -050,01,015,Alabama,Calhoun County,2,18,1804,466,1338,395,1152,69,177,1,0,0,4,0,0,1,5,396,1154,70,180,1,4,0,4,1,1,462,1334,392,1150,68,175,1,0,0,4,0,0,1,5,393,1152,69,178,1,4,0,4,1,1,4,4,3,2,1,2,0,0,0,0,0,0,0,0,3,2,1,2,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,3,0,118420,57101,61319,44130,46389,11328,13142,323,268,374,523,63,52,883,945,44935,47249,11764,13617,674,665,579,714,119,115,54978,59543,42359,44912,11159,13001,259,225,348,506,53,45,800,854,43093,45692,11554,13428,577,578,522,682,96,95,2123,1776,1771,1477,169,141,64,43,26,17,10,7,83,91,1842,1557,210,189,97,87,57,32,23,20 -050,01,015,Alabama,Calhoun County,3,1,7146,3669,3477,2544,2351,883,920,18,10,31,35,8,0,185,161,2719,2501,1020,1041,50,37,70,61,14,7,3398,3226,2328,2147,855,902,10,5,30,32,6,0,169,140,2488,2280,982,1008,34,23,66,55,9,5,271,251,216,204,28,18,8,5,1,3,2,0,16,21,231,221,38,33,16,14,4,6,5,2 -050,01,015,Alabama,Calhoun County,3,2,7483,3848,3635,2721,2578,946,866,18,14,29,32,3,4,131,141,2847,2715,1040,962,44,46,56,56,8,10,3639,3448,2553,2427,924,847,11,11,28,30,2,4,121,129,2671,2552,1011,935,34,38,51,54,6,10,209,187,168,151,22,19,7,3,1,2,1,0,10,12,176,163,29,27,10,8,5,2,2,0 -050,01,015,Alabama,Calhoun County,3,3,7742,3953,3789,2859,2769,954,885,17,12,26,21,7,2,90,100,2942,2865,1014,949,38,38,43,41,13,11,3789,3635,2725,2636,939,878,12,10,24,19,5,2,84,90,2802,2723,997,936,30,32,37,38,9,9,164,154,134,133,15,7,5,2,2,2,2,0,6,10,140,142,17,13,8,6,6,3,4,2 -050,01,015,Alabama,Calhoun County,3,4,8414,4271,4143,2971,2788,1189,1249,22,12,21,20,4,10,64,64,3029,2846,1222,1287,42,32,37,32,9,17,4080,4021,2806,2684,1174,1243,19,9,18,19,3,7,60,59,2860,2739,1206,1278,38,26,32,30,8,13,191,122,165,104,15,6,3,3,3,1,1,3,4,5,169,107,16,9,4,6,5,2,1,4 -050,01,015,Alabama,Calhoun County,3,5,9051,4476,4575,3166,3087,1197,1356,25,23,35,25,3,3,50,81,3208,3161,1219,1395,45,50,50,47,9,11,4259,4371,2988,2924,1173,1331,16,16,34,25,3,2,45,73,3026,2990,1195,1367,34,38,46,47,8,8,217,204,178,163,24,25,9,7,1,0,0,1,5,8,182,171,24,28,11,12,4,0,1,3 -050,01,015,Alabama,Calhoun County,3,6,7602,3711,3891,2819,2786,775,969,29,22,23,34,6,7,59,73,2871,2851,799,1001,54,52,43,57,10,12,3451,3716,2596,2641,763,954,19,16,19,33,5,7,49,65,2639,2698,781,983,41,44,37,53,9,10,260,175,223,145,12,15,10,6,4,1,1,0,10,8,232,153,18,18,13,8,6,4,1,2 -050,01,015,Alabama,Calhoun County,3,7,7201,3525,3676,2720,2688,700,881,26,21,31,38,2,2,46,46,2762,2728,718,898,50,45,41,55,6,7,3308,3515,2534,2547,688,874,18,16,27,35,2,2,39,41,2570,2584,704,888,39,36,35,50,5,6,217,161,186,141,12,7,8,5,4,3,0,0,7,5,192,144,14,10,11,9,6,5,1,1 -050,01,015,Alabama,Calhoun County,3,8,7187,3508,3679,2775,2806,631,786,19,17,44,35,6,5,33,30,2803,2831,644,794,35,33,53,46,10,7,3351,3567,2637,2709,627,778,16,16,42,35,4,4,25,25,2659,2731,633,784,30,30,49,43,6,5,157,112,138,97,4,8,3,1,2,0,2,1,8,5,144,100,11,10,5,3,4,3,4,2 -050,01,015,Alabama,Calhoun County,3,9,7432,3657,3775,2957,2899,621,776,17,20,32,37,3,5,27,38,2979,2933,628,788,34,49,40,41,5,8,3541,3682,2860,2824,614,768,13,17,31,37,3,4,20,32,2878,2852,619,778,28,43,34,41,4,6,116,93,97,75,7,8,4,3,1,0,0,1,7,6,101,81,9,10,6,6,6,0,1,2 -050,01,015,Alabama,Calhoun County,3,10,8245,4064,4181,3263,3193,696,877,26,23,26,31,7,5,46,52,3302,3238,703,890,65,56,37,43,9,7,3962,4103,3176,3129,690,870,23,18,25,30,6,5,42,51,3211,3173,696,883,59,50,35,41,8,7,102,78,87,64,6,7,3,5,1,1,1,0,4,1,91,65,7,7,6,6,2,2,1,0 -050,01,015,Alabama,Calhoun County,3,11,8683,4167,4516,3292,3458,776,929,25,36,22,48,5,2,47,43,3334,3494,784,943,61,69,30,54,7,3,4095,4443,3227,3401,772,921,24,35,21,46,5,1,46,39,3268,3433,780,933,59,67,29,52,7,1,72,73,65,57,4,8,1,1,1,2,0,1,1,4,66,61,4,10,2,2,1,2,0,2 -050,01,015,Alabama,Calhoun County,3,12,8079,3886,4193,3109,3318,688,777,28,17,18,49,4,1,39,31,3141,3342,695,785,57,42,29,54,12,4,3836,4130,3072,3268,680,771,26,15,17,47,4,1,37,28,3103,3289,685,778,54,38,26,51,10,4,50,63,37,50,8,6,2,2,1,2,0,0,2,3,38,53,10,7,3,4,3,3,2,0 -050,01,015,Alabama,Calhoun County,3,13,7118,3373,3745,2847,3086,470,563,23,15,14,49,1,2,18,30,2864,3112,472,569,35,43,18,52,2,5,3330,3718,2815,3064,464,560,22,15,11,49,1,2,17,28,2831,3088,465,566,34,41,15,52,2,5,43,27,32,22,6,3,1,0,3,0,0,0,1,2,33,24,7,3,1,2,3,0,0,0 -050,01,015,Alabama,Calhoun County,3,14,5353,2484,2869,2123,2445,312,366,12,15,9,27,2,1,26,15,2149,2458,313,367,31,28,14,30,3,2,2466,2851,2108,2429,312,364,12,15,8,27,2,1,24,15,2132,2442,313,365,30,28,12,30,3,2,18,18,15,16,0,2,0,0,1,0,0,0,2,0,17,16,0,2,1,0,2,0,0,0 -050,01,015,Alabama,Calhoun County,3,15,4116,1857,2259,1621,1941,209,287,6,6,7,14,1,1,13,10,1633,1951,212,287,15,14,9,15,1,2,1842,2237,1610,1919,205,287,6,6,7,14,1,1,13,10,1622,1929,208,287,15,14,9,15,1,2,15,22,11,22,4,0,0,0,0,0,0,0,0,0,11,22,4,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,3,16,3375,1342,2033,1193,1731,127,266,11,3,4,17,0,1,7,15,1200,1744,127,268,16,17,6,18,0,1,1333,2015,1184,1713,127,266,11,3,4,17,0,1,7,15,1191,1726,127,268,16,17,6,18,0,1,9,18,9,18,0,0,0,0,0,0,0,0,0,0,9,18,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,3,17,2377,837,1540,748,1309,85,210,0,2,2,7,1,1,1,11,749,1319,85,214,1,11,2,7,1,1,830,1527,742,1297,84,210,0,2,2,7,1,1,1,10,743,1306,84,214,1,10,2,7,1,1,7,13,6,12,1,0,0,0,0,0,0,0,0,1,6,13,1,0,0,1,0,0,0,0 -050,01,015,Alabama,Calhoun County,3,18,1816,473,1343,402,1156,69,179,1,0,0,4,0,0,1,4,403,1160,69,179,1,3,1,5,0,0,468,1338,398,1153,68,177,1,0,0,4,0,0,1,4,399,1157,68,177,1,3,1,5,0,0,5,5,4,3,1,2,0,0,0,0,0,0,0,0,4,3,1,2,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,4,0,117767,56633,61134,43781,46212,11191,13079,303,268,385,546,64,52,909,977,44627,47089,11645,13576,668,647,578,757,120,126,54499,59305,42010,44702,11026,12934,246,222,353,523,54,42,810,882,42765,45501,11432,13380,563,561,522,711,97,98,2134,1829,1771,1510,165,145,57,46,32,23,10,10,99,95,1862,1588,213,196,105,86,56,46,23,28 -050,01,015,Alabama,Calhoun County,4,1,7093,3674,3419,2536,2317,890,892,9,12,34,32,7,0,198,166,2726,2472,1034,1018,37,37,72,60,19,10,3403,3171,2311,2118,868,873,6,7,32,28,5,0,181,145,2485,2254,1001,985,25,26,67,51,16,6,271,248,225,199,22,19,3,5,2,4,2,0,17,21,241,218,33,33,12,11,5,9,3,4 -050,01,015,Alabama,Calhoun County,4,2,7343,3747,3596,2659,2528,885,878,16,9,33,42,5,1,149,138,2802,2659,992,977,49,33,62,72,11,8,3533,3391,2491,2362,864,856,9,5,32,39,4,1,133,128,2619,2485,961,947,34,26,57,68,9,6,214,205,168,166,21,22,7,4,1,3,1,0,16,10,183,174,31,30,15,7,5,4,2,2 -050,01,015,Alabama,Calhoun County,4,3,7781,3981,3800,2876,2745,959,899,16,17,24,24,7,4,99,111,2969,2846,1021,972,44,49,49,47,12,8,3810,3632,2737,2605,946,889,10,15,23,22,5,3,89,98,2820,2695,1004,956,32,38,46,42,9,6,171,168,139,140,13,10,6,2,1,2,2,1,10,13,149,151,17,16,12,11,3,5,3,2 -050,01,015,Alabama,Calhoun County,4,4,7798,3989,3809,2782,2604,1105,1089,14,12,24,22,4,9,60,73,2840,2674,1139,1129,33,34,36,40,8,12,3809,3682,2630,2496,1091,1083,12,9,19,20,3,6,54,68,2682,2561,1123,1119,29,29,30,37,6,8,180,127,152,108,14,6,2,3,5,2,1,3,6,5,158,113,16,10,4,5,6,3,2,4 -050,01,015,Alabama,Calhoun County,4,5,9140,4438,4702,3142,3202,1183,1375,32,21,31,25,4,4,46,75,3185,3267,1201,1417,54,47,44,45,6,10,4242,4518,2994,3052,1150,1355,25,16,30,25,4,2,39,68,3030,3111,1167,1394,43,40,42,44,5,5,196,184,148,150,33,20,7,5,1,0,0,2,7,7,155,156,34,23,11,7,2,1,1,5 -050,01,015,Alabama,Calhoun County,4,6,7510,3711,3799,2828,2708,774,958,20,16,26,28,6,10,57,79,2881,2774,796,994,45,45,41,48,9,18,3453,3621,2601,2565,763,941,13,10,22,26,5,9,49,70,2646,2625,781,972,37,35,34,46,8,14,258,178,227,143,11,17,7,6,4,2,1,1,8,9,235,149,15,22,8,10,7,2,1,4 -050,01,015,Alabama,Calhoun County,4,7,7187,3490,3697,2685,2717,700,869,28,21,29,42,2,1,46,47,2725,2757,713,886,48,40,46,58,7,7,3271,3550,2499,2589,690,862,17,17,24,40,2,1,39,41,2534,2625,701,878,35,34,38,52,4,6,219,147,186,128,10,7,11,4,5,2,0,0,7,6,191,132,12,8,13,6,8,6,3,1 -050,01,015,Alabama,Calhoun County,4,8,6929,3355,3574,2637,2681,619,801,20,17,38,35,6,4,35,36,2665,2712,631,811,42,37,47,45,14,6,3190,3440,2495,2566,614,794,17,12,35,32,4,4,25,32,2515,2594,620,804,31,30,42,40,8,5,165,134,142,115,5,7,3,5,3,3,2,0,10,4,150,118,11,7,11,7,5,5,6,1 -050,01,015,Alabama,Calhoun County,4,9,7514,3664,3850,2938,2952,639,790,21,23,35,46,3,5,28,34,2963,2979,650,799,39,47,39,53,4,9,3534,3754,2828,2877,633,781,18,21,32,46,3,3,20,26,2845,2898,639,788,33,40,35,50,4,7,130,96,110,75,6,9,3,2,3,0,0,2,8,8,118,81,11,11,6,7,4,3,0,2 -050,01,015,Alabama,Calhoun County,4,10,7915,3901,4014,3169,3082,647,824,17,18,25,33,7,4,36,53,3200,3129,652,837,43,52,34,44,9,14,3805,3926,3085,3007,641,818,15,14,25,32,6,4,33,51,3114,3053,646,830,39,47,32,43,8,13,96,88,84,75,6,6,2,4,0,1,1,0,3,2,86,76,6,7,4,5,2,1,1,1 -050,01,015,Alabama,Calhoun County,4,11,8653,4120,4533,3267,3459,749,945,27,40,29,46,4,4,44,39,3308,3494,756,953,62,67,36,54,9,9,4045,4457,3202,3402,746,935,24,36,27,45,4,3,42,36,3242,3435,752,940,58,63,34,52,8,8,75,76,65,57,3,10,3,4,2,1,0,1,2,3,66,59,4,13,4,4,2,2,1,1 -050,01,015,Alabama,Calhoun County,4,12,8281,3996,4285,3179,3376,726,813,30,19,19,43,4,1,38,33,3212,3404,735,821,60,41,25,50,5,4,3946,4220,3141,3322,717,809,30,18,18,41,4,1,36,29,3172,3346,726,815,59,38,23,47,5,4,50,65,38,54,9,4,0,1,1,2,0,0,2,4,40,58,9,6,1,3,2,3,0,0 -050,01,015,Alabama,Calhoun County,4,13,7347,3419,3928,2862,3215,498,613,23,15,14,52,1,0,21,33,2881,3244,502,620,40,44,16,55,2,0,3368,3894,2824,3189,491,609,21,14,11,51,1,0,20,31,2842,3216,494,615,38,42,13,54,2,0,51,34,38,26,7,4,2,1,3,1,0,0,1,2,39,28,8,5,2,2,3,1,0,0 -050,01,015,Alabama,Calhoun County,4,14,5496,2567,2929,2191,2479,332,383,12,17,7,31,1,1,24,18,2213,2496,337,385,32,31,9,34,1,1,2549,2909,2176,2460,332,382,12,17,6,31,1,1,22,18,2196,2477,336,384,31,31,7,34,1,1,18,20,15,19,0,1,0,0,1,0,0,0,2,0,17,19,1,1,1,0,2,0,0,0 -050,01,015,Alabama,Calhoun County,4,15,4153,1868,2285,1628,1962,208,292,8,6,5,15,2,1,17,9,1645,1970,208,292,20,12,9,17,3,3,1853,2262,1617,1940,204,291,8,6,5,15,2,1,17,9,1634,1948,204,291,20,12,9,17,3,3,15,23,11,22,4,1,0,0,0,0,0,0,0,0,11,22,4,1,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,4,16,3367,1363,2004,1200,1696,137,268,8,3,10,17,0,2,8,18,1207,1708,138,273,15,18,11,19,0,4,1349,1988,1187,1680,137,268,7,3,10,17,0,2,8,18,1194,1692,138,273,14,18,11,19,0,4,14,16,13,16,0,0,1,0,0,0,0,0,0,0,13,16,0,0,1,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,4,17,2367,842,1525,758,1308,77,196,1,2,2,8,1,1,3,10,761,1318,77,198,4,9,2,11,1,2,835,1512,752,1296,76,196,1,2,2,8,1,1,3,9,755,1305,76,197,4,8,2,10,1,1,7,13,6,12,1,0,0,0,0,0,0,0,0,1,6,13,1,1,0,1,0,1,0,1 -050,01,015,Alabama,Calhoun County,4,18,1893,508,1385,444,1181,63,194,1,0,0,5,0,0,0,5,444,1186,63,194,1,4,0,5,0,1,504,1378,440,1176,63,192,1,0,0,5,0,0,0,5,440,1181,63,192,1,4,0,5,0,1,4,7,4,5,0,2,0,0,0,0,0,0,0,0,4,5,0,2,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,5,0,117227,56381,60846,43458,45788,11249,13155,291,268,403,572,62,50,918,1013,44295,46700,11721,13711,658,662,606,788,116,119,54255,59059,41691,44318,11074,13011,240,219,375,548,52,42,823,921,42445,45153,11502,13519,560,577,557,739,94,96,2126,1787,1767,1470,175,144,51,49,28,24,10,8,95,92,1850,1547,219,192,98,85,49,49,22,23 -050,01,015,Alabama,Calhoun County,5,1,6881,3523,3358,2425,2255,869,881,9,13,38,31,5,1,177,177,2595,2419,995,1014,34,34,78,67,20,8,3257,3136,2197,2078,852,862,6,8,35,29,4,1,163,158,2354,2227,973,984,25,25,70,60,16,5,266,222,228,177,17,19,3,5,3,2,1,0,14,19,241,192,22,30,9,9,8,7,4,3 -050,01,015,Alabama,Calhoun County,5,2,7203,3727,3476,2647,2425,871,853,9,13,32,42,7,1,161,142,2798,2559,986,951,44,40,62,68,14,13,3501,3260,2468,2257,847,831,5,6,32,38,5,1,144,127,2603,2377,951,923,34,28,59,59,10,8,226,216,179,168,24,22,4,7,0,4,2,0,17,15,195,182,35,28,10,12,3,9,4,5 -050,01,015,Alabama,Calhoun County,5,3,7705,3887,3818,2806,2714,934,926,19,15,26,28,6,3,96,132,2897,2837,998,1007,43,50,46,56,11,10,3704,3646,2656,2572,918,913,11,13,24,25,4,3,91,120,2742,2685,979,991,32,41,43,50,9,9,183,172,150,142,16,13,8,2,2,3,2,0,5,12,155,152,19,16,11,9,3,6,2,1 -050,01,015,Alabama,Calhoun County,5,4,7763,3956,3807,2756,2587,1093,1107,12,12,21,23,5,6,69,72,2822,2654,1130,1154,30,35,37,35,8,10,3796,3672,2623,2467,1081,1102,10,9,18,22,4,4,60,68,2681,2531,1115,1147,24,28,31,33,6,8,160,135,133,120,12,5,2,3,3,1,1,2,9,4,141,123,15,7,6,7,6,2,2,2 -050,01,015,Alabama,Calhoun County,5,5,9080,4443,4637,3092,3163,1236,1347,25,18,29,30,4,6,57,73,3143,3229,1263,1390,51,41,44,53,6,11,4248,4509,2952,3061,1197,1332,19,15,27,28,4,4,49,69,2996,3123,1221,1374,41,37,40,49,5,9,195,128,140,102,39,15,6,3,2,2,0,2,8,4,147,106,42,16,10,4,4,4,1,2 -050,01,015,Alabama,Calhoun County,5,6,7484,3670,3814,2787,2710,779,973,16,20,33,25,4,7,51,79,2831,2780,801,1019,38,57,51,50,9,14,3446,3635,2587,2571,766,957,12,12,32,23,4,6,45,66,2625,2629,785,994,30,44,50,45,9,9,224,179,200,139,13,16,4,8,1,2,0,1,6,13,206,151,16,25,8,13,1,5,0,5 -050,01,015,Alabama,Calhoun County,5,7,7180,3468,3712,2681,2704,685,889,23,20,28,42,4,3,47,54,2723,2749,702,916,46,43,39,58,5,10,3251,3571,2503,2579,674,881,12,18,23,41,3,3,36,49,2535,2622,686,905,30,39,32,55,4,9,217,141,178,125,11,8,11,2,5,1,1,0,11,5,188,127,16,11,16,4,7,3,1,1 -050,01,015,Alabama,Calhoun County,5,8,6856,3367,3489,2604,2588,657,797,23,18,42,51,3,2,38,33,2635,2619,669,806,46,34,50,61,6,3,3195,3353,2457,2477,650,789,20,10,39,47,1,2,28,28,2482,2503,658,798,36,24,45,54,3,3,172,136,147,111,7,8,3,8,3,4,2,0,10,5,153,116,11,8,10,10,5,7,3,0 -050,01,015,Alabama,Calhoun County,5,9,7409,3571,3838,2877,2956,611,783,22,21,33,44,3,6,25,28,2896,2978,620,791,39,38,40,52,6,7,3452,3743,2773,2877,607,774,19,19,30,44,3,4,20,25,2789,2896,615,780,33,35,35,52,4,5,119,95,104,79,4,9,3,2,3,0,0,2,5,3,107,82,5,11,6,3,5,0,2,2 -050,01,015,Alabama,Calhoun County,5,10,7689,3833,3856,3108,2963,641,785,17,14,27,41,7,3,33,50,3136,3003,648,803,39,50,34,48,10,8,3725,3760,3013,2880,634,778,15,12,27,40,6,3,30,47,3039,2918,639,793,36,45,34,47,8,8,108,96,95,83,7,7,2,2,0,1,1,0,3,3,97,85,9,10,3,5,0,1,2,0 -050,01,015,Alabama,Calhoun County,5,11,8458,4032,4426,3181,3362,739,940,21,36,36,42,4,6,51,40,3222,3396,751,950,59,63,50,51,8,9,3953,4354,3111,3308,736,931,18,31,35,41,4,5,49,38,3150,3340,747,939,54,58,49,50,8,8,79,72,70,54,3,9,3,5,1,1,0,1,2,2,72,56,4,11,5,5,1,1,0,1 -050,01,015,Alabama,Calhoun County,5,12,8399,4055,4344,3224,3369,737,874,37,24,21,41,4,1,32,35,3253,3399,746,887,63,49,28,47,5,4,3996,4273,3178,3311,728,869,37,23,19,39,4,1,30,30,3205,3337,735,878,62,46,26,44,5,4,59,71,46,58,9,5,0,1,2,2,0,0,2,5,48,62,11,9,1,3,2,3,0,0 -050,01,015,Alabama,Calhoun County,5,13,7325,3433,3892,2831,3170,538,629,22,12,14,47,2,0,26,34,2853,3200,544,639,45,42,18,52,3,5,3378,3852,2788,3136,531,626,20,11,12,46,2,0,25,33,2809,3166,536,635,43,41,16,51,3,4,55,40,43,34,7,3,2,1,2,1,0,0,1,1,44,34,8,4,2,1,2,1,0,1 -050,01,015,Alabama,Calhoun County,5,14,5851,2705,3146,2301,2650,359,420,15,18,6,36,0,1,24,21,2323,2670,364,423,34,34,9,39,1,1,2684,3124,2284,2630,358,418,15,18,5,36,0,1,22,21,2304,2650,363,421,33,34,7,39,0,1,21,22,17,20,1,2,0,0,1,0,0,0,2,0,19,20,1,2,1,0,2,0,1,0 -050,01,015,Alabama,Calhoun County,5,15,4263,1943,2320,1694,1996,214,286,9,9,5,16,3,1,18,12,1711,2007,216,288,25,20,7,16,3,1,1931,2294,1685,1971,211,285,9,9,5,16,3,1,18,12,1702,1982,213,287,25,20,7,16,3,1,12,26,9,25,3,1,0,0,0,0,0,0,0,0,9,25,3,1,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,5,16,3352,1374,1978,1189,1663,159,280,6,2,11,17,0,1,9,15,1198,1674,159,284,14,15,12,18,0,3,1357,1969,1173,1654,158,280,6,2,11,17,0,1,9,15,1182,1665,158,284,14,15,12,18,0,3,17,9,16,9,1,0,0,0,0,0,0,0,0,0,16,9,1,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,5,17,2424,880,1544,804,1332,67,185,4,3,1,10,0,2,4,12,808,1343,69,188,6,13,1,10,0,2,872,1526,797,1315,66,185,4,3,1,10,0,2,4,11,801,1325,68,187,6,13,1,10,0,2,8,18,7,17,1,0,0,0,0,0,0,0,0,1,7,18,1,1,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,5,18,1905,514,1391,451,1181,60,200,2,0,0,6,1,0,0,4,451,1184,60,201,2,4,0,7,1,0,509,1382,446,1174,60,198,2,0,0,6,1,0,0,4,446,1177,60,199,2,4,0,7,1,0,5,9,5,7,0,2,0,0,0,0,0,0,0,0,5,7,0,2,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,6,0,116528,56150,60378,43190,45432,11235,13007,296,272,417,594,65,48,947,1025,44054,46367,11717,13554,662,669,622,811,129,111,54016,58602,41421,43964,11052,12872,247,220,390,569,53,41,853,936,42205,44822,11482,13370,572,580,574,761,103,95,2134,1776,1769,1468,183,135,49,52,27,25,12,7,94,89,1849,1545,235,184,90,89,48,50,26,16 -050,01,015,Alabama,Calhoun County,6,1,6679,3374,3305,2321,2189,815,897,10,12,36,26,4,2,188,179,2501,2359,954,1031,36,40,76,55,13,10,3121,3118,2102,2038,799,882,6,7,35,25,3,1,176,165,2272,2196,929,1006,27,27,72,51,12,8,253,187,219,151,16,15,4,5,1,1,1,1,12,14,229,163,25,25,9,13,4,4,1,2 -050,01,015,Alabama,Calhoun County,6,2,7185,3795,3390,2666,2386,905,806,7,14,33,47,10,1,174,136,2830,2515,1029,904,37,38,66,69,21,8,3559,3174,2477,2208,887,792,5,6,31,43,7,1,152,124,2624,2325,996,884,31,26,57,63,11,6,236,216,189,178,18,14,2,8,2,4,3,0,22,12,206,190,33,20,6,12,9,6,10,2 -050,01,015,Alabama,Calhoun County,6,3,7529,3816,3713,2786,2631,887,900,17,14,22,28,5,3,99,137,2873,2758,950,985,43,47,41,60,11,9,3625,3529,2631,2486,866,880,11,12,20,23,3,3,94,125,2716,2603,927,958,35,39,38,53,6,9,191,184,155,145,21,20,6,2,2,5,2,0,5,12,157,155,23,27,8,8,3,7,5,0 -050,01,015,Alabama,Calhoun County,6,4,7675,3918,3757,2748,2581,1055,1050,14,13,26,27,6,4,69,82,2816,2659,1092,1101,31,36,41,46,11,10,3753,3628,2609,2466,1041,1044,11,10,23,25,5,3,64,80,2672,2543,1077,1093,25,33,36,43,10,9,165,129,139,115,14,6,3,3,3,2,1,1,5,2,144,116,15,8,6,3,5,3,1,1 -050,01,015,Alabama,Calhoun County,6,5,8851,4338,4513,2998,3087,1218,1296,27,15,28,34,4,6,63,75,3054,3155,1250,1336,54,38,48,55,9,15,4136,4373,2849,2973,1183,1284,21,13,26,32,3,4,54,67,2898,3035,1210,1319,44,33,44,52,6,12,202,140,149,114,35,12,6,2,2,2,1,2,9,8,156,120,40,17,10,5,4,3,3,3 -050,01,015,Alabama,Calhoun County,6,6,7538,3692,3846,2780,2787,819,934,13,14,37,33,3,4,40,74,2818,2852,834,971,28,38,50,58,7,10,3489,3671,2609,2649,796,920,9,6,36,31,3,4,36,61,2643,2701,809,950,23,29,48,52,7,7,203,175,171,138,23,14,4,8,1,2,0,0,4,13,175,151,25,21,5,9,2,6,0,3 -050,01,015,Alabama,Calhoun County,6,7,7157,3500,3657,2680,2643,702,886,29,28,33,38,6,4,50,58,2727,2697,721,906,57,56,48,57,9,6,3279,3516,2498,2524,692,878,17,22,29,37,5,4,38,51,2533,2571,706,897,37,47,42,52,7,6,221,141,182,119,10,8,12,6,4,1,1,0,12,7,194,126,15,9,20,9,6,5,2,0 -050,01,015,Alabama,Calhoun County,6,8,6918,3368,3550,2604,2626,670,801,17,19,38,66,3,3,36,35,2633,2655,681,819,38,38,47,75,7,6,3216,3406,2473,2505,662,795,15,12,36,63,1,3,29,28,2496,2528,669,808,32,27,45,69,5,5,152,144,131,121,8,6,2,7,2,3,2,0,7,7,137,127,12,11,6,11,2,6,2,1 -050,01,015,Alabama,Calhoun County,6,9,7294,3557,3737,2851,2852,615,801,20,16,34,35,4,6,33,27,2878,2874,624,808,41,36,42,42,8,9,3417,3648,2729,2778,612,792,17,15,30,35,4,4,25,24,2748,2799,617,797,34,33,37,41,8,7,140,89,122,74,3,9,3,1,4,0,0,2,8,3,130,75,7,11,7,3,5,1,0,2 -050,01,015,Alabama,Calhoun County,6,10,7500,3680,3820,2993,2946,614,759,19,21,20,51,4,2,30,41,3018,2983,620,771,39,48,27,57,8,5,3582,3720,2910,2862,605,751,16,18,20,50,4,2,27,37,2933,2896,608,761,36,43,26,55,8,5,98,100,83,84,9,8,3,3,0,1,0,0,3,4,85,87,12,10,3,5,1,2,0,0 -050,01,015,Alabama,Calhoun County,6,11,8336,4024,4312,3154,3301,750,896,22,32,46,29,7,7,45,47,3193,3345,757,907,57,65,52,38,12,11,3935,4239,3075,3244,746,888,20,27,45,28,6,6,43,46,3112,3287,752,898,53,60,51,37,11,10,89,73,79,57,4,8,2,5,1,1,1,1,2,1,81,58,5,9,4,5,1,1,1,1 -050,01,015,Alabama,Calhoun County,6,12,8378,4045,4333,3235,3325,720,898,37,26,20,48,1,1,32,35,3263,3354,726,907,63,55,24,54,2,2,3976,4264,3180,3269,711,891,36,26,18,46,1,1,30,31,3206,3295,717,900,60,52,22,50,2,2,69,69,55,56,9,7,1,0,2,2,0,0,2,4,57,59,9,7,3,3,2,4,0,0 -050,01,015,Alabama,Calhoun County,6,13,7349,3426,3923,2786,3168,568,673,22,12,16,42,4,0,30,28,2811,3194,573,681,47,37,26,44,5,2,3376,3881,2747,3132,561,671,21,10,14,41,4,0,29,27,2771,3157,566,678,45,34,23,43,4,2,50,42,39,36,7,2,1,2,2,1,0,0,1,1,40,37,7,3,2,3,3,1,1,0 -050,01,015,Alabama,Calhoun County,6,14,6026,2817,3209,2380,2682,391,442,18,20,7,39,0,1,21,25,2400,2702,393,448,36,43,8,41,1,1,2794,3184,2361,2660,389,439,18,20,6,39,0,1,20,25,2380,2680,391,445,35,43,7,41,1,1,23,25,19,22,2,3,0,0,1,0,0,0,1,0,20,22,2,3,1,0,1,0,0,0 -050,01,015,Alabama,Calhoun County,6,15,4428,2002,2426,1730,2083,227,301,11,11,8,16,2,1,24,14,1749,2096,232,304,31,22,12,19,2,1,1990,2404,1721,2062,225,300,11,11,8,16,2,1,23,14,1739,2075,229,303,31,22,12,19,2,1,12,22,9,21,2,1,0,0,0,0,0,0,1,0,10,21,3,1,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,6,16,3380,1381,1999,1202,1687,154,277,7,2,10,16,1,1,7,16,1209,1699,155,281,12,14,11,19,2,3,1365,1985,1188,1673,152,277,7,2,10,16,1,1,7,16,1195,1685,153,281,12,14,11,19,2,3,16,14,14,14,2,0,0,0,0,0,0,0,0,0,14,14,2,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,6,17,2353,879,1474,799,1260,68,184,3,2,3,13,0,2,6,13,804,1270,69,186,9,14,3,15,0,3,870,1457,790,1244,68,184,3,2,3,13,0,2,6,12,795,1253,69,186,9,14,3,14,0,2,9,17,9,16,0,0,0,0,0,0,0,0,0,1,9,17,0,0,0,0,0,1,0,1 -050,01,015,Alabama,Calhoun County,6,18,1952,538,1414,477,1198,57,206,3,1,0,6,1,0,0,3,477,1200,57,208,3,4,0,7,1,0,533,1405,472,1191,57,204,3,1,0,6,1,0,0,3,472,1193,57,206,3,4,0,7,1,0,5,9,5,7,0,2,0,0,0,0,0,0,0,0,5,7,0,2,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,7,0,115991,55756,60235,42703,45205,11268,13038,297,272,426,628,65,50,997,1042,43615,46147,11788,13619,657,665,641,855,127,120,53638,58385,40960,43672,11089,12906,238,216,401,604,54,41,896,946,41785,44526,11554,13435,556,564,594,812,104,99,2118,1850,1743,1533,179,132,59,56,25,24,11,9,101,96,1830,1621,234,184,101,101,47,43,23,21 -050,01,015,Alabama,Calhoun County,7,1,6549,3336,3213,2255,2150,839,843,11,10,34,25,4,3,193,182,2441,2319,982,983,39,35,70,60,13,13,3098,3020,2056,1994,819,829,5,6,34,23,3,1,181,167,2230,2149,954,964,30,27,69,52,12,7,238,193,199,156,20,14,6,4,0,2,1,2,12,15,211,170,28,19,9,8,1,8,1,6 -050,01,015,Alabama,Calhoun County,7,2,7117,3719,3398,2613,2354,873,838,10,16,33,51,9,0,181,139,2785,2485,1004,942,40,39,66,79,18,8,3464,3175,2408,2172,854,822,7,7,30,47,7,0,158,127,2561,2292,969,916,29,25,59,71,13,6,255,223,205,182,19,16,3,9,3,4,2,0,23,12,224,193,35,26,11,14,7,8,5,2 -050,01,015,Alabama,Calhoun County,7,3,7388,3788,3600,2755,2558,876,863,18,14,22,29,4,4,113,132,2861,2682,950,951,42,47,46,54,12,8,3587,3401,2593,2401,858,844,11,10,20,23,1,4,104,119,2690,2512,927,925,33,37,41,47,7,8,201,199,162,157,18,19,7,4,2,6,3,0,9,13,171,170,23,26,9,10,5,7,5,0 -050,01,015,Alabama,Calhoun County,7,4,7649,3859,3790,2692,2602,1037,1052,15,13,28,29,8,3,79,91,2767,2687,1086,1110,37,40,46,46,10,7,3702,3643,2558,2475,1024,1042,13,11,26,27,7,2,74,86,2629,2556,1070,1099,33,34,42,43,9,6,157,147,134,127,13,10,2,2,2,2,1,1,5,5,138,131,16,11,4,6,4,3,1,1 -050,01,015,Alabama,Calhoun County,7,5,8459,4123,4336,2820,2936,1185,1256,25,14,21,42,3,7,69,81,2882,3010,1217,1301,52,39,40,65,5,12,3939,4197,2680,2820,1159,1249,18,10,19,41,3,5,60,72,2734,2885,1187,1288,41,31,36,61,5,7,184,139,140,116,26,7,7,4,2,1,0,2,9,9,148,125,30,13,11,8,4,4,0,5 -050,01,015,Alabama,Calhoun County,7,6,7815,3801,4014,2838,2893,859,1000,17,18,45,35,1,4,41,64,2874,2955,875,1032,32,46,60,50,4,6,3602,3844,2677,2756,832,988,11,10,44,35,1,3,37,52,2709,2806,847,1013,24,32,58,50,4,4,199,170,161,137,27,12,6,8,1,0,0,1,4,12,165,149,28,19,8,14,2,0,0,2 -050,01,015,Alabama,Calhoun County,7,7,7123,3481,3642,2668,2650,692,844,29,26,33,49,7,5,52,68,2715,2714,707,873,53,56,49,67,10,10,3268,3477,2488,2509,686,836,20,20,29,47,6,5,39,60,2525,2565,696,860,37,48,42,64,8,10,213,165,180,141,6,8,9,6,4,2,1,0,13,8,190,149,11,13,16,8,7,3,2,0 -050,01,015,Alabama,Calhoun County,7,8,6976,3399,3577,2612,2608,703,842,19,18,28,70,4,3,33,36,2642,2635,712,853,37,38,37,82,11,10,3252,3437,2490,2493,693,835,13,11,26,68,3,3,27,27,2516,2514,699,842,28,25,33,78,7,10,147,140,122,115,10,7,6,7,2,2,1,0,6,9,126,121,13,11,9,13,4,4,4,0 -050,01,015,Alabama,Calhoun County,7,9,7046,3441,3605,2767,2772,584,762,14,14,41,27,4,5,31,25,2792,2791,593,767,34,30,51,36,8,8,3303,3506,2647,2685,580,754,11,12,39,27,3,4,23,24,2665,2703,586,759,27,28,46,35,5,7,138,99,120,87,4,8,3,2,2,0,1,1,8,1,127,88,7,8,7,2,5,1,3,1 -050,01,015,Alabama,Calhoun County,7,10,7374,3562,3812,2859,2924,629,780,13,19,25,50,4,3,32,36,2886,2952,638,792,32,44,32,59,6,11,3463,3713,2778,2841,619,773,10,17,24,49,4,2,28,31,2801,2865,626,783,27,38,31,58,6,9,99,99,81,83,10,7,3,2,1,1,0,1,4,5,85,87,12,9,5,6,1,1,0,2 -050,01,015,Alabama,Calhoun County,7,11,8205,3981,4224,3142,3213,722,891,23,31,43,29,6,7,45,53,3178,3261,734,905,54,68,53,45,10,11,3876,4144,3052,3152,717,881,18,25,42,28,5,6,42,52,3085,3199,727,895,48,61,51,44,8,10,105,80,90,61,5,10,5,6,1,1,1,1,3,1,93,62,7,10,6,7,2,1,2,1 -050,01,015,Alabama,Calhoun County,7,12,8302,3976,4326,3132,3336,752,882,29,28,26,48,3,0,34,32,3157,3363,760,893,56,51,32,54,6,2,3912,4261,3077,3281,747,876,28,28,24,47,3,0,33,29,3101,3305,755,885,54,50,30,53,6,2,64,65,55,55,5,6,1,0,2,1,0,0,1,3,56,58,5,8,2,1,2,1,0,0 -050,01,015,Alabama,Calhoun County,7,13,7413,3482,3931,2798,3120,601,726,29,12,15,45,4,1,35,27,2828,3141,608,735,58,32,18,48,5,4,3432,3890,2761,3087,592,723,28,10,14,43,4,1,33,26,2790,3108,598,731,55,29,17,46,5,3,50,41,37,33,9,3,1,2,1,2,0,0,2,1,38,33,10,4,3,3,1,2,0,1 -050,01,015,Alabama,Calhoun County,7,14,6269,2888,3381,2445,2807,396,485,19,18,9,41,0,1,19,29,2460,2833,399,492,33,43,14,44,1,2,2868,3352,2430,2783,393,481,19,18,8,41,0,1,18,28,2445,2808,395,487,32,42,13,44,1,2,20,29,15,24,3,4,0,0,1,0,0,0,1,1,15,25,4,5,1,1,1,0,0,0 -050,01,015,Alabama,Calhoun County,7,15,4585,2103,2482,1807,2119,246,312,11,14,10,21,2,1,27,15,1834,2131,248,317,33,26,13,23,5,1,2086,2466,1793,2104,245,311,11,14,9,21,2,1,26,15,1819,2116,246,316,33,26,12,23,5,1,17,16,14,15,1,1,0,0,1,0,0,0,1,0,15,15,2,1,0,0,1,0,0,0 -050,01,015,Alabama,Calhoun County,7,16,3336,1381,1955,1211,1668,148,261,6,3,8,12,1,1,7,10,1218,1673,149,267,12,9,8,15,1,2,1364,1936,1197,1649,145,261,6,3,8,12,1,1,7,10,1204,1654,146,267,12,9,8,15,1,2,17,19,14,19,3,0,0,0,0,0,0,0,0,0,14,19,3,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,7,17,2390,876,1514,793,1278,67,198,6,3,4,18,0,1,6,16,799,1292,67,201,10,16,5,20,1,4,868,1497,785,1261,67,198,6,3,4,18,0,1,6,16,791,1275,67,201,10,16,5,20,1,4,8,17,8,17,0,0,0,0,0,0,0,0,0,0,8,17,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,7,18,1995,560,1435,496,1217,59,203,3,1,1,7,1,1,0,6,496,1223,59,205,3,6,1,8,1,1,554,1426,490,1209,59,203,3,1,1,7,1,1,0,5,490,1214,59,204,3,6,1,8,1,1,6,9,6,8,0,0,0,0,0,0,0,0,0,1,6,9,0,1,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,8,0,115550,55555,59995,42449,44892,11249,13049,306,271,430,644,59,51,1062,1088,43412,45887,11824,13644,709,664,663,886,110,131,53427,58098,40717,43339,11054,12891,241,215,405,617,48,42,962,994,41598,44253,11573,13439,590,566,614,833,86,106,2128,1897,1732,1553,195,158,65,56,25,27,11,9,100,94,1814,1634,251,205,119,98,49,53,24,25 -050,01,015,Alabama,Calhoun County,8,1,6620,3338,3282,2250,2195,820,836,12,9,39,34,2,4,215,204,2454,2388,980,986,48,37,77,74,11,15,3114,3074,2065,2035,800,813,4,2,37,29,2,2,206,193,2262,2218,954,960,36,26,75,65,9,10,224,208,185,160,20,23,8,7,2,5,0,2,9,11,192,170,26,26,12,11,2,9,2,5 -050,01,015,Alabama,Calhoun County,8,2,6983,3616,3367,2523,2312,870,855,10,14,32,42,4,0,177,144,2693,2452,998,959,43,43,70,66,7,6,3354,3145,2309,2131,847,837,6,8,29,39,2,0,161,130,2466,2257,964,932,32,33,63,61,5,4,262,222,214,181,23,18,4,6,3,3,2,0,16,14,227,195,34,27,11,10,7,5,2,2 -050,01,015,Alabama,Calhoun County,8,3,7203,3674,3529,2659,2494,853,848,11,13,20,28,5,2,126,144,2776,2629,933,946,40,45,50,57,14,12,3480,3314,2504,2323,835,824,8,9,19,23,2,2,112,133,2608,2448,906,916,32,34,44,50,7,10,194,215,155,171,18,24,3,4,1,5,3,0,14,11,168,181,27,30,8,11,6,7,7,2 -050,01,015,Alabama,Calhoun County,8,4,7678,3896,3782,2725,2601,1022,1043,22,13,26,32,8,3,93,90,2809,2687,1081,1099,44,38,47,53,13,8,3727,3632,2586,2477,1008,1033,17,10,24,29,6,2,86,81,2665,2554,1063,1085,36,31,43,49,11,7,169,150,139,124,14,10,5,3,2,3,2,1,7,9,144,133,18,14,8,7,4,4,2,1 -050,01,015,Alabama,Calhoun County,8,5,7991,3946,4045,2698,2715,1135,1177,21,13,22,52,4,9,66,79,2754,2785,1171,1222,42,38,41,77,7,16,3778,3905,2566,2602,1110,1165,19,8,20,51,4,7,59,72,2616,2666,1143,1206,37,29,37,73,7,13,168,140,132,113,25,12,2,5,2,1,0,2,7,7,138,119,28,16,5,9,4,4,0,3 -050,01,015,Alabama,Calhoun County,8,6,7990,3898,4092,2916,2959,877,1008,19,18,38,26,1,2,47,79,2955,3027,900,1052,40,43,52,51,3,11,3689,3922,2754,2820,846,996,9,11,37,25,1,2,42,68,2789,2878,866,1032,27,34,51,48,3,9,209,170,162,139,31,12,10,7,1,1,0,0,5,11,166,149,34,20,13,9,1,3,0,2 -050,01,015,Alabama,Calhoun County,8,7,7044,3425,3619,2631,2633,674,844,30,25,31,47,5,6,54,64,2679,2686,694,871,55,54,49,69,9,10,3213,3470,2453,2513,663,831,22,18,29,46,4,5,42,57,2490,2561,675,853,40,42,45,64,6,8,212,149,178,120,11,13,8,7,2,1,1,1,12,7,189,125,19,18,15,12,4,5,3,2 -050,01,015,Alabama,Calhoun County,8,8,6992,3426,3566,2632,2566,695,864,24,17,32,75,3,4,40,40,2668,2602,710,875,46,40,41,86,6,9,3266,3421,2506,2445,683,859,14,10,30,72,2,4,31,31,2535,2474,692,866,31,29,36,80,4,8,160,145,126,121,12,5,10,7,2,3,1,0,9,9,133,128,18,9,15,11,5,6,2,1 -050,01,015,Alabama,Calhoun County,8,9,6953,3388,3565,2668,2711,631,782,16,14,36,31,4,5,33,22,2693,2732,642,789,39,28,44,34,7,7,3257,3455,2555,2613,627,775,14,12,34,31,3,4,24,20,2575,2632,634,781,32,25,39,34,3,6,131,110,113,98,4,7,2,2,2,0,1,1,9,2,118,100,8,8,7,3,5,0,4,1 -050,01,015,Alabama,Calhoun County,8,10,7207,3494,3713,2802,2857,615,763,16,13,33,44,3,3,25,33,2823,2883,621,775,35,33,38,52,3,7,3391,3625,2719,2783,606,755,10,13,31,44,3,2,22,28,2738,2807,612,765,26,31,35,49,3,4,103,88,83,74,9,8,6,0,2,0,0,1,3,5,85,76,9,10,9,2,3,3,0,3 -050,01,015,Alabama,Calhoun County,8,11,8023,3918,4105,3114,3125,690,867,22,27,41,32,7,6,44,48,3152,3167,697,878,58,62,53,44,10,12,3814,4017,3026,3054,683,858,19,22,40,31,6,5,40,47,3060,3095,689,869,51,56,52,43,9,11,104,88,88,71,7,9,3,5,1,1,1,1,4,1,92,72,8,9,7,6,1,1,1,1 -050,01,015,Alabama,Calhoun County,8,12,8336,3974,4362,3121,3346,750,895,27,35,28,52,4,1,44,33,3158,3373,762,904,59,61,36,58,6,5,3905,4298,3061,3296,746,886,24,34,27,50,4,1,43,31,3097,3321,758,895,55,59,35,55,6,5,69,64,60,50,4,9,3,1,1,2,0,0,1,2,61,52,4,9,4,2,1,3,0,0 -050,01,015,Alabama,Calhoun County,8,13,7574,3582,3992,2850,3140,644,762,28,16,20,43,4,1,36,30,2881,3167,653,768,59,37,25,50,4,6,3534,3937,2813,3095,637,759,27,14,19,41,4,1,34,27,2842,3121,646,764,56,34,24,47,4,4,48,55,37,45,7,3,1,2,1,2,0,0,2,3,39,46,7,4,3,3,1,3,0,2 -050,01,015,Alabama,Calhoun County,8,14,6527,2991,3536,2532,2922,409,521,20,18,10,42,1,1,19,32,2550,2953,410,527,37,42,14,45,2,2,2965,3508,2515,2898,403,518,20,18,8,42,1,1,18,31,2532,2928,404,524,36,41,11,45,2,2,26,28,17,24,6,3,0,0,2,0,0,0,1,1,18,25,6,3,1,1,3,0,0,0 -050,01,015,Alabama,Calhoun County,8,15,4665,2112,2553,1802,2181,263,317,11,15,9,25,2,1,25,14,1825,2193,268,320,32,24,13,28,4,2,2095,2537,1787,2167,263,315,11,15,8,25,2,1,24,14,1809,2179,267,318,31,24,11,28,3,2,17,16,15,14,0,2,0,0,1,0,0,0,1,0,16,14,1,2,1,0,2,0,1,0 -050,01,015,Alabama,Calhoun County,8,16,3345,1404,1941,1213,1653,164,257,6,7,7,14,1,1,13,9,1226,1660,164,259,17,16,7,14,3,1,1389,1920,1202,1632,160,257,6,7,7,14,1,1,13,9,1215,1639,160,259,17,16,7,14,3,1,15,21,11,21,4,0,0,0,0,0,0,0,0,0,11,21,4,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,8,17,2394,892,1502,797,1257,77,209,8,3,5,17,0,1,5,15,800,1271,80,212,12,15,5,19,0,1,883,1487,788,1242,77,209,8,3,5,17,0,1,5,15,791,1256,80,212,12,15,5,19,0,1,9,15,9,15,0,0,0,0,0,0,0,0,0,0,9,15,0,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,8,18,2025,581,1444,516,1225,60,201,3,1,1,8,1,1,0,8,516,1232,60,202,3,8,1,9,1,1,573,1431,508,1213,60,201,3,1,1,8,1,1,0,7,508,1219,60,202,3,7,1,9,1,1,8,13,8,12,0,0,0,0,0,0,0,0,0,1,8,13,0,0,0,1,0,0,0,0 -050,01,015,Alabama,Calhoun County,9,0,115036,55322,59714,42193,44614,11222,12979,304,276,444,665,59,55,1100,1125,43205,45635,11805,13591,686,680,685,908,135,132,53099,57726,40371,42979,11025,12820,237,216,423,641,48,43,995,1027,41292,43919,11556,13377,575,579,645,858,111,104,2223,1988,1822,1635,197,159,67,60,21,24,11,12,105,98,1913,1716,249,214,111,101,40,50,24,28 -050,01,015,Alabama,Calhoun County,9,1,6642,3401,3241,2244,2173,867,840,11,8,41,28,3,4,235,188,2470,2353,1039,976,40,36,90,64,18,16,3174,3040,2051,2016,847,817,5,2,39,24,3,2,229,179,2272,2188,1016,950,33,25,86,58,17,13,227,201,193,157,20,23,6,6,2,4,0,2,6,9,198,165,23,26,7,11,4,6,1,3 -050,01,015,Alabama,Calhoun County,9,2,6862,3515,3347,2472,2269,833,842,8,10,30,43,4,3,168,180,2632,2434,951,975,35,43,64,78,8,12,3257,3100,2255,2069,814,828,3,4,29,37,2,0,154,162,2401,2221,925,947,24,32,62,67,6,7,258,247,217,200,19,14,5,6,1,6,2,3,14,18,231,213,26,28,11,11,2,11,2,5 -050,01,015,Alabama,Calhoun County,9,3,7158,3677,3481,2654,2482,841,815,11,11,22,31,4,1,145,141,2790,2612,935,908,45,40,55,61,14,10,3430,3245,2452,2285,823,794,7,7,21,30,1,1,126,128,2572,2403,908,878,31,32,50,56,8,9,247,236,202,197,18,21,4,4,1,1,3,0,19,13,218,209,27,30,14,8,5,5,6,1 -050,01,015,Alabama,Calhoun County,9,4,7660,3911,3749,2738,2566,1027,1028,19,19,28,30,8,4,91,102,2821,2661,1085,1094,43,46,46,51,11,9,3736,3583,2595,2430,1010,1015,14,15,27,27,6,3,84,93,2674,2517,1065,1073,35,38,42,47,8,6,175,166,143,136,17,13,5,4,1,3,2,1,7,9,147,144,20,21,8,8,4,4,3,3 -050,01,015,Alabama,Calhoun County,9,5,7474,3695,3779,2550,2534,1030,1075,20,13,29,71,3,8,63,78,2605,2607,1063,1118,42,35,39,90,9,14,3537,3643,2419,2423,1013,1063,18,9,27,70,3,6,57,72,2468,2492,1042,1104,39,27,37,87,8,11,158,136,131,111,17,12,2,4,2,1,0,2,6,6,137,115,21,14,3,8,2,3,1,3 -050,01,015,Alabama,Calhoun County,9,6,8242,4014,4228,2957,3072,937,1040,26,22,30,25,2,2,62,67,3011,3130,964,1076,51,44,49,44,8,9,3791,4075,2794,2942,897,1034,15,15,29,24,2,2,54,58,2842,2991,920,1065,37,35,47,42,6,8,223,153,163,130,40,6,11,7,1,1,0,0,8,9,169,139,44,11,14,9,2,2,2,1 -050,01,015,Alabama,Calhoun County,9,7,6996,3394,3602,2585,2610,693,864,23,18,39,35,5,7,49,68,2627,2671,710,894,44,45,55,54,8,14,3195,3421,2420,2471,679,841,16,9,37,35,4,6,39,59,2453,2525,692,866,33,32,51,53,5,11,199,181,165,139,14,23,7,9,2,0,1,1,10,9,174,146,18,28,11,13,4,1,3,3 -050,01,015,Alabama,Calhoun County,9,8,7030,3426,3604,2633,2633,688,834,28,21,33,73,3,2,41,41,2673,2668,698,851,48,43,43,84,9,7,3252,3466,2492,2515,679,829,16,16,31,71,2,2,32,33,2523,2545,685,843,33,33,40,78,7,4,174,138,141,118,9,5,12,5,2,2,1,0,9,8,150,123,13,8,15,10,3,6,2,3 -050,01,015,Alabama,Calhoun County,9,9,6701,3299,3402,2586,2531,620,777,20,17,32,38,4,5,37,34,2618,2560,634,783,41,40,43,47,7,11,3156,3289,2467,2435,614,770,18,12,30,37,3,5,24,30,2489,2460,622,776,34,32,37,46,4,10,143,113,119,96,6,7,2,5,2,1,1,0,13,4,129,100,12,7,7,8,6,1,3,1 -050,01,015,Alabama,Calhoun County,9,10,7235,3510,3725,2799,2860,635,782,14,11,34,40,3,4,25,28,2819,2883,643,791,30,27,41,48,4,9,3407,3634,2716,2784,627,774,9,11,31,40,3,2,21,23,2732,2803,633,780,24,25,37,45,4,5,103,91,83,76,8,8,5,0,3,0,0,2,4,5,87,80,10,11,6,2,4,3,0,4 -050,01,015,Alabama,Calhoun County,9,11,7702,3771,3931,3045,3013,634,809,15,19,35,37,7,5,35,48,3075,3053,643,823,42,53,41,49,11,9,3671,3835,2958,2931,627,801,13,16,35,36,6,4,32,47,2986,2970,633,815,38,49,41,48,10,8,100,96,87,82,7,8,2,3,0,1,1,1,3,1,89,83,10,8,4,4,0,1,1,1 -050,01,015,Alabama,Calhoun County,9,12,8235,3874,4361,3049,3314,715,911,27,36,33,62,4,4,46,34,3090,3345,725,917,61,60,44,71,9,5,3794,4294,2980,3264,712,900,23,33,31,61,4,4,44,32,3019,3293,720,906,55,56,42,69,9,5,80,67,69,50,3,11,4,3,2,1,0,0,2,2,71,52,5,11,6,4,2,2,0,0 -050,01,015,Alabama,Calhoun County,9,13,7709,3668,4041,2905,3154,669,794,31,22,24,36,4,1,35,34,2935,3184,674,801,61,47,30,42,7,1,3620,3984,2868,3107,661,791,31,20,23,34,4,1,33,31,2896,3134,665,797,60,44,29,39,7,1,48,57,37,47,8,3,0,2,1,2,0,0,2,3,39,50,9,4,1,3,1,3,0,0 -050,01,015,Alabama,Calhoun County,9,14,6794,3082,3712,2584,3043,445,570,20,19,10,47,1,0,22,33,2604,3070,447,577,36,49,14,51,3,1,3048,3677,2558,3014,439,567,19,18,10,46,1,0,21,32,2577,3041,441,573,34,48,14,49,3,1,34,35,26,29,6,3,1,1,0,1,0,0,1,1,27,29,6,4,2,1,0,2,0,0 -050,01,015,Alabama,Calhoun County,9,15,4743,2131,2612,1815,2210,274,338,10,16,9,29,1,1,22,18,1836,2227,276,340,28,30,12,32,2,1,2113,2595,1800,2194,273,337,10,16,8,29,1,1,21,18,1820,2211,275,339,27,30,11,32,2,1,18,17,15,16,1,1,0,0,1,0,0,0,1,0,16,16,1,1,1,0,1,0,0,0 -050,01,015,Alabama,Calhoun County,9,16,3426,1445,1981,1248,1698,164,250,9,8,4,15,2,1,18,9,1264,1706,168,251,24,16,5,16,5,1,1431,1956,1238,1675,160,249,9,7,4,15,2,1,18,9,1254,1683,164,250,24,15,5,16,5,1,14,25,10,23,4,1,0,1,0,0,0,0,0,0,10,23,4,1,0,1,0,0,0,0 -050,01,015,Alabama,Calhoun County,9,17,2360,911,1449,795,1205,93,207,8,5,10,17,0,2,5,13,800,1216,93,210,11,17,12,18,1,2,897,1436,782,1192,93,207,7,5,10,17,0,2,5,13,787,1203,93,210,10,17,12,18,1,2,14,13,13,13,0,0,1,0,0,0,0,0,0,0,13,13,0,0,1,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,9,18,2067,598,1469,534,1247,57,203,4,1,1,8,1,1,1,9,535,1255,57,206,4,9,2,8,1,1,590,1453,526,1232,57,203,4,1,1,8,1,1,1,8,527,1239,57,205,4,9,2,8,1,1,8,16,8,15,0,0,0,0,0,0,0,0,0,1,8,16,0,1,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,10,0,114746,55209,59537,42030,44392,11273,13013,302,278,446,648,60,62,1098,1144,43033,45434,11872,13660,683,659,689,905,127,141,52962,57545,40194,42750,11082,12851,228,216,421,627,49,50,988,1051,41101,43708,11619,13441,558,555,638,870,106,119,2247,1992,1836,1642,191,162,74,62,25,21,11,12,110,93,1932,1726,253,219,125,104,51,35,21,22 -050,01,015,Alabama,Calhoun County,10,1,6567,3345,3222,2247,2170,832,828,11,8,39,26,1,3,215,187,2456,2345,989,972,37,29,85,60,11,9,3112,3030,2058,2024,812,801,4,2,32,20,1,2,205,181,2257,2194,964,943,27,20,75,53,10,7,233,192,189,146,20,27,7,6,7,6,0,1,10,6,199,151,25,29,10,9,10,7,1,2 -050,01,015,Alabama,Calhoun County,10,2,6782,3458,3324,2413,2233,833,845,11,11,36,37,4,5,161,193,2563,2418,950,987,37,43,68,77,11,15,3197,3102,2191,2052,811,832,6,4,35,33,3,2,151,179,2333,2225,919,965,28,31,65,70,10,10,261,222,222,181,22,13,5,7,1,4,1,3,10,14,230,193,31,22,9,12,3,7,1,5 -050,01,015,Alabama,Calhoun County,10,3,7105,3707,3398,2665,2433,847,771,9,13,26,40,6,2,154,139,2812,2566,949,867,45,42,55,69,12,11,3446,3172,2449,2247,832,754,4,6,26,39,2,1,133,125,2576,2367,921,840,31,30,49,64,6,8,261,226,216,186,15,17,5,7,0,1,4,1,21,14,236,199,28,27,14,12,6,5,6,3 -050,01,015,Alabama,Calhoun County,10,4,7665,3883,3782,2738,2560,1001,1049,20,17,20,34,7,4,97,118,2826,2668,1066,1123,42,48,38,61,12,14,3687,3578,2575,2390,984,1034,13,13,20,31,5,3,90,107,2656,2488,1046,1100,32,38,37,56,10,11,196,204,163,170,17,15,7,4,0,3,2,1,7,11,170,180,20,23,10,10,1,5,2,3 -050,01,015,Alabama,Calhoun County,10,5,7318,3611,3707,2487,2501,1000,1041,16,17,29,64,4,8,75,76,2553,2570,1043,1087,43,38,47,85,6,13,3473,3559,2372,2380,988,1027,15,13,26,63,4,7,68,69,2433,2442,1027,1069,39,32,41,84,6,11,138,148,115,121,12,14,1,4,3,1,0,1,7,7,120,128,16,18,4,6,6,1,0,2 -050,01,015,Alabama,Calhoun County,10,6,8196,4077,4119,2999,3001,970,1017,25,18,33,23,3,4,47,56,3040,3048,989,1048,45,39,50,41,4,7,3880,3996,2856,2896,936,1011,14,13,31,22,3,3,40,51,2890,2938,952,1039,31,32,47,40,4,6,197,123,143,105,34,6,11,5,2,1,0,1,7,5,150,110,37,9,14,7,3,1,0,1 -050,01,015,Alabama,Calhoun County,10,7,6928,3354,3574,2541,2592,711,855,13,21,35,26,5,7,49,73,2582,2653,730,891,40,49,48,47,9,11,3169,3392,2386,2454,693,836,10,10,34,26,5,6,41,60,2421,2504,709,864,31,32,46,45,8,8,185,182,155,138,18,19,3,11,1,0,0,1,8,13,161,149,21,27,9,17,2,2,1,3 -050,01,015,Alabama,Calhoun County,10,8,7068,3420,3648,2607,2655,695,864,32,19,35,62,4,4,47,44,2646,2694,711,879,57,44,49,71,11,9,3234,3524,2463,2543,686,858,17,16,32,62,2,4,34,41,2490,2579,695,871,34,39,45,71,9,9,186,124,144,112,9,6,15,3,3,0,2,0,13,3,156,115,16,8,23,5,4,0,2,0 -050,01,015,Alabama,Calhoun County,10,9,6658,3237,3421,2513,2533,633,796,19,13,32,44,3,3,37,32,2546,2560,645,809,40,34,41,52,9,3,3089,3287,2387,2415,626,790,17,11,30,43,2,3,27,25,2413,2436,632,798,33,28,35,50,6,3,148,134,126,118,7,6,2,2,2,1,1,0,10,7,133,124,13,11,7,6,6,2,3,0 -050,01,015,Alabama,Calhoun County,10,10,7153,3455,3698,2738,2845,629,761,24,21,34,37,3,6,27,28,2763,2868,635,772,39,34,41,43,5,10,3352,3602,2658,2768,623,751,17,17,31,37,3,4,20,25,2676,2788,627,761,28,28,37,43,5,8,103,96,80,77,6,10,7,4,3,0,0,2,7,3,87,80,8,11,11,6,4,0,0,2 -050,01,015,Alabama,Calhoun County,10,11,7472,3684,3788,2988,2883,617,811,10,13,30,38,7,3,32,40,3016,2917,625,822,31,36,39,50,12,9,3575,3690,2893,2800,609,803,8,11,30,37,6,2,29,37,2920,2832,615,812,29,33,37,48,9,8,109,98,95,83,8,8,2,2,0,1,1,1,3,3,96,85,10,10,2,3,2,2,3,1 -050,01,015,Alabama,Calhoun County,10,12,8145,3849,4296,2995,3251,738,914,25,33,38,59,4,5,49,34,3035,3280,752,921,61,55,52,68,7,9,3769,4229,2928,3201,735,903,18,29,37,58,4,5,47,33,2966,3229,747,909,53,51,50,67,6,9,80,67,67,50,3,11,7,4,1,1,0,0,2,1,69,51,5,12,8,4,2,1,1,0 -050,01,015,Alabama,Calhoun County,10,13,7795,3685,4110,2933,3184,664,828,30,26,23,35,4,2,31,35,2962,3217,671,833,51,52,28,40,4,6,3637,4051,2896,3136,656,823,30,25,22,34,4,2,29,31,2923,3165,661,827,51,48,27,39,4,6,48,59,37,48,8,5,0,1,1,1,0,0,2,4,39,52,10,6,0,4,1,1,0,0 -050,01,015,Alabama,Calhoun County,10,14,6759,3087,3672,2554,2982,474,596,19,14,12,46,2,0,26,34,2575,3012,480,602,40,40,17,53,4,3,3046,3634,2521,2950,468,594,18,12,12,45,2,0,25,33,2542,2979,474,600,38,37,17,52,3,3,41,38,33,32,6,2,1,2,0,1,0,0,1,1,33,33,6,2,2,3,0,1,1,0 -050,01,015,Alabama,Calhoun County,10,15,5098,2283,2815,1934,2375,303,367,14,19,9,32,0,2,23,20,1956,2393,306,369,31,33,13,36,1,5,2262,2792,1918,2354,301,365,14,19,8,32,0,2,21,20,1938,2372,303,367,30,33,12,36,1,5,21,23,16,21,2,2,0,0,1,0,0,0,2,0,18,21,3,2,1,0,1,0,0,0 -050,01,015,Alabama,Calhoun County,10,16,3570,1549,2021,1342,1734,170,248,10,9,5,17,3,1,19,12,1358,1745,173,250,25,19,7,18,5,1,1536,1994,1332,1708,167,247,10,9,5,17,3,1,19,12,1348,1719,170,249,25,19,7,18,5,1,13,27,10,26,3,1,0,0,0,0,0,0,0,0,10,26,3,1,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,10,17,2359,897,1462,767,1214,107,215,7,4,9,16,0,1,7,12,773,1224,108,217,11,13,9,19,3,2,881,1453,753,1205,106,215,6,4,9,16,0,1,7,12,759,1215,107,217,10,13,9,19,3,2,16,9,14,9,1,0,1,0,0,0,0,0,0,0,14,9,1,0,1,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,10,18,2108,628,1480,569,1246,49,207,7,2,1,12,0,2,2,11,571,1256,50,211,8,11,2,15,1,4,617,1460,558,1227,49,207,7,2,1,12,0,2,2,10,560,1236,50,210,8,11,2,15,1,4,11,20,11,19,0,0,0,0,0,0,0,0,0,1,11,20,0,1,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,11,0,114298,55021,59277,41731,44070,11340,13043,305,289,442,630,57,57,1146,1188,42783,45163,11977,13712,698,695,695,904,130,142,52720,57171,39833,42327,11157,12881,237,219,411,605,46,46,1036,1093,40789,43344,11730,13499,585,577,639,857,102,116,2301,2106,1898,1743,183,162,68,70,31,25,11,11,110,95,1994,1819,247,213,113,118,56,47,28,26 -050,01,015,Alabama,Calhoun County,11,1,6612,3383,3229,2269,2162,847,808,15,18,38,31,1,2,213,208,2474,2359,1005,973,40,41,81,74,12,11,3137,3001,2070,1996,829,780,7,4,27,20,1,1,203,200,2265,2186,979,938,30,25,69,62,10,10,246,228,199,166,18,28,8,14,11,11,0,1,10,8,209,173,26,35,10,16,12,12,2,1 -050,01,015,Alabama,Calhoun County,11,2,6560,3321,3239,2318,2164,786,857,10,9,30,27,5,4,172,178,2480,2334,911,983,42,37,63,63,13,17,3080,3026,2106,1988,772,845,6,4,29,24,4,1,163,164,2262,2145,891,964,34,27,61,57,9,12,241,213,212,176,14,12,4,5,1,3,1,3,9,14,218,189,20,19,8,10,2,6,4,5 -050,01,015,Alabama,Calhoun County,11,3,7146,3751,3395,2668,2423,869,766,9,14,25,45,6,3,174,144,2832,2557,988,868,40,41,69,80,18,11,3461,3162,2428,2226,853,754,2,5,25,42,2,2,151,133,2571,2352,958,848,27,27,61,74,10,8,290,233,240,197,16,12,7,9,0,3,4,1,23,11,261,205,30,20,13,14,8,6,8,3 -050,01,015,Alabama,Calhoun County,11,4,7560,3799,3761,2659,2511,999,1062,17,16,23,37,6,4,95,131,2744,2637,1062,1145,42,52,41,74,9,15,3587,3535,2481,2326,978,1042,12,12,22,35,4,3,90,117,2562,2440,1038,1118,35,42,39,68,7,12,212,226,178,185,21,20,5,4,1,2,2,1,5,14,182,197,24,27,7,10,2,6,2,3 -050,01,015,Alabama,Calhoun County,11,5,7319,3651,3668,2510,2508,992,1006,19,15,34,57,5,3,91,79,2590,2582,1048,1050,51,38,55,79,9,8,3502,3528,2390,2390,980,991,16,12,28,56,5,3,83,76,2463,2461,1032,1034,43,33,47,77,9,8,149,140,120,118,12,15,3,3,6,1,0,0,8,3,127,121,16,16,8,5,8,2,0,0 -050,01,015,Alabama,Calhoun County,11,6,8159,4060,4099,2957,2950,999,1041,17,18,29,17,0,6,58,67,3008,3012,1027,1078,42,42,46,36,3,13,3888,3978,2825,2846,974,1038,15,14,27,16,0,5,47,59,2866,2900,997,1071,34,33,41,33,2,9,172,121,132,104,25,3,2,4,2,1,0,1,11,8,142,112,30,7,8,9,5,3,1,4 -050,01,015,Alabama,Calhoun County,11,7,6877,3318,3559,2473,2604,755,832,10,19,37,28,4,6,39,70,2508,2666,769,860,24,49,49,49,10,10,3136,3366,2326,2450,731,815,6,10,36,28,4,5,33,58,2356,2502,741,837,19,34,47,46,9,9,182,193,147,154,24,17,4,9,1,0,0,1,6,12,152,164,28,23,5,15,2,3,1,1 -050,01,015,Alabama,Calhoun County,11,8,6998,3379,3619,2582,2636,679,862,35,19,32,46,4,3,47,53,2625,2681,695,885,62,46,44,59,8,8,3190,3501,2429,2538,672,854,22,12,30,46,2,3,35,48,2461,2581,682,873,40,37,40,59,4,6,189,118,153,98,7,8,13,7,2,0,2,0,12,5,164,100,13,12,22,9,4,0,4,2 -050,01,015,Alabama,Calhoun County,11,9,6692,3236,3456,2504,2544,647,810,21,16,31,52,3,3,30,31,2529,2570,655,816,41,33,39,62,4,7,3102,3290,2393,2394,639,804,17,14,29,51,2,3,22,24,2412,2417,643,808,35,26,34,59,2,5,134,166,111,150,8,6,4,2,2,1,1,0,8,7,117,153,12,8,6,7,5,3,2,2 -050,01,015,Alabama,Calhoun County,11,10,7074,3435,3639,2724,2806,613,756,22,17,39,30,4,6,33,24,2753,2829,624,763,40,32,46,33,6,7,3306,3542,2618,2722,608,749,15,15,36,30,4,4,25,22,2640,2743,614,755,30,28,43,33,5,5,129,97,106,84,5,7,7,2,3,0,0,2,8,2,113,86,10,8,10,4,3,0,1,2 -050,01,015,Alabama,Calhoun County,11,11,7224,3541,3683,2879,2802,589,782,15,15,26,45,3,3,29,36,2902,2833,599,790,34,37,33,54,5,8,3446,3581,2798,2718,580,774,13,11,26,44,3,2,26,32,2819,2745,587,780,30,31,32,52,4,7,95,102,81,84,9,8,2,4,0,1,0,1,3,4,83,88,12,10,4,6,1,2,1,1 -050,01,015,Alabama,Calhoun County,11,12,8067,3832,4235,2972,3210,746,903,21,32,38,47,7,6,48,37,3018,3245,756,913,55,56,50,55,12,10,3741,4158,2893,3149,742,893,17,28,37,46,6,6,46,36,2937,3183,751,902,50,51,49,54,11,10,91,77,79,61,4,10,4,4,1,1,1,0,2,1,81,62,5,11,5,5,1,1,1,0 -050,01,015,Alabama,Calhoun County,11,13,7857,3712,4145,2978,3187,649,848,34,27,19,43,1,2,31,38,3007,3216,653,857,55,56,26,54,6,7,3646,4083,2926,3138,641,840,31,27,18,42,1,2,29,34,2953,3165,645,848,51,53,24,51,6,6,66,62,52,49,8,8,3,0,1,1,0,0,2,4,54,51,8,9,4,3,2,3,0,1 -050,01,015,Alabama,Calhoun County,11,14,6721,3049,3672,2489,2946,489,643,20,16,16,39,5,0,30,28,2513,2969,495,650,42,40,22,42,9,0,3007,3628,2454,2909,484,640,19,13,16,39,5,0,29,27,2477,2931,490,647,41,36,21,42,8,0,42,44,35,37,5,3,1,3,0,0,0,0,1,1,36,38,5,3,1,4,1,0,1,0 -050,01,015,Alabama,Calhoun County,11,15,5289,2430,2859,2041,2376,344,399,15,20,9,36,0,2,21,26,2062,2401,347,405,32,43,11,38,1,3,2411,2834,2025,2355,342,395,15,20,9,36,0,2,20,26,2045,2380,344,401,32,43,11,38,1,3,19,25,16,21,2,4,0,0,0,0,0,0,1,0,17,21,3,4,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,11,16,3697,1595,2102,1368,1807,184,251,9,12,6,16,2,1,26,15,1389,1820,188,254,34,26,9,18,3,1,1577,2076,1354,1782,181,250,9,12,6,16,2,1,25,15,1374,1795,185,253,33,26,9,18,3,1,18,26,14,25,3,1,0,0,0,0,0,0,1,0,15,25,3,1,1,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,11,17,2342,908,1434,781,1194,103,207,9,4,7,18,1,1,7,10,788,1202,104,209,14,13,8,18,2,2,895,1421,771,1181,101,207,8,4,7,18,1,1,7,10,778,1189,102,209,13,13,8,18,2,2,13,13,10,13,2,0,1,0,0,0,0,0,0,0,10,13,2,0,1,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,11,18,2104,621,1483,559,1240,50,210,7,2,3,16,0,2,2,13,561,1250,51,213,8,13,3,16,0,4,608,1461,546,1219,50,210,7,2,3,16,0,2,2,12,548,1229,51,213,8,12,3,16,0,3,13,22,13,21,0,0,0,0,0,0,0,0,0,1,13,21,0,0,0,1,0,0,0,1 -050,01,015,Alabama,Calhoun County,12,0,114070,54818,59252,41435,43864,11429,13208,304,292,412,606,62,60,1176,1222,42505,44976,12083,13887,687,677,691,875,152,150,52495,57076,39507,42064,11243,13036,240,224,383,576,50,48,1072,1128,40493,43096,11846,13672,578,566,636,820,120,127,2323,2176,1928,1800,186,172,64,68,29,30,12,12,104,94,2012,1880,237,215,109,111,55,55,32,23 -050,01,015,Alabama,Calhoun County,12,1,6572,3361,3211,2265,2122,853,820,7,19,39,32,3,3,194,215,2450,2324,999,983,37,44,76,68,13,14,3128,2972,2073,1953,837,790,4,4,28,19,3,2,183,204,2248,2145,977,948,28,24,62,53,12,12,233,239,192,169,16,30,3,15,11,13,0,1,11,11,202,179,22,35,9,20,14,15,1,2 -050,01,015,Alabama,Calhoun County,12,2,6431,3215,3216,2202,2171,781,825,19,6,24,26,5,4,184,184,2376,2347,914,959,44,37,61,59,17,19,2979,2995,1998,1980,768,815,9,3,24,22,4,1,176,174,2167,2148,897,943,30,29,60,52,14,15,236,221,204,191,13,10,10,3,0,4,1,3,8,10,209,199,17,16,14,8,1,7,3,4 -050,01,015,Alabama,Calhoun County,12,3,7121,3724,3397,2633,2371,857,814,8,16,30,44,7,2,189,150,2811,2510,986,915,48,45,74,76,19,9,3430,3159,2387,2170,836,800,5,7,29,42,3,1,170,139,2547,2300,955,895,39,30,68,73,11,7,294,238,246,201,21,14,3,9,1,2,4,1,19,11,264,210,31,20,9,15,6,3,8,2 -050,01,015,Alabama,Calhoun County,12,4,7677,3895,3782,2701,2498,1055,1102,12,13,19,34,5,5,103,130,2797,2622,1120,1187,34,39,43,62,10,12,3669,3554,2508,2309,1036,1083,7,11,19,31,2,4,97,116,2598,2420,1098,1160,28,33,41,57,7,9,226,228,193,189,19,19,5,2,0,3,3,1,6,14,199,202,22,27,6,6,2,5,3,3 -050,01,015,Alabama,Calhoun County,12,5,7384,3644,3740,2468,2534,1029,1051,20,20,26,39,7,3,94,93,2553,2621,1085,1105,44,42,51,60,9,10,3517,3593,2363,2412,1019,1035,17,16,19,38,7,3,92,89,2446,2495,1073,1088,41,36,44,59,9,9,127,147,105,122,10,16,3,4,7,1,0,0,2,4,107,126,12,17,3,6,7,1,0,1 -050,01,015,Alabama,Calhoun County,12,6,7920,3914,4006,2852,2845,959,1035,19,19,26,26,0,5,58,76,2898,2912,991,1071,42,46,48,49,4,8,3740,3873,2715,2736,934,1028,17,15,24,24,0,4,50,66,2757,2795,961,1060,35,38,42,44,3,6,174,133,137,109,25,7,2,4,2,2,0,1,8,10,141,117,30,11,7,8,6,5,1,2 -050,01,015,Alabama,Calhoun County,12,7,7015,3393,3622,2522,2645,778,866,16,17,36,30,2,7,39,57,2555,2696,792,889,37,39,47,47,6,9,3206,3437,2375,2493,753,852,11,8,34,30,2,5,31,49,2402,2537,765,873,27,25,44,45,4,7,187,185,147,152,25,14,5,9,2,0,0,2,8,8,153,159,27,16,10,14,3,2,2,2 -050,01,015,Alabama,Calhoun County,12,8,6883,3327,3556,2572,2607,642,821,28,16,27,43,7,4,51,65,2618,2659,658,844,52,48,42,65,15,10,3134,3416,2414,2497,632,807,18,8,27,43,5,4,38,57,2449,2544,644,826,37,36,40,61,9,8,193,140,158,110,10,14,10,8,0,0,2,0,13,8,169,115,14,18,15,12,2,4,6,2 -050,01,015,Alabama,Calhoun County,12,9,6793,3292,3501,2537,2569,676,837,22,17,23,50,2,3,32,25,2564,2585,689,851,37,29,31,58,7,6,3156,3355,2426,2437,670,832,14,14,21,48,2,3,23,21,2445,2451,679,843,25,25,27,53,5,6,136,146,111,132,6,5,8,3,2,2,0,0,9,4,119,134,10,8,12,4,4,5,2,0 -050,01,015,Alabama,Calhoun County,12,10,6792,3315,3477,2623,2669,591,746,21,14,38,20,4,5,38,23,2656,2687,602,756,45,28,51,23,12,9,3185,3367,2515,2568,585,739,16,14,36,20,3,4,30,22,2542,2585,592,748,35,28,47,23,10,8,130,110,108,101,6,7,5,0,2,0,1,1,8,1,114,102,10,8,10,0,4,0,2,1 -050,01,015,Alabama,Calhoun County,12,11,7114,3433,3681,2748,2815,615,770,16,16,26,44,3,4,25,32,2770,2842,624,775,30,38,31,52,3,9,3330,3586,2662,2739,605,762,14,14,25,43,3,2,21,26,2680,2760,611,767,27,33,30,48,3,6,103,95,86,76,10,8,2,2,1,1,0,2,4,6,90,82,13,8,3,5,1,4,0,3 -050,01,015,Alabama,Calhoun County,12,12,7914,3798,4116,2988,3121,706,882,18,28,36,36,6,6,44,43,3027,3159,713,893,46,53,51,50,12,13,3693,4026,2897,3050,701,871,14,22,35,35,5,6,41,42,2934,3087,707,881,41,47,47,49,10,13,105,90,91,71,5,11,4,6,1,1,1,0,3,1,93,72,6,12,5,6,4,1,2,0 -050,01,015,Alabama,Calhoun County,12,13,7892,3698,4194,2927,3219,681,859,29,33,23,48,3,1,35,34,2957,3251,688,863,56,57,32,56,6,6,3634,4129,2869,3165,679,852,26,33,23,47,3,1,34,31,2898,3194,686,855,52,56,32,54,6,6,64,65,58,54,2,7,3,0,0,1,0,0,1,3,59,57,2,8,4,1,0,2,0,0 -050,01,015,Alabama,Calhoun County,12,14,6786,3088,3698,2493,2925,515,680,25,17,13,45,5,1,37,30,2523,2954,523,684,52,39,19,51,10,5,3038,3650,2455,2885,506,676,24,14,13,45,5,1,35,29,2484,2913,513,679,50,35,19,50,9,4,50,48,38,40,9,4,1,3,0,0,0,0,2,1,39,41,10,5,2,4,0,1,1,1 -050,01,015,Alabama,Calhoun County,12,15,5531,2504,3027,2118,2490,339,448,19,19,10,38,0,1,18,31,2132,2517,343,451,33,43,14,44,1,3,2490,3000,2108,2469,336,443,19,19,10,38,0,1,17,30,2122,2495,339,446,33,42,13,44,1,3,14,27,10,21,3,5,0,0,0,0,0,0,1,1,10,22,4,5,0,1,1,0,0,0 -050,01,015,Alabama,Calhoun County,12,16,3778,1655,2123,1414,1827,196,251,10,13,7,18,2,1,26,13,1438,1837,199,254,30,25,9,19,5,1,1635,2097,1398,1802,193,250,10,13,7,18,2,1,25,13,1422,1812,195,253,30,25,9,19,4,1,20,26,16,25,3,1,0,0,0,0,0,0,1,0,16,25,4,1,0,0,0,0,1,0 -050,01,015,Alabama,Calhoun County,12,17,2321,924,1397,803,1176,101,191,6,6,6,13,1,3,7,8,810,1184,102,193,9,11,7,14,3,4,908,1380,790,1159,98,191,6,6,6,13,1,3,7,8,797,1167,99,193,9,11,7,14,3,4,16,17,13,17,3,0,0,0,0,0,0,0,0,0,13,17,3,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,12,18,2146,638,1508,569,1260,55,210,9,3,3,20,0,2,2,13,570,1269,55,214,11,14,4,22,0,3,623,1487,554,1240,55,210,9,3,3,20,0,2,2,12,555,1248,55,214,11,13,4,22,0,3,15,21,15,20,0,0,0,0,0,0,0,0,0,1,15,21,0,0,0,1,0,0,0,0 -050,01,015,Alabama,Calhoun County,13,0,113469,54567,58902,41245,43671,11374,13019,306,292,402,600,61,66,1179,1254,42331,44807,12020,13762,693,694,669,875,126,144,52142,56659,39199,41813,11201,12848,240,221,373,570,48,51,1081,1156,40199,42872,11796,13526,581,586,617,823,106,114,2425,2243,2046,1858,173,171,66,71,29,30,13,15,98,98,2132,1935,224,236,112,108,52,52,20,30 -050,01,015,Alabama,Calhoun County,13,1,6468,3339,3129,2247,2058,845,809,11,18,43,31,3,4,190,209,2425,2258,987,971,37,46,78,71,10,14,3086,2886,2043,1884,823,782,6,5,33,18,2,2,179,195,2211,2073,960,934,28,29,66,56,8,9,253,243,204,174,22,27,5,13,10,13,1,2,11,14,214,185,27,37,9,17,12,15,2,5 -050,01,015,Alabama,Calhoun County,13,2,6550,3300,3250,2273,2216,806,798,16,12,22,27,2,4,181,193,2445,2400,938,941,45,39,56,64,9,15,3069,3021,2069,2024,798,786,7,5,21,22,2,2,172,182,2232,2200,924,923,34,27,53,58,9,10,231,229,204,192,8,12,9,7,1,5,0,2,9,11,213,200,14,18,11,12,3,6,0,5 -050,01,015,Alabama,Calhoun County,13,3,7042,3643,3399,2598,2372,822,826,11,12,26,40,6,4,180,145,2771,2508,940,925,45,37,70,70,20,15,3326,3148,2323,2156,799,813,8,5,25,39,2,1,169,134,2488,2284,910,906,38,26,66,65,14,9,317,251,275,216,23,13,3,7,1,1,4,3,11,11,283,224,30,19,7,11,4,5,6,6 -050,01,015,Alabama,Calhoun County,13,4,7479,3804,3675,2649,2456,1003,1039,7,14,16,34,7,4,122,128,2764,2574,1079,1124,32,41,43,64,13,12,3570,3441,2444,2259,989,1018,4,10,16,32,4,3,113,119,2551,2370,1061,1095,25,34,39,60,10,11,234,234,205,197,14,21,3,4,0,2,3,1,9,9,213,204,18,29,7,7,4,4,3,1 -050,01,015,Alabama,Calhoun County,13,5,7465,3730,3735,2523,2538,1048,1025,27,20,34,47,9,4,89,101,2606,2631,1097,1087,56,45,54,74,12,10,3562,3569,2386,2405,1033,1011,21,15,26,44,8,4,88,90,2468,2488,1082,1066,49,37,45,69,11,9,168,166,137,133,15,14,6,5,8,3,1,0,1,11,138,143,15,21,7,8,9,5,1,1 -050,01,015,Alabama,Calhoun County,13,6,7457,3661,3796,2645,2675,915,993,15,17,24,27,1,8,61,76,2701,2740,942,1037,38,40,46,47,6,14,3519,3670,2522,2569,905,984,13,12,23,27,1,7,55,71,2573,2630,929,1023,32,34,44,47,5,13,142,126,123,106,10,9,2,5,1,0,0,1,6,5,128,110,13,14,6,6,2,0,1,1 -050,01,015,Alabama,Calhoun County,13,7,7230,3552,3678,2621,2721,839,847,15,17,32,24,2,4,43,65,2655,2780,858,879,31,43,51,45,5,8,3363,3503,2471,2574,816,837,11,10,30,23,2,3,33,56,2496,2626,831,864,22,32,45,40,3,5,189,175,150,147,23,10,4,7,2,1,0,1,10,9,159,154,27,15,9,11,6,5,2,3 -050,01,015,Alabama,Calhoun County,13,8,6771,3284,3487,2535,2573,637,785,27,19,30,40,6,6,49,64,2577,2633,656,807,50,50,43,60,8,10,3087,3329,2366,2450,632,766,18,12,30,40,4,5,37,56,2398,2502,644,783,36,41,41,57,6,8,197,158,169,123,5,19,9,7,0,0,2,1,12,8,179,131,12,24,14,9,2,3,2,2 -050,01,015,Alabama,Calhoun County,13,9,6829,3289,3540,2554,2595,656,848,20,12,22,50,1,5,36,30,2586,2618,669,859,43,27,31,57,1,9,3147,3399,2442,2470,645,842,10,9,21,48,1,4,28,26,2466,2491,654,851,27,21,29,55,1,7,142,141,112,125,11,6,10,3,1,2,0,1,8,4,120,127,15,8,16,6,2,2,0,2 -050,01,015,Alabama,Calhoun County,13,10,6707,3234,3473,2525,2647,629,756,22,14,24,26,4,5,30,25,2549,2669,642,767,38,30,33,29,5,6,3101,3342,2410,2524,625,751,20,14,22,26,3,4,21,23,2427,2544,632,760,33,28,29,29,4,5,133,131,115,123,4,5,2,0,2,0,1,1,9,2,122,125,10,7,5,2,4,0,1,1 -050,01,015,Alabama,Calhoun County,13,11,6924,3338,3586,2669,2755,597,736,15,16,30,41,3,4,24,34,2692,2782,600,751,30,38,37,49,5,6,3235,3496,2585,2684,586,727,12,14,28,41,3,2,21,28,2605,2708,588,737,25,35,35,46,5,3,103,90,84,71,11,9,3,2,2,0,0,2,3,6,87,74,12,14,5,3,2,3,0,3 -050,01,015,Alabama,Calhoun County,13,12,7697,3752,3945,2995,3001,654,839,20,24,36,29,5,5,42,47,3033,3040,663,853,47,55,44,40,9,9,3634,3857,2894,2926,647,833,16,19,35,28,4,5,38,46,2928,2965,654,846,40,50,43,38,8,9,118,88,101,75,7,6,4,5,1,1,1,0,4,1,105,75,9,7,7,5,1,2,1,0 -050,01,015,Alabama,Calhoun County,13,13,7820,3639,4181,2886,3198,658,863,29,34,20,49,4,2,42,35,2921,3227,670,873,57,58,28,55,6,5,3573,4113,2828,3148,656,852,24,31,20,47,4,2,41,33,2862,3175,667,861,52,54,28,53,6,5,66,68,58,50,2,11,5,3,0,2,0,0,1,2,59,52,3,12,5,4,0,2,0,0 -050,01,015,Alabama,Calhoun County,13,14,6972,3187,3785,2553,2981,550,710,26,19,16,41,4,1,38,33,2588,3006,557,721,56,45,20,46,8,4,3134,3732,2508,2939,545,705,25,16,16,41,4,1,36,30,2541,2961,552,715,53,39,20,46,8,4,53,53,45,42,5,5,1,3,0,0,0,0,2,3,47,45,5,6,3,6,0,0,0,0 -050,01,015,Alabama,Calhoun County,13,15,5741,2560,3181,2172,2612,341,476,18,18,11,40,1,1,17,34,2188,2639,343,485,34,43,12,48,1,2,2537,3153,2157,2587,334,474,18,18,11,40,1,1,16,33,2172,2613,336,483,33,42,12,48,1,2,23,28,15,25,7,2,0,0,0,0,0,0,1,1,16,26,7,2,1,1,0,0,0,0 -050,01,015,Alabama,Calhoun County,13,16,3791,1627,2164,1375,1848,210,264,11,14,7,23,2,1,22,14,1393,1859,213,270,29,26,10,25,5,1,1606,2139,1357,1825,208,262,11,14,7,23,2,1,21,14,1375,1836,210,268,29,26,9,25,4,1,21,25,18,23,2,2,0,0,0,0,0,0,1,0,18,23,3,2,0,0,1,0,1,0 -050,01,015,Alabama,Calhoun County,13,17,2380,973,1407,845,1190,104,187,6,9,5,12,1,2,12,7,856,1196,106,189,15,16,8,12,3,2,956,1385,832,1168,100,187,6,9,5,12,1,2,12,7,843,1174,102,189,15,16,8,12,3,2,17,22,13,22,4,0,0,0,0,0,0,0,0,0,13,22,4,0,0,0,0,0,0,0 -050,01,015,Alabama,Calhoun County,13,18,2146,655,1491,580,1235,60,218,10,3,4,19,0,2,1,14,581,1247,60,223,10,15,5,19,0,2,637,1476,562,1221,60,218,10,3,4,19,0,2,1,13,563,1232,60,222,10,15,5,19,0,2,18,15,18,14,0,0,0,0,0,0,0,0,0,1,18,15,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,1,0,34215,16363,17852,9940,10356,6125,7200,33,38,92,90,10,5,163,163,10090,10506,6212,7309,91,98,122,102,14,8,16032,17647,9714,10199,6055,7167,24,33,77,90,3,4,159,154,9861,10343,6141,7270,81,87,105,101,6,6,331,205,226,157,70,33,9,5,15,0,7,1,4,9,229,163,71,39,10,11,17,1,8,2 -050,01,017,Alabama,Chambers County,1,1,1953,981,972,498,504,451,431,1,0,7,2,0,0,24,35,519,536,467,462,5,6,14,3,0,0,947,946,473,481,443,430,0,0,7,2,0,0,24,33,494,512,459,460,4,4,14,3,0,0,34,26,25,23,8,1,1,0,0,0,0,0,0,2,25,24,8,2,1,2,0,0,0,0 -050,01,017,Alabama,Chambers County,1,2,2045,1081,964,581,481,470,447,1,2,1,7,2,0,26,27,606,507,490,472,5,5,4,7,3,0,1049,937,557,461,463,441,0,2,1,7,2,0,26,26,582,487,483,465,4,4,4,7,3,0,32,27,24,20,7,6,1,0,0,0,0,0,0,1,24,20,7,7,1,1,0,0,0,0 -050,01,017,Alabama,Chambers County,1,3,2237,1134,1103,600,590,504,494,1,2,7,4,1,1,21,12,620,602,522,504,3,3,9,5,1,1,1110,1091,583,579,497,493,1,2,7,4,1,1,21,12,603,591,515,503,3,3,9,5,1,1,24,12,17,11,7,1,0,0,0,0,0,0,0,0,17,11,7,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,1,4,2298,1168,1130,626,540,515,565,2,2,4,4,1,0,20,19,646,557,529,582,7,6,5,6,1,1,1146,1116,609,531,514,560,2,2,1,4,0,0,20,19,629,548,528,577,7,6,2,6,0,1,22,14,17,9,1,5,0,0,3,0,1,0,0,0,17,9,1,5,0,0,3,0,1,0 -050,01,017,Alabama,Chambers County,1,5,1925,1003,922,557,484,424,416,3,4,10,7,4,1,5,10,562,494,425,424,5,6,12,7,4,1,961,906,535,472,417,415,2,2,2,7,0,0,5,10,540,482,418,423,4,4,4,7,0,0,42,16,22,12,7,1,1,2,8,0,4,1,0,0,22,12,7,1,1,2,8,0,4,1 -050,01,017,Alabama,Chambers County,1,6,1887,902,985,511,516,366,460,3,0,13,7,2,0,7,2,518,518,369,461,5,1,15,7,2,0,858,968,488,503,354,456,0,0,10,7,0,0,6,2,494,505,357,457,1,1,12,7,0,0,44,17,23,13,12,4,3,0,3,0,2,0,1,0,24,13,12,4,4,0,3,0,2,0 -050,01,017,Alabama,Chambers County,1,7,1914,922,992,539,535,363,442,3,3,11,11,0,1,6,0,545,535,364,442,6,3,13,11,0,1,893,974,518,522,358,438,2,2,10,11,0,1,5,0,523,522,359,438,5,2,11,11,0,1,29,18,21,13,5,4,1,1,1,0,0,0,1,0,22,13,5,4,1,1,2,0,0,0 -050,01,017,Alabama,Chambers County,1,8,2147,1032,1115,626,598,378,492,0,1,20,14,0,1,8,9,633,607,382,495,2,6,23,15,0,1,1004,1097,607,583,369,491,0,1,20,14,0,1,8,7,614,590,373,493,2,5,23,15,0,1,28,18,19,15,9,1,0,0,0,0,0,0,0,2,19,17,9,2,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,1,9,2285,1157,1128,718,638,423,473,3,7,4,6,0,0,9,4,727,641,425,476,7,8,7,7,0,1,1144,1117,709,630,422,471,1,6,4,6,0,0,8,4,717,633,424,474,5,7,6,7,0,1,13,11,9,8,1,2,2,1,0,0,0,0,1,0,10,8,1,2,2,1,1,0,0,0 -050,01,017,Alabama,Chambers County,1,10,2402,1168,1234,705,728,449,485,2,2,4,6,0,0,8,13,711,740,452,487,7,14,6,8,1,1,1158,1226,695,722,449,484,2,2,4,6,0,0,8,12,701,734,452,485,7,13,6,7,1,0,10,8,10,6,0,1,0,0,0,0,0,0,0,1,10,6,0,2,0,1,0,1,0,1 -050,01,017,Alabama,Chambers County,1,11,2647,1262,1385,750,807,500,566,3,2,1,4,0,1,8,5,755,812,503,566,9,6,2,5,1,1,1241,1376,736,800,494,564,3,2,1,4,0,1,7,5,741,805,496,564,9,6,2,5,0,1,21,9,14,7,6,2,0,0,0,0,0,0,1,0,14,7,7,2,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,1,12,2467,1165,1302,745,783,414,502,2,8,1,3,0,0,3,6,748,789,414,502,4,13,2,4,0,0,1155,1298,740,780,409,501,2,8,1,3,0,0,3,6,743,786,409,501,4,13,2,4,0,0,10,4,5,3,5,1,0,0,0,0,0,0,0,0,5,3,5,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,1,13,2302,1077,1225,759,806,306,411,3,1,3,1,0,0,6,6,764,810,307,414,8,6,4,2,1,0,1070,1219,752,801,306,410,3,1,3,1,0,0,6,6,757,805,307,413,8,6,4,2,1,0,7,6,7,5,0,1,0,0,0,0,0,0,0,0,7,5,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,1,14,1823,830,993,602,664,217,315,4,1,0,6,0,0,7,7,608,670,218,317,11,7,0,6,0,0,823,985,596,659,216,313,4,0,0,6,0,0,7,7,602,665,217,315,11,6,0,6,0,0,7,8,6,5,1,2,0,1,0,0,0,0,0,0,6,5,1,2,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,1,15,1285,626,659,451,442,166,210,2,2,5,2,0,0,2,3,453,444,166,212,4,3,5,3,0,0,623,654,448,440,166,209,2,2,5,2,0,0,2,1,450,440,166,210,4,2,5,3,0,0,3,5,3,2,0,1,0,0,0,0,0,0,0,2,3,4,0,2,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,1,16,1085,419,666,320,466,97,192,0,0,0,4,0,0,2,4,322,469,97,193,2,4,0,4,0,0,416,663,318,463,96,192,0,0,0,4,0,0,2,4,320,466,96,193,2,4,0,4,0,0,3,3,2,3,1,0,0,0,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,1,17,742,247,495,195,346,50,147,0,0,1,1,0,0,1,1,196,347,50,148,1,0,1,1,0,0,246,494,194,346,50,147,0,0,1,1,0,0,1,0,195,346,50,147,1,0,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,1,18,771,189,582,157,428,32,152,0,1,0,1,0,0,0,0,157,428,32,152,0,1,0,1,0,0,188,580,156,426,32,152,0,1,0,1,0,0,0,0,156,426,32,152,0,1,0,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,2,0,34154,16331,17823,9911,10331,6122,7197,33,37,92,90,10,5,163,163,10061,10481,6209,7306,91,97,122,102,14,8,16006,17625,9691,10180,6052,7164,24,33,77,90,3,4,159,154,9838,10324,6138,7267,81,87,105,101,6,6,325,198,220,151,70,33,9,4,15,0,7,1,4,9,223,157,71,39,10,10,17,1,8,2 -050,01,017,Alabama,Chambers County,2,1,1948,979,969,496,501,451,431,1,0,7,2,0,0,24,35,517,533,467,462,5,6,14,3,0,0,945,944,471,479,443,430,0,0,7,2,0,0,24,33,492,510,459,460,4,4,14,3,0,0,34,25,25,22,8,1,1,0,0,0,0,0,0,2,25,23,8,2,1,2,0,0,0,0 -050,01,017,Alabama,Chambers County,2,2,2040,1077,963,577,481,470,446,1,2,1,7,2,0,26,27,602,507,490,471,5,5,4,7,3,0,1047,936,555,461,463,440,0,2,1,7,2,0,26,26,580,487,483,464,4,4,4,7,3,0,30,27,22,20,7,6,1,0,0,0,0,0,0,1,22,20,7,7,1,1,0,0,0,0 -050,01,017,Alabama,Chambers County,2,3,2231,1133,1098,599,585,504,494,1,2,7,4,1,1,21,12,619,597,522,504,3,3,9,5,1,1,1109,1088,582,576,497,493,1,2,7,4,1,1,21,12,602,588,515,503,3,3,9,5,1,1,24,10,17,9,7,1,0,0,0,0,0,0,0,0,17,9,7,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,2,4,2294,1165,1129,623,539,515,565,2,2,4,4,1,0,20,19,643,556,529,582,7,6,5,6,1,1,1143,1115,606,530,514,560,2,2,1,4,0,0,20,19,626,547,528,577,7,6,2,6,0,1,22,14,17,9,1,5,0,0,3,0,1,0,0,0,17,9,1,5,0,0,3,0,1,0 -050,01,017,Alabama,Chambers County,2,5,1924,1002,922,556,484,424,416,3,4,10,7,4,1,5,10,561,494,425,424,5,6,12,7,4,1,960,906,534,472,417,415,2,2,2,7,0,0,5,10,539,482,418,423,4,4,4,7,0,0,42,16,22,12,7,1,1,2,8,0,4,1,0,0,22,12,7,1,1,2,8,0,4,1 -050,01,017,Alabama,Chambers County,2,6,1883,899,984,508,515,366,460,3,0,13,7,2,0,7,2,515,517,369,461,5,1,15,7,2,0,856,967,486,502,354,456,0,0,10,7,0,0,6,2,492,504,357,457,1,1,12,7,0,0,43,17,22,13,12,4,3,0,3,0,2,0,1,0,23,13,12,4,4,0,3,0,2,0 -050,01,017,Alabama,Chambers County,2,7,1905,918,987,536,530,362,442,3,3,11,11,0,1,6,0,542,530,363,442,6,3,13,11,0,1,890,971,516,519,357,438,2,2,10,11,0,1,5,0,521,519,358,438,5,2,11,11,0,1,28,16,20,11,5,4,1,1,1,0,0,0,1,0,21,11,5,4,1,1,2,0,0,0 -050,01,017,Alabama,Chambers County,2,8,2143,1029,1114,623,598,378,491,0,1,20,14,0,1,8,9,630,607,382,494,2,6,23,15,0,1,1001,1096,604,583,369,490,0,1,20,14,0,1,8,7,611,590,373,492,2,5,23,15,0,1,28,18,19,15,9,1,0,0,0,0,0,0,0,2,19,17,9,2,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,2,9,2280,1157,1123,718,635,423,472,3,6,4,6,0,0,9,4,727,638,425,475,7,7,7,7,0,1,1144,1114,709,628,422,470,1,6,4,6,0,0,8,4,717,631,424,473,5,7,6,7,0,1,13,9,9,7,1,2,2,0,0,0,0,0,1,0,10,7,1,2,2,0,1,0,0,0 -050,01,017,Alabama,Chambers County,2,10,2402,1167,1235,704,729,449,485,2,2,4,6,0,0,8,13,710,741,452,487,7,14,6,8,1,1,1157,1227,694,723,449,484,2,2,4,6,0,0,8,12,700,735,452,485,7,13,6,7,1,0,10,8,10,6,0,1,0,0,0,0,0,0,0,1,10,6,0,2,0,1,0,1,0,1 -050,01,017,Alabama,Chambers County,2,11,2639,1258,1381,746,803,500,566,3,2,1,4,0,1,8,5,751,808,503,566,9,6,2,5,1,1,1238,1372,733,796,494,564,3,2,1,4,0,1,7,5,738,801,496,564,9,6,2,5,0,1,20,9,13,7,6,2,0,0,0,0,0,0,1,0,13,7,7,2,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,2,12,2465,1164,1301,745,782,413,502,2,8,1,3,0,0,3,6,748,788,413,502,4,13,2,4,0,0,1154,1297,740,779,408,501,2,8,1,3,0,0,3,6,743,785,408,501,4,13,2,4,0,0,10,4,5,3,5,1,0,0,0,0,0,0,0,0,5,3,5,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,2,13,2297,1074,1223,757,804,305,411,3,1,3,1,0,0,6,6,762,808,306,414,8,6,4,2,1,0,1068,1217,751,799,305,410,3,1,3,1,0,0,6,6,756,803,306,413,8,6,4,2,1,0,6,6,6,5,0,1,0,0,0,0,0,0,0,0,6,5,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,2,14,1823,830,993,602,664,217,315,4,1,0,6,0,0,7,7,608,670,218,317,11,7,0,6,0,0,823,985,596,659,216,313,4,0,0,6,0,0,7,7,602,665,217,315,11,6,0,6,0,0,7,8,6,5,1,2,0,1,0,0,0,0,0,0,6,5,1,2,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,2,15,1283,625,658,450,441,166,210,2,2,5,2,0,0,2,3,452,443,166,212,4,3,5,3,0,0,622,653,447,439,166,209,2,2,5,2,0,0,2,1,449,439,166,210,4,2,5,3,0,0,3,5,3,2,0,1,0,0,0,0,0,0,0,2,3,4,0,2,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,2,16,1084,418,666,319,466,97,192,0,0,0,4,0,0,2,4,321,469,97,193,2,4,0,4,0,0,415,663,317,463,96,192,0,0,0,4,0,0,2,4,319,466,96,193,2,4,0,4,0,0,3,3,2,3,1,0,0,0,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,2,17,742,247,495,195,346,50,147,0,0,1,1,0,0,1,1,196,347,50,148,1,0,1,1,0,0,246,494,194,346,50,147,0,0,1,1,0,0,1,0,195,346,50,147,1,0,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,2,18,771,189,582,157,428,32,152,0,1,0,1,0,0,0,0,157,428,32,152,0,1,0,1,0,0,188,580,156,426,32,152,0,1,0,1,0,0,0,0,156,426,32,152,0,1,0,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,3,0,34105,16306,17799,9899,10323,6098,7171,33,40,101,97,10,5,165,163,10047,10474,6187,7264,92,100,129,113,20,14,15974,17593,9670,10164,6029,7139,24,37,87,97,3,4,161,152,9815,10309,6116,7225,82,90,114,111,12,12,332,206,229,159,69,32,9,3,14,0,7,1,4,11,232,165,71,39,10,10,15,2,8,2 -050,01,017,Alabama,Chambers County,3,1,1934,971,963,494,500,445,424,1,0,6,3,0,0,25,36,516,535,467,454,5,5,9,4,0,1,938,935,470,476,437,423,0,0,6,3,0,0,25,33,492,509,459,451,4,3,9,4,0,1,33,28,24,24,8,1,1,0,0,0,0,0,0,3,24,26,8,3,1,2,0,0,0,0 -050,01,017,Alabama,Chambers County,3,2,2028,1067,961,569,483,466,442,1,2,3,7,2,0,26,27,595,510,488,463,4,7,4,7,3,2,1036,934,546,463,459,436,0,2,3,7,2,0,26,26,572,489,481,456,3,6,4,7,3,2,31,27,23,20,7,6,1,0,0,0,0,0,0,1,23,21,7,7,1,1,0,0,0,0 -050,01,017,Alabama,Chambers County,3,3,2207,1124,1083,587,578,507,484,1,3,7,5,1,1,21,12,604,590,524,492,4,4,9,6,4,3,1100,1073,570,569,500,483,1,3,7,5,1,1,21,12,587,581,517,491,4,4,9,6,4,3,24,10,17,9,7,1,0,0,0,0,0,0,0,0,17,9,7,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,3,4,2277,1161,1116,622,536,512,558,2,2,3,3,1,0,21,17,642,552,524,569,8,6,8,5,1,2,1138,1102,603,526,511,554,2,2,1,3,0,0,21,17,623,542,523,565,8,6,6,5,0,2,23,14,19,10,1,4,0,0,2,0,1,0,0,0,19,10,1,4,0,0,2,0,1,0 -050,01,017,Alabama,Chambers County,3,5,1936,1011,925,562,489,425,416,3,3,11,6,4,1,6,10,568,498,425,422,6,6,12,9,6,1,967,909,538,477,418,414,2,2,3,6,0,0,6,10,544,486,418,420,5,5,4,9,2,0,44,16,24,12,7,2,1,1,8,0,4,1,0,0,24,12,7,2,1,1,8,0,4,1 -050,01,017,Alabama,Chambers County,3,6,1887,905,982,518,516,361,457,3,0,14,7,2,0,7,2,522,518,365,457,4,1,18,8,3,0,863,965,496,502,350,454,0,0,11,7,0,0,6,2,499,504,353,454,1,1,15,8,1,0,42,17,22,14,11,3,3,0,3,0,2,0,1,0,23,14,12,3,3,0,3,0,2,0 -050,01,017,Alabama,Chambers County,3,7,1888,906,982,522,522,363,441,3,3,14,15,0,1,4,0,525,522,364,441,7,3,14,15,0,1,879,966,503,511,358,437,2,2,13,15,0,1,3,0,505,511,359,437,5,2,13,15,0,1,27,16,19,11,5,4,1,1,1,0,0,0,1,0,20,11,5,4,2,1,1,0,0,0 -050,01,017,Alabama,Chambers County,3,8,2133,1026,1107,622,592,376,488,0,1,20,15,0,1,8,10,630,600,378,491,3,7,23,17,0,2,998,1088,602,576,368,487,0,1,20,15,0,1,8,8,610,583,370,490,3,5,23,17,0,1,28,19,20,16,8,1,0,0,0,0,0,0,0,2,20,17,8,1,0,2,0,0,0,1 -050,01,017,Alabama,Chambers County,3,9,2274,1149,1125,721,632,410,473,3,7,6,8,0,0,9,5,730,637,412,474,7,11,9,8,0,0,1135,1115,711,624,409,471,1,7,6,8,0,0,8,5,719,629,411,472,5,11,8,8,0,0,14,10,10,8,1,2,2,0,0,0,0,0,1,0,11,8,1,2,2,0,1,0,0,0 -050,01,017,Alabama,Chambers County,3,10,2415,1166,1249,701,738,450,489,2,3,5,6,0,0,8,13,708,749,451,495,10,11,5,7,0,0,1154,1241,689,732,450,488,2,3,5,6,0,0,8,12,696,743,451,493,10,10,5,7,0,0,12,8,12,6,0,1,0,0,0,0,0,0,0,1,12,6,0,2,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,3,11,2626,1251,1375,741,805,496,559,3,2,2,3,0,1,9,5,748,809,498,561,8,4,3,5,3,1,1230,1365,728,797,489,557,3,2,2,3,0,1,8,5,735,801,490,559,8,4,3,5,2,1,21,10,13,8,7,2,0,0,0,0,0,0,1,0,13,8,8,2,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,3,12,2478,1169,1309,750,785,412,505,2,9,1,4,0,0,4,6,754,791,413,505,5,13,2,5,0,1,1159,1305,745,782,407,504,2,9,1,4,0,0,4,6,749,788,408,504,5,13,2,5,0,1,10,4,5,3,5,1,0,0,0,0,0,0,0,0,5,3,5,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,3,13,2289,1077,1212,758,794,308,411,3,1,3,1,0,0,5,5,763,798,308,412,6,6,5,1,0,0,1071,1206,752,789,308,410,3,1,3,1,0,0,5,5,757,793,308,411,6,6,5,1,0,0,6,6,6,5,0,1,0,0,0,0,0,0,0,0,6,5,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,3,14,1831,829,1002,600,669,218,319,4,1,0,6,0,0,7,7,607,676,219,319,10,8,0,6,0,0,821,994,593,664,217,317,4,0,0,6,0,0,7,7,600,671,218,317,10,7,0,6,0,0,8,8,7,5,1,2,0,1,0,0,0,0,0,0,7,5,1,2,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,3,15,1299,630,669,455,448,166,214,2,2,5,2,0,0,2,3,457,450,166,216,3,3,6,3,0,0,626,664,451,446,166,213,2,2,5,2,0,0,2,1,453,447,166,213,3,3,6,2,0,0,4,5,4,2,0,1,0,0,0,0,0,0,0,2,4,3,0,3,0,0,0,1,0,0 -050,01,017,Alabama,Chambers County,3,16,1082,421,661,320,465,99,188,0,0,0,4,0,0,2,4,321,467,100,189,1,4,1,5,0,0,418,656,318,461,98,188,0,0,0,4,0,0,2,3,319,463,99,189,1,3,1,4,0,0,3,5,2,4,1,0,0,0,0,0,0,0,0,1,2,4,1,0,0,1,0,1,0,0 -050,01,017,Alabama,Chambers County,3,17,743,250,493,197,345,51,146,0,0,1,1,0,0,1,1,197,346,52,147,1,0,1,1,0,0,249,492,196,345,51,146,0,0,1,1,0,0,1,0,196,345,52,146,1,0,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,3,18,778,193,585,160,426,33,157,0,1,0,1,0,0,0,0,160,426,33,157,0,1,0,1,0,0,192,583,159,424,33,157,0,1,0,1,0,0,0,0,159,424,33,157,0,1,0,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,0,34016,16210,17806,9837,10358,6053,7120,35,37,110,105,12,5,163,181,9987,10525,6148,7227,102,99,127,129,15,12,15872,17581,9610,10186,5980,7086,25,34,95,105,5,4,157,166,9755,10341,6071,7184,91,92,110,125,7,9,338,225,227,172,73,34,10,3,15,0,7,1,6,15,232,184,77,43,11,7,17,4,8,3 -050,01,017,Alabama,Chambers County,4,1,1944,969,975,503,517,434,414,1,0,9,3,0,0,22,41,525,555,452,450,3,2,11,7,0,2,934,946,479,492,424,412,0,0,9,3,0,0,22,39,501,528,442,446,2,2,11,7,0,2,35,29,24,25,10,2,1,0,0,0,0,0,0,2,24,27,10,4,1,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,2,1962,1015,947,550,480,437,433,2,0,3,6,1,0,22,28,570,507,455,456,6,3,5,10,1,0,984,923,529,460,429,430,0,0,3,6,1,0,22,27,549,486,447,452,4,3,5,10,1,0,31,24,21,20,8,3,2,0,0,0,0,0,0,1,21,21,8,4,2,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,3,2175,1111,1064,568,570,516,464,1,3,4,7,2,1,20,19,586,589,533,477,6,8,7,8,2,1,1082,1049,547,559,509,462,1,3,4,7,1,1,20,17,565,576,526,473,6,8,7,8,1,1,29,15,21,11,7,2,0,0,0,0,1,0,0,2,21,13,7,4,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,4,4,2204,1119,1085,607,524,482,541,3,3,4,2,2,0,21,15,625,538,498,550,9,8,6,4,2,0,1100,1069,592,513,481,538,3,3,4,2,1,0,19,13,608,525,496,546,9,8,5,3,1,0,19,16,15,11,1,3,0,0,0,0,1,0,2,2,17,13,2,4,0,0,1,1,1,0 -050,01,017,Alabama,Chambers County,4,5,2004,1022,982,565,510,433,444,3,3,10,11,2,1,9,13,574,521,436,453,8,6,12,13,2,2,990,964,549,497,427,442,2,2,3,11,0,0,9,12,558,507,430,450,7,5,5,13,0,1,32,18,16,13,6,2,1,1,7,0,2,1,0,1,16,14,6,3,1,1,7,0,2,1 -050,01,017,Alabama,Chambers County,4,6,1898,899,999,517,531,354,461,2,0,14,5,4,0,8,2,524,533,359,462,5,1,14,5,5,0,856,981,495,516,344,458,0,0,9,5,1,0,7,2,501,518,348,459,3,1,9,5,2,0,43,18,22,15,10,3,2,0,5,0,3,0,1,0,23,15,11,3,2,0,5,0,3,0 -050,01,017,Alabama,Chambers County,4,7,1881,886,995,494,523,369,442,4,3,17,24,0,1,2,2,496,525,370,443,5,4,17,24,0,1,854,973,474,506,362,438,2,2,14,24,0,1,2,2,476,508,363,439,3,3,14,24,0,1,32,22,20,17,7,4,2,1,3,0,0,0,0,0,20,17,7,4,2,1,3,0,0,0 -050,01,017,Alabama,Chambers County,4,8,2080,1018,1062,608,566,384,476,0,0,17,10,0,1,9,9,616,573,388,480,5,4,18,12,1,2,985,1045,586,553,374,474,0,0,17,10,0,1,8,7,594,559,377,477,5,3,17,12,0,1,33,17,22,13,10,2,0,0,0,0,0,0,1,2,22,14,11,3,0,1,1,0,1,1 -050,01,017,Alabama,Chambers County,4,9,2235,1110,1125,713,636,375,469,3,4,10,9,0,0,9,7,721,642,379,471,8,10,11,9,0,0,1093,1114,700,627,374,467,1,4,10,9,0,0,8,7,707,633,377,469,6,10,11,9,0,0,17,11,13,9,1,2,2,0,0,0,0,0,1,0,14,9,2,2,2,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,10,2378,1143,1235,682,722,446,491,2,4,5,5,1,0,7,13,689,735,447,495,7,14,6,6,1,0,1133,1226,672,716,446,489,2,4,5,5,1,0,7,12,679,728,447,493,7,13,6,6,1,0,10,9,10,6,0,2,0,0,0,0,0,0,0,1,10,7,0,2,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,4,11,2598,1260,1338,747,813,491,516,3,2,7,3,0,0,12,4,759,817,493,517,11,5,8,3,1,0,1239,1325,733,803,485,513,3,2,7,3,0,0,11,4,744,807,487,514,10,5,8,3,1,0,21,13,14,10,6,3,0,0,0,0,0,0,1,0,15,10,6,3,1,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,12,2513,1173,1340,754,803,414,515,1,9,1,5,0,1,3,7,757,810,415,515,3,13,1,8,0,1,1160,1336,747,800,408,514,1,9,1,5,0,1,3,7,750,807,409,514,3,13,1,8,0,1,13,4,7,3,6,1,0,0,0,0,0,0,0,0,7,3,6,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,13,2306,1118,1188,765,766,342,414,3,2,3,2,0,0,5,4,769,770,343,414,7,6,4,2,0,0,1113,1184,760,762,342,414,3,2,3,2,0,0,5,4,764,766,343,414,7,6,4,2,0,0,5,4,5,4,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,14,1887,845,1042,611,706,220,325,5,1,0,3,0,0,9,7,619,713,222,326,13,7,0,3,0,0,835,1031,602,700,219,321,5,0,0,3,0,0,9,7,610,707,221,322,13,6,0,3,0,0,10,11,9,6,1,4,0,1,0,0,0,0,0,0,9,6,1,4,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,4,15,1347,638,709,466,479,165,223,1,2,4,3,0,0,2,2,468,481,165,223,2,3,5,3,0,1,634,706,462,477,165,222,1,2,4,3,0,0,2,2,464,479,165,222,2,3,5,3,0,1,4,3,4,2,0,1,0,0,0,0,0,0,0,0,4,2,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,4,16,1091,437,654,331,455,103,189,1,0,1,5,0,0,1,5,331,456,104,192,2,3,1,8,0,1,435,646,329,450,103,189,1,0,1,5,0,0,1,2,329,450,104,191,2,1,1,6,0,1,2,8,2,5,0,0,0,0,0,0,0,0,0,3,2,6,0,1,0,2,0,2,0,0 -050,01,017,Alabama,Chambers County,4,17,733,247,486,193,349,52,133,0,0,0,1,0,0,2,3,195,352,53,133,2,1,0,3,0,1,246,485,192,349,52,133,0,0,0,1,0,0,2,2,194,351,53,133,2,1,0,2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,1 -050,01,017,Alabama,Chambers County,4,18,780,200,580,163,408,36,170,0,1,1,1,0,0,0,0,163,408,36,170,0,1,1,1,0,0,199,578,162,406,36,170,0,1,1,1,0,0,0,0,162,406,36,170,0,1,1,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,0,34088,16262,17826,9763,10299,6128,7180,45,41,134,109,15,5,177,192,9926,10477,6231,7292,111,107,154,132,23,17,15887,17587,9512,10114,6051,7148,31,38,117,108,7,4,169,175,9668,10278,6148,7254,94,98,137,126,15,13,375,239,251,185,77,32,14,3,17,1,8,1,8,17,258,199,83,38,17,9,17,6,8,4 -050,01,017,Alabama,Chambers County,5,1,1996,995,1001,508,520,436,438,8,0,15,6,0,0,28,37,534,555,460,468,10,4,18,10,3,2,960,967,485,489,430,437,3,0,14,6,0,0,28,35,511,523,454,466,5,3,17,10,3,1,35,34,23,31,6,1,5,0,1,0,0,0,0,2,23,32,6,2,5,1,1,0,0,1 -050,01,017,Alabama,Chambers County,5,2,1924,989,935,510,474,446,421,2,1,3,6,1,0,27,33,533,505,468,446,8,6,4,9,3,2,950,913,484,456,436,419,0,1,3,5,1,0,26,32,506,486,457,444,6,6,4,7,3,2,39,22,26,18,10,2,2,0,0,1,0,0,1,1,27,19,11,2,2,0,0,2,0,0 -050,01,017,Alabama,Chambers County,5,3,2114,1095,1019,569,544,508,445,1,3,3,7,1,0,13,20,582,564,520,459,4,7,3,8,1,1,1069,997,550,528,501,443,1,3,3,7,1,0,13,16,563,544,513,455,4,5,3,8,1,1,26,22,19,16,7,2,0,0,0,0,0,0,0,4,19,20,7,4,0,2,0,0,0,0 -050,01,017,Alabama,Chambers County,5,4,2151,1095,1056,576,518,483,516,1,4,7,4,1,1,27,13,603,530,501,527,6,7,10,4,2,1,1079,1042,564,508,481,513,1,4,7,4,1,1,25,12,589,519,497,524,6,6,10,4,2,1,16,14,12,10,2,3,0,0,0,0,0,0,2,1,14,11,4,3,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,5,5,2145,1085,1060,597,531,460,496,4,4,13,11,3,0,8,18,604,549,464,507,8,8,14,15,3,1,1052,1037,578,512,456,495,3,3,6,11,1,0,8,16,585,528,460,505,7,7,7,14,1,1,33,23,19,19,4,1,1,1,7,0,2,0,0,2,19,21,4,2,1,1,7,1,2,0 -050,01,017,Alabama,Chambers County,5,6,1933,926,1007,533,546,365,442,1,0,11,13,8,1,8,5,540,549,369,445,5,2,13,14,8,2,872,987,504,531,354,438,0,0,6,13,2,0,6,5,509,534,357,441,3,2,8,14,2,1,54,20,29,15,11,4,1,0,5,0,6,1,2,0,31,15,12,4,2,0,5,0,6,1 -050,01,017,Alabama,Chambers County,5,7,1921,920,1001,503,509,382,469,4,3,27,17,0,1,4,2,507,511,385,470,5,4,27,18,0,2,884,980,484,492,371,466,1,2,24,17,0,1,4,2,488,494,374,467,2,3,24,18,0,2,36,21,19,17,11,3,3,1,3,0,0,0,0,0,19,17,11,3,3,1,3,0,0,0 -050,01,017,Alabama,Chambers County,5,8,1987,963,1024,563,547,374,461,2,2,16,7,0,0,8,7,570,554,377,463,8,5,16,9,0,0,921,1008,533,537,363,457,2,2,16,7,0,0,7,5,540,542,365,458,7,4,16,9,0,0,42,16,30,10,11,4,0,0,0,0,0,0,1,2,30,12,12,5,1,1,0,0,0,0 -050,01,017,Alabama,Chambers County,5,9,2245,1105,1140,720,642,363,481,2,3,10,6,0,1,10,7,729,647,366,482,8,8,12,8,0,2,1082,1128,701,631,362,480,1,3,9,6,0,1,9,7,709,636,365,481,6,8,11,8,0,2,23,12,19,11,1,1,1,0,1,0,0,0,1,0,20,11,1,1,2,0,1,0,0,0 -050,01,017,Alabama,Chambers County,5,10,2300,1102,1198,643,683,442,490,3,4,6,8,1,0,7,13,650,694,444,493,7,15,7,8,1,2,1089,1189,632,677,441,488,2,4,6,8,1,0,7,12,639,688,443,491,6,14,7,8,1,1,13,9,11,6,1,2,1,0,0,0,0,0,0,1,11,6,1,2,1,1,0,0,0,1 -050,01,017,Alabama,Chambers County,5,11,2619,1276,1343,747,821,502,509,2,3,12,3,0,0,13,7,758,828,505,512,11,7,15,3,0,0,1257,1331,733,811,498,507,2,3,12,3,0,0,12,7,743,818,500,510,11,7,15,3,0,0,19,12,14,10,4,2,0,0,0,0,0,0,1,0,15,10,5,2,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,12,2524,1178,1346,737,799,433,526,3,6,1,7,0,1,4,7,740,806,434,529,6,11,2,7,0,1,1165,1342,731,797,426,524,3,6,1,7,0,1,4,7,734,804,427,527,6,11,2,7,0,1,13,4,6,2,7,2,0,0,0,0,0,0,0,0,6,2,7,2,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,13,2236,1077,1159,723,723,344,428,4,4,3,1,0,0,3,3,725,725,345,429,7,6,3,2,0,0,1072,1153,719,717,343,428,4,4,3,1,0,0,3,3,721,719,344,429,7,6,3,2,0,0,5,6,4,6,1,0,0,0,0,0,0,0,0,0,4,6,1,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,14,2043,929,1114,679,781,234,322,5,1,1,2,0,0,10,8,689,789,236,323,11,7,3,3,0,0,916,1103,667,775,233,318,5,0,1,2,0,0,10,8,677,783,235,319,11,6,3,3,0,0,13,11,12,6,1,4,0,1,0,0,0,0,0,0,12,6,1,4,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,5,15,1362,626,736,464,496,159,231,1,2,0,4,0,0,2,3,466,499,160,231,3,5,0,4,0,0,622,734,460,495,159,230,1,2,0,4,0,0,2,3,462,498,160,230,3,5,0,4,0,0,4,2,4,1,0,1,0,0,0,0,0,0,0,0,4,1,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,16,1091,464,627,345,421,110,197,2,0,5,4,0,0,2,5,347,424,110,198,3,2,5,7,1,1,463,620,344,417,110,197,2,0,5,4,0,0,2,2,346,418,110,198,3,2,5,4,1,0,1,7,1,4,0,0,0,0,0,0,0,0,0,3,1,6,0,0,0,0,0,3,0,1 -050,01,017,Alabama,Chambers County,5,17,714,242,472,188,339,51,128,0,0,0,2,0,0,3,3,191,342,51,129,1,2,1,2,1,0,241,471,187,338,51,128,0,0,0,2,0,0,3,3,190,341,51,129,1,2,1,2,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,5,18,783,195,588,158,405,36,180,0,1,1,1,0,0,0,1,158,406,36,181,0,1,1,1,0,0,193,585,156,403,36,180,0,1,1,1,0,0,0,0,156,403,36,180,0,1,1,1,0,0,2,3,2,2,0,0,0,0,0,0,0,0,0,1,2,3,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,6,0,34125,16347,17778,9730,10241,6201,7163,40,44,180,128,14,5,182,197,9899,10426,6300,7284,116,109,201,153,21,16,15956,17498,9458,10021,6129,7126,27,40,163,127,6,4,173,180,9619,10193,6224,7236,99,100,181,146,12,11,391,280,272,220,72,37,13,4,17,1,8,1,9,17,280,233,76,48,17,9,20,7,9,5 -050,01,017,Alabama,Chambers County,6,1,2016,983,1033,520,562,414,418,5,1,17,8,0,0,27,44,546,605,436,454,8,8,20,9,1,3,942,976,490,511,410,415,1,1,16,8,0,0,25,41,514,552,430,449,4,6,19,8,1,2,41,57,30,51,4,3,4,0,1,0,0,0,2,3,32,53,6,5,4,2,1,1,0,1 -050,01,017,Alabama,Chambers County,6,2,1928,997,931,505,472,452,423,4,1,7,4,1,0,28,31,533,502,476,449,8,4,7,7,1,0,950,907,471,450,441,422,2,1,7,4,1,0,28,30,499,479,465,447,6,4,7,7,1,0,47,24,34,22,11,1,2,0,0,0,0,0,0,1,34,23,11,2,2,0,0,0,0,0 -050,01,017,Alabama,Chambers County,6,3,2058,1112,946,585,497,501,417,2,3,5,7,1,0,18,22,602,519,514,432,5,7,7,11,2,0,1084,924,566,480,493,414,1,3,5,6,1,0,18,21,583,501,506,428,4,7,7,10,2,0,28,22,19,17,8,3,1,0,0,1,0,0,0,1,19,18,8,4,1,0,0,1,0,0 -050,01,017,Alabama,Chambers County,6,4,2100,1053,1047,547,537,475,486,1,4,5,5,2,1,23,14,568,550,491,496,7,6,7,8,4,1,1033,1030,532,527,472,482,1,4,5,5,1,1,22,11,553,537,488,491,6,5,6,7,2,1,20,17,15,10,3,4,0,0,0,0,1,0,1,3,15,13,3,5,1,1,1,1,2,0 -050,01,017,Alabama,Chambers County,6,5,2198,1095,1103,596,534,466,535,3,7,15,7,2,0,13,20,608,552,473,548,11,11,17,11,3,3,1067,1081,581,517,462,534,2,5,9,7,1,0,12,18,592,533,469,546,9,9,10,10,2,3,28,22,15,17,4,1,1,2,6,0,1,0,1,2,16,19,4,2,2,2,7,1,1,0 -050,01,017,Alabama,Chambers County,6,6,1951,965,986,538,523,387,441,2,0,25,15,4,1,9,6,547,528,391,445,5,2,27,17,4,2,918,967,514,508,378,438,1,0,19,15,0,0,6,6,520,513,381,442,3,2,20,17,0,1,47,19,24,15,9,3,1,0,6,0,4,1,3,0,27,15,10,3,2,0,7,0,4,1 -050,01,017,Alabama,Chambers County,6,7,1973,940,1033,516,540,377,465,2,2,38,23,3,1,4,2,519,541,380,466,5,4,38,23,3,1,897,1006,490,517,367,462,0,1,35,23,1,1,4,2,493,518,370,463,3,3,35,23,1,1,43,27,26,23,10,3,2,1,3,0,2,0,0,0,26,23,10,3,2,1,3,0,2,0 -050,01,017,Alabama,Chambers County,6,8,1952,955,997,540,534,389,439,2,2,15,18,0,0,9,4,547,537,392,442,7,4,17,19,1,1,919,973,512,517,382,434,2,2,15,18,0,0,8,2,518,519,385,435,6,3,17,18,1,0,36,24,28,17,7,5,0,0,0,0,0,0,1,2,29,18,7,7,1,1,0,1,0,1 -050,01,017,Alabama,Chambers County,6,9,2188,1070,1118,687,627,360,474,1,3,12,4,0,1,10,9,697,636,361,475,7,10,16,5,0,2,1043,1106,662,615,359,474,1,3,11,4,0,1,10,9,672,624,360,475,7,10,15,5,0,2,27,12,25,12,1,0,0,0,1,0,0,0,0,0,25,12,1,0,0,0,1,0,0,0 -050,01,017,Alabama,Chambers County,6,10,2280,1109,1171,648,653,442,500,3,5,9,7,0,0,7,6,654,659,444,502,8,8,10,8,0,0,1093,1162,637,647,440,497,1,5,9,7,0,0,6,6,642,653,441,499,6,8,10,8,0,0,16,9,11,6,2,3,2,0,0,0,0,0,1,0,12,6,3,3,2,0,0,0,0,0 -050,01,017,Alabama,Chambers County,6,11,2589,1282,1307,742,779,509,513,1,2,17,6,1,0,12,7,752,786,512,515,12,8,17,6,1,0,1269,1296,731,771,507,511,1,2,17,6,1,0,12,6,741,777,510,513,12,7,17,6,1,0,13,11,11,8,2,2,0,0,0,0,0,0,0,1,11,9,2,2,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,6,12,2533,1192,1341,725,795,454,524,4,5,4,9,0,1,5,7,730,802,454,526,9,10,4,9,0,1,1173,1336,715,792,445,522,4,5,4,9,0,1,5,7,720,799,445,524,9,10,4,9,0,1,19,5,10,3,9,2,0,0,0,0,0,0,0,0,10,3,9,2,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,6,13,2276,1081,1195,696,740,377,446,2,5,3,2,0,0,3,2,698,742,377,446,3,7,5,2,1,0,1075,1188,691,735,376,444,2,5,3,2,0,0,3,2,693,737,376,444,3,7,5,2,1,0,6,7,5,5,1,2,0,0,0,0,0,0,0,0,5,5,1,2,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,6,14,2046,937,1109,697,770,228,329,5,1,2,1,0,0,5,8,702,777,228,330,10,8,2,2,0,0,927,1101,688,765,227,327,5,0,2,1,0,0,5,8,693,772,227,328,10,7,2,2,0,0,10,8,9,5,1,2,0,1,0,0,0,0,0,0,9,5,1,2,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,6,15,1460,655,805,484,542,166,250,1,2,0,5,0,0,4,6,487,548,167,251,4,6,1,7,0,0,650,800,479,540,166,247,1,2,0,5,0,0,4,6,482,546,167,248,4,6,1,7,0,0,5,5,5,2,0,3,0,0,0,0,0,0,0,0,5,2,0,3,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,6,16,1064,476,588,345,388,122,194,2,0,5,3,0,0,2,3,347,389,122,196,4,0,5,5,0,2,475,582,344,385,122,194,2,0,5,3,0,0,2,0,346,385,122,194,4,0,5,3,0,0,1,6,1,3,0,0,0,0,0,0,0,0,0,3,1,4,0,2,0,0,0,2,0,2 -050,01,017,Alabama,Chambers County,6,17,750,251,499,198,363,51,128,0,0,0,3,0,0,2,5,200,367,51,129,2,5,0,3,0,0,249,497,196,361,51,128,0,0,0,3,0,0,2,5,198,365,51,129,2,5,0,3,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,6,18,763,194,569,161,385,31,181,0,1,1,1,0,0,1,1,162,386,31,182,1,1,1,1,0,0,192,566,159,383,31,181,0,1,1,1,0,0,1,0,160,383,31,181,1,1,1,1,0,0,2,3,2,2,0,0,0,0,0,0,0,0,0,1,2,3,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,7,0,33964,16283,17681,9555,10112,6286,7179,42,42,212,152,13,6,175,190,9721,10282,6384,7305,100,98,238,176,19,15,15881,17408,9273,9892,6211,7144,30,39,195,151,5,5,167,177,9431,10051,6304,7263,84,90,220,172,10,11,402,273,282,220,75,35,12,3,17,1,8,1,8,13,290,231,80,42,16,8,18,4,9,4 -050,01,017,Alabama,Chambers County,7,1,2000,1005,995,527,518,411,424,4,1,30,12,0,0,33,40,559,554,439,460,7,6,33,14,0,1,958,943,489,468,408,423,1,1,30,12,0,0,30,39,518,503,434,459,3,5,33,14,0,1,47,52,38,50,3,1,3,0,0,0,0,0,3,1,41,51,5,1,4,1,0,0,0,0 -050,01,017,Alabama,Chambers County,7,2,1954,988,966,474,489,483,445,5,1,6,4,1,0,19,27,493,515,499,469,6,1,7,7,2,1,940,933,442,461,471,441,2,1,5,4,1,0,19,26,461,486,487,464,3,1,6,7,2,1,48,33,32,28,12,4,3,0,1,0,0,0,0,1,32,29,12,5,3,0,1,0,0,0 -050,01,017,Alabama,Chambers County,7,3,2018,1055,963,559,503,469,424,1,2,5,8,1,0,20,26,577,526,484,445,5,7,8,10,2,1,1030,938,540,482,463,422,1,2,5,7,1,0,20,25,558,504,478,442,5,7,8,9,2,1,25,25,19,21,6,2,0,0,0,1,0,0,0,1,19,22,6,3,0,0,0,1,0,0 -050,01,017,Alabama,Chambers County,7,4,2036,1064,972,551,510,482,438,1,3,6,5,2,1,22,15,572,525,498,449,4,7,10,5,2,1,1039,962,534,502,476,437,1,3,6,5,1,1,21,14,554,516,491,448,4,6,10,5,1,1,25,10,17,8,6,1,0,0,0,0,1,0,1,1,18,9,7,1,0,1,0,0,1,0 -050,01,017,Alabama,Chambers County,7,5,2194,1076,1118,570,524,474,567,3,5,13,6,2,0,14,16,582,540,479,577,10,9,16,9,3,2,1051,1099,553,509,472,565,3,5,9,6,1,0,13,14,564,523,477,574,9,8,12,8,2,0,25,19,17,15,2,2,0,0,4,0,1,0,1,2,18,17,2,3,1,1,4,1,1,2 -050,01,017,Alabama,Chambers County,7,6,2011,1003,1008,541,528,432,453,2,2,18,19,4,1,6,5,547,533,434,456,3,4,21,19,4,1,960,995,517,520,424,450,1,1,12,19,0,0,6,5,523,525,426,453,2,3,15,19,0,0,43,13,24,8,8,3,1,1,6,0,4,1,0,0,24,8,8,3,1,1,6,0,4,1 -050,01,017,Alabama,Chambers County,7,7,1911,920,991,496,503,371,452,3,1,40,30,3,0,7,5,503,506,373,455,6,3,42,32,3,0,875,963,474,479,359,449,0,0,35,30,1,0,6,5,480,482,361,452,2,2,37,32,1,0,45,28,22,24,12,3,3,1,5,0,2,0,1,0,23,24,12,3,4,1,5,0,2,0 -050,01,017,Alabama,Chambers County,7,8,1898,907,991,506,527,368,440,2,2,25,16,0,2,6,4,512,530,371,441,6,3,26,18,1,3,873,964,479,506,362,436,2,2,25,16,0,2,5,2,484,508,364,437,5,2,25,17,0,2,34,27,27,21,6,4,0,0,0,0,0,0,1,2,28,22,7,4,1,1,1,1,1,1 -050,01,017,Alabama,Chambers County,7,9,2126,1033,1093,630,616,383,457,1,2,13,9,0,1,6,8,635,623,385,459,5,7,14,10,0,2,1002,1084,603,608,380,456,1,2,12,9,0,1,6,8,608,615,382,458,5,7,13,10,0,2,31,9,27,8,3,1,0,0,1,0,0,0,0,0,27,8,3,1,0,0,1,0,0,0 -050,01,017,Alabama,Chambers County,7,10,2280,1114,1166,654,656,442,493,3,6,9,6,0,0,6,5,660,661,444,493,6,11,9,6,1,0,1092,1158,639,650,438,491,1,6,9,6,0,0,5,5,644,655,439,491,4,11,9,6,1,0,22,8,15,6,4,2,2,0,0,0,0,0,1,0,16,6,5,2,2,0,0,0,0,0 -050,01,017,Alabama,Chambers County,7,11,2552,1259,1293,734,770,484,495,1,4,30,14,0,0,10,10,744,777,485,499,7,10,32,17,1,0,1250,1283,726,763,483,493,1,4,30,14,0,0,10,9,736,769,484,497,7,9,32,17,1,0,9,10,8,7,1,2,0,0,0,0,0,0,0,1,8,8,1,2,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,7,12,2496,1176,1320,695,770,463,532,4,4,7,7,0,1,7,6,701,773,465,534,10,7,7,9,0,3,1156,1312,683,765,455,529,4,4,7,7,0,1,7,6,689,768,457,531,10,7,7,9,0,3,20,8,12,5,8,3,0,0,0,0,0,0,0,0,12,5,8,3,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,7,13,2291,1083,1208,686,753,387,443,4,4,2,3,0,0,4,5,690,758,389,444,6,6,2,5,0,0,1076,1202,682,749,384,441,4,4,2,3,0,0,4,5,686,754,386,442,6,6,2,5,0,0,7,6,4,4,3,2,0,0,0,0,0,0,0,0,4,4,3,2,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,7,14,2078,951,1127,690,766,251,351,4,2,2,1,0,0,4,7,693,773,252,352,7,8,3,2,0,0,943,1122,683,763,250,350,4,1,2,1,0,0,4,7,686,770,251,351,7,7,3,2,0,0,8,5,7,3,1,1,0,1,0,0,0,0,0,0,7,3,1,1,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,7,15,1540,694,846,507,572,178,264,2,2,0,5,0,0,7,3,514,574,178,267,8,4,1,5,0,0,687,837,500,567,178,260,2,2,0,5,0,0,7,3,507,569,178,263,8,4,1,5,0,0,7,9,7,5,0,4,0,0,0,0,0,0,0,0,7,5,0,4,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,7,16,1045,478,567,350,372,119,190,2,0,5,2,0,0,2,3,352,374,119,193,3,0,6,3,0,0,476,562,348,370,119,190,2,0,5,2,0,0,2,0,350,370,119,190,3,0,6,2,0,0,2,5,2,2,0,0,0,0,0,0,0,0,0,3,2,4,0,3,0,0,0,1,0,0 -050,01,017,Alabama,Chambers County,7,17,779,281,498,221,362,59,128,0,0,0,4,0,0,1,4,222,366,59,128,1,4,0,4,0,0,279,495,219,359,59,128,0,0,0,4,0,0,1,4,220,363,59,128,1,4,0,4,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,7,18,755,196,559,164,373,30,183,0,1,1,1,0,0,1,1,165,374,31,184,0,1,1,1,0,0,194,556,162,371,30,183,0,1,1,1,0,0,1,0,163,371,31,183,0,1,1,1,0,0,2,3,2,2,0,0,0,0,0,0,0,0,0,1,2,3,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,8,0,33991,16356,17635,9511,10052,6350,7183,48,51,242,158,14,6,191,185,9691,10223,6456,7303,123,110,264,180,18,14,15959,17338,9242,9824,6269,7140,35,45,226,155,8,5,179,169,9411,9981,6369,7249,105,99,246,176,12,12,397,297,269,228,81,43,13,6,16,3,6,1,12,16,280,242,87,54,18,11,18,4,6,2 -050,01,017,Alabama,Chambers County,8,1,2061,1062,999,545,553,446,395,6,2,23,16,1,0,41,33,584,584,478,424,15,7,24,18,2,1,1016,941,513,502,440,392,3,2,22,14,1,0,37,31,548,531,470,420,10,6,23,16,2,1,46,58,32,51,6,3,3,0,1,2,0,0,4,2,36,53,8,4,5,1,1,2,0,0 -050,01,017,Alabama,Chambers County,8,2,1934,954,980,471,490,452,457,4,0,5,4,0,0,22,29,493,517,470,480,7,6,7,5,0,1,900,940,433,459,440,452,2,0,4,4,0,0,21,25,454,483,457,471,5,6,6,5,0,0,54,40,38,31,12,5,2,0,1,0,0,0,1,4,39,34,13,9,2,0,1,0,0,1 -050,01,017,Alabama,Chambers County,8,3,1929,1021,908,554,452,445,418,1,3,3,9,3,0,15,26,568,477,456,440,6,4,4,13,3,2,992,887,532,435,439,416,0,3,3,8,3,0,15,25,546,459,450,437,5,4,4,12,3,2,29,21,22,17,6,2,1,0,0,1,0,0,0,1,22,18,6,3,1,0,0,1,0,0 -050,01,017,Alabama,Chambers County,8,4,2020,1072,948,560,487,479,432,3,5,9,5,1,1,20,18,579,504,491,446,6,10,13,6,3,2,1049,937,545,478,472,432,2,5,9,5,1,1,20,16,564,493,484,445,5,9,13,6,3,2,23,11,15,9,7,0,1,0,0,0,0,0,0,2,15,11,7,1,1,1,0,0,0,0 -050,01,017,Alabama,Chambers County,8,5,2184,1077,1107,546,523,484,560,3,3,18,8,3,0,23,13,568,534,500,568,9,6,22,11,3,1,1053,1089,529,511,482,556,3,2,16,8,2,0,21,12,549,521,497,563,9,5,19,11,2,1,24,18,17,12,2,4,0,1,2,0,1,0,2,1,19,13,3,5,0,1,3,0,1,0 -050,01,017,Alabama,Chambers County,8,6,2135,1083,1052,582,551,470,472,4,6,18,16,3,1,6,6,587,555,474,475,7,8,18,19,3,1,1040,1029,556,532,463,470,3,5,12,16,0,0,6,6,561,536,467,473,6,7,12,19,0,0,43,23,26,19,7,2,1,1,6,0,3,1,0,0,26,19,7,2,1,1,6,0,3,1 -050,01,017,Alabama,Chambers County,8,7,1860,893,967,471,497,369,438,2,2,39,26,3,0,9,4,479,500,372,441,8,2,40,28,3,0,862,946,463,479,356,435,0,2,36,26,1,0,6,4,468,482,358,438,4,2,37,28,1,0,31,21,8,18,13,3,2,0,3,0,2,0,3,0,11,18,14,3,4,0,3,0,2,0 -050,01,017,Alabama,Chambers County,8,8,1895,897,998,490,533,365,442,3,3,35,17,0,2,4,1,494,534,365,442,6,4,36,17,0,2,866,970,468,513,360,435,2,2,33,17,0,2,3,1,471,514,360,435,4,3,34,17,0,2,31,28,22,20,5,7,1,1,2,0,0,0,1,0,23,20,5,7,2,1,2,0,0,0 -050,01,017,Alabama,Chambers County,8,9,2057,982,1075,586,590,377,465,0,2,14,5,0,1,5,12,591,602,380,469,3,11,14,6,0,1,949,1062,560,582,371,464,0,0,13,5,0,1,5,10,565,592,374,467,3,8,13,6,0,1,33,13,26,8,6,1,0,2,1,0,0,0,0,2,26,10,6,2,0,3,1,0,0,0 -050,01,017,Alabama,Chambers County,8,10,2266,1142,1124,693,644,421,458,3,8,18,9,0,0,7,5,699,649,424,459,5,11,21,10,0,0,1125,1112,681,635,419,455,1,8,18,9,0,0,6,5,687,640,421,456,3,11,20,10,0,0,17,12,12,9,2,3,2,0,0,0,0,0,1,0,12,9,3,3,2,0,1,0,0,0 -050,01,017,Alabama,Chambers County,8,11,2470,1219,1251,685,730,494,493,2,2,28,16,0,0,10,10,692,738,496,497,10,10,30,16,1,0,1203,1241,671,723,492,491,2,2,28,16,0,0,10,9,678,730,494,495,10,9,30,16,1,0,16,10,14,7,2,2,0,0,0,0,0,0,0,1,14,8,2,2,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,8,12,2514,1192,1322,685,779,481,524,3,5,13,9,0,1,10,4,695,783,483,526,10,8,14,9,0,1,1173,1311,673,771,474,521,3,5,13,9,0,1,10,4,683,775,476,523,10,8,14,9,0,1,19,11,12,8,7,3,0,0,0,0,0,0,0,0,12,8,7,3,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,8,13,2366,1103,1263,690,778,395,468,4,5,11,5,0,0,3,7,693,785,395,470,7,9,11,6,0,0,1093,1258,685,774,390,467,4,5,11,5,0,0,3,7,688,781,390,469,7,9,11,6,0,0,10,5,5,4,5,1,0,0,0,0,0,0,0,0,5,4,5,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,8,14,2122,977,1145,690,760,276,378,4,1,2,1,0,0,5,5,695,765,276,379,8,5,3,1,0,0,968,1138,681,756,276,375,4,1,2,1,0,0,5,5,686,761,276,376,8,5,3,1,0,0,9,7,9,4,0,3,0,0,0,0,0,0,0,0,9,4,0,3,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,8,15,1585,712,873,517,591,185,274,4,1,0,4,0,0,6,3,523,594,185,275,10,2,0,5,0,0,708,866,514,588,184,271,4,0,0,4,0,0,6,3,520,591,184,272,10,1,0,5,0,0,4,7,3,3,1,3,0,1,0,0,0,0,0,0,3,3,1,3,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,8,16,1070,491,579,357,376,125,196,2,2,5,3,0,0,2,2,359,377,125,197,4,3,5,4,0,0,487,574,353,373,125,195,2,2,5,3,0,0,2,1,355,374,125,195,4,3,5,3,0,0,4,5,4,3,0,1,0,0,0,0,0,0,0,1,4,3,0,2,0,0,0,1,0,0 -050,01,017,Alabama,Chambers County,8,17,764,286,478,227,341,57,128,0,0,0,3,0,0,2,6,229,347,57,130,2,2,0,4,0,2,284,474,225,338,57,128,0,0,0,3,0,0,2,5,227,343,57,129,2,2,0,4,0,2,2,4,2,3,0,0,0,0,0,0,0,0,0,1,2,4,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,8,18,759,193,566,162,377,29,185,0,1,1,2,0,0,1,1,163,378,29,185,0,2,2,2,0,0,191,563,160,375,29,185,0,1,1,2,0,0,1,0,161,375,29,185,0,1,2,2,0,0,2,3,2,2,0,0,0,0,0,0,0,0,0,1,2,3,0,0,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,9,0,33742,16176,17566,9389,9977,6286,7148,53,50,248,167,12,6,188,218,9561,10181,6391,7283,127,123,273,190,18,12,15746,17242,9104,9731,6197,7102,35,41,233,164,6,5,171,199,9260,9917,6291,7224,104,109,255,185,12,10,430,324,285,246,89,46,18,9,15,3,6,1,17,19,301,264,100,59,23,14,18,5,6,2 -050,01,017,Alabama,Chambers County,9,1,2002,1015,987,517,523,430,398,10,2,19,17,0,0,39,47,554,568,463,438,14,7,22,22,1,1,952,931,478,477,418,395,4,0,18,15,0,0,34,44,511,519,448,433,7,4,19,20,1,1,63,56,39,46,12,3,6,2,1,2,0,0,5,3,43,49,15,5,7,3,3,2,0,0 -050,01,017,Alabama,Chambers County,9,2,1936,981,955,489,493,469,423,4,2,2,3,0,0,17,34,505,524,482,452,6,7,5,6,0,1,923,906,446,452,456,419,3,2,1,3,0,0,17,30,462,480,469,444,5,6,4,5,0,1,58,49,43,41,13,4,1,0,1,0,0,0,0,4,43,44,13,8,1,1,1,1,0,0 -050,01,017,Alabama,Chambers County,9,3,1900,967,933,520,469,425,428,2,1,5,8,1,0,14,27,533,495,436,448,4,5,7,12,1,0,933,908,496,450,418,426,0,1,5,7,1,0,13,24,508,473,428,444,2,5,7,10,1,0,34,25,24,19,7,2,2,0,0,1,0,0,1,3,25,22,8,4,2,0,0,2,0,0 -050,01,017,Alabama,Chambers County,9,4,1949,1011,938,529,482,461,427,2,2,2,4,1,1,16,22,544,502,472,444,6,7,4,6,1,1,987,918,512,466,455,425,1,2,2,4,1,1,16,20,527,484,466,440,5,7,4,6,1,1,24,20,17,16,6,2,1,0,0,0,0,0,0,2,17,18,6,4,1,0,0,0,0,0 -050,01,017,Alabama,Chambers County,9,5,2147,1042,1105,539,528,462,537,3,6,14,16,3,0,21,18,558,546,477,547,9,13,16,16,3,1,1028,1088,530,519,460,532,3,4,14,16,2,0,19,17,547,536,473,542,9,10,16,16,2,1,14,17,9,9,2,5,0,2,0,0,1,0,2,1,11,10,4,5,0,3,0,0,1,0 -050,01,017,Alabama,Chambers County,9,6,2183,1126,1057,605,541,474,485,3,5,29,17,3,1,12,8,613,547,480,488,7,8,33,20,5,2,1087,1035,579,524,470,482,2,4,23,17,1,0,12,8,587,530,476,485,6,7,27,20,3,1,39,22,26,17,4,3,1,1,6,0,2,1,0,0,26,17,4,3,1,1,6,0,2,1 -050,01,017,Alabama,Chambers County,9,7,1867,883,984,475,508,358,448,2,1,35,21,4,0,9,6,484,514,363,451,6,2,35,23,4,0,840,960,457,487,344,445,0,1,32,21,1,0,6,6,463,493,347,448,3,2,32,23,1,0,43,24,18,21,14,3,2,0,3,0,3,0,3,0,21,21,16,3,3,0,3,0,3,0 -050,01,017,Alabama,Chambers County,9,8,1875,906,969,496,496,364,448,5,3,35,19,0,2,6,1,502,497,365,449,8,3,37,19,1,2,869,946,474,479,357,443,2,2,32,19,0,2,4,1,478,480,357,444,5,2,33,19,1,2,37,23,22,17,7,5,3,1,3,0,0,0,2,0,24,17,8,5,3,1,4,0,0,0 -050,01,017,Alabama,Chambers County,9,9,1996,947,1049,544,586,387,447,0,2,10,4,0,1,6,9,550,594,390,447,3,9,11,5,0,3,920,1027,525,572,380,443,0,0,10,4,0,1,5,7,530,578,382,443,3,6,11,5,0,2,27,22,19,14,7,4,0,2,0,0,0,0,1,2,20,16,8,4,0,3,0,0,0,1 -050,01,017,Alabama,Chambers County,9,10,2214,1104,1110,691,634,370,451,3,6,34,12,0,0,6,7,697,641,370,452,7,11,36,13,0,0,1081,1099,674,626,368,448,1,6,33,12,0,0,5,7,679,633,368,449,4,11,35,13,0,0,23,11,17,8,2,3,2,0,1,0,0,0,1,0,18,8,2,3,3,0,1,0,0,0 -050,01,017,Alabama,Chambers County,9,11,2432,1186,1246,638,733,509,485,2,4,29,15,0,0,8,9,646,741,510,489,9,11,29,15,1,0,1173,1235,627,724,507,484,2,4,29,15,0,0,8,8,635,731,508,487,9,11,29,15,1,0,13,11,11,9,2,1,0,0,0,0,0,0,0,1,11,10,2,2,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,9,12,2535,1222,1313,704,783,486,512,3,4,14,10,0,0,15,4,717,787,490,513,16,7,16,10,1,0,1200,1299,690,773,480,508,3,4,14,10,0,0,13,4,701,777,483,509,14,7,16,10,1,0,22,14,14,10,6,4,0,0,0,0,0,0,2,0,16,10,7,4,2,0,0,0,0,0 -050,01,017,Alabama,Chambers County,9,13,2339,1085,1254,679,748,390,483,1,5,12,9,0,1,3,8,681,756,390,484,4,11,13,10,0,1,1073,1250,673,745,384,482,1,5,12,9,0,1,3,8,675,753,384,483,4,11,13,10,0,1,12,4,6,3,6,1,0,0,0,0,0,0,0,0,6,3,6,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,9,14,2129,996,1133,686,740,298,384,6,2,2,2,0,0,4,5,689,745,299,384,10,7,2,3,0,0,989,1127,679,736,298,382,6,2,2,2,0,0,4,5,682,741,299,382,10,7,2,3,0,0,7,6,7,4,0,2,0,0,0,0,0,0,0,0,7,4,0,2,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,9,15,1611,716,895,521,613,183,275,5,1,0,3,0,0,7,3,528,616,183,276,12,3,0,3,0,0,710,887,516,609,182,272,5,0,0,3,0,0,7,3,523,612,182,273,12,2,0,3,0,0,6,8,5,4,1,3,0,1,0,0,0,0,0,0,5,4,1,3,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,9,16,1101,500,601,372,388,121,205,1,3,4,3,0,0,2,2,373,389,122,206,3,5,4,3,0,0,496,598,368,386,121,204,1,3,4,3,0,0,2,2,369,387,122,205,3,5,4,3,0,0,4,3,4,2,0,1,0,0,0,0,0,0,0,0,4,2,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,9,17,788,303,485,230,348,70,129,1,0,1,2,0,0,1,6,231,353,70,131,2,5,1,2,0,0,301,479,228,344,70,129,1,0,1,2,0,0,1,4,229,347,70,130,2,4,1,2,0,0,2,6,2,4,0,0,0,0,0,0,0,0,0,2,2,6,0,1,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,9,18,738,186,552,154,364,29,183,0,1,1,2,0,0,2,2,156,366,29,184,1,2,2,2,0,0,184,549,152,362,29,183,0,1,1,2,0,0,2,1,154,363,29,183,1,2,2,2,0,0,2,3,2,2,0,0,0,0,0,0,0,0,0,1,2,3,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,10,0,33716,16148,17568,9365,9919,6273,7184,49,45,251,172,10,5,200,243,9549,10144,6385,7346,126,117,281,202,22,18,15692,17206,9058,9636,6183,7136,32,38,236,169,4,4,179,223,9221,9844,6287,7285,99,100,262,195,13,15,456,362,307,283,90,48,17,7,15,3,6,1,21,20,328,300,98,61,27,17,19,7,9,3 -050,01,017,Alabama,Chambers County,10,1,2000,989,1011,510,521,419,409,4,2,15,19,0,0,41,60,550,578,451,461,9,10,22,21,1,2,920,944,459,468,411,403,1,0,14,17,0,0,35,56,493,522,441,454,3,5,19,19,0,1,69,67,51,53,8,6,3,2,1,2,0,0,6,4,57,56,10,7,6,5,3,2,1,1 -050,01,017,Alabama,Chambers County,10,2,1989,1008,981,521,511,449,430,9,2,7,6,0,0,22,32,543,543,465,455,12,4,8,12,2,2,948,923,480,458,435,426,5,2,6,6,0,0,22,31,502,489,451,450,8,4,7,12,2,2,60,58,41,53,14,4,4,0,1,0,0,0,0,1,41,54,14,5,4,0,1,0,0,0 -050,01,017,Alabama,Chambers County,10,3,1913,972,941,514,469,437,432,2,1,5,7,0,0,14,32,527,499,447,457,5,8,7,10,0,2,931,906,485,442,428,429,0,1,5,6,0,0,13,28,497,469,438,451,3,6,6,7,0,2,41,35,29,27,9,3,2,0,0,1,0,0,1,4,30,30,9,6,2,2,1,3,0,0 -050,01,017,Alabama,Chambers County,10,4,1888,1007,881,537,453,454,399,1,2,1,4,0,0,14,23,548,474,465,415,5,5,4,9,1,2,979,857,515,435,448,396,1,2,1,4,0,0,14,20,526,453,459,410,5,4,4,8,1,2,28,24,22,18,6,3,0,0,0,0,0,0,0,3,22,21,6,5,0,1,0,1,0,0 -050,01,017,Alabama,Chambers County,10,5,2063,1017,1046,518,521,456,496,2,1,13,8,2,1,26,19,542,538,472,509,11,7,15,10,4,1,1003,1030,508,508,454,494,2,0,13,8,2,1,24,19,530,525,469,507,10,6,15,10,3,1,14,16,10,13,2,2,0,1,0,0,0,0,2,0,12,13,3,2,1,1,0,0,1,0 -050,01,017,Alabama,Chambers County,10,6,2344,1173,1171,635,574,498,546,2,7,25,28,3,0,10,16,643,587,502,555,8,13,27,32,4,1,1148,1154,621,563,496,543,1,6,19,28,1,0,10,14,629,574,500,551,7,11,21,32,2,1,25,17,14,11,2,3,1,1,6,0,2,0,0,2,14,13,2,4,1,2,6,0,2,0 -050,01,017,Alabama,Chambers County,10,7,1869,877,992,475,518,356,451,1,2,30,17,5,1,10,3,484,521,360,453,6,3,32,17,5,1,830,964,452,495,345,447,0,2,27,17,1,0,5,3,456,498,348,449,2,3,28,17,1,0,47,28,23,23,11,4,1,0,3,0,4,1,5,0,28,23,12,4,4,0,4,0,4,1 -050,01,017,Alabama,Chambers County,10,8,1854,887,967,477,496,363,452,4,2,36,13,0,1,7,3,483,498,366,454,6,4,39,13,2,1,850,943,462,477,350,448,0,1,33,13,0,1,5,3,466,479,352,450,1,3,36,13,2,1,37,24,15,19,13,4,4,1,3,0,0,0,2,0,17,19,14,4,5,1,3,0,0,0 -050,01,017,Alabama,Chambers County,10,9,1917,929,988,524,543,382,429,2,2,15,8,0,0,6,6,530,549,382,431,7,7,16,9,0,0,897,962,499,525,376,424,2,1,15,8,0,0,5,4,504,529,376,425,6,4,16,9,0,0,32,26,25,18,6,5,0,1,0,0,0,0,1,2,26,20,6,6,1,3,0,0,0,0 -050,01,017,Alabama,Chambers County,10,10,2236,1103,1133,700,650,361,462,2,2,35,10,0,1,5,8,704,658,365,465,4,4,36,13,0,1,1074,1120,677,638,358,461,1,2,34,10,0,1,4,8,680,646,361,464,2,4,35,13,0,1,29,13,23,12,3,1,1,0,1,0,0,0,1,0,24,12,4,1,2,0,1,0,0,0 -050,01,017,Alabama,Chambers County,10,11,2327,1118,1209,610,681,474,501,2,5,24,14,0,0,8,8,617,688,478,505,6,10,25,14,1,0,1103,1196,599,671,471,499,1,5,24,14,0,0,8,7,606,677,475,502,5,10,25,14,1,0,15,13,11,10,3,2,1,0,0,0,0,0,0,1,11,11,3,3,1,0,0,0,0,0 -050,01,017,Alabama,Chambers County,10,12,2492,1193,1299,693,788,467,488,2,2,19,14,0,0,12,7,703,794,469,491,12,6,21,16,1,1,1172,1287,677,779,463,485,2,2,19,14,0,0,11,7,686,785,465,488,12,6,21,16,0,1,21,12,16,9,4,3,0,0,0,0,0,0,1,0,17,9,4,3,0,0,0,0,1,0 -050,01,017,Alabama,Chambers County,10,13,2403,1126,1277,684,748,417,502,3,6,16,12,0,1,6,8,690,756,420,503,6,13,16,12,0,2,1110,1273,676,746,410,500,3,6,16,12,0,1,5,8,681,754,412,501,6,13,16,12,0,2,16,4,8,2,7,2,0,0,0,0,0,0,1,0,9,2,8,2,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,10,14,2038,967,1071,642,671,316,390,5,4,2,2,0,0,2,4,644,675,316,390,7,7,2,2,0,1,963,1065,639,667,315,388,5,4,2,2,0,0,2,4,641,671,315,388,7,7,2,2,0,1,4,6,3,4,1,2,0,0,0,0,0,0,0,0,3,4,1,2,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,10,15,1754,788,966,581,682,191,277,5,1,1,2,0,0,10,4,590,685,193,278,13,5,3,2,0,0,778,959,573,679,190,274,5,0,1,2,0,0,9,4,581,682,191,275,13,4,3,2,0,0,10,7,8,3,1,3,0,1,0,0,0,0,1,0,9,3,2,3,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,10,16,1117,488,629,359,409,124,211,1,3,1,4,0,0,3,2,362,411,125,211,4,5,1,4,0,0,484,626,355,407,124,210,1,3,1,4,0,0,3,2,358,409,125,210,4,5,1,4,0,0,4,3,4,2,0,1,0,0,0,0,0,0,0,0,4,2,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,10,17,783,319,464,238,324,72,133,2,0,5,2,0,0,2,5,240,328,72,135,4,3,5,4,0,1,318,459,237,321,72,133,2,0,5,2,0,0,2,3,239,324,72,133,4,2,5,3,0,0,1,5,1,3,0,0,0,0,0,0,0,0,0,2,1,4,0,2,0,1,0,1,0,1 -050,01,017,Alabama,Chambers County,10,18,729,187,542,147,360,37,176,0,1,1,2,0,0,2,3,149,362,37,178,1,3,2,2,1,0,184,538,144,357,37,176,0,1,1,2,0,0,2,2,146,358,37,177,1,3,2,2,1,0,3,4,3,3,0,0,0,0,0,0,0,0,0,1,3,4,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,11,0,33570,16077,17493,9291,9837,6267,7215,53,47,255,165,10,5,201,224,9473,10049,6390,7364,129,111,277,193,16,18,15601,17111,8966,9538,6175,7165,35,40,239,162,4,4,182,202,9132,9731,6286,7300,104,94,259,185,8,13,476,382,325,299,92,50,18,7,16,3,6,1,19,22,341,318,104,64,25,17,18,8,8,5 -050,01,017,Alabama,Chambers County,11,1,1912,979,933,510,476,415,391,4,1,13,21,0,0,37,44,545,520,444,429,9,5,17,24,3,0,894,870,443,429,407,386,1,0,12,19,0,0,31,36,473,465,432,418,5,3,15,21,2,0,85,63,67,47,8,5,3,1,1,2,0,0,6,8,72,55,12,11,4,2,2,3,1,0 -050,01,017,Alabama,Chambers County,11,2,1945,949,996,499,510,408,441,11,3,7,4,0,0,24,38,522,545,428,473,14,6,8,8,1,5,891,930,459,454,398,433,6,2,6,4,0,0,22,37,481,489,416,464,8,5,7,8,1,4,58,66,40,56,10,8,5,1,1,0,0,0,2,1,41,56,12,9,6,1,1,0,0,1 -050,01,017,Alabama,Chambers County,11,3,1924,956,968,487,481,441,451,4,1,8,5,0,0,16,30,502,509,454,474,7,8,10,7,0,1,917,932,463,450,430,449,2,1,8,5,0,0,14,27,476,475,441,471,4,5,10,7,0,1,39,36,24,31,11,2,2,0,0,0,0,0,2,3,26,34,13,3,3,3,0,0,0,0 -050,01,017,Alabama,Chambers County,11,4,1889,1024,865,558,454,447,383,0,2,5,4,0,0,14,22,571,475,459,398,4,6,5,8,0,3,988,834,531,429,439,379,0,2,4,3,0,0,14,21,544,449,451,394,4,5,4,6,0,2,36,31,27,25,8,4,0,0,1,1,0,0,0,1,27,26,8,4,0,1,1,2,0,1 -050,01,017,Alabama,Chambers County,11,5,2003,989,1014,523,511,424,482,3,1,9,5,2,1,28,14,546,525,443,493,13,5,15,6,2,1,967,1000,505,501,421,480,3,0,9,5,2,1,27,13,527,514,440,491,12,3,15,6,2,1,22,14,18,10,3,2,0,1,0,0,0,0,1,1,19,11,3,2,1,2,0,0,0,0 -050,01,017,Alabama,Chambers County,11,6,2379,1190,1189,632,585,509,557,3,7,32,25,2,0,12,15,641,599,516,566,9,12,34,26,2,1,1164,1168,617,567,507,556,2,6,26,25,1,0,11,14,625,580,513,565,8,10,28,26,1,1,26,21,15,18,2,1,1,1,6,0,1,0,1,1,16,19,3,1,1,2,6,0,1,0 -050,01,017,Alabama,Chambers County,11,7,1840,865,975,472,496,353,460,1,0,28,14,4,1,7,4,478,500,355,461,3,3,30,14,6,1,820,951,446,478,344,455,0,0,25,14,0,0,5,4,451,482,345,456,1,3,27,14,1,0,45,24,26,18,9,5,1,0,3,0,4,1,2,0,27,18,10,5,2,0,3,0,5,1 -050,01,017,Alabama,Chambers County,11,8,1869,902,967,470,499,389,449,4,3,32,12,2,0,5,4,475,503,392,451,6,4,32,13,2,0,875,938,465,476,375,445,0,2,29,12,1,0,5,3,470,479,378,446,2,3,29,13,1,0,27,29,5,23,14,4,4,1,3,0,1,0,0,1,5,24,14,5,4,1,3,0,1,0 -050,01,017,Alabama,Chambers County,11,9,1884,896,988,492,544,379,422,2,3,16,14,0,1,7,4,498,547,381,424,8,5,16,16,0,1,867,961,471,526,372,416,2,2,16,14,0,1,6,2,476,528,373,416,8,3,16,15,0,1,29,27,21,18,7,6,0,1,0,0,0,0,1,2,22,19,8,8,0,2,0,1,0,0 -050,01,017,Alabama,Chambers County,11,10,2214,1081,1133,677,641,361,469,1,3,38,9,0,1,4,10,681,651,363,473,3,9,38,9,0,1,1049,1118,648,626,359,469,1,3,37,9,0,1,4,10,652,636,361,473,3,9,37,9,0,1,32,15,29,15,2,0,0,0,1,0,0,0,0,0,29,15,2,0,0,0,1,0,0,0 -050,01,017,Alabama,Chambers County,11,11,2228,1087,1141,610,647,455,476,3,6,12,10,0,0,7,2,617,649,458,477,5,7,14,10,0,0,1067,1127,598,636,450,473,1,6,12,10,0,0,6,2,604,638,453,474,2,7,14,10,0,0,20,14,12,11,5,3,2,0,0,0,0,0,1,0,13,11,5,3,3,0,0,0,0,0 -050,01,017,Alabama,Chambers County,11,12,2533,1215,1318,693,780,478,510,1,2,30,17,0,0,13,9,706,788,481,514,9,8,32,19,0,0,1201,1307,682,772,476,508,1,2,30,17,0,0,12,8,694,779,479,512,9,7,31,19,0,0,14,11,11,8,2,2,0,0,0,0,0,0,1,1,12,9,2,2,0,1,1,0,0,0 -050,01,017,Alabama,Chambers County,11,13,2418,1151,1267,701,747,423,495,4,5,16,12,0,1,7,7,708,754,424,495,10,8,16,16,0,1,1129,1262,689,744,414,493,4,5,16,12,0,1,6,7,695,751,415,493,9,8,16,16,0,1,22,5,12,3,9,2,0,0,0,0,0,0,1,0,13,3,9,2,1,0,0,0,0,0 -050,01,017,Alabama,Chambers County,11,14,2066,964,1102,599,676,355,414,5,5,2,3,0,0,3,4,601,680,356,415,8,8,2,3,0,0,961,1096,597,672,354,412,5,5,2,3,0,0,3,4,599,676,355,413,8,8,2,3,0,0,3,6,2,4,1,2,0,0,0,0,0,0,0,0,2,4,1,2,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,11,15,1757,788,969,592,670,183,290,5,1,1,1,0,0,7,7,599,676,184,292,11,7,1,2,0,0,780,960,586,664,182,288,5,0,1,1,0,0,6,7,592,670,182,290,11,6,1,2,0,0,8,9,6,6,1,2,0,1,0,0,0,0,1,0,7,6,2,2,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,11,16,1188,521,667,377,437,138,220,0,3,0,5,0,0,6,2,381,438,141,221,6,5,0,5,0,0,516,665,372,437,138,218,0,3,0,5,0,0,6,2,376,438,141,219,6,5,0,5,0,0,5,2,5,0,0,2,0,0,0,0,0,0,0,0,5,0,0,2,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,11,17,775,320,455,239,316,72,135,2,0,5,1,0,0,2,3,240,319,73,137,3,1,6,2,0,1,319,449,238,312,72,135,2,0,5,1,0,0,2,1,239,313,73,135,3,1,6,1,0,0,1,6,1,4,0,0,0,0,0,0,0,0,0,2,1,6,0,2,0,0,0,1,0,1 -050,01,017,Alabama,Chambers County,11,18,746,200,546,160,367,37,170,0,1,1,3,0,0,2,5,162,371,38,171,1,4,1,5,0,2,196,543,156,365,37,170,0,1,1,3,0,0,2,4,158,369,38,170,1,3,1,4,0,1,4,3,4,2,0,0,0,0,0,0,0,0,0,1,4,2,0,1,0,1,0,1,0,1 -050,01,017,Alabama,Chambers County,12,0,33244,15910,17334,9176,9756,6238,7163,57,48,225,139,11,5,203,223,9357,9963,6367,7305,124,118,259,168,19,13,15431,16934,8846,9437,6147,7118,38,39,210,136,5,4,185,200,9011,9622,6264,7247,97,100,240,161,12,9,479,400,330,319,91,45,19,9,15,3,6,1,18,23,346,341,103,58,27,18,19,7,7,4 -050,01,017,Alabama,Chambers County,12,1,1872,962,910,501,470,420,391,3,0,8,8,0,0,30,41,528,511,446,425,7,5,13,11,0,1,876,838,431,414,412,385,1,0,7,6,0,0,25,33,454,447,434,413,3,3,10,9,0,0,86,72,70,56,8,6,2,0,1,2,0,0,5,8,74,64,12,12,4,2,3,2,0,1 -050,01,017,Alabama,Chambers County,12,2,1940,954,986,501,509,405,431,12,6,7,4,0,0,29,36,529,542,429,461,16,13,9,6,1,1,896,912,460,445,397,426,6,2,7,4,0,0,26,35,486,478,419,455,8,8,9,6,1,1,58,74,41,64,8,5,6,4,0,0,0,0,3,1,43,64,10,6,8,5,0,0,0,0 -050,01,017,Alabama,Chambers County,12,3,1960,997,963,498,475,475,457,6,1,3,4,0,0,15,26,510,501,486,476,9,5,7,7,0,0,947,926,468,442,461,456,3,1,2,4,0,0,13,23,478,465,471,473,6,4,5,7,0,0,50,37,30,33,14,1,3,0,1,0,0,0,2,3,32,36,15,3,3,1,2,0,0,0 -050,01,017,Alabama,Chambers County,12,4,1817,975,842,522,441,432,372,0,2,3,5,0,0,18,22,539,462,445,391,3,4,5,8,1,0,944,809,496,416,427,367,0,2,3,4,0,0,18,20,513,435,440,386,3,2,5,7,1,0,31,33,26,25,5,5,0,0,0,1,0,0,0,2,26,27,5,5,0,2,0,1,0,0 -050,01,017,Alabama,Chambers County,12,5,1873,949,924,525,477,388,429,3,1,8,5,2,1,23,11,548,488,404,436,7,5,11,5,2,1,924,910,507,467,382,427,3,0,8,5,2,1,22,10,529,477,397,434,7,3,11,5,2,1,25,14,18,10,6,2,0,1,0,0,0,0,1,1,19,11,7,2,0,2,0,0,0,0 -050,01,017,Alabama,Chambers County,12,6,2382,1180,1202,608,595,523,568,2,4,28,18,2,0,17,17,622,610,536,577,8,8,30,23,2,1,1156,1180,592,575,521,567,2,4,24,18,1,0,16,16,605,589,534,576,7,8,26,22,1,1,24,22,16,20,2,1,0,0,4,0,1,0,1,1,17,21,2,1,1,0,4,1,1,0 -050,01,017,Alabama,Chambers County,12,7,1864,895,969,482,502,379,441,1,3,23,13,4,1,6,9,484,510,383,446,4,7,26,14,5,1,852,951,457,491,371,436,0,2,18,13,0,0,6,9,459,499,375,441,3,6,21,14,1,0,43,18,25,11,8,5,1,1,5,0,4,1,0,0,25,11,8,5,1,1,5,0,4,1 -050,01,017,Alabama,Chambers County,12,8,1794,851,943,453,482,355,444,7,2,26,9,2,0,8,6,461,488,359,446,10,3,28,12,2,0,821,915,448,457,341,443,2,1,23,9,1,0,6,5,454,462,343,444,5,2,25,12,1,0,30,28,5,25,14,1,5,1,3,0,1,0,2,1,7,26,16,2,5,1,3,0,1,0 -050,01,017,Alabama,Chambers County,12,9,1855,880,975,495,527,364,432,2,3,14,7,0,1,5,5,499,531,367,435,4,6,16,9,0,2,849,953,471,512,358,427,2,3,14,7,0,1,4,3,474,514,360,428,4,5,16,8,0,1,31,22,24,15,6,5,0,0,0,0,0,0,1,2,25,17,7,7,0,1,0,1,0,1 -050,01,017,Alabama,Chambers County,12,10,2158,1019,1139,613,650,368,468,1,3,31,9,0,1,6,8,617,656,371,472,5,8,32,9,2,2,997,1119,594,632,366,467,1,2,30,9,0,1,6,8,598,638,369,471,5,7,31,9,2,2,22,20,19,18,2,1,0,1,1,0,0,0,0,0,19,18,2,1,0,1,1,0,0,0 -050,01,017,Alabama,Chambers County,12,11,2193,1060,1133,612,631,425,478,3,7,14,13,0,0,6,4,618,633,426,480,7,10,15,14,0,0,1039,1121,599,621,420,476,1,7,14,13,0,0,5,4,604,623,421,478,4,10,15,14,0,0,21,12,13,10,5,2,2,0,0,0,0,0,1,0,14,10,5,2,3,0,0,0,0,0 -050,01,017,Alabama,Chambers County,12,12,2467,1200,1267,692,757,466,480,1,2,31,20,0,0,10,8,702,764,468,481,6,5,33,24,2,1,1190,1254,684,747,465,478,1,2,31,20,0,0,9,7,693,753,467,479,5,5,33,23,2,1,10,13,8,10,1,2,0,0,0,0,0,0,1,1,9,11,1,2,1,0,0,1,0,0 -050,01,017,Alabama,Chambers County,12,13,2386,1129,1257,679,732,426,503,4,5,12,10,0,1,8,6,685,738,429,504,9,10,14,10,0,1,1107,1249,665,727,418,500,4,5,12,10,0,1,8,6,671,733,421,501,9,10,14,10,0,1,22,8,14,5,8,3,0,0,0,0,0,0,0,0,14,5,8,3,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,12,14,2098,967,1131,596,701,354,416,4,4,9,3,0,0,4,7,600,708,355,417,6,11,10,3,0,0,959,1126,591,698,351,414,4,4,9,3,0,0,4,7,595,705,352,415,6,11,10,3,0,0,8,5,5,3,3,2,0,0,0,0,0,0,0,0,5,3,3,2,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,12,15,1779,799,980,577,661,208,309,5,2,2,1,1,0,6,7,581,667,212,310,10,9,3,1,2,0,792,974,572,657,207,308,5,1,2,1,1,0,5,7,575,663,210,309,9,8,2,1,1,0,7,6,5,4,1,1,0,1,0,0,0,0,1,0,6,4,2,1,1,1,1,0,1,0 -050,01,017,Alabama,Chambers County,12,16,1302,563,739,419,489,135,241,1,2,0,5,0,0,8,2,427,490,136,242,7,4,1,5,0,0,558,732,414,485,135,238,1,2,0,5,0,0,8,2,422,486,136,239,7,4,1,5,0,0,5,7,5,4,0,3,0,0,0,0,0,0,0,0,5,4,0,3,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,12,17,742,311,431,227,295,75,131,2,0,5,2,0,0,2,3,229,298,75,133,4,0,5,3,0,1,309,426,225,292,75,131,2,0,5,2,0,0,2,1,227,293,75,132,4,0,5,2,0,0,2,5,2,3,0,0,0,0,0,0,0,0,0,2,2,5,0,1,0,0,0,1,0,1 -050,01,017,Alabama,Chambers County,12,18,762,219,543,176,362,40,172,0,1,1,3,0,0,2,5,178,366,40,173,2,5,1,4,0,1,215,539,172,359,40,172,0,1,1,3,0,0,2,4,174,362,40,173,2,4,1,4,0,1,4,4,4,3,0,0,0,0,0,0,0,0,0,1,4,4,0,0,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,13,0,32865,15665,17200,9057,9618,6111,7156,59,56,227,150,13,6,198,214,9235,9811,6230,7304,130,123,255,176,17,10,15160,16790,8706,9299,6019,7112,39,39,212,146,7,5,177,189,8863,9471,6128,7242,102,95,236,169,11,6,505,410,351,319,92,44,20,17,15,4,6,1,21,25,372,340,102,62,28,28,19,7,6,4 -050,01,017,Alabama,Chambers County,13,1,1780,909,871,469,428,398,396,3,1,6,7,2,0,31,39,500,465,425,429,7,7,7,10,2,0,826,819,400,390,389,392,1,0,6,7,2,0,28,30,428,419,414,418,4,4,7,9,2,0,83,52,69,38,9,4,2,1,0,0,0,0,3,9,72,46,11,11,3,3,0,1,0,0 -050,01,017,Alabama,Chambers County,13,2,1919,989,930,514,494,427,406,13,10,7,7,0,0,28,13,539,507,448,418,17,11,12,7,2,1,923,854,471,435,420,401,6,2,6,5,0,0,20,11,488,446,436,411,9,2,8,5,2,1,66,76,43,59,7,5,7,8,1,2,0,0,8,2,51,61,12,7,8,9,4,2,0,0 -050,01,017,Alabama,Chambers County,13,3,1924,946,978,481,475,441,465,5,0,2,3,0,0,17,35,497,509,454,492,9,5,4,7,0,0,889,935,442,436,427,464,3,0,1,3,0,0,16,32,457,467,440,490,6,3,3,7,0,0,57,43,39,39,14,1,2,0,1,0,0,0,1,3,40,42,14,2,3,2,1,0,0,0 -050,01,017,Alabama,Chambers County,13,4,1774,941,833,520,414,400,383,1,3,2,6,0,0,18,27,537,440,414,407,4,6,4,10,0,0,906,800,493,388,394,380,0,3,2,5,0,0,17,24,509,411,407,402,3,5,4,8,0,0,35,33,27,26,6,3,1,0,0,1,0,0,1,3,28,29,7,5,1,1,0,2,0,0 -050,01,017,Alabama,Chambers County,13,5,1853,927,926,516,491,391,414,1,1,2,4,1,2,16,14,532,504,402,424,5,4,3,7,1,2,897,908,493,479,384,410,1,0,2,4,1,2,16,13,509,491,395,419,5,3,3,7,1,2,30,18,23,12,7,4,0,1,0,0,0,0,0,1,23,13,7,5,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,13,6,2278,1109,1169,592,564,466,574,2,3,30,13,3,0,16,15,606,576,475,584,6,9,36,14,3,1,1087,1145,577,543,464,573,2,2,28,13,2,0,14,14,589,555,473,583,4,7,34,14,2,0,22,24,15,21,2,1,0,1,2,0,1,0,2,1,17,21,2,1,2,2,2,0,1,1 -050,01,017,Alabama,Chambers County,13,7,1973,965,1008,523,514,406,459,2,5,24,19,3,1,7,10,526,523,411,465,5,8,26,21,4,1,925,983,500,496,399,455,1,4,18,18,0,0,7,10,503,505,404,461,4,7,20,20,1,0,40,25,23,18,7,4,1,1,6,1,3,1,0,0,23,18,7,4,1,1,6,1,3,1 -050,01,017,Alabama,Chambers County,13,8,1767,810,957,426,485,347,454,4,1,23,11,3,0,7,6,433,489,351,457,6,4,24,12,3,1,775,932,414,463,334,452,0,1,21,11,1,0,5,5,419,467,337,455,2,3,21,12,1,0,35,25,12,22,13,2,4,0,2,0,2,0,2,1,14,22,14,2,4,1,3,0,2,1 -050,01,017,Alabama,Chambers County,13,9,1839,861,978,495,528,338,436,5,3,17,8,0,1,6,2,501,530,339,437,9,4,18,8,0,1,833,956,476,512,333,431,4,2,15,8,0,1,5,2,481,514,334,432,7,3,16,8,0,1,28,22,19,16,5,5,1,1,2,0,0,0,1,0,20,16,5,5,2,1,2,0,0,0 -050,01,017,Alabama,Chambers County,13,10,2033,954,1079,559,611,359,449,0,2,31,7,0,1,5,9,563,619,361,455,2,7,32,8,1,1,924,1059,535,595,354,448,0,1,30,7,0,1,5,7,539,601,356,452,2,4,31,8,1,1,30,20,24,16,5,1,0,1,1,0,0,0,0,2,24,18,5,3,0,3,1,0,0,0 -050,01,017,Alabama,Chambers County,13,11,2192,1084,1108,656,621,404,457,3,8,16,17,0,0,5,5,660,625,406,459,5,12,18,17,0,0,1067,1092,645,608,401,454,1,8,16,17,0,0,4,5,648,612,402,456,3,12,18,17,0,0,17,16,11,13,3,3,2,0,0,0,0,0,1,0,12,13,4,3,2,0,0,0,0,0 -050,01,017,Alabama,Chambers County,13,12,2371,1143,1228,630,730,465,459,2,5,34,24,0,0,12,10,641,738,467,463,13,11,34,26,0,0,1127,1212,616,718,463,458,2,3,34,24,0,0,12,9,627,725,465,461,13,9,34,26,0,0,16,16,14,12,2,1,0,2,0,0,0,0,0,1,14,13,2,2,0,2,0,0,0,0 -050,01,017,Alabama,Chambers County,13,13,2394,1126,1268,658,746,437,508,3,4,19,5,0,1,9,4,667,750,438,509,9,5,21,7,0,1,1110,1256,649,737,431,505,3,4,19,5,0,1,8,4,657,741,432,506,8,5,21,7,0,1,16,12,9,9,6,3,0,0,0,0,0,0,1,0,10,9,6,3,1,0,0,0,0,0 -050,01,017,Alabama,Chambers County,13,14,2128,970,1158,616,710,340,426,5,5,6,8,0,0,3,9,619,717,341,429,7,12,6,9,0,0,960,1154,611,707,335,425,5,5,6,8,0,0,3,9,614,714,336,428,7,12,6,9,0,0,10,4,5,3,5,1,0,0,0,0,0,0,0,0,5,3,5,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,13,15,1829,841,988,587,658,240,322,5,1,2,2,1,0,6,5,591,662,242,323,11,5,2,3,1,0,833,980,580,653,240,319,5,1,2,2,1,0,5,5,583,657,242,320,10,5,2,3,1,0,8,8,7,5,0,3,0,0,0,0,0,0,1,0,8,5,0,3,1,0,0,0,0,0 -050,01,017,Alabama,Chambers County,13,16,1300,548,752,407,499,131,246,3,1,0,3,0,0,7,3,412,501,133,247,9,4,1,3,0,0,544,745,404,495,130,244,3,0,0,3,0,0,7,3,409,497,132,245,9,3,1,3,0,0,4,7,3,4,1,2,0,1,0,0,0,0,0,0,3,4,1,2,0,1,0,0,0,0 -050,01,017,Alabama,Chambers County,13,17,770,321,449,226,304,86,139,2,2,5,3,0,0,2,1,227,305,87,139,4,3,5,3,0,0,317,445,222,301,86,138,2,2,5,3,0,0,2,1,223,302,87,138,4,3,5,3,0,0,4,4,4,3,0,1,0,0,0,0,0,0,0,0,4,3,0,1,0,0,0,0,0,0 -050,01,017,Alabama,Chambers County,13,18,741,221,520,182,346,35,163,0,1,1,3,0,0,3,7,184,351,36,167,2,6,2,4,0,1,217,515,178,343,35,163,0,1,1,3,0,0,3,5,180,347,36,165,2,5,2,3,0,0,4,5,4,3,0,0,0,0,0,0,0,0,0,2,4,4,0,2,0,1,0,1,0,1 -050,01,019,Alabama,Cherokee County,1,0,25989,12888,13101,11982,12249,618,592,81,55,20,35,4,2,183,168,12158,12415,677,644,199,161,29,48,13,7,12731,12938,11844,12103,617,591,72,50,20,30,1,0,177,164,12014,12265,674,642,186,155,29,40,10,5,157,163,138,146,1,1,9,5,0,5,3,2,6,4,144,150,3,2,13,6,0,8,3,2 -050,01,019,Alabama,Cherokee County,1,1,1390,718,672,663,610,25,35,4,2,1,3,0,1,25,21,688,631,47,53,8,5,1,4,2,1,694,650,641,593,24,34,4,1,1,2,0,0,24,20,665,613,45,51,8,4,1,3,2,0,24,22,22,17,1,1,0,1,0,1,0,1,1,1,23,18,2,2,0,1,0,1,0,1 -050,01,019,Alabama,Cherokee County,1,2,1524,735,789,660,718,46,39,4,4,3,6,0,0,22,22,682,739,62,51,10,10,3,9,0,2,721,760,648,691,46,39,3,3,3,5,0,0,21,22,669,712,61,51,9,9,3,8,0,2,14,29,12,27,0,0,1,1,0,1,0,0,1,0,13,27,1,0,1,1,0,1,0,0 -050,01,019,Alabama,Cherokee County,1,3,1630,829,801,747,733,53,43,6,5,1,4,0,0,22,16,769,749,62,48,17,13,2,8,2,0,816,777,736,714,53,43,4,3,1,4,0,0,22,13,758,727,62,48,15,10,2,5,2,0,13,24,11,19,0,0,2,2,0,0,0,0,0,3,11,22,0,0,2,3,0,3,0,0 -050,01,019,Alabama,Cherokee County,1,4,1670,900,770,809,724,62,29,7,1,2,0,0,0,20,16,827,740,66,36,23,10,2,0,2,0,878,757,791,711,62,29,7,1,2,0,0,0,16,16,805,727,66,36,19,10,2,0,2,0,22,13,18,13,0,0,0,0,0,0,0,0,4,0,22,13,0,0,4,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,5,1258,643,615,587,580,35,25,7,2,1,1,0,0,13,7,600,587,35,28,20,5,1,3,0,0,627,604,575,569,35,25,3,2,1,1,0,0,13,7,588,576,35,28,16,5,1,3,0,0,16,11,12,11,0,0,4,0,0,0,0,0,0,0,12,11,0,0,4,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,6,1205,581,624,535,587,35,26,2,2,5,2,2,1,2,6,537,593,36,28,2,6,5,2,3,1,572,610,528,574,35,26,2,2,5,2,0,0,2,6,530,580,36,28,2,6,5,2,1,0,9,14,7,13,0,0,0,0,0,0,2,1,0,0,7,13,0,0,0,0,0,0,2,1 -050,01,019,Alabama,Cherokee County,1,7,1338,676,662,641,615,29,34,1,1,0,3,0,0,5,9,646,624,29,37,3,8,2,3,1,0,670,656,635,610,29,34,1,0,0,3,0,0,5,9,640,619,29,37,3,7,2,3,1,0,6,6,6,5,0,0,0,1,0,0,0,0,0,0,6,5,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,8,1638,828,810,781,773,35,30,3,2,0,1,1,0,8,4,789,777,36,30,8,6,2,1,1,0,817,796,772,760,35,30,2,2,0,0,0,0,8,4,780,764,36,30,7,6,2,0,0,0,11,14,9,13,0,0,1,0,0,1,1,0,0,0,9,13,0,0,1,0,0,1,1,0 -050,01,019,Alabama,Cherokee County,1,9,1742,912,830,858,781,39,26,6,6,0,5,1,0,8,12,864,793,41,26,13,15,1,6,1,3,900,821,846,773,39,26,6,6,0,4,1,0,8,12,852,785,41,26,13,15,1,5,1,3,12,9,12,8,0,0,0,0,0,1,0,0,0,0,12,8,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,1,10,1919,981,938,918,875,45,51,5,5,1,1,0,0,12,6,929,881,46,51,17,11,1,1,0,0,973,936,911,873,45,51,4,5,1,1,0,0,12,6,922,879,46,51,16,11,1,1,0,0,8,2,7,2,0,0,1,0,0,0,0,0,0,0,7,2,0,0,1,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,11,2101,1035,1066,960,985,58,61,9,10,2,2,0,0,6,8,965,993,59,61,15,17,2,3,0,0,1030,1060,955,979,58,61,9,10,2,2,0,0,6,8,960,987,59,61,15,17,2,3,0,0,5,6,5,6,0,0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,12,1909,964,945,897,873,47,50,6,6,3,4,0,0,11,12,908,885,48,51,16,17,3,5,1,0,959,943,892,872,47,50,6,6,3,3,0,0,11,12,903,884,48,51,16,17,3,4,1,0,5,2,5,1,0,0,0,0,0,1,0,0,0,0,5,1,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,1,13,2014,999,1015,933,962,49,42,9,2,1,1,0,0,7,8,939,969,50,43,15,10,2,1,0,0,997,1013,931,960,49,42,9,2,1,1,0,0,7,8,937,967,50,43,15,10,2,1,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,14,1646,774,872,739,831,22,27,5,5,0,1,0,0,8,8,747,839,22,27,13,13,0,1,0,0,771,868,736,827,22,27,5,5,0,1,0,0,8,8,744,835,22,27,13,13,0,1,0,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,15,1263,635,628,606,592,17,27,5,1,0,0,0,0,7,8,613,600,17,27,11,9,1,0,0,0,630,626,601,590,17,27,5,1,0,0,0,0,7,8,608,598,17,27,11,9,1,0,0,0,5,2,5,2,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,16,838,367,471,351,444,11,21,1,1,0,1,0,0,4,4,355,448,11,21,5,5,0,1,0,0,367,469,351,442,11,21,1,1,0,1,0,0,4,4,355,446,11,21,5,5,0,1,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,17,525,192,333,183,315,5,18,1,0,0,0,0,0,3,0,186,315,5,18,3,0,1,0,0,0,191,333,182,315,5,18,1,0,0,0,0,0,3,0,185,315,5,18,3,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,1,18,379,119,260,114,251,5,8,0,0,0,0,0,0,0,1,114,252,5,8,0,1,0,0,0,0,118,259,113,250,5,8,0,0,0,0,0,0,0,1,113,251,5,8,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,0,25984,12888,13096,11982,12244,618,592,81,55,20,35,4,2,183,168,12158,12410,677,644,199,161,29,48,13,7,12731,12933,11844,12098,617,591,72,50,20,30,1,0,177,164,12014,12260,674,642,186,155,29,40,10,5,157,163,138,146,1,1,9,5,0,5,3,2,6,4,144,150,3,2,13,6,0,8,3,2 -050,01,019,Alabama,Cherokee County,2,1,1390,718,672,663,610,25,35,4,2,1,3,0,1,25,21,688,631,47,53,8,5,1,4,2,1,694,650,641,593,24,34,4,1,1,2,0,0,24,20,665,613,45,51,8,4,1,3,2,0,24,22,22,17,1,1,0,1,0,1,0,1,1,1,23,18,2,2,0,1,0,1,0,1 -050,01,019,Alabama,Cherokee County,2,2,1523,735,788,660,717,46,39,4,4,3,6,0,0,22,22,682,738,62,51,10,10,3,9,0,2,721,759,648,690,46,39,3,3,3,5,0,0,21,22,669,711,61,51,9,9,3,8,0,2,14,29,12,27,0,0,1,1,0,1,0,0,1,0,13,27,1,0,1,1,0,1,0,0 -050,01,019,Alabama,Cherokee County,2,3,1627,827,800,745,732,53,43,6,5,1,4,0,0,22,16,767,748,62,48,17,13,2,8,2,0,814,776,734,713,53,43,4,3,1,4,0,0,22,13,756,726,62,48,15,10,2,5,2,0,13,24,11,19,0,0,2,2,0,0,0,0,0,3,11,22,0,0,2,3,0,3,0,0 -050,01,019,Alabama,Cherokee County,2,4,1669,900,769,809,723,62,29,7,1,2,0,0,0,20,16,827,739,66,36,23,10,2,0,2,0,878,756,791,710,62,29,7,1,2,0,0,0,16,16,805,726,66,36,19,10,2,0,2,0,22,13,18,13,0,0,0,0,0,0,0,0,4,0,22,13,0,0,4,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,5,1258,643,615,587,580,35,25,7,2,1,1,0,0,13,7,600,587,35,28,20,5,1,3,0,0,627,604,575,569,35,25,3,2,1,1,0,0,13,7,588,576,35,28,16,5,1,3,0,0,16,11,12,11,0,0,4,0,0,0,0,0,0,0,12,11,0,0,4,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,6,1204,581,623,535,586,35,26,2,2,5,2,2,1,2,6,537,592,36,28,2,6,5,2,3,1,572,609,528,573,35,26,2,2,5,2,0,0,2,6,530,579,36,28,2,6,5,2,1,0,9,14,7,13,0,0,0,0,0,0,2,1,0,0,7,13,0,0,0,0,0,0,2,1 -050,01,019,Alabama,Cherokee County,2,7,1337,675,662,640,615,29,34,1,1,0,3,0,0,5,9,645,624,29,37,3,8,2,3,1,0,669,656,634,610,29,34,1,0,0,3,0,0,5,9,639,619,29,37,3,7,2,3,1,0,6,6,6,5,0,0,0,1,0,0,0,0,0,0,6,5,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,8,1637,828,809,781,772,35,30,3,2,0,1,1,0,8,4,789,776,36,30,8,6,2,1,1,0,817,795,772,759,35,30,2,2,0,0,0,0,8,4,780,763,36,30,7,6,2,0,0,0,11,14,9,13,0,0,1,0,0,1,1,0,0,0,9,13,0,0,1,0,0,1,1,0 -050,01,019,Alabama,Cherokee County,2,9,1742,912,830,858,781,39,26,6,6,0,5,1,0,8,12,864,793,41,26,13,15,1,6,1,3,900,821,846,773,39,26,6,6,0,4,1,0,8,12,852,785,41,26,13,15,1,5,1,3,12,9,12,8,0,0,0,0,0,1,0,0,0,0,12,8,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,2,10,1919,981,938,918,875,45,51,5,5,1,1,0,0,12,6,929,881,46,51,17,11,1,1,0,0,973,936,911,873,45,51,4,5,1,1,0,0,12,6,922,879,46,51,16,11,1,1,0,0,8,2,7,2,0,0,1,0,0,0,0,0,0,0,7,2,0,0,1,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,11,2100,1035,1065,960,984,58,61,9,10,2,2,0,0,6,8,965,992,59,61,15,17,2,3,0,0,1030,1059,955,978,58,61,9,10,2,2,0,0,6,8,960,986,59,61,15,17,2,3,0,0,5,6,5,6,0,0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,12,1910,965,945,898,873,47,50,6,6,3,4,0,0,11,12,909,885,48,51,16,17,3,5,1,0,960,943,893,872,47,50,6,6,3,3,0,0,11,12,904,884,48,51,16,17,3,4,1,0,5,2,5,1,0,0,0,0,0,1,0,0,0,0,5,1,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,2,13,2015,1000,1015,934,962,49,42,9,2,1,1,0,0,7,8,940,969,50,43,15,10,2,1,0,0,998,1013,932,960,49,42,9,2,1,1,0,0,7,8,938,967,50,43,15,10,2,1,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,14,1647,775,872,740,831,22,27,5,5,0,1,0,0,8,8,748,839,22,27,13,13,0,1,0,0,772,868,737,827,22,27,5,5,0,1,0,0,8,8,745,835,22,27,13,13,0,1,0,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,15,1263,635,628,606,592,17,27,5,1,0,0,0,0,7,8,613,600,17,27,11,9,1,0,0,0,630,626,601,590,17,27,5,1,0,0,0,0,7,8,608,598,17,27,11,9,1,0,0,0,5,2,5,2,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,16,838,367,471,351,444,11,21,1,1,0,1,0,0,4,4,355,448,11,21,5,5,0,1,0,0,367,469,351,442,11,21,1,1,0,1,0,0,4,4,355,446,11,21,5,5,0,1,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,17,526,192,334,183,316,5,18,1,0,0,0,0,0,3,0,186,316,5,18,3,0,1,0,0,0,191,334,182,316,5,18,1,0,0,0,0,0,3,0,185,316,5,18,3,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,2,18,379,119,260,114,251,5,8,0,0,0,0,0,0,0,1,114,252,5,8,0,1,0,0,0,0,118,259,113,250,5,8,0,0,0,0,0,0,0,1,113,251,5,8,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,0,25968,12885,13083,11982,12242,617,583,80,54,22,36,4,2,180,166,12151,12400,684,645,179,144,45,54,9,10,12724,12917,11838,12093,616,582,72,49,22,31,1,0,175,162,12002,12247,680,642,168,137,45,49,6,8,161,166,144,149,1,1,8,5,0,5,3,2,5,4,149,153,4,3,11,7,0,5,3,2 -050,01,019,Alabama,Cherokee County,3,1,1380,721,659,662,599,28,35,4,2,1,3,0,1,26,19,686,617,45,49,12,4,5,5,0,3,699,639,642,584,27,34,4,1,1,2,0,0,25,18,665,601,44,48,11,2,5,4,0,2,22,20,20,15,1,1,0,1,0,1,0,1,1,1,21,16,1,1,1,2,0,1,0,1 -050,01,019,Alabama,Cherokee County,3,2,1514,728,786,654,715,45,38,4,4,4,7,0,0,21,22,675,737,59,51,10,11,5,7,1,2,713,757,641,688,45,38,3,3,4,6,0,0,20,22,661,710,58,51,9,10,5,6,1,2,15,29,13,27,0,0,1,1,0,1,0,0,1,0,14,27,1,0,1,1,0,1,0,0 -050,01,019,Alabama,Cherokee County,3,3,1627,829,798,745,728,53,43,7,6,1,4,0,0,23,17,764,744,68,51,17,14,2,6,1,0,816,774,734,709,53,43,5,4,1,4,0,0,23,14,753,722,68,49,15,11,2,6,1,0,13,24,11,19,0,0,2,2,0,0,0,0,0,3,11,22,0,2,2,3,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,4,1647,886,761,794,715,64,27,6,1,2,0,0,0,20,18,814,731,71,36,18,10,4,2,0,1,866,750,777,704,64,27,6,1,2,0,0,0,17,18,794,720,69,36,16,10,4,2,0,1,20,11,17,11,0,0,0,0,0,0,0,0,3,0,20,11,2,0,2,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,5,1288,659,629,605,594,35,25,5,2,1,1,0,0,13,7,617,601,36,25,15,5,3,3,1,2,642,617,591,582,35,25,2,2,1,1,0,0,13,7,603,589,36,25,12,5,3,3,1,2,17,12,14,12,0,0,3,0,0,0,0,0,0,0,14,12,0,0,3,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,6,1203,581,622,535,588,35,24,2,2,5,2,2,1,2,5,537,593,35,26,3,3,6,4,2,1,571,607,527,574,35,24,2,2,5,2,0,0,2,5,529,579,35,26,3,3,6,4,0,0,10,15,8,14,0,0,0,0,0,0,2,1,0,0,8,14,0,0,0,0,0,0,2,1 -050,01,019,Alabama,Cherokee County,3,7,1336,674,662,640,615,29,35,1,1,1,3,0,0,3,8,643,623,30,37,3,8,1,3,0,0,667,655,633,609,29,35,1,0,1,3,0,0,3,8,636,617,30,37,3,7,1,3,0,0,7,7,7,6,0,0,0,1,0,0,0,0,0,0,7,6,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,8,1626,820,806,775,770,33,29,3,2,0,1,1,0,8,4,783,774,35,30,7,2,2,4,1,0,808,791,765,756,33,29,2,2,0,0,0,0,8,4,773,760,35,30,6,2,2,3,0,0,12,15,10,14,0,0,1,0,0,1,1,0,0,0,10,14,0,0,1,0,0,1,1,0 -050,01,019,Alabama,Cherokee County,3,9,1735,906,829,853,780,39,28,5,5,0,5,1,0,8,11,861,791,42,30,8,13,2,6,1,0,894,818,841,770,39,28,5,5,0,4,1,0,8,11,849,781,42,30,8,13,2,5,1,0,12,11,12,10,0,0,0,0,0,1,0,0,0,0,12,10,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,3,10,1917,982,935,920,870,44,50,6,6,1,1,0,0,11,8,930,878,44,53,17,10,2,2,0,0,973,933,912,868,44,50,5,6,1,1,0,0,11,8,922,876,44,53,16,10,2,2,0,0,9,2,8,2,0,0,1,0,0,0,0,0,0,0,8,2,0,0,1,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,11,2095,1033,1062,957,985,58,60,10,8,2,2,0,0,6,7,963,991,60,63,13,14,2,2,1,0,1027,1056,951,979,58,60,10,8,2,2,0,0,6,7,957,985,60,63,13,14,2,2,1,0,6,6,6,6,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,12,1914,958,956,896,884,42,50,6,6,3,4,0,0,11,12,906,895,42,51,14,16,6,5,1,1,952,954,890,883,42,50,6,6,3,3,0,0,11,12,900,894,42,51,14,16,6,4,1,1,6,2,6,1,0,0,0,0,0,1,0,0,0,0,6,1,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,3,13,2018,1009,1009,943,956,50,42,8,2,1,1,0,0,7,8,950,963,50,44,13,10,3,1,0,0,1007,1007,941,954,50,42,8,2,1,1,0,0,7,8,948,961,50,44,13,10,3,1,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,14,1652,776,876,740,835,23,27,6,5,0,1,0,0,7,8,747,843,24,27,12,13,0,1,0,0,773,872,737,831,23,27,6,5,0,1,0,0,7,8,744,839,24,27,12,13,0,1,0,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,15,1263,635,628,606,594,17,26,5,1,0,0,0,0,7,7,613,601,19,26,8,6,2,2,0,0,630,625,601,591,17,26,5,1,0,0,0,0,7,7,608,598,19,26,8,6,2,2,0,0,5,3,5,3,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,16,845,376,469,359,444,12,19,1,1,0,1,0,0,4,4,362,447,13,20,5,5,0,1,0,0,376,467,359,442,12,19,1,1,0,1,0,0,4,4,362,445,13,20,5,5,0,1,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,17,528,190,338,181,321,5,17,1,0,0,0,0,0,3,0,183,321,6,17,4,0,0,0,0,0,189,338,180,321,5,17,1,0,0,0,0,0,3,0,182,321,6,17,4,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,3,18,380,122,258,117,249,5,8,0,0,0,0,0,0,0,1,117,250,5,9,0,0,0,0,0,0,121,257,116,248,5,8,0,0,0,0,0,0,0,1,116,249,5,9,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,0,25993,12901,13092,11995,12242,620,568,79,57,21,37,5,3,181,185,12159,12416,696,643,184,156,39,57,10,7,12728,12904,11839,12075,619,567,72,52,21,30,1,0,176,180,11999,12245,693,639,175,150,38,48,5,4,173,188,156,167,1,1,7,5,0,7,4,3,5,5,160,171,3,4,9,6,1,9,5,3 -050,01,019,Alabama,Cherokee County,4,1,1344,691,653,633,583,28,36,3,1,0,5,1,1,26,27,658,609,44,54,10,7,4,9,2,1,669,630,614,567,27,35,3,1,0,2,0,0,25,25,639,592,43,51,9,7,4,5,0,0,22,23,19,16,1,1,0,0,0,3,1,1,1,2,19,17,1,3,1,0,0,4,2,1 -050,01,019,Alabama,Cherokee County,4,2,1481,690,791,629,726,36,30,5,4,3,6,0,0,17,25,644,751,47,46,12,11,4,9,0,0,666,759,607,697,36,30,4,2,3,5,0,0,16,25,621,722,46,46,11,9,4,8,0,0,24,32,22,29,0,0,1,2,0,1,0,0,1,0,23,29,1,0,1,2,0,1,0,0 -050,01,019,Alabama,Cherokee County,4,3,1671,848,823,761,744,56,47,8,7,2,4,0,0,21,21,779,764,67,57,17,17,6,6,1,0,835,794,750,720,56,47,6,5,2,4,0,0,21,18,768,737,67,56,15,14,6,5,1,0,13,29,11,24,0,0,2,2,0,0,0,0,0,3,11,27,0,1,2,3,0,1,0,0 -050,01,019,Alabama,Cherokee County,4,4,1576,847,729,744,679,72,28,6,2,1,1,0,1,24,18,766,696,83,34,19,14,4,2,0,1,830,718,730,669,72,28,6,2,1,1,0,0,21,18,749,686,82,34,18,14,3,2,0,0,17,11,14,10,0,0,0,0,0,0,0,1,3,0,17,10,1,0,1,0,1,0,0,1 -050,01,019,Alabama,Cherokee County,4,5,1350,697,653,643,620,35,23,4,2,2,1,0,0,13,7,656,626,37,26,15,5,2,2,0,1,684,636,631,603,35,23,3,2,2,1,0,0,13,7,644,609,37,26,14,5,2,2,0,1,13,17,12,17,0,0,1,0,0,0,0,0,0,0,12,17,0,0,1,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,6,1209,583,626,533,593,38,20,3,2,3,3,2,1,4,7,537,600,40,23,5,5,3,4,2,1,570,608,523,576,38,20,2,2,3,3,0,0,4,7,527,583,40,23,4,5,3,4,0,0,13,18,10,17,0,0,1,0,0,0,2,1,0,0,10,17,0,0,1,0,0,0,2,1 -050,01,019,Alabama,Cherokee County,4,7,1347,688,659,651,612,31,36,0,1,3,2,0,0,3,8,654,620,33,38,1,7,3,2,0,0,675,652,638,606,31,36,0,0,3,2,0,0,3,8,641,614,33,38,1,6,3,2,0,0,13,7,13,6,0,0,0,1,0,0,0,0,0,0,13,6,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,8,1553,782,771,742,737,29,25,3,1,1,2,1,0,6,6,748,743,32,27,6,3,1,4,1,0,772,759,734,726,29,25,2,1,1,1,0,0,6,6,740,732,32,27,5,3,1,3,0,0,10,12,8,11,0,0,1,0,0,1,1,0,0,0,8,11,0,0,1,0,0,1,1,0 -050,01,019,Alabama,Cherokee County,4,9,1738,900,838,847,790,40,31,2,6,0,3,1,0,10,8,855,797,45,34,9,12,0,3,2,0,889,824,836,777,40,31,2,6,0,2,1,0,10,8,844,784,45,34,9,12,0,2,2,0,11,14,11,13,0,0,0,0,0,1,0,0,0,0,11,13,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,4,10,1878,977,901,915,835,44,47,7,6,1,3,0,0,10,10,925,845,45,49,14,13,3,4,0,0,967,897,906,831,44,47,6,6,1,3,0,0,10,10,916,841,45,49,13,13,3,4,0,0,10,4,9,4,0,0,1,0,0,0,0,0,0,0,9,4,0,0,1,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,11,2043,1015,1028,944,960,53,56,10,8,1,0,0,0,7,4,951,964,56,57,15,11,1,0,0,0,1007,1023,936,955,53,56,10,8,1,0,0,0,7,4,943,959,56,57,15,11,1,0,0,0,8,5,8,5,0,0,0,0,0,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,12,1948,952,996,897,920,37,51,5,8,3,3,0,0,10,14,905,934,41,52,13,18,3,5,0,1,948,993,893,918,37,51,5,8,3,2,0,0,10,14,901,932,41,52,13,18,3,4,0,1,4,3,4,2,0,0,0,0,0,1,0,0,0,0,4,2,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,4,13,2087,1054,1033,985,974,52,46,8,2,1,2,0,0,8,9,992,982,52,49,15,10,2,2,1,0,1051,1031,982,972,52,46,8,2,1,2,0,0,8,9,989,980,52,49,15,10,2,2,1,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,14,1657,784,873,742,831,27,29,8,4,0,1,0,0,7,8,748,838,29,31,14,10,0,2,0,0,781,869,739,827,27,29,8,4,0,1,0,0,7,8,745,834,29,31,14,10,0,2,0,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,15,1273,646,627,614,594,20,24,5,2,0,0,0,0,7,7,620,599,21,25,11,8,1,1,0,1,641,624,609,591,20,24,5,2,0,0,0,0,7,7,615,596,21,25,11,8,1,1,0,1,5,3,5,3,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,16,886,414,472,399,445,9,22,1,1,0,0,0,0,5,4,403,447,10,24,6,4,0,0,0,1,413,469,398,442,9,22,1,1,0,0,0,0,5,4,402,444,10,24,6,4,0,0,0,1,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,17,557,197,360,187,347,7,11,1,0,0,1,0,0,2,1,188,348,8,11,2,0,1,2,1,0,196,360,186,347,7,11,1,0,0,1,0,0,2,1,187,348,8,11,2,0,1,2,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,4,18,395,136,259,129,252,6,6,0,0,0,0,0,0,1,1,130,253,6,6,0,1,1,0,0,0,134,258,127,251,6,6,0,0,0,0,0,0,1,1,128,252,6,6,0,1,1,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,0,25961,12939,13022,12027,12164,611,578,78,60,24,39,5,4,194,177,12206,12333,690,652,184,157,48,52,14,10,12744,12823,11852,11993,610,570,69,55,24,32,1,1,188,172,12025,12158,687,643,173,148,46,45,10,6,195,199,175,171,1,8,9,5,0,7,4,3,6,5,181,175,3,9,11,9,2,7,4,4 -050,01,019,Alabama,Cherokee County,5,1,1325,716,609,646,540,28,41,4,2,1,5,1,1,36,20,680,559,51,53,12,6,6,8,5,3,689,575,624,520,27,33,3,2,1,2,0,0,34,18,656,538,50,44,10,5,5,5,4,1,27,34,22,20,1,8,1,0,0,3,1,1,2,2,24,21,1,9,2,1,1,3,1,2 -050,01,019,Alabama,Cherokee County,5,2,1457,714,743,663,679,27,32,5,3,4,3,0,0,15,26,674,704,38,47,10,11,5,5,2,2,687,717,638,654,27,32,4,2,4,3,0,0,14,26,648,679,37,47,9,10,5,5,2,2,27,26,25,25,0,0,1,1,0,0,0,0,1,0,26,25,1,0,1,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,3,1685,851,834,757,761,64,45,7,7,2,6,0,0,21,15,777,776,76,53,15,13,4,7,1,0,842,806,749,738,64,45,6,5,2,5,0,0,21,13,769,751,76,53,14,9,4,6,1,0,9,28,8,23,0,0,1,2,0,1,0,0,0,2,8,25,0,0,1,4,0,1,0,0 -050,01,019,Alabama,Cherokee County,5,4,1505,811,694,724,638,59,32,5,2,1,2,0,0,22,20,746,657,67,43,16,11,4,3,0,0,792,680,709,626,59,32,4,1,1,2,0,0,19,19,728,644,66,43,14,9,3,3,0,0,19,14,15,12,0,0,1,1,0,0,0,0,3,1,18,13,1,0,2,2,1,0,0,0 -050,01,019,Alabama,Cherokee County,5,5,1416,727,689,675,649,34,24,3,3,2,1,0,2,13,10,686,659,37,29,14,7,3,3,0,2,708,677,656,638,34,24,3,3,2,1,0,1,13,10,667,648,37,29,14,7,3,3,0,1,19,12,19,11,0,0,0,0,0,0,0,1,0,0,19,11,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,5,6,1202,563,639,509,606,39,19,4,3,3,3,1,1,7,7,516,612,42,23,9,9,5,3,1,1,548,617,497,585,39,19,2,3,3,3,0,0,7,7,504,591,42,23,7,9,5,3,0,0,15,22,12,21,0,0,2,0,0,0,1,1,0,0,12,21,0,0,2,0,0,0,1,1 -050,01,019,Alabama,Cherokee County,5,7,1330,683,647,640,604,35,34,0,0,3,2,1,0,4,7,644,611,38,37,1,5,3,2,1,0,668,639,626,596,35,34,0,0,3,2,0,0,4,7,630,603,38,37,1,5,3,2,0,0,15,8,14,8,0,0,0,0,0,0,1,0,0,0,14,8,0,0,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,5,8,1441,725,716,688,678,28,26,2,2,1,3,1,0,5,7,693,684,29,29,6,7,1,3,1,0,717,705,682,669,28,26,1,1,1,2,0,0,5,7,687,675,29,29,5,6,1,2,0,0,8,11,6,9,0,0,1,1,0,1,1,0,0,0,6,9,0,0,1,1,0,1,1,0 -050,01,019,Alabama,Cherokee County,5,9,1738,886,852,838,800,36,36,2,5,0,2,0,0,10,9,847,808,39,37,8,12,2,3,0,1,876,836,828,785,36,36,2,5,0,1,0,0,10,9,837,793,39,37,8,12,2,2,0,1,10,16,10,15,0,0,0,0,0,1,0,0,0,0,10,15,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,5,10,1886,996,890,935,836,41,40,7,4,1,3,1,0,11,7,946,842,43,42,15,9,2,3,1,1,981,886,922,832,41,40,5,4,1,3,1,0,11,7,933,838,43,42,13,9,2,3,1,1,15,4,13,4,0,0,2,0,0,0,0,0,0,0,13,4,0,0,2,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,11,1987,989,998,926,934,46,50,9,8,0,1,0,0,8,5,933,939,47,52,15,11,2,1,0,0,979,994,916,930,46,50,9,8,0,1,0,0,8,5,923,935,47,52,15,11,2,1,0,0,10,4,10,4,0,0,0,0,0,0,0,0,0,0,10,4,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,12,1979,971,1008,906,931,47,51,6,10,3,2,0,0,9,14,914,945,50,54,13,21,4,3,0,0,967,1004,902,927,47,51,6,10,3,2,0,0,9,14,910,941,50,54,13,21,4,3,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,13,2027,1013,1014,944,950,49,49,7,4,3,3,0,0,10,8,953,958,50,50,15,11,4,3,1,0,1009,1011,940,948,49,49,7,4,3,2,0,0,10,8,949,956,50,50,15,11,4,2,1,0,4,3,4,2,0,0,0,0,0,1,0,0,0,0,4,2,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,5,14,1805,869,936,818,890,36,33,9,4,0,1,0,0,6,8,824,898,38,34,11,10,2,2,0,0,865,932,814,886,36,33,9,4,0,1,0,0,6,8,820,894,38,34,11,10,2,2,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,15,1281,636,645,608,609,15,27,5,2,0,1,0,0,8,6,615,615,16,28,13,7,1,1,0,0,631,643,603,607,15,27,5,2,0,1,0,0,8,6,610,613,16,28,13,7,1,1,0,0,5,2,5,2,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,16,919,438,481,420,454,11,21,1,1,0,0,0,0,6,5,426,458,11,23,6,5,0,0,1,0,437,476,419,449,11,21,1,1,0,0,0,0,6,5,425,453,11,23,6,5,0,0,1,0,1,5,1,5,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,17,557,202,355,189,343,9,9,2,0,0,1,0,0,2,2,190,345,11,9,4,2,0,1,0,0,201,355,188,343,9,9,2,0,0,1,0,0,2,2,189,345,11,9,4,2,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,5,18,421,149,272,141,262,7,9,0,0,0,0,0,0,1,1,142,263,7,9,1,0,0,1,0,0,147,270,139,260,7,9,0,0,0,0,0,0,1,1,140,261,7,9,1,0,0,1,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,0,26022,12944,13078,12064,12224,586,558,77,61,25,46,5,3,187,186,12242,12396,656,635,188,163,43,65,10,10,12737,12864,11878,12035,583,553,69,56,25,39,1,0,181,181,12050,12202,648,628,178,157,42,56,6,7,207,214,186,189,3,5,8,5,0,7,4,3,6,5,192,194,8,7,10,6,1,9,4,3 -050,01,019,Alabama,Cherokee County,6,1,1273,671,602,617,546,28,28,3,2,1,9,0,0,22,17,639,563,43,41,8,5,2,9,1,1,653,577,602,529,27,24,2,2,1,6,0,0,21,16,623,545,41,36,7,5,2,6,1,1,18,25,15,17,1,4,1,0,0,3,0,0,1,1,16,18,2,5,1,0,0,3,0,0 -050,01,019,Alabama,Cherokee County,6,2,1500,749,751,689,685,29,33,4,2,4,4,1,1,22,26,711,709,45,50,10,11,4,6,1,1,716,712,661,650,27,32,4,1,4,4,0,0,20,25,681,673,41,48,10,10,4,6,0,0,33,39,28,35,2,1,0,1,0,0,1,1,2,1,30,36,4,2,0,1,0,0,1,1 -050,01,019,Alabama,Cherokee County,6,3,1669,843,826,756,754,59,39,7,7,2,6,0,0,19,20,775,774,68,46,15,16,3,10,1,0,831,795,745,728,59,39,6,5,2,5,0,0,19,18,764,746,68,46,14,13,3,8,1,0,12,31,11,26,0,0,1,2,0,1,0,0,0,2,11,28,0,0,1,3,0,2,0,0 -050,01,019,Alabama,Cherokee County,6,4,1497,785,712,703,647,53,39,5,4,1,2,0,0,23,20,726,664,65,51,16,12,3,6,0,0,769,694,691,631,53,39,4,3,1,2,0,0,20,19,711,647,63,51,13,11,2,5,0,0,16,18,12,16,0,0,1,1,0,0,0,0,3,1,15,17,2,0,3,1,1,1,0,0 -050,01,019,Alabama,Cherokee County,6,5,1449,762,687,718,652,28,17,3,3,1,1,0,1,12,13,729,663,33,22,14,9,1,3,0,4,745,675,701,641,28,17,3,3,1,1,0,0,12,13,712,652,33,22,14,9,1,3,0,3,17,12,17,11,0,0,0,0,0,0,0,1,0,0,17,11,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,6,6,1175,564,611,510,578,39,19,3,3,2,3,1,0,9,8,518,586,42,23,9,8,3,3,1,0,545,591,494,558,39,19,1,3,2,3,0,0,9,8,502,566,42,23,7,8,3,3,0,0,19,20,16,20,0,0,2,0,0,0,1,0,0,0,16,20,0,0,2,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,6,7,1338,676,662,628,619,37,35,1,0,4,2,1,1,5,5,633,623,39,37,5,3,4,3,1,1,659,651,612,609,37,35,1,0,4,2,0,0,5,5,617,613,39,37,5,3,4,3,0,0,17,11,16,10,0,0,0,0,0,0,1,1,0,0,16,10,0,0,0,0,0,0,1,1 -050,01,019,Alabama,Cherokee County,6,8,1422,705,717,672,677,24,25,2,2,0,3,0,0,7,10,679,686,24,28,5,6,3,6,1,1,695,707,663,669,24,25,1,1,0,2,0,0,7,10,670,678,24,28,4,5,3,5,1,1,10,10,9,8,0,0,1,1,0,1,0,0,0,0,9,8,0,0,1,1,0,1,0,0 -050,01,019,Alabama,Cherokee County,6,9,1692,840,852,803,810,27,33,2,4,0,1,1,0,7,4,810,814,28,33,7,7,2,1,1,1,827,836,791,795,27,33,2,4,0,0,0,0,7,4,798,799,28,33,7,7,2,0,0,1,13,16,12,15,0,0,0,0,0,1,1,0,0,0,12,15,0,0,0,0,0,1,1,0 -050,01,019,Alabama,Cherokee County,6,10,1890,1014,876,955,820,43,36,4,4,1,4,1,0,10,12,964,832,44,39,13,13,2,4,1,0,999,870,940,814,43,36,4,4,1,4,1,0,10,12,949,826,44,39,13,13,2,4,1,0,15,6,15,6,0,0,0,0,0,0,0,0,0,0,15,6,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,11,1953,973,980,907,917,46,49,11,8,1,1,0,0,8,5,914,922,47,50,18,12,2,1,0,0,960,976,896,913,46,49,9,8,1,1,0,0,8,5,903,918,47,50,16,12,2,1,0,0,13,4,11,4,0,0,2,0,0,0,0,0,0,0,11,4,0,0,2,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,12,2013,991,1022,929,938,44,58,8,10,3,2,0,0,7,14,935,952,46,60,14,22,3,2,0,0,988,1017,926,933,44,58,8,10,3,2,0,0,7,14,932,947,46,60,14,22,3,2,0,0,3,5,3,5,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,13,1936,967,969,900,906,46,46,5,5,3,4,0,0,13,8,912,914,46,47,15,12,6,4,1,0,962,967,895,905,46,46,5,5,3,3,0,0,13,8,907,913,46,47,15,12,6,3,1,0,5,2,5,1,0,0,0,0,0,1,0,0,0,0,5,1,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,6,14,1880,905,975,849,925,42,37,9,3,1,2,0,0,4,8,853,932,42,39,13,11,1,2,0,0,900,970,844,920,42,37,9,3,1,2,0,0,4,8,848,927,42,39,13,11,1,2,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,15,1356,658,698,629,665,14,24,5,3,1,0,0,0,9,6,636,671,15,24,11,7,4,2,1,0,652,695,623,662,14,24,5,3,1,0,0,0,9,6,630,668,15,24,11,7,4,2,1,0,6,3,6,3,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,16,982,474,508,453,479,11,21,3,1,0,1,0,0,7,6,459,483,13,24,10,5,0,2,0,1,472,504,451,475,11,21,3,1,0,1,0,0,7,6,457,479,13,24,10,5,0,2,0,1,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,17,562,216,346,203,330,10,12,2,0,0,1,0,0,1,3,204,332,10,13,3,3,0,1,0,0,215,345,202,329,10,12,2,0,0,1,0,0,1,3,203,331,10,13,3,3,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,6,18,435,151,284,143,276,6,7,0,0,0,0,0,0,2,1,145,276,6,8,2,1,0,0,0,0,149,282,141,274,6,7,0,0,0,0,0,0,2,1,143,274,6,8,2,1,0,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,0,25900,12893,13007,12013,12146,571,553,79,61,28,47,5,3,197,197,12198,12323,648,649,185,169,49,68,10,7,12707,12812,11846,11971,569,550,73,56,28,42,1,0,190,193,12024,12144,643,643,175,161,49,63,6,4,186,195,167,175,2,3,6,5,0,5,4,3,7,4,174,179,5,6,10,8,0,5,4,3 -050,01,019,Alabama,Cherokee County,7,1,1259,662,597,601,533,27,30,4,3,4,8,0,0,26,23,626,554,45,49,12,9,5,9,0,0,637,581,579,519,26,28,3,3,4,8,0,0,25,23,603,540,43,47,11,9,5,9,0,0,25,16,22,14,1,2,1,0,0,0,0,0,1,0,23,14,2,2,1,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,2,1421,738,683,687,623,21,32,4,2,1,4,1,1,24,21,711,643,38,46,10,5,2,7,1,3,720,655,671,599,21,32,4,1,1,3,0,0,23,20,694,618,38,45,9,4,2,6,0,2,18,28,16,24,0,0,0,1,0,1,1,1,1,1,17,25,0,1,1,1,0,1,1,1 -050,01,019,Alabama,Cherokee County,7,3,1648,814,834,738,761,48,38,5,5,4,7,0,0,19,23,754,782,58,52,13,16,6,8,2,0,799,802,725,733,48,38,4,4,4,6,0,0,18,21,740,752,57,51,12,13,6,7,2,0,15,32,13,28,0,0,1,1,0,1,0,0,1,2,14,30,1,1,1,3,0,1,0,0 -050,01,019,Alabama,Cherokee County,7,4,1492,781,711,703,646,48,40,6,6,2,3,0,0,22,16,724,660,58,51,15,13,6,4,0,0,769,690,695,629,47,39,5,4,2,3,0,0,20,15,714,642,56,49,13,10,6,4,0,0,12,21,8,17,1,1,1,2,0,0,0,0,2,1,10,18,2,2,2,3,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,5,1441,769,672,706,637,45,14,3,2,1,0,0,1,14,18,719,653,48,23,12,10,3,2,1,2,754,658,693,624,45,14,3,2,1,0,0,0,12,18,704,640,48,23,10,10,3,2,1,1,15,14,13,13,0,0,0,0,0,0,0,1,2,0,15,13,0,0,2,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,7,6,1250,621,629,566,595,39,21,4,3,2,2,1,0,9,8,574,603,42,26,9,8,4,3,1,0,598,616,546,582,39,21,2,3,2,2,0,0,9,8,554,590,42,26,7,8,4,3,0,0,23,13,20,13,0,0,2,0,0,0,1,0,0,0,20,13,0,0,2,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,7,7,1271,616,655,566,612,36,34,2,1,4,2,1,1,7,5,573,616,38,36,6,6,5,2,1,1,606,640,557,598,36,34,2,1,4,2,0,0,7,5,564,602,38,36,6,6,5,2,0,0,10,15,9,14,0,0,0,0,0,0,1,1,0,0,9,14,0,0,0,0,0,0,1,1 -050,01,019,Alabama,Cherokee County,7,8,1389,694,695,667,653,19,25,3,1,0,4,0,0,5,12,672,663,22,29,5,10,0,5,0,0,685,687,659,647,19,25,2,0,0,3,0,0,5,12,664,657,22,29,4,9,0,4,0,0,9,8,8,6,0,0,1,1,0,1,0,0,0,0,8,6,0,0,1,1,0,1,0,0 -050,01,019,Alabama,Cherokee County,7,9,1678,833,845,786,806,35,29,3,5,0,0,1,0,8,5,793,810,36,30,10,9,1,1,1,0,820,831,774,792,35,29,3,5,0,0,0,0,8,5,781,796,36,30,10,9,1,1,0,0,13,14,12,14,0,0,0,0,0,0,1,0,0,0,12,14,0,0,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,7,10,1829,980,849,924,797,39,31,4,5,2,5,1,0,10,11,933,807,42,33,12,15,2,6,1,0,970,842,914,791,39,31,4,5,2,4,1,0,10,11,923,801,42,33,12,15,2,5,1,0,10,7,10,6,0,0,0,0,0,1,0,0,0,0,10,6,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,7,11,1886,933,953,878,885,40,53,6,4,0,2,0,0,9,9,887,892,42,55,10,11,3,4,0,0,924,950,869,882,40,53,6,4,0,2,0,0,9,9,878,889,42,55,10,11,3,4,0,0,9,3,9,3,0,0,0,0,0,0,0,0,0,0,9,3,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,12,2041,1010,1031,943,958,48,52,9,10,2,0,0,0,8,11,949,968,50,55,16,19,2,1,1,0,1005,1023,938,950,48,52,9,10,2,0,0,0,8,11,944,960,50,55,16,19,2,1,1,0,5,8,5,8,0,0,0,0,0,0,0,0,0,0,5,8,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,13,1882,931,951,870,881,39,47,7,6,4,6,0,0,11,11,881,892,41,50,15,13,5,8,0,0,924,949,863,880,39,47,7,6,4,5,0,0,11,11,874,891,41,50,15,13,5,7,0,0,7,2,7,1,0,0,0,0,0,1,0,0,0,0,7,1,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,7,14,1961,958,1003,899,950,45,44,8,3,1,1,0,0,5,5,903,955,46,44,12,7,2,3,0,0,954,999,895,946,45,44,8,3,1,1,0,0,5,5,899,951,46,44,12,7,2,3,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,15,1408,668,740,641,710,14,20,4,3,1,1,0,0,8,6,649,716,14,23,11,7,1,1,1,0,664,738,637,708,14,20,4,3,1,1,0,0,8,6,645,714,14,23,11,7,1,1,1,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,16,1011,494,517,468,487,13,20,5,1,0,1,0,0,8,8,476,493,13,23,12,7,1,2,0,0,490,512,464,482,13,20,5,1,0,1,0,0,8,8,472,488,13,23,12,7,1,2,0,0,4,5,4,5,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,17,578,238,340,228,320,8,14,1,1,0,1,0,0,1,4,229,324,8,14,2,4,0,2,0,0,237,339,227,319,8,14,1,1,0,1,0,0,1,4,228,323,8,14,2,4,0,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,7,18,455,153,302,142,292,7,9,1,0,0,0,0,0,3,1,145,292,7,10,3,0,1,0,0,1,151,300,140,290,7,9,1,0,0,0,0,0,3,1,143,290,7,10,3,0,1,0,0,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,0,25739,12792,12947,11904,12055,564,560,85,69,32,49,5,3,202,211,12097,12257,642,647,197,183,50,68,13,12,12588,12761,11727,11894,561,555,76,61,30,44,1,0,193,207,11912,12092,634,639,184,174,46,63,9,9,204,186,177,161,3,5,9,8,2,5,4,3,9,4,185,165,8,8,13,9,4,5,4,3 -050,01,019,Alabama,Cherokee County,8,1,1228,647,581,592,518,21,28,3,4,6,8,0,0,25,23,615,541,37,43,12,10,6,10,2,0,621,563,571,504,20,24,2,4,4,8,0,0,24,23,593,527,35,39,11,10,4,10,2,0,26,18,21,14,1,4,1,0,2,0,0,0,1,0,22,14,2,4,1,0,2,0,0,0 -050,01,019,Alabama,Cherokee County,8,2,1414,750,664,694,605,22,32,5,2,3,3,1,1,25,21,719,626,38,46,13,9,5,4,1,1,724,637,671,582,22,32,4,1,3,2,0,0,24,20,695,602,37,45,12,8,5,3,0,0,26,27,23,23,0,0,1,1,0,1,1,1,1,1,24,24,1,1,1,1,0,1,1,1 -050,01,019,Alabama,Cherokee County,8,3,1526,725,801,659,718,43,44,3,4,3,8,0,0,17,27,675,744,53,59,10,12,4,11,0,3,714,777,649,696,43,44,3,3,3,7,0,0,16,27,664,722,52,59,10,11,4,10,0,3,11,24,10,22,0,0,0,1,0,1,0,0,1,0,11,22,1,0,0,1,0,1,0,0 -050,01,019,Alabama,Cherokee County,8,4,1500,776,724,696,657,50,41,8,6,2,4,0,0,20,16,715,673,58,49,17,15,4,4,2,0,761,698,685,636,48,41,6,4,2,4,0,0,20,13,704,649,56,47,15,12,4,4,2,0,15,26,11,21,2,0,2,2,0,0,0,0,0,3,11,24,2,2,2,3,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,5,1432,772,660,699,617,50,21,4,1,2,0,0,1,17,20,715,635,58,28,13,11,4,4,0,3,752,651,683,610,50,20,4,1,2,0,0,0,13,20,696,628,57,27,11,11,2,4,0,2,20,9,16,7,0,1,0,0,0,0,0,1,4,0,19,7,1,1,2,0,2,0,0,1 -050,01,019,Alabama,Cherokee County,8,6,1292,663,629,613,596,32,22,4,3,1,1,0,0,13,7,625,603,37,24,14,6,2,3,0,0,642,616,594,583,32,22,2,3,1,1,0,0,13,7,606,590,37,24,12,6,2,3,0,0,21,13,19,13,0,0,2,0,0,0,0,0,0,0,19,13,0,0,2,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,7,1170,548,622,500,577,31,30,2,3,5,3,2,1,8,8,508,585,33,33,8,7,6,4,2,1,535,613,491,571,31,30,2,1,5,3,0,0,6,8,497,579,32,33,6,5,6,4,0,0,13,9,9,6,0,0,0,2,0,0,2,1,2,0,11,6,1,0,2,2,0,0,2,1 -050,01,019,Alabama,Cherokee County,8,8,1338,661,677,630,635,27,26,0,2,0,3,0,0,4,11,634,645,28,28,3,11,0,4,0,0,653,666,622,625,27,26,0,1,0,3,0,0,4,11,626,635,28,28,3,10,0,4,0,0,8,11,8,10,0,0,0,1,0,0,0,0,0,0,8,10,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,9,1648,821,827,772,787,34,32,6,3,0,1,1,0,8,4,780,791,35,35,12,5,0,1,2,0,805,813,758,774,34,32,5,3,0,0,0,0,8,4,766,778,35,35,11,5,0,0,1,0,16,14,14,13,0,0,1,0,0,1,1,0,0,0,14,13,0,0,1,0,0,1,1,0 -050,01,019,Alabama,Cherokee County,8,10,1749,907,842,856,792,36,25,3,7,1,6,1,0,10,12,866,803,39,28,8,17,3,7,1,0,898,834,847,786,36,25,3,6,1,5,1,0,10,12,857,797,39,28,8,16,3,6,1,0,9,8,9,6,0,0,0,1,0,1,0,0,0,0,9,6,0,0,0,1,0,1,0,0 -050,01,019,Alabama,Cherokee County,8,11,1911,973,938,920,870,37,46,6,8,2,2,0,0,8,12,927,881,37,49,12,18,4,2,1,0,966,936,913,868,37,46,6,8,2,2,0,0,8,12,920,879,37,49,12,18,4,2,1,0,7,2,7,2,0,0,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,12,2061,1015,1046,944,972,52,57,12,10,1,0,0,0,6,7,950,979,55,59,15,15,1,0,0,1,1005,1038,936,964,52,57,10,10,1,0,0,0,6,7,942,971,55,59,13,15,1,0,0,1,10,8,8,8,0,0,2,0,0,0,0,0,0,0,8,8,0,0,2,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,13,1884,939,945,880,876,36,44,8,6,3,5,0,0,12,14,891,890,38,46,18,16,4,7,0,1,932,943,873,875,36,44,8,6,3,4,0,0,12,14,884,889,38,46,18,16,4,6,0,1,7,2,7,1,0,0,0,0,0,1,0,0,0,0,7,1,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,8,14,1999,989,1010,923,953,48,47,8,3,2,1,0,0,8,6,931,959,49,48,14,8,3,1,0,0,986,1006,920,949,48,47,8,3,2,1,0,0,8,6,928,955,49,48,14,8,3,1,0,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,15,1468,678,790,646,757,19,17,6,5,1,2,0,0,6,9,651,766,20,18,10,12,2,3,1,0,674,786,642,753,19,17,6,5,1,2,0,0,6,9,647,762,20,18,10,12,2,3,1,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,16,1031,504,527,483,495,9,23,5,1,0,1,0,0,7,7,490,500,9,26,10,6,1,1,1,1,498,523,477,491,9,23,5,1,0,1,0,0,7,7,484,496,9,26,10,6,1,1,1,1,6,4,6,4,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,17,620,271,349,258,326,8,15,1,1,0,1,0,0,4,6,262,331,9,17,4,5,0,2,0,1,271,347,258,324,8,15,1,1,0,1,0,0,4,6,262,329,9,17,4,5,0,2,0,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,8,18,468,153,315,139,304,9,10,1,0,0,0,0,0,4,1,143,305,9,11,4,0,1,0,0,0,151,314,137,303,9,10,1,0,0,0,0,0,4,1,141,304,9,11,4,0,1,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,0,25769,12789,12980,11891,12085,566,547,89,75,29,57,5,3,209,213,12084,12285,649,634,208,199,53,72,7,9,12587,12791,11715,11922,564,542,80,67,27,52,1,0,200,208,11900,12118,642,625,195,189,50,66,3,5,202,189,176,163,2,5,9,8,2,5,4,3,9,5,184,167,7,9,13,10,3,6,4,4 -050,01,019,Alabama,Cherokee County,9,1,1243,653,590,602,518,25,29,4,3,3,13,0,0,19,27,620,542,38,49,9,11,4,15,1,1,634,577,586,507,25,27,3,3,2,13,0,0,18,27,603,531,38,47,7,11,3,15,1,1,19,13,16,11,0,2,1,0,1,0,0,0,1,0,17,11,0,2,2,0,1,0,0,0 -050,01,019,Alabama,Cherokee County,9,2,1395,745,650,688,589,18,36,3,2,1,6,1,1,34,16,720,604,42,46,12,6,5,10,1,2,716,625,662,570,17,33,3,2,1,5,0,0,33,15,693,584,40,42,12,5,5,8,0,1,29,25,26,19,1,3,0,0,0,1,1,1,1,1,27,20,2,4,0,1,0,2,1,1 -050,01,019,Alabama,Cherokee County,9,3,1456,698,758,631,690,41,35,6,4,4,6,0,0,16,23,647,712,51,47,11,13,5,9,0,0,682,733,617,667,41,35,5,2,4,6,0,0,15,23,632,689,50,47,10,11,5,9,0,0,16,25,14,23,0,0,1,2,0,0,0,0,1,0,15,23,1,0,1,2,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,4,1553,803,750,717,676,51,37,9,7,3,4,0,0,23,26,738,700,63,51,19,18,6,5,0,2,791,721,708,652,50,37,7,5,3,4,0,0,23,23,729,674,62,49,17,15,6,5,0,1,12,29,9,24,1,0,2,2,0,0,0,0,0,3,9,26,1,2,2,3,0,0,0,1 -050,01,019,Alabama,Cherokee County,9,5,1333,713,620,642,577,50,22,4,3,1,1,0,1,16,16,657,592,57,31,12,11,3,1,0,1,698,611,631,569,50,22,4,3,1,1,0,0,12,16,642,584,55,31,10,11,3,1,0,0,15,9,11,8,0,0,0,0,0,0,0,1,4,0,15,8,2,0,2,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,9,6,1431,725,706,666,675,42,21,3,3,2,0,0,0,12,7,676,681,45,23,12,7,4,1,0,1,707,694,649,663,42,21,2,3,2,0,0,0,12,7,659,669,45,23,11,7,4,1,0,1,18,12,17,12,0,0,1,0,0,0,0,0,0,0,17,12,0,0,1,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,7,1146,538,608,492,566,26,21,4,4,2,4,2,1,12,12,502,578,31,27,12,10,3,4,2,1,524,595,483,557,26,21,3,2,2,4,0,0,10,11,492,568,30,26,10,8,2,4,0,0,14,13,9,9,0,0,1,2,0,0,2,1,2,1,10,10,1,1,2,2,1,0,2,1 -050,01,019,Alabama,Cherokee County,9,8,1333,670,663,635,626,28,29,0,2,2,1,0,0,5,5,640,631,29,31,4,5,2,1,0,0,657,652,622,616,28,29,0,1,2,1,0,0,5,5,627,621,29,31,4,4,2,1,0,0,13,11,13,10,0,0,0,1,0,0,0,0,0,0,13,10,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,9,1564,772,792,734,751,27,29,4,2,0,2,1,0,6,8,740,758,27,30,8,10,2,2,1,1,757,780,721,740,27,29,3,2,0,1,0,0,6,8,727,747,27,30,7,10,2,1,0,1,15,12,13,11,0,0,1,0,0,1,1,0,0,0,13,11,0,0,1,0,0,1,1,0 -050,01,019,Alabama,Cherokee County,9,10,1733,886,847,836,797,34,29,3,7,1,5,1,0,11,9,847,806,34,32,10,14,5,5,1,0,880,833,830,785,34,29,3,6,1,4,1,0,11,9,841,794,34,32,10,13,5,4,1,0,6,14,6,12,0,0,0,1,0,1,0,0,0,0,6,12,0,0,0,1,0,1,0,0 -050,01,019,Alabama,Cherokee County,9,11,1902,978,924,925,854,40,47,4,7,2,3,0,0,7,13,931,866,42,49,10,18,2,4,0,0,965,922,912,852,40,47,4,7,2,3,0,0,7,13,918,864,42,49,10,18,2,4,0,0,13,2,13,2,0,0,0,0,0,0,0,0,0,0,13,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,12,2028,992,1036,926,971,46,49,12,11,1,1,0,0,7,4,933,975,48,50,17,14,2,1,0,0,982,1030,918,965,46,49,10,11,1,1,0,0,7,4,925,969,48,50,15,14,2,1,0,0,10,6,8,6,0,0,2,0,0,0,0,0,0,0,8,6,0,0,2,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,13,1926,938,988,876,911,41,48,7,8,3,5,0,0,11,16,886,926,41,50,18,22,4,6,0,0,934,983,872,908,41,48,7,8,3,3,0,0,11,16,882,923,41,50,18,22,4,4,0,0,4,5,4,3,0,0,0,0,0,2,0,0,0,0,4,3,0,0,0,0,0,2,0,0 -050,01,019,Alabama,Cherokee County,9,14,2021,1023,998,955,939,47,47,10,3,3,2,0,0,8,7,962,946,48,47,18,10,3,3,0,0,1017,996,950,937,47,47,10,3,2,2,0,0,8,7,957,944,48,47,18,10,2,3,0,0,6,2,5,2,0,0,0,0,1,0,0,0,0,0,5,2,0,0,0,0,1,0,0,0 -050,01,019,Alabama,Cherokee County,9,15,1484,689,795,651,755,22,23,9,6,1,2,0,0,6,9,657,764,22,24,14,13,2,3,0,0,685,790,647,750,22,23,9,6,1,2,0,0,6,9,653,759,22,24,14,13,2,3,0,0,4,5,4,5,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,16,1055,504,551,481,522,11,19,5,2,0,1,0,0,7,7,485,529,14,19,11,9,0,1,1,0,499,548,476,519,11,19,5,2,0,1,0,0,7,7,480,526,14,19,11,9,0,1,1,0,5,3,5,3,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,17,657,299,358,285,337,8,15,1,1,0,0,0,0,5,5,290,341,8,17,6,5,0,0,0,0,298,356,284,335,8,15,1,1,0,0,0,0,5,5,289,339,8,17,6,5,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,9,18,509,163,346,149,331,9,11,1,0,0,1,0,0,4,3,153,334,9,11,5,3,1,1,0,0,161,345,147,330,9,11,1,0,0,1,0,0,4,3,151,333,9,11,5,3,1,1,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,0,25822,12831,12991,11949,12106,547,534,89,74,29,63,5,3,212,211,12143,12303,630,613,211,193,55,88,12,15,12617,12801,11761,11941,546,529,79,67,27,58,1,0,203,206,11948,12133,625,605,195,183,52,83,8,12,214,190,188,165,1,5,10,7,2,5,4,3,9,5,195,170,5,8,16,10,3,5,4,3 -050,01,019,Alabama,Cherokee County,10,1,1212,628,584,573,514,21,31,6,2,2,15,0,0,26,22,597,535,39,48,11,6,6,17,1,1,607,573,555,505,21,29,4,2,1,15,0,0,26,22,579,526,39,46,9,6,5,17,1,1,21,11,18,9,0,2,2,0,1,0,0,0,0,0,18,9,0,2,2,0,1,0,0,0 -050,01,019,Alabama,Cherokee County,10,2,1373,745,628,690,570,13,28,4,3,1,9,1,1,36,17,724,587,34,37,17,7,3,14,3,3,715,603,665,551,12,25,3,3,1,8,0,0,34,16,698,567,32,34,14,6,3,13,2,2,30,25,25,19,1,3,1,0,0,1,1,1,2,1,26,20,2,3,3,1,0,1,1,1 -050,01,019,Alabama,Cherokee County,10,3,1447,722,725,672,663,27,34,5,3,5,3,0,0,13,22,685,685,35,47,10,12,5,3,0,1,702,705,653,644,27,34,5,2,5,3,0,0,12,22,665,666,34,47,10,11,5,3,0,1,20,20,19,19,0,0,0,1,0,0,0,0,1,0,20,19,1,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,4,1582,804,778,710,704,61,40,9,7,3,6,0,0,21,21,727,722,74,50,19,16,7,9,0,3,794,750,701,680,61,40,8,5,3,6,0,0,21,19,718,696,74,49,18,12,7,9,0,3,10,28,9,24,0,0,1,2,0,0,0,0,0,2,9,26,0,1,1,4,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,5,1287,678,609,612,559,48,26,4,3,1,2,0,0,13,19,624,576,51,36,12,13,4,4,0,0,664,598,603,550,48,26,3,2,1,2,0,0,9,18,612,566,50,35,8,12,3,4,0,0,14,11,9,9,0,0,1,1,0,0,0,0,4,1,12,10,1,1,4,1,1,0,0,0 -050,01,019,Alabama,Cherokee County,10,6,1510,779,731,720,697,44,20,2,4,2,0,0,1,11,9,730,703,46,24,11,10,4,2,0,1,764,716,705,683,44,20,2,4,2,0,0,0,11,9,715,689,46,24,11,10,4,2,0,0,15,15,15,14,0,0,0,0,0,0,0,1,0,0,15,14,0,0,0,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,10,7,1160,526,634,480,594,27,19,4,5,2,4,1,1,12,11,491,605,32,23,12,11,3,5,1,1,508,616,465,580,27,19,2,3,2,4,0,0,12,10,476,590,32,22,10,9,3,5,0,0,18,18,15,14,0,0,2,2,0,0,1,1,0,1,15,15,0,1,2,2,0,0,1,1 -050,01,019,Alabama,Cherokee County,10,8,1310,666,644,620,609,35,26,0,1,2,2,1,0,8,6,626,615,38,28,4,5,4,2,2,0,651,635,608,600,35,26,0,1,2,2,0,0,6,6,612,606,37,28,3,5,4,2,1,0,15,9,12,9,0,0,0,0,0,0,1,0,2,0,14,9,1,0,1,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,10,9,1475,748,727,713,692,24,22,4,1,0,2,1,0,6,10,719,702,24,22,10,10,0,4,1,0,730,717,697,683,24,22,3,1,0,1,0,0,6,10,703,693,24,22,9,10,0,3,0,0,18,10,16,9,0,0,1,0,0,1,1,0,0,0,16,9,0,0,1,0,0,1,1,0 -050,01,019,Alabama,Cherokee County,10,10,1736,862,874,819,818,32,36,3,6,0,4,0,0,8,10,826,826,34,39,9,11,1,7,0,1,855,861,812,806,32,36,3,6,0,3,0,0,8,10,819,814,34,39,9,11,1,6,0,1,7,13,7,12,0,0,0,0,0,1,0,0,0,0,7,12,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,10,11,1847,965,882,918,826,31,37,4,7,2,3,1,0,9,9,926,835,33,40,11,13,3,3,1,0,954,877,907,822,31,37,4,6,2,3,1,0,9,9,915,831,33,40,11,12,3,3,1,0,11,5,11,4,0,0,0,1,0,0,0,0,0,0,11,4,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,12,2053,993,1060,938,993,40,50,8,9,1,2,0,0,6,6,943,998,40,51,13,13,3,4,0,1,984,1054,929,987,40,50,8,9,1,2,0,0,6,6,934,992,40,51,13,13,3,4,0,1,9,6,9,6,0,0,0,0,0,0,0,0,0,0,9,6,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,13,1936,953,983,883,906,46,48,10,9,3,4,0,0,11,16,894,922,49,49,18,23,3,4,0,1,947,978,879,902,46,48,8,9,3,3,0,0,11,16,890,918,49,49,16,23,3,3,0,1,6,5,4,4,0,0,2,0,0,1,0,0,0,0,4,4,0,0,2,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,10,14,1923,959,964,899,903,40,46,8,5,3,2,0,0,9,8,907,911,41,46,16,11,4,3,0,1,952,961,892,901,40,46,8,5,3,1,0,0,9,8,900,909,41,46,16,11,4,2,0,1,7,3,7,2,0,0,0,0,0,1,0,0,0,0,7,2,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,10,15,1647,783,864,737,822,29,25,10,6,2,2,0,0,5,9,742,830,29,26,14,14,4,2,1,1,778,859,733,817,29,25,10,6,1,2,0,0,5,9,738,825,29,26,14,14,3,2,1,1,5,5,4,5,0,0,0,0,1,0,0,0,0,0,4,5,0,0,0,0,1,0,0,0 -050,01,019,Alabama,Cherokee County,10,16,1080,513,567,493,535,7,22,5,2,0,2,0,0,8,6,500,541,9,22,13,8,0,2,0,0,508,566,488,534,7,22,5,2,0,2,0,0,8,6,495,540,9,22,13,8,0,2,0,0,5,1,5,1,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,17,707,329,378,312,358,10,13,1,1,0,0,0,0,6,6,318,364,10,13,6,6,0,2,1,0,328,374,311,354,10,13,1,1,0,0,0,0,6,6,317,360,10,13,6,6,0,2,1,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,10,18,537,178,359,160,343,12,11,2,0,0,1,0,0,4,4,164,346,12,12,5,4,1,1,1,0,176,358,158,342,12,11,2,0,0,1,0,0,4,4,162,345,12,12,5,4,1,1,1,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,0,26035,12893,13142,11976,12227,575,540,90,85,33,68,5,3,214,219,12176,12438,662,625,210,199,51,103,15,10,12668,12936,11787,12055,574,535,76,70,31,63,1,0,199,213,11973,12261,656,618,187,179,47,95,8,7,225,206,189,172,1,5,14,15,2,5,4,3,15,6,203,177,6,7,23,20,4,8,7,3 -050,01,019,Alabama,Cherokee County,11,1,1215,606,609,543,531,29,29,6,8,3,17,0,0,25,24,567,555,46,48,12,13,6,20,0,0,587,593,529,521,29,29,4,2,2,17,0,0,23,24,551,545,45,48,9,7,5,20,0,0,19,16,14,10,0,0,2,6,1,0,0,0,2,0,16,10,1,0,3,6,1,0,0,0 -050,01,019,Alabama,Cherokee County,11,2,1348,711,637,656,577,21,26,4,3,1,12,0,0,29,19,683,596,41,39,11,8,3,15,2,0,683,614,632,561,20,21,2,3,1,11,0,0,28,18,658,579,39,34,9,7,3,14,2,0,28,23,24,16,1,5,2,0,0,1,0,0,1,1,25,17,2,5,2,1,0,1,0,0 -050,01,019,Alabama,Cherokee County,11,3,1481,749,732,695,667,24,34,7,2,6,3,1,1,16,25,709,691,36,49,10,9,9,6,3,2,720,712,672,649,24,34,5,1,6,3,0,0,13,25,684,673,33,49,8,8,8,6,0,1,29,20,23,18,0,0,2,1,0,0,1,1,3,0,25,18,3,0,2,1,1,0,3,1 -050,01,019,Alabama,Cherokee County,11,4,1497,746,751,659,672,57,42,7,7,3,6,0,0,20,24,679,694,67,54,17,18,5,10,0,2,736,725,652,650,57,42,5,5,3,6,0,0,19,22,671,670,67,53,14,14,5,9,0,2,10,26,7,22,0,0,2,2,0,0,0,0,1,2,8,24,0,1,3,4,0,1,0,0 -050,01,019,Alabama,Cherokee County,11,5,1304,685,619,612,566,52,31,4,4,1,2,0,0,16,16,625,580,59,39,13,13,5,4,1,0,671,603,603,552,52,31,3,3,1,2,0,0,12,15,612,566,59,39,9,11,4,3,0,0,14,16,9,14,0,0,1,1,0,0,0,0,4,1,13,14,0,0,4,2,1,1,1,0 -050,01,019,Alabama,Cherokee County,11,6,1544,819,725,759,686,45,22,3,3,2,0,0,1,10,13,768,699,47,26,11,10,2,2,1,1,807,711,747,674,45,22,3,3,2,0,0,0,10,12,756,686,47,26,11,10,2,1,1,0,12,14,12,12,0,0,0,0,0,0,0,1,0,1,12,13,0,0,0,0,0,1,0,1 -050,01,019,Alabama,Cherokee County,11,7,1206,574,632,516,602,42,14,3,8,2,3,1,0,10,5,525,607,44,16,10,12,3,3,2,0,557,611,502,586,42,14,1,4,2,3,0,0,10,4,511,590,44,15,8,7,3,3,1,0,17,21,14,16,0,0,2,4,0,0,1,0,0,1,14,17,0,1,2,5,0,0,1,0 -050,01,019,Alabama,Cherokee County,11,8,1290,631,659,583,615,36,34,1,1,3,1,1,1,7,7,590,622,39,36,5,5,3,2,1,1,615,648,570,605,36,34,1,1,3,1,0,0,5,7,575,612,39,36,3,5,3,2,0,0,16,11,13,10,0,0,0,0,0,0,1,1,2,0,15,10,0,0,2,0,0,0,1,1 -050,01,019,Alabama,Cherokee County,11,9,1463,730,733,697,699,20,19,4,1,0,4,0,0,9,10,706,708,20,20,13,9,0,7,0,1,710,722,678,689,20,19,3,1,0,3,0,0,9,10,687,698,20,20,12,9,0,6,0,1,20,11,19,10,0,0,1,0,0,1,0,0,0,0,19,10,0,0,1,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,11,10,1739,863,876,814,831,36,33,2,5,1,3,1,0,9,4,823,835,37,35,10,7,1,3,1,0,851,863,805,819,36,33,2,5,1,2,0,0,7,4,812,823,37,35,8,7,1,2,0,0,12,13,9,12,0,0,0,0,0,1,1,0,2,0,11,12,0,0,2,0,0,1,1,0 -050,01,019,Alabama,Cherokee County,11,11,1856,974,882,929,825,30,31,3,7,2,4,1,0,9,15,938,840,33,32,8,18,3,6,1,1,961,878,916,822,30,31,3,6,2,4,1,0,9,15,925,837,33,32,8,17,3,6,1,1,13,4,13,3,0,0,0,1,0,0,0,0,0,0,13,3,0,0,0,1,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,12,2003,983,1020,925,954,41,51,8,7,1,2,0,0,8,6,933,960,43,52,13,10,1,4,1,1,975,1012,917,946,41,51,8,7,1,2,0,0,8,6,925,952,43,52,13,10,1,4,1,1,8,8,8,8,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,13,2072,1000,1072,935,985,41,57,12,11,3,3,0,0,9,16,944,1001,42,57,19,22,4,8,0,0,994,1065,931,979,41,57,10,11,3,2,0,0,9,16,940,995,42,57,17,22,4,7,0,0,6,7,4,6,0,0,2,0,0,1,0,0,0,0,4,6,0,0,2,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,11,14,1861,930,931,870,873,38,39,6,8,2,3,0,0,14,8,883,881,40,41,17,14,2,3,2,0,923,928,863,871,38,39,6,8,2,2,0,0,14,8,876,879,40,41,17,14,2,2,2,0,7,3,7,2,0,0,0,0,0,1,0,0,0,0,7,2,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,11,15,1684,809,875,760,826,34,32,9,5,2,2,0,0,4,10,764,835,34,34,13,14,2,3,0,0,804,869,756,820,34,32,9,5,1,2,0,0,4,10,760,829,34,34,13,14,1,3,0,0,5,6,4,6,0,0,0,0,1,0,0,0,0,0,4,6,0,0,0,0,1,0,0,0 -050,01,019,Alabama,Cherokee County,11,16,1141,536,605,514,575,7,20,6,3,1,1,0,0,8,6,520,581,10,20,14,7,1,3,0,0,531,603,509,573,7,20,6,3,1,1,0,0,8,6,515,579,10,20,14,7,1,3,0,0,5,2,5,2,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,17,763,347,416,326,391,11,16,3,2,0,1,0,0,7,6,332,396,12,17,9,6,1,2,0,1,346,413,325,388,11,16,3,2,0,1,0,0,7,6,331,393,12,17,9,6,1,2,0,1,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,11,18,568,200,368,183,352,11,10,2,0,0,1,0,0,4,5,187,357,12,10,5,4,0,2,0,0,197,366,180,350,11,10,2,0,0,1,0,0,4,5,184,355,12,10,5,4,0,2,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,0,26254,12977,13277,12082,12359,560,525,93,89,36,79,5,3,201,222,12266,12571,647,614,200,209,62,100,8,9,12748,13050,11882,12163,559,520,79,76,34,74,1,0,193,217,12059,12371,644,607,180,194,59,94,4,5,229,227,200,196,1,5,14,13,2,5,4,3,8,5,207,200,3,7,20,15,3,6,4,4 -050,01,019,Alabama,Cherokee County,12,1,1226,591,635,535,551,32,31,3,8,3,17,0,0,18,28,550,578,46,51,6,14,6,20,1,0,571,614,518,536,32,31,1,2,2,17,0,0,18,28,533,563,46,51,4,8,5,20,1,0,20,21,17,15,0,0,2,6,1,0,0,0,0,0,17,15,0,0,2,6,1,0,0,0 -050,01,019,Alabama,Cherokee County,12,2,1325,698,627,649,567,21,22,7,4,1,18,0,0,20,16,669,581,35,33,11,11,3,19,0,0,665,604,620,548,20,18,5,4,1,18,0,0,19,16,639,562,33,29,9,11,3,19,0,0,33,23,29,19,1,4,2,0,0,0,0,0,1,0,30,19,2,4,2,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,3,1495,767,728,714,660,21,33,7,3,3,4,1,1,21,27,731,686,35,47,14,12,7,7,1,3,743,707,693,644,21,32,5,2,3,3,0,0,21,26,710,670,35,46,12,10,7,6,0,1,24,21,21,16,0,1,2,1,0,1,1,1,0,1,21,16,0,1,2,2,0,1,1,2 -050,01,019,Alabama,Cherokee County,12,4,1475,721,754,645,682,44,35,7,6,6,5,0,0,19,26,663,707,53,50,15,16,9,6,0,1,707,715,634,646,44,35,5,5,6,5,0,0,18,24,651,669,53,49,12,14,9,6,0,1,14,39,11,36,0,0,2,1,0,0,0,0,1,2,12,38,0,1,3,2,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,5,1298,659,639,600,580,42,36,2,5,1,3,0,0,14,15,614,595,49,44,8,11,2,4,0,0,650,618,594,562,42,36,1,3,1,3,0,0,12,14,606,576,49,43,6,9,1,4,0,0,9,21,6,18,0,0,1,2,0,0,0,0,2,1,8,19,0,1,2,2,1,0,0,0 -050,01,019,Alabama,Cherokee County,12,6,1518,800,718,730,681,53,17,3,5,2,1,0,1,12,13,739,693,60,21,11,12,3,4,0,1,783,704,715,668,53,17,3,5,2,1,0,0,10,13,723,680,59,21,9,12,3,4,0,0,17,14,15,13,0,0,0,0,0,0,0,1,2,0,16,13,1,0,2,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,12,7,1292,627,665,571,629,40,20,3,4,3,5,1,0,9,7,577,636,44,21,8,8,5,7,3,0,605,653,552,618,40,20,1,4,3,5,0,0,9,6,558,624,44,21,6,8,5,6,2,0,22,12,19,11,0,0,2,0,0,0,1,0,0,1,19,12,0,0,2,0,0,1,1,0 -050,01,019,Alabama,Cherokee County,12,8,1272,610,662,558,624,34,27,2,4,5,2,1,1,10,4,568,628,36,29,9,6,7,2,1,1,594,647,545,612,34,27,2,2,5,2,0,0,8,4,553,616,36,29,7,4,7,2,0,0,16,15,13,12,0,0,0,2,0,0,1,1,2,0,15,12,0,0,2,2,0,0,1,1 -050,01,019,Alabama,Cherokee County,12,9,1416,711,705,681,668,19,21,5,0,0,5,0,0,6,11,687,677,21,25,9,8,0,7,0,0,692,696,663,660,19,21,4,0,0,4,0,0,6,11,669,669,21,25,8,8,0,6,0,0,19,9,18,8,0,0,1,0,0,1,0,0,0,0,18,8,0,0,1,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,12,10,1728,868,860,810,822,44,27,3,5,1,1,1,0,9,5,818,826,45,30,11,8,2,1,1,0,858,848,801,810,44,27,3,5,1,1,0,0,9,5,809,814,45,30,11,8,2,1,0,0,10,12,9,12,0,0,0,0,0,0,1,0,0,0,9,12,0,0,0,0,0,0,1,0 -050,01,019,Alabama,Cherokee County,12,11,1826,938,888,899,834,26,29,3,8,2,6,1,0,7,11,906,845,28,29,7,18,3,6,1,1,930,881,891,829,26,29,3,7,2,5,1,0,7,11,898,840,28,29,7,17,3,5,1,1,8,7,8,5,0,0,0,1,0,1,0,0,0,0,8,5,0,0,0,1,0,1,0,0 -050,01,019,Alabama,Cherokee County,12,12,1979,975,1004,922,941,37,47,7,6,1,1,0,0,8,9,930,950,38,47,12,12,3,4,0,0,965,996,912,933,37,47,7,6,1,1,0,0,8,9,920,942,38,47,12,12,3,4,0,0,10,8,10,8,0,0,0,0,0,0,0,0,0,0,10,8,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,13,2188,1073,1115,1003,1036,46,52,13,13,2,1,0,0,9,13,1012,1049,48,53,19,24,4,2,0,0,1068,1106,1000,1028,46,52,11,13,2,0,0,0,9,13,1009,1041,48,53,17,24,4,1,0,0,5,9,3,8,0,0,2,0,0,1,0,0,0,0,3,8,0,0,2,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,12,14,1879,927,952,867,887,37,41,8,9,3,5,0,0,12,10,878,897,39,43,18,18,4,5,0,0,920,949,860,885,37,41,8,9,3,4,0,0,12,10,871,895,39,43,18,18,4,4,0,0,7,3,7,2,0,0,0,0,0,1,0,0,0,0,7,2,0,0,0,0,0,1,0,0 -050,01,019,Alabama,Cherokee County,12,15,1797,892,905,842,854,34,40,8,3,2,1,0,0,6,7,847,860,36,41,13,10,2,1,0,0,885,901,836,850,34,40,8,3,1,1,0,0,6,7,841,856,36,41,13,10,1,1,0,0,7,4,6,4,0,0,0,0,1,0,0,0,0,0,6,4,0,0,0,0,1,0,0,0 -050,01,019,Alabama,Cherokee County,12,16,1202,560,642,535,612,11,18,5,3,1,2,0,0,8,7,543,619,12,19,11,9,2,2,0,0,555,638,530,608,11,18,5,3,1,2,0,0,8,7,538,615,12,19,11,9,2,2,0,0,5,4,5,4,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,17,756,343,413,320,388,10,14,5,2,0,1,0,0,8,8,328,396,12,16,11,7,0,2,0,1,342,410,319,385,10,14,5,2,0,1,0,0,8,8,327,393,12,16,11,7,0,2,0,1,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,12,18,582,217,365,201,343,9,15,2,1,0,1,0,0,5,5,206,348,10,15,7,5,0,1,0,1,215,363,199,341,9,15,2,1,0,1,0,0,5,5,204,346,10,15,7,5,0,1,0,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,0,26294,13032,13262,12107,12350,577,512,94,92,40,84,5,3,209,221,12295,12553,667,613,210,209,61,104,9,10,12782,13030,11887,12159,576,505,80,72,38,79,1,0,200,215,12066,12357,665,605,188,185,59,98,5,6,250,232,220,191,1,7,14,20,2,5,4,3,9,6,229,196,2,8,22,24,2,6,4,4 -050,01,019,Alabama,Cherokee County,13,1,1214,599,615,541,542,33,22,3,8,1,16,0,0,21,27,561,568,48,43,8,16,3,18,0,0,570,592,514,525,33,22,1,2,1,16,0,0,21,27,534,551,48,43,6,10,3,18,0,0,29,23,27,17,0,0,2,6,0,0,0,0,0,0,27,17,0,0,2,6,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,2,1303,685,618,641,550,18,26,2,5,5,21,0,0,19,16,656,565,31,38,8,7,7,22,2,2,659,597,619,535,17,22,1,3,4,21,0,0,18,16,633,550,30,34,6,5,6,22,2,2,26,21,22,15,1,4,1,2,1,0,0,0,1,0,23,15,1,4,2,2,1,0,0,0 -050,01,019,Alabama,Cherokee County,13,3,1447,750,697,696,643,21,24,6,2,4,2,1,1,22,25,717,667,35,39,13,10,6,5,1,1,716,675,665,626,21,23,4,1,4,1,0,0,22,24,686,649,35,38,11,8,6,4,0,0,34,22,31,17,0,1,2,1,0,1,1,1,0,1,31,18,0,1,2,2,0,1,1,1 -050,01,019,Alabama,Cherokee County,13,4,1390,672,718,599,643,41,37,7,6,5,6,0,0,20,26,617,666,52,51,17,17,6,10,0,2,660,687,591,614,41,37,5,5,5,6,0,0,18,25,607,637,52,51,13,15,6,9,0,2,12,31,8,29,0,0,2,1,0,0,0,0,2,1,10,29,0,0,4,2,0,1,0,0 -050,01,019,Alabama,Cherokee County,13,5,1360,680,680,618,621,45,31,5,8,1,3,0,0,11,17,629,636,51,39,9,15,2,5,0,2,669,648,609,597,45,31,3,3,1,3,0,0,11,14,620,609,51,38,7,9,2,5,0,1,11,32,9,24,0,0,2,5,0,0,0,0,0,3,9,27,0,1,2,6,0,0,0,1 -050,01,019,Alabama,Cherokee County,13,6,1555,828,727,758,690,52,18,4,3,2,1,0,1,12,14,769,702,55,25,12,11,4,3,0,1,807,715,741,679,52,18,4,3,2,1,0,0,8,14,748,691,55,25,8,11,4,3,0,0,21,12,17,11,0,0,0,0,0,0,0,1,4,0,21,11,0,0,4,0,0,0,0,1 -050,01,019,Alabama,Cherokee County,13,7,1338,687,651,628,617,41,19,3,5,2,5,0,0,13,5,637,622,47,20,10,8,6,6,1,0,664,640,607,609,41,19,1,3,2,5,0,0,13,4,616,613,47,20,8,5,6,6,1,0,23,11,21,8,0,0,2,2,0,0,0,0,0,1,21,9,0,0,2,3,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,8,1203,578,625,524,589,34,20,2,4,6,4,2,1,10,7,534,596,39,23,7,8,6,4,2,1,559,613,509,580,34,20,2,2,6,4,0,0,8,7,517,587,38,23,6,6,6,4,0,0,19,12,15,9,0,0,0,2,0,0,2,1,2,0,17,9,1,0,1,2,0,0,2,1 -050,01,019,Alabama,Cherokee County,13,9,1374,668,706,635,667,27,24,0,1,1,4,0,0,5,10,640,677,29,24,2,9,2,5,0,1,656,692,623,653,27,24,0,1,1,4,0,0,5,10,628,663,29,24,2,9,2,5,0,1,12,14,12,14,0,0,0,0,0,0,0,0,0,0,12,14,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,10,1717,858,859,801,821,39,27,8,3,0,2,1,0,9,6,809,827,41,31,14,5,1,2,2,0,844,847,789,810,39,27,7,3,0,1,0,0,9,6,797,816,41,31,13,5,1,1,1,0,14,12,12,11,0,0,1,0,0,1,1,0,0,0,12,11,0,0,1,0,0,1,1,0 -050,01,019,Alabama,Cherokee County,13,11,1789,926,863,879,818,33,23,3,6,2,7,1,0,8,9,886,826,35,25,9,14,3,7,1,0,917,854,870,811,33,23,3,5,2,6,1,0,8,9,877,819,35,25,9,13,3,6,1,0,9,9,9,7,0,0,0,1,0,1,0,0,0,0,9,7,0,0,0,1,0,1,0,0 -050,01,019,Alabama,Cherokee County,13,12,2018,1000,1018,945,948,37,49,5,8,2,2,0,0,11,11,956,958,38,51,15,16,2,4,0,0,993,1010,938,942,37,47,5,8,2,2,0,0,11,11,949,952,38,49,15,16,2,4,0,0,7,8,7,6,0,2,0,0,0,0,0,0,0,0,7,6,0,2,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,13,2204,1086,1118,1014,1041,50,57,14,13,1,0,0,0,7,7,1021,1047,53,59,17,17,2,2,0,0,1076,1111,1006,1034,50,57,12,13,1,0,0,0,7,7,1013,1040,53,59,15,17,2,2,0,0,10,7,8,7,0,0,2,0,0,0,0,0,0,0,8,7,0,0,2,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,14,1941,949,992,891,923,36,42,7,8,3,6,0,0,12,13,903,934,37,45,18,20,3,6,0,0,942,988,884,921,36,42,7,8,3,4,0,0,12,13,896,932,37,45,18,20,3,4,0,0,7,4,7,2,0,0,0,0,0,2,0,0,0,0,7,2,0,0,0,0,0,2,0,0 -050,01,019,Alabama,Cherokee County,13,15,1851,933,918,877,863,35,45,9,4,3,0,0,0,9,6,885,868,37,48,17,8,3,0,0,0,926,913,871,858,35,45,9,4,2,0,0,0,9,6,879,863,37,48,17,8,2,0,0,0,7,5,6,5,0,0,0,0,1,0,0,0,0,0,6,5,0,0,0,0,1,0,0,0 -050,01,019,Alabama,Cherokee County,13,16,1220,549,671,519,636,16,17,7,5,1,3,0,0,6,10,523,645,18,19,12,14,2,3,0,0,545,667,515,632,16,17,7,5,1,3,0,0,6,10,519,641,18,19,12,14,2,3,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,17,763,343,420,321,393,8,17,7,2,0,1,0,0,7,7,327,399,9,18,13,9,1,1,0,0,340,418,318,391,8,17,7,2,0,1,0,0,7,7,324,397,9,18,13,9,1,1,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,019,Alabama,Cherokee County,13,18,607,241,366,220,345,11,14,2,1,1,1,0,0,7,5,225,350,12,15,9,5,2,1,0,0,239,363,218,342,11,14,2,1,1,1,0,0,7,5,223,347,12,15,9,5,2,1,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,1,0,43643,21608,22035,19020,19436,2143,2192,112,98,63,83,59,26,211,200,19218,19627,2252,2294,202,184,93,107,66,32,19632,20591,17279,18149,2051,2123,71,67,52,73,5,6,174,173,17440,18314,2140,2207,144,139,78,95,9,11,1976,1444,1741,1287,92,69,41,31,11,10,54,20,37,27,1778,1313,112,87,58,45,15,12,57,21 -050,01,021,Alabama,Chilton County,1,1,2996,1474,1522,1217,1301,207,173,7,3,4,6,7,3,32,36,1248,1336,234,204,13,7,7,8,8,4,1227,1282,998,1078,194,164,5,1,4,6,0,0,26,33,1023,1110,216,193,8,3,7,8,0,1,247,240,219,223,13,9,2,2,0,0,7,3,6,3,225,226,18,11,5,4,0,0,8,3 -050,01,021,Alabama,Chilton County,1,2,3075,1550,1525,1349,1313,146,168,9,11,4,2,2,1,40,30,1386,1343,176,193,18,15,7,2,4,2,1339,1343,1162,1152,138,159,2,3,2,1,0,1,35,27,1194,1179,166,183,7,5,5,1,2,2,211,182,187,161,8,9,7,8,2,1,2,0,5,3,192,164,10,10,11,10,2,1,2,0 -050,01,021,Alabama,Chilton County,1,3,2998,1575,1423,1343,1220,193,155,11,9,4,9,0,1,24,29,1367,1248,210,172,17,21,6,13,0,1,1411,1289,1196,1110,183,145,7,4,4,6,0,0,21,24,1217,1133,199,158,11,13,6,10,0,0,164,134,147,110,10,10,4,5,0,3,0,1,3,5,150,115,11,14,6,8,0,3,0,1 -050,01,021,Alabama,Chilton County,1,4,2983,1562,1421,1314,1217,204,173,13,11,7,8,5,1,19,11,1333,1227,213,181,18,15,13,9,5,2,1424,1322,1197,1129,196,168,6,8,6,7,2,0,17,10,1214,1138,203,175,11,11,12,8,2,1,138,99,117,88,8,5,7,3,1,1,3,1,2,1,119,89,10,6,7,4,1,1,3,1 -050,01,021,Alabama,Chilton County,1,5,2573,1322,1251,1124,1097,161,138,6,1,6,4,15,5,10,6,1133,1103,166,139,8,4,10,6,15,5,1125,1144,958,1001,150,131,3,0,5,4,1,2,8,6,965,1007,155,132,4,3,8,6,1,2,197,107,166,96,11,7,3,1,1,0,14,3,2,0,168,96,11,7,4,1,2,0,14,3 -050,01,021,Alabama,Chilton County,1,6,2714,1349,1365,1162,1184,151,151,4,6,8,8,16,5,8,11,1167,1195,157,155,9,13,9,9,16,5,1136,1208,980,1043,143,144,1,6,7,8,0,1,5,6,982,1049,147,146,4,9,8,9,0,1,213,157,182,141,8,7,3,0,1,0,16,4,3,5,185,146,10,9,5,4,1,0,16,4 -050,01,021,Alabama,Chilton County,1,7,2982,1476,1506,1295,1326,156,155,8,8,7,7,4,4,6,6,1301,1331,157,157,13,11,7,9,5,5,1232,1334,1080,1175,142,145,3,4,4,5,0,0,3,5,1083,1179,142,146,6,6,4,7,0,1,244,172,215,151,14,10,5,4,3,2,4,4,3,1,218,152,15,11,7,5,3,2,5,4 -050,01,021,Alabama,Chilton County,1,8,3023,1539,1484,1390,1297,116,155,14,7,7,10,3,3,9,12,1398,1308,119,158,19,14,9,13,3,3,1353,1355,1219,1180,112,153,11,3,5,9,0,0,6,10,1224,1189,113,154,16,10,6,12,0,0,186,129,171,117,4,2,3,4,2,1,3,3,3,2,174,119,6,4,3,4,3,1,3,3 -050,01,021,Alabama,Chilton County,1,9,2887,1457,1430,1326,1280,106,123,8,8,7,3,3,2,7,14,1333,1294,107,125,14,19,7,4,3,2,1308,1342,1195,1202,100,119,2,5,6,3,1,1,4,12,1199,1214,100,119,6,16,6,4,1,1,149,88,131,78,6,4,6,3,1,0,2,1,3,2,134,80,7,6,8,3,1,0,2,1 -050,01,021,Alabama,Chilton County,1,10,3017,1531,1486,1363,1313,133,154,8,8,4,5,3,0,20,6,1382,1319,139,157,22,11,6,6,4,0,1445,1439,1288,1271,129,152,8,7,4,4,0,0,16,5,1303,1276,131,154,21,9,6,5,1,0,86,47,75,42,4,2,0,1,0,1,3,0,4,1,79,43,8,3,1,2,0,1,3,0 -050,01,021,Alabama,Chilton County,1,11,3180,1600,1580,1421,1401,162,153,9,8,2,6,1,0,5,12,1426,1412,162,155,14,17,2,8,1,0,1551,1545,1376,1368,159,152,8,8,2,6,1,0,5,11,1381,1378,159,153,13,17,2,8,1,0,49,35,45,33,3,1,1,0,0,0,0,0,0,1,45,34,3,2,1,0,0,0,0,0 -050,01,021,Alabama,Chilton County,1,12,2807,1370,1437,1220,1271,135,147,7,6,2,6,0,1,6,6,1225,1277,136,148,10,10,4,6,1,2,1332,1416,1183,1250,134,147,7,6,2,6,0,1,6,6,1188,1256,135,148,10,10,4,6,1,2,38,21,37,21,1,0,0,0,0,0,0,0,0,0,37,21,1,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,1,13,2487,1208,1279,1094,1178,102,89,2,1,0,3,0,0,10,8,1104,1185,103,90,7,6,4,5,1,1,1179,1267,1069,1169,101,89,2,1,0,2,0,0,7,6,1076,1174,102,90,7,6,2,3,0,0,29,12,25,9,1,0,0,0,0,1,0,0,3,2,28,11,1,0,0,0,2,2,1,1 -050,01,021,Alabama,Chilton County,1,14,1966,955,1011,887,924,59,78,4,5,0,2,0,0,5,2,892,926,59,78,8,7,1,2,0,0,949,1003,881,916,59,78,4,5,0,2,0,0,5,2,886,918,59,78,8,7,1,2,0,0,6,8,6,8,0,0,0,0,0,0,0,0,0,0,6,8,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,1,15,1479,692,787,643,725,40,52,1,2,1,3,0,0,7,5,649,729,41,53,8,5,1,5,0,0,686,780,637,720,40,50,1,2,1,3,0,0,7,5,643,724,41,51,8,5,1,5,0,0,6,7,6,5,0,2,0,0,0,0,0,0,0,0,6,5,0,2,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,1,16,1130,489,641,450,584,39,50,0,3,0,1,0,0,0,3,450,587,39,50,0,6,0,1,0,0,483,639,444,582,39,50,0,3,0,1,0,0,0,3,444,585,39,50,0,6,0,1,0,0,6,2,6,2,0,0,0,0,0,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,1,17,729,284,445,256,405,24,37,1,1,0,0,0,0,3,2,258,406,25,38,4,2,0,1,0,0,280,441,253,403,23,36,1,1,0,0,0,0,3,1,255,404,24,36,4,2,0,0,0,0,4,4,3,2,1,1,0,0,0,0,0,0,0,1,3,2,1,2,0,0,0,1,0,0 -050,01,021,Alabama,Chilton County,1,18,617,175,442,166,400,9,41,0,0,0,0,0,0,0,1,166,401,9,41,0,1,0,0,0,0,172,442,163,400,9,41,0,0,0,0,0,0,0,1,163,401,9,41,0,1,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,2,0,43625,21600,22025,19012,19427,2143,2192,112,97,63,83,59,26,211,200,19210,19618,2252,2294,202,183,93,107,66,32,19624,20581,17271,18140,2051,2123,71,66,52,73,5,6,174,173,17432,18305,2140,2207,144,138,78,95,9,11,1976,1444,1741,1287,92,69,41,31,11,10,54,20,37,27,1778,1313,112,87,58,45,15,12,57,21 -050,01,021,Alabama,Chilton County,2,1,2995,1474,1521,1217,1300,207,173,7,3,4,6,7,3,32,36,1248,1335,234,204,13,7,7,8,8,4,1227,1281,998,1077,194,164,5,1,4,6,0,0,26,33,1023,1109,216,193,8,3,7,8,0,1,247,240,219,223,13,9,2,2,0,0,7,3,6,3,225,226,18,11,5,4,0,0,8,3 -050,01,021,Alabama,Chilton County,2,2,3075,1550,1525,1349,1313,146,168,9,11,4,2,2,1,40,30,1386,1343,176,193,18,15,7,2,4,2,1339,1343,1162,1152,138,159,2,3,2,1,0,1,35,27,1194,1179,166,183,7,5,5,1,2,2,211,182,187,161,8,9,7,8,2,1,2,0,5,3,192,164,10,10,11,10,2,1,2,0 -050,01,021,Alabama,Chilton County,2,3,2999,1576,1423,1344,1220,193,155,11,9,4,9,0,1,24,29,1368,1248,210,172,17,21,6,13,0,1,1412,1289,1197,1110,183,145,7,4,4,6,0,0,21,24,1218,1133,199,158,11,13,6,10,0,0,164,134,147,110,10,10,4,5,0,3,0,1,3,5,150,115,11,14,6,8,0,3,0,1 -050,01,021,Alabama,Chilton County,2,4,2983,1562,1421,1314,1217,204,173,13,11,7,8,5,1,19,11,1333,1227,213,181,18,15,13,9,5,2,1424,1322,1197,1129,196,168,6,8,6,7,2,0,17,10,1214,1138,203,175,11,11,12,8,2,1,138,99,117,88,8,5,7,3,1,1,3,1,2,1,119,89,10,6,7,4,1,1,3,1 -050,01,021,Alabama,Chilton County,2,5,2572,1321,1251,1123,1097,161,138,6,1,6,4,15,5,10,6,1132,1103,166,139,8,4,10,6,15,5,1124,1144,957,1001,150,131,3,0,5,4,1,2,8,6,964,1007,155,132,4,3,8,6,1,2,197,107,166,96,11,7,3,1,1,0,14,3,2,0,168,96,11,7,4,1,2,0,14,3 -050,01,021,Alabama,Chilton County,2,6,2713,1349,1364,1162,1183,151,151,4,6,8,8,16,5,8,11,1167,1194,157,155,9,13,9,9,16,5,1136,1207,980,1042,143,144,1,6,7,8,0,1,5,6,982,1048,147,146,4,9,8,9,0,1,213,157,182,141,8,7,3,0,1,0,16,4,3,5,185,146,10,9,5,4,1,0,16,4 -050,01,021,Alabama,Chilton County,2,7,2981,1475,1506,1294,1326,156,155,8,8,7,7,4,4,6,6,1300,1331,157,157,13,11,7,9,5,5,1231,1334,1079,1175,142,145,3,4,4,5,0,0,3,5,1082,1179,142,146,6,6,4,7,0,1,244,172,215,151,14,10,5,4,3,2,4,4,3,1,218,152,15,11,7,5,3,2,5,4 -050,01,021,Alabama,Chilton County,2,8,3023,1539,1484,1390,1297,116,155,14,7,7,10,3,3,9,12,1398,1308,119,158,19,14,9,13,3,3,1353,1355,1219,1180,112,153,11,3,5,9,0,0,6,10,1224,1189,113,154,16,10,6,12,0,0,186,129,171,117,4,2,3,4,2,1,3,3,3,2,174,119,6,4,3,4,3,1,3,3 -050,01,021,Alabama,Chilton County,2,9,2887,1456,1431,1325,1280,106,124,8,8,7,3,3,2,7,14,1332,1294,107,126,14,19,7,4,3,2,1307,1343,1194,1202,100,120,2,5,6,3,1,1,4,12,1198,1214,100,120,6,16,6,4,1,1,149,88,131,78,6,4,6,3,1,0,2,1,3,2,134,80,7,6,8,3,1,0,2,1 -050,01,021,Alabama,Chilton County,2,10,3016,1530,1486,1362,1313,133,154,8,8,4,5,3,0,20,6,1381,1319,139,157,22,11,6,6,4,0,1444,1439,1287,1271,129,152,8,7,4,4,0,0,16,5,1302,1276,131,154,21,9,6,5,1,0,86,47,75,42,4,2,0,1,0,1,3,0,4,1,79,43,8,3,1,2,0,1,3,0 -050,01,021,Alabama,Chilton County,2,11,3178,1599,1579,1420,1400,162,153,9,8,2,6,1,0,5,12,1425,1411,162,155,14,17,2,8,1,0,1550,1544,1375,1367,159,152,8,8,2,6,1,0,5,11,1380,1377,159,153,13,17,2,8,1,0,49,35,45,33,3,1,1,0,0,0,0,0,0,1,45,34,3,2,1,0,0,0,0,0 -050,01,021,Alabama,Chilton County,2,12,2805,1369,1436,1219,1270,135,147,7,6,2,6,0,1,6,6,1224,1276,136,148,10,10,4,6,1,2,1331,1415,1182,1249,134,147,7,6,2,6,0,1,6,6,1187,1255,135,148,10,10,4,6,1,2,38,21,37,21,1,0,0,0,0,0,0,0,0,0,37,21,1,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,2,13,2483,1208,1275,1094,1175,102,88,2,1,0,3,0,0,10,8,1104,1182,103,89,7,6,4,5,1,1,1179,1263,1069,1166,101,88,2,1,0,2,0,0,7,6,1076,1171,102,89,7,6,2,3,0,0,29,12,25,9,1,0,0,0,0,1,0,0,3,2,28,11,1,0,0,0,2,2,1,1 -050,01,021,Alabama,Chilton County,2,14,1964,954,1010,886,924,59,78,4,4,0,2,0,0,5,2,891,926,59,78,8,6,1,2,0,0,948,1002,880,916,59,78,4,4,0,2,0,0,5,2,885,918,59,78,8,6,1,2,0,0,6,8,6,8,0,0,0,0,0,0,0,0,0,0,6,8,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,2,15,1477,691,786,642,724,40,52,1,2,1,3,0,0,7,5,648,728,41,53,8,5,1,5,0,0,685,779,636,719,40,50,1,2,1,3,0,0,7,5,642,723,41,51,8,5,1,5,0,0,6,7,6,5,0,2,0,0,0,0,0,0,0,0,6,5,0,2,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,2,16,1130,489,641,450,584,39,50,0,3,0,1,0,0,0,3,450,587,39,50,0,6,0,1,0,0,483,639,444,582,39,50,0,3,0,1,0,0,0,3,444,585,39,50,0,6,0,1,0,0,6,2,6,2,0,0,0,0,0,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,2,17,727,283,444,255,404,24,37,1,1,0,0,0,0,3,2,257,405,25,38,4,2,0,1,0,0,279,440,252,402,23,36,1,1,0,0,0,0,3,1,254,403,24,36,4,2,0,0,0,0,4,4,3,2,1,1,0,0,0,0,0,0,0,1,3,2,1,2,0,0,0,1,0,0 -050,01,021,Alabama,Chilton County,2,18,617,175,442,166,400,9,41,0,0,0,0,0,0,0,1,166,401,9,41,0,1,0,0,0,0,172,442,163,400,9,41,0,0,0,0,0,0,0,1,163,401,9,41,0,1,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,3,0,43645,21598,22047,19007,19440,2147,2196,108,96,64,85,56,26,216,204,19205,19623,2260,2312,193,170,102,114,61,41,19620,20600,17255,18149,2056,2126,70,66,54,74,5,6,180,179,17421,18311,2151,2224,138,132,86,100,8,18,1978,1447,1752,1291,91,70,38,30,10,11,51,20,36,25,1784,1312,109,88,55,38,16,14,53,23 -050,01,021,Alabama,Chilton County,3,1,2983,1466,1517,1214,1292,203,176,7,4,4,6,6,3,32,36,1242,1327,230,204,14,7,8,10,6,5,1217,1273,990,1067,191,166,5,1,4,6,0,0,27,33,1013,1099,215,192,10,3,8,10,0,2,249,244,224,225,12,10,2,3,0,0,6,3,5,3,229,228,15,12,4,4,0,0,6,3 -050,01,021,Alabama,Chilton County,3,2,3072,1543,1529,1344,1314,147,168,8,11,4,3,2,1,38,32,1381,1345,174,191,15,18,9,6,3,3,1331,1342,1155,1149,139,158,2,3,2,2,0,1,33,29,1188,1177,163,178,8,9,5,4,1,3,212,187,189,165,8,10,6,8,2,1,2,0,5,3,193,168,11,13,7,9,4,2,2,0 -050,01,021,Alabama,Chilton County,3,3,3013,1586,1427,1351,1226,195,154,11,8,4,9,0,1,25,29,1373,1254,215,174,17,16,7,13,0,2,1422,1296,1203,1118,185,144,8,4,4,5,0,0,22,25,1222,1142,203,160,14,12,6,8,0,1,164,131,148,108,10,10,3,4,0,4,0,1,3,4,151,112,12,14,3,4,1,5,0,1 -050,01,021,Alabama,Chilton County,3,4,2963,1544,1419,1293,1212,206,176,14,10,6,8,5,1,20,12,1312,1222,215,184,21,12,11,10,5,3,1404,1321,1175,1126,197,170,7,7,5,7,2,0,18,11,1192,1135,205,177,14,9,9,9,2,2,140,98,118,86,9,6,7,3,1,1,3,1,2,1,120,87,10,7,7,3,2,1,3,1 -050,01,021,Alabama,Chilton County,3,5,2586,1331,1255,1135,1098,161,143,5,1,6,3,13,4,11,6,1144,1103,166,147,9,3,11,5,13,4,1139,1149,971,1002,151,136,2,0,5,3,1,2,9,6,979,1007,154,140,5,2,9,5,1,2,192,106,164,96,10,7,3,1,1,0,12,2,2,0,165,96,12,7,4,1,2,0,12,2 -050,01,021,Alabama,Chilton County,3,6,2712,1352,1360,1163,1182,152,148,4,6,9,8,16,6,8,10,1170,1191,156,154,6,7,12,11,16,7,1142,1209,984,1046,144,142,1,6,8,8,0,1,5,6,988,1052,146,144,2,7,11,10,0,2,210,151,179,136,8,6,3,0,1,0,16,5,3,4,182,139,10,10,4,0,1,1,16,5 -050,01,021,Alabama,Chilton County,3,7,2972,1463,1509,1283,1327,155,157,8,7,6,8,4,4,7,6,1289,1330,159,161,12,10,6,10,4,4,1224,1337,1071,1174,142,148,3,4,4,6,0,0,4,5,1074,1176,145,151,5,7,4,8,0,0,239,172,212,153,13,9,5,3,2,2,4,4,3,1,215,154,14,10,7,3,2,2,4,4 -050,01,021,Alabama,Chilton County,3,8,3002,1533,1469,1383,1288,117,150,13,6,8,10,2,3,10,12,1393,1298,121,154,17,12,10,12,2,5,1343,1336,1207,1168,113,147,10,2,6,9,0,0,7,10,1214,1176,115,150,13,8,8,11,0,1,190,133,176,120,4,3,3,4,2,1,2,3,3,2,179,122,6,4,4,4,2,1,2,4 -050,01,021,Alabama,Chilton County,3,9,2905,1470,1435,1334,1282,109,126,8,7,8,4,3,2,8,14,1341,1296,112,128,11,17,10,5,4,3,1321,1349,1203,1205,102,123,3,4,7,4,1,1,5,12,1208,1217,104,125,4,13,9,5,1,1,149,86,131,77,7,3,5,3,1,0,2,1,3,2,133,79,8,3,7,4,1,0,3,2 -050,01,021,Alabama,Chilton County,3,10,3003,1522,1481,1360,1313,126,147,7,9,4,5,4,0,21,7,1379,1318,128,151,26,12,6,6,4,1,1432,1432,1282,1269,122,145,7,8,4,4,0,0,17,6,1297,1274,124,149,22,10,6,5,0,0,90,49,78,44,4,2,0,1,0,1,4,0,4,1,82,44,4,2,4,2,0,1,4,1 -050,01,021,Alabama,Chilton County,3,11,3180,1597,1583,1418,1402,161,155,9,8,2,7,1,0,6,11,1424,1410,163,160,12,15,2,9,2,1,1548,1547,1373,1368,158,154,8,8,2,7,1,0,6,10,1379,1376,160,158,11,14,2,9,2,1,49,36,45,34,3,1,1,0,0,0,0,0,0,1,45,34,3,2,1,1,0,0,0,0 -050,01,021,Alabama,Chilton County,3,12,2816,1380,1436,1226,1272,140,144,6,7,2,5,0,1,6,7,1231,1276,140,147,9,11,5,7,1,2,1340,1417,1187,1253,139,144,6,7,2,5,0,1,6,7,1192,1257,139,147,9,11,5,7,1,2,40,19,39,19,1,0,0,0,0,0,0,0,0,0,39,19,1,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,3,13,2491,1211,1280,1098,1176,101,91,2,2,0,3,0,0,10,8,1107,1184,102,93,10,10,3,3,1,0,1183,1265,1074,1164,100,91,2,2,0,2,0,0,7,6,1081,1170,100,93,7,8,2,2,0,0,28,15,24,12,1,0,0,0,0,1,0,0,3,2,26,14,2,0,3,2,1,1,1,0 -050,01,021,Alabama,Chilton County,3,14,1973,952,1021,883,936,61,76,4,4,0,2,0,0,4,3,887,939,62,76,7,7,0,2,0,0,945,1014,876,929,61,76,4,4,0,2,0,0,4,3,880,932,62,76,7,7,0,2,0,0,7,7,7,7,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,3,15,1487,692,795,643,729,40,56,1,2,1,3,0,0,7,5,650,734,43,56,4,5,2,4,0,1,686,789,637,725,40,54,1,2,1,3,0,0,7,5,644,730,43,54,4,5,2,4,0,1,6,6,6,4,0,2,0,0,0,0,0,0,0,0,6,4,0,2,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,3,16,1132,492,640,453,583,39,50,0,3,0,1,0,0,0,3,453,586,39,50,0,6,0,1,0,0,486,637,447,580,39,50,0,3,0,1,0,0,0,3,447,583,39,50,0,6,0,1,0,0,6,3,6,3,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,3,17,734,286,448,257,408,25,37,1,1,0,0,0,0,3,2,260,409,26,39,3,2,0,0,0,0,282,444,254,406,24,36,1,1,0,0,0,0,3,1,257,407,25,37,3,1,0,0,0,0,4,4,3,2,1,1,0,0,0,0,0,0,0,1,3,2,1,2,0,1,0,0,0,0 -050,01,021,Alabama,Chilton County,3,18,621,178,443,169,400,9,42,0,0,0,0,0,0,0,1,169,401,9,43,0,0,0,0,0,0,175,443,166,400,9,42,0,0,0,0,0,0,0,1,166,401,9,43,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,4,0,43682,21476,22206,18886,19509,2142,2251,114,98,63,89,46,27,225,232,19091,19720,2268,2388,210,196,94,118,58,31,19597,20746,17225,18216,2051,2176,73,65,55,79,5,5,188,205,17396,18408,2156,2295,149,148,81,106,15,6,1879,1460,1661,1293,91,75,41,33,8,10,41,22,37,27,1695,1312,112,93,61,48,13,12,43,25 -050,01,021,Alabama,Chilton County,4,1,2960,1453,1507,1213,1271,181,181,6,3,6,6,3,2,44,44,1256,1314,216,216,12,10,12,12,3,2,1211,1266,993,1046,170,172,4,1,6,6,0,0,38,41,1030,1086,200,205,8,6,12,12,0,0,242,241,220,225,11,9,2,2,0,0,3,2,6,3,226,228,16,11,4,4,0,0,3,2 -050,01,021,Alabama,Chilton County,4,2,2999,1473,1526,1271,1303,171,169,4,10,1,3,4,4,22,37,1289,1337,188,199,11,17,3,9,5,4,1279,1318,1095,1120,163,158,1,3,1,3,0,1,19,33,1110,1151,178,184,6,9,3,9,1,1,194,208,176,183,8,11,3,7,0,0,4,3,3,4,179,186,10,15,5,8,0,0,4,3 -050,01,021,Alabama,Chilton County,4,3,3064,1597,1467,1363,1252,182,162,12,7,5,9,0,1,35,36,1394,1287,207,185,21,19,11,12,3,1,1429,1327,1214,1136,172,151,8,3,5,5,0,0,30,32,1241,1167,194,172,15,13,10,8,3,0,168,140,149,116,10,11,4,4,0,4,0,1,5,4,153,120,13,13,6,6,1,4,0,1 -050,01,021,Alabama,Chilton County,4,4,2873,1488,1385,1240,1180,207,172,14,10,4,7,3,1,20,15,1258,1195,221,180,19,14,7,10,3,1,1343,1285,1117,1093,197,167,7,7,3,5,1,0,18,13,1133,1106,209,173,12,11,6,8,1,0,145,100,123,87,10,5,7,3,1,2,2,1,2,2,125,89,12,7,7,3,1,2,2,1 -050,01,021,Alabama,Chilton County,4,5,2626,1327,1299,1132,1132,164,146,6,2,4,7,8,3,13,9,1144,1139,169,153,12,6,6,8,9,3,1180,1200,1004,1043,157,138,3,1,3,7,2,2,11,9,1014,1050,161,145,8,5,5,8,3,2,147,99,128,89,7,8,3,1,1,0,6,1,2,0,130,89,8,8,4,1,1,0,6,1 -050,01,021,Alabama,Chilton County,4,6,2665,1306,1359,1124,1185,147,148,7,5,10,6,11,7,7,8,1131,1191,152,155,10,6,10,7,11,8,1119,1230,967,1076,138,141,1,2,9,6,0,1,4,4,971,1080,141,144,3,2,9,7,0,1,187,129,157,109,9,7,6,3,1,0,11,6,3,4,160,111,11,11,7,4,1,0,11,7 -050,01,021,Alabama,Chilton County,4,7,2922,1417,1505,1235,1309,150,170,10,7,8,7,7,3,7,9,1242,1318,153,175,14,12,9,8,7,3,1186,1332,1033,1153,137,161,5,5,6,6,0,0,5,7,1038,1160,140,164,8,8,6,7,0,0,231,173,202,156,13,9,5,2,2,1,7,3,2,2,204,158,13,11,6,4,3,1,7,3 -050,01,021,Alabama,Chilton County,4,8,2904,1472,1432,1312,1246,127,152,10,7,8,13,2,4,13,10,1323,1255,131,156,19,13,11,14,5,5,1301,1295,1159,1127,121,147,6,1,6,12,0,0,9,8,1168,1134,123,151,11,6,7,13,1,0,171,137,153,119,6,5,4,6,2,1,2,4,4,2,155,121,8,5,8,7,4,1,4,5 -050,01,021,Alabama,Chilton County,4,9,2948,1497,1451,1365,1285,102,142,12,8,7,3,3,0,8,13,1372,1296,106,145,15,18,7,5,6,0,1353,1371,1238,1214,96,139,7,4,6,3,1,0,5,11,1242,1225,98,141,8,12,6,4,4,0,144,80,127,71,6,3,5,4,1,0,2,0,3,2,130,71,8,4,7,6,1,1,2,0 -050,01,021,Alabama,Chilton County,4,10,2975,1499,1476,1354,1316,115,135,6,11,4,4,4,1,16,9,1369,1325,118,137,18,17,7,5,4,1,1398,1420,1266,1266,111,132,5,10,4,3,0,0,12,9,1277,1275,113,134,14,16,6,4,0,0,101,56,88,50,4,3,1,1,0,1,4,1,4,0,92,50,5,3,4,1,1,1,4,1 -050,01,021,Alabama,Chilton County,4,11,3205,1622,1583,1440,1392,157,165,11,7,4,8,1,0,9,11,1449,1401,161,167,18,17,5,9,1,0,1573,1544,1395,1355,154,164,10,7,4,8,1,0,9,10,1404,1364,158,166,17,16,5,8,1,0,49,39,45,37,3,1,1,0,0,0,0,0,0,1,45,37,3,1,1,1,0,1,0,0 -050,01,021,Alabama,Chilton County,4,12,2879,1410,1469,1249,1310,146,139,6,6,2,5,0,0,7,9,1255,1317,149,142,10,13,3,6,0,0,1366,1451,1207,1292,144,139,6,6,2,5,0,0,7,9,1213,1299,147,142,10,13,3,6,0,0,44,18,42,18,2,0,0,0,0,0,0,0,0,0,42,18,2,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,4,13,2625,1284,1341,1161,1224,110,103,3,4,0,2,0,1,10,7,1169,1230,111,105,11,10,2,2,1,2,1257,1324,1138,1209,109,103,3,4,0,2,0,1,7,5,1143,1214,109,105,9,8,2,2,1,1,27,17,23,15,1,0,0,0,0,0,0,0,3,2,26,16,2,0,2,2,0,0,0,1 -050,01,021,Alabama,Chilton County,4,14,2012,954,1058,878,968,68,75,4,5,0,5,0,0,4,5,882,973,69,76,8,9,0,5,0,0,945,1050,869,961,68,75,4,5,0,4,0,0,4,5,873,966,69,76,8,9,0,4,0,0,9,8,9,7,0,0,0,0,0,1,0,0,0,0,9,7,0,0,0,0,0,1,0,0 -050,01,021,Alabama,Chilton County,4,15,1520,699,821,648,747,44,66,1,1,0,3,0,0,6,4,653,749,45,67,6,4,1,4,0,1,693,815,642,743,44,64,1,1,0,3,0,0,6,4,647,745,45,65,6,4,1,4,0,1,6,6,6,4,0,2,0,0,0,0,0,0,0,0,6,4,0,2,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,4,16,1110,488,622,450,568,36,45,1,4,0,1,0,0,1,4,451,571,36,48,2,8,0,2,0,0,482,617,444,563,36,45,1,4,0,1,0,0,1,4,445,566,36,48,2,8,0,2,0,0,6,5,6,5,0,0,0,0,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,4,17,785,313,472,286,429,23,40,1,1,0,0,0,0,3,2,289,430,24,41,4,3,0,0,0,0,309,468,283,427,22,39,1,1,0,0,0,0,3,1,286,428,23,39,4,2,0,0,0,0,4,4,3,2,1,1,0,0,0,0,0,0,0,1,3,2,1,2,0,1,0,0,0,0 -050,01,021,Alabama,Chilton County,4,18,610,177,433,165,392,12,41,0,0,0,0,0,0,0,0,165,392,12,41,0,0,0,0,0,0,173,433,161,392,12,41,0,0,0,0,0,0,0,0,161,392,12,41,0,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,5,0,43572,21511,22061,18898,19359,2143,2244,114,95,75,102,48,25,233,236,19111,19567,2264,2382,208,190,115,130,61,39,19620,20622,17229,18080,2050,2174,74,62,68,92,5,5,194,209,17407,18265,2152,2299,151,141,99,119,15,15,1891,1439,1669,1279,93,70,40,33,7,10,43,20,39,27,1704,1302,112,83,57,49,16,11,46,24 -050,01,021,Alabama,Chilton County,5,1,2915,1463,1452,1238,1217,167,173,6,4,6,12,3,1,43,45,1280,1259,198,209,12,10,15,18,4,3,1226,1251,1020,1029,158,166,4,1,6,12,0,0,38,43,1057,1069,187,200,9,7,11,18,1,2,237,201,218,188,9,7,2,3,0,0,3,1,5,2,223,190,11,9,3,3,4,0,3,1 -050,01,021,Alabama,Chilton County,5,2,2957,1463,1494,1238,1282,185,163,3,8,3,4,4,3,30,34,1263,1314,208,186,13,16,6,7,5,7,1263,1286,1059,1095,174,152,1,1,3,4,0,1,26,33,1080,1126,195,175,9,8,6,7,1,4,200,208,179,187,11,11,2,7,0,0,4,2,4,1,183,188,13,11,4,8,0,0,4,3 -050,01,021,Alabama,Chilton County,5,3,3069,1590,1479,1373,1259,163,170,9,8,5,8,0,1,40,33,1412,1291,188,191,18,18,12,10,2,2,1412,1320,1214,1127,154,158,6,4,5,4,0,0,33,27,1246,1153,176,177,13,10,10,6,2,1,178,159,159,132,9,12,3,4,0,4,0,1,7,6,166,138,12,14,5,8,2,4,0,1 -050,01,021,Alabama,Chilton County,5,4,2793,1472,1321,1218,1128,210,159,15,9,6,7,3,0,20,18,1238,1143,221,171,20,16,9,10,4,0,1317,1224,1086,1043,199,155,8,6,5,5,1,0,18,15,1104,1055,209,166,12,10,8,8,2,0,155,97,132,85,11,4,7,3,1,2,2,0,2,3,134,88,12,5,8,6,1,2,2,0 -050,01,021,Alabama,Chilton County,5,5,2704,1366,1338,1168,1148,169,158,5,7,5,8,4,4,15,13,1182,1160,175,165,14,12,7,11,4,4,1245,1231,1061,1055,164,150,2,4,4,8,1,2,13,12,1073,1066,170,156,10,9,5,11,1,2,121,107,107,93,5,8,3,3,1,0,3,2,2,1,109,94,5,9,4,3,2,0,3,2 -050,01,021,Alabama,Chilton County,5,6,2652,1324,1328,1134,1166,150,138,10,6,8,4,14,5,8,9,1142,1172,152,145,14,12,10,5,15,5,1133,1203,975,1059,140,131,3,3,8,4,1,0,6,6,981,1063,141,136,6,6,10,5,2,0,191,125,159,107,10,7,7,3,0,0,13,5,2,3,161,109,11,9,8,6,0,0,13,5 -050,01,021,Alabama,Chilton County,5,7,2850,1397,1453,1223,1264,139,162,4,5,13,8,9,4,9,10,1232,1272,143,168,9,10,13,10,9,4,1185,1299,1039,1124,125,155,3,4,12,8,0,1,6,7,1045,1130,128,159,6,8,12,9,0,1,212,154,184,140,14,7,1,1,1,0,9,3,3,3,187,142,15,9,3,2,1,1,9,3 -050,01,021,Alabama,Chilton County,5,8,2876,1431,1445,1256,1264,138,152,14,5,11,14,2,5,10,5,1263,1268,143,153,21,9,11,15,3,5,1249,1303,1096,1138,132,148,7,2,8,12,0,0,6,3,1101,1140,134,149,12,4,8,13,0,0,182,142,160,126,6,4,7,3,3,2,2,5,4,2,162,128,9,4,9,5,3,2,3,5 -050,01,021,Alabama,Chilton County,5,9,2953,1504,1449,1366,1275,106,147,14,6,8,7,4,0,6,14,1370,1286,107,150,18,15,10,11,5,1,1363,1359,1243,1193,100,144,8,2,7,7,1,0,4,13,1246,1203,101,147,10,10,9,11,1,1,141,90,123,82,6,3,6,4,1,0,3,0,2,1,124,83,6,3,8,5,1,0,4,0 -050,01,021,Alabama,Chilton County,5,10,2894,1455,1439,1325,1274,111,140,4,7,4,5,3,1,8,12,1332,1284,116,143,8,15,6,6,4,3,1348,1385,1230,1227,107,138,3,5,4,4,0,0,4,11,1234,1236,108,141,5,13,5,5,0,1,107,54,95,47,4,2,1,2,0,1,3,1,4,1,98,48,8,2,3,2,1,1,4,2 -050,01,021,Alabama,Chilton County,5,11,3104,1584,1520,1400,1331,157,165,12,6,3,7,1,0,11,11,1409,1340,158,171,20,12,6,8,2,0,1523,1481,1344,1295,154,163,12,6,3,7,0,0,10,10,1352,1303,155,168,19,12,6,8,1,0,61,39,56,36,3,2,0,0,0,0,1,0,1,1,57,37,3,3,1,0,0,0,1,0 -050,01,021,Alabama,Chilton County,5,12,2919,1425,1494,1271,1337,134,134,9,8,2,6,1,0,8,9,1278,1346,135,137,14,14,4,6,2,1,1383,1474,1231,1317,133,134,8,8,2,6,1,0,8,9,1238,1326,134,137,13,14,4,6,2,1,42,20,40,20,1,0,1,0,0,0,0,0,0,0,40,20,1,0,1,0,0,0,0,0 -050,01,021,Alabama,Chilton County,5,13,2626,1286,1340,1151,1211,121,113,3,5,1,3,0,1,10,7,1160,1217,123,117,9,7,4,4,0,3,1255,1324,1124,1197,120,113,3,5,1,3,0,1,7,5,1130,1202,120,115,9,7,3,4,0,2,31,16,27,14,1,0,0,0,0,0,0,0,3,2,30,15,3,2,0,0,1,0,0,1 -050,01,021,Alabama,Chilton County,5,14,2153,1017,1136,939,1044,72,79,2,4,0,3,0,0,4,6,943,1049,73,81,3,9,1,3,1,0,1005,1126,928,1035,71,79,2,4,0,2,0,0,4,6,932,1040,72,81,3,9,1,2,1,0,12,10,11,9,1,0,0,0,0,1,0,0,0,0,11,9,1,0,0,0,0,1,0,0 -050,01,021,Alabama,Chilton County,5,15,1560,705,855,652,777,46,68,2,2,0,5,0,0,5,3,656,780,48,69,7,4,1,5,1,0,699,849,647,773,45,66,2,2,0,5,0,0,5,3,651,776,47,67,7,4,1,5,1,0,6,6,5,4,1,2,0,0,0,0,0,0,0,0,5,4,1,2,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,5,16,1121,517,604,476,553,37,44,1,2,0,1,0,0,3,4,479,555,37,47,4,5,0,1,0,0,511,599,470,548,37,44,1,2,0,1,0,0,3,4,473,550,37,47,4,5,0,1,0,0,6,5,6,5,0,0,0,0,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,5,17,818,329,489,303,445,23,38,1,3,0,0,0,0,2,3,304,447,24,38,3,6,0,0,0,1,324,483,299,441,22,37,1,3,0,0,0,0,2,2,300,443,23,37,3,5,0,0,0,0,5,6,4,4,1,1,0,0,0,0,0,0,0,1,4,4,1,1,0,1,0,0,0,1 -050,01,021,Alabama,Chilton County,5,18,608,183,425,167,384,15,41,0,0,0,0,0,0,1,0,168,384,15,41,1,0,0,0,0,0,179,425,163,384,15,41,0,0,0,0,0,0,1,0,164,384,15,41,1,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,6,0,43617,21511,22106,18856,19341,2157,2286,121,90,84,114,48,27,245,248,19083,19571,2289,2424,219,188,123,147,59,36,19657,20695,17232,18089,2054,2214,80,57,73,103,8,6,210,226,17428,18298,2165,2341,164,145,107,134,15,14,1854,1411,1624,1252,103,72,41,33,11,11,40,21,35,22,1655,1273,124,83,55,43,16,13,44,22 -050,01,021,Alabama,Chilton County,6,1,2861,1474,1387,1249,1154,164,163,3,5,8,15,3,0,47,50,1295,1204,198,201,9,13,16,17,5,2,1257,1198,1046,976,158,157,2,2,6,15,0,0,45,48,1090,1024,191,194,7,9,13,17,2,2,217,189,203,178,6,6,1,3,2,0,3,0,2,2,205,180,7,7,2,4,3,0,3,0 -050,01,021,Alabama,Chilton County,6,2,2944,1464,1480,1230,1269,198,153,3,6,5,8,3,3,25,41,1255,1308,217,184,8,14,7,12,3,4,1253,1291,1042,1100,183,143,2,2,4,7,0,0,22,39,1064,1137,200,172,7,10,5,11,0,1,211,189,188,169,15,10,1,4,1,1,3,3,3,2,191,171,17,12,1,4,2,1,3,3 -050,01,021,Alabama,Chilton County,6,3,3045,1545,1500,1334,1278,153,176,10,10,4,9,3,1,41,26,1373,1303,179,192,20,15,11,16,6,1,1367,1334,1180,1136,142,165,5,3,4,5,2,1,34,24,1213,1159,164,181,11,6,10,12,3,1,178,166,154,142,11,11,5,7,0,4,1,0,7,2,160,144,15,11,9,9,1,4,3,0 -050,01,021,Alabama,Chilton County,6,4,2696,1403,1293,1160,1097,197,159,13,7,7,8,2,1,24,21,1182,1116,214,174,21,13,8,11,3,1,1270,1199,1043,1019,189,151,7,4,7,6,1,0,23,19,1064,1036,205,165,15,9,8,9,2,0,133,94,117,78,8,8,6,3,0,2,1,1,1,2,118,80,9,9,6,4,0,2,1,1 -050,01,021,Alabama,Chilton County,6,5,2855,1447,1408,1226,1188,182,185,9,9,6,7,5,2,19,17,1242,1203,194,194,19,15,9,11,6,6,1295,1317,1093,1111,175,177,4,6,4,7,2,1,17,15,1108,1124,185,185,13,11,7,11,3,5,152,91,133,77,7,8,5,3,2,0,3,1,2,2,134,79,9,9,6,4,2,0,3,1 -050,01,021,Alabama,Chilton County,6,6,2620,1299,1321,1101,1162,158,139,10,4,11,5,11,6,8,5,1109,1167,162,142,13,5,13,7,11,6,1142,1203,973,1057,147,134,4,1,11,5,1,1,6,5,979,1062,149,137,7,2,13,7,1,1,157,118,128,105,11,5,6,3,0,0,10,5,2,0,130,105,13,5,6,3,0,0,10,5 -050,01,021,Alabama,Chilton County,6,7,2760,1353,1407,1188,1229,129,149,4,4,14,7,10,5,8,13,1194,1238,133,154,8,11,16,11,10,6,1154,1257,1023,1095,112,141,2,3,13,7,0,1,4,10,1025,1101,115,145,4,8,14,11,0,2,199,150,165,134,17,8,2,1,1,0,10,4,4,3,169,137,18,9,4,3,2,0,10,4 -050,01,021,Alabama,Chilton County,6,8,2845,1398,1447,1228,1266,135,158,13,6,9,10,2,4,11,3,1238,1269,138,161,20,6,11,10,2,4,1212,1303,1065,1139,126,152,8,3,6,8,0,0,7,1,1071,1140,127,153,13,3,8,8,0,0,186,144,163,127,9,6,5,3,3,2,2,4,4,2,167,129,11,8,7,3,3,2,2,4 -050,01,021,Alabama,Chilton County,6,9,2931,1500,1431,1360,1237,109,159,13,5,7,13,4,2,7,15,1366,1249,111,162,16,17,10,16,5,2,1362,1331,1238,1147,103,157,9,1,6,13,1,0,5,13,1243,1158,104,159,11,12,9,15,1,0,138,100,122,90,6,2,4,4,1,0,3,2,2,2,123,91,7,3,5,5,1,1,4,2 -050,01,021,Alabama,Chilton County,6,10,2928,1452,1476,1310,1302,120,149,6,5,7,5,3,2,6,13,1314,1314,123,152,9,15,8,6,4,2,1341,1410,1215,1243,116,147,1,3,6,4,0,1,3,12,1217,1254,117,150,3,12,7,5,0,1,111,66,95,59,4,2,5,2,1,1,3,1,3,1,97,60,6,2,6,3,1,1,4,1 -050,01,021,Alabama,Chilton County,6,11,3046,1562,1484,1386,1309,143,154,14,4,4,6,1,0,14,11,1398,1320,145,156,25,12,7,7,1,0,1494,1451,1324,1279,140,151,14,4,4,6,0,0,12,11,1334,1290,142,153,24,12,6,7,0,0,68,33,62,30,3,3,0,0,0,0,1,0,2,0,64,30,3,3,1,0,1,0,1,0 -050,01,021,Alabama,Chilton County,6,12,3008,1451,1557,1291,1378,143,155,9,7,1,7,1,0,6,10,1296,1387,145,157,14,16,1,7,1,0,1415,1532,1258,1354,141,155,8,7,1,7,1,0,6,9,1263,1362,143,157,13,15,1,7,1,0,36,25,33,24,2,0,1,0,0,0,0,0,0,1,33,25,2,0,1,1,0,0,0,0 -050,01,021,Alabama,Chilton County,6,13,2674,1299,1375,1167,1231,114,125,6,8,1,4,0,1,11,6,1178,1237,116,128,14,11,3,5,0,2,1270,1359,1141,1217,113,125,6,8,1,4,0,1,9,4,1150,1221,113,127,14,11,3,4,0,1,29,16,26,14,1,0,0,0,0,0,0,0,2,2,28,16,3,1,0,0,0,1,0,1 -050,01,021,Alabama,Chilton County,6,14,2181,1041,1140,952,1047,82,80,2,4,0,3,0,0,5,6,957,1052,83,82,7,9,0,3,0,0,1024,1128,937,1036,81,80,2,4,0,2,0,0,4,6,941,1041,81,82,6,9,0,2,0,0,17,12,15,11,1,0,0,0,0,1,0,0,1,0,16,11,2,0,1,0,0,1,0,0 -050,01,021,Alabama,Chilton County,6,15,1628,761,867,704,795,49,63,4,1,0,4,0,0,4,4,707,798,49,64,5,5,3,4,1,0,754,862,698,791,48,62,4,1,0,4,0,0,4,4,701,794,48,63,5,5,3,4,1,0,7,5,6,4,1,1,0,0,0,0,0,0,0,0,6,4,1,1,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,6,16,1128,511,617,466,562,39,47,1,2,0,3,0,0,5,3,471,565,40,48,6,5,0,4,1,0,507,611,462,557,39,46,1,2,0,3,0,0,5,3,467,560,40,47,6,5,0,4,1,0,4,6,4,5,0,1,0,0,0,0,0,0,0,0,4,5,0,1,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,6,17,839,341,498,313,456,25,36,1,2,0,0,0,0,2,4,315,460,25,37,3,5,0,0,0,0,334,491,307,451,24,35,1,2,0,0,0,0,2,3,309,454,24,35,3,5,0,0,0,0,7,7,6,5,1,1,0,0,0,0,0,0,0,1,6,6,1,2,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,6,18,628,210,418,191,381,17,36,0,1,0,0,0,0,2,0,193,381,17,36,2,1,0,0,0,0,206,418,187,381,17,36,0,1,0,0,0,0,2,0,189,381,17,36,2,1,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,7,0,43751,21550,22201,18796,19359,2227,2351,125,94,83,110,48,27,271,260,19044,19594,2376,2506,226,185,119,150,65,36,19684,20755,17169,18078,2121,2279,80,57,72,98,8,6,234,237,17385,18292,2252,2418,159,139,106,136,20,14,1866,1446,1627,1281,106,72,45,37,11,12,40,21,37,23,1659,1302,124,88,67,46,13,14,45,22 -050,01,021,Alabama,Chilton County,7,1,2891,1473,1418,1225,1179,165,172,8,4,9,12,1,0,65,51,1286,1226,216,216,17,10,18,16,2,2,1265,1232,1032,1005,159,165,4,1,7,12,0,0,63,49,1091,1050,208,207,13,7,16,16,1,2,208,186,193,174,6,7,4,3,2,0,1,0,2,2,195,176,8,9,4,3,2,0,1,0 -050,01,021,Alabama,Chilton County,7,2,2969,1494,1475,1245,1252,202,169,3,5,5,7,5,3,34,39,1279,1290,226,198,9,10,8,12,7,5,1264,1274,1041,1068,186,160,2,3,5,7,0,0,30,36,1071,1103,208,187,6,7,8,12,2,2,230,201,204,184,16,9,1,2,0,0,5,3,4,3,208,187,18,11,3,3,0,0,5,3 -050,01,021,Alabama,Chilton County,7,3,3065,1516,1549,1296,1323,171,173,7,9,3,11,3,1,36,32,1325,1353,195,194,15,17,9,16,8,1,1333,1374,1137,1171,159,163,4,1,2,7,2,1,29,31,1162,1200,180,184,9,8,7,12,4,1,183,175,159,152,12,10,3,8,1,4,1,0,7,1,163,153,15,10,6,9,2,4,4,0 -050,01,021,Alabama,Chilton County,7,4,2665,1410,1255,1191,1067,179,154,11,7,7,8,1,1,21,18,1211,1084,190,168,17,11,11,9,2,1,1273,1148,1066,979,172,145,7,3,7,5,1,0,20,16,1085,994,183,158,12,6,11,6,2,0,137,107,125,88,7,9,4,4,0,3,0,1,1,2,126,90,7,10,5,5,0,3,0,1 -050,01,021,Alabama,Chilton County,7,5,2814,1428,1386,1183,1157,203,197,9,10,8,8,6,1,19,13,1201,1169,210,205,19,14,11,11,7,1,1274,1286,1052,1069,193,190,4,7,6,8,2,0,17,12,1068,1080,200,197,12,10,9,11,3,0,154,100,131,88,10,7,5,3,2,0,4,1,2,1,133,89,10,8,7,4,2,0,4,1 -050,01,021,Alabama,Chilton County,7,6,2664,1328,1336,1117,1161,168,147,12,7,9,4,10,6,12,11,1127,1172,174,154,16,11,12,5,11,6,1182,1243,1001,1084,157,141,5,2,9,4,1,2,9,10,1008,1094,162,147,7,6,12,5,2,2,146,93,116,77,11,6,7,5,0,0,9,4,3,1,119,78,12,7,9,5,0,0,9,4 -050,01,021,Alabama,Chilton County,7,7,2691,1326,1365,1158,1175,131,162,3,5,16,5,10,5,8,13,1165,1186,135,167,7,13,17,7,10,5,1163,1229,1023,1054,118,156,2,3,15,5,0,1,5,10,1028,1062,120,159,4,10,16,7,0,1,163,136,135,121,13,6,1,2,1,0,10,4,3,3,137,124,15,8,3,3,1,0,10,4 -050,01,021,Alabama,Chilton County,7,8,2851,1387,1464,1206,1285,151,153,13,6,6,11,2,4,9,5,1214,1290,155,156,18,7,7,12,5,4,1188,1317,1034,1155,139,146,6,3,4,9,0,0,5,4,1039,1159,141,148,8,4,4,10,1,0,199,147,172,130,12,7,7,3,2,2,2,4,4,1,175,131,14,8,10,3,3,2,4,4 -050,01,021,Alabama,Chilton County,7,9,2884,1456,1428,1309,1236,115,156,13,5,6,12,3,2,10,17,1319,1250,117,161,19,16,6,15,5,3,1324,1308,1193,1130,110,153,9,1,4,11,0,0,8,13,1201,1141,111,156,14,10,4,13,2,1,132,120,116,106,5,3,4,4,2,1,3,2,2,4,118,109,6,5,5,6,2,2,3,2 -050,01,021,Alabama,Chilton County,7,10,2892,1434,1458,1297,1277,109,152,9,5,9,5,4,3,6,16,1302,1291,112,157,12,16,10,7,4,4,1307,1392,1190,1219,104,150,1,3,8,4,1,1,3,15,1192,1232,106,154,2,14,9,6,1,2,127,66,107,58,5,2,8,2,1,1,3,2,3,1,110,59,6,3,10,2,1,1,3,2 -050,01,021,Alabama,Chilton County,7,11,3052,1558,1494,1384,1325,142,152,13,5,3,6,2,0,14,6,1397,1330,146,153,23,8,4,8,2,1,1485,1453,1320,1287,138,150,13,4,3,6,0,0,11,6,1330,1292,141,151,21,7,4,8,0,1,73,41,64,38,4,2,0,1,0,0,2,0,3,0,67,38,5,2,2,1,0,0,2,0 -050,01,021,Alabama,Chilton County,7,12,3036,1480,1556,1312,1368,152,162,8,7,1,6,1,0,6,13,1316,1378,153,168,14,15,2,9,1,1,1441,1531,1276,1345,150,161,7,7,1,6,1,0,6,12,1280,1354,151,166,13,15,2,9,1,1,39,25,36,23,2,1,1,0,0,0,0,0,0,1,36,24,2,2,1,0,0,0,0,0 -050,01,021,Alabama,Chilton County,7,13,2714,1304,1410,1169,1244,119,143,8,9,1,6,0,1,7,7,1176,1249,121,146,12,12,2,9,0,1,1276,1392,1142,1227,118,143,8,9,1,6,0,1,7,6,1149,1232,120,145,12,11,2,9,0,1,28,18,27,17,1,0,0,0,0,0,0,0,0,1,27,17,1,1,0,1,0,0,0,0 -050,01,021,Alabama,Chilton County,7,14,2276,1090,1186,990,1091,88,82,2,3,0,2,0,0,10,8,999,1099,92,83,10,10,1,4,0,0,1066,1173,970,1080,87,82,2,3,0,1,0,0,7,7,976,1087,88,82,8,9,1,3,0,0,24,13,20,11,1,0,0,0,0,1,0,0,3,1,23,12,4,1,2,1,0,1,0,0 -050,01,021,Alabama,Chilton County,7,15,1657,775,882,715,812,52,63,4,1,0,3,0,0,4,3,719,814,52,64,7,4,0,3,1,0,769,878,709,808,52,63,4,1,0,3,0,0,4,3,713,810,52,64,7,4,0,3,1,0,6,4,6,4,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,7,16,1152,528,624,489,566,32,49,1,2,0,3,0,0,6,4,494,568,33,51,7,4,0,5,0,0,522,617,484,561,31,47,1,2,0,3,0,0,6,4,489,563,32,49,7,4,0,5,0,0,6,7,5,5,1,2,0,0,0,0,0,0,0,0,5,5,1,2,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,7,17,842,343,499,312,454,30,37,0,3,0,1,0,0,1,4,313,458,30,37,1,6,0,2,0,1,337,494,306,451,30,36,0,3,0,1,0,0,1,3,307,454,30,36,1,6,0,1,0,0,6,5,6,3,0,1,0,0,0,0,0,0,0,1,6,4,0,1,0,0,0,1,0,1 -050,01,021,Alabama,Chilton County,7,18,636,220,416,198,387,18,28,1,1,0,0,0,0,3,0,201,387,19,28,3,1,1,0,0,0,215,414,193,385,18,28,1,1,0,0,0,0,3,0,196,385,19,28,3,1,1,0,0,0,5,2,5,2,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,8,0,43693,21522,22171,18766,19334,2208,2326,119,99,86,115,50,28,293,269,19037,19583,2378,2481,226,207,126,149,63,41,19654,20745,17136,18073,2108,2255,75,62,75,103,8,6,252,246,17371,18301,2257,2400,164,157,107,132,16,19,1868,1426,1630,1261,100,71,44,37,11,12,42,22,41,23,1666,1282,121,81,62,50,19,17,47,22 -050,01,021,Alabama,Chilton County,8,1,2841,1465,1376,1220,1160,167,156,7,6,10,6,0,0,61,48,1279,1207,212,193,18,16,16,10,1,1,1273,1223,1041,1019,163,149,4,4,7,6,0,0,58,45,1097,1063,206,184,14,13,13,10,1,1,192,153,179,141,4,7,3,2,3,0,0,0,3,3,182,144,6,9,4,3,3,0,0,0 -050,01,021,Alabama,Chilton County,8,2,2973,1470,1503,1217,1268,188,172,7,5,6,10,6,3,46,45,1262,1311,221,206,15,17,14,13,6,3,1239,1276,1010,1055,178,165,4,3,6,10,0,0,41,43,1051,1096,208,198,11,14,12,13,0,0,231,227,207,213,10,7,3,2,0,0,6,3,5,2,211,215,13,8,4,3,2,0,6,3 -050,01,021,Alabama,Chilton County,8,3,3070,1535,1535,1322,1316,164,165,5,10,4,11,3,1,37,32,1357,1346,191,188,15,15,6,16,5,5,1350,1368,1158,1168,153,157,2,2,3,9,1,1,33,31,1189,1197,176,179,11,7,5,14,3,5,185,167,164,148,11,8,3,8,1,2,2,0,4,1,168,149,15,9,4,8,1,2,2,0 -050,01,021,Alabama,Chilton County,8,4,2691,1418,1273,1195,1095,178,136,10,7,6,10,2,1,27,24,1219,1119,195,152,16,13,10,12,5,2,1267,1156,1062,996,167,129,7,3,6,6,2,0,23,22,1083,1018,182,144,12,9,9,7,4,1,151,117,133,99,11,7,3,4,0,4,0,1,4,2,136,101,13,8,4,4,1,5,1,1 -050,01,021,Alabama,Chilton County,8,5,2705,1406,1299,1171,1080,194,189,11,11,7,7,5,2,18,10,1187,1088,206,195,17,14,10,10,6,4,1239,1198,1027,997,184,178,4,8,6,6,2,0,16,9,1042,1004,194,184,10,10,9,8,2,2,167,101,144,83,10,11,7,3,1,1,3,2,2,1,145,84,12,11,7,4,1,2,4,2 -050,01,021,Alabama,Chilton County,8,6,2709,1343,1366,1149,1170,153,166,6,5,10,6,10,4,15,15,1161,1183,160,173,15,10,12,11,11,4,1204,1297,1036,1115,142,159,3,1,9,6,1,2,13,14,1046,1127,149,166,10,5,11,11,2,2,139,69,113,55,11,7,3,4,1,0,9,2,2,1,115,56,11,7,5,5,1,0,9,2 -050,01,021,Alabama,Chilton County,8,7,2631,1298,1333,1119,1155,137,151,8,8,15,5,9,6,10,8,1128,1162,141,156,14,11,17,6,9,6,1149,1217,995,1056,129,146,3,4,15,5,0,1,7,5,1001,1061,131,149,7,6,17,5,0,1,149,116,124,99,8,5,5,4,0,0,9,5,3,3,127,101,10,7,7,5,0,1,9,5 -050,01,021,Alabama,Chilton County,8,8,2853,1361,1492,1185,1296,146,168,12,6,7,12,4,4,7,6,1192,1302,149,172,15,10,8,13,4,4,1186,1339,1042,1161,131,160,5,3,4,10,0,0,4,5,1046,1166,134,163,6,7,4,11,0,0,175,153,143,135,15,8,7,3,3,2,4,4,3,1,146,136,15,9,9,3,4,2,4,4 -050,01,021,Alabama,Chilton County,8,9,2837,1443,1394,1292,1208,118,146,11,4,6,16,3,3,13,17,1302,1222,124,149,18,19,9,19,5,4,1303,1270,1168,1098,114,143,8,0,5,15,0,0,8,14,1175,1110,116,146,14,12,6,17,0,1,140,124,124,110,4,3,3,4,1,1,3,3,5,3,127,112,8,3,4,7,3,2,5,3 -050,01,021,Alabama,Chilton County,8,10,2828,1398,1430,1259,1254,114,148,7,6,8,4,3,3,7,15,1266,1267,118,153,10,17,9,5,3,4,1266,1357,1146,1190,107,145,1,4,7,4,1,1,4,13,1150,1201,110,149,2,13,8,5,1,2,132,73,113,64,7,3,6,2,1,0,2,2,3,2,116,66,8,4,8,4,1,0,2,2 -050,01,021,Alabama,Chilton County,8,11,3012,1512,1500,1342,1335,141,150,7,4,3,5,4,0,15,6,1355,1340,142,153,20,8,6,5,5,0,1422,1457,1264,1295,137,149,7,3,3,4,0,0,11,6,1273,1300,138,152,16,7,6,4,1,0,90,43,78,40,4,1,0,1,0,1,4,0,4,0,82,40,4,1,4,1,0,1,4,0 -050,01,021,Alabama,Chilton County,8,12,3072,1518,1554,1347,1374,151,153,11,8,2,8,1,0,6,11,1353,1383,154,156,14,17,2,9,1,1,1483,1521,1315,1343,149,152,10,8,2,8,1,0,6,10,1321,1351,152,155,13,16,2,9,1,1,35,33,32,31,2,1,1,0,0,0,0,0,0,1,32,32,2,1,1,1,0,0,0,0 -050,01,021,Alabama,Chilton County,8,13,2757,1330,1427,1186,1245,128,157,8,8,2,5,0,1,6,11,1190,1256,131,159,12,14,3,8,0,2,1296,1409,1153,1227,127,157,8,8,2,5,0,1,6,11,1157,1238,130,159,12,14,3,8,0,2,34,18,33,18,1,0,0,0,0,0,0,0,0,0,33,18,1,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,8,14,2310,1110,1200,998,1099,99,88,2,2,0,3,0,0,11,8,1009,1107,102,91,9,7,2,4,1,0,1086,1186,978,1088,98,88,2,2,0,2,0,0,8,6,986,1094,100,90,8,6,0,2,0,0,24,14,20,11,1,0,0,0,0,1,0,0,3,2,23,13,2,1,1,1,2,2,1,0 -050,01,021,Alabama,Chilton County,8,15,1726,815,911,755,835,52,66,4,3,0,3,0,0,4,4,759,839,53,67,8,6,0,3,0,0,808,906,749,830,51,66,4,3,0,3,0,0,4,4,753,834,52,67,8,6,0,3,0,0,7,5,6,5,1,0,0,0,0,0,0,0,0,0,6,5,1,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,8,16,1204,542,662,501,607,32,46,2,2,0,3,0,0,7,4,508,610,32,47,7,5,1,4,1,1,536,657,495,604,32,44,2,2,0,3,0,0,7,4,502,607,32,45,7,5,1,4,1,1,6,5,6,3,0,2,0,0,0,0,0,0,0,0,6,3,0,2,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,8,17,817,328,489,300,440,28,42,0,3,0,1,0,0,0,3,300,442,28,43,0,6,0,1,0,0,323,486,295,437,28,42,0,3,0,1,0,0,0,3,295,439,28,43,0,6,0,1,0,0,5,3,5,3,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,8,18,657,230,427,208,397,18,27,1,1,0,0,0,0,3,2,210,399,19,28,3,2,1,0,0,0,224,422,202,394,18,26,1,1,0,0,0,0,3,1,204,395,19,27,3,1,1,0,0,0,6,5,6,3,0,1,0,0,0,0,0,0,0,1,6,4,0,1,0,1,0,0,0,0 -050,01,021,Alabama,Chilton County,9,0,43854,21512,22342,18806,19467,2166,2356,110,105,84,117,49,28,297,269,19076,19712,2346,2508,214,214,128,149,63,40,19660,20867,17182,18161,2069,2287,68,64,73,105,8,6,260,244,17423,18386,2224,2426,159,162,108,133,16,15,1852,1475,1624,1306,97,69,42,41,11,12,41,22,37,25,1653,1326,122,82,55,52,20,16,47,25 -050,01,021,Alabama,Chilton County,9,1,2788,1404,1384,1185,1156,151,160,6,3,9,7,0,0,53,58,1234,1208,194,205,14,15,15,15,2,2,1216,1228,1012,1007,145,158,4,3,6,6,0,0,49,54,1059,1056,185,201,12,12,10,14,1,2,188,156,173,149,6,2,2,0,3,1,0,0,4,4,175,152,9,4,2,3,5,1,1,0 -050,01,021,Alabama,Chilton County,9,2,3022,1508,1514,1263,1290,170,173,6,6,7,9,3,2,59,34,1321,1321,212,199,15,12,16,13,4,3,1268,1260,1041,1058,162,161,3,1,7,9,0,0,55,31,1095,1086,202,185,10,6,16,13,1,1,240,254,222,232,8,12,3,5,0,0,3,2,4,3,226,235,10,14,5,6,0,0,3,2 -050,01,021,Alabama,Chilton County,9,3,2986,1467,1519,1272,1287,159,170,3,9,5,12,4,2,24,39,1296,1325,176,196,6,17,8,18,6,2,1287,1354,1109,1141,151,161,1,2,4,11,0,1,22,38,1131,1178,167,187,4,10,7,16,1,1,180,165,163,146,8,9,2,7,1,1,4,1,2,1,165,147,9,9,2,7,1,2,5,1 -050,01,021,Alabama,Chilton County,9,4,2744,1434,1310,1215,1128,166,147,9,6,4,9,3,1,37,19,1248,1146,191,161,20,13,10,9,3,1,1292,1188,1093,1023,155,140,5,2,4,5,3,0,32,18,1122,1040,178,153,14,9,8,5,3,0,142,122,122,105,11,7,4,4,0,4,0,1,5,1,126,106,13,8,6,4,2,4,0,1 -050,01,021,Alabama,Chilton County,9,5,2620,1343,1277,1108,1063,197,184,10,11,8,7,3,1,17,11,1124,1073,207,190,16,16,11,7,3,2,1181,1176,968,973,186,181,4,8,7,5,1,0,15,9,982,981,194,186,10,12,10,5,1,1,162,101,140,90,11,3,6,3,1,2,2,1,2,2,142,92,13,4,6,4,1,2,2,1 -050,01,021,Alabama,Chilton County,9,6,2755,1391,1364,1201,1163,151,169,5,5,6,7,8,4,20,16,1217,1178,159,173,15,12,10,11,10,7,1270,1292,1099,1105,144,160,2,3,5,7,2,2,18,15,1114,1119,151,164,11,9,8,11,4,5,121,72,102,58,7,9,3,2,1,0,6,2,2,1,103,59,8,9,4,3,2,0,6,2 -050,01,021,Alabama,Chilton County,9,7,2622,1296,1326,1119,1157,137,141,7,9,13,6,10,7,10,6,1128,1161,142,144,11,12,15,7,10,8,1138,1215,993,1066,123,135,2,3,13,6,0,1,7,4,1000,1069,126,138,5,5,14,6,0,1,158,111,126,91,14,6,5,6,0,0,10,6,3,2,128,92,16,6,6,7,1,1,10,7 -050,01,021,Alabama,Chilton County,9,8,2882,1354,1528,1173,1320,145,175,9,12,12,11,7,3,8,7,1181,1325,147,180,15,16,12,11,7,4,1190,1367,1037,1180,134,167,4,5,9,10,0,0,6,5,1043,1184,134,171,10,8,9,10,0,0,164,161,136,140,11,8,5,7,3,1,7,3,2,2,138,141,13,9,5,8,3,1,7,4 -050,01,021,Alabama,Chilton County,9,9,2713,1374,1339,1232,1160,115,143,8,4,5,17,3,4,11,11,1239,1170,121,146,14,13,9,17,6,5,1237,1231,1112,1067,109,139,4,1,4,16,0,0,8,8,1117,1074,112,141,9,9,6,16,1,0,137,108,120,93,6,4,4,3,1,1,3,4,3,3,122,96,9,5,5,4,3,1,5,5 -050,01,021,Alabama,Chilton County,9,10,2902,1468,1434,1311,1258,129,152,11,5,7,5,3,1,7,13,1315,1269,134,157,13,12,9,6,4,3,1334,1351,1196,1184,123,149,4,2,6,5,1,0,4,11,1199,1194,125,152,5,8,8,6,1,2,134,83,115,74,6,3,7,3,1,0,2,1,3,2,116,75,9,5,8,4,1,0,3,1 -050,01,021,Alabama,Chilton County,9,11,2949,1464,1485,1325,1322,118,139,3,8,4,4,4,2,10,10,1335,1332,122,142,11,16,5,6,5,2,1362,1433,1235,1275,114,137,3,7,4,3,0,1,6,10,1241,1285,115,140,8,15,4,5,0,1,102,52,90,47,4,2,0,1,0,1,4,1,4,0,94,47,7,2,3,1,1,1,5,1 -050,01,021,Alabama,Chilton County,9,12,3117,1550,1567,1364,1377,158,163,15,7,2,8,1,0,10,12,1374,1389,161,166,23,16,3,9,1,0,1510,1533,1327,1345,156,162,14,7,2,8,1,0,10,11,1337,1356,159,164,22,15,3,9,1,0,40,34,37,32,2,1,1,0,0,0,0,0,0,1,37,33,2,2,1,1,0,0,0,0 -050,01,021,Alabama,Chilton County,9,13,2819,1368,1451,1217,1273,134,157,8,7,2,4,0,0,7,10,1224,1282,135,159,15,15,2,5,0,0,1335,1431,1186,1253,132,157,8,7,2,4,0,0,7,10,1193,1262,133,159,15,15,2,5,0,0,33,20,31,20,2,0,0,0,0,0,0,0,0,0,31,20,2,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,9,14,2402,1147,1255,1031,1138,102,101,3,4,0,2,0,1,11,9,1041,1146,106,103,11,10,0,5,0,1,1123,1240,1011,1125,101,101,3,4,0,2,0,1,8,7,1018,1132,104,102,9,10,0,3,0,1,24,15,20,13,1,0,0,0,0,0,0,0,3,2,23,14,2,1,2,0,0,2,0,0 -050,01,021,Alabama,Chilton County,9,15,1767,815,952,750,875,58,64,3,3,0,5,0,0,4,5,753,880,59,65,5,7,2,5,0,0,807,946,742,870,58,64,3,3,0,4,0,0,4,5,745,875,59,65,5,7,2,4,0,0,8,6,8,5,0,0,0,0,0,1,0,0,0,0,8,5,0,0,0,0,0,1,0,0 -050,01,021,Alabama,Chilton County,9,16,1231,543,688,503,627,32,54,2,1,0,3,0,0,6,3,506,629,35,55,7,4,0,3,1,0,537,682,497,623,32,52,2,1,0,3,0,0,6,3,500,625,35,53,7,4,0,3,1,0,6,6,6,4,0,2,0,0,0,0,0,0,0,0,6,4,0,2,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,9,17,817,331,486,301,444,28,33,1,4,0,1,0,0,1,4,302,447,29,35,1,6,0,2,0,0,326,482,296,440,28,33,1,4,0,1,0,0,1,4,297,443,29,35,1,6,0,2,0,0,5,4,5,4,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,9,18,718,255,463,236,429,16,31,1,1,0,0,0,0,2,2,238,431,16,32,2,2,1,0,1,0,247,458,228,426,16,30,1,1,0,0,0,0,2,1,230,427,16,30,2,2,1,0,1,0,8,5,8,3,0,1,0,0,0,0,0,0,0,1,8,4,0,2,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,10,0,44085,21684,22401,18903,19498,2227,2366,115,106,89,124,48,27,302,280,19172,19757,2409,2519,225,217,138,168,65,38,19836,20888,17297,18155,2123,2291,67,72,79,112,8,6,262,252,17529,18387,2282,2428,159,169,120,153,19,16,1848,1513,1606,1343,104,75,48,34,10,12,40,21,40,28,1643,1370,127,91,66,48,18,15,46,22 -050,01,021,Alabama,Chilton County,10,1,2776,1396,1380,1173,1153,150,156,3,4,7,10,0,0,63,57,1233,1206,197,200,13,14,21,15,3,2,1213,1201,1002,981,146,154,3,4,6,9,0,0,56,53,1056,1031,189,196,10,11,15,14,0,2,183,179,171,172,4,2,0,0,1,1,0,0,7,4,177,175,8,4,3,3,6,1,3,0 -050,01,021,Alabama,Chilton County,10,2,3005,1507,1498,1260,1268,170,179,9,6,11,10,3,1,54,34,1310,1300,210,204,18,12,17,16,6,2,1281,1264,1055,1055,161,166,4,3,9,10,0,0,52,30,1103,1083,199,188,13,8,15,15,3,1,226,234,205,213,9,13,5,3,2,0,3,1,2,4,207,217,11,16,5,4,2,1,3,1 -050,01,021,Alabama,Chilton County,10,3,3003,1470,1533,1246,1289,186,179,3,8,6,11,3,3,26,43,1271,1332,203,209,11,19,7,15,4,4,1290,1352,1084,1132,177,166,1,2,5,10,0,1,23,41,1106,1173,193,194,7,12,6,14,1,2,180,181,162,157,9,13,2,6,1,1,3,2,3,2,165,159,10,15,4,7,1,1,3,2 -050,01,021,Alabama,Chilton County,10,4,2794,1477,1317,1269,1134,154,149,9,6,6,11,2,1,37,16,1301,1147,179,158,22,10,12,15,3,3,1316,1190,1130,1024,143,142,4,2,6,7,2,0,31,15,1156,1036,165,151,14,5,11,11,3,2,161,127,139,110,11,7,5,4,0,4,0,1,6,1,145,111,14,7,8,5,1,4,0,1 -050,01,021,Alabama,Chilton County,10,5,2614,1345,1269,1119,1069,188,167,11,11,8,7,4,0,15,15,1132,1082,197,177,17,17,9,10,5,0,1169,1171,966,981,176,165,5,8,7,5,2,0,13,12,977,991,183,172,11,14,8,8,3,0,176,98,153,88,12,2,6,3,1,2,2,0,2,3,155,91,14,5,6,3,1,2,2,0 -050,01,021,Alabama,Chilton County,10,6,2860,1448,1412,1233,1192,180,185,5,9,4,6,4,4,22,16,1252,1205,191,195,17,16,9,10,4,5,1338,1336,1137,1131,175,176,2,6,3,6,1,2,20,15,1154,1143,184,185,14,13,8,10,1,3,110,76,96,61,5,9,3,3,1,0,3,2,2,1,98,62,7,10,3,3,1,0,3,2 -050,01,021,Alabama,Chilton County,10,7,2593,1295,1298,1110,1118,146,151,10,8,8,8,11,5,10,8,1119,1124,151,154,16,12,9,12,11,6,1138,1201,988,1039,131,144,2,3,8,8,1,0,8,7,995,1044,135,147,6,6,9,11,1,0,157,97,122,79,15,7,8,5,0,0,10,5,2,1,124,80,16,7,10,6,0,1,10,6 -050,01,021,Alabama,Chilton County,10,8,2750,1317,1433,1149,1249,134,158,5,7,11,7,9,4,9,8,1155,1257,138,162,9,12,15,8,9,4,1180,1283,1043,1115,117,151,4,4,10,7,0,1,6,5,1046,1120,120,153,6,7,14,8,0,1,137,150,106,134,17,7,1,3,1,0,9,3,3,3,109,137,18,9,3,5,1,0,9,3 -050,01,021,Alabama,Chilton County,10,9,2757,1375,1382,1202,1199,134,147,13,5,14,18,3,5,9,8,1211,1207,135,149,20,10,14,20,4,5,1221,1263,1072,1098,128,142,4,2,11,16,0,0,6,5,1078,1103,128,143,9,6,11,17,1,0,154,119,130,101,6,5,9,3,3,2,3,5,3,3,133,104,7,6,11,4,3,3,3,5 -050,01,021,Alabama,Chilton County,10,10,2891,1466,1425,1312,1249,126,147,13,5,5,8,4,1,6,15,1317,1262,130,152,15,13,6,12,4,1,1350,1332,1215,1164,120,144,5,2,5,8,1,0,4,14,1218,1176,122,149,7,9,6,12,1,0,116,93,97,85,6,3,8,3,0,0,3,1,2,1,99,86,8,3,8,4,0,0,3,1 -050,01,021,Alabama,Chilton County,10,11,2910,1444,1466,1301,1304,126,140,3,6,3,4,3,2,8,10,1306,1314,132,143,5,12,6,5,6,2,1334,1412,1203,1256,121,138,3,5,3,3,0,1,4,9,1206,1265,124,140,4,11,4,4,0,1,110,54,98,48,5,2,0,1,0,1,3,1,4,1,100,49,8,3,1,1,2,1,6,1 -050,01,021,Alabama,Chilton County,10,12,3079,1547,1532,1361,1344,161,161,10,8,2,6,1,0,12,13,1370,1357,166,164,18,18,4,8,2,1,1499,1493,1317,1308,159,159,10,8,2,6,0,0,11,12,1325,1320,163,162,18,17,4,8,1,1,48,39,44,36,2,2,0,0,0,0,1,0,1,1,45,37,3,2,0,1,0,0,1,0 -050,01,021,Alabama,Chilton County,10,13,2871,1378,1493,1225,1319,131,148,9,8,4,6,1,0,8,12,1233,1330,134,150,14,16,4,7,1,2,1349,1472,1198,1298,130,148,8,8,4,6,1,0,8,12,1206,1309,133,150,13,16,4,7,1,2,29,21,27,21,1,0,1,0,0,0,0,0,0,0,27,21,1,0,1,0,0,0,0,0 -050,01,021,Alabama,Chilton County,10,14,2444,1168,1276,1053,1149,100,108,5,5,0,3,0,1,10,10,1061,1159,102,108,13,13,2,5,0,1,1139,1260,1028,1135,99,108,5,5,0,3,0,1,7,8,1033,1143,101,108,10,11,2,5,0,1,29,16,25,14,1,0,0,0,0,0,0,0,3,2,28,16,1,0,3,2,0,0,0,0 -050,01,021,Alabama,Chilton County,10,15,1903,866,1037,796,953,64,71,2,4,0,3,0,0,4,6,800,958,64,72,5,10,2,3,1,0,853,1027,784,944,63,71,2,4,0,2,0,0,4,6,788,949,63,72,5,10,2,2,1,0,13,10,12,9,1,0,0,0,0,1,0,0,0,0,12,9,1,0,0,0,0,1,0,0 -050,01,021,Alabama,Chilton County,10,16,1270,551,719,512,653,31,57,3,1,0,5,0,0,5,3,516,656,33,57,8,4,0,5,0,0,546,713,507,649,31,55,3,1,0,5,0,0,5,3,511,652,33,55,8,4,0,5,0,0,5,6,5,4,0,2,0,0,0,0,0,0,0,0,5,4,0,2,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,10,17,816,357,459,325,421,28,32,1,2,0,1,0,0,3,3,328,424,28,32,3,4,0,2,1,0,352,455,320,417,28,32,1,2,0,1,0,0,3,3,323,420,28,32,3,4,0,2,1,0,5,4,5,4,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,10,18,749,277,472,257,435,18,31,1,3,0,0,0,0,1,3,257,437,19,33,1,5,1,0,1,0,268,463,248,428,18,30,1,3,0,0,0,0,1,2,248,429,19,31,1,5,1,0,1,0,9,9,9,7,0,1,0,0,0,0,0,0,0,1,9,8,0,2,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,11,0,44084,21632,22452,18851,19551,2214,2343,121,111,83,132,48,27,315,288,19146,19817,2400,2500,229,219,125,182,62,40,19752,20925,17214,18189,2110,2273,70,75,77,121,8,6,273,261,17473,18434,2271,2416,159,170,113,166,18,12,1880,1527,1637,1362,104,70,51,36,6,11,40,21,42,27,1673,1383,129,84,70,49,12,16,44,28 -050,01,021,Alabama,Chilton County,11,1,2746,1408,1338,1197,1130,135,141,5,5,7,10,0,0,64,52,1260,1180,185,183,13,14,16,16,1,1,1218,1175,1021,974,129,139,5,5,6,9,0,0,57,48,1077,1020,173,179,12,13,14,15,1,0,190,163,176,156,6,2,0,0,1,1,0,0,7,4,183,160,12,4,1,1,2,1,0,1 -050,01,021,Alabama,Chilton County,11,2,2935,1451,1484,1205,1248,164,177,9,5,7,12,3,0,63,42,1266,1288,209,207,19,13,15,18,6,0,1231,1233,1005,1014,156,167,4,2,7,12,0,0,59,38,1064,1050,198,195,12,9,14,17,2,0,220,251,200,234,8,10,5,3,0,0,3,0,4,4,202,238,11,12,7,4,1,1,4,0 -050,01,021,Alabama,Chilton County,11,3,2969,1460,1509,1236,1297,183,152,4,5,6,11,2,3,29,41,1264,1336,204,183,8,14,11,18,2,4,1276,1325,1071,1132,173,142,1,2,5,11,0,0,26,38,1096,1168,192,171,5,9,9,18,0,1,184,184,165,165,10,10,3,3,1,0,2,3,3,3,168,168,12,12,3,5,2,0,2,3 -050,01,021,Alabama,Chilton County,11,4,2852,1463,1389,1264,1183,145,168,9,10,4,9,3,1,38,18,1302,1200,170,179,20,15,8,13,4,1,1292,1246,1115,1059,134,161,5,3,4,5,2,1,32,17,1147,1075,155,172,13,7,8,8,3,1,171,143,149,124,11,7,4,7,0,4,1,0,6,1,155,125,15,7,7,8,0,5,1,0 -050,01,021,Alabama,Chilton County,11,5,2497,1263,1234,1066,1053,163,150,10,7,5,8,2,1,17,15,1079,1067,174,159,16,10,10,11,2,2,1111,1137,930,966,154,148,5,4,5,6,1,0,16,13,942,978,165,155,10,7,10,9,1,1,152,97,136,87,9,2,5,3,0,2,1,1,1,2,137,89,9,4,6,3,0,2,1,1 -050,01,021,Alabama,Chilton County,11,6,2999,1528,1471,1292,1236,203,193,7,14,7,8,5,2,14,18,1303,1252,209,203,16,20,9,11,7,3,1408,1387,1191,1168,196,184,2,10,5,8,2,1,12,16,1200,1182,201,194,10,15,7,10,4,2,120,84,101,68,7,9,5,4,2,0,3,1,2,2,103,70,8,9,6,5,2,1,3,1 -050,01,021,Alabama,Chilton County,11,7,2563,1277,1286,1075,1114,162,144,8,7,10,9,11,6,11,6,1085,1120,167,145,14,12,11,9,12,6,1135,1202,965,1045,149,139,1,2,10,9,1,1,9,6,973,1051,153,140,6,7,11,9,2,1,142,84,110,69,13,5,7,5,0,0,10,5,2,0,112,69,14,5,8,5,0,0,10,5 -050,01,021,Alabama,Chilton County,11,8,2672,1305,1367,1136,1193,132,142,6,7,11,10,10,5,10,10,1144,1200,138,148,11,11,12,12,10,6,1160,1229,1024,1074,118,133,2,4,10,10,0,1,6,7,1029,1079,121,137,5,7,11,12,0,1,145,138,112,119,14,9,4,3,1,0,10,4,4,3,115,121,17,11,6,4,1,0,10,5 -050,01,021,Alabama,Chilton County,11,9,2771,1342,1429,1173,1246,131,155,16,6,11,13,2,4,9,5,1180,1250,132,155,23,10,12,14,4,5,1181,1305,1036,1139,122,149,7,3,10,11,0,0,6,3,1042,1142,122,149,13,5,10,12,0,0,161,124,137,107,9,6,9,3,1,2,2,4,3,2,138,108,10,6,10,5,2,2,4,5 -050,01,021,Alabama,Chilton County,11,10,2876,1494,1382,1350,1194,119,152,9,5,4,13,5,2,7,16,1357,1210,122,156,13,15,4,15,5,2,1364,1291,1236,1111,113,150,5,2,4,13,1,0,5,15,1241,1126,115,154,8,11,4,15,1,0,130,91,114,83,6,2,4,3,0,0,4,2,2,1,116,84,7,2,5,4,0,0,4,2 -050,01,021,Alabama,Chilton County,11,11,2920,1448,1472,1290,1309,139,137,5,7,5,6,3,2,6,11,1295,1319,142,137,8,15,8,9,4,3,1337,1410,1194,1254,134,135,1,5,5,5,0,1,3,10,1197,1263,135,135,1,12,7,8,0,2,111,62,96,55,5,2,4,2,0,1,3,1,3,1,98,56,7,2,7,3,1,1,4,1 -050,01,021,Alabama,Chilton County,11,12,3012,1505,1507,1328,1325,150,160,10,6,2,5,1,0,14,11,1341,1336,154,163,19,12,4,8,1,2,1442,1473,1270,1294,148,157,10,6,2,5,0,0,12,11,1281,1305,152,160,18,12,3,8,0,2,63,34,58,31,2,3,0,0,0,0,1,0,2,0,60,31,2,3,1,0,1,0,1,0 -050,01,021,Alabama,Chilton County,11,13,2908,1370,1538,1214,1349,138,161,9,9,2,6,1,0,6,13,1219,1360,139,163,13,17,3,11,2,1,1341,1513,1188,1325,136,161,8,9,2,6,1,0,6,12,1193,1336,137,162,12,16,3,11,2,0,29,25,26,24,2,0,1,0,0,0,0,0,0,1,26,24,2,1,1,1,0,0,0,1 -050,01,021,Alabama,Chilton County,11,14,2478,1176,1302,1067,1164,90,113,6,8,2,3,0,1,11,13,1078,1175,91,117,16,17,2,4,0,3,1154,1287,1048,1151,89,113,6,8,2,3,0,1,9,11,1057,1162,90,115,14,17,2,3,0,1,22,15,19,13,1,0,0,0,0,0,0,0,2,2,21,13,1,2,2,0,0,1,0,2 -050,01,021,Alabama,Chilton County,11,15,1946,894,1052,813,964,73,76,2,4,0,2,0,0,6,6,819,969,74,78,6,9,0,3,1,0,874,1040,795,953,72,76,2,4,0,1,0,0,5,6,800,958,72,78,6,9,0,2,1,0,20,12,18,11,1,0,0,0,0,1,0,0,1,0,19,11,2,0,0,0,0,1,0,0 -050,01,021,Alabama,Chilton County,11,16,1325,605,720,560,660,37,51,4,1,0,4,0,0,4,4,564,664,38,51,7,5,0,4,1,0,599,715,554,656,37,50,4,1,0,4,0,0,4,4,558,660,38,50,7,5,0,4,1,0,6,5,6,4,0,1,0,0,0,0,0,0,0,0,6,4,0,1,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,11,17,828,351,477,317,431,28,38,1,2,0,3,0,0,5,3,321,433,29,39,6,4,0,4,0,0,348,472,314,427,28,37,1,2,0,3,0,0,5,3,318,429,29,38,6,4,0,4,0,0,3,5,3,4,0,1,0,0,0,0,0,0,0,0,3,4,0,1,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,11,18,787,292,495,268,455,22,33,1,3,0,0,0,0,1,4,269,458,23,34,1,6,0,2,0,1,281,485,257,447,22,32,1,3,0,0,0,0,1,3,258,450,23,32,1,5,0,1,0,0,11,10,11,8,0,1,0,0,0,0,0,0,0,1,11,8,0,2,0,1,0,1,0,1 -050,01,021,Alabama,Chilton County,12,0,44313,21731,22582,18897,19659,2250,2358,126,113,84,123,48,28,326,301,19199,19944,2444,2524,232,223,138,160,61,43,19814,21007,17231,18254,2145,2288,74,76,74,112,8,6,282,271,17494,18510,2317,2438,158,175,121,146,18,19,1917,1575,1666,1405,105,70,52,37,10,11,40,22,44,30,1705,1434,127,86,74,48,17,14,43,24 -050,01,021,Alabama,Chilton County,12,1,2699,1380,1319,1168,1111,141,143,6,6,5,8,1,1,59,50,1225,1161,186,178,17,14,13,14,4,3,1175,1145,981,955,135,140,4,2,4,7,0,0,51,41,1030,996,174,172,10,6,11,12,3,1,205,174,187,156,6,3,2,4,1,1,1,1,8,9,195,165,12,6,7,8,2,2,1,2 -050,01,021,Alabama,Chilton County,12,2,2957,1467,1490,1220,1251,164,168,11,8,11,12,1,0,60,51,1277,1300,209,207,21,18,19,16,2,3,1260,1254,1031,1033,159,157,6,5,8,12,0,0,56,47,1086,1078,202,194,13,14,15,15,1,3,207,236,189,218,5,11,5,3,3,0,1,0,4,4,191,222,7,13,8,4,4,1,1,0 -050,01,021,Alabama,Chilton County,12,3,3040,1503,1537,1254,1306,195,172,4,3,5,11,4,3,41,42,1289,1347,225,199,12,11,13,19,5,3,1287,1325,1063,1111,180,162,1,2,5,11,0,0,38,39,1095,1149,208,187,8,9,13,19,1,0,216,212,191,195,15,10,3,1,0,0,4,3,3,3,194,198,17,12,4,2,0,0,4,3 -050,01,021,Alabama,Chilton County,12,4,2864,1447,1417,1246,1215,150,160,7,10,4,8,3,1,37,23,1280,1237,171,177,18,14,12,11,4,3,1288,1269,1106,1084,141,155,4,2,3,5,2,1,32,22,1136,1105,161,171,12,6,9,8,3,3,159,148,140,131,9,5,3,8,1,3,1,0,5,1,144,132,10,6,6,8,3,3,1,0 -050,01,021,Alabama,Chilton County,12,5,2473,1274,1199,1073,1028,165,145,10,6,6,5,1,1,19,14,1091,1042,178,156,15,9,8,5,1,1,1130,1091,941,934,158,141,6,2,6,2,1,0,18,12,958,946,171,150,10,5,8,2,1,0,144,108,132,94,7,4,4,4,0,3,0,1,1,2,133,96,7,6,5,4,0,3,0,1 -050,01,021,Alabama,Chilton County,12,6,2969,1486,1483,1257,1259,195,184,8,16,6,7,6,1,14,16,1268,1273,203,193,13,22,8,10,8,2,1355,1380,1149,1169,185,177,3,12,4,7,2,0,12,15,1159,1182,193,185,6,18,6,10,3,1,131,103,108,90,10,7,5,4,2,0,4,1,2,1,109,91,10,8,7,4,2,0,5,1 -050,01,021,Alabama,Chilton County,12,7,2631,1307,1324,1106,1152,162,141,9,5,5,8,10,6,15,12,1120,1164,171,146,16,9,8,10,11,7,1170,1251,1002,1091,149,137,1,2,5,8,1,2,12,11,1013,1102,156,141,8,6,7,10,2,3,137,73,104,61,13,4,8,3,0,0,9,4,3,1,107,62,15,5,8,3,1,0,9,4 -050,01,021,Alabama,Chilton County,12,8,2636,1311,1325,1149,1148,125,147,5,6,14,11,9,5,9,8,1158,1154,127,152,10,9,17,13,10,5,1183,1211,1045,1049,117,140,2,4,13,11,0,1,6,6,1051,1053,118,144,5,6,16,13,1,1,128,114,104,99,8,7,3,2,1,0,9,4,3,2,107,101,9,8,5,3,1,0,9,4 -050,01,021,Alabama,Chilton County,12,9,2780,1341,1439,1152,1269,155,148,14,6,9,8,2,4,9,4,1159,1272,160,150,19,9,10,9,3,4,1170,1302,1011,1150,141,139,5,3,8,7,0,0,5,3,1015,1152,144,141,7,5,9,8,0,0,171,137,141,119,14,9,9,3,1,1,2,4,4,1,144,120,16,9,12,4,1,1,3,4 -050,01,021,Alabama,Chilton County,12,10,2851,1457,1394,1308,1196,122,163,11,5,4,14,4,2,8,14,1315,1209,123,168,16,14,7,14,4,3,1335,1299,1201,1113,117,160,7,1,3,13,0,0,7,12,1207,1124,117,163,12,10,6,13,0,1,122,95,107,83,5,3,4,4,1,1,4,2,1,2,108,85,6,5,4,4,1,1,4,2 -050,01,021,Alabama,Chilton County,12,11,2877,1449,1428,1294,1261,130,140,6,4,7,6,4,3,8,14,1302,1272,134,143,9,15,7,8,5,4,1326,1365,1189,1204,124,138,1,4,7,5,1,1,4,13,1193,1214,126,141,3,14,7,7,1,2,123,63,105,57,6,2,5,0,0,1,3,2,4,1,109,58,8,2,6,1,0,1,4,2 -050,01,021,Alabama,Chilton County,12,12,3031,1505,1526,1332,1351,142,153,11,9,4,7,2,0,14,6,1345,1357,145,154,21,12,7,10,2,0,1428,1487,1263,1315,139,151,11,8,4,7,0,0,11,6,1273,1321,142,152,20,11,5,10,0,0,77,39,69,36,3,2,0,1,0,0,2,0,3,0,72,36,3,2,1,1,2,0,2,0 -050,01,021,Alabama,Chilton County,12,13,2930,1392,1538,1231,1351,144,157,8,9,2,5,1,0,6,16,1237,1367,145,159,11,20,5,7,1,1,1364,1511,1206,1326,142,156,7,9,2,5,1,0,6,15,1212,1341,143,158,10,19,5,7,1,1,28,27,25,25,2,1,1,0,0,0,0,0,0,1,25,26,2,1,1,1,0,0,0,0 -050,01,021,Alabama,Chilton County,12,14,2501,1172,1329,1065,1173,90,131,8,8,2,4,0,1,7,12,1072,1184,91,133,13,19,3,5,0,2,1148,1311,1042,1156,89,131,8,8,2,4,0,1,7,11,1049,1167,90,132,13,19,3,4,0,1,24,18,23,17,1,0,0,0,0,0,0,0,0,1,23,17,1,1,0,0,0,1,0,1 -050,01,021,Alabama,Chilton County,12,15,2038,931,1107,840,1017,80,76,2,4,0,2,0,0,9,8,848,1024,84,77,7,11,1,2,0,1,909,1094,822,1006,79,76,2,4,0,1,0,0,6,7,827,1012,80,77,7,10,1,1,0,1,22,13,18,11,1,0,0,0,0,1,0,0,3,1,21,12,4,0,0,1,0,1,0,0 -050,01,021,Alabama,Chilton County,12,16,1398,655,743,603,679,44,55,4,2,0,3,0,0,4,4,607,682,44,57,7,5,0,3,1,0,648,739,596,675,44,55,4,2,0,3,0,0,4,4,600,678,44,57,7,5,0,3,1,0,7,4,7,4,0,0,0,0,0,0,0,0,0,0,7,4,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,12,17,841,352,489,324,439,21,41,1,2,0,3,0,0,6,4,330,443,23,41,5,6,0,3,0,0,348,483,320,435,21,39,1,2,0,3,0,0,6,4,326,439,23,39,5,6,0,3,0,0,4,6,4,4,0,2,0,0,0,0,0,0,0,0,4,4,0,2,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,12,18,797,302,495,275,453,25,34,1,4,0,1,0,0,1,3,276,456,25,34,2,6,0,1,0,1,290,490,263,448,25,34,1,4,0,1,0,0,1,3,264,451,25,34,2,6,0,1,0,1,12,5,12,5,0,0,0,0,0,0,0,0,0,0,12,5,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,13,0,44397,21736,22661,18915,19733,2243,2357,136,119,89,124,48,29,305,299,19194,20000,2420,2528,253,231,135,167,55,46,19802,21071,17248,18336,2128,2277,81,76,78,113,8,6,259,263,17485,18572,2285,2426,177,173,114,152,13,18,1934,1590,1667,1397,115,80,55,43,11,11,40,23,46,36,1709,1428,135,102,76,58,21,15,42,28 -050,01,021,Alabama,Chilton County,13,1,2724,1382,1342,1166,1130,148,150,8,8,10,10,2,2,48,42,1212,1171,183,180,18,14,16,15,3,4,1177,1153,984,969,139,142,4,2,9,8,0,0,41,32,1024,1001,171,166,11,5,14,11,0,2,205,189,182,161,9,8,4,6,1,2,2,2,7,10,188,170,12,14,7,9,2,4,3,2 -050,01,021,Alabama,Chilton County,13,2,2882,1435,1447,1209,1241,156,147,10,9,12,8,0,0,48,42,1253,1280,190,180,19,17,21,12,1,3,1254,1247,1047,1058,150,137,6,7,8,8,0,0,43,37,1086,1093,182,166,14,12,15,12,1,2,181,200,162,183,6,10,4,2,4,0,0,0,5,5,167,187,8,14,5,5,6,0,0,1 -050,01,021,Alabama,Chilton County,13,3,3073,1482,1591,1242,1343,184,187,7,3,4,14,5,3,40,41,1279,1383,214,216,15,9,11,22,6,5,1253,1357,1041,1129,169,174,3,2,4,14,0,0,36,38,1075,1166,197,202,9,6,10,21,1,1,229,234,201,214,15,13,4,1,0,0,5,3,4,3,204,217,17,14,6,3,1,1,5,4 -050,01,021,Alabama,Chilton County,13,4,2822,1432,1390,1242,1198,148,148,5,12,5,6,2,1,30,25,1269,1219,168,166,13,18,9,12,3,2,1270,1235,1098,1059,139,144,2,2,4,6,1,1,26,23,1122,1078,157,160,8,8,7,12,2,2,162,155,144,139,9,4,3,10,1,0,1,0,4,2,147,141,11,6,5,10,2,0,1,0 -050,01,021,Alabama,Chilton County,13,5,2541,1320,1221,1113,1034,166,152,10,7,8,7,2,1,21,20,1134,1050,179,164,14,14,12,10,2,3,1160,1108,969,939,156,146,7,3,8,3,2,0,18,17,987,952,168,157,11,8,10,6,2,2,160,113,144,95,10,6,3,4,0,4,0,1,3,3,147,98,11,7,3,6,2,4,0,1 -050,01,021,Alabama,Chilton County,13,6,2899,1452,1447,1220,1236,195,170,9,15,5,10,5,1,18,15,1234,1248,204,179,17,21,12,12,6,2,1319,1338,1110,1140,185,164,2,12,4,9,2,0,16,13,1122,1150,194,171,8,18,11,11,3,1,133,109,110,96,10,6,7,3,1,1,3,1,2,2,112,98,10,8,9,3,1,1,3,1 -050,01,021,Alabama,Chilton County,13,7,2704,1348,1356,1159,1178,155,148,6,6,5,6,10,4,13,14,1170,1190,163,156,13,12,7,9,10,4,1212,1294,1053,1129,141,143,2,1,4,6,1,2,11,13,1062,1141,148,150,8,6,6,9,1,2,136,62,106,49,14,5,4,5,1,0,9,2,2,1,108,49,15,6,5,6,1,0,9,2 -050,01,021,Alabama,Chilton County,13,8,2592,1291,1301,1112,1130,139,134,8,9,11,14,9,6,12,8,1124,1137,145,137,14,12,11,16,9,7,1162,1193,1004,1039,135,129,3,5,11,14,0,1,9,5,1013,1044,139,131,8,7,11,15,0,1,129,108,108,91,4,5,5,4,0,0,9,5,3,3,111,93,6,6,6,5,0,1,9,6 -050,01,021,Alabama,Chilton County,13,9,2746,1313,1433,1124,1257,150,156,18,6,10,5,3,4,8,5,1132,1260,151,157,23,9,12,5,3,7,1171,1305,1018,1147,133,146,7,4,8,4,0,0,5,4,1023,1150,134,147,10,6,9,4,0,2,142,128,106,110,17,10,11,2,2,1,3,4,3,1,109,110,17,10,13,3,3,1,3,5 -050,01,021,Alabama,Chilton County,13,10,2837,1435,1402,1294,1207,116,161,10,4,4,12,3,3,8,15,1302,1220,118,167,16,11,4,15,3,4,1310,1299,1182,1116,112,158,7,0,3,11,0,0,6,14,1188,1128,113,164,12,7,3,14,0,0,125,103,112,91,4,3,3,4,1,1,3,3,2,1,114,92,5,3,4,4,1,1,3,4 -050,01,021,Alabama,Chilton County,13,11,2850,1435,1415,1280,1241,132,147,7,4,6,5,3,3,7,15,1285,1255,135,152,12,14,7,7,3,3,1300,1346,1166,1181,122,143,1,3,6,5,1,1,4,13,1168,1193,124,146,5,13,6,7,1,1,135,69,114,60,10,4,6,1,0,0,2,2,3,2,117,62,11,6,7,1,1,0,2,2 -050,01,021,Alabama,Chilton County,13,12,3029,1493,1536,1317,1359,144,155,9,8,4,6,3,0,16,8,1332,1366,148,157,22,13,5,8,4,0,1403,1492,1238,1319,141,153,9,7,4,5,0,0,11,8,1249,1326,143,155,18,12,5,7,1,0,90,44,79,40,3,2,0,1,0,1,3,0,5,0,83,40,5,2,4,1,0,1,3,0 -050,01,021,Alabama,Chilton County,13,13,2927,1413,1514,1258,1338,135,148,11,9,2,7,1,0,6,12,1264,1349,138,151,13,17,3,9,1,1,1384,1487,1232,1313,133,147,10,9,2,7,1,0,6,11,1238,1323,136,149,12,17,3,9,1,1,29,27,26,25,2,1,1,0,0,0,0,0,0,1,26,26,2,2,1,0,0,0,0,0 -050,01,021,Alabama,Chilton County,13,14,2566,1202,1364,1083,1192,100,145,9,7,3,4,0,1,7,15,1090,1204,101,149,15,20,3,5,0,1,1175,1343,1057,1172,99,144,9,7,3,4,0,1,7,15,1064,1184,100,148,15,20,3,5,0,1,27,21,26,20,1,1,0,0,0,0,0,0,0,0,26,20,1,1,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,13,15,2080,958,1122,858,1029,87,78,2,3,0,3,0,0,11,9,868,1037,91,82,11,10,1,3,1,0,933,1106,837,1016,86,78,2,3,0,2,0,0,8,7,844,1022,87,81,10,8,0,2,0,0,25,16,21,13,1,0,0,0,0,1,0,0,3,2,24,15,4,1,1,2,1,1,1,0 -050,01,021,Alabama,Chilton County,13,16,1446,675,771,625,705,42,55,4,3,0,3,0,0,4,5,627,709,44,57,8,7,0,3,0,0,667,765,617,699,42,55,4,3,0,3,0,0,4,5,619,703,44,57,8,7,0,3,0,0,8,6,8,6,0,0,0,0,0,0,0,0,0,0,8,6,0,0,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,13,17,889,368,521,334,473,25,38,2,3,0,3,0,0,7,4,340,476,26,39,8,7,1,3,0,0,362,516,328,470,25,36,2,3,0,3,0,0,7,4,334,473,26,37,8,7,1,3,0,0,6,5,6,3,0,2,0,0,0,0,0,0,0,0,6,3,0,2,0,0,0,0,0,0 -050,01,021,Alabama,Chilton County,13,18,790,302,488,279,442,21,38,1,3,0,1,0,0,1,4,279,446,22,39,2,6,0,1,0,0,290,487,267,441,21,38,1,3,0,1,0,0,1,4,267,445,22,39,2,6,0,1,0,0,12,1,12,1,0,0,0,0,0,0,0,0,0,0,12,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,0,13859,6688,7171,3808,3949,2834,3179,11,7,5,7,0,0,30,29,3831,3972,2854,3198,21,17,13,14,1,1,6648,7138,3778,3929,2824,3167,11,7,5,7,0,0,30,28,3801,3951,2844,3186,21,16,13,14,1,1,40,33,30,20,10,12,0,0,0,0,0,0,0,1,30,21,10,12,0,1,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,1,749,406,343,198,194,201,146,1,0,0,0,0,0,6,3,204,197,204,148,2,0,2,1,1,0,403,340,195,193,201,144,1,0,0,0,0,0,6,3,201,196,204,146,2,0,2,1,1,0,3,3,3,1,0,2,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,2,864,469,395,272,200,191,192,0,0,0,0,0,0,6,3,277,202,196,195,1,0,1,1,0,0,466,393,270,198,190,192,0,0,0,0,0,0,6,3,275,200,195,195,1,0,1,1,0,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,3,954,467,487,262,257,200,227,0,0,1,0,0,0,4,3,266,260,202,229,0,0,3,1,0,0,464,486,259,256,200,227,0,0,1,0,0,0,4,3,263,259,202,229,0,0,3,1,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,4,904,464,440,219,199,243,238,1,0,1,1,0,0,0,2,219,201,243,240,1,0,1,1,0,0,460,439,216,198,242,238,1,0,1,1,0,0,0,2,216,200,242,240,1,0,1,1,0,0,4,1,3,1,1,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,5,670,345,325,155,171,190,150,0,0,0,1,0,0,0,3,155,174,190,152,0,0,0,2,0,1,340,324,151,171,189,149,0,0,0,1,0,0,0,3,151,174,189,151,0,0,0,2,0,1,5,1,4,0,1,1,0,0,0,0,0,0,0,0,4,0,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,6,669,328,341,171,179,153,161,0,0,2,0,0,0,2,1,173,180,154,161,1,1,2,0,0,0,326,340,169,178,153,161,0,0,2,0,0,0,2,1,171,179,154,161,1,1,2,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,7,724,353,371,209,202,142,165,1,2,0,2,0,0,1,0,210,202,142,165,1,2,1,2,0,0,352,369,208,201,142,164,1,2,0,2,0,0,1,0,209,201,142,164,1,2,1,2,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,8,835,402,433,254,245,145,187,3,0,0,1,0,0,0,0,254,245,145,187,3,0,0,1,0,0,401,428,254,242,144,185,3,0,0,1,0,0,0,0,254,242,144,185,3,0,0,1,0,0,1,5,0,3,1,2,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,9,879,405,474,239,256,165,215,1,2,0,0,0,0,0,1,239,257,165,215,1,2,0,1,0,0,402,472,237,255,164,214,1,2,0,0,0,0,0,1,237,256,164,214,1,2,0,1,0,0,3,2,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,10,1044,509,535,285,272,222,261,2,1,0,1,0,0,0,0,285,272,222,261,2,1,0,1,0,0,508,533,285,271,221,260,2,1,0,1,0,0,0,0,285,271,221,260,2,1,0,1,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,11,1085,518,567,282,282,231,281,2,0,0,0,0,0,3,4,284,283,233,285,3,3,1,0,0,0,515,567,279,282,231,281,2,0,0,0,0,0,3,4,281,283,233,285,3,3,1,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,12,1020,484,536,252,280,231,255,0,0,1,0,0,0,0,1,252,281,231,255,0,0,1,1,0,0,484,533,252,278,231,254,0,0,1,0,0,0,0,1,252,279,231,254,0,0,1,1,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,13,943,438,505,266,311,171,190,0,1,0,0,0,0,1,3,267,313,171,191,1,3,0,1,0,0,436,499,266,309,169,187,0,1,0,0,0,0,1,2,267,310,169,188,1,2,0,1,0,0,2,6,0,2,2,3,0,0,0,0,0,0,0,1,0,3,2,3,0,1,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,14,832,399,433,272,252,124,178,0,0,0,0,0,0,3,3,273,254,127,179,2,3,0,0,0,0,393,430,268,249,122,178,0,0,0,0,0,0,3,3,269,251,125,179,2,3,0,0,0,0,6,3,4,3,2,0,0,0,0,0,0,0,0,0,4,3,2,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,15,627,302,325,199,219,102,105,0,0,0,0,0,0,1,1,199,220,103,106,0,1,1,0,0,0,300,324,197,218,102,105,0,0,0,0,0,0,1,1,197,219,103,106,0,1,1,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,16,448,177,271,126,185,49,84,0,0,0,1,0,0,2,1,127,186,51,85,2,0,0,1,0,0,177,271,126,185,49,84,0,0,0,1,0,0,2,1,127,186,51,85,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,17,329,130,199,85,129,44,70,0,0,0,0,0,0,1,0,85,129,45,70,1,0,0,0,0,0,130,199,85,129,44,70,0,0,0,0,0,0,1,0,85,129,45,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,1,18,283,92,191,62,116,30,74,0,1,0,0,0,0,0,0,62,116,30,74,0,1,0,0,0,0,91,191,61,116,30,74,0,1,0,0,0,0,0,0,61,116,30,74,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,0,13858,6687,7171,3807,3949,2834,3179,11,7,5,7,0,0,30,29,3830,3972,2854,3198,21,17,13,14,1,1,6647,7138,3777,3929,2824,3167,11,7,5,7,0,0,30,28,3800,3951,2844,3186,21,16,13,14,1,1,40,33,30,20,10,12,0,0,0,0,0,0,0,1,30,21,10,12,0,1,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,1,749,406,343,198,194,201,146,1,0,0,0,0,0,6,3,204,197,204,148,2,0,2,1,1,0,403,340,195,193,201,144,1,0,0,0,0,0,6,3,201,196,204,146,2,0,2,1,1,0,3,3,3,1,0,2,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,2,864,469,395,272,200,191,192,0,0,0,0,0,0,6,3,277,202,196,195,1,0,1,1,0,0,466,393,270,198,190,192,0,0,0,0,0,0,6,3,275,200,195,195,1,0,1,1,0,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,3,954,467,487,262,257,200,227,0,0,1,0,0,0,4,3,266,260,202,229,0,0,3,1,0,0,464,486,259,256,200,227,0,0,1,0,0,0,4,3,263,259,202,229,0,0,3,1,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,4,904,464,440,219,199,243,238,1,0,1,1,0,0,0,2,219,201,243,240,1,0,1,1,0,0,460,439,216,198,242,238,1,0,1,1,0,0,0,2,216,200,242,240,1,0,1,1,0,0,4,1,3,1,1,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,5,670,345,325,155,171,190,150,0,0,0,1,0,0,0,3,155,174,190,152,0,0,0,2,0,1,340,324,151,171,189,149,0,0,0,1,0,0,0,3,151,174,189,151,0,0,0,2,0,1,5,1,4,0,1,1,0,0,0,0,0,0,0,0,4,0,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,6,669,328,341,171,179,153,161,0,0,2,0,0,0,2,1,173,180,154,161,1,1,2,0,0,0,326,340,169,178,153,161,0,0,2,0,0,0,2,1,171,179,154,161,1,1,2,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,7,724,353,371,209,202,142,165,1,2,0,2,0,0,1,0,210,202,142,165,1,2,1,2,0,0,352,369,208,201,142,164,1,2,0,2,0,0,1,0,209,201,142,164,1,2,1,2,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,8,835,402,433,254,245,145,187,3,0,0,1,0,0,0,0,254,245,145,187,3,0,0,1,0,0,401,428,254,242,144,185,3,0,0,1,0,0,0,0,254,242,144,185,3,0,0,1,0,0,1,5,0,3,1,2,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,9,879,405,474,239,256,165,215,1,2,0,0,0,0,0,1,239,257,165,215,1,2,0,1,0,0,402,472,237,255,164,214,1,2,0,0,0,0,0,1,237,256,164,214,1,2,0,1,0,0,3,2,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,10,1044,509,535,285,272,222,261,2,1,0,1,0,0,0,0,285,272,222,261,2,1,0,1,0,0,508,533,285,271,221,260,2,1,0,1,0,0,0,0,285,271,221,260,2,1,0,1,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,11,1085,518,567,282,282,231,281,2,0,0,0,0,0,3,4,284,283,233,285,3,3,1,0,0,0,515,567,279,282,231,281,2,0,0,0,0,0,3,4,281,283,233,285,3,3,1,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,12,1020,484,536,252,280,231,255,0,0,1,0,0,0,0,1,252,281,231,255,0,0,1,1,0,0,484,533,252,278,231,254,0,0,1,0,0,0,0,1,252,279,231,254,0,0,1,1,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,13,943,438,505,266,311,171,190,0,1,0,0,0,0,1,3,267,313,171,191,1,3,0,1,0,0,436,499,266,309,169,187,0,1,0,0,0,0,1,2,267,310,169,188,1,2,0,1,0,0,2,6,0,2,2,3,0,0,0,0,0,0,0,1,0,3,2,3,0,1,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,14,831,398,433,271,252,124,178,0,0,0,0,0,0,3,3,272,254,127,179,2,3,0,0,0,0,392,430,267,249,122,178,0,0,0,0,0,0,3,3,268,251,125,179,2,3,0,0,0,0,6,3,4,3,2,0,0,0,0,0,0,0,0,0,4,3,2,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,15,627,302,325,199,219,102,105,0,0,0,0,0,0,1,1,199,220,103,106,0,1,1,0,0,0,300,324,197,218,102,105,0,0,0,0,0,0,1,1,197,219,103,106,0,1,1,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,16,448,177,271,126,185,49,84,0,0,0,1,0,0,2,1,127,186,51,85,2,0,0,1,0,0,177,271,126,185,49,84,0,0,0,1,0,0,2,1,127,186,51,85,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,17,329,130,199,85,129,44,70,0,0,0,0,0,0,1,0,85,129,45,70,1,0,0,0,0,0,130,199,85,129,44,70,0,0,0,0,0,0,1,0,85,129,45,70,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,2,18,283,92,191,62,116,30,74,0,1,0,0,0,0,0,0,62,116,30,74,0,1,0,0,0,0,91,191,61,116,30,74,0,1,0,0,0,0,0,0,61,116,30,74,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,0,13848,6673,7175,3806,3958,2819,3172,11,7,6,8,0,0,31,30,3835,3986,2835,3191,21,18,13,11,1,1,6633,7141,3775,3937,2810,3160,11,7,6,8,0,0,31,29,3804,3965,2826,3178,21,17,13,11,1,1,40,34,31,21,9,12,0,0,0,0,0,0,0,1,31,21,9,13,0,1,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,1,740,399,341,194,192,197,145,1,0,0,0,0,0,7,4,199,196,203,149,3,0,2,0,0,0,396,338,191,191,197,143,1,0,0,0,0,0,7,4,196,195,203,147,3,0,2,0,0,0,3,3,3,1,0,2,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,2,861,468,393,269,201,193,189,0,0,0,0,0,0,6,3,275,204,197,192,0,0,1,0,1,0,465,391,267,199,192,189,0,0,0,0,0,0,6,3,273,202,196,192,0,0,1,0,1,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,3,942,461,481,264,255,192,223,0,0,1,0,0,0,4,3,268,258,195,224,1,1,1,1,0,0,457,480,260,254,192,223,0,0,1,0,0,0,4,3,264,257,195,224,1,1,1,1,0,0,4,1,4,1,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,4,903,462,441,219,202,241,236,1,0,1,1,0,0,0,2,219,204,241,238,1,0,1,1,0,0,458,440,216,201,240,236,1,0,1,1,0,0,0,2,216,203,240,238,1,0,1,1,0,0,4,1,3,1,1,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,5,683,349,334,157,174,192,157,0,0,0,1,0,0,0,2,157,176,192,158,0,1,0,1,0,0,344,333,153,174,191,156,0,0,0,1,0,0,0,2,153,176,191,157,0,1,0,1,0,0,5,1,4,0,1,1,0,0,0,0,0,0,0,0,4,0,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,6,668,328,340,171,176,152,162,0,0,3,0,0,0,2,2,173,178,152,163,0,0,5,1,0,0,326,339,169,175,152,162,0,0,3,0,0,0,2,2,171,177,152,163,0,0,5,1,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,7,720,349,371,204,205,143,161,1,2,0,3,0,0,1,0,205,205,144,161,1,2,0,3,0,0,348,369,203,204,143,160,1,2,0,3,0,0,1,0,204,204,144,160,1,2,0,3,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,8,833,402,431,257,243,142,187,3,0,0,1,0,0,0,0,257,243,142,187,3,0,0,1,0,0,401,426,257,240,141,185,3,0,0,1,0,0,0,0,257,240,141,185,3,0,0,1,0,0,1,5,0,3,1,2,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,9,865,400,465,240,255,159,207,1,2,0,0,0,0,0,1,240,256,159,208,1,2,0,0,0,0,397,463,238,254,158,206,1,2,0,0,0,0,0,1,238,255,158,207,1,2,0,0,0,0,3,2,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,10,1040,505,535,283,271,220,262,2,1,0,1,0,0,0,0,283,271,220,262,2,1,0,1,0,0,504,533,283,270,219,261,2,1,0,1,0,0,0,0,283,270,219,261,2,1,0,1,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,11,1083,520,563,283,283,232,276,2,0,0,0,0,0,3,4,286,287,234,279,3,1,0,1,0,1,517,563,280,283,232,276,2,0,0,0,0,0,3,4,283,287,234,279,3,1,0,1,0,1,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,12,1026,483,543,252,282,230,260,0,0,1,0,0,0,0,1,252,282,230,261,0,1,1,0,0,0,483,540,252,280,230,259,0,0,1,0,0,0,0,1,252,280,230,260,0,1,1,0,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,13,948,442,506,268,306,173,196,0,1,0,0,0,0,1,3,269,308,173,197,0,4,1,0,0,0,441,500,268,304,172,193,0,1,0,0,0,0,1,2,269,306,172,193,0,3,1,0,0,0,1,6,0,2,1,3,0,0,0,0,0,0,0,1,0,2,1,4,0,1,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,14,834,394,440,266,260,125,177,0,0,0,0,0,0,3,3,269,263,125,177,3,3,0,0,0,0,388,436,262,256,123,177,0,0,0,0,0,0,3,3,265,259,123,177,3,3,0,0,0,0,6,4,4,4,2,0,0,0,0,0,0,0,0,0,4,4,2,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,15,632,307,325,202,218,104,106,0,0,0,0,0,0,1,1,203,219,104,106,0,1,1,0,0,0,305,324,200,217,104,106,0,0,0,0,0,0,1,1,201,218,104,106,0,1,1,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,16,454,183,271,130,185,51,84,0,0,0,1,0,0,2,1,132,186,51,85,2,0,0,1,0,0,183,271,130,185,51,84,0,0,0,1,0,0,2,1,132,186,51,85,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,17,332,128,204,85,133,42,71,0,0,0,0,0,0,1,0,86,133,42,71,1,0,0,0,0,0,128,204,85,133,42,71,0,0,0,0,0,0,1,0,86,133,42,71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,3,18,284,93,191,62,117,31,73,0,1,0,0,0,0,0,0,62,117,31,73,0,1,0,0,0,0,92,191,61,117,31,73,0,1,0,0,0,0,0,0,61,117,31,73,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,0,13608,6499,7109,3741,3903,2709,3156,12,9,7,9,0,0,30,32,3769,3933,2726,3175,25,20,12,13,1,0,6462,7074,3713,3881,2700,3144,12,9,7,9,0,0,30,31,3741,3910,2717,3163,25,19,12,13,1,0,37,35,28,22,9,12,0,0,0,0,0,0,0,1,28,23,9,12,0,1,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,1,680,361,319,185,180,170,136,1,0,0,0,0,0,5,3,190,183,173,139,2,0,1,0,0,0,361,316,185,178,170,135,1,0,0,0,0,0,5,3,190,181,173,138,2,0,1,0,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,2,828,452,376,259,191,188,180,0,1,0,0,0,0,5,4,264,195,192,184,1,1,0,0,0,0,450,374,258,189,187,180,0,1,0,0,0,0,5,4,263,193,191,184,1,1,0,0,0,0,2,2,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,3,904,439,465,258,243,175,219,0,0,1,0,0,0,5,3,263,246,178,220,1,2,3,0,1,0,435,464,254,242,175,219,0,0,1,0,0,0,5,3,259,245,178,220,1,2,3,0,1,0,4,1,4,1,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,4,899,451,448,224,216,225,229,2,0,0,1,0,0,0,2,224,218,225,230,2,1,0,1,0,0,447,445,220,215,225,227,2,0,0,1,0,0,0,2,220,217,225,228,2,1,0,1,0,0,4,3,4,1,0,2,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,5,695,345,350,160,173,184,175,0,0,0,0,0,0,1,2,161,174,185,177,0,1,0,0,0,0,340,350,157,173,182,175,0,0,0,0,0,0,1,2,158,174,183,177,0,1,0,0,0,0,5,0,3,0,2,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,6,652,314,338,164,170,144,162,0,0,4,3,0,0,2,3,166,173,146,164,1,0,4,4,0,0,313,337,163,169,144,162,0,0,4,3,0,0,2,3,165,172,146,164,1,0,4,4,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,7,690,324,366,188,200,135,163,0,1,0,2,0,0,1,0,189,200,136,163,0,1,0,2,0,0,321,365,185,199,135,163,0,1,0,2,0,0,1,0,186,199,136,163,0,1,0,2,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,8,783,379,404,238,228,137,174,4,1,0,1,0,0,0,0,238,228,137,174,4,1,0,1,0,0,378,398,238,225,136,171,4,1,0,1,0,0,0,0,238,225,136,171,4,1,0,1,0,0,1,6,0,3,1,3,0,0,0,0,0,0,0,0,0,3,1,3,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,9,811,372,439,235,252,136,184,1,2,0,0,0,0,0,1,235,253,136,185,1,2,0,0,0,0,369,437,233,251,135,183,1,2,0,0,0,0,0,1,233,252,135,184,1,2,0,0,0,0,3,2,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,10,1017,484,533,268,272,215,259,1,1,0,1,0,0,0,0,268,272,215,259,1,1,0,1,0,0,483,533,268,272,214,259,1,1,0,1,0,0,0,0,268,272,214,259,1,1,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,11,1063,506,557,281,285,220,269,2,0,1,0,0,0,2,3,283,288,221,270,3,2,1,0,0,0,503,555,278,284,220,268,2,0,1,0,0,0,2,3,280,287,221,269,3,2,1,0,0,0,3,2,3,1,0,1,0,0,0,0,0,0,0,0,3,1,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,12,1010,477,533,249,266,225,265,1,0,1,0,0,0,1,2,249,268,226,266,2,0,1,1,0,0,477,531,249,264,225,265,1,0,1,0,0,0,1,2,249,266,226,266,2,0,1,1,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,13,976,462,514,271,295,190,216,0,1,0,0,0,0,1,2,272,297,190,217,1,2,1,0,0,0,461,508,271,293,189,212,0,1,0,0,0,0,1,2,272,295,189,213,1,2,1,0,0,0,1,6,0,2,1,4,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,14,840,383,457,253,274,128,177,0,1,0,0,0,0,2,5,255,278,128,178,2,4,0,2,0,0,378,453,249,271,127,177,0,1,0,0,0,0,2,4,251,274,127,178,2,3,0,2,0,0,5,4,4,3,1,0,0,0,0,0,0,0,0,1,4,4,1,0,0,1,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,15,649,320,329,215,216,103,112,0,0,0,0,0,0,2,1,216,217,104,113,2,0,0,0,0,0,317,327,213,214,102,112,0,0,0,0,0,0,2,1,214,215,103,113,2,0,0,0,0,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,16,467,203,264,142,180,59,82,0,0,0,1,0,0,2,1,144,181,59,82,1,1,1,1,0,0,203,264,142,180,59,82,0,0,0,1,0,0,2,1,144,181,59,82,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,17,338,125,213,84,138,40,75,0,0,0,0,0,0,1,0,85,138,40,75,1,0,0,0,0,0,125,213,84,138,40,75,0,0,0,0,0,0,1,0,85,138,40,75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,4,18,306,102,204,67,124,35,79,0,1,0,0,0,0,0,0,67,124,35,79,0,1,0,0,0,0,101,204,66,124,35,79,0,1,0,0,0,0,0,0,66,124,35,79,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,0,13565,6509,7056,3745,3871,2710,3131,13,9,10,11,0,0,31,34,3772,3903,2729,3149,23,23,16,15,3,3,6465,7011,3712,3843,2699,3115,13,9,10,11,0,0,31,33,3739,3874,2718,3133,23,22,16,15,3,3,44,45,33,28,11,16,0,0,0,0,0,0,0,1,33,29,11,16,0,1,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,1,660,334,326,178,179,152,143,1,0,0,0,0,0,3,4,181,183,152,145,3,1,1,1,0,0,333,321,178,176,151,141,1,0,0,0,0,0,3,4,181,180,151,143,3,1,1,1,0,0,1,5,0,3,1,2,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,2,776,442,334,247,166,188,165,0,1,1,0,0,0,6,2,252,168,193,165,2,1,1,1,0,1,440,329,245,161,188,165,0,1,1,0,0,0,6,2,250,163,193,165,2,1,1,1,0,1,2,5,2,5,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,3,905,440,465,255,243,179,218,0,0,0,0,0,0,6,4,260,247,184,221,0,1,2,0,1,0,436,462,252,241,178,217,0,0,0,0,0,0,6,4,257,245,183,220,0,1,2,0,1,0,4,3,3,2,1,1,0,0,0,0,0,0,0,0,3,2,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,4,876,440,436,228,222,208,211,2,0,1,0,0,0,1,3,229,225,208,214,3,0,1,0,0,0,435,432,223,219,208,210,2,0,1,0,0,0,1,3,224,222,208,213,3,0,1,0,0,0,5,4,5,3,0,1,0,0,0,0,0,0,0,0,5,3,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,5,751,371,380,170,181,201,197,0,0,0,0,0,0,0,2,170,183,201,198,0,1,0,0,0,0,366,379,167,181,199,196,0,0,0,0,0,0,0,2,167,183,199,197,0,1,0,0,0,0,5,1,3,0,2,1,0,0,0,0,0,0,0,0,3,0,2,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,6,615,298,317,151,145,142,166,0,0,3,2,0,0,2,4,153,149,144,169,1,2,3,2,0,0,295,315,148,144,142,165,0,0,3,2,0,0,2,4,150,148,144,168,1,2,3,2,0,0,3,2,3,1,0,1,0,0,0,0,0,0,0,0,3,1,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,7,697,320,377,188,215,129,157,0,1,2,4,0,0,1,0,189,215,130,157,0,1,2,4,0,0,317,377,185,215,129,157,0,1,2,4,0,0,1,0,186,215,130,157,0,1,2,4,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,8,761,375,386,231,213,139,170,4,1,0,2,0,0,1,0,232,213,140,170,4,1,0,2,0,0,375,380,231,211,139,166,4,1,0,2,0,0,1,0,232,211,140,166,4,1,0,2,0,0,0,6,0,2,0,4,0,0,0,0,0,0,0,0,0,2,0,4,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,9,816,384,432,243,244,139,185,2,2,0,0,0,0,0,1,243,245,139,186,2,2,0,0,0,0,380,429,241,242,137,184,2,2,0,0,0,0,0,1,241,243,137,185,2,2,0,0,0,0,4,3,2,2,2,1,0,0,0,0,0,0,0,0,2,2,2,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,10,977,459,518,257,277,202,240,0,1,0,0,0,0,0,0,257,277,202,240,0,1,0,0,0,0,458,518,257,277,201,240,0,1,0,0,0,0,0,0,257,277,201,240,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,11,1062,518,544,295,286,218,254,3,0,1,2,0,0,1,2,296,287,218,255,3,1,2,3,0,0,513,542,291,285,217,253,3,0,1,2,0,0,1,2,292,286,217,254,3,1,2,3,0,0,5,2,4,1,1,1,0,0,0,0,0,0,0,0,4,1,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,12,1011,489,522,260,253,225,267,1,0,1,0,0,0,2,2,262,255,226,268,1,0,2,0,0,1,488,520,259,251,225,267,1,0,1,0,0,0,2,2,261,253,226,268,1,0,2,0,0,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,13,970,456,514,256,291,199,220,0,1,1,0,0,0,0,2,256,293,199,220,0,2,1,1,0,1,455,511,256,291,198,217,0,1,1,0,0,0,0,2,256,293,198,217,0,2,1,1,0,1,1,3,0,0,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,14,867,392,475,255,291,135,177,0,1,0,0,0,0,2,6,257,296,136,180,0,6,0,0,1,0,387,468,251,286,134,176,0,1,0,0,0,0,2,5,253,290,135,179,0,5,0,0,1,0,5,7,4,5,1,1,0,0,0,0,0,0,0,1,4,6,1,1,0,1,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,15,679,345,334,231,214,111,119,0,0,0,0,0,0,3,1,233,215,112,119,3,1,0,0,0,0,342,332,229,212,110,119,0,0,0,0,0,0,3,1,231,213,111,119,3,1,0,0,0,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,16,479,211,268,144,189,66,77,0,0,0,1,0,0,1,1,145,190,66,77,1,1,0,1,0,0,211,268,144,189,66,77,0,0,0,1,0,0,1,1,145,190,66,77,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,17,328,121,207,82,132,37,75,0,0,0,0,0,0,2,0,83,132,39,75,0,0,1,0,1,0,121,207,82,132,37,75,0,0,0,0,0,0,2,0,83,132,39,75,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,5,18,335,114,221,74,130,40,90,0,1,0,0,0,0,0,0,74,130,40,90,0,1,0,0,0,0,113,221,73,130,40,90,0,1,0,0,0,0,0,0,73,130,40,90,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,0,13401,6414,6987,3699,3849,2651,3078,15,10,12,14,0,0,37,36,3732,3882,2674,3096,30,31,15,18,1,0,6368,6937,3663,3816,2641,3062,15,10,12,14,0,0,37,35,3696,3849,2664,3079,30,31,15,17,1,0,46,50,36,33,10,16,0,0,0,0,0,0,0,1,36,33,10,17,0,0,0,1,0,0 -050,01,023,Alabama,Choctaw County,6,1,628,310,318,165,163,140,151,1,0,0,0,0,0,4,4,169,167,143,153,2,2,0,0,0,0,309,310,164,157,140,149,1,0,0,0,0,0,4,4,168,161,143,151,2,2,0,0,0,0,1,8,1,6,0,2,0,0,0,0,0,0,0,0,1,6,0,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,2,735,400,335,223,176,170,155,0,1,1,0,0,0,6,3,229,179,174,157,1,2,2,0,0,0,397,330,221,173,169,153,0,1,1,0,0,0,6,3,227,176,173,155,1,2,2,0,0,0,3,5,2,3,1,2,0,0,0,0,0,0,0,0,2,3,1,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,3,879,451,428,258,224,184,200,0,0,1,1,0,0,8,3,266,227,190,201,1,1,2,2,0,0,444,425,252,221,183,200,0,0,1,1,0,0,8,3,260,224,189,201,1,1,2,2,0,0,7,3,6,3,1,0,0,0,0,0,0,0,0,0,6,3,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,4,841,405,436,228,225,172,208,1,0,1,0,0,0,3,3,231,227,175,210,1,2,1,0,0,0,400,431,223,221,172,207,1,0,1,0,0,0,3,3,226,223,175,209,1,2,1,0,0,0,5,5,5,4,0,1,0,0,0,0,0,0,0,0,5,4,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,5,771,401,370,178,183,220,183,2,0,0,0,0,0,1,4,179,186,221,186,3,3,0,1,0,0,398,368,176,182,219,182,2,0,0,0,0,0,1,4,177,185,220,185,3,3,0,1,0,0,3,2,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,6,611,305,306,160,153,143,147,0,1,0,2,0,0,2,3,162,156,144,150,1,1,0,2,0,0,299,304,154,153,143,145,0,1,0,2,0,0,2,3,156,156,144,148,1,1,0,2,0,0,6,2,6,0,0,2,0,0,0,0,0,0,0,0,6,0,0,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,7,701,323,378,187,219,129,155,1,1,5,2,0,0,1,1,188,220,129,155,2,2,5,2,0,0,321,376,185,217,129,155,1,1,5,2,0,0,1,1,186,218,129,155,2,2,5,2,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,8,747,361,386,221,210,134,172,4,0,1,4,0,0,1,0,222,210,135,172,4,0,1,4,0,0,360,382,220,208,134,170,4,0,1,4,0,0,1,0,221,208,135,170,4,0,1,4,0,0,1,4,1,2,0,2,0,0,0,0,0,0,0,0,1,2,0,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,9,786,365,421,230,235,133,183,1,1,1,1,0,0,0,1,230,236,133,183,1,2,1,1,0,0,362,420,229,234,131,183,1,1,1,1,0,0,0,1,229,235,131,183,1,2,1,1,0,0,3,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,10,922,436,486,243,260,192,224,1,1,0,1,0,0,0,0,243,260,192,224,1,1,0,1,0,0,434,484,242,259,191,223,1,1,0,1,0,0,0,0,242,259,191,223,1,1,0,1,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,11,1079,507,572,291,294,213,274,3,1,0,2,0,0,0,1,291,295,213,274,3,2,0,2,0,0,505,570,290,293,212,273,3,1,0,2,0,0,0,1,290,294,212,273,3,2,0,2,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,12,1017,499,518,274,256,220,259,1,0,1,0,0,0,3,3,277,259,221,260,3,2,1,0,0,0,498,517,273,255,220,259,1,0,1,0,0,0,3,3,276,258,221,260,3,2,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,13,941,445,496,239,274,205,218,0,2,1,0,0,0,0,2,239,276,205,219,0,4,1,0,0,0,444,493,239,273,204,216,0,2,1,0,0,0,0,2,239,275,204,217,0,4,1,0,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,14,878,389,489,257,300,131,185,0,0,0,0,0,0,1,4,258,303,131,187,1,3,0,1,0,0,385,481,254,295,130,183,0,0,0,0,0,0,1,3,255,298,130,184,1,3,0,0,0,0,4,8,3,5,1,2,0,0,0,0,0,0,0,1,3,5,1,3,0,0,0,1,0,0 -050,01,023,Alabama,Choctaw County,6,15,702,352,350,237,214,111,132,0,1,0,0,0,0,4,3,238,217,113,132,3,3,1,1,1,0,349,348,235,212,110,132,0,1,0,0,0,0,4,3,236,215,112,132,3,3,1,1,1,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,16,486,227,259,155,185,72,73,0,0,0,0,0,0,0,1,155,186,72,74,0,0,0,0,0,0,226,259,154,185,72,73,0,0,0,0,0,0,0,1,154,186,72,74,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,17,343,120,223,76,152,41,70,0,0,0,1,0,0,3,0,78,152,42,70,3,0,0,1,0,0,120,223,76,152,41,70,0,0,0,1,0,0,3,0,78,152,42,70,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,6,18,334,118,216,77,126,41,89,0,1,0,0,0,0,0,0,77,126,41,89,0,1,0,0,0,0,117,216,76,126,41,89,0,1,0,0,0,0,0,0,76,126,41,89,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,0,13322,6364,6958,3712,3854,2589,3044,14,11,11,14,0,1,38,34,3746,3883,2609,3063,26,25,20,19,2,2,6313,6898,3670,3814,2580,3028,14,11,11,12,0,0,38,33,3704,3843,2600,3047,26,24,20,16,2,1,51,60,42,40,9,16,0,0,0,2,0,1,0,1,42,40,9,16,0,1,0,3,0,1 -050,01,023,Alabama,Choctaw County,7,1,627,314,313,173,161,136,149,0,0,0,0,0,0,5,3,178,164,140,151,0,1,1,0,0,0,312,302,171,152,136,147,0,0,0,0,0,0,5,3,176,155,140,149,0,1,1,0,0,0,2,11,2,9,0,2,0,0,0,0,0,0,0,0,2,9,0,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,2,759,401,358,225,196,168,156,1,1,1,0,0,0,6,5,231,201,173,160,1,1,1,1,1,0,394,353,219,193,167,154,1,1,1,0,0,0,6,5,225,198,172,158,1,1,1,1,1,0,7,5,6,3,1,2,0,0,0,0,0,0,0,0,6,3,1,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,3,822,442,380,264,204,172,173,0,0,0,1,0,0,6,2,269,206,175,174,1,1,2,1,1,0,437,376,260,200,171,173,0,0,0,1,0,0,6,2,265,202,174,174,1,1,2,1,1,0,5,4,4,4,1,0,0,0,0,0,0,0,0,0,4,4,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,4,821,386,435,230,224,151,207,0,0,1,1,0,0,4,3,234,227,153,210,1,0,2,1,0,0,382,429,226,220,151,206,0,0,1,0,0,0,4,3,230,223,153,209,1,0,2,0,0,0,4,6,4,4,0,1,0,0,0,1,0,0,0,0,4,4,0,1,0,0,0,1,0,0 -050,01,023,Alabama,Choctaw County,7,5,785,395,390,186,187,205,201,2,0,0,0,0,0,2,2,188,189,206,202,2,0,1,1,0,0,392,387,183,185,205,200,2,0,0,0,0,0,2,2,185,187,206,201,2,0,1,1,0,0,3,3,3,2,0,1,0,0,0,0,0,0,0,0,3,2,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,6,631,316,315,163,172,151,136,0,2,0,2,0,0,2,3,165,174,152,139,0,3,1,2,0,0,307,313,155,172,150,134,0,2,0,2,0,0,2,3,157,174,151,137,0,3,1,2,0,0,9,2,8,0,1,2,0,0,0,0,0,0,0,0,8,0,1,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,7,697,322,375,178,209,138,161,1,1,4,2,0,1,1,1,179,210,138,161,2,2,4,2,0,1,320,374,176,209,138,161,1,1,4,2,0,0,1,1,177,210,138,161,2,2,4,2,0,0,2,1,2,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,1 -050,01,023,Alabama,Choctaw County,7,8,723,349,374,216,212,128,159,3,0,1,3,0,0,1,0,217,212,129,159,3,0,1,3,0,0,346,368,213,209,128,157,3,0,1,2,0,0,1,0,214,209,129,157,3,0,1,2,0,0,3,6,3,3,0,2,0,0,0,1,0,0,0,0,3,3,0,2,0,0,0,1,0,0 -050,01,023,Alabama,Choctaw County,7,9,781,367,414,236,238,127,174,2,0,2,1,0,0,0,1,236,238,127,175,2,1,2,1,0,0,365,410,236,234,125,174,2,0,2,1,0,0,0,1,236,234,125,175,2,1,2,1,0,0,2,4,0,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,10,889,425,464,245,247,179,214,1,2,0,1,0,0,0,0,245,247,179,214,1,2,0,1,0,0,424,462,244,246,179,213,1,2,0,1,0,0,0,0,244,246,179,213,1,2,0,1,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,11,1051,498,553,282,287,213,262,3,1,0,2,0,0,0,1,282,288,213,262,3,1,0,3,0,0,497,551,282,286,212,261,3,1,0,2,0,0,0,1,282,287,212,261,3,1,0,3,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,12,1008,485,523,270,257,211,263,1,0,0,0,0,0,3,3,271,259,212,265,4,2,1,0,0,0,483,522,268,256,211,263,1,0,0,0,0,0,3,3,269,258,212,265,4,2,1,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,13,951,444,507,234,277,208,228,0,1,2,0,0,0,0,1,234,278,208,228,0,2,2,0,0,0,444,503,234,275,208,226,0,1,2,0,0,0,0,1,234,276,208,226,0,2,2,0,0,0,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,14,879,397,482,253,293,143,184,0,1,0,0,0,0,1,4,254,296,144,184,1,5,0,1,0,0,394,475,252,289,141,182,0,1,0,0,0,0,1,3,253,292,142,182,1,4,0,0,0,0,3,7,1,4,2,2,0,0,0,0,0,0,0,1,1,4,2,2,0,1,0,1,0,0 -050,01,023,Alabama,Choctaw County,7,15,711,351,360,240,209,107,147,0,1,0,0,0,0,4,3,243,212,108,148,4,3,0,0,0,0,346,358,236,207,106,147,0,1,0,0,0,0,4,3,239,210,107,148,4,3,0,0,0,0,5,2,4,2,1,0,0,0,0,0,0,0,0,0,4,2,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,16,511,233,278,157,198,76,79,0,0,0,0,0,0,0,1,157,198,76,80,0,0,0,0,0,1,232,278,156,198,76,79,0,0,0,0,0,0,0,1,156,198,76,80,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,17,347,126,221,87,148,37,71,0,0,0,1,0,0,2,1,89,149,37,71,1,0,1,2,0,0,126,221,87,148,37,71,0,0,0,1,0,0,2,1,89,149,37,71,1,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,7,18,329,113,216,73,135,39,80,0,1,0,0,0,0,1,0,74,135,39,80,0,1,1,0,0,0,112,216,72,135,39,80,0,1,0,0,0,0,1,0,73,135,39,80,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,0,13237,6296,6941,3706,3870,2531,3009,13,9,7,12,0,1,39,40,3743,3905,2552,3032,28,25,12,18,1,3,6242,6876,3663,3823,2522,2995,13,9,7,10,0,0,37,39,3698,3857,2541,3018,28,24,12,16,1,2,54,65,43,47,9,14,0,0,0,2,0,1,2,1,45,48,11,14,0,1,0,2,0,1 -050,01,023,Alabama,Choctaw County,8,1,681,327,354,183,195,137,153,0,0,0,0,0,0,7,6,190,201,141,158,3,1,0,0,0,0,325,340,181,181,137,153,0,0,0,0,0,0,7,6,188,187,141,158,3,1,0,0,0,0,2,14,2,14,0,0,0,0,0,0,0,0,0,0,2,14,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,2,708,376,332,212,184,155,142,1,0,1,0,0,0,7,6,219,189,158,146,3,2,3,1,0,0,367,323,204,179,154,138,1,0,1,0,0,0,7,6,211,184,157,142,3,2,3,1,0,0,9,9,8,5,1,4,0,0,0,0,0,0,0,0,8,5,1,4,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,3,811,438,373,257,198,176,173,0,1,0,0,0,0,5,1,261,199,180,174,3,1,0,0,0,0,434,369,254,194,175,173,0,1,0,0,0,0,5,1,258,195,179,174,3,1,0,0,0,0,4,4,3,4,1,0,0,0,0,0,0,0,0,0,3,4,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,4,815,393,422,232,222,156,196,0,0,1,1,0,0,4,3,236,225,158,198,0,1,2,1,1,0,388,416,227,218,156,195,0,0,1,0,0,0,4,3,231,221,158,197,0,1,2,0,1,0,5,6,5,4,0,1,0,0,0,1,0,0,0,0,5,4,0,1,0,0,0,1,0,0 -050,01,023,Alabama,Choctaw County,8,5,746,371,375,186,190,183,182,2,0,0,0,0,0,0,3,186,192,183,183,2,1,0,1,0,1,369,371,184,187,183,181,2,0,0,0,0,0,0,3,184,189,183,182,2,1,0,1,0,1,2,4,2,3,0,1,0,0,0,0,0,0,0,0,2,3,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,6,640,313,327,171,182,141,141,0,0,0,1,0,0,1,3,172,184,141,144,0,1,1,1,0,0,306,327,165,182,140,141,0,0,0,1,0,0,1,3,166,184,140,144,0,1,1,1,0,0,7,0,6,0,1,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,7,672,318,354,189,193,126,157,0,0,1,1,0,1,2,2,191,195,126,158,2,1,1,1,0,1,314,353,185,193,126,157,0,0,1,1,0,0,2,2,187,195,126,158,2,1,1,1,0,0,4,1,4,0,0,0,0,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,1 -050,01,023,Alabama,Choctaw County,8,8,708,327,381,197,217,126,158,2,1,1,5,0,0,1,0,198,217,127,158,2,1,1,5,0,0,324,377,194,215,126,157,2,1,1,4,0,0,1,0,195,215,127,157,2,1,1,4,0,0,3,4,3,2,0,1,0,0,0,1,0,0,0,0,3,2,0,1,0,0,0,1,0,0 -050,01,023,Alabama,Choctaw County,8,9,785,380,405,240,235,138,169,2,0,0,1,0,0,0,0,240,235,138,169,2,0,0,1,0,0,379,399,240,230,137,168,2,0,0,1,0,0,0,0,240,230,137,168,2,0,0,1,0,0,1,6,0,5,1,1,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,10,858,400,458,246,252,149,203,2,2,1,0,0,0,2,1,248,252,151,204,2,3,1,0,0,0,396,456,245,251,148,202,2,2,1,0,0,0,0,1,245,251,148,203,2,3,1,0,0,0,4,2,1,1,1,1,0,0,0,0,0,0,2,0,3,1,3,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,11,1017,487,530,268,277,217,251,2,1,0,1,0,0,0,0,268,277,217,251,2,1,0,1,0,0,487,528,268,276,217,250,2,1,0,1,0,0,0,0,268,276,217,250,2,1,0,1,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,12,1027,482,545,264,267,213,273,2,0,0,1,0,0,3,4,267,271,215,275,3,2,0,2,0,0,479,544,262,266,212,273,2,0,0,1,0,0,3,4,265,270,214,275,3,2,0,2,0,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,13,935,439,496,231,266,207,228,0,1,1,0,0,0,0,1,231,267,207,228,0,1,1,1,0,1,439,493,231,264,207,227,0,1,1,0,0,0,0,1,231,265,207,227,0,1,1,1,0,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,14,874,394,480,252,287,140,189,0,1,1,0,0,0,1,3,253,290,141,190,0,3,1,0,0,0,393,474,252,285,139,186,0,1,1,0,0,0,1,2,253,287,140,187,0,2,1,0,0,0,1,6,0,2,1,3,0,0,0,0,0,0,0,1,0,3,1,3,0,1,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,15,757,357,400,240,229,115,165,0,1,0,0,0,0,2,5,242,233,116,167,1,3,0,2,0,0,351,398,236,227,113,165,0,1,0,0,0,0,2,5,238,231,114,167,1,3,0,2,0,0,6,2,4,2,2,0,0,0,0,0,0,0,0,0,4,2,2,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,16,520,248,272,169,187,78,84,0,0,0,0,0,0,1,1,170,188,78,84,1,1,0,0,0,0,246,271,167,186,78,84,0,0,0,0,0,0,1,1,168,187,78,84,1,1,0,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,17,346,137,209,97,145,38,62,0,0,0,1,0,0,2,1,98,146,39,62,2,1,0,1,0,0,137,209,97,145,38,62,0,0,0,1,0,0,2,1,98,146,39,62,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,8,18,337,109,228,72,144,36,83,0,1,0,0,0,0,1,0,73,144,36,83,0,1,1,0,0,0,108,228,71,144,36,83,0,1,0,0,0,0,1,0,72,144,36,83,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,0,13049,6210,6839,3647,3823,2499,2951,15,12,8,11,0,1,41,41,3685,3862,2521,2972,31,27,15,17,2,2,6154,6770,3602,3773,2490,2937,13,11,8,9,0,0,41,40,3640,3811,2512,2958,29,25,15,15,2,1,56,69,45,50,9,14,2,1,0,2,0,1,0,1,45,51,9,14,2,2,0,2,0,1 -050,01,023,Alabama,Choctaw County,9,1,687,341,346,174,177,158,162,1,0,1,0,0,0,7,7,181,183,163,167,2,1,2,2,0,0,337,339,171,170,158,162,0,0,1,0,0,0,7,7,178,176,163,167,1,1,2,2,0,0,4,7,3,7,0,0,1,0,0,0,0,0,0,0,3,7,0,0,1,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,2,676,349,327,197,191,145,132,1,1,0,0,0,0,6,3,203,194,149,135,1,1,2,0,0,0,342,311,191,179,144,128,1,1,0,0,0,0,6,3,197,182,148,131,1,1,2,0,0,0,7,16,6,12,1,4,0,0,0,0,0,0,0,0,6,12,1,4,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,3,782,434,348,251,194,177,150,0,1,0,0,0,0,6,3,257,197,180,152,2,2,1,0,0,0,431,344,249,190,176,150,0,1,0,0,0,0,6,3,255,193,179,152,2,2,1,0,0,0,3,4,2,4,1,0,0,0,0,0,0,0,0,0,2,4,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,4,783,385,398,238,206,139,187,1,1,1,1,0,0,6,3,243,209,144,189,3,2,1,1,0,0,378,392,232,202,139,187,0,0,1,0,0,0,6,3,237,205,144,189,2,1,1,0,0,0,7,6,6,4,0,0,1,1,0,1,0,0,0,0,6,4,0,0,1,1,0,1,0,0 -050,01,023,Alabama,Choctaw County,9,5,727,358,369,194,187,162,178,2,1,0,0,0,0,0,3,194,190,162,180,2,2,0,0,0,0,355,363,191,183,162,176,2,1,0,0,0,0,0,3,191,186,162,178,2,2,0,0,0,0,3,6,3,4,0,2,0,0,0,0,0,0,0,0,3,4,0,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,6,659,323,336,170,189,152,145,0,0,0,0,0,0,1,2,171,190,152,146,1,0,0,1,0,1,315,336,163,189,151,145,0,0,0,0,0,0,1,2,164,190,151,146,1,0,0,1,0,1,8,0,7,0,1,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,7,638,298,340,172,185,122,148,0,0,1,3,0,1,3,3,175,188,123,150,2,1,1,3,0,1,295,339,169,185,122,148,0,0,1,3,0,0,3,3,172,188,123,150,2,1,1,3,0,0,3,1,3,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,1 -050,01,023,Alabama,Choctaw County,9,8,679,309,370,185,212,119,155,1,1,2,2,0,0,2,0,186,212,120,155,3,1,2,2,0,0,304,366,180,208,119,155,1,1,2,2,0,0,2,0,181,208,120,155,3,1,2,2,0,0,5,4,5,4,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,9,761,369,392,235,228,131,161,3,0,0,2,0,0,0,1,235,229,131,161,3,1,0,2,0,0,368,386,235,225,130,159,3,0,0,1,0,0,0,1,235,226,130,159,3,1,0,1,0,0,1,6,0,3,1,2,0,0,0,1,0,0,0,0,0,3,1,2,0,0,0,1,0,0 -050,01,023,Alabama,Choctaw County,9,10,816,383,433,238,253,142,177,2,2,1,0,0,0,0,1,238,254,142,178,2,2,1,0,0,0,381,429,237,250,141,176,2,2,1,0,0,0,0,1,237,251,141,177,2,2,1,0,0,0,2,4,1,3,1,1,0,0,0,0,0,0,0,0,1,3,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,11,981,479,502,257,258,221,242,1,1,0,1,0,0,0,0,257,258,221,242,1,1,0,1,0,0,479,502,257,258,221,242,1,1,0,1,0,0,0,0,257,258,221,242,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,12,1038,483,555,265,289,214,262,2,0,0,1,0,0,2,3,267,292,215,264,2,1,2,1,0,0,480,552,263,287,213,261,2,0,0,1,0,0,2,3,265,290,214,263,2,1,2,1,0,0,3,3,2,2,1,1,0,0,0,0,0,0,0,0,2,2,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,13,924,425,499,231,253,191,243,1,1,1,0,0,0,1,2,232,255,191,243,2,2,1,1,0,0,425,497,231,251,191,243,1,1,1,0,0,0,1,2,232,253,191,243,2,2,1,1,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,14,900,407,493,254,277,151,213,0,1,1,0,0,0,1,2,255,279,151,214,1,2,1,0,0,0,406,487,254,275,150,209,0,1,1,0,0,0,1,2,255,277,150,210,1,2,1,0,0,0,1,6,0,2,1,4,0,0,0,0,0,0,0,0,0,2,1,4,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,15,767,352,415,231,249,120,160,0,1,0,0,0,0,1,5,232,254,120,160,1,4,0,2,0,0,347,412,227,247,119,160,0,1,0,0,0,0,1,4,228,251,119,160,1,3,0,2,0,0,5,3,4,2,1,0,0,0,0,0,0,0,0,1,4,3,1,0,0,1,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,16,534,259,275,175,186,82,87,0,0,0,0,0,0,2,2,176,188,83,87,1,2,0,0,1,0,256,274,173,185,81,87,0,0,0,0,0,0,2,2,174,187,82,87,1,2,0,0,1,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,17,347,141,206,98,143,41,61,0,0,0,1,0,0,2,1,100,144,42,61,2,1,0,1,0,0,141,206,98,143,41,61,0,0,0,1,0,0,2,1,100,144,42,61,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,9,18,350,115,235,82,146,32,88,0,1,0,0,0,0,1,0,83,146,32,88,0,1,1,0,1,0,114,235,81,146,32,88,0,1,0,0,0,0,1,0,82,146,32,88,0,1,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,0,12923,6119,6804,3591,3796,2464,2945,14,10,9,12,0,0,41,41,3628,3833,2484,2961,32,26,17,23,4,3,6065,6737,3549,3744,2453,2933,13,10,9,10,0,0,41,40,3586,3780,2473,2948,31,26,17,21,4,3,54,67,42,52,11,12,1,0,0,2,0,0,0,1,42,53,11,13,1,0,0,2,0,0 -050,01,023,Alabama,Choctaw County,10,1,693,340,353,178,182,151,163,1,0,2,0,0,0,8,8,186,190,156,167,3,2,3,2,0,0,336,347,175,176,151,163,0,0,2,0,0,0,8,8,183,184,156,167,2,2,3,2,0,0,4,6,3,6,0,0,1,0,0,0,0,0,0,0,3,6,0,0,1,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,2,645,326,319,172,186,148,129,1,0,0,0,0,0,5,4,177,189,151,132,2,1,1,1,0,0,318,303,167,172,145,127,1,0,0,0,0,0,5,4,172,175,148,130,2,1,1,1,0,0,8,16,5,14,3,2,0,0,0,0,0,0,0,0,5,14,3,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,3,765,427,338,246,180,173,154,0,1,0,0,0,0,8,3,253,183,178,155,3,3,1,0,0,0,424,336,243,178,173,154,0,1,0,0,0,0,8,3,250,181,178,155,3,3,1,0,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,4,769,377,392,229,218,144,170,0,0,0,1,0,0,4,3,232,220,146,171,2,2,1,1,0,1,372,387,225,214,143,170,0,0,0,0,0,0,4,3,228,216,145,171,2,2,1,0,0,1,5,5,4,4,1,0,0,0,0,1,0,0,0,0,4,4,1,0,0,0,0,1,0,0 -050,01,023,Alabama,Choctaw County,10,5,715,351,364,193,192,154,170,2,1,1,0,0,0,1,1,194,192,154,171,3,2,1,0,0,0,346,357,188,186,154,169,2,1,1,0,0,0,1,1,189,186,154,170,3,2,1,0,0,0,5,7,5,6,0,1,0,0,0,0,0,0,0,0,5,6,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,6,675,321,354,173,190,148,162,0,0,0,0,0,0,0,2,173,191,148,163,0,1,0,1,0,0,317,352,170,189,147,161,0,0,0,0,0,0,0,2,170,190,147,162,0,1,0,1,0,0,4,2,3,1,1,1,0,0,0,0,0,0,0,0,3,1,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,7,589,279,310,155,162,122,142,0,0,0,2,0,0,2,4,157,166,123,143,1,1,0,4,0,0,274,310,150,162,122,142,0,0,0,2,0,0,2,4,152,166,123,143,1,1,0,4,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,8,690,317,373,185,223,127,146,1,1,3,3,0,0,1,0,185,223,128,146,1,1,4,3,0,0,314,369,182,219,127,146,1,1,3,3,0,0,1,0,182,219,128,146,1,1,4,3,0,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,9,723,345,378,224,215,116,161,3,0,0,2,0,0,2,0,226,215,117,161,4,0,0,2,1,0,343,373,222,213,116,159,3,0,0,1,0,0,2,0,224,213,117,159,4,0,0,1,1,0,2,5,2,2,0,2,0,0,0,1,0,0,0,0,2,2,0,2,0,0,0,1,0,0 -050,01,023,Alabama,Choctaw County,10,10,783,372,411,231,243,138,165,2,2,1,0,0,0,0,1,231,244,138,166,2,2,1,0,0,0,369,406,230,239,136,164,2,2,1,0,0,0,0,1,230,240,136,165,2,2,1,0,0,0,3,5,1,4,2,1,0,0,0,0,0,0,0,0,1,4,2,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,11,953,450,503,254,267,196,235,0,1,0,0,0,0,0,0,254,267,196,235,0,1,0,0,0,0,450,503,254,267,196,235,0,1,0,0,0,0,0,0,254,267,196,235,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,12,1034,490,544,273,285,213,255,3,0,0,2,0,0,1,2,274,287,213,256,4,0,0,3,0,0,487,541,271,283,212,254,3,0,0,2,0,0,1,2,272,285,212,255,4,0,0,3,0,0,3,3,2,2,1,1,0,0,0,0,0,0,0,0,2,2,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,13,934,436,498,235,232,197,263,1,1,1,0,0,0,2,2,237,234,197,264,3,2,1,0,0,0,436,496,235,230,197,263,1,1,1,0,0,0,2,2,237,232,197,264,3,2,1,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,14,892,394,498,238,278,155,216,0,1,1,1,0,0,0,2,238,280,155,216,0,1,1,3,0,0,393,495,238,278,154,213,0,1,1,1,0,0,0,2,238,280,154,213,0,1,1,3,0,0,1,3,0,0,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,15,788,348,440,224,270,123,163,0,1,0,0,0,0,1,6,225,276,124,164,1,4,1,1,1,1,343,434,220,266,122,162,0,1,0,0,0,0,1,5,221,271,123,162,1,4,1,1,1,1,5,6,4,4,1,1,0,0,0,0,0,0,0,1,4,5,1,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,16,562,276,286,194,183,79,101,0,0,0,0,0,0,3,2,197,185,79,101,2,2,0,0,1,0,273,285,192,182,78,101,0,0,0,0,0,0,3,2,195,184,78,101,2,2,0,0,1,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,17,351,149,202,101,142,47,58,0,0,0,1,0,0,1,1,102,143,47,58,1,0,0,2,0,1,149,202,101,142,47,58,0,0,0,1,0,0,1,1,102,143,47,58,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,10,18,362,121,241,86,148,33,92,0,1,0,0,0,0,2,0,87,148,34,92,0,1,2,0,1,0,121,241,86,148,33,92,0,1,0,0,0,0,2,0,87,148,34,92,0,1,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,0,12810,6055,6755,3575,3757,2414,2924,14,10,9,15,0,0,43,49,3610,3804,2441,2948,32,29,16,23,2,1,5989,6687,3527,3705,2397,2913,13,10,9,12,0,0,43,47,3562,3750,2424,2936,31,28,16,20,2,1,66,68,48,52,17,11,1,0,0,3,0,0,0,2,48,54,17,12,1,1,0,3,0,0 -050,01,023,Alabama,Choctaw County,11,1,681,337,344,185,176,140,160,1,0,2,0,0,0,9,8,194,184,147,167,3,2,3,0,0,0,330,338,181,170,138,160,0,0,2,0,0,0,9,8,190,178,145,167,2,2,3,0,0,0,7,6,4,6,2,0,1,0,0,0,0,0,0,0,4,6,2,0,1,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,2,651,326,325,164,180,155,139,1,0,0,0,0,0,6,6,170,185,159,143,1,2,2,1,0,0,315,312,158,167,150,139,1,0,0,0,0,0,6,6,164,172,154,143,1,2,2,1,0,0,11,13,6,13,5,0,0,0,0,0,0,0,0,0,6,13,5,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,3,744,408,336,242,183,161,149,0,1,0,0,0,0,5,3,246,186,165,151,1,1,1,1,0,0,399,332,235,180,159,148,0,1,0,0,0,0,5,3,239,183,163,150,1,1,1,1,0,0,9,4,7,3,2,1,0,0,0,0,0,0,0,0,7,3,2,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,4,746,382,364,233,194,144,167,0,0,0,0,0,0,5,3,238,197,147,169,1,1,0,0,1,0,377,361,229,191,143,167,0,0,0,0,0,0,5,3,234,194,146,169,1,1,0,0,1,0,5,3,4,3,1,0,0,0,0,0,0,0,0,0,4,3,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,5,689,333,356,194,188,135,163,0,0,1,2,0,0,3,3,197,191,136,164,1,1,2,3,0,0,329,348,190,183,135,162,0,0,1,0,0,0,3,3,193,186,136,163,1,1,2,1,0,0,4,8,4,5,0,1,0,0,0,2,0,0,0,0,4,5,0,1,0,0,0,2,0,0 -050,01,023,Alabama,Choctaw County,11,6,703,333,370,174,196,157,170,2,1,0,0,0,0,0,3,174,199,157,172,2,2,0,0,0,0,332,366,174,193,156,169,2,1,0,0,0,0,0,3,174,196,156,171,2,2,0,0,0,0,1,4,0,3,1,1,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,7,594,284,310,163,160,119,143,0,0,0,3,0,0,2,4,164,164,120,145,2,2,0,3,0,0,277,309,156,160,119,143,0,0,0,3,0,0,2,3,157,163,120,144,2,2,0,3,0,0,7,1,7,0,0,0,0,0,0,0,0,0,0,1,7,1,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,8,689,316,373,185,226,126,142,1,1,3,3,0,0,1,1,186,227,126,143,2,1,3,3,0,0,314,371,183,224,126,142,1,1,3,3,0,0,1,1,184,225,126,143,2,1,3,3,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,9,693,327,366,216,211,106,153,3,0,0,2,0,0,2,0,217,211,107,153,5,0,0,2,0,0,322,359,211,207,106,151,3,0,0,1,0,0,2,0,212,207,107,151,5,0,0,1,0,0,5,7,5,4,0,2,0,0,0,1,0,0,0,0,5,4,0,2,0,0,0,1,0,0 -050,01,023,Alabama,Choctaw County,11,10,782,361,421,224,246,135,171,1,1,1,1,0,0,0,2,224,248,135,172,1,1,1,2,0,0,358,418,223,243,133,171,1,1,1,1,0,0,0,2,223,245,133,172,1,1,1,2,0,0,3,3,1,3,2,0,0,0,0,0,0,0,0,0,1,3,2,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,11,895,424,471,240,250,183,220,1,1,0,0,0,0,0,0,240,250,183,220,1,1,0,0,0,0,424,469,240,249,183,219,1,1,0,0,0,0,0,0,240,249,183,219,1,1,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,12,1038,494,544,288,287,203,253,3,1,0,2,0,0,0,1,288,288,203,254,3,1,0,2,0,0,492,541,287,285,202,252,3,1,0,2,0,0,0,1,287,286,202,253,3,1,0,2,0,0,2,3,1,2,1,1,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,13,963,450,513,246,247,199,262,1,0,1,0,0,0,3,4,249,251,200,262,4,1,1,3,0,0,449,512,245,246,199,262,1,0,1,0,0,0,3,4,248,250,200,262,4,1,1,3,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,14,868,392,476,221,257,170,214,0,2,1,1,0,0,0,2,221,259,170,214,0,3,1,1,0,1,391,473,221,256,169,212,0,2,1,1,0,0,0,2,221,258,169,212,0,3,1,1,0,1,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,15,786,341,445,223,274,117,167,0,0,0,0,0,0,1,4,224,278,117,167,1,4,0,0,0,0,337,438,220,270,116,165,0,0,0,0,0,0,1,3,221,273,116,165,1,3,0,0,0,0,4,7,3,4,1,2,0,0,0,0,0,0,0,1,3,5,1,2,0,1,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,16,577,280,297,193,183,84,109,0,1,0,0,0,0,3,4,193,186,87,110,3,4,0,1,0,0,277,296,191,182,83,109,0,1,0,0,0,0,3,4,191,185,86,110,3,4,0,1,0,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,17,345,145,200,102,144,43,55,0,0,0,0,0,0,0,1,102,145,43,55,0,1,0,0,0,0,144,200,101,144,43,55,0,0,0,0,0,0,0,1,101,145,43,55,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,11,18,366,122,244,82,155,37,87,0,1,0,1,0,0,3,0,83,155,39,87,1,1,2,1,1,0,122,244,82,155,37,87,0,1,0,1,0,0,3,0,83,155,39,87,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,0,12577,5934,6643,3508,3697,2360,2875,14,10,8,16,0,0,44,45,3546,3738,2390,2896,27,30,17,21,2,4,5876,6570,3464,3638,2347,2865,13,10,8,13,0,0,44,44,3502,3678,2377,2886,26,30,17,18,2,3,58,73,44,59,13,10,1,0,0,3,0,0,0,1,44,60,13,10,1,0,0,3,0,1 -050,01,023,Alabama,Choctaw County,12,1,663,329,334,185,171,132,155,1,0,2,0,0,0,9,8,193,179,138,160,4,1,3,1,0,1,323,323,181,160,131,155,0,0,2,0,0,0,9,8,189,168,137,160,3,1,3,1,0,1,6,11,4,11,1,0,1,0,0,0,0,0,0,0,4,11,1,0,1,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,2,628,305,323,161,181,138,136,0,0,0,1,0,0,6,5,167,185,143,139,1,2,0,1,0,1,292,309,151,167,135,136,0,0,0,1,0,0,6,5,157,171,140,139,1,2,0,1,0,1,13,14,10,14,3,0,0,0,0,0,0,0,0,0,10,14,3,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,3,721,380,341,215,194,158,143,1,1,0,0,0,0,6,3,219,197,162,144,3,3,2,0,0,0,374,334,210,188,157,142,1,1,0,0,0,0,6,3,214,191,161,143,3,3,2,0,0,0,6,7,5,6,1,1,0,0,0,0,0,0,0,0,5,6,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,4,730,393,337,236,177,152,157,0,0,0,0,0,0,5,3,241,180,155,159,0,0,2,1,0,0,390,336,234,176,151,157,0,0,0,0,0,0,5,3,239,179,154,159,0,0,2,1,0,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,5,649,299,350,183,185,112,160,0,0,1,2,0,0,3,3,186,188,115,162,0,1,1,2,0,0,297,343,181,180,112,160,0,0,1,0,0,0,3,3,184,183,115,162,0,1,1,0,0,0,2,7,2,5,0,0,0,0,0,2,0,0,0,0,2,5,0,0,0,0,0,2,0,0 -050,01,023,Alabama,Choctaw County,12,6,726,370,356,198,189,170,163,2,1,0,0,0,0,0,3,198,191,170,164,2,3,0,1,0,0,368,353,196,187,170,162,2,1,0,0,0,0,0,3,196,189,170,163,2,3,0,1,0,0,2,3,2,2,0,1,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,7,579,270,309,148,165,120,139,0,0,0,3,0,0,2,2,150,167,122,139,0,1,1,4,0,0,266,307,145,163,119,139,0,0,0,3,0,0,2,2,147,165,121,139,0,1,1,4,0,0,4,2,3,2,1,0,0,0,0,0,0,0,0,0,3,2,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,8,656,296,360,173,207,119,148,1,1,2,3,0,0,1,1,173,208,119,149,2,1,3,3,0,0,294,360,171,207,119,148,1,1,2,3,0,0,1,1,171,208,119,149,2,1,3,3,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,9,690,322,368,205,217,112,150,2,0,1,1,0,0,2,0,206,217,114,150,3,0,1,1,1,0,317,360,200,212,112,148,2,0,1,0,0,0,2,0,201,212,114,148,3,0,1,0,1,0,5,8,5,5,0,2,0,0,0,1,0,0,0,0,5,5,0,2,0,0,0,1,0,0 -050,01,023,Alabama,Choctaw County,12,10,753,349,404,216,243,130,158,2,0,1,2,0,0,0,1,216,244,130,158,2,1,1,2,0,0,347,400,216,239,128,158,2,0,1,2,0,0,0,1,216,240,128,158,2,1,1,2,0,0,2,4,0,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,11,858,408,450,237,239,170,208,1,2,0,0,0,0,0,1,237,239,170,209,1,3,0,0,0,0,407,448,236,238,170,207,1,2,0,0,0,0,0,1,236,238,170,208,1,3,0,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,12,995,483,512,274,275,206,233,3,1,0,2,0,0,0,1,274,276,206,234,3,2,0,2,0,0,482,510,274,274,205,232,3,1,0,2,0,0,0,1,274,275,205,233,3,2,0,2,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,13,972,455,517,261,243,190,271,1,0,0,0,0,0,3,3,264,246,192,273,1,0,1,1,0,0,453,517,259,243,190,271,1,0,0,0,0,0,3,3,262,246,192,273,1,0,1,1,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,14,865,373,492,203,264,169,225,0,1,1,1,0,0,0,1,203,265,169,225,0,2,1,1,0,0,373,488,203,262,169,223,0,1,1,1,0,0,0,1,203,263,169,223,0,2,1,1,0,0,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,15,782,348,434,224,257,123,172,0,1,0,0,0,0,1,4,225,260,123,173,0,4,1,0,0,1,345,427,223,253,121,170,0,1,0,0,0,0,1,3,224,255,121,171,0,4,1,0,0,0,3,7,1,4,2,2,0,0,0,0,0,0,0,1,1,5,2,2,0,0,0,0,0,1 -050,01,023,Alabama,Choctaw County,12,16,595,285,310,200,190,82,115,0,1,0,0,0,0,3,4,202,194,83,116,3,4,0,0,0,0,280,309,196,189,81,115,0,1,0,0,0,0,3,4,198,193,82,116,3,4,0,0,0,0,5,1,4,1,1,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,17,353,145,208,100,146,45,61,0,0,0,0,0,0,0,1,100,147,45,61,0,1,0,0,0,0,144,208,99,146,45,61,0,0,0,0,0,0,0,1,99,147,45,61,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,12,18,362,124,238,89,154,32,81,0,1,0,1,0,0,3,1,92,155,34,81,2,1,0,1,1,1,124,238,89,154,32,81,0,1,0,1,0,0,3,1,92,155,34,81,2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,0,12418,5876,6542,3478,3638,2325,2820,14,10,10,20,0,0,49,54,3519,3688,2355,2851,32,25,19,29,2,4,5813,6458,3430,3569,2312,2810,13,10,9,16,0,0,49,53,3471,3619,2342,2840,31,25,18,25,2,3,63,84,48,69,13,10,1,0,1,4,0,0,0,1,48,69,13,11,1,0,1,4,0,1 -050,01,023,Alabama,Choctaw County,13,1,648,322,326,178,164,132,146,1,0,3,2,0,0,8,14,185,177,138,156,3,1,4,5,0,1,315,312,174,151,131,146,0,0,2,1,0,0,8,14,181,164,137,156,2,1,3,4,0,1,7,14,4,13,1,0,1,0,1,1,0,0,0,0,4,13,1,0,1,0,1,1,0,0 -050,01,023,Alabama,Choctaw County,13,2,659,317,342,180,188,127,144,0,0,0,2,0,0,10,8,190,196,131,150,4,0,1,3,1,1,302,330,168,176,124,144,0,0,0,2,0,0,10,8,178,184,128,150,4,0,1,3,1,1,15,12,12,12,3,0,0,0,0,0,0,0,0,0,12,12,3,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,3,683,370,313,201,182,160,128,1,0,0,0,0,0,8,3,207,185,167,131,2,0,3,0,0,0,365,303,197,173,159,127,1,0,0,0,0,0,8,3,203,176,166,130,2,0,3,0,0,0,5,10,4,9,1,1,0,0,0,0,0,0,0,0,4,9,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,4,718,395,323,240,172,151,148,0,1,0,0,0,0,4,2,243,174,154,148,0,3,1,0,1,0,390,319,236,168,150,148,0,1,0,0,0,0,4,2,239,170,153,148,0,3,1,0,1,0,5,4,4,4,1,0,0,0,0,0,0,0,0,0,4,4,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,5,624,291,333,177,182,110,146,0,0,1,2,0,0,3,3,180,185,112,147,1,0,1,4,0,0,290,327,176,178,110,146,0,0,1,0,0,0,3,3,179,181,112,147,1,0,1,2,0,0,1,6,1,4,0,0,0,0,0,2,0,0,0,0,1,4,0,0,0,0,0,2,0,0 -050,01,023,Alabama,Choctaw County,13,6,710,362,348,196,183,164,161,2,1,0,0,0,0,0,3,196,186,164,162,2,2,0,1,0,0,358,343,192,179,164,160,2,1,0,0,0,0,0,3,192,182,164,161,2,2,0,1,0,0,4,5,4,4,0,1,0,0,0,0,0,0,0,0,4,4,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,7,601,290,311,162,167,126,140,0,0,0,2,0,0,2,2,164,169,127,141,0,1,1,2,0,0,286,311,159,167,125,140,0,0,0,2,0,0,2,2,161,169,126,141,0,1,1,2,0,0,4,0,3,0,1,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,8,632,296,336,175,185,116,146,1,0,2,3,0,0,2,2,177,187,118,148,1,0,2,3,0,0,294,334,173,183,116,146,1,0,2,3,0,0,2,2,175,185,118,148,1,0,2,3,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,9,659,287,372,188,216,94,152,1,1,2,3,0,0,2,0,189,216,95,152,3,1,2,3,0,0,282,364,183,210,94,151,1,1,2,2,0,0,2,0,184,210,95,151,3,1,2,2,0,0,5,8,5,6,0,1,0,0,0,1,0,0,0,0,5,6,0,1,0,0,0,1,0,0 -050,01,023,Alabama,Choctaw County,13,10,747,354,393,222,228,130,163,2,0,0,2,0,0,0,0,222,228,130,163,2,0,0,2,0,0,353,387,222,223,129,162,2,0,0,2,0,0,0,0,222,223,129,162,2,0,0,2,0,0,1,6,0,5,1,1,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,11,799,383,416,229,238,151,174,2,2,1,0,0,0,0,2,229,240,151,175,2,3,1,0,0,0,381,414,228,237,150,173,2,2,1,0,0,0,0,2,228,239,150,174,2,3,1,0,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,12,981,476,505,259,266,215,237,2,1,0,1,0,0,0,0,259,266,215,237,2,1,0,1,0,0,476,503,259,265,215,236,2,1,0,1,0,0,0,0,259,265,215,236,2,1,0,1,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,13,975,447,528,249,255,193,268,2,0,0,1,0,0,3,4,252,259,194,269,4,1,0,3,0,1,444,527,247,254,192,268,2,0,0,1,0,0,3,4,250,258,193,269,4,1,0,3,0,1,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,14,851,372,479,200,252,172,224,0,1,0,1,0,0,0,1,200,253,172,224,0,2,0,1,0,0,372,476,200,250,172,223,0,1,0,1,0,0,0,1,200,251,172,223,0,2,0,1,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,15,770,338,432,221,252,115,176,0,1,1,0,0,0,1,3,222,253,115,178,1,3,1,0,0,1,337,426,221,250,114,173,0,1,1,0,0,0,1,2,222,251,114,174,1,3,1,0,0,0,1,6,0,2,1,3,0,0,0,0,0,0,0,1,0,2,1,4,0,0,0,0,0,1 -050,01,023,Alabama,Choctaw County,13,16,627,281,346,195,208,84,132,0,1,0,0,0,0,2,5,196,212,85,134,1,5,1,0,0,0,275,344,191,206,82,132,0,1,0,0,0,0,2,5,192,210,83,134,1,5,1,0,0,0,6,2,4,2,2,0,0,0,0,0,0,0,0,0,4,2,2,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,17,381,168,213,117,150,50,62,0,0,0,0,0,0,1,1,118,151,50,62,1,1,0,0,0,0,166,212,115,149,50,62,0,0,0,0,0,0,1,1,116,150,50,62,1,1,0,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,023,Alabama,Choctaw County,13,18,353,127,226,89,150,35,73,0,1,0,1,0,0,3,1,90,151,37,74,3,1,1,1,0,0,127,226,89,150,35,73,0,1,0,1,0,0,3,1,90,151,37,74,3,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,0,25833,12214,13619,6889,7234,5168,6201,44,59,34,45,4,0,75,80,6953,7299,5215,6251,77,103,43,57,7,6,12074,13488,6791,7159,5132,6159,41,55,32,43,4,0,74,72,6854,7217,5178,6203,74,96,40,50,6,2,140,131,98,75,36,42,3,4,2,2,0,0,1,8,99,82,37,48,3,7,3,7,1,4 -050,01,025,Alabama,Clarke County,1,1,1468,756,712,349,340,383,353,4,6,2,5,1,0,17,8,364,348,397,361,7,8,4,5,1,0,738,704,339,336,375,351,4,6,2,5,1,0,17,6,354,342,389,357,7,6,4,5,1,0,18,8,10,4,8,2,0,0,0,0,0,0,0,2,10,6,8,4,0,2,0,0,0,0 -050,01,025,Alabama,Clarke County,1,2,1701,834,867,407,458,410,396,4,4,2,4,1,0,10,5,415,462,418,400,7,5,3,6,1,1,823,853,402,451,405,391,3,4,2,4,1,0,10,3,410,454,413,393,6,5,3,4,1,0,11,14,5,7,5,5,1,0,0,0,0,0,0,2,5,8,5,7,1,0,0,2,0,1 -050,01,025,Alabama,Clarke County,1,3,1945,955,990,454,452,482,522,5,5,2,3,0,0,12,8,465,459,489,528,12,9,3,4,1,1,940,980,445,445,477,520,5,5,2,3,0,0,11,7,455,451,483,525,12,9,2,3,0,0,15,10,9,7,5,2,0,0,0,0,0,0,1,1,10,8,6,3,0,0,1,1,1,1 -050,01,025,Alabama,Clarke County,1,4,1997,1020,977,472,425,536,533,3,4,2,3,0,0,7,12,478,437,542,542,4,6,2,6,1,1,1007,966,463,422,532,526,3,4,2,3,0,0,7,11,469,433,538,534,4,6,2,5,1,0,13,11,9,3,4,7,0,0,0,0,0,0,0,1,9,4,4,8,0,0,0,1,0,1 -050,01,025,Alabama,Clarke County,1,5,1264,640,624,327,262,304,351,2,4,3,1,0,0,4,6,330,268,308,352,4,9,3,2,0,0,627,617,315,259,303,348,2,4,3,1,0,0,4,5,318,264,307,349,4,8,3,2,0,0,13,7,12,3,1,3,0,0,0,0,0,0,0,1,12,4,1,3,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,1,6,1372,639,733,347,356,280,359,6,4,1,5,0,0,5,9,351,360,283,366,7,9,4,5,0,2,629,722,339,348,279,357,5,3,1,5,0,0,5,9,343,352,282,364,6,8,4,5,0,2,10,11,8,8,1,2,1,1,0,0,0,0,0,0,8,8,1,2,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,1,7,1502,672,830,338,409,327,411,1,5,3,4,0,0,3,1,340,410,329,411,3,6,3,4,0,0,661,819,328,404,326,407,1,4,3,3,0,0,3,1,330,405,328,407,3,5,3,3,0,0,11,11,10,5,1,4,0,1,0,1,0,0,0,0,10,5,1,4,0,1,0,1,0,0 -050,01,025,Alabama,Clarke County,1,8,1590,699,891,406,428,283,456,2,3,7,4,0,0,1,0,407,428,283,456,3,3,7,4,0,0,693,882,401,424,282,451,2,3,7,4,0,0,1,0,402,424,282,451,3,3,7,4,0,0,6,9,5,4,1,5,0,0,0,0,0,0,0,0,5,4,1,5,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,9,1710,815,895,466,454,343,435,4,2,1,2,0,0,1,2,467,455,343,436,5,3,1,3,0,0,805,885,459,446,340,433,4,2,1,2,0,0,1,2,460,447,340,434,5,3,1,3,0,0,10,10,7,8,3,2,0,0,0,0,0,0,0,0,7,8,3,2,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,10,1914,913,1001,532,518,374,471,1,2,3,4,1,0,2,6,534,524,374,473,3,6,3,6,1,1,907,992,528,514,373,467,1,2,2,4,1,0,2,5,530,519,373,469,3,6,2,5,1,0,6,9,4,4,1,4,0,0,1,0,0,0,0,1,4,5,1,4,0,0,1,1,0,1 -050,01,025,Alabama,Clarke County,1,11,1960,943,1017,540,516,397,483,2,6,2,5,0,0,2,7,541,520,398,488,4,11,2,6,0,0,936,1008,536,511,396,481,1,5,1,4,0,0,2,7,537,515,397,486,3,10,1,5,0,0,7,9,4,5,1,2,1,1,1,1,0,0,0,0,4,5,1,2,1,1,1,1,0,0 -050,01,025,Alabama,Clarke County,1,12,1706,808,898,464,533,339,356,2,5,2,1,0,0,1,3,465,535,339,357,3,7,2,2,0,0,798,892,457,528,336,356,2,4,2,1,0,0,1,3,458,530,336,357,3,6,2,2,0,0,10,6,7,5,3,0,0,1,0,0,0,0,0,0,7,5,3,0,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,1,13,1530,741,789,505,496,225,286,7,5,1,1,1,0,2,1,507,497,225,287,8,6,2,1,1,0,738,785,503,493,224,285,7,5,1,1,1,0,2,1,505,494,224,286,8,6,2,1,1,0,3,4,2,3,1,1,0,0,0,0,0,0,0,0,2,3,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,14,1306,607,699,421,468,182,228,1,2,1,0,0,0,2,1,423,469,182,228,3,3,1,0,0,0,606,697,420,467,182,227,1,2,1,0,0,0,2,1,422,468,182,227,3,3,1,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,15,1052,491,561,365,367,123,187,0,0,0,2,0,0,3,5,367,372,125,188,3,4,0,2,0,0,486,557,361,363,122,187,0,0,0,2,0,0,3,5,363,368,124,188,3,4,0,2,0,0,5,4,4,4,1,0,0,0,0,0,0,0,0,0,4,4,1,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,16,786,339,447,246,304,92,138,0,2,0,1,0,0,1,2,247,305,92,139,1,4,0,1,0,0,338,445,245,302,92,138,0,2,0,1,0,0,1,2,246,303,92,139,1,4,0,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,17,554,208,346,158,219,49,124,0,0,1,0,0,0,0,3,158,221,49,126,0,3,1,0,0,0,208,343,158,218,49,122,0,0,1,0,0,0,0,3,158,220,49,124,0,3,1,0,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,1,18,476,134,342,92,229,39,112,0,0,1,0,0,0,2,1,94,229,39,113,0,1,2,0,1,0,134,341,92,228,39,112,0,0,1,0,0,0,2,1,94,228,39,113,0,1,2,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,0,25834,12215,13619,6889,7234,5169,6201,44,59,34,45,4,0,75,80,6953,7299,5216,6251,77,103,43,57,7,6,12075,13488,6791,7159,5133,6159,41,55,32,43,4,0,74,72,6854,7217,5179,6203,74,96,40,50,6,2,140,131,98,75,36,42,3,4,2,2,0,0,1,8,99,82,37,48,3,7,3,7,1,4 -050,01,025,Alabama,Clarke County,2,1,1468,756,712,349,340,383,353,4,6,2,5,1,0,17,8,364,348,397,361,7,8,4,5,1,0,738,704,339,336,375,351,4,6,2,5,1,0,17,6,354,342,389,357,7,6,4,5,1,0,18,8,10,4,8,2,0,0,0,0,0,0,0,2,10,6,8,4,0,2,0,0,0,0 -050,01,025,Alabama,Clarke County,2,2,1701,834,867,407,458,410,396,4,4,2,4,1,0,10,5,415,462,418,400,7,5,3,6,1,1,823,853,402,451,405,391,3,4,2,4,1,0,10,3,410,454,413,393,6,5,3,4,1,0,11,14,5,7,5,5,1,0,0,0,0,0,0,2,5,8,5,7,1,0,0,2,0,1 -050,01,025,Alabama,Clarke County,2,3,1945,955,990,454,452,482,522,5,5,2,3,0,0,12,8,465,459,489,528,12,9,3,4,1,1,940,980,445,445,477,520,5,5,2,3,0,0,11,7,455,451,483,525,12,9,2,3,0,0,15,10,9,7,5,2,0,0,0,0,0,0,1,1,10,8,6,3,0,0,1,1,1,1 -050,01,025,Alabama,Clarke County,2,4,1997,1020,977,472,425,536,533,3,4,2,3,0,0,7,12,478,437,542,542,4,6,2,6,1,1,1007,966,463,422,532,526,3,4,2,3,0,0,7,11,469,433,538,534,4,6,2,5,1,0,13,11,9,3,4,7,0,0,0,0,0,0,0,1,9,4,4,8,0,0,0,1,0,1 -050,01,025,Alabama,Clarke County,2,5,1264,640,624,327,262,304,351,2,4,3,1,0,0,4,6,330,268,308,352,4,9,3,2,0,0,627,617,315,259,303,348,2,4,3,1,0,0,4,5,318,264,307,349,4,8,3,2,0,0,13,7,12,3,1,3,0,0,0,0,0,0,0,1,12,4,1,3,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,2,6,1372,639,733,347,356,280,359,6,4,1,5,0,0,5,9,351,360,283,366,7,9,4,5,0,2,629,722,339,348,279,357,5,3,1,5,0,0,5,9,343,352,282,364,6,8,4,5,0,2,10,11,8,8,1,2,1,1,0,0,0,0,0,0,8,8,1,2,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,2,7,1502,672,830,338,409,327,411,1,5,3,4,0,0,3,1,340,410,329,411,3,6,3,4,0,0,661,819,328,404,326,407,1,4,3,3,0,0,3,1,330,405,328,407,3,5,3,3,0,0,11,11,10,5,1,4,0,1,0,1,0,0,0,0,10,5,1,4,0,1,0,1,0,0 -050,01,025,Alabama,Clarke County,2,8,1590,699,891,406,428,283,456,2,3,7,4,0,0,1,0,407,428,283,456,3,3,7,4,0,0,693,882,401,424,282,451,2,3,7,4,0,0,1,0,402,424,282,451,3,3,7,4,0,0,6,9,5,4,1,5,0,0,0,0,0,0,0,0,5,4,1,5,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,9,1710,815,895,466,454,343,435,4,2,1,2,0,0,1,2,467,455,343,436,5,3,1,3,0,0,805,885,459,446,340,433,4,2,1,2,0,0,1,2,460,447,340,434,5,3,1,3,0,0,10,10,7,8,3,2,0,0,0,0,0,0,0,0,7,8,3,2,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,10,1914,913,1001,532,518,374,471,1,2,3,4,1,0,2,6,534,524,374,473,3,6,3,6,1,1,907,992,528,514,373,467,1,2,2,4,1,0,2,5,530,519,373,469,3,6,2,5,1,0,6,9,4,4,1,4,0,0,1,0,0,0,0,1,4,5,1,4,0,0,1,1,0,1 -050,01,025,Alabama,Clarke County,2,11,1961,944,1017,540,516,398,483,2,6,2,5,0,0,2,7,541,520,399,488,4,11,2,6,0,0,937,1008,536,511,397,481,1,5,1,4,0,0,2,7,537,515,398,486,3,10,1,5,0,0,7,9,4,5,1,2,1,1,1,1,0,0,0,0,4,5,1,2,1,1,1,1,0,0 -050,01,025,Alabama,Clarke County,2,12,1706,808,898,464,533,339,356,2,5,2,1,0,0,1,3,465,535,339,357,3,7,2,2,0,0,798,892,457,528,336,356,2,4,2,1,0,0,1,3,458,530,336,357,3,6,2,2,0,0,10,6,7,5,3,0,0,1,0,0,0,0,0,0,7,5,3,0,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,2,13,1530,741,789,505,496,225,286,7,5,1,1,1,0,2,1,507,497,225,287,8,6,2,1,1,0,738,785,503,493,224,285,7,5,1,1,1,0,2,1,505,494,224,286,8,6,2,1,1,0,3,4,2,3,1,1,0,0,0,0,0,0,0,0,2,3,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,14,1306,607,699,421,468,182,228,1,2,1,0,0,0,2,1,423,469,182,228,3,3,1,0,0,0,606,697,420,467,182,227,1,2,1,0,0,0,2,1,422,468,182,227,3,3,1,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,15,1052,491,561,365,367,123,187,0,0,0,2,0,0,3,5,367,372,125,188,3,4,0,2,0,0,486,557,361,363,122,187,0,0,0,2,0,0,3,5,363,368,124,188,3,4,0,2,0,0,5,4,4,4,1,0,0,0,0,0,0,0,0,0,4,4,1,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,16,786,339,447,246,304,92,138,0,2,0,1,0,0,1,2,247,305,92,139,1,4,0,1,0,0,338,445,245,302,92,138,0,2,0,1,0,0,1,2,246,303,92,139,1,4,0,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,17,554,208,346,158,219,49,124,0,0,1,0,0,0,0,3,158,221,49,126,0,3,1,0,0,0,208,343,158,218,49,122,0,0,1,0,0,0,0,3,158,220,49,124,0,3,1,0,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,2,18,476,134,342,92,229,39,112,0,0,1,0,0,0,2,1,94,229,39,113,0,1,2,0,1,0,134,341,92,228,39,112,0,0,1,0,0,0,2,1,94,228,39,113,0,1,2,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,0,25767,12175,13592,6858,7201,5162,6203,43,59,34,47,4,0,74,82,6924,7269,5205,6246,70,89,45,63,6,9,12034,13459,6757,7124,5128,6161,40,55,32,45,4,0,73,74,6822,7186,5170,6200,67,80,43,61,6,8,141,133,101,77,34,42,3,4,2,2,0,0,1,8,102,83,35,46,3,9,2,2,0,1 -050,01,025,Alabama,Clarke County,3,1,1457,748,709,342,335,382,353,4,6,2,5,1,0,17,10,357,344,396,361,7,8,5,6,1,0,731,700,332,331,375,350,4,6,2,5,1,0,17,8,347,339,389,357,7,6,5,6,1,0,17,9,10,4,7,3,0,0,0,0,0,0,0,2,10,5,7,4,0,2,0,0,0,0 -050,01,025,Alabama,Clarke County,3,2,1673,820,853,399,449,405,392,4,3,2,4,1,0,9,5,408,454,412,395,4,5,3,4,2,0,809,840,394,442,400,388,3,3,2,4,1,0,9,3,403,445,407,390,3,4,3,4,2,0,11,13,5,7,5,4,1,0,0,0,0,0,0,2,5,9,5,5,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,3,3,1929,946,983,454,448,474,519,5,4,2,3,0,0,11,9,464,457,482,526,9,6,2,5,0,0,931,972,445,441,469,516,5,4,2,3,0,0,10,8,454,449,476,522,9,6,2,5,0,0,15,11,9,7,5,3,0,0,0,0,0,0,1,1,10,8,6,4,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,4,1989,1016,973,467,421,536,534,3,4,2,3,0,0,8,11,474,427,540,540,7,8,3,6,0,3,1002,963,457,418,532,528,3,4,2,3,0,0,8,10,464,423,536,533,7,8,3,6,0,3,14,10,10,3,4,6,0,0,0,0,0,0,0,1,10,4,4,7,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,5,1288,653,635,334,267,311,357,2,4,2,1,0,0,4,6,337,272,312,359,3,6,4,3,1,1,640,628,322,264,310,354,2,4,2,1,0,0,4,5,325,268,311,356,3,5,4,3,1,1,13,7,12,3,1,3,0,0,0,0,0,0,0,1,12,4,1,3,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,3,6,1341,624,717,339,347,274,351,5,4,1,5,0,0,5,10,343,355,277,356,8,6,1,8,0,2,613,707,330,340,273,349,4,3,1,5,0,0,5,10,334,348,276,354,7,5,1,8,0,2,11,10,9,7,1,2,1,1,0,0,0,0,0,0,9,7,1,2,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,3,7,1506,673,833,341,408,325,414,1,5,3,5,0,0,3,1,343,409,327,414,3,6,3,5,0,0,662,821,331,402,324,410,1,4,3,4,0,0,3,1,333,403,326,410,3,5,3,4,0,0,11,12,10,6,1,4,0,1,0,1,0,0,0,0,10,6,1,4,0,1,0,1,0,0 -050,01,025,Alabama,Clarke County,3,8,1579,697,882,397,423,290,453,2,3,7,3,0,0,1,0,398,423,290,453,2,3,8,3,0,0,691,872,392,418,289,448,2,3,7,3,0,0,1,0,393,418,289,448,2,3,8,3,0,0,6,10,5,5,1,5,0,0,0,0,0,0,0,0,5,5,1,5,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,9,1691,803,888,458,448,339,434,4,2,1,2,0,0,1,2,459,450,340,435,4,3,1,2,0,0,793,880,451,441,336,433,4,2,1,2,0,0,1,2,452,443,337,434,4,3,1,2,0,0,10,8,7,7,3,1,0,0,0,0,0,0,0,0,7,7,3,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,10,1911,910,1001,531,523,372,465,1,2,3,5,1,0,2,6,533,527,372,468,3,5,3,6,1,1,902,990,525,517,371,461,1,2,2,5,1,0,2,5,527,521,371,464,3,4,2,6,1,0,8,11,6,6,1,4,0,0,1,0,0,0,0,1,6,6,1,4,0,1,1,0,0,1 -050,01,025,Alabama,Clarke County,3,11,1949,938,1011,537,509,395,483,2,7,2,6,0,0,2,6,539,514,396,487,3,8,2,7,0,1,931,1002,533,504,394,481,1,6,1,5,0,0,2,6,535,509,395,485,2,7,1,6,0,1,7,9,4,5,1,2,1,1,1,1,0,0,0,0,4,5,1,2,1,1,1,1,0,0 -050,01,025,Alabama,Clarke County,3,12,1720,812,908,465,535,341,364,2,5,3,1,0,0,1,3,466,537,341,364,2,6,4,3,0,1,804,902,459,530,339,364,2,4,3,1,0,0,1,3,460,532,339,364,2,5,4,3,0,1,8,6,6,5,2,0,0,1,0,0,0,0,0,0,6,5,2,0,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,3,13,1541,747,794,506,499,230,287,7,6,1,1,1,0,2,1,508,500,230,287,8,7,2,1,1,0,744,789,504,495,229,286,7,6,1,1,1,0,2,1,506,496,229,286,8,7,2,1,1,0,3,5,2,4,1,1,0,0,0,0,0,0,0,0,2,4,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,14,1303,608,695,421,464,183,228,1,2,1,0,0,0,2,1,423,465,183,228,3,3,1,0,0,0,607,693,420,463,183,227,1,2,1,0,0,0,2,1,422,464,183,227,3,3,1,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,15,1058,493,565,367,368,123,190,0,0,0,2,0,0,3,5,369,373,125,190,2,4,0,3,0,0,488,562,363,365,122,190,0,0,0,2,0,0,3,5,365,370,124,190,2,4,0,3,0,0,5,3,4,3,1,0,0,0,0,0,0,0,0,0,4,3,1,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,16,794,342,452,251,306,90,141,0,2,0,1,0,0,1,2,252,307,90,142,1,4,0,1,0,0,341,450,250,304,90,141,0,2,0,1,0,0,1,2,251,305,90,142,1,4,0,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,17,561,211,350,157,221,53,126,0,0,1,0,0,0,0,3,157,224,53,128,0,1,1,0,0,0,211,346,157,220,53,123,0,0,1,0,0,0,0,3,157,223,53,125,0,1,1,0,0,0,0,4,0,1,0,3,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,3,18,477,134,343,92,230,39,112,0,0,1,0,0,0,2,1,94,231,39,113,1,0,2,0,0,0,134,342,92,229,39,112,0,0,1,0,0,0,2,1,94,230,39,113,1,0,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,0,25589,12065,13524,6773,7158,5125,6166,45,60,37,48,4,0,81,92,6846,7239,5170,6218,73,98,50,62,8,4,11911,13387,6665,7076,5087,6127,42,55,35,46,4,0,78,83,6735,7148,5129,6173,70,90,48,59,8,3,154,137,108,82,38,39,3,5,2,2,0,0,3,9,111,91,41,45,3,8,2,3,0,1 -050,01,025,Alabama,Clarke County,4,1,1420,723,697,333,329,368,347,1,5,1,4,1,0,19,12,352,340,381,357,3,7,5,5,1,0,702,686,321,324,360,344,1,4,1,4,1,0,18,10,339,333,372,352,3,6,5,5,1,0,21,11,12,5,8,3,0,1,0,0,0,0,1,2,13,7,9,5,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,4,2,1617,794,823,381,418,391,391,6,3,2,4,1,0,13,7,393,425,399,397,10,5,3,5,2,0,781,813,374,411,386,390,5,3,2,4,1,0,13,5,386,416,394,395,9,4,3,5,2,0,13,10,7,7,5,1,1,0,0,0,0,0,0,2,7,9,5,2,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,4,3,1883,923,960,452,448,456,492,4,4,2,3,0,0,9,13,460,460,462,501,5,7,4,6,1,1,908,945,443,440,451,487,4,4,2,3,0,0,8,11,450,450,456,495,5,6,4,5,1,0,15,15,9,8,5,5,0,0,0,0,0,0,1,2,10,10,6,6,0,1,0,1,0,1 -050,01,025,Alabama,Clarke County,4,4,1965,1000,965,448,418,536,528,6,4,4,4,0,0,6,11,454,428,539,532,8,9,4,7,1,0,986,953,439,412,531,523,6,4,4,4,0,0,6,10,445,421,534,526,8,9,4,7,1,0,14,12,9,6,5,5,0,0,0,0,0,0,0,1,9,7,5,6,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,5,1377,681,696,342,305,333,383,2,4,1,1,0,0,3,3,345,307,334,385,4,6,1,1,0,0,668,692,330,304,332,380,2,4,1,1,0,0,3,3,333,306,333,382,4,6,1,1,0,0,13,4,12,1,1,3,0,0,0,0,0,0,0,0,12,1,1,3,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,6,1245,589,656,315,317,262,318,4,4,1,3,0,0,7,14,321,330,265,324,6,10,3,5,1,1,572,648,300,313,261,316,3,3,1,3,0,0,7,13,306,325,264,322,5,8,3,5,1,1,17,8,15,4,1,2,1,1,0,0,0,0,0,1,15,5,1,2,1,2,0,0,0,0 -050,01,025,Alabama,Clarke County,4,7,1524,684,840,353,406,318,419,3,5,5,7,0,0,5,3,357,409,322,422,6,5,5,7,0,0,677,826,346,396,318,416,3,5,5,6,0,0,5,3,350,399,322,419,6,5,5,6,0,0,7,14,7,10,0,3,0,0,0,1,0,0,0,0,7,10,0,3,0,0,0,1,0,0 -050,01,025,Alabama,Clarke County,4,8,1527,684,843,378,410,298,428,1,3,6,2,0,0,1,0,379,410,299,428,1,3,6,2,0,0,676,833,372,404,296,425,1,2,6,2,0,0,1,0,373,404,297,425,1,2,6,2,0,0,8,10,6,6,2,3,0,1,0,0,0,0,0,0,6,6,2,3,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,4,9,1662,767,895,446,445,312,443,4,2,3,3,0,0,2,2,448,447,314,443,4,4,3,3,0,0,756,888,439,440,309,441,4,2,3,3,0,0,1,2,440,442,310,441,4,4,3,3,0,0,11,7,7,5,3,2,0,0,0,0,0,0,1,0,8,5,4,2,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,10,1887,897,990,516,528,374,447,1,4,3,5,1,0,2,6,518,533,374,450,3,8,3,6,1,0,888,979,509,521,373,444,1,4,2,5,1,0,2,5,511,525,373,446,3,8,2,6,1,0,9,11,7,7,1,3,0,0,1,0,0,0,0,1,7,8,1,4,0,0,1,0,0,0 -050,01,025,Alabama,Clarke County,4,11,1937,937,1000,534,490,399,493,1,7,1,5,0,0,2,5,535,494,400,493,2,11,2,6,0,1,931,992,531,488,397,489,1,6,0,4,0,0,2,5,532,492,398,489,2,10,1,5,0,1,6,8,3,2,2,4,0,1,1,1,0,0,0,0,3,2,2,4,0,1,1,1,0,0 -050,01,025,Alabama,Clarke County,4,12,1770,827,943,467,535,351,400,3,4,4,1,0,0,2,3,468,537,352,402,5,5,4,2,0,0,821,934,464,527,349,400,2,3,4,1,0,0,2,3,465,529,350,402,4,4,4,2,0,0,6,9,3,8,2,0,1,1,0,0,0,0,0,0,3,8,2,0,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,4,13,1562,763,799,504,503,250,285,6,7,1,3,0,0,2,1,506,504,250,285,7,7,2,3,0,1,757,793,499,498,249,284,6,7,1,3,0,0,2,1,501,499,249,284,7,7,2,3,0,1,6,6,5,5,1,1,0,0,0,0,0,0,0,0,5,5,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,14,1285,606,679,416,457,184,219,3,1,1,0,1,0,1,2,417,458,184,221,4,1,1,1,1,0,606,678,416,456,184,219,3,1,1,0,1,0,1,2,417,457,184,221,4,1,1,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,15,1077,494,583,371,380,120,196,0,1,0,2,0,0,3,4,373,383,121,198,3,4,0,2,0,0,488,579,366,377,119,195,0,1,0,2,0,0,3,4,368,380,120,197,3,4,0,2,0,0,6,4,5,3,1,1,0,0,0,0,0,0,0,0,5,3,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,16,802,350,452,266,303,82,145,0,2,0,1,0,0,2,1,268,304,82,145,2,3,0,1,0,0,349,451,265,302,82,145,0,2,0,1,0,0,2,1,267,303,82,145,2,3,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,17,572,212,360,159,233,52,124,0,0,1,0,0,0,0,3,159,235,52,127,0,1,1,0,0,0,211,355,159,231,51,121,0,0,1,0,0,0,0,3,159,233,51,124,0,1,1,0,0,0,1,5,0,2,1,3,0,0,0,0,0,0,0,0,0,2,1,3,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,4,18,477,134,343,92,233,39,108,0,0,1,0,0,0,2,2,93,235,40,108,0,2,3,0,0,0,134,342,92,232,39,108,0,0,1,0,0,0,2,2,93,234,40,108,0,2,3,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,0,25161,11901,13260,6667,7032,5058,6021,49,62,40,51,4,0,83,94,6743,7118,5108,6069,77,98,51,69,10,7,11757,13117,6568,6946,5023,5978,44,58,38,50,4,0,80,85,6641,7023,5071,6020,71,93,49,66,10,5,144,143,99,86,35,43,5,4,2,1,0,0,3,9,102,95,37,49,6,5,2,3,0,2 -050,01,025,Alabama,Clarke County,5,1,1367,699,668,324,316,350,336,2,1,3,2,1,0,19,13,342,329,365,344,3,2,7,5,2,1,684,655,316,310,344,330,2,1,3,2,1,0,18,12,333,322,358,337,3,2,7,5,2,1,15,13,8,6,6,6,0,0,0,0,0,0,1,1,9,7,7,7,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,2,1537,775,762,373,383,385,360,3,5,1,6,1,0,12,8,381,391,394,362,9,7,2,8,2,3,761,748,365,373,380,359,2,5,1,6,1,0,12,5,373,378,389,361,8,7,2,6,2,1,14,14,8,10,5,1,1,0,0,0,0,0,0,3,8,13,5,1,1,0,0,2,0,2 -050,01,025,Alabama,Clarke County,5,3,1807,868,939,433,456,417,465,3,4,3,3,0,0,12,11,445,467,427,473,4,5,4,5,2,0,855,922,425,447,413,459,3,4,3,3,0,0,11,9,436,456,422,465,4,5,4,5,2,0,13,17,8,9,4,6,0,0,0,0,0,0,1,2,9,11,5,8,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,4,1864,928,936,418,409,490,506,8,4,4,4,0,0,8,13,426,420,494,515,9,9,6,6,1,0,915,928,410,405,485,503,8,4,4,4,0,0,8,12,418,415,489,511,9,9,6,6,1,0,13,8,8,4,5,3,0,0,0,0,0,0,0,1,8,5,5,4,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,5,1465,743,722,368,327,369,381,1,8,1,1,0,0,4,5,372,332,370,383,3,10,2,2,0,0,731,714,359,325,366,375,1,8,1,1,0,0,4,5,363,330,367,377,3,10,2,2,0,0,12,8,9,2,3,6,0,0,0,0,0,0,0,0,9,2,3,6,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,6,1195,566,629,304,306,251,307,5,3,1,0,0,0,5,13,308,316,254,316,7,8,2,3,0,2,554,621,293,302,250,305,5,2,1,0,0,0,5,12,297,311,253,313,7,7,2,3,0,2,12,8,11,4,1,2,0,1,0,0,0,0,0,1,11,5,1,3,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,5,7,1485,670,815,352,386,303,410,4,5,7,11,0,0,4,3,355,389,305,412,7,6,7,11,0,0,662,801,345,375,303,407,3,5,7,11,0,0,4,3,348,378,305,409,6,6,7,11,0,0,8,14,7,11,0,3,1,0,0,0,0,0,0,0,7,11,0,3,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,8,1464,659,805,336,393,314,404,1,4,5,4,0,0,3,0,339,393,316,404,2,4,5,4,0,0,653,797,331,387,313,403,1,3,5,4,0,0,3,0,334,387,315,403,2,3,5,4,0,0,6,8,5,6,1,1,0,1,0,0,0,0,0,0,5,6,1,1,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,5,9,1631,777,854,462,416,305,433,4,1,4,2,0,0,2,2,464,418,306,435,5,1,4,3,0,0,762,846,451,412,302,429,4,1,4,2,0,0,1,2,452,414,303,431,4,1,4,3,0,0,15,8,11,4,3,4,0,0,0,0,0,0,1,0,12,4,3,4,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,10,1808,845,963,484,511,354,440,2,4,2,3,1,0,2,5,486,515,354,442,4,7,2,5,1,0,834,956,476,506,352,439,2,4,1,3,1,0,2,4,478,509,352,440,4,6,1,5,1,0,11,7,8,5,2,1,0,0,1,0,0,0,0,1,8,6,2,2,0,1,1,0,0,0 -050,01,025,Alabama,Clarke County,5,11,1925,924,1001,522,503,396,482,3,6,1,5,0,0,2,5,524,508,396,483,4,9,2,6,0,0,921,992,522,500,396,477,1,6,0,4,0,0,2,5,524,505,396,478,2,9,1,5,0,0,3,9,0,3,0,5,2,0,1,1,0,0,0,0,0,3,0,5,2,0,1,1,0,0 -050,01,025,Alabama,Clarke County,5,12,1762,846,916,476,511,362,393,2,6,4,4,0,0,2,2,478,513,363,394,2,7,4,4,1,0,840,905,472,502,361,393,1,4,4,4,0,0,2,2,474,504,362,394,1,5,4,4,1,0,6,11,4,9,1,0,1,2,0,0,0,0,0,0,4,9,1,0,1,2,0,0,0,0 -050,01,025,Alabama,Clarke County,5,13,1510,734,776,469,476,257,290,6,5,0,3,0,0,2,2,471,478,258,290,8,7,0,3,0,0,726,770,463,471,255,289,6,5,0,3,0,0,2,2,465,473,256,289,8,7,0,3,0,0,8,6,6,5,2,1,0,0,0,0,0,0,0,0,6,5,2,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,14,1366,651,715,446,480,199,230,4,3,1,0,1,0,0,2,446,482,199,230,4,5,1,0,1,0,651,714,446,479,199,230,4,3,1,0,1,0,0,2,446,481,199,230,4,5,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,15,1112,500,612,367,405,127,201,1,1,1,1,0,0,4,4,371,408,127,202,5,4,1,1,0,1,494,609,362,403,126,200,1,1,1,1,0,0,4,4,366,406,126,201,5,4,1,1,0,1,6,3,5,2,1,1,0,0,0,0,0,0,0,0,5,2,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,16,790,353,437,265,282,87,151,0,1,0,2,0,0,1,1,266,283,87,151,1,2,0,2,0,0,352,436,264,281,87,151,0,1,0,2,0,0,1,1,265,282,87,151,1,2,0,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,17,575,218,357,163,241,53,112,0,1,1,0,0,0,1,3,164,243,54,113,0,4,1,0,0,0,217,351,163,238,52,109,0,1,1,0,0,0,1,3,164,240,53,110,0,4,1,0,0,0,1,6,0,3,1,3,0,0,0,0,0,0,0,0,0,3,1,3,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,5,18,498,145,353,105,231,39,120,0,0,1,0,0,0,0,2,105,233,39,120,0,1,1,1,0,0,145,352,105,230,39,120,0,0,1,0,0,0,0,2,105,232,39,120,0,1,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,0,25131,11896,13235,6602,7032,5115,5986,42,58,47,53,4,0,86,106,6681,7125,5163,6041,74,101,64,73,7,9,11736,13083,6486,6940,5083,5942,36,53,45,52,4,0,82,96,6562,7024,5130,5992,66,92,61,69,6,9,160,152,116,92,32,44,6,5,2,1,0,0,4,10,119,101,33,49,8,9,3,4,1,0 -050,01,025,Alabama,Clarke County,6,1,1356,687,669,329,310,329,343,1,2,8,1,0,0,20,13,348,322,344,352,4,6,10,1,1,1,674,656,318,304,328,338,0,1,8,1,0,0,20,12,337,316,343,346,3,4,10,1,1,1,13,13,11,6,1,5,1,1,0,0,0,0,0,1,11,6,1,6,1,2,0,0,0,0 -050,01,025,Alabama,Clarke County,6,2,1530,768,762,366,378,388,361,2,4,2,6,2,0,8,13,374,390,393,370,4,7,3,8,2,0,750,752,358,371,380,360,1,4,2,6,2,0,7,11,365,381,384,368,3,7,3,7,2,0,18,10,8,7,8,1,1,0,0,0,0,0,1,2,9,9,9,2,1,0,0,1,0,0 -050,01,025,Alabama,Clarke County,6,3,1744,849,895,406,469,425,411,2,3,3,3,0,0,13,9,419,478,432,416,5,5,6,5,0,0,838,874,398,456,423,406,2,3,3,3,0,0,12,6,410,462,430,409,4,4,6,5,0,0,11,21,8,13,2,5,0,0,0,0,0,0,1,3,9,16,2,7,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,6,4,1820,884,936,412,400,453,514,6,2,3,4,0,0,10,16,421,412,460,524,9,7,4,10,0,0,869,926,402,396,449,509,6,2,3,4,0,0,9,15,410,407,456,518,8,7,4,9,0,0,15,10,10,4,4,5,0,0,0,0,0,0,1,1,11,5,4,6,1,0,0,1,0,0 -050,01,025,Alabama,Clarke County,6,5,1589,794,795,380,379,408,399,1,5,2,3,0,0,3,9,383,387,410,405,3,7,3,6,0,0,782,789,372,377,404,395,1,5,2,3,0,0,3,9,375,385,406,401,3,7,3,6,0,0,12,6,8,2,4,4,0,0,0,0,0,0,0,0,8,2,4,4,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,6,1232,598,634,312,314,274,304,3,4,1,0,0,0,8,12,319,324,277,310,7,9,4,3,0,3,578,623,293,308,273,301,3,3,1,0,0,0,8,11,300,317,276,307,7,7,4,3,0,3,20,11,19,6,1,3,0,1,0,0,0,0,0,1,19,7,1,3,0,2,0,0,0,0 -050,01,025,Alabama,Clarke County,6,7,1416,642,774,329,367,298,385,5,6,6,11,0,0,4,5,332,372,300,385,7,9,7,11,0,2,637,759,325,356,298,381,4,6,6,11,0,0,4,5,328,361,300,381,6,9,7,11,0,2,5,15,4,11,0,4,1,0,0,0,0,0,0,0,4,11,0,4,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,8,1460,659,801,326,394,323,399,1,4,5,3,0,0,4,1,329,395,325,399,1,5,7,3,1,0,651,791,319,387,322,398,1,3,5,3,0,0,4,0,322,387,324,398,1,3,7,3,1,0,8,10,7,7,1,1,0,1,0,0,0,0,0,1,7,8,1,1,0,2,0,0,0,0 -050,01,025,Alabama,Clarke County,6,9,1585,747,838,438,408,298,424,3,1,6,4,0,0,2,1,439,409,298,424,3,2,8,4,1,0,735,826,429,401,296,419,3,1,6,4,0,0,1,1,430,402,296,419,3,2,7,4,0,0,12,12,9,7,2,5,0,0,0,0,0,0,1,0,9,7,2,5,0,0,1,0,1,0 -050,01,025,Alabama,Clarke County,6,10,1746,824,922,472,472,346,440,2,4,2,3,0,0,2,3,474,475,346,441,4,6,2,4,0,0,807,916,458,467,344,439,2,4,1,3,0,0,2,3,460,470,344,440,4,6,1,4,0,0,17,6,14,5,2,1,0,0,1,0,0,0,0,0,14,5,2,1,0,0,1,0,0,0 -050,01,025,Alabama,Clarke County,6,11,1916,923,993,510,503,408,475,2,4,0,3,1,0,2,8,512,511,409,476,4,8,0,5,1,2,919,984,509,499,407,471,0,4,0,3,1,0,2,7,511,506,408,472,2,8,0,4,1,2,4,9,1,4,1,4,2,0,0,0,0,0,0,1,1,5,1,4,2,0,0,1,0,0 -050,01,025,Alabama,Clarke County,6,12,1820,866,954,493,512,363,429,3,6,5,6,0,0,2,1,495,513,364,430,4,6,5,6,0,0,860,945,490,507,362,428,2,4,4,5,0,0,2,1,492,508,363,429,3,4,4,5,0,0,6,9,3,5,1,1,1,2,1,1,0,0,0,0,3,5,1,1,1,2,1,1,0,0 -050,01,025,Alabama,Clarke County,6,13,1487,730,757,442,461,283,283,4,7,0,3,0,0,1,3,443,464,284,284,5,9,0,3,0,0,721,750,436,455,280,282,4,7,0,3,0,0,1,3,437,458,281,283,5,9,0,3,0,0,9,7,6,6,3,1,0,0,0,0,0,0,0,0,6,6,3,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,14,1406,674,732,458,482,207,246,6,2,1,0,1,0,1,2,459,484,207,248,7,3,1,0,1,0,673,731,457,481,207,246,6,2,1,0,1,0,1,2,458,483,207,248,7,3,1,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,15,1120,517,603,376,415,135,184,1,2,1,0,0,0,4,2,379,416,137,185,5,4,2,0,0,0,513,599,373,412,134,183,1,2,1,0,0,0,4,2,376,413,136,184,5,4,2,0,0,0,4,4,3,3,1,1,0,0,0,0,0,0,0,0,3,3,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,16,811,360,451,276,288,83,157,0,0,0,3,0,0,1,3,277,291,83,157,1,2,0,3,0,1,356,450,272,287,83,157,0,0,0,3,0,0,1,3,273,290,83,157,1,2,0,3,0,1,4,1,4,1,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,17,593,226,367,165,257,59,106,0,2,1,0,0,0,1,2,166,257,59,108,1,3,1,1,0,0,225,361,165,254,58,103,0,2,1,0,0,0,1,2,166,254,58,105,1,3,1,1,0,0,1,6,0,3,1,3,0,0,0,0,0,0,0,0,0,3,1,3,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,6,18,500,148,352,112,223,35,126,0,0,1,0,0,0,0,3,112,225,35,127,0,3,1,0,0,0,148,351,112,222,35,126,0,0,1,0,0,0,0,3,112,224,35,127,0,3,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,0,24873,11757,13116,6492,6961,5080,5934,41,60,47,56,4,0,93,105,6574,7054,5132,6000,72,96,68,72,9,8,11581,12956,6359,6857,5048,5894,35,55,45,55,4,0,90,95,6438,6940,5100,5954,63,86,66,71,9,7,176,160,133,104,32,40,6,5,2,1,0,0,3,10,136,114,32,46,9,10,2,1,0,1 -050,01,025,Alabama,Clarke County,7,1,1333,665,668,312,326,323,326,1,1,7,0,0,0,22,15,332,339,340,339,5,4,11,0,1,1,645,659,295,321,321,324,0,0,7,0,0,0,22,14,315,333,338,337,4,2,11,0,1,1,20,9,17,5,2,2,1,1,0,0,0,0,0,1,17,6,2,2,1,2,0,0,0,0 -050,01,025,Alabama,Clarke County,7,2,1454,746,708,347,341,384,344,0,5,3,5,2,0,10,13,356,354,391,353,3,6,5,7,2,1,725,690,334,328,377,341,0,5,3,5,2,0,9,11,342,339,384,349,2,5,5,7,2,1,21,18,13,13,7,3,0,0,0,0,0,0,1,2,14,15,7,4,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,7,3,1713,831,882,400,452,415,415,4,3,2,5,0,0,10,7,409,459,420,421,5,4,6,6,1,0,816,861,388,438,413,410,3,3,2,5,0,0,10,5,397,443,418,414,4,3,6,6,1,0,15,21,12,14,2,5,1,0,0,0,0,0,0,2,12,16,2,7,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,7,4,1756,836,920,397,417,419,484,5,4,5,2,0,0,10,13,407,428,423,495,8,8,7,3,1,1,821,906,387,409,415,479,5,4,5,2,0,0,9,12,396,419,419,489,7,7,7,3,1,1,15,14,10,8,4,5,0,0,0,0,0,0,1,1,11,9,4,6,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,7,5,1650,830,820,395,382,425,420,2,6,2,3,0,0,6,9,401,391,427,426,4,7,3,5,1,0,817,811,386,378,421,416,2,6,2,3,0,0,6,8,392,386,423,421,4,7,3,5,1,0,13,9,9,4,4,4,0,0,0,0,0,0,0,1,9,5,4,5,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,6,1219,591,628,309,314,270,301,3,3,1,2,0,0,8,8,314,321,275,307,6,6,4,2,1,2,573,619,291,309,270,299,3,2,1,2,0,0,8,7,296,315,275,305,6,5,4,2,1,1,18,9,18,5,0,2,0,1,0,0,0,0,0,1,18,6,0,2,0,1,0,0,0,1 -050,01,025,Alabama,Clarke County,7,7,1387,625,762,331,369,282,367,4,5,2,11,0,0,6,10,336,379,285,369,7,10,3,13,0,1,618,746,326,354,281,366,3,5,2,11,0,0,6,10,331,364,284,368,6,10,3,13,0,1,7,16,5,15,1,1,1,0,0,0,0,0,0,0,5,15,1,1,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,8,1427,658,769,306,378,344,383,1,4,4,3,0,0,3,1,309,379,346,384,2,4,4,3,0,0,649,758,298,371,343,381,1,3,4,3,0,0,3,0,301,371,345,381,2,3,4,3,0,0,9,11,8,7,1,2,0,1,0,0,0,0,0,1,8,8,1,3,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,7,9,1561,725,836,404,409,306,418,2,3,9,5,0,0,4,1,407,409,309,419,5,4,9,5,0,0,715,825,397,403,304,413,2,3,9,5,0,0,3,1,399,403,307,414,4,4,9,5,0,0,10,11,7,6,2,5,0,0,0,0,0,0,1,0,8,6,2,5,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,10,1650,785,865,474,430,305,429,3,2,1,3,0,0,2,1,475,431,307,430,3,2,2,3,0,0,768,859,459,424,303,429,3,2,1,3,0,0,2,1,460,425,305,430,3,2,2,3,0,0,17,6,15,6,2,0,0,0,0,0,0,0,0,0,15,6,2,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,11,1864,897,967,489,493,401,460,2,3,2,3,1,0,2,8,491,499,402,463,2,7,3,5,1,1,890,958,486,490,400,455,0,3,1,3,1,0,2,7,488,495,401,458,0,6,2,5,1,1,7,9,3,3,1,5,2,0,1,0,0,0,0,1,3,4,1,5,2,1,1,0,0,0 -050,01,025,Alabama,Clarke County,7,12,1836,858,978,488,508,362,455,2,6,4,6,0,0,2,3,489,511,363,457,4,8,4,7,0,0,852,970,485,503,361,454,1,5,3,5,0,0,2,3,486,506,362,456,3,7,3,6,0,0,6,8,3,5,1,1,1,1,1,1,0,0,0,0,3,5,1,1,1,1,1,1,0,0 -050,01,025,Alabama,Clarke County,7,13,1531,741,790,433,476,302,299,4,8,2,4,0,0,0,3,433,479,302,300,4,9,2,5,0,0,734,786,429,473,299,299,4,7,2,4,0,0,0,3,429,476,299,300,4,8,2,5,0,0,7,4,4,3,3,0,0,1,0,0,0,0,0,0,4,3,3,0,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,7,14,1406,673,733,447,474,216,253,7,3,0,1,1,0,2,2,449,476,216,253,8,4,1,3,1,0,671,729,445,471,216,252,7,3,0,1,1,0,2,2,447,473,216,252,8,4,1,3,1,0,2,4,2,3,0,1,0,0,0,0,0,0,0,0,2,3,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,15,1142,534,608,379,419,149,185,1,2,1,0,0,0,4,2,383,420,149,187,4,3,2,0,0,0,533,605,378,417,149,184,1,2,1,0,0,0,4,2,382,418,149,186,4,3,2,0,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,16,864,393,471,303,303,89,162,0,0,0,2,0,0,1,4,304,305,89,163,1,4,0,3,0,0,387,469,298,301,88,162,0,0,0,2,0,0,1,4,299,303,88,163,1,4,0,3,0,0,6,2,5,2,1,0,0,0,0,0,0,0,0,0,5,2,1,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,17,590,226,364,170,255,55,105,0,2,0,1,0,0,1,1,171,256,55,105,1,3,0,1,0,0,224,361,169,254,54,103,0,2,0,1,0,0,1,1,170,255,54,103,1,3,0,1,0,0,2,3,1,1,1,2,0,0,0,0,0,0,0,0,1,1,1,2,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,7,18,490,143,347,108,215,33,128,0,0,2,0,0,0,0,4,108,218,33,129,0,3,2,1,0,1,143,344,108,213,33,127,0,0,2,0,0,0,0,4,108,216,33,128,0,3,2,1,0,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,0,24711,11674,13037,6453,6916,5041,5892,42,63,39,54,4,0,95,112,6538,7014,5096,5957,79,108,50,74,10,5,11491,12875,6312,6808,5011,5853,35,58,37,53,4,0,92,103,6394,6897,5063,5912,72,99,48,73,10,5,183,162,141,108,30,39,7,5,2,1,0,0,3,9,144,117,33,45,7,9,2,1,0,0 -050,01,025,Alabama,Clarke County,8,1,1389,692,697,330,336,343,336,1,3,2,0,0,0,16,22,345,358,354,353,6,8,2,2,1,0,671,688,312,329,341,335,0,2,2,0,0,0,16,22,327,351,352,352,5,7,2,2,1,0,21,9,18,7,2,1,1,1,0,0,0,0,0,0,18,7,2,1,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,8,2,1393,725,668,336,328,371,323,0,4,1,5,1,0,16,8,351,336,383,329,3,7,4,5,1,0,703,652,320,318,366,319,0,4,1,5,1,0,15,6,334,324,377,323,3,6,4,5,1,0,22,16,16,10,5,4,0,0,0,0,0,0,1,2,17,12,6,6,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,8,3,1670,807,863,384,451,406,395,3,3,2,5,1,0,11,9,394,459,412,401,8,6,3,6,2,1,793,841,373,435,404,391,2,3,2,5,1,0,11,7,383,441,410,397,7,4,3,6,2,1,14,22,11,16,2,4,1,0,0,0,0,0,0,2,11,18,2,4,1,2,0,0,0,0 -050,01,025,Alabama,Clarke County,8,4,1682,818,864,391,397,407,447,7,4,3,3,0,0,10,13,401,410,412,455,9,7,4,5,2,0,798,849,378,387,402,443,6,4,3,3,0,0,9,12,387,399,406,450,8,7,4,5,2,0,20,15,13,10,5,4,1,0,0,0,0,0,1,1,14,11,6,5,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,5,1630,813,817,374,366,425,434,2,4,4,2,0,0,8,11,381,374,431,439,4,7,5,7,0,3,801,807,364,361,423,430,2,4,4,2,0,0,8,10,371,368,429,434,4,7,5,7,0,3,12,10,10,5,2,4,0,0,0,0,0,0,0,1,10,6,2,5,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,6,1312,647,665,348,336,291,314,2,6,1,2,0,0,5,7,351,341,294,319,4,8,2,4,1,0,632,658,335,332,289,312,2,6,1,2,0,0,5,6,338,336,292,316,4,8,2,4,1,0,15,7,13,4,2,2,0,0,0,0,0,0,0,1,13,5,2,3,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,7,1316,609,707,331,363,264,326,4,3,2,4,0,0,8,11,337,371,267,332,8,8,5,7,0,0,597,694,321,352,263,325,3,2,2,4,0,0,8,11,327,360,266,331,7,7,5,7,0,0,12,13,10,11,1,1,1,1,0,0,0,0,0,0,10,11,1,1,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,8,8,1464,680,784,326,370,345,400,1,6,4,6,0,0,4,2,330,372,347,401,3,7,4,6,0,0,671,769,318,360,344,397,1,5,4,6,0,0,4,1,322,361,346,397,3,6,4,6,0,0,9,15,8,10,1,3,0,1,0,0,0,0,0,1,8,11,1,4,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,8,9,1498,651,847,359,407,283,432,1,3,6,5,0,0,2,0,361,407,283,432,2,3,6,5,1,0,643,835,353,400,281,427,1,3,6,5,0,0,2,0,355,400,281,427,2,3,6,5,1,0,8,12,6,7,2,5,0,0,0,0,0,0,0,0,6,7,2,5,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,10,1603,774,829,444,413,321,409,5,2,2,3,0,0,2,2,446,413,322,411,6,4,2,3,0,0,759,823,433,407,318,409,5,2,2,3,0,0,1,2,434,407,318,411,6,4,2,3,0,0,15,6,11,6,3,0,0,0,0,0,0,0,1,0,12,6,4,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,11,1810,871,939,490,497,374,430,2,3,2,3,1,0,2,6,492,503,376,433,4,6,2,4,1,0,858,931,481,494,373,426,0,3,1,3,1,0,2,5,483,499,375,429,2,5,1,4,1,0,13,8,9,3,1,4,2,0,1,0,0,0,0,1,9,4,1,4,2,1,1,0,0,0 -050,01,025,Alabama,Clarke County,8,12,1832,861,971,506,477,349,475,2,7,2,7,0,0,2,5,507,481,350,476,4,11,2,9,0,0,857,962,504,472,349,473,1,6,1,6,0,0,2,5,505,476,350,474,3,10,1,8,0,0,4,9,2,5,0,2,1,1,1,1,0,0,0,0,2,5,0,2,1,1,1,1,0,0 -050,01,025,Alabama,Clarke County,8,13,1577,749,828,424,489,316,327,3,5,5,4,0,0,1,3,424,492,317,328,3,5,6,6,0,1,743,824,420,486,314,327,3,4,5,4,0,0,1,3,420,489,315,328,3,4,6,6,0,1,6,4,4,3,2,0,0,1,0,0,0,0,0,0,4,3,2,0,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,8,14,1399,676,723,449,471,217,241,7,6,0,2,1,0,2,3,451,474,218,242,8,8,0,2,1,0,672,718,446,467,216,240,7,6,0,2,1,0,2,3,448,470,217,241,8,8,0,2,1,0,4,5,3,4,1,1,0,0,0,0,0,0,0,0,3,4,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,15,1142,522,620,370,424,147,193,2,2,1,0,0,0,2,1,372,425,148,193,3,3,1,0,0,0,521,618,369,423,147,192,2,2,1,0,0,0,2,1,371,424,148,192,3,3,1,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,16,875,386,489,291,314,92,169,0,0,0,2,0,0,3,4,294,317,92,170,3,4,0,2,0,0,381,486,287,311,91,169,0,0,0,2,0,0,3,4,290,314,91,170,3,4,0,2,0,0,5,3,4,3,1,0,0,0,0,0,0,0,0,0,4,3,1,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,17,591,235,356,188,247,46,105,0,2,0,1,0,0,1,1,189,248,46,105,1,3,0,1,0,0,233,355,186,246,46,105,0,2,0,1,0,0,1,1,187,247,46,105,1,3,0,1,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,8,18,528,158,370,112,230,44,136,0,0,2,0,0,0,0,4,112,233,44,138,0,3,2,0,0,0,158,365,112,228,44,133,0,0,2,0,0,0,0,4,112,231,44,135,0,3,2,0,0,0,0,5,0,2,0,3,0,0,0,0,0,0,0,0,0,2,0,3,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,0,24342,11506,12836,6312,6788,5008,5800,43,70,47,61,4,1,92,116,6396,6885,5062,5874,70,111,67,79,8,7,11331,12675,6182,6683,4976,5763,35,61,45,60,4,1,89,107,6263,6773,5027,5830,61,99,65,75,8,6,175,161,130,105,32,37,8,9,2,1,0,0,3,9,133,112,35,44,9,12,2,4,0,1 -050,01,025,Alabama,Clarke County,9,1,1372,673,699,312,331,345,330,1,8,6,5,0,0,9,25,321,353,352,348,2,14,7,7,0,2,655,682,297,320,343,328,0,4,6,5,0,0,9,25,306,342,350,346,1,10,7,7,0,2,18,17,15,11,2,2,1,4,0,0,0,0,0,0,15,11,2,2,1,4,0,0,0,0 -050,01,025,Alabama,Clarke County,9,2,1361,702,659,319,328,359,315,0,4,2,3,1,0,21,9,337,337,374,322,3,5,8,4,2,0,683,643,304,318,356,311,0,3,2,3,1,0,20,8,321,326,370,317,3,4,8,4,2,0,19,16,15,10,3,4,0,1,0,0,0,0,1,1,16,11,4,5,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,9,3,1554,782,772,366,412,400,342,3,3,2,6,1,1,10,8,375,420,408,347,4,6,4,6,2,1,765,756,355,398,395,342,2,3,2,6,1,1,10,6,364,404,403,346,3,5,4,6,2,1,17,16,11,14,5,0,1,0,0,0,0,0,0,2,11,16,5,1,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,9,4,1647,799,848,385,394,398,432,5,5,1,4,0,0,10,13,394,405,405,441,6,9,3,6,1,0,781,833,374,386,393,427,4,5,1,4,0,0,9,11,382,396,399,435,5,8,3,5,1,0,18,15,11,8,5,5,1,0,0,0,0,0,1,2,12,9,6,6,1,1,0,1,0,0 -050,01,025,Alabama,Clarke County,9,5,1590,795,795,361,354,418,423,4,4,5,3,0,0,7,11,367,363,422,430,7,9,6,5,0,2,781,788,350,351,415,420,4,4,5,3,0,0,7,10,356,359,419,426,7,8,6,4,0,1,14,7,11,3,3,3,0,0,0,0,0,0,0,1,11,4,3,4,0,1,0,1,0,1 -050,01,025,Alabama,Clarke County,9,6,1336,637,699,327,348,302,339,2,5,1,2,0,0,5,5,332,351,304,340,4,8,2,4,0,1,628,695,320,347,300,336,2,5,1,2,0,0,5,5,325,350,302,337,4,8,2,4,0,1,9,4,7,1,2,3,0,0,0,0,0,0,0,0,7,1,2,3,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,7,1202,577,625,310,316,256,290,3,5,2,1,0,0,6,13,315,324,259,300,6,8,3,5,0,1,564,616,299,310,255,289,2,4,2,1,0,0,6,12,304,317,258,298,5,7,3,5,0,1,13,9,11,6,1,1,1,1,0,0,0,0,0,1,11,7,1,2,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,9,8,1491,690,801,350,384,328,400,2,5,5,9,0,0,5,3,355,387,330,403,4,5,6,9,0,0,684,783,344,370,328,397,2,5,5,9,0,0,5,2,349,372,330,399,4,5,6,9,0,0,6,18,6,14,0,3,0,0,0,0,0,0,0,1,6,15,0,4,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,9,1403,621,782,328,374,283,401,1,3,6,4,0,0,3,0,331,374,283,401,2,3,8,4,0,0,612,769,322,365,280,398,1,2,6,4,0,0,3,0,325,365,280,398,2,2,8,4,0,0,9,13,6,9,3,3,0,1,0,0,0,0,0,0,6,9,3,3,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,9,10,1581,751,830,426,407,314,415,4,1,5,5,0,0,2,2,428,409,315,417,6,1,5,5,0,0,734,822,413,401,311,413,4,1,5,5,0,0,1,2,414,403,311,415,5,1,5,5,0,0,17,8,13,6,3,2,0,0,0,0,0,0,1,0,14,6,4,2,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,11,1769,826,943,469,494,351,435,1,5,2,3,1,0,2,6,471,498,351,439,2,9,3,4,1,0,815,936,460,490,350,433,1,5,1,3,1,0,2,5,462,494,350,436,2,9,2,3,1,0,11,7,9,4,1,2,0,0,1,0,0,0,0,1,9,4,1,3,0,0,1,1,0,0 -050,01,025,Alabama,Clarke County,9,12,1807,868,939,505,466,357,456,3,7,1,6,0,0,2,4,507,470,357,458,5,9,1,6,0,0,862,930,502,463,357,452,1,6,0,5,0,0,2,4,504,467,357,454,3,8,0,5,0,0,6,9,3,3,0,4,2,1,1,1,0,0,0,0,3,3,0,4,2,1,1,1,0,0 -050,01,025,Alabama,Clarke County,9,13,1610,751,859,417,485,325,363,3,4,5,4,0,0,1,3,418,488,325,363,4,5,5,6,0,0,746,853,415,480,323,363,2,3,5,4,0,0,1,3,416,483,323,363,3,4,5,6,0,0,5,6,2,5,2,0,1,1,0,0,0,0,0,0,2,5,2,0,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,9,14,1417,694,723,454,463,231,247,6,7,1,3,0,0,2,3,456,466,233,248,6,9,1,3,0,0,689,718,450,459,230,246,6,7,1,3,0,0,2,3,452,462,232,247,6,9,1,3,0,0,5,5,4,4,1,1,0,0,0,0,0,0,0,0,4,4,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,15,1141,526,615,363,423,154,189,5,1,1,0,1,0,2,2,365,425,154,190,6,1,2,1,1,0,525,614,363,422,154,189,4,1,1,0,1,0,2,2,365,424,154,190,5,1,2,1,1,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,16,906,393,513,299,328,91,178,0,1,0,2,0,0,3,4,301,331,92,180,2,4,1,2,1,0,388,509,295,325,90,177,0,1,0,2,0,0,3,4,297,328,91,179,2,4,1,2,1,0,5,4,4,3,1,1,0,0,0,0,0,0,0,0,4,3,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,17,607,251,356,201,249,48,103,0,2,0,1,0,0,2,1,203,249,50,104,1,2,0,2,0,0,249,356,199,249,48,103,0,2,0,1,0,0,2,1,201,249,50,104,1,2,0,2,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,9,18,548,170,378,120,232,48,142,0,0,2,0,0,0,0,4,120,235,48,143,0,4,2,0,0,0,170,372,120,229,48,139,0,0,2,0,0,0,0,4,120,232,48,140,0,4,2,0,0,0,0,6,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,0,24083,11353,12730,6222,6726,4936,5759,46,72,48,56,4,1,97,116,6305,6824,4991,5827,81,115,63,79,13,7,11189,12573,6102,6624,4905,5721,39,63,46,55,4,1,93,109,6182,6715,4959,5784,72,104,60,78,12,7,164,157,120,102,31,38,7,9,2,1,0,0,4,7,123,109,32,43,9,11,3,1,1,0 -050,01,025,Alabama,Clarke County,10,1,1354,672,682,311,347,334,314,3,5,4,1,0,0,20,15,328,361,351,325,5,9,7,3,2,0,653,663,296,333,331,313,2,1,4,1,0,0,20,15,313,347,348,324,4,5,7,3,2,0,19,19,15,14,3,1,1,4,0,0,0,0,0,0,15,14,3,1,1,4,0,0,0,0 -050,01,025,Alabama,Clarke County,10,2,1370,694,676,324,328,350,327,0,4,2,3,1,0,17,14,338,340,361,336,4,7,4,6,4,1,676,665,308,323,349,322,0,3,2,3,1,0,16,14,322,335,360,331,3,6,4,6,3,1,18,11,16,5,1,5,0,1,0,0,0,0,1,0,16,5,1,5,1,1,0,0,1,0 -050,01,025,Alabama,Clarke County,10,3,1518,769,749,361,387,390,342,2,4,4,6,1,0,11,10,371,397,397,349,6,7,5,6,1,0,751,736,350,375,384,342,1,4,4,6,1,0,11,9,360,384,391,348,5,7,5,6,1,0,18,13,11,12,6,0,1,0,0,0,0,0,0,1,11,13,6,1,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,4,1591,770,821,374,402,381,398,4,4,2,4,0,1,9,12,380,411,388,405,8,7,4,6,0,4,757,801,366,389,377,393,4,4,2,4,0,1,8,10,371,396,384,399,8,6,3,6,0,4,13,20,8,13,4,5,0,0,0,0,0,0,1,2,9,15,4,6,0,1,1,0,0,0 -050,01,025,Alabama,Clarke County,10,5,1473,716,757,316,331,383,404,6,6,5,2,0,0,6,14,322,341,385,413,7,12,6,8,2,1,708,750,310,328,381,401,6,6,5,2,0,0,6,13,316,337,383,409,7,12,6,8,2,1,8,7,6,3,2,3,0,0,0,0,0,0,0,1,6,4,2,4,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,6,1446,694,752,365,371,323,367,1,7,1,1,0,0,4,6,369,375,325,371,3,9,1,3,0,0,684,748,358,370,320,364,1,7,1,1,0,0,4,6,362,374,322,368,3,9,1,3,0,0,10,4,7,1,3,3,0,0,0,0,0,0,0,0,7,1,3,3,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,7,1164,555,609,301,300,244,291,2,4,2,1,0,0,6,13,306,311,247,298,6,8,3,5,0,0,544,603,291,297,243,290,2,3,2,1,0,0,6,12,296,307,246,296,6,7,3,5,0,0,11,6,10,3,1,1,0,1,0,0,0,0,0,1,10,4,1,2,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,10,8,1462,679,783,342,380,324,385,4,5,5,9,0,0,4,4,344,384,327,387,5,7,7,9,0,0,672,767,336,368,324,382,3,5,5,9,0,0,4,3,338,371,327,384,4,6,7,9,0,0,7,16,6,12,0,3,1,0,0,0,0,0,0,1,6,13,0,3,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,10,9,1361,613,748,309,369,296,370,1,4,3,5,0,0,4,0,313,369,296,370,4,4,3,5,1,0,608,736,305,360,295,368,1,3,3,5,0,0,4,0,309,360,295,368,4,3,3,5,1,0,5,12,4,9,1,2,0,1,0,0,0,0,0,0,4,9,1,2,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,10,10,1547,740,807,418,390,307,409,5,2,8,4,0,0,2,2,420,391,308,411,6,2,8,5,0,0,723,798,406,385,303,405,5,2,8,4,0,0,1,2,407,386,304,407,5,2,8,5,0,0,17,9,12,5,4,4,0,0,0,0,0,0,1,0,13,5,4,4,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,11,1692,778,914,444,475,327,427,2,4,2,3,1,0,2,5,446,480,327,429,4,7,2,3,1,0,765,907,434,470,325,426,2,4,1,3,1,0,2,4,436,474,325,427,4,7,1,3,1,0,13,7,10,5,2,1,0,0,1,0,0,0,0,1,10,6,2,2,0,0,1,0,0,0 -050,01,025,Alabama,Clarke County,10,12,1794,863,931,497,470,360,445,3,6,1,5,0,0,2,5,499,475,360,448,5,8,1,5,0,0,859,922,496,467,360,440,1,6,0,4,0,0,2,5,498,472,360,443,3,8,0,4,0,0,4,9,1,3,0,5,2,0,1,1,0,0,0,0,1,3,0,5,2,0,1,1,0,0 -050,01,025,Alabama,Clarke County,10,13,1640,769,871,429,477,331,381,2,6,5,5,0,0,2,2,431,479,332,382,3,7,5,5,0,0,763,863,426,471,330,381,1,4,5,5,0,0,1,2,427,473,330,382,2,5,5,5,0,0,6,8,3,6,1,0,1,2,0,0,0,0,1,0,4,6,2,0,1,2,0,0,0,0 -050,01,025,Alabama,Clarke County,10,14,1349,657,692,414,431,234,249,6,5,1,4,0,0,2,3,415,434,235,249,7,6,2,6,0,0,650,687,409,427,232,248,6,5,1,4,0,0,2,3,410,430,233,248,7,6,2,6,0,0,7,5,5,4,2,1,0,0,0,0,0,0,0,0,5,4,2,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,15,1207,556,651,384,436,165,210,5,3,0,0,1,0,1,2,385,437,165,211,6,4,0,0,1,1,555,650,384,435,165,210,4,3,0,0,1,0,1,2,385,436,165,211,5,4,0,0,1,1,1,1,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,16,950,401,549,307,357,90,186,0,1,1,1,0,0,3,4,310,360,90,187,2,5,1,1,1,0,396,546,303,355,89,185,0,1,1,1,0,0,3,4,306,358,89,186,2,5,1,1,1,0,5,3,4,2,1,1,0,0,0,0,0,0,0,0,4,2,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,17,584,237,347,184,234,52,109,0,1,0,2,0,0,1,1,185,235,52,109,0,1,1,3,0,0,235,346,182,233,52,109,0,1,0,2,0,0,1,1,183,234,52,109,0,1,1,3,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,10,18,581,190,391,142,241,45,145,0,1,2,0,0,0,1,4,143,244,45,147,0,5,3,0,0,0,190,385,142,238,45,142,0,1,2,0,0,0,1,4,143,241,45,144,0,5,3,0,0,0,0,6,0,3,0,3,0,0,0,0,0,0,0,0,0,3,0,3,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,0,23965,11330,12635,6204,6623,4908,5756,52,72,52,59,4,1,110,124,6304,6734,4977,5823,87,116,66,83,13,9,11161,12483,6080,6525,4876,5720,45,63,50,57,4,1,106,117,6176,6630,4943,5783,78,106,63,78,12,9,169,152,124,98,32,36,7,9,2,2,0,0,4,7,128,104,34,40,9,10,3,5,1,0 -050,01,025,Alabama,Clarke County,11,1,1406,701,705,320,334,342,346,2,7,7,4,0,0,30,14,349,348,364,356,7,11,11,5,3,0,681,690,304,325,338,345,2,3,7,3,0,0,30,14,333,339,360,355,7,7,11,4,3,0,20,15,16,9,4,1,0,4,0,1,0,0,0,0,16,9,4,1,0,4,0,1,0,0 -050,01,025,Alabama,Clarke County,11,2,1321,675,646,318,311,335,312,3,4,0,2,0,0,19,17,337,326,349,324,6,9,2,4,0,1,662,638,306,306,335,310,2,3,0,2,0,0,19,17,325,321,349,322,5,8,2,4,0,1,13,8,12,5,0,2,1,1,0,0,0,0,0,0,12,5,0,2,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,11,3,1475,752,723,360,364,373,335,3,4,3,6,2,0,11,14,370,377,381,348,5,6,6,8,3,0,728,713,346,355,366,334,1,4,3,6,2,0,10,14,355,368,373,347,3,6,5,8,2,0,24,10,14,9,7,1,2,0,0,0,0,0,1,0,15,9,8,1,2,0,1,0,1,0 -050,01,025,Alabama,Clarke County,11,4,1573,781,792,354,398,411,374,2,3,2,5,0,1,12,11,365,409,421,380,5,5,2,7,1,2,770,770,346,383,409,370,2,3,2,5,0,1,11,8,356,391,418,374,5,5,2,6,1,2,11,22,8,15,2,4,0,0,0,0,0,0,1,3,9,18,3,6,0,0,0,1,0,0 -050,01,025,Alabama,Clarke County,11,5,1434,714,720,345,320,354,384,7,4,4,1,0,0,4,11,348,330,356,389,7,7,7,5,0,1,706,710,341,315,350,380,7,4,4,1,0,0,4,10,344,324,352,385,7,7,7,4,0,1,8,10,4,5,4,4,0,0,0,0,0,0,0,1,4,6,4,4,0,0,0,1,0,0 -050,01,025,Alabama,Clarke County,11,6,1483,714,769,361,364,343,390,2,5,4,1,0,0,4,9,363,373,346,394,4,8,4,2,1,1,703,766,353,363,340,388,2,5,4,1,0,0,4,9,355,372,343,392,4,8,4,2,1,1,11,3,8,1,3,2,0,0,0,0,0,0,0,0,8,1,3,2,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,7,1150,548,602,294,298,240,284,4,5,2,2,0,0,8,13,301,309,242,288,8,12,2,5,3,1,537,596,284,296,239,282,4,4,2,2,0,0,8,12,291,306,241,285,8,11,2,5,3,1,11,6,10,2,1,2,0,1,0,0,0,0,0,1,10,3,1,3,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,11,8,1403,652,751,330,359,309,370,4,6,5,10,0,0,4,6,334,364,311,374,6,8,5,11,0,0,644,738,323,348,309,368,3,6,5,10,0,0,4,6,327,353,311,372,5,8,5,11,0,0,8,13,7,11,0,2,1,0,0,0,0,0,0,0,7,11,0,2,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,9,1379,631,748,320,366,302,374,1,4,5,4,0,0,3,0,323,366,302,374,4,4,5,4,0,0,624,737,314,358,301,372,1,3,5,4,0,0,3,0,317,358,301,372,4,3,5,4,0,0,7,11,6,8,1,2,0,1,0,0,0,0,0,0,6,8,1,2,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,11,10,1493,707,786,400,379,293,400,5,2,7,4,0,0,2,1,402,380,293,400,7,2,7,5,0,0,695,774,392,372,290,395,5,2,7,4,0,0,1,1,393,373,290,395,6,2,7,5,0,0,12,12,8,7,3,5,0,0,0,0,0,0,1,0,9,7,3,5,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,11,1625,758,867,441,443,310,414,2,4,3,3,0,0,2,3,443,445,311,415,2,6,4,4,0,0,741,861,427,438,308,413,2,4,2,3,0,0,2,3,429,440,309,414,2,6,3,4,0,0,17,6,14,5,2,1,0,0,1,0,0,0,0,0,14,5,2,1,0,0,1,0,0,0 -050,01,025,Alabama,Clarke County,11,12,1782,844,938,473,486,366,436,2,4,0,3,1,0,2,9,474,493,368,440,2,8,1,5,1,2,839,928,471,482,365,432,0,4,0,3,1,0,2,7,472,488,367,435,0,7,1,4,1,2,5,10,2,4,1,4,2,0,0,0,0,0,0,2,2,5,1,5,2,1,0,1,0,0 -050,01,025,Alabama,Clarke County,11,13,1660,775,885,453,462,312,409,3,6,5,7,0,0,2,1,455,463,313,409,5,6,5,8,0,0,769,875,450,456,312,408,2,4,4,6,0,0,1,1,451,457,313,408,3,4,4,7,0,0,6,10,3,6,0,1,1,2,1,1,0,0,1,0,4,6,0,1,2,2,1,1,0,0 -050,01,025,Alabama,Clarke County,11,14,1351,652,699,397,432,247,252,5,7,2,4,0,0,1,4,398,435,247,254,6,9,2,4,0,1,644,695,392,429,244,251,5,7,2,4,0,0,1,4,393,432,244,253,6,9,2,4,0,1,8,4,5,3,3,1,0,0,0,0,0,0,0,0,5,3,3,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,15,1251,573,678,390,444,175,230,6,2,0,0,1,0,1,2,391,446,175,230,7,3,0,1,1,0,573,677,390,443,175,230,6,2,0,0,1,0,1,2,391,445,175,230,7,3,0,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,16,962,416,546,310,367,101,174,1,3,1,0,0,0,3,2,311,369,103,174,4,5,1,0,0,0,413,542,308,364,100,173,1,3,1,0,0,0,3,2,309,366,102,173,4,5,1,0,0,0,3,4,2,3,1,1,0,0,0,0,0,0,0,0,2,3,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,17,611,247,364,195,233,51,125,0,0,0,3,0,0,1,3,196,235,51,126,1,2,0,4,0,0,243,363,191,232,51,125,0,0,0,3,0,0,1,3,192,234,51,126,1,2,0,4,0,0,4,1,4,1,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,11,18,606,190,416,143,263,44,147,0,2,2,0,0,0,1,4,144,266,44,148,1,5,2,1,0,0,189,410,142,260,44,144,0,2,2,0,0,0,1,4,143,263,44,145,1,5,2,1,0,0,1,6,1,3,0,3,0,0,0,0,0,0,0,0,1,3,0,3,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,0,23651,11189,12462,6078,6466,4887,5745,55,74,49,57,4,1,116,119,6176,6574,4961,5807,96,120,70,74,7,11,11026,12307,5959,6366,4856,5708,47,63,47,55,4,1,113,114,6054,6469,4929,5767,86,108,68,70,7,11,163,155,119,100,31,37,8,11,2,2,0,0,3,5,122,105,32,40,10,12,2,4,0,0 -050,01,025,Alabama,Clarke County,12,1,1367,676,691,319,314,316,353,2,8,4,1,0,0,35,15,349,329,343,364,10,10,9,2,2,1,662,675,309,306,312,351,2,2,4,1,0,0,35,15,339,321,339,362,10,4,9,2,2,1,14,16,10,8,4,2,0,6,0,0,0,0,0,0,10,8,4,2,0,6,0,0,0,0 -050,01,025,Alabama,Clarke County,12,2,1320,672,648,307,312,341,311,3,3,1,2,0,0,20,20,326,329,356,327,6,8,3,3,1,4,656,640,294,307,340,310,1,2,1,1,0,0,20,20,313,324,355,326,4,7,3,2,1,4,16,8,13,5,1,1,2,1,0,1,0,0,0,0,13,5,1,1,2,1,0,1,0,0 -050,01,025,Alabama,Clarke County,12,3,1408,732,676,344,326,370,325,4,5,3,5,2,0,9,15,352,340,376,333,7,10,4,7,2,1,712,666,331,318,364,323,3,5,3,5,2,0,9,15,339,332,370,331,6,10,4,7,2,1,20,10,13,8,6,2,1,0,0,0,0,0,0,0,13,8,6,2,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,4,1490,736,754,331,389,389,354,4,2,2,5,0,1,10,3,340,392,395,355,7,2,4,7,0,1,724,735,322,374,387,351,3,2,2,5,0,1,10,2,331,376,393,352,6,2,4,6,0,1,12,19,9,15,2,3,1,0,0,0,0,0,0,1,9,16,2,3,1,0,0,1,0,0 -050,01,025,Alabama,Clarke County,12,5,1423,689,734,322,314,351,402,6,5,5,2,0,0,5,11,326,325,355,409,9,9,5,2,0,0,682,723,319,308,348,398,6,5,5,2,0,0,4,10,322,318,352,404,8,9,5,2,0,0,7,11,3,6,3,4,0,0,0,0,0,0,1,1,4,7,3,5,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,6,1515,756,759,367,362,376,381,3,4,4,3,0,0,6,9,371,370,381,386,4,7,6,5,0,0,744,754,358,361,373,378,3,4,4,3,0,0,6,8,362,368,378,382,4,7,6,5,0,0,12,5,9,1,3,3,0,0,0,0,0,0,0,1,9,2,3,4,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,7,1163,544,619,289,297,242,308,4,6,1,0,0,0,8,8,294,305,247,310,8,9,5,2,0,1,535,615,280,296,242,306,4,5,1,0,0,0,8,8,285,304,247,308,8,8,5,2,0,1,9,4,9,1,0,2,0,1,0,0,0,0,0,0,9,1,0,2,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,12,8,1343,622,721,328,350,284,347,4,6,2,9,0,0,4,9,331,357,285,352,5,10,5,11,0,0,612,710,320,340,283,346,3,6,2,9,0,0,4,9,323,347,284,351,4,10,5,11,0,0,10,11,8,10,1,1,1,0,0,0,0,0,0,0,8,10,1,1,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,9,1339,621,718,300,351,313,360,1,4,4,3,0,0,3,0,302,351,315,360,3,4,4,3,0,0,614,701,294,338,312,357,1,3,4,3,0,0,3,0,296,338,314,357,3,3,4,3,0,0,7,17,6,13,1,3,0,1,0,0,0,0,0,0,6,13,1,3,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,12,10,1473,681,792,365,387,301,395,4,3,8,6,0,0,3,1,367,388,303,395,5,4,9,6,0,0,671,782,359,382,298,390,4,3,8,6,0,0,2,1,360,383,299,390,5,4,9,6,0,0,10,10,6,5,3,5,0,0,0,0,0,0,1,0,7,5,4,5,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,11,1565,733,832,438,409,288,417,3,2,2,3,0,0,2,1,440,410,288,417,5,3,2,3,0,0,716,826,423,403,286,417,3,2,2,3,0,0,2,1,425,404,286,417,5,3,2,3,0,0,17,6,15,6,2,0,0,0,0,0,0,0,0,0,15,6,2,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,12,1732,828,904,461,468,360,420,2,4,2,3,1,0,2,9,463,475,360,424,3,9,3,6,1,1,821,894,458,465,359,415,0,4,1,3,1,0,2,7,460,470,359,418,1,8,2,5,1,1,7,10,3,3,1,5,2,0,1,0,0,0,0,2,3,5,1,6,2,1,1,1,0,0 -050,01,025,Alabama,Clarke County,12,13,1667,771,896,461,462,303,419,2,6,4,6,0,0,1,3,462,465,303,420,3,7,4,7,0,0,765,887,458,456,303,418,1,5,3,5,0,0,0,3,458,459,303,419,1,6,3,6,0,0,6,9,3,6,0,1,1,1,1,1,0,0,1,0,4,6,0,1,2,1,1,1,0,0 -050,01,025,Alabama,Clarke County,12,14,1386,659,727,378,434,273,277,4,8,4,5,0,0,0,3,378,437,273,277,4,11,4,5,0,0,652,724,374,432,270,277,4,7,4,5,0,0,0,3,374,435,270,277,4,10,4,5,0,0,7,3,4,2,3,0,0,1,0,0,0,0,0,0,4,2,3,0,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,12,15,1238,579,659,396,421,172,232,8,3,0,1,1,0,2,2,398,423,172,232,10,4,0,1,1,1,578,654,395,417,172,231,8,3,0,1,1,0,2,2,397,419,172,231,10,4,0,1,1,1,1,5,1,4,0,1,0,0,0,0,0,0,0,0,1,4,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,16,977,430,547,310,371,114,171,1,3,1,0,0,0,4,2,313,372,115,172,5,4,1,1,0,0,429,544,309,369,114,170,1,3,1,0,0,0,4,2,312,370,115,171,5,4,1,1,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,17,663,284,379,225,247,58,126,0,0,0,2,0,0,1,4,226,251,58,126,1,4,0,2,0,0,279,377,221,245,57,126,0,0,0,2,0,0,1,4,222,249,57,126,1,4,0,2,0,0,5,2,4,2,1,0,0,0,0,0,0,0,0,0,4,2,1,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,12,18,582,176,406,137,252,36,147,0,2,2,1,0,0,1,4,138,255,36,148,1,5,2,1,0,1,174,400,135,249,36,144,0,2,2,1,0,0,1,4,136,252,36,145,1,5,2,1,0,1,2,6,2,3,0,3,0,0,0,0,0,0,0,0,2,3,0,3,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,0,23291,11014,12277,5960,6317,4827,5706,60,73,49,53,4,1,114,127,6064,6430,4898,5780,92,116,72,75,9,6,10850,12126,5844,6224,4794,5669,52,62,47,51,4,1,109,119,5943,6330,4864,5738,81,102,69,72,9,6,164,151,116,93,33,37,8,11,2,2,0,0,5,8,121,100,34,42,11,14,3,3,0,0 -050,01,025,Alabama,Clarke County,13,1,1285,641,644,301,272,310,342,3,7,5,2,0,0,22,21,323,292,329,359,6,10,7,4,0,1,624,632,290,268,305,339,3,3,5,2,0,0,21,20,311,287,323,355,6,6,7,4,0,1,17,12,11,4,5,3,0,4,0,0,0,0,1,1,12,5,6,4,0,4,0,0,0,0 -050,01,025,Alabama,Clarke County,13,2,1338,660,678,301,324,331,328,4,5,1,2,0,0,23,19,321,342,348,342,10,7,4,5,2,1,645,665,290,316,329,327,2,2,1,1,0,0,23,19,310,334,346,341,8,4,4,4,2,1,15,13,11,8,2,1,2,3,0,1,0,0,0,0,11,8,2,1,2,3,0,1,0,0 -050,01,025,Alabama,Clarke County,13,3,1403,746,657,348,317,375,320,3,6,3,3,1,0,16,11,362,328,386,328,6,7,7,5,1,0,726,649,334,311,371,318,2,6,3,3,1,0,15,11,347,322,382,326,4,7,7,5,1,0,20,8,14,6,4,2,1,0,0,0,0,0,1,0,15,6,4,2,2,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,4,1464,729,735,334,376,375,343,5,3,2,5,1,1,12,7,346,382,382,347,8,5,5,8,1,1,719,717,327,362,373,340,4,3,2,5,1,1,12,6,339,367,380,343,7,5,5,8,1,1,10,18,7,14,2,3,1,0,0,0,0,0,0,1,7,15,2,4,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,5,1357,645,712,308,313,321,385,7,3,3,3,0,0,6,8,314,320,324,389,9,6,4,4,0,1,636,705,305,309,316,383,7,3,3,3,0,0,5,7,310,315,319,387,9,5,3,4,0,1,9,7,3,4,5,2,0,0,0,0,0,0,1,1,4,5,5,2,0,1,1,0,0,0 -050,01,025,Alabama,Clarke County,13,6,1495,758,737,357,331,387,390,2,3,4,2,0,0,8,11,363,340,391,397,4,6,7,5,1,0,743,730,345,329,384,386,2,3,4,2,0,0,8,10,351,337,388,392,4,6,7,5,1,0,15,7,12,2,3,4,0,0,0,0,0,0,0,1,12,3,3,5,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,7,1228,569,659,297,327,260,318,4,5,3,1,0,0,5,8,301,334,263,322,5,9,5,2,0,0,564,653,292,324,260,316,4,5,3,1,0,0,5,7,296,330,263,320,5,8,5,2,0,0,5,6,5,3,0,2,0,0,0,0,0,0,0,1,5,4,0,2,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,13,8,1240,584,656,311,329,261,307,4,4,3,5,0,0,5,11,316,340,264,310,6,10,3,7,0,0,579,647,308,322,260,306,3,3,3,5,0,0,5,11,313,333,263,309,5,9,3,7,0,0,5,9,3,7,1,1,1,1,0,0,0,0,0,0,3,7,1,1,1,1,0,0,0,0 -050,01,025,Alabama,Clarke County,13,9,1350,622,728,306,345,309,373,1,6,4,4,0,0,2,0,308,345,309,373,2,6,5,4,0,0,611,708,296,329,308,370,1,5,4,4,0,0,2,0,298,329,308,370,2,5,5,4,0,0,11,20,10,16,1,3,0,1,0,0,0,0,0,0,10,16,1,3,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,13,10,1395,613,782,330,381,273,392,1,3,7,5,0,0,2,1,332,382,274,393,2,3,7,5,0,0,605,772,324,377,271,387,1,3,7,5,0,0,2,0,326,377,272,387,2,3,7,5,0,0,8,10,6,4,2,5,0,0,0,0,0,0,0,1,6,5,2,6,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,11,1520,726,794,412,388,302,399,7,2,3,3,0,0,2,2,414,390,302,399,8,4,4,3,0,0,711,789,401,383,299,399,7,2,3,3,0,0,1,2,402,385,299,399,7,4,4,3,0,0,15,5,11,5,3,0,0,0,0,0,0,0,1,0,12,5,3,0,1,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,12,1713,819,894,461,465,349,416,4,3,2,3,1,0,2,7,463,470,350,420,6,7,2,5,1,0,807,885,453,462,348,412,2,3,1,3,1,0,2,5,455,466,349,415,4,6,1,4,1,0,12,9,8,3,1,4,2,0,1,0,0,0,0,2,8,4,1,5,2,1,1,1,0,0 -050,01,025,Alabama,Clarke County,13,13,1642,765,877,457,425,302,433,2,7,2,7,0,0,2,5,459,428,303,436,3,8,2,10,0,0,760,867,455,419,302,431,1,6,1,6,0,0,1,5,456,422,303,434,1,7,1,9,0,0,5,10,2,6,0,2,1,1,1,1,0,0,1,0,3,6,0,2,2,1,1,1,0,0 -050,01,025,Alabama,Clarke County,13,14,1420,656,764,372,444,275,308,3,5,6,4,0,0,0,3,372,447,275,308,3,7,6,4,0,1,650,761,368,442,273,308,3,4,6,4,0,0,0,3,368,445,273,308,3,6,6,4,0,1,6,3,4,2,2,0,0,1,0,0,0,0,0,0,4,2,2,0,0,1,0,0,0,0 -050,01,025,Alabama,Clarke County,13,15,1214,586,628,396,410,179,207,8,6,0,2,1,0,2,3,397,413,179,208,9,8,1,2,2,0,583,625,394,408,178,206,8,6,0,2,1,0,2,3,395,411,178,207,9,8,1,2,2,0,3,3,2,2,1,1,0,0,0,0,0,0,0,0,2,2,1,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,16,972,426,546,305,374,117,168,2,3,1,0,0,0,1,1,306,375,117,168,2,3,2,0,0,1,425,544,304,373,117,167,2,3,1,0,0,0,1,1,305,374,117,167,2,3,2,0,0,1,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,17,667,287,380,222,242,62,133,0,0,0,1,0,0,3,4,225,245,62,134,2,4,1,1,1,0,283,377,219,239,61,133,0,0,0,1,0,0,3,4,222,242,61,134,2,4,1,1,1,0,4,3,3,3,1,0,0,0,0,0,0,0,0,0,3,3,1,0,0,0,0,0,0,0 -050,01,025,Alabama,Clarke County,13,18,588,182,406,142,254,39,144,0,2,0,1,0,0,1,5,142,257,40,147,1,6,0,1,0,0,179,400,139,251,39,141,0,2,0,1,0,0,1,5,139,254,40,144,1,6,0,1,0,0,3,6,3,3,0,3,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,0,13932,6833,7099,5678,5888,1014,1059,24,31,12,13,0,0,105,108,5777,5989,1067,1111,81,91,14,18,2,2,6591,6942,5458,5736,995,1054,24,31,10,13,0,0,104,108,5556,5837,1048,1106,80,91,12,18,2,2,242,157,220,152,19,5,0,0,2,0,0,0,1,0,221,152,19,5,1,0,2,0,0,0 -050,01,027,Alabama,Clay County,1,1,801,428,373,336,284,68,66,1,2,1,0,0,0,22,21,358,305,82,84,8,4,2,1,0,0,395,354,304,265,67,66,1,2,1,0,0,0,22,21,326,286,81,84,8,4,2,1,0,0,33,19,32,19,1,0,0,0,0,0,0,0,0,0,32,19,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,2,783,422,361,328,285,75,61,0,0,2,0,0,0,17,15,345,300,89,72,2,3,2,1,1,0,400,350,309,274,72,61,0,0,2,0,0,0,17,15,326,289,86,72,2,3,2,1,1,0,22,11,19,11,3,0,0,0,0,0,0,0,0,0,19,11,3,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,3,990,529,461,420,377,92,69,3,0,1,0,0,0,13,15,433,392,100,78,8,8,1,0,0,0,512,446,404,363,91,68,3,0,1,0,0,0,13,15,417,378,99,77,8,8,1,0,0,0,17,15,16,14,1,1,0,0,0,0,0,0,0,0,16,14,1,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,4,912,453,459,352,359,90,88,1,3,1,0,0,0,9,9,360,368,97,92,5,8,1,1,0,0,434,441,336,341,87,88,1,3,1,0,0,0,9,9,344,350,94,92,5,8,1,1,0,0,19,18,16,18,3,0,0,0,0,0,0,0,0,0,16,18,3,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,5,747,369,378,294,314,66,59,2,0,0,0,0,0,7,5,300,319,70,61,6,2,0,1,0,0,349,363,275,300,65,58,2,0,0,0,0,0,7,5,281,305,69,60,6,2,0,1,0,0,20,15,19,14,1,1,0,0,0,0,0,0,0,0,19,14,1,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,6,720,347,373,271,299,69,64,2,4,2,2,0,0,3,4,273,303,70,65,5,7,2,2,0,0,319,365,244,291,69,64,2,4,2,2,0,0,2,4,245,295,70,65,4,7,2,2,0,0,28,8,27,8,0,0,0,0,0,0,0,0,1,0,28,8,0,0,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,7,760,364,396,304,327,53,63,1,0,2,4,0,0,4,2,308,329,53,63,5,2,2,4,0,0,343,376,288,307,50,63,1,0,0,4,0,0,4,2,292,309,50,63,5,2,0,4,0,0,21,20,16,20,3,0,0,0,2,0,0,0,0,0,16,20,3,0,0,0,2,0,0,0 -050,01,027,Alabama,Clay County,1,8,904,451,453,381,358,67,88,1,3,1,0,0,0,1,4,382,360,67,89,2,6,1,1,0,1,428,439,360,344,65,88,1,3,1,0,0,0,1,4,361,346,65,89,2,6,1,1,0,1,23,14,21,14,2,0,0,0,0,0,0,0,0,0,21,14,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,9,926,450,476,376,387,68,79,2,3,0,1,0,0,4,6,378,393,70,79,5,9,0,1,1,0,429,470,355,381,68,79,2,3,0,1,0,0,4,6,357,387,70,79,5,9,0,1,1,0,21,6,21,6,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,10,1078,538,540,453,457,79,77,2,0,0,2,0,0,4,4,457,460,80,78,6,3,0,2,0,1,525,530,442,447,77,77,2,0,0,2,0,0,4,4,446,450,78,78,6,3,0,2,0,1,13,10,11,10,2,0,0,0,0,0,0,0,0,0,11,10,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,11,1042,522,520,441,432,72,81,3,4,1,1,0,0,5,2,446,434,72,82,7,6,2,1,0,0,514,513,433,427,72,79,3,4,1,1,0,0,5,2,438,429,72,80,7,6,2,1,0,0,8,7,8,5,0,2,0,0,0,0,0,0,0,0,8,5,0,2,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,12,919,450,469,395,389,54,66,0,3,0,2,0,0,1,9,396,397,54,67,1,12,0,2,0,0,445,462,391,382,53,66,0,3,0,2,0,0,1,9,392,390,53,67,1,12,0,2,0,0,5,7,4,7,1,0,0,0,0,0,0,0,0,0,4,7,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,13,901,425,476,367,405,50,61,2,5,0,0,0,0,6,5,373,410,51,61,8,10,0,0,0,0,420,474,364,403,48,61,2,5,0,0,0,0,6,5,370,408,49,61,8,10,0,0,0,0,5,2,3,2,2,0,0,0,0,0,0,0,0,0,3,2,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,14,767,362,405,308,348,48,52,1,1,1,1,0,0,4,3,312,350,48,53,5,4,1,1,0,0,358,403,304,347,48,51,1,1,1,1,0,0,4,3,308,349,48,52,5,4,1,1,0,0,4,2,4,1,0,1,0,0,0,0,0,0,0,0,4,1,0,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,15,617,287,330,254,289,28,37,2,2,0,0,0,0,3,2,257,291,28,37,5,4,0,0,0,0,285,330,252,289,28,37,2,2,0,0,0,0,3,2,255,291,28,37,5,4,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,16,444,206,238,192,215,12,21,1,1,0,0,0,0,1,1,192,215,13,22,2,2,0,0,0,0,206,237,192,214,12,21,1,1,0,0,0,0,1,1,192,214,13,22,2,2,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,17,337,150,187,133,174,17,13,0,0,0,0,0,0,0,0,133,174,17,13,0,0,0,0,0,0,150,185,133,172,17,13,0,0,0,0,0,0,0,0,133,172,17,13,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,1,18,284,80,204,73,189,6,14,0,0,0,0,0,0,1,1,74,189,6,15,1,1,0,0,0,0,79,204,72,189,6,14,0,0,0,0,0,0,1,1,73,189,6,15,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,0,13930,6832,7098,5677,5887,1014,1059,24,31,12,13,0,0,105,108,5776,5988,1067,1111,81,91,14,18,2,2,6590,6941,5457,5735,995,1054,24,31,10,13,0,0,104,108,5555,5836,1048,1106,80,91,12,18,2,2,242,157,220,152,19,5,0,0,2,0,0,0,1,0,221,152,19,5,1,0,2,0,0,0 -050,01,027,Alabama,Clay County,2,1,801,428,373,336,284,68,66,1,2,1,0,0,0,22,21,358,305,82,84,8,4,2,1,0,0,395,354,304,265,67,66,1,2,1,0,0,0,22,21,326,286,81,84,8,4,2,1,0,0,33,19,32,19,1,0,0,0,0,0,0,0,0,0,32,19,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,2,783,422,361,328,285,75,61,0,0,2,0,0,0,17,15,345,300,89,72,2,3,2,1,1,0,400,350,309,274,72,61,0,0,2,0,0,0,17,15,326,289,86,72,2,3,2,1,1,0,22,11,19,11,3,0,0,0,0,0,0,0,0,0,19,11,3,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,3,990,529,461,420,377,92,69,3,0,1,0,0,0,13,15,433,392,100,78,8,8,1,0,0,0,512,446,404,363,91,68,3,0,1,0,0,0,13,15,417,378,99,77,8,8,1,0,0,0,17,15,16,14,1,1,0,0,0,0,0,0,0,0,16,14,1,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,4,912,453,459,352,359,90,88,1,3,1,0,0,0,9,9,360,368,97,92,5,8,1,1,0,0,434,441,336,341,87,88,1,3,1,0,0,0,9,9,344,350,94,92,5,8,1,1,0,0,19,18,16,18,3,0,0,0,0,0,0,0,0,0,16,18,3,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,5,747,369,378,294,314,66,59,2,0,0,0,0,0,7,5,300,319,70,61,6,2,0,1,0,0,349,363,275,300,65,58,2,0,0,0,0,0,7,5,281,305,69,60,6,2,0,1,0,0,20,15,19,14,1,1,0,0,0,0,0,0,0,0,19,14,1,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,6,720,347,373,271,299,69,64,2,4,2,2,0,0,3,4,273,303,70,65,5,7,2,2,0,0,319,365,244,291,69,64,2,4,2,2,0,0,2,4,245,295,70,65,4,7,2,2,0,0,28,8,27,8,0,0,0,0,0,0,0,0,1,0,28,8,0,0,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,7,760,364,396,304,327,53,63,1,0,2,4,0,0,4,2,308,329,53,63,5,2,2,4,0,0,343,376,288,307,50,63,1,0,0,4,0,0,4,2,292,309,50,63,5,2,0,4,0,0,21,20,16,20,3,0,0,0,2,0,0,0,0,0,16,20,3,0,0,0,2,0,0,0 -050,01,027,Alabama,Clay County,2,8,904,451,453,381,358,67,88,1,3,1,0,0,0,1,4,382,360,67,89,2,6,1,1,0,1,428,439,360,344,65,88,1,3,1,0,0,0,1,4,361,346,65,89,2,6,1,1,0,1,23,14,21,14,2,0,0,0,0,0,0,0,0,0,21,14,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,9,926,450,476,376,387,68,79,2,3,0,1,0,0,4,6,378,393,70,79,5,9,0,1,1,0,429,470,355,381,68,79,2,3,0,1,0,0,4,6,357,387,70,79,5,9,0,1,1,0,21,6,21,6,0,0,0,0,0,0,0,0,0,0,21,6,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,10,1078,538,540,453,457,79,77,2,0,0,2,0,0,4,4,457,460,80,78,6,3,0,2,0,1,525,530,442,447,77,77,2,0,0,2,0,0,4,4,446,450,78,78,6,3,0,2,0,1,13,10,11,10,2,0,0,0,0,0,0,0,0,0,11,10,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,11,1042,522,520,441,432,72,81,3,4,1,1,0,0,5,2,446,434,72,82,7,6,2,1,0,0,514,513,433,427,72,79,3,4,1,1,0,0,5,2,438,429,72,80,7,6,2,1,0,0,8,7,8,5,0,2,0,0,0,0,0,0,0,0,8,5,0,2,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,12,919,450,469,395,389,54,66,0,3,0,2,0,0,1,9,396,397,54,67,1,12,0,2,0,0,445,462,391,382,53,66,0,3,0,2,0,0,1,9,392,390,53,67,1,12,0,2,0,0,5,7,4,7,1,0,0,0,0,0,0,0,0,0,4,7,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,13,901,425,476,367,405,50,61,2,5,0,0,0,0,6,5,373,410,51,61,8,10,0,0,0,0,420,474,364,403,48,61,2,5,0,0,0,0,6,5,370,408,49,61,8,10,0,0,0,0,5,2,3,2,2,0,0,0,0,0,0,0,0,0,3,2,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,14,766,362,404,308,347,48,52,1,1,1,1,0,0,4,3,312,349,48,53,5,4,1,1,0,0,358,402,304,346,48,51,1,1,1,1,0,0,4,3,308,348,48,52,5,4,1,1,0,0,4,2,4,1,0,1,0,0,0,0,0,0,0,0,4,1,0,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,15,616,286,330,253,289,28,37,2,2,0,0,0,0,3,2,256,291,28,37,5,4,0,0,0,0,284,330,251,289,28,37,2,2,0,0,0,0,3,2,254,291,28,37,5,4,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,16,444,206,238,192,215,12,21,1,1,0,0,0,0,1,1,192,215,13,22,2,2,0,0,0,0,206,237,192,214,12,21,1,1,0,0,0,0,1,1,192,214,13,22,2,2,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,17,337,150,187,133,174,17,13,0,0,0,0,0,0,0,0,133,174,17,13,0,0,0,0,0,0,150,185,133,172,17,13,0,0,0,0,0,0,0,0,133,172,17,13,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,2,18,284,80,204,73,189,6,14,0,0,0,0,0,0,1,1,74,189,6,15,1,1,0,0,0,0,79,204,72,189,6,14,0,0,0,0,0,0,1,1,73,189,6,15,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,0,13897,6806,7091,5666,5878,995,1058,24,32,12,14,0,0,109,109,5770,5978,1055,1121,66,71,25,24,3,8,6564,6936,5445,5728,977,1053,24,32,10,14,0,0,108,109,5548,5828,1036,1116,66,71,23,24,3,8,242,155,221,150,18,5,0,0,2,0,0,0,1,0,222,150,19,5,0,0,2,0,0,0 -050,01,027,Alabama,Clay County,3,1,789,418,371,328,282,66,67,1,2,1,0,0,0,22,20,349,301,85,84,5,3,4,2,0,1,384,355,295,266,65,67,1,2,1,0,0,0,22,20,316,285,84,84,5,3,4,2,0,1,34,16,33,16,1,0,0,0,0,0,0,0,0,0,33,16,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,2,779,423,356,332,278,72,61,0,0,2,0,0,0,17,17,349,295,84,75,4,3,3,0,1,0,401,346,313,268,69,61,0,0,2,0,0,0,17,17,330,285,81,75,4,3,3,0,1,0,22,10,19,10,3,0,0,0,0,0,0,0,0,0,19,10,3,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,3,985,522,463,412,376,91,72,4,0,1,0,0,0,14,15,425,389,102,84,7,4,2,1,0,0,505,448,396,362,90,71,4,0,1,0,0,0,14,15,409,375,101,83,7,4,2,1,0,0,17,15,16,14,1,1,0,0,0,0,0,0,0,0,16,14,1,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,4,894,447,447,349,349,86,85,1,3,1,0,0,0,10,10,359,357,90,90,7,8,1,0,0,2,429,431,333,333,84,85,1,3,1,0,0,0,10,10,343,341,88,90,7,8,1,0,0,2,18,16,16,16,2,0,0,0,0,0,0,0,0,0,16,16,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,5,762,374,388,298,322,67,62,1,0,0,0,0,0,8,4,305,326,68,63,5,2,3,0,1,1,356,373,281,308,66,61,1,0,0,0,0,0,8,4,288,312,67,62,5,2,3,0,1,1,18,15,17,14,1,1,0,0,0,0,0,0,0,0,17,14,1,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,6,724,348,376,274,300,67,65,2,4,2,2,0,0,3,5,277,305,68,66,2,4,4,5,0,1,321,366,248,290,67,65,2,4,2,2,0,0,2,5,250,295,67,66,2,4,4,5,0,1,27,10,26,10,0,0,0,0,0,0,0,0,1,0,27,10,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,7,761,365,396,301,325,56,64,1,0,2,5,0,0,5,2,306,325,59,66,3,1,2,6,0,0,344,376,285,305,53,64,1,0,0,5,0,0,5,2,290,305,56,66,3,1,0,6,0,0,21,20,16,20,3,0,0,0,2,0,0,0,0,0,16,20,3,0,0,0,2,0,0,0 -050,01,027,Alabama,Clay County,3,8,887,442,445,376,353,63,84,1,3,1,0,0,0,1,5,377,358,64,87,1,4,1,1,0,0,419,432,355,340,61,84,1,3,1,0,0,0,1,5,356,345,62,87,1,4,1,1,0,0,23,13,21,13,2,0,0,0,0,0,0,0,0,0,21,13,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,9,920,448,472,378,385,65,78,2,3,0,1,0,0,3,5,381,390,67,80,2,6,1,1,0,0,427,463,357,376,65,78,2,3,0,1,0,0,3,5,360,381,67,80,2,6,1,1,0,0,21,9,21,9,0,0,0,0,0,0,0,0,0,0,21,9,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,10,1069,526,543,442,458,79,79,1,0,0,2,0,0,4,4,446,462,80,80,4,2,0,3,0,0,513,533,431,448,77,79,1,0,0,2,0,0,4,4,435,452,78,80,4,2,0,3,0,0,13,10,11,10,2,0,0,0,0,0,0,0,0,0,11,10,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,11,1044,525,519,443,432,72,80,4,4,1,1,0,0,5,2,448,434,72,80,8,5,1,1,1,1,516,512,434,427,72,78,4,4,1,1,0,0,5,2,439,429,72,78,8,5,1,1,1,1,9,7,9,5,0,2,0,0,0,0,0,0,0,0,9,5,0,2,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,12,923,450,473,396,395,53,65,0,3,0,2,0,0,1,8,397,402,53,67,1,9,0,3,0,1,445,466,392,388,52,65,0,3,0,2,0,0,1,8,393,395,52,67,1,9,0,3,0,1,5,7,4,7,1,0,0,0,0,0,0,0,0,0,4,7,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,13,908,432,476,374,405,50,61,2,5,0,0,0,0,6,5,379,410,51,62,7,10,1,0,0,0,427,474,371,403,48,61,2,5,0,0,0,0,6,5,376,408,49,62,7,10,1,0,0,0,5,2,3,2,2,0,0,0,0,0,0,0,0,0,3,2,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,14,772,363,409,308,351,48,52,1,2,1,1,0,0,5,3,313,354,49,52,5,5,1,1,0,0,358,407,303,350,48,51,1,2,1,1,0,0,5,3,308,353,49,51,5,5,1,1,0,0,5,2,5,1,0,1,0,0,0,0,0,0,0,0,5,1,0,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,15,615,286,329,255,287,26,38,2,2,0,0,0,0,3,2,257,289,28,38,3,3,1,0,0,1,283,329,252,287,26,38,2,2,0,0,0,0,3,2,254,289,28,38,3,3,1,0,0,1,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,16,440,204,236,192,216,10,18,1,1,0,0,0,0,1,1,193,216,10,19,2,2,0,0,0,0,204,235,192,215,10,18,1,1,0,0,0,0,1,1,193,215,10,19,2,2,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,17,340,150,190,133,177,17,13,0,0,0,0,0,0,0,0,133,177,17,13,0,0,0,0,0,0,150,188,133,175,17,13,0,0,0,0,0,0,0,0,133,175,17,13,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,3,18,285,83,202,75,187,7,14,0,0,0,0,0,0,1,1,76,188,8,15,0,0,0,0,0,0,82,202,74,187,7,14,0,0,0,0,0,0,1,1,75,188,8,15,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,0,13687,6674,7013,5543,5806,970,1041,35,39,14,14,0,0,112,113,5649,5906,1033,1112,78,78,29,30,3,3,6443,6855,5332,5654,955,1037,33,37,12,14,0,0,111,113,5437,5754,1017,1108,76,76,27,30,3,3,231,158,211,152,15,4,2,2,2,0,0,0,1,0,212,152,16,4,2,2,2,0,0,0 -050,01,027,Alabama,Clay County,4,1,782,394,388,309,291,57,74,1,1,2,0,0,0,25,22,334,311,77,92,3,4,5,2,0,1,359,370,275,273,57,74,0,1,2,0,0,0,25,22,300,293,77,92,2,4,5,2,0,1,35,18,34,18,0,0,1,0,0,0,0,0,0,0,34,18,0,0,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,2,740,408,332,325,256,67,55,2,2,1,0,0,0,13,19,337,273,78,70,5,3,2,5,0,1,385,324,305,249,65,55,1,1,1,0,0,0,13,19,317,266,76,70,4,2,2,5,0,1,23,8,20,7,2,0,1,1,0,0,0,0,0,0,20,7,2,0,1,1,0,0,0,0 -050,01,027,Alabama,Clay County,4,3,983,515,468,398,378,95,73,6,1,2,0,0,0,14,16,410,393,106,85,9,4,4,2,0,0,494,452,379,363,93,73,6,0,2,0,0,0,14,16,391,378,104,85,9,3,4,2,0,0,21,16,19,15,2,0,0,1,0,0,0,0,0,0,19,15,2,0,0,1,0,0,0,0 -050,01,027,Alabama,Clay County,4,4,865,440,425,335,333,88,79,3,3,2,0,0,0,12,10,347,343,94,84,7,7,3,1,1,0,425,413,322,321,86,79,3,3,2,0,0,0,12,10,334,331,92,84,7,7,3,1,1,0,15,12,13,12,2,0,0,0,0,0,0,0,0,0,13,12,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,5,779,377,402,301,334,66,64,2,0,0,0,0,0,8,4,309,337,67,67,8,2,1,1,0,0,361,385,286,317,65,64,2,0,0,0,0,0,8,4,294,320,66,67,8,2,1,1,0,0,16,17,15,17,1,0,0,0,0,0,0,0,0,0,15,17,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,6,693,323,370,259,294,55,62,3,6,1,2,0,0,5,6,264,299,58,66,5,7,1,4,1,1,310,350,247,275,55,61,3,6,1,2,0,0,4,6,251,280,57,65,5,7,1,4,1,1,13,20,12,19,0,1,0,0,0,0,0,0,1,0,13,19,1,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,7,758,364,394,293,316,61,69,2,0,3,5,0,0,5,4,298,320,64,70,4,2,5,6,0,0,339,377,272,299,59,69,2,0,1,5,0,0,5,4,277,303,62,70,4,2,3,6,0,0,25,17,21,17,2,0,0,0,2,0,0,0,0,0,21,17,2,0,0,0,2,0,0,0 -050,01,027,Alabama,Clay County,4,8,831,399,432,343,351,54,74,0,4,1,0,0,0,1,3,344,354,55,75,0,5,1,1,0,0,383,421,329,340,52,74,0,4,1,0,0,0,1,3,330,343,53,75,0,5,1,1,0,0,16,11,14,11,2,0,0,0,0,0,0,0,0,0,14,11,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,9,896,449,447,382,367,62,75,3,3,0,0,0,0,2,2,384,369,63,75,3,5,1,0,0,0,425,438,359,358,61,75,3,3,0,0,0,0,2,2,361,360,62,75,3,5,1,0,0,0,24,9,23,9,1,0,0,0,0,0,0,0,0,0,23,9,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,10,1050,504,546,418,451,81,86,2,1,0,3,0,0,3,5,420,455,83,88,4,5,0,3,0,0,491,538,405,443,81,86,2,1,0,3,0,0,3,5,407,447,83,88,4,5,0,3,0,0,13,8,13,8,0,0,0,0,0,0,0,0,0,0,13,8,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,11,1037,526,511,444,430,70,76,4,3,1,1,0,0,7,1,450,431,71,77,10,3,2,1,0,0,517,504,435,425,70,74,4,3,1,1,0,0,7,1,441,426,71,75,10,3,2,1,0,0,9,7,9,5,0,2,0,0,0,0,0,0,0,0,9,5,0,2,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,12,900,438,462,387,387,50,62,1,4,0,2,0,0,0,7,387,392,50,65,1,9,0,3,0,0,433,455,383,380,49,62,1,4,0,2,0,0,0,7,383,385,49,65,1,9,0,3,0,0,5,7,4,7,1,0,0,0,0,0,0,0,0,0,4,7,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,13,951,463,488,401,418,54,58,2,5,0,0,0,0,6,7,406,424,55,61,6,10,2,0,1,0,457,486,397,416,52,58,2,5,0,0,0,0,6,7,402,422,53,61,6,10,2,0,1,0,6,2,4,2,2,0,0,0,0,0,0,0,0,0,4,2,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,14,757,354,403,301,343,45,54,1,3,1,1,0,0,6,2,307,345,45,54,7,5,1,1,0,0,349,401,296,342,45,53,1,3,1,1,0,0,6,2,302,344,45,53,7,5,1,1,0,0,5,2,5,1,0,1,0,0,0,0,0,0,0,0,5,1,0,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,15,603,279,324,248,285,27,34,2,2,0,0,0,0,2,3,250,287,28,36,2,4,1,0,0,0,275,323,244,284,27,34,2,2,0,0,0,0,2,3,246,286,28,36,2,4,1,0,0,0,4,1,4,1,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,16,439,200,239,184,217,13,21,1,1,0,0,0,0,2,0,186,217,13,21,3,1,0,0,0,0,200,238,184,216,13,21,1,1,0,0,0,0,2,0,186,216,13,21,3,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,17,342,153,189,137,177,16,11,0,0,0,0,0,0,0,1,137,177,16,12,0,1,0,0,0,0,153,187,137,175,16,11,0,0,0,0,0,0,0,1,137,175,16,12,0,1,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,4,18,281,88,193,78,178,9,14,0,0,0,0,0,0,1,1,79,179,10,14,1,1,0,0,0,0,87,193,77,178,9,14,0,0,0,0,0,0,1,1,78,179,10,14,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,0,13433,6592,6841,5486,5696,948,989,34,39,16,13,1,0,107,104,5586,5793,1011,1047,75,73,26,28,4,5,6350,6674,5268,5538,930,982,32,38,14,13,0,0,106,103,5367,5634,993,1039,72,72,24,28,3,5,242,167,218,158,18,7,2,1,2,0,1,0,1,1,219,159,18,8,3,1,2,0,1,0 -050,01,027,Alabama,Clay County,5,1,750,385,365,309,279,49,67,1,2,2,0,0,0,24,17,333,295,69,80,3,4,4,3,1,0,350,344,275,259,48,66,1,2,2,0,0,0,24,17,299,275,68,79,3,4,4,3,1,0,35,21,34,20,1,1,0,0,0,0,0,0,0,0,34,20,1,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,2,730,390,340,303,270,69,52,3,1,1,0,0,0,14,17,316,286,81,64,6,2,1,2,0,3,369,326,286,257,67,51,1,1,1,0,0,0,14,17,299,273,79,63,4,2,1,2,0,3,21,14,17,13,2,1,2,0,0,0,0,0,0,0,17,13,2,1,2,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,3,928,493,435,394,352,83,65,2,1,2,0,0,0,12,17,406,369,92,78,4,4,2,1,1,0,471,419,374,337,81,65,2,0,2,0,0,0,12,17,386,354,90,78,4,3,2,1,1,0,22,16,20,15,2,0,0,1,0,0,0,0,0,0,20,15,2,0,0,1,0,0,0,0 -050,01,027,Alabama,Clay County,5,4,863,458,405,346,329,92,65,4,2,3,0,1,0,12,9,358,337,99,71,6,4,5,2,2,0,438,393,329,317,90,65,4,2,3,0,0,0,12,9,341,325,97,71,6,4,5,2,1,0,20,12,17,12,2,0,0,0,0,0,1,0,0,0,17,12,2,0,0,0,0,0,1,0 -050,01,027,Alabama,Clay County,5,5,767,380,387,304,313,67,68,3,1,0,0,0,0,6,5,309,318,71,71,7,2,0,1,0,0,363,375,288,302,66,68,3,1,0,0,0,0,6,4,293,306,70,70,7,2,0,1,0,0,17,12,16,11,1,0,0,0,0,0,0,0,0,1,16,12,1,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,6,687,340,347,269,283,61,54,3,5,1,2,0,0,6,3,275,285,63,56,7,6,2,3,0,0,321,325,253,263,59,52,3,5,1,2,0,0,5,3,258,265,61,54,6,6,2,3,0,0,19,22,16,20,2,2,0,0,0,0,0,0,1,0,17,20,2,2,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,7,727,355,372,288,303,57,60,2,1,3,3,0,0,5,5,293,308,58,62,6,4,3,3,0,0,332,360,268,291,55,60,2,1,2,3,0,0,5,5,273,296,56,62,6,4,2,3,0,0,23,12,20,12,2,0,0,0,1,0,0,0,0,0,20,12,2,0,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,5,8,766,359,407,302,335,54,64,0,4,2,2,0,0,1,2,303,336,54,65,1,6,2,2,0,0,342,390,287,318,53,64,0,4,1,2,0,0,1,2,288,319,53,65,1,6,1,2,0,0,17,17,15,17,1,0,0,0,1,0,0,0,0,0,15,17,1,0,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,5,9,884,443,441,391,359,48,76,2,3,0,0,0,0,2,3,392,361,48,77,3,4,2,2,0,0,422,430,372,348,46,76,2,3,0,0,0,0,2,3,373,350,46,77,3,4,2,2,0,0,21,11,19,11,2,0,0,0,0,0,0,0,0,0,19,11,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,10,1018,496,522,404,435,85,81,3,1,0,1,0,0,4,4,408,438,87,82,4,4,1,2,0,0,481,514,389,427,85,81,3,1,0,1,0,0,4,4,393,430,87,82,4,4,1,2,0,0,15,8,15,8,0,0,0,0,0,0,0,0,0,0,15,8,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,11,1013,515,498,443,419,64,74,3,3,1,2,0,0,4,0,446,419,65,74,6,3,2,2,0,0,503,491,431,413,64,73,3,3,1,2,0,0,4,0,434,413,65,73,6,3,2,2,0,0,12,7,12,6,0,1,0,0,0,0,0,0,0,0,12,6,0,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,12,918,450,468,396,390,52,67,2,4,0,2,0,0,0,5,396,395,52,68,2,7,0,2,0,1,444,463,391,386,51,66,2,4,0,2,0,0,0,5,391,391,51,67,2,7,0,2,0,1,6,5,5,4,1,1,0,0,0,0,0,0,0,0,5,4,1,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,13,926,440,486,380,419,54,53,1,5,0,0,0,0,5,9,384,428,55,55,5,11,1,1,0,1,434,481,376,414,52,53,1,5,0,0,0,0,5,9,380,423,53,55,5,11,1,1,0,1,6,5,4,5,2,0,0,0,0,0,0,0,0,0,4,5,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,14,765,367,398,312,336,46,56,2,3,1,1,0,0,6,2,317,338,49,57,6,4,1,1,0,0,364,397,309,336,46,55,2,3,1,1,0,0,6,2,314,338,49,56,6,4,1,1,0,0,3,1,3,0,0,1,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,15,601,269,332,235,292,29,36,2,1,0,0,0,0,3,3,237,295,30,36,5,4,0,0,0,0,266,331,232,291,29,36,2,1,0,0,0,0,3,3,234,294,30,36,5,4,0,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,16,483,219,264,205,234,11,27,1,2,0,0,0,0,2,1,207,235,11,27,3,3,0,0,0,0,218,263,204,233,11,27,1,2,0,0,0,0,2,1,206,234,11,27,3,3,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,17,327,144,183,127,172,17,10,0,0,0,0,0,0,0,1,127,173,17,10,0,1,0,0,0,0,144,182,127,171,17,10,0,0,0,0,0,0,0,1,127,172,17,10,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,5,18,280,89,191,78,176,10,14,0,0,0,0,0,0,1,1,79,177,10,14,1,0,0,1,0,0,88,190,77,175,10,14,0,0,0,0,0,0,1,1,78,176,10,14,1,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,0,13406,6534,6872,5438,5691,938,1010,33,43,12,14,0,0,113,114,5548,5799,1002,1072,79,84,22,29,3,2,6299,6704,5225,5532,920,1006,31,39,11,14,0,0,112,113,5334,5639,983,1067,77,80,21,29,3,2,235,168,213,159,18,4,2,4,1,0,0,0,1,1,214,160,19,5,2,4,1,0,0,0 -050,01,027,Alabama,Clay County,6,1,715,356,359,274,264,57,67,1,5,2,1,0,0,22,22,296,286,74,86,4,8,2,1,2,0,329,336,247,244,57,67,1,2,2,1,0,0,22,22,269,266,74,86,4,5,2,1,2,0,27,23,27,20,0,0,0,3,0,0,0,0,0,0,27,20,0,0,0,3,0,0,0,0 -050,01,027,Alabama,Clay County,6,2,741,378,363,302,287,58,58,3,1,1,0,0,0,14,17,316,304,70,71,5,4,1,1,0,0,353,348,281,272,56,58,1,1,1,0,0,0,14,17,295,289,68,71,3,4,1,1,0,0,25,15,21,15,2,0,2,0,0,0,0,0,0,0,21,15,2,0,2,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,3,871,459,412,367,332,75,63,1,2,1,0,0,0,15,15,382,347,84,72,4,5,3,3,1,0,439,397,348,318,74,63,1,1,1,0,0,0,15,15,363,333,83,72,4,4,3,3,1,0,20,15,19,14,1,0,0,1,0,0,0,0,0,0,19,14,1,0,0,1,0,0,0,0 -050,01,027,Alabama,Clay County,6,4,867,456,411,353,331,83,66,4,1,2,0,0,0,14,13,367,342,94,76,7,4,2,2,0,0,439,396,338,316,81,66,4,1,2,0,0,0,14,13,352,327,92,76,7,4,2,2,0,0,17,15,15,15,2,0,0,0,0,0,0,0,0,0,15,15,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,5,774,382,392,305,318,66,67,4,2,0,0,0,0,7,5,310,322,71,71,8,3,3,1,0,0,367,383,291,310,65,67,4,2,0,0,0,0,7,4,296,313,70,70,8,3,3,1,0,0,15,9,14,8,1,0,0,0,0,0,0,0,0,1,14,9,1,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,6,699,336,363,267,305,60,51,2,1,0,2,0,0,7,4,274,309,63,52,5,2,1,3,0,1,318,347,253,290,57,50,2,1,0,2,0,0,6,4,259,294,59,51,5,2,1,3,0,1,18,16,14,15,3,1,0,0,0,0,0,0,1,0,15,15,4,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,7,748,365,383,295,308,61,61,3,5,3,3,0,0,3,6,298,313,62,61,5,9,3,5,0,1,341,365,272,290,60,61,3,5,3,3,0,0,3,6,275,295,61,61,5,9,3,5,0,1,24,18,23,18,1,0,0,0,0,0,0,0,0,0,23,18,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,8,750,360,390,299,327,56,57,0,2,2,2,0,0,3,2,302,329,57,58,1,3,3,2,0,0,342,374,284,311,54,57,0,2,1,2,0,0,3,2,287,313,55,58,1,3,2,2,0,0,18,16,15,16,2,0,0,0,1,0,0,0,0,0,15,16,2,0,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,6,9,877,433,444,378,350,51,87,2,4,0,0,0,0,2,3,380,353,52,87,4,6,0,1,0,0,418,434,365,340,49,87,2,4,0,0,0,0,2,3,367,343,50,87,4,6,0,1,0,0,15,10,13,10,2,0,0,0,0,0,0,0,0,0,13,10,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,10,979,478,501,389,410,84,87,2,2,0,0,0,0,3,2,392,412,84,87,5,3,0,1,0,0,459,495,370,404,84,87,2,2,0,0,0,0,3,2,373,406,84,87,5,3,0,1,0,0,19,6,19,6,0,0,0,0,0,0,0,0,0,0,19,6,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,11,1024,511,513,444,435,61,71,2,2,0,2,0,0,4,3,448,438,63,71,5,5,0,2,0,0,498,504,432,426,60,71,2,2,0,2,0,0,4,3,436,429,62,71,5,5,0,2,0,0,13,9,12,9,1,0,0,0,0,0,0,0,0,0,12,9,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,12,964,474,490,415,403,54,78,3,3,1,2,0,0,1,4,416,407,54,79,4,6,1,2,0,0,466,485,407,400,54,76,3,3,1,2,0,0,1,4,408,404,54,77,4,6,1,2,0,0,8,5,8,3,0,2,0,0,0,0,0,0,0,0,8,3,0,2,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,13,893,431,462,368,398,59,47,1,7,0,1,0,0,3,9,371,407,60,49,3,14,1,1,0,0,425,456,364,392,57,47,1,7,0,1,0,0,3,9,367,401,58,49,3,14,1,1,0,0,6,6,4,6,2,0,0,0,0,0,0,0,0,0,4,6,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,14,769,374,395,324,333,40,56,2,2,0,1,0,0,8,3,332,336,40,56,10,5,0,1,0,0,371,393,322,332,39,55,2,2,0,1,0,0,8,3,330,335,39,55,10,5,0,1,0,0,3,2,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,15,628,273,355,235,310,33,40,1,2,0,0,0,0,4,3,238,313,34,40,4,3,2,2,0,0,270,355,232,310,33,40,1,2,0,0,0,0,4,3,235,313,34,40,4,3,2,2,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,16,489,225,264,207,234,14,27,2,2,0,0,0,0,2,1,209,234,14,28,4,3,0,0,0,0,222,264,204,234,14,27,2,2,0,0,0,0,2,1,206,234,14,28,4,3,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,17,320,137,183,125,171,12,11,0,0,0,0,0,0,0,1,125,171,12,12,0,0,0,1,0,0,137,181,125,169,12,11,0,0,0,0,0,0,0,1,125,169,12,12,0,0,0,1,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,6,18,298,106,192,91,175,14,16,0,0,0,0,0,0,1,1,92,176,14,16,1,1,0,0,0,0,105,191,90,174,14,16,0,0,0,0,0,0,1,1,91,175,14,16,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,0,13443,6598,6845,5498,5651,930,1014,32,44,15,18,0,0,123,118,5612,5763,998,1091,73,78,33,30,6,4,6356,6674,5276,5494,914,1007,30,40,14,16,0,0,122,117,5389,5605,981,1083,71,74,32,28,6,4,242,171,222,157,16,7,2,4,1,2,0,0,1,1,223,158,17,8,2,4,1,2,0,0 -050,01,027,Alabama,Clay County,7,1,727,365,362,274,265,59,67,2,5,4,3,0,0,26,22,298,287,81,87,6,7,6,3,0,0,345,338,254,247,59,66,2,2,4,1,0,0,26,22,278,269,81,86,6,4,6,1,0,0,20,24,20,18,0,1,0,3,0,2,0,0,0,0,20,18,0,1,0,3,0,2,0,0 -050,01,027,Alabama,Clay County,7,2,769,404,365,327,285,58,61,3,1,1,0,0,0,15,18,342,303,70,76,5,2,2,2,0,1,378,352,305,273,56,60,1,1,1,0,0,0,15,18,320,291,68,75,3,2,2,2,0,1,26,13,22,12,2,1,2,0,0,0,0,0,0,0,22,12,2,1,2,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,3,824,438,386,348,308,68,60,1,2,1,0,0,0,20,16,367,324,82,73,5,4,4,1,1,0,416,375,327,298,67,60,1,1,1,0,0,0,20,16,346,314,81,73,5,3,4,1,1,0,22,11,21,10,1,0,0,1,0,0,0,0,0,0,21,10,1,0,0,1,0,0,0,0 -050,01,027,Alabama,Clay County,7,4,880,469,411,369,329,83,68,4,1,1,0,0,0,12,13,381,341,88,79,8,3,3,1,1,0,452,396,353,314,82,68,4,1,1,0,0,0,12,13,365,326,87,79,8,3,3,1,1,0,17,15,16,15,1,0,0,0,0,0,0,0,0,0,16,15,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,5,763,387,376,306,306,72,65,3,2,0,0,0,0,6,3,311,309,75,67,5,2,2,1,0,0,371,364,292,295,70,64,3,2,0,0,0,0,6,3,297,298,73,66,5,2,2,1,0,0,16,12,14,11,2,1,0,0,0,0,0,0,0,0,14,11,2,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,6,703,324,379,264,321,52,50,0,0,0,2,0,0,8,6,271,327,56,52,3,4,2,2,0,0,308,364,250,308,51,49,0,0,0,2,0,0,7,5,256,313,54,50,3,4,2,2,0,0,16,15,14,13,1,1,0,0,0,0,0,0,1,1,15,14,2,2,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,7,734,361,373,293,304,60,54,2,6,3,3,0,0,3,6,296,309,60,56,4,10,4,3,0,1,339,356,271,287,60,54,2,6,3,3,0,0,3,6,274,292,60,56,4,10,4,3,0,1,22,17,22,17,0,0,0,0,0,0,0,0,0,0,22,17,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,8,732,358,374,297,315,54,53,2,2,1,3,0,0,4,1,301,316,56,54,3,2,1,3,1,0,340,357,283,298,51,53,2,2,0,3,0,0,4,1,287,299,53,54,3,2,0,3,1,0,18,17,14,17,3,0,0,0,1,0,0,0,0,0,14,17,3,0,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,7,9,886,442,444,381,357,55,79,2,4,2,1,0,0,2,3,383,360,55,79,2,6,3,2,1,0,416,433,357,346,53,79,2,4,2,1,0,0,2,3,359,349,53,79,2,6,3,2,1,0,26,11,24,11,2,0,0,0,0,0,0,0,0,0,24,11,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,10,940,469,471,391,385,72,80,2,3,1,0,0,0,3,3,393,388,74,81,3,5,2,0,0,0,449,462,371,376,72,80,2,3,1,0,0,0,3,3,373,379,74,81,3,5,2,0,0,0,20,9,20,9,0,0,0,0,0,0,0,0,0,0,20,9,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,11,1051,530,521,457,432,67,82,2,1,0,2,0,0,4,4,461,436,68,83,3,3,1,3,1,0,520,512,448,423,66,82,2,1,0,2,0,0,4,4,452,427,67,83,3,3,1,3,1,0,10,9,9,9,1,0,0,0,0,0,0,0,0,0,9,9,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,12,971,472,499,411,407,55,84,3,4,1,1,0,0,2,3,413,409,55,86,5,6,1,1,0,0,462,494,401,404,55,82,3,4,1,1,0,0,2,3,403,406,55,84,5,6,1,1,0,0,10,5,10,3,0,2,0,0,0,0,0,0,0,0,10,3,0,2,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,13,897,438,459,380,388,57,55,0,6,0,2,0,0,1,8,381,395,57,57,1,11,0,4,0,0,433,451,376,380,56,55,0,6,0,2,0,0,1,8,377,387,56,57,1,11,0,4,0,0,5,8,4,8,1,0,0,0,0,0,0,0,0,0,4,8,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,14,797,378,419,330,350,37,61,3,3,0,0,0,0,8,5,338,355,37,62,9,7,1,0,1,0,372,417,326,349,35,60,3,3,0,0,0,0,8,5,334,354,35,61,9,7,1,0,1,0,6,2,4,1,2,1,0,0,0,0,0,0,0,0,4,1,2,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,15,652,294,358,251,314,37,40,1,1,0,1,0,0,5,2,255,316,38,41,6,1,0,1,0,1,290,358,247,314,37,40,1,1,0,1,0,0,5,2,251,316,38,41,6,1,0,1,0,1,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,16,500,225,275,203,243,19,27,1,2,0,0,0,0,2,3,204,244,20,29,3,2,0,2,0,1,222,275,200,243,19,27,1,2,0,0,0,0,2,3,201,244,20,29,3,2,0,2,0,1,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,17,321,136,185,126,169,8,14,1,1,0,0,0,0,1,1,126,170,9,14,2,2,0,0,0,0,136,183,126,167,8,14,1,1,0,0,0,0,1,1,126,168,9,14,2,2,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,7,18,296,108,188,90,173,17,14,0,0,0,0,0,0,1,1,91,174,17,15,0,1,1,1,0,0,107,187,89,172,17,14,0,0,0,0,0,0,1,1,90,173,17,15,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,0,13415,6599,6816,5487,5637,942,989,29,45,17,17,0,0,124,128,5607,5760,1012,1069,78,88,27,29,2,3,6340,6640,5252,5477,924,980,27,41,14,15,0,0,123,127,5371,5599,994,1060,75,83,24,27,2,3,259,176,235,160,18,9,2,4,3,2,0,0,1,1,236,161,18,9,3,5,3,2,0,0 -050,01,027,Alabama,Clay County,8,1,726,379,347,284,266,66,58,1,5,5,2,0,0,23,16,307,282,83,73,6,7,6,2,0,0,355,329,262,253,66,58,1,2,3,0,0,0,23,16,285,269,83,73,6,4,4,0,0,0,24,18,22,13,0,0,0,3,2,2,0,0,0,0,22,13,0,0,0,3,2,2,0,0 -050,01,027,Alabama,Clay County,8,2,788,416,372,332,285,63,58,2,2,1,0,0,0,18,27,350,312,76,78,6,7,2,2,0,0,389,353,306,269,63,55,1,2,1,0,0,0,18,27,324,296,76,75,5,7,2,2,0,0,27,19,26,16,0,3,1,0,0,0,0,0,0,0,26,16,0,3,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,3,777,419,358,328,286,69,53,2,1,2,0,0,0,18,18,345,303,81,68,8,4,3,1,1,1,394,349,308,277,65,53,1,1,2,0,0,0,18,18,325,294,77,68,7,4,3,1,1,1,25,9,20,9,4,0,1,0,0,0,0,0,0,0,20,9,4,0,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,4,871,462,409,373,331,74,58,3,1,1,1,0,0,11,18,384,349,80,69,6,6,3,3,0,0,443,396,355,319,73,58,3,0,1,1,0,0,11,18,366,337,79,69,6,5,3,3,0,0,19,13,18,12,1,0,0,1,0,0,0,0,0,0,18,12,1,0,0,1,0,0,0,0 -050,01,027,Alabama,Clay County,8,5,787,385,402,294,321,78,73,3,3,1,0,0,0,9,5,302,325,84,75,6,4,1,2,1,1,364,382,275,301,76,73,3,3,1,0,0,0,9,5,283,305,82,75,6,4,1,2,1,1,21,20,19,20,2,0,0,0,0,0,0,0,0,0,19,20,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,6,725,346,379,287,324,51,50,0,0,0,1,0,0,8,4,294,328,55,52,4,2,1,1,0,0,336,370,279,318,49,48,0,0,0,1,0,0,8,3,286,321,53,50,4,1,1,1,0,0,10,9,8,6,2,2,0,0,0,0,0,0,0,1,8,7,2,2,0,1,0,0,0,0 -050,01,027,Alabama,Clay County,8,7,689,335,354,258,290,70,50,2,6,1,2,0,0,4,6,262,296,72,53,4,9,1,2,0,0,317,336,241,272,70,50,2,6,1,2,0,0,3,6,244,278,72,53,3,9,1,2,0,0,18,18,17,18,0,0,0,0,0,0,0,0,1,0,18,18,0,0,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,8,744,357,387,304,319,47,62,0,0,1,4,0,0,5,2,309,321,49,62,3,2,1,4,0,0,337,369,288,302,44,61,0,0,0,4,0,0,5,2,293,304,46,61,3,2,0,4,0,0,20,18,16,17,3,1,0,0,1,0,0,0,0,0,16,17,3,1,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,8,9,879,436,443,383,358,50,75,1,5,1,1,0,0,1,4,384,362,51,75,1,9,1,1,0,0,407,432,356,347,48,75,1,5,1,1,0,0,1,4,357,351,49,75,1,9,1,1,0,0,29,11,27,11,2,0,0,0,0,0,0,0,0,0,27,11,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,10,914,459,455,392,375,61,75,2,3,2,0,0,0,2,2,394,376,62,77,3,4,2,0,0,0,435,444,368,364,61,75,2,3,2,0,0,0,2,2,370,365,62,77,3,4,2,0,0,0,24,11,24,11,0,0,0,0,0,0,0,0,0,0,24,11,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,11,1028,517,511,433,422,78,83,1,1,0,2,0,0,5,3,438,425,79,85,6,2,1,2,0,0,504,503,421,414,77,83,1,1,0,2,0,0,5,3,426,417,78,85,6,2,1,2,0,0,13,8,12,8,1,0,0,0,0,0,0,0,0,0,12,8,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,12,993,489,504,423,417,56,79,6,4,2,1,0,0,2,3,425,420,57,80,7,6,2,2,0,0,480,499,414,414,56,77,6,4,2,1,0,0,2,3,416,417,57,78,7,6,2,2,0,0,9,5,9,3,0,2,0,0,0,0,0,0,0,0,9,3,0,2,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,13,881,431,450,378,375,52,61,0,4,0,2,0,0,1,8,379,383,52,63,1,9,0,4,0,1,425,441,373,366,51,61,0,4,0,2,0,0,1,8,374,374,51,63,1,9,0,4,0,1,6,9,5,9,1,0,0,0,0,0,0,0,0,0,5,9,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,14,831,403,428,356,363,38,55,2,5,0,0,0,0,7,5,363,367,40,57,6,8,1,1,0,0,398,424,353,359,36,55,2,5,0,0,0,0,7,5,360,363,38,57,6,8,1,1,0,0,5,4,3,4,2,0,0,0,0,0,0,0,0,0,3,4,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,15,656,295,361,245,311,44,44,1,2,0,1,0,0,5,3,249,314,45,44,6,4,0,2,0,0,290,360,240,311,44,43,1,2,0,1,0,0,5,3,244,314,45,43,6,4,0,2,0,0,5,1,5,0,0,1,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,16,512,230,282,205,252,20,26,2,2,0,0,0,0,3,2,208,253,21,27,4,4,0,0,0,0,227,282,202,252,20,26,2,2,0,0,0,0,3,2,205,253,21,27,4,4,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,17,316,129,187,119,169,8,16,1,1,0,0,0,0,1,1,120,170,8,17,1,1,1,0,0,0,129,186,119,168,8,16,1,1,0,0,0,0,1,1,120,169,8,17,1,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,8,18,298,111,187,93,173,17,13,0,0,0,0,0,0,1,1,94,174,17,14,0,0,1,0,0,0,110,185,92,171,17,13,0,0,0,0,0,0,1,1,93,172,17,14,0,0,1,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,0,13393,6561,6832,5472,5659,924,983,29,46,15,16,0,0,121,128,5587,5781,996,1054,67,100,31,24,6,1,6332,6663,5265,5510,906,970,28,42,13,14,0,0,120,127,5380,5631,977,1041,66,95,28,22,6,1,229,169,207,149,18,13,1,4,2,2,0,0,1,1,207,150,19,13,1,5,3,2,0,0 -050,01,027,Alabama,Clay County,9,1,731,382,349,295,274,64,52,1,6,3,2,0,0,19,15,314,289,79,63,4,9,4,3,1,0,364,328,278,258,64,52,1,3,2,0,0,0,19,15,297,273,79,63,4,6,3,1,1,0,18,21,17,16,0,0,0,3,1,2,0,0,0,0,17,16,0,0,0,3,1,2,0,0 -050,01,027,Alabama,Clay County,9,2,751,387,364,305,276,62,61,0,1,2,0,0,0,18,26,322,301,77,81,1,5,5,3,1,0,366,347,285,262,61,58,0,1,2,0,0,0,18,26,302,287,76,78,1,5,5,3,1,0,21,17,20,14,1,3,0,0,0,0,0,0,0,0,20,14,1,3,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,3,756,414,342,334,276,63,49,2,2,1,0,0,0,14,15,348,291,73,59,4,6,2,1,1,0,394,333,318,269,60,47,1,2,1,0,0,0,14,15,332,284,70,57,3,6,2,1,1,0,20,9,16,7,3,2,1,0,0,0,0,0,0,0,16,7,3,2,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,4,889,462,427,368,342,76,65,3,2,2,0,0,0,13,18,380,360,84,76,5,9,4,0,2,0,443,413,351,329,74,65,3,1,2,0,0,0,13,18,363,347,82,76,5,8,4,0,2,0,19,14,17,13,2,0,0,1,0,0,0,0,0,0,17,13,2,0,0,1,0,0,0,0 -050,01,027,Alabama,Clay County,9,5,779,386,393,294,318,79,64,2,3,1,0,0,0,10,8,303,325,84,69,6,7,3,0,0,0,369,380,279,305,77,64,2,3,1,0,0,0,10,8,288,312,82,69,6,7,3,0,0,0,17,13,15,13,2,0,0,0,0,0,0,0,0,0,15,13,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,6,758,364,394,297,336,60,55,1,0,0,0,0,0,6,3,302,339,64,55,3,3,1,0,0,0,353,382,287,327,59,53,1,0,0,0,0,0,6,2,292,329,63,53,3,2,1,0,0,0,11,12,10,9,1,2,0,0,0,0,0,0,0,1,10,10,1,2,0,1,0,0,0,0 -050,01,027,Alabama,Clay County,9,7,696,337,359,274,298,54,47,2,6,0,3,0,0,7,5,280,302,58,51,5,8,1,3,0,0,319,340,257,281,54,45,2,6,0,3,0,0,6,5,263,285,57,49,5,8,0,3,0,0,18,19,17,17,0,2,0,0,0,0,0,0,1,0,17,17,1,2,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,9,8,760,370,390,304,314,60,67,0,0,1,4,0,0,5,5,309,319,62,69,3,3,1,4,0,0,349,375,286,300,58,66,0,0,0,4,0,0,5,5,291,305,60,68,3,3,0,4,0,0,21,15,18,14,2,1,0,0,1,0,0,0,0,0,18,14,2,1,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,9,9,802,377,425,338,354,37,64,0,3,1,1,0,0,1,3,339,356,37,64,0,5,2,2,0,1,363,413,326,342,35,64,0,3,1,1,0,0,1,3,327,344,35,64,0,5,2,2,0,1,14,12,12,12,2,0,0,0,0,0,0,0,0,0,12,12,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,10,890,455,435,404,356,46,74,2,3,2,0,0,0,1,2,405,358,47,75,2,4,2,0,0,0,430,429,380,350,45,74,2,3,2,0,0,0,1,2,381,352,46,75,2,4,2,0,0,0,25,6,24,6,1,0,0,0,0,0,0,0,0,0,24,6,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,11,1017,504,513,409,419,88,86,3,2,0,2,0,0,4,4,413,422,90,87,4,6,1,2,0,0,489,507,395,413,87,86,3,2,0,2,0,0,4,4,399,416,89,87,4,6,1,2,0,0,15,6,14,6,1,0,0,0,0,0,0,0,0,0,14,6,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,12,989,493,496,426,413,57,77,4,3,2,1,0,0,4,2,430,415,58,78,7,4,2,1,0,0,484,489,417,408,57,75,4,3,2,1,0,0,4,2,421,410,58,76,7,4,2,1,0,0,9,7,9,5,0,2,0,0,0,0,0,0,0,0,9,5,0,2,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,13,878,419,459,372,381,44,64,3,4,0,2,0,0,0,8,372,389,44,66,3,8,0,4,0,0,413,452,367,374,43,64,3,4,0,2,0,0,0,8,367,382,43,66,3,8,0,4,0,0,6,7,5,7,1,0,0,0,0,0,0,0,0,0,5,7,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,14,893,436,457,379,394,48,51,2,5,0,0,0,0,7,7,386,401,50,52,7,11,0,0,0,0,430,451,375,388,46,51,2,5,0,0,0,0,7,7,382,395,48,52,7,11,0,0,0,0,6,6,4,6,2,0,0,0,0,0,0,0,0,0,4,6,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,15,656,301,355,257,304,36,45,1,3,0,1,0,0,7,2,264,306,37,45,7,5,1,1,0,0,297,353,253,303,36,44,1,3,0,1,0,0,7,2,260,305,37,44,7,5,1,1,0,0,4,2,4,1,0,1,0,0,0,0,0,0,0,0,4,1,0,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,16,503,222,281,196,248,22,28,2,2,0,0,0,0,2,3,197,251,23,29,4,4,1,0,0,0,218,281,192,248,22,28,2,2,0,0,0,0,2,3,193,251,23,29,4,4,1,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,17,338,137,201,124,180,10,20,1,1,0,0,0,0,2,0,126,180,11,20,2,1,0,0,0,0,137,200,124,179,10,20,1,1,0,0,0,0,2,0,126,179,11,20,2,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,9,18,307,115,192,96,176,18,14,0,0,0,0,0,0,1,2,97,177,18,15,0,2,1,0,1,0,114,190,95,174,18,14,0,0,0,0,0,0,1,2,96,175,18,15,0,2,1,0,1,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,0,13355,6546,6809,5490,5655,898,970,32,44,16,18,0,0,110,122,5593,5769,953,1040,74,88,37,36,5,1,6321,6624,5286,5490,881,959,31,40,14,14,0,0,109,121,5388,5603,935,1028,72,84,35,32,5,1,225,185,204,165,17,11,1,4,2,4,0,0,1,1,205,166,18,12,2,4,2,4,0,0 -050,01,027,Alabama,Clay County,10,1,689,368,321,283,248,66,46,1,4,3,4,0,0,15,19,297,267,77,61,3,6,6,6,1,0,354,295,270,230,66,45,1,1,2,0,0,0,15,19,284,249,77,60,3,3,5,2,1,0,14,26,13,18,0,1,0,3,1,4,0,0,0,0,13,18,0,1,0,3,1,4,0,0 -050,01,027,Alabama,Clay County,10,2,775,404,371,332,287,54,65,0,2,2,0,0,0,16,17,348,303,65,78,1,5,5,3,1,0,378,355,306,273,54,63,0,2,2,0,0,0,16,17,322,289,65,76,1,5,5,3,1,0,26,16,26,14,0,2,0,0,0,0,0,0,0,0,26,14,0,2,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,3,761,408,353,332,287,61,46,2,2,2,0,0,0,11,18,343,304,67,59,6,7,3,1,0,0,388,341,316,275,58,46,1,2,2,0,0,0,11,18,327,292,64,59,5,7,3,1,0,0,20,12,16,12,3,0,1,0,0,0,0,0,0,0,16,12,3,0,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,4,845,445,400,356,319,70,61,2,2,2,0,0,0,15,18,368,334,81,74,7,7,4,4,1,0,424,386,337,306,68,61,2,1,2,0,0,0,15,18,349,321,79,74,7,6,4,4,1,0,21,14,19,13,2,0,0,1,0,0,0,0,0,0,19,13,2,0,0,1,0,0,0,0 -050,01,027,Alabama,Clay County,10,5,787,391,396,307,325,70,61,4,2,1,0,0,0,9,8,315,331,76,65,5,7,3,1,1,0,376,384,293,313,69,61,4,2,1,0,0,0,9,8,301,319,75,65,5,7,3,1,1,0,15,12,14,12,1,0,0,0,0,0,0,0,0,0,14,12,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,6,734,334,400,274,337,54,58,2,1,0,0,0,0,4,4,278,341,55,61,4,3,1,0,0,0,324,384,265,323,53,57,2,1,0,0,0,0,4,3,269,326,54,59,4,3,1,0,0,0,10,16,9,14,1,1,0,0,0,0,0,0,0,1,9,15,1,2,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,7,711,352,359,291,298,54,50,1,4,0,3,0,0,6,4,297,302,56,51,6,5,1,5,0,0,336,345,276,286,54,48,1,4,0,3,0,0,5,4,281,290,55,49,5,5,1,5,0,0,16,14,15,12,0,2,0,0,0,0,0,0,1,0,16,12,1,2,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,8,750,379,371,316,308,58,55,0,1,0,2,0,0,5,5,320,313,60,57,1,4,3,2,0,0,360,361,299,298,56,55,0,1,0,2,0,0,5,5,303,303,58,57,1,4,3,2,0,0,19,10,17,10,2,0,0,0,0,0,0,0,0,0,17,10,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,9,770,358,412,310,344,44,60,0,3,2,3,0,0,2,2,312,346,45,60,2,5,2,3,0,0,343,394,297,327,43,59,0,3,1,3,0,0,2,2,299,329,44,59,2,5,1,3,0,0,15,18,13,17,1,1,0,0,1,0,0,0,0,0,13,17,1,1,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,10,10,888,449,439,400,358,43,75,2,3,2,0,0,0,2,3,402,360,44,77,3,3,2,2,0,0,428,428,381,348,41,74,2,3,2,0,0,0,2,3,383,350,42,76,3,3,2,2,0,0,21,11,19,10,2,1,0,0,0,0,0,0,0,0,19,10,2,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,11,1004,496,508,404,426,83,76,5,1,0,1,0,0,4,4,408,430,84,78,8,3,0,1,0,0,477,498,386,416,82,76,5,1,0,1,0,0,4,4,390,420,83,78,8,3,0,1,0,0,19,10,18,10,1,0,0,0,0,0,0,0,0,0,18,10,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,12,993,504,489,436,399,59,83,3,4,2,2,0,0,4,1,440,400,59,84,6,4,3,2,0,0,497,484,429,395,59,82,3,4,2,2,0,0,4,1,433,396,59,83,6,4,3,2,0,0,7,5,7,4,0,1,0,0,0,0,0,0,0,0,7,4,0,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,13,913,436,477,387,395,45,72,4,4,0,2,0,0,0,4,387,399,45,72,4,6,0,3,0,1,430,470,382,389,44,71,4,4,0,2,0,0,0,4,382,393,44,71,4,6,0,3,0,1,6,7,5,6,1,1,0,0,0,0,0,0,0,0,5,6,1,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,14,854,406,448,353,393,48,41,1,5,0,0,0,0,4,9,357,402,49,41,5,12,0,2,0,0,400,440,349,385,46,41,1,5,0,0,0,0,4,9,353,394,47,41,5,12,0,2,0,0,6,8,4,8,2,0,0,0,0,0,0,0,0,0,4,8,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,15,690,326,364,277,303,40,55,2,3,0,1,0,0,7,2,283,305,41,55,7,5,2,1,0,0,321,361,273,301,39,54,2,3,0,1,0,0,7,2,279,303,40,54,7,5,2,1,0,0,5,3,4,2,1,1,0,0,0,0,0,0,0,0,4,2,1,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,16,500,219,281,190,247,24,30,2,1,0,0,0,0,3,3,193,250,24,31,4,3,0,0,1,0,215,281,186,247,24,30,2,1,0,0,0,0,3,3,189,250,24,31,4,3,0,0,1,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,17,391,157,234,146,209,8,22,1,2,0,0,0,0,2,1,148,210,8,22,2,3,1,0,0,0,157,233,146,208,8,22,1,2,0,0,0,0,2,1,148,209,8,22,2,3,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,10,18,300,114,186,96,172,17,14,0,0,0,0,0,0,1,0,97,172,17,14,0,0,1,0,0,0,113,184,95,170,17,14,0,0,0,0,0,0,1,0,96,170,17,14,0,0,1,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,0,13301,6491,6810,5440,5648,884,977,29,42,16,16,0,0,122,127,5555,5766,954,1056,73,78,24,34,7,3,6278,6628,5250,5490,866,962,27,38,14,13,0,0,121,125,5364,5606,935,1041,71,74,22,30,7,2,213,182,190,158,18,15,2,4,2,3,0,0,1,2,191,160,19,15,2,4,2,4,0,1 -050,01,027,Alabama,Clay County,11,1,713,363,350,281,274,65,48,0,1,3,3,0,0,14,24,295,298,76,68,1,4,5,3,0,1,355,325,274,255,65,46,0,1,2,0,0,0,14,23,288,278,76,66,1,4,4,0,0,0,8,25,7,19,0,2,0,0,1,3,0,0,0,1,7,20,0,2,0,0,1,3,0,1 -050,01,027,Alabama,Clay County,11,2,739,380,359,298,273,58,60,0,5,2,0,0,0,22,21,320,293,76,76,1,10,4,1,1,0,359,336,278,256,57,57,0,2,2,0,0,0,22,21,300,276,75,73,1,7,4,1,1,0,21,23,20,17,1,3,0,3,0,0,0,0,0,0,20,17,1,3,0,3,0,0,0,0 -050,01,027,Alabama,Clay County,11,3,769,404,365,328,287,57,59,3,1,2,0,0,0,14,18,342,303,68,74,5,2,3,4,0,0,383,353,311,276,55,58,1,1,2,0,0,0,14,18,325,292,66,73,3,2,3,4,0,0,21,12,17,11,2,1,2,0,0,0,0,0,0,0,17,11,2,1,2,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,4,795,425,370,336,301,73,56,1,2,1,0,0,0,14,11,349,312,83,64,5,4,1,1,1,0,406,359,319,291,71,56,1,1,1,0,0,0,14,11,332,302,81,64,5,3,1,1,1,0,19,11,17,10,2,0,0,1,0,0,0,0,0,0,17,10,2,0,0,1,0,0,0,0 -050,01,027,Alabama,Clay County,11,5,779,403,376,320,303,70,64,1,1,2,0,0,0,10,8,330,310,76,69,4,2,3,2,0,1,388,366,307,293,68,64,1,1,2,0,0,0,10,8,317,300,74,69,4,2,3,2,0,1,15,10,13,10,2,0,0,0,0,0,0,0,0,0,13,10,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,6,759,359,400,298,327,53,64,3,2,0,0,0,0,5,7,301,333,55,67,6,4,0,3,2,0,349,386,288,315,53,63,3,2,0,0,0,0,5,6,291,320,55,66,6,4,0,2,2,0,10,14,10,12,0,1,0,0,0,0,0,0,0,1,10,13,0,1,0,0,0,1,0,0 -050,01,027,Alabama,Clay County,11,7,682,320,362,261,309,52,45,0,1,0,3,0,0,7,4,267,313,55,45,4,4,0,4,1,0,306,355,249,304,51,43,0,1,0,3,0,0,6,4,254,308,53,43,4,4,0,4,1,0,14,7,12,5,1,2,0,0,0,0,0,0,1,0,13,5,2,2,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,8,769,379,390,317,319,57,60,1,3,0,2,0,0,4,6,320,325,60,63,2,6,1,2,0,0,359,373,298,303,56,59,1,3,0,2,0,0,4,6,301,309,59,62,2,6,1,2,0,0,20,17,19,16,1,1,0,0,0,0,0,0,0,0,19,16,1,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,9,729,347,382,294,329,47,47,0,2,2,2,0,0,4,2,298,331,47,47,4,3,2,3,0,0,331,367,281,315,45,46,0,2,1,2,0,0,4,2,285,317,45,46,4,3,1,3,0,0,16,15,13,14,2,1,0,0,1,0,0,0,0,0,13,14,2,1,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,11,10,865,432,433,386,354,40,73,2,3,2,1,0,0,2,2,388,356,41,75,3,3,2,1,0,0,416,420,372,342,38,72,2,3,2,1,0,0,2,2,374,344,39,74,3,3,2,1,0,0,16,13,14,12,2,1,0,0,0,0,0,0,0,0,14,12,2,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,11,969,482,487,401,401,73,81,5,2,0,0,0,0,3,3,403,403,76,81,5,4,1,2,0,0,460,482,379,396,73,81,5,2,0,0,0,0,3,3,381,398,76,81,5,4,1,2,0,0,22,5,22,5,0,0,0,0,0,0,0,0,0,0,22,5,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,12,1009,497,512,434,424,56,80,2,3,1,2,0,0,4,3,438,427,57,82,5,4,1,2,0,0,488,505,426,417,55,80,2,3,1,2,0,0,4,3,430,420,56,82,5,4,1,2,0,0,9,7,8,7,1,0,0,0,0,0,0,0,0,0,8,7,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,13,944,453,491,403,409,43,74,5,3,1,2,0,0,1,3,404,412,43,74,6,3,1,5,0,0,447,484,397,404,43,72,5,3,1,2,0,0,1,3,398,407,43,72,6,3,1,5,0,0,6,7,6,5,0,2,0,0,0,0,0,0,0,0,6,5,0,2,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,14,855,416,439,358,377,53,46,1,7,0,1,0,0,4,8,362,384,53,48,5,13,0,1,0,1,411,430,355,368,51,46,1,7,0,1,0,0,4,8,359,375,51,48,5,13,0,1,0,1,5,9,3,9,2,0,0,0,0,0,0,0,0,0,3,9,2,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,15,683,323,360,280,305,34,50,2,2,0,0,0,0,7,3,287,308,34,50,8,5,0,0,1,0,318,357,277,303,32,49,2,2,0,0,0,0,7,3,284,306,32,49,8,5,0,0,1,0,5,3,3,2,2,1,0,0,0,0,0,0,0,0,3,2,2,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,16,543,237,306,203,268,29,33,1,2,0,0,0,0,4,3,206,270,30,35,4,4,0,0,1,0,234,305,200,267,29,33,1,2,0,0,0,0,4,3,203,269,30,35,4,4,0,0,1,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,17,387,155,232,141,207,10,22,2,2,0,0,0,0,2,1,143,207,10,23,4,3,0,0,0,0,153,232,139,207,10,22,2,2,0,0,0,0,2,1,141,207,10,23,4,3,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,11,18,312,116,196,101,181,14,15,0,0,0,0,0,0,1,0,102,181,14,15,1,0,0,0,0,0,115,193,100,178,14,15,0,0,0,0,0,0,1,0,101,178,14,15,1,0,0,0,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,0,13265,6470,6795,5425,5624,866,966,29,43,19,19,0,0,131,143,5543,5760,947,1050,73,95,33,34,6,0,6241,6595,5222,5454,845,948,27,37,17,15,0,0,130,141,5339,5588,925,1030,71,89,31,30,6,0,229,200,203,170,21,18,2,6,2,4,0,0,1,2,204,172,22,20,2,6,2,4,0,0 -050,01,027,Alabama,Clay County,12,1,721,378,343,291,271,64,47,0,0,1,1,0,0,22,24,311,295,83,68,2,2,3,2,1,0,363,319,277,252,64,44,0,0,0,0,0,0,22,23,297,275,83,64,2,2,2,1,1,0,15,24,14,19,0,3,0,0,1,1,0,0,0,1,14,20,0,4,0,0,1,1,0,0 -050,01,027,Alabama,Clay County,12,2,744,382,362,303,273,58,58,0,5,4,2,0,0,17,24,320,295,71,76,2,12,5,4,1,0,366,337,288,255,57,56,0,2,4,0,0,0,17,24,305,277,70,74,2,9,5,2,1,0,16,25,15,18,1,2,0,3,0,2,0,0,0,0,15,18,1,2,0,3,0,2,0,0 -050,01,027,Alabama,Clay County,12,3,784,414,370,343,289,54,56,2,1,1,0,0,0,14,24,355,313,65,71,5,7,3,3,0,0,388,354,320,277,52,52,1,1,1,0,0,0,14,24,332,301,63,67,4,7,3,3,0,0,26,16,23,12,2,4,1,0,0,0,0,0,0,0,23,12,2,4,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,4,734,401,333,313,270,63,50,2,2,2,0,0,0,21,11,333,281,77,57,9,4,3,2,0,0,378,323,293,261,61,50,1,1,2,0,0,0,21,11,313,272,75,57,8,3,3,2,0,0,23,10,20,9,2,0,1,1,0,0,0,0,0,0,20,9,2,0,1,1,0,0,0,0 -050,01,027,Alabama,Clay County,12,5,765,388,377,311,300,67,65,1,1,1,0,0,0,8,11,319,311,73,72,3,5,1,0,0,0,370,366,294,289,66,65,1,1,1,0,0,0,8,11,302,300,72,72,3,5,1,0,0,0,18,11,17,11,1,0,0,0,0,0,0,0,0,0,17,11,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,6,749,348,401,292,325,47,67,3,2,1,1,0,0,5,6,296,331,49,69,3,5,3,2,2,0,336,388,282,313,45,66,3,2,1,1,0,0,5,6,286,319,47,68,3,5,3,2,2,0,12,13,10,12,2,1,0,0,0,0,0,0,0,0,10,12,2,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,7,697,307,390,261,342,38,40,0,0,1,2,0,0,7,6,267,348,43,42,2,3,3,3,0,0,297,378,253,332,37,39,0,0,1,2,0,0,6,5,258,337,41,40,2,3,3,3,0,0,10,12,8,10,1,1,0,0,0,0,0,0,1,1,9,11,2,2,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,8,772,387,385,317,318,65,55,1,4,1,2,0,0,3,6,319,323,66,59,4,6,1,3,0,0,365,368,297,302,63,54,1,4,1,2,0,0,3,6,299,307,64,58,4,6,1,3,0,0,22,17,20,16,2,1,0,0,0,0,0,0,0,0,20,16,2,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,9,723,349,374,291,316,51,52,0,2,1,3,0,0,6,1,296,316,55,53,3,2,1,4,0,0,331,355,277,298,48,51,0,2,0,3,0,0,6,1,282,298,52,52,3,2,0,4,0,0,18,19,14,18,3,1,0,0,1,0,0,0,0,0,14,18,3,1,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,12,10,869,425,444,378,367,41,69,2,4,2,1,0,0,2,3,379,369,42,72,4,5,2,1,0,0,409,429,364,355,39,68,2,2,2,1,0,0,2,3,365,357,40,71,4,3,2,1,0,0,16,15,14,12,2,1,0,2,0,0,0,0,0,0,14,12,2,1,0,2,0,0,0,0 -050,01,027,Alabama,Clay County,12,11,942,475,467,402,379,67,81,3,3,1,2,0,0,2,2,404,381,67,82,5,4,1,2,0,0,453,460,380,373,67,81,3,3,1,1,0,0,2,2,382,375,67,82,5,4,1,1,0,0,22,7,22,6,0,0,0,0,0,1,0,0,0,0,22,6,0,0,0,0,0,1,0,0 -050,01,027,Alabama,Clay County,12,12,1023,506,517,437,422,60,87,4,2,1,2,0,0,4,4,441,425,61,88,5,4,3,4,0,0,499,510,431,415,59,87,4,2,1,2,0,0,4,4,435,418,60,88,5,4,3,4,0,0,7,7,6,7,1,0,0,0,0,0,0,0,0,0,6,7,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,13,933,456,477,397,401,51,67,5,4,1,1,0,0,2,4,399,405,52,67,6,7,1,2,0,0,448,471,389,397,51,65,5,4,1,1,0,0,2,4,391,401,52,65,6,7,1,2,0,0,8,6,8,4,0,2,0,0,0,0,0,0,0,0,8,4,0,2,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,14,837,402,435,350,371,49,48,0,6,1,2,0,0,2,8,352,379,49,48,2,14,1,2,0,0,400,425,349,362,48,47,0,6,1,2,0,0,2,8,351,370,48,47,2,14,1,2,0,0,2,10,1,9,1,1,0,0,0,0,0,0,0,0,1,9,1,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,15,682,320,362,279,302,31,52,3,3,0,0,0,0,7,5,284,307,32,53,8,7,2,0,1,0,314,359,276,300,28,51,3,3,0,0,0,0,7,5,281,305,29,52,8,7,2,0,1,0,6,3,3,2,3,1,0,0,0,0,0,0,0,0,3,2,3,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,16,569,252,317,213,283,33,31,1,1,0,0,0,0,5,2,217,284,34,32,5,3,0,0,1,0,248,315,209,281,33,31,1,1,0,0,0,0,5,2,213,282,34,32,5,3,0,0,1,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,17,412,169,243,151,212,15,27,1,2,0,0,0,0,2,2,153,214,16,27,2,4,0,0,0,0,166,243,148,212,15,27,1,2,0,0,0,0,2,2,150,214,16,27,2,4,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,12,18,309,111,198,96,183,12,14,1,1,0,0,0,0,2,0,98,183,12,14,3,1,0,0,0,0,110,195,95,180,12,14,1,1,0,0,0,0,2,0,97,180,12,14,3,1,0,0,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,0,13112,6387,6725,5346,5573,861,954,30,43,20,19,0,0,130,136,5466,5703,942,1043,73,79,33,32,5,6,6173,6528,5158,5407,840,936,28,37,18,15,0,0,129,133,5277,5534,921,1022,70,72,31,28,5,6,214,197,188,166,21,18,2,6,2,4,0,0,1,3,189,169,21,21,3,7,2,4,0,0 -050,01,027,Alabama,Clay County,13,1,721,370,351,284,274,64,54,0,0,0,1,0,0,22,22,306,296,84,72,2,3,1,2,0,0,356,332,270,260,64,51,0,0,0,0,0,0,22,21,292,281,84,68,2,3,1,1,0,0,14,19,14,14,0,3,0,0,0,1,0,0,0,1,14,15,0,4,0,0,0,1,0,0 -050,01,027,Alabama,Clay County,13,2,724,367,357,290,282,55,49,0,4,4,2,0,0,18,20,307,302,66,67,5,5,6,3,1,0,353,335,277,266,55,48,0,1,3,0,0,0,18,20,294,286,66,66,5,2,5,1,1,0,14,22,13,16,0,1,0,3,1,2,0,0,0,0,13,16,0,1,0,3,1,2,0,0 -050,01,027,Alabama,Clay County,13,3,784,420,364,344,274,58,64,1,2,1,0,0,0,16,24,359,298,72,82,2,5,3,3,0,0,399,344,324,259,57,59,1,2,1,0,0,0,16,24,339,283,71,77,2,5,3,3,0,0,21,20,20,15,1,5,0,0,0,0,0,0,0,0,20,15,1,5,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,4,695,379,316,302,256,56,46,3,1,3,0,0,0,15,13,315,267,67,53,7,4,4,3,1,3,354,307,283,247,52,46,1,1,3,0,0,0,15,13,296,258,63,53,5,4,4,3,1,3,25,9,19,9,4,0,2,0,0,0,0,0,0,0,19,9,4,0,2,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,5,758,383,375,312,312,65,52,1,1,1,0,0,0,4,10,316,322,68,57,2,2,1,2,0,2,370,363,300,301,64,52,1,0,1,0,0,0,4,10,304,311,67,57,2,1,1,2,0,2,13,12,12,11,1,0,0,1,0,0,0,0,0,0,12,11,1,0,0,1,0,0,0,0 -050,01,027,Alabama,Clay County,13,6,753,360,393,291,307,54,74,3,3,2,1,0,0,10,8,300,315,60,78,7,6,4,2,0,0,348,380,281,295,52,74,3,3,2,1,0,0,10,7,290,302,58,77,7,6,4,2,0,0,12,13,10,12,2,0,0,0,0,0,0,0,0,1,10,13,2,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,7,719,322,397,269,350,45,42,1,0,1,1,0,0,6,4,274,354,48,46,4,1,2,1,0,0,312,383,260,339,44,40,1,0,1,1,0,0,6,3,265,342,47,43,4,0,2,1,0,0,10,14,9,11,1,2,0,0,0,0,0,0,0,1,9,12,1,3,0,1,0,0,0,0 -050,01,027,Alabama,Clay County,13,8,733,354,379,283,307,66,59,1,4,0,2,0,0,4,7,287,314,69,62,2,7,0,3,0,0,333,365,265,294,64,58,1,4,0,2,0,0,3,7,268,301,67,61,1,7,0,3,0,0,21,14,18,13,2,1,0,0,0,0,0,0,1,0,19,13,2,1,1,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,9,720,352,368,300,311,43,51,0,0,2,4,0,0,7,2,307,313,45,52,3,1,3,4,1,0,336,350,288,294,40,50,0,0,1,4,0,0,7,2,295,296,42,51,3,1,2,4,1,0,16,18,12,17,3,1,0,0,1,0,0,0,0,0,12,17,3,1,0,0,1,0,0,0 -050,01,027,Alabama,Clay County,13,10,842,404,438,362,360,39,67,1,6,1,1,0,0,1,4,363,363,40,71,1,7,1,1,0,0,390,425,350,349,37,67,1,4,1,1,0,0,1,4,351,352,38,71,1,5,1,1,0,0,14,13,12,11,2,0,0,2,0,0,0,0,0,0,12,11,2,0,0,2,0,0,0,0 -050,01,027,Alabama,Clay County,13,11,901,452,449,385,370,59,72,4,3,2,2,0,0,2,2,387,372,59,73,5,4,3,2,0,0,430,438,363,361,59,71,4,3,2,1,0,0,2,2,365,363,59,72,5,4,3,1,0,0,22,11,22,9,0,1,0,0,0,1,0,0,0,0,22,9,0,1,0,0,0,1,0,0 -050,01,027,Alabama,Clay County,13,12,1010,499,511,422,423,69,82,3,1,0,2,0,0,5,3,426,425,71,84,6,3,0,2,1,0,492,505,416,417,68,82,3,1,0,2,0,0,5,3,420,419,70,84,6,3,0,2,1,0,7,6,6,6,1,0,0,0,0,0,0,0,0,0,6,6,1,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,13,947,463,484,405,410,48,68,6,4,2,1,0,0,2,1,407,411,49,69,7,4,2,1,0,0,455,478,397,406,48,66,6,4,2,1,0,0,2,1,399,407,49,67,7,4,2,1,0,0,8,6,8,4,0,2,0,0,0,0,0,0,0,0,8,4,0,2,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,14,807,385,422,338,356,44,53,0,4,1,2,0,0,2,7,340,363,44,53,2,9,1,3,0,1,382,413,336,348,43,52,0,4,1,2,0,0,2,7,338,355,43,52,2,9,1,3,0,1,3,9,2,8,1,1,0,0,0,0,0,0,0,0,2,8,1,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,15,727,357,370,316,316,33,44,2,5,0,0,0,0,6,5,321,320,34,46,6,9,1,0,1,0,352,366,314,312,30,44,2,5,0,0,0,0,6,5,319,316,31,46,6,9,1,0,1,0,5,4,2,4,3,0,0,0,0,0,0,0,0,0,2,4,3,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,16,559,241,318,200,276,35,37,1,2,0,0,0,0,5,3,203,278,37,38,6,5,0,0,0,0,236,314,195,273,35,36,1,2,0,0,0,0,5,3,198,275,37,37,6,5,0,0,0,0,5,4,5,3,0,1,0,0,0,0,0,0,0,0,5,3,0,1,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,17,406,167,239,146,209,16,27,2,2,0,0,0,0,3,1,149,210,16,27,4,3,1,0,0,0,164,239,143,209,16,27,2,2,0,0,0,0,3,1,146,210,16,27,4,3,1,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,027,Alabama,Clay County,13,18,306,112,194,97,180,12,13,1,1,0,0,0,0,2,0,99,180,13,13,2,1,0,0,0,0,111,191,96,177,12,13,1,1,0,0,0,0,2,0,98,177,13,13,2,1,0,0,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,0,14972,7453,7519,7101,7141,238,261,26,26,6,17,10,1,72,73,7170,7212,265,295,60,59,21,27,11,2,7256,7409,6920,7040,236,258,24,26,6,17,1,0,69,68,6986,7106,263,292,57,55,19,26,2,1,197,110,181,101,2,3,2,0,0,0,9,1,3,5,184,106,2,3,3,4,2,1,9,1 -050,01,029,Alabama,Cleburne County,1,1,938,469,469,438,439,16,16,0,2,1,1,0,0,14,11,452,450,26,27,2,2,3,1,0,0,442,453,413,424,15,15,0,2,1,1,0,0,13,11,426,435,25,26,1,2,3,1,0,0,27,16,25,15,1,1,0,0,0,0,0,0,1,0,26,15,1,1,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,2,942,522,420,474,385,24,15,2,4,2,0,1,0,19,16,492,401,35,28,5,7,8,0,1,0,508,405,462,372,24,14,1,4,2,0,1,0,18,15,479,387,35,27,4,6,7,0,1,0,14,15,12,13,0,1,1,0,0,0,0,0,1,1,13,14,0,1,1,1,1,0,0,0 -050,01,029,Alabama,Cleburne County,1,3,997,522,475,504,446,7,17,2,1,3,0,0,0,6,11,510,457,11,24,4,4,3,1,0,0,508,463,490,436,7,17,2,1,3,0,0,0,6,9,496,445,11,24,4,2,3,1,0,0,14,12,14,10,0,0,0,0,0,0,0,0,0,2,14,12,0,0,0,2,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,4,1080,540,540,515,518,22,15,1,0,0,0,0,1,2,6,517,524,22,16,3,5,0,0,0,1,520,529,495,509,22,15,1,0,0,0,0,0,2,5,497,514,22,16,3,4,0,0,0,0,20,11,20,9,0,0,0,0,0,0,0,1,0,1,20,10,0,0,0,1,0,0,0,1 -050,01,029,Alabama,Cleburne County,1,5,769,406,363,384,342,13,20,1,0,0,0,5,0,3,1,387,343,14,20,3,0,0,1,5,0,387,355,370,334,13,20,1,0,0,0,0,0,3,1,373,335,14,20,3,0,0,1,0,0,19,8,14,8,0,0,0,0,0,0,5,0,0,0,14,8,0,0,0,0,0,0,5,0 -050,01,029,Alabama,Cleburne County,1,6,859,421,438,405,410,11,22,3,4,0,1,1,0,1,1,406,411,11,22,4,5,0,1,1,0,401,432,386,405,11,21,3,4,0,1,0,0,1,1,387,406,11,21,4,5,0,1,0,0,20,6,19,5,0,1,0,0,0,0,1,0,0,0,19,5,0,1,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,1,7,764,379,385,361,376,14,6,2,2,0,1,0,0,2,0,363,376,14,6,4,2,0,1,0,0,364,379,346,370,14,6,2,2,0,1,0,0,2,0,348,370,14,6,4,2,0,1,0,0,15,6,15,6,0,0,0,0,0,0,0,0,0,0,15,6,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,8,1014,514,500,496,477,13,15,0,3,0,0,3,0,2,5,497,482,14,15,0,5,2,3,3,0,490,490,476,467,12,15,0,3,0,0,0,0,2,5,477,472,13,15,0,5,2,3,0,0,24,10,20,10,1,0,0,0,0,0,3,0,0,0,20,10,1,0,0,0,0,0,3,0 -050,01,029,Alabama,Cleburne County,1,9,1048,511,537,493,511,13,17,1,1,0,2,0,0,4,6,497,517,13,18,4,6,1,2,0,0,501,531,484,505,13,17,0,1,0,2,0,0,4,6,488,511,13,18,3,6,1,2,0,0,10,6,9,6,0,0,1,0,0,0,0,0,0,0,9,6,0,0,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,10,1109,573,536,537,507,27,24,4,1,0,0,0,0,5,4,542,511,27,24,9,4,0,1,0,0,563,529,527,501,27,24,4,1,0,0,0,0,5,3,532,504,27,24,9,4,0,0,0,0,10,7,10,6,0,0,0,0,0,0,0,0,0,1,10,7,0,0,0,0,0,1,0,0 -050,01,029,Alabama,Cleburne County,1,11,1040,509,531,484,508,19,16,1,2,0,2,0,0,5,3,489,510,19,16,6,5,0,3,0,0,500,529,475,506,19,16,1,2,0,2,0,0,5,3,480,508,19,16,6,5,0,3,0,0,9,2,9,2,0,0,0,0,0,0,0,0,0,0,9,2,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,12,1030,534,496,513,476,16,14,3,1,0,2,0,0,2,3,515,479,16,15,4,4,1,3,0,1,530,493,510,473,16,14,3,1,0,2,0,0,1,3,511,476,16,15,4,4,0,3,0,1,4,3,3,3,0,0,0,0,0,0,0,0,1,0,4,3,0,0,0,0,1,0,0,0 -050,01,029,Alabama,Cleburne County,1,13,1021,507,514,486,490,13,16,4,2,0,3,0,0,4,3,490,492,13,16,7,4,1,5,0,0,502,513,481,489,13,16,4,2,0,3,0,0,4,3,485,491,13,16,7,4,1,5,0,0,5,1,5,1,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,14,817,409,408,394,392,12,14,1,1,0,0,0,0,2,1,395,393,12,14,3,2,1,0,0,0,408,407,393,391,12,14,1,1,0,0,0,0,2,1,394,392,12,14,3,2,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,15,568,262,306,254,286,7,15,0,1,0,2,0,0,1,2,255,288,7,15,1,3,1,2,1,0,259,305,251,285,7,15,0,1,0,2,0,0,1,2,252,287,7,15,1,3,1,2,1,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,16,470,204,266,198,251,5,14,1,1,0,0,0,0,0,0,198,251,5,14,1,1,0,0,0,0,203,262,197,247,5,14,1,1,0,0,0,0,0,0,197,247,5,14,1,1,0,0,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,17,267,99,168,96,164,3,2,0,0,0,2,0,0,0,0,96,164,3,2,0,0,0,2,0,0,98,168,95,164,3,2,0,0,0,2,0,0,0,0,95,164,3,2,0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,1,18,239,72,167,69,163,3,3,0,0,0,1,0,0,0,0,69,163,3,3,0,0,0,1,0,0,72,166,69,162,3,3,0,0,0,1,0,0,0,0,69,162,3,3,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,0,14972,7453,7519,7101,7141,238,261,26,26,6,17,10,1,72,73,7170,7212,265,295,60,59,21,27,11,2,7256,7409,6920,7040,236,258,24,26,6,17,1,0,69,68,6986,7106,263,292,57,55,19,26,2,1,197,110,181,101,2,3,2,0,0,0,9,1,3,5,184,106,2,3,3,4,2,1,9,1 -050,01,029,Alabama,Cleburne County,2,1,938,469,469,438,439,16,16,0,2,1,1,0,0,14,11,452,450,26,27,2,2,3,1,0,0,442,453,413,424,15,15,0,2,1,1,0,0,13,11,426,435,25,26,1,2,3,1,0,0,27,16,25,15,1,1,0,0,0,0,0,0,1,0,26,15,1,1,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,2,942,522,420,474,385,24,15,2,4,2,0,1,0,19,16,492,401,35,28,5,7,8,0,1,0,508,405,462,372,24,14,1,4,2,0,1,0,18,15,479,387,35,27,4,6,7,0,1,0,14,15,12,13,0,1,1,0,0,0,0,0,1,1,13,14,0,1,1,1,1,0,0,0 -050,01,029,Alabama,Cleburne County,2,3,997,522,475,504,446,7,17,2,1,3,0,0,0,6,11,510,457,11,24,4,4,3,1,0,0,508,463,490,436,7,17,2,1,3,0,0,0,6,9,496,445,11,24,4,2,3,1,0,0,14,12,14,10,0,0,0,0,0,0,0,0,0,2,14,12,0,0,0,2,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,4,1080,540,540,515,518,22,15,1,0,0,0,0,1,2,6,517,524,22,16,3,5,0,0,0,1,520,529,495,509,22,15,1,0,0,0,0,0,2,5,497,514,22,16,3,4,0,0,0,0,20,11,20,9,0,0,0,0,0,0,0,1,0,1,20,10,0,0,0,1,0,0,0,1 -050,01,029,Alabama,Cleburne County,2,5,769,406,363,384,342,13,20,1,0,0,0,5,0,3,1,387,343,14,20,3,0,0,1,5,0,387,355,370,334,13,20,1,0,0,0,0,0,3,1,373,335,14,20,3,0,0,1,0,0,19,8,14,8,0,0,0,0,0,0,5,0,0,0,14,8,0,0,0,0,0,0,5,0 -050,01,029,Alabama,Cleburne County,2,6,859,421,438,405,410,11,22,3,4,0,1,1,0,1,1,406,411,11,22,4,5,0,1,1,0,401,432,386,405,11,21,3,4,0,1,0,0,1,1,387,406,11,21,4,5,0,1,0,0,20,6,19,5,0,1,0,0,0,0,1,0,0,0,19,5,0,1,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,2,7,764,379,385,361,376,14,6,2,2,0,1,0,0,2,0,363,376,14,6,4,2,0,1,0,0,364,379,346,370,14,6,2,2,0,1,0,0,2,0,348,370,14,6,4,2,0,1,0,0,15,6,15,6,0,0,0,0,0,0,0,0,0,0,15,6,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,8,1014,514,500,496,477,13,15,0,3,0,0,3,0,2,5,497,482,14,15,0,5,2,3,3,0,490,490,476,467,12,15,0,3,0,0,0,0,2,5,477,472,13,15,0,5,2,3,0,0,24,10,20,10,1,0,0,0,0,0,3,0,0,0,20,10,1,0,0,0,0,0,3,0 -050,01,029,Alabama,Cleburne County,2,9,1048,511,537,493,511,13,17,1,1,0,2,0,0,4,6,497,517,13,18,4,6,1,2,0,0,501,531,484,505,13,17,0,1,0,2,0,0,4,6,488,511,13,18,3,6,1,2,0,0,10,6,9,6,0,0,1,0,0,0,0,0,0,0,9,6,0,0,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,10,1109,573,536,537,507,27,24,4,1,0,0,0,0,5,4,542,511,27,24,9,4,0,1,0,0,563,529,527,501,27,24,4,1,0,0,0,0,5,3,532,504,27,24,9,4,0,0,0,0,10,7,10,6,0,0,0,0,0,0,0,0,0,1,10,7,0,0,0,0,0,1,0,0 -050,01,029,Alabama,Cleburne County,2,11,1040,509,531,484,508,19,16,1,2,0,2,0,0,5,3,489,510,19,16,6,5,0,3,0,0,500,529,475,506,19,16,1,2,0,2,0,0,5,3,480,508,19,16,6,5,0,3,0,0,9,2,9,2,0,0,0,0,0,0,0,0,0,0,9,2,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,12,1030,534,496,513,476,16,14,3,1,0,2,0,0,2,3,515,479,16,15,4,4,1,3,0,1,530,493,510,473,16,14,3,1,0,2,0,0,1,3,511,476,16,15,4,4,0,3,0,1,4,3,3,3,0,0,0,0,0,0,0,0,1,0,4,3,0,0,0,0,1,0,0,0 -050,01,029,Alabama,Cleburne County,2,13,1021,507,514,486,490,13,16,4,2,0,3,0,0,4,3,490,492,13,16,7,4,1,5,0,0,502,513,481,489,13,16,4,2,0,3,0,0,4,3,485,491,13,16,7,4,1,5,0,0,5,1,5,1,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,14,817,409,408,394,392,12,14,1,1,0,0,0,0,2,1,395,393,12,14,3,2,1,0,0,0,408,407,393,391,12,14,1,1,0,0,0,0,2,1,394,392,12,14,3,2,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,15,568,262,306,254,286,7,15,0,1,0,2,0,0,1,2,255,288,7,15,1,3,1,2,1,0,259,305,251,285,7,15,0,1,0,2,0,0,1,2,252,287,7,15,1,3,1,2,1,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,16,470,204,266,198,251,5,14,1,1,0,0,0,0,0,0,198,251,5,14,1,1,0,0,0,0,203,262,197,247,5,14,1,1,0,0,0,0,0,0,197,247,5,14,1,1,0,0,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,17,267,99,168,96,164,3,2,0,0,0,2,0,0,0,0,96,164,3,2,0,0,0,2,0,0,98,168,95,164,3,2,0,0,0,2,0,0,0,0,95,164,3,2,0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,2,18,239,72,167,69,163,3,3,0,0,0,1,0,0,0,0,69,163,3,3,0,0,0,1,0,0,72,166,69,162,3,3,0,0,0,1,0,0,0,0,69,162,3,3,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,0,15004,7465,7539,7114,7151,237,269,25,27,6,17,10,1,73,74,7183,7223,279,314,49,51,16,23,13,3,7264,7428,6929,7048,235,266,23,27,6,17,1,0,70,70,6996,7116,275,307,46,51,16,23,3,2,201,111,185,103,2,3,2,0,0,0,9,1,3,4,187,107,4,7,3,0,0,0,10,1 -050,01,029,Alabama,Cleburne County,3,1,948,472,476,442,440,16,20,0,2,1,1,0,0,13,13,453,453,28,30,2,3,2,3,1,0,443,459,415,424,15,19,0,2,1,1,0,0,12,13,426,437,26,29,2,3,2,3,0,0,29,17,27,16,1,1,0,0,0,0,0,0,1,0,27,16,2,1,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,3,2,939,519,420,472,385,23,14,2,5,2,0,1,0,19,16,491,401,37,26,5,7,3,1,2,1,505,407,460,374,23,13,1,5,2,0,1,0,18,15,478,389,36,24,4,7,3,1,2,1,14,13,12,11,0,1,1,0,0,0,0,0,1,1,13,12,1,2,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,3,1003,526,477,507,450,7,16,2,1,3,0,0,0,7,10,514,459,13,25,3,3,3,1,0,0,512,464,493,438,7,16,2,1,3,0,0,0,7,9,500,446,13,24,3,3,3,1,0,0,14,13,14,12,0,0,0,0,0,0,0,0,0,1,14,13,0,1,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,4,1049,524,525,502,502,19,16,1,0,0,0,0,1,2,6,504,507,20,20,2,3,0,0,0,1,504,515,482,494,19,16,1,0,0,0,0,0,2,5,484,498,20,19,2,3,0,0,0,0,20,10,20,8,0,0,0,0,0,0,0,1,0,1,20,9,0,1,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,3,5,782,410,372,387,352,13,19,1,0,0,0,5,0,4,1,390,353,14,20,4,0,1,0,5,0,391,364,373,344,13,19,1,0,0,0,0,0,4,1,376,345,14,20,4,0,1,0,0,0,19,8,14,8,0,0,0,0,0,0,5,0,0,0,14,8,0,0,0,0,0,0,5,0 -050,01,029,Alabama,Cleburne County,3,6,868,424,444,408,414,11,24,3,4,0,1,1,0,1,1,409,415,11,25,3,4,1,1,1,0,403,439,388,410,11,23,3,4,0,1,0,0,1,1,389,411,11,24,3,4,1,1,0,0,21,5,20,4,0,1,0,0,0,0,1,0,0,0,20,4,0,1,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,3,7,763,385,378,367,368,14,7,2,2,0,1,0,0,2,0,369,368,15,7,3,2,0,1,0,0,369,372,351,362,14,7,2,2,0,1,0,0,2,0,353,362,15,7,3,2,0,1,0,0,16,6,16,6,0,0,0,0,0,0,0,0,0,0,16,6,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,8,1008,509,499,489,476,15,16,0,3,0,0,3,0,2,4,491,480,15,19,0,3,2,1,3,0,485,488,469,465,14,16,0,3,0,0,0,0,2,4,471,469,14,19,0,3,2,1,0,0,24,11,20,11,1,0,0,0,0,0,3,0,0,0,20,11,1,0,0,0,0,0,3,0 -050,01,029,Alabama,Cleburne County,3,9,1048,507,541,491,514,11,17,1,1,0,2,0,0,4,7,495,521,13,20,2,5,1,2,0,0,496,535,481,508,11,17,0,1,0,2,0,0,4,7,485,515,13,20,1,5,1,2,0,0,11,6,10,6,0,0,1,0,0,0,0,0,0,0,10,6,0,0,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,10,1115,577,538,539,507,29,26,4,1,0,0,0,0,5,4,544,511,30,28,7,2,1,0,0,1,567,530,529,500,29,26,4,1,0,0,0,0,5,3,534,503,30,27,7,2,1,0,0,1,10,8,10,7,0,0,0,0,0,0,0,0,0,1,10,8,0,1,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,11,1046,511,535,486,511,19,16,1,3,0,2,0,0,5,3,491,514,21,16,3,6,1,2,1,0,502,532,477,508,19,16,1,3,0,2,0,0,5,3,482,511,21,16,3,6,1,2,1,0,9,3,9,3,0,0,0,0,0,0,0,0,0,0,9,3,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,12,1031,531,500,512,480,15,14,2,1,0,2,0,0,2,3,514,483,15,14,4,3,0,3,0,0,527,497,509,477,15,14,2,1,0,2,0,0,1,3,510,480,15,14,3,3,0,3,0,0,4,3,3,3,0,0,0,0,0,0,0,0,1,0,4,3,0,0,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,13,1025,513,512,490,489,15,16,4,1,0,3,0,0,4,3,493,492,16,16,7,4,1,3,0,0,509,511,486,488,15,16,4,1,0,3,0,0,4,3,489,491,16,16,7,4,1,3,0,0,4,1,4,1,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,14,820,407,413,393,396,11,15,1,1,0,0,0,0,2,1,395,397,11,15,3,2,0,0,0,0,406,412,392,395,11,15,1,1,0,0,0,0,2,1,394,396,11,15,3,2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,15,581,272,309,263,289,8,15,0,1,0,2,0,0,1,2,264,291,9,15,0,3,0,2,0,0,269,308,260,288,8,15,0,1,0,2,0,0,1,2,261,290,9,15,0,3,0,2,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,16,463,201,262,195,249,5,12,1,1,0,0,0,0,0,0,195,249,5,12,1,1,0,0,0,0,200,258,194,245,5,12,1,1,0,0,0,0,0,0,194,245,5,12,1,1,0,0,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,17,275,105,170,102,165,3,3,0,0,0,2,0,0,0,0,102,165,3,3,0,0,0,2,0,0,104,170,101,165,3,3,0,0,0,2,0,0,0,0,101,165,3,3,0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,3,18,240,72,168,69,164,3,3,0,0,0,1,0,0,0,0,69,164,3,3,0,0,0,1,0,0,72,167,69,163,3,3,0,0,0,1,0,0,0,0,69,163,3,3,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,0,14928,7418,7510,7047,7119,252,260,24,30,7,20,9,1,79,80,7119,7190,299,304,54,65,15,30,13,2,7221,7389,6866,7010,249,255,22,29,7,20,1,0,76,75,6936,7076,293,297,51,61,15,30,5,1,197,121,181,109,3,5,2,1,0,0,8,1,3,5,183,114,6,7,3,4,0,0,8,1 -050,01,029,Alabama,Cleburne County,4,1,915,459,456,426,417,18,20,0,3,2,1,0,0,13,15,439,430,29,32,2,6,2,2,0,1,435,440,403,402,17,19,0,3,2,1,0,0,13,15,416,415,28,31,2,6,2,2,0,1,24,16,23,15,1,1,0,0,0,0,0,0,0,0,23,15,1,1,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,2,947,508,439,458,408,24,12,2,5,2,1,1,0,21,13,478,420,40,22,7,7,3,4,2,0,497,424,450,395,23,10,1,5,2,1,1,0,20,13,469,407,38,20,6,7,3,4,2,0,11,15,8,13,1,2,1,0,0,0,0,0,1,0,9,13,2,2,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,3,1008,516,492,493,463,12,16,1,1,2,0,0,0,8,12,499,473,19,24,3,4,3,3,0,0,499,474,477,448,12,15,1,1,2,0,0,0,7,10,483,456,18,22,2,3,3,3,0,0,17,18,16,15,0,1,0,0,0,0,0,0,1,2,16,17,1,2,1,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,4,976,506,470,479,445,22,17,1,0,1,0,0,1,3,7,482,452,23,20,2,4,1,0,1,1,485,459,458,436,22,17,1,0,1,0,0,0,3,6,461,442,23,19,2,4,1,0,1,0,21,11,21,9,0,0,0,0,0,0,0,1,0,1,21,10,0,1,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,4,5,831,437,394,407,380,19,11,2,0,0,0,4,0,5,3,412,382,20,13,5,1,1,1,4,0,423,384,397,371,19,11,2,0,0,0,0,0,5,2,402,372,20,13,5,0,1,1,0,0,14,10,10,9,0,0,0,0,0,0,4,0,0,1,10,10,0,0,0,1,0,0,4,0 -050,01,029,Alabama,Cleburne County,4,6,838,398,440,382,406,10,27,2,4,0,2,1,0,3,1,385,407,11,28,4,4,1,2,1,0,378,432,363,399,10,26,2,4,0,2,0,0,3,1,366,400,11,27,4,4,1,2,0,0,20,8,19,7,0,1,0,0,0,0,1,0,0,0,19,7,0,1,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,4,7,772,406,366,385,349,17,13,2,2,0,1,1,0,1,1,386,350,18,13,2,3,0,1,1,0,385,363,365,346,17,13,2,2,0,1,0,0,1,1,366,347,18,13,2,3,0,1,0,0,21,3,20,3,0,0,0,0,0,0,1,0,0,0,20,3,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,4,8,940,472,468,454,450,14,11,0,3,0,1,1,0,3,3,457,453,15,12,1,4,1,2,1,0,453,460,436,442,14,11,0,3,0,1,0,0,3,3,439,445,15,12,1,4,1,2,0,0,19,8,18,8,0,0,0,0,0,0,1,0,0,0,18,8,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,4,9,1032,494,538,478,512,11,14,1,2,0,2,1,0,3,8,480,520,12,16,3,8,0,2,2,0,480,531,467,505,10,14,0,2,0,2,0,0,3,8,469,513,11,16,2,8,0,2,1,0,14,7,11,7,1,0,1,0,0,0,1,0,0,0,11,7,1,0,1,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,4,10,1085,557,528,521,497,28,27,3,1,0,0,0,0,5,3,525,500,31,28,6,3,0,0,0,0,547,521,511,491,28,27,3,1,0,0,0,0,5,2,515,493,31,28,6,2,0,0,0,0,10,7,10,6,0,0,0,0,0,0,0,0,0,1,10,7,0,0,0,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,11,1083,535,548,511,524,17,15,2,4,0,1,0,0,5,4,515,528,19,16,5,7,1,1,0,0,525,542,501,519,17,15,2,3,0,1,0,0,5,4,505,523,19,16,5,6,1,1,0,0,10,6,10,5,0,0,0,1,0,0,0,0,0,0,10,5,0,0,0,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,12,1030,515,515,497,494,15,15,2,1,0,3,0,0,1,2,498,495,16,16,2,3,0,3,0,0,510,511,493,490,15,15,2,1,0,3,0,0,0,2,493,491,15,16,2,3,0,3,0,0,5,4,4,4,0,0,0,0,0,0,0,0,1,0,5,4,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,13,1030,521,509,498,486,16,17,3,1,0,2,0,0,4,3,501,488,17,18,5,4,2,2,1,0,517,508,494,485,16,17,3,1,0,2,0,0,4,3,497,487,17,18,5,4,2,2,1,0,4,1,4,1,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,14,823,400,423,387,408,8,10,2,1,0,1,0,0,3,3,390,410,8,10,5,4,0,2,0,0,399,422,386,407,8,10,2,1,0,1,0,0,3,3,389,409,8,10,5,4,0,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,15,618,307,311,298,291,9,15,0,1,0,2,0,0,0,2,298,293,9,16,0,2,0,2,0,0,303,311,294,291,9,15,0,1,0,2,0,0,0,2,294,293,9,16,0,2,0,2,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,16,454,199,255,191,243,6,11,1,1,0,0,0,0,1,0,192,243,6,11,2,1,0,0,0,0,198,251,190,239,6,11,1,1,0,0,0,0,1,0,191,239,6,11,2,1,0,0,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,17,302,115,187,112,180,3,5,0,0,0,2,0,0,0,0,112,180,3,5,0,0,0,2,0,0,114,186,111,179,3,5,0,0,0,2,0,0,0,0,111,179,3,5,0,0,0,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,4,18,244,73,171,70,166,3,4,0,0,0,1,0,0,0,0,70,166,3,4,0,0,0,1,0,0,73,170,70,165,3,4,0,0,0,1,0,0,0,0,70,165,3,4,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,0,14889,7397,7492,7031,7090,247,265,24,30,6,18,9,1,80,88,7104,7172,299,315,50,57,18,31,9,6,7213,7366,6862,6977,244,260,22,29,6,18,1,0,78,82,6933,7054,295,306,48,53,17,31,1,5,184,126,169,113,3,5,2,1,0,0,8,1,2,6,171,118,4,9,2,4,1,0,8,1 -050,01,029,Alabama,Cleburne County,5,1,903,457,446,421,408,19,16,0,2,1,1,0,0,16,19,437,426,32,30,1,4,3,5,0,0,437,428,402,391,18,15,0,2,1,1,0,0,16,19,418,409,31,29,1,4,3,5,0,0,20,18,19,17,1,1,0,0,0,0,0,0,0,0,19,17,1,1,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,2,978,511,467,467,421,27,22,1,4,0,1,1,0,15,19,480,440,39,34,6,7,1,3,1,2,495,449,452,406,27,19,0,4,0,1,1,0,15,19,465,425,39,31,5,7,1,3,1,2,16,18,15,15,0,3,1,0,0,0,0,0,0,0,15,15,0,3,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,3,983,507,476,480,450,13,16,2,2,1,0,0,0,11,8,490,457,23,21,3,3,3,2,0,1,492,460,467,436,12,16,2,2,1,0,0,0,10,6,476,441,22,20,3,2,2,2,0,1,15,16,13,14,1,0,0,0,0,0,0,0,1,2,14,16,1,1,0,1,1,0,0,0 -050,01,029,Alabama,Cleburne County,5,4,943,495,448,467,423,20,17,1,0,3,0,0,1,4,7,471,430,23,23,1,0,4,1,0,1,481,434,453,411,20,17,1,0,3,0,0,0,4,6,457,417,23,22,1,0,4,1,0,0,14,14,14,12,0,0,0,0,0,0,0,1,0,1,14,13,0,1,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,5,5,842,433,409,408,400,18,6,1,0,0,0,3,0,3,3,411,403,20,8,2,1,0,0,3,0,420,402,398,394,18,6,1,0,0,0,0,0,3,2,401,396,20,7,2,1,0,0,0,0,13,7,10,6,0,0,0,0,0,0,3,0,0,1,10,7,0,1,0,0,0,0,3,0 -050,01,029,Alabama,Cleburne County,5,6,797,377,420,360,386,8,29,1,3,1,1,2,0,5,1,364,387,10,30,4,3,3,1,2,0,363,410,348,377,8,28,1,3,1,1,0,0,5,1,352,378,10,29,4,3,3,1,0,0,14,10,12,9,0,1,0,0,0,0,2,0,0,0,12,9,0,1,0,0,0,0,2,0 -050,01,029,Alabama,Cleburne County,5,7,804,422,382,401,362,17,15,2,3,0,0,1,0,1,2,402,363,18,17,2,4,0,0,1,0,401,379,381,359,17,15,2,3,0,0,0,0,1,2,382,360,18,17,2,4,0,0,0,0,21,3,20,3,0,0,0,0,0,0,1,0,0,0,20,3,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,5,8,921,467,454,448,434,12,12,2,4,0,2,1,0,4,2,452,435,13,13,5,6,0,2,1,0,449,447,431,427,12,12,2,4,0,2,0,0,4,2,435,428,13,13,5,6,0,2,0,0,18,7,17,7,0,0,0,0,0,0,1,0,0,0,17,7,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,5,9,1029,502,527,485,503,14,12,0,2,0,2,1,0,2,8,487,510,15,14,0,6,1,5,1,1,484,519,469,495,13,12,0,2,0,2,0,0,2,8,471,502,14,14,0,6,1,5,0,1,18,8,16,8,1,0,0,0,0,0,1,0,0,0,16,8,1,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,5,10,1058,543,515,517,484,19,25,3,1,0,0,0,0,4,5,521,488,21,27,5,5,0,0,0,0,535,509,510,480,19,25,2,1,0,0,0,0,4,3,514,483,21,26,4,3,0,0,0,0,8,6,7,4,0,0,1,0,0,0,0,0,0,2,7,5,0,1,1,2,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,11,1086,537,549,508,522,22,20,3,3,0,1,0,0,4,3,511,525,23,21,6,5,1,1,0,0,526,542,497,516,22,20,3,2,0,1,0,0,4,3,500,519,23,21,6,4,1,1,0,0,11,7,11,6,0,0,0,1,0,0,0,0,0,0,11,6,0,0,0,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,12,1000,495,505,475,486,15,12,2,2,0,2,0,0,3,3,478,489,16,13,3,3,1,2,0,1,491,500,472,481,15,12,2,2,0,2,0,0,2,3,474,484,15,13,3,3,1,2,0,1,4,5,3,5,0,0,0,0,0,0,0,0,1,0,4,5,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,13,994,498,496,482,474,13,19,1,1,0,1,0,0,2,1,483,475,14,19,2,2,1,1,0,0,494,495,478,473,13,19,1,1,0,1,0,0,2,1,479,474,14,19,2,2,1,1,0,0,4,1,4,1,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,14,878,431,447,414,429,9,9,3,1,0,3,0,0,5,5,418,434,11,10,7,4,0,4,0,0,429,446,412,428,9,9,3,1,0,3,0,0,5,5,416,433,11,10,7,4,0,4,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,15,648,330,318,319,300,10,14,1,1,0,1,0,0,0,2,319,302,10,14,1,3,0,1,0,0,326,318,315,300,10,14,1,1,0,1,0,0,0,2,315,302,10,14,1,3,0,1,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,16,451,196,255,190,243,4,11,1,1,0,0,0,0,1,0,191,243,4,11,2,1,0,0,0,0,195,252,189,240,4,11,1,1,0,0,0,0,1,0,190,240,4,11,2,1,0,0,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,17,315,111,204,108,195,3,7,0,0,0,2,0,0,0,0,108,195,3,7,0,0,0,2,0,0,110,203,107,194,3,7,0,0,0,2,0,0,0,0,107,194,3,7,0,0,0,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,5,18,259,85,174,81,170,4,3,0,0,0,1,0,0,0,0,81,170,4,3,0,0,0,1,0,0,85,173,81,169,4,3,0,0,0,1,0,0,0,0,81,169,4,3,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,0,14974,7416,7558,7046,7156,247,262,28,32,6,19,10,1,79,88,7122,7238,295,316,52,60,15,29,13,3,7216,7425,6868,7035,241,257,25,31,4,19,1,0,77,83,6942,7112,287,307,49,58,13,29,4,2,200,133,178,121,6,5,3,1,2,0,9,1,2,5,180,126,8,9,3,2,2,0,9,1 -050,01,029,Alabama,Cleburne County,6,1,884,455,429,416,401,24,10,0,0,0,0,0,0,15,18,431,418,36,26,3,2,0,0,0,1,431,415,394,387,22,10,0,0,0,0,0,0,15,18,409,404,34,26,3,2,0,0,0,1,24,14,22,14,2,0,0,0,0,0,0,0,0,0,22,14,2,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,2,1003,496,507,465,454,18,29,0,5,1,2,1,0,11,17,476,469,27,43,2,8,1,4,1,0,478,484,448,435,17,25,0,5,1,2,1,0,11,17,459,450,26,39,2,8,1,4,1,0,18,23,17,19,1,4,0,0,0,0,0,0,0,0,17,19,1,4,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,3,994,544,450,505,419,20,16,3,3,1,0,0,0,15,12,520,430,31,22,6,7,2,3,0,0,530,435,494,405,20,16,1,3,1,0,0,0,14,11,508,415,30,22,4,6,2,3,0,0,14,15,11,14,0,0,2,0,0,0,0,0,1,1,12,15,1,0,2,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,4,907,456,451,429,428,16,14,4,1,2,0,0,0,5,8,434,435,20,21,4,1,3,2,0,0,438,439,413,418,14,14,4,1,2,0,0,0,5,6,418,423,18,19,4,1,3,2,0,0,18,12,16,10,2,0,0,0,0,0,0,0,0,2,16,12,2,2,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,5,895,446,449,423,438,17,8,0,0,0,0,3,1,3,2,425,439,18,9,2,1,1,1,3,1,429,438,409,428,17,8,0,0,0,0,0,0,3,2,411,429,18,9,2,1,1,1,0,0,17,11,14,10,0,0,0,0,0,0,3,1,0,0,14,10,0,0,0,0,0,0,3,1 -050,01,029,Alabama,Cleburne County,6,6,801,391,410,372,385,10,20,1,2,0,2,2,0,6,1,378,386,12,21,2,2,2,2,3,0,375,402,358,378,10,19,1,2,0,2,0,0,6,1,364,379,12,20,2,2,2,2,1,0,16,8,14,7,0,1,0,0,0,0,2,0,0,0,14,7,0,1,0,0,0,0,2,0 -050,01,029,Alabama,Cleburne County,6,7,808,417,391,395,368,16,20,2,3,2,0,1,0,1,0,396,368,16,20,3,3,2,0,1,0,403,384,384,361,16,20,2,3,0,0,0,0,1,0,385,361,16,20,3,3,0,0,0,0,14,7,11,7,0,0,0,0,2,0,1,0,0,0,11,7,0,0,0,0,2,0,1,0 -050,01,029,Alabama,Cleburne County,6,8,905,464,441,445,415,13,16,2,5,0,2,1,0,3,3,447,418,16,17,2,7,0,2,2,0,444,436,426,410,13,16,2,5,0,2,0,0,3,3,428,413,16,17,2,7,0,2,1,0,20,5,19,5,0,0,0,0,0,0,1,0,0,0,19,5,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,6,9,1033,502,531,485,511,12,10,0,2,0,1,2,0,3,7,488,518,13,11,0,7,2,2,2,0,480,521,466,501,11,10,0,2,0,1,0,0,3,7,469,508,12,11,0,7,2,2,0,0,22,10,19,10,1,0,0,0,0,0,2,0,0,0,19,10,1,0,0,0,0,0,2,0 -050,01,029,Alabama,Cleburne County,6,10,1028,527,501,508,476,16,17,2,1,0,1,0,0,1,6,509,482,16,20,3,3,0,2,0,0,520,495,502,472,16,17,1,1,0,1,0,0,1,4,503,476,16,18,2,3,0,2,0,0,7,6,6,4,0,0,1,0,0,0,0,0,0,2,6,6,0,2,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,11,1076,546,530,512,505,25,22,4,1,0,1,0,0,5,1,517,506,28,23,7,1,0,1,0,0,535,523,501,498,25,22,4,1,0,1,0,0,5,1,506,499,28,23,7,1,0,1,0,0,11,7,11,7,0,0,0,0,0,0,0,0,0,0,11,7,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,12,993,467,526,448,504,16,13,1,4,0,2,0,0,2,3,450,507,16,13,3,7,0,2,0,0,462,521,443,500,16,13,1,3,0,2,0,0,2,3,445,503,16,13,3,6,0,2,0,0,5,5,5,4,0,0,0,1,0,0,0,0,0,0,5,4,0,0,0,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,13,1002,512,490,492,463,13,21,4,2,0,1,0,0,3,3,495,466,14,22,5,4,2,1,0,0,507,485,488,458,13,21,4,2,0,1,0,0,2,3,490,461,13,22,5,4,2,1,0,0,5,5,4,5,0,0,0,0,0,0,0,0,1,0,5,5,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,14,881,427,454,409,437,11,9,3,0,0,3,0,0,4,5,413,442,11,10,6,3,0,3,1,1,424,453,406,436,11,9,3,0,0,3,0,0,4,5,410,441,11,10,6,3,0,3,1,1,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,15,711,363,348,352,332,9,12,1,2,0,0,0,0,1,2,352,334,10,13,2,3,0,0,0,0,361,348,350,332,9,12,1,2,0,0,0,0,1,2,350,334,10,13,2,3,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,16,459,193,266,187,250,5,14,0,1,0,1,0,0,1,0,188,250,5,14,1,1,0,1,0,0,190,265,184,249,5,14,0,1,0,1,0,0,1,0,185,249,5,14,1,1,0,1,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,17,325,128,197,125,188,2,7,1,0,0,2,0,0,0,0,125,188,2,7,1,0,0,2,0,0,128,195,125,186,2,7,1,0,0,2,0,0,0,0,125,186,2,7,1,0,0,2,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,6,18,269,82,187,78,182,4,4,0,0,0,1,0,0,0,0,78,182,4,4,0,0,0,1,0,0,81,186,77,181,4,4,0,0,0,1,0,0,0,0,77,181,4,4,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,0,15029,7447,7582,7081,7169,236,269,29,35,5,19,10,2,86,88,7161,7251,288,324,54,63,18,29,13,4,7238,7438,6890,7039,233,264,25,32,5,19,1,0,84,84,6968,7117,285,317,49,58,18,29,3,2,209,144,191,130,3,5,4,3,0,0,9,2,2,4,193,134,3,7,5,5,0,0,10,2 -050,01,029,Alabama,Cleburne County,7,1,916,472,444,427,408,27,15,0,1,0,0,0,0,18,20,444,427,41,33,3,4,2,0,0,1,445,429,401,393,26,15,0,1,0,0,0,0,18,20,418,412,40,33,3,4,2,0,0,1,27,15,26,15,1,0,0,0,0,0,0,0,0,0,26,15,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,2,984,489,495,459,455,16,24,0,3,1,2,0,0,13,11,472,466,27,33,1,3,2,4,0,0,470,469,441,431,15,22,0,3,1,2,0,0,13,11,454,442,26,31,1,3,2,4,0,0,19,26,18,24,1,2,0,0,0,0,0,0,0,0,18,24,1,2,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,3,1025,560,465,516,427,21,18,3,5,1,0,1,0,18,15,534,441,34,29,7,8,2,2,2,0,543,450,502,414,21,16,1,5,1,0,1,0,17,15,519,428,34,27,5,8,2,2,1,0,17,15,14,13,0,2,2,0,0,0,0,0,1,0,15,13,0,2,2,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,7,4,888,447,441,425,419,10,15,4,1,2,0,0,0,6,6,431,425,12,19,6,3,4,0,0,0,437,425,415,405,10,15,4,1,2,0,0,0,6,4,421,409,12,18,6,2,4,0,0,0,10,16,10,14,0,0,0,0,0,0,0,0,0,2,10,16,0,1,0,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,5,881,437,444,415,429,18,9,1,2,0,0,2,1,1,3,415,432,19,11,2,2,0,1,2,1,420,431,401,419,18,9,0,0,0,0,0,0,1,3,401,422,19,11,1,0,0,1,0,0,17,13,14,10,0,0,1,2,0,0,2,1,0,0,14,10,0,0,1,2,0,0,2,1 -050,01,029,Alabama,Cleburne County,7,6,831,413,418,395,387,7,27,1,1,1,1,3,0,6,2,398,388,11,28,3,3,4,1,3,0,398,408,383,378,7,26,1,1,1,1,0,0,6,2,386,379,11,27,3,3,4,1,0,0,15,10,12,9,0,1,0,0,0,0,3,0,0,0,12,9,0,1,0,0,0,0,3,0 -050,01,029,Alabama,Cleburne County,7,7,831,414,417,393,394,17,17,2,4,0,1,1,1,1,0,394,394,17,17,3,4,0,1,1,1,396,412,376,390,17,17,2,4,0,1,0,0,1,0,377,390,17,17,3,4,0,1,0,0,18,5,17,4,0,0,0,0,0,0,1,1,0,0,17,4,0,0,0,0,0,0,1,1 -050,01,029,Alabama,Cleburne County,7,8,864,435,429,421,406,9,14,2,5,0,2,0,0,3,2,424,408,12,15,2,5,0,3,0,0,422,422,408,399,9,14,2,5,0,2,0,0,3,2,411,401,12,15,2,5,0,3,0,0,13,7,13,7,0,0,0,0,0,0,0,0,0,0,13,7,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,9,1040,526,514,507,493,14,12,0,2,0,1,3,0,2,6,509,499,15,13,0,6,1,2,3,0,497,506,482,485,13,12,0,2,0,1,0,0,2,6,484,491,14,13,0,6,1,2,0,0,29,8,25,8,1,0,0,0,0,0,3,0,0,0,25,8,1,0,0,0,0,0,3,0 -050,01,029,Alabama,Cleburne County,7,10,999,509,490,495,467,10,14,2,1,0,1,0,0,2,7,497,474,12,17,2,5,0,1,0,0,498,482,485,461,10,14,1,1,0,1,0,0,2,5,487,466,12,16,1,4,0,1,0,0,11,8,10,6,0,0,1,0,0,0,0,0,0,2,10,8,0,1,1,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,11,1081,537,544,500,518,29,22,4,1,0,1,0,0,4,2,504,520,30,23,5,2,1,1,1,0,525,537,488,511,29,22,4,1,0,1,0,0,4,2,492,513,30,23,5,2,1,1,1,0,12,7,12,7,0,0,0,0,0,0,0,0,0,0,12,7,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,12,961,457,504,443,482,11,13,0,4,0,1,0,0,3,4,445,485,11,15,3,7,1,1,0,0,450,501,436,480,11,13,0,3,0,1,0,0,3,4,438,483,11,15,3,6,1,1,0,0,7,3,7,2,0,0,0,1,0,0,0,0,0,0,7,2,0,0,0,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,13,998,515,483,495,457,14,20,4,1,0,2,0,0,2,3,497,460,14,21,6,2,0,3,0,0,511,477,492,451,14,20,4,1,0,2,0,0,1,3,493,454,14,21,5,2,0,3,0,0,4,6,3,6,0,0,0,0,0,0,0,0,1,0,4,6,0,0,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,14,919,442,477,421,459,13,10,4,1,0,3,0,0,4,4,425,463,13,10,6,4,1,4,1,0,439,476,418,458,13,10,4,1,0,3,0,0,4,4,422,462,13,10,6,4,1,4,1,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,15,729,358,371,345,354,10,13,1,2,0,0,0,0,2,2,347,355,10,14,3,4,0,0,0,0,356,371,343,354,10,13,1,2,0,0,0,0,2,2,345,355,10,14,3,4,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,16,471,220,251,213,239,6,10,0,0,0,1,0,0,1,1,214,239,6,10,1,0,0,2,0,1,216,251,209,239,6,10,0,0,0,1,0,0,1,1,210,239,6,10,1,0,0,2,0,1,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,17,336,133,203,130,190,2,11,1,1,0,1,0,0,0,0,130,190,2,11,1,1,0,1,0,0,133,200,130,187,2,11,1,1,0,1,0,0,0,0,130,187,2,11,1,1,0,1,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,7,18,275,83,192,81,185,2,5,0,0,0,2,0,0,0,0,81,185,2,5,0,0,0,2,0,0,82,191,80,184,2,5,0,0,0,2,0,0,0,0,80,184,2,5,0,0,0,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,0,14923,7366,7557,7008,7146,219,267,31,36,7,19,10,2,91,87,7096,7228,274,320,59,70,16,25,14,3,7162,7406,6823,7009,216,262,27,34,7,19,1,0,88,82,6908,7086,269,312,54,66,15,25,5,1,204,151,185,137,3,5,4,2,0,0,9,2,3,5,188,142,5,8,5,4,1,0,9,2 -050,01,029,Alabama,Cleburne County,8,1,884,465,419,435,390,13,13,1,2,0,0,0,0,16,14,451,404,24,26,3,4,2,0,1,0,436,405,407,376,12,13,1,2,0,0,0,0,16,14,423,390,23,26,3,4,2,0,1,0,29,14,28,14,1,0,0,0,0,0,0,0,0,0,28,14,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,2,939,464,475,438,437,12,22,0,2,1,1,0,0,13,13,451,450,21,31,3,3,3,4,0,0,448,449,424,413,11,20,0,2,1,1,0,0,12,13,436,426,20,29,2,3,2,4,0,0,16,26,14,24,1,2,0,0,0,0,0,0,1,0,15,24,1,2,1,0,1,0,0,0 -050,01,029,Alabama,Cleburne County,8,3,993,541,452,493,411,23,18,3,6,2,0,1,0,19,17,511,426,36,32,9,8,2,2,2,1,522,432,477,393,23,16,1,6,2,0,1,0,18,17,494,408,35,30,7,8,2,2,2,1,19,20,16,18,0,2,2,0,0,0,0,0,1,0,17,18,1,2,2,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,4,929,482,447,457,422,11,19,3,1,2,1,0,0,9,4,466,426,17,22,4,2,3,1,1,0,471,432,446,408,11,19,3,1,2,1,0,0,9,3,455,411,17,21,4,2,3,1,1,0,11,15,11,14,0,0,0,0,0,0,0,0,0,1,11,15,0,1,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,5,872,426,446,408,427,13,11,2,1,0,0,0,1,3,6,411,433,16,14,2,3,0,1,0,1,413,433,396,417,13,11,1,0,0,0,0,0,3,5,399,422,16,13,1,2,0,1,0,0,13,13,12,10,0,0,1,1,0,0,0,1,0,1,12,11,0,1,1,1,0,0,0,1 -050,01,029,Alabama,Cleburne County,8,6,819,417,402,397,378,9,22,1,0,1,0,5,0,4,2,400,380,12,23,3,1,1,0,5,0,401,392,386,368,9,22,1,0,1,0,0,0,4,2,389,370,12,23,3,1,1,0,0,0,16,10,11,10,0,0,0,0,0,0,5,0,0,0,11,10,0,0,0,0,0,0,5,0 -050,01,029,Alabama,Cleburne County,8,7,832,411,421,392,398,14,15,2,5,0,2,1,1,2,0,394,398,15,15,3,5,0,2,1,1,391,416,373,395,14,14,2,5,0,2,0,0,2,0,375,395,15,14,3,5,0,2,0,0,20,5,19,3,0,1,0,0,0,0,1,1,0,0,19,3,0,1,0,0,0,0,1,1 -050,01,029,Alabama,Cleburne County,8,8,819,403,416,387,397,11,13,2,4,0,1,0,0,3,1,390,398,11,13,3,5,1,1,1,0,393,409,377,390,11,13,2,4,0,1,0,0,3,1,380,391,11,13,3,5,1,1,1,0,10,7,10,7,0,0,0,0,0,0,0,0,0,0,10,7,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,9,1012,511,501,491,482,14,10,0,3,1,1,3,0,2,5,493,487,16,11,0,7,1,1,3,0,485,492,469,473,13,10,0,3,1,1,0,0,2,5,471,478,15,11,0,7,1,1,0,0,26,9,22,9,1,0,0,0,0,0,3,0,0,0,22,9,1,0,0,0,0,0,3,0 -050,01,029,Alabama,Cleburne County,8,10,1010,507,503,493,484,10,9,1,1,0,2,0,0,3,7,496,489,12,12,2,7,0,2,0,0,493,497,480,479,10,9,0,1,0,2,0,0,3,6,483,483,12,12,1,6,0,2,0,0,14,6,13,5,0,0,1,0,0,0,0,0,0,1,13,6,0,0,1,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,11,1066,530,536,498,503,24,27,4,1,0,0,0,0,4,5,502,508,24,29,7,4,2,0,0,0,522,526,490,495,24,27,4,1,0,0,0,0,4,3,494,498,24,28,7,3,2,0,0,0,8,10,8,8,0,0,0,0,0,0,0,0,0,2,8,10,0,1,0,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,12,1005,474,531,452,509,17,13,1,4,0,2,0,0,4,3,456,512,19,15,3,6,0,2,0,0,464,527,442,506,17,13,1,3,0,2,0,0,4,3,446,509,19,15,3,5,0,2,0,0,10,4,10,3,0,0,0,1,0,0,0,0,0,0,10,3,0,0,0,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,13,976,488,488,469,462,13,20,4,1,0,2,0,0,2,3,471,465,14,21,5,3,0,2,0,0,485,483,467,457,13,20,4,1,0,2,0,0,1,3,468,460,13,21,5,3,0,2,0,0,3,5,2,5,0,0,0,0,0,0,0,0,1,0,3,5,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,14,925,458,467,432,445,17,15,5,1,0,3,0,0,4,3,436,448,18,15,7,4,1,3,0,0,454,466,428,444,17,15,5,1,0,3,0,0,4,3,432,447,18,15,7,4,1,3,0,0,4,1,4,1,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,15,728,335,393,322,377,10,13,1,1,0,0,0,0,2,2,323,379,11,13,3,3,0,0,0,0,334,391,321,375,10,13,1,1,0,0,0,0,2,2,322,377,11,13,3,3,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,16,495,235,260,230,245,4,10,0,2,0,1,0,0,1,2,231,246,4,11,1,4,0,1,0,0,233,260,228,245,4,10,0,2,0,1,0,0,1,2,229,246,4,11,1,4,0,1,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,17,315,126,189,122,176,3,12,1,1,0,0,0,0,0,0,122,176,3,12,1,1,0,0,0,0,125,186,121,173,3,12,1,1,0,0,0,0,0,0,121,173,3,12,1,1,0,0,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,8,18,304,93,211,92,203,1,5,0,0,0,3,0,0,0,0,92,203,1,5,0,0,0,3,0,0,92,210,91,202,1,5,0,0,0,3,0,0,0,0,91,202,1,5,0,0,0,3,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,0,14871,7384,7487,7014,7084,225,260,32,37,7,20,10,2,96,84,7105,7165,285,300,61,71,18,34,13,3,7183,7331,6834,6945,220,252,28,35,7,20,1,0,93,79,6922,7021,277,289,57,66,18,34,4,1,201,156,180,139,5,8,4,2,0,0,9,2,3,5,183,144,8,11,4,5,0,0,9,2 -050,01,029,Alabama,Cleburne County,9,1,877,456,421,433,388,10,14,0,2,0,0,0,0,13,17,446,405,21,26,2,5,1,2,0,0,431,408,409,376,9,13,0,2,0,0,0,0,13,17,422,393,20,25,2,5,1,2,0,0,25,13,24,12,1,1,0,0,0,0,0,0,0,0,24,12,1,1,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,2,932,461,471,428,428,15,27,1,2,1,1,0,0,16,13,444,440,28,35,2,4,3,5,0,0,442,447,411,406,14,25,1,2,1,1,0,0,15,13,426,418,26,33,2,4,3,5,0,0,19,24,17,22,1,2,0,0,0,0,0,0,1,0,18,22,2,2,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,3,996,549,447,506,417,21,13,3,6,2,0,1,0,16,11,520,428,33,19,5,9,5,2,3,0,529,426,490,399,19,10,1,6,2,0,1,0,16,11,504,410,31,16,3,9,5,2,3,0,20,21,16,18,2,3,2,0,0,0,0,0,0,0,16,18,2,3,2,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,4,938,491,447,465,425,12,16,2,1,2,1,0,0,10,4,474,429,18,18,4,2,4,2,1,0,474,428,449,407,12,16,2,1,2,1,0,0,9,3,457,410,17,17,4,2,4,2,1,0,17,19,16,18,0,0,0,0,0,0,0,0,1,1,17,19,1,1,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,5,807,408,399,388,382,13,12,3,0,0,0,0,1,4,4,392,386,16,15,4,1,0,0,0,1,396,388,377,373,13,12,2,0,0,0,0,0,4,3,381,376,16,14,3,1,0,0,0,0,12,11,11,9,0,0,1,0,0,0,0,1,0,1,11,10,0,1,1,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,9,6,847,447,400,424,380,14,17,1,1,1,0,4,0,3,2,427,382,16,17,2,2,1,1,4,0,436,390,417,371,14,17,1,0,1,0,0,0,3,2,420,373,16,17,2,1,1,1,0,0,11,10,7,9,0,0,0,1,0,0,4,0,0,0,7,9,0,0,0,1,0,0,4,0 -050,01,029,Alabama,Cleburne County,9,7,831,380,451,365,425,8,17,2,4,0,2,1,1,4,2,369,426,11,19,3,5,0,2,1,1,362,442,348,419,8,15,2,4,0,2,0,0,4,2,352,420,11,17,3,5,0,2,0,0,18,9,17,6,0,2,0,0,0,0,1,1,0,0,17,6,0,2,0,0,0,0,1,1 -050,01,029,Alabama,Cleburne County,9,8,806,427,379,400,365,20,9,3,4,0,1,1,0,3,0,403,365,21,9,5,4,0,1,1,0,411,374,385,360,20,9,3,4,0,1,0,0,3,0,388,360,21,9,5,4,0,1,0,0,16,5,15,5,0,0,0,0,0,0,1,0,0,0,15,5,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,9,9,968,490,478,473,456,11,12,0,5,1,1,2,0,3,4,476,460,11,14,2,8,2,1,2,0,471,469,456,447,11,12,0,5,1,1,0,0,3,4,459,451,11,14,2,8,2,1,0,0,19,9,17,9,0,0,0,0,0,0,2,0,0,0,17,9,0,0,0,0,0,0,2,0 -050,01,029,Alabama,Cleburne County,9,10,1006,514,492,497,474,12,8,1,1,0,2,1,0,3,7,500,481,13,10,2,5,1,3,1,0,499,486,485,468,11,8,0,1,0,2,0,0,3,7,488,475,12,10,1,5,1,3,0,0,15,6,12,6,1,0,1,0,0,0,1,0,0,0,12,6,1,0,1,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,9,11,1049,505,544,474,513,25,25,3,1,0,1,0,0,3,4,476,516,28,26,4,4,0,2,0,0,500,535,469,506,25,25,3,1,0,1,0,0,3,2,471,507,28,26,4,2,0,2,0,0,5,9,5,7,0,0,0,0,0,0,0,0,0,2,5,9,0,0,0,2,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,12,1057,516,541,489,515,17,16,2,4,0,1,0,0,8,5,497,520,18,18,8,8,1,1,0,0,506,534,479,510,17,16,2,3,0,1,0,0,8,4,487,514,18,17,8,6,1,1,0,0,10,7,10,5,0,0,0,1,0,0,0,0,0,1,10,6,0,1,0,2,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,13,976,474,502,455,477,14,19,4,1,0,3,0,0,1,2,456,479,15,19,4,2,0,4,0,0,469,497,451,472,14,19,4,1,0,3,0,0,0,2,451,474,14,19,4,2,0,4,0,0,5,5,4,5,0,0,0,0,0,0,0,0,1,0,5,5,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,14,934,462,472,441,450,13,16,3,1,0,2,0,0,5,3,446,453,14,16,7,4,0,2,0,0,458,470,437,448,13,16,3,1,0,2,0,0,5,3,442,451,14,16,7,4,0,2,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,15,696,323,373,308,358,9,9,3,1,0,1,0,0,3,4,310,362,10,9,6,4,0,1,0,1,322,371,307,356,9,9,3,1,0,1,0,0,3,4,309,360,10,9,6,4,0,1,0,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,16,519,258,261,251,245,7,11,0,2,0,1,0,0,0,2,251,247,7,11,0,3,0,2,0,0,256,261,249,245,7,11,0,2,0,1,0,0,0,2,249,247,7,11,0,3,0,2,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,17,297,117,180,113,169,2,10,1,1,0,0,0,0,1,0,114,169,3,10,1,1,0,0,0,0,116,177,112,166,2,10,1,1,0,0,0,0,1,0,113,166,3,10,1,1,0,0,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,9,18,335,106,229,104,217,2,9,0,0,0,3,0,0,0,0,104,217,2,9,0,0,0,3,0,0,105,228,103,216,2,9,0,0,0,3,0,0,0,0,103,216,2,9,0,0,0,3,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,0,14924,7379,7545,7018,7146,213,252,32,36,9,21,10,1,97,89,7108,7228,261,296,74,72,23,34,14,4,7182,7387,6843,7007,209,244,28,34,7,21,1,0,94,81,6930,7082,254,284,70,66,21,34,5,2,197,158,175,139,4,8,4,2,2,0,9,1,3,8,178,146,7,12,4,6,2,0,9,2 -050,01,029,Alabama,Cleburne County,10,1,856,433,423,412,394,11,13,0,2,0,0,0,0,10,14,422,407,18,24,1,5,3,0,0,1,418,408,398,383,10,12,0,2,0,0,0,0,10,11,408,394,17,21,1,4,3,0,0,0,15,15,14,11,1,1,0,0,0,0,0,0,0,3,14,13,1,3,0,1,0,0,0,1 -050,01,029,Alabama,Cleburne County,10,2,966,485,481,446,440,18,19,1,2,1,1,0,0,19,19,464,458,32,31,3,5,4,5,1,1,461,457,424,417,17,18,1,2,1,1,0,0,18,19,441,435,30,30,3,5,4,5,1,1,24,24,22,23,1,1,0,0,0,0,0,0,1,0,23,23,2,1,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,3,992,521,471,490,438,16,16,2,5,0,0,1,0,12,12,502,448,23,24,6,10,1,1,1,0,501,447,472,418,15,12,1,5,0,0,1,0,12,12,484,428,22,20,5,10,1,1,1,0,20,24,18,20,1,4,1,0,0,0,0,0,0,0,18,20,1,4,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,4,910,507,403,479,384,11,13,4,2,2,0,0,0,11,4,487,388,19,14,9,3,3,1,1,1,494,387,468,369,11,13,3,2,2,0,0,0,10,3,475,372,18,14,8,2,3,1,1,1,13,16,11,15,0,0,1,0,0,0,0,0,1,1,12,16,1,0,1,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,5,789,413,376,386,357,17,14,3,0,2,1,0,1,5,3,391,360,19,15,5,1,2,2,1,1,401,365,375,348,17,14,2,0,2,1,0,0,5,2,380,350,19,14,4,1,2,2,1,0,12,11,11,9,0,0,1,0,0,0,0,1,0,1,11,10,0,1,1,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,10,6,906,465,441,443,426,16,10,0,1,0,0,3,0,3,4,445,430,18,12,2,2,0,1,3,0,452,436,433,422,16,10,0,0,0,0,0,0,3,4,435,426,18,12,2,1,0,1,0,0,13,5,10,4,0,0,0,1,0,0,3,0,0,0,10,4,0,0,0,1,0,0,3,0 -050,01,029,Alabama,Cleburne County,10,7,804,369,435,351,410,7,19,1,3,1,2,2,0,7,1,358,411,9,19,5,3,2,3,3,0,353,422,337,398,7,18,1,3,1,2,0,0,7,1,344,399,9,18,5,3,2,3,1,0,16,13,14,12,0,1,0,0,0,0,2,0,0,0,14,12,0,1,0,0,0,0,2,0 -050,01,029,Alabama,Cleburne County,10,8,813,419,394,394,378,18,12,2,4,2,0,1,0,2,0,395,378,20,12,2,4,3,0,1,0,405,392,383,377,18,11,2,4,0,0,0,0,2,0,384,377,20,11,2,4,1,0,0,0,14,2,11,1,0,1,0,0,2,0,1,0,0,0,11,1,0,1,0,0,2,0,1,0 -050,01,029,Alabama,Cleburne County,10,9,927,468,459,451,436,7,13,3,5,1,2,2,0,4,3,455,439,8,14,7,7,1,2,2,0,451,450,436,427,7,13,3,5,1,2,0,0,4,3,440,430,8,14,7,7,1,2,0,0,17,9,15,9,0,0,0,0,0,0,2,0,0,0,15,9,0,0,0,0,0,0,2,0 -050,01,029,Alabama,Cleburne County,10,10,1033,530,503,511,482,15,10,0,1,0,2,1,0,3,8,514,489,15,13,3,5,0,4,1,0,509,495,492,474,14,10,0,1,0,2,0,0,3,8,495,481,14,13,3,5,0,4,0,0,21,8,19,8,1,0,0,0,0,0,1,0,0,0,19,8,1,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,10,11,1042,507,535,488,508,15,20,2,1,0,1,0,0,2,5,490,513,16,23,3,3,0,1,0,0,500,527,482,502,15,20,1,1,0,1,0,0,2,3,484,505,16,23,2,1,0,1,0,0,7,8,6,6,0,0,1,0,0,0,0,0,0,2,6,8,0,0,1,2,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,12,1082,520,562,494,534,18,19,3,3,0,2,0,0,5,4,499,538,18,20,7,5,1,3,0,0,510,554,484,528,18,19,3,2,0,2,0,0,5,3,489,531,18,19,7,4,1,3,0,0,10,8,10,6,0,0,0,1,0,0,0,0,0,1,10,7,0,1,0,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,13,963,468,495,446,472,15,16,2,2,0,2,0,0,5,3,451,475,16,16,6,5,0,2,0,0,463,489,442,466,15,16,2,2,0,2,0,0,4,3,446,469,15,16,6,5,0,2,0,0,5,6,4,6,0,0,0,0,0,0,0,0,1,0,5,6,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,14,900,435,465,420,444,9,18,3,1,0,1,0,0,3,1,423,445,9,18,5,2,1,1,0,0,431,462,416,441,9,18,3,1,0,1,0,0,3,1,419,442,9,18,5,2,1,1,0,0,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,15,758,348,410,330,389,9,11,4,1,0,3,0,0,5,6,334,393,10,12,8,7,1,4,0,0,346,409,328,388,9,11,4,1,0,3,0,0,5,6,332,392,10,12,8,7,1,4,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,16,534,268,266,260,249,7,12,1,2,0,1,0,0,0,2,260,251,7,12,1,4,0,1,0,0,266,265,258,248,7,12,1,2,0,1,0,0,0,2,258,250,7,12,1,4,0,1,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,17,299,115,184,112,175,1,8,1,1,0,0,0,0,1,0,113,175,1,8,1,1,1,0,0,0,114,182,111,173,1,8,1,1,0,0,0,0,1,0,112,173,1,8,1,1,1,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,10,18,350,108,242,105,230,3,9,0,0,0,3,0,0,0,0,105,230,3,9,0,0,0,3,0,0,107,240,104,228,3,9,0,0,0,3,0,0,0,0,104,228,3,9,0,0,0,3,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,0,15047,7432,7615,7073,7219,203,236,33,42,10,20,10,1,103,97,7172,7307,254,291,78,75,19,35,13,4,7228,7437,6894,7067,199,227,27,34,8,20,1,0,99,89,6989,7147,249,279,70,65,16,33,4,2,204,178,179,152,4,9,6,8,2,0,9,1,4,8,183,160,5,12,8,10,3,2,9,2 -050,01,029,Alabama,Cleburne County,11,1,922,463,459,436,428,11,6,0,7,0,0,0,0,16,18,452,446,22,19,4,11,1,0,0,1,451,427,424,405,11,4,0,3,0,0,0,0,16,15,440,420,22,16,4,6,1,0,0,0,12,32,12,23,0,2,0,4,0,0,0,0,0,3,12,26,0,3,0,5,0,0,0,1 -050,01,029,Alabama,Cleburne County,11,2,940,485,455,451,424,14,15,2,0,0,0,0,0,18,16,469,439,27,27,5,4,2,1,1,0,460,434,429,403,12,15,2,0,0,0,0,0,17,16,446,418,25,27,4,4,2,1,1,0,25,21,22,21,2,0,0,0,0,0,0,0,1,0,23,21,2,0,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,3,985,495,490,461,450,19,22,2,5,1,1,1,0,11,12,471,459,26,33,5,5,3,5,1,0,478,466,446,431,18,17,2,5,1,1,1,0,10,12,455,440,25,28,5,5,2,5,1,0,17,24,15,19,1,5,0,0,0,0,0,0,1,0,16,19,1,5,0,0,1,0,0,0 -050,01,029,Alabama,Cleburne County,11,4,921,534,387,501,366,14,11,3,3,2,0,0,0,14,7,514,373,24,15,6,5,3,0,1,1,520,370,490,349,14,11,1,3,2,0,0,0,13,7,502,356,23,15,4,5,3,0,1,1,14,17,11,17,0,0,2,0,0,0,0,0,1,0,12,17,1,0,2,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,5,749,392,357,366,339,14,12,5,1,2,2,0,0,5,3,370,342,17,14,6,2,4,2,0,0,378,347,353,331,14,12,4,1,2,2,0,0,5,1,357,332,17,13,5,1,4,2,0,0,14,10,13,8,0,0,1,0,0,0,0,0,0,2,13,10,0,1,1,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,6,942,484,458,466,441,11,9,2,1,0,1,3,1,2,5,468,445,11,13,4,2,0,2,3,1,466,449,453,434,11,9,0,0,0,1,0,0,2,5,455,438,11,13,2,1,0,2,0,0,18,9,13,7,0,0,2,1,0,0,3,1,0,0,13,7,0,0,2,1,0,0,3,1 -050,01,029,Alabama,Cleburne County,11,7,813,384,429,367,403,5,20,1,2,2,2,2,0,7,2,373,404,7,21,6,3,2,3,3,0,366,417,351,392,5,19,1,2,2,2,0,0,7,2,357,393,7,20,6,3,2,3,1,0,18,12,16,11,0,1,0,0,0,0,2,0,0,0,16,11,0,1,0,0,0,0,2,0 -050,01,029,Alabama,Cleburne County,11,8,857,420,437,399,413,15,17,2,6,2,0,1,0,1,1,400,414,15,17,3,7,2,0,1,0,407,428,389,407,15,16,2,4,0,0,0,0,1,1,390,408,15,16,3,5,0,0,0,0,13,9,10,6,0,1,0,2,2,0,1,0,0,0,10,6,0,1,0,2,2,0,1,0 -050,01,029,Alabama,Cleburne County,11,9,891,447,444,433,423,9,12,0,5,1,1,1,0,3,3,436,426,9,13,3,6,1,1,1,1,430,437,417,416,9,12,0,5,1,1,0,0,3,3,420,419,9,13,3,6,1,1,0,1,17,7,16,7,0,0,0,0,0,0,1,0,0,0,16,7,0,0,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,11,10,1037,523,514,503,493,13,10,0,2,0,2,2,0,5,7,508,499,15,14,3,5,0,3,2,0,500,505,483,484,12,10,0,2,0,2,0,0,5,7,488,490,14,14,3,5,0,3,0,0,23,9,20,9,1,0,0,0,0,0,2,0,0,0,20,9,1,0,0,0,0,0,2,0 -050,01,029,Alabama,Cleburne County,11,11,1057,528,529,511,508,15,12,1,0,0,2,0,0,1,7,512,514,16,13,1,3,0,6,0,0,520,524,504,505,15,12,0,0,0,2,0,0,1,5,505,509,16,13,0,3,0,4,0,0,8,5,7,3,0,0,1,0,0,0,0,0,0,2,7,5,0,0,1,0,0,2,0,0 -050,01,029,Alabama,Cleburne County,11,12,1079,539,540,510,518,19,18,4,0,0,2,0,0,6,2,516,520,21,19,8,0,0,3,0,0,529,533,500,512,19,18,4,0,0,2,0,0,6,1,506,513,21,18,8,0,0,3,0,0,10,7,10,6,0,0,0,0,0,0,0,0,0,1,10,7,0,1,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,13,941,427,514,412,489,10,16,1,4,0,2,0,0,4,3,416,492,10,16,4,6,1,3,0,0,424,509,409,485,10,16,1,3,0,2,0,0,4,3,413,488,10,16,4,5,1,3,0,0,3,5,3,4,0,0,0,1,0,0,0,0,0,0,3,4,0,0,0,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,14,904,442,462,422,436,12,20,4,2,0,1,0,0,4,3,426,438,12,21,8,5,0,1,0,0,437,457,418,431,12,20,4,2,0,1,0,0,3,3,421,433,12,21,7,5,0,1,0,0,5,5,4,5,0,0,0,0,0,0,0,0,1,0,5,5,0,0,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,15,770,354,416,334,399,12,8,4,0,0,3,0,0,4,6,338,405,12,8,8,5,0,4,0,0,351,415,331,398,12,8,4,0,0,3,0,0,4,6,335,404,12,8,8,5,0,4,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,16,578,282,296,273,281,7,11,1,2,0,0,0,0,1,2,274,283,7,11,2,4,0,0,0,0,280,295,271,280,7,11,1,2,0,0,0,0,1,2,272,282,7,11,2,4,0,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,17,309,120,189,118,176,1,10,0,2,0,1,0,0,1,0,119,176,1,10,1,2,0,1,0,0,119,188,117,175,1,10,0,2,0,1,0,0,1,0,118,175,1,10,1,2,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,11,18,352,113,239,110,232,2,7,1,0,0,0,0,0,0,0,110,232,2,7,1,0,0,0,0,0,112,236,109,229,2,7,1,0,0,0,0,0,0,0,109,229,2,7,1,0,0,0,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,0,14952,7347,7605,7000,7214,198,229,35,44,10,20,10,1,94,97,7084,7301,249,284,67,81,27,31,14,5,7137,7423,6814,7056,194,220,29,38,8,20,1,0,91,89,6896,7136,244,270,59,73,24,30,5,3,210,182,186,158,4,9,6,6,2,0,9,1,3,8,188,165,5,14,8,8,3,1,9,2 -050,01,029,Alabama,Cleburne County,12,1,894,449,445,419,413,9,10,1,6,0,0,0,0,20,16,437,429,25,22,4,8,3,1,0,1,437,412,407,389,9,8,1,2,0,0,0,0,20,13,425,402,25,18,4,3,3,1,0,1,12,33,12,24,0,2,0,4,0,0,0,0,0,3,12,27,0,4,0,5,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,2,940,477,463,451,432,15,11,2,1,0,0,0,0,9,19,460,449,22,24,3,7,1,2,0,0,455,446,430,415,14,11,2,1,0,0,0,0,9,19,439,432,21,24,3,7,1,2,0,0,22,17,21,17,1,0,0,0,0,0,0,0,0,0,21,17,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,3,956,480,476,457,444,15,18,0,4,1,1,0,0,7,9,464,453,19,24,1,7,3,1,0,0,461,448,440,419,14,15,0,4,1,1,0,0,6,9,446,428,17,21,1,7,3,1,0,0,19,28,17,25,1,3,0,0,0,0,0,0,1,0,18,25,2,3,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,4,890,496,394,460,368,14,10,4,5,2,0,1,0,15,11,474,377,22,18,8,8,6,2,1,0,478,377,446,353,13,8,2,5,2,0,1,0,14,11,460,362,21,16,5,8,5,2,1,0,18,17,14,15,1,2,2,0,0,0,0,0,1,0,14,15,1,2,3,0,1,0,0,0 -050,01,029,Alabama,Cleburne County,12,5,745,375,370,356,353,9,11,4,1,2,2,0,0,4,3,360,355,13,14,4,1,2,2,0,1,366,357,347,342,9,11,4,1,2,2,0,0,4,1,351,343,13,12,4,1,2,2,0,0,9,13,9,11,0,0,0,0,0,0,0,0,0,2,9,12,0,2,0,0,0,0,0,1 -050,01,029,Alabama,Cleburne County,12,6,929,474,455,452,436,14,11,3,2,0,1,2,1,3,4,455,440,17,12,3,4,0,1,2,2,453,446,436,429,14,11,0,1,0,1,0,0,3,4,439,433,17,12,0,3,0,1,0,1,21,9,16,7,0,0,3,1,0,0,2,1,0,0,16,7,0,0,3,1,0,0,2,1 -050,01,029,Alabama,Cleburne County,12,7,817,407,410,388,389,6,17,1,1,2,1,3,0,7,2,392,391,9,17,3,2,5,2,5,0,395,397,379,377,6,16,1,1,2,1,0,0,7,2,383,379,9,16,3,2,5,2,2,0,12,13,9,12,0,1,0,0,0,0,3,0,0,0,9,12,0,1,0,0,0,0,3,0 -050,01,029,Alabama,Cleburne County,12,8,871,422,449,400,431,16,11,2,5,2,1,1,0,1,1,401,432,16,12,3,5,2,1,1,0,400,440,381,423,16,10,2,5,0,1,0,0,1,1,382,424,16,11,3,5,0,1,0,0,22,9,19,8,0,1,0,0,2,0,1,0,0,0,19,8,0,1,0,0,2,0,1,0 -050,01,029,Alabama,Cleburne County,12,9,823,418,405,405,384,9,13,1,5,0,1,0,0,3,2,407,385,11,15,3,5,0,2,0,0,405,398,392,377,9,13,1,5,0,1,0,0,3,2,394,378,11,15,3,5,0,2,0,0,13,7,13,7,0,0,0,0,0,0,0,0,0,0,13,7,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,10,1067,537,530,515,504,14,15,0,3,1,2,3,0,4,6,518,508,15,19,3,7,2,2,3,0,515,522,497,496,13,15,0,3,1,2,0,0,4,6,500,500,14,19,3,7,2,2,0,0,22,8,18,8,1,0,0,0,0,0,3,0,0,0,18,8,1,0,0,0,0,0,3,0 -050,01,029,Alabama,Cleburne County,12,11,997,505,492,492,471,10,11,1,0,0,2,0,0,2,8,494,478,11,13,2,6,0,3,0,0,491,486,479,467,10,11,0,0,0,2,0,0,2,6,481,472,11,12,1,5,0,3,0,0,14,6,13,4,0,0,1,0,0,0,0,0,0,2,13,6,0,1,1,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,12,1118,555,563,523,540,23,18,4,0,0,2,0,0,5,3,528,543,23,18,7,1,1,4,1,0,546,556,514,534,23,18,4,0,0,2,0,0,5,2,519,536,23,18,7,1,1,3,1,0,9,7,9,6,0,0,0,0,0,0,0,0,0,1,9,7,0,0,0,0,0,1,0,0 -050,01,029,Alabama,Cleburne County,12,13,890,407,483,393,461,9,14,0,4,0,1,0,0,5,3,398,464,10,15,4,6,0,1,0,0,402,479,388,458,9,14,0,3,0,1,0,0,5,3,393,461,10,15,4,5,0,1,0,0,5,4,5,3,0,0,0,1,0,0,0,0,0,0,5,3,0,0,0,1,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,14,923,449,474,432,447,11,19,4,2,0,2,0,0,2,4,434,451,11,19,6,6,0,2,0,0,445,468,429,441,11,19,4,2,0,2,0,0,1,4,430,445,11,19,5,6,0,2,0,0,4,6,3,6,0,0,0,0,0,0,0,0,1,0,4,6,0,0,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,15,828,373,455,352,438,12,9,5,1,0,3,0,0,4,4,355,442,12,10,7,3,2,3,1,1,370,454,349,437,12,9,5,1,0,3,0,0,4,4,352,441,12,10,7,3,2,3,1,1,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,16,586,270,316,256,300,10,13,2,2,0,0,0,0,2,1,257,300,11,14,4,2,0,1,0,0,268,316,254,300,10,13,2,2,0,0,0,0,2,1,255,300,11,14,4,2,0,1,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,17,320,142,178,141,166,0,9,0,1,0,1,0,0,1,1,142,167,0,9,1,2,0,1,0,0,140,178,139,166,0,9,0,1,0,1,0,0,1,1,140,167,0,9,1,2,0,1,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,12,18,358,111,247,108,237,2,9,1,1,0,0,0,0,0,0,108,237,2,9,1,1,0,0,0,0,110,243,107,233,2,9,1,1,0,0,0,0,0,0,107,233,2,9,1,1,0,0,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,0,14967,7354,7613,6993,7202,207,232,35,43,11,18,10,1,98,117,7086,7309,268,303,66,81,22,30,14,9,7143,7408,6809,7027,203,219,29,37,7,18,1,0,94,107,6898,7125,260,283,60,73,18,28,5,8,211,205,184,175,4,13,6,6,4,0,9,1,4,10,188,184,8,20,6,8,4,2,9,1 -050,01,029,Alabama,Cleburne County,13,1,927,464,463,430,430,13,12,1,5,0,0,0,0,20,16,450,446,30,24,3,8,2,0,0,1,448,418,415,395,13,10,1,1,0,0,0,0,19,12,434,407,29,19,3,3,2,0,0,1,16,45,15,35,0,2,0,4,0,0,0,0,1,4,16,39,1,5,0,5,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,2,940,473,467,450,427,12,12,2,2,0,0,0,0,9,26,459,453,17,33,5,6,0,2,1,0,449,447,427,410,11,9,2,2,0,0,0,0,9,26,436,436,16,30,5,6,0,2,1,0,24,20,23,17,1,3,0,0,0,0,0,0,0,0,23,17,1,3,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,3,964,486,478,460,439,14,19,0,2,2,1,0,0,10,17,469,456,22,29,1,6,4,3,1,1,470,452,447,415,13,17,0,2,1,1,0,0,9,17,455,432,20,27,1,6,3,3,1,1,16,26,13,24,1,2,0,0,1,0,0,0,1,0,14,24,2,2,0,0,1,0,0,0 -050,01,029,Alabama,Cleburne County,13,4,886,483,403,444,370,18,13,4,6,3,0,1,0,13,14,457,381,27,22,7,9,4,3,1,2,466,383,432,353,17,10,2,6,2,0,1,0,12,14,444,364,25,19,5,9,3,3,1,2,17,20,12,17,1,3,2,0,1,0,0,0,1,0,13,17,2,3,2,0,1,0,0,0 -050,01,029,Alabama,Cleburne County,13,5,747,385,362,363,350,8,10,5,1,2,0,0,0,7,1,370,351,13,11,6,1,3,0,0,0,378,348,356,337,8,10,5,1,2,0,0,0,7,0,363,337,13,10,6,1,3,0,0,0,7,14,7,13,0,0,0,0,0,0,0,0,0,1,7,14,0,1,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,6,892,438,454,424,439,10,7,2,2,0,0,0,1,2,5,426,443,11,10,2,3,1,1,0,2,424,440,411,428,10,7,1,1,0,0,0,0,2,4,413,431,11,9,1,2,1,1,0,1,14,14,13,11,0,0,1,1,0,0,0,1,0,1,13,12,0,1,1,1,0,0,0,1 -050,01,029,Alabama,Cleburne County,13,7,841,436,405,408,382,11,20,3,0,2,1,5,0,7,2,414,383,14,22,6,1,3,1,6,0,416,392,395,370,11,19,1,0,2,1,0,0,7,2,401,371,14,21,4,1,3,1,1,0,20,13,13,12,0,1,2,0,0,0,5,0,0,0,13,12,0,1,2,0,0,0,5,0 -050,01,029,Alabama,Cleburne County,13,8,871,425,446,405,425,15,12,2,6,0,2,1,0,2,1,407,426,17,12,2,7,0,2,1,0,407,437,388,418,15,10,2,6,0,2,0,0,2,1,390,419,17,10,2,7,0,2,0,0,18,9,17,7,0,2,0,0,0,0,1,0,0,0,17,7,0,2,0,0,0,0,1,0 -050,01,029,Alabama,Cleburne County,13,9,799,401,398,387,379,9,13,1,4,2,1,0,0,2,1,389,380,10,14,2,4,2,1,0,0,387,394,375,375,9,13,1,4,0,1,0,0,2,1,377,376,10,14,2,4,0,1,0,0,14,4,12,4,0,0,0,0,2,0,0,0,0,0,12,4,0,0,0,0,2,0,0,0 -050,01,029,Alabama,Cleburne County,13,10,1014,509,505,490,487,13,10,0,4,0,0,3,0,3,4,493,490,15,14,2,5,0,0,3,0,489,496,474,478,12,10,0,4,0,0,0,0,3,4,477,481,14,14,2,5,0,0,0,0,20,9,16,9,1,0,0,0,0,0,3,0,0,0,16,9,1,0,0,0,0,0,3,0 -050,01,029,Alabama,Cleburne County,13,11,1016,527,489,508,470,14,8,1,0,0,2,0,0,4,9,511,478,15,11,4,6,1,3,0,0,508,483,490,465,14,8,0,0,0,2,0,0,4,8,493,472,15,10,3,6,1,3,0,0,19,6,18,5,0,0,1,0,0,0,0,0,0,1,18,6,0,1,1,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,12,1077,538,539,510,507,21,22,3,0,0,3,0,0,4,7,513,512,23,25,5,5,0,4,1,0,531,532,503,502,21,22,3,0,0,3,0,0,4,5,506,506,23,24,5,4,0,3,1,0,7,7,7,5,0,0,0,0,0,0,0,0,0,2,7,6,0,1,0,1,0,1,0,0 -050,01,029,Alabama,Cleburne County,13,13,959,440,519,421,499,12,10,1,4,0,2,0,0,6,4,427,503,13,10,5,6,1,4,0,1,434,513,415,495,12,10,1,3,0,2,0,0,6,3,421,498,13,10,5,5,1,3,0,1,6,6,6,4,0,0,0,1,0,0,0,0,0,1,6,5,0,0,0,1,0,1,0,0 -050,01,029,Alabama,Cleburne County,13,14,922,442,480,426,452,10,20,4,2,0,2,0,0,2,4,428,456,11,20,5,5,0,2,0,1,438,474,423,446,10,20,4,2,0,2,0,0,1,4,424,450,10,20,5,5,0,2,0,1,4,6,3,6,0,0,0,0,0,0,0,0,1,0,4,6,1,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,15,825,383,442,362,421,14,14,3,1,0,3,0,0,4,3,366,423,16,16,6,2,0,3,0,1,379,441,358,420,14,14,3,1,0,3,0,0,4,3,362,422,16,16,6,2,0,3,0,1,4,1,4,1,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,16,595,262,333,247,319,11,12,2,1,0,0,0,0,2,1,248,320,12,12,4,2,0,0,0,0,261,332,246,318,11,12,2,1,0,0,0,0,2,1,247,319,12,12,4,2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,17,344,151,193,150,178,0,10,0,2,0,1,0,0,1,2,151,180,0,10,0,4,1,1,0,0,149,193,148,178,0,10,0,2,0,1,0,0,1,2,149,180,0,10,0,4,1,1,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,029,Alabama,Cleburne County,13,18,348,111,237,108,228,2,8,1,1,0,0,0,0,0,0,108,228,2,8,1,1,0,0,0,0,109,233,106,224,2,8,1,1,0,0,0,0,0,0,106,224,2,8,1,1,0,0,0,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,1,0,49948,24684,25264,19314,19384,4036,4431,356,369,227,431,159,71,592,578,19857,19911,4257,4668,624,634,400,581,181,101,22831,23937,17870,18312,3927,4346,287,316,217,422,31,20,499,521,18334,18791,4102,4551,509,559,363,553,52,47,1853,1327,1444,1072,109,85,69,53,10,9,128,51,93,57,1523,1120,155,117,115,75,37,28,129,54 -050,01,031,Alabama,Coffee County,1,1,3303,1727,1576,1293,1146,287,291,15,23,14,15,21,13,97,88,1386,1231,340,345,39,43,46,37,27,16,1464,1378,1083,985,270,283,13,17,11,15,3,0,84,78,1164,1061,315,332,29,34,40,33,8,3,263,198,210,161,17,8,2,6,3,0,18,13,13,10,222,170,25,13,10,9,6,4,19,13 -050,01,031,Alabama,Coffee County,1,2,3187,1676,1511,1223,1130,323,269,25,26,26,12,6,7,73,67,1292,1192,360,314,45,45,48,24,7,9,1486,1369,1059,1012,316,260,19,21,25,11,1,2,66,63,1121,1070,350,302,37,38,45,22,2,4,190,142,164,118,7,9,6,5,1,1,5,5,7,4,171,122,10,12,8,7,3,2,5,5 -050,01,031,Alabama,Coffee County,1,3,3457,1745,1712,1303,1227,314,352,23,42,19,17,5,2,81,72,1377,1292,352,390,47,70,48,34,8,3,1602,1600,1181,1138,306,341,21,40,17,17,2,1,75,63,1250,1194,341,374,42,65,43,31,5,2,143,112,122,89,8,11,2,2,2,0,3,1,6,9,127,98,11,16,5,5,5,3,3,1 -050,01,031,Alabama,Coffee County,1,4,3370,1703,1667,1230,1162,365,391,31,35,16,15,7,5,54,59,1280,1219,387,407,56,65,33,29,7,11,1589,1572,1141,1089,359,385,23,28,16,15,3,0,47,55,1184,1142,380,399,43,57,30,29,3,4,114,95,89,73,6,6,8,7,0,0,4,5,7,4,96,77,7,8,13,8,3,0,4,7 -050,01,031,Alabama,Coffee County,1,5,3073,1625,1448,1239,1097,262,263,31,17,21,14,33,10,39,47,1272,1141,282,284,46,33,32,30,34,13,1427,1321,1103,996,248,255,25,13,20,14,2,3,29,40,1130,1034,263,272,34,27,28,28,3,6,198,127,136,101,14,8,6,4,1,0,31,7,10,7,142,107,19,12,12,6,4,2,31,7 -050,01,031,Alabama,Coffee County,1,6,3659,1956,1703,1550,1299,267,290,21,24,24,35,41,11,53,44,1596,1334,286,304,45,45,46,53,42,14,1654,1546,1327,1176,252,275,15,19,23,34,1,4,36,38,1360,1208,261,286,32,35,39,50,2,7,302,157,223,123,15,15,6,5,1,1,40,7,17,6,236,126,25,18,13,10,7,3,40,7 -050,01,031,Alabama,Coffee County,1,7,3240,1676,1564,1286,1174,282,291,31,29,23,28,24,13,30,29,1316,1200,292,302,43,40,30,38,25,16,1466,1428,1131,1068,266,281,21,22,23,27,7,5,18,25,1149,1090,270,290,29,32,28,36,8,8,210,136,155,106,16,10,10,7,0,1,17,8,12,4,167,110,22,12,14,8,2,2,17,8 -050,01,031,Alabama,Coffee County,1,8,3300,1603,1697,1240,1300,275,305,38,22,16,37,4,3,30,30,1268,1328,280,312,58,41,26,47,5,4,1493,1598,1155,1214,270,303,29,18,15,36,1,0,23,27,1176,1239,272,308,46,35,23,45,2,1,110,99,85,86,5,2,9,4,1,1,3,3,7,3,92,89,8,4,12,6,3,2,3,3 -050,01,031,Alabama,Coffee County,1,9,3312,1646,1666,1318,1300,256,280,23,19,17,38,4,1,28,28,1341,1326,260,285,43,40,24,42,6,4,1558,1597,1250,1246,250,276,16,15,17,37,1,0,24,23,1270,1268,253,278,32,33,24,41,3,2,88,69,68,54,6,4,7,4,0,1,3,1,4,5,71,58,7,7,11,7,0,1,3,2 -050,01,031,Alabama,Coffee County,1,10,3453,1769,1684,1411,1301,274,291,29,28,20,38,5,3,30,23,1437,1318,280,301,52,43,24,43,6,4,1708,1639,1364,1260,272,289,23,28,20,38,2,2,27,22,1388,1277,275,298,46,43,23,42,3,3,61,45,47,41,2,2,6,0,0,0,3,1,3,1,49,41,5,3,6,0,1,1,3,1 -050,01,031,Alabama,Coffee County,1,11,3350,1604,1746,1256,1309,291,336,23,31,9,51,2,1,23,18,1277,1326,291,337,40,42,14,56,5,3,1545,1701,1210,1271,285,333,21,29,8,49,2,1,19,18,1227,1288,285,334,34,40,13,54,5,3,59,45,46,38,6,3,2,2,1,2,0,0,4,0,50,38,6,3,6,2,1,2,0,0 -050,01,031,Alabama,Coffee County,1,12,3106,1461,1645,1143,1277,272,275,21,24,10,47,2,2,13,20,1153,1295,275,278,31,40,12,51,3,2,1413,1604,1105,1244,266,272,19,22,10,45,2,2,11,19,1114,1262,267,274,29,38,11,48,3,2,48,41,38,33,6,3,2,2,0,2,0,0,2,1,39,33,8,4,2,2,1,3,0,0 -050,01,031,Alabama,Coffee County,1,13,2928,1429,1499,1174,1183,209,248,18,15,6,31,1,0,21,22,1195,1203,211,250,35,33,8,35,1,2,1406,1478,1152,1165,209,246,17,14,6,31,1,0,21,22,1173,1185,211,248,34,32,8,35,1,2,23,21,22,18,0,2,1,1,0,0,0,0,0,0,22,18,0,2,1,1,0,0,0,0 -050,01,031,Alabama,Coffee County,1,14,2214,1019,1195,861,981,126,161,13,15,5,25,2,0,12,13,873,994,126,165,25,23,5,29,2,0,1006,1187,849,976,126,161,12,14,5,25,2,0,12,11,861,987,126,165,24,22,5,27,2,0,13,8,12,5,0,0,1,1,0,0,0,0,0,2,12,7,0,0,1,1,0,2,0,0 -050,01,031,Alabama,Coffee County,1,15,1811,817,994,719,844,87,139,8,3,1,7,0,0,2,1,721,845,88,139,10,4,1,7,0,0,809,983,712,834,87,138,7,3,1,7,0,0,2,1,714,835,88,138,9,4,1,7,0,0,8,11,7,10,0,1,1,0,0,0,0,0,0,0,7,10,0,1,1,0,0,0,0,0 -050,01,031,Alabama,Coffee County,1,16,1404,613,791,544,667,62,98,4,7,0,13,0,0,3,6,546,670,63,102,6,9,1,16,0,0,600,782,532,661,62,98,4,5,0,13,0,0,2,5,534,664,62,101,6,7,0,15,0,0,13,9,12,6,0,0,0,2,0,0,0,0,1,1,12,6,1,1,0,2,1,1,0,0 -050,01,031,Alabama,Coffee County,1,17,957,354,603,306,513,45,73,0,5,0,7,2,0,1,5,307,517,45,74,0,8,1,9,3,0,349,597,302,507,45,73,0,5,0,7,1,0,1,5,303,511,45,74,0,8,1,9,2,0,5,6,4,6,0,0,0,0,0,0,1,0,0,0,4,6,0,0,0,0,0,0,1,0 -050,01,031,Alabama,Coffee County,1,18,824,261,563,218,474,39,78,2,4,0,1,0,0,2,6,220,480,39,79,3,10,1,1,0,0,256,557,214,470,38,77,2,3,0,1,0,0,2,6,216,476,38,78,3,9,1,1,0,0,5,6,4,4,1,1,0,1,0,0,0,0,0,0,4,4,1,1,0,1,0,0,0,0 -050,01,031,Alabama,Coffee County,2,0,49951,24687,25264,19316,19384,4036,4431,356,369,227,431,159,71,593,578,19860,19911,4257,4668,625,634,400,581,181,101,22834,23937,17872,18312,3927,4346,287,316,217,422,31,20,500,521,18337,18791,4102,4551,510,559,363,553,52,47,1853,1327,1444,1072,109,85,69,53,10,9,128,51,93,57,1523,1120,155,117,115,75,37,28,129,54 -050,01,031,Alabama,Coffee County,2,1,3303,1727,1576,1293,1146,287,291,15,23,14,15,21,13,97,88,1386,1231,340,345,39,43,46,37,27,16,1464,1378,1083,985,270,283,13,17,11,15,3,0,84,78,1164,1061,315,332,29,34,40,33,8,3,263,198,210,161,17,8,2,6,3,0,18,13,13,10,222,170,25,13,10,9,6,4,19,13 -050,01,031,Alabama,Coffee County,2,2,3187,1676,1511,1223,1130,323,269,25,26,26,12,6,7,73,67,1292,1192,360,314,45,45,48,24,7,9,1486,1369,1059,1012,316,260,19,21,25,11,1,2,66,63,1121,1070,350,302,37,38,45,22,2,4,190,142,164,118,7,9,6,5,1,1,5,5,7,4,171,122,10,12,8,7,3,2,5,5 -050,01,031,Alabama,Coffee County,2,3,3458,1746,1712,1304,1227,314,352,23,42,19,17,5,2,81,72,1378,1292,352,390,47,70,48,34,8,3,1603,1600,1182,1138,306,341,21,40,17,17,2,1,75,63,1251,1194,341,374,42,65,43,31,5,2,143,112,122,89,8,11,2,2,2,0,3,1,6,9,127,98,11,16,5,5,5,3,3,1 -050,01,031,Alabama,Coffee County,2,4,3371,1704,1667,1231,1162,365,391,31,35,16,15,7,5,54,59,1281,1219,387,407,56,65,33,29,7,11,1590,1572,1142,1089,359,385,23,28,16,15,3,0,47,55,1185,1142,380,399,43,57,30,29,3,4,114,95,89,73,6,6,8,7,0,0,4,5,7,4,96,77,7,8,13,8,3,0,4,7 -050,01,031,Alabama,Coffee County,2,5,3073,1625,1448,1239,1097,262,263,31,17,21,14,33,10,39,47,1272,1141,282,284,46,33,32,30,34,13,1427,1321,1103,996,248,255,25,13,20,14,2,3,29,40,1130,1034,263,272,34,27,28,28,3,6,198,127,136,101,14,8,6,4,1,0,31,7,10,7,142,107,19,12,12,6,4,2,31,7 -050,01,031,Alabama,Coffee County,2,6,3658,1956,1702,1550,1298,267,290,21,24,24,35,41,11,53,44,1596,1333,286,304,45,45,46,53,42,14,1654,1545,1327,1175,252,275,15,19,23,34,1,4,36,38,1360,1207,261,286,32,35,39,50,2,7,302,157,223,123,15,15,6,5,1,1,40,7,17,6,236,126,25,18,13,10,7,3,40,7 -050,01,031,Alabama,Coffee County,2,7,3240,1676,1564,1286,1174,282,291,31,29,23,28,24,13,30,29,1316,1200,292,302,43,40,30,38,25,16,1466,1428,1131,1068,266,281,21,22,23,27,7,5,18,25,1149,1090,270,290,29,32,28,36,8,8,210,136,155,106,16,10,10,7,0,1,17,8,12,4,167,110,22,12,14,8,2,2,17,8 -050,01,031,Alabama,Coffee County,2,8,3300,1603,1697,1240,1300,275,305,38,22,16,37,4,3,30,30,1268,1328,280,312,58,41,26,47,5,4,1493,1598,1155,1214,270,303,29,18,15,36,1,0,23,27,1176,1239,272,308,46,35,23,45,2,1,110,99,85,86,5,2,9,4,1,1,3,3,7,3,92,89,8,4,12,6,3,2,3,3 -050,01,031,Alabama,Coffee County,2,9,3312,1646,1666,1318,1300,256,280,23,19,17,38,4,1,28,28,1341,1326,260,285,43,40,24,42,6,4,1558,1597,1250,1246,250,276,16,15,17,37,1,0,24,23,1270,1268,253,278,32,33,24,41,3,2,88,69,68,54,6,4,7,4,0,1,3,1,4,5,71,58,7,7,11,7,0,1,3,2 -050,01,031,Alabama,Coffee County,2,10,3454,1769,1685,1411,1302,274,291,29,28,20,38,5,3,30,23,1437,1319,280,301,52,43,24,43,6,4,1708,1640,1364,1261,272,289,23,28,20,38,2,2,27,22,1388,1278,275,298,46,43,23,42,3,3,61,45,47,41,2,2,6,0,0,0,3,1,3,1,49,41,5,3,6,0,1,1,3,1 -050,01,031,Alabama,Coffee County,2,11,3349,1604,1745,1256,1308,291,336,23,31,9,51,2,1,23,18,1277,1325,291,337,40,42,14,56,5,3,1545,1700,1210,1270,285,333,21,29,8,49,2,1,19,18,1227,1287,285,334,34,40,13,54,5,3,59,45,46,38,6,3,2,2,1,2,0,0,4,0,50,38,6,3,6,2,1,2,0,0 -050,01,031,Alabama,Coffee County,2,12,3108,1463,1645,1144,1277,272,275,21,24,10,47,2,2,14,20,1155,1295,275,278,32,40,12,51,3,2,1415,1604,1106,1244,266,272,19,22,10,45,2,2,12,19,1116,1262,267,274,30,38,11,48,3,2,48,41,38,33,6,3,2,2,0,2,0,0,2,1,39,33,8,4,2,2,1,3,0,0 -050,01,031,Alabama,Coffee County,2,13,2927,1428,1499,1173,1183,209,248,18,15,6,31,1,0,21,22,1194,1203,211,250,35,33,8,35,1,2,1405,1478,1151,1165,209,246,17,14,6,31,1,0,21,22,1172,1185,211,248,34,32,8,35,1,2,23,21,22,18,0,2,1,1,0,0,0,0,0,0,22,18,0,2,1,1,0,0,0,0 -050,01,031,Alabama,Coffee County,2,14,2214,1019,1195,861,981,126,161,13,15,5,25,2,0,12,13,873,994,126,165,25,23,5,29,2,0,1006,1187,849,976,126,161,12,14,5,25,2,0,12,11,861,987,126,165,24,22,5,27,2,0,13,8,12,5,0,0,1,1,0,0,0,0,0,2,12,7,0,0,1,1,0,2,0,0 -050,01,031,Alabama,Coffee County,2,15,1811,817,994,719,844,87,139,8,3,1,7,0,0,2,1,721,845,88,139,10,4,1,7,0,0,809,983,712,834,87,138,7,3,1,7,0,0,2,1,714,835,88,138,9,4,1,7,0,0,8,11,7,10,0,1,1,0,0,0,0,0,0,0,7,10,0,1,1,0,0,0,0,0 -050,01,031,Alabama,Coffee County,2,16,1405,613,792,544,668,62,98,4,7,0,13,0,0,3,6,546,671,63,102,6,9,1,16,0,0,600,783,532,662,62,98,4,5,0,13,0,0,2,5,534,665,62,101,6,7,0,15,0,0,13,9,12,6,0,0,0,2,0,0,0,0,1,1,12,6,1,1,0,2,1,1,0,0 -050,01,031,Alabama,Coffee County,2,17,957,354,603,306,513,45,73,0,5,0,7,2,0,1,5,307,517,45,74,0,8,1,9,3,0,349,597,302,507,45,73,0,5,0,7,1,0,1,5,303,511,45,74,0,8,1,9,2,0,5,6,4,6,0,0,0,0,0,0,1,0,0,0,4,6,0,0,0,0,0,0,1,0 -050,01,031,Alabama,Coffee County,2,18,824,261,563,218,474,39,78,2,4,0,1,0,0,2,6,220,480,39,79,3,10,1,1,0,0,256,557,214,470,38,77,2,3,0,1,0,0,2,6,216,476,38,78,3,9,1,1,0,0,5,6,4,4,1,1,0,1,0,0,0,0,0,0,4,4,1,1,0,1,0,0,0,0 -050,01,031,Alabama,Coffee County,3,0,50204,24806,25398,19409,19478,4061,4463,360,367,225,436,153,68,598,586,19957,20010,4294,4702,629,617,370,586,188,106,22936,24060,17950,18391,3951,4374,293,316,214,427,27,20,501,532,18413,18878,4148,4584,513,548,344,563,50,50,1870,1338,1459,1087,110,89,67,51,11,9,126,48,97,54,1544,1132,146,118,116,69,26,23,138,56 -050,01,031,Alabama,Coffee County,3,1,3327,1731,1596,1296,1160,291,296,15,21,15,16,19,11,95,92,1383,1244,352,354,34,36,43,41,24,19,1468,1394,1084,994,276,285,13,16,11,16,3,0,81,83,1159,1072,331,336,28,29,36,38,5,6,263,202,212,166,15,11,2,5,4,0,16,11,14,9,224,172,21,18,6,7,7,3,19,13 -050,01,031,Alabama,Coffee County,3,2,3204,1676,1528,1227,1147,320,267,23,26,25,13,6,9,75,66,1299,1210,362,303,42,43,48,28,8,11,1484,1384,1061,1028,311,258,18,21,24,12,1,3,69,62,1127,1087,350,292,35,36,45,27,2,5,192,144,166,119,9,9,5,5,1,1,5,6,6,4,172,123,12,11,7,7,3,1,6,6 -050,01,031,Alabama,Coffee County,3,3,3473,1766,1707,1313,1221,321,354,24,42,19,16,5,2,84,72,1389,1289,364,392,49,64,42,33,9,8,1617,1595,1187,1134,313,341,22,40,17,16,2,1,76,63,1257,1194,353,373,44,59,37,33,5,4,149,112,126,87,8,13,2,2,2,0,3,1,8,9,132,95,11,19,5,5,5,0,4,4 -050,01,031,Alabama,Coffee County,3,4,3349,1691,1658,1228,1149,359,394,29,36,16,15,6,4,53,60,1275,1205,382,421,50,60,29,32,10,8,1581,1565,1142,1076,352,388,23,29,16,15,2,0,46,57,1185,1129,370,413,41,52,28,31,5,4,110,93,86,73,7,6,6,7,0,0,4,4,7,3,90,76,12,8,9,8,1,1,5,4 -050,01,031,Alabama,Coffee County,3,5,3088,1627,1461,1245,1113,266,267,31,15,18,13,30,10,37,43,1277,1153,280,282,49,31,27,28,33,12,1431,1337,1107,1012,252,259,25,12,17,13,1,3,29,38,1131,1047,263,273,39,26,26,27,3,4,196,124,138,101,14,8,6,3,1,0,29,7,8,5,146,106,17,9,10,5,1,1,30,8 -050,01,031,Alabama,Coffee County,3,6,3667,1964,1703,1555,1299,268,289,22,24,25,34,41,10,53,47,1602,1342,284,303,47,42,42,51,45,13,1663,1545,1334,1175,253,275,16,18,24,33,1,4,35,40,1364,1212,263,286,32,35,37,46,5,7,301,158,221,124,15,14,6,6,1,1,40,6,18,7,238,130,21,17,15,7,5,5,40,6 -050,01,031,Alabama,Coffee County,3,7,3294,1707,1587,1308,1193,286,294,29,29,24,28,25,12,35,31,1341,1218,296,304,50,45,28,41,28,14,1494,1449,1153,1085,271,284,19,23,24,27,6,4,21,26,1172,1107,277,291,32,37,27,39,7,5,213,138,155,108,15,10,10,6,0,1,19,8,14,5,169,111,19,13,18,8,1,2,21,9 -050,01,031,Alabama,Coffee County,3,8,3286,1589,1697,1228,1296,274,310,38,22,17,36,3,3,29,30,1254,1323,282,319,54,35,23,47,5,3,1473,1594,1137,1208,269,306,29,18,16,35,1,0,21,27,1157,1232,273,313,40,30,21,46,3,0,116,103,91,88,5,4,9,4,1,1,2,3,8,3,97,91,9,6,14,5,2,1,2,3 -050,01,031,Alabama,Coffee County,3,9,3328,1659,1669,1327,1305,257,277,27,19,16,38,4,1,28,29,1352,1332,261,281,48,39,21,44,6,2,1570,1601,1260,1251,250,274,19,15,16,37,1,0,24,24,1282,1274,254,277,36,33,21,41,2,0,89,68,67,54,7,3,8,4,0,1,3,1,4,5,70,58,7,4,12,6,0,3,4,2 -050,01,031,Alabama,Coffee County,3,10,3488,1777,1711,1418,1318,276,297,28,28,19,40,6,3,30,25,1448,1339,277,304,51,46,25,43,7,6,1712,1664,1368,1275,274,295,22,28,19,40,2,2,27,24,1395,1295,275,301,42,45,25,43,3,5,65,47,50,43,2,2,6,0,0,0,4,1,3,1,53,44,2,3,9,1,0,0,4,1 -050,01,031,Alabama,Coffee County,3,11,3382,1627,1755,1275,1314,296,341,24,31,8,50,2,1,22,18,1294,1330,301,345,42,44,10,53,3,3,1570,1711,1231,1277,290,338,22,29,7,48,2,1,18,18,1247,1293,294,342,37,42,9,51,2,3,57,44,44,37,6,3,2,2,1,2,0,0,4,0,47,37,7,3,5,2,1,2,1,0 -050,01,031,Alabama,Coffee County,3,12,3117,1476,1641,1157,1276,268,271,23,25,10,47,2,2,16,20,1172,1291,269,277,34,40,13,50,5,4,1426,1600,1116,1243,263,269,21,22,10,45,2,2,14,19,1129,1257,264,275,31,36,13,48,4,4,50,41,41,33,5,2,2,3,0,2,0,0,2,1,43,34,5,2,3,4,0,2,1,0 -050,01,031,Alabama,Coffee County,3,13,2942,1434,1508,1173,1185,213,253,20,15,7,32,1,0,20,23,1191,1204,215,258,36,35,10,34,2,2,1408,1487,1149,1166,212,251,19,15,7,32,1,0,20,23,1167,1185,214,256,35,35,10,34,2,2,26,21,24,19,1,2,1,0,0,0,0,0,0,0,24,19,1,2,1,0,0,0,0,0 -050,01,031,Alabama,Coffee County,3,14,2232,1030,1202,870,988,128,161,13,15,5,26,1,0,13,12,883,1000,129,162,25,25,6,27,1,0,1017,1195,858,983,128,161,12,14,5,26,1,0,13,11,871,994,129,162,24,24,6,26,1,0,13,7,12,5,0,0,1,1,0,0,0,0,0,1,12,6,0,0,1,1,0,1,0,0 -050,01,031,Alabama,Coffee County,3,15,1805,812,993,710,840,91,139,8,4,1,8,0,0,2,2,712,842,91,140,8,5,3,8,0,0,804,982,703,830,91,138,7,4,1,8,0,0,2,2,705,832,91,139,7,5,3,8,0,0,8,11,7,10,0,1,1,0,0,0,0,0,0,0,7,10,0,1,1,0,0,0,0,0 -050,01,031,Alabama,Coffee County,3,16,1419,618,801,548,673,63,100,4,7,0,16,0,0,3,5,551,676,64,103,6,10,0,17,0,0,606,792,537,667,63,100,4,5,0,16,0,0,2,4,539,670,63,102,6,8,0,16,0,0,12,9,11,6,0,0,0,2,0,0,0,0,1,1,12,6,1,1,0,2,0,1,0,0 -050,01,031,Alabama,Coffee County,3,17,968,357,611,309,519,45,76,0,4,0,7,2,0,1,5,310,524,45,76,1,8,0,8,2,1,352,604,305,512,45,76,0,4,0,7,1,0,1,5,306,517,45,76,1,8,0,8,1,1,5,7,4,7,0,0,0,0,0,0,1,0,0,0,4,7,0,0,0,0,0,0,1,0 -050,01,031,Alabama,Coffee County,3,18,835,265,570,222,482,39,77,2,4,0,1,0,0,2,6,224,488,40,78,3,9,0,1,0,0,260,561,218,475,38,76,2,3,0,1,0,0,2,6,220,481,39,77,3,8,0,1,0,0,5,9,4,7,1,1,0,1,0,0,0,0,0,0,4,7,1,1,0,1,0,0,0,0 -050,01,031,Alabama,Coffee County,4,0,50449,24945,25504,19441,19449,4123,4548,363,380,246,458,148,66,624,603,20019,19988,4368,4799,640,636,407,608,185,108,23135,24146,18019,18339,4018,4471,299,324,234,451,29,19,536,542,18518,18825,4226,4689,531,559,374,586,58,47,1810,1358,1422,1110,105,77,64,56,12,7,119,47,88,61,1501,1163,142,110,109,77,33,22,127,61 -050,01,031,Alabama,Coffee County,4,1,3388,1747,1641,1311,1192,290,311,15,18,17,17,15,8,99,95,1405,1281,351,367,30,36,45,39,19,14,1507,1432,1106,1016,281,304,12,14,14,17,1,0,93,81,1194,1091,338,355,26,28,40,36,5,4,240,209,205,176,9,7,3,4,3,0,14,8,6,14,211,190,13,12,4,8,5,3,14,10 -050,01,031,Alabama,Coffee County,4,2,3164,1664,1500,1238,1122,291,260,22,26,26,13,10,9,77,70,1309,1187,335,302,42,44,47,32,11,11,1460,1363,1064,1009,281,253,19,21,24,13,3,1,69,66,1129,1070,320,293,36,36,43,32,4,2,204,137,174,113,10,7,3,5,2,0,7,8,8,4,180,117,15,9,6,8,4,0,7,9 -050,01,031,Alabama,Coffee County,4,3,3581,1860,1721,1347,1238,353,359,27,39,30,15,7,3,96,67,1435,1300,403,394,58,59,56,32,13,10,1689,1610,1199,1153,345,346,25,35,28,14,4,1,88,61,1280,1210,393,377,50,53,53,30,9,5,171,111,148,85,8,13,2,4,2,1,3,2,8,6,155,90,10,17,8,6,3,2,4,5 -050,01,031,Alabama,Coffee County,4,4,3345,1655,1690,1206,1153,344,404,26,39,14,18,4,3,61,73,1262,1217,371,435,50,64,30,40,7,7,1555,1586,1123,1072,340,398,22,32,14,18,2,0,54,66,1172,1130,364,424,43,55,29,39,5,4,100,104,83,81,4,6,4,7,0,0,2,3,7,7,90,87,7,11,7,9,1,1,2,3 -050,01,031,Alabama,Coffee County,4,5,3161,1646,1515,1267,1133,279,302,25,19,16,19,24,10,35,32,1301,1159,286,320,42,31,25,27,27,12,1489,1396,1153,1032,270,296,18,16,16,19,2,3,30,30,1182,1056,275,313,32,28,25,26,5,5,157,119,114,101,9,6,7,3,0,0,22,7,5,2,119,103,11,7,10,3,0,1,22,7 -050,01,031,Alabama,Coffee County,4,6,3543,1917,1626,1501,1232,281,290,29,26,23,26,38,6,45,46,1546,1271,291,310,51,45,36,43,41,10,1657,1472,1318,1107,264,284,24,17,21,25,1,1,29,38,1347,1141,269,298,38,33,31,38,3,3,260,154,183,125,17,6,5,9,2,1,37,5,16,8,199,130,22,12,13,12,5,5,38,7 -050,01,031,Alabama,Coffee County,4,7,3241,1655,1586,1251,1197,288,275,27,31,27,32,26,11,36,40,1285,1230,300,290,47,50,40,46,29,15,1467,1441,1127,1081,269,266,17,25,26,32,2,3,26,34,1151,1109,277,278,31,40,36,43,4,6,188,145,124,116,19,9,10,6,1,0,24,8,10,6,134,121,23,12,16,10,4,3,25,9 -050,01,031,Alabama,Coffee County,4,8,3194,1561,1633,1214,1224,255,312,37,22,19,37,4,6,32,32,1239,1253,266,317,55,38,28,48,11,9,1420,1525,1099,1135,250,304,29,19,18,37,3,2,21,28,1116,1160,255,308,41,35,24,47,6,3,141,108,115,89,5,8,8,3,1,0,1,4,11,4,123,93,11,9,14,3,4,1,5,6 -050,01,031,Alabama,Coffee County,4,9,3433,1716,1717,1334,1349,299,281,33,23,19,35,4,2,27,27,1358,1375,306,284,51,41,23,39,7,6,1614,1643,1261,1288,290,279,23,18,19,34,0,1,21,23,1280,1311,294,280,38,34,22,38,3,3,102,74,73,61,9,2,10,5,0,1,4,1,6,4,78,64,12,4,13,7,1,1,4,3 -050,01,031,Alabama,Coffee County,4,10,3475,1749,1726,1402,1311,270,321,24,26,20,40,5,4,28,24,1429,1332,274,328,44,42,27,42,5,6,1683,1676,1351,1269,268,317,18,25,20,40,2,3,24,22,1374,1288,271,323,36,41,25,42,2,4,66,50,51,42,2,4,6,1,0,0,3,1,4,2,55,44,3,5,8,1,2,0,3,2 -050,01,031,Alabama,Coffee County,4,11,3496,1706,1790,1320,1329,322,360,25,29,10,51,5,1,24,20,1342,1348,327,363,44,42,14,54,5,3,1655,1749,1284,1295,315,357,23,28,9,49,4,1,20,19,1303,1313,319,359,39,41,12,52,4,3,51,41,36,34,7,3,2,1,1,2,1,0,4,1,39,35,8,4,5,1,2,2,1,0 -050,01,031,Alabama,Coffee County,4,12,3104,1490,1614,1190,1255,249,261,19,25,11,49,1,2,20,22,1206,1272,253,268,34,41,14,54,3,2,1434,1572,1140,1221,245,259,18,21,11,48,1,2,19,21,1155,1237,249,265,32,37,14,53,3,2,56,42,50,34,4,2,1,4,0,1,0,0,1,1,51,35,4,3,2,4,0,1,0,0 -050,01,031,Alabama,Coffee County,4,13,2985,1447,1538,1180,1206,221,256,20,18,7,38,2,1,17,19,1195,1223,222,260,35,34,11,40,4,1,1414,1515,1152,1186,219,254,18,18,7,37,2,1,16,19,1167,1203,219,258,33,34,10,39,3,1,33,23,28,20,2,2,2,0,0,1,0,0,1,0,28,20,3,2,2,0,1,1,1,0 -050,01,031,Alabama,Coffee County,4,14,2337,1097,1240,912,1009,142,171,20,17,5,27,0,0,18,16,930,1025,143,172,36,32,7,28,0,0,1083,1230,899,1001,142,171,19,16,5,27,0,0,18,15,917,1016,143,172,35,30,7,28,0,0,14,10,13,8,0,0,1,1,0,0,0,0,0,1,13,9,0,0,1,2,0,0,0,0 -050,01,031,Alabama,Coffee County,4,15,1747,773,974,669,822,92,128,6,7,2,13,1,0,3,4,672,825,92,129,8,10,3,14,1,0,767,967,663,816,92,127,6,7,2,13,1,0,3,4,666,819,92,128,8,10,3,14,1,0,6,7,6,6,0,1,0,0,0,0,0,0,0,0,6,6,0,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,4,16,1436,635,801,558,669,68,104,6,7,0,18,0,0,3,3,561,671,68,104,8,9,1,19,0,1,623,792,547,662,68,104,6,5,0,18,0,0,2,3,549,664,68,104,8,7,0,19,0,1,12,9,11,7,0,0,0,2,0,0,0,0,1,0,12,7,0,0,0,2,1,0,0,0 -050,01,031,Alabama,Coffee County,4,17,985,358,627,315,529,40,81,0,3,0,7,2,0,1,7,316,534,40,84,1,8,0,8,2,0,354,622,312,525,40,81,0,3,0,7,1,0,1,6,313,530,40,83,1,8,0,7,1,0,4,5,3,4,0,0,0,0,0,0,1,0,0,1,3,4,0,1,0,0,0,1,1,0 -050,01,031,Alabama,Coffee County,4,18,834,269,565,226,479,39,72,2,5,0,3,0,0,2,6,228,485,40,72,4,10,0,3,0,1,264,555,221,471,39,71,2,4,0,3,0,0,2,6,223,477,40,71,4,9,0,3,0,1,5,10,5,8,0,1,0,1,0,0,0,0,0,0,5,8,0,1,0,1,0,0,0,0 -050,01,031,Alabama,Coffee County,5,0,51159,25311,25848,19626,19670,4217,4635,368,353,267,495,144,63,689,632,20247,20230,4494,4896,668,633,448,662,184,106,23540,24423,18238,18506,4119,4538,296,301,256,488,34,24,597,566,18779,19011,4366,4765,544,546,416,640,62,61,1771,1425,1388,1164,98,97,72,52,11,7,110,39,92,66,1468,1219,128,131,124,87,32,22,122,45 -050,01,031,Alabama,Coffee County,5,1,3288,1685,1603,1252,1188,269,301,16,15,18,14,18,4,112,81,1356,1259,339,353,36,29,52,34,25,9,1472,1420,1073,1025,261,295,12,11,17,14,5,1,104,74,1170,1090,327,342,27,22,50,34,11,6,213,183,179,163,8,6,4,4,1,0,13,3,8,7,186,169,12,11,9,7,2,0,14,3 -050,01,031,Alabama,Coffee County,5,2,3249,1680,1569,1244,1132,299,286,14,24,33,22,10,14,80,91,1315,1215,348,337,36,45,54,45,16,22,1488,1419,1083,1016,290,277,11,21,29,22,2,2,73,81,1147,1091,336,323,29,38,50,44,8,8,192,150,161,116,9,9,3,3,4,0,8,12,7,10,168,124,12,14,7,7,4,1,8,14 -050,01,031,Alabama,Coffee County,5,3,3575,1844,1731,1347,1266,339,345,22,36,28,15,10,2,98,67,1438,1325,391,380,50,53,54,34,14,7,1679,1605,1200,1167,335,330,19,31,27,15,5,0,93,62,1287,1221,384,363,46,46,52,33,8,5,165,126,147,99,4,15,3,5,1,0,5,2,5,5,151,104,7,17,4,7,2,1,6,2 -050,01,031,Alabama,Coffee County,5,4,3284,1647,1637,1212,1117,323,392,20,35,14,20,2,1,76,72,1283,1185,354,427,46,61,36,40,5,3,1527,1519,1111,1021,317,384,17,29,13,20,1,0,68,65,1175,1082,347,415,38,53,32,39,4,2,120,118,101,96,6,8,3,6,1,0,1,1,8,7,108,103,7,12,8,8,4,1,1,1 -050,01,031,Alabama,Coffee County,5,5,3266,1680,1586,1268,1160,298,332,32,24,18,18,19,6,45,46,1309,1201,311,351,54,42,33,32,21,10,1535,1470,1164,1065,289,326,24,19,18,17,1,2,39,41,1200,1102,301,343,42,35,31,30,2,5,145,116,104,95,9,6,8,5,0,1,18,4,6,5,109,99,10,8,12,7,2,2,19,5 -050,01,031,Alabama,Coffee County,5,6,3501,1874,1627,1470,1228,270,297,32,20,23,28,34,12,45,42,1506,1262,285,318,54,40,38,44,36,16,1676,1483,1340,1115,255,287,27,18,23,27,2,5,29,31,1362,1141,264,299,42,30,34,38,3,8,198,144,130,113,15,10,5,2,0,1,32,7,16,11,144,121,21,19,12,10,4,6,33,8 -050,01,031,Alabama,Coffee County,5,7,3318,1715,1603,1289,1233,312,276,28,21,19,28,23,6,44,39,1327,1268,324,290,53,44,31,38,25,7,1523,1437,1163,1104,290,261,18,11,19,28,2,2,31,31,1189,1132,299,272,35,29,28,36,3,3,192,166,126,129,22,15,10,10,0,0,21,4,13,8,138,136,25,18,18,15,3,2,22,4 -050,01,031,Alabama,Coffee County,5,8,3305,1636,1669,1264,1233,271,333,33,23,24,45,7,6,37,29,1295,1257,279,337,56,39,34,57,11,10,1477,1555,1133,1135,268,326,24,21,22,45,4,2,26,26,1156,1157,272,330,39,35,31,56,5,5,159,114,131,98,3,7,9,2,2,0,3,4,11,3,139,100,7,7,17,4,3,1,6,5 -050,01,031,Alabama,Coffee County,5,9,3501,1759,1742,1357,1348,309,294,37,21,28,45,3,2,25,32,1378,1373,316,301,55,42,33,56,3,5,1659,1655,1283,1276,304,291,26,14,27,44,0,1,19,29,1299,1299,310,297,39,33,30,55,0,3,100,87,74,72,5,3,11,7,1,1,3,1,6,3,79,74,6,4,16,9,3,1,3,2 -050,01,031,Alabama,Coffee County,5,10,3485,1764,1721,1397,1330,285,305,27,22,21,34,6,3,28,27,1423,1353,291,310,46,41,26,40,6,5,1683,1664,1335,1283,281,299,19,21,21,34,2,3,25,24,1358,1303,285,304,38,38,25,38,2,5,81,57,62,47,4,6,8,1,0,0,4,0,3,3,65,50,6,6,8,3,1,2,4,0 -050,01,031,Alabama,Coffee County,5,11,3541,1757,1784,1335,1344,348,346,28,28,14,46,4,3,28,17,1358,1359,354,350,48,40,20,50,7,3,1693,1737,1289,1304,340,343,25,28,13,44,3,2,23,16,1308,1319,344,346,42,39,18,47,4,2,64,47,46,40,8,3,3,0,1,2,1,1,5,1,50,40,10,4,6,1,2,3,3,1 -050,01,031,Alabama,Coffee County,5,12,3279,1584,1695,1256,1288,270,300,17,23,11,54,3,3,27,27,1281,1311,274,306,37,45,16,58,5,4,1530,1655,1208,1257,267,297,15,19,11,53,3,3,26,26,1232,1279,271,302,34,41,16,57,5,4,54,40,48,31,3,3,2,4,0,1,0,0,1,1,49,32,3,4,3,4,0,1,0,0 -050,01,031,Alabama,Coffee County,5,13,2934,1398,1536,1133,1200,222,257,20,22,7,40,2,1,14,16,1147,1216,223,260,31,35,9,42,5,2,1357,1505,1098,1174,220,253,18,22,7,39,2,1,12,16,1110,1190,221,256,28,35,8,41,3,2,41,31,35,26,2,4,2,0,0,1,0,0,2,0,37,26,2,4,3,0,1,1,2,0 -050,01,031,Alabama,Coffee County,5,14,2575,1223,1352,997,1098,175,191,25,16,6,25,0,0,20,22,1016,1119,178,192,41,33,8,29,1,2,1206,1338,981,1084,175,191,24,16,6,25,0,0,20,22,1000,1105,178,192,40,33,8,29,1,2,17,14,16,14,0,0,1,0,0,0,0,0,0,0,16,14,0,0,1,0,0,0,0,0 -050,01,031,Alabama,Coffee County,5,15,1750,778,972,682,806,82,130,7,10,3,20,1,0,3,6,685,812,82,131,9,16,3,20,2,0,771,965,675,802,82,129,7,9,3,20,1,0,3,5,678,807,82,129,9,14,3,20,2,0,7,7,7,4,0,1,0,1,0,0,0,0,0,1,7,5,0,2,0,2,0,0,0,0 -050,01,031,Alabama,Coffee County,5,16,1457,642,815,562,674,70,105,8,5,0,27,0,0,2,4,564,678,70,105,10,9,0,27,0,0,630,805,550,666,70,105,8,3,0,27,0,0,2,4,552,670,70,105,10,7,0,27,0,0,12,10,12,8,0,0,0,2,0,0,0,0,0,0,12,8,0,0,0,2,0,0,0,0 -050,01,031,Alabama,Coffee County,5,17,1005,379,626,332,527,42,79,0,4,0,11,2,0,3,5,335,531,42,81,2,8,1,11,2,0,374,620,329,522,42,79,0,4,0,11,1,0,2,4,331,525,42,81,2,7,0,11,1,0,5,6,3,5,0,0,0,0,0,0,1,0,1,1,4,6,0,0,0,1,1,0,1,0 -050,01,031,Alabama,Coffee County,5,18,846,266,580,229,498,33,66,2,4,0,3,0,0,2,9,231,506,33,67,4,11,0,5,0,1,260,571,223,490,33,65,2,4,0,3,0,0,2,9,225,498,33,66,4,11,0,5,0,1,6,9,6,8,0,1,0,0,0,0,0,0,0,0,6,8,0,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,6,0,50709,25094,25615,19415,19507,4262,4607,352,325,265,501,137,59,663,616,20018,20064,4538,4840,618,603,437,656,178,100,23364,24142,18057,18314,4156,4491,289,279,253,492,33,19,576,547,18585,18812,4392,4695,519,527,406,630,65,53,1730,1473,1358,1193,106,116,63,46,12,9,104,40,87,69,1433,1252,146,145,99,76,31,26,113,47 -050,01,031,Alabama,Coffee County,6,1,3118,1587,1531,1192,1114,260,308,15,11,14,13,16,4,90,81,1275,1188,316,358,33,29,39,32,18,8,1369,1337,1008,958,252,293,11,8,14,13,5,1,79,64,1081,1019,303,335,24,19,36,27,6,4,218,194,184,156,8,15,4,3,0,0,11,3,11,17,194,169,13,23,9,10,3,5,12,4 -050,01,031,Alabama,Coffee County,6,2,3212,1683,1529,1239,1120,305,273,13,24,25,18,13,12,88,82,1324,1197,356,321,29,43,48,40,17,15,1489,1382,1083,1005,293,266,11,20,19,18,2,1,81,72,1162,1072,339,309,26,36,40,38,5,3,194,147,156,115,12,7,2,4,6,0,11,11,7,10,162,125,17,12,3,7,8,2,12,12 -050,01,031,Alabama,Coffee County,6,3,3502,1838,1664,1343,1246,338,319,16,21,39,11,8,3,94,64,1427,1304,386,347,41,37,65,33,15,8,1681,1524,1201,1130,334,306,13,18,39,11,5,0,89,59,1282,1184,381,331,35,33,64,32,10,4,157,140,142,116,4,13,3,3,0,0,3,3,5,5,145,120,5,16,6,4,1,1,5,4 -050,01,031,Alabama,Coffee County,6,4,3300,1696,1604,1240,1112,339,384,19,30,15,19,4,1,79,58,1310,1166,379,411,47,50,34,37,7,3,1566,1501,1134,1025,328,375,17,27,15,19,1,0,71,55,1197,1076,365,401,42,45,31,37,4,2,130,103,106,87,11,9,2,3,0,0,3,1,8,3,113,90,14,10,5,5,3,0,3,1 -050,01,031,Alabama,Coffee County,6,5,3161,1619,1542,1194,1114,311,331,30,26,15,22,16,4,53,45,1242,1153,330,351,54,42,34,35,22,8,1498,1400,1110,1003,302,319,24,19,14,22,1,0,47,37,1154,1036,317,335,46,31,32,33,6,4,121,142,84,111,9,12,6,7,1,0,15,4,6,8,88,117,13,16,8,11,2,2,16,4 -050,01,031,Alabama,Coffee County,6,6,3367,1771,1596,1372,1205,285,290,30,17,25,27,25,11,34,46,1403,1247,296,304,45,39,36,42,26,14,1587,1474,1241,1112,272,280,25,14,24,25,0,4,25,39,1263,1148,279,293,36,32,34,38,1,6,184,122,131,93,13,10,5,3,1,2,25,7,9,7,140,99,17,11,9,7,2,4,25,8 -050,01,031,Alabama,Coffee County,6,7,3273,1680,1593,1264,1204,305,287,24,22,23,27,23,6,41,47,1301,1246,318,298,42,45,38,42,24,11,1516,1426,1156,1076,286,272,16,13,23,27,3,1,32,37,1185,1109,295,281,30,31,36,39,3,5,164,167,108,128,19,15,8,9,0,0,20,5,9,10,116,137,23,17,12,14,2,3,21,6 -050,01,031,Alabama,Coffee County,6,8,3190,1590,1600,1228,1177,273,323,28,15,18,53,11,7,32,25,1254,1197,283,330,41,31,30,60,14,8,1429,1488,1099,1081,267,312,22,15,17,53,4,3,20,24,1114,1100,273,318,30,31,25,60,7,4,161,112,129,96,6,11,6,0,1,0,7,4,12,1,140,97,10,12,11,0,5,0,7,4 -050,01,031,Alabama,Coffee County,6,9,3549,1768,1781,1358,1375,314,302,44,22,27,51,2,1,23,30,1379,1399,320,307,56,45,33,58,5,5,1665,1680,1276,1288,311,297,33,15,27,49,0,1,18,30,1293,1312,314,302,43,38,32,56,2,5,103,101,82,87,3,5,11,7,0,2,2,0,5,0,86,87,6,5,13,7,1,2,3,0 -050,01,031,Alabama,Coffee County,6,10,3487,1742,1745,1386,1374,278,289,25,21,18,32,7,4,28,25,1413,1396,282,294,44,38,24,37,7,6,1658,1681,1325,1322,273,282,18,20,16,32,2,3,24,22,1348,1341,274,286,36,36,22,36,2,5,84,64,61,52,5,7,7,1,2,0,5,1,4,3,65,55,8,8,8,2,2,1,5,1 -050,01,031,Alabama,Coffee County,6,11,3483,1729,1754,1326,1324,325,328,26,29,18,49,4,2,30,22,1355,1344,331,332,47,43,21,52,7,6,1675,1699,1290,1276,318,326,22,29,17,47,3,1,25,20,1314,1295,322,329,41,42,20,50,5,4,54,55,36,48,7,2,4,0,1,2,1,1,5,2,41,49,9,3,6,1,1,2,2,2 -050,01,031,Alabama,Coffee County,6,12,3316,1598,1718,1280,1293,267,320,17,27,10,50,2,3,22,25,1298,1314,272,326,33,46,13,54,4,4,1539,1678,1228,1262,263,317,15,23,10,49,2,3,21,24,1245,1282,268,322,30,41,13,53,4,4,59,40,52,31,4,3,2,4,0,1,0,0,1,1,53,32,4,4,3,5,0,1,0,0 -050,01,031,Alabama,Coffee County,6,13,2894,1388,1506,1103,1167,240,256,22,23,6,38,3,1,14,21,1116,1188,241,259,33,41,10,39,4,1,1338,1474,1063,1140,235,252,20,23,6,37,3,1,11,21,1074,1161,235,255,29,41,9,38,4,1,50,32,40,27,5,4,2,0,0,1,0,0,3,0,42,27,6,4,4,0,1,1,0,0 -050,01,031,Alabama,Coffee County,6,14,2653,1276,1377,1036,1120,190,199,25,13,7,26,0,0,18,19,1052,1139,192,200,41,29,7,26,2,2,1259,1359,1020,1103,190,198,24,13,7,26,0,0,18,19,1036,1122,192,199,40,29,7,26,2,2,17,18,16,17,0,1,1,0,0,0,0,0,0,0,16,17,0,1,1,0,0,0,0,0 -050,01,031,Alabama,Coffee County,6,15,1826,803,1023,697,834,84,139,8,14,5,26,1,0,8,10,704,844,87,140,15,21,5,28,2,0,795,1015,689,829,84,139,8,13,5,25,1,0,8,9,696,838,87,140,15,19,5,27,2,0,8,8,8,5,0,0,0,1,0,1,0,0,0,1,8,6,0,0,0,2,0,1,0,0 -050,01,031,Alabama,Coffee County,6,16,1508,657,851,579,700,66,119,8,3,0,24,0,0,4,5,582,704,67,120,11,8,0,24,1,0,646,841,569,692,66,118,8,2,0,24,0,0,3,5,572,696,66,119,11,7,0,24,0,0,11,10,10,8,0,1,0,1,0,0,0,0,1,0,10,8,1,1,0,1,0,0,1,0 -050,01,031,Alabama,Coffee County,6,17,1004,405,599,350,505,49,78,1,3,0,11,2,0,3,2,353,507,49,79,4,4,0,12,2,1,396,593,343,500,49,78,1,3,0,11,1,0,2,1,345,501,49,78,3,4,0,11,1,0,9,6,7,5,0,0,0,0,0,0,1,0,1,1,8,6,0,1,1,0,0,1,1,1 -050,01,031,Alabama,Coffee County,6,18,866,264,602,228,523,33,62,1,4,0,4,0,0,2,9,230,531,33,63,2,12,0,5,1,0,258,590,222,512,33,61,1,4,0,4,0,0,2,9,224,520,33,62,2,12,0,5,1,0,6,12,6,11,0,1,0,0,0,0,0,0,0,0,6,11,0,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,7,0,50693,25042,25651,19306,19467,4290,4610,366,348,261,526,140,66,679,634,19923,20031,4591,4872,639,620,424,691,180,103,23295,24188,17950,18286,4185,4497,295,298,247,512,35,24,583,571,18478,18797,4445,4730,520,540,398,665,67,52,1747,1463,1356,1181,105,113,71,50,14,14,105,42,96,63,1445,1234,146,142,119,80,26,26,113,51 -050,01,031,Alabama,Coffee County,7,1,3062,1576,1486,1152,1078,254,295,15,12,22,19,13,6,120,76,1266,1146,325,346,40,30,54,34,16,11,1389,1314,997,941,246,281,10,8,20,16,7,4,109,64,1100,1001,312,325,31,21,51,28,9,7,187,172,155,137,8,14,5,4,2,3,6,2,11,12,166,145,13,21,9,9,3,6,7,4 -050,01,031,Alabama,Coffee County,7,2,3312,1703,1609,1254,1156,314,298,18,31,19,20,18,11,80,93,1328,1244,364,355,35,48,38,45,21,19,1480,1444,1082,1026,298,288,12,25,14,20,3,1,71,84,1148,1105,342,339,25,39,33,44,6,7,223,165,172,130,16,10,6,6,5,0,15,10,9,9,180,139,22,16,10,9,5,1,15,12 -050,01,031,Alabama,Coffee County,7,3,3425,1770,1655,1287,1235,336,316,19,21,28,13,7,7,93,63,1373,1291,386,347,43,39,53,33,13,10,1623,1511,1155,1113,334,307,17,19,27,12,4,1,86,59,1235,1166,381,336,37,35,52,32,9,3,147,144,132,122,2,9,2,2,1,1,3,6,7,4,138,125,5,11,6,4,1,1,4,7 -050,01,031,Alabama,Coffee County,7,4,3316,1718,1598,1244,1121,341,355,21,39,20,19,6,2,86,62,1324,1178,382,386,48,58,43,38,12,4,1580,1494,1137,1041,327,344,19,34,19,19,2,0,76,56,1208,1092,363,372,42,51,40,35,7,2,138,104,107,80,14,11,2,5,1,0,4,2,10,6,116,86,19,14,6,7,3,3,5,2 -050,01,031,Alabama,Coffee County,7,5,3103,1573,1530,1169,1080,308,357,24,20,13,23,11,4,48,46,1212,1119,330,376,46,35,26,38,13,8,1449,1411,1076,987,300,348,19,13,13,23,1,0,40,40,1111,1022,319,364,37,25,25,37,2,3,124,119,93,93,8,9,5,7,0,0,10,4,8,6,101,97,11,12,9,10,1,1,11,5 -050,01,031,Alabama,Coffee County,7,6,3236,1674,1562,1297,1160,262,288,28,20,24,36,23,9,40,49,1329,1203,275,305,45,41,37,52,29,12,1524,1451,1195,1072,253,279,24,17,23,34,0,4,29,45,1216,1112,262,294,36,35,35,50,5,6,150,111,102,88,9,9,4,3,1,2,23,5,11,4,113,91,13,11,9,6,2,2,24,6 -050,01,031,Alabama,Coffee County,7,7,3267,1696,1571,1284,1187,295,282,30,19,29,28,26,8,32,47,1313,1230,301,295,44,42,42,44,28,9,1529,1414,1166,1072,285,266,19,12,29,27,3,2,27,35,1191,1103,290,276,30,30,41,40,4,2,167,157,118,115,10,16,11,7,0,1,23,6,5,12,122,127,11,19,14,12,1,4,24,7 -050,01,031,Alabama,Coffee County,7,8,3229,1604,1625,1218,1216,303,299,27,21,14,57,16,6,26,26,1242,1240,313,305,42,34,18,64,18,8,1420,1484,1080,1092,289,289,20,19,13,57,4,3,14,24,1094,1114,294,294,27,31,15,64,5,5,184,141,138,124,14,10,7,2,1,0,12,3,12,2,148,126,19,11,15,3,3,0,13,3 -050,01,031,Alabama,Coffee County,7,9,3477,1760,1717,1346,1311,310,307,47,20,28,45,2,2,27,32,1367,1337,318,312,64,42,34,53,5,5,1652,1622,1260,1231,307,302,37,15,28,43,0,0,20,31,1275,1257,314,307,51,36,31,51,2,2,108,95,86,80,3,5,10,5,0,2,2,2,7,1,92,80,4,5,13,6,3,2,3,3 -050,01,031,Alabama,Coffee County,7,10,3484,1716,1768,1367,1380,275,302,26,26,19,31,5,4,24,25,1388,1402,284,308,41,44,22,34,6,5,1624,1696,1298,1321,270,296,17,23,18,31,1,3,20,22,1315,1340,276,301,30,39,21,34,2,4,92,72,69,59,5,6,9,3,1,0,4,1,4,3,73,62,8,7,11,5,1,0,4,1 -050,01,031,Alabama,Coffee County,7,11,3425,1738,1687,1338,1301,322,295,27,24,17,42,5,3,29,22,1365,1320,328,301,46,39,21,46,7,4,1680,1644,1297,1264,317,292,23,24,15,41,3,2,25,21,1320,1282,321,298,40,38,19,45,5,3,58,43,41,37,5,3,4,0,2,1,2,1,4,1,45,38,7,3,6,1,2,1,2,1 -050,01,031,Alabama,Coffee County,7,12,3345,1591,1754,1265,1300,278,345,16,32,7,50,2,2,23,25,1284,1319,283,350,37,53,10,56,4,3,1534,1711,1217,1265,274,342,14,29,7,49,2,2,20,24,1233,1284,279,347,32,49,10,54,4,3,57,43,48,35,4,3,2,3,0,1,0,0,3,1,51,35,4,3,5,4,0,2,0,0 -050,01,031,Alabama,Coffee County,7,13,2968,1413,1555,1113,1210,255,257,21,20,8,50,3,2,13,16,1126,1224,259,260,29,32,9,53,3,2,1358,1515,1070,1175,248,255,19,19,8,48,3,2,10,16,1080,1189,250,258,26,31,9,51,3,2,55,40,43,35,7,2,2,1,0,2,0,0,3,0,46,35,9,2,3,1,0,2,0,0 -050,01,031,Alabama,Coffee County,7,14,2723,1318,1405,1076,1116,191,221,26,16,7,29,0,0,18,23,1093,1136,193,225,41,35,9,32,1,0,1298,1384,1057,1099,191,217,25,16,7,29,0,0,18,23,1074,1119,193,221,40,35,9,32,1,0,20,21,19,17,0,4,1,0,0,0,0,0,0,0,19,17,0,4,1,0,0,0,0,0 -050,01,031,Alabama,Coffee County,7,15,1903,842,1061,720,875,93,132,11,15,6,27,1,0,11,12,730,886,94,134,21,24,6,28,2,1,832,1052,711,869,93,132,10,14,6,26,1,0,11,11,721,879,94,134,20,22,6,27,2,1,10,9,9,6,0,0,1,1,0,1,0,0,0,1,9,7,0,0,1,2,0,1,0,0 -050,01,031,Alabama,Coffee County,7,16,1538,667,871,588,720,69,120,7,4,0,23,0,0,3,4,590,723,71,122,10,5,0,24,0,1,657,863,579,713,69,119,7,4,0,23,0,0,2,4,580,716,70,121,9,5,0,24,0,1,10,8,9,7,0,1,0,0,0,0,0,0,1,0,10,7,1,1,1,0,0,0,0,0 -050,01,031,Alabama,Coffee County,7,17,1003,420,583,362,489,50,76,2,4,0,11,2,0,4,3,365,492,51,77,5,5,1,12,2,0,410,577,354,485,50,76,2,3,0,11,1,0,3,2,356,487,51,76,5,4,0,12,1,0,10,6,8,4,0,0,0,1,0,0,1,0,1,1,9,5,0,1,0,1,1,0,1,0 -050,01,031,Alabama,Coffee County,7,18,877,263,614,226,532,34,65,1,4,0,3,0,0,2,10,228,541,34,68,2,14,1,5,0,1,256,601,219,520,34,64,1,4,0,3,0,0,2,10,221,529,34,67,2,14,1,5,0,1,7,13,7,12,0,1,0,0,0,0,0,0,0,0,7,12,0,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,8,0,51004,25292,25712,19457,19449,4345,4666,371,342,261,536,141,76,717,643,20100,20044,4666,4919,650,622,449,690,188,115,23483,24177,18068,18234,4229,4548,297,293,240,519,38,25,611,558,18614,18755,4506,4768,521,533,407,656,71,49,1809,1535,1389,1215,116,118,74,49,21,17,103,51,106,85,1486,1289,160,151,129,89,42,34,117,66 -050,01,031,Alabama,Coffee County,8,1,3128,1637,1491,1182,1067,259,300,13,11,28,28,9,5,146,80,1315,1144,348,350,42,27,67,47,17,8,1430,1306,1026,922,248,285,4,7,19,22,7,3,126,67,1140,986,328,331,24,20,54,38,12,3,207,185,156,145,11,15,9,4,9,6,2,2,20,13,175,158,20,19,18,7,13,9,5,5 -050,01,031,Alabama,Coffee County,8,2,3327,1704,1623,1249,1175,314,306,22,21,15,14,20,13,84,94,1329,1263,362,360,37,46,41,32,25,19,1485,1435,1076,1032,306,294,15,17,10,14,2,1,76,77,1148,1105,350,341,27,35,33,30,5,4,219,188,173,143,8,12,7,4,5,0,18,12,8,17,181,158,12,19,10,11,8,2,20,15 -050,01,031,Alabama,Coffee County,8,3,3395,1778,1617,1308,1216,341,287,17,26,23,15,5,9,84,64,1384,1274,385,320,41,45,46,33,13,14,1609,1470,1166,1097,333,281,13,22,22,14,2,1,73,55,1232,1148,371,311,32,34,44,30,9,5,169,147,142,119,8,6,4,4,1,1,3,8,11,9,152,126,14,9,9,11,2,3,4,9 -050,01,031,Alabama,Coffee County,8,4,3379,1780,1599,1296,1138,339,345,21,32,22,14,7,4,95,66,1380,1200,388,378,51,54,48,32,12,6,1619,1486,1161,1052,327,334,21,28,21,14,3,0,86,58,1239,1106,371,364,46,47,46,30,7,2,161,113,135,86,12,11,0,4,1,0,4,4,9,8,141,94,17,14,5,7,2,2,5,4 -050,01,031,Alabama,Coffee County,8,5,3089,1562,1527,1132,1071,334,359,22,27,13,26,9,5,52,39,1174,1105,361,374,42,36,26,37,12,14,1442,1396,1040,968,325,348,16,20,13,26,3,2,45,32,1076,998,348,358,33,29,24,36,6,7,120,131,92,103,9,11,6,7,0,0,6,3,7,7,98,107,13,16,9,7,2,1,6,7 -050,01,031,Alabama,Coffee County,8,6,3212,1646,1566,1265,1155,280,302,27,16,20,39,23,8,31,46,1293,1196,290,323,39,35,29,53,27,10,1509,1469,1171,1085,268,292,24,12,19,38,1,2,26,40,1194,1120,276,310,35,28,27,51,4,4,137,97,94,70,12,10,3,4,1,1,22,6,5,6,99,76,14,13,4,7,2,2,23,6 -050,01,031,Alabama,Coffee County,8,7,3274,1707,1567,1291,1178,283,300,32,19,29,18,30,7,42,45,1327,1215,294,315,52,44,45,33,33,9,1537,1410,1180,1056,270,285,25,15,29,16,4,2,29,36,1205,1086,276,296,38,33,41,28,6,3,170,157,111,122,13,15,7,4,0,2,26,5,13,9,122,129,18,19,14,11,4,5,27,6 -050,01,031,Alabama,Coffee County,8,8,3240,1620,1620,1225,1193,318,288,24,27,17,64,15,10,21,38,1244,1231,323,296,35,47,24,74,18,12,1448,1476,1101,1078,299,277,15,22,16,64,4,5,13,30,1112,1108,302,282,21,38,21,72,5,7,172,144,124,115,19,11,9,5,1,0,11,5,8,8,132,123,21,14,14,9,3,2,13,5 -050,01,031,Alabama,Coffee County,8,9,3500,1730,1770,1331,1325,300,344,44,19,26,46,2,4,27,32,1357,1355,309,347,61,42,30,53,3,6,1609,1665,1231,1238,298,337,34,15,25,44,0,0,21,31,1251,1267,303,340,47,37,29,51,1,2,121,105,100,87,2,7,10,4,1,2,2,4,6,1,106,88,6,7,14,5,1,2,2,4 -050,01,031,Alabama,Coffee County,8,10,3426,1707,1719,1355,1339,274,299,28,18,18,34,5,3,27,26,1379,1361,280,305,49,36,24,39,7,5,1614,1652,1283,1284,269,294,22,15,18,34,1,2,21,23,1301,1304,275,300,38,30,23,39,1,3,93,67,72,55,5,5,6,3,0,0,4,1,6,3,78,57,5,5,11,6,1,0,6,2 -050,01,031,Alabama,Coffee County,8,11,3446,1763,1683,1399,1295,281,295,30,25,18,38,6,4,29,26,1427,1321,282,298,53,43,26,44,8,4,1704,1634,1358,1252,278,291,24,25,17,38,2,3,25,25,1382,1277,279,294,43,42,25,44,4,3,59,49,41,43,3,4,6,0,1,0,4,1,4,1,45,44,3,4,10,1,1,0,4,1 -050,01,031,Alabama,Coffee County,8,12,3358,1621,1737,1257,1298,315,335,18,31,7,52,3,2,21,19,1276,1316,319,339,32,45,9,56,6,2,1561,1694,1212,1261,308,332,15,30,6,50,3,2,17,19,1227,1279,312,336,26,44,8,54,5,2,60,43,45,37,7,3,3,1,1,2,0,0,4,0,49,37,7,3,6,1,1,2,1,0 -050,01,031,Alabama,Coffee County,8,13,3014,1415,1599,1115,1255,246,255,22,23,11,46,3,2,18,18,1129,1271,253,259,35,35,14,49,3,3,1361,1555,1070,1219,242,253,20,20,11,44,3,2,15,17,1081,1235,248,256,32,31,13,47,3,3,54,44,45,36,4,2,2,3,0,2,0,0,3,1,48,36,5,3,3,4,1,2,0,0 -050,01,031,Alabama,Coffee County,8,14,2778,1369,1409,1111,1098,204,243,27,17,7,34,1,0,19,17,1128,1113,208,245,43,32,8,36,1,0,1338,1384,1084,1077,201,239,26,17,7,34,1,0,19,17,1101,1092,205,241,42,32,8,36,1,0,31,25,27,21,3,4,1,0,0,0,0,0,0,0,27,21,3,4,1,0,0,0,0,0 -050,01,031,Alabama,Coffee County,8,15,2012,912,1100,771,903,109,140,13,16,6,28,1,0,12,13,782,916,112,140,23,26,7,29,1,2,899,1089,759,895,109,140,12,15,6,27,1,0,12,12,770,907,112,140,22,25,7,28,1,1,13,11,12,8,0,0,1,1,0,1,0,0,0,1,12,9,0,0,1,1,0,1,0,1 -050,01,031,Alabama,Coffee County,8,16,1489,627,862,551,711,65,120,7,5,1,21,0,0,3,5,553,716,67,121,8,8,2,22,0,0,622,853,547,703,65,119,7,5,1,21,0,0,2,5,548,708,66,120,8,8,2,22,0,0,5,9,4,8,0,1,0,0,0,0,0,0,1,0,5,8,1,1,0,0,0,0,0,0 -050,01,031,Alabama,Coffee County,8,17,1037,432,605,377,500,49,86,3,3,0,12,0,0,3,4,379,504,50,86,4,6,2,13,0,1,422,599,368,496,49,86,3,2,0,12,0,0,2,3,370,499,49,86,4,5,1,12,0,0,10,6,9,4,0,0,0,1,0,0,0,0,1,1,9,5,1,0,0,1,1,1,0,1 -050,01,031,Alabama,Coffee County,8,18,900,282,618,242,532,34,62,1,6,0,7,2,0,3,11,244,543,35,63,3,15,1,8,2,0,274,604,235,519,34,61,1,6,0,7,1,0,3,11,237,530,35,62,3,15,1,8,1,0,8,14,7,13,0,1,0,0,0,0,1,0,0,0,7,13,0,1,0,0,0,0,1,0 -050,01,031,Alabama,Coffee County,9,0,51281,25266,26015,19403,19606,4334,4726,358,356,269,536,134,83,768,708,20098,20238,4686,5030,652,652,473,715,182,128,23359,24345,17929,18266,4207,4618,277,298,249,518,39,30,658,615,18532,18821,4508,4869,516,553,428,677,73,65,1907,1670,1474,1340,127,108,81,58,20,18,95,53,110,93,1566,1417,178,161,136,99,45,38,109,63 -050,01,031,Alabama,Coffee County,9,1,3206,1655,1551,1173,1093,305,289,12,17,26,37,7,8,132,107,1293,1194,386,350,38,39,64,66,19,12,1414,1351,981,944,290,278,3,6,19,30,5,4,116,89,1091,1029,363,331,21,20,54,56,13,6,241,200,192,149,15,11,9,11,7,7,2,4,16,18,202,165,23,19,17,19,10,10,6,6 -050,01,031,Alabama,Coffee County,9,2,3346,1704,1642,1248,1188,280,317,18,20,20,9,22,11,116,97,1353,1276,350,375,41,46,52,34,26,16,1492,1433,1083,1024,271,306,13,16,16,9,5,2,104,76,1178,1092,334,350,31,33,46,30,9,6,212,209,165,164,9,11,5,4,4,0,17,9,12,21,175,184,16,25,10,13,6,4,17,10 -050,01,031,Alabama,Coffee County,9,3,3438,1792,1646,1334,1244,318,277,19,25,19,15,6,11,96,74,1424,1313,368,314,42,40,48,39,12,14,1600,1461,1181,1084,305,272,12,22,17,14,2,2,83,67,1259,1148,351,305,29,35,44,35,6,5,192,185,153,160,13,5,7,3,2,1,4,9,13,7,165,165,17,9,13,5,4,4,6,9 -050,01,031,Alabama,Coffee County,9,4,3415,1770,1645,1285,1168,337,353,11,30,24,13,7,4,106,77,1379,1238,393,393,46,55,51,31,13,9,1606,1527,1144,1079,327,343,11,25,24,13,3,0,97,67,1230,1140,379,376,41,48,49,29,9,2,164,118,141,89,10,10,0,5,0,0,4,4,9,10,149,98,14,17,5,7,2,2,4,7 -050,01,031,Alabama,Coffee County,9,5,3036,1561,1475,1142,1012,314,364,20,33,20,19,5,6,60,41,1200,1047,339,385,42,48,36,28,7,12,1426,1348,1030,911,304,356,16,25,19,19,2,2,55,35,1083,942,325,372,38,37,34,27,4,6,135,127,112,101,10,8,4,8,1,0,3,4,5,6,117,105,14,13,4,11,2,1,3,6 -050,01,031,Alabama,Coffee County,9,6,3231,1639,1592,1237,1173,296,312,33,19,21,39,23,8,29,41,1265,1209,303,324,45,37,29,53,26,13,1495,1482,1141,1087,282,301,24,17,20,38,2,2,26,37,1166,1119,289,311,34,33,27,52,5,7,144,110,96,86,14,11,9,2,1,1,21,6,3,4,99,90,14,13,11,4,2,1,21,6 -050,01,031,Alabama,Coffee County,9,7,3226,1657,1569,1249,1173,285,294,31,22,28,22,29,10,35,48,1279,1213,297,311,51,44,37,39,32,13,1485,1439,1134,1070,275,287,25,18,27,20,3,5,21,39,1152,1103,283,300,36,34,32,35,3,7,172,130,115,103,10,7,6,4,1,2,26,5,14,9,127,110,14,11,15,10,5,4,29,6 -050,01,031,Alabama,Coffee County,9,8,3241,1604,1637,1216,1205,317,306,22,21,14,59,11,7,24,39,1237,1237,325,324,35,40,18,69,13,9,1428,1460,1079,1063,301,287,13,15,14,59,4,3,17,33,1094,1092,305,300,23,32,17,68,6,4,176,177,137,142,16,19,9,6,0,0,7,4,7,6,143,145,20,24,12,8,1,1,7,5 -050,01,031,Alabama,Coffee County,9,9,3416,1686,1730,1304,1291,286,333,36,16,26,45,2,8,32,37,1330,1322,294,341,55,43,39,55,4,11,1553,1618,1202,1198,278,328,27,14,24,45,1,2,21,31,1220,1224,282,336,40,36,32,53,1,5,133,112,102,93,8,5,9,2,2,0,1,6,11,6,110,98,12,5,15,7,7,2,3,6 -050,01,031,Alabama,Coffee County,9,10,3468,1717,1751,1349,1358,283,310,34,19,20,34,5,2,26,28,1372,1382,293,317,51,36,25,40,7,6,1626,1678,1283,1296,279,307,25,15,20,33,0,1,19,26,1300,1318,283,313,38,31,25,39,1,5,91,73,66,62,4,3,9,4,0,1,5,1,7,2,72,64,10,4,13,5,0,1,6,1 -050,01,031,Alabama,Coffee County,9,11,3387,1694,1693,1346,1302,277,295,25,28,16,37,5,4,25,27,1369,1326,284,301,43,47,21,42,8,6,1631,1632,1299,1251,275,289,19,27,15,37,2,3,21,25,1318,1274,280,294,35,45,18,41,3,5,63,61,47,51,2,6,6,1,1,0,3,1,4,2,51,52,4,7,8,2,3,1,5,1 -050,01,031,Alabama,Coffee County,9,12,3376,1629,1747,1258,1306,318,343,21,31,7,48,5,1,20,18,1277,1323,323,346,36,44,11,50,5,2,1578,1711,1223,1277,310,340,19,29,6,46,4,1,16,18,1238,1294,313,343,31,42,10,48,4,2,51,36,35,29,8,3,2,2,1,2,1,0,4,0,39,29,10,3,5,2,1,2,1,0 -050,01,031,Alabama,Coffee County,9,13,3048,1440,1608,1160,1253,223,258,22,22,13,50,2,2,20,23,1179,1273,226,263,38,39,16,54,2,3,1381,1552,1109,1204,219,256,19,18,13,49,2,2,19,23,1127,1224,221,261,35,35,16,53,2,3,59,56,51,49,4,2,3,4,0,1,0,0,1,0,52,49,5,2,3,4,0,1,0,0 -050,01,031,Alabama,Coffee County,9,14,2871,1382,1489,1103,1161,227,258,24,18,7,39,2,1,19,12,1120,1171,231,261,39,29,9,39,2,1,1346,1456,1075,1133,223,254,22,18,7,38,2,1,17,12,1091,1143,226,257,36,29,8,38,2,1,36,33,28,28,4,4,2,0,0,1,0,0,2,0,29,28,5,4,3,0,1,1,0,0 -050,01,031,Alabama,Coffee County,9,15,2081,960,1121,800,906,116,151,20,18,6,29,0,0,18,17,815,921,119,153,34,31,9,32,2,1,946,1108,787,897,116,151,19,17,6,27,0,0,18,16,802,912,119,152,33,30,9,29,2,1,14,13,13,9,0,0,1,1,0,2,0,0,0,1,13,9,0,1,1,1,0,3,0,0 -050,01,031,Alabama,Coffee County,9,16,1483,630,853,554,716,63,107,6,8,2,16,1,0,4,6,557,722,64,109,8,11,4,17,1,0,625,845,550,709,63,106,6,8,2,16,1,0,3,6,552,715,64,108,8,11,3,17,1,0,5,8,4,7,0,1,0,0,0,0,0,0,1,0,5,7,0,1,0,0,1,0,0,0 -050,01,031,Alabama,Coffee County,9,17,1089,454,635,392,518,56,92,4,3,0,18,0,0,2,4,394,521,56,93,5,6,1,19,0,0,443,628,382,513,56,91,4,2,0,18,0,0,1,4,383,516,56,92,4,5,1,19,0,0,11,7,10,5,0,1,0,1,0,0,0,0,1,0,11,5,0,1,1,1,0,0,0,0 -050,01,031,Alabama,Coffee County,9,18,923,292,631,253,539,33,67,0,6,0,7,2,0,4,12,255,550,35,70,3,17,3,8,3,0,284,616,246,526,33,66,0,6,0,7,1,0,4,11,248,536,35,68,3,17,3,8,2,0,8,15,7,13,0,1,0,0,0,0,1,0,0,1,7,14,0,2,0,0,0,0,1,0 -050,01,031,Alabama,Coffee County,10,0,51943,25526,26417,19549,19899,4421,4786,358,365,276,556,130,79,792,732,20262,20564,4776,5101,670,652,497,760,174,122,23566,24605,18024,18442,4280,4648,281,301,259,539,46,32,676,643,18639,19030,4585,4919,534,550,451,724,78,67,1960,1812,1525,1457,141,138,77,64,17,17,84,47,116,89,1623,1534,191,182,136,102,46,36,96,55 -050,01,031,Alabama,Coffee County,10,1,3307,1720,1587,1203,1097,342,316,10,19,21,38,8,6,136,111,1328,1196,424,385,39,42,63,66,16,13,1483,1365,1010,938,327,292,5,6,15,29,6,3,120,97,1123,1027,401,353,25,23,54,55,13,7,237,222,193,159,15,24,5,13,6,9,2,3,16,14,205,169,23,32,14,19,9,11,3,6 -050,01,031,Alabama,Coffee County,10,2,3353,1651,1702,1205,1239,269,325,22,17,19,14,15,7,121,100,1314,1333,345,382,48,39,51,40,22,12,1467,1487,1061,1064,258,313,15,12,19,14,6,2,108,82,1159,1141,326,361,36,28,48,36,11,6,184,215,144,175,11,12,7,5,0,0,9,5,13,18,155,192,19,21,12,11,3,4,11,6 -050,01,031,Alabama,Coffee County,10,3,3490,1802,1688,1343,1251,319,284,17,28,22,16,7,13,94,96,1432,1339,366,337,40,55,49,45,11,18,1604,1482,1186,1083,304,276,9,25,18,15,3,2,84,81,1266,1158,347,323,29,45,42,38,6,5,198,206,157,168,15,8,8,3,4,1,4,11,10,15,166,181,19,14,11,10,7,7,5,13 -050,01,031,Alabama,Coffee County,10,4,3347,1755,1592,1274,1171,341,314,14,27,21,13,5,4,100,63,1362,1228,391,345,49,46,50,33,10,8,1601,1454,1144,1061,332,301,12,22,21,13,3,0,89,57,1223,1112,379,331,42,38,46,31,7,4,154,138,130,110,9,13,2,5,0,0,2,4,11,6,139,116,12,14,7,8,4,2,3,4 -050,01,031,Alabama,Coffee County,10,5,3050,1552,1498,1131,1020,315,382,18,26,19,18,3,6,66,46,1191,1059,343,406,41,43,37,30,8,9,1408,1370,1015,916,300,372,16,23,18,18,2,1,57,40,1066,950,326,391,36,38,34,30,5,3,144,128,116,104,15,10,2,3,1,0,1,5,9,6,125,109,17,15,5,5,3,0,3,6 -050,01,031,Alabama,Coffee County,10,6,3429,1757,1672,1296,1224,328,346,40,20,32,34,21,5,40,43,1332,1263,341,365,55,36,46,52,25,5,1605,1544,1189,1126,316,333,30,14,31,34,4,1,35,36,1220,1160,327,348,43,27,44,50,8,1,152,128,107,98,12,13,10,6,1,0,17,4,5,7,112,103,14,17,12,9,2,2,17,4 -050,01,031,Alabama,Coffee County,10,7,3240,1683,1557,1289,1170,280,271,34,20,22,31,25,15,33,50,1316,1212,293,290,54,40,30,49,26,16,1492,1439,1156,1077,265,262,26,16,21,31,1,9,23,44,1176,1113,273,279,38,33,27,48,2,10,191,118,133,93,15,9,8,4,1,0,24,6,10,6,140,99,20,11,16,7,3,1,24,6 -050,01,031,Alabama,Coffee County,10,8,3289,1591,1698,1203,1287,305,286,17,24,23,56,19,7,24,38,1222,1322,312,296,30,44,33,67,20,9,1402,1513,1058,1137,291,271,9,16,23,55,5,3,16,31,1069,1166,296,278,17,33,31,64,6,4,189,185,145,150,14,15,8,8,0,1,14,4,8,7,153,156,16,18,13,11,2,3,14,5 -050,01,031,Alabama,Coffee County,10,9,3319,1647,1672,1287,1219,275,353,25,21,20,41,5,5,35,33,1317,1249,283,358,49,42,29,54,9,7,1507,1556,1173,1122,266,342,23,19,18,41,4,2,23,30,1194,1149,270,346,39,38,24,54,5,4,140,116,114,97,9,11,2,2,2,0,1,3,12,3,123,100,13,12,10,4,5,0,4,3 -050,01,031,Alabama,Coffee County,10,10,3567,1757,1810,1394,1398,278,308,33,24,20,47,4,2,28,31,1421,1427,285,315,51,40,27,57,4,6,1662,1711,1322,1311,276,306,25,18,20,46,0,1,19,29,1340,1338,280,312,39,33,24,56,0,5,95,99,72,87,2,2,8,6,0,1,4,1,9,2,81,89,5,3,12,7,3,1,4,1 -050,01,031,Alabama,Coffee County,10,11,3377,1702,1675,1344,1300,281,287,29,25,16,33,6,4,26,26,1366,1324,287,294,47,39,21,39,7,5,1619,1614,1284,1250,274,280,21,24,15,33,2,4,23,23,1303,1271,278,285,38,37,20,39,3,5,83,61,60,50,7,7,8,1,1,0,4,0,3,3,63,53,9,9,9,2,1,0,4,0 -050,01,031,Alabama,Coffee County,10,12,3341,1627,1714,1236,1291,337,326,21,32,10,48,4,2,19,15,1251,1305,342,329,36,42,15,49,5,5,1572,1666,1200,1251,328,323,18,30,9,46,3,1,14,15,1212,1265,329,326,29,40,13,47,3,4,55,48,36,40,9,3,3,2,1,2,1,1,5,0,39,40,13,3,7,2,2,2,2,1 -050,01,031,Alabama,Coffee County,10,13,3183,1508,1675,1205,1286,244,287,18,23,14,51,3,2,24,26,1229,1310,248,292,34,43,18,52,3,6,1449,1612,1154,1230,240,284,15,19,14,51,3,2,23,26,1177,1254,243,289,31,39,18,52,3,6,59,63,51,56,4,3,3,4,0,0,0,0,1,0,52,56,5,3,3,4,0,0,0,0 -050,01,031,Alabama,Coffee County,10,14,2779,1304,1475,1042,1152,219,250,23,21,5,41,2,1,13,10,1054,1162,221,250,32,28,8,44,3,1,1263,1443,1009,1125,215,246,21,21,5,40,2,1,11,10,1019,1135,216,246,30,28,7,43,2,1,41,32,33,27,4,4,2,0,0,1,0,0,2,0,35,27,5,4,2,0,1,1,1,0 -050,01,031,Alabama,Coffee County,10,15,2307,1067,1240,867,994,143,180,27,18,8,27,0,0,22,21,887,1013,147,181,45,35,12,31,2,1,1055,1222,856,978,143,179,26,18,8,26,0,0,22,21,876,997,147,180,44,35,12,30,2,1,12,18,11,16,0,1,1,0,0,1,0,0,0,0,11,16,0,1,1,0,0,1,0,0 -050,01,031,Alabama,Coffee County,10,16,1474,623,851,551,712,59,106,5,10,4,16,1,0,3,7,554,718,59,108,8,16,4,16,1,0,618,842,546,707,59,105,5,9,4,15,1,0,3,6,549,713,59,106,8,14,4,15,1,0,5,9,5,5,0,1,0,1,0,1,0,0,0,1,5,5,0,2,0,2,0,1,0,0 -050,01,031,Alabama,Coffee County,10,17,1090,454,636,395,514,51,93,5,3,0,22,0,0,3,4,398,518,51,93,8,5,0,24,0,1,443,625,385,505,51,92,5,2,0,22,0,0,2,4,387,509,51,92,7,4,0,24,0,1,11,11,10,9,0,1,0,1,0,0,0,0,1,0,11,9,0,1,1,1,0,0,0,0 -050,01,031,Alabama,Coffee County,10,18,1001,326,675,284,574,35,72,0,7,0,10,2,0,5,12,288,586,38,75,4,17,4,12,2,0,316,660,276,561,35,71,0,7,0,10,1,0,4,11,280,572,37,73,3,17,3,12,1,0,10,15,8,13,0,1,0,0,0,0,1,0,1,1,8,14,1,2,1,0,1,0,1,0 -050,01,031,Alabama,Coffee County,11,0,52097,25604,26493,19533,19908,4424,4807,362,367,311,585,128,73,846,753,20295,20590,4807,5124,690,664,524,796,189,124,23500,24565,17896,18368,4272,4662,284,292,287,565,42,26,719,652,18551,18959,4594,4937,547,547,479,746,86,60,2104,1928,1637,1540,152,145,78,75,24,20,86,47,127,101,1744,1631,213,187,143,117,45,50,103,64 -050,01,031,Alabama,Coffee County,11,1,3197,1662,1535,1122,1067,360,313,10,21,25,38,6,7,139,89,1251,1149,441,368,37,37,70,60,14,15,1410,1300,922,911,336,281,8,4,17,28,4,3,123,73,1038,978,408,330,28,16,56,45,10,7,252,235,200,156,24,32,2,17,8,10,2,4,16,16,213,171,33,38,9,21,14,15,4,8 -050,01,031,Alabama,Coffee County,11,2,3399,1727,1672,1247,1227,281,302,22,15,22,16,11,8,144,104,1380,1326,369,361,53,44,61,40,18,13,1511,1452,1076,1054,263,290,15,10,22,14,6,1,129,83,1198,1134,342,340,39,28,59,36,11,2,216,220,171,173,18,12,7,5,0,2,5,7,15,21,182,192,27,21,14,16,2,4,7,11 -050,01,031,Alabama,Coffee County,11,3,3556,1824,1732,1348,1272,318,299,23,29,17,18,12,10,106,104,1444,1366,378,361,50,51,47,56,17,17,1597,1510,1168,1085,305,291,13,23,12,17,4,2,95,92,1255,1167,357,346,37,40,39,50,8,7,227,222,180,187,13,8,10,6,5,1,8,8,11,12,189,199,21,15,13,11,8,6,9,10 -050,01,031,Alabama,Coffee County,11,4,3346,1745,1601,1292,1180,304,316,16,20,25,16,5,5,103,64,1388,1240,356,346,52,39,49,33,12,9,1582,1444,1160,1050,294,304,12,18,24,15,3,0,89,57,1242,1104,342,332,41,34,46,29,9,3,163,157,132,130,10,12,4,2,1,1,2,5,14,7,146,136,14,14,11,5,3,4,3,6 -050,01,031,Alabama,Coffee County,11,5,2976,1513,1463,1120,1000,295,360,11,26,15,20,2,2,70,55,1180,1050,326,385,37,44,36,38,7,4,1364,1336,1001,896,283,350,9,21,14,20,1,0,56,49,1050,941,307,372,29,37,33,35,4,2,149,127,119,104,12,10,2,5,1,0,1,2,14,6,130,109,19,13,8,7,3,3,3,2 -050,01,031,Alabama,Coffee County,11,6,3366,1697,1669,1231,1186,322,364,43,30,39,35,17,5,45,49,1269,1228,339,384,61,47,54,52,21,9,1545,1535,1125,1084,308,348,29,23,38,35,4,1,41,44,1159,1121,322,367,45,38,53,51,8,4,152,134,106,102,14,16,14,7,1,0,13,4,4,5,110,107,17,17,16,9,1,1,13,5 -050,01,031,Alabama,Coffee County,11,7,3277,1702,1575,1288,1172,300,272,29,23,34,45,23,13,28,50,1313,1215,307,289,45,48,39,62,26,16,1506,1457,1145,1083,286,263,24,17,33,45,0,7,18,42,1161,1118,289,275,34,37,38,62,2,10,196,118,143,89,14,9,5,6,1,0,23,6,10,8,152,97,18,14,11,11,1,0,24,6 -050,01,031,Alabama,Coffee County,11,8,3313,1582,1731,1202,1272,278,308,23,27,29,69,23,6,27,49,1226,1317,283,323,39,53,38,84,27,10,1382,1559,1052,1142,263,298,15,16,29,68,4,1,19,34,1069,1174,265,308,24,35,37,78,6,1,200,172,150,130,15,10,8,11,0,1,19,5,8,15,157,143,18,15,15,18,1,6,21,9 -050,01,031,Alabama,Coffee County,11,9,3341,1680,1661,1296,1239,290,333,23,17,26,36,6,5,39,31,1330,1263,300,339,47,36,35,48,13,7,1525,1537,1174,1132,282,324,19,15,21,36,3,2,26,28,1196,1155,288,330,38,32,27,46,6,3,155,124,122,107,8,9,4,2,5,0,3,3,13,3,134,108,12,9,9,4,8,2,7,4 -050,01,031,Alabama,Coffee County,11,10,3568,1751,1817,1392,1400,270,316,38,21,23,45,4,2,24,33,1413,1432,277,325,53,38,26,52,6,3,1648,1688,1312,1285,267,312,28,15,23,44,1,1,17,31,1328,1315,270,319,39,32,26,51,2,2,103,129,80,115,3,4,10,6,0,1,3,1,7,2,85,117,7,6,14,6,0,1,4,1 -050,01,031,Alabama,Coffee County,11,11,3371,1673,1698,1314,1334,289,288,25,23,12,27,7,4,26,22,1337,1353,295,294,45,35,15,33,7,6,1593,1634,1254,1282,283,281,21,22,11,27,2,3,22,19,1274,1298,288,286,37,33,14,32,2,5,80,64,60,52,6,7,4,1,1,0,5,1,4,3,63,55,7,8,8,2,1,1,5,1 -050,01,031,Alabama,Coffee County,11,12,3280,1629,1651,1247,1251,318,301,22,28,14,50,4,2,24,19,1269,1267,324,305,38,39,18,55,5,5,1572,1601,1207,1207,312,299,18,28,13,48,3,1,19,18,1224,1222,316,303,31,39,16,52,4,4,57,50,40,44,6,2,4,0,1,2,1,1,5,1,45,45,8,2,7,0,2,3,1,1 -050,01,031,Alabama,Coffee County,11,13,3236,1510,1726,1196,1311,260,310,19,29,10,48,2,3,23,25,1217,1335,265,311,35,45,12,55,4,7,1452,1648,1144,1243,256,305,18,24,10,48,2,3,22,25,1164,1267,260,306,34,40,12,55,4,7,58,78,52,68,4,5,1,5,0,0,0,0,1,0,53,68,5,5,1,5,0,0,0,0 -050,01,031,Alabama,Coffee County,11,14,2725,1288,1437,1026,1120,223,243,17,20,6,39,3,1,13,14,1038,1132,224,245,28,32,6,41,5,1,1238,1402,986,1089,218,239,15,20,6,39,3,1,10,14,996,1101,218,241,24,32,6,41,4,1,50,35,40,31,5,4,2,0,0,0,0,0,3,0,42,31,6,4,4,0,0,0,1,0 -050,01,031,Alabama,Coffee County,11,15,2450,1158,1292,938,1042,164,191,28,13,9,28,0,0,19,18,956,1059,165,192,44,29,10,29,2,1,1143,1270,924,1022,164,190,27,13,9,27,0,0,19,18,942,1039,165,191,43,29,10,28,2,1,15,22,14,20,0,1,1,0,0,1,0,0,0,0,14,20,0,1,1,0,0,1,0,0 -050,01,031,Alabama,Coffee County,11,16,1554,655,899,570,738,65,113,6,15,5,22,1,0,8,11,576,747,67,116,13,24,5,23,2,0,646,890,561,733,65,112,6,14,5,21,1,0,8,10,567,741,67,115,13,23,5,21,2,0,9,9,9,5,0,1,0,1,0,1,0,0,0,1,9,6,0,1,0,1,0,2,0,0 -050,01,031,Alabama,Coffee County,11,17,1140,471,669,420,534,42,106,6,3,0,22,0,0,3,4,422,538,43,106,9,7,0,22,0,0,464,652,414,520,42,104,6,2,0,22,0,0,2,4,415,524,43,104,8,6,0,22,0,0,7,17,6,14,0,2,0,1,0,0,0,0,1,0,7,14,0,2,1,1,0,0,0,0 -050,01,031,Alabama,Coffee County,11,18,1002,337,665,284,563,45,72,1,7,0,11,2,0,5,12,286,573,48,74,4,16,3,13,3,1,322,650,271,550,45,71,1,7,0,11,1,0,4,11,273,560,47,72,3,16,2,12,2,1,15,15,13,13,0,1,0,0,0,0,1,0,1,1,13,13,1,2,1,0,1,1,1,0 -050,01,031,Alabama,Coffee County,12,0,52639,25956,26683,19734,20100,4522,4769,354,377,321,574,130,82,895,781,20545,20809,4940,5097,679,692,577,777,188,142,23756,24635,18016,18442,4359,4628,276,297,295,552,43,31,767,685,18720,19074,4719,4917,538,562,520,729,84,78,2200,2048,1718,1658,163,141,78,80,26,22,87,51,128,96,1825,1735,221,180,141,130,57,48,104,64 -050,01,031,Alabama,Coffee County,12,1,3187,1671,1516,1139,1057,348,294,13,18,22,35,5,7,144,105,1270,1153,439,360,39,39,61,58,15,14,1395,1281,921,893,320,263,9,6,17,25,2,2,126,92,1038,977,400,324,27,20,53,45,10,9,276,235,218,164,28,31,4,12,5,10,3,5,18,13,232,176,39,36,12,19,8,13,5,5 -050,01,031,Alabama,Coffee County,12,2,3435,1763,1672,1258,1224,292,295,16,22,29,15,8,6,160,110,1405,1322,384,360,52,52,72,45,16,15,1532,1450,1072,1046,273,285,10,10,25,13,8,3,144,93,1208,1132,356,342,38,32,65,38,14,9,231,222,186,178,19,10,6,12,4,2,0,3,16,17,197,190,28,18,14,20,7,7,2,6 -050,01,031,Alabama,Coffee County,12,3,3667,1846,1821,1357,1353,323,302,24,29,21,16,17,14,104,107,1452,1453,381,358,51,58,52,47,21,19,1595,1569,1158,1146,310,293,13,23,16,15,5,1,93,91,1243,1233,362,341,36,43,46,44,7,5,251,252,199,207,13,9,11,6,5,1,12,13,11,16,209,220,19,17,15,15,6,3,14,14 -050,01,031,Alabama,Coffee County,12,4,3307,1703,1604,1242,1197,309,300,18,23,22,17,4,7,108,60,1343,1253,360,333,48,39,57,34,10,9,1534,1415,1103,1030,301,291,13,20,21,16,2,2,94,56,1191,1083,348,322,37,34,50,32,7,3,169,189,139,167,8,9,5,3,1,1,2,5,14,4,152,170,12,11,11,5,7,2,3,6 -050,01,031,Alabama,Coffee County,12,5,3049,1608,1441,1171,1020,322,316,11,25,26,17,3,4,75,59,1241,1075,356,344,34,44,51,30,7,10,1455,1320,1046,933,307,303,10,18,24,15,1,1,67,50,1109,981,338,324,30,33,47,27,4,5,153,121,125,87,15,13,1,7,2,2,2,3,8,9,132,94,18,20,4,11,4,3,3,5 -050,01,031,Alabama,Coffee County,12,6,3332,1684,1648,1244,1172,308,381,28,25,40,23,13,5,51,42,1286,1206,329,397,50,40,60,40,17,7,1546,1513,1145,1068,294,367,18,17,39,23,4,1,46,37,1184,1099,313,380,36,30,58,38,7,3,138,135,99,104,14,14,10,8,1,0,9,4,5,5,102,107,16,17,14,10,2,2,10,4 -050,01,031,Alabama,Coffee County,12,7,3314,1691,1623,1261,1191,314,301,31,27,24,43,20,11,41,50,1297,1238,333,315,49,47,38,59,26,14,1519,1497,1141,1089,301,293,25,21,23,43,0,6,29,45,1166,1131,314,306,37,38,34,58,3,9,172,126,120,102,13,8,6,6,1,0,20,5,12,5,131,107,19,9,12,9,4,1,23,5 -050,01,031,Alabama,Coffee County,12,8,3450,1712,1738,1309,1278,301,303,21,20,28,79,24,9,29,49,1334,1320,306,316,39,43,36,98,28,18,1492,1562,1137,1138,289,292,14,13,28,78,4,4,20,37,1154,1170,292,301,26,30,35,92,5,9,220,176,172,140,12,11,7,7,0,1,20,5,9,12,180,150,14,15,13,13,1,6,23,9 -050,01,031,Alabama,Coffee County,12,9,3314,1680,1634,1278,1242,302,289,28,23,25,35,13,6,34,39,1307,1278,318,300,48,46,33,48,15,10,1512,1502,1163,1133,284,281,21,19,20,35,4,1,20,33,1181,1163,291,291,33,38,25,47,5,5,168,132,115,109,18,8,7,4,5,0,9,5,14,6,126,115,27,9,15,8,8,1,10,5 -050,01,031,Alabama,Coffee County,12,10,3560,1759,1801,1390,1388,272,318,34,22,31,40,4,1,28,32,1412,1414,283,327,49,42,39,46,7,5,1640,1660,1289,1261,269,314,27,16,31,39,1,0,23,30,1307,1286,276,323,40,35,38,44,4,3,119,141,101,127,3,4,7,6,0,1,3,1,5,2,105,128,7,4,9,7,1,2,3,2 -050,01,031,Alabama,Coffee County,12,11,3346,1642,1704,1288,1315,291,311,24,26,9,24,5,5,25,23,1312,1336,295,314,41,43,13,30,6,6,1563,1632,1224,1255,287,306,21,24,9,24,1,4,21,19,1244,1273,290,309,35,38,13,28,2,5,79,72,64,60,4,5,3,2,0,0,4,1,4,4,68,63,5,5,6,5,0,2,4,1 -050,01,031,Alabama,Coffee County,12,12,3289,1678,1611,1292,1236,314,290,26,22,14,41,5,2,27,20,1316,1254,318,293,44,35,22,46,8,4,1609,1566,1243,1196,308,288,20,22,12,40,3,1,23,19,1263,1213,312,291,35,35,19,44,6,3,69,45,49,40,6,2,6,0,2,1,2,1,4,1,53,41,6,2,9,0,3,2,2,1 -050,01,031,Alabama,Coffee County,12,13,3252,1493,1759,1178,1321,266,327,20,33,6,52,3,2,20,24,1196,1345,269,329,35,51,11,54,5,4,1437,1673,1130,1245,263,322,18,29,6,51,3,2,17,24,1145,1269,266,324,33,47,9,53,4,4,56,86,48,76,3,5,2,4,0,1,0,0,3,0,51,76,3,5,2,4,2,1,1,0 -050,01,031,Alabama,Coffee County,12,14,2804,1318,1486,1042,1155,236,243,15,21,10,48,3,3,12,16,1054,1170,238,244,23,35,13,50,3,4,1267,1440,1002,1114,229,239,14,20,10,48,3,3,9,16,1011,1129,231,240,20,34,11,50,3,4,51,46,40,41,7,4,1,1,0,0,0,0,3,0,43,41,7,4,3,1,2,0,0,0 -050,01,031,Alabama,Coffee County,12,15,2519,1193,1326,979,1051,160,209,29,17,8,32,0,0,17,17,996,1067,161,212,45,31,11,33,0,1,1175,1300,962,1030,160,205,28,17,8,31,0,0,17,17,979,1046,161,208,44,31,11,32,0,1,18,26,17,21,0,4,1,0,0,1,0,0,0,0,17,21,0,4,1,0,0,1,0,0 -050,01,031,Alabama,Coffee County,12,16,1639,701,938,599,776,76,112,9,14,5,24,1,0,11,12,609,785,78,116,20,22,5,26,1,1,692,928,591,770,76,111,8,13,5,23,1,0,11,11,601,779,78,115,19,21,5,24,1,0,9,10,8,6,0,1,1,1,0,1,0,0,0,1,8,6,0,1,1,1,0,2,0,1 -050,01,031,Alabama,Coffee County,12,17,1170,474,696,422,567,43,100,5,3,1,22,0,0,3,4,425,571,44,100,6,7,2,22,0,0,467,678,416,551,43,98,5,3,1,22,0,0,2,4,418,555,44,98,6,7,1,22,0,0,7,18,6,16,0,2,0,0,0,0,0,0,1,0,7,16,0,2,0,0,1,0,0,0 -050,01,031,Alabama,Coffee County,12,18,1005,340,665,285,557,45,78,2,7,0,11,2,0,6,12,290,569,48,79,6,18,1,11,3,1,326,649,273,544,45,77,2,6,0,11,1,0,5,11,278,555,47,78,6,16,0,11,2,1,14,16,12,13,0,1,0,1,0,0,1,0,1,1,12,14,1,1,0,2,1,0,1,0 -050,01,031,Alabama,Coffee County,13,0,53230,26245,26985,19984,20307,4547,4832,353,394,331,561,134,86,896,805,20798,21024,4961,5189,672,699,585,775,195,149,23956,24851,18197,18571,4365,4693,274,308,302,538,46,34,772,707,18902,19204,4725,5005,543,566,525,734,87,87,2289,2134,1787,1736,182,139,79,86,29,23,88,52,124,98,1896,1820,236,184,129,133,60,41,108,62 -050,01,031,Alabama,Coffee County,13,1,3207,1652,1555,1152,1091,343,305,14,19,18,20,6,9,119,111,1261,1195,419,377,42,39,45,50,10,13,1388,1328,954,925,311,277,7,8,15,14,3,3,98,101,1045,1020,376,345,25,24,39,41,5,6,264,227,198,166,32,28,7,11,3,6,3,6,21,10,216,175,43,32,17,15,6,9,5,7 -050,01,031,Alabama,Coffee County,13,2,3481,1800,1681,1260,1215,309,301,12,30,31,27,10,5,178,103,1427,1315,416,364,49,51,84,53,19,9,1554,1457,1069,1043,287,288,7,13,22,21,8,3,161,89,1219,1130,387,342,40,27,70,45,13,7,246,224,191,172,22,13,5,17,9,6,2,2,17,14,208,185,29,22,9,24,14,8,6,2 -050,01,031,Alabama,Coffee County,13,3,3644,1852,1792,1362,1306,319,314,27,22,18,12,16,14,110,124,1463,1418,377,378,52,55,54,48,26,24,1598,1520,1154,1087,310,304,16,17,14,11,4,0,100,101,1247,1179,364,360,37,39,48,42,12,7,254,272,208,219,9,10,11,5,4,1,12,14,10,23,216,239,13,18,15,16,6,6,14,17 -050,01,031,Alabama,Coffee County,13,4,3257,1669,1588,1226,1187,298,286,21,30,23,14,2,9,99,62,1317,1241,353,317,48,48,51,35,11,16,1483,1394,1073,1021,288,275,15,25,21,13,1,4,85,56,1152,1070,335,303,35,40,45,33,8,11,186,194,153,166,10,11,6,5,2,1,1,5,14,6,165,171,18,14,13,8,6,2,3,5 -050,01,031,Alabama,Coffee County,13,5,3132,1654,1478,1209,1069,308,298,13,22,32,21,4,3,88,65,1290,1127,348,327,41,42,58,41,6,9,1481,1336,1062,959,291,287,12,15,30,18,2,0,84,57,1139,1010,328,313,40,31,55,36,4,6,173,142,147,110,17,11,1,7,2,3,2,3,4,8,151,117,20,14,1,11,3,5,2,3 -050,01,031,Alabama,Coffee County,13,6,3356,1713,1643,1253,1158,331,386,23,29,40,28,12,4,54,38,1300,1191,349,404,45,40,64,40,16,8,1577,1513,1153,1053,318,375,14,24,40,28,5,1,47,32,1195,1081,335,388,32,34,60,40,8,4,136,130,100,105,13,11,9,5,0,0,7,3,7,6,105,110,14,16,13,6,4,0,8,4 -050,01,031,Alabama,Coffee County,13,7,3432,1745,1687,1296,1240,337,327,32,23,29,40,20,8,31,49,1325,1286,347,344,44,42,41,55,22,10,1578,1564,1180,1147,319,316,23,15,27,40,0,2,29,44,1207,1188,328,331,34,30,39,55,2,4,167,123,116,93,18,11,9,8,2,0,20,6,2,5,118,98,19,13,10,12,2,0,20,6 -050,01,031,Alabama,Coffee County,13,8,3456,1720,1736,1328,1302,293,293,18,24,18,59,28,10,35,48,1359,1342,303,305,36,45,25,75,32,18,1491,1563,1156,1157,273,284,17,18,18,58,4,6,23,40,1176,1192,278,292,30,36,24,72,6,11,229,173,172,145,20,9,1,6,0,1,24,4,12,8,183,150,25,13,6,9,1,3,26,7 -050,01,031,Alabama,Coffee County,13,9,3313,1669,1644,1251,1216,325,309,23,23,33,46,12,9,25,41,1273,1250,331,316,37,50,39,57,15,14,1509,1508,1134,1107,308,302,17,18,29,46,4,3,17,32,1149,1133,312,308,28,38,32,56,6,7,160,136,117,109,17,7,6,5,4,0,8,6,8,9,124,117,19,8,9,12,7,1,9,7 -050,01,031,Alabama,Coffee County,13,10,3618,1768,1850,1411,1415,266,343,26,25,31,39,3,2,31,26,1438,1438,273,351,46,36,40,46,7,6,1620,1691,1281,1273,264,337,20,18,30,38,1,1,24,24,1302,1294,268,344,36,28,39,45,4,4,148,159,130,142,2,6,6,7,1,1,2,1,7,2,136,144,5,7,10,8,1,1,3,2 -050,01,031,Alabama,Coffee County,13,11,3331,1643,1688,1301,1315,274,296,26,21,11,28,7,3,24,25,1321,1336,280,303,44,38,17,32,7,4,1560,1610,1236,1248,269,292,24,18,11,28,3,2,17,22,1250,1267,273,297,37,34,16,31,3,3,83,78,65,67,5,4,2,3,0,0,4,1,7,3,71,69,7,6,7,4,1,1,4,1 -050,01,031,Alabama,Coffee County,13,12,3356,1714,1642,1359,1270,274,281,31,25,13,36,5,6,32,24,1388,1290,280,289,50,42,20,39,10,7,1638,1586,1306,1219,271,279,21,25,12,36,2,5,26,22,1330,1237,274,285,37,42,17,39,6,6,76,56,53,51,3,2,10,0,1,0,3,1,6,2,58,53,6,4,13,0,3,0,4,1 -050,01,031,Alabama,Coffee County,13,13,3276,1542,1734,1191,1313,300,314,23,32,8,54,3,1,17,20,1207,1332,304,317,32,45,12,60,4,4,1484,1645,1147,1230,294,312,20,30,7,52,3,1,13,20,1159,1249,296,315,29,43,10,58,3,4,58,89,44,83,6,2,3,2,1,2,0,0,4,0,48,83,8,2,3,2,2,2,1,0 -050,01,031,Alabama,Coffee County,13,14,2869,1300,1569,1032,1226,218,251,18,25,12,45,3,2,17,20,1048,1239,220,257,32,42,14,47,5,4,1247,1518,987,1182,214,247,17,22,12,45,3,2,14,20,1000,1195,215,253,31,39,12,47,3,4,53,51,45,44,4,4,1,3,0,0,0,0,3,0,48,44,5,4,1,3,2,0,2,0 -050,01,031,Alabama,Coffee County,13,15,2612,1251,1361,1023,1064,179,227,25,17,6,34,1,0,17,19,1039,1078,182,232,39,31,8,37,1,2,1225,1330,1001,1039,176,222,24,17,6,33,1,0,17,19,1017,1053,179,227,38,31,8,36,1,2,26,31,22,25,3,5,1,0,0,1,0,0,0,0,22,25,3,5,1,0,0,1,0,0 -050,01,031,Alabama,Coffee County,13,16,1725,751,974,639,796,81,121,13,14,6,28,1,1,11,14,648,808,82,124,22,27,8,28,2,1,738,961,628,788,80,119,12,13,6,27,1,1,11,13,637,799,81,122,21,25,8,27,2,1,13,13,11,8,1,2,1,1,0,1,0,0,0,1,11,9,1,2,1,2,0,1,0,0 -050,01,031,Alabama,Coffee County,13,17,1140,441,699,385,580,45,94,6,4,2,18,0,0,3,3,385,583,48,94,8,7,3,18,0,0,437,678,382,560,45,93,6,4,2,18,0,0,2,3,382,563,47,93,8,7,2,18,0,0,4,21,3,20,0,1,0,0,0,0,0,0,1,0,3,20,1,1,0,0,1,0,0,0 -050,01,031,Alabama,Coffee County,13,18,1025,361,664,306,544,47,86,2,9,0,12,1,0,5,13,309,555,49,90,5,19,2,14,2,0,348,649,294,533,47,84,2,8,0,12,1,0,4,12,296,544,49,87,5,18,1,13,1,0,13,15,12,11,0,2,0,1,0,0,0,0,1,1,13,11,0,3,0,1,1,1,1,0 -050,01,033,Alabama,Colbert County,1,0,54428,26159,28269,21463,22815,4042,4767,146,142,104,134,11,9,393,402,21842,23188,4236,4960,328,343,140,174,15,16,25550,27785,20962,22409,3987,4728,127,136,96,129,8,6,370,377,21323,22761,4167,4906,294,326,132,169,11,10,609,484,501,406,55,39,19,6,8,5,3,3,23,25,519,427,69,54,34,17,8,5,4,6 -050,01,033,Alabama,Colbert County,1,1,3134,1625,1509,1229,1146,293,280,10,9,12,5,1,1,80,68,1306,1210,361,332,18,23,22,11,3,2,1541,1430,1164,1084,282,271,8,8,9,4,0,0,78,63,1239,1143,348,321,14,20,19,10,2,0,84,79,65,62,11,9,2,1,3,1,1,1,2,5,67,67,13,11,4,3,3,1,1,2 -050,01,033,Alabama,Colbert County,1,2,3103,1586,1517,1255,1191,253,259,5,8,13,12,1,1,59,46,1313,1235,291,293,18,17,21,17,2,1,1517,1455,1201,1138,246,254,4,8,11,11,1,0,54,44,1254,1180,284,287,13,16,19,16,1,0,69,62,54,53,7,5,1,0,2,1,0,1,5,2,59,55,7,6,5,1,2,1,1,1 -050,01,033,Alabama,Colbert County,1,3,3616,1864,1752,1441,1351,347,330,12,9,9,9,1,1,54,52,1494,1403,388,363,23,24,13,16,1,1,1802,1708,1397,1313,333,324,12,9,8,9,1,1,51,52,1447,1365,372,357,22,24,12,16,1,1,62,44,44,38,14,6,0,0,1,0,0,0,3,0,47,38,16,6,1,0,1,0,0,0 -050,01,033,Alabama,Colbert County,1,4,3598,1790,1808,1393,1367,340,387,10,13,8,6,2,2,37,33,1430,1398,356,409,28,22,12,10,2,3,1748,1775,1355,1337,340,387,7,12,8,6,2,2,36,31,1391,1366,356,408,24,20,12,10,2,3,42,33,38,30,0,0,3,1,0,0,0,0,1,2,39,32,0,1,4,2,0,0,0,0 -050,01,033,Alabama,Colbert County,1,5,3010,1511,1499,1208,1167,270,288,9,12,3,9,2,0,19,23,1225,1186,278,297,22,28,4,11,2,0,1443,1467,1154,1139,265,286,5,11,3,9,1,0,15,22,1169,1158,269,294,16,26,4,11,1,0,68,32,54,28,5,2,4,1,0,0,1,0,4,1,56,28,9,3,6,2,0,0,1,0 -050,01,033,Alabama,Colbert County,1,6,3046,1493,1553,1237,1241,223,272,7,9,9,9,0,1,17,21,1253,1258,227,284,20,21,11,11,0,1,1432,1512,1182,1204,220,272,5,9,9,9,0,0,16,18,1198,1219,223,281,17,20,11,11,0,0,61,41,55,37,3,0,2,0,0,0,0,1,1,3,55,39,4,3,3,1,0,0,0,1 -050,01,033,Alabama,Colbert County,1,7,3045,1449,1596,1182,1268,243,274,10,17,4,15,0,1,10,21,1192,1288,244,282,18,26,5,22,0,1,1395,1541,1131,1222,242,267,8,17,4,15,0,1,10,19,1141,1240,243,273,16,26,5,22,0,1,54,55,51,46,1,7,2,0,0,0,0,0,0,2,51,48,1,9,2,0,0,0,0,0 -050,01,033,Alabama,Colbert County,1,8,3335,1627,1708,1367,1392,226,287,14,5,4,6,0,0,16,18,1382,1409,230,292,26,15,5,9,0,1,1572,1674,1323,1363,221,284,11,5,3,6,0,0,14,16,1337,1378,224,288,21,14,4,9,0,1,55,34,44,29,5,3,3,0,1,0,0,0,2,2,45,31,6,4,5,1,1,0,0,0 -050,01,033,Alabama,Colbert County,1,9,3589,1783,1806,1483,1470,269,302,11,7,7,13,2,0,11,14,1494,1482,271,305,20,18,7,13,2,2,1747,1778,1452,1448,267,302,10,7,6,11,1,0,11,10,1463,1457,269,303,19,16,6,11,1,1,36,28,31,22,2,0,1,0,1,2,1,0,0,4,31,25,2,2,1,2,1,2,1,1 -050,01,033,Alabama,Colbert County,1,10,4051,1955,2096,1630,1712,290,350,14,6,5,10,1,1,15,17,1645,1729,290,352,27,21,6,10,2,1,1932,2074,1609,1693,288,348,14,6,5,10,1,1,15,16,1624,1709,288,349,27,21,6,10,2,1,23,22,21,19,2,2,0,0,0,0,0,0,0,1,21,20,2,3,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,1,11,4208,2032,2176,1700,1746,285,386,9,14,13,8,1,1,24,21,1722,1766,290,388,29,34,14,8,1,1,2013,2158,1688,1732,284,385,8,13,13,8,1,1,19,19,1706,1751,285,386,26,31,14,8,1,1,19,18,12,14,1,1,1,1,0,0,0,0,5,2,16,15,5,2,3,3,0,0,0,0 -050,01,033,Alabama,Colbert County,1,12,3733,1805,1928,1496,1567,281,323,12,9,5,11,0,0,11,18,1507,1582,282,328,22,26,5,11,0,0,1792,1915,1484,1557,280,321,12,8,5,11,0,0,11,18,1495,1572,281,326,22,25,5,11,0,0,13,13,12,10,1,2,0,1,0,0,0,0,0,0,12,10,1,2,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,1,13,3497,1657,1840,1371,1516,257,289,7,10,5,9,0,0,17,16,1386,1530,259,292,22,26,7,9,0,0,1649,1837,1363,1513,257,289,7,10,5,9,0,0,17,16,1378,1527,259,292,22,26,7,9,0,0,8,3,8,3,0,0,0,0,0,0,0,0,0,0,8,3,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,1,14,2939,1319,1620,1127,1370,179,231,3,6,5,7,0,0,5,6,1132,1376,180,231,7,12,5,7,0,0,1315,1614,1125,1366,177,230,3,6,5,6,0,0,5,6,1130,1372,178,230,7,12,5,6,0,0,4,6,2,4,2,1,0,0,0,1,0,0,0,0,2,4,2,1,0,0,0,1,0,0 -050,01,033,Alabama,Colbert County,1,15,2315,1011,1304,881,1124,113,162,5,5,1,1,0,0,11,12,892,1134,115,164,13,13,2,4,0,1,1007,1298,877,1120,113,161,5,5,1,1,0,0,11,11,888,1129,115,163,13,13,2,4,0,0,4,6,4,4,0,1,0,0,0,0,0,0,0,1,4,5,0,1,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,1,16,1770,767,1003,682,860,75,134,4,1,1,1,0,0,5,7,687,867,75,134,9,7,1,2,0,0,765,1001,681,858,74,134,4,1,1,1,0,0,5,7,686,865,74,134,9,7,1,2,0,0,2,2,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,1,17,1286,490,796,433,693,55,96,1,1,0,2,0,0,1,4,433,696,56,97,2,4,0,2,0,1,487,792,430,689,55,96,1,1,0,2,0,0,1,4,430,692,56,97,2,4,0,2,0,1,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,1,18,1153,395,758,348,634,43,117,3,1,0,1,0,0,1,5,349,639,43,117,4,6,0,1,0,0,393,756,346,633,43,117,3,0,0,1,0,0,1,5,347,638,43,117,4,5,0,1,0,0,2,2,2,1,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,2,0,54430,26160,28270,21467,22818,4039,4765,146,142,104,134,11,9,393,402,21846,23191,4233,4958,328,343,140,174,15,16,25551,27786,20966,22412,3984,4726,127,136,96,129,8,6,370,377,21327,22764,4164,4904,294,326,132,169,11,10,609,484,501,406,55,39,19,6,8,5,3,3,23,25,519,427,69,54,34,17,8,5,4,6 -050,01,033,Alabama,Colbert County,2,1,3133,1624,1509,1229,1146,292,280,10,9,12,5,1,1,80,68,1306,1210,360,332,18,23,22,11,3,2,1540,1430,1164,1084,281,271,8,8,9,4,0,0,78,63,1239,1143,347,321,14,20,19,10,2,0,84,79,65,62,11,9,2,1,3,1,1,1,2,5,67,67,13,11,4,3,3,1,1,2 -050,01,033,Alabama,Colbert County,2,2,3102,1585,1517,1255,1191,252,259,5,8,13,12,1,1,59,46,1313,1235,290,293,18,17,21,17,2,1,1516,1455,1201,1138,245,254,4,8,11,11,1,0,54,44,1254,1180,283,287,13,16,19,16,1,0,69,62,54,53,7,5,1,0,2,1,0,1,5,2,59,55,7,6,5,1,2,1,1,1 -050,01,033,Alabama,Colbert County,2,3,3616,1864,1752,1441,1351,347,330,12,9,9,9,1,1,54,52,1494,1403,388,363,23,24,13,16,1,1,1802,1708,1397,1313,333,324,12,9,8,9,1,1,51,52,1447,1365,372,357,22,24,12,16,1,1,62,44,44,38,14,6,0,0,1,0,0,0,3,0,47,38,16,6,1,0,1,0,0,0 -050,01,033,Alabama,Colbert County,2,4,3598,1790,1808,1393,1367,340,387,10,13,8,6,2,2,37,33,1430,1398,356,409,28,22,12,10,2,3,1748,1775,1355,1337,340,387,7,12,8,6,2,2,36,31,1391,1366,356,408,24,20,12,10,2,3,42,33,38,30,0,0,3,1,0,0,0,0,1,2,39,32,0,1,4,2,0,0,0,0 -050,01,033,Alabama,Colbert County,2,5,3010,1511,1499,1208,1167,270,288,9,12,3,9,2,0,19,23,1225,1186,278,297,22,28,4,11,2,0,1443,1467,1154,1139,265,286,5,11,3,9,1,0,15,22,1169,1158,269,294,16,26,4,11,1,0,68,32,54,28,5,2,4,1,0,0,1,0,4,1,56,28,9,3,6,2,0,0,1,0 -050,01,033,Alabama,Colbert County,2,6,3045,1493,1552,1237,1241,223,271,7,9,9,9,0,1,17,21,1253,1258,227,283,20,21,11,11,0,1,1432,1511,1182,1204,220,271,5,9,9,9,0,0,16,18,1198,1219,223,280,17,20,11,11,0,0,61,41,55,37,3,0,2,0,0,0,0,1,1,3,55,39,4,3,3,1,0,0,0,1 -050,01,033,Alabama,Colbert County,2,7,3047,1450,1597,1183,1269,243,274,10,17,4,15,0,1,10,21,1193,1289,244,282,18,26,5,22,0,1,1396,1542,1132,1223,242,267,8,17,4,15,0,1,10,19,1142,1241,243,273,16,26,5,22,0,1,54,55,51,46,1,7,2,0,0,0,0,0,0,2,51,48,1,9,2,0,0,0,0,0 -050,01,033,Alabama,Colbert County,2,8,3335,1627,1708,1367,1392,226,287,14,5,4,6,0,0,16,18,1382,1409,230,292,26,15,5,9,0,1,1572,1674,1323,1363,221,284,11,5,3,6,0,0,14,16,1337,1378,224,288,21,14,4,9,0,1,55,34,44,29,5,3,3,0,1,0,0,0,2,2,45,31,6,4,5,1,1,0,0,0 -050,01,033,Alabama,Colbert County,2,9,3589,1783,1806,1483,1470,269,302,11,7,7,13,2,0,11,14,1494,1482,271,305,20,18,7,13,2,2,1747,1778,1452,1448,267,302,10,7,6,11,1,0,11,10,1463,1457,269,303,19,16,6,11,1,1,36,28,31,22,2,0,1,0,1,2,1,0,0,4,31,25,2,2,1,2,1,2,1,1 -050,01,033,Alabama,Colbert County,2,10,4051,1955,2096,1630,1712,290,350,14,6,5,10,1,1,15,17,1645,1729,290,352,27,21,6,10,2,1,1932,2074,1609,1693,288,348,14,6,5,10,1,1,15,16,1624,1709,288,349,27,21,6,10,2,1,23,22,21,19,2,2,0,0,0,0,0,0,0,1,21,20,2,3,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,2,11,4206,2031,2175,1700,1746,284,385,9,14,13,8,1,1,24,21,1722,1766,289,387,29,34,14,8,1,1,2012,2157,1688,1732,283,384,8,13,13,8,1,1,19,19,1706,1751,284,385,26,31,14,8,1,1,19,18,12,14,1,1,1,1,0,0,0,0,5,2,16,15,5,2,3,3,0,0,0,0 -050,01,033,Alabama,Colbert County,2,12,3735,1806,1929,1497,1568,281,323,12,9,5,11,0,0,11,18,1508,1583,282,328,22,26,5,11,0,0,1793,1916,1485,1558,280,321,12,8,5,11,0,0,11,18,1496,1573,281,326,22,25,5,11,0,0,13,13,12,10,1,2,0,1,0,0,0,0,0,0,12,10,1,2,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,2,13,3497,1657,1840,1371,1516,257,289,7,10,5,9,0,0,17,16,1386,1530,259,292,22,26,7,9,0,0,1649,1837,1363,1513,257,289,7,10,5,9,0,0,17,16,1378,1527,259,292,22,26,7,9,0,0,8,3,8,3,0,0,0,0,0,0,0,0,0,0,8,3,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,2,14,2941,1320,1621,1128,1371,179,231,3,6,5,7,0,0,5,6,1133,1377,180,231,7,12,5,7,0,0,1316,1615,1126,1367,177,230,3,6,5,6,0,0,5,6,1131,1373,178,230,7,12,5,6,0,0,4,6,2,4,2,1,0,0,0,1,0,0,0,0,2,4,2,1,0,0,0,1,0,0 -050,01,033,Alabama,Colbert County,2,15,2316,1012,1304,882,1124,113,162,5,5,1,1,0,0,11,12,893,1134,115,164,13,13,2,4,0,1,1008,1298,878,1120,113,161,5,5,1,1,0,0,11,11,889,1129,115,163,13,13,2,4,0,0,4,6,4,4,0,1,0,0,0,0,0,0,0,1,4,5,0,1,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,2,16,1770,767,1003,682,860,75,134,4,1,1,1,0,0,5,7,687,867,75,134,9,7,1,2,0,0,765,1001,681,858,74,134,4,1,1,1,0,0,5,7,686,865,74,134,9,7,1,2,0,0,2,2,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,2,17,1286,490,796,433,693,55,96,1,1,0,2,0,0,1,4,433,696,56,97,2,4,0,2,0,1,487,792,430,689,55,96,1,1,0,2,0,0,1,4,430,692,56,97,2,4,0,2,0,1,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,2,18,1153,395,758,348,634,43,117,3,1,0,1,0,0,1,5,349,639,43,117,4,6,0,1,0,0,393,756,346,633,43,117,3,0,0,1,0,0,1,5,347,638,43,117,4,5,0,1,0,0,2,2,2,1,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,3,0,54527,26216,28311,21496,22823,4054,4793,147,145,106,137,11,9,402,404,21880,23203,4260,4992,321,323,146,178,19,29,25590,27827,20978,22414,4001,4756,126,140,98,132,8,6,379,379,21340,22770,4193,4945,291,309,137,166,16,23,626,484,518,409,53,37,21,5,8,5,3,3,23,25,540,433,67,47,30,14,9,12,3,6 -050,01,033,Alabama,Colbert County,3,1,3143,1637,1506,1237,1148,293,278,9,7,13,6,1,1,84,66,1317,1212,361,330,23,16,22,12,2,4,1551,1433,1167,1088,284,272,7,6,10,5,0,0,83,62,1246,1148,351,322,21,14,19,10,1,2,86,73,70,60,9,6,2,1,3,1,1,1,1,4,71,64,10,8,2,2,3,2,1,2 -050,01,033,Alabama,Colbert County,3,2,3111,1590,1521,1252,1188,256,260,6,10,13,14,1,1,62,48,1313,1235,299,296,19,18,20,17,2,3,1517,1457,1196,1134,248,254,4,10,11,13,1,0,57,46,1252,1179,289,288,15,18,17,16,2,2,73,64,56,54,8,6,2,0,2,1,0,1,5,2,61,56,10,8,4,0,3,1,0,1 -050,01,033,Alabama,Colbert County,3,3,3605,1849,1756,1431,1352,344,332,12,10,10,9,1,1,51,52,1480,1402,378,368,28,26,13,12,2,2,1787,1713,1386,1314,331,327,12,10,9,9,1,1,48,52,1432,1364,363,363,27,26,12,12,2,2,62,43,45,38,13,5,0,0,1,0,0,0,3,0,48,38,15,5,1,0,1,0,0,0 -050,01,033,Alabama,Colbert County,3,4,3557,1780,1777,1382,1335,337,388,10,13,9,6,2,2,40,33,1421,1365,360,408,25,26,12,9,2,3,1736,1741,1342,1304,337,386,7,12,9,6,2,2,39,31,1380,1332,359,405,22,24,12,8,2,3,44,36,40,31,0,2,3,1,0,0,0,0,1,2,41,33,1,3,3,2,0,1,0,0 -050,01,033,Alabama,Colbert County,3,5,3079,1537,1542,1229,1198,274,298,10,12,3,8,2,0,19,26,1246,1221,284,310,20,24,4,12,3,2,1469,1511,1176,1171,269,296,5,11,3,8,1,0,15,25,1189,1193,277,308,13,22,4,12,2,2,68,31,53,27,5,2,5,1,0,0,1,0,4,1,57,28,7,2,7,2,0,0,1,0 -050,01,033,Alabama,Colbert County,3,6,3069,1509,1560,1247,1244,228,274,7,9,9,10,0,1,18,22,1263,1265,236,282,16,17,11,15,2,3,1445,1519,1190,1207,225,274,5,9,9,10,0,0,16,19,1204,1225,232,280,13,17,11,14,2,2,64,41,57,37,3,0,2,0,0,0,0,1,2,3,59,40,4,2,3,0,0,1,0,1 -050,01,033,Alabama,Colbert County,3,7,3048,1453,1595,1187,1265,244,278,9,17,4,14,0,1,9,20,1195,1282,247,285,14,30,5,19,1,2,1400,1543,1137,1221,243,272,7,17,4,14,0,1,9,18,1145,1236,246,279,12,28,5,18,1,2,53,52,50,44,1,6,2,0,0,0,0,0,0,2,50,46,1,6,2,2,0,1,0,0 -050,01,033,Alabama,Colbert County,3,8,3292,1598,1694,1339,1381,225,285,15,5,4,6,0,0,15,17,1354,1397,229,290,23,14,7,9,0,1,1542,1660,1294,1352,220,282,12,5,3,6,0,0,13,15,1307,1366,222,287,20,13,6,9,0,0,56,34,45,29,5,3,3,0,1,0,0,0,2,2,47,31,7,3,3,1,1,0,0,1 -050,01,033,Alabama,Colbert County,3,9,3588,1783,1805,1488,1472,264,299,11,7,6,12,2,0,12,15,1500,1486,266,302,19,18,8,14,2,0,1746,1777,1456,1450,262,299,10,7,5,10,1,0,12,11,1468,1461,264,301,18,16,7,10,1,0,37,28,32,22,2,0,1,0,1,2,1,0,0,4,32,25,2,1,1,2,1,4,1,0 -050,01,033,Alabama,Colbert County,3,10,4052,1962,2090,1635,1710,292,346,13,6,6,10,1,1,15,17,1650,1727,293,348,27,17,6,13,1,2,1937,2066,1612,1690,290,344,13,6,6,10,1,1,15,15,1627,1705,291,345,27,17,6,12,1,2,25,24,23,20,2,2,0,0,0,0,0,0,0,2,23,22,2,3,0,0,0,1,0,0 -050,01,033,Alabama,Colbert County,3,11,4182,2011,2171,1685,1736,281,392,9,14,12,8,1,1,23,20,1707,1756,284,395,27,28,15,9,1,3,1993,2152,1673,1721,280,391,8,13,12,8,1,1,19,18,1692,1739,280,393,24,26,15,9,1,3,18,19,12,15,1,1,1,1,0,0,0,0,4,2,15,17,4,2,3,2,0,0,0,0 -050,01,033,Alabama,Colbert County,3,12,3766,1831,1935,1518,1576,285,321,11,9,5,11,0,0,12,18,1530,1591,285,325,20,25,7,12,1,0,1816,1922,1505,1565,284,319,11,9,5,11,0,0,11,18,1516,1580,284,323,19,25,7,12,1,0,15,13,13,11,1,2,0,0,0,0,0,0,1,0,14,11,1,2,1,0,0,0,0,0 -050,01,033,Alabama,Colbert County,3,13,3538,1674,1864,1381,1529,263,296,7,11,5,11,0,0,18,17,1397,1543,265,300,23,25,7,12,0,2,1666,1860,1373,1525,263,296,7,11,5,11,0,0,18,17,1389,1539,265,300,23,25,7,12,0,2,8,4,8,4,0,0,0,0,0,0,0,0,0,0,8,4,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,3,14,2928,1313,1615,1122,1365,178,232,4,6,5,6,0,0,4,6,1126,1371,178,233,8,11,5,6,0,0,1309,1608,1120,1360,176,231,4,6,5,5,0,0,4,6,1124,1366,176,232,8,11,5,5,0,0,4,7,2,5,2,1,0,0,0,1,0,0,0,0,2,5,2,1,0,0,0,1,0,0 -050,01,033,Alabama,Colbert County,3,15,2331,1018,1313,882,1129,118,165,5,6,1,2,0,0,12,11,892,1140,120,168,15,13,3,2,0,1,1013,1307,877,1125,118,164,5,6,1,2,0,0,12,10,887,1135,120,167,15,13,3,2,0,0,5,6,5,4,0,1,0,0,0,0,0,0,0,1,5,5,0,1,0,0,0,0,0,1 -050,01,033,Alabama,Colbert County,3,16,1788,782,1006,695,861,75,136,5,1,1,1,0,0,6,7,701,868,76,138,10,6,1,1,0,0,779,1004,693,859,74,136,5,1,1,1,0,0,6,7,699,866,75,138,10,6,1,1,0,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,3,17,1283,487,796,432,692,53,97,1,1,0,2,0,0,1,4,433,695,54,97,1,4,0,3,0,1,484,791,429,687,53,97,1,1,0,2,0,0,1,4,430,690,54,97,1,4,0,3,0,1,3,5,3,5,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,3,18,1167,402,765,354,642,44,116,3,1,0,1,0,0,1,5,355,647,45,117,3,5,0,1,0,0,400,763,352,641,44,116,3,0,0,1,0,0,1,5,353,646,45,117,3,4,0,1,0,0,2,2,2,1,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,4,0,54545,26247,28298,21459,22837,4064,4758,154,142,125,130,11,10,434,421,21874,23232,4288,4976,345,342,163,163,23,23,25582,27789,20909,22415,4008,4711,129,135,119,125,8,7,409,396,21301,22788,4219,4918,309,326,154,154,18,15,665,509,550,422,56,47,25,7,6,5,3,3,25,25,573,444,69,58,36,16,9,9,5,8 -050,01,033,Alabama,Colbert County,4,1,3099,1616,1483,1210,1129,273,266,7,5,19,5,1,0,106,78,1314,1206,354,331,22,17,29,9,3,2,1524,1417,1134,1074,264,261,6,4,17,4,0,0,103,74,1235,1147,343,324,21,14,26,8,2,2,92,66,76,55,9,5,1,1,2,1,1,0,3,4,79,59,11,7,1,3,3,1,1,0 -050,01,033,Alabama,Colbert County,4,2,3138,1621,1517,1274,1188,259,254,11,9,11,13,1,2,65,51,1336,1238,308,292,27,21,15,19,2,2,1540,1441,1215,1125,250,245,4,9,9,12,1,0,61,50,1273,1174,297,282,19,21,12,18,2,0,81,76,59,63,9,9,7,0,2,1,0,2,4,1,63,64,11,10,8,0,3,1,0,2 -050,01,033,Alabama,Colbert County,4,3,3575,1833,1742,1430,1356,333,318,10,7,10,10,0,2,50,49,1477,1403,367,350,26,24,12,13,2,3,1762,1691,1377,1311,319,313,10,7,10,10,0,2,46,48,1421,1357,352,345,23,23,12,13,1,3,71,51,53,45,14,5,0,0,0,0,0,0,4,1,56,46,15,5,3,1,0,0,1,0 -050,01,033,Alabama,Colbert County,4,4,3430,1752,1678,1357,1255,330,365,12,14,10,7,3,2,40,35,1394,1287,354,385,27,29,13,10,4,2,1707,1631,1318,1218,329,359,9,12,9,7,3,2,39,33,1354,1248,352,377,24,27,12,10,4,2,45,47,39,37,1,6,3,2,1,0,0,0,1,2,40,39,2,8,3,2,1,0,0,0 -050,01,033,Alabama,Colbert County,4,5,3240,1587,1653,1257,1271,293,332,8,12,6,5,2,0,21,33,1278,1299,299,354,18,28,10,8,3,0,1521,1622,1203,1242,288,331,4,12,6,5,1,0,19,32,1222,1269,293,353,13,28,10,7,2,0,66,31,54,29,5,1,4,0,0,0,1,0,2,1,56,30,6,1,5,0,0,1,1,0 -050,01,033,Alabama,Colbert County,4,6,3090,1524,1566,1235,1272,249,257,9,10,11,8,0,1,20,18,1255,1289,256,267,22,18,12,9,0,2,1464,1533,1183,1244,247,256,6,9,11,8,0,0,17,16,1200,1259,253,264,17,17,12,9,0,1,60,33,52,28,2,1,3,1,0,0,0,1,3,2,55,30,3,3,5,1,0,0,0,1 -050,01,033,Alabama,Colbert County,4,7,3117,1511,1606,1239,1275,245,285,7,18,8,12,0,1,12,15,1251,1289,248,290,13,27,10,15,1,1,1448,1555,1180,1231,243,281,6,18,8,12,0,1,11,12,1191,1242,245,285,12,25,10,14,1,1,63,51,59,44,2,4,1,0,0,0,0,0,1,3,60,47,3,5,1,2,0,1,0,0 -050,01,033,Alabama,Colbert County,4,8,3136,1499,1637,1241,1320,226,287,16,5,4,9,0,0,12,16,1252,1334,229,290,24,16,5,12,1,1,1442,1601,1196,1293,221,281,12,4,3,9,0,0,10,14,1206,1306,222,284,19,14,4,11,1,0,57,36,45,27,5,6,4,1,1,0,0,0,2,2,46,28,7,6,5,2,1,1,0,1 -050,01,033,Alabama,Colbert County,4,9,3582,1767,1815,1484,1495,249,288,10,8,8,7,1,0,15,17,1497,1511,253,289,22,22,10,8,1,2,1731,1784,1452,1467,247,288,9,8,8,6,0,0,15,15,1465,1482,251,289,21,21,10,7,0,0,36,31,32,28,2,0,1,0,0,1,1,0,0,2,32,29,2,0,1,1,0,1,1,2 -050,01,033,Alabama,Colbert County,4,10,3931,1906,2025,1590,1667,281,324,13,5,7,13,2,1,13,15,1603,1681,284,327,24,15,7,14,2,3,1880,2004,1566,1652,279,322,13,5,7,12,2,1,13,12,1579,1664,282,325,24,14,7,12,2,1,26,21,24,15,2,2,0,0,0,1,0,0,0,3,24,17,2,2,0,1,0,2,0,2 -050,01,033,Alabama,Colbert County,4,11,4080,1935,2145,1621,1710,271,396,12,11,11,5,1,1,19,22,1638,1730,276,401,29,27,12,6,2,3,1912,2125,1602,1694,270,395,11,10,11,5,1,1,17,20,1617,1712,273,398,28,26,11,6,1,3,23,20,19,16,1,1,1,1,0,0,0,0,2,2,21,18,3,3,1,1,1,0,1,0 -050,01,033,Alabama,Colbert County,4,12,3862,1903,1959,1582,1594,291,326,9,11,6,11,0,0,15,17,1595,1609,293,328,22,26,7,13,1,0,1885,1942,1567,1581,291,323,9,11,6,11,0,0,12,16,1577,1595,293,325,19,25,7,13,1,0,18,17,15,13,0,3,0,0,0,0,0,0,3,1,18,14,0,3,3,1,0,0,0,0 -050,01,033,Alabama,Colbert County,4,13,3708,1753,1955,1433,1601,287,314,8,11,5,11,0,0,20,18,1453,1617,287,318,26,26,8,11,1,1,1743,1949,1424,1595,286,314,8,11,5,11,0,0,20,18,1444,1611,286,318,26,26,8,11,1,1,10,6,9,6,1,0,0,0,0,0,0,0,0,0,9,6,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,4,14,2879,1300,1579,1111,1335,173,228,8,5,4,4,0,0,4,7,1115,1342,173,230,12,11,4,4,0,0,1295,1573,1108,1331,171,226,8,5,4,4,0,0,4,7,1112,1338,171,228,12,11,4,4,0,0,5,6,3,4,2,2,0,0,0,0,0,0,0,0,3,4,2,2,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,4,15,2374,1028,1346,884,1154,126,167,5,8,2,6,0,0,11,11,895,1164,127,169,13,17,4,7,0,0,1024,1338,880,1150,126,165,5,8,2,5,0,0,11,10,891,1159,127,166,13,17,4,6,0,0,4,8,4,4,0,2,0,0,0,1,0,0,0,1,4,5,0,3,0,0,0,1,0,0 -050,01,033,Alabama,Colbert County,4,16,1835,815,1020,721,872,79,139,5,1,2,1,0,0,8,7,728,879,80,141,11,6,4,2,0,0,811,1019,718,871,78,139,5,1,2,1,0,0,8,7,725,878,79,141,11,6,4,2,0,0,4,1,3,1,1,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,4,17,1272,482,790,428,675,50,107,1,1,1,1,0,0,2,6,430,680,50,109,3,6,1,1,0,0,481,785,427,670,50,107,1,1,1,1,0,0,2,6,429,675,50,109,3,6,1,1,0,0,1,5,1,5,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,4,18,1197,415,782,362,668,49,105,3,1,0,2,0,0,1,6,363,674,50,105,4,6,0,2,0,1,412,779,359,666,49,105,3,0,0,2,0,0,1,6,360,672,50,105,4,5,0,2,0,1,3,3,3,2,0,0,0,1,0,0,0,0,0,0,3,2,0,0,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,5,0,54578,26252,28326,21405,22800,4099,4788,158,147,123,139,12,11,455,441,21835,23209,4334,5019,359,347,161,179,29,26,25545,27778,20824,22351,4037,4733,131,139,118,134,9,8,426,413,21229,22739,4259,4946,312,327,155,171,24,21,707,548,581,449,62,55,27,8,5,5,3,3,29,28,606,470,75,73,47,20,6,8,5,5 -050,01,033,Alabama,Colbert County,5,1,3167,1604,1563,1209,1197,274,272,6,7,11,4,1,0,103,83,1309,1277,352,339,24,18,20,10,5,3,1502,1486,1127,1134,262,265,5,6,11,3,0,0,97,78,1222,1209,337,328,19,16,20,9,2,3,102,77,82,63,12,7,1,1,0,1,1,0,6,5,87,68,15,11,5,2,0,1,3,0 -050,01,033,Alabama,Colbert County,5,2,3132,1646,1486,1278,1149,272,252,11,8,11,11,1,3,73,63,1347,1209,326,297,30,23,16,15,3,6,1561,1403,1212,1083,265,242,5,7,9,10,1,1,69,60,1277,1141,317,286,22,20,14,14,3,3,85,83,66,66,7,10,6,1,2,1,0,2,4,3,70,68,9,11,8,3,2,1,0,3 -050,01,033,Alabama,Colbert County,5,3,3472,1762,1710,1374,1327,320,317,7,9,11,10,1,2,49,45,1421,1367,355,350,23,20,12,16,3,4,1684,1647,1315,1275,306,308,7,9,11,10,1,2,44,43,1359,1313,337,340,20,19,12,16,3,4,78,63,59,52,14,9,0,0,0,0,0,0,5,2,62,54,18,10,3,1,0,0,0,0 -050,01,033,Alabama,Colbert County,5,4,3335,1742,1593,1352,1193,323,337,11,14,8,8,3,2,45,39,1396,1231,348,363,25,27,13,13,5,2,1693,1559,1310,1165,319,333,9,13,8,8,3,2,44,38,1353,1202,344,358,22,26,13,13,5,2,49,34,42,28,4,4,2,1,0,0,0,0,1,1,43,29,4,5,3,1,0,0,0,0 -050,01,033,Alabama,Colbert County,5,5,3359,1623,1736,1270,1335,306,353,15,11,8,6,2,0,22,31,1291,1363,315,370,24,25,13,9,2,2,1559,1694,1217,1297,302,352,10,10,8,6,1,0,21,29,1237,1324,310,368,19,23,13,9,1,1,64,42,53,38,4,1,5,1,0,0,1,0,1,2,54,39,5,2,5,2,0,0,1,1 -050,01,033,Alabama,Colbert County,5,6,3106,1526,1580,1212,1271,273,267,10,11,10,10,0,1,21,20,1232,1289,279,277,23,19,12,13,1,2,1456,1544,1155,1240,269,265,5,10,10,10,0,0,17,19,1171,1258,274,274,15,18,12,12,1,1,70,36,57,31,4,2,5,1,0,0,0,1,4,1,61,31,5,3,8,1,0,1,0,1 -050,01,033,Alabama,Colbert County,5,7,3125,1533,1592,1243,1261,257,287,6,16,9,12,0,1,18,15,1260,1275,264,292,16,26,10,13,1,2,1477,1547,1192,1221,254,284,5,16,9,12,0,1,17,13,1208,1234,260,288,15,25,10,12,1,2,56,45,51,40,3,3,1,0,0,0,0,0,1,2,52,41,4,4,1,1,0,1,0,0 -050,01,033,Alabama,Colbert County,5,8,3100,1480,1620,1228,1291,224,294,14,5,3,10,0,0,11,20,1237,1309,226,301,23,16,5,13,0,1,1412,1577,1172,1256,219,289,9,5,3,10,0,0,9,17,1180,1272,221,293,16,15,4,13,0,1,68,43,56,35,5,5,5,0,0,0,0,0,2,3,57,37,5,8,7,1,1,0,0,0 -050,01,033,Alabama,Colbert County,5,9,3569,1743,1826,1455,1497,246,292,13,10,11,10,1,0,17,17,1470,1512,251,295,25,23,12,14,2,0,1706,1795,1425,1471,244,290,12,9,8,9,0,0,17,16,1440,1485,249,292,24,22,9,13,1,0,37,31,30,26,2,2,1,1,3,1,1,0,0,1,30,27,2,3,1,1,3,1,1,0 -050,01,033,Alabama,Colbert County,5,10,3798,1844,1954,1547,1594,263,325,13,6,8,13,1,1,12,15,1558,1608,266,327,23,17,8,15,1,2,1818,1933,1523,1580,261,323,13,6,8,12,1,1,12,11,1534,1591,264,324,23,14,8,13,1,2,26,21,24,14,2,2,0,0,0,1,0,0,0,4,24,17,2,3,0,3,0,2,0,0 -050,01,033,Alabama,Colbert County,5,11,3974,1895,2079,1589,1680,268,360,11,9,9,8,2,1,16,21,1602,1700,273,365,23,26,12,8,2,1,1875,2055,1571,1662,267,357,11,8,9,8,2,1,15,19,1583,1680,271,361,22,24,12,8,2,1,20,24,18,18,1,3,0,1,0,0,0,0,1,2,19,20,2,4,1,2,0,0,0,0 -050,01,033,Alabama,Colbert County,5,12,4019,1972,2047,1653,1654,280,355,10,12,10,9,0,0,19,17,1671,1670,282,357,25,28,12,9,1,0,1949,2029,1635,1640,280,352,9,12,10,9,0,0,15,16,1649,1655,282,353,20,28,12,9,1,0,23,18,18,14,0,3,1,0,0,0,0,0,4,1,22,15,0,4,5,0,0,0,0,0 -050,01,033,Alabama,Colbert County,5,13,3671,1727,1944,1407,1570,289,332,8,11,4,11,0,0,19,20,1426,1589,290,334,26,28,4,12,0,1,1716,1939,1397,1565,288,332,8,11,4,11,0,0,19,20,1416,1584,289,334,26,28,4,12,0,1,11,5,10,5,1,0,0,0,0,0,0,0,0,0,10,5,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,5,14,3029,1396,1633,1185,1377,192,237,9,6,4,6,0,0,6,7,1191,1383,192,238,14,12,5,7,0,0,1391,1626,1182,1372,190,235,9,6,4,6,0,0,6,7,1188,1378,190,236,14,12,5,7,0,0,5,7,3,5,2,2,0,0,0,0,0,0,0,0,3,5,2,2,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,5,15,2410,1049,1361,898,1178,132,161,4,8,4,7,0,0,11,7,907,1184,134,162,14,15,4,7,1,0,1045,1354,894,1174,132,159,4,8,4,6,0,0,11,7,903,1180,134,160,14,15,4,6,1,0,4,7,4,4,0,2,0,0,0,1,0,0,0,0,4,4,0,2,0,0,0,1,0,0 -050,01,033,Alabama,Colbert County,5,16,1845,803,1042,703,885,85,146,5,2,1,1,0,0,9,8,712,891,85,149,13,10,1,1,1,0,799,1040,700,884,84,146,5,2,1,1,0,0,9,7,709,890,84,148,13,9,1,1,1,0,4,2,3,1,1,0,0,0,0,0,0,0,0,1,3,1,1,1,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,5,17,1256,472,784,416,677,50,100,2,1,1,0,0,0,3,6,418,682,51,101,4,7,2,0,1,0,471,779,415,672,50,100,2,1,1,0,0,0,3,6,417,677,51,101,4,7,2,0,1,0,1,5,1,5,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,5,18,1211,435,776,386,664,45,101,3,1,0,3,0,0,1,7,387,670,45,102,4,7,0,4,0,0,431,771,382,660,45,101,3,0,0,3,0,0,1,7,383,666,45,102,4,6,0,4,0,0,4,5,4,4,0,0,0,1,0,0,0,0,0,0,4,4,0,0,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,6,0,54544,26217,28327,21316,22786,4133,4759,163,161,122,149,12,15,471,457,21762,23222,4386,4979,353,358,176,199,23,32,25517,27764,20752,22340,4069,4695,137,147,116,145,9,12,434,425,21165,22745,4301,4899,313,333,166,191,16,27,700,563,564,446,64,64,26,14,6,4,3,3,37,32,597,477,85,80,40,25,10,8,7,5 -050,01,033,Alabama,Colbert County,6,1,3095,1568,1527,1164,1148,273,279,5,9,14,5,0,3,112,83,1274,1230,359,342,24,23,22,12,2,3,1482,1459,1104,1097,261,274,3,6,14,4,0,3,100,75,1203,1171,338,333,18,17,22,10,1,3,86,68,60,51,12,5,2,3,0,1,0,0,12,8,71,59,21,9,6,6,0,2,1,0 -050,01,033,Alabama,Colbert County,6,2,3163,1643,1520,1274,1171,276,259,8,8,9,13,2,3,74,66,1348,1235,330,309,20,21,17,19,2,4,1561,1429,1209,1099,269,249,3,5,7,12,1,1,72,63,1281,1160,321,297,15,17,15,18,1,2,82,91,65,72,7,10,5,3,2,1,1,2,2,3,67,75,9,12,5,4,2,1,1,2 -050,01,033,Alabama,Colbert County,6,3,3391,1708,1683,1339,1338,297,275,7,7,11,11,1,2,53,50,1386,1384,333,305,22,21,17,19,3,4,1626,1624,1278,1295,287,261,5,7,10,11,1,2,45,48,1319,1339,320,290,17,20,14,19,1,4,82,59,61,43,10,14,2,0,1,0,0,0,8,2,67,45,13,15,5,1,3,0,2,0 -050,01,033,Alabama,Colbert County,6,4,3339,1732,1607,1351,1209,312,334,7,14,9,8,3,1,50,41,1397,1248,345,360,23,28,12,13,5,2,1678,1569,1309,1177,302,330,7,13,9,8,3,1,48,40,1353,1215,334,356,22,26,12,13,5,2,54,38,42,32,10,4,0,1,0,0,0,0,2,1,44,33,11,4,1,2,0,0,0,0 -050,01,033,Alabama,Colbert County,6,5,3385,1673,1712,1302,1332,325,328,15,16,9,8,2,1,20,27,1320,1358,335,342,26,23,13,12,2,4,1618,1669,1257,1297,321,325,11,13,9,8,1,1,19,25,1274,1322,331,338,21,19,13,12,1,3,55,43,45,35,4,3,4,3,0,0,1,0,1,2,46,36,4,4,5,4,0,0,1,1 -050,01,033,Alabama,Colbert County,6,6,3170,1534,1636,1227,1289,266,296,13,16,4,11,0,1,24,23,1247,1311,277,307,26,26,9,13,0,2,1467,1598,1173,1258,262,292,8,15,4,11,0,0,20,22,1189,1279,271,302,19,25,9,13,0,1,67,38,54,31,4,4,5,1,0,0,0,1,4,1,58,32,6,5,7,1,0,0,0,1 -050,01,033,Alabama,Colbert County,6,7,3104,1513,1591,1204,1273,266,273,9,13,12,13,0,1,22,18,1225,1290,273,277,21,25,16,15,0,2,1455,1551,1151,1237,263,271,8,13,12,13,0,1,21,16,1171,1252,269,275,20,23,16,15,0,2,58,40,53,36,3,2,1,0,0,0,0,0,1,2,54,38,4,2,1,2,0,0,0,0 -050,01,033,Alabama,Colbert County,6,8,3129,1504,1625,1214,1289,265,300,11,9,4,9,0,0,10,18,1222,1303,270,306,16,20,6,12,1,2,1433,1568,1154,1241,260,294,6,9,4,9,0,0,9,15,1161,1252,264,298,11,20,6,11,1,2,71,57,60,48,5,6,5,0,0,0,0,0,1,3,61,51,6,8,5,0,0,1,0,0 -050,01,033,Alabama,Colbert County,6,9,3541,1724,1817,1449,1493,235,284,15,9,11,12,0,0,14,19,1463,1510,237,286,24,26,14,13,0,1,1685,1783,1417,1465,233,281,14,8,8,11,0,0,13,18,1430,1481,234,283,23,24,11,12,0,1,39,34,32,28,2,3,1,1,3,1,0,0,1,1,33,29,3,3,1,2,3,1,0,0 -050,01,033,Alabama,Colbert County,6,10,3653,1770,1883,1479,1522,252,324,13,5,10,13,2,1,14,18,1493,1539,252,328,25,16,12,15,2,3,1740,1861,1452,1508,250,322,13,5,10,12,1,1,14,13,1466,1520,250,323,25,15,12,14,1,2,30,22,27,14,2,2,0,0,0,1,1,0,0,5,27,19,2,5,0,1,0,1,1,1 -050,01,033,Alabama,Colbert County,6,11,3957,1888,2069,1577,1690,282,342,13,9,6,9,1,0,9,19,1586,1709,284,345,20,22,6,11,2,1,1869,2047,1559,1673,281,340,13,8,6,9,1,0,9,17,1568,1690,283,342,20,21,6,10,2,1,19,22,18,17,1,2,0,1,0,0,0,0,0,2,18,19,1,3,0,1,0,1,0,0 -050,01,033,Alabama,Colbert County,6,12,4073,1988,2085,1675,1680,271,361,12,17,10,7,1,1,19,19,1693,1699,273,363,25,32,14,9,3,1,1964,2066,1657,1667,271,356,11,17,10,7,1,1,14,18,1671,1685,272,357,21,32,12,9,2,1,24,19,18,13,0,5,1,0,0,0,0,0,5,1,22,14,1,6,4,0,2,0,1,0 -050,01,033,Alabama,Colbert County,6,13,3591,1708,1883,1391,1506,285,333,12,11,3,13,0,0,17,20,1408,1526,285,335,26,28,7,14,1,0,1695,1876,1379,1499,284,333,12,11,3,13,0,0,17,20,1396,1519,284,335,26,28,7,14,1,0,13,7,12,7,1,0,0,0,0,0,0,0,0,0,12,7,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,6,14,3076,1422,1654,1193,1390,207,243,9,5,4,7,0,0,9,9,1201,1399,208,245,18,13,4,7,0,0,1417,1650,1189,1388,206,241,9,5,4,7,0,0,9,9,1197,1397,207,243,18,13,4,7,0,0,5,4,4,2,1,2,0,0,0,0,0,0,0,0,4,2,1,2,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,6,15,2555,1115,1440,964,1238,134,187,3,6,4,6,0,0,10,3,973,1241,136,187,12,8,5,7,0,0,1110,1433,960,1233,133,185,3,6,4,6,0,0,10,3,969,1236,135,185,12,8,5,7,0,0,5,7,4,5,1,2,0,0,0,0,0,0,0,0,4,5,1,2,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,6,16,1842,785,1057,682,894,89,148,4,5,1,0,0,0,9,10,691,903,89,148,13,12,1,3,0,1,781,1053,679,891,88,148,4,5,1,0,0,0,9,9,688,899,88,148,13,12,1,2,0,1,4,4,3,3,1,0,0,0,0,0,0,0,0,1,3,4,1,0,0,0,0,1,0,0 -050,01,033,Alabama,Colbert County,6,17,1294,511,783,451,682,51,94,4,0,1,1,0,1,4,5,454,686,53,95,8,4,1,1,0,2,509,780,449,679,51,94,4,0,1,1,0,1,4,5,452,683,53,95,8,4,1,1,0,2,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,6,18,1186,431,755,380,642,47,99,3,2,0,3,0,0,1,9,381,651,47,99,4,10,0,4,0,0,427,748,376,636,47,99,3,1,0,3,0,0,1,9,377,645,47,99,4,9,0,4,0,0,4,7,4,6,0,0,0,1,0,0,0,0,0,0,4,6,0,0,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,7,0,54484,26225,28259,21312,22789,4093,4663,173,151,128,154,17,21,502,481,21775,23238,4372,4916,376,358,179,201,30,35,25534,27708,20746,22346,4033,4605,145,140,124,150,14,18,472,449,21182,22769,4298,4842,333,334,171,190,27,29,691,551,566,443,60,58,28,11,4,4,3,3,30,32,593,469,74,74,43,24,8,11,3,6 -050,01,033,Alabama,Colbert County,7,1,3081,1565,1516,1179,1167,240,243,9,4,17,6,1,3,119,93,1294,1256,331,319,32,22,26,10,2,4,1490,1463,1124,1127,232,239,6,3,17,6,1,3,110,85,1230,1210,318,310,25,17,26,9,2,4,75,53,55,40,8,4,3,1,0,0,0,0,9,8,64,46,13,9,7,5,0,1,0,0 -050,01,033,Alabama,Colbert County,7,2,3235,1665,1570,1273,1209,294,276,10,5,8,12,2,3,78,65,1349,1272,353,326,25,16,13,17,3,5,1586,1487,1209,1141,287,270,6,3,7,10,1,1,76,62,1283,1201,345,317,20,14,12,15,2,3,79,83,64,68,7,6,4,2,1,2,1,2,2,3,66,71,8,9,5,2,1,2,1,2 -050,01,033,Alabama,Colbert County,7,3,3274,1661,1613,1315,1287,270,255,9,10,10,12,0,0,57,49,1368,1334,309,290,25,23,16,16,1,0,1589,1544,1262,1236,261,241,5,9,10,12,0,0,51,46,1310,1280,298,274,17,21,15,16,1,0,72,69,53,51,9,14,4,1,0,0,0,0,6,3,58,54,11,16,8,2,1,0,0,0 -050,01,033,Alabama,Colbert County,7,4,3318,1722,1596,1342,1219,309,304,9,13,9,9,4,2,49,49,1388,1264,338,336,27,26,13,15,6,4,1662,1553,1292,1186,301,297,9,12,9,9,4,2,47,47,1336,1229,330,329,25,25,13,14,6,3,60,43,50,33,8,7,0,1,0,0,0,0,2,2,52,35,8,7,2,1,0,1,0,1 -050,01,033,Alabama,Colbert County,7,5,3300,1634,1666,1266,1291,308,323,14,10,10,9,3,3,33,30,1294,1320,328,338,30,22,12,12,3,4,1583,1620,1226,1247,304,322,10,10,10,9,2,3,31,29,1252,1275,323,337,25,21,12,12,2,4,51,46,40,44,4,1,4,0,0,0,1,0,2,1,42,45,5,1,5,1,0,0,1,0 -050,01,033,Alabama,Colbert County,7,6,3252,1586,1666,1267,1314,276,308,13,14,4,7,1,1,25,22,1287,1335,288,318,25,23,9,10,3,2,1521,1626,1214,1281,271,306,8,11,4,7,1,0,23,21,1232,1301,282,315,19,20,9,10,3,1,65,40,53,33,5,2,5,3,0,0,0,1,2,1,55,34,6,3,6,3,0,0,0,1 -050,01,033,Alabama,Colbert County,7,7,3130,1524,1606,1218,1286,264,265,11,16,10,16,1,1,20,22,1236,1305,269,272,22,31,17,20,1,1,1471,1577,1169,1260,261,264,10,16,10,16,1,1,20,20,1187,1278,266,271,21,30,17,18,1,1,53,29,49,26,3,1,1,0,0,0,0,0,0,2,49,27,3,1,1,1,0,2,0,0 -050,01,033,Alabama,Colbert County,7,8,3133,1521,1612,1237,1292,260,282,7,10,7,11,1,0,9,17,1245,1308,262,286,13,20,8,14,2,1,1450,1559,1175,1248,256,275,3,10,7,11,1,0,8,15,1182,1262,257,278,9,19,8,14,2,1,71,53,62,44,4,7,4,0,0,0,0,0,1,2,63,46,5,8,4,1,0,0,0,0 -050,01,033,Alabama,Colbert County,7,9,3422,1676,1746,1398,1420,236,289,16,7,7,10,0,2,19,18,1412,1436,243,293,30,20,9,12,1,3,1621,1715,1353,1394,231,286,15,6,4,10,0,2,18,17,1367,1409,237,289,29,19,5,12,1,3,55,31,45,26,5,3,1,1,3,0,0,0,1,1,45,27,6,4,1,1,4,0,0,0 -050,01,033,Alabama,Colbert County,7,10,3570,1752,1818,1458,1473,256,305,13,7,13,14,2,1,10,18,1467,1489,260,309,19,21,13,16,3,2,1714,1789,1424,1453,254,303,12,7,13,12,1,1,10,13,1433,1466,258,305,18,18,13,12,2,1,38,29,34,20,2,2,1,0,0,2,1,0,0,5,34,23,2,4,1,3,0,4,1,1 -050,01,033,Alabama,Colbert County,7,11,3972,1900,2072,1592,1691,275,348,14,6,7,9,1,1,11,17,1603,1707,277,351,21,20,9,10,1,1,1879,2050,1572,1671,274,348,14,6,7,9,1,1,11,15,1583,1685,276,351,21,18,9,10,1,1,21,22,20,20,1,0,0,0,0,0,0,0,0,2,20,22,1,0,0,2,0,0,0,0 -050,01,033,Alabama,Colbert County,7,12,4071,1953,2118,1641,1709,270,360,10,19,10,8,1,1,21,21,1659,1726,274,365,26,36,12,10,3,2,1933,2099,1627,1698,270,354,9,18,10,8,1,1,16,20,1641,1714,272,358,23,35,10,10,3,2,20,19,14,11,0,6,1,1,0,0,0,0,5,1,18,12,2,7,3,1,2,0,0,0 -050,01,033,Alabama,Colbert County,7,13,3560,1715,1845,1405,1506,280,297,13,10,5,13,0,1,12,18,1417,1523,281,299,23,25,6,15,0,1,1705,1835,1396,1497,279,296,13,10,5,13,0,1,12,18,1408,1514,280,298,23,25,6,15,0,1,10,10,9,9,1,1,0,0,0,0,0,0,0,0,9,9,1,1,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,7,14,3203,1486,1717,1242,1425,218,266,9,6,4,8,0,0,13,12,1254,1437,219,267,21,16,5,9,0,0,1479,1714,1235,1424,218,264,9,6,4,8,0,0,13,12,1247,1436,219,265,21,16,5,9,0,0,7,3,7,1,0,2,0,0,0,0,0,0,0,0,7,1,0,2,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,7,15,2577,1121,1456,964,1237,141,200,2,7,5,6,0,0,9,6,972,1243,142,200,10,12,6,6,0,1,1118,1449,963,1232,139,198,2,7,5,6,0,0,9,6,971,1238,140,198,10,12,6,6,0,1,3,7,1,5,2,2,0,0,0,0,0,0,0,0,1,5,2,2,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,7,16,1877,782,1095,677,938,88,144,7,5,0,0,0,0,10,8,686,943,89,146,15,9,2,3,0,2,777,1091,673,935,87,144,7,5,0,0,0,0,10,7,682,940,88,146,15,9,2,2,0,1,5,4,4,3,1,0,0,0,0,0,0,0,0,1,4,3,1,0,0,0,0,1,0,1 -050,01,033,Alabama,Colbert County,7,17,1300,528,772,459,666,60,99,3,0,1,1,0,0,5,6,463,672,61,100,7,4,1,2,1,0,526,769,457,663,60,99,3,0,1,1,0,0,5,6,461,669,61,100,7,4,1,2,1,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,7,18,1209,434,775,379,659,48,99,4,2,1,3,0,2,2,10,381,668,48,101,5,12,2,4,0,2,430,768,375,653,48,99,4,1,1,3,0,2,2,10,377,662,48,101,5,11,2,4,0,2,4,7,4,6,0,0,0,1,0,0,0,0,0,0,4,6,0,0,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,8,0,54439,26120,28319,21216,22748,4094,4703,163,158,124,169,11,20,512,521,21699,23243,4377,4975,365,383,169,215,33,34,25396,27721,20622,22260,4034,4650,136,145,120,164,8,17,476,485,21073,22725,4296,4905,325,354,160,205,25,26,724,598,594,488,60,53,27,13,4,5,3,3,36,36,626,518,81,70,40,29,9,10,8,8 -050,01,033,Alabama,Colbert County,8,1,3072,1539,1533,1177,1181,231,230,8,7,10,5,0,3,113,107,1289,1288,317,311,25,25,19,14,4,4,1458,1469,1114,1134,226,224,5,4,10,5,0,3,103,99,1216,1233,305,302,19,19,18,13,3,3,81,64,63,47,5,6,3,3,0,0,0,0,10,8,73,55,12,9,6,6,1,1,1,1 -050,01,033,Alabama,Colbert County,8,2,3263,1703,1560,1295,1193,305,283,8,3,15,10,1,2,79,69,1373,1259,363,335,22,17,22,14,3,4,1615,1492,1223,1137,297,278,5,1,14,9,0,1,76,66,1298,1200,354,328,18,14,20,13,2,3,88,68,72,56,8,5,3,2,1,1,1,1,3,3,75,59,9,7,4,3,2,1,1,1 -050,01,033,Alabama,Colbert County,8,3,3159,1604,1555,1269,1230,256,251,10,10,9,11,1,1,59,52,1324,1278,297,287,25,25,15,15,4,2,1529,1470,1214,1159,248,243,5,9,9,10,1,0,52,49,1262,1205,284,279,19,21,14,14,4,0,75,85,55,71,8,8,5,1,0,1,0,1,7,3,62,73,13,8,6,4,1,1,0,2 -050,01,033,Alabama,Colbert County,8,4,3314,1685,1629,1303,1247,314,305,9,9,6,12,1,2,52,54,1350,1296,348,342,28,25,8,19,3,3,1615,1580,1248,1206,303,299,9,9,6,11,1,2,48,53,1293,1255,335,335,25,24,8,18,2,3,70,49,55,41,11,6,0,0,0,1,0,0,4,1,57,41,13,7,3,1,0,1,1,0 -050,01,033,Alabama,Colbert County,8,5,3218,1620,1598,1233,1220,325,322,11,14,10,7,1,2,40,33,1269,1249,349,339,28,25,12,12,3,7,1566,1560,1187,1189,321,321,8,13,10,7,1,2,39,28,1223,1215,344,333,24,24,12,12,2,5,54,38,46,31,4,1,3,1,0,0,0,0,1,5,46,34,5,6,4,1,0,0,1,2 -050,01,033,Alabama,Colbert County,8,6,3347,1638,1709,1328,1336,270,322,11,17,5,7,2,0,22,27,1348,1361,280,336,23,31,8,9,3,1,1574,1672,1278,1303,264,320,7,16,5,7,1,0,19,26,1295,1327,273,334,17,29,8,9,2,1,64,37,50,33,6,2,4,1,0,0,1,0,3,1,53,34,7,2,6,2,0,0,1,0 -050,01,033,Alabama,Colbert County,8,7,3080,1499,1581,1200,1271,257,253,10,15,10,18,0,1,22,23,1219,1292,264,261,23,29,14,20,1,2,1442,1555,1148,1250,255,253,8,13,10,18,0,0,21,21,1166,1270,261,260,21,26,14,19,1,1,57,26,52,21,2,0,2,2,0,0,0,1,1,2,53,22,3,1,2,3,0,1,0,1 -050,01,033,Alabama,Colbert County,8,8,3212,1531,1681,1239,1325,268,309,7,14,6,16,1,1,10,16,1249,1341,269,312,13,24,8,19,2,1,1477,1624,1191,1277,263,302,6,14,6,16,1,1,10,14,1201,1291,264,304,12,23,8,19,2,1,54,57,48,48,5,7,1,0,0,0,0,0,0,2,48,50,5,8,1,1,0,0,0,0 -050,01,033,Alabama,Colbert County,8,9,3329,1623,1706,1353,1390,225,278,17,7,8,11,0,1,20,19,1372,1408,231,281,31,23,8,13,2,1,1561,1665,1303,1356,222,274,13,6,5,11,0,1,18,17,1320,1372,227,276,26,21,5,13,2,1,62,41,50,34,3,4,4,1,3,0,0,0,2,2,52,36,4,5,5,2,3,0,0,0 -050,01,033,Alabama,Colbert County,8,10,3556,1732,1824,1443,1484,257,300,8,4,11,16,2,2,11,18,1453,1499,258,306,16,17,14,19,2,3,1686,1778,1403,1446,253,298,7,4,11,14,1,2,11,14,1413,1458,254,303,15,15,14,15,1,2,46,46,40,38,4,2,1,0,0,2,1,0,0,4,40,41,4,3,1,2,0,4,1,1 -050,01,033,Alabama,Colbert County,8,11,3972,1903,2069,1593,1694,281,336,10,9,7,11,1,1,11,18,1602,1712,283,340,19,23,9,11,2,1,1880,2046,1570,1673,281,336,10,9,7,11,1,1,11,16,1579,1689,283,339,19,22,9,11,2,1,23,23,23,21,0,0,0,0,0,0,0,0,0,2,23,23,0,1,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,8,12,3977,1869,2108,1573,1676,251,387,10,15,12,8,1,1,22,21,1594,1697,255,389,26,31,13,11,3,1,1851,2088,1561,1664,250,382,9,14,12,8,1,1,18,19,1578,1683,253,383,24,30,12,10,2,1,18,20,12,12,1,5,1,1,0,0,0,0,4,2,16,14,2,6,2,1,1,1,1,0 -050,01,033,Alabama,Colbert County,8,13,3597,1744,1853,1429,1509,285,303,17,9,6,14,0,1,7,17,1434,1526,288,305,22,23,7,15,1,1,1734,1837,1421,1495,284,301,17,9,6,14,0,1,6,17,1426,1512,286,303,22,23,6,15,0,1,10,16,8,14,1,2,0,0,0,0,0,0,1,0,8,14,2,2,0,0,1,0,1,0 -050,01,033,Alabama,Colbert County,8,14,3319,1535,1784,1279,1465,228,278,8,10,3,13,0,0,17,18,1296,1481,230,280,22,27,4,14,0,0,1526,1778,1270,1462,228,275,8,10,3,13,0,0,17,18,1287,1478,230,277,22,27,4,14,0,0,9,6,9,3,0,3,0,0,0,0,0,0,0,0,9,3,0,3,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,8,15,2619,1140,1479,980,1256,146,205,4,7,3,5,0,0,7,6,986,1262,148,205,10,12,3,5,0,1,1137,1474,979,1252,144,204,4,7,3,5,0,0,7,6,985,1258,146,204,10,12,3,5,0,1,3,5,1,4,2,1,0,0,0,0,0,0,0,0,1,4,2,1,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,8,16,1881,776,1105,671,950,87,142,6,5,1,1,0,0,11,7,681,957,88,143,16,11,2,1,0,0,773,1099,668,946,87,141,6,5,1,1,0,0,11,6,678,952,88,142,16,10,2,1,0,0,3,6,3,4,0,1,0,0,0,0,0,0,0,1,3,5,0,1,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,8,17,1324,541,783,470,670,58,104,5,1,1,1,0,0,7,7,477,677,58,107,11,5,2,1,0,0,539,780,468,667,58,104,5,1,1,1,0,0,7,7,475,674,58,107,11,5,2,1,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,8,18,1200,438,762,381,651,50,95,4,2,1,3,0,2,2,9,383,660,51,96,5,10,1,3,0,2,433,754,376,644,50,95,4,1,1,3,0,2,2,9,378,653,51,96,5,9,1,3,0,2,5,8,5,7,0,0,0,1,0,0,0,0,0,0,5,7,0,0,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,9,0,54483,26265,28218,21362,22669,4057,4658,179,159,137,185,13,18,517,529,21838,23170,4345,4940,383,378,196,231,33,35,25474,27594,20712,22163,3998,4601,151,146,133,180,10,15,470,489,21148,22628,4262,4860,334,350,185,222,26,29,791,624,650,506,59,57,28,13,4,5,3,3,47,40,690,542,83,80,49,28,11,9,7,6 -050,01,033,Alabama,Colbert County,9,1,3069,1590,1479,1215,1146,228,213,5,5,16,7,3,3,123,105,1334,1248,320,292,27,24,28,15,8,5,1504,1441,1155,1121,221,209,2,2,16,7,3,3,107,99,1260,1218,305,285,17,17,26,15,5,5,86,38,60,25,7,4,3,3,0,0,0,0,16,6,74,30,15,7,10,7,2,0,3,0 -050,01,033,Alabama,Colbert County,9,2,3240,1686,1554,1298,1191,286,280,11,3,15,10,1,0,75,70,1371,1257,345,332,23,18,22,16,2,1,1594,1474,1228,1130,277,272,7,2,14,9,0,0,68,61,1294,1187,330,318,18,15,21,14,1,1,92,80,70,61,9,8,4,1,1,1,1,0,7,9,77,70,15,14,5,3,1,2,1,0 -050,01,033,Alabama,Colbert County,9,3,3152,1597,1555,1257,1210,259,251,10,12,8,16,1,3,62,63,1315,1272,304,294,26,26,16,22,2,4,1521,1450,1199,1121,253,242,5,10,8,15,1,1,55,61,1251,1181,295,284,16,23,16,21,2,2,76,105,58,89,6,9,5,2,0,1,0,2,7,2,64,91,9,10,10,3,0,1,0,2 -050,01,033,Alabama,Colbert County,9,4,3255,1647,1608,1283,1254,306,283,9,6,7,12,1,2,41,51,1319,1301,331,317,21,20,13,16,4,5,1576,1550,1228,1205,295,278,9,6,7,11,1,2,36,48,1259,1249,319,310,18,20,12,15,4,4,71,58,55,49,11,5,0,0,0,1,0,0,5,3,60,52,12,7,3,0,1,1,0,1 -050,01,033,Alabama,Colbert County,9,5,3102,1590,1512,1227,1145,305,314,13,15,8,6,1,2,36,30,1261,1173,325,332,28,26,10,7,3,4,1538,1476,1183,1117,301,311,10,14,8,6,1,2,35,26,1216,1141,320,326,25,24,10,7,3,4,52,36,44,28,4,3,3,1,0,0,0,0,1,4,45,32,5,6,3,2,0,0,0,0 -050,01,033,Alabama,Colbert County,9,6,3542,1781,1761,1450,1387,289,319,6,16,7,7,2,0,27,32,1474,1416,302,334,19,32,8,10,5,2,1703,1726,1380,1356,285,316,5,16,7,7,1,0,25,31,1402,1384,296,330,18,32,8,10,4,2,78,35,70,31,4,3,1,0,0,0,1,0,2,1,72,32,6,4,1,0,0,0,1,0 -050,01,033,Alabama,Colbert County,9,7,3159,1556,1603,1258,1301,251,243,18,15,7,22,0,1,22,21,1276,1320,259,252,33,24,10,25,0,3,1475,1568,1184,1272,250,242,13,12,7,22,0,0,21,20,1202,1290,258,250,27,21,9,25,0,2,81,35,74,29,1,1,5,3,0,0,0,1,1,1,74,30,1,2,6,3,1,0,0,1 -050,01,033,Alabama,Colbert County,9,8,3124,1495,1629,1215,1270,250,307,9,18,11,15,0,1,10,18,1224,1286,252,314,16,30,12,16,1,2,1445,1582,1171,1231,244,302,9,18,11,15,0,1,10,15,1180,1245,246,308,16,28,12,16,1,1,50,47,44,39,6,5,0,0,0,0,0,0,0,3,44,41,6,6,0,2,0,0,0,1 -050,01,033,Alabama,Colbert County,9,9,3203,1553,1650,1276,1336,230,281,21,6,8,12,0,0,18,15,1291,1349,233,285,33,17,14,16,0,0,1494,1602,1230,1297,227,275,16,5,5,12,0,0,16,13,1244,1309,230,278,27,15,9,15,0,0,59,48,46,39,3,6,5,1,3,0,0,0,2,2,47,40,3,7,6,2,5,1,0,0 -050,01,033,Alabama,Colbert County,9,10,3595,1742,1853,1452,1523,250,289,10,5,11,15,1,2,18,19,1468,1542,255,291,20,18,16,18,2,3,1689,1807,1406,1482,246,287,9,5,11,14,0,2,17,17,1421,1499,250,288,19,17,16,17,1,3,53,46,46,41,4,2,1,0,0,1,1,0,1,2,47,43,5,3,1,1,0,1,1,0 -050,01,033,Alabama,Colbert County,9,11,3901,1878,2023,1579,1663,271,322,9,7,8,13,2,1,9,17,1587,1679,274,324,16,21,8,15,2,1,1845,1996,1546,1640,271,322,9,7,8,12,2,1,9,14,1554,1653,274,324,16,19,8,13,2,1,33,27,33,23,0,0,0,0,0,1,0,0,0,3,33,26,0,0,0,2,0,2,0,0 -050,01,033,Alabama,Colbert County,9,12,3930,1819,2111,1531,1672,244,398,13,13,11,6,1,1,19,21,1546,1693,248,403,29,29,13,7,2,1,1801,2089,1517,1657,243,394,12,12,11,6,1,1,17,19,1532,1676,245,397,27,27,13,7,1,1,18,22,14,15,1,4,1,1,0,0,0,0,2,2,14,17,3,6,2,2,0,0,1,0 -050,01,033,Alabama,Colbert County,9,13,3671,1800,1871,1488,1520,279,310,13,10,10,14,0,0,10,17,1498,1536,279,313,21,22,12,15,0,2,1783,1855,1474,1508,279,307,13,10,10,14,0,0,7,16,1481,1523,279,310,19,22,11,15,0,1,17,16,14,12,0,3,0,0,0,0,0,0,3,1,17,13,0,3,2,0,1,0,0,1 -050,01,033,Alabama,Colbert County,9,14,3500,1630,1870,1346,1523,253,298,8,11,4,19,0,0,19,19,1363,1542,257,299,24,29,4,19,1,0,1621,1864,1338,1517,252,298,8,11,4,19,0,0,19,19,1355,1536,256,299,24,29,4,19,1,0,9,6,8,6,1,0,0,0,0,0,0,0,0,0,8,6,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,9,15,2538,1105,1433,941,1223,148,192,8,7,2,4,0,0,6,7,945,1229,150,193,12,13,3,5,1,0,1101,1427,939,1219,146,190,8,7,2,4,0,0,6,7,943,1225,148,191,12,13,3,5,1,0,4,6,2,4,2,2,0,0,0,0,0,0,0,0,2,4,2,2,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,9,16,1933,806,1127,691,963,97,147,6,7,2,3,0,0,10,7,700,969,98,151,15,10,3,4,0,0,803,1119,688,958,97,145,6,7,2,3,0,0,10,6,697,964,98,148,15,10,3,3,0,0,3,8,3,5,0,2,0,0,0,0,0,0,0,1,3,5,0,3,0,0,0,1,0,0 -050,01,033,Alabama,Colbert County,9,17,1335,556,779,483,662,57,108,6,1,1,1,0,0,9,7,492,669,59,109,13,7,2,1,0,0,552,777,479,660,57,108,6,1,1,1,0,0,9,7,488,667,59,109,13,7,2,1,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,9,18,1234,434,800,372,680,54,103,4,2,1,3,0,2,3,10,374,689,54,105,7,12,2,4,0,2,429,791,367,672,54,103,4,1,1,3,0,2,3,10,369,681,54,105,7,11,2,4,0,2,5,9,5,8,0,0,0,1,0,0,0,0,0,0,5,8,0,0,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,10,0,54682,26260,28422,21317,22740,4105,4750,174,162,147,200,16,18,501,552,21790,23267,4377,5058,380,380,197,259,36,29,25448,27750,20629,22186,4049,4696,148,148,143,195,13,15,466,510,21068,22671,4295,4981,345,349,189,249,32,25,812,672,688,554,56,54,26,14,4,5,3,3,35,42,722,596,82,77,35,31,8,10,4,4 -050,01,033,Alabama,Colbert County,10,1,3133,1622,1511,1251,1165,244,228,6,6,14,10,5,3,102,99,1352,1262,323,308,22,18,26,18,8,5,1542,1461,1189,1126,236,223,5,3,14,10,5,3,93,96,1281,1220,308,301,18,14,26,18,8,5,80,50,62,39,8,5,1,3,0,0,0,0,9,3,71,42,15,7,4,4,0,0,0,0 -050,01,033,Alabama,Colbert County,10,2,3174,1586,1588,1210,1203,279,282,9,3,18,10,1,0,69,90,1275,1291,333,344,24,23,23,19,4,2,1497,1504,1137,1141,271,277,7,2,18,9,0,0,64,75,1197,1214,321,333,20,16,21,15,3,2,89,84,73,62,8,5,2,1,0,1,1,0,5,15,78,77,12,11,4,7,2,4,1,0 -050,01,033,Alabama,Colbert County,10,3,3205,1630,1575,1275,1216,274,260,10,10,10,15,1,3,60,71,1332,1286,316,311,24,28,13,21,5,3,1545,1449,1209,1106,269,251,3,7,9,14,1,1,54,70,1260,1175,308,302,16,24,11,20,4,1,85,126,66,110,5,9,7,3,1,1,0,2,6,1,72,111,8,9,8,4,2,1,1,2 -050,01,033,Alabama,Colbert County,10,4,3173,1588,1585,1247,1237,284,280,5,9,8,12,1,2,43,45,1286,1277,312,310,19,22,13,19,1,4,1519,1523,1189,1183,276,275,5,9,8,11,1,2,40,43,1225,1221,302,304,19,21,12,18,1,4,69,62,58,54,8,5,0,0,0,1,0,0,3,2,61,56,10,6,0,1,1,1,0,0 -050,01,033,Alabama,Colbert County,10,5,3148,1614,1534,1232,1152,321,326,10,14,6,7,2,2,43,33,1271,1181,346,347,27,26,9,10,5,3,1563,1496,1189,1124,316,321,8,13,6,7,2,2,42,29,1227,1149,341,338,24,25,9,10,5,3,51,38,43,28,5,5,2,1,0,0,0,0,1,4,44,32,5,9,3,1,0,0,0,0 -050,01,033,Alabama,Colbert County,10,6,3691,1846,1845,1492,1452,301,335,10,15,11,8,2,0,30,35,1521,1486,312,353,25,29,16,14,4,0,1758,1800,1412,1412,297,332,8,15,11,8,1,0,29,33,1440,1444,307,349,23,28,16,14,3,0,88,45,80,40,4,3,2,0,0,0,1,0,1,2,81,42,5,4,2,1,0,0,1,0 -050,01,033,Alabama,Colbert County,10,7,3171,1560,1611,1274,1301,242,256,16,13,8,21,0,1,20,19,1291,1318,251,265,29,22,8,24,1,1,1482,1576,1203,1273,242,254,11,10,8,21,0,0,18,18,1219,1289,249,262,23,19,8,24,1,0,78,35,71,28,0,2,5,3,0,0,0,1,2,1,72,29,2,3,6,3,0,0,0,1 -050,01,033,Alabama,Colbert County,10,8,3172,1532,1640,1241,1285,252,301,11,17,13,19,0,1,15,17,1254,1302,254,307,20,28,17,21,3,1,1482,1591,1198,1242,245,297,11,17,13,19,0,1,15,15,1211,1257,247,301,20,27,17,20,3,1,50,49,43,43,7,4,0,0,0,0,0,0,0,2,43,45,7,6,0,1,0,1,0,0 -050,01,033,Alabama,Colbert County,10,9,3113,1498,1615,1229,1302,235,280,16,5,6,12,0,0,12,16,1241,1317,239,282,23,18,7,15,0,0,1432,1576,1173,1269,232,277,11,5,6,12,0,0,10,13,1183,1281,234,277,18,16,7,15,0,0,66,39,56,33,3,3,5,0,0,0,0,0,2,3,58,36,5,5,5,2,0,0,0,0 -050,01,033,Alabama,Colbert County,10,10,3595,1734,1861,1429,1513,257,302,15,7,14,16,1,2,18,21,1446,1532,262,308,29,20,15,20,1,3,1683,1819,1388,1478,253,298,14,6,11,15,0,2,17,20,1404,1496,257,304,28,18,12,19,0,3,51,42,41,35,4,4,1,1,3,1,1,0,1,1,42,36,5,4,1,2,3,1,1,0 -050,01,033,Alabama,Colbert County,10,11,3827,1831,1996,1542,1631,261,326,9,9,9,13,1,1,9,16,1550,1647,262,331,17,19,10,14,1,1,1787,1964,1498,1604,261,326,9,9,9,12,1,1,9,12,1506,1616,262,330,17,17,10,12,1,1,44,32,44,27,0,0,0,0,0,1,0,0,0,4,44,31,0,1,0,2,0,2,0,0 -050,01,033,Alabama,Colbert County,10,12,3824,1814,2010,1511,1611,262,359,14,12,8,7,2,1,17,20,1527,1630,264,365,28,26,10,7,2,2,1798,1987,1497,1595,261,355,14,11,8,7,2,1,16,18,1512,1612,262,359,28,25,10,7,2,2,16,23,14,16,1,4,0,1,0,0,0,0,1,2,15,18,2,6,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,10,13,3794,1827,1967,1519,1585,276,340,8,12,11,13,0,0,13,17,1532,1601,280,343,17,26,11,14,0,0,1807,1951,1504,1573,276,337,7,12,11,13,0,0,9,16,1513,1588,277,339,15,26,11,14,0,0,20,16,15,12,0,3,1,0,0,0,0,0,4,1,19,13,3,4,2,0,0,0,0,0 -050,01,033,Alabama,Colbert County,10,14,3400,1573,1827,1297,1459,241,316,10,9,5,23,0,0,20,20,1316,1477,242,318,27,28,8,24,0,0,1565,1819,1290,1451,240,316,10,9,5,23,0,0,20,20,1309,1469,241,318,27,28,8,24,0,0,8,8,7,8,1,0,0,0,0,0,0,0,0,0,7,8,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,10,15,2678,1172,1506,996,1279,159,206,9,8,2,6,0,0,6,7,1000,1285,162,209,12,13,3,7,1,0,1167,1502,993,1275,157,206,9,8,2,6,0,0,6,7,997,1281,160,209,12,13,3,7,1,0,5,4,3,4,2,0,0,0,0,0,0,0,0,0,3,4,2,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,10,16,2002,840,1162,720,1009,103,134,4,9,3,4,0,0,10,6,730,1015,104,136,13,13,4,4,0,0,837,1155,717,1004,103,132,4,9,3,4,0,0,10,6,727,1010,104,134,13,13,4,4,0,0,3,7,3,5,0,2,0,0,0,0,0,0,0,0,3,5,0,2,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,10,17,1316,533,783,462,655,54,117,7,2,0,1,0,0,10,8,472,663,54,117,16,8,1,3,0,2,530,780,459,653,54,117,7,2,0,1,0,0,10,7,469,660,54,117,16,7,1,3,0,1,3,3,3,2,0,0,0,0,0,0,0,0,0,1,3,3,0,0,0,1,0,0,0,1 -050,01,033,Alabama,Colbert County,10,18,1266,460,806,390,685,60,102,5,2,1,3,0,2,4,12,394,697,61,104,8,13,3,5,0,2,454,797,384,677,60,102,5,1,1,3,0,2,4,12,388,689,61,104,8,12,3,5,0,2,6,9,6,8,0,0,0,1,0,0,0,0,0,0,6,8,0,0,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,11,0,54970,26331,28639,21387,22908,4073,4782,178,168,147,207,20,21,526,553,21886,23432,4353,5081,382,379,196,273,47,39,25471,27910,20664,22298,4012,4727,151,150,143,202,16,18,485,515,21125,22786,4267,5010,342,344,189,261,38,34,860,729,723,610,61,55,27,18,4,5,4,3,41,38,761,646,86,71,40,35,7,12,9,5 -050,01,033,Alabama,Colbert County,11,1,3132,1595,1537,1207,1186,242,225,6,5,12,8,6,1,122,112,1327,1295,333,314,24,24,23,17,11,4,1512,1478,1145,1141,236,217,5,2,12,8,6,1,108,109,1252,1247,318,305,19,19,22,17,10,4,83,59,62,45,6,8,1,3,0,0,0,0,14,3,75,48,15,9,5,5,1,0,1,0 -050,01,033,Alabama,Colbert County,11,2,3150,1585,1565,1227,1178,267,293,6,4,17,10,0,3,68,77,1292,1252,320,350,16,22,23,18,4,3,1508,1488,1163,1118,259,289,6,2,17,9,0,3,63,67,1224,1182,308,342,15,16,22,15,2,3,77,77,64,60,8,4,0,2,0,1,0,0,5,10,68,70,12,8,1,6,1,3,2,0 -050,01,033,Alabama,Colbert County,11,3,3271,1648,1623,1289,1269,281,262,10,10,9,19,2,3,57,60,1344,1324,322,306,23,19,13,29,3,6,1557,1483,1213,1147,277,253,4,5,8,18,1,1,54,59,1265,1201,315,297,17,14,12,27,2,4,91,140,76,122,4,9,6,5,1,1,1,2,3,1,79,123,7,9,6,5,1,2,1,2 -050,01,033,Alabama,Colbert County,11,4,3125,1568,1557,1234,1217,270,274,5,7,9,9,2,2,48,48,1279,1264,301,304,21,19,10,14,5,4,1487,1488,1172,1153,260,269,3,7,9,9,2,2,41,48,1210,1200,288,299,16,19,10,14,4,4,81,69,62,64,10,5,2,0,0,0,0,0,7,0,69,64,13,5,5,0,0,0,1,0 -050,01,033,Alabama,Colbert County,11,5,3111,1555,1556,1207,1176,290,314,9,14,4,8,2,2,43,42,1249,1216,312,337,24,28,12,13,4,6,1499,1512,1160,1144,282,311,9,13,4,7,2,2,42,35,1201,1177,303,331,24,24,12,11,4,4,56,44,47,32,8,3,0,1,0,1,0,0,1,7,48,39,9,6,0,4,0,2,0,2 -050,01,033,Alabama,Colbert County,11,6,3747,1910,1837,1543,1449,316,330,12,15,9,9,2,2,28,32,1565,1478,329,348,25,28,13,12,6,4,1816,1791,1460,1408,310,327,9,15,9,9,1,2,27,30,1481,1435,323,344,21,27,13,12,5,4,94,46,83,41,6,3,3,0,0,0,1,0,1,2,84,43,6,4,4,1,0,0,1,0 -050,01,033,Alabama,Colbert County,11,7,3256,1568,1688,1282,1322,243,306,13,17,10,22,1,1,19,20,1300,1341,249,313,25,27,10,26,3,1,1469,1649,1190,1291,243,304,8,13,10,22,1,0,17,19,1206,1309,247,310,20,23,10,26,3,0,99,39,92,31,0,2,5,4,0,0,0,1,2,1,94,32,2,3,5,4,0,0,0,1 -050,01,033,Alabama,Colbert County,11,8,3182,1545,1637,1242,1312,254,271,12,12,16,22,0,1,21,19,1261,1330,257,278,26,25,21,22,1,1,1501,1593,1206,1272,247,269,11,12,16,22,0,1,21,17,1225,1288,250,275,25,24,21,22,1,1,44,44,36,40,7,2,1,0,0,0,0,0,0,2,36,42,7,3,1,1,0,0,0,0 -050,01,033,Alabama,Colbert County,11,9,3135,1527,1608,1237,1286,258,289,16,9,6,12,0,0,10,12,1246,1297,259,294,22,15,8,14,2,0,1468,1559,1187,1244,255,284,11,9,6,12,0,0,9,10,1196,1254,256,287,17,15,7,13,1,0,59,49,50,42,3,5,5,0,0,0,0,0,1,2,50,43,3,7,5,0,1,1,1,0 -050,01,033,Alabama,Colbert County,11,10,3530,1681,1849,1401,1509,233,298,16,8,13,14,0,2,18,18,1419,1527,237,304,28,18,15,16,0,2,1627,1804,1357,1472,229,293,15,7,10,13,0,2,16,17,1373,1489,231,298,27,17,12,15,0,2,54,45,44,37,4,5,1,1,3,1,0,0,2,1,46,38,6,6,1,1,3,1,0,0 -050,01,033,Alabama,Colbert County,11,11,3689,1785,1904,1502,1547,249,317,9,8,10,13,2,1,13,18,1514,1564,253,321,17,19,12,17,2,1,1728,1865,1446,1514,249,317,9,8,10,12,1,1,13,13,1458,1526,253,320,17,16,12,15,1,1,57,39,56,33,0,0,0,0,0,1,1,0,0,5,56,38,0,1,0,3,0,2,1,0 -050,01,033,Alabama,Colbert County,11,12,3880,1841,2039,1536,1657,270,342,17,10,8,11,1,0,9,19,1545,1675,272,344,24,24,8,14,1,1,1825,2013,1523,1636,269,340,15,9,8,11,1,0,9,17,1532,1653,271,342,22,21,8,13,1,1,16,26,13,21,1,2,2,1,0,0,0,0,0,2,13,22,1,2,2,3,0,1,0,0 -050,01,033,Alabama,Colbert County,11,13,3867,1858,2009,1549,1612,266,352,9,17,11,8,2,1,21,19,1570,1630,268,353,26,29,13,14,2,2,1837,1988,1535,1597,266,347,8,17,11,8,1,1,16,18,1551,1614,267,347,21,29,13,14,1,2,21,21,14,15,0,5,1,0,0,0,1,0,5,1,19,16,1,6,5,0,0,0,1,0 -050,01,033,Alabama,Colbert County,11,14,3431,1573,1858,1299,1474,240,323,13,11,5,29,0,0,16,21,1313,1494,242,324,27,31,6,30,1,0,1563,1848,1290,1464,239,323,13,11,5,29,0,0,16,21,1304,1484,241,324,27,31,6,30,1,0,10,10,9,10,1,0,0,0,0,0,0,0,0,0,9,10,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,11,15,2713,1189,1524,995,1292,173,211,9,6,4,6,0,0,8,9,1003,1301,173,212,16,13,4,7,1,0,1183,1522,991,1290,171,211,9,6,4,6,0,0,8,9,999,1299,171,212,16,13,4,7,1,0,6,2,4,2,2,0,0,0,0,0,0,0,0,0,4,2,2,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,11,16,2118,894,1224,766,1049,110,159,3,8,3,4,0,0,12,4,777,1052,112,161,14,11,3,4,1,0,891,1218,764,1045,109,157,3,8,3,4,0,0,12,4,775,1048,111,159,14,11,3,4,1,0,3,6,2,4,1,2,0,0,0,0,0,0,0,0,2,4,1,2,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,11,17,1358,539,819,464,691,60,113,6,5,0,0,0,0,9,10,472,698,62,114,14,14,0,2,0,1,536,815,461,688,60,113,6,5,0,0,0,0,9,9,469,694,62,114,14,13,0,2,0,1,3,4,3,3,0,0,0,0,0,0,0,0,0,1,3,4,0,0,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,11,18,1275,470,805,407,682,51,103,7,2,1,3,0,2,4,13,410,694,52,104,10,13,2,4,0,3,464,796,401,674,51,103,7,1,1,3,0,2,4,13,404,686,52,104,10,12,2,4,0,3,6,9,6,8,0,0,0,1,0,0,0,0,0,0,6,8,0,0,0,1,0,0,0,0 -050,01,033,Alabama,Colbert County,12,0,55241,26412,28829,21418,22997,4088,4856,188,179,164,213,18,20,536,564,21921,23534,4383,5160,404,405,220,269,33,40,25524,28013,20686,22314,4019,4796,157,155,163,207,13,17,486,524,21145,22816,4288,5082,350,367,214,251,23,31,888,816,732,683,69,60,31,24,1,6,5,3,50,40,776,718,95,78,54,38,6,18,10,9 -050,01,033,Alabama,Colbert County,12,1,3143,1599,1544,1206,1171,266,261,8,7,11,9,3,0,105,96,1306,1263,345,339,26,22,20,15,7,3,1511,1482,1144,1118,257,256,6,6,11,9,3,0,90,93,1230,1207,328,333,18,19,19,15,6,3,88,62,62,53,9,5,2,1,0,0,0,0,15,3,76,56,17,6,8,3,1,0,1,0 -050,01,033,Alabama,Colbert County,12,2,3206,1612,1594,1266,1202,252,280,8,12,18,9,0,3,68,88,1329,1287,304,342,21,32,24,19,3,8,1531,1502,1201,1138,243,271,5,3,18,9,0,3,64,78,1264,1214,292,329,15,19,23,16,2,6,81,92,65,64,9,9,3,9,0,0,0,0,4,10,65,73,12,13,6,13,1,3,1,2 -050,01,033,Alabama,Colbert County,12,3,3305,1660,1645,1274,1286,296,270,8,5,11,14,2,3,69,67,1339,1353,346,315,24,19,18,20,2,5,1567,1496,1199,1151,291,264,4,2,10,12,1,1,62,66,1257,1217,336,308,18,16,17,18,1,3,93,149,75,135,5,6,4,3,1,2,1,2,7,1,82,136,10,7,6,3,1,2,1,2 -050,01,033,Alabama,Colbert County,12,4,3033,1533,1500,1216,1172,249,257,8,10,10,13,1,0,49,48,1265,1216,280,293,22,22,16,18,1,0,1458,1423,1158,1104,242,251,4,8,10,13,1,0,43,47,1201,1147,270,286,15,20,14,18,1,0,75,77,58,68,7,6,4,2,0,0,0,0,6,1,64,69,10,7,7,2,2,0,0,0 -050,01,033,Alabama,Colbert County,12,5,3076,1535,1541,1187,1164,290,307,8,13,4,7,2,3,44,47,1230,1210,315,337,22,28,10,8,2,5,1478,1483,1143,1121,279,301,8,12,4,5,2,3,42,41,1184,1162,303,326,21,26,10,6,2,4,57,58,44,43,11,6,0,1,0,2,0,0,2,6,46,48,12,11,1,2,0,2,0,1 -050,01,033,Alabama,Colbert County,12,6,3787,1890,1897,1503,1481,324,365,9,11,17,10,4,2,33,28,1533,1508,342,378,24,22,22,14,6,3,1789,1836,1416,1428,319,361,6,10,17,10,2,2,29,25,1443,1452,335,372,19,21,21,13,3,3,101,61,87,53,5,4,3,1,0,0,2,0,4,3,90,56,7,6,5,1,1,1,3,0 -050,01,033,Alabama,Colbert County,12,7,3366,1657,1709,1342,1323,266,327,14,20,13,20,1,1,21,18,1360,1339,276,336,24,28,17,23,1,1,1560,1663,1255,1286,263,324,9,16,13,20,1,0,19,17,1271,1301,272,333,18,23,17,23,1,0,97,46,87,37,3,3,5,4,0,0,0,1,2,1,89,38,4,3,6,5,0,0,0,1 -050,01,033,Alabama,Colbert County,12,8,3236,1551,1685,1246,1336,256,281,17,15,14,29,0,1,18,23,1261,1358,260,289,31,27,16,34,1,1,1503,1648,1208,1302,247,280,16,15,14,29,0,1,18,21,1223,1322,251,287,30,27,16,33,1,1,48,37,38,34,9,1,1,0,0,0,0,0,0,2,38,36,9,2,1,0,0,1,0,0 -050,01,033,Alabama,Colbert County,12,9,3137,1520,1617,1245,1301,247,281,10,10,9,10,0,0,9,15,1254,1315,251,287,15,19,9,12,0,1,1465,1562,1197,1254,245,275,6,10,9,10,0,0,8,13,1205,1266,249,280,10,18,9,12,0,1,55,55,48,47,2,6,4,0,0,0,0,0,1,2,49,49,2,7,5,1,0,0,0,0 -050,01,033,Alabama,Colbert County,12,10,3446,1633,1813,1358,1470,227,305,22,6,5,13,0,2,21,17,1376,1484,231,309,38,19,10,14,1,4,1583,1763,1315,1427,222,300,21,5,5,13,0,2,20,16,1332,1441,226,304,37,18,10,13,0,3,50,50,43,43,5,5,1,1,0,0,0,0,1,1,44,43,5,5,1,1,0,1,1,1 -050,01,033,Alabama,Colbert County,12,11,3620,1757,1863,1462,1524,252,298,8,9,16,14,2,0,17,18,1479,1540,254,301,22,22,16,18,3,1,1682,1814,1392,1482,252,298,7,9,16,12,1,0,14,13,1406,1494,254,301,18,19,16,13,2,0,75,49,70,42,0,0,1,0,0,2,1,0,3,5,73,46,0,0,4,3,0,5,1,1 -050,01,033,Alabama,Colbert County,12,12,3913,1876,2037,1571,1658,266,344,18,10,10,9,1,1,10,15,1580,1673,267,345,26,21,12,11,1,2,1857,2012,1555,1635,265,344,16,10,10,9,1,1,10,13,1564,1648,266,344,24,21,12,10,1,2,19,25,16,23,1,0,2,0,0,0,0,0,0,2,16,25,1,1,2,0,0,1,0,0 -050,01,033,Alabama,Colbert County,12,13,3857,1814,2043,1522,1639,248,350,10,19,10,8,2,2,22,25,1543,1663,254,352,26,40,10,11,3,2,1794,2021,1509,1625,248,344,9,18,10,8,1,2,17,24,1525,1649,251,346,24,38,10,10,1,2,20,22,13,14,0,6,1,1,0,0,1,0,5,1,18,14,3,6,2,2,0,1,2,0 -050,01,033,Alabama,Colbert County,12,14,3436,1578,1858,1300,1500,243,299,14,9,7,33,0,0,14,17,1313,1517,246,299,25,25,9,34,0,0,1570,1846,1293,1489,242,298,14,9,7,33,0,0,14,17,1306,1506,245,298,25,25,9,34,0,0,8,12,7,11,1,1,0,0,0,0,0,0,0,0,7,11,1,1,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,12,15,2836,1263,1573,1068,1310,171,237,9,7,3,6,0,0,12,13,1080,1322,172,239,20,18,5,7,0,0,1256,1572,1061,1309,171,237,9,7,3,6,0,0,12,13,1073,1321,172,239,20,18,5,7,0,0,7,1,7,1,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,12,16,2136,900,1236,767,1044,117,173,2,8,4,5,0,0,10,6,775,1048,119,176,11,12,4,6,1,0,896,1229,765,1039,115,171,2,8,4,5,0,0,10,6,773,1043,117,174,11,12,4,6,1,0,4,7,2,5,2,2,0,0,0,0,0,0,0,0,2,5,2,2,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,12,17,1422,561,861,481,732,62,114,8,6,0,1,0,0,10,8,490,740,64,115,16,13,0,2,1,1,557,857,477,729,62,114,8,6,0,1,0,0,10,7,486,736,64,114,16,13,0,1,1,0,4,4,4,3,0,0,0,0,0,0,0,0,0,1,4,4,0,1,0,0,0,1,0,1 -050,01,033,Alabama,Colbert County,12,18,1286,473,813,404,684,56,107,7,2,2,3,0,2,4,15,408,698,57,108,11,16,2,3,0,3,467,804,398,677,56,107,7,1,2,3,0,2,4,14,402,690,57,108,11,14,2,3,0,3,6,9,6,7,0,0,0,1,0,0,0,0,0,1,6,8,0,0,0,2,0,0,0,0 -050,01,033,Alabama,Colbert County,13,0,55411,26538,28873,21441,22995,4158,4853,198,183,162,221,18,19,561,602,21976,23560,4466,5198,422,411,216,285,32,39,25618,28030,20683,22294,4081,4791,166,159,161,209,13,16,514,561,21175,22824,4363,5113,370,372,211,263,25,34,920,843,758,701,77,62,32,24,1,12,5,3,47,41,801,736,103,85,52,39,5,22,7,5 -050,01,033,Alabama,Colbert County,13,1,3171,1613,1558,1192,1147,289,286,10,8,14,14,3,0,105,103,1293,1248,371,368,28,22,21,23,5,3,1528,1483,1133,1089,277,278,8,6,14,12,3,0,93,98,1223,1185,352,358,21,19,21,19,4,3,85,75,59,58,12,8,2,2,0,2,0,0,12,5,70,63,19,10,7,3,0,4,1,0 -050,01,033,Alabama,Colbert County,13,2,3174,1603,1571,1231,1211,260,237,10,13,15,10,0,3,87,97,1314,1306,326,311,28,31,24,18,0,4,1506,1481,1150,1148,254,229,6,6,15,8,0,3,81,87,1227,1234,316,297,22,20,24,15,0,4,97,90,81,63,6,8,4,7,0,2,0,0,6,10,87,72,10,14,6,11,0,3,0,0 -050,01,033,Alabama,Colbert County,13,3,3354,1686,1668,1299,1305,297,285,9,5,13,12,1,2,67,59,1363,1363,344,325,23,20,21,17,5,4,1602,1537,1232,1184,291,282,6,1,12,11,0,1,61,58,1291,1241,335,322,17,15,19,16,4,3,84,131,67,121,6,3,3,4,1,1,1,1,6,1,72,122,9,3,6,5,2,1,1,1 -050,01,033,Alabama,Colbert County,13,4,2966,1522,1444,1202,1106,254,252,8,11,10,14,2,1,46,60,1245,1163,287,294,22,24,12,23,4,4,1440,1359,1137,1035,247,243,3,9,10,13,2,0,41,59,1176,1091,276,284,15,22,12,22,3,3,82,85,65,71,7,9,5,2,0,1,0,1,5,1,69,72,11,10,7,2,0,1,1,1 -050,01,033,Alabama,Colbert County,13,5,3087,1515,1572,1156,1194,293,299,11,9,7,12,2,2,46,56,1201,1246,318,332,25,25,14,19,3,6,1455,1503,1109,1138,282,293,11,9,7,9,2,2,44,52,1152,1186,307,324,25,24,12,15,3,6,60,69,47,56,11,6,0,0,0,3,0,0,2,4,49,60,11,8,0,1,2,4,0,0 -050,01,033,Alabama,Colbert County,13,6,3678,1835,1843,1454,1438,320,356,12,14,7,7,2,2,40,26,1492,1462,339,369,30,23,11,11,3,4,1738,1778,1373,1378,311,355,9,13,7,7,1,2,37,23,1409,1400,329,366,25,22,10,10,2,3,97,65,81,60,9,1,3,1,0,0,1,0,3,3,83,62,10,3,5,1,1,1,1,1 -050,01,033,Alabama,Colbert County,13,7,3541,1771,1770,1407,1357,312,349,13,18,13,23,2,0,24,23,1430,1380,323,361,25,28,17,25,2,0,1670,1721,1319,1316,306,346,9,15,13,22,1,0,22,22,1340,1338,315,357,21,24,17,24,1,0,101,49,88,41,6,3,4,3,0,1,1,0,2,1,90,42,8,4,4,4,0,1,1,0 -050,01,033,Alabama,Colbert County,13,8,3184,1550,1634,1254,1302,252,266,14,14,14,28,1,1,15,23,1267,1325,256,274,25,28,16,30,1,1,1489,1601,1204,1275,244,265,12,12,14,28,1,0,14,21,1216,1296,248,272,22,26,16,29,1,0,61,33,50,27,8,1,2,2,0,0,0,1,1,2,51,29,8,2,3,2,0,1,0,1 -050,01,033,Alabama,Colbert County,13,9,3149,1496,1653,1223,1309,239,301,12,14,10,14,0,1,12,14,1233,1322,243,306,20,23,10,16,2,1,1450,1602,1180,1266,237,295,11,14,10,14,0,1,12,12,1190,1277,241,299,19,22,10,16,2,1,46,51,43,43,2,6,1,0,0,0,0,0,0,2,43,45,2,7,1,1,0,0,0,0 -050,01,033,Alabama,Colbert County,13,10,3344,1581,1763,1328,1440,206,290,21,6,7,9,0,1,19,17,1347,1455,210,298,33,16,10,10,0,1,1528,1713,1284,1399,203,284,17,5,7,9,0,1,17,15,1301,1413,205,290,29,14,10,10,0,1,53,50,44,41,3,6,4,1,0,0,0,0,2,2,46,42,5,8,4,2,0,0,0,0 -050,01,033,Alabama,Colbert County,13,11,3655,1772,1883,1462,1547,268,295,9,6,15,17,2,1,16,17,1477,1562,271,300,22,17,17,20,3,2,1699,1830,1396,1500,266,295,8,6,15,15,1,1,13,13,1408,1511,269,299,18,16,17,16,2,1,73,53,66,47,2,0,1,0,0,2,1,0,3,4,69,51,2,1,4,1,0,4,1,1 -050,01,033,Alabama,Colbert County,13,12,3916,1899,2017,1590,1648,271,327,16,13,9,11,1,1,12,17,1602,1662,271,331,26,27,10,13,2,1,1872,1994,1565,1627,271,327,14,13,9,11,1,1,12,15,1577,1641,271,330,24,25,10,12,2,1,27,23,25,21,0,0,2,0,0,0,0,0,0,2,25,21,0,1,2,2,0,1,0,0 -050,01,033,Alabama,Colbert County,13,13,3805,1763,2042,1494,1622,223,370,12,16,11,6,2,2,21,26,1514,1646,227,375,28,35,13,11,2,4,1746,2012,1484,1602,222,363,11,15,11,6,1,2,17,24,1500,1624,223,367,26,32,13,11,1,4,17,30,10,20,1,7,1,1,0,0,1,0,4,2,14,22,4,8,2,3,0,0,1,0 -050,01,033,Alabama,Colbert County,13,14,3472,1624,1848,1344,1496,251,301,14,10,6,23,0,0,9,18,1353,1510,251,305,23,26,6,24,0,1,1612,1832,1334,1482,250,299,14,10,6,23,0,0,8,18,1342,1496,250,303,22,26,6,24,0,1,12,16,10,14,1,2,0,0,0,0,0,0,1,0,11,14,1,2,1,0,0,0,0,0 -050,01,033,Alabama,Colbert County,13,15,3005,1342,1663,1116,1382,196,242,8,9,5,12,0,0,17,18,1133,1396,198,245,23,25,6,14,0,1,1331,1661,1106,1380,195,242,8,9,5,12,0,0,17,18,1123,1394,197,245,23,25,6,14,0,1,11,2,10,2,1,0,0,0,0,0,0,0,0,0,10,2,1,0,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,13,16,2165,907,1258,785,1068,107,172,4,8,2,4,0,0,9,6,794,1073,108,173,12,14,3,4,0,0,903,1252,783,1063,105,171,4,8,2,4,0,0,9,6,792,1068,106,172,12,14,3,4,0,0,4,6,2,5,2,1,0,0,0,0,0,0,0,0,2,5,2,1,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,13,17,1406,542,864,460,735,63,114,7,6,1,1,0,0,11,8,469,741,65,117,17,13,2,1,0,0,539,858,457,731,63,113,7,6,1,1,0,0,11,7,466,736,65,115,17,13,2,1,0,0,3,6,3,4,0,1,0,0,0,0,0,0,0,1,3,5,0,2,0,0,0,0,0,0 -050,01,033,Alabama,Colbert County,13,18,1339,517,822,444,688,57,111,8,3,3,4,0,2,5,14,449,700,58,114,12,14,3,6,0,2,510,813,437,681,57,111,8,2,3,4,0,2,5,13,442,693,58,113,12,13,3,5,0,2,7,9,7,7,0,0,0,1,0,0,0,0,0,1,7,7,0,1,0,1,0,1,0,0 -050,01,035,Alabama,Conecuh County,1,0,13228,6412,6816,3470,3382,2849,3333,25,19,3,14,1,0,64,68,3519,3438,2886,3370,59,56,20,24,8,0,6311,6756,3415,3355,2819,3310,25,19,3,14,0,0,49,58,3455,3404,2844,3341,49,50,11,23,1,0,101,60,55,27,30,23,0,0,0,0,1,0,15,10,64,34,42,29,10,6,9,1,7,0 -050,01,035,Alabama,Conecuh County,1,1,776,415,361,160,153,244,197,3,1,0,0,0,0,8,10,167,163,252,206,4,2,0,0,0,0,403,357,151,152,242,195,3,1,0,0,0,0,7,9,158,161,249,204,3,1,0,0,0,0,12,4,9,1,2,2,0,0,0,0,0,0,1,1,9,2,3,2,1,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,2,790,386,404,156,153,224,248,1,0,0,0,1,0,4,3,160,156,227,250,1,1,1,0,1,0,381,398,153,151,223,245,1,0,0,0,0,0,4,2,157,153,226,246,1,1,1,0,0,0,5,6,3,2,1,3,0,0,0,0,1,0,0,1,3,3,1,4,0,0,0,0,1,0 -050,01,035,Alabama,Conecuh County,1,3,879,450,429,193,170,247,250,2,1,0,0,0,0,8,8,199,175,251,256,6,3,3,3,2,0,440,424,188,167,243,249,2,1,0,0,0,0,7,7,193,171,246,254,5,3,2,3,1,0,10,5,5,3,4,1,0,0,0,0,0,0,1,1,6,4,5,2,1,0,1,0,1,0 -050,01,035,Alabama,Conecuh County,1,4,976,515,461,226,183,279,264,2,2,0,0,0,0,8,12,234,193,281,271,7,9,3,3,1,0,506,455,224,180,275,261,2,2,0,0,0,0,5,12,229,190,275,268,5,9,2,3,0,0,9,6,2,3,4,3,0,0,0,0,0,0,3,0,5,3,6,3,2,0,1,0,1,0 -050,01,035,Alabama,Conecuh County,1,5,640,340,300,165,113,172,178,0,2,1,2,0,0,2,5,165,118,174,178,0,6,3,3,1,0,324,293,152,111,170,175,0,2,1,2,0,0,1,3,152,114,171,175,0,4,2,3,0,0,16,7,13,2,2,3,0,0,0,0,0,0,1,2,13,4,3,3,0,2,1,0,1,0 -050,01,035,Alabama,Conecuh County,1,6,655,328,327,165,146,156,176,0,0,2,3,0,0,5,2,168,146,158,178,4,1,3,4,0,0,314,322,156,144,154,175,0,0,2,3,0,0,2,0,158,144,154,175,2,0,2,3,0,0,14,5,9,2,2,1,0,0,0,0,0,0,3,2,10,2,4,3,2,1,1,1,0,0 -050,01,035,Alabama,Conecuh County,1,7,676,291,385,148,171,137,209,1,0,0,0,0,0,5,5,151,176,141,212,3,2,3,0,1,0,279,378,143,168,134,207,1,0,0,0,0,0,1,3,144,171,135,209,1,1,0,0,0,0,12,7,5,3,3,2,0,0,0,0,0,0,4,2,7,5,6,3,2,1,3,0,1,0 -050,01,035,Alabama,Conecuh County,1,8,731,343,388,196,183,142,201,3,0,0,2,0,0,2,2,198,184,143,203,5,2,1,2,1,0,336,384,194,181,138,200,3,0,0,2,0,0,1,1,195,182,138,201,4,1,0,2,0,0,7,4,2,2,4,1,0,0,0,0,0,0,1,1,3,2,5,2,1,1,1,0,1,0 -050,01,035,Alabama,Conecuh County,1,9,768,362,406,213,193,144,207,2,1,0,3,0,0,3,2,216,195,145,207,4,3,0,3,0,0,359,404,211,192,143,206,2,1,0,3,0,0,3,2,214,194,144,206,4,3,0,3,0,0,3,2,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,10,979,471,508,259,254,208,245,1,3,0,2,0,0,3,4,261,258,210,246,3,6,0,2,0,0,467,504,257,253,206,242,1,3,0,2,0,0,3,4,259,257,208,243,3,6,0,2,0,0,4,4,2,1,2,3,0,0,0,0,0,0,0,0,2,1,2,3,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,11,1031,510,521,303,251,202,266,3,2,0,1,0,0,2,1,304,252,204,266,5,3,1,1,1,0,505,519,302,249,199,266,3,2,0,1,0,0,1,1,302,250,200,266,4,3,0,1,0,0,5,2,1,2,3,0,0,0,0,0,0,0,1,0,2,2,4,0,1,0,1,0,1,0 -050,01,035,Alabama,Conecuh County,1,12,1000,484,516,276,287,203,222,1,2,0,0,0,0,4,5,279,291,205,224,3,5,1,1,0,0,483,515,275,286,203,222,1,2,0,0,0,0,4,5,278,290,205,224,3,5,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,13,965,483,482,301,273,177,203,3,3,0,0,0,0,2,3,301,275,179,204,4,5,1,1,0,0,483,478,301,271,177,201,3,3,0,0,0,0,2,3,301,273,179,202,4,5,1,1,0,0,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,14,779,372,407,231,247,137,159,1,1,0,0,0,0,3,0,234,247,138,159,3,1,0,0,0,0,371,407,231,247,136,159,1,1,0,0,0,0,3,0,234,247,137,159,3,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,15,564,256,308,190,211,63,93,0,0,0,0,0,0,3,4,192,213,64,95,3,4,0,0,0,0,254,305,189,209,62,92,0,0,0,0,0,0,3,4,191,211,63,94,3,4,0,0,0,0,2,3,1,2,1,1,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,16,392,167,225,119,144,45,79,2,0,0,1,0,0,1,1,120,145,45,79,3,1,0,1,0,0,167,225,119,144,45,79,2,0,0,1,0,0,1,1,120,145,45,79,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,17,376,142,234,102,152,40,80,0,1,0,0,0,0,0,1,102,153,40,80,0,2,0,0,0,0,142,234,102,152,40,80,0,1,0,0,0,0,0,1,102,153,40,80,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,1,18,251,97,154,67,98,29,56,0,0,0,0,0,0,1,0,68,98,29,56,1,0,0,0,0,0,97,154,67,98,29,56,0,0,0,0,0,0,1,0,68,98,29,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,0,13232,6415,6817,3473,3383,2849,3333,25,19,3,14,1,0,64,68,3522,3439,2886,3370,59,56,20,24,8,0,6314,6757,3418,3356,2819,3310,25,19,3,14,0,0,49,58,3458,3405,2844,3341,49,50,11,23,1,0,101,60,55,27,30,23,0,0,0,0,1,0,15,10,64,34,42,29,10,6,9,1,7,0 -050,01,035,Alabama,Conecuh County,2,1,776,415,361,160,153,244,197,3,1,0,0,0,0,8,10,167,163,252,206,4,2,0,0,0,0,403,357,151,152,242,195,3,1,0,0,0,0,7,9,158,161,249,204,3,1,0,0,0,0,12,4,9,1,2,2,0,0,0,0,0,0,1,1,9,2,3,2,1,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,2,789,386,403,156,152,224,248,1,0,0,0,1,0,4,3,160,155,227,250,1,1,1,0,1,0,381,397,153,150,223,245,1,0,0,0,0,0,4,2,157,152,226,246,1,1,1,0,0,0,5,6,3,2,1,3,0,0,0,0,1,0,0,1,3,3,1,4,0,0,0,0,1,0 -050,01,035,Alabama,Conecuh County,2,3,879,450,429,193,170,247,250,2,1,0,0,0,0,8,8,199,175,251,256,6,3,3,3,2,0,440,424,188,167,243,249,2,1,0,0,0,0,7,7,193,171,246,254,5,3,2,3,1,0,10,5,5,3,4,1,0,0,0,0,0,0,1,1,6,4,5,2,1,0,1,0,1,0 -050,01,035,Alabama,Conecuh County,2,4,976,515,461,226,183,279,264,2,2,0,0,0,0,8,12,234,193,281,271,7,9,3,3,1,0,506,455,224,180,275,261,2,2,0,0,0,0,5,12,229,190,275,268,5,9,2,3,0,0,9,6,2,3,4,3,0,0,0,0,0,0,3,0,5,3,6,3,2,0,1,0,1,0 -050,01,035,Alabama,Conecuh County,2,5,641,341,300,166,113,172,178,0,2,1,2,0,0,2,5,166,118,174,178,0,6,3,3,1,0,325,293,153,111,170,175,0,2,1,2,0,0,1,3,153,114,171,175,0,4,2,3,0,0,16,7,13,2,2,3,0,0,0,0,0,0,1,2,13,4,3,3,0,2,1,0,1,0 -050,01,035,Alabama,Conecuh County,2,6,654,328,326,165,145,156,176,0,0,2,3,0,0,5,2,168,145,158,178,4,1,3,4,0,0,314,321,156,143,154,175,0,0,2,3,0,0,2,0,158,143,154,175,2,0,2,3,0,0,14,5,9,2,2,1,0,0,0,0,0,0,3,2,10,2,4,3,2,1,1,1,0,0 -050,01,035,Alabama,Conecuh County,2,7,677,291,386,148,172,137,209,1,0,0,0,0,0,5,5,151,177,141,212,3,2,3,0,1,0,279,379,143,169,134,207,1,0,0,0,0,0,1,3,144,172,135,209,1,1,0,0,0,0,12,7,5,3,3,2,0,0,0,0,0,0,4,2,7,5,6,3,2,1,3,0,1,0 -050,01,035,Alabama,Conecuh County,2,8,732,344,388,197,183,142,201,3,0,0,2,0,0,2,2,199,184,143,203,5,2,1,2,1,0,337,384,195,181,138,200,3,0,0,2,0,0,1,1,196,182,138,201,4,1,0,2,0,0,7,4,2,2,4,1,0,0,0,0,0,0,1,1,3,2,5,2,1,1,1,0,1,0 -050,01,035,Alabama,Conecuh County,2,9,767,361,406,212,193,144,207,2,1,0,3,0,0,3,2,215,195,145,207,4,3,0,3,0,0,358,404,210,192,143,206,2,1,0,3,0,0,3,2,213,194,144,206,4,3,0,3,0,0,3,2,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,10,980,472,508,260,254,208,245,1,3,0,2,0,0,3,4,262,258,210,246,3,6,0,2,0,0,468,504,258,253,206,242,1,3,0,2,0,0,3,4,260,257,208,243,3,6,0,2,0,0,4,4,2,1,2,3,0,0,0,0,0,0,0,0,2,1,2,3,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,11,1033,510,523,303,253,202,266,3,2,0,1,0,0,2,1,304,254,204,266,5,3,1,1,1,0,505,521,302,251,199,266,3,2,0,1,0,0,1,1,302,252,200,266,4,3,0,1,0,0,5,2,1,2,3,0,0,0,0,0,0,0,1,0,2,2,4,0,1,0,1,0,1,0 -050,01,035,Alabama,Conecuh County,2,12,1001,485,516,277,287,203,222,1,2,0,0,0,0,4,5,280,291,205,224,3,5,1,1,0,0,484,515,276,286,203,222,1,2,0,0,0,0,4,5,279,290,205,224,3,5,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,13,965,483,482,301,273,177,203,3,3,0,0,0,0,2,3,301,275,179,204,4,5,1,1,0,0,483,478,301,271,177,201,3,3,0,0,0,0,2,3,301,273,179,202,4,5,1,1,0,0,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,14,779,372,407,231,247,137,159,1,1,0,0,0,0,3,0,234,247,138,159,3,1,0,0,0,0,371,407,231,247,136,159,1,1,0,0,0,0,3,0,234,247,137,159,3,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,15,564,256,308,190,211,63,93,0,0,0,0,0,0,3,4,192,213,64,95,3,4,0,0,0,0,254,305,189,209,62,92,0,0,0,0,0,0,3,4,191,211,63,94,3,4,0,0,0,0,2,3,1,2,1,1,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,16,392,167,225,119,144,45,79,2,0,0,1,0,0,1,1,120,145,45,79,3,1,0,1,0,0,167,225,119,144,45,79,2,0,0,1,0,0,1,1,120,145,45,79,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,17,376,142,234,102,152,40,80,0,1,0,0,0,0,0,1,102,153,40,80,0,2,0,0,0,0,142,234,102,152,40,80,0,1,0,0,0,0,0,1,102,153,40,80,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,2,18,251,97,154,67,98,29,56,0,0,0,0,0,0,1,0,68,98,29,56,1,0,0,0,0,0,97,154,67,98,29,56,0,0,0,0,0,0,1,0,68,98,29,56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,0,13234,6407,6827,3465,3379,2854,3343,25,21,3,14,1,0,59,70,3518,3437,2884,3384,55,51,10,24,4,3,6308,6762,3411,3348,2823,3319,25,21,3,14,0,0,46,60,3454,3398,2846,3354,48,46,9,22,1,2,99,65,54,31,31,24,0,0,0,0,1,0,13,10,64,39,38,30,7,5,1,2,3,1 -050,01,035,Alabama,Conecuh County,3,1,776,412,364,158,151,243,200,3,1,0,0,0,0,8,12,166,163,250,208,6,2,1,3,0,0,399,360,149,150,240,198,3,1,0,0,0,0,7,11,156,161,246,205,6,2,1,3,0,0,13,4,9,1,3,2,0,0,0,0,0,0,1,1,10,2,4,3,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,2,789,386,403,157,155,224,245,1,0,0,0,1,0,3,3,160,158,226,248,2,0,0,0,1,0,380,397,153,153,223,242,1,0,0,0,0,0,3,2,156,155,225,244,2,0,0,0,0,0,6,6,4,2,1,3,0,0,0,0,1,0,0,1,4,3,1,4,0,0,0,0,1,0 -050,01,035,Alabama,Conecuh County,3,3,869,443,426,188,167,245,251,2,1,0,0,0,0,8,7,193,172,249,255,6,5,3,1,0,0,433,421,183,164,241,250,2,1,0,0,0,0,7,6,188,168,245,254,5,4,2,1,0,0,10,5,5,3,4,1,0,0,0,0,0,0,1,1,5,4,4,1,1,1,1,0,0,0 -050,01,035,Alabama,Conecuh County,3,4,967,510,457,221,179,280,263,2,3,0,0,0,0,7,12,227,187,285,269,5,9,0,2,0,2,501,451,219,176,276,260,2,3,0,0,0,0,4,12,223,184,279,266,3,9,0,2,0,2,9,6,2,3,4,3,0,0,0,0,0,0,3,0,4,3,6,3,2,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,5,655,348,307,166,118,179,180,0,2,1,2,0,0,2,5,167,122,180,182,2,6,1,2,1,0,333,299,155,115,176,177,0,2,1,2,0,0,1,3,156,117,176,179,1,4,1,2,0,0,15,8,11,3,3,3,0,0,0,0,0,0,1,2,11,5,4,3,1,2,0,0,1,0 -050,01,035,Alabama,Conecuh County,3,6,647,324,323,165,143,153,175,0,0,2,3,0,0,4,2,169,145,155,176,1,0,3,4,0,0,309,317,154,140,151,174,0,0,2,3,0,0,2,0,156,140,152,174,0,0,3,3,0,0,15,6,11,3,2,1,0,0,0,0,0,0,2,2,13,5,3,2,1,0,0,1,0,0 -050,01,035,Alabama,Conecuh County,3,7,681,294,387,150,174,139,209,1,0,0,0,0,0,4,4,154,177,140,212,3,2,0,1,1,1,285,378,146,169,137,207,1,0,0,0,0,0,1,2,147,171,137,208,2,1,0,0,0,0,9,9,4,5,2,2,0,0,0,0,0,0,3,2,7,6,3,4,1,1,0,1,1,1 -050,01,035,Alabama,Conecuh County,3,8,730,341,389,192,182,144,203,3,0,0,2,0,0,2,2,194,183,145,205,4,1,0,2,0,0,334,385,190,180,140,202,3,0,0,2,0,0,1,1,191,181,140,203,4,0,0,2,0,0,7,4,2,2,4,1,0,0,0,0,0,0,1,1,3,2,5,2,0,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,9,759,362,397,211,188,146,203,2,1,0,3,0,0,3,2,214,190,148,204,2,2,1,3,0,0,359,395,209,187,145,202,2,1,0,3,0,0,3,2,212,189,147,203,2,2,1,3,0,0,3,2,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,10,968,460,508,256,255,200,242,1,5,0,2,0,0,3,4,259,259,201,243,3,7,0,3,0,0,457,503,255,254,198,238,1,5,0,2,0,0,3,4,258,258,199,239,3,7,0,3,0,0,3,5,1,1,2,4,0,0,0,0,0,0,0,0,1,1,2,4,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,11,1032,508,524,300,251,204,269,2,1,0,1,0,0,2,2,302,253,204,270,3,2,1,1,0,0,503,522,299,249,201,269,2,1,0,1,0,0,1,2,300,251,201,270,2,2,1,1,0,0,5,2,1,2,3,0,0,0,0,0,0,0,1,0,2,2,3,0,1,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,12,1001,484,517,281,284,198,226,2,2,0,0,0,0,3,5,284,286,199,230,5,5,0,1,0,0,483,516,280,283,198,226,2,2,0,0,0,0,3,5,283,285,199,230,5,5,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,13,967,488,479,301,272,182,201,3,3,0,0,0,0,2,3,303,275,182,203,5,4,0,0,0,0,488,475,301,270,182,199,3,3,0,0,0,0,2,3,303,273,182,201,5,4,0,0,0,0,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,14,788,376,412,234,250,138,161,1,1,0,0,0,0,3,0,237,250,138,161,4,1,0,0,0,0,375,412,234,250,137,161,1,1,0,0,0,0,3,0,237,250,137,161,4,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,15,578,264,314,194,211,67,98,0,0,0,0,0,0,3,5,196,216,68,100,2,3,0,0,1,0,262,311,193,209,66,97,0,0,0,0,0,0,3,5,195,214,67,99,2,3,0,0,1,0,2,3,1,2,1,1,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,16,396,167,229,120,149,44,78,2,0,0,1,0,0,1,1,121,150,45,79,2,0,0,1,0,0,167,229,120,149,44,78,2,0,0,1,0,0,1,1,121,150,45,79,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,17,370,140,230,101,149,39,79,0,1,0,0,0,0,0,1,101,150,39,79,0,2,0,0,0,0,140,230,101,149,39,79,0,1,0,0,0,0,0,1,101,150,39,79,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,3,18,261,100,161,70,101,29,60,0,0,0,0,0,0,1,0,71,101,30,60,0,0,0,0,0,0,100,161,70,101,29,60,0,0,0,0,0,0,1,0,71,101,30,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,0,13194,6382,6812,3419,3341,2856,3353,30,23,4,13,2,1,71,81,3485,3414,2887,3394,67,57,10,27,7,4,6265,6741,3355,3305,2818,3328,29,23,4,13,1,1,58,71,3408,3368,2844,3364,58,54,10,26,6,3,117,71,64,36,38,25,1,0,0,0,1,0,13,10,77,46,43,30,9,3,0,1,1,1 -050,01,035,Alabama,Conecuh County,4,1,759,401,358,162,147,223,196,3,1,0,0,1,0,12,14,174,161,230,206,6,3,1,2,2,1,382,353,147,145,220,194,3,1,0,0,1,0,11,13,158,158,227,203,5,3,1,2,2,1,19,5,15,2,3,2,0,0,0,0,0,0,1,1,16,3,3,3,1,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,2,763,392,371,160,166,223,201,4,0,0,0,1,0,4,4,163,170,226,203,6,1,0,0,1,1,385,364,155,163,222,198,4,0,0,0,0,0,4,3,158,166,225,200,6,1,0,0,0,0,7,7,5,3,1,3,0,0,0,0,1,0,0,1,5,4,1,3,0,0,0,0,1,1 -050,01,035,Alabama,Conecuh County,4,3,852,417,435,173,162,235,264,2,0,0,0,0,0,7,9,180,171,239,270,5,3,0,2,0,0,404,431,167,160,229,262,2,0,0,0,0,0,6,9,173,169,233,268,4,3,0,2,0,0,13,4,6,2,6,2,0,0,0,0,0,0,1,0,7,2,6,2,1,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,4,919,496,423,200,153,284,251,3,4,0,0,0,0,9,15,208,166,291,257,5,11,0,4,1,0,486,418,197,152,281,248,2,4,0,0,0,0,6,14,202,164,286,253,3,11,0,4,1,0,10,5,3,1,3,3,1,0,0,0,0,0,3,1,6,2,5,4,2,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,5,737,393,344,182,141,207,196,0,1,0,1,0,0,4,5,186,144,207,200,3,2,1,3,0,0,377,335,175,135,199,194,0,1,0,1,0,0,3,4,178,137,199,198,2,2,1,2,0,0,16,9,7,6,8,2,0,0,0,0,0,0,1,1,8,7,8,2,1,0,0,1,0,0 -050,01,035,Alabama,Conecuh County,4,6,622,315,307,151,133,156,165,0,1,4,3,0,0,4,5,155,138,158,169,1,2,5,3,1,0,300,299,139,130,154,163,0,1,4,3,0,0,3,2,142,132,155,165,1,1,5,3,1,0,15,8,12,3,2,2,0,0,0,0,0,0,1,3,13,6,3,4,0,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,7,701,314,387,158,171,150,211,1,1,0,1,0,0,5,3,163,174,152,211,4,4,0,1,0,0,300,379,150,165,148,210,1,1,0,1,0,0,1,2,151,167,148,210,2,3,0,1,0,0,14,8,8,6,2,1,0,0,0,0,0,0,4,1,12,7,4,1,2,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,8,702,313,389,170,187,138,199,3,0,0,1,0,0,2,2,172,189,138,200,5,1,0,1,0,0,309,382,169,183,135,198,3,0,0,1,0,0,2,0,171,183,135,198,5,0,0,1,0,0,4,7,1,4,3,1,0,0,0,0,0,0,0,2,1,6,3,2,0,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,9,766,371,395,218,175,148,214,2,1,0,3,0,0,3,2,220,177,149,215,4,2,1,3,0,0,366,393,215,175,147,212,2,1,0,3,0,0,2,2,216,177,148,213,3,2,1,3,0,0,5,2,3,0,1,2,0,0,0,0,0,0,1,0,4,0,1,2,1,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,10,916,418,498,236,253,178,233,1,5,0,1,0,1,3,5,239,257,180,237,2,6,0,2,0,1,416,492,236,251,176,229,1,5,0,1,0,1,3,5,239,255,178,233,2,6,0,2,0,1,2,6,0,2,2,4,0,0,0,0,0,0,0,0,0,2,2,4,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,11,1028,507,521,291,239,210,276,2,2,0,1,0,0,4,3,295,241,211,277,6,3,0,2,0,1,499,520,289,238,205,276,2,2,0,1,0,0,3,3,292,240,206,277,5,3,0,2,0,1,8,1,2,1,5,0,0,0,0,0,0,0,1,0,3,1,5,0,1,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,12,1012,487,525,301,275,181,243,3,2,0,0,0,0,2,5,303,278,181,245,4,6,1,1,0,0,486,523,300,273,181,243,3,2,0,0,0,0,2,5,302,276,181,245,4,6,1,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,13,980,491,489,290,274,196,209,3,3,0,0,0,0,2,3,292,277,196,209,5,6,0,0,0,0,491,486,290,273,196,207,3,3,0,0,0,0,2,3,292,276,196,207,5,6,0,0,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,14,808,393,415,241,251,146,162,1,1,0,1,0,0,5,0,246,251,146,162,6,1,0,1,0,0,392,414,241,250,145,162,1,1,0,1,0,0,5,0,246,250,145,162,6,1,0,1,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,15,590,267,323,192,208,73,111,0,0,0,0,0,0,2,4,193,212,73,111,1,3,1,1,1,0,265,321,191,207,72,110,0,0,0,0,0,0,2,4,192,211,72,110,1,3,1,1,1,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,16,412,172,240,123,161,46,77,1,0,0,1,0,0,2,1,124,162,47,77,2,1,0,1,1,0,172,239,123,160,46,77,1,0,0,1,0,0,2,1,124,161,47,77,2,1,0,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,17,338,130,208,92,139,37,67,1,1,0,0,0,0,0,1,92,140,37,67,1,2,0,0,0,0,130,208,92,139,37,67,1,1,0,0,0,0,0,1,92,140,37,67,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,4,18,289,105,184,79,106,25,78,0,0,0,0,0,0,1,0,80,106,26,78,1,0,0,0,0,0,105,184,79,106,25,78,0,0,0,0,0,0,1,0,80,106,26,78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,0,13043,6283,6760,3368,3366,2798,3277,28,23,5,13,1,1,83,80,3444,3438,2837,3316,67,56,11,27,7,6,6162,6680,3308,3325,2755,3251,27,23,2,12,0,1,70,68,3371,3386,2791,3283,56,52,8,24,6,5,121,80,60,41,43,26,1,0,3,1,1,0,13,12,73,52,46,33,11,4,3,3,1,1 -050,01,035,Alabama,Conecuh County,5,1,729,366,363,145,152,201,200,3,1,0,0,0,0,17,10,161,161,214,207,4,1,2,4,2,0,352,354,136,147,196,197,3,1,0,0,0,0,17,9,152,155,209,203,4,1,2,4,2,0,14,9,9,5,5,3,0,0,0,0,0,0,0,1,9,6,5,4,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,2,782,393,389,169,179,212,200,4,1,2,1,1,0,5,8,172,186,215,204,8,2,2,2,1,3,380,383,162,176,210,199,4,1,0,0,0,0,4,7,164,182,213,202,7,2,0,1,0,3,13,6,7,3,2,1,0,0,2,1,1,0,1,1,8,4,2,2,1,0,2,1,1,0 -050,01,035,Alabama,Conecuh County,5,3,842,409,433,163,165,239,261,1,0,1,0,0,0,5,7,168,171,242,266,2,1,1,2,1,0,401,428,158,164,237,257,1,0,0,0,0,0,5,7,163,170,240,262,2,1,0,2,1,0,8,5,5,1,2,4,0,0,1,0,0,0,0,0,5,1,2,4,0,0,1,0,0,0 -050,01,035,Alabama,Conecuh County,5,4,863,461,402,183,151,263,234,1,3,0,0,0,0,14,14,197,165,268,240,6,9,3,4,1,0,447,396,180,149,256,232,0,3,0,0,0,0,11,12,191,161,261,237,2,8,3,4,1,0,14,6,3,2,7,2,1,0,0,0,0,0,3,2,6,4,7,3,4,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,5,802,417,385,199,163,212,214,2,1,0,0,0,0,4,7,203,168,212,218,6,6,0,1,0,0,400,375,191,156,205,212,2,1,0,0,0,0,2,6,193,160,205,216,4,5,0,0,0,0,17,10,8,7,7,2,0,0,0,0,0,0,2,1,10,8,7,2,2,1,0,1,0,0 -050,01,035,Alabama,Conecuh County,5,6,608,302,306,142,138,155,160,0,2,2,2,0,0,3,4,145,142,156,163,2,3,2,2,0,0,288,299,132,136,152,157,0,2,2,2,0,0,2,2,134,138,153,159,1,2,2,2,0,0,14,7,10,2,3,3,0,0,0,0,0,0,1,2,11,4,3,4,1,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,7,665,316,349,162,153,147,189,0,1,0,2,0,0,7,4,169,157,150,191,4,3,0,2,0,0,303,338,154,145,145,188,0,1,0,2,0,0,4,2,158,147,146,188,3,3,0,2,0,0,13,11,8,8,2,1,0,0,0,0,0,0,3,2,11,10,4,3,1,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,8,687,309,378,171,191,133,183,2,0,0,0,0,0,3,4,174,194,134,185,4,1,0,1,0,1,302,370,168,187,130,182,2,0,0,0,0,0,2,1,170,188,131,183,3,0,0,0,0,0,7,8,3,4,3,1,0,0,0,0,0,0,1,3,4,6,3,2,1,1,0,1,0,1 -050,01,035,Alabama,Conecuh County,5,9,772,371,401,221,179,144,215,3,1,0,4,0,0,3,2,224,181,146,215,4,3,0,4,0,0,366,399,219,178,142,214,3,1,0,4,0,0,2,2,221,180,143,214,4,3,0,4,0,0,5,2,2,1,2,1,0,0,0,0,0,0,1,0,3,1,3,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,10,842,386,456,215,235,167,213,1,2,0,1,0,1,3,4,217,239,169,213,3,5,0,2,0,1,384,449,214,233,166,208,1,2,0,1,0,1,3,4,216,237,168,208,3,5,0,2,0,1,2,7,1,2,1,5,0,0,0,0,0,0,0,0,1,2,1,5,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,11,988,482,506,271,240,206,257,2,4,0,1,0,0,3,4,273,244,208,259,4,6,0,1,0,0,474,505,269,239,201,257,2,4,0,1,0,0,2,4,270,243,203,259,3,6,0,1,0,0,8,1,2,1,5,0,0,0,0,0,0,0,1,0,3,1,5,0,1,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,12,1038,499,539,318,285,175,248,2,2,0,0,0,0,4,4,322,289,175,248,4,6,1,0,1,0,497,537,317,283,174,248,2,2,0,0,0,0,4,4,321,287,174,248,4,6,1,0,1,0,2,2,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,13,903,451,452,258,245,187,201,4,4,0,0,0,0,2,2,260,247,187,203,6,4,0,0,0,0,451,451,258,245,187,200,4,4,0,0,0,0,2,2,260,247,187,202,6,4,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,14,852,416,436,253,266,158,168,1,1,0,1,0,0,4,0,257,266,159,168,4,1,0,1,0,0,415,434,253,265,157,167,1,1,0,1,0,0,4,0,257,265,158,167,4,1,0,1,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,15,607,273,334,188,215,83,116,0,0,0,0,0,0,2,3,189,217,85,117,0,2,0,0,1,1,272,332,188,214,82,115,0,0,0,0,0,0,2,3,189,216,84,116,0,2,0,0,1,1,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,16,425,189,236,136,157,50,76,0,0,0,1,0,0,3,2,138,159,51,76,3,2,0,1,0,0,187,235,135,156,49,76,0,0,0,1,0,0,3,2,137,158,50,76,3,2,0,1,0,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,17,318,132,186,90,126,40,59,2,0,0,0,0,0,0,1,90,126,40,60,2,1,0,0,0,0,132,186,90,126,40,59,2,0,0,0,0,0,0,1,90,126,40,60,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,5,18,320,111,209,84,126,26,83,0,0,0,0,0,0,1,0,85,126,26,83,1,0,0,0,0,0,111,209,84,126,26,83,0,0,0,0,0,0,1,0,85,126,26,83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,0,12908,6204,6704,3345,3353,2739,3226,28,25,8,15,1,2,83,83,3421,3430,2783,3266,64,60,22,30,3,4,6080,6615,3272,3304,2705,3199,27,25,7,14,0,2,69,71,3335,3370,2741,3235,58,54,20,27,1,3,124,89,73,49,34,27,1,0,1,1,1,0,14,12,86,60,42,31,6,6,2,3,2,1 -050,01,035,Alabama,Conecuh County,6,1,732,361,371,150,160,192,197,3,1,1,0,0,0,15,13,164,173,205,207,4,3,3,1,0,0,343,359,133,151,191,195,3,1,1,0,0,0,15,12,147,163,204,204,4,3,3,1,0,0,18,12,17,9,1,2,0,0,0,0,0,0,0,1,17,10,1,3,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,2,782,408,374,181,166,212,197,6,1,1,1,1,0,7,9,188,174,218,204,7,3,1,2,1,0,394,366,172,162,211,195,6,1,0,0,0,0,5,8,177,169,215,201,7,3,0,1,0,0,14,8,9,4,1,2,0,0,1,1,1,0,2,1,11,5,3,3,0,0,1,1,1,0 -050,01,035,Alabama,Conecuh County,6,3,820,402,418,163,158,232,256,1,0,0,0,0,0,6,4,167,161,236,257,3,1,1,3,1,0,397,413,159,157,231,252,1,0,0,0,0,0,6,4,163,160,235,253,3,1,1,3,1,0,5,5,4,1,1,4,0,0,0,0,0,0,0,0,4,1,1,4,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,4,789,404,385,181,154,215,214,0,4,0,0,0,0,8,13,187,166,222,220,3,9,0,4,0,0,391,379,177,151,208,213,0,4,0,0,0,0,6,11,181,161,213,219,3,8,0,3,0,0,13,6,4,3,7,1,0,0,0,0,0,0,2,2,6,5,9,1,0,1,0,1,0,0 -050,01,035,Alabama,Conecuh County,6,5,823,429,394,191,165,229,219,1,1,0,0,0,0,8,9,199,171,234,226,5,4,2,2,0,1,412,383,181,159,226,215,0,1,0,0,0,0,5,8,186,165,229,222,3,4,2,1,0,0,17,11,10,6,3,4,1,0,0,0,0,0,3,1,13,6,5,4,2,0,0,1,0,1 -050,01,035,Alabama,Conecuh County,6,6,623,305,318,149,149,148,162,0,1,4,2,0,0,4,4,153,153,149,163,2,3,5,3,0,0,293,307,140,143,146,159,0,1,4,2,0,0,3,2,143,145,147,160,1,1,5,3,0,0,12,11,9,6,2,3,0,0,0,0,0,0,1,2,10,8,2,3,1,2,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,7,645,309,336,153,147,151,181,0,2,0,2,0,0,5,4,157,151,154,182,1,4,2,3,0,0,296,328,144,141,150,181,0,2,0,2,0,0,2,2,145,143,151,181,1,3,1,3,0,0,13,8,9,6,1,0,0,0,0,0,0,0,3,2,12,8,3,1,0,1,1,0,0,0 -050,01,035,Alabama,Conecuh County,6,8,685,312,373,169,183,135,187,2,0,1,0,0,0,5,3,173,186,137,189,5,1,2,0,1,0,305,364,168,178,130,185,2,0,1,0,0,0,4,1,172,179,132,186,4,0,2,0,0,0,7,9,1,5,5,2,0,0,0,0,0,0,1,2,1,7,5,3,1,1,0,0,1,0 -050,01,035,Alabama,Conecuh County,6,9,758,360,398,219,194,136,197,3,1,0,2,0,1,2,3,221,197,136,197,5,4,0,2,0,1,350,395,213,193,133,196,3,1,0,2,0,1,1,2,214,195,133,196,4,3,0,2,0,1,10,3,6,1,3,1,0,0,0,0,0,0,1,1,7,2,3,1,1,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,10,808,374,434,210,210,160,215,1,3,0,3,0,0,3,3,213,213,160,215,4,5,0,4,0,0,372,429,209,209,159,211,1,3,0,3,0,0,3,3,212,212,159,211,4,5,0,4,0,0,2,5,1,1,1,4,0,0,0,0,0,0,0,0,1,1,1,4,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,11,964,467,497,261,248,200,239,2,4,0,1,0,1,4,4,265,252,202,241,4,5,1,1,0,2,461,495,260,247,196,238,2,4,0,1,0,1,3,4,263,251,198,240,3,5,1,1,0,2,6,2,1,1,4,1,0,0,0,0,0,0,1,0,2,1,4,1,1,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,12,1031,507,524,314,267,187,251,2,1,0,2,0,0,4,3,318,270,188,251,4,4,1,2,0,0,504,522,313,265,185,251,2,1,0,2,0,0,4,3,317,268,186,251,4,4,1,2,0,0,3,2,1,2,2,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,13,872,416,456,244,247,166,200,3,5,1,0,0,0,2,4,246,251,166,201,4,8,2,0,0,0,416,454,244,246,166,199,3,5,1,0,0,0,2,4,246,250,166,200,4,8,2,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,14,858,416,442,253,265,159,175,1,1,0,0,0,0,3,1,256,266,159,175,4,2,0,0,0,0,415,440,253,264,158,174,1,1,0,0,0,0,3,1,256,265,158,174,4,2,0,0,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,15,645,296,349,192,226,101,121,1,0,0,1,0,0,2,1,194,227,101,122,3,0,1,1,0,0,295,348,192,225,100,121,1,0,0,1,0,0,2,1,194,226,100,122,3,0,1,1,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,16,452,202,250,142,164,56,82,0,0,0,0,0,0,4,4,146,168,56,83,3,3,1,1,0,0,200,248,141,163,55,81,0,0,0,0,0,0,4,4,145,167,55,82,3,3,1,1,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,17,299,126,173,84,118,40,54,2,0,0,1,0,0,0,0,84,118,40,54,2,0,0,1,0,0,126,173,84,118,40,54,2,0,0,1,0,0,0,0,84,118,40,54,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,6,18,322,110,212,89,132,20,79,0,0,0,0,0,0,1,1,90,133,20,79,1,1,0,0,0,0,110,212,89,132,20,79,0,0,0,0,0,0,1,1,90,133,20,79,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,0,12674,6100,6574,3267,3301,2709,3155,29,24,6,14,1,2,88,78,3344,3369,2754,3202,69,48,20,28,4,9,5976,6491,3194,3255,2673,3128,29,24,5,14,0,2,75,68,3258,3314,2714,3169,61,45,18,28,3,6,124,83,73,46,36,27,0,0,1,0,1,0,13,10,86,55,40,33,8,3,2,0,1,3 -050,01,035,Alabama,Conecuh County,7,1,724,359,365,156,158,180,189,3,1,2,0,0,0,18,17,172,174,194,204,6,5,5,0,1,2,339,350,137,144,179,188,3,1,2,0,0,0,18,17,153,160,193,203,6,5,5,0,1,2,20,15,19,14,1,1,0,0,0,0,0,0,0,0,19,14,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,2,725,367,358,143,161,211,189,5,1,0,0,1,0,7,7,150,168,216,193,6,1,1,2,1,1,358,352,138,161,209,185,5,1,0,0,0,0,6,5,144,166,213,188,6,1,1,2,0,0,9,6,5,0,2,4,0,0,0,0,1,0,1,2,6,2,3,5,0,0,0,0,1,1 -050,01,035,Alabama,Conecuh County,7,3,787,395,392,152,155,235,233,2,1,1,0,0,0,5,3,157,158,239,234,2,1,2,2,0,0,388,384,147,151,234,229,2,1,0,0,0,0,5,3,152,154,238,230,2,1,1,2,0,0,7,8,5,4,1,4,0,0,1,0,0,0,0,0,5,4,1,4,0,0,1,0,0,0 -050,01,035,Alabama,Conecuh County,7,4,756,390,366,182,143,201,208,0,3,0,0,0,0,7,12,188,152,205,216,4,6,0,2,0,2,379,362,178,141,195,208,0,3,0,0,0,0,6,10,183,148,198,215,4,6,0,2,0,1,11,4,4,2,6,0,0,0,0,0,0,0,1,2,5,4,7,1,0,0,0,0,0,1 -050,01,035,Alabama,Conecuh County,7,5,794,416,378,180,161,227,208,1,1,0,0,0,0,8,8,186,169,231,212,5,2,2,2,0,1,406,371,175,158,225,205,1,1,0,0,0,0,5,7,178,165,229,209,3,1,1,2,0,1,10,7,5,3,2,3,0,0,0,0,0,0,3,1,8,4,2,3,2,1,1,0,0,0 -050,01,035,Alabama,Conecuh County,7,6,624,322,302,162,141,151,156,0,1,1,2,0,0,8,2,168,142,156,157,4,2,3,2,1,1,306,293,152,136,147,153,0,1,1,2,0,0,6,1,156,137,151,153,3,2,3,2,1,0,16,9,10,5,4,3,0,0,0,0,0,0,2,1,12,5,5,4,1,0,0,0,0,1 -050,01,035,Alabama,Conecuh County,7,7,634,306,328,152,150,150,171,0,1,0,2,0,0,4,4,156,154,150,173,3,4,1,2,0,0,291,320,141,146,148,170,0,1,0,2,0,0,2,1,143,147,148,170,1,2,1,2,0,0,15,8,11,4,2,1,0,0,0,0,0,0,2,3,13,7,2,3,2,2,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,8,659,287,372,149,177,128,192,3,1,1,0,0,0,6,2,155,179,130,194,7,1,1,0,0,0,280,366,147,173,125,190,3,1,1,0,0,0,4,2,151,175,127,192,5,1,1,0,0,0,7,6,2,4,3,2,0,0,0,0,0,0,2,0,4,4,3,2,2,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,9,725,329,396,207,191,118,198,2,1,0,2,0,1,2,3,208,194,120,199,2,2,1,3,0,1,318,392,202,189,113,197,2,1,0,2,0,1,1,2,202,191,114,197,2,2,1,3,0,1,11,4,5,2,5,1,0,0,0,0,0,0,1,1,6,3,6,2,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,10,781,383,398,211,183,167,208,2,2,0,3,0,0,3,2,214,185,168,209,3,3,1,3,0,0,378,395,207,182,166,206,2,2,0,3,0,0,3,2,210,184,167,207,3,3,1,3,0,0,5,3,4,1,1,2,0,0,0,0,0,0,0,0,4,1,1,2,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,11,944,449,495,250,248,195,237,1,5,0,1,0,1,3,3,253,250,196,239,2,6,0,2,1,1,444,491,249,247,191,234,1,5,0,1,0,1,3,3,252,249,192,236,2,6,0,2,1,1,5,4,1,1,4,3,0,0,0,0,0,0,0,0,1,1,4,3,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,12,1008,511,497,313,251,191,243,3,0,0,0,0,0,4,3,316,252,192,245,7,2,0,1,0,0,507,495,312,249,189,243,3,0,0,0,0,0,3,3,314,250,190,245,6,2,0,1,0,0,4,2,1,2,2,0,0,0,0,0,0,0,1,0,2,2,2,0,1,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,13,874,405,469,239,258,160,201,2,4,1,2,0,0,3,4,242,262,160,201,5,7,1,3,0,0,405,467,239,257,160,200,2,4,1,2,0,0,3,4,242,261,160,200,5,7,1,3,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,14,910,448,462,276,276,167,182,2,2,0,0,0,0,3,2,279,278,167,183,5,3,0,0,0,0,447,460,276,275,166,181,2,2,0,0,0,0,3,2,279,277,166,182,5,3,0,0,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,15,646,294,352,181,219,110,131,1,0,0,1,0,0,2,1,182,219,111,132,3,0,0,2,0,0,293,351,181,218,109,131,1,0,0,1,0,0,2,1,182,218,110,132,3,0,0,2,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,16,470,212,258,148,178,60,77,0,0,0,0,0,0,4,3,152,181,60,78,2,2,2,0,0,0,210,256,147,177,59,76,0,0,0,0,0,0,4,3,151,180,59,77,2,2,2,0,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,17,287,115,172,78,109,35,61,2,0,0,1,0,0,0,1,78,110,35,61,2,0,0,2,0,0,115,172,78,109,35,61,2,0,0,1,0,0,0,1,78,110,35,61,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,7,18,326,112,214,88,142,23,71,0,0,0,0,0,0,1,1,88,142,24,72,1,1,0,0,0,0,112,214,88,142,23,71,0,0,0,0,0,0,1,1,88,142,24,72,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,0,12677,6096,6581,3231,3261,2747,3205,28,22,8,15,2,3,80,75,3300,3331,2790,3248,63,50,21,22,6,6,5959,6490,3145,3210,2711,3175,28,22,7,15,1,3,67,65,3202,3271,2748,3210,56,46,19,22,4,6,137,91,86,51,36,30,0,0,1,0,1,0,13,10,98,60,42,38,7,4,2,0,2,0 -050,01,035,Alabama,Conecuh County,8,1,761,363,398,159,168,187,211,2,0,1,0,0,1,14,18,173,185,195,224,5,4,3,2,1,1,345,383,142,154,186,210,2,0,1,0,0,1,14,18,156,171,194,223,5,4,3,2,1,1,18,15,17,14,1,1,0,0,0,0,0,0,0,0,17,14,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,2,745,378,367,150,164,217,197,3,1,0,0,0,0,8,5,158,169,223,201,5,1,0,0,0,1,364,359,139,162,215,192,3,1,0,0,0,0,7,4,146,166,220,195,5,1,0,0,0,1,14,8,11,2,2,5,0,0,0,0,0,0,1,1,12,3,3,6,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,3,748,368,380,151,163,209,213,3,0,1,0,1,0,3,4,153,167,211,217,5,0,1,0,1,0,361,371,147,158,208,210,3,0,0,0,0,0,3,3,149,161,210,213,5,0,0,0,0,0,7,9,4,5,1,3,0,0,1,0,1,0,0,1,4,6,1,4,0,0,1,0,1,0 -050,01,035,Alabama,Conecuh County,8,4,754,401,353,172,131,221,212,0,1,1,0,0,0,7,9,178,139,226,218,3,4,2,1,0,0,388,345,166,126,215,211,0,1,1,0,0,0,6,7,171,133,220,215,2,3,2,1,0,0,13,8,6,5,6,1,0,0,0,0,0,0,1,2,7,6,6,3,1,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,5,770,406,364,175,134,218,222,3,3,0,0,1,0,9,5,181,138,225,223,5,6,3,1,2,1,395,361,169,134,216,219,3,3,0,0,1,0,6,5,173,138,220,220,5,6,2,1,1,1,11,3,6,0,2,3,0,0,0,0,0,0,3,0,8,0,5,3,0,0,1,0,1,0 -050,01,035,Alabama,Conecuh County,8,6,647,331,316,170,148,158,162,0,1,1,2,0,0,2,3,172,151,159,164,1,2,1,2,0,0,315,304,159,141,154,159,0,1,1,2,0,0,1,1,160,142,155,160,0,1,1,2,0,0,16,12,11,7,4,3,0,0,0,0,0,0,1,2,12,9,4,4,1,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,7,638,304,334,137,162,161,166,0,1,1,2,0,0,5,3,141,165,165,168,1,2,2,3,0,0,289,327,126,158,159,165,0,1,1,2,0,0,3,1,128,159,161,165,1,1,2,3,0,0,15,7,11,4,2,1,0,0,0,0,0,0,2,2,13,6,4,3,0,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,8,649,295,354,140,161,147,189,1,1,0,0,0,0,7,3,146,164,148,191,7,2,1,0,0,0,285,347,135,158,145,186,1,1,0,0,0,0,4,2,138,160,146,187,4,2,1,0,0,0,10,7,5,3,2,3,0,0,0,0,0,0,3,1,8,4,2,4,3,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,9,729,332,397,193,190,133,202,3,0,1,2,0,1,2,2,195,192,134,202,4,2,1,2,0,1,317,391,185,186,127,201,3,0,1,2,0,1,1,1,186,187,128,201,3,1,1,2,0,1,15,6,8,4,6,1,0,0,0,0,0,0,1,1,9,5,6,1,1,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,10,755,356,399,212,181,141,210,1,2,0,4,0,0,2,2,213,182,142,212,1,3,2,4,0,0,351,397,208,180,140,209,1,2,0,4,0,0,2,2,209,181,141,211,1,3,2,4,0,0,5,2,4,1,1,1,0,0,0,0,0,0,0,0,4,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,11,897,432,465,247,231,180,223,1,6,1,1,0,1,3,3,250,234,180,225,3,7,3,1,1,1,429,459,247,230,177,218,1,6,1,1,0,1,3,3,250,233,177,220,3,7,3,1,1,1,3,6,0,1,3,5,0,0,0,0,0,0,0,0,0,1,3,5,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,12,999,498,501,286,245,206,253,3,0,0,0,0,0,3,3,289,248,207,254,5,2,0,0,0,0,493,499,285,243,203,253,3,0,0,0,0,0,2,3,287,246,204,254,4,2,0,0,0,0,5,2,1,2,3,0,0,0,0,0,0,0,1,0,2,2,3,0,1,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,13,892,415,477,256,259,152,209,2,2,1,1,0,0,4,6,258,265,154,210,5,6,2,2,0,0,414,477,255,259,152,209,2,2,1,1,0,0,4,6,257,265,154,210,5,6,2,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,14,896,448,448,269,261,174,181,3,3,0,1,0,0,2,2,270,262,175,182,5,4,0,1,0,1,448,445,269,260,174,179,3,3,0,1,0,0,2,2,270,261,175,180,5,4,0,1,0,1,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,15,692,317,375,194,233,118,140,1,1,0,1,0,0,4,0,198,233,118,140,5,1,0,1,0,0,316,375,194,233,117,140,1,1,0,1,0,0,4,0,198,233,117,140,5,1,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,16,472,209,263,147,178,59,80,0,0,0,0,0,0,3,5,150,183,61,81,0,3,0,1,1,0,206,260,146,176,57,79,0,0,0,0,0,0,3,5,149,181,59,80,0,3,0,1,1,0,3,3,1,2,2,1,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,17,298,120,178,80,116,37,60,2,0,0,1,0,0,1,1,81,117,37,60,3,1,0,1,0,0,120,178,80,116,37,60,2,0,0,1,0,0,1,1,81,117,37,60,3,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,8,18,335,123,212,93,136,29,75,0,0,0,0,0,0,1,1,94,137,30,76,0,0,0,0,0,0,123,212,93,136,29,75,0,0,0,0,0,0,1,1,94,137,30,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,0,12495,5980,6515,3153,3209,2696,3192,32,17,8,16,2,3,89,78,3233,3280,2752,3242,61,45,23,24,4,3,5843,6410,3066,3142,2661,3164,32,17,7,16,1,3,76,68,3133,3205,2706,3205,59,44,22,22,2,3,137,105,87,67,35,28,0,0,1,0,1,0,13,10,100,75,46,37,2,1,1,2,2,0 -050,01,035,Alabama,Conecuh County,9,1,736,340,396,149,168,178,208,2,0,1,1,0,1,10,18,159,185,184,221,4,6,3,2,0,1,328,381,138,154,177,207,2,0,1,1,0,1,10,18,148,171,183,220,4,6,3,2,0,1,12,15,11,14,1,1,0,0,0,0,0,0,0,0,11,14,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,2,717,364,353,143,157,201,193,3,0,0,0,0,0,17,3,160,160,213,194,4,1,4,1,0,0,346,343,128,151,199,190,3,0,0,0,0,0,16,2,144,153,210,190,4,1,4,1,0,0,18,10,15,6,2,3,0,0,0,0,0,0,1,1,16,7,3,4,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,3,736,369,367,157,160,200,202,3,0,1,0,1,0,7,5,163,165,207,207,4,0,2,0,1,0,360,355,151,152,199,199,3,0,0,0,0,0,7,4,157,156,206,203,4,0,1,0,0,0,9,12,6,8,1,3,0,0,1,0,1,0,0,1,6,9,1,4,0,0,1,0,1,0 -050,01,035,Alabama,Conecuh County,9,4,740,375,365,156,133,210,223,0,0,0,0,0,0,9,9,163,140,216,229,3,4,2,1,1,0,361,357,148,128,205,221,0,0,0,0,0,0,8,8,154,135,210,226,3,3,2,1,1,0,14,8,8,5,5,2,0,0,0,0,0,0,1,1,9,5,6,3,0,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,5,734,397,337,166,124,221,202,3,3,1,0,1,0,5,8,171,130,225,209,3,5,2,1,1,0,385,330,160,122,218,198,3,3,1,0,1,0,2,7,162,127,219,204,3,5,2,1,1,0,12,7,6,2,3,4,0,0,0,0,0,0,3,1,9,3,6,5,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,6,709,349,360,173,164,173,193,0,0,0,1,0,0,3,2,175,166,175,194,3,1,0,1,0,0,336,351,165,158,169,191,0,0,0,1,0,0,2,1,166,159,170,191,2,1,0,1,0,0,13,9,8,6,4,2,0,0,0,0,0,0,1,1,9,7,5,3,1,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,7,599,301,298,135,134,159,156,0,0,2,2,0,0,5,6,140,140,162,160,1,1,2,3,1,0,284,290,121,131,157,154,0,0,2,2,0,0,4,3,125,134,160,156,1,1,2,2,0,0,17,8,14,3,2,2,0,0,0,0,0,0,1,3,15,6,2,4,0,0,0,1,1,0 -050,01,035,Alabama,Conecuh County,9,8,658,289,369,144,174,137,190,1,1,0,1,0,0,7,3,151,177,141,193,4,1,0,1,0,0,278,359,139,167,135,188,1,1,0,1,0,0,3,2,142,169,136,190,3,1,0,1,0,0,11,10,5,7,2,2,0,0,0,0,0,0,4,1,9,8,5,3,1,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,9,686,306,380,165,182,134,195,5,0,0,1,0,1,2,1,167,182,135,196,5,0,1,2,0,1,296,372,160,176,129,194,5,0,0,1,0,1,2,0,162,176,130,194,5,0,1,1,0,1,10,8,5,6,5,1,0,0,0,0,0,0,0,1,5,6,5,2,0,0,0,1,0,0 -050,01,035,Alabama,Conecuh County,9,10,737,358,379,210,162,144,209,1,2,0,4,0,0,3,2,213,164,146,210,1,2,1,5,0,0,352,376,206,161,143,207,1,2,0,4,0,0,2,2,208,163,144,208,1,2,1,5,0,0,6,3,4,1,1,2,0,0,0,0,0,0,1,0,5,1,2,2,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,11,852,396,456,226,237,166,209,1,5,1,1,0,1,2,3,228,240,168,210,1,7,1,1,0,1,392,451,224,235,164,206,1,5,1,1,0,1,2,3,226,238,166,207,1,7,1,1,0,1,4,5,2,2,2,3,0,0,0,0,0,0,0,0,2,2,2,3,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,12,967,477,490,272,239,199,245,2,1,0,1,0,0,4,4,276,243,200,247,4,3,1,1,0,0,470,488,271,237,194,245,2,1,0,1,0,0,3,4,274,241,194,247,4,3,1,1,0,0,7,2,1,2,5,0,0,0,0,0,0,0,1,0,2,2,6,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,13,925,431,494,279,260,145,227,3,2,1,1,0,0,3,4,282,264,145,229,6,4,1,1,0,0,430,492,278,258,145,227,3,2,1,1,0,0,3,4,281,262,145,229,6,4,1,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,14,867,439,428,256,254,177,169,4,2,0,1,0,0,2,2,256,256,179,170,6,3,0,1,0,0,439,426,256,254,177,167,4,2,0,1,0,0,2,2,256,256,179,168,6,3,0,1,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,15,712,337,375,198,226,132,146,1,1,1,1,0,0,5,1,202,227,134,146,6,2,1,1,0,0,336,374,198,225,131,146,1,1,1,1,0,0,5,1,202,226,133,146,6,2,1,1,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,16,479,210,269,152,178,56,86,0,0,0,0,0,0,2,5,153,183,57,87,1,3,1,1,0,0,208,267,151,177,55,85,0,0,0,0,0,0,2,5,152,182,56,86,1,3,1,1,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,17,313,121,192,86,125,31,65,2,0,0,1,0,0,2,1,88,126,32,65,3,1,0,1,0,0,121,191,86,124,31,65,2,0,0,1,0,0,2,1,88,125,32,65,3,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,9,18,328,121,207,86,132,33,74,1,0,0,0,0,0,1,1,86,132,33,75,2,1,1,0,0,0,121,207,86,132,33,74,1,0,0,0,0,0,1,1,86,132,33,75,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,0,12431,5957,6474,3156,3197,2666,3147,35,25,10,19,2,3,88,83,3235,3270,2712,3186,72,61,23,36,9,5,5824,6362,3075,3126,2630,3119,34,25,9,17,1,3,75,72,3142,3188,2669,3151,64,58,21,33,7,5,133,112,81,71,36,28,1,0,1,2,1,0,13,11,93,82,43,35,8,3,2,3,2,0 -050,01,035,Alabama,Conecuh County,10,1,713,332,381,166,178,158,176,1,2,1,3,0,1,6,21,172,197,161,189,2,7,3,7,1,2,319,364,155,164,156,175,1,2,1,1,0,1,6,21,161,183,159,188,2,7,3,5,1,2,13,17,11,14,2,1,0,0,0,2,0,0,0,0,11,14,2,1,0,0,0,2,0,0 -050,01,035,Alabama,Conecuh County,10,2,700,361,339,145,146,198,185,3,2,0,1,0,0,15,5,158,151,209,186,6,4,2,3,2,0,348,326,134,137,196,182,3,2,0,1,0,0,15,4,147,141,207,183,6,4,2,2,2,0,13,13,11,9,2,3,0,0,0,0,0,0,0,1,11,10,2,3,0,0,0,1,0,0 -050,01,035,Alabama,Conecuh County,10,3,730,374,356,153,161,202,187,5,1,2,0,1,0,11,7,163,168,209,190,9,4,3,1,1,0,366,344,149,152,201,186,5,1,1,0,0,0,10,5,158,157,207,188,9,3,2,1,0,0,8,12,4,9,1,1,0,0,1,0,1,0,1,2,5,11,2,2,0,1,1,0,1,0 -050,01,035,Alabama,Conecuh County,10,4,708,360,348,142,124,212,219,0,0,0,0,0,0,6,5,147,127,216,220,2,2,0,4,1,0,355,341,137,121,212,215,0,0,0,0,0,0,6,5,142,124,216,216,2,2,0,4,1,0,5,7,5,3,0,4,0,0,0,0,0,0,0,0,5,3,0,4,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,5,756,390,366,173,157,206,196,2,2,1,0,1,0,7,11,179,165,212,202,4,7,1,2,2,1,371,358,166,154,198,193,1,2,1,0,1,0,4,9,169,160,202,197,2,7,1,2,2,1,19,8,7,3,8,3,1,0,0,0,0,0,3,2,10,5,10,5,2,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,6,740,378,362,190,159,181,198,2,1,0,0,0,0,5,4,195,163,184,200,5,3,0,0,0,0,358,355,176,155,177,196,2,1,0,0,0,0,3,3,179,158,179,197,4,3,0,0,0,0,20,7,14,4,4,2,0,0,0,0,0,0,2,1,16,5,5,3,1,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,7,610,286,324,131,153,150,164,0,0,2,2,0,0,3,5,133,157,152,167,2,2,2,3,0,0,276,315,123,149,149,161,0,0,2,2,0,0,2,3,125,151,150,163,1,1,2,3,0,0,10,9,8,4,1,3,0,0,0,0,0,0,1,2,8,6,2,4,1,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,8,640,296,344,142,150,147,189,0,1,0,1,0,0,7,3,148,153,149,192,3,1,2,1,1,0,284,333,135,143,145,187,0,1,0,1,0,0,4,1,138,144,145,188,2,1,2,1,1,0,12,11,7,7,2,2,0,0,0,0,0,0,3,2,10,9,4,4,1,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,9,637,286,351,149,167,128,182,5,0,1,0,0,0,3,2,152,169,128,182,8,2,1,0,0,0,275,345,144,163,123,181,5,0,1,0,0,0,2,1,146,164,123,181,7,1,1,0,0,0,11,6,5,4,5,1,0,0,0,0,0,0,1,1,6,5,5,1,1,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,10,737,355,382,210,169,140,204,2,1,0,5,0,1,3,2,212,171,142,205,4,1,0,6,0,1,349,377,207,165,138,203,2,1,0,5,0,1,2,2,208,167,140,204,3,1,0,6,0,1,6,5,3,4,2,1,0,0,0,0,0,0,1,0,4,4,2,1,1,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,11,808,366,442,208,225,154,210,1,3,1,1,0,1,2,2,210,227,155,211,1,4,2,1,0,1,362,435,205,222,153,206,1,3,1,1,0,1,2,2,207,224,154,207,1,4,2,1,0,1,4,7,3,3,1,4,0,0,0,0,0,0,0,0,3,3,1,4,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,12,958,472,486,265,234,202,243,2,4,0,2,0,0,3,3,268,237,202,245,5,5,1,2,1,0,465,484,264,232,197,243,2,4,0,2,0,0,2,3,266,235,197,245,4,5,0,2,0,0,7,2,1,2,5,0,0,0,0,0,0,0,1,0,2,2,5,0,1,0,1,0,1,0 -050,01,035,Alabama,Conecuh County,10,13,959,452,507,294,263,150,238,2,3,1,1,0,0,5,2,299,265,152,238,5,5,1,1,0,0,450,505,293,261,149,238,2,3,1,1,0,0,5,2,298,263,151,238,5,5,1,1,0,0,2,2,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,14,805,397,408,226,234,164,167,5,4,0,0,0,0,2,3,228,235,164,169,6,7,1,0,0,0,397,407,226,234,164,166,5,4,0,0,0,0,2,3,228,235,164,168,6,7,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,15,767,372,395,227,235,138,156,2,1,1,2,0,0,4,1,230,236,140,156,4,2,2,2,0,0,371,393,227,234,137,155,2,1,1,2,0,0,4,1,230,235,139,155,4,2,2,2,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,16,497,216,281,149,185,65,92,0,0,0,0,0,0,2,4,151,189,66,93,1,3,0,0,0,0,216,279,149,184,65,91,0,0,0,0,0,0,2,4,151,188,66,92,1,3,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,17,324,136,188,98,122,34,63,1,0,0,1,0,0,3,2,101,124,34,63,3,2,1,2,0,0,134,187,97,121,33,63,1,0,0,1,0,0,3,2,100,123,33,63,3,2,1,2,0,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,10,18,342,128,214,88,135,37,78,2,0,0,0,0,0,1,1,89,136,37,78,2,0,1,1,0,0,128,214,88,135,37,78,2,0,0,0,0,0,1,1,89,136,37,78,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,0,12264,5867,6397,3143,3194,2589,3071,39,27,10,19,2,3,84,83,3220,3271,2628,3115,82,59,16,35,6,4,5720,6272,3055,3116,2550,3037,34,27,9,17,1,3,71,72,3120,3182,2581,3075,72,55,15,31,4,4,147,125,88,78,39,34,5,0,1,2,1,0,13,11,100,89,47,40,10,4,1,4,2,0 -050,01,035,Alabama,Conecuh County,11,1,669,322,347,161,177,149,153,5,2,0,3,0,1,7,11,168,188,153,160,7,5,1,4,0,1,305,329,150,164,147,150,1,2,0,1,0,1,7,11,157,175,151,157,3,5,1,2,0,1,17,18,11,13,2,3,4,0,0,2,0,0,0,0,11,13,2,3,4,0,0,2,0,0 -050,01,035,Alabama,Conecuh County,11,2,714,346,368,151,161,181,189,2,2,1,1,0,0,11,15,161,173,189,201,5,4,2,5,0,1,325,349,134,147,177,185,2,2,1,1,0,0,11,14,144,158,185,197,5,4,2,4,0,1,21,19,17,14,4,4,0,0,0,0,0,0,0,1,17,15,4,4,0,0,0,1,0,0 -050,01,035,Alabama,Conecuh County,11,3,725,381,344,167,151,193,186,6,1,2,0,1,0,12,6,178,157,201,189,9,2,3,2,2,0,369,334,159,145,192,184,6,1,1,0,0,0,11,4,169,149,199,187,9,1,2,1,1,0,12,10,8,6,1,2,0,0,1,0,1,0,1,2,9,8,2,2,0,1,1,1,1,0 -050,01,035,Alabama,Conecuh County,11,4,704,352,352,137,131,210,215,0,0,0,0,0,0,5,6,142,137,213,218,2,3,1,0,0,0,348,342,134,125,209,211,0,0,0,0,0,0,5,6,139,131,212,214,2,3,1,0,0,0,4,10,3,6,1,4,0,0,0,0,0,0,0,0,3,6,1,4,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,5,683,342,341,166,152,170,181,1,2,1,0,0,0,4,6,170,158,171,184,3,5,2,1,0,0,325,335,158,149,163,180,1,2,1,0,0,0,2,4,160,153,163,181,2,4,2,1,0,0,17,6,8,3,7,1,0,0,0,0,0,0,2,2,10,5,8,3,1,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,6,728,371,357,174,158,187,191,3,1,0,0,1,0,6,7,179,165,190,195,6,4,1,1,1,0,353,348,164,155,183,186,2,1,0,0,1,0,3,6,166,161,184,189,4,4,1,1,1,0,18,9,10,3,4,5,1,0,0,0,0,0,3,1,13,4,6,6,2,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,7,637,308,329,158,158,145,163,0,1,2,2,0,0,3,5,161,162,146,165,2,4,2,3,0,0,295,319,148,153,143,160,0,1,2,2,0,0,2,3,150,155,143,161,2,3,2,3,0,0,13,10,10,5,2,3,0,0,0,0,0,0,1,2,11,7,3,4,0,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,8,626,289,337,131,148,153,184,0,1,0,1,0,0,5,3,136,151,154,186,4,2,0,1,0,0,278,330,124,143,152,184,0,1,0,1,0,0,2,1,126,144,152,185,2,1,0,1,0,0,11,7,7,5,1,0,0,0,0,0,0,0,3,2,10,7,2,1,2,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,9,638,289,349,150,170,128,178,5,0,1,0,0,0,5,1,155,171,130,179,7,0,1,0,1,0,282,334,149,158,123,175,5,0,1,0,0,0,4,1,153,159,124,176,7,0,1,0,1,0,7,15,1,12,5,3,0,0,0,0,0,0,1,0,2,12,6,3,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,10,692,327,365,195,170,128,187,2,1,0,3,0,1,2,3,196,173,128,190,4,1,0,3,1,1,316,363,188,170,125,186,2,1,0,3,0,1,1,2,189,172,125,188,3,1,0,3,0,1,11,2,7,0,3,1,0,0,0,0,0,0,1,1,7,1,3,2,1,0,0,0,1,0 -050,01,035,Alabama,Conecuh County,11,11,781,356,425,204,206,148,212,1,3,1,3,0,0,2,1,205,207,150,212,2,3,1,4,0,0,352,417,201,203,147,207,1,3,1,3,0,0,2,1,202,204,149,207,2,3,1,4,0,0,4,8,3,3,1,5,0,0,0,0,0,0,0,0,3,3,1,5,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,12,938,459,479,253,239,200,229,2,4,0,2,0,1,4,4,257,243,203,230,3,5,0,4,0,1,453,477,252,237,196,229,2,4,0,2,0,1,3,4,255,241,198,230,3,5,0,4,0,1,6,2,1,2,4,0,0,0,0,0,0,0,1,0,2,2,5,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,13,965,473,492,301,253,165,236,2,2,0,0,0,0,5,1,306,254,165,236,7,3,0,0,0,0,470,489,300,250,163,236,2,2,0,0,0,0,5,1,305,251,163,236,7,3,0,0,0,0,3,3,1,3,2,0,0,0,0,0,0,0,0,0,1,3,2,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,14,770,362,408,217,221,138,177,4,5,1,1,0,0,2,4,219,225,138,177,6,9,1,1,0,0,362,407,217,221,138,176,4,5,1,1,0,0,2,4,219,225,138,176,6,9,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,15,779,372,407,229,243,136,158,2,2,1,1,0,0,4,3,232,246,137,159,6,3,1,2,0,0,371,405,229,242,135,157,2,2,1,1,0,0,4,3,232,245,136,158,6,3,1,2,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,16,529,239,290,150,190,86,97,1,0,0,1,0,0,2,2,152,192,86,97,2,2,0,1,1,0,239,289,150,189,86,97,1,0,0,1,0,0,2,2,152,191,86,97,2,2,0,1,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,17,346,152,194,109,131,39,59,0,0,0,0,0,0,4,4,112,133,41,61,3,4,0,1,0,0,150,192,108,130,38,58,0,0,0,0,0,0,4,4,111,132,40,60,3,4,0,1,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,11,18,340,127,213,90,135,33,76,3,0,0,1,0,0,1,1,91,136,33,76,4,0,0,2,0,0,127,213,90,135,33,76,3,0,0,1,0,0,1,1,91,136,33,76,4,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,0,12055,5739,6316,3083,3159,2525,3021,36,31,11,20,2,2,82,83,3157,3238,2569,3065,69,61,28,32,7,6,5586,6180,2993,3079,2484,2985,30,25,10,18,1,2,68,71,3054,3147,2521,3019,58,54,24,28,5,5,153,136,90,80,41,36,6,6,1,2,1,0,14,12,103,91,48,46,11,7,4,4,2,1 -050,01,035,Alabama,Conecuh County,12,1,646,306,340,156,167,139,156,4,0,0,3,0,1,7,13,163,179,144,165,5,2,1,5,0,2,287,318,143,152,137,152,1,0,0,1,0,1,6,12,149,163,141,161,2,2,1,2,0,2,19,22,13,15,2,4,3,0,0,2,0,0,1,1,14,16,3,4,3,0,0,3,0,0 -050,01,035,Alabama,Conecuh County,12,2,721,349,372,157,168,178,185,3,6,1,0,0,0,10,13,166,180,184,195,4,9,4,3,1,0,326,349,138,154,174,179,3,3,1,0,0,0,10,13,147,166,180,189,4,6,4,3,1,0,23,23,19,14,4,6,0,3,0,0,0,0,0,0,19,14,4,6,0,3,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,3,687,347,340,139,150,192,181,2,1,1,1,1,0,12,7,149,157,201,184,6,3,3,3,1,0,334,334,132,148,189,179,1,1,1,1,0,0,11,5,141,153,197,180,5,3,3,3,0,0,13,6,7,2,3,2,1,0,0,0,1,0,1,2,8,4,4,4,1,0,0,0,1,0 -050,01,035,Alabama,Conecuh County,12,4,680,343,337,135,132,200,199,1,1,1,0,0,0,6,5,141,137,204,202,2,2,2,1,0,0,340,324,134,125,199,195,1,0,0,0,0,0,6,4,140,129,203,197,2,1,1,1,0,0,3,13,1,7,1,4,0,1,1,0,0,0,0,1,1,8,1,5,0,1,1,0,0,0 -050,01,035,Alabama,Conecuh County,12,5,634,327,307,162,130,157,171,2,1,1,0,0,0,5,5,166,134,161,176,4,1,1,0,0,1,312,300,155,125,151,171,1,1,1,0,0,0,4,3,158,128,154,174,3,1,1,0,0,0,15,7,7,5,6,0,1,0,0,0,0,0,1,2,8,6,7,2,1,0,0,0,0,1 -050,01,035,Alabama,Conecuh County,12,6,697,339,358,166,163,163,186,3,0,1,1,1,0,5,8,171,171,165,190,7,3,1,2,1,0,325,351,160,160,159,183,2,0,1,1,1,0,2,7,162,167,160,186,3,3,1,2,1,0,14,7,6,3,4,3,1,0,0,0,0,0,3,1,9,4,5,4,4,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,7,624,317,307,165,140,146,160,0,2,2,2,0,0,4,3,168,143,148,161,0,2,5,3,0,1,298,297,150,135,144,156,0,2,2,2,0,0,2,2,151,137,145,156,0,2,4,3,0,1,19,10,15,5,2,4,0,0,0,0,0,0,2,1,17,6,3,5,0,0,1,0,0,0 -050,01,035,Alabama,Conecuh County,12,8,633,291,342,130,157,157,180,2,0,0,1,0,0,2,4,132,161,157,182,4,1,0,3,0,0,280,335,123,154,155,179,2,0,0,1,0,0,0,1,123,155,155,179,2,0,0,2,0,0,11,7,7,3,2,1,0,0,0,0,0,0,2,3,9,6,2,3,2,1,0,1,0,0 -050,01,035,Alabama,Conecuh County,12,9,635,285,350,141,166,134,179,3,3,1,0,0,0,6,2,146,168,138,181,4,3,2,0,1,0,278,338,139,159,131,176,3,1,1,0,0,0,4,2,143,161,134,178,4,1,1,0,0,0,7,12,2,7,3,3,0,2,0,0,0,0,2,0,3,7,4,3,0,2,1,0,1,0 -050,01,035,Alabama,Conecuh County,12,10,683,293,390,192,187,98,196,1,1,0,2,0,1,2,3,194,190,100,198,2,2,0,2,0,1,280,382,185,181,93,195,1,1,0,2,0,1,1,2,186,183,94,196,2,2,0,2,0,1,13,8,7,6,5,1,0,0,0,0,0,0,1,1,8,7,6,2,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,11,747,365,382,198,180,164,195,1,2,0,4,0,0,2,1,200,181,165,196,2,2,0,4,0,0,361,375,195,176,163,192,1,2,0,4,0,0,2,1,197,177,164,193,2,2,0,4,0,0,4,7,3,4,1,3,0,0,0,0,0,0,0,0,3,4,1,3,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,12,912,431,481,242,239,184,232,1,5,1,2,0,0,3,3,245,242,184,232,2,7,2,2,1,1,426,478,241,238,180,230,1,5,1,2,0,0,3,3,244,241,180,230,2,7,2,2,1,1,5,3,1,1,4,2,0,0,0,0,0,0,0,0,1,1,4,2,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,13,927,457,470,290,246,160,220,3,2,0,0,0,0,4,2,293,248,162,220,5,4,1,0,0,0,453,466,289,242,158,220,3,2,0,0,0,0,3,2,291,244,160,220,5,4,0,0,0,0,4,4,1,4,2,0,0,0,0,0,0,0,1,0,2,4,2,0,0,0,1,0,0,0 -050,01,035,Alabama,Conecuh County,12,14,803,374,429,222,235,144,185,3,5,1,1,0,0,4,3,226,238,145,185,6,8,2,1,0,0,374,428,222,235,144,184,3,5,1,1,0,0,4,3,226,238,145,184,6,8,2,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,15,797,385,412,233,245,145,160,3,2,0,1,0,0,4,4,237,248,145,161,7,6,3,1,2,0,384,410,233,244,144,159,3,2,0,1,0,0,4,4,237,247,144,160,7,6,3,1,2,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,16,534,241,293,144,186,94,104,1,0,1,1,0,0,1,2,145,188,94,105,2,1,1,1,0,0,241,291,144,184,94,104,1,0,1,1,0,0,1,2,145,186,94,105,2,1,1,1,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,17,365,160,205,117,141,39,61,0,0,0,0,0,0,4,3,120,144,41,61,3,3,0,0,0,0,158,203,116,140,38,60,0,0,0,0,0,0,4,3,119,143,40,60,3,3,0,0,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,12,18,330,129,201,94,127,31,71,3,0,0,1,0,0,1,2,95,129,31,71,4,2,0,1,0,0,129,201,94,127,31,71,3,0,0,1,0,0,1,2,95,129,31,71,4,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,0,11851,5668,6183,3043,3066,2484,2982,36,25,12,20,2,2,91,88,3128,3143,2538,3027,68,58,24,36,4,12,5512,6046,2954,2981,2439,2945,31,25,11,18,1,2,76,75,3025,3047,2486,2982,57,53,20,31,3,12,156,137,89,85,45,37,5,0,1,2,1,0,15,13,103,96,52,45,11,5,4,5,1,0 -050,01,035,Alabama,Conecuh County,13,1,602,288,314,129,144,140,153,4,1,0,3,0,0,15,13,144,157,152,162,5,3,2,4,0,2,265,288,115,128,136,147,1,1,0,1,0,0,13,11,128,139,147,155,1,3,2,1,0,2,23,26,14,16,4,6,3,0,0,2,0,0,2,2,16,18,5,7,4,0,0,3,0,0 -050,01,035,Alabama,Conecuh County,13,2,721,352,369,173,169,167,181,3,2,1,0,0,1,8,16,179,185,172,193,5,4,4,3,0,3,327,350,154,154,161,177,3,2,1,0,0,1,8,16,160,170,166,189,5,4,4,3,0,3,25,19,19,15,6,4,0,0,0,0,0,0,0,0,19,15,6,4,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,3,692,346,346,133,146,197,193,2,1,1,1,0,0,13,5,146,150,208,195,4,1,2,4,1,1,336,341,127,144,194,191,2,1,1,1,0,0,12,4,139,147,205,193,3,1,2,3,1,1,10,5,6,2,3,2,0,0,0,0,0,0,1,1,7,3,3,2,1,0,0,1,0,0 -050,01,035,Alabama,Conecuh County,13,4,641,327,314,137,132,180,176,1,0,1,0,1,0,7,6,142,137,186,179,2,2,2,1,2,1,323,299,136,122,179,173,1,0,0,0,0,0,7,4,141,125,185,174,2,2,1,1,1,1,4,15,1,10,1,3,0,0,1,0,1,0,0,2,1,12,1,5,0,0,1,0,1,0 -050,01,035,Alabama,Conecuh County,13,5,643,328,315,156,121,164,185,1,1,1,0,0,0,6,8,162,128,168,189,3,2,1,3,0,1,313,306,150,115,157,184,0,1,1,0,0,0,5,6,155,120,160,187,2,2,1,2,0,1,15,9,6,6,7,1,1,0,0,0,0,0,1,2,7,8,8,2,1,0,0,1,0,0 -050,01,035,Alabama,Conecuh County,13,6,668,332,336,163,147,157,181,4,0,1,1,1,0,6,7,168,152,159,184,7,2,3,3,1,2,320,332,159,147,153,177,3,0,1,1,1,0,3,7,162,152,154,180,4,2,2,3,1,2,12,4,4,0,4,4,1,0,0,0,0,0,3,0,6,0,5,4,3,0,1,0,0,0 -050,01,035,Alabama,Conecuh County,13,7,604,312,292,169,135,139,149,0,2,2,2,0,0,2,4,171,138,141,152,0,5,2,2,0,0,295,279,154,127,138,146,0,2,2,2,0,0,1,2,155,128,139,148,0,3,2,2,0,0,17,13,15,8,1,3,0,0,0,0,0,0,1,2,16,10,2,4,0,2,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,8,589,272,317,124,151,144,162,0,0,1,1,0,0,3,3,127,153,146,165,1,1,1,1,0,0,261,311,117,148,142,161,0,0,1,1,0,0,1,1,118,149,143,162,0,0,1,1,0,0,11,6,7,3,2,1,0,0,0,0,0,0,2,2,9,4,3,3,1,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,9,626,294,332,141,153,142,175,3,1,1,0,0,0,7,3,148,156,145,176,6,3,2,0,0,0,286,322,138,147,140,172,3,1,1,0,0,0,4,2,142,149,142,173,5,2,1,0,0,0,8,10,3,6,2,3,0,0,0,0,0,0,3,1,6,7,3,3,1,1,1,0,0,0 -050,01,035,Alabama,Conecuh County,13,10,680,295,385,175,188,115,192,3,0,0,2,0,1,2,2,177,189,117,194,3,1,0,2,0,1,280,376,167,182,109,190,3,0,0,2,0,1,1,1,168,183,110,191,3,0,0,2,0,1,15,9,8,6,6,2,0,0,0,0,0,0,1,1,9,6,7,3,0,1,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,11,749,351,398,210,183,139,207,0,2,0,4,0,0,2,2,212,185,140,208,1,3,0,4,0,0,349,393,209,180,138,205,0,2,0,4,0,0,2,2,211,182,139,206,1,3,0,4,0,0,2,5,1,3,1,2,0,0,0,0,0,0,0,0,1,3,1,2,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,12,877,417,460,243,231,169,219,1,6,1,1,0,0,3,3,246,234,170,219,2,8,2,2,0,0,412,455,241,229,166,216,1,6,1,1,0,0,3,3,244,232,167,216,2,8,2,2,0,0,5,5,2,2,3,3,0,0,0,0,0,0,0,0,2,2,3,3,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,13,916,443,473,265,244,172,225,3,2,0,1,0,0,3,1,268,244,172,225,5,2,1,2,0,1,438,469,264,240,169,225,3,2,0,1,0,0,2,1,266,240,169,225,5,2,0,2,0,1,5,4,1,4,3,0,0,0,0,0,0,0,1,0,2,4,3,0,0,0,1,0,0,0 -050,01,035,Alabama,Conecuh County,13,14,824,384,440,241,241,136,191,2,3,1,1,0,0,4,4,245,244,136,191,6,7,1,2,0,0,383,440,240,241,136,191,2,3,1,1,0,0,4,4,244,244,136,191,6,7,1,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,15,772,374,398,221,238,148,154,4,2,0,1,0,0,1,3,222,240,148,155,5,5,0,1,0,0,374,395,221,237,148,152,4,2,0,1,0,0,1,3,222,239,148,153,5,5,0,1,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,16,567,267,300,158,185,102,111,2,2,1,1,0,0,4,1,162,186,102,111,6,3,1,1,0,0,266,299,158,184,101,111,2,2,1,1,0,0,4,1,162,185,101,111,6,3,1,1,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,17,367,153,214,112,143,38,66,0,0,0,0,0,0,3,5,114,148,40,66,3,5,0,0,0,0,151,211,111,141,37,65,0,0,0,0,0,0,3,5,113,146,39,65,3,5,0,0,0,0,2,3,1,2,1,1,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0 -050,01,035,Alabama,Conecuh County,13,18,313,133,180,93,115,35,62,3,0,0,1,0,0,2,2,95,117,36,63,4,1,0,1,0,0,133,180,93,115,35,62,3,0,0,1,0,0,2,2,95,117,36,63,4,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,0,11539,5727,5812,3884,3856,1748,1850,37,26,4,12,7,10,47,58,3918,3895,1762,1875,71,65,7,15,17,21,5587,5722,3798,3811,1729,1831,21,20,2,12,0,0,37,48,3831,3850,1743,1856,45,49,5,15,1,1,140,90,86,45,19,19,16,6,2,0,7,10,10,10,87,45,19,19,26,16,2,0,16,20 -050,01,037,Alabama,Coosa County,1,1,561,283,278,168,155,107,106,3,3,0,0,1,5,4,9,170,161,109,112,5,6,0,1,3,7,266,259,158,148,105,102,1,2,0,0,0,0,2,7,160,154,107,108,1,3,0,1,0,0,17,19,10,7,2,4,2,1,0,0,1,5,2,2,10,7,2,4,4,3,0,0,3,7 -050,01,037,Alabama,Coosa County,1,2,618,331,287,217,182,107,96,3,1,0,1,0,0,4,7,221,186,110,101,4,5,1,1,0,1,320,276,209,175,106,94,1,0,0,1,0,0,4,6,213,179,109,99,2,3,1,1,0,0,11,11,8,7,1,2,2,1,0,0,0,0,0,1,8,7,1,2,2,2,0,0,0,1 -050,01,037,Alabama,Coosa County,1,3,707,360,347,234,213,121,131,2,1,0,0,0,0,3,2,236,214,121,133,5,2,0,0,1,0,353,347,232,213,118,131,1,1,0,0,0,0,2,2,234,214,118,133,3,2,0,0,0,0,7,0,2,0,3,0,1,0,0,0,0,0,1,0,2,0,3,0,2,0,0,0,1,0 -050,01,037,Alabama,Coosa County,1,4,781,438,343,255,198,177,142,0,2,1,0,0,0,5,1,259,198,181,143,2,3,1,0,0,0,437,341,254,198,177,140,0,2,1,0,0,0,5,1,258,198,181,141,2,3,1,0,0,0,1,2,1,0,0,2,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,5,555,279,276,171,197,99,72,5,0,1,1,0,3,3,3,172,198,100,73,7,3,1,1,2,4,269,270,166,195,99,72,2,0,0,1,0,0,2,2,167,196,100,73,3,2,0,1,1,0,10,6,5,2,0,0,3,0,1,0,0,3,1,1,5,2,0,0,4,1,1,0,1,4 -050,01,037,Alabama,Coosa County,1,6,543,255,288,159,180,85,96,5,2,1,0,0,0,5,10,163,189,85,100,8,6,3,1,1,2,237,279,148,174,84,96,1,0,0,0,0,0,4,9,152,183,84,100,3,3,2,1,0,1,18,9,11,6,1,0,4,2,1,0,0,0,1,1,11,6,1,0,5,3,1,0,1,1 -050,01,037,Alabama,Coosa County,1,7,606,305,301,209,210,92,85,1,2,0,2,2,0,1,2,209,211,92,85,2,4,0,2,3,1,286,294,195,208,91,82,0,1,0,2,0,0,0,1,195,209,91,82,0,2,0,2,0,0,19,7,14,2,1,3,1,1,0,0,2,0,1,1,14,2,1,3,2,2,0,0,3,1 -050,01,037,Alabama,Coosa County,1,8,746,355,391,240,233,107,149,1,1,0,3,1,1,6,4,243,236,108,150,7,5,0,3,3,2,336,381,224,227,107,147,1,1,0,3,0,0,4,3,227,230,108,148,5,4,0,3,0,0,19,10,16,6,0,2,0,0,0,0,1,1,2,1,16,6,0,2,2,1,0,0,3,2 -050,01,037,Alabama,Coosa County,1,9,787,392,395,283,233,105,149,2,6,1,1,0,0,1,6,283,234,105,153,3,11,1,1,1,2,381,390,275,231,103,149,2,5,1,1,0,0,0,4,275,232,103,153,2,8,1,1,0,0,11,5,8,2,2,0,0,1,0,0,0,0,1,2,8,2,2,0,1,3,0,0,1,2 -050,01,037,Alabama,Coosa County,1,10,863,439,424,282,249,147,167,5,4,0,1,3,1,2,2,284,250,147,167,7,5,0,2,3,2,431,418,280,247,147,165,3,4,0,1,0,0,1,1,281,248,147,165,4,4,0,2,0,0,8,6,2,2,0,2,2,0,0,0,3,1,1,1,3,2,0,2,3,1,0,0,3,2 -050,01,037,Alabama,Coosa County,1,11,1005,512,493,357,333,152,155,2,2,0,1,0,0,1,2,358,335,152,155,3,4,0,1,0,0,506,491,354,331,150,155,1,2,0,1,0,0,1,2,355,333,150,155,2,4,0,1,0,0,6,2,3,2,2,0,1,0,0,0,0,0,0,0,3,2,2,0,1,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,12,943,475,468,329,332,138,132,1,1,0,0,0,0,7,3,336,335,139,133,7,3,0,0,0,0,473,464,329,330,136,130,1,1,0,0,0,0,7,3,336,333,137,131,7,3,0,0,0,0,2,4,0,2,2,2,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,13,854,412,442,296,336,112,102,3,0,0,1,0,0,1,3,297,339,112,102,4,3,0,1,0,0,408,438,293,333,111,101,3,0,0,1,0,0,1,3,294,336,111,101,4,3,0,1,0,0,4,4,3,3,1,1,0,0,0,0,0,0,0,0,3,3,1,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,14,656,340,316,263,233,75,79,1,1,0,1,0,0,1,2,264,235,75,79,2,3,0,1,0,0,338,314,262,231,74,79,1,1,0,1,0,0,1,2,263,233,74,79,2,3,0,1,0,0,2,2,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,15,504,219,285,160,218,57,66,1,0,0,0,0,0,1,1,160,219,58,66,2,1,0,0,0,0,215,284,158,218,55,65,1,0,0,0,0,0,1,1,158,219,56,65,2,1,0,0,0,0,4,1,2,0,2,1,0,0,0,0,0,0,0,0,2,0,2,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,16,343,142,201,107,146,33,55,2,0,0,0,0,0,0,0,107,146,33,55,2,0,0,0,0,0,142,199,107,144,33,55,2,0,0,0,0,0,0,0,107,144,33,55,2,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,17,276,121,155,98,120,21,35,0,0,0,0,0,0,2,0,100,120,22,35,1,0,0,0,0,0,121,155,98,120,21,35,0,0,0,0,0,0,2,0,100,120,22,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,1,18,191,69,122,56,88,13,33,0,0,0,0,0,0,0,1,56,89,13,33,0,1,0,0,0,0,68,122,56,88,12,33,0,0,0,0,0,0,0,1,56,89,12,33,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,0,11756,5942,5814,3964,3858,1884,1851,37,26,4,12,7,10,46,57,3998,3897,1898,1876,70,64,7,15,16,20,5800,5725,3877,3813,1863,1832,21,20,2,12,0,0,37,48,3910,3852,1877,1857,45,49,5,15,1,1,142,89,87,45,21,19,16,6,2,0,7,10,9,9,88,45,21,19,25,15,2,0,15,19 -050,01,037,Alabama,Coosa County,2,1,562,283,279,168,156,107,106,3,3,0,0,1,5,4,9,170,162,109,112,5,6,0,1,3,7,266,260,158,149,105,102,1,2,0,0,0,0,2,7,160,155,107,108,1,3,0,1,0,0,17,19,10,7,2,4,2,1,0,0,1,5,2,2,10,7,2,4,4,3,0,0,3,7 -050,01,037,Alabama,Coosa County,2,2,618,331,287,217,182,107,96,3,1,0,1,0,0,4,7,221,186,110,101,4,5,1,1,0,1,320,276,209,175,106,94,1,0,0,1,0,0,4,6,213,179,109,99,2,3,1,1,0,0,11,11,8,7,1,2,2,1,0,0,0,0,0,1,8,7,1,2,2,2,0,0,0,1 -050,01,037,Alabama,Coosa County,2,3,707,360,347,234,213,121,131,2,1,0,0,0,0,3,2,236,214,121,133,5,2,0,0,1,0,353,347,232,213,118,131,1,1,0,0,0,0,2,2,234,214,118,133,3,2,0,0,0,0,7,0,2,0,3,0,1,0,0,0,0,0,1,0,2,0,3,0,2,0,0,0,1,0 -050,01,037,Alabama,Coosa County,2,4,785,442,343,256,198,180,142,0,2,1,0,0,0,5,1,260,198,184,143,2,3,1,0,0,0,441,341,255,198,180,140,0,2,1,0,0,0,5,1,259,198,184,141,2,3,1,0,0,0,1,2,1,0,0,2,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,5,569,292,277,174,197,109,73,5,0,1,1,0,3,3,3,175,198,110,74,7,3,1,1,2,4,282,271,169,195,109,73,2,0,0,1,0,0,2,2,170,196,110,74,3,2,0,1,1,0,10,6,5,2,0,0,3,0,1,0,0,3,1,1,5,2,0,0,4,1,1,0,1,4 -050,01,037,Alabama,Coosa County,2,6,587,298,289,166,181,121,96,5,2,1,0,0,0,5,10,170,190,121,100,8,6,3,1,1,2,280,280,155,175,120,96,1,0,0,0,0,0,4,9,159,184,120,100,3,3,2,1,0,1,18,9,11,6,1,0,4,2,1,0,0,0,1,1,11,6,1,0,5,3,1,0,1,1 -050,01,037,Alabama,Coosa County,2,7,644,343,301,221,210,118,85,1,2,0,2,2,0,1,2,221,211,118,85,2,4,0,2,3,1,324,294,207,208,117,82,0,1,0,2,0,0,0,1,207,209,117,82,0,2,0,2,0,0,19,7,14,2,1,3,1,1,0,0,2,0,1,1,14,2,1,3,2,2,0,0,3,1 -050,01,037,Alabama,Coosa County,2,8,775,387,388,255,231,124,149,1,1,0,3,1,1,6,3,258,234,125,150,7,4,0,3,3,1,367,379,239,225,123,147,1,1,0,3,0,0,4,3,242,228,124,148,5,4,0,3,0,0,20,9,16,6,1,2,0,0,0,0,1,1,2,0,16,6,1,2,2,0,0,0,3,1 -050,01,037,Alabama,Coosa County,2,9,813,418,395,294,233,121,149,2,6,1,1,0,0,0,6,294,234,121,153,2,11,1,1,0,2,408,390,286,231,119,149,2,5,1,1,0,0,0,4,286,232,119,153,2,8,1,1,0,0,10,5,8,2,2,0,0,1,0,0,0,0,0,2,8,2,2,0,0,3,0,0,0,2 -050,01,037,Alabama,Coosa County,2,10,884,460,424,291,249,159,167,5,4,0,1,3,1,2,2,293,250,159,167,7,5,0,2,3,2,452,418,289,247,159,165,3,4,0,1,0,0,1,1,290,248,159,165,4,4,0,2,0,0,8,6,2,2,0,2,2,0,0,0,3,1,1,1,3,2,0,2,3,1,0,0,3,2 -050,01,037,Alabama,Coosa County,2,11,1024,532,492,370,332,159,155,2,2,0,1,0,0,1,2,371,334,159,155,3,4,0,1,0,0,524,490,366,330,156,155,1,2,0,1,0,0,1,2,367,332,156,155,2,4,0,1,0,0,8,2,4,2,3,0,1,0,0,0,0,0,0,0,4,2,3,0,1,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,12,952,484,468,332,332,144,132,1,1,0,0,0,0,7,3,339,335,145,133,7,3,0,0,0,0,482,464,332,330,142,130,1,1,0,0,0,0,7,3,339,333,143,131,7,3,0,0,0,0,2,4,0,2,2,2,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,13,860,416,444,299,338,113,102,3,0,0,1,0,0,1,3,300,341,113,102,4,3,0,1,0,0,412,440,296,335,112,101,3,0,0,1,0,0,1,3,297,338,112,101,4,3,0,1,0,0,4,4,3,3,1,1,0,0,0,0,0,0,0,0,3,3,1,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,14,659,343,316,265,233,76,79,1,1,0,1,0,0,1,2,266,235,76,79,2,3,0,1,0,0,341,314,264,231,75,79,1,1,0,1,0,0,1,2,265,233,75,79,2,3,0,1,0,0,2,2,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,15,506,220,286,161,219,57,66,1,0,0,0,0,0,1,1,161,220,58,66,2,1,0,0,0,0,216,285,159,219,55,65,1,0,0,0,0,0,1,1,159,220,56,65,2,1,0,0,0,0,4,1,2,0,2,1,0,0,0,0,0,0,0,0,2,0,2,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,16,344,143,201,107,146,34,55,2,0,0,0,0,0,0,0,107,146,34,55,2,0,0,0,0,0,143,199,107,144,34,55,2,0,0,0,0,0,0,0,107,144,34,55,2,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,17,276,121,155,98,120,21,35,0,0,0,0,0,0,2,0,100,120,22,35,1,0,0,0,0,0,121,155,98,120,21,35,0,0,0,0,0,0,2,0,100,120,22,35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,2,18,191,69,122,56,88,13,33,0,0,0,0,0,0,0,1,56,89,13,33,0,1,0,0,0,0,68,122,56,88,12,33,0,0,0,0,0,0,0,1,56,89,12,33,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,0,11779,5955,5824,3965,3867,1893,1850,36,27,4,12,7,10,50,58,4013,3921,1921,1879,55,48,8,21,9,14,5817,5735,3883,3821,1871,1832,20,21,2,12,0,0,41,49,3922,3867,1891,1857,38,37,6,20,2,3,138,89,82,46,22,18,16,6,2,0,7,10,9,9,91,54,30,22,17,11,2,1,7,11 -050,01,037,Alabama,Coosa County,3,1,554,283,271,164,151,109,104,3,3,0,0,1,5,6,8,170,159,113,109,6,4,0,2,1,5,267,254,155,145,107,101,1,2,0,0,0,0,4,6,159,151,110,105,3,2,0,2,0,0,16,17,9,6,2,3,2,1,0,0,1,5,2,2,11,8,3,4,3,2,0,0,1,5 -050,01,037,Alabama,Coosa County,3,2,619,328,291,215,184,105,98,3,1,0,1,0,0,5,7,220,191,109,102,4,4,0,1,0,0,318,278,208,176,104,95,1,0,0,1,0,0,5,6,213,182,108,99,2,2,0,1,0,0,10,13,7,8,1,3,2,1,0,0,0,0,0,1,7,9,1,3,2,2,0,0,0,0 -050,01,037,Alabama,Coosa County,3,3,700,352,348,230,213,116,132,2,1,0,0,0,0,4,2,234,215,119,133,2,1,1,1,0,0,346,348,228,213,114,132,1,1,0,0,0,0,3,2,231,215,116,133,1,1,1,1,0,0,6,0,2,0,2,0,1,0,0,0,0,0,1,0,3,0,3,0,1,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,4,776,443,333,256,192,181,138,0,2,1,0,0,0,5,1,261,193,184,139,2,2,1,0,0,0,441,331,255,192,180,136,0,2,1,0,0,0,5,1,260,193,183,137,2,2,1,0,0,0,2,2,1,0,1,2,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,5,585,302,283,180,198,113,79,5,0,1,1,0,2,3,3,183,201,115,81,6,0,1,1,0,3,292,278,175,196,113,79,2,0,0,1,0,0,2,2,177,198,114,80,3,0,0,1,0,1,10,5,5,2,0,0,3,0,1,0,0,2,1,1,6,3,1,1,3,0,1,0,0,2 -050,01,037,Alabama,Coosa County,3,6,585,296,289,163,183,122,93,5,2,1,0,0,1,5,10,167,192,126,95,6,5,2,5,0,2,279,279,153,177,121,93,1,0,0,0,0,0,4,9,156,185,124,95,2,3,1,4,0,1,17,10,10,6,1,0,4,2,1,0,0,1,1,1,11,7,2,0,4,2,1,1,0,1 -050,01,037,Alabama,Coosa County,3,7,648,343,305,223,213,116,85,1,2,0,2,2,0,1,3,224,216,117,86,1,5,0,2,2,0,324,299,209,211,115,83,0,1,0,2,0,0,0,2,209,213,115,83,0,3,0,2,0,0,19,6,14,2,1,2,1,1,0,0,2,0,1,1,15,3,2,3,1,2,0,0,2,0 -050,01,037,Alabama,Coosa County,3,8,757,376,381,247,230,121,142,1,1,0,3,1,1,6,4,253,233,125,145,3,2,0,4,1,1,358,372,233,224,120,140,1,1,0,3,0,0,4,4,237,227,122,143,3,2,0,4,0,0,18,9,14,6,1,2,0,0,0,0,1,1,2,0,16,6,3,2,0,0,0,0,1,1 -050,01,037,Alabama,Coosa County,3,9,814,415,399,290,233,123,153,1,5,1,1,0,0,0,7,290,239,123,155,1,10,1,1,0,1,405,394,282,231,121,153,1,4,1,1,0,0,0,5,282,236,121,155,1,7,1,1,0,0,10,5,8,2,2,0,0,1,0,0,0,0,0,2,8,3,2,0,0,3,0,0,0,1 -050,01,037,Alabama,Coosa County,3,10,895,467,428,296,252,161,167,5,5,0,1,3,1,2,2,298,254,162,168,6,5,0,1,3,2,459,422,294,250,161,165,3,5,0,1,0,0,1,1,295,251,161,165,4,5,0,1,0,1,8,6,2,2,0,2,2,0,0,0,3,1,1,1,3,3,1,3,2,0,0,0,3,1 -050,01,037,Alabama,Coosa County,3,11,1014,524,490,364,331,157,154,2,3,0,1,0,0,1,1,365,332,157,154,2,4,1,1,0,0,516,488,360,329,154,154,1,3,0,1,0,0,1,1,361,330,154,154,1,4,1,1,0,0,8,2,4,2,3,0,1,0,0,0,0,0,0,0,4,2,3,0,1,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,12,965,494,471,338,333,148,134,1,1,0,0,0,0,7,3,345,335,148,136,6,3,1,0,1,0,492,467,338,331,146,132,1,1,0,0,0,0,7,3,345,333,146,134,6,3,1,0,1,0,2,4,0,2,2,2,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,13,859,420,439,302,334,114,101,3,0,0,1,0,0,1,3,303,337,114,103,4,1,0,1,0,0,416,435,299,331,113,100,3,0,0,1,0,0,1,3,300,334,113,102,4,1,0,1,0,0,4,4,3,3,1,1,0,0,0,0,0,0,0,0,3,3,1,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,14,673,347,326,268,242,77,80,1,1,0,1,0,0,1,2,269,244,77,81,2,2,0,1,0,0,345,323,267,239,76,80,1,1,0,1,0,0,1,2,268,241,76,81,2,2,0,1,0,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,15,506,223,283,161,218,60,64,1,0,0,0,0,0,1,1,162,219,60,65,1,0,0,0,1,0,218,282,159,218,57,63,1,0,0,0,0,0,1,1,160,219,57,64,1,0,0,0,1,0,5,1,2,0,3,1,0,0,0,0,0,0,0,0,2,0,3,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,16,355,151,204,112,148,37,56,2,0,0,0,0,0,0,0,112,148,37,56,2,0,0,0,0,0,151,202,112,146,37,56,2,0,0,0,0,0,0,0,112,146,37,56,2,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,17,278,120,158,98,122,20,36,0,0,0,0,0,0,2,0,99,122,22,36,1,0,0,0,0,0,120,158,98,122,20,36,0,0,0,0,0,0,2,0,99,122,22,36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,3,18,196,71,125,58,90,13,34,0,0,0,0,0,0,0,1,58,91,13,35,0,0,0,0,0,0,70,125,58,90,12,34,0,0,0,0,0,0,0,1,58,91,12,35,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,0,11483,5794,5689,3850,3762,1842,1815,39,29,5,12,7,10,51,61,3898,3815,1865,1845,61,59,10,19,13,13,5659,5599,3771,3712,1820,1799,23,23,3,12,0,0,42,53,3811,3758,1838,1825,42,49,7,19,5,2,135,90,79,50,22,16,16,6,2,0,7,10,9,8,87,57,27,20,19,10,3,0,8,11 -050,01,037,Alabama,Coosa County,4,1,542,273,269,161,155,100,97,3,2,0,0,1,4,8,11,169,166,105,105,5,5,1,1,1,4,261,254,155,148,98,96,2,1,0,0,0,0,6,9,161,157,101,103,4,3,1,1,0,0,12,15,6,7,2,1,1,1,0,0,1,4,2,2,8,9,4,2,1,2,0,0,1,4 -050,01,037,Alabama,Coosa County,4,2,583,300,283,195,174,99,100,3,2,0,1,0,1,3,5,197,178,102,103,4,5,0,1,0,1,291,272,189,169,98,96,1,1,0,1,0,0,3,5,191,173,101,99,2,4,0,1,0,0,9,11,6,5,1,4,2,1,0,0,0,1,0,0,6,5,1,4,2,1,0,0,0,1 -050,01,037,Alabama,Coosa County,4,3,679,333,346,214,209,112,134,2,1,0,0,0,0,5,2,219,211,116,136,2,1,0,0,1,0,327,344,212,207,111,134,0,1,0,0,0,0,4,2,216,209,114,136,0,1,0,0,1,0,6,2,2,2,1,0,2,0,0,0,0,0,1,0,3,2,2,0,2,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,4,722,424,298,244,176,170,120,3,1,1,0,0,0,6,1,250,177,173,120,5,2,1,0,1,0,418,296,240,175,168,119,3,1,1,0,0,0,6,1,246,176,171,119,5,2,1,0,1,0,6,2,4,1,2,1,0,0,0,0,0,0,0,0,4,1,2,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,5,580,302,278,180,177,116,93,4,3,1,1,0,0,1,4,181,179,116,96,5,5,1,2,0,0,297,275,177,175,116,93,2,3,1,1,0,0,1,3,178,176,116,95,3,5,1,2,0,0,5,3,3,2,0,0,2,0,0,0,0,0,0,1,3,3,0,1,2,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,6,580,299,281,161,189,124,78,6,2,2,0,0,3,6,9,167,197,126,82,9,5,3,2,1,4,283,269,154,183,124,78,1,0,0,0,0,0,4,8,158,190,126,81,2,3,1,2,1,1,16,12,7,6,0,0,5,2,2,0,0,3,2,1,9,7,0,1,7,2,2,0,0,3 -050,01,037,Alabama,Coosa County,4,7,611,338,273,217,194,118,71,1,2,0,2,1,0,1,4,217,198,119,72,1,4,0,3,2,0,319,266,203,190,116,69,0,1,0,2,0,0,0,4,203,194,116,70,0,3,0,3,0,0,19,7,14,4,2,2,1,1,0,0,1,0,1,0,14,4,3,2,1,1,0,0,2,0 -050,01,037,Alabama,Coosa County,4,8,676,340,336,228,211,107,117,1,1,0,2,1,1,3,4,231,215,109,119,2,2,0,3,1,1,324,325,215,204,106,115,1,1,0,2,0,0,2,3,217,207,107,116,2,2,0,3,0,0,16,11,13,7,1,2,0,0,0,0,1,1,1,1,14,8,2,3,0,0,0,0,1,1 -050,01,037,Alabama,Coosa County,4,9,806,402,404,278,228,118,163,1,3,1,2,1,0,3,8,281,234,119,165,3,10,1,2,1,1,386,398,266,225,116,163,1,2,1,2,0,0,2,6,268,230,117,165,2,7,1,2,0,0,16,6,12,3,2,0,0,1,0,0,1,0,1,2,13,4,2,0,1,3,0,0,1,1 -050,01,037,Alabama,Coosa County,4,10,866,461,405,298,237,154,159,5,5,0,1,3,1,1,2,299,239,154,159,5,7,1,1,3,1,453,400,296,235,154,158,3,5,0,1,0,0,0,1,296,236,154,158,3,6,0,1,0,0,8,5,2,2,0,1,2,0,0,0,3,1,1,1,3,3,0,1,2,1,1,0,3,1 -050,01,037,Alabama,Coosa County,4,11,965,486,479,331,317,151,157,2,4,0,0,0,0,2,1,333,318,152,158,4,4,0,0,0,0,480,476,328,315,149,156,1,4,0,0,0,0,2,1,330,316,150,157,3,4,0,0,0,0,6,3,3,2,2,1,1,0,0,0,0,0,0,0,3,2,2,1,1,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,12,995,515,480,358,330,150,145,1,2,0,1,0,0,6,2,363,331,151,146,4,3,1,2,2,0,511,476,357,328,147,143,1,2,0,1,0,0,6,2,362,329,148,144,4,3,1,2,2,0,4,4,1,2,3,2,0,0,0,0,0,0,0,0,1,2,3,2,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,13,852,417,435,295,322,117,108,3,0,0,1,0,0,2,4,297,325,117,110,5,2,0,1,0,1,413,432,292,320,116,107,3,0,0,1,0,0,2,4,294,323,116,109,5,2,0,1,0,1,4,3,3,2,1,1,0,0,0,0,0,0,0,0,3,2,1,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,14,680,337,343,268,264,68,76,1,0,0,1,0,0,0,2,268,266,68,77,1,1,0,1,0,0,335,341,267,262,67,76,1,0,0,1,0,0,0,2,267,264,67,77,1,1,0,1,0,0,2,2,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,15,500,226,274,164,207,60,65,0,1,0,0,0,0,2,1,166,208,60,65,2,2,0,0,0,0,222,272,162,206,58,64,0,1,0,0,0,0,2,1,164,207,58,64,2,2,0,0,0,0,4,2,2,1,2,1,0,0,0,0,0,0,0,0,2,1,2,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,16,384,166,218,118,157,45,61,3,0,0,0,0,0,0,0,118,157,45,61,3,0,0,0,0,0,165,216,118,155,44,61,3,0,0,0,0,0,0,0,118,155,44,61,3,0,0,0,0,0,1,2,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,17,265,112,153,91,118,19,35,0,0,0,0,0,0,2,0,93,118,19,35,1,0,1,0,0,0,112,153,91,118,19,35,0,0,0,0,0,0,2,0,93,118,19,35,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,4,18,197,63,134,49,97,14,36,0,0,0,0,0,0,0,1,49,98,14,36,0,1,0,0,0,0,62,134,49,97,13,36,0,0,0,0,0,0,0,1,49,98,13,36,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,0,11343,5718,5625,3794,3731,1820,1767,37,28,4,12,7,10,56,77,3848,3797,1846,1801,63,63,7,31,11,14,5596,5529,3729,3677,1798,1751,21,22,2,12,0,0,46,67,3774,3736,1818,1780,42,52,5,29,3,3,122,96,65,54,22,16,16,6,2,0,7,10,10,10,74,61,28,21,21,11,2,2,8,11 -050,01,037,Alabama,Coosa County,5,1,510,253,257,147,155,92,78,3,3,0,0,1,3,10,18,157,172,100,92,5,5,1,5,1,3,242,245,142,149,90,78,2,2,0,0,0,0,8,16,150,164,96,90,3,4,1,5,0,0,11,12,5,6,2,0,1,1,0,0,1,3,2,2,7,8,4,2,2,1,0,0,1,3 -050,01,037,Alabama,Coosa County,5,2,556,285,271,185,161,94,99,3,1,0,1,0,2,3,7,188,167,96,102,4,4,0,3,0,3,272,258,175,156,93,95,1,0,0,1,0,0,3,6,178,161,95,98,2,2,0,3,0,1,13,13,10,5,1,4,2,1,0,0,0,2,0,1,10,6,1,4,2,2,0,0,0,2 -050,01,037,Alabama,Coosa County,5,3,627,316,311,209,196,100,110,2,1,0,0,0,0,5,4,214,199,103,113,4,1,0,2,0,0,309,307,207,193,99,109,0,1,0,0,0,0,3,4,210,196,101,112,1,1,0,2,0,0,7,4,2,3,1,1,2,0,0,0,0,0,2,0,4,3,2,1,3,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,4,681,390,291,236,169,143,119,2,1,1,0,0,0,8,2,244,171,146,120,4,2,2,0,2,0,387,288,235,167,141,119,2,1,1,0,0,0,8,1,243,168,144,120,4,1,2,0,2,0,3,3,1,2,2,0,0,0,0,0,0,0,0,1,1,3,2,0,0,1,0,0,0,0 -050,01,037,Alabama,Coosa County,5,5,619,327,292,189,182,135,106,3,1,0,1,0,0,0,2,189,184,135,106,3,3,0,1,0,0,325,289,188,180,135,105,2,1,0,1,0,0,0,2,188,182,135,105,2,3,0,1,0,0,2,3,1,2,0,1,1,0,0,0,0,0,0,0,1,2,0,1,1,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,6,570,287,283,159,185,115,83,5,1,2,0,0,3,6,11,165,193,118,87,8,7,2,2,0,5,271,271,151,179,115,83,1,0,0,0,0,0,4,9,155,186,117,86,3,4,0,2,0,2,16,12,8,6,0,0,4,1,2,0,0,3,2,2,10,7,1,1,5,3,2,0,0,3 -050,01,037,Alabama,Coosa County,5,7,589,311,278,179,184,127,84,2,2,0,2,1,0,2,6,181,190,129,86,2,6,0,2,1,0,304,271,177,179,126,83,0,1,0,2,0,0,1,6,178,185,127,85,0,5,0,2,0,0,7,7,2,5,1,1,2,1,0,0,1,0,1,0,3,5,2,1,2,1,0,0,1,0 -050,01,037,Alabama,Coosa County,5,8,658,345,313,225,216,115,92,2,1,0,0,1,0,2,4,226,219,115,93,4,3,0,2,2,0,323,302,208,210,113,89,1,0,0,0,0,0,1,3,209,212,113,90,2,2,0,1,0,0,22,11,17,6,2,3,1,1,0,0,1,0,1,1,17,7,2,3,2,1,0,1,2,0 -050,01,037,Alabama,Coosa County,5,9,770,374,396,257,232,111,147,1,3,0,3,1,1,4,10,261,240,114,149,2,10,0,6,1,2,364,388,251,228,109,147,1,2,0,3,0,0,3,8,254,235,111,148,2,8,0,6,0,0,10,8,6,4,2,0,0,1,0,0,1,1,1,2,7,5,3,1,0,2,0,0,1,2 -050,01,037,Alabama,Coosa County,5,10,853,452,401,298,233,146,159,3,5,1,1,3,1,1,2,299,234,146,161,4,5,1,2,3,1,444,395,295,230,146,158,2,5,1,1,0,0,0,1,295,231,146,159,2,5,1,1,0,0,8,6,3,3,0,1,1,0,0,0,3,1,1,1,4,3,0,2,2,0,0,1,3,1 -050,01,037,Alabama,Coosa County,5,11,962,490,472,335,311,150,154,4,6,0,1,0,0,1,0,336,311,151,154,4,6,0,1,0,0,485,468,334,308,148,153,2,6,0,1,0,0,1,0,335,308,149,153,2,6,0,1,0,0,5,4,1,3,2,1,2,0,0,0,0,0,0,0,1,3,2,1,2,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,12,980,522,458,357,305,156,149,1,1,0,1,0,0,8,2,364,307,157,149,7,3,1,1,1,0,517,455,354,303,154,148,1,1,0,1,0,0,8,2,361,305,155,148,7,3,1,1,1,0,5,3,3,2,2,1,0,0,0,0,0,0,0,0,3,2,2,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,13,855,420,435,290,321,126,109,2,1,0,0,0,0,2,4,292,325,126,110,4,4,0,0,0,0,415,431,287,319,124,107,2,1,0,0,0,0,2,4,289,323,124,108,4,4,0,0,0,0,5,4,3,2,2,2,0,0,0,0,0,0,0,0,3,2,2,2,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,14,720,356,364,284,289,70,70,2,0,0,2,0,0,0,3,284,291,70,71,2,2,0,3,0,0,354,364,283,289,69,70,2,0,0,2,0,0,0,3,283,291,69,71,2,2,0,3,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,15,525,247,278,186,205,60,71,0,1,0,0,0,0,1,1,187,206,60,71,1,2,0,0,0,0,246,275,185,202,60,71,0,1,0,0,0,0,1,1,186,203,60,71,1,2,0,0,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,16,392,165,227,120,165,42,62,2,0,0,0,0,0,1,0,121,165,42,62,3,0,0,0,0,0,161,224,119,163,39,61,2,0,0,0,0,0,1,0,120,163,39,61,3,0,0,0,0,0,4,3,1,2,3,1,0,0,0,0,0,0,0,0,1,2,3,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,17,250,104,146,81,113,22,33,0,0,0,0,0,0,1,0,82,113,22,33,1,0,0,0,0,0,104,146,81,113,22,33,0,0,0,0,0,0,1,0,82,113,22,33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,5,18,226,74,152,57,109,16,42,0,0,0,0,0,0,1,1,58,110,16,42,1,0,0,1,0,0,73,152,57,109,15,42,0,0,0,0,0,0,1,1,58,110,15,42,1,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,6,0,11252,5686,5566,3751,3670,1827,1768,39,29,4,13,7,10,58,76,3806,3737,1854,1801,69,65,10,25,8,15,5564,5459,3687,3608,1804,1750,23,23,2,13,0,0,48,65,3732,3667,1826,1777,48,55,8,23,1,3,122,107,64,62,23,18,16,6,2,0,7,10,10,11,74,70,28,24,21,10,2,2,7,12 -050,01,037,Alabama,Coosa County,6,1,476,257,219,152,136,95,68,1,1,0,0,1,0,8,14,160,149,101,78,2,4,1,2,1,0,246,212,147,133,92,67,0,0,0,0,0,0,7,12,154,145,98,75,0,3,1,1,0,0,11,7,5,3,3,1,1,1,0,0,1,0,1,2,6,4,3,3,2,1,0,1,1,0 -050,01,037,Alabama,Coosa County,6,2,552,262,290,154,173,99,98,4,2,0,1,0,5,5,11,159,183,104,106,4,5,0,2,0,5,251,272,147,166,98,95,2,1,0,1,0,0,4,9,151,174,102,102,2,3,0,2,0,0,11,18,7,7,1,3,2,1,0,0,0,5,1,2,8,9,2,4,2,2,0,0,0,5 -050,01,037,Alabama,Coosa County,6,3,597,299,298,196,182,95,113,2,0,0,1,0,0,6,2,202,184,97,113,5,0,1,3,0,0,291,291,193,177,94,111,0,0,0,1,0,0,4,2,197,179,95,111,2,0,1,3,0,0,8,7,3,5,1,2,2,0,0,0,0,0,2,0,5,5,2,2,3,0,0,0,0,0 -050,01,037,Alabama,Coosa County,6,4,678,369,309,230,187,130,118,2,1,1,0,0,0,6,3,234,190,135,118,5,2,1,2,0,0,366,305,229,184,128,118,2,1,1,0,0,0,6,2,233,186,133,118,5,2,1,1,0,0,3,4,1,3,2,0,0,0,0,0,0,0,0,1,1,4,2,0,0,0,0,1,0,0 -050,01,037,Alabama,Coosa County,6,5,616,334,282,192,169,141,109,1,2,0,1,0,0,0,1,192,170,141,110,1,2,0,1,0,0,333,278,191,167,141,107,1,2,0,1,0,0,0,1,191,168,141,108,1,2,0,1,0,0,1,4,1,2,0,2,0,0,0,0,0,0,0,0,1,2,0,2,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,6,6,559,292,267,156,174,124,80,7,2,2,0,0,3,3,8,159,180,126,83,8,7,2,2,0,4,281,257,152,170,124,80,3,1,0,0,0,0,2,6,154,174,125,83,4,4,0,2,0,1,11,10,4,4,0,0,4,1,2,0,0,3,1,2,5,6,1,0,4,3,2,0,0,3 -050,01,037,Alabama,Coosa County,6,7,600,314,286,176,186,129,86,3,3,0,2,1,0,5,9,181,194,130,87,7,8,0,4,1,2,303,275,171,176,128,86,0,2,0,2,0,0,4,9,175,184,129,87,3,7,0,4,0,2,11,11,5,10,1,0,3,1,0,0,1,0,1,0,6,10,1,0,4,1,0,0,1,0 -050,01,037,Alabama,Coosa County,6,8,653,343,310,232,219,106,86,1,1,0,0,1,0,3,4,235,223,107,88,3,3,0,0,1,0,318,295,213,209,104,83,0,0,0,0,0,0,1,3,214,212,104,84,1,2,0,0,0,0,25,15,19,10,2,3,1,1,0,0,1,0,2,1,21,11,3,4,2,1,0,0,1,0 -050,01,037,Alabama,Coosa County,6,9,783,377,406,242,234,126,156,4,3,0,3,1,1,4,9,246,240,126,158,7,10,1,4,1,3,367,398,235,231,125,155,4,2,0,3,0,0,3,7,238,237,125,156,6,8,1,4,0,0,10,8,7,3,1,1,0,1,0,0,1,1,1,2,8,3,1,2,1,2,0,0,1,3 -050,01,037,Alabama,Coosa County,6,10,810,427,383,283,216,139,157,1,5,1,1,2,1,1,3,284,218,140,159,1,7,1,1,2,1,421,378,281,214,138,156,1,5,1,1,0,0,0,2,281,215,138,157,1,7,1,1,0,0,6,5,2,2,1,1,0,0,0,0,2,1,1,1,3,3,2,2,0,0,0,0,2,1 -050,01,037,Alabama,Coosa County,6,11,939,486,453,336,283,144,162,4,6,0,1,1,0,1,1,337,284,145,163,5,6,1,1,2,0,480,451,334,282,143,161,2,6,0,1,0,0,1,1,335,283,144,162,3,6,1,1,1,0,6,2,2,1,1,1,2,0,0,0,1,0,0,0,2,1,1,1,2,0,0,0,1,0 -050,01,037,Alabama,Coosa County,6,12,974,524,450,358,301,158,146,2,1,0,1,0,0,6,1,363,302,160,147,6,1,1,1,0,0,518,444,356,296,155,145,1,1,0,1,0,0,6,1,361,297,157,146,5,1,1,1,0,0,6,6,2,5,3,1,1,0,0,0,0,0,0,0,2,5,3,1,1,0,0,0,0,0 -050,01,037,Alabama,Coosa County,6,13,840,428,412,295,301,125,106,3,1,0,0,0,0,5,4,300,305,126,108,6,3,1,0,0,0,423,410,292,300,123,105,3,1,0,0,0,0,5,4,297,304,124,107,6,3,1,0,0,0,5,2,3,1,2,1,0,0,0,0,0,0,0,0,3,1,2,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,6,14,743,347,396,275,314,70,76,2,0,0,2,0,0,0,4,275,318,70,76,2,4,0,2,0,0,345,394,274,313,69,75,2,0,0,2,0,0,0,4,274,317,69,75,2,4,0,2,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,6,15,554,275,279,211,200,63,76,0,1,0,0,0,0,1,2,212,202,63,76,1,3,0,0,0,0,274,276,210,197,63,76,0,1,0,0,0,0,1,2,211,199,63,76,1,3,0,0,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,6,16,390,168,222,125,167,39,55,2,0,0,0,0,0,2,0,127,167,39,55,4,0,0,0,0,0,164,220,124,166,36,54,2,0,0,0,0,0,2,0,126,166,36,54,4,0,0,0,0,0,4,2,1,1,3,1,0,0,0,0,0,0,0,0,1,1,3,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,6,17,253,104,149,79,114,24,35,0,0,0,0,0,0,1,0,80,114,24,35,1,0,0,0,0,0,104,148,79,113,24,35,0,0,0,0,0,0,1,0,80,113,24,35,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,6,18,235,80,155,59,114,20,41,0,0,0,0,0,0,1,0,60,114,20,41,1,0,0,0,0,0,79,155,59,114,19,41,0,0,0,0,0,0,1,0,60,114,19,41,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,7,0,11037,5563,5474,3669,3613,1781,1736,39,27,5,12,7,10,62,76,3723,3681,1815,1776,71,58,9,22,9,15,5437,5365,3601,3550,1758,1716,23,21,3,12,0,0,52,66,3645,3610,1786,1750,51,47,7,21,2,4,126,109,68,63,23,20,16,6,2,0,7,10,10,10,78,71,29,26,20,11,2,1,7,11 -050,01,037,Alabama,Coosa County,7,1,470,261,209,143,127,108,67,0,0,0,0,0,0,10,15,153,140,115,78,3,5,1,0,0,1,252,203,137,123,105,67,0,0,0,0,0,0,10,13,147,134,112,77,3,4,1,0,0,1,9,6,6,4,3,0,0,0,0,0,0,0,0,2,6,6,3,1,0,1,0,0,0,0 -050,01,037,Alabama,Coosa County,7,2,535,256,279,147,166,99,98,5,2,0,0,1,5,4,8,151,174,102,104,6,2,0,2,1,5,245,257,143,157,98,93,2,0,0,0,0,0,2,7,145,164,100,98,2,0,0,2,0,0,11,22,4,9,1,5,3,2,0,0,1,5,2,1,6,10,2,6,4,2,0,0,1,5 -050,01,037,Alabama,Coosa County,7,3,564,290,274,189,161,94,105,1,0,0,1,0,0,6,7,195,168,99,108,2,3,1,2,0,0,279,268,181,157,93,104,0,0,0,1,0,0,5,6,186,163,98,107,0,2,1,2,0,0,11,6,8,4,1,1,1,0,0,0,0,0,1,1,9,5,1,1,2,1,0,0,0,0 -050,01,037,Alabama,Coosa County,7,4,634,327,307,204,191,116,111,3,1,0,0,0,0,4,4,207,193,117,114,7,3,0,0,0,1,322,304,204,189,113,111,2,1,0,0,0,0,3,3,206,191,114,114,5,2,0,0,0,0,5,3,0,2,3,0,1,0,0,0,0,0,1,1,1,2,3,0,2,1,0,0,0,1 -050,01,037,Alabama,Coosa County,7,5,614,332,282,191,171,136,107,1,1,1,1,0,0,3,2,193,173,138,109,3,1,1,1,0,0,330,276,189,167,136,105,1,1,1,1,0,0,3,2,191,169,138,107,3,1,1,1,0,0,2,6,2,4,0,2,0,0,0,0,0,0,0,0,2,4,0,2,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,7,6,540,290,250,149,170,129,73,6,2,2,0,0,3,4,2,153,172,132,74,6,3,2,0,1,3,282,239,146,164,129,72,3,1,1,0,0,0,3,2,149,166,131,73,3,2,1,0,1,0,8,11,3,6,0,1,3,1,1,0,0,3,1,0,4,6,1,1,3,1,1,0,0,3 -050,01,037,Alabama,Coosa County,7,7,533,273,260,157,168,105,82,4,1,1,1,0,0,6,8,162,176,107,85,7,7,2,1,1,0,259,247,150,158,104,81,0,0,0,1,0,0,5,7,154,165,105,83,3,6,1,1,1,0,14,13,7,10,1,1,4,1,1,0,0,0,1,1,8,11,2,2,4,1,1,0,0,0 -050,01,037,Alabama,Coosa County,7,8,567,297,270,205,191,87,71,1,2,0,1,2,0,2,5,207,196,89,72,1,4,0,2,2,1,275,264,190,189,85,69,0,1,0,1,0,0,0,4,190,193,85,70,0,2,0,2,0,1,22,6,15,2,2,2,1,1,0,0,2,0,2,1,17,3,4,2,1,2,0,0,2,0 -050,01,037,Alabama,Coosa County,7,9,753,357,396,234,235,116,149,1,1,0,3,1,1,5,7,238,241,119,150,3,4,1,6,1,2,346,384,226,226,115,147,1,1,0,3,0,0,4,7,229,232,117,148,3,4,1,6,0,1,11,12,8,9,1,2,0,0,0,0,1,1,1,0,9,9,2,2,0,0,0,0,1,1 -050,01,037,Alabama,Coosa County,7,10,819,426,393,286,224,138,154,1,7,1,1,0,1,0,6,286,229,138,159,1,9,1,2,0,1,420,386,281,222,137,154,1,6,1,1,0,0,0,3,281,225,137,156,1,7,1,1,0,0,6,7,5,2,1,0,0,1,0,0,0,1,0,3,5,4,1,3,0,2,0,1,0,1 -050,01,037,Alabama,Coosa County,7,11,888,456,432,307,257,137,169,7,5,0,1,3,0,2,0,309,257,138,169,8,5,0,1,3,0,447,429,305,256,136,167,5,5,0,1,0,0,1,0,306,256,137,167,5,5,0,1,0,0,9,3,2,1,1,2,2,0,0,0,3,0,1,0,3,1,1,2,3,0,0,0,3,0 -050,01,037,Alabama,Coosa County,7,12,1005,537,468,371,322,163,139,2,4,0,1,0,0,1,2,371,323,164,140,3,4,0,2,0,1,532,466,369,320,161,139,1,4,0,1,0,0,1,2,369,321,162,140,2,4,0,2,0,1,5,2,2,2,2,0,1,0,0,0,0,0,0,0,2,2,2,0,1,0,0,0,0,0 -050,01,037,Alabama,Coosa County,7,13,860,437,423,303,306,121,113,3,0,0,0,0,0,10,4,312,309,123,115,12,3,0,0,0,0,434,420,302,305,119,111,3,0,0,0,0,0,10,4,311,308,121,113,12,3,0,0,0,0,3,3,1,1,2,2,0,0,0,0,0,0,0,0,1,1,2,2,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,7,14,763,354,409,276,314,77,90,1,0,0,2,0,0,0,3,276,317,77,91,1,2,0,2,0,0,350,406,273,312,76,89,1,0,0,2,0,0,0,3,273,315,76,90,1,2,0,2,0,0,4,3,3,2,1,1,0,0,0,0,0,0,0,0,3,2,1,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,7,15,584,301,283,235,208,64,72,1,1,0,0,0,0,1,2,236,210,64,72,2,3,0,0,0,0,299,280,234,205,63,72,1,1,0,0,0,0,1,2,235,207,63,72,2,3,0,0,0,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,7,16,408,179,229,130,170,46,58,2,0,0,0,0,0,1,1,131,171,46,58,3,0,0,1,0,0,175,228,129,170,43,57,2,0,0,0,0,0,1,1,130,171,43,57,3,0,0,1,0,0,4,1,1,0,3,1,0,0,0,0,0,0,0,0,1,0,3,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,7,17,247,99,148,75,111,22,37,0,0,0,0,0,0,2,0,76,111,23,37,2,0,0,0,0,0,99,146,75,109,22,37,0,0,0,0,0,0,2,0,76,109,23,37,2,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,7,18,253,91,162,67,121,23,41,0,0,0,0,0,0,1,0,67,121,24,41,1,0,0,0,0,0,91,162,67,121,23,41,0,0,0,0,0,0,1,0,67,121,24,41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,8,0,10935,5495,5440,3673,3595,1703,1701,41,24,4,12,7,10,67,98,3732,3686,1735,1748,71,72,15,20,10,16,5369,5326,3606,3530,1680,1684,25,18,2,12,0,0,56,82,3654,3608,1705,1723,51,57,13,19,3,3,126,114,67,65,23,17,16,6,2,0,7,10,11,16,78,78,30,25,20,15,2,1,7,13 -050,01,037,Alabama,Coosa County,8,1,481,242,239,137,139,98,74,0,0,0,0,0,0,7,26,144,163,102,92,2,6,1,3,0,2,238,231,134,136,97,74,0,0,0,0,0,0,7,21,141,157,101,89,2,5,1,2,0,0,4,8,3,3,1,0,0,0,0,0,0,0,0,5,3,6,1,3,0,1,0,1,0,2 -050,01,037,Alabama,Coosa County,8,2,520,254,266,149,161,92,84,3,1,0,0,1,5,9,15,157,176,98,94,4,3,3,2,1,6,243,248,146,153,89,82,1,0,0,0,0,0,7,13,152,166,94,91,1,1,3,2,0,1,11,18,3,8,3,2,2,1,0,0,1,5,2,2,5,10,4,3,3,2,0,0,1,5 -050,01,037,Alabama,Coosa County,8,3,539,274,265,178,162,89,95,3,1,0,1,0,0,4,6,181,167,91,101,6,3,0,1,0,0,266,255,173,156,88,93,1,0,0,1,0,0,4,5,176,160,90,98,4,1,0,1,0,0,8,10,5,6,1,2,2,1,0,0,0,0,0,1,5,7,1,3,2,2,0,0,0,0 -050,01,037,Alabama,Coosa County,8,4,574,288,286,188,180,93,100,2,1,0,0,0,0,5,5,193,185,96,102,3,2,0,1,1,1,281,283,186,178,91,100,1,1,0,0,0,0,3,4,189,182,93,102,1,1,0,1,1,1,7,3,2,2,2,0,1,0,0,0,0,0,2,1,4,3,3,0,2,1,0,0,0,0 -050,01,037,Alabama,Coosa County,8,5,596,341,255,203,162,133,91,1,1,0,0,0,0,4,1,206,163,136,91,3,2,0,0,0,0,338,248,202,157,132,89,1,1,0,0,0,0,3,1,204,158,134,89,3,2,0,0,0,0,3,7,1,5,1,2,0,0,0,0,0,0,1,0,2,5,2,2,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,8,6,556,296,260,160,172,127,83,5,0,2,1,0,2,2,2,162,174,128,83,5,2,3,1,0,2,286,250,155,166,127,82,2,0,1,1,0,0,1,1,156,167,127,82,2,1,2,1,0,0,10,10,5,6,0,1,3,0,1,0,0,2,1,1,6,7,1,1,3,1,1,0,0,2 -050,01,037,Alabama,Coosa County,8,7,533,267,266,160,174,93,80,6,2,1,0,0,1,7,9,166,183,96,83,8,8,3,0,1,1,253,252,153,164,92,80,2,0,0,0,0,0,6,8,158,172,94,82,4,6,2,0,1,0,14,14,7,10,1,0,4,2,1,0,0,1,1,1,8,11,2,1,4,2,1,0,0,1 -050,01,037,Alabama,Coosa County,8,8,544,281,263,195,188,82,68,1,2,0,2,2,0,1,3,196,191,83,70,1,3,0,2,2,0,265,257,185,186,80,66,0,1,0,2,0,0,0,2,185,188,80,67,0,2,0,2,0,0,16,6,10,2,2,2,1,1,0,0,2,0,1,1,11,3,3,3,1,1,0,0,2,0 -050,01,037,Alabama,Coosa County,8,9,711,343,368,232,221,103,137,1,1,0,3,1,1,6,5,238,225,106,137,5,6,0,3,1,2,326,357,218,213,103,135,1,1,0,3,0,0,4,5,222,217,105,135,4,6,0,3,0,1,17,11,14,8,0,2,0,0,0,0,1,1,2,0,16,8,1,2,1,0,0,0,1,1 -050,01,037,Alabama,Coosa County,8,10,797,416,381,282,227,132,140,1,5,1,1,0,0,0,8,282,233,132,144,1,11,1,2,0,1,408,375,276,224,130,140,1,4,1,1,0,0,0,6,276,229,130,143,1,8,1,2,0,0,8,6,6,3,2,0,0,1,0,0,0,0,0,2,6,4,2,1,0,3,0,0,0,1 -050,01,037,Alabama,Coosa County,8,11,888,458,430,301,243,146,179,5,3,0,1,3,1,3,3,304,246,146,179,6,6,1,1,4,1,449,424,299,242,145,177,3,3,0,1,0,0,2,1,301,243,145,177,3,4,1,1,1,0,9,6,2,1,1,2,2,0,0,0,3,1,1,2,3,3,1,2,3,2,0,0,3,1 -050,01,037,Alabama,Coosa County,8,12,997,515,482,358,329,150,144,6,6,0,1,0,0,1,2,359,331,151,144,6,8,0,1,0,0,510,482,356,329,148,144,5,6,0,1,0,0,1,2,357,331,149,144,5,8,0,1,0,0,5,0,2,0,2,0,1,0,0,0,0,0,0,0,2,0,2,0,1,0,0,0,0,0 -050,01,037,Alabama,Coosa County,8,13,895,458,437,325,307,120,125,1,0,0,0,0,0,12,5,334,312,123,126,12,3,1,1,0,0,455,433,324,305,118,123,1,0,0,0,0,0,12,5,333,310,121,124,12,3,1,1,0,0,3,4,1,2,2,2,0,0,0,0,0,0,0,0,1,2,2,2,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,8,14,774,370,404,277,314,89,86,3,0,0,1,0,0,1,3,278,316,89,87,4,3,0,1,0,0,366,400,274,311,88,85,3,0,0,1,0,0,1,3,275,313,88,86,4,3,0,1,0,0,4,4,3,3,1,1,0,0,0,0,0,0,0,0,3,3,1,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,8,15,604,317,287,250,213,65,69,1,1,0,1,0,0,1,3,251,216,65,69,1,4,1,1,0,0,315,283,249,209,64,69,1,1,0,1,0,0,1,3,250,212,64,69,1,4,1,1,0,0,2,4,1,4,1,0,0,0,0,0,0,0,0,0,1,4,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,8,16,403,178,225,129,168,47,55,1,0,0,0,0,0,1,2,129,170,48,55,2,2,0,0,0,0,173,224,127,168,44,54,1,0,0,0,0,0,1,2,127,170,45,54,2,2,0,0,0,0,5,1,2,0,3,1,0,0,0,0,0,0,0,0,2,0,3,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,8,17,256,102,154,78,111,22,43,1,0,0,0,0,0,1,0,79,111,22,43,1,0,1,0,0,0,102,152,78,109,22,43,1,0,0,0,0,0,1,0,79,109,22,43,1,0,1,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,8,18,267,95,172,71,124,22,48,0,0,0,0,0,0,2,0,73,124,23,48,1,0,0,0,0,0,95,172,71,124,22,48,0,0,0,0,0,0,2,0,73,124,23,48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,0,10812,5466,5346,3674,3533,1685,1683,41,24,3,12,7,10,56,84,3724,3606,1711,1722,63,64,19,26,8,15,5337,5238,3600,3472,1665,1666,25,18,1,12,0,0,46,70,3641,3533,1685,1698,46,53,13,23,0,3,129,108,74,61,20,17,16,6,2,0,7,10,10,14,83,73,26,24,17,11,6,3,8,12 -050,01,037,Alabama,Coosa County,9,1,477,253,224,146,140,101,73,0,0,0,0,0,0,6,11,152,149,105,80,1,5,1,0,0,1,246,213,139,135,101,72,0,0,0,0,0,0,6,6,145,140,105,76,1,3,1,0,0,0,7,11,7,5,0,1,0,0,0,0,0,0,0,5,7,9,0,4,0,2,0,0,0,1 -050,01,037,Alabama,Coosa County,9,2,474,241,233,141,135,92,76,2,1,0,0,1,4,5,17,146,148,95,86,3,7,1,4,1,5,231,217,136,127,91,75,1,0,0,0,0,0,3,15,139,138,93,84,1,6,1,3,0,1,10,16,5,8,1,1,1,1,0,0,1,4,2,2,7,10,2,2,2,1,0,1,1,4 -050,01,037,Alabama,Coosa County,9,3,517,268,249,184,159,77,82,3,1,0,1,0,1,4,5,187,164,80,86,3,1,2,2,0,1,259,241,178,157,76,79,1,0,0,1,0,0,4,4,181,161,79,82,1,0,2,2,0,0,9,8,6,2,1,3,2,1,0,0,0,1,0,1,6,3,1,4,2,1,0,0,0,1 -050,01,037,Alabama,Coosa County,9,4,555,271,284,165,178,99,99,2,1,0,0,0,0,5,6,169,184,101,102,3,2,3,2,0,0,264,279,163,174,98,99,0,1,0,0,0,0,3,5,165,179,99,102,1,2,2,1,0,0,7,5,2,4,1,0,2,0,0,0,0,0,2,1,4,5,2,0,2,0,1,1,0,0 -050,01,037,Alabama,Coosa County,9,5,603,341,262,202,164,133,96,2,1,0,0,0,0,4,1,205,165,136,97,3,1,1,0,0,0,338,257,201,160,131,95,2,1,0,0,0,0,4,1,204,161,134,96,3,1,1,0,0,0,3,5,1,4,2,1,0,0,0,0,0,0,0,0,1,4,2,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,6,542,292,250,171,165,116,83,4,0,0,1,0,0,1,1,171,165,117,83,5,1,0,2,0,0,286,245,167,161,116,82,2,0,0,1,0,0,1,1,167,161,117,82,3,1,0,2,0,0,6,5,4,4,0,1,2,0,0,0,0,0,0,0,4,4,0,1,2,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,7,538,277,261,156,168,105,82,7,2,2,0,0,3,7,6,163,173,109,86,10,5,2,0,0,3,261,247,149,160,105,82,2,0,0,0,0,0,5,5,154,164,107,85,5,3,0,0,0,0,16,14,7,8,0,0,5,2,2,0,0,3,2,1,9,9,2,1,5,2,2,0,0,3 -050,01,037,Alabama,Coosa County,9,8,525,275,250,182,172,90,69,1,2,0,2,1,0,1,5,183,177,90,72,1,4,1,2,1,0,260,243,173,168,87,67,0,1,0,2,0,0,0,5,173,173,87,70,0,3,0,2,0,0,15,7,9,4,3,2,1,1,0,0,1,0,1,0,10,4,3,2,1,1,1,0,1,0 -050,01,037,Alabama,Coosa County,9,9,661,324,337,229,219,90,108,1,1,0,2,1,1,3,6,232,225,91,110,1,6,2,3,1,1,306,326,213,212,90,106,1,1,0,2,0,0,2,5,215,217,91,108,1,5,1,3,0,0,18,11,16,7,0,2,0,0,0,0,1,1,1,1,17,8,0,2,0,1,1,0,1,1 -050,01,037,Alabama,Coosa County,9,10,806,397,409,272,231,119,165,1,3,1,2,1,0,3,8,275,238,120,166,3,7,1,5,1,2,387,403,266,228,117,165,1,2,1,2,0,0,2,6,268,234,117,165,3,5,1,4,0,1,10,6,6,3,2,0,0,1,0,0,1,0,1,2,7,4,3,1,0,2,0,1,1,1 -050,01,037,Alabama,Coosa County,9,11,858,456,402,307,229,140,166,5,3,0,1,3,1,1,2,307,231,141,166,5,4,1,2,4,1,447,398,305,228,139,165,3,3,0,1,0,0,0,1,305,229,139,165,3,3,0,2,0,0,9,4,2,1,1,1,2,0,0,0,3,1,1,1,2,2,2,1,2,1,1,0,4,1 -050,01,037,Alabama,Coosa County,9,12,957,473,484,329,324,136,151,6,7,0,0,0,0,2,2,331,326,136,152,7,8,1,0,0,0,469,483,327,324,135,150,5,7,0,0,0,0,2,2,329,326,135,151,6,8,1,0,0,0,4,1,2,0,1,1,1,0,0,0,0,0,0,0,2,0,1,1,1,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,13,936,494,442,359,309,129,126,1,1,0,1,0,0,5,5,364,314,130,127,6,5,0,1,0,0,490,438,358,307,126,124,1,1,0,1,0,0,5,5,363,312,127,125,6,5,0,1,0,0,4,4,1,2,3,2,0,0,0,0,0,0,0,0,1,2,3,2,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,14,809,408,401,299,306,102,90,3,0,0,1,0,0,4,4,302,310,103,90,6,4,1,1,0,0,404,398,296,304,101,89,3,0,0,1,0,0,4,4,299,308,102,89,6,4,1,1,0,0,4,3,3,2,1,1,0,0,0,0,0,0,0,0,3,2,1,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,15,617,305,312,247,243,57,65,1,0,0,1,0,0,0,3,247,245,57,66,1,2,0,2,0,0,303,309,246,240,56,65,1,0,0,1,0,0,0,3,246,242,56,66,1,2,0,2,0,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,16,395,185,210,135,151,48,56,0,1,0,0,0,0,2,2,137,152,48,57,1,2,1,0,0,1,181,207,133,149,46,55,0,1,0,0,0,0,2,2,135,150,46,56,1,2,1,0,0,1,4,3,2,2,2,1,0,0,0,0,0,0,0,0,2,2,2,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,17,271,112,159,80,114,29,45,2,0,0,0,0,0,1,0,81,114,29,45,2,0,1,0,0,0,111,157,80,112,28,45,2,0,0,0,0,0,1,0,81,112,28,45,2,0,1,0,0,0,1,2,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,9,18,271,94,177,70,126,22,51,0,0,0,0,0,0,2,0,72,126,23,51,2,0,0,0,0,0,94,177,70,126,22,51,0,0,0,0,0,0,2,0,72,126,23,51,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,10,0,10724,5363,5361,3615,3554,1635,1676,40,24,4,12,7,11,62,84,3675,3632,1660,1712,68,61,12,25,12,16,5233,5239,3543,3482,1612,1657,24,18,2,12,0,1,52,69,3593,3548,1631,1685,49,49,9,23,5,3,130,122,72,72,23,19,16,6,2,0,7,10,10,15,82,84,29,27,19,12,3,2,7,13 -050,01,037,Alabama,Coosa County,10,1,463,236,227,141,141,86,74,0,0,0,0,0,1,9,11,149,151,91,81,1,4,2,0,2,3,226,209,134,129,83,73,0,0,0,0,0,1,9,6,142,135,88,77,1,2,2,0,2,1,10,18,7,12,3,1,0,0,0,0,0,0,0,5,7,16,3,4,0,2,0,0,0,2 -050,01,037,Alabama,Coosa County,10,2,461,234,227,131,137,92,68,2,1,0,0,1,3,8,18,139,155,98,77,5,6,1,3,1,4,224,211,126,129,91,66,1,0,0,0,0,0,6,16,132,145,95,73,4,5,1,3,0,1,10,16,5,8,1,2,1,1,0,0,1,3,2,2,7,10,3,4,1,1,0,0,1,3 -050,01,037,Alabama,Coosa County,10,3,509,249,260,157,170,85,81,3,1,0,1,0,2,4,5,161,175,86,82,5,4,1,2,0,2,240,248,151,166,84,77,1,0,0,1,0,0,4,4,155,170,85,78,3,2,1,2,0,0,9,12,6,4,1,4,2,1,0,0,0,2,0,1,6,5,1,4,2,2,0,0,0,2 -050,01,037,Alabama,Coosa County,10,4,518,270,248,178,156,86,86,2,1,0,0,0,0,4,5,182,160,87,88,4,2,1,3,0,0,261,246,174,154,85,86,0,1,0,0,0,0,2,5,176,158,85,88,2,2,0,3,0,0,9,2,4,2,1,0,2,0,0,0,0,0,2,0,6,2,2,0,2,0,1,0,0,0 -050,01,037,Alabama,Coosa County,10,5,595,328,267,196,177,124,87,2,1,1,0,0,0,5,2,200,179,127,88,2,2,1,0,3,0,325,260,195,171,122,87,2,1,1,0,0,0,5,1,199,172,125,87,2,2,1,0,3,0,3,7,1,6,2,0,0,0,0,0,0,0,0,1,1,7,2,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,10,6,578,309,269,188,168,117,98,4,0,0,1,0,0,0,2,188,170,117,99,4,1,0,1,0,0,306,263,186,165,117,96,3,0,0,1,0,0,0,1,186,166,117,97,3,0,0,1,0,0,3,6,2,3,0,2,1,0,0,0,0,0,0,1,2,4,0,2,1,1,0,0,0,0 -050,01,037,Alabama,Coosa County,10,7,504,238,266,138,175,88,81,4,1,2,0,0,3,6,6,144,181,92,83,6,2,2,3,0,3,224,255,132,169,88,81,0,0,0,0,0,0,4,5,136,174,90,83,2,1,0,2,0,0,14,11,6,6,0,0,4,1,2,0,0,3,2,1,8,7,2,0,4,1,2,1,0,3 -050,01,037,Alabama,Coosa County,10,8,535,277,258,185,175,86,73,2,2,0,2,1,0,3,6,188,181,86,76,5,5,0,2,1,0,265,249,179,168,84,72,0,1,0,2,0,0,2,6,181,174,84,75,2,4,0,2,0,0,12,9,6,7,2,1,2,1,0,0,1,0,1,0,7,7,2,1,3,1,0,0,1,0 -050,01,037,Alabama,Coosa County,10,9,626,316,310,225,209,86,95,2,1,0,0,1,0,2,5,227,214,87,96,3,4,0,1,1,0,297,299,210,203,85,92,1,0,0,0,0,0,1,4,211,207,86,92,1,3,0,1,0,0,19,11,15,6,1,3,1,1,0,0,1,0,1,1,16,7,1,4,2,1,0,0,1,0 -050,01,037,Alabama,Coosa County,10,10,782,373,409,251,237,116,158,1,3,0,3,1,1,4,7,255,241,118,162,3,5,0,5,1,3,362,402,244,234,114,158,1,2,0,3,0,0,3,5,247,238,116,161,2,3,0,4,0,1,11,7,7,3,2,0,0,1,0,0,1,1,1,2,8,3,2,1,1,2,0,1,1,2 -050,01,037,Alabama,Coosa County,10,11,820,441,379,297,210,136,162,3,3,1,1,3,1,1,2,298,212,137,163,3,4,1,1,3,1,433,375,295,209,135,161,2,3,1,1,0,0,0,1,295,210,135,162,2,3,1,1,0,0,8,4,2,1,1,1,1,0,0,0,3,1,1,1,3,2,2,1,1,1,0,0,3,1 -050,01,037,Alabama,Coosa County,10,12,982,461,521,320,341,132,172,8,6,0,1,0,0,1,1,321,342,132,173,9,6,0,1,0,0,456,517,318,338,131,171,6,6,0,1,0,0,1,1,319,339,131,172,7,6,0,1,0,0,5,4,2,3,1,1,2,0,0,0,0,0,0,0,2,3,1,1,2,0,0,0,0,0 -050,01,037,Alabama,Coosa County,10,13,912,502,410,362,279,133,124,1,3,0,1,0,0,6,3,368,282,134,124,5,6,1,1,0,0,498,407,360,277,131,123,1,3,0,1,0,0,6,3,366,280,132,123,5,6,1,1,0,0,4,3,2,2,2,1,0,0,0,0,0,0,0,0,2,2,2,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,10,14,809,403,406,284,310,113,91,2,0,0,0,0,0,4,5,288,315,113,92,5,4,1,0,0,0,397,402,280,308,111,89,2,0,0,0,0,0,4,5,284,313,111,90,5,4,1,0,0,0,6,4,4,2,2,2,0,0,0,0,0,0,0,0,4,2,2,2,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,10,15,636,302,334,247,265,53,63,2,0,0,2,0,0,0,4,247,268,53,65,2,3,0,2,0,0,300,333,246,264,52,63,2,0,0,2,0,0,0,4,246,267,52,65,2,3,0,2,0,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,10,16,436,212,224,161,157,50,64,0,1,0,0,0,0,1,2,162,159,50,64,1,3,0,0,0,0,211,220,160,153,50,64,0,1,0,0,0,0,1,2,161,155,50,64,1,3,0,0,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,10,17,287,117,170,83,121,30,49,2,0,0,0,0,0,2,0,85,121,30,49,4,0,0,0,0,0,113,167,82,119,27,48,2,0,0,0,0,0,2,0,84,119,27,48,4,0,0,0,0,0,4,3,1,2,3,1,0,0,0,0,0,0,0,0,1,2,3,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,10,18,271,95,176,71,126,22,50,0,0,0,0,0,0,2,0,73,126,22,50,1,0,1,0,0,0,95,176,71,126,22,50,0,0,0,0,0,0,2,0,73,126,22,50,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,11,0,10619,5314,5305,3610,3479,1585,1698,41,24,4,11,7,11,67,82,3670,3556,1611,1737,78,60,12,21,12,15,5168,5182,3526,3406,1560,1678,24,18,2,11,0,1,56,68,3579,3472,1581,1711,57,48,8,16,1,4,146,123,84,73,25,20,17,6,2,0,7,10,11,14,91,84,30,26,21,12,4,5,11,11 -050,01,037,Alabama,Coosa County,11,1,489,252,237,161,143,78,80,1,0,0,0,0,1,12,13,173,156,86,88,4,4,1,1,0,1,232,222,148,134,73,78,0,0,0,0,0,1,11,9,159,143,80,85,3,2,1,0,0,1,20,15,13,9,5,2,1,0,0,0,0,0,1,4,14,13,6,3,1,2,0,1,0,0 -050,01,037,Alabama,Coosa County,11,2,436,246,190,144,116,91,61,1,1,0,0,1,0,9,12,152,126,96,70,4,5,1,0,2,1,232,181,134,111,90,60,0,0,0,0,0,0,8,10,142,120,95,67,2,3,1,0,0,1,14,9,10,5,1,1,1,1,0,0,1,0,1,2,10,6,1,3,2,2,0,0,2,0 -050,01,037,Alabama,Coosa County,11,3,518,247,271,149,174,90,82,4,1,0,0,0,5,4,9,153,183,92,88,5,1,0,1,1,7,237,251,144,165,88,78,2,0,0,0,0,0,3,8,147,173,89,83,3,0,0,1,1,2,10,20,5,9,2,4,2,1,0,0,0,5,1,1,6,10,3,5,2,1,0,0,0,5 -050,01,037,Alabama,Coosa County,11,4,494,259,235,172,146,79,86,2,0,0,0,0,0,6,3,178,149,81,88,6,1,0,0,0,0,250,232,168,144,78,85,0,0,0,0,0,0,4,3,172,147,79,87,3,1,0,0,0,0,9,3,4,2,1,1,2,0,0,0,0,0,2,0,6,2,2,1,3,0,0,0,0,0 -050,01,037,Alabama,Coosa County,11,5,543,293,250,174,148,113,98,2,1,1,0,0,0,3,3,176,150,114,99,2,1,4,2,0,1,290,246,173,145,111,98,2,1,1,0,0,0,3,2,175,147,112,99,2,1,4,1,0,0,3,4,1,3,2,0,0,0,0,0,0,0,0,1,1,3,2,0,0,0,0,1,0,1 -050,01,037,Alabama,Coosa County,11,6,599,325,274,206,180,116,90,2,1,0,1,0,0,1,2,206,182,117,92,2,1,1,1,0,0,325,268,206,176,116,89,2,1,0,1,0,0,1,1,206,177,117,90,2,1,1,1,0,0,0,6,0,4,0,1,0,0,0,0,0,0,0,1,0,5,0,2,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,11,7,485,222,263,124,170,89,85,5,1,2,0,0,3,2,4,126,174,90,85,6,4,2,1,0,3,210,254,119,167,89,84,1,0,0,0,0,0,1,3,120,170,89,84,2,2,0,1,0,0,12,9,5,3,0,1,4,1,2,0,0,3,1,1,6,4,1,1,4,2,2,0,0,3 -050,01,037,Alabama,Coosa County,11,8,528,274,254,178,168,86,74,3,2,0,2,1,0,6,8,183,175,88,79,8,6,0,2,2,0,258,242,169,158,84,73,0,1,0,2,0,0,5,8,174,165,86,78,4,5,0,2,0,0,16,12,9,10,2,1,3,1,0,0,1,0,1,0,9,10,2,1,4,1,0,0,2,0 -050,01,037,Alabama,Coosa County,11,9,588,299,289,216,200,78,83,1,1,0,0,1,0,3,5,218,205,79,84,2,3,1,2,2,0,280,278,202,193,77,81,0,0,0,0,0,0,1,4,203,197,77,82,1,2,0,1,0,0,19,11,14,7,1,2,1,1,0,0,1,0,2,1,15,8,2,2,1,1,1,1,2,0 -050,01,037,Alabama,Coosa County,11,10,772,353,419,243,235,103,171,2,3,0,3,1,1,4,6,246,241,103,174,6,6,0,4,2,1,343,411,236,232,102,170,2,2,0,3,0,0,3,4,239,236,102,173,5,3,0,3,0,0,10,8,7,3,1,1,0,1,0,0,1,1,1,2,7,5,1,1,1,3,0,1,2,1 -050,01,037,Alabama,Coosa County,11,11,775,408,367,277,207,126,152,1,3,1,1,2,1,1,3,278,209,126,153,1,5,2,2,2,1,400,363,273,206,125,151,1,3,1,1,0,0,0,2,273,208,125,151,1,5,1,1,0,0,8,4,4,1,1,1,0,0,0,0,2,1,1,1,5,1,1,2,0,0,1,1,2,1 -050,01,037,Alabama,Coosa County,11,12,955,452,503,315,311,127,184,8,6,0,1,1,0,1,1,316,312,128,184,8,7,0,1,1,0,446,501,312,310,127,183,6,6,0,1,0,0,1,1,313,311,128,183,6,7,0,1,0,0,6,2,3,1,0,1,2,0,0,0,1,0,0,0,3,1,0,1,2,0,0,0,1,0 -050,01,037,Alabama,Coosa County,11,13,952,522,430,378,299,136,126,2,3,0,1,0,0,6,1,384,300,136,126,8,3,0,2,0,0,516,424,376,294,133,125,1,3,0,1,0,0,6,1,382,295,133,125,7,3,0,2,0,0,6,6,2,5,3,1,1,0,0,0,0,0,0,0,2,5,3,1,1,0,0,0,0,0 -050,01,037,Alabama,Coosa County,11,14,788,396,392,280,296,109,90,3,0,0,0,0,0,4,6,284,302,109,90,7,6,0,0,0,0,390,390,276,295,107,89,3,0,0,0,0,0,4,6,280,301,107,89,7,6,0,0,0,0,6,2,4,1,2,1,0,0,0,0,0,0,0,0,4,1,2,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,11,15,666,310,356,252,284,56,67,2,0,0,2,0,0,0,3,252,287,56,67,2,3,0,2,0,0,308,352,251,281,55,66,2,0,0,2,0,0,0,3,251,284,55,66,2,3,0,2,0,0,2,4,1,3,1,1,0,0,0,0,0,0,0,0,1,3,1,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,11,16,464,234,230,179,161,54,66,0,1,0,0,0,0,1,2,180,163,55,66,1,3,0,0,0,0,233,225,178,156,54,66,0,1,0,0,0,0,1,2,179,158,55,66,1,3,0,0,0,0,1,5,1,5,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,11,17,288,123,165,88,116,31,48,2,0,0,0,0,0,2,1,89,117,32,49,4,1,0,0,0,0,119,163,87,115,28,47,2,0,0,0,0,0,2,1,88,116,29,48,4,1,0,0,0,0,4,2,1,1,3,1,0,0,0,0,0,0,0,0,1,1,3,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,11,18,279,99,180,74,125,23,55,0,0,0,0,0,0,2,0,76,125,23,55,2,0,0,0,0,0,99,179,74,124,23,55,0,0,0,0,0,0,2,0,76,124,23,55,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,12,0,10677,5363,5314,3621,3498,1614,1687,42,24,6,12,7,11,73,82,3689,3570,1647,1726,72,58,22,29,9,15,5209,5188,3530,3420,1588,1669,25,18,4,12,0,1,62,68,3587,3481,1616,1702,51,45,17,25,2,4,154,126,91,78,26,18,17,6,2,0,7,10,11,14,102,89,31,24,21,13,5,4,7,11 -050,01,037,Alabama,Coosa County,12,1,461,232,229,147,139,74,80,1,0,0,0,0,1,10,9,156,148,81,86,3,1,2,0,0,3,217,220,139,132,69,78,0,0,0,0,0,1,9,9,147,141,76,84,1,1,2,0,0,3,15,9,8,7,5,2,1,0,0,0,0,0,1,0,9,7,5,2,2,0,0,0,0,0 -050,01,037,Alabama,Coosa County,12,2,465,256,209,157,130,85,63,0,0,2,0,0,0,12,16,169,143,92,72,3,8,4,3,0,0,246,195,147,122,85,63,0,0,2,0,0,0,12,10,159,130,92,69,3,4,4,2,0,0,10,14,10,8,0,0,0,0,0,0,0,0,0,6,10,13,0,3,0,4,0,1,0,0 -050,01,037,Alabama,Coosa County,12,3,518,258,260,153,157,95,87,5,2,0,0,1,5,4,9,157,166,97,91,6,4,1,3,1,5,244,237,147,146,93,83,2,0,0,0,0,0,2,8,149,154,93,86,3,2,1,3,0,0,14,23,6,11,2,4,3,2,0,0,1,5,2,1,8,12,4,5,3,2,0,0,1,5 -050,01,037,Alabama,Coosa County,12,4,483,254,229,167,147,78,81,1,0,0,0,0,0,8,1,175,148,82,81,2,1,3,0,0,0,241,225,157,144,77,80,0,0,0,0,0,0,7,1,164,145,81,80,1,1,2,0,0,0,13,4,10,3,1,1,1,0,0,0,0,0,1,0,11,3,1,1,1,0,1,0,0,0 -050,01,037,Alabama,Coosa County,12,5,528,269,259,159,156,105,98,3,1,0,0,0,0,2,4,161,160,106,100,4,3,0,0,0,0,264,256,159,154,102,98,2,1,0,0,0,0,1,3,160,157,103,99,2,3,0,0,0,0,5,3,0,2,3,0,1,0,0,0,0,0,1,1,1,3,3,1,2,0,0,0,0,0 -050,01,037,Alabama,Coosa County,12,6,611,352,259,196,177,151,78,1,1,1,1,0,0,3,2,199,179,152,78,2,1,1,3,1,0,351,253,195,172,151,78,1,1,1,1,0,0,3,1,198,173,152,78,2,1,1,2,1,0,1,6,1,5,0,0,0,0,0,0,0,0,0,1,1,6,0,0,0,0,0,1,0,0 -050,01,037,Alabama,Coosa County,12,7,516,264,252,155,165,102,79,4,1,1,1,0,3,2,3,156,166,103,81,4,2,3,3,0,3,255,242,151,161,102,77,1,0,0,1,0,0,1,3,151,162,103,79,1,1,1,3,0,0,9,10,4,4,0,2,3,1,1,0,0,3,1,0,5,4,0,2,3,1,2,0,0,3 -050,01,037,Alabama,Coosa County,12,8,514,255,259,162,170,83,79,4,1,1,1,0,0,5,8,166,177,85,84,8,5,1,2,0,0,237,247,152,160,81,79,0,0,0,1,0,0,4,7,155,166,82,84,4,3,0,2,0,0,18,12,10,10,2,0,4,1,1,0,0,0,1,1,11,11,3,0,4,2,1,0,0,0 -050,01,037,Alabama,Coosa County,12,9,573,288,285,206,204,75,73,1,2,0,1,2,0,4,5,210,209,77,75,4,5,0,1,2,0,272,279,196,201,74,72,0,1,0,1,0,0,2,4,198,205,75,74,1,3,0,1,0,0,16,6,10,3,1,1,1,1,0,0,2,0,2,1,12,4,2,1,3,2,0,0,2,0 -050,01,037,Alabama,Coosa County,12,10,770,362,408,250,242,105,156,1,1,0,3,1,1,5,5,255,245,107,159,3,3,2,4,1,2,346,399,237,235,104,155,1,1,0,3,0,0,4,5,241,238,105,158,3,3,2,4,0,1,16,9,13,7,1,1,0,0,0,0,1,1,1,0,14,7,2,1,0,0,0,0,1,1 -050,01,037,Alabama,Coosa County,12,11,781,401,380,274,210,125,157,1,5,1,1,0,1,0,6,274,214,125,160,1,7,1,3,0,2,392,374,267,209,123,157,1,4,1,1,0,0,0,3,267,212,123,159,1,5,1,1,0,0,9,6,7,1,2,0,0,1,0,0,0,1,0,3,7,2,2,1,0,2,0,2,0,2 -050,01,037,Alabama,Coosa County,12,12,922,444,478,311,275,117,197,11,5,0,1,3,0,2,0,313,275,117,197,11,5,2,1,3,0,435,475,308,274,117,195,9,5,0,1,0,0,1,0,309,274,117,195,9,5,1,1,0,0,9,3,3,1,0,2,2,0,0,0,3,0,1,0,4,1,0,2,2,0,1,0,3,0 -050,01,037,Alabama,Coosa County,12,13,964,506,458,369,331,134,120,2,4,0,1,0,0,1,2,370,333,135,121,2,5,0,1,0,0,501,453,367,326,132,120,1,4,0,1,0,0,1,2,368,328,133,121,1,5,0,1,0,0,5,5,2,5,2,0,1,0,0,0,0,0,0,0,2,5,2,0,1,0,0,0,0,0 -050,01,037,Alabama,Coosa County,12,14,820,425,395,298,288,114,101,3,0,0,0,0,0,10,6,307,294,116,101,10,5,2,1,1,0,421,391,296,287,112,98,3,0,0,0,0,0,10,6,305,293,114,98,10,5,2,1,1,0,4,4,2,1,2,3,0,0,0,0,0,0,0,0,2,1,2,3,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,12,15,687,315,372,253,296,61,72,1,0,0,2,0,0,0,2,253,298,61,73,1,0,0,3,0,0,311,370,250,295,60,71,1,0,0,2,0,0,0,2,250,297,60,72,1,0,0,3,0,0,4,2,3,1,1,1,0,0,0,0,0,0,0,0,3,1,1,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,12,16,498,259,239,204,173,53,63,1,1,0,0,0,0,1,2,205,175,53,64,2,2,0,0,0,0,257,232,203,166,52,63,1,1,0,0,0,0,1,2,204,168,52,64,2,2,0,0,0,0,2,7,1,7,1,0,0,0,0,0,0,0,0,0,1,7,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,12,17,290,122,168,85,119,34,47,2,0,0,0,0,0,1,2,86,121,34,47,3,1,0,1,0,0,118,167,84,119,31,46,2,0,0,0,0,0,1,2,85,121,31,46,3,1,0,1,0,0,4,1,1,0,3,1,0,0,0,0,0,0,0,0,1,0,3,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,12,18,276,101,175,75,119,23,56,0,0,0,0,0,0,3,0,77,119,24,56,3,0,0,0,0,0,101,173,75,117,23,56,0,0,0,0,0,0,3,0,77,117,24,56,3,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,0,10650,5333,5317,3626,3518,1575,1667,47,26,7,14,7,11,71,81,3692,3590,1609,1705,76,61,19,24,10,20,5186,5194,3540,3442,1551,1650,30,20,5,14,0,1,60,67,3595,3503,1578,1682,57,46,14,24,3,8,147,123,86,76,24,17,17,6,2,0,7,10,11,14,97,87,31,23,19,15,5,0,7,12 -050,01,037,Alabama,Coosa County,13,1,456,231,225,152,144,67,74,1,2,1,0,0,0,10,5,161,149,76,77,2,2,2,1,1,1,219,216,145,137,64,72,0,2,1,0,0,0,9,5,153,142,72,75,1,2,1,1,1,1,12,9,7,7,3,2,1,0,0,0,0,0,1,0,8,7,4,2,1,0,1,0,0,0 -050,01,037,Alabama,Coosa County,13,2,480,254,226,156,139,83,74,0,0,2,0,0,1,13,12,168,149,89,82,6,3,4,0,0,4,243,212,145,130,83,74,0,0,2,0,0,1,13,7,157,137,89,80,6,0,4,0,0,2,11,14,11,9,0,0,0,0,0,0,0,0,0,5,11,12,0,2,0,3,0,0,0,2 -050,01,037,Alabama,Coosa County,13,3,482,252,230,151,135,93,77,3,1,0,0,1,5,4,12,155,146,96,82,5,5,0,3,1,6,239,213,144,129,92,74,1,0,0,0,0,0,2,10,146,138,94,78,2,3,0,3,0,1,13,17,7,6,1,3,2,1,0,0,1,5,2,2,9,8,2,4,3,2,0,0,1,5 -050,01,037,Alabama,Coosa County,13,4,486,252,234,162,144,82,85,4,1,0,0,0,0,4,4,164,147,86,86,4,2,1,2,1,2,241,227,154,140,81,83,2,0,0,0,0,0,4,4,156,143,85,84,2,1,1,2,1,2,11,7,8,4,1,2,2,1,0,0,0,0,0,0,8,4,1,2,2,1,0,0,0,0 -050,01,037,Alabama,Coosa County,13,5,495,265,230,161,150,97,73,2,1,0,0,0,0,5,6,166,155,99,76,3,2,2,1,0,2,259,227,160,148,95,73,1,1,0,0,0,0,3,5,163,152,96,75,2,2,1,1,0,2,6,3,1,2,2,0,1,0,0,0,0,0,2,1,3,3,3,1,1,0,1,0,0,0 -050,01,037,Alabama,Coosa County,13,6,597,332,265,194,182,131,81,3,1,1,0,0,0,3,1,197,183,132,81,4,2,1,0,1,0,330,259,193,177,130,81,3,1,1,0,0,0,3,0,196,177,131,81,4,1,1,0,1,0,2,6,1,5,1,0,0,0,0,0,0,0,0,1,1,6,1,0,0,1,0,0,0,0 -050,01,037,Alabama,Coosa County,13,7,530,267,263,163,178,97,79,5,0,1,2,0,2,1,2,164,180,98,81,5,0,1,2,0,2,258,256,159,174,97,78,2,0,0,2,0,0,0,2,159,176,97,80,2,0,0,2,0,0,9,7,4,4,0,1,3,0,1,0,0,2,1,0,5,4,1,1,3,0,1,0,0,2 -050,01,037,Alabama,Coosa County,13,8,545,274,271,167,174,96,85,4,2,1,0,0,1,6,9,173,183,99,88,7,7,1,1,0,1,257,257,158,164,94,85,0,0,0,0,0,0,5,8,163,172,96,87,3,5,0,1,0,0,17,14,9,10,2,0,4,2,1,0,0,1,1,1,10,11,3,1,4,2,1,0,0,1 -050,01,037,Alabama,Coosa County,13,9,540,260,280,183,201,71,72,3,2,0,2,2,0,1,3,184,204,71,74,3,3,1,2,2,0,252,273,180,197,70,71,2,1,0,2,0,0,0,2,180,199,70,73,2,1,0,2,0,0,8,7,3,4,1,1,1,1,0,0,2,0,1,1,4,5,1,1,1,2,1,0,2,0 -050,01,037,Alabama,Coosa County,13,10,737,337,400,237,237,92,151,1,1,0,4,1,1,6,6,243,242,95,155,3,2,1,6,1,1,319,391,222,230,92,150,1,1,0,4,0,0,4,6,226,235,93,154,3,2,1,6,0,0,18,9,15,7,0,1,0,0,0,0,1,1,2,0,17,7,2,1,0,0,0,0,1,1 -050,01,037,Alabama,Coosa County,13,11,785,399,386,280,224,117,149,1,5,1,2,0,0,0,6,280,230,117,150,1,10,1,2,0,0,388,382,272,223,114,149,1,4,1,2,0,0,0,4,272,227,114,150,1,7,1,2,0,0,11,4,8,1,3,0,0,1,0,0,0,0,0,2,8,3,3,0,0,3,0,0,0,0 -050,01,037,Alabama,Coosa County,13,12,909,445,464,304,252,129,205,7,3,0,1,3,1,2,2,306,253,129,207,8,4,1,1,3,1,438,459,303,251,129,203,5,3,0,1,0,0,1,1,304,252,129,204,5,3,1,1,0,0,7,5,1,1,0,2,2,0,0,0,3,1,1,1,2,1,0,3,3,1,0,0,3,1 -050,01,037,Alabama,Coosa County,13,13,979,495,484,360,353,128,125,6,4,0,1,0,0,1,1,361,354,128,125,7,5,0,1,0,0,488,481,356,350,126,125,5,4,0,1,0,0,1,1,357,351,126,125,6,5,0,1,0,0,7,3,4,3,2,0,1,0,0,0,0,0,0,0,4,3,2,0,1,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,14,848,434,414,323,302,101,105,1,2,0,0,0,0,9,5,332,307,101,106,8,6,2,0,0,0,431,409,322,300,99,102,1,2,0,0,0,0,9,5,331,305,99,103,8,6,2,0,0,0,3,5,1,2,2,3,0,0,0,0,0,0,0,0,1,2,2,3,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,15,698,334,364,251,290,79,71,3,0,0,1,0,0,1,2,252,291,79,73,4,2,0,1,0,0,329,361,248,288,77,70,3,0,0,1,0,0,1,2,249,289,77,72,4,2,0,1,0,0,5,3,3,2,2,1,0,0,0,0,0,0,0,0,3,2,2,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,16,532,279,253,223,188,54,60,1,1,0,1,0,0,1,3,224,190,54,61,1,4,1,1,0,0,277,246,222,181,53,60,1,1,0,1,0,0,1,3,223,183,53,61,1,4,1,1,0,0,2,7,1,7,1,0,0,0,0,0,0,0,0,0,1,7,1,0,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,17,288,122,166,84,122,36,42,1,0,0,0,0,0,1,2,84,124,37,42,2,2,0,0,0,0,117,165,82,122,33,41,1,0,0,0,0,0,1,2,82,124,34,41,2,2,0,0,0,0,5,1,2,0,3,1,0,0,0,0,0,0,0,0,2,0,3,1,0,0,0,0,0,0 -050,01,037,Alabama,Coosa County,13,18,263,101,162,75,103,22,59,1,0,0,0,0,0,3,0,78,103,23,59,3,0,0,0,0,0,101,160,75,101,22,59,1,0,0,0,0,0,3,0,78,101,23,59,3,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,0,37765,18288,19477,15628,16528,2215,2517,119,113,75,83,0,1,251,235,15874,16753,2325,2635,244,232,97,101,2,3,18036,19246,15426,16337,2194,2499,102,96,68,81,0,1,246,232,15667,16560,2300,2615,226,214,90,98,2,2,252,231,202,191,21,18,17,17,7,2,0,0,5,3,207,193,25,20,18,18,7,3,0,1 -050,01,039,Alabama,Covington County,1,1,2265,1189,1076,931,872,199,141,5,10,3,3,0,0,51,50,982,922,239,176,14,22,5,6,0,0,1168,1048,914,847,198,138,4,10,3,3,0,0,49,50,963,897,236,173,13,22,5,6,0,0,21,28,17,25,1,3,1,0,0,0,0,0,2,0,19,25,3,3,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,2,2347,1242,1105,978,899,207,153,6,11,6,7,0,0,45,35,1023,933,241,183,13,19,10,9,0,0,1211,1087,954,884,202,153,5,8,6,7,0,0,44,35,998,918,235,183,12,16,10,9,0,0,31,18,24,15,5,0,1,3,0,0,0,0,1,0,25,15,6,0,1,3,0,0,0,0 -050,01,039,Alabama,Covington County,1,3,2408,1232,1176,990,916,196,219,14,6,6,7,0,0,26,28,1016,944,213,240,19,13,11,7,0,0,1214,1153,980,898,194,216,9,4,6,7,0,0,25,28,1005,926,211,237,13,11,11,7,0,0,18,23,10,18,2,3,5,2,0,0,0,0,1,0,11,18,2,3,6,2,0,0,0,0 -050,01,039,Alabama,Covington County,1,4,2482,1295,1187,1048,933,213,232,5,5,7,3,0,0,22,14,1070,947,224,240,16,12,8,3,0,0,1284,1166,1039,914,213,232,3,3,7,3,0,0,22,14,1061,928,224,240,14,10,8,3,0,0,11,21,9,19,0,0,2,2,0,0,0,0,0,0,9,19,0,0,2,2,0,0,0,0 -050,01,039,Alabama,Covington County,1,5,1961,963,998,784,841,151,139,9,9,5,2,0,0,14,7,796,848,152,142,21,11,7,4,1,0,941,984,766,830,149,138,9,8,3,1,0,0,14,7,778,837,150,141,21,10,5,3,1,0,22,14,18,11,2,1,0,1,2,1,0,0,0,0,18,11,2,1,0,1,2,1,0,0 -050,01,039,Alabama,Covington County,1,6,2099,1021,1078,876,878,129,175,7,10,4,6,0,0,5,9,881,886,130,178,11,16,4,7,0,0,999,1065,858,868,126,174,7,9,3,6,0,0,5,8,863,875,127,176,11,15,3,7,0,0,22,13,18,10,3,1,0,1,1,0,0,0,0,1,18,11,3,2,0,1,1,0,0,0 -050,01,039,Alabama,Covington County,1,7,2011,976,1035,858,860,102,149,4,9,3,7,0,0,9,10,867,870,104,151,8,14,6,11,0,0,957,1024,842,852,101,148,4,7,2,7,0,0,8,10,850,862,102,150,8,12,5,11,0,0,19,11,16,8,1,1,0,2,1,0,0,0,1,0,17,8,2,1,0,2,1,0,0,0 -050,01,039,Alabama,Covington County,1,8,2258,1121,1137,954,941,141,178,8,2,12,8,0,0,6,8,960,949,141,178,12,9,13,9,1,1,1100,1123,937,929,140,176,7,2,10,8,0,0,6,8,943,937,140,176,11,9,11,9,1,1,21,14,17,12,1,2,1,0,2,0,0,0,0,0,17,12,1,2,1,0,2,0,0,0 -050,01,039,Alabama,Covington County,1,9,2260,1093,1167,920,997,148,138,9,10,7,9,0,1,9,12,929,1008,148,140,18,18,7,12,0,1,1074,1151,906,984,147,138,6,7,6,9,0,1,9,12,915,995,147,140,15,15,6,12,0,1,19,16,14,13,1,0,3,3,1,0,0,0,0,0,14,13,1,0,3,3,1,0,0,0 -050,01,039,Alabama,Covington County,1,10,2731,1359,1372,1195,1167,137,184,7,9,13,7,0,0,7,5,1202,1171,137,185,14,13,13,8,0,1,1348,1356,1185,1156,136,181,7,8,13,7,0,0,7,4,1192,1160,136,181,14,12,13,7,0,0,11,16,10,11,1,3,0,1,0,0,0,0,0,1,10,11,1,4,0,1,0,1,0,1 -050,01,039,Alabama,Covington County,1,11,2920,1455,1465,1258,1253,168,182,10,11,6,6,0,0,13,13,1271,1264,169,187,22,22,6,6,0,0,1438,1455,1244,1245,167,181,8,11,6,6,0,0,13,12,1257,1255,168,186,20,21,6,6,0,0,17,10,14,8,1,1,2,0,0,0,0,0,0,1,14,9,1,1,2,1,0,0,0,0 -050,01,039,Alabama,Covington County,1,12,2626,1276,1350,1121,1155,127,173,13,6,0,5,0,0,15,11,1135,1166,127,173,27,16,2,6,0,0,1267,1339,1112,1146,127,173,13,4,0,5,0,0,15,11,1126,1157,127,173,27,14,2,6,0,0,9,11,9,9,0,0,0,2,0,0,0,0,0,0,9,9,0,0,0,2,0,0,0,0 -050,01,039,Alabama,Covington County,1,13,2458,1175,1283,1050,1153,109,107,7,9,1,5,0,0,8,9,1057,1158,110,111,13,18,3,5,0,0,1169,1274,1046,1146,107,105,7,9,1,5,0,0,8,9,1053,1151,108,109,13,18,3,5,0,0,6,9,4,7,2,2,0,0,0,0,0,0,0,0,4,7,2,2,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,14,2030,944,1086,862,973,63,99,7,2,1,4,0,0,11,8,872,981,65,100,18,9,1,4,0,0,937,1075,855,963,63,98,7,2,1,4,0,0,11,8,865,971,65,99,18,9,1,4,0,0,7,11,7,10,0,1,0,0,0,0,0,0,0,0,7,10,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,15,1695,726,969,657,869,63,90,2,4,1,2,0,0,3,4,660,873,63,90,5,8,1,2,0,0,718,962,649,862,63,90,2,4,1,2,0,0,3,4,652,866,63,90,5,8,1,2,0,0,8,7,8,7,0,0,0,0,0,0,0,0,0,0,8,7,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,16,1372,602,770,564,705,29,62,2,0,0,0,0,0,7,3,571,708,29,62,9,3,0,0,0,0,597,767,561,702,28,62,1,0,0,0,0,0,7,3,568,705,28,62,8,3,0,0,0,0,5,3,3,3,1,0,1,0,0,0,0,0,0,0,3,3,1,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,17,937,356,581,337,539,17,37,2,0,0,1,0,0,0,4,337,543,17,40,2,4,0,1,0,0,353,578,334,536,17,37,2,0,0,1,0,0,0,4,334,540,17,40,2,4,0,1,0,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,1,18,905,263,642,245,577,16,59,2,0,0,1,0,0,0,5,245,582,16,59,2,5,0,1,0,0,261,639,244,575,16,59,1,0,0,0,0,0,0,5,244,580,16,59,1,5,0,0,0,0,2,3,1,2,0,0,1,0,0,1,0,0,0,0,1,2,0,0,1,0,0,1,0,0 -050,01,039,Alabama,Covington County,2,0,37762,18286,19476,15627,16527,2215,2517,119,113,75,83,0,1,250,235,15872,16752,2325,2635,243,232,97,101,2,3,18034,19245,15425,16336,2194,2499,102,96,68,81,0,1,245,232,15665,16559,2300,2615,225,214,90,98,2,2,252,231,202,191,21,18,17,17,7,2,0,0,5,3,207,193,25,20,18,18,7,3,0,1 -050,01,039,Alabama,Covington County,2,1,2265,1189,1076,931,872,199,141,5,10,3,3,0,0,51,50,982,922,239,176,14,22,5,6,0,0,1168,1048,914,847,198,138,4,10,3,3,0,0,49,50,963,897,236,173,13,22,5,6,0,0,21,28,17,25,1,3,1,0,0,0,0,0,2,0,19,25,3,3,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,2,2347,1242,1105,978,899,207,153,6,11,6,7,0,0,45,35,1023,933,241,183,13,19,10,9,0,0,1211,1087,954,884,202,153,5,8,6,7,0,0,44,35,998,918,235,183,12,16,10,9,0,0,31,18,24,15,5,0,1,3,0,0,0,0,1,0,25,15,6,0,1,3,0,0,0,0 -050,01,039,Alabama,Covington County,2,3,2408,1232,1176,990,916,196,219,14,6,6,7,0,0,26,28,1016,944,213,240,19,13,11,7,0,0,1214,1153,980,898,194,216,9,4,6,7,0,0,25,28,1005,926,211,237,13,11,11,7,0,0,18,23,10,18,2,3,5,2,0,0,0,0,1,0,11,18,2,3,6,2,0,0,0,0 -050,01,039,Alabama,Covington County,2,4,2482,1295,1187,1048,933,213,232,5,5,7,3,0,0,22,14,1070,947,224,240,16,12,8,3,0,0,1284,1166,1039,914,213,232,3,3,7,3,0,0,22,14,1061,928,224,240,14,10,8,3,0,0,11,21,9,19,0,0,2,2,0,0,0,0,0,0,9,19,0,0,2,2,0,0,0,0 -050,01,039,Alabama,Covington County,2,5,1960,963,997,784,840,151,139,9,9,5,2,0,0,14,7,796,847,152,142,21,11,7,4,1,0,941,983,766,829,149,138,9,8,3,1,0,0,14,7,778,836,150,141,21,10,5,3,1,0,22,14,18,11,2,1,0,1,2,1,0,0,0,0,18,11,2,1,0,1,2,1,0,0 -050,01,039,Alabama,Covington County,2,6,2099,1020,1079,875,879,129,175,7,10,4,6,0,0,5,9,880,887,130,178,11,16,4,7,0,0,998,1066,857,869,126,174,7,9,3,6,0,0,5,8,862,876,127,176,11,15,3,7,0,0,22,13,18,10,3,1,0,1,1,0,0,0,0,1,18,11,3,2,0,1,1,0,0,0 -050,01,039,Alabama,Covington County,2,7,2011,976,1035,858,860,102,149,4,9,3,7,0,0,9,10,867,870,104,151,8,14,6,11,0,0,957,1024,842,852,101,148,4,7,2,7,0,0,8,10,850,862,102,150,8,12,5,11,0,0,19,11,16,8,1,1,0,2,1,0,0,0,1,0,17,8,2,1,0,2,1,0,0,0 -050,01,039,Alabama,Covington County,2,8,2258,1121,1137,954,941,141,178,8,2,12,8,0,0,6,8,960,949,141,178,12,9,13,9,1,1,1100,1123,937,929,140,176,7,2,10,8,0,0,6,8,943,937,140,176,11,9,11,9,1,1,21,14,17,12,1,2,1,0,2,0,0,0,0,0,17,12,1,2,1,0,2,0,0,0 -050,01,039,Alabama,Covington County,2,9,2260,1093,1167,920,997,148,138,9,10,7,9,0,1,9,12,929,1008,148,140,18,18,7,12,0,1,1074,1151,906,984,147,138,6,7,6,9,0,1,9,12,915,995,147,140,15,15,6,12,0,1,19,16,14,13,1,0,3,3,1,0,0,0,0,0,14,13,1,0,3,3,1,0,0,0 -050,01,039,Alabama,Covington County,2,10,2732,1359,1373,1195,1168,137,184,7,9,13,7,0,0,7,5,1202,1172,137,185,14,13,13,8,0,1,1348,1357,1185,1157,136,181,7,8,13,7,0,0,7,4,1192,1161,136,181,14,12,13,7,0,0,11,16,10,11,1,3,0,1,0,0,0,0,0,1,10,11,1,4,0,1,0,1,0,1 -050,01,039,Alabama,Covington County,2,11,2921,1455,1466,1258,1254,168,182,10,11,6,6,0,0,13,13,1271,1265,169,187,22,22,6,6,0,0,1438,1456,1244,1246,167,181,8,11,6,6,0,0,13,12,1257,1256,168,186,20,21,6,6,0,0,17,10,14,8,1,1,2,0,0,0,0,0,0,1,14,9,1,1,2,1,0,0,0,0 -050,01,039,Alabama,Covington County,2,12,2624,1275,1349,1121,1154,127,173,13,6,0,5,0,0,14,11,1134,1165,127,173,26,16,2,6,0,0,1266,1338,1112,1145,127,173,13,4,0,5,0,0,14,11,1125,1156,127,173,26,14,2,6,0,0,9,11,9,9,0,0,0,2,0,0,0,0,0,0,9,9,0,0,0,2,0,0,0,0 -050,01,039,Alabama,Covington County,2,13,2458,1175,1283,1050,1153,109,107,7,9,1,5,0,0,8,9,1057,1158,110,111,13,18,3,5,0,0,1169,1274,1046,1146,107,105,7,9,1,5,0,0,8,9,1053,1151,108,109,13,18,3,5,0,0,6,9,4,7,2,2,0,0,0,0,0,0,0,0,4,7,2,2,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,14,2029,944,1085,862,972,63,99,7,2,1,4,0,0,11,8,872,980,65,100,18,9,1,4,0,0,937,1074,855,962,63,98,7,2,1,4,0,0,11,8,865,970,65,99,18,9,1,4,0,0,7,11,7,10,0,1,0,0,0,0,0,0,0,0,7,10,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,15,1695,726,969,657,869,63,90,2,4,1,2,0,0,3,4,660,873,63,90,5,8,1,2,0,0,718,962,649,862,63,90,2,4,1,2,0,0,3,4,652,866,63,90,5,8,1,2,0,0,8,7,8,7,0,0,0,0,0,0,0,0,0,0,8,7,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,16,1371,602,769,564,704,29,62,2,0,0,0,0,0,7,3,571,707,29,62,9,3,0,0,0,0,597,766,561,701,28,62,1,0,0,0,0,0,7,3,568,704,28,62,8,3,0,0,0,0,5,3,3,3,1,0,1,0,0,0,0,0,0,0,3,3,1,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,17,937,356,581,337,539,17,37,2,0,0,1,0,0,0,4,337,543,17,40,2,4,0,1,0,0,353,578,334,536,17,37,2,0,0,1,0,0,0,4,334,540,17,40,2,4,0,1,0,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,2,18,905,263,642,245,577,16,59,2,0,0,1,0,0,0,5,245,582,16,59,2,5,0,1,0,0,261,639,244,575,16,59,1,0,0,0,0,0,0,5,244,580,16,59,1,5,0,0,0,0,2,3,1,2,0,0,1,0,0,1,0,0,0,0,1,2,0,0,1,0,0,1,0,0 -050,01,039,Alabama,Covington County,3,0,37810,18317,19493,15644,16535,2225,2521,119,115,77,82,0,1,252,239,15888,16762,2357,2646,230,216,97,98,2,13,18057,19258,15434,16339,2204,2503,102,99,71,80,0,1,246,236,15673,16565,2332,2626,211,198,90,95,2,13,260,235,210,196,21,18,17,16,6,2,0,0,6,3,215,197,25,20,19,18,7,3,0,0 -050,01,039,Alabama,Covington County,3,1,2249,1182,1067,928,862,196,140,6,12,2,4,0,0,50,49,977,911,238,179,13,19,7,7,0,1,1157,1040,907,837,195,138,5,12,2,4,0,0,48,49,954,886,235,177,12,19,7,7,0,1,25,27,21,25,1,2,1,0,0,0,0,0,2,0,23,25,3,2,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,2,2351,1247,1104,982,896,206,154,7,10,6,6,0,0,46,38,1028,934,239,182,18,18,8,6,0,2,1216,1085,958,880,201,154,6,7,6,6,0,0,45,38,1003,918,234,182,16,15,8,6,0,2,31,19,24,16,5,0,1,3,0,0,0,0,1,0,25,16,5,0,2,3,0,0,0,0 -050,01,039,Alabama,Covington County,3,3,2417,1240,1177,993,918,199,219,14,6,6,6,0,0,28,28,1020,945,219,238,21,15,8,7,0,0,1221,1152,982,899,197,215,9,4,6,6,0,0,27,28,1008,926,216,234,16,13,8,7,0,0,19,25,11,19,2,4,5,2,0,0,0,0,1,0,12,19,3,4,5,2,0,0,0,0 -050,01,039,Alabama,Covington County,3,4,2445,1270,1175,1024,919,212,232,6,6,7,4,0,0,21,14,1045,931,224,241,14,11,8,5,0,1,1258,1154,1014,900,212,232,4,4,7,4,0,0,21,14,1035,912,224,241,12,9,8,5,0,1,12,21,10,19,0,0,2,2,0,0,0,0,0,0,10,19,0,0,2,2,0,0,0,0 -050,01,039,Alabama,Covington County,3,5,1997,984,1013,799,848,157,146,9,9,4,2,0,0,15,8,813,855,164,149,18,13,5,3,0,1,966,997,785,835,155,145,9,8,3,1,0,0,14,8,798,842,162,148,17,12,4,2,0,1,18,16,14,13,2,1,0,1,1,1,0,0,1,0,15,13,2,1,1,1,1,1,0,0 -050,01,039,Alabama,Covington County,3,6,2106,1021,1085,875,886,129,174,6,9,6,6,0,0,5,10,880,896,130,179,9,11,7,9,0,1,999,1072,857,876,126,173,6,8,5,6,0,0,5,9,862,885,127,177,9,10,6,9,0,1,22,13,18,10,3,1,0,1,1,0,0,0,0,1,18,11,3,2,0,1,1,0,0,0 -050,01,039,Alabama,Covington County,3,7,2019,988,1031,868,860,104,148,5,9,4,6,0,0,7,8,874,867,107,149,8,13,5,8,1,2,968,1020,851,852,103,147,5,7,3,6,0,0,6,8,857,859,105,148,8,11,3,8,1,2,20,11,17,8,1,1,0,2,1,0,0,0,1,0,17,8,2,1,0,2,2,0,0,0 -050,01,039,Alabama,Covington County,3,8,2253,1113,1140,945,943,142,178,7,4,12,7,0,0,7,8,952,950,144,182,10,9,14,7,0,0,1090,1126,926,931,141,176,6,4,10,7,0,0,7,8,933,938,143,180,9,9,12,7,0,0,23,14,19,12,1,2,1,0,2,0,0,0,0,0,19,12,1,2,1,0,2,0,0,0 -050,01,039,Alabama,Covington County,3,9,2255,1099,1156,928,989,146,138,10,8,7,9,0,1,8,11,936,1000,148,141,14,15,9,10,0,1,1079,1141,913,976,145,138,7,6,6,9,0,1,8,11,921,987,147,141,11,13,8,10,0,1,20,15,15,13,1,0,3,2,1,0,0,0,0,0,15,13,1,0,3,2,1,0,0,0 -050,01,039,Alabama,Covington County,3,10,2723,1355,1368,1187,1164,140,182,6,9,13,7,0,0,9,6,1196,1169,141,182,14,13,13,9,0,1,1343,1352,1176,1153,139,179,6,8,13,7,0,0,9,5,1185,1158,140,179,14,11,13,8,0,1,12,16,11,11,1,3,0,1,0,0,0,0,0,1,11,11,1,3,0,2,0,1,0,0 -050,01,039,Alabama,Covington County,3,11,2910,1446,1464,1253,1253,164,180,10,11,7,6,0,0,12,14,1265,1266,164,183,20,21,9,6,0,2,1428,1453,1238,1244,163,179,8,11,7,6,0,0,12,13,1250,1257,163,181,18,20,9,6,0,2,18,11,15,9,1,1,2,0,0,0,0,0,0,1,15,9,1,2,2,1,0,0,0,0 -050,01,039,Alabama,Covington County,3,12,2646,1282,1364,1128,1166,128,174,12,6,0,6,0,0,14,12,1142,1175,131,177,24,17,0,7,0,0,1274,1353,1120,1157,128,174,12,4,0,6,0,0,14,12,1134,1166,131,177,24,15,0,7,0,0,8,11,8,9,0,0,0,2,0,0,0,0,0,0,8,9,0,0,0,2,0,0,0,0 -050,01,039,Alabama,Covington County,3,13,2471,1181,1290,1054,1157,111,110,6,9,1,5,0,0,9,9,1062,1165,113,114,13,15,2,5,0,0,1175,1281,1050,1150,109,108,6,9,1,5,0,0,9,9,1058,1158,111,112,13,15,2,5,0,0,6,9,4,7,2,2,0,0,0,0,0,0,0,0,4,7,2,2,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,14,2043,953,1090,871,978,63,97,7,3,1,4,0,0,11,8,882,986,63,99,18,9,1,4,0,0,946,1080,864,969,63,96,7,3,1,4,0,0,11,8,875,977,63,98,18,9,1,4,0,0,7,10,7,9,0,1,0,0,0,0,0,0,0,0,7,9,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,15,1685,720,965,651,863,63,92,2,4,1,2,0,0,3,4,653,867,64,93,4,7,1,2,1,0,712,957,643,855,63,92,2,4,1,2,0,0,3,4,645,859,64,93,4,7,1,2,1,0,8,8,8,8,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,16,1386,607,779,568,714,31,62,2,0,0,0,0,0,6,3,573,717,33,62,7,3,0,0,0,0,602,776,565,711,30,62,1,0,0,0,0,0,6,3,570,714,32,62,6,3,0,0,0,0,5,3,3,3,1,0,1,0,0,0,0,0,0,0,3,3,1,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,17,943,365,578,344,536,18,37,2,0,0,1,0,0,1,4,344,540,19,37,3,3,0,2,0,1,361,575,340,533,18,37,2,0,0,1,0,0,1,4,340,537,19,37,3,3,0,2,0,1,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,3,18,911,264,647,246,583,16,58,2,0,0,1,0,0,0,5,246,588,16,59,2,4,0,1,0,0,262,644,245,581,16,58,1,0,0,0,0,0,0,5,245,586,16,59,1,4,0,0,0,0,2,3,1,2,0,0,1,0,0,1,0,0,0,0,1,2,0,0,1,0,0,1,0,0 -050,01,039,Alabama,Covington County,4,0,38023,18380,19643,15697,16650,2214,2526,123,116,79,89,0,1,267,261,15955,16898,2342,2660,243,242,105,105,8,4,18100,19398,15483,16448,2187,2504,101,100,73,88,0,1,256,257,15731,16692,2311,2636,216,224,96,104,8,4,280,245,214,202,27,22,22,16,6,1,0,0,11,4,224,206,31,24,27,18,9,1,0,0 -050,01,039,Alabama,Covington County,4,1,2230,1161,1069,909,866,193,142,5,9,1,5,0,0,53,47,962,913,232,180,13,15,7,9,0,1,1140,1041,893,840,191,140,4,9,1,5,0,0,51,47,944,887,229,178,11,15,7,9,0,1,21,28,16,26,2,2,1,0,0,0,0,0,2,0,18,26,3,2,2,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,2,2402,1261,1141,996,936,208,148,6,7,8,6,0,0,43,44,1038,979,240,181,17,19,9,7,1,0,1231,1120,974,919,202,146,5,5,8,6,0,0,42,44,1015,962,233,179,16,17,9,7,1,0,30,21,22,17,6,2,1,2,0,0,0,0,1,0,23,17,7,2,1,2,0,0,0,0 -050,01,039,Alabama,Covington County,4,3,2438,1249,1189,993,939,200,213,16,8,4,3,0,0,36,26,1027,965,226,230,24,16,7,5,1,0,1225,1172,979,928,197,210,10,5,4,3,0,0,35,26,1012,954,223,227,18,13,6,5,1,0,24,17,14,11,3,3,6,3,0,0,0,0,1,0,15,11,3,3,6,3,1,0,0,0 -050,01,039,Alabama,Covington County,4,4,2315,1203,1112,973,853,192,220,7,8,10,8,0,0,21,23,993,875,204,232,15,20,11,8,1,0,1190,1089,963,833,192,219,4,6,10,8,0,0,21,23,983,855,204,231,12,18,11,8,1,0,13,23,10,20,0,1,3,2,0,0,0,0,0,0,10,20,0,1,3,2,0,0,0,0 -050,01,039,Alabama,Covington County,4,5,2127,1061,1066,859,878,174,165,8,9,2,3,0,0,18,11,875,887,178,173,18,13,7,4,1,0,1036,1045,843,860,172,164,7,8,2,2,0,0,12,11,854,869,174,172,14,12,5,3,1,0,25,21,16,18,2,1,1,1,0,1,0,0,6,0,21,18,4,1,4,1,2,1,0,0 -050,01,039,Alabama,Covington County,4,6,2123,1019,1104,871,921,125,158,6,8,8,6,0,0,9,11,880,932,127,162,10,13,11,8,0,0,1000,1085,856,906,123,156,6,7,6,6,0,0,9,10,865,916,125,160,10,11,9,8,0,0,19,19,15,15,2,2,0,1,2,0,0,0,0,1,15,16,2,2,0,2,2,0,0,0 -050,01,039,Alabama,Covington County,4,7,2074,1019,1055,893,877,112,157,6,8,3,5,0,0,5,8,898,885,113,159,9,14,4,5,0,0,996,1044,876,869,108,157,6,6,2,5,0,0,4,7,880,876,109,159,8,11,3,5,0,0,23,11,17,8,4,0,0,2,1,0,0,0,1,1,18,9,4,0,1,3,1,0,0,0 -050,01,039,Alabama,Covington County,4,8,2158,1031,1127,889,921,122,182,4,7,9,9,0,0,7,8,896,928,123,184,9,13,10,10,0,0,1012,1113,872,910,121,179,4,7,8,9,0,0,7,8,879,917,122,181,9,13,9,10,0,0,19,14,17,11,1,3,0,0,1,0,0,0,0,0,17,11,1,3,0,0,1,0,0,0 -050,01,039,Alabama,Covington County,4,9,2309,1137,1172,955,991,149,146,13,7,11,14,0,0,9,14,963,1004,152,148,20,20,12,14,0,0,1113,1159,938,980,148,146,9,5,9,14,0,0,9,14,946,993,151,148,16,18,10,14,0,0,24,13,17,11,1,0,4,2,2,0,0,0,0,0,17,11,1,0,4,2,2,0,0,0 -050,01,039,Alabama,Covington County,4,10,2652,1322,1330,1146,1140,147,166,8,9,12,7,0,1,9,7,1155,1147,150,170,16,12,12,7,0,1,1300,1312,1128,1128,145,162,6,8,12,7,0,1,9,6,1137,1134,148,165,14,11,12,7,0,1,22,18,18,12,2,4,2,1,0,0,0,0,0,1,18,13,2,5,2,1,0,0,0,0 -050,01,039,Alabama,Covington County,4,11,2886,1419,1467,1242,1261,148,172,11,12,8,6,0,0,10,16,1252,1275,149,176,19,25,9,7,1,1,1403,1453,1229,1249,147,171,9,12,8,6,0,0,10,15,1239,1262,148,174,17,25,9,7,1,1,16,14,13,12,1,1,2,0,0,0,0,0,0,1,13,13,1,2,2,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,12,2720,1316,1404,1155,1200,139,184,9,6,0,3,0,0,13,11,1167,1209,140,186,20,15,1,5,1,0,1307,1394,1146,1191,139,184,9,5,0,3,0,0,13,11,1158,1200,140,186,20,14,1,5,1,0,9,10,9,9,0,0,0,1,0,0,0,0,0,0,9,9,0,0,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,4,13,2541,1216,1325,1081,1168,116,132,7,9,1,7,0,0,11,9,1092,1176,116,134,16,16,2,7,1,1,1209,1315,1076,1161,114,130,7,8,1,7,0,0,11,9,1087,1169,114,132,16,15,2,7,1,1,7,10,5,7,2,2,0,1,0,0,0,0,0,0,5,7,2,2,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,4,14,2078,979,1099,891,999,66,85,9,4,1,2,0,0,12,9,903,1008,66,86,21,12,1,2,0,0,971,1092,883,993,66,84,9,4,1,2,0,0,12,9,895,1002,66,85,21,12,1,2,0,0,8,7,8,6,0,1,0,0,0,0,0,0,0,0,8,6,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,15,1679,717,962,656,846,57,103,1,4,0,4,0,0,3,5,659,850,58,104,3,9,0,4,0,0,710,952,649,836,57,103,1,4,0,4,0,0,3,5,652,840,58,104,3,9,0,4,0,0,7,10,7,10,0,0,0,0,0,0,0,0,0,0,7,10,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,16,1422,615,807,572,746,33,57,3,1,1,0,0,0,6,3,578,749,34,57,8,3,1,1,1,0,609,804,568,743,32,57,2,1,1,0,0,0,6,3,574,746,33,57,7,3,1,1,1,0,6,3,4,3,1,0,1,0,0,0,0,0,0,0,4,3,1,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,17,941,386,555,364,512,18,37,2,0,0,1,0,0,2,5,365,516,19,39,3,3,1,2,0,0,381,551,359,508,18,37,2,0,0,1,0,0,2,5,360,512,19,39,3,3,1,2,0,0,5,4,5,4,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,4,18,928,269,659,252,596,15,59,2,0,0,0,0,0,0,4,252,600,15,59,2,4,0,0,0,0,267,657,251,594,15,59,1,0,0,0,0,0,0,4,251,598,15,59,1,4,0,0,0,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,0,37809,18242,19567,15562,16577,2208,2521,118,108,85,90,0,1,269,270,15818,16831,2342,2659,242,232,109,114,6,8,17944,19310,15329,16362,2179,2496,103,96,80,89,0,1,253,266,15571,16612,2308,2632,215,217,103,113,3,8,298,257,233,215,29,25,15,12,5,1,0,0,16,4,247,219,34,27,27,15,6,1,3,0 -050,01,039,Alabama,Covington County,5,1,2187,1137,1050,892,853,183,143,4,7,4,4,0,0,54,43,945,894,225,178,12,11,8,7,1,3,1111,1024,871,833,180,137,3,7,4,4,0,0,53,43,924,874,221,172,11,11,8,7,0,3,26,26,21,20,3,6,1,0,0,0,0,0,1,0,21,20,4,6,1,0,0,0,1,0 -050,01,039,Alabama,Covington County,5,2,2377,1230,1147,976,935,200,153,6,9,6,4,0,0,42,46,1015,980,232,187,16,18,11,9,1,1,1200,1122,952,915,196,149,6,8,6,4,0,0,40,46,989,960,227,183,15,17,11,9,1,1,30,25,24,20,4,4,0,1,0,0,0,0,2,0,26,20,5,4,1,1,0,0,0,0 -050,01,039,Alabama,Covington County,5,3,2366,1209,1157,975,920,193,199,11,7,3,3,0,0,27,28,1002,946,210,220,20,13,4,7,0,0,1189,1142,962,907,189,198,9,6,3,3,0,0,26,28,988,933,206,219,17,12,4,7,0,0,20,15,13,13,4,1,2,1,0,0,0,0,1,0,14,13,4,1,3,1,0,0,0,0 -050,01,039,Alabama,Covington County,5,4,2279,1205,1074,956,823,207,210,7,8,13,8,0,0,22,25,977,847,219,224,15,18,16,11,0,0,1190,1047,944,799,207,209,6,6,13,8,0,0,20,25,963,823,219,223,12,16,16,11,0,0,15,27,12,24,0,1,1,2,0,0,0,0,2,0,14,24,0,1,3,2,0,0,0,0 -050,01,039,Alabama,Covington County,5,5,2194,1092,1102,884,903,182,175,8,7,5,3,0,0,13,14,896,916,186,184,15,13,7,3,1,0,1067,1081,864,884,181,175,7,6,5,2,0,0,10,14,874,897,184,184,12,12,7,2,0,0,25,21,20,19,1,0,1,1,0,1,0,0,3,0,22,19,2,0,3,1,0,1,1,0 -050,01,039,Alabama,Covington County,5,6,2093,1007,1086,854,917,128,144,7,9,3,6,0,0,15,10,868,927,133,150,16,12,4,7,1,0,986,1061,840,895,124,143,7,8,2,6,0,0,13,9,852,904,129,148,14,11,3,7,1,0,21,25,14,22,4,1,0,1,1,0,0,0,2,1,16,23,4,2,2,1,1,0,0,0 -050,01,039,Alabama,Covington County,5,7,2117,1023,1094,896,901,111,174,5,6,5,4,0,0,6,9,901,910,116,178,6,13,6,4,0,0,999,1087,880,896,106,173,5,6,4,4,0,0,4,8,883,904,110,176,5,12,5,4,0,0,24,7,16,5,5,1,0,0,1,0,0,0,2,1,18,6,6,2,1,1,1,0,0,0 -050,01,039,Alabama,Covington County,5,8,2075,1001,1074,848,875,130,176,5,4,8,12,0,0,10,7,858,880,132,179,14,8,9,13,1,1,983,1057,834,862,130,173,5,3,7,12,0,0,7,7,841,867,131,176,11,7,7,13,0,1,18,17,14,13,0,3,0,1,1,0,0,0,3,0,17,13,1,3,3,1,2,0,1,0 -050,01,039,Alabama,Covington County,5,9,2301,1126,1175,963,981,128,161,14,6,11,12,0,0,10,15,973,992,131,164,21,19,11,15,0,1,1093,1164,940,972,126,160,8,5,9,12,0,0,10,15,950,983,129,163,15,18,9,15,0,1,33,11,23,9,2,1,6,1,2,0,0,0,0,0,23,9,2,1,6,1,2,0,0,0 -050,01,039,Alabama,Covington County,5,10,2522,1259,1263,1085,1090,147,142,6,10,12,8,0,1,9,12,1093,1101,150,144,12,20,13,9,0,1,1233,1243,1061,1076,145,139,6,8,12,8,0,1,9,11,1069,1086,148,141,12,17,13,9,0,1,26,20,24,14,2,3,0,2,0,0,0,0,0,1,24,15,2,3,0,3,0,0,0,0 -050,01,039,Alabama,Covington County,5,11,2838,1379,1459,1210,1237,139,191,9,10,10,7,0,0,11,14,1218,1250,143,195,17,21,12,7,0,0,1365,1444,1199,1224,138,190,7,10,10,7,0,0,11,13,1207,1236,142,194,15,20,12,7,0,0,14,15,11,13,1,1,2,0,0,0,0,0,0,1,11,14,1,1,2,1,0,0,0,0 -050,01,039,Alabama,Covington County,5,12,2766,1349,1417,1175,1224,146,173,11,6,3,4,0,0,14,10,1189,1234,147,173,22,16,4,4,1,0,1338,1408,1164,1216,146,173,11,5,3,4,0,0,14,10,1178,1226,147,173,22,15,4,4,1,0,11,9,11,8,0,0,0,1,0,0,0,0,0,0,11,8,0,0,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,5,13,2463,1196,1267,1064,1104,114,138,8,5,1,8,0,0,9,12,1073,1116,115,139,16,16,1,8,0,0,1189,1256,1059,1096,112,136,8,4,1,8,0,0,9,12,1068,1108,113,137,16,15,1,8,0,0,7,11,5,8,2,2,0,1,0,0,0,0,0,0,5,8,2,2,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,5,14,2210,1032,1178,939,1078,73,83,7,9,0,1,0,0,13,7,952,1085,74,83,18,13,1,3,0,1,1023,1171,930,1072,73,82,7,9,0,1,0,0,13,7,943,1079,74,82,18,13,1,3,0,1,9,7,9,6,0,1,0,0,0,0,0,0,0,0,9,6,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,15,1686,725,961,664,847,52,100,3,3,0,4,0,0,6,7,670,853,53,101,8,10,0,4,0,0,720,952,659,838,52,100,3,3,0,4,0,0,6,7,665,844,53,101,8,10,0,4,0,0,5,9,5,9,0,0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,16,1438,615,823,563,752,42,66,3,2,1,1,0,0,6,2,568,754,43,66,8,4,2,1,0,0,609,817,559,746,41,66,2,2,1,1,0,0,6,2,564,748,42,66,7,4,2,1,0,0,6,6,4,6,1,0,1,0,0,0,0,0,0,0,4,6,1,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,17,951,374,577,355,535,16,36,1,0,0,1,0,0,2,5,357,540,16,37,3,4,0,1,0,0,368,573,349,531,16,36,1,0,0,1,0,0,2,5,351,536,16,37,3,4,0,1,0,0,6,4,6,4,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,5,18,946,283,663,263,602,17,57,3,0,0,0,0,0,0,4,263,606,17,57,3,3,0,1,0,0,281,661,262,600,17,57,2,0,0,0,0,0,0,4,262,604,17,57,2,3,0,1,0,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,0,37820,18252,19568,15563,16550,2231,2545,113,111,80,92,0,1,265,269,15817,16804,2368,2680,231,232,102,113,3,11,17960,19302,15329,16325,2205,2522,100,98,75,91,0,1,251,265,15570,16577,2334,2656,213,216,95,111,2,10,292,266,234,225,26,23,13,13,5,1,0,0,14,4,247,227,34,24,18,16,7,2,1,1 -050,01,039,Alabama,Covington County,6,1,2234,1142,1092,903,876,182,165,4,5,4,6,0,0,49,40,951,915,221,197,12,11,5,8,2,1,1122,1066,885,855,181,160,4,5,4,6,0,0,48,40,932,894,220,192,11,11,5,8,2,1,20,26,18,21,1,5,0,0,0,0,0,0,1,0,19,21,1,5,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,2,2338,1200,1138,939,916,205,163,5,9,5,4,0,0,46,46,985,961,238,197,14,19,9,6,0,1,1174,1112,921,895,200,158,4,9,5,4,0,0,44,46,965,940,232,192,13,19,8,6,0,1,26,26,18,21,5,5,1,0,0,0,0,0,2,0,20,21,6,5,1,0,1,0,0,0 -050,01,039,Alabama,Covington County,6,3,2383,1226,1157,983,929,198,184,10,11,3,4,0,0,32,29,1015,956,221,204,19,17,4,8,0,2,1207,1142,970,917,195,183,8,9,3,4,0,0,31,29,1001,944,217,203,17,15,4,8,0,2,19,15,13,12,3,1,2,2,0,0,0,0,1,0,14,12,4,1,2,2,0,0,0,0 -050,01,039,Alabama,Covington County,6,4,2204,1147,1057,920,816,191,199,9,6,10,7,0,0,17,29,936,845,202,215,14,17,12,10,0,1,1131,1029,906,790,190,198,9,5,10,7,0,0,16,29,921,819,200,214,14,16,12,10,0,1,16,28,14,26,1,1,0,1,0,0,0,0,1,0,15,26,2,1,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,6,5,2225,1117,1108,899,894,195,192,5,8,5,3,0,0,13,11,912,905,202,200,10,10,7,4,0,0,1098,1087,885,876,194,192,3,6,5,2,0,0,11,11,896,887,199,200,8,8,7,3,0,0,19,21,14,18,1,0,2,2,0,1,0,0,2,0,16,18,3,0,2,2,0,1,0,0 -050,01,039,Alabama,Covington County,6,6,2090,1003,1087,839,926,134,138,8,8,4,6,0,0,18,9,854,934,143,142,18,11,6,8,0,1,979,1064,821,903,133,138,8,8,3,6,0,0,14,9,832,911,140,142,16,11,5,8,0,1,24,23,18,23,1,0,0,0,1,0,0,0,4,0,22,23,3,0,2,0,1,0,0,0 -050,01,039,Alabama,Covington County,6,7,2138,1032,1106,904,908,117,172,4,8,3,8,0,0,4,10,908,918,119,173,5,15,4,9,0,1,1008,1094,886,900,111,171,4,7,3,8,0,0,4,8,890,908,113,172,5,12,4,9,0,1,24,12,18,8,6,1,0,1,0,0,0,0,0,2,18,10,6,1,0,3,0,0,0,0 -050,01,039,Alabama,Covington County,6,8,2038,989,1049,854,863,114,159,6,8,6,11,0,0,9,8,861,869,117,162,12,13,8,12,1,1,970,1031,840,850,114,157,6,5,4,11,0,0,6,8,845,856,116,160,10,10,5,12,0,1,19,18,14,13,0,2,0,3,2,0,0,0,3,0,16,13,1,2,2,3,3,0,1,0 -050,01,039,Alabama,Covington County,6,9,2316,1164,1152,989,949,142,173,11,7,12,10,0,0,10,13,999,960,143,175,17,20,15,10,0,0,1135,1140,967,939,140,172,7,6,11,10,0,0,10,13,977,950,141,174,13,19,14,10,0,0,29,12,22,10,2,1,4,1,1,0,0,0,0,0,22,10,2,1,4,1,1,0,0,0 -050,01,039,Alabama,Covington County,6,10,2430,1175,1255,1003,1086,144,140,7,7,11,8,0,1,10,13,1013,1098,144,141,17,19,11,9,0,1,1152,1238,982,1071,143,139,7,6,10,8,0,1,10,13,992,1083,143,140,17,18,10,9,0,1,23,17,21,15,1,1,0,1,1,0,0,0,0,0,21,15,1,1,0,1,1,0,0,0 -050,01,039,Alabama,Covington County,6,11,2771,1378,1393,1214,1172,137,197,6,9,12,6,0,0,9,9,1223,1179,139,200,13,14,12,7,0,2,1361,1376,1201,1160,135,194,4,9,12,6,0,0,9,7,1210,1167,137,196,11,13,12,6,0,1,17,17,13,12,2,3,2,0,0,0,0,0,0,2,13,12,2,4,2,1,0,1,0,1 -050,01,039,Alabama,Covington County,6,12,2861,1401,1460,1219,1274,152,161,11,8,3,4,0,0,16,13,1235,1287,153,163,24,18,5,5,0,0,1383,1453,1201,1267,152,161,11,8,3,4,0,0,16,13,1217,1280,153,163,24,18,5,5,0,0,18,7,18,7,0,0,0,0,0,0,0,0,0,0,18,7,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,13,2449,1189,1260,1059,1087,110,147,10,5,1,8,0,0,9,13,1068,1100,112,149,16,16,2,8,0,0,1180,1250,1051,1080,109,146,10,3,1,8,0,0,9,13,1060,1093,111,148,16,14,2,8,0,0,9,10,8,7,1,1,0,2,0,0,0,0,0,0,8,7,1,1,0,2,0,0,0,0 -050,01,039,Alabama,Covington County,6,14,2264,1065,1199,969,1094,86,91,5,6,0,1,0,0,5,7,973,1101,87,94,10,10,0,1,0,0,1056,1192,961,1088,85,90,5,6,0,1,0,0,5,7,965,1095,86,93,10,10,0,1,0,0,9,7,8,6,1,1,0,0,0,0,0,0,0,0,8,6,1,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,15,1746,768,978,700,868,54,94,4,3,0,4,0,0,10,9,709,876,55,96,14,10,1,5,0,0,763,966,695,857,54,93,4,3,0,4,0,0,10,9,704,865,55,95,14,10,1,5,0,0,5,12,5,11,0,1,0,0,0,0,0,0,0,0,5,11,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,16,1408,598,810,546,728,43,76,3,3,1,1,0,0,5,2,551,730,43,76,8,5,1,1,0,0,592,803,541,721,42,76,3,3,1,1,0,0,5,2,546,723,42,76,8,5,1,1,0,0,6,7,5,7,1,0,0,0,0,0,0,0,0,0,5,7,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,17,980,377,603,359,556,14,41,1,0,0,1,0,0,3,5,360,559,16,43,4,4,0,2,0,0,371,597,354,550,14,41,0,0,0,1,0,0,3,5,355,553,16,43,3,4,0,2,0,0,6,6,5,6,0,0,1,0,0,0,0,0,0,0,5,6,0,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,6,18,945,281,664,264,608,13,53,4,0,0,0,0,0,0,3,264,611,13,53,4,3,0,0,0,0,278,662,262,606,13,53,3,0,0,0,0,0,0,3,262,609,13,53,3,3,0,0,0,0,3,2,2,2,0,0,1,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,7,0,37766,18242,19524,15537,16497,2238,2557,114,112,83,85,0,1,270,272,15794,16755,2366,2699,235,231,110,106,11,10,17950,19253,15303,16272,2211,2531,101,98,78,83,0,1,257,268,15547,16526,2335,2672,216,214,103,103,10,10,292,271,234,225,27,26,13,14,5,2,0,0,13,4,247,229,31,27,19,17,7,3,1,0 -050,01,039,Alabama,Covington County,7,1,2185,1095,1090,895,866,156,175,4,5,4,3,0,0,36,41,931,907,184,210,11,13,7,3,0,0,1081,1067,882,850,155,168,4,5,4,3,0,0,36,41,918,891,183,203,11,13,7,3,0,0,14,23,13,16,1,7,0,0,0,0,0,0,0,0,13,16,1,7,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,7,2,2332,1198,1134,929,899,212,177,5,10,4,6,0,0,48,42,976,940,249,210,12,16,7,9,2,1,1173,1102,913,874,207,171,4,9,4,6,0,0,45,42,957,915,241,204,11,15,7,9,2,1,25,32,16,25,5,6,1,1,0,0,0,0,3,0,19,25,8,6,1,1,0,0,0,0 -050,01,039,Alabama,Covington County,7,3,2380,1236,1144,995,938,194,166,7,8,6,4,0,0,34,28,1029,965,216,185,15,14,9,7,2,1,1208,1129,974,926,190,165,5,6,6,4,0,0,33,28,1007,953,212,184,12,12,9,7,2,1,28,15,21,12,4,1,2,2,0,0,0,0,1,0,22,12,4,1,3,2,0,0,0,0 -050,01,039,Alabama,Covington County,7,4,2201,1134,1067,912,830,183,199,6,5,8,3,0,0,25,30,936,859,198,218,17,14,9,5,0,1,1120,1038,899,803,182,198,6,4,8,3,0,0,25,30,923,832,197,217,17,13,9,5,0,1,14,29,13,27,1,1,0,1,0,0,0,0,0,0,13,27,1,1,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,7,5,2214,1135,1079,913,859,201,196,5,6,4,5,0,0,12,13,922,872,208,203,10,10,6,7,1,0,1115,1063,897,845,200,196,3,4,4,5,0,0,11,13,905,858,207,203,8,8,5,7,1,0,20,16,16,14,1,0,2,2,0,0,0,0,1,0,17,14,1,0,2,2,1,0,0,0 -050,01,039,Alabama,Covington County,7,6,2111,1024,1087,827,913,158,149,14,9,6,4,0,0,19,12,844,925,163,155,24,14,10,5,2,0,999,1064,809,891,157,149,14,9,5,3,0,0,14,12,821,903,162,155,21,14,8,4,1,0,25,23,18,22,1,0,0,0,1,1,0,0,5,0,23,22,1,0,3,0,2,1,1,0 -050,01,039,Alabama,Covington County,7,7,2125,1018,1107,894,914,111,165,4,9,2,10,0,0,7,9,901,923,111,167,8,16,4,11,1,0,995,1090,876,901,106,164,4,8,2,10,0,0,7,7,883,908,106,165,8,14,4,10,1,0,23,17,18,13,5,1,0,1,0,0,0,0,0,2,18,15,5,2,0,2,0,1,0,0 -050,01,039,Alabama,Covington County,7,8,2034,982,1052,845,883,116,148,6,5,6,7,0,0,9,9,854,891,119,151,12,10,6,8,0,1,962,1038,831,872,115,147,6,4,4,6,0,0,6,9,837,880,117,150,10,9,4,7,0,1,20,14,14,11,1,1,0,1,2,1,0,0,3,0,17,11,2,1,2,1,2,1,0,0 -050,01,039,Alabama,Covington County,7,9,2292,1149,1143,981,942,139,175,8,8,12,8,0,0,9,10,989,949,141,177,15,13,13,12,0,2,1123,1127,961,931,137,173,5,5,11,8,0,0,9,10,969,938,139,175,12,10,12,12,0,2,26,16,20,11,2,2,3,3,1,0,0,0,0,0,20,11,2,2,3,3,1,0,0,0 -050,01,039,Alabama,Covington County,7,10,2324,1126,1198,964,1020,135,146,8,7,9,8,0,1,10,16,973,1034,137,149,15,20,11,10,0,1,1104,1182,945,1006,134,145,7,6,8,8,0,1,10,16,954,1020,136,148,14,19,10,10,0,1,22,16,19,14,1,1,1,1,1,0,0,0,0,0,19,14,1,1,1,1,1,0,0,0 -050,01,039,Alabama,Covington County,7,11,2769,1362,1407,1199,1195,134,189,6,8,12,9,0,0,11,6,1210,1200,135,192,14,12,13,9,1,0,1347,1390,1187,1182,132,186,5,8,12,9,0,0,11,5,1198,1186,133,189,13,11,13,9,1,0,15,17,12,13,2,3,1,0,0,0,0,0,0,1,12,14,2,3,1,1,0,0,0,0 -050,01,039,Alabama,Covington County,7,12,2873,1419,1454,1223,1263,164,162,10,10,8,4,0,0,14,15,1237,1277,164,165,23,23,9,4,0,1,1398,1447,1203,1257,164,162,9,10,8,4,0,0,14,14,1217,1270,164,165,22,22,9,4,0,1,21,7,20,6,0,0,1,0,0,0,0,0,0,1,20,7,0,0,1,1,0,0,0,0 -050,01,039,Alabama,Covington County,7,13,2448,1182,1266,1044,1095,115,143,12,9,0,5,0,0,11,14,1055,1108,116,144,20,23,2,5,0,0,1174,1255,1037,1087,114,142,12,7,0,5,0,0,11,14,1048,1100,115,143,20,21,2,5,0,0,8,11,7,8,1,1,0,2,0,0,0,0,0,0,7,8,1,1,0,2,0,0,0,0 -050,01,039,Alabama,Covington County,7,14,2304,1097,1207,995,1085,92,105,5,7,1,2,0,0,4,8,998,1093,93,106,9,13,1,3,0,0,1086,1199,985,1078,91,104,5,7,1,2,0,0,4,8,988,1086,92,105,9,13,1,3,0,0,11,8,10,7,1,1,0,0,0,0,0,0,0,0,10,7,1,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,7,15,1816,815,1001,742,895,55,89,6,3,0,5,0,0,12,9,753,903,56,90,16,10,2,5,0,2,811,989,738,884,55,88,6,3,0,5,0,0,12,9,749,892,56,89,16,10,2,5,0,2,4,12,4,11,0,1,0,0,0,0,0,0,0,0,4,11,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,7,16,1397,591,806,539,722,43,77,3,3,1,1,0,0,5,3,544,725,43,78,6,5,1,2,2,0,582,799,530,715,43,77,3,3,1,1,0,0,5,3,535,718,43,78,6,5,1,2,2,0,9,7,9,7,0,0,0,0,0,0,0,0,0,0,9,7,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,7,17,991,378,613,358,563,15,45,1,0,0,1,0,0,4,4,360,567,18,47,4,2,0,1,0,0,373,608,355,558,14,45,0,0,0,1,0,0,4,4,357,562,17,47,3,2,0,1,0,0,5,5,3,5,1,0,1,0,0,0,0,0,0,0,3,5,1,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,7,18,970,301,669,282,615,15,51,4,0,0,0,0,0,0,3,282,617,15,52,4,3,0,0,0,0,299,666,281,612,15,51,3,0,0,0,0,0,0,3,281,614,15,52,3,3,0,0,0,0,2,3,1,3,0,0,1,0,0,0,0,0,0,0,1,3,0,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,8,0,37566,18118,19448,15399,16386,2218,2586,128,118,91,90,1,2,281,266,15661,16640,2361,2724,250,239,120,110,9,7,17818,19162,15161,16159,2190,2557,116,101,83,84,0,1,268,260,15411,16407,2328,2692,231,218,112,104,6,6,300,286,238,227,28,29,12,17,8,6,1,1,13,6,250,233,33,32,19,21,8,6,3,1 -050,01,039,Alabama,Covington County,8,1,2223,1127,1096,919,860,154,187,7,6,6,5,0,0,41,38,960,897,186,219,13,13,8,6,1,0,1107,1066,902,844,153,178,7,4,4,3,0,0,41,37,943,880,185,210,13,10,6,4,1,0,20,30,17,16,1,9,0,2,2,2,0,0,0,1,17,17,1,9,0,3,2,2,0,0 -050,01,039,Alabama,Covington County,8,2,2273,1175,1098,912,876,203,165,7,11,4,7,0,0,49,39,961,913,238,197,16,17,9,9,0,1,1149,1063,892,848,200,159,6,10,4,7,0,0,47,39,939,885,234,191,14,16,9,9,0,1,26,35,20,28,3,6,1,1,0,0,0,0,2,0,22,28,4,6,2,1,0,0,0,0 -050,01,039,Alabama,Covington County,8,3,2341,1199,1142,951,933,197,165,7,9,9,4,0,0,35,31,982,961,222,189,18,17,11,5,1,1,1179,1121,938,915,192,165,6,7,9,3,0,0,34,31,968,943,216,189,17,15,11,4,1,1,20,21,13,18,5,0,1,2,0,1,0,0,1,0,14,18,6,0,1,2,0,1,0,0 -050,01,039,Alabama,Covington County,8,4,2217,1139,1078,921,851,179,194,10,5,6,2,0,0,23,26,941,877,198,210,16,12,8,4,0,1,1116,1054,902,830,177,192,9,4,6,2,0,0,22,26,921,856,195,208,15,11,8,4,0,1,23,24,19,21,2,2,1,1,0,0,0,0,1,0,20,21,3,2,1,1,0,0,0,0 -050,01,039,Alabama,Covington County,8,5,2139,1082,1057,867,817,188,211,6,7,5,8,0,0,16,14,882,830,196,218,11,13,7,10,2,0,1061,1039,849,801,188,211,4,5,5,8,0,0,15,14,863,814,196,218,9,11,7,10,1,0,21,18,18,16,0,0,2,2,0,0,0,0,1,0,19,16,0,0,2,2,0,0,1,0 -050,01,039,Alabama,Covington County,8,6,2118,1056,1062,841,892,177,148,12,8,6,4,0,0,20,10,858,901,185,154,23,13,8,5,2,0,1031,1048,824,880,175,148,12,7,5,3,0,0,15,10,837,889,182,154,19,12,7,4,1,0,25,14,17,12,2,0,0,1,1,1,0,0,5,0,21,12,3,0,4,1,1,1,1,0 -050,01,039,Alabama,Covington County,8,7,2081,974,1107,849,905,111,174,5,11,3,8,0,0,6,9,855,914,113,178,8,16,4,9,0,0,956,1084,834,887,108,173,5,10,3,7,0,0,6,7,840,894,110,176,8,13,4,8,0,0,18,23,15,18,3,1,0,1,0,1,0,0,0,2,15,20,3,2,0,3,0,1,0,0 -050,01,039,Alabama,Covington County,8,8,2066,998,1068,872,896,107,147,8,7,4,8,0,0,7,10,878,906,109,150,12,13,6,9,0,0,977,1053,854,886,106,145,8,6,3,7,0,0,6,9,859,895,108,147,11,12,5,8,0,0,21,15,18,10,1,2,0,1,1,1,0,0,1,1,19,11,1,3,1,1,1,1,0,0 -050,01,039,Alabama,Covington County,8,9,2238,1105,1133,944,936,132,174,6,7,14,7,0,0,9,9,952,945,134,174,12,15,16,8,1,0,1086,1119,931,926,131,172,5,5,12,7,0,0,7,9,937,935,132,172,10,13,14,8,1,0,19,14,13,10,1,2,1,2,2,0,0,0,2,0,15,10,2,2,2,2,2,0,0,0 -050,01,039,Alabama,Covington County,8,10,2278,1100,1178,926,996,143,149,12,7,9,9,0,1,10,16,936,1011,143,153,20,18,11,13,0,2,1075,1161,910,982,139,148,9,5,7,9,0,1,10,16,920,997,139,152,17,16,9,13,0,2,25,17,16,14,4,1,3,2,2,0,0,0,0,0,16,14,4,1,3,2,2,0,0,0 -050,01,039,Alabama,Covington County,8,11,2725,1338,1387,1171,1180,136,183,6,9,14,6,0,1,11,8,1182,1188,137,185,15,15,15,6,0,1,1320,1370,1154,1167,135,181,6,9,14,6,0,0,11,7,1165,1174,136,183,15,14,15,6,0,0,18,17,17,13,1,2,0,0,0,0,0,1,0,1,17,14,1,2,0,1,0,0,0,1 -050,01,039,Alabama,Covington County,8,12,2853,1430,1423,1245,1232,153,161,10,9,7,6,1,0,14,15,1258,1247,155,163,22,21,8,7,1,0,1408,1412,1227,1223,152,160,8,9,7,6,0,0,14,14,1240,1237,154,161,20,21,8,7,0,0,22,11,18,9,1,1,2,0,0,0,1,0,0,1,18,10,1,2,2,0,0,0,1,0 -050,01,039,Alabama,Covington County,8,13,2510,1185,1325,1045,1143,111,156,13,9,2,4,0,0,14,13,1057,1156,113,156,24,20,4,6,1,0,1173,1314,1033,1134,111,156,13,7,2,4,0,0,14,13,1045,1147,113,156,24,18,4,6,1,0,12,11,12,9,0,0,0,2,0,0,0,0,0,0,12,9,0,0,0,2,0,0,0,0 -050,01,039,Alabama,Covington County,8,14,2293,1090,1203,987,1069,93,114,5,7,1,4,0,0,4,9,990,1077,94,116,9,14,1,4,0,1,1080,1194,979,1062,91,112,5,7,1,4,0,0,4,9,982,1070,92,114,9,14,1,4,0,1,10,9,8,7,2,2,0,0,0,0,0,0,0,0,8,7,2,2,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,8,15,1847,854,993,780,896,56,82,7,2,0,4,0,0,11,9,791,903,56,84,16,11,2,4,0,0,848,982,775,886,55,81,7,2,0,4,0,0,11,9,786,893,55,83,16,11,2,4,0,0,6,11,5,10,1,1,0,0,0,0,0,0,0,0,5,10,1,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,8,16,1382,565,817,514,728,44,79,2,4,1,3,0,0,4,3,517,731,46,79,5,6,1,4,0,0,557,808,506,719,44,79,2,4,1,3,0,0,4,3,509,722,46,79,5,6,1,4,0,0,8,9,8,9,0,0,0,0,0,0,0,0,0,0,8,9,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,8,17,997,393,604,368,555,18,46,1,0,0,0,0,0,6,3,373,558,19,47,6,2,1,0,0,0,389,601,365,552,17,46,1,0,0,0,0,0,6,3,370,555,18,47,6,2,1,0,0,0,4,3,3,3,1,0,0,0,0,0,0,0,0,0,3,3,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,8,18,985,308,677,287,621,16,51,4,0,0,1,0,0,1,4,288,625,17,52,4,3,0,1,0,0,306,673,286,617,16,51,3,0,0,1,0,0,1,4,287,621,17,52,3,3,0,1,0,0,2,4,1,4,0,0,1,0,0,0,0,0,0,0,1,4,0,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,9,0,37400,18058,19342,15352,16311,2214,2546,126,117,88,89,1,2,277,277,15616,16574,2362,2691,247,237,115,113,3,6,17749,19034,15118,16069,2176,2514,113,97,81,83,0,1,261,270,15367,16326,2315,2652,226,216,106,106,1,5,309,308,234,242,38,32,13,20,7,6,1,1,16,7,249,248,47,39,21,21,9,7,2,1 -050,01,039,Alabama,Covington County,9,1,2196,1122,1074,930,838,150,178,6,7,4,8,0,0,32,43,962,880,174,212,13,15,6,10,1,0,1100,1038,917,820,147,168,6,2,3,6,0,0,27,42,944,861,168,201,10,10,4,8,1,0,22,36,13,18,3,10,0,5,1,2,0,0,5,1,18,19,6,11,3,5,2,2,0,0 -050,01,039,Alabama,Covington County,9,2,2267,1168,1099,908,877,192,168,7,11,5,7,0,0,56,36,963,911,235,196,16,19,10,9,0,0,1139,1067,890,851,185,163,5,10,5,7,0,0,54,36,943,885,227,191,13,18,10,9,0,0,29,32,18,26,7,5,2,1,0,0,0,0,2,0,20,26,8,5,3,1,0,0,0,0 -050,01,039,Alabama,Covington County,9,3,2354,1214,1140,968,937,191,155,7,6,8,4,0,0,40,38,1006,975,220,181,16,15,14,7,0,0,1185,1112,945,913,187,153,6,5,8,3,0,0,39,38,982,951,216,179,15,14,13,6,0,0,29,28,23,24,4,2,1,1,0,1,0,0,1,0,24,24,4,2,1,1,1,1,0,0 -050,01,039,Alabama,Covington County,9,4,2168,1110,1058,888,844,186,182,9,7,6,3,0,0,21,22,907,864,199,197,16,15,9,4,1,0,1086,1035,869,824,183,181,8,5,6,3,0,0,20,22,888,844,196,196,14,13,9,4,0,0,24,23,19,20,3,1,1,2,0,0,0,0,1,0,19,20,3,1,2,2,0,0,1,0 -050,01,039,Alabama,Covington County,9,5,1996,1025,971,822,765,180,179,2,7,4,3,0,0,17,17,837,780,189,190,11,14,5,4,0,0,1011,948,810,745,180,178,1,5,4,3,0,0,16,17,824,760,189,189,9,12,5,4,0,0,14,23,12,20,0,1,1,2,0,0,0,0,1,0,13,20,0,1,2,2,0,0,0,0 -050,01,039,Alabama,Covington County,9,6,2267,1145,1122,919,927,194,175,10,6,4,4,0,0,18,10,935,936,204,178,19,10,6,7,0,2,1113,1107,895,916,192,174,9,5,4,3,0,0,13,9,906,924,198,176,16,9,6,6,0,2,32,15,24,11,2,1,1,1,0,1,0,0,5,1,29,12,6,2,3,1,0,1,0,0 -050,01,039,Alabama,Covington County,9,7,2072,957,1115,820,918,119,171,6,9,4,9,0,0,8,8,827,926,122,175,12,13,4,10,0,0,934,1091,804,898,113,170,6,8,3,8,0,0,8,7,811,905,116,173,12,11,3,9,0,0,23,24,16,20,6,1,0,1,1,1,0,0,0,1,16,21,6,2,0,2,1,1,0,0 -050,01,039,Alabama,Covington County,9,8,2096,1023,1073,896,905,107,142,9,9,4,7,0,0,7,10,903,915,109,148,14,13,4,7,0,0,1007,1055,884,891,105,142,9,8,3,6,0,0,6,8,890,899,106,146,14,12,3,6,0,0,16,18,12,14,2,0,0,1,1,1,0,0,1,2,13,16,3,2,0,1,1,1,0,0 -050,01,039,Alabama,Covington County,9,9,2103,995,1108,850,920,125,165,2,6,12,8,0,0,6,9,856,929,127,167,5,12,13,9,0,0,981,1093,838,910,124,162,2,4,11,8,0,0,6,9,844,919,126,164,5,10,12,9,0,0,14,15,12,10,1,3,0,2,1,0,0,0,0,0,12,10,1,3,0,2,1,0,0,0 -050,01,039,Alabama,Covington County,9,10,2250,1111,1139,947,958,129,150,15,7,12,9,0,0,8,15,955,972,131,151,19,17,14,12,0,2,1085,1125,931,946,126,150,11,5,9,9,0,0,8,15,939,960,128,151,15,15,11,12,0,2,26,14,16,12,3,0,4,2,3,0,0,0,0,0,16,12,3,0,4,2,3,0,0,0 -050,01,039,Alabama,Covington County,9,11,2618,1295,1323,1123,1127,144,168,6,10,13,6,0,2,9,10,1131,1135,147,172,13,16,13,8,0,2,1278,1305,1108,1115,142,164,6,10,13,6,0,1,9,9,1116,1123,145,167,13,16,13,7,0,1,17,18,15,12,2,4,0,0,0,0,0,1,0,1,15,12,2,5,0,0,0,1,0,1 -050,01,039,Alabama,Covington County,9,12,2833,1391,1442,1222,1243,134,166,15,8,7,7,1,0,12,18,1234,1261,135,170,25,21,8,8,1,0,1372,1428,1207,1231,133,165,13,8,7,7,0,0,12,17,1219,1248,134,168,23,21,8,8,0,0,19,14,15,12,1,1,2,0,0,0,1,0,0,1,15,13,1,2,2,0,0,0,1,0 -050,01,039,Alabama,Covington County,9,13,2576,1210,1366,1066,1169,120,171,9,10,2,4,0,0,13,12,1079,1181,121,172,19,19,4,6,0,0,1199,1356,1055,1160,120,171,9,9,2,4,0,0,13,12,1068,1172,121,172,19,18,4,6,0,0,11,10,11,9,0,0,0,1,0,0,0,0,0,0,11,9,0,0,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,9,14,2368,1141,1227,1025,1087,102,121,7,8,1,2,0,0,6,9,1030,1096,105,121,11,17,1,2,0,0,1130,1216,1016,1079,100,119,7,7,1,2,0,0,6,9,1021,1088,103,119,11,16,1,2,0,0,11,11,9,8,2,2,0,1,0,0,0,0,0,0,9,8,2,2,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,9,15,1836,861,975,782,893,59,70,8,1,0,2,0,0,12,9,793,901,61,71,20,9,0,3,0,0,854,967,776,886,58,69,8,1,0,2,0,0,12,9,787,894,60,70,20,9,0,3,0,0,7,8,6,7,1,1,0,0,0,0,0,0,0,0,6,7,1,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,9,16,1348,540,808,495,705,38,90,2,4,1,5,0,0,4,4,499,708,38,92,5,6,2,6,0,0,533,798,488,695,38,90,2,4,1,5,0,0,4,4,492,698,38,92,5,6,2,6,0,0,7,10,7,10,0,0,0,0,0,0,0,0,0,0,7,10,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,9,17,1064,430,634,395,584,26,46,2,1,1,0,0,0,6,3,401,587,26,48,7,2,2,0,0,0,425,630,391,580,25,46,2,1,1,0,0,0,6,3,397,583,25,48,7,2,2,0,0,0,5,4,4,4,1,0,0,0,0,0,0,0,0,0,4,4,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,9,18,988,320,668,296,614,18,49,4,0,0,1,0,0,2,4,298,617,19,50,6,4,0,1,0,0,317,663,294,609,18,49,3,0,0,1,0,0,2,4,296,612,19,50,5,4,0,1,0,0,3,5,2,5,0,0,1,0,0,0,0,0,0,0,2,5,0,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,10,0,37077,17891,19186,15243,16190,2143,2490,127,117,87,95,2,2,289,292,15516,16469,2299,2646,250,243,108,122,12,6,17575,18886,15004,15960,2103,2459,114,96,81,89,1,1,272,281,15260,16229,2247,2608,231,216,102,114,11,5,316,300,239,230,40,31,13,21,6,6,1,1,17,11,256,240,52,38,19,27,6,8,1,1 -050,01,039,Alabama,Covington County,10,1,2228,1131,1097,935,847,144,185,7,7,3,7,0,0,42,51,975,898,177,224,15,16,5,10,3,0,1101,1057,915,822,141,178,7,2,2,5,0,0,36,50,949,872,170,217,12,10,4,8,3,0,30,40,20,25,3,7,0,5,1,2,0,0,6,1,26,26,7,7,3,6,1,2,0,0 -050,01,039,Alabama,Covington County,10,2,2163,1124,1039,902,843,164,139,6,10,6,10,0,0,46,37,946,880,200,163,16,19,8,14,1,0,1104,1012,890,826,159,132,4,9,6,10,0,0,45,35,933,861,194,156,14,17,8,13,1,0,20,27,12,17,5,7,2,1,0,0,0,0,1,2,13,19,6,7,2,2,0,1,0,0 -050,01,039,Alabama,Covington County,10,3,2339,1199,1140,945,932,196,159,7,8,9,5,0,0,42,36,984,966,226,185,19,18,11,7,1,2,1167,1109,922,907,189,156,7,6,9,4,0,0,40,36,959,941,217,182,19,16,11,6,1,2,32,31,23,25,7,3,0,2,0,1,0,0,2,0,25,25,9,3,0,2,0,1,0,0 -050,01,039,Alabama,Covington County,10,4,2069,1049,1020,853,822,163,161,6,6,3,4,0,0,24,27,876,846,177,180,14,14,5,8,1,0,1024,1003,835,807,159,161,4,5,3,4,0,0,23,26,857,831,172,179,12,12,5,8,1,0,25,17,18,15,4,0,2,1,0,0,0,0,1,1,19,15,5,1,2,2,0,0,0,0 -050,01,039,Alabama,Covington County,10,5,1901,973,928,755,719,185,179,6,9,8,2,0,0,19,19,772,734,197,191,12,18,10,4,2,0,958,908,742,703,185,178,5,6,8,2,0,0,18,19,758,718,197,190,10,15,10,4,2,0,15,20,13,16,0,1,1,3,0,0,0,0,1,0,14,16,0,1,2,3,0,0,0,0 -050,01,039,Alabama,Covington County,10,6,2325,1161,1164,929,962,203,180,8,5,5,6,0,0,16,11,945,973,213,183,15,10,5,8,0,1,1135,1147,910,947,200,179,7,4,5,6,0,0,13,11,923,958,207,182,14,9,5,8,0,1,26,17,19,15,3,1,1,1,0,0,0,0,3,0,22,15,6,1,1,1,0,0,0,0 -050,01,039,Alabama,Covington County,10,7,2026,972,1054,815,885,131,144,8,9,4,8,1,0,13,8,828,892,136,149,15,12,5,9,1,0,947,1035,797,870,127,143,8,8,3,8,1,0,11,6,808,875,131,146,14,11,4,9,1,0,25,19,18,15,4,1,0,1,1,0,0,0,2,2,20,17,5,3,1,1,1,0,0,0 -050,01,039,Alabama,Covington County,10,8,2064,996,1068,888,899,92,149,7,6,3,6,0,0,6,8,893,907,94,153,11,11,4,7,0,0,978,1054,874,888,89,149,7,6,2,5,0,0,6,6,879,894,91,152,11,9,3,5,0,0,18,14,14,11,3,0,0,0,1,1,0,0,0,2,14,13,3,1,0,2,1,2,0,0 -050,01,039,Alabama,Covington County,10,9,2004,962,1042,827,865,116,153,3,7,9,9,0,0,7,8,834,873,119,153,7,13,9,11,0,0,948,1024,815,855,116,150,3,4,8,7,0,0,6,8,821,863,119,150,6,10,8,9,0,0,14,18,12,10,0,3,0,3,1,2,0,0,1,0,13,10,0,3,1,3,1,2,0,0 -050,01,039,Alabama,Covington County,10,10,2267,1116,1151,966,969,116,152,14,5,11,11,0,0,9,14,974,983,119,156,21,14,11,13,0,0,1089,1138,949,957,112,152,10,4,9,11,0,0,9,14,957,971,115,156,17,13,9,13,0,0,27,13,17,12,4,0,4,1,2,0,0,0,0,0,17,12,4,0,4,1,2,0,0,0 -050,01,039,Alabama,Covington County,10,11,2517,1233,1284,1068,1099,139,155,6,10,10,6,0,2,10,12,1077,1111,141,159,14,17,11,7,0,2,1217,1261,1054,1083,137,151,6,9,10,6,0,1,10,11,1063,1094,139,154,14,16,11,7,0,1,16,23,14,16,2,4,0,1,0,0,0,1,0,1,14,17,2,5,0,1,0,0,0,1 -050,01,039,Alabama,Covington County,10,12,2783,1342,1441,1193,1228,118,180,11,11,10,7,1,0,9,15,1202,1242,119,186,19,22,10,7,1,0,1323,1428,1178,1217,117,179,9,11,10,7,0,0,9,14,1187,1230,118,184,17,21,10,7,0,0,19,13,15,11,1,1,2,0,0,0,1,0,0,1,15,12,1,2,2,1,0,0,1,0 -050,01,039,Alabama,Covington County,10,13,2659,1283,1376,1111,1186,140,166,15,7,3,4,0,0,14,13,1125,1198,142,168,26,17,4,5,0,1,1267,1366,1095,1177,140,166,15,6,3,4,0,0,14,13,1109,1189,142,168,26,16,4,5,0,1,16,10,16,9,0,0,0,1,0,0,0,0,0,0,16,9,0,0,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,10,14,2295,1103,1192,990,1040,96,128,8,7,1,4,0,0,8,13,998,1052,96,130,14,19,3,4,0,0,1094,1182,983,1033,94,126,8,6,1,4,0,0,8,13,991,1045,94,128,14,18,3,4,0,0,9,10,7,7,2,2,0,1,0,0,0,0,0,0,7,7,2,2,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,10,15,1993,928,1065,852,980,61,73,6,5,0,0,0,0,9,7,858,987,64,76,11,9,2,1,2,0,920,1058,844,974,61,72,6,5,0,0,0,0,9,7,850,981,64,75,11,9,2,1,2,0,8,7,8,6,0,1,0,0,0,0,0,0,0,0,8,6,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,10,16,1380,578,802,529,710,40,79,3,3,0,3,0,0,6,7,535,717,40,81,8,8,1,3,0,0,571,792,523,701,39,79,3,3,0,3,0,0,6,6,529,707,39,80,8,8,1,3,0,0,7,10,6,9,1,0,0,0,0,0,0,0,0,1,6,10,1,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,10,17,1049,413,636,380,577,22,53,2,2,2,2,0,0,7,2,387,579,22,53,8,3,3,3,0,0,408,630,376,571,21,53,2,2,2,2,0,0,7,2,383,573,21,53,8,3,3,3,0,0,5,6,4,6,1,0,0,0,0,0,0,0,0,0,4,6,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,10,18,1015,328,687,305,627,17,55,4,0,0,1,0,0,2,4,307,631,17,56,5,3,1,1,0,0,324,682,302,622,17,55,3,0,0,1,0,0,2,4,304,626,17,56,4,3,1,1,0,0,4,5,3,5,0,0,1,0,0,0,0,0,0,0,3,5,0,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,11,0,36993,17916,19077,15242,16050,2144,2512,136,119,83,87,2,2,309,307,15542,16348,2311,2674,266,233,105,123,7,11,17576,18760,14987,15802,2101,2481,121,102,77,81,1,1,289,293,15267,16088,2256,2635,245,212,96,113,6,9,340,317,255,248,43,31,15,17,6,6,1,1,20,14,275,260,55,39,21,21,9,10,1,2 -050,01,039,Alabama,Covington County,11,1,2198,1136,1062,939,821,139,169,7,4,2,4,0,0,49,64,987,885,177,219,14,15,7,9,0,1,1097,1019,912,795,134,160,7,3,1,2,0,0,43,59,954,854,169,207,12,13,5,6,0,1,39,43,27,26,5,9,0,1,1,2,0,0,6,5,33,31,8,12,2,2,2,3,0,0 -050,01,039,Alabama,Covington County,11,2,2226,1176,1050,942,830,178,169,6,8,6,7,0,0,44,36,985,864,213,197,14,16,8,9,1,1,1149,1021,923,810,174,164,5,6,6,7,0,0,41,34,963,842,206,192,12,13,8,8,1,1,27,29,19,20,4,5,1,2,0,0,0,0,3,2,22,22,7,5,2,3,0,1,0,0 -050,01,039,Alabama,Covington County,11,3,2290,1160,1130,911,926,187,155,7,10,7,4,0,0,48,35,959,960,220,181,18,14,10,7,1,3,1127,1097,890,898,178,151,6,9,7,4,0,0,46,35,936,932,210,177,17,13,9,7,1,3,33,33,21,28,9,4,1,1,0,0,0,0,2,0,23,28,10,4,1,1,1,0,0,0 -050,01,039,Alabama,Covington County,11,4,2099,1064,1035,861,836,165,156,6,10,4,6,0,0,28,27,889,862,183,174,14,17,6,8,1,1,1044,1013,848,819,162,155,4,8,4,5,0,0,26,26,874,845,178,172,12,15,6,7,1,0,20,22,13,17,3,1,2,2,0,1,0,0,2,1,15,17,5,2,2,2,0,1,0,1 -050,01,039,Alabama,Covington County,11,5,1859,937,922,746,715,158,179,7,6,6,2,0,0,20,20,766,734,168,189,14,12,9,6,0,1,921,902,732,697,157,178,7,5,6,2,0,0,19,20,751,716,166,188,14,11,9,6,0,1,16,20,14,18,1,1,0,1,0,0,0,0,1,0,15,18,2,1,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,11,6,2323,1182,1141,951,909,203,208,9,7,5,6,0,0,14,11,963,918,210,214,14,10,9,10,1,0,1157,1121,932,891,200,208,7,5,5,6,0,0,13,11,943,900,207,214,12,8,8,10,1,0,25,20,19,18,3,0,2,2,0,0,0,0,1,0,20,18,3,0,2,2,1,0,0,0 -050,01,039,Alabama,Covington County,11,7,2007,950,1057,779,900,143,134,10,7,2,7,0,0,16,9,795,909,148,138,21,11,3,8,0,0,925,1038,760,883,142,133,10,7,1,7,0,0,12,8,772,891,146,136,18,11,2,8,0,0,25,19,19,17,1,1,0,0,1,0,0,0,4,1,23,18,2,2,3,0,1,0,0,0 -050,01,039,Alabama,Covington County,11,8,2077,999,1078,879,900,98,151,7,10,4,6,1,0,10,11,889,910,101,157,14,15,5,8,1,0,978,1061,864,888,92,150,7,9,4,5,1,0,10,9,874,897,95,154,14,13,5,6,1,0,21,17,15,12,6,1,0,1,0,1,0,0,0,2,15,13,6,3,0,2,0,2,0,0 -050,01,039,Alabama,Covington County,11,9,1954,958,996,831,837,108,137,7,8,7,7,0,0,5,7,836,844,110,139,9,12,7,8,1,0,940,980,818,827,108,136,5,5,5,5,0,0,4,7,822,834,109,138,7,9,5,6,1,0,18,16,13,10,0,1,2,3,2,2,0,0,1,0,14,10,1,1,2,3,2,2,0,0 -050,01,039,Alabama,Covington County,11,10,2228,1117,1111,967,921,118,163,13,4,12,10,0,0,7,13,974,934,120,167,18,12,12,10,0,1,1093,1102,953,913,114,163,9,3,10,10,0,0,7,13,960,926,116,167,14,11,10,10,0,1,24,9,14,8,4,0,4,1,2,0,0,0,0,0,14,8,4,0,4,1,2,0,0,0 -050,01,039,Alabama,Covington County,11,11,2419,1157,1262,988,1089,138,144,7,7,12,8,0,1,12,13,998,1102,143,146,15,17,13,9,0,1,1138,1241,970,1070,137,143,7,6,12,8,0,1,12,13,980,1083,142,145,15,16,13,9,0,1,19,21,18,19,1,1,0,1,0,0,0,0,0,0,18,19,1,1,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,11,12,2722,1348,1374,1210,1161,115,190,8,7,8,5,1,1,6,10,1216,1171,116,191,13,13,8,8,1,1,1331,1357,1198,1151,113,186,6,7,8,5,0,0,6,8,1204,1159,114,187,11,12,8,7,0,0,17,17,12,10,2,4,2,0,0,0,1,1,0,2,12,12,2,4,2,1,0,1,1,1 -050,01,039,Alabama,Covington County,11,13,2743,1324,1419,1143,1230,145,162,15,9,4,4,0,0,17,14,1160,1244,146,163,31,18,4,8,0,0,1303,1409,1122,1221,145,162,15,9,4,4,0,0,17,13,1139,1234,146,162,31,18,4,8,0,0,21,10,21,9,0,0,0,0,0,0,0,0,0,1,21,10,0,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,11,14,2278,1093,1185,978,1027,95,128,10,9,1,5,0,0,9,16,986,1043,97,128,18,24,1,6,0,0,1083,1176,969,1021,94,127,10,7,1,5,0,0,9,16,977,1037,96,127,18,22,1,6,0,0,10,9,9,6,1,1,0,2,0,0,0,0,0,0,9,6,1,1,0,2,0,0,0,0 -050,01,039,Alabama,Covington County,11,15,2050,950,1100,869,1004,69,81,6,7,1,0,0,0,5,8,873,1012,70,82,11,13,1,1,0,0,942,1093,862,998,68,80,6,7,1,0,0,0,5,8,866,1006,69,81,11,13,1,1,0,0,8,7,7,6,1,1,0,0,0,0,0,0,0,0,7,6,1,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,11,16,1450,621,829,564,739,42,76,5,3,0,3,0,0,10,8,574,746,44,79,14,8,0,3,0,1,615,817,559,728,41,75,5,3,0,3,0,0,10,8,569,735,43,78,14,8,0,3,0,1,6,12,5,11,1,1,0,0,0,0,0,0,0,0,5,11,1,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,11,17,1052,407,645,370,584,27,54,2,3,2,2,0,0,6,2,375,586,29,54,7,4,2,3,0,0,400,638,364,577,26,54,2,3,2,2,0,0,6,2,369,579,28,54,7,4,2,3,0,0,7,7,6,7,1,0,0,0,0,0,0,0,0,0,6,7,1,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,11,18,1018,337,681,314,621,16,56,4,0,0,1,0,0,3,3,317,624,16,56,7,2,0,2,0,0,333,675,311,615,16,56,3,0,0,1,0,0,3,3,314,618,16,56,6,2,0,2,0,0,4,6,3,6,0,0,1,0,0,0,0,0,0,0,3,6,0,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,12,0,37082,17932,19150,15221,16087,2159,2530,143,128,89,97,2,2,318,306,15524,16375,2340,2699,268,249,111,126,13,12,17588,18804,14954,15820,2127,2491,125,109,83,91,1,1,298,292,15239,16096,2296,2651,244,226,102,117,9,8,344,346,267,267,32,39,18,19,6,6,1,1,20,14,285,279,44,48,24,23,9,9,4,4 -050,01,039,Alabama,Covington County,12,1,2195,1120,1075,910,817,146,179,7,3,3,7,0,0,54,69,962,885,189,234,15,12,6,11,2,3,1088,1031,888,790,143,170,7,2,2,5,0,0,48,64,935,853,182,222,13,9,5,9,1,3,32,44,22,27,3,9,0,1,1,2,0,0,6,5,27,32,7,12,2,3,1,2,1,0 -050,01,039,Alabama,Covington County,12,2,2280,1184,1096,959,871,162,183,9,5,7,4,0,0,47,33,1003,901,198,209,18,13,9,7,3,1,1155,1064,936,852,160,173,7,4,7,4,0,0,45,31,979,881,194,197,15,12,9,6,3,0,29,32,23,19,2,10,2,1,0,0,0,0,2,2,24,20,4,12,3,1,0,1,0,1 -050,01,039,Alabama,Covington County,12,3,2281,1162,1119,917,909,188,161,10,14,6,6,0,0,41,29,958,937,216,181,18,20,11,10,0,0,1132,1078,897,876,184,156,7,11,6,6,0,0,38,29,935,904,209,176,15,17,11,10,0,0,30,41,20,33,4,5,3,3,0,0,0,0,3,0,23,33,7,5,3,3,0,0,0,0 -050,01,039,Alabama,Covington County,12,4,2099,1091,1008,881,826,168,139,7,10,6,6,0,0,29,27,910,851,187,160,14,16,9,8,0,0,1067,985,865,808,164,138,5,8,6,5,0,0,27,26,892,832,182,158,12,14,8,7,0,0,24,23,16,18,4,1,2,2,0,1,0,0,2,1,18,19,5,2,2,2,1,1,0,0 -050,01,039,Alabama,Covington County,12,5,1876,936,940,760,732,139,175,8,8,5,3,0,0,24,22,784,754,154,189,15,15,6,3,1,1,918,923,743,717,138,174,8,7,5,3,0,0,24,22,767,739,153,188,15,14,6,3,1,1,18,17,17,15,1,1,0,1,0,0,0,0,0,0,17,15,1,1,0,1,0,0,0,0 -050,01,039,Alabama,Covington County,12,6,2284,1185,1099,929,888,226,189,8,4,6,7,0,0,16,11,945,898,234,193,15,10,8,9,2,0,1163,1078,910,870,226,188,6,2,6,7,0,0,15,11,925,880,234,192,12,8,7,9,1,0,22,21,19,18,0,1,2,2,0,0,0,0,1,0,20,18,0,1,3,2,1,0,1,0 -050,01,039,Alabama,Covington County,12,7,2069,994,1075,806,920,155,134,12,10,3,3,0,0,18,8,823,926,164,137,20,14,5,5,1,1,969,1057,788,905,154,133,12,9,2,3,0,0,13,7,800,910,162,136,18,12,3,5,0,1,25,18,18,15,1,1,0,1,1,0,0,0,5,1,23,16,2,1,2,2,2,0,1,0 -050,01,039,Alabama,Covington County,12,8,2058,968,1090,858,904,90,151,7,12,2,13,1,0,10,10,867,914,93,155,15,17,2,15,1,1,950,1062,845,881,85,150,7,11,2,12,1,0,10,8,854,889,88,152,15,15,2,13,1,1,18,28,13,23,5,1,0,1,0,1,0,0,0,2,13,25,5,3,0,2,0,2,0,0 -050,01,039,Alabama,Covington County,12,9,1985,958,1027,828,861,111,145,9,6,7,8,0,0,3,7,831,867,114,148,9,9,7,9,0,1,935,1010,811,848,110,144,7,5,5,6,0,0,2,7,813,854,112,147,7,8,5,7,0,1,23,17,17,13,1,1,2,1,2,2,0,0,1,0,18,13,2,1,2,1,2,2,0,0 -050,01,039,Alabama,Covington County,12,10,2234,1120,1114,973,930,119,156,8,8,13,9,0,0,7,11,980,939,121,159,12,16,15,11,0,0,1097,1101,957,921,117,155,5,5,11,9,0,0,7,11,964,930,119,158,9,13,13,11,0,0,23,13,16,9,2,1,3,3,2,0,0,0,0,0,16,9,2,1,3,3,2,0,0,0 -050,01,039,Alabama,Covington County,12,11,2311,1125,1186,972,1013,124,144,8,6,10,7,0,1,11,15,983,1028,126,147,17,17,10,8,0,1,1102,1166,953,995,121,143,7,5,10,7,0,1,11,15,964,1010,123,146,16,16,10,8,0,1,23,20,19,18,3,1,1,1,0,0,0,0,0,0,19,18,3,1,1,1,0,0,0,0 -050,01,039,Alabama,Covington County,12,12,2694,1305,1389,1159,1186,119,181,8,8,11,6,0,1,8,7,1166,1192,121,183,13,12,12,8,1,1,1290,1372,1147,1175,117,177,7,8,11,6,0,0,8,6,1154,1180,119,179,12,12,12,7,1,0,15,17,12,11,2,4,1,0,0,0,0,1,0,1,12,12,2,4,1,0,0,1,0,1 -050,01,039,Alabama,Covington County,12,13,2751,1339,1412,1165,1211,140,168,12,9,6,6,1,0,15,18,1178,1228,144,171,25,22,6,7,1,2,1317,1402,1145,1203,140,168,11,9,6,6,0,0,15,16,1158,1219,144,170,24,22,6,7,0,0,22,10,20,8,0,0,1,0,0,0,1,0,0,2,20,9,0,1,1,0,0,0,1,2 -050,01,039,Alabama,Covington County,12,14,2288,1082,1206,951,1037,107,139,13,9,0,6,0,0,11,15,962,1052,108,140,22,21,1,8,1,0,1071,1195,941,1029,106,138,13,7,0,6,0,0,11,15,952,1044,107,139,22,19,1,8,1,0,11,11,10,8,1,1,0,2,0,0,0,0,0,0,10,8,1,1,0,2,0,0,0,0 -050,01,039,Alabama,Covington County,12,15,2106,976,1130,890,1011,74,102,6,7,2,0,0,0,4,10,894,1020,75,105,9,14,2,1,0,0,965,1123,880,1005,73,101,6,7,2,0,0,0,4,10,884,1014,74,104,9,14,2,1,0,0,11,7,10,6,1,1,0,0,0,0,0,0,0,0,10,6,1,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,12,16,1515,655,860,592,772,44,70,7,6,0,3,0,0,12,9,601,779,47,74,19,13,0,3,0,0,652,848,590,761,43,69,7,6,0,3,0,0,12,9,599,768,46,73,19,13,0,3,0,0,3,12,2,11,1,1,0,0,0,0,0,0,0,0,2,11,1,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,12,17,1040,396,644,359,580,30,56,1,3,2,2,0,0,4,3,362,583,31,56,5,6,2,2,0,0,386,637,349,573,30,56,1,3,2,2,0,0,4,3,352,576,31,56,5,6,2,2,0,0,10,7,10,7,0,0,0,0,0,0,0,0,0,0,10,7,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,12,18,1016,336,680,312,619,17,58,3,0,0,1,0,0,4,2,315,621,18,58,7,2,0,1,0,0,331,672,309,611,16,58,2,0,0,1,0,0,4,2,312,613,17,58,6,2,0,1,0,0,5,8,3,8,1,0,1,0,0,0,0,0,0,0,3,8,1,0,1,0,0,0,0,0 -050,01,039,Alabama,Covington County,13,0,36930,17831,19099,15140,16006,2152,2549,144,133,89,99,2,2,304,310,15432,16302,2323,2725,262,245,115,127,7,16,17471,18752,14867,15740,2113,2507,124,113,83,93,1,1,283,298,15138,16024,2274,2675,234,223,105,120,6,13,360,347,273,266,39,42,20,20,6,6,1,1,21,12,294,278,49,50,28,22,10,7,1,3 -050,01,039,Alabama,Covington County,13,1,2114,1073,1041,866,811,146,162,6,5,3,6,0,0,52,57,915,866,191,210,12,12,7,9,0,2,1045,1007,844,787,142,154,5,3,3,6,0,0,51,57,892,842,187,202,11,10,6,9,0,2,28,34,22,24,4,8,1,2,0,0,0,0,1,0,23,24,4,8,1,2,1,0,0,0 -050,01,039,Alabama,Covington County,13,2,2278,1165,1113,954,874,154,190,11,4,7,5,0,0,39,40,989,914,184,221,20,11,11,6,0,1,1120,1073,926,852,148,179,8,3,6,3,0,0,32,36,954,888,174,208,15,9,9,4,0,0,45,40,28,22,6,11,3,1,1,2,0,0,7,4,35,26,10,13,5,2,2,2,0,1 -050,01,039,Alabama,Covington County,13,3,2242,1159,1083,937,860,164,165,10,14,5,7,0,0,43,37,979,895,195,190,18,22,8,11,2,2,1134,1047,919,833,162,160,8,11,5,7,0,0,40,36,958,867,192,184,14,19,8,11,2,2,25,36,18,27,2,5,2,3,0,0,0,0,3,1,21,28,3,6,4,3,0,0,0,0 -050,01,039,Alabama,Covington County,13,4,2127,1103,1024,872,839,181,138,9,10,9,5,0,0,32,32,902,869,206,160,17,16,10,10,1,3,1076,1001,853,820,177,138,7,8,9,4,0,0,30,31,881,849,201,159,14,14,10,9,1,3,27,23,19,19,4,0,2,2,0,1,0,0,2,1,21,20,5,1,3,2,0,1,0,0 -050,01,039,Alabama,Covington County,13,5,1848,923,925,743,719,154,172,7,9,3,3,0,0,16,22,759,739,163,185,12,15,5,6,0,2,903,911,728,707,151,171,6,8,3,3,0,0,15,22,743,727,160,184,11,14,4,6,0,2,20,14,15,12,3,1,1,1,0,0,0,0,1,0,16,12,3,1,1,1,1,0,0,0 -050,01,039,Alabama,Covington County,13,6,2155,1097,1058,876,849,190,184,5,4,6,8,0,0,20,13,895,862,201,189,13,9,9,10,0,1,1082,1039,864,833,190,182,3,3,6,8,0,0,19,13,882,846,201,187,10,8,8,10,0,1,15,19,12,16,0,2,2,1,0,0,0,0,1,0,13,16,0,2,3,1,1,0,0,0 -050,01,039,Alabama,Covington County,13,7,2130,1078,1052,873,880,175,155,12,9,3,3,0,0,15,5,888,885,182,159,17,10,5,3,1,0,1047,1035,849,867,174,154,12,7,2,3,0,0,10,4,859,871,178,158,15,7,4,3,1,0,31,17,24,13,1,1,0,2,1,0,0,0,5,1,29,14,4,1,2,3,1,0,0,0 -050,01,039,Alabama,Covington County,13,8,2087,947,1140,822,941,107,165,5,12,3,11,1,0,9,11,831,952,110,170,10,17,4,11,1,1,934,1111,814,918,102,163,5,11,3,10,1,0,9,9,823,927,105,166,10,16,4,10,1,1,13,29,8,23,5,2,0,1,0,1,0,0,0,2,8,25,5,4,0,1,0,1,0,0 -050,01,039,Alabama,Covington County,13,9,1997,979,1018,865,858,99,137,5,7,5,9,0,0,5,7,870,865,101,139,7,10,5,10,1,1,951,1001,844,845,96,136,3,6,4,7,0,0,4,7,848,852,97,138,5,9,4,8,1,1,28,17,21,13,3,1,2,1,1,2,0,0,1,0,22,13,4,1,2,1,1,2,0,0 -050,01,039,Alabama,Covington County,13,10,2206,1079,1127,926,942,123,162,10,8,13,7,0,0,7,8,933,950,124,166,16,11,13,8,0,0,1062,1111,913,931,122,159,9,6,11,7,0,0,7,8,920,939,123,163,15,9,11,8,0,0,17,16,13,11,1,3,1,2,2,0,0,0,0,0,13,11,1,3,1,2,2,0,0,0 -050,01,039,Alabama,Covington County,13,11,2271,1099,1172,934,988,133,149,14,8,9,9,0,1,9,17,943,1003,133,153,21,21,11,11,0,1,1073,1149,916,968,129,148,11,6,8,9,0,1,9,17,925,983,129,152,18,19,10,11,0,1,26,23,18,20,4,1,3,2,1,0,0,0,0,0,18,20,4,1,3,2,1,0,0,0 -050,01,039,Alabama,Covington County,13,12,2639,1259,1380,1121,1189,115,166,6,9,9,6,0,1,8,9,1129,1198,116,168,12,15,10,7,0,1,1242,1361,1105,1175,114,163,6,9,9,6,0,0,8,8,1113,1183,115,164,12,15,10,7,0,0,17,19,16,14,1,3,0,0,0,0,0,1,0,1,16,15,1,4,0,0,0,0,0,1 -050,01,039,Alabama,Covington County,13,13,2741,1356,1385,1184,1191,136,167,16,6,7,8,1,0,12,13,1196,1204,137,169,25,14,9,11,1,1,1334,1372,1166,1181,135,166,14,6,7,8,0,0,12,11,1178,1192,136,167,23,14,9,10,0,0,22,13,18,10,1,1,2,0,0,0,1,0,0,2,18,12,1,2,2,0,0,1,1,1 -050,01,039,Alabama,Covington County,13,14,2395,1118,1277,993,1097,98,152,11,11,2,4,0,0,14,13,1007,1109,98,156,25,22,2,4,0,0,1103,1265,978,1087,98,152,11,9,2,4,0,0,14,13,992,1099,98,156,25,20,2,4,0,0,15,12,15,10,0,0,0,2,0,0,0,0,0,0,15,10,0,0,0,2,0,0,0,0 -050,01,039,Alabama,Covington County,13,15,2101,975,1126,878,999,84,106,6,8,3,2,0,0,4,11,882,1008,86,109,9,18,3,3,0,0,963,1118,868,993,82,104,6,8,3,2,0,0,4,11,872,1002,84,107,9,18,3,3,0,0,12,8,10,6,2,2,0,0,0,0,0,0,0,0,10,6,2,2,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,13,16,1536,694,842,636,759,40,67,7,5,0,2,0,0,11,9,647,767,41,68,17,14,1,2,0,0,688,831,631,749,39,66,7,5,0,2,0,0,11,9,642,757,40,67,17,14,1,2,0,0,6,11,5,10,1,1,0,0,0,0,0,0,0,0,5,10,1,1,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,13,17,1031,375,656,333,590,36,56,1,4,2,3,0,0,3,3,335,593,37,56,4,6,2,4,0,0,367,646,325,580,36,56,1,4,2,3,0,0,3,3,327,583,37,56,4,6,2,4,0,0,8,10,8,10,0,0,0,0,0,0,0,0,0,0,8,10,0,0,0,0,0,0,0,0 -050,01,039,Alabama,Covington County,13,18,1032,352,680,327,620,17,56,3,0,0,1,0,0,5,3,332,623,18,57,7,2,0,1,0,0,347,674,324,614,16,56,2,0,0,1,0,0,5,3,329,617,17,57,6,2,0,1,0,0,5,6,3,6,1,0,1,0,0,0,0,0,0,0,3,6,1,0,1,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,0,13906,6714,7192,4983,5210,1486,1770,30,29,116,80,5,3,94,100,5071,5301,1533,1824,80,76,122,90,5,3,6593,7109,4879,5142,1482,1761,30,28,111,79,1,0,90,99,4963,5233,1529,1814,76,74,117,89,1,0,121,83,104,68,4,9,0,1,5,1,4,3,4,1,108,68,4,10,4,2,5,1,4,3 -050,01,041,Alabama,Crenshaw County,1,1,829,413,416,295,291,83,97,1,1,16,4,1,2,17,21,311,311,96,114,5,5,18,6,1,2,405,405,289,282,83,97,1,1,15,4,0,0,17,21,305,302,96,114,5,5,17,6,0,0,8,11,6,9,0,0,0,0,1,0,1,2,0,0,6,9,0,0,0,0,1,0,1,2 -050,01,041,Alabama,Crenshaw County,1,2,943,496,447,351,309,111,115,1,2,14,9,0,0,19,12,369,321,126,126,6,3,14,9,0,0,491,441,347,304,111,114,1,2,13,9,0,0,19,12,365,316,126,125,6,3,13,9,0,0,5,6,4,5,0,1,0,0,1,0,0,0,0,0,4,5,0,1,0,0,1,0,0,0 -050,01,041,Alabama,Crenshaw County,1,3,924,476,448,327,310,129,124,1,2,8,3,0,0,11,9,338,319,137,130,4,4,8,4,0,0,469,439,321,303,129,122,1,2,7,3,0,0,11,9,332,312,137,128,4,4,7,4,0,0,7,9,6,7,0,2,0,0,1,0,0,0,0,0,6,7,0,2,0,0,1,0,0,0 -050,01,041,Alabama,Crenshaw County,1,4,989,531,458,377,294,139,146,3,3,3,7,0,0,9,8,386,302,143,151,8,5,3,8,0,0,522,447,368,283,139,146,3,3,3,7,0,0,9,8,377,291,143,151,8,5,3,8,0,0,9,11,9,11,0,0,0,0,0,0,0,0,0,0,9,11,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,5,734,385,349,253,258,119,79,1,0,4,4,1,0,7,8,260,266,121,84,7,3,4,4,1,0,368,345,241,254,119,79,1,0,3,4,0,0,4,8,245,262,121,84,4,3,3,4,0,0,17,4,12,4,0,0,0,0,1,0,1,0,3,0,15,4,0,0,3,0,1,0,1,0 -050,01,041,Alabama,Crenshaw County,1,6,719,349,370,275,267,55,98,2,2,10,2,1,0,6,1,280,268,57,98,6,2,11,3,1,0,327,362,255,260,55,98,2,1,10,2,0,0,5,1,259,261,57,98,5,1,11,3,0,0,22,8,20,7,0,0,0,1,0,0,1,0,1,0,21,7,0,0,1,1,0,0,1,0 -050,01,041,Alabama,Crenshaw County,1,7,776,347,429,254,302,76,107,2,0,13,16,0,0,2,4,256,306,77,107,3,3,13,17,0,0,340,424,247,298,76,106,2,0,13,16,0,0,2,4,249,302,77,106,3,3,13,17,0,0,7,5,7,4,0,1,0,0,0,0,0,0,0,0,7,4,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,8,927,446,481,340,330,88,135,1,2,14,8,2,1,1,5,341,334,88,136,2,7,14,8,2,1,433,478,329,328,87,135,1,2,14,8,1,0,1,5,330,332,87,136,2,7,14,8,1,0,13,3,11,2,1,0,0,0,0,0,1,1,0,0,11,2,1,0,0,0,0,0,1,1 -050,01,041,Alabama,Crenshaw County,1,9,860,416,444,320,313,78,111,1,2,16,9,0,0,1,9,321,320,78,114,1,10,17,10,0,0,408,440,314,311,77,110,1,2,15,8,0,0,1,9,315,318,77,113,1,10,16,9,0,0,8,4,6,2,1,1,0,0,1,1,0,0,0,0,6,2,1,1,0,0,1,1,0,0 -050,01,041,Alabama,Crenshaw County,1,10,1053,526,527,381,396,133,119,2,3,6,5,0,0,4,4,385,398,133,121,6,5,6,7,0,0,521,525,376,395,133,119,2,3,6,5,0,0,4,3,380,397,133,120,6,4,6,7,0,0,5,2,5,1,0,0,0,0,0,0,0,0,0,1,5,1,0,1,0,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,11,1069,537,532,414,365,111,153,4,5,6,6,0,0,2,3,415,368,112,154,6,7,6,6,0,0,532,529,409,362,111,153,4,5,6,6,0,0,2,3,410,365,112,154,6,7,6,6,0,0,5,3,5,3,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,12,934,436,498,328,376,100,107,4,5,0,3,0,0,4,7,331,382,101,108,8,11,1,4,0,0,433,493,327,372,98,106,4,5,0,3,0,0,4,7,330,378,99,107,8,11,1,4,0,0,3,5,1,4,2,1,0,0,0,0,0,0,0,0,1,4,2,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,13,939,446,493,348,385,86,99,2,0,6,4,0,0,4,5,351,389,86,100,6,5,7,4,0,0,441,490,343,384,86,97,2,0,6,4,0,0,4,5,346,388,86,98,6,5,7,4,0,0,5,3,5,1,0,2,0,0,0,0,0,0,0,0,5,1,0,2,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,14,656,334,322,267,251,60,68,4,1,0,0,0,0,3,2,270,253,60,68,7,3,0,0,0,0,332,318,265,248,60,67,4,1,0,0,0,0,3,2,268,250,60,67,7,3,0,0,0,0,2,4,2,3,0,1,0,0,0,0,0,0,0,0,2,3,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,15,533,222,311,176,226,43,85,1,0,0,0,0,0,2,0,178,226,43,85,3,0,0,0,0,0,220,309,174,224,43,85,1,0,0,0,0,0,2,0,176,224,43,85,3,0,0,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,16,413,181,232,144,182,36,49,0,0,0,0,0,0,1,1,145,182,36,50,1,1,0,0,0,0,180,231,143,181,36,49,0,0,0,0,0,0,1,1,144,181,36,50,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,17,298,92,206,78,171,14,34,0,0,0,0,0,0,0,1,78,172,14,34,0,1,0,0,0,0,90,205,76,170,14,34,0,0,0,0,0,0,0,1,76,171,14,34,0,1,0,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,1,18,310,81,229,55,184,25,44,0,1,0,0,0,0,1,0,56,184,25,44,1,1,0,0,0,0,81,228,55,183,25,44,0,1,0,0,0,0,1,0,56,183,25,44,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,0,13891,6703,7188,4979,5207,1484,1770,30,29,111,79,5,3,94,100,5067,5298,1531,1824,80,76,117,89,5,3,6587,7106,4875,5139,1480,1761,30,28,111,79,1,0,90,99,4959,5230,1527,1814,76,74,117,89,1,0,116,82,104,68,4,9,0,1,0,0,4,3,4,1,108,68,4,10,4,2,0,0,4,3 -050,01,041,Alabama,Crenshaw County,2,1,828,411,417,294,291,83,98,1,1,15,4,1,2,17,21,310,311,96,115,5,5,17,6,1,2,404,406,288,282,83,98,1,1,15,4,0,0,17,21,304,302,96,115,5,5,17,6,0,0,7,11,6,9,0,0,0,0,0,0,1,2,0,0,6,9,0,0,0,0,0,0,1,2 -050,01,041,Alabama,Crenshaw County,2,2,944,495,449,351,309,111,117,1,2,13,9,0,0,19,12,369,321,126,128,6,3,13,9,0,0,491,443,347,304,111,116,1,2,13,9,0,0,19,12,365,316,126,127,6,3,13,9,0,0,4,6,4,5,0,1,0,0,0,0,0,0,0,0,4,5,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,3,921,474,447,326,309,129,124,1,2,7,3,0,0,11,9,337,318,137,130,4,4,7,4,0,0,468,438,320,302,129,122,1,2,7,3,0,0,11,9,331,311,137,128,4,4,7,4,0,0,6,9,6,7,0,2,0,0,0,0,0,0,0,0,6,7,0,2,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,4,989,531,458,377,294,139,146,3,3,3,7,0,0,9,8,386,302,143,151,8,5,3,8,0,0,522,447,368,283,139,146,3,3,3,7,0,0,9,8,377,291,143,151,8,5,3,8,0,0,9,11,9,11,0,0,0,0,0,0,0,0,0,0,9,11,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,5,731,383,348,253,257,118,79,1,0,3,4,1,0,7,8,260,265,120,84,7,3,3,4,1,0,367,344,241,253,118,79,1,0,3,4,0,0,4,8,245,261,120,84,4,3,3,4,0,0,16,4,12,4,0,0,0,0,0,0,1,0,3,0,15,4,0,0,3,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,2,6,718,348,370,274,267,55,98,2,2,10,2,1,0,6,1,279,268,57,98,6,2,11,3,1,0,326,362,254,260,55,98,2,1,10,2,0,0,5,1,258,261,57,98,5,1,11,3,0,0,22,8,20,7,0,0,0,1,0,0,1,0,1,0,21,7,0,0,1,1,0,0,1,0 -050,01,041,Alabama,Crenshaw County,2,7,776,347,429,254,302,76,107,2,0,13,16,0,0,2,4,256,306,77,107,3,3,13,17,0,0,340,424,247,298,76,106,2,0,13,16,0,0,2,4,249,302,77,106,3,3,13,17,0,0,7,5,7,4,0,1,0,0,0,0,0,0,0,0,7,4,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,8,926,445,481,339,329,88,136,1,2,14,8,2,1,1,5,340,333,88,137,2,7,14,8,2,1,432,478,328,327,87,136,1,2,14,8,1,0,1,5,329,331,87,137,2,7,14,8,1,0,13,3,11,2,1,0,0,0,0,0,1,1,0,0,11,2,1,0,0,0,0,0,1,1 -050,01,041,Alabama,Crenshaw County,2,9,859,416,443,320,313,79,111,1,2,15,8,0,0,1,9,321,320,79,114,1,10,16,9,0,0,409,440,314,311,78,110,1,2,15,8,0,0,1,9,315,318,78,113,1,10,16,9,0,0,7,3,6,2,1,1,0,0,0,0,0,0,0,0,6,2,1,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,10,1053,526,527,381,396,133,119,2,3,6,5,0,0,4,4,385,398,133,121,6,5,6,7,0,0,521,525,376,395,133,119,2,3,6,5,0,0,4,3,380,397,133,120,6,4,6,7,0,0,5,2,5,1,0,0,0,0,0,0,0,0,0,1,5,1,0,1,0,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,11,1069,537,532,414,365,111,153,4,5,6,6,0,0,2,3,415,368,112,154,6,7,6,6,0,0,532,529,409,362,111,153,4,5,6,6,0,0,2,3,410,365,112,154,6,7,6,6,0,0,5,3,5,3,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,12,932,435,497,328,376,99,106,4,5,0,3,0,0,4,7,331,382,100,107,8,11,1,4,0,0,432,492,327,372,97,105,4,5,0,3,0,0,4,7,330,378,98,106,8,11,1,4,0,0,3,5,1,4,2,1,0,0,0,0,0,0,0,0,1,4,2,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,13,939,446,493,348,385,86,99,2,0,6,4,0,0,4,5,351,389,86,100,6,5,7,4,0,0,441,490,343,384,86,97,2,0,6,4,0,0,4,5,346,388,86,98,6,5,7,4,0,0,5,3,5,1,0,2,0,0,0,0,0,0,0,0,5,1,0,2,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,14,655,334,321,267,251,60,67,4,1,0,0,0,0,3,2,270,253,60,67,7,3,0,0,0,0,332,317,265,248,60,66,4,1,0,0,0,0,3,2,268,250,60,66,7,3,0,0,0,0,2,4,2,3,0,1,0,0,0,0,0,0,0,0,2,3,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,15,532,222,310,176,226,43,84,1,0,0,0,0,0,2,0,178,226,43,84,3,0,0,0,0,0,220,308,174,224,43,84,1,0,0,0,0,0,2,0,176,224,43,84,3,0,0,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,16,412,181,231,144,182,36,48,0,0,0,0,0,0,1,1,145,182,36,49,1,1,0,0,0,0,180,230,143,181,36,48,0,0,0,0,0,0,1,1,144,181,36,49,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,17,296,91,205,78,171,13,33,0,0,0,0,0,0,0,1,78,172,13,33,0,1,0,0,0,0,89,204,76,170,13,33,0,0,0,0,0,0,0,1,76,171,13,33,0,1,0,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,2,18,311,81,230,55,184,25,45,0,1,0,0,0,0,1,0,56,184,25,45,1,1,0,0,0,0,81,229,55,183,25,45,0,1,0,0,0,0,1,0,56,183,25,45,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,0,13868,6687,7181,4967,5200,1476,1764,30,29,115,84,5,3,94,101,5055,5294,1534,1820,61,68,126,96,8,5,6569,7098,4861,5130,1471,1756,30,28,115,84,1,0,91,100,4947,5223,1527,1811,60,66,125,96,3,2,118,83,106,70,5,8,0,1,0,0,4,3,3,1,108,71,7,9,1,2,1,0,5,3 -050,01,041,Alabama,Crenshaw County,3,1,814,402,412,282,287,88,96,1,1,14,5,1,2,16,21,298,307,101,112,2,3,17,8,1,3,393,401,275,278,87,96,1,1,14,5,0,0,16,21,291,298,100,112,2,3,17,8,0,1,9,11,7,9,1,0,0,0,0,0,1,2,0,0,7,9,1,0,0,0,0,0,1,2 -050,01,041,Alabama,Crenshaw County,3,2,937,497,440,353,307,112,112,1,2,13,8,0,0,18,11,371,318,125,122,6,3,13,8,0,0,492,433,348,301,112,111,1,2,13,8,0,0,18,11,366,312,125,121,6,3,13,8,0,0,5,7,5,6,0,1,0,0,0,0,0,0,0,0,5,6,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,3,925,469,456,325,308,124,131,1,2,6,5,0,0,13,10,337,318,133,138,3,5,8,5,1,0,464,446,320,300,124,129,1,2,6,5,0,0,13,10,332,310,133,136,3,5,8,5,1,0,5,10,5,8,0,2,0,0,0,0,0,0,0,0,5,8,0,2,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,4,976,528,448,374,289,139,142,3,3,3,6,0,0,9,8,383,296,147,148,4,6,3,6,0,0,518,438,364,279,139,142,3,3,3,6,0,0,9,8,373,286,147,148,4,6,3,6,0,0,10,10,10,10,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,5,735,382,353,256,260,114,80,1,0,4,5,1,0,6,8,261,267,116,82,4,5,6,7,2,0,366,348,243,255,114,80,1,0,4,5,0,0,4,8,247,262,115,82,3,5,5,7,0,0,16,5,13,5,0,0,0,0,0,0,1,0,2,0,14,5,1,0,1,0,1,0,2,0 -050,01,041,Alabama,Crenshaw County,3,6,717,349,368,274,264,56,99,2,2,9,1,1,0,7,2,280,266,58,100,6,2,11,2,1,0,327,359,254,256,56,99,2,1,9,1,0,0,6,2,259,258,57,100,6,1,11,2,0,0,22,9,20,8,0,0,0,1,0,0,1,0,1,0,21,8,1,0,0,1,0,0,1,0 -050,01,041,Alabama,Crenshaw County,3,7,780,351,429,255,302,77,104,2,0,15,19,0,0,2,4,257,306,78,105,3,2,15,20,0,0,344,424,248,298,77,103,2,0,15,19,0,0,2,4,250,302,78,104,3,2,15,20,0,0,7,5,7,4,0,1,0,0,0,0,0,0,0,0,7,4,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,8,918,438,480,332,329,86,134,1,2,16,9,2,1,1,5,333,333,86,138,1,4,17,9,2,1,424,477,320,327,85,134,1,2,16,9,1,0,1,5,321,331,85,138,1,4,17,9,1,0,14,3,12,2,1,0,0,0,0,0,1,1,0,0,12,2,1,0,0,0,0,0,1,1 -050,01,041,Alabama,Crenshaw County,3,9,861,416,445,322,314,77,111,1,3,15,9,0,0,1,8,323,322,78,112,1,9,15,10,0,0,410,442,317,312,76,110,1,3,15,9,0,0,1,8,318,320,77,111,1,9,15,10,0,0,6,3,5,2,1,1,0,0,0,0,0,0,0,0,5,2,1,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,10,1037,516,521,374,393,130,116,2,3,7,4,0,0,3,5,377,398,131,117,4,5,7,6,0,1,513,519,371,392,130,116,2,3,7,4,0,0,3,4,374,396,131,116,4,4,7,6,0,1,3,2,3,1,0,0,0,0,0,0,0,0,0,1,3,2,0,1,0,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,11,1072,537,535,415,366,111,154,3,5,7,7,0,0,1,3,416,369,111,154,4,7,7,8,0,0,530,533,408,364,111,154,3,5,7,7,0,0,1,3,409,367,111,154,4,7,7,8,0,0,7,2,7,2,0,0,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,12,933,440,493,332,373,100,107,4,4,0,2,0,0,4,7,336,377,103,109,6,11,0,3,0,0,437,488,331,369,98,106,4,4,0,2,0,0,4,7,335,373,101,108,6,11,0,3,0,0,3,5,1,4,2,1,0,0,0,0,0,0,0,0,1,4,2,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,13,942,444,498,348,390,84,99,2,0,6,4,0,0,4,5,351,395,86,102,5,2,6,4,0,0,440,496,344,389,84,98,2,0,6,4,0,0,4,5,347,394,86,101,5,2,6,4,0,0,4,2,4,1,0,1,0,0,0,0,0,0,0,0,4,1,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,14,665,340,325,270,253,61,69,5,1,0,0,0,0,4,2,274,255,61,70,9,2,0,0,0,0,338,321,268,250,61,68,5,1,0,0,0,0,4,2,272,252,61,69,9,2,0,0,0,0,2,4,2,3,0,1,0,0,0,0,0,0,0,0,2,3,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,15,534,225,309,178,226,43,83,1,0,0,0,0,0,3,0,179,226,45,83,3,0,0,0,1,0,223,307,176,224,43,83,1,0,0,0,0,0,3,0,177,224,45,83,3,0,0,0,1,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,16,420,183,237,146,186,36,50,0,0,0,0,0,0,1,1,147,187,36,50,0,1,1,0,0,0,182,236,145,185,36,50,0,0,0,0,0,0,1,1,146,186,36,50,0,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,17,289,89,200,75,166,14,33,0,0,0,0,0,0,0,1,75,167,14,34,0,0,0,0,0,0,87,199,73,165,14,33,0,0,0,0,0,0,0,1,73,166,14,34,0,0,0,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,3,18,313,81,232,56,187,24,44,0,1,0,0,0,0,1,0,57,187,25,44,0,1,0,0,0,0,81,231,56,186,24,44,0,1,0,0,0,0,1,0,57,186,25,44,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,0,13894,6708,7186,4899,5138,1545,1802,31,36,116,102,7,4,110,104,5005,5236,1605,1862,73,73,126,116,11,5,6589,7087,4796,5053,1538,1794,31,35,116,102,1,0,107,103,4899,5150,1597,1853,72,72,125,116,5,1,119,99,103,85,7,8,0,1,0,0,6,4,3,1,106,86,8,9,1,1,1,0,6,4 -050,01,041,Alabama,Crenshaw County,4,1,849,424,425,277,291,109,101,0,2,11,9,2,3,25,19,302,310,129,119,3,4,13,10,2,3,411,408,267,277,108,101,0,2,11,9,0,0,25,19,292,296,128,119,3,4,13,10,0,0,13,17,10,14,1,0,0,0,0,0,2,3,0,0,10,14,1,0,0,0,0,0,2,3 -050,01,041,Alabama,Crenshaw County,4,2,898,479,419,328,287,116,108,2,1,15,9,0,0,18,14,344,301,130,119,7,3,16,10,0,0,472,404,322,273,115,107,2,1,15,9,0,0,18,14,338,287,129,118,7,3,16,10,0,0,7,15,6,14,1,1,0,0,0,0,0,0,0,0,6,14,1,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,3,948,470,478,323,310,120,147,1,4,8,7,0,0,18,10,340,320,133,154,5,5,9,9,1,0,466,466,319,300,120,145,1,4,8,7,0,0,18,10,336,310,133,152,5,5,9,9,1,0,4,12,4,10,0,2,0,0,0,0,0,0,0,0,4,10,0,2,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,4,906,492,414,344,265,133,133,2,4,4,4,0,0,9,8,353,273,137,136,6,8,4,5,1,0,484,408,336,259,133,133,2,4,4,4,0,0,9,8,345,267,137,136,6,8,4,5,1,0,8,6,8,6,0,0,0,0,0,0,0,0,0,0,8,6,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,5,779,403,376,270,265,119,97,3,1,4,5,1,0,6,8,276,272,119,103,6,3,7,6,1,0,393,369,263,258,119,97,3,1,4,5,0,0,4,8,267,265,119,103,5,3,6,6,0,0,10,7,7,7,0,0,0,0,0,0,1,0,2,0,9,7,0,0,1,0,1,0,1,0 -050,01,041,Alabama,Crenshaw County,4,6,740,363,377,269,266,77,100,2,2,6,3,1,0,8,6,277,271,81,104,5,4,7,4,1,0,343,369,251,259,77,100,2,1,6,3,0,0,7,6,258,264,80,104,5,3,7,4,0,0,20,8,18,7,0,0,0,1,0,0,1,0,1,0,19,7,1,0,0,1,0,0,1,0 -050,01,041,Alabama,Crenshaw County,4,7,785,357,428,246,298,91,105,1,0,16,22,0,0,3,3,249,301,92,107,3,1,16,22,0,0,349,420,238,291,91,104,1,0,16,22,0,0,3,3,241,294,92,106,3,1,16,22,0,0,8,8,8,7,0,1,0,0,0,0,0,0,0,0,8,7,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,8,871,399,472,295,321,83,129,2,1,16,16,1,1,2,4,297,325,83,130,4,3,16,17,1,1,389,469,286,319,82,129,2,1,16,16,1,0,2,4,288,323,82,130,4,3,16,17,1,0,10,3,9,2,1,0,0,0,0,0,0,1,0,0,9,2,1,0,0,0,0,0,0,1 -050,01,041,Alabama,Crenshaw County,4,9,871,427,444,340,302,69,125,0,5,16,8,2,0,0,4,340,306,69,125,0,9,16,8,2,0,416,442,331,301,69,124,0,5,16,8,0,0,0,4,331,305,69,124,0,9,16,8,0,0,11,2,9,1,0,1,0,0,0,0,2,0,0,0,9,1,0,1,0,0,0,0,2,0 -050,01,041,Alabama,Crenshaw County,4,10,998,478,520,341,394,122,112,3,2,10,4,0,0,2,8,343,402,124,115,4,6,10,5,0,0,474,517,339,392,120,112,3,2,10,4,0,0,2,7,341,399,122,114,4,6,10,5,0,0,4,3,2,2,2,0,0,0,0,0,0,0,0,1,2,3,2,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,11,1073,539,534,406,365,125,153,2,6,4,8,0,0,2,2,408,367,125,153,3,7,4,9,1,0,531,533,398,364,125,153,2,6,4,8,0,0,2,2,400,366,125,153,3,7,4,9,1,0,8,1,8,1,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,12,955,469,486,353,359,107,113,5,5,0,2,0,0,4,7,357,364,107,115,7,9,1,5,1,0,466,481,351,355,106,112,5,5,0,2,0,0,4,7,355,360,106,114,7,9,1,5,1,0,3,5,2,4,1,1,0,0,0,0,0,0,0,0,2,4,1,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,13,972,459,513,357,399,91,102,2,1,5,5,0,0,4,6,361,404,91,104,5,5,6,5,0,1,455,510,354,397,90,101,2,1,5,5,0,0,4,6,358,402,90,103,5,5,6,5,0,1,4,3,3,2,1,1,0,0,0,0,0,0,0,0,3,2,1,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,14,705,364,341,285,264,69,75,4,1,1,0,0,0,5,1,290,265,69,75,9,2,1,0,0,0,361,337,282,261,69,74,4,1,1,0,0,0,5,1,287,262,69,74,9,2,1,0,0,0,3,4,3,3,0,1,0,0,0,0,0,0,0,0,3,3,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,15,528,221,307,177,228,41,78,1,0,0,0,0,0,2,1,179,228,41,79,3,1,0,0,0,0,219,306,175,227,41,78,1,0,0,0,0,0,2,1,177,227,41,79,3,1,0,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,16,424,184,240,147,184,35,55,1,0,0,0,0,0,1,1,147,185,36,55,2,0,0,1,0,0,182,238,145,182,35,55,1,0,0,0,0,0,1,1,145,183,36,55,2,0,0,1,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,17,289,95,194,79,160,16,34,0,0,0,0,0,0,0,0,79,160,16,34,0,0,0,0,0,0,93,193,77,159,16,34,0,0,0,0,0,0,0,0,77,159,16,34,0,0,0,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,4,18,303,85,218,62,180,22,35,0,1,0,0,0,0,1,2,63,182,23,35,1,3,0,0,0,0,85,217,62,179,22,35,0,1,0,0,0,0,1,2,63,181,23,35,1,3,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,0,13914,6754,7160,4928,5114,1555,1798,35,39,119,95,7,4,110,110,5032,5217,1617,1858,80,83,128,108,7,7,6634,7063,4828,5034,1547,1788,33,38,119,95,1,0,106,108,4928,5135,1607,1847,76,81,128,108,1,3,120,97,100,80,8,10,2,1,0,0,6,4,4,2,104,82,10,11,4,2,0,0,6,4 -050,01,041,Alabama,Crenshaw County,5,1,832,424,408,266,276,120,105,0,1,11,4,2,3,25,19,291,293,140,120,4,3,12,6,2,5,414,391,259,262,119,105,0,1,11,4,0,0,25,19,284,279,139,120,4,3,12,6,0,2,10,17,7,14,1,0,0,0,0,0,2,3,0,0,7,14,1,0,0,0,0,0,2,3 -050,01,041,Alabama,Crenshaw County,5,2,891,471,420,329,295,109,97,3,2,17,10,0,0,13,16,341,311,117,110,7,4,19,13,0,0,465,401,325,279,107,95,3,2,17,10,0,0,13,15,337,294,115,107,7,4,19,13,0,0,6,19,4,16,2,2,0,0,0,0,0,0,0,1,4,17,2,3,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,3,925,463,462,326,318,103,125,2,2,10,6,0,0,22,11,348,329,118,133,8,3,11,8,0,0,460,449,323,308,103,122,2,2,10,6,0,0,22,11,345,319,118,130,8,3,11,8,0,0,3,13,3,10,0,3,0,0,0,0,0,0,0,0,3,10,0,3,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,4,887,465,422,323,264,127,140,2,5,4,2,0,0,9,11,331,274,132,147,6,9,5,3,0,0,458,416,316,258,127,140,2,5,4,2,0,0,9,11,324,268,132,147,6,9,5,3,0,0,7,6,7,6,0,0,0,0,0,0,0,0,0,0,7,6,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,5,845,436,409,301,283,123,105,1,4,2,8,1,0,8,9,309,291,123,111,6,9,5,8,1,0,423,405,291,279,123,105,1,4,2,8,0,0,6,9,297,287,123,111,4,9,5,8,0,0,13,4,10,4,0,0,0,0,0,0,1,0,2,0,12,4,0,0,2,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,5,6,720,364,356,262,255,84,91,3,1,7,3,1,0,7,6,268,261,88,95,6,3,8,3,1,0,345,350,246,249,84,91,3,1,7,3,0,0,5,6,250,255,86,95,6,3,8,3,0,0,19,6,16,6,0,0,0,0,0,0,1,0,2,0,18,6,2,0,0,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,5,7,766,354,412,252,278,85,116,2,1,13,15,0,0,2,2,254,280,87,116,2,3,13,15,0,0,347,406,245,274,85,115,2,0,13,15,0,0,2,2,247,276,87,115,2,2,13,15,0,0,7,6,7,4,0,1,0,1,0,0,0,0,0,0,7,4,0,1,0,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,8,860,405,455,288,318,94,113,2,2,16,18,1,1,4,3,292,320,95,115,5,3,16,19,1,1,395,453,278,317,94,113,2,2,16,18,1,0,4,3,282,319,95,115,5,3,16,19,1,0,10,2,10,1,0,0,0,0,0,0,0,1,0,0,10,1,0,0,0,0,0,0,0,1 -050,01,041,Alabama,Crenshaw County,5,9,874,445,429,352,282,77,130,2,5,11,8,2,0,1,4,353,285,77,130,3,7,11,10,2,1,428,426,340,280,76,129,0,5,11,8,0,0,1,4,341,283,76,129,1,7,11,10,0,1,17,3,12,2,1,1,2,0,0,0,2,0,0,0,12,2,1,1,2,0,0,0,2,0 -050,01,041,Alabama,Crenshaw County,5,10,962,442,520,320,385,105,121,1,1,15,5,0,0,1,8,321,392,105,123,2,7,15,6,0,0,438,517,318,383,103,121,1,1,15,5,0,0,1,7,319,389,103,123,2,6,15,6,0,0,4,3,2,2,2,0,0,0,0,0,0,0,0,1,2,3,2,0,0,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,11,1071,550,521,405,367,134,138,4,5,5,8,0,0,2,3,406,370,136,139,5,7,5,8,0,0,542,520,397,366,134,138,4,5,5,8,0,0,2,3,398,369,136,139,5,7,5,8,0,0,8,1,8,1,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,12,1004,498,506,373,362,116,127,4,7,2,3,0,0,3,7,375,369,117,128,7,13,2,3,0,0,494,502,370,359,115,126,4,7,2,3,0,0,3,7,372,366,116,127,7,13,2,3,0,0,4,4,3,3,1,1,0,0,0,0,0,0,0,0,3,3,1,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,13,937,448,489,344,380,94,99,2,1,4,5,0,0,4,4,348,384,96,99,4,5,4,5,0,0,445,486,342,377,93,99,2,1,4,5,0,0,4,4,346,381,95,99,4,5,4,5,0,0,3,3,2,3,1,0,0,0,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,14,813,400,413,321,322,69,87,4,1,2,0,0,0,4,3,325,325,70,87,7,4,2,0,0,0,396,409,317,320,69,85,4,1,2,0,0,0,4,3,321,323,70,85,7,4,2,0,0,0,4,4,4,2,0,2,0,0,0,0,0,0,0,0,4,2,0,2,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,15,520,230,290,184,216,43,73,2,0,0,0,0,0,1,1,184,217,44,73,3,1,0,0,0,0,228,288,182,214,43,73,2,0,0,0,0,0,1,1,182,215,44,73,3,1,0,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,16,418,183,235,142,175,37,59,1,0,0,0,0,0,3,1,145,176,37,60,4,0,0,0,0,0,182,233,141,173,37,59,1,0,0,0,0,0,3,1,144,174,37,60,4,0,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,17,293,96,197,81,160,15,37,0,0,0,0,0,0,0,0,81,160,15,37,0,0,0,0,0,0,95,196,80,159,15,37,0,0,0,0,0,0,0,0,80,159,15,37,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,5,18,296,80,216,59,178,20,35,0,1,0,0,0,0,1,2,60,180,20,35,1,2,0,1,0,0,79,215,58,177,20,35,0,1,0,0,0,0,1,2,59,179,20,35,1,2,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,0,13847,6743,7104,4940,5074,1548,1773,32,41,105,97,6,5,112,114,5044,5182,1623,1835,69,91,115,105,8,7,6623,7012,4841,5003,1540,1761,30,41,105,97,0,0,107,110,4941,5108,1610,1821,66,90,115,103,2,2,120,92,99,71,8,12,2,0,0,0,6,5,5,4,103,74,13,14,3,1,0,2,6,5 -050,01,041,Alabama,Crenshaw County,6,1,809,430,379,276,265,120,90,0,4,11,3,0,3,23,14,298,279,141,100,1,8,13,3,0,3,426,361,273,252,119,88,0,4,11,3,0,0,23,14,295,266,140,98,1,8,13,3,0,0,4,18,3,13,1,2,0,0,0,0,0,3,0,0,3,13,1,2,0,0,0,0,0,3 -050,01,041,Alabama,Crenshaw County,6,2,886,449,437,312,301,107,100,3,2,11,9,2,0,14,25,326,324,118,121,6,6,11,11,2,0,440,424,307,290,106,100,3,2,11,9,0,0,13,23,320,311,116,120,6,6,11,10,0,0,9,13,5,11,1,0,0,0,0,0,2,0,1,2,6,13,2,1,0,0,0,1,2,0 -050,01,041,Alabama,Crenshaw County,6,3,911,460,451,333,313,96,124,0,2,9,5,0,0,22,7,355,320,111,129,6,3,10,7,0,0,456,438,329,305,96,119,0,2,9,5,0,0,22,7,351,312,111,124,6,3,10,7,0,0,4,13,4,8,0,5,0,0,0,0,0,0,0,0,4,8,0,5,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,4,886,464,422,321,267,126,133,2,3,5,6,0,0,10,13,330,280,133,141,4,9,6,6,1,0,455,416,313,261,125,133,2,3,5,6,0,0,10,13,322,274,132,141,4,9,6,6,1,0,9,6,8,6,1,0,0,0,0,0,0,0,0,0,8,6,1,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,5,879,453,426,313,282,127,127,1,5,1,6,0,0,11,6,323,288,132,130,6,6,4,8,0,0,445,422,307,278,127,127,1,5,1,6,0,0,9,6,316,284,130,130,5,6,4,8,0,0,8,4,6,4,0,0,0,0,0,0,0,0,2,0,7,4,2,0,1,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,6,713,355,358,248,254,95,92,1,1,5,3,2,0,4,8,251,261,99,97,2,4,5,4,2,0,335,353,232,249,95,92,1,1,5,3,0,0,2,8,233,256,97,97,2,4,5,4,0,0,20,5,16,5,0,0,0,0,0,0,2,0,2,0,18,5,2,0,0,0,0,0,2,0 -050,01,041,Alabama,Crenshaw County,6,7,763,363,400,270,265,77,112,3,1,8,18,0,0,5,4,275,269,78,112,6,4,9,18,0,1,353,393,260,260,77,111,3,1,8,18,0,0,5,3,265,263,78,111,6,3,9,18,0,1,10,7,10,5,0,1,0,0,0,0,0,0,0,1,10,6,0,1,0,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,8,809,396,413,284,287,88,104,2,1,17,16,0,1,5,4,288,291,91,106,5,3,17,16,0,1,386,411,274,286,88,104,2,1,17,16,0,0,5,4,278,290,91,106,5,3,17,16,0,0,10,2,10,1,0,0,0,0,0,0,0,1,0,0,10,1,0,0,0,0,0,0,0,1 -050,01,041,Alabama,Crenshaw County,6,9,856,421,435,329,288,81,129,0,5,8,8,2,1,1,4,330,291,81,130,0,9,9,8,2,1,409,431,320,286,80,128,0,5,8,8,0,0,1,4,321,289,80,129,0,9,9,8,0,0,12,4,9,2,1,1,0,0,0,0,2,1,0,0,9,2,1,1,0,0,0,0,2,1 -050,01,041,Alabama,Crenshaw County,6,10,901,402,499,302,373,82,113,3,1,14,5,0,0,1,7,303,380,82,113,4,8,14,5,0,0,393,498,297,372,80,113,1,1,14,5,0,0,1,7,298,379,80,113,2,8,14,5,0,0,9,1,5,1,2,0,2,0,0,0,0,0,0,0,5,1,2,0,2,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,11,1064,565,499,409,351,141,133,4,5,9,7,0,0,2,3,411,353,143,134,4,6,9,8,0,1,558,497,402,350,141,133,4,5,9,7,0,0,2,2,404,352,143,133,4,6,9,7,0,1,7,2,7,1,0,0,0,0,0,0,0,0,0,1,7,1,0,1,0,0,0,1,0,0 -050,01,041,Alabama,Crenshaw County,6,12,1037,507,530,383,371,119,139,2,7,1,6,0,0,2,7,385,378,120,140,3,13,1,6,0,0,502,525,379,367,118,138,2,7,1,6,0,0,2,7,381,374,119,139,3,13,1,6,0,0,5,5,4,4,1,1,0,0,0,0,0,0,0,0,4,4,1,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,13,907,447,460,339,361,98,88,3,2,3,5,0,0,4,4,343,365,99,90,6,4,3,5,0,0,445,457,338,358,97,88,3,2,3,5,0,0,4,4,342,362,98,90,6,4,3,5,0,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,14,862,409,453,333,357,66,92,5,0,3,0,0,0,2,4,334,361,67,94,7,2,3,0,0,0,405,450,329,356,66,90,5,0,3,0,0,0,2,4,330,360,67,92,7,2,3,0,0,0,4,3,4,1,0,2,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,15,541,258,283,202,215,52,66,2,1,0,0,0,0,2,1,203,215,54,67,4,2,1,0,1,0,255,281,199,213,52,66,2,1,0,0,0,0,2,1,200,213,54,67,4,2,1,0,1,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,16,423,181,242,141,180,37,61,1,0,0,0,0,0,2,1,143,181,37,61,3,1,0,0,0,0,179,239,139,177,37,61,1,0,0,0,0,0,2,1,141,178,37,61,3,1,0,0,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,17,294,102,192,84,156,17,36,0,0,0,0,0,0,1,0,84,156,18,36,1,0,0,0,0,0,101,191,83,155,17,36,0,0,0,0,0,0,1,0,83,155,18,36,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,6,18,306,81,225,61,188,19,34,0,1,0,0,0,0,1,2,62,190,19,34,1,3,0,0,0,0,80,225,60,188,19,34,0,1,0,0,0,0,1,2,61,190,19,34,1,3,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,0,13851,6781,7070,5020,5074,1517,1744,31,32,94,99,6,4,113,117,5127,5183,1586,1810,71,74,104,111,10,9,6662,6981,4921,5005,1508,1732,31,32,94,99,0,0,108,113,5023,5110,1576,1797,68,72,103,111,4,4,119,89,99,69,9,12,0,0,0,0,6,4,5,4,104,73,10,13,3,2,1,0,6,5 -050,01,041,Alabama,Crenshaw County,7,1,812,447,365,316,258,104,82,0,1,7,4,0,1,20,19,335,277,122,98,3,4,8,4,0,1,440,354,311,250,102,80,0,1,7,4,0,0,20,19,330,269,120,96,3,4,8,4,0,0,7,11,5,8,2,2,0,0,0,0,0,1,0,0,5,8,2,2,0,0,0,0,0,1 -050,01,041,Alabama,Crenshaw County,7,2,852,421,431,286,298,105,101,2,1,9,7,2,2,17,22,302,320,119,117,5,3,10,9,2,4,410,414,279,285,104,101,2,1,9,7,0,0,16,20,294,305,118,117,4,2,10,9,0,1,11,17,7,13,1,0,0,0,0,0,2,2,1,2,8,15,1,0,1,1,0,0,2,3 -050,01,041,Alabama,Crenshaw County,7,3,927,484,443,359,303,91,122,1,3,13,7,0,0,20,8,379,311,106,128,4,3,15,9,2,0,481,432,356,295,91,119,1,3,13,7,0,0,20,8,376,303,106,125,4,3,15,9,2,0,3,11,3,8,0,3,0,0,0,0,0,0,0,0,3,8,0,3,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,4,856,453,403,322,269,117,118,1,1,3,4,0,0,10,11,332,279,122,126,4,3,5,6,0,0,442,395,312,263,116,116,1,1,3,4,0,0,10,11,322,273,121,124,4,3,5,6,0,0,11,8,10,6,1,2,0,0,0,0,0,0,0,0,10,6,1,2,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,5,885,449,436,320,291,119,125,2,5,1,6,0,0,7,9,326,299,124,131,5,8,1,7,0,0,445,429,316,284,119,125,2,5,1,6,0,0,7,9,322,292,124,131,5,8,1,7,0,0,4,7,4,7,0,0,0,0,0,0,0,0,0,0,4,7,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,6,737,376,361,260,263,102,88,1,0,3,3,2,0,8,7,268,270,103,91,5,3,5,4,3,0,359,356,248,258,102,88,1,0,3,3,0,0,5,7,253,265,103,91,3,3,4,4,1,0,17,5,12,5,0,0,0,0,0,0,2,0,3,0,15,5,0,0,2,0,1,0,2,0 -050,01,041,Alabama,Crenshaw County,7,7,750,363,387,279,250,65,113,3,1,9,17,0,0,7,6,286,256,66,115,7,4,10,18,1,0,350,382,267,247,65,112,3,1,9,17,0,0,6,5,273,252,65,113,7,4,10,18,1,0,13,5,12,3,0,1,0,0,0,0,0,0,1,1,13,4,1,2,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,8,793,394,399,273,273,103,103,2,1,12,19,0,0,4,3,277,275,105,104,4,2,12,21,0,0,388,396,267,270,103,103,2,1,12,19,0,0,4,3,271,272,105,104,4,2,12,21,0,0,6,3,6,3,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,9,900,435,465,338,320,85,132,1,4,7,5,2,1,2,3,340,322,86,132,2,6,7,6,2,2,421,462,327,319,84,131,1,4,7,5,0,0,2,3,329,321,85,131,2,6,7,6,0,1,14,3,11,1,1,1,0,0,0,0,2,1,0,0,11,1,1,1,0,0,0,0,2,1 -050,01,041,Alabama,Crenshaw County,7,10,862,392,470,302,341,76,112,1,2,13,8,0,0,0,7,302,347,76,113,1,9,13,8,0,0,385,468,297,339,74,112,1,2,13,8,0,0,0,7,297,345,74,113,1,9,13,8,0,0,7,2,5,2,2,0,0,0,0,0,0,0,0,0,5,2,2,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,11,1056,558,498,405,359,140,125,2,3,8,7,0,0,3,4,408,363,141,127,4,5,8,7,0,0,551,496,398,358,140,125,2,3,8,7,0,0,3,3,401,361,141,127,4,4,8,7,0,0,7,2,7,1,0,0,0,0,0,0,0,0,0,1,7,2,0,0,0,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,12,1050,521,529,395,377,119,138,3,4,3,6,0,0,1,4,396,381,119,139,4,6,3,6,0,1,516,525,391,374,118,137,3,4,3,6,0,0,1,4,392,378,118,138,4,6,3,6,0,1,5,4,4,3,1,1,0,0,0,0,0,0,0,0,4,3,1,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,13,888,428,460,315,352,104,95,3,4,1,4,0,0,5,5,319,356,106,96,7,9,1,4,0,0,426,458,314,350,103,95,3,4,1,4,0,0,5,5,318,354,105,96,7,9,1,4,0,0,2,2,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,14,888,416,472,337,368,68,98,5,0,5,2,0,0,1,4,338,372,68,99,6,3,5,2,0,0,412,469,333,367,68,96,5,0,5,2,0,0,1,4,334,371,68,97,6,3,5,2,0,0,4,3,4,1,0,2,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,15,571,281,290,227,232,48,55,3,1,0,0,0,0,3,2,230,233,49,56,5,2,1,0,0,1,278,288,224,230,48,55,3,1,0,0,0,0,3,2,227,231,49,56,5,2,1,0,0,1,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,16,424,175,249,132,181,39,67,1,0,0,0,0,0,3,1,134,182,40,67,4,1,0,0,0,0,173,246,130,178,39,67,1,0,0,0,0,0,3,1,132,179,40,67,4,1,0,0,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,17,278,104,174,89,140,14,34,0,0,0,0,0,0,1,0,90,140,15,34,0,0,0,0,0,0,103,173,88,139,14,34,0,0,0,0,0,0,1,0,89,139,15,34,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,7,18,322,84,238,65,199,18,36,0,1,0,0,0,0,1,2,65,200,19,37,1,3,0,0,0,0,82,238,63,199,18,36,0,1,0,0,0,0,1,2,63,200,19,37,1,3,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,0,13851,6761,7090,4972,5090,1547,1748,37,37,80,91,3,1,122,123,5081,5205,1628,1820,77,84,95,102,5,4,6616,6988,4850,5006,1535,1735,34,37,80,91,0,0,117,119,4954,5117,1613,1806,71,81,95,102,2,3,145,102,122,84,12,13,3,0,0,0,3,1,5,4,127,88,15,14,6,3,0,0,3,1 -050,01,041,Alabama,Crenshaw County,8,1,805,441,364,307,255,105,89,0,1,7,4,0,0,22,15,329,270,123,102,1,3,9,5,1,0,426,348,294,242,103,87,0,1,7,4,0,0,22,14,316,256,121,100,1,2,9,5,1,0,15,16,13,13,2,2,0,0,0,0,0,0,0,1,13,14,2,2,0,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,2,881,422,459,292,315,96,105,3,3,10,6,0,0,21,30,312,343,114,129,5,8,12,8,0,1,404,441,277,299,95,104,2,3,10,6,0,0,20,29,296,326,112,128,4,7,12,8,0,1,18,18,15,16,1,1,1,0,0,0,0,0,1,1,16,17,2,1,1,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,3,922,489,433,344,299,114,112,2,3,7,9,0,0,22,10,362,308,131,121,11,5,8,9,0,0,483,422,339,291,113,110,2,3,7,9,0,0,22,9,357,299,130,118,11,5,8,9,0,0,6,11,5,8,1,2,0,0,0,0,0,0,0,1,5,9,1,3,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,4,854,447,407,320,280,110,113,2,2,4,3,0,0,11,9,329,289,120,119,5,4,5,4,0,0,432,396,306,272,109,110,2,2,4,3,0,0,11,9,315,281,119,116,5,4,5,4,0,0,15,11,14,8,1,3,0,0,0,0,0,0,0,0,14,8,1,3,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,5,849,441,408,313,265,117,122,2,5,1,5,0,0,8,11,319,275,121,127,5,9,4,7,0,1,436,400,308,257,117,122,2,5,1,5,0,0,8,11,314,267,121,127,5,9,4,7,0,1,5,8,5,8,0,0,0,0,0,0,0,0,0,0,5,8,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,6,812,403,409,273,293,116,102,0,0,4,5,1,0,9,9,281,301,121,107,5,5,5,6,1,0,393,407,267,291,116,102,0,0,4,5,0,0,6,9,272,299,119,107,3,5,5,6,0,0,10,2,6,2,0,0,0,0,0,0,1,0,3,0,9,2,2,0,2,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,8,7,736,364,372,285,248,66,104,5,2,3,13,1,0,4,5,289,252,68,106,7,6,3,13,1,0,341,368,268,244,64,104,3,2,3,13,0,0,3,5,271,248,66,106,4,6,3,13,0,0,23,4,17,4,2,0,2,0,0,0,1,0,1,0,18,4,2,0,3,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,8,8,785,377,408,267,281,95,105,3,2,8,18,0,0,4,2,271,283,95,105,6,4,9,18,0,0,372,402,262,276,95,104,3,2,8,18,0,0,4,2,266,278,95,104,6,4,9,18,0,0,5,6,5,5,0,1,0,0,0,0,0,0,0,0,5,5,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,9,883,419,464,317,323,86,127,2,4,10,4,1,1,3,5,319,328,87,127,4,9,11,4,1,1,407,461,307,321,85,127,2,4,10,4,0,0,3,5,309,326,86,127,4,9,11,4,0,0,12,3,10,2,1,0,0,0,0,0,1,1,0,0,10,2,1,0,0,0,0,0,1,1 -050,01,041,Alabama,Crenshaw County,8,10,836,416,420,315,294,92,114,1,2,8,7,0,0,0,3,315,297,92,116,1,3,8,7,0,0,406,414,306,289,91,113,1,2,8,7,0,0,0,3,306,292,91,115,1,3,8,7,0,0,10,6,9,5,1,1,0,0,0,0,0,0,0,0,9,5,1,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,11,1037,505,532,359,400,133,119,1,3,9,5,0,0,3,5,362,405,133,121,3,6,10,5,0,0,501,530,356,399,132,119,1,3,9,5,0,0,3,4,359,403,132,121,3,5,10,5,0,0,4,2,3,1,1,0,0,0,0,0,0,0,0,1,3,2,1,0,0,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,12,1036,519,517,396,359,118,145,3,3,2,7,0,0,0,3,396,362,118,146,3,4,2,8,0,0,512,515,389,357,118,145,3,3,2,7,0,0,0,3,389,360,118,146,3,4,2,8,0,0,7,2,7,2,0,0,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,13,920,426,494,316,376,101,104,4,5,1,2,0,0,4,7,319,383,103,104,5,10,2,4,1,0,423,490,315,373,99,103,4,5,1,2,0,0,4,7,318,380,101,103,5,10,2,4,1,0,3,4,1,3,2,1,0,0,0,0,0,0,0,0,1,3,2,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,14,898,424,474,331,372,81,95,3,0,6,3,0,0,3,4,334,375,82,96,5,2,6,4,0,1,420,473,327,372,81,94,3,0,6,3,0,0,3,4,330,375,82,95,5,2,6,4,0,1,4,1,4,0,0,1,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,15,582,300,282,245,226,47,53,5,1,0,0,0,0,3,2,248,227,47,54,7,3,1,0,0,0,298,278,243,223,47,52,5,1,0,0,0,0,3,2,246,224,47,53,7,3,1,0,0,0,2,4,2,3,0,1,0,0,0,0,0,0,0,0,2,3,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,16,424,170,254,134,190,32,64,1,0,0,0,0,0,3,0,136,190,34,64,3,0,0,0,0,0,168,252,132,188,32,64,1,0,0,0,0,0,3,0,134,188,34,64,3,0,0,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,17,276,112,164,94,119,17,44,0,0,0,0,0,0,1,1,95,120,17,44,1,1,0,0,0,0,111,163,93,118,17,44,0,0,0,0,0,0,1,1,94,119,17,44,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,8,18,315,86,229,64,195,21,31,0,1,0,0,0,0,1,2,65,197,22,32,0,2,0,0,0,0,83,228,61,194,21,31,0,1,0,0,0,0,1,2,62,196,22,32,0,2,0,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,0,13911,6776,7135,4982,5117,1537,1765,38,43,90,87,3,1,126,122,5097,5229,1621,1838,77,86,107,101,5,3,6626,7012,4856,5020,1524,1750,35,38,90,87,0,0,121,117,4966,5128,1604,1819,72,79,106,101,2,2,150,123,126,97,13,15,3,5,0,0,3,1,5,5,131,101,17,19,5,7,1,0,3,1 -050,01,041,Alabama,Crenshaw County,9,1,812,433,379,316,272,89,86,1,4,8,2,0,0,19,15,335,287,103,97,3,7,11,3,0,0,416,351,302,251,86,84,1,0,8,2,0,0,19,14,321,265,100,94,3,3,11,3,0,0,17,28,14,21,3,2,0,4,0,0,0,0,0,1,14,22,3,3,0,4,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,2,910,460,450,313,309,111,109,1,4,10,7,0,0,25,21,337,329,133,126,3,8,12,8,0,0,439,433,294,295,110,107,1,3,10,7,0,0,24,21,317,315,131,124,3,7,12,8,0,0,21,17,19,14,1,2,0,1,0,0,0,0,1,0,20,14,2,2,0,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,3,918,479,439,338,297,117,113,5,2,4,8,0,0,15,19,351,316,130,127,7,4,7,11,0,0,470,424,331,287,116,110,4,2,4,8,0,0,15,17,344,304,129,122,6,4,7,11,0,0,9,15,7,10,1,3,1,0,0,0,0,0,0,2,7,12,1,5,1,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,4,850,436,414,308,279,104,119,1,3,5,5,0,0,18,8,325,286,117,125,4,5,7,6,2,0,422,402,294,270,104,116,1,3,5,5,0,0,18,8,311,277,117,122,4,5,7,6,2,0,14,12,14,9,0,3,0,0,0,0,0,0,0,0,14,9,0,3,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,5,817,419,398,292,254,113,126,2,4,4,4,0,0,8,10,298,262,118,132,5,7,6,6,0,1,410,391,284,247,112,126,2,4,4,4,0,0,8,10,290,255,117,132,5,7,6,6,0,1,9,7,8,7,1,0,0,0,0,0,0,0,0,0,8,7,1,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,6,824,414,410,280,294,111,102,1,1,13,3,1,0,8,10,286,302,116,106,6,6,15,5,1,1,409,405,279,290,111,102,1,1,13,3,0,0,5,9,282,298,114,105,4,5,14,5,0,1,5,5,1,4,0,0,0,0,0,0,1,0,3,1,4,4,2,1,2,1,1,0,1,0 -050,01,041,Alabama,Crenshaw County,9,7,759,366,393,275,265,80,110,4,1,2,10,1,0,4,7,279,270,82,115,6,5,2,10,1,0,344,388,259,260,78,110,2,1,2,10,0,0,3,7,262,265,79,115,4,5,2,10,0,0,22,5,16,5,2,0,2,0,0,0,1,0,1,0,17,5,3,0,2,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,9,8,782,383,399,280,270,87,109,3,2,10,15,0,0,3,3,283,273,87,111,6,3,10,15,0,0,377,394,274,266,87,108,3,2,10,15,0,0,3,3,277,269,87,110,6,3,10,15,0,0,6,5,6,4,0,1,0,0,0,0,0,0,0,0,6,4,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,9,835,386,449,287,322,86,115,3,3,6,7,0,1,4,1,291,323,87,115,5,3,7,8,0,1,378,444,280,318,85,115,3,3,6,7,0,0,4,1,284,319,86,115,5,3,7,8,0,0,8,5,7,4,1,0,0,0,0,0,0,1,0,0,7,4,1,0,0,0,0,0,0,1 -050,01,041,Alabama,Crenshaw County,9,10,858,437,421,342,291,82,117,0,4,10,6,1,0,2,3,344,294,83,118,1,6,10,6,1,0,423,417,329,288,82,116,0,4,10,6,0,0,2,3,331,291,83,117,1,6,10,6,0,0,14,4,13,3,0,1,0,0,0,0,1,0,0,0,13,3,0,1,0,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,9,11,997,470,527,336,395,122,119,2,1,7,6,0,0,3,6,338,401,125,120,3,5,7,7,0,0,467,524,335,393,120,119,2,1,7,6,0,0,3,5,337,398,123,120,3,4,7,7,0,0,3,3,1,2,2,0,0,0,0,0,0,0,0,1,1,3,2,0,0,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,12,1040,517,523,391,362,118,148,2,4,4,7,0,0,2,2,393,364,118,150,4,4,4,7,0,0,511,521,385,360,118,148,2,4,4,7,0,0,2,2,387,362,118,150,4,4,4,7,0,0,6,2,6,2,0,0,0,0,0,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,13,941,451,490,338,368,103,105,5,7,1,3,0,0,4,7,342,375,104,106,7,11,2,5,0,0,448,486,336,365,102,104,5,7,1,3,0,0,4,7,340,372,103,105,7,11,2,5,0,0,3,4,2,3,1,1,0,0,0,0,0,0,0,0,2,3,1,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,14,927,434,493,333,390,91,93,2,1,5,4,0,0,3,5,335,395,93,93,4,6,5,4,0,0,430,491,330,389,90,92,2,1,5,4,0,0,3,5,332,394,92,92,4,6,5,4,0,0,4,2,3,1,1,1,0,0,0,0,0,0,0,0,3,1,1,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,15,614,315,299,256,238,51,59,4,1,1,0,0,0,3,1,258,238,52,60,7,2,1,0,0,0,312,295,253,235,51,58,4,1,1,0,0,0,3,1,255,235,52,59,7,2,1,0,0,0,3,4,3,3,0,1,0,0,0,0,0,0,0,0,3,3,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,16,426,172,254,136,195,33,58,1,0,0,0,0,0,2,1,138,196,33,59,2,0,1,0,0,0,170,253,134,194,33,58,1,0,0,0,0,0,2,1,136,195,33,59,2,0,1,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,17,280,117,163,96,121,18,41,1,0,0,0,0,0,2,1,98,122,18,41,3,1,0,0,0,0,116,161,95,119,18,41,1,0,0,0,0,0,2,1,97,120,18,41,3,1,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,9,18,321,87,234,65,195,21,36,0,1,0,0,0,0,1,2,66,196,22,37,1,3,0,0,0,0,84,232,62,193,21,36,0,1,0,0,0,0,1,2,63,194,22,37,1,3,0,0,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,0,13871,6705,7166,4953,5151,1500,1769,36,45,84,76,3,1,129,124,5071,5269,1585,1839,77,89,98,92,7,2,6547,7033,4820,5054,1484,1752,35,38,84,76,0,0,124,113,4933,5162,1566,1816,74,78,98,91,4,0,158,133,133,97,16,17,1,7,0,0,3,1,5,11,138,107,19,23,3,11,0,1,3,2 -050,01,041,Alabama,Crenshaw County,10,1,788,411,377,304,266,85,88,0,4,1,2,0,0,21,17,324,283,101,100,2,8,3,2,2,1,389,348,286,249,81,84,0,0,1,2,0,0,21,13,306,262,97,95,2,2,3,2,2,0,22,29,18,17,4,4,0,4,0,0,0,0,0,4,18,21,4,5,0,6,0,0,0,1 -050,01,041,Alabama,Crenshaw County,10,2,901,474,427,323,301,113,95,2,2,12,3,0,0,24,26,346,326,133,114,6,7,14,6,0,0,456,411,307,291,112,93,2,1,12,3,0,0,23,23,329,313,131,110,6,5,14,6,0,0,18,16,16,10,1,2,0,1,0,0,0,0,1,3,17,13,2,4,0,2,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,3,905,466,439,335,301,107,113,4,4,5,6,0,0,15,15,350,316,118,123,7,9,6,7,0,0,455,421,326,288,106,110,3,4,5,6,0,0,15,13,341,301,117,119,6,8,6,7,0,0,11,18,9,13,1,3,1,0,0,0,0,0,0,2,9,15,1,4,1,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,4,880,450,430,323,291,100,125,2,3,4,4,0,0,21,7,341,297,114,129,8,4,6,7,2,0,433,413,306,277,100,122,2,3,4,4,0,0,21,7,324,283,114,126,8,4,6,7,2,0,17,17,17,14,0,3,0,0,0,0,0,0,0,0,17,14,0,3,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,5,776,389,387,270,251,105,122,2,1,4,3,0,0,8,10,277,260,111,126,4,7,6,4,0,0,380,381,262,245,104,122,2,1,4,3,0,0,8,10,269,254,110,126,4,7,6,4,0,0,9,6,8,6,1,0,0,0,0,0,0,0,0,0,8,6,1,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,6,874,442,432,313,307,111,107,1,5,9,3,1,0,7,10,320,317,116,112,3,9,9,4,1,0,437,427,313,303,109,107,1,5,9,3,0,0,5,9,318,312,113,111,2,9,9,4,0,0,5,5,0,4,2,0,0,0,0,0,1,0,2,1,2,5,3,1,1,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,10,7,733,357,376,255,274,86,94,2,1,8,2,1,0,5,5,260,278,88,97,5,3,8,3,1,0,340,370,243,268,84,94,2,1,8,2,0,0,3,5,246,272,85,97,4,3,8,3,0,0,17,6,12,6,2,0,0,0,0,0,1,0,2,0,14,6,3,0,1,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,10,8,783,355,428,273,282,72,123,3,3,5,16,0,0,2,4,274,286,73,125,4,5,6,16,0,0,345,419,263,276,72,122,3,1,5,16,0,0,2,4,264,280,73,124,4,3,6,16,0,0,10,9,10,6,0,1,0,2,0,0,0,0,0,0,10,6,0,1,0,2,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,9,827,389,438,283,314,90,107,3,4,9,11,0,1,4,1,287,315,93,107,4,5,9,11,0,1,383,436,277,313,90,107,3,4,9,11,0,0,4,1,281,314,93,107,4,5,9,11,0,0,6,2,6,1,0,0,0,0,0,0,0,1,0,0,6,1,0,0,0,0,0,0,0,1 -050,01,041,Alabama,Crenshaw County,10,10,860,437,423,346,294,80,118,0,4,8,4,1,0,2,3,347,297,82,119,1,5,8,5,1,0,421,418,332,290,79,117,0,4,8,4,0,0,2,3,333,293,81,118,1,5,8,5,0,0,16,5,14,4,1,1,0,0,0,0,1,0,0,0,14,4,1,1,0,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,10,11,945,423,522,312,388,103,122,1,0,5,6,0,0,2,6,313,393,104,124,3,2,5,9,0,0,420,519,311,386,101,122,1,0,5,6,0,0,2,5,312,391,102,123,3,2,5,8,0,0,3,3,1,2,2,0,0,0,0,0,0,0,0,1,1,2,2,1,0,0,0,1,0,0 -050,01,041,Alabama,Crenshaw County,10,12,1034,522,512,380,359,130,139,3,5,6,7,0,0,3,2,383,361,130,141,6,5,6,7,0,0,516,510,374,357,130,139,3,5,6,7,0,0,3,2,377,359,130,141,6,5,6,7,0,0,6,2,6,2,0,0,0,0,0,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,13,956,459,497,355,362,96,116,4,7,1,5,0,0,3,7,358,369,97,117,6,12,1,6,0,0,455,493,352,359,95,115,4,7,1,5,0,0,3,7,355,366,96,116,6,12,1,6,0,0,4,4,3,3,1,1,0,0,0,0,0,0,0,0,3,3,1,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,14,872,409,463,303,366,96,89,2,1,4,4,0,0,4,3,306,368,97,90,5,4,5,4,0,0,406,462,301,365,95,89,2,1,4,4,0,0,4,3,304,367,96,90,5,4,5,4,0,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,15,720,341,379,277,297,55,77,4,1,3,0,0,0,2,4,279,301,56,79,6,3,4,0,0,0,337,375,273,295,55,75,4,1,3,0,0,0,2,4,275,299,56,77,6,3,4,0,0,0,4,4,4,2,0,2,0,0,0,0,0,0,0,0,4,2,0,2,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,16,412,175,237,143,186,29,50,2,0,0,0,0,0,1,1,144,187,29,51,2,0,1,0,0,0,173,235,141,184,29,50,2,0,0,0,0,0,1,1,142,185,29,51,2,0,1,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,17,282,119,163,95,116,19,46,1,0,0,0,0,0,4,1,98,117,20,46,5,0,0,1,0,0,117,161,93,114,19,46,1,0,0,0,0,0,4,1,96,115,20,46,5,0,0,1,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,10,18,323,87,236,63,196,23,38,0,0,0,0,0,0,1,2,64,198,23,39,0,1,1,0,0,0,84,234,60,194,23,38,0,0,0,0,0,0,1,2,61,196,23,39,0,1,1,0,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,0,13855,6695,7160,4924,5162,1495,1754,39,48,94,71,4,2,139,123,5056,5279,1587,1822,86,90,103,87,6,6,6523,7021,4781,5057,1476,1735,38,41,94,71,1,1,133,116,4908,5169,1563,1798,83,80,103,86,3,4,172,139,143,105,19,19,1,7,0,0,3,1,6,7,148,110,24,24,3,10,0,1,3,2 -050,01,041,Alabama,Crenshaw County,11,1,792,410,382,301,263,83,95,2,5,3,2,0,0,21,17,321,280,100,109,5,8,5,2,0,0,386,353,282,242,78,92,2,1,3,2,0,0,21,16,302,258,95,105,5,4,5,2,0,0,24,29,19,21,5,3,0,4,0,0,0,0,0,1,19,22,5,4,0,4,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,2,884,468,416,317,301,108,85,2,3,12,3,1,1,28,23,344,321,130,104,6,7,14,4,2,3,445,395,295,287,107,81,2,2,12,3,1,1,28,21,322,307,129,98,6,5,14,4,2,2,23,21,22,14,1,4,0,1,0,0,0,0,0,2,22,14,1,6,0,2,0,0,0,1 -050,01,041,Alabama,Crenshaw County,11,3,912,455,457,327,313,98,122,4,4,6,6,0,0,20,12,347,325,114,130,7,5,6,8,1,1,444,442,319,302,97,120,3,4,6,6,0,0,19,10,338,312,112,127,6,4,6,8,1,1,11,15,8,11,1,2,1,0,0,0,0,0,1,2,9,13,2,3,1,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,4,857,447,410,329,284,95,115,1,2,5,5,0,0,17,4,345,288,107,117,7,4,6,5,0,0,426,390,308,269,95,110,1,2,5,5,0,0,17,4,324,273,107,112,7,4,6,5,0,0,21,20,21,15,0,5,0,0,0,0,0,0,0,0,21,15,0,5,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,5,757,367,390,245,266,105,108,2,2,4,3,0,0,11,11,256,276,112,115,5,4,6,6,0,0,357,384,236,260,104,108,2,2,4,3,0,0,11,11,247,270,111,115,5,4,6,6,0,0,10,6,9,6,1,0,0,0,0,0,0,0,0,0,9,6,1,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,6,897,441,456,314,318,110,119,1,6,9,3,0,0,7,10,319,327,115,125,5,10,10,5,0,0,436,450,313,313,108,119,1,6,9,3,0,0,5,9,317,321,111,124,4,9,10,5,0,0,5,6,1,5,2,0,0,0,0,0,0,0,2,1,2,6,4,1,1,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,7,756,365,391,240,284,103,98,1,0,13,1,2,0,6,8,246,291,106,102,5,3,13,3,2,0,350,386,233,279,99,98,1,0,13,1,0,0,4,8,237,286,100,102,5,3,13,3,0,0,15,5,7,5,4,0,0,0,0,0,2,0,2,0,9,5,6,0,0,0,0,0,2,0 -050,01,041,Alabama,Crenshaw County,11,8,804,378,426,289,280,75,120,5,4,7,17,0,0,2,5,291,285,75,122,7,7,7,17,0,0,369,416,280,273,75,119,5,2,7,17,0,0,2,5,282,278,75,121,7,5,7,17,0,0,9,10,9,7,0,1,0,2,0,0,0,0,0,0,9,7,0,1,0,2,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,9,768,376,392,274,283,85,93,4,3,9,11,0,0,4,2,278,285,86,94,7,4,9,11,0,0,368,391,266,282,85,93,4,3,9,11,0,0,4,2,270,284,86,94,7,4,9,11,0,0,8,1,8,1,0,0,0,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,10,866,423,443,334,310,81,122,0,4,6,3,1,1,1,3,335,313,81,123,1,6,6,3,1,1,411,438,324,307,80,121,0,4,6,3,0,0,1,3,325,310,80,122,1,6,6,3,0,0,12,5,10,3,1,1,0,0,0,0,1,1,0,0,10,3,1,1,0,0,0,0,1,1 -050,01,041,Alabama,Crenshaw County,11,11,891,404,487,309,365,86,112,1,1,5,4,0,0,3,5,312,370,89,113,1,4,5,5,0,0,395,485,302,363,84,112,1,1,5,4,0,0,3,5,305,368,87,113,1,4,5,5,0,0,9,2,7,2,2,0,0,0,0,0,0,0,0,0,7,2,2,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,12,1024,525,499,377,357,137,132,3,4,6,4,0,0,2,2,379,359,139,133,3,4,6,5,0,0,520,496,372,355,137,132,3,4,6,4,0,0,2,1,374,356,139,133,3,4,6,4,0,0,5,3,5,2,0,0,0,0,0,0,0,0,0,1,5,3,0,0,0,0,0,1,0,0 -050,01,041,Alabama,Crenshaw County,11,13,996,487,509,373,355,106,133,2,7,2,5,0,0,4,9,377,364,106,133,6,13,2,7,0,1,481,504,369,351,105,132,2,7,2,5,0,0,3,9,372,360,105,132,5,13,2,7,0,1,6,5,4,4,1,1,0,0,0,0,0,0,1,0,5,4,1,1,1,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,14,854,400,454,299,355,91,90,3,2,3,4,0,0,4,3,302,358,93,90,6,4,3,5,0,0,398,453,298,354,90,90,3,2,3,4,0,0,4,3,301,357,92,90,6,4,3,5,0,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,15,755,343,412,277,327,55,80,5,0,4,0,0,0,2,5,279,332,56,81,5,4,5,0,0,0,339,409,273,326,55,78,5,0,4,0,0,0,2,5,275,331,56,79,5,4,5,0,0,0,4,3,4,1,0,2,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,16,417,191,226,152,181,35,43,2,1,0,0,0,0,2,1,154,182,35,44,4,1,0,0,0,0,188,224,149,179,35,43,2,1,0,0,0,0,2,1,151,180,35,44,4,1,0,0,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,17,309,121,188,98,142,19,45,1,0,0,0,0,0,3,1,100,143,20,45,4,1,0,0,0,0,119,185,96,139,19,45,1,0,0,0,0,0,3,1,98,140,20,45,4,1,0,0,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,11,18,316,94,222,69,178,23,42,0,0,0,0,0,0,2,2,71,180,23,42,2,1,0,1,0,0,91,220,66,176,23,42,0,0,0,0,0,0,2,2,68,178,23,42,2,1,0,1,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,0,13811,6719,7092,4894,5050,1528,1788,40,50,97,70,4,2,156,132,5037,5179,1636,1864,85,96,111,81,7,5,6537,6948,4750,4947,1502,1766,39,43,97,70,1,1,148,121,4886,5065,1604,1835,81,85,111,80,4,4,182,144,144,103,26,22,1,7,0,0,3,1,8,11,151,114,32,29,4,11,0,1,3,1 -050,01,041,Alabama,Crenshaw County,12,1,789,406,383,277,253,102,101,2,5,3,1,0,0,22,23,297,275,122,118,5,9,5,3,0,1,380,363,260,242,93,98,2,1,3,1,0,0,22,21,280,262,113,115,5,4,5,2,0,1,26,20,17,11,9,3,0,4,0,0,0,0,0,2,17,13,9,3,0,5,0,1,0,0 -050,01,041,Alabama,Crenshaw County,12,2,884,484,400,327,278,108,91,2,3,8,4,1,0,38,24,363,302,138,108,8,8,11,6,2,0,458,374,305,261,104,87,2,2,8,4,1,0,38,20,341,281,134,101,8,6,11,6,2,0,26,26,22,17,4,4,0,1,0,0,0,0,0,4,22,21,4,7,0,2,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,3,889,440,449,299,301,103,126,3,1,11,5,0,1,24,15,323,315,119,139,8,2,14,7,0,1,426,430,289,287,102,123,2,1,11,5,0,1,22,13,311,299,116,134,7,2,14,7,0,1,14,19,10,14,1,3,1,0,0,0,0,0,2,2,12,16,3,5,1,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,4,856,462,394,343,264,96,115,2,6,6,5,0,0,15,4,358,268,106,118,5,6,8,6,0,0,447,374,329,248,96,111,2,6,6,5,0,0,14,4,343,252,105,114,5,6,8,6,0,0,15,20,14,16,0,4,0,0,0,0,0,0,1,0,15,16,1,4,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,5,750,366,384,245,258,107,111,1,2,2,3,0,0,11,10,256,268,115,118,2,5,3,3,1,0,352,377,232,253,106,109,1,2,2,3,0,0,11,10,243,263,114,116,2,5,3,3,1,0,14,7,13,5,1,2,0,0,0,0,0,0,0,0,13,5,1,2,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,6,876,426,450,309,305,99,126,2,6,10,3,0,0,6,10,314,315,103,129,4,11,10,4,1,1,423,445,308,300,97,126,2,6,10,3,0,0,6,10,313,310,101,129,4,11,10,4,1,1,3,5,1,5,2,0,0,0,0,0,0,0,0,0,1,5,2,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,7,787,387,400,249,287,110,102,3,1,14,2,2,0,9,8,257,294,116,106,7,4,14,3,2,1,369,394,240,284,106,101,3,1,14,2,0,0,6,6,246,289,111,104,4,3,14,3,0,1,18,6,9,3,4,1,0,0,0,0,2,0,3,2,11,5,5,2,3,1,0,0,2,0 -050,01,041,Alabama,Crenshaw County,12,8,757,363,394,280,262,69,112,5,4,5,12,0,0,4,4,284,266,71,114,7,6,5,12,0,0,353,385,271,256,69,111,5,2,5,12,0,0,3,4,274,260,70,113,7,4,5,12,0,0,10,9,9,6,0,1,0,2,0,0,0,0,1,0,10,6,1,1,0,2,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,9,769,391,378,279,264,96,95,3,2,10,15,0,0,3,2,282,266,97,97,5,2,10,15,0,0,384,375,272,261,96,95,3,2,10,15,0,0,3,2,275,263,97,97,5,2,10,15,0,0,7,3,7,3,0,0,0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,10,886,414,472,327,331,76,131,1,4,7,2,1,1,2,3,329,334,76,132,1,6,9,2,1,1,400,466,315,327,75,130,1,4,7,2,0,0,2,3,317,330,75,131,1,6,9,2,0,0,14,6,12,4,1,1,0,0,0,0,1,1,0,0,12,4,1,1,0,0,0,0,1,1 -050,01,041,Alabama,Crenshaw County,12,11,861,395,466,306,341,82,112,1,2,4,6,0,0,2,5,308,346,82,115,3,4,4,6,0,0,385,463,298,338,80,112,1,2,4,6,0,0,2,5,300,343,80,115,3,4,4,6,0,0,10,3,8,3,2,0,0,0,0,0,0,0,0,0,8,3,2,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,12,1011,515,496,370,360,131,127,2,3,9,3,0,0,3,3,372,363,132,128,4,6,10,3,0,0,511,493,366,358,131,127,2,3,9,3,0,0,3,2,368,360,132,127,4,5,10,3,0,0,4,3,4,2,0,0,0,0,0,0,0,0,0,1,4,3,0,1,0,1,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,13,1010,509,501,385,354,116,132,3,6,2,3,0,0,3,6,387,360,119,133,4,11,2,3,0,0,503,497,381,351,115,131,3,6,2,3,0,0,2,6,382,357,117,132,4,11,2,3,0,0,6,4,4,3,1,1,0,0,0,0,0,0,1,0,5,3,2,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,14,831,388,443,283,345,96,85,3,4,1,4,0,0,5,5,286,350,99,85,7,8,1,5,0,0,386,440,282,342,95,85,3,4,1,4,0,0,5,5,285,347,98,85,7,8,1,5,0,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,15,776,344,432,276,335,59,90,3,0,5,2,0,0,1,5,277,340,60,92,3,3,5,2,0,0,340,429,272,334,59,88,3,0,5,2,0,0,1,5,273,339,60,90,3,3,5,2,0,0,4,3,4,1,0,2,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,16,454,222,232,176,192,40,37,3,1,0,0,0,0,3,2,177,194,42,37,6,2,0,1,0,0,219,230,173,190,40,37,3,1,0,0,0,0,3,2,174,192,42,37,6,2,0,1,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,17,309,111,198,90,146,17,51,1,0,0,0,0,0,3,1,92,147,18,51,4,1,0,0,0,0,109,195,88,143,17,51,1,0,0,0,0,0,3,1,90,144,18,51,4,1,0,0,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,12,18,316,96,220,73,174,21,44,0,0,0,0,0,0,2,2,75,176,21,44,2,2,0,0,0,0,92,218,69,172,21,44,0,0,0,0,0,0,2,2,71,174,21,44,2,2,0,0,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,0,13681,6645,7036,4812,5032,1533,1756,43,50,94,69,4,2,159,127,4958,5152,1641,1837,94,93,107,80,6,4,6461,6890,4664,4922,1509,1737,42,43,94,69,1,1,151,118,4803,5033,1612,1813,90,84,106,78,3,3,184,146,148,110,24,19,1,7,0,0,3,1,8,9,155,119,29,24,4,9,1,2,3,1 -050,01,041,Alabama,Crenshaw County,13,1,756,406,350,267,241,108,90,5,2,6,2,0,0,20,15,285,256,127,103,8,2,6,4,0,0,379,332,249,229,99,86,5,2,6,2,0,0,20,13,267,242,118,99,8,2,6,2,0,0,27,18,18,12,9,4,0,0,0,0,0,0,0,2,18,14,9,4,0,0,0,2,0,0 -050,01,041,Alabama,Crenshaw County,13,2,876,464,412,312,290,105,91,1,8,9,3,1,0,36,20,343,310,135,109,8,11,13,3,2,0,440,382,292,268,101,90,1,3,9,3,1,0,36,18,323,286,131,106,8,6,13,3,2,0,24,30,20,22,4,1,0,5,0,0,0,0,0,2,20,24,4,3,0,5,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,3,904,440,464,299,315,99,123,3,1,12,4,0,1,27,20,324,334,121,137,8,7,14,5,0,1,425,441,288,301,98,117,2,1,12,4,0,1,25,17,312,317,119,130,6,5,13,5,0,1,15,23,11,14,1,6,1,0,0,0,0,0,2,3,12,17,2,7,2,2,1,0,0,0 -050,01,041,Alabama,Crenshaw County,13,4,843,462,381,326,256,112,107,2,5,5,6,0,0,17,7,342,262,126,111,5,8,6,7,0,0,443,370,309,247,111,106,2,5,5,6,0,0,16,6,324,252,124,109,5,8,6,7,0,0,19,11,17,9,1,1,0,0,0,0,0,0,1,1,18,10,2,2,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,5,722,375,347,254,238,106,94,2,2,2,3,0,0,11,10,265,247,114,100,4,4,3,5,0,1,362,338,241,231,106,92,2,2,2,3,0,0,11,10,252,240,114,98,4,4,3,5,0,1,13,9,13,7,0,2,0,0,0,0,0,0,0,0,13,7,0,2,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,6,876,413,463,300,318,98,127,2,5,8,3,0,0,5,10,304,328,100,131,5,9,9,5,0,1,410,454,299,309,96,127,2,5,8,3,0,0,5,10,303,319,98,131,5,9,9,5,0,1,3,9,1,9,2,0,0,0,0,0,0,0,0,0,1,9,2,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,7,825,407,418,259,301,116,105,2,1,18,4,1,0,11,7,270,307,121,110,6,3,20,5,1,0,400,414,258,298,114,104,2,1,18,4,0,0,8,7,266,304,117,109,5,3,20,5,0,0,7,4,1,3,2,1,0,0,0,0,1,0,3,0,4,3,4,1,1,0,0,0,1,0 -050,01,041,Alabama,Crenshaw County,13,8,745,357,388,268,267,72,107,5,4,7,10,1,0,4,0,272,267,75,107,6,4,7,10,1,0,339,380,252,261,72,107,5,2,7,10,0,0,3,0,255,261,74,107,6,2,7,10,0,0,18,8,16,6,0,0,0,2,0,0,1,0,1,0,17,6,1,0,0,2,0,0,1,0 -050,01,041,Alabama,Crenshaw County,13,9,754,374,380,274,257,91,104,3,2,3,14,0,0,3,3,277,260,92,106,5,3,3,14,0,0,369,377,269,254,91,104,3,2,3,14,0,0,3,3,272,257,92,106,5,3,3,14,0,0,5,3,5,3,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,10,865,385,480,301,331,71,136,2,4,8,4,1,1,2,4,303,335,71,139,4,5,8,4,1,1,370,478,288,330,70,136,2,4,8,4,0,0,2,4,290,334,70,139,4,5,8,4,0,0,15,2,13,1,1,0,0,0,0,0,1,1,0,0,13,1,1,0,0,0,0,0,1,1 -050,01,041,Alabama,Crenshaw County,13,11,821,409,412,318,292,84,109,1,2,4,5,0,0,2,4,320,296,84,111,2,4,5,5,0,0,398,405,308,286,83,108,1,2,4,5,0,0,2,4,310,290,83,110,2,4,5,5,0,0,11,7,10,6,1,1,0,0,0,0,0,0,0,0,10,6,1,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,12,997,475,522,341,398,122,115,1,3,6,2,0,0,5,4,346,402,122,117,4,5,7,2,1,0,473,519,340,396,121,115,1,3,6,2,0,0,5,3,345,399,121,116,4,5,7,2,1,0,2,3,1,2,1,0,0,0,0,0,0,0,0,1,1,3,1,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,13,968,495,473,378,322,112,137,3,5,1,4,0,0,1,5,378,327,113,138,4,8,1,5,0,0,488,470,371,319,112,137,3,5,1,4,0,0,1,5,371,324,113,138,4,8,1,5,0,0,7,3,7,3,0,0,0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,14,851,387,464,285,355,92,93,4,5,1,3,0,0,5,8,290,361,92,97,9,10,1,4,0,0,383,459,284,351,90,92,4,5,1,3,0,0,4,8,288,357,90,96,8,10,1,4,0,0,4,5,1,4,2,1,0,0,0,0,0,0,1,0,2,4,2,1,1,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,15,788,356,432,279,338,69,87,1,0,4,2,0,0,3,5,282,343,69,88,4,5,4,2,0,0,352,430,275,337,69,86,1,0,4,2,0,0,3,5,278,342,69,87,4,5,4,2,0,0,4,2,4,1,0,1,0,0,0,0,0,0,0,0,4,1,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,16,457,231,226,184,187,39,36,5,1,0,0,0,0,3,2,187,188,40,37,8,3,0,0,0,0,228,222,181,184,39,35,5,1,0,0,0,0,3,2,184,185,40,36,8,3,0,0,0,0,3,4,3,3,0,1,0,0,0,0,0,0,0,0,3,3,0,1,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,17,315,112,203,93,155,16,48,1,0,0,0,0,0,2,0,94,155,17,48,3,0,0,0,0,0,110,201,91,153,16,48,1,0,0,0,0,0,2,0,92,153,17,48,3,0,0,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,041,Alabama,Crenshaw County,13,18,318,97,221,74,171,21,47,0,0,0,0,0,0,2,3,76,174,22,48,1,2,0,0,0,0,92,218,69,168,21,47,0,0,0,0,0,0,2,3,71,171,22,48,1,2,0,0,0,0,5,3,5,3,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,1,0,80406,39719,40687,38442,39374,484,429,238,228,138,208,14,20,403,428,38842,39794,593,534,519,527,178,254,27,38,37786,39166,36657,37957,433,401,201,197,132,207,6,12,357,392,37012,38343,515,482,438,464,170,253,17,28,1933,1521,1785,1417,51,28,37,31,6,1,8,8,46,36,1830,1451,78,52,81,63,8,1,10,10 -050,01,043,Alabama,Cullman County,1,1,4931,2525,2406,2420,2306,27,24,14,12,10,14,2,1,52,49,2472,2355,59,53,32,23,19,24,2,2,2265,2159,2177,2070,23,21,12,9,10,14,0,0,43,45,2220,2115,48,48,21,17,19,24,0,0,260,247,243,236,4,3,2,3,0,0,2,1,9,4,252,240,11,5,11,6,0,0,2,2 -050,01,043,Alabama,Cullman County,1,2,5141,2652,2489,2568,2370,35,32,9,23,12,16,0,0,28,48,2595,2418,52,55,22,47,14,20,0,1,2445,2293,2374,2192,31,26,5,17,11,16,0,0,24,42,2397,2234,46,44,15,36,12,20,0,1,207,196,194,178,4,6,4,6,1,0,0,0,4,6,198,184,6,11,7,11,2,0,0,0 -050,01,043,Alabama,Cullman County,1,3,5278,2757,2521,2658,2430,42,31,16,13,11,12,0,1,30,34,2687,2464,53,45,34,29,14,16,2,4,2606,2371,2516,2292,37,27,14,9,10,12,0,1,29,30,2544,2322,48,39,31,21,12,16,1,4,151,150,142,138,5,4,2,4,1,0,0,0,1,4,143,142,5,6,3,8,2,0,1,0 -050,01,043,Alabama,Cullman County,1,4,5442,2806,2636,2684,2524,53,63,24,9,11,11,0,1,34,28,2717,2552,71,74,38,25,15,14,2,2,2642,2509,2532,2404,49,60,21,8,9,11,0,1,31,25,2563,2429,65,69,32,22,13,14,2,2,164,127,152,120,4,3,3,1,2,0,0,0,3,3,154,123,6,5,6,3,2,0,0,0 -050,01,043,Alabama,Cullman County,1,5,4769,2423,2346,2328,2254,51,44,12,15,6,12,2,0,24,21,2352,2273,55,50,28,30,10,16,4,1,2229,2215,2149,2130,45,43,9,13,6,12,0,0,20,17,2169,2146,47,46,21,24,10,16,2,1,194,131,179,124,6,1,3,2,0,0,2,0,4,4,183,127,8,4,7,6,0,0,2,0 -050,01,043,Alabama,Cullman County,1,6,4720,2402,2318,2309,2220,33,31,19,11,12,26,5,5,24,25,2333,2244,43,36,37,26,14,31,5,7,2130,2173,2065,2081,23,30,11,9,12,26,2,3,17,24,2082,2104,27,34,22,23,14,31,2,5,272,145,244,139,10,1,8,2,0,0,3,2,7,1,251,140,16,2,15,3,0,0,3,2 -050,01,043,Alabama,Cullman County,1,7,4858,2493,2365,2391,2287,44,26,21,13,12,17,1,1,24,21,2415,2308,49,32,40,32,14,20,3,2,2283,2225,2198,2163,40,21,15,8,11,17,1,1,18,15,2216,2178,41,22,29,21,13,20,2,2,210,140,193,124,4,5,6,5,1,0,0,0,6,6,199,130,8,10,11,11,1,0,1,0 -050,01,043,Alabama,Cullman County,1,8,5164,2611,2553,2519,2481,37,14,10,18,20,14,0,5,25,21,2544,2502,38,17,30,34,22,16,2,6,2472,2436,2387,2372,34,12,8,17,19,14,0,1,24,20,2411,2392,35,14,27,32,21,16,2,2,139,117,132,109,3,2,2,1,1,0,0,4,1,1,133,110,3,3,3,2,1,0,0,4 -050,01,043,Alabama,Cullman County,1,9,5186,2647,2539,2594,2458,18,22,11,19,6,13,2,2,16,25,2610,2482,22,24,25,41,7,16,2,3,2537,2472,2490,2398,17,20,10,17,6,13,1,2,13,22,2503,2419,19,20,21,37,7,16,1,3,110,67,104,60,1,2,1,2,0,0,1,0,3,3,107,63,3,4,4,4,0,0,1,0 -050,01,043,Alabama,Cullman County,1,10,5950,3002,2948,2902,2858,31,25,28,17,9,16,0,2,32,30,2934,2886,33,26,52,46,15,18,1,2,2926,2877,2836,2791,26,24,26,15,9,16,0,1,29,30,2865,2819,27,25,47,44,15,18,1,1,76,71,66,67,5,1,2,2,0,0,0,1,3,0,69,67,6,1,5,2,0,0,0,1 -050,01,043,Alabama,Cullman County,1,11,5837,2931,2906,2838,2813,31,28,23,23,8,12,2,1,29,29,2867,2842,34,29,49,51,10,14,3,2,2867,2865,2782,2776,26,28,20,21,8,12,2,1,29,27,2811,2803,29,28,46,47,10,14,3,2,64,41,56,37,5,0,3,2,0,0,0,0,0,2,56,39,5,1,3,4,0,0,0,0 -050,01,043,Alabama,Cullman County,1,12,5192,2525,2667,2454,2595,21,20,17,15,8,11,0,0,25,26,2479,2621,21,21,40,37,10,12,0,2,2490,2645,2423,2575,21,20,16,15,8,10,0,0,22,25,2445,2600,21,21,36,36,10,11,0,2,35,22,31,20,0,0,1,0,0,1,0,0,3,1,34,21,0,0,4,1,0,1,0,0 -050,01,043,Alabama,Cullman County,1,13,5128,2450,2678,2393,2610,17,26,17,13,4,13,0,0,19,16,2412,2625,17,27,35,28,5,13,0,2,2435,2656,2378,2589,17,26,17,13,4,13,0,0,19,15,2397,2604,17,27,35,27,5,13,0,1,15,22,15,21,0,0,0,0,0,0,0,0,0,1,15,21,0,0,0,1,0,0,0,1 -050,01,043,Alabama,Cullman County,1,14,4127,1919,2208,1875,2157,16,12,9,12,3,6,0,1,16,20,1891,2177,17,13,24,30,3,8,1,1,1909,2191,1866,2140,16,12,9,12,3,6,0,1,15,20,1881,2160,17,13,23,30,3,8,1,1,10,17,9,17,0,0,0,0,0,0,0,0,1,0,10,17,0,0,1,0,0,0,0,0 -050,01,043,Alabama,Cullman County,1,15,3273,1468,1805,1440,1766,7,13,5,9,4,4,0,0,12,13,1452,1778,7,14,17,20,4,5,0,1,1457,1793,1429,1754,7,13,5,9,4,4,0,0,12,13,1441,1766,7,14,17,20,4,5,0,1,11,12,11,12,0,0,0,0,0,0,0,0,0,0,11,12,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,1,16,2446,1058,1388,1037,1357,11,10,2,4,1,8,0,0,7,9,1044,1366,12,10,9,13,1,8,0,0,1049,1380,1029,1350,11,10,2,3,1,8,0,0,6,9,1035,1359,11,10,8,12,1,8,0,0,9,8,8,7,0,0,0,1,0,0,0,0,1,0,9,7,1,0,1,1,0,0,0,0 -050,01,043,Alabama,Cullman County,1,17,1660,640,1020,631,1008,6,4,0,0,0,1,0,0,3,7,634,1015,6,4,3,7,0,1,0,0,636,1015,627,1003,6,4,0,0,0,1,0,0,3,7,630,1010,6,4,3,7,0,1,0,0,4,5,4,5,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,1,18,1304,410,894,401,880,4,4,1,2,1,2,0,0,3,6,404,886,4,4,4,8,1,2,0,0,408,891,399,877,4,4,1,2,1,2,0,0,3,6,402,883,4,4,4,8,1,2,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,2,0,80404,39717,40687,38440,39374,484,429,238,228,138,208,14,20,403,428,38840,39794,593,534,519,527,178,254,27,38,37784,39166,36655,37957,433,401,201,197,132,207,6,12,357,392,37010,38343,515,482,438,464,170,253,17,28,1933,1521,1785,1417,51,28,37,31,6,1,8,8,46,36,1830,1451,78,52,81,63,8,1,10,10 -050,01,043,Alabama,Cullman County,2,1,4930,2524,2406,2419,2306,27,24,14,12,10,14,2,1,52,49,2471,2355,59,53,32,23,19,24,2,2,2264,2159,2176,2070,23,21,12,9,10,14,0,0,43,45,2219,2115,48,48,21,17,19,24,0,0,260,247,243,236,4,3,2,3,0,0,2,1,9,4,252,240,11,5,11,6,0,0,2,2 -050,01,043,Alabama,Cullman County,2,2,5140,2652,2488,2568,2369,35,32,9,23,12,16,0,0,28,48,2595,2417,52,55,22,47,14,20,0,1,2445,2292,2374,2191,31,26,5,17,11,16,0,0,24,42,2397,2233,46,44,15,36,12,20,0,1,207,196,194,178,4,6,4,6,1,0,0,0,4,6,198,184,6,11,7,11,2,0,0,0 -050,01,043,Alabama,Cullman County,2,3,5278,2757,2521,2658,2430,42,31,16,13,11,12,0,1,30,34,2687,2464,53,45,34,29,14,16,2,4,2606,2371,2516,2292,37,27,14,9,10,12,0,1,29,30,2544,2322,48,39,31,21,12,16,1,4,151,150,142,138,5,4,2,4,1,0,0,0,1,4,143,142,5,6,3,8,2,0,1,0 -050,01,043,Alabama,Cullman County,2,4,5442,2806,2636,2684,2524,53,63,24,9,11,11,0,1,34,28,2717,2552,71,74,38,25,15,14,2,2,2642,2509,2532,2404,49,60,21,8,9,11,0,1,31,25,2563,2429,65,69,32,22,13,14,2,2,164,127,152,120,4,3,3,1,2,0,0,0,3,3,154,123,6,5,6,3,2,0,0,0 -050,01,043,Alabama,Cullman County,2,5,4769,2423,2346,2328,2254,51,44,12,15,6,12,2,0,24,21,2352,2273,55,50,28,30,10,16,4,1,2229,2215,2149,2130,45,43,9,13,6,12,0,0,20,17,2169,2146,47,46,21,24,10,16,2,1,194,131,179,124,6,1,3,2,0,0,2,0,4,4,183,127,8,4,7,6,0,0,2,0 -050,01,043,Alabama,Cullman County,2,6,4719,2402,2317,2309,2219,33,31,19,11,12,26,5,5,24,25,2333,2243,43,36,37,26,14,31,5,7,2130,2172,2065,2080,23,30,11,9,12,26,2,3,17,24,2082,2103,27,34,22,23,14,31,2,5,272,145,244,139,10,1,8,2,0,0,3,2,7,1,251,140,16,2,15,3,0,0,3,2 -050,01,043,Alabama,Cullman County,2,7,4857,2492,2365,2390,2287,44,26,21,13,12,17,1,1,24,21,2414,2308,49,32,40,32,14,20,3,2,2282,2225,2197,2163,40,21,15,8,11,17,1,1,18,15,2215,2178,41,22,29,21,13,20,2,2,210,140,193,124,4,5,6,5,1,0,0,0,6,6,199,130,8,10,11,11,1,0,1,0 -050,01,043,Alabama,Cullman County,2,8,5164,2611,2553,2519,2481,37,14,10,18,20,14,0,5,25,21,2544,2502,38,17,30,34,22,16,2,6,2472,2436,2387,2372,34,12,8,17,19,14,0,1,24,20,2411,2392,35,14,27,32,21,16,2,2,139,117,132,109,3,2,2,1,1,0,0,4,1,1,133,110,3,3,3,2,1,0,0,4 -050,01,043,Alabama,Cullman County,2,9,5186,2647,2539,2594,2458,18,22,11,19,6,13,2,2,16,25,2610,2482,22,24,25,41,7,16,2,3,2537,2472,2490,2398,17,20,10,17,6,13,1,2,13,22,2503,2419,19,20,21,37,7,16,1,3,110,67,104,60,1,2,1,2,0,0,1,0,3,3,107,63,3,4,4,4,0,0,1,0 -050,01,043,Alabama,Cullman County,2,10,5951,3003,2948,2903,2858,31,25,28,17,9,16,0,2,32,30,2935,2886,33,26,52,46,15,18,1,2,2927,2877,2837,2791,26,24,26,15,9,16,0,1,29,30,2866,2819,27,25,47,44,15,18,1,1,76,71,66,67,5,1,2,2,0,0,0,1,3,0,69,67,6,1,5,2,0,0,0,1 -050,01,043,Alabama,Cullman County,2,11,5838,2931,2907,2838,2814,31,28,23,23,8,12,2,1,29,29,2867,2843,34,29,49,51,10,14,3,2,2867,2866,2782,2777,26,28,20,21,8,12,2,1,29,27,2811,2804,29,28,46,47,10,14,3,2,64,41,56,37,5,0,3,2,0,0,0,0,0,2,56,39,5,1,3,4,0,0,0,0 -050,01,043,Alabama,Cullman County,2,12,5192,2525,2667,2454,2595,21,20,17,15,8,11,0,0,25,26,2479,2621,21,21,40,37,10,12,0,2,2490,2645,2423,2575,21,20,16,15,8,10,0,0,22,25,2445,2600,21,21,36,36,10,11,0,2,35,22,31,20,0,0,1,0,0,1,0,0,3,1,34,21,0,0,4,1,0,1,0,0 -050,01,043,Alabama,Cullman County,2,13,5128,2450,2678,2393,2610,17,26,17,13,4,13,0,0,19,16,2412,2625,17,27,35,28,5,13,0,2,2435,2656,2378,2589,17,26,17,13,4,13,0,0,19,15,2397,2604,17,27,35,27,5,13,0,1,15,22,15,21,0,0,0,0,0,0,0,0,0,1,15,21,0,0,0,1,0,0,0,1 -050,01,043,Alabama,Cullman County,2,14,4126,1918,2208,1874,2157,16,12,9,12,3,6,0,1,16,20,1890,2177,17,13,24,30,3,8,1,1,1908,2191,1865,2140,16,12,9,12,3,6,0,1,15,20,1880,2160,17,13,23,30,3,8,1,1,10,17,9,17,0,0,0,0,0,0,0,0,1,0,10,17,0,0,1,0,0,0,0,0 -050,01,043,Alabama,Cullman County,2,15,3273,1468,1805,1440,1766,7,13,5,9,4,4,0,0,12,13,1452,1778,7,14,17,20,4,5,0,1,1457,1793,1429,1754,7,13,5,9,4,4,0,0,12,13,1441,1766,7,14,17,20,4,5,0,1,11,12,11,12,0,0,0,0,0,0,0,0,0,0,11,12,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,2,16,2446,1058,1388,1037,1357,11,10,2,4,1,8,0,0,7,9,1044,1366,12,10,9,13,1,8,0,0,1049,1380,1029,1350,11,10,2,3,1,8,0,0,6,9,1035,1359,11,10,8,12,1,8,0,0,9,8,8,7,0,0,0,1,0,0,0,0,1,0,9,7,1,0,1,1,0,0,0,0 -050,01,043,Alabama,Cullman County,2,17,1660,640,1020,631,1008,6,4,0,0,0,1,0,0,3,7,634,1015,6,4,3,7,0,1,0,0,636,1015,627,1003,6,4,0,0,0,1,0,0,3,7,630,1010,6,4,3,7,0,1,0,0,4,5,4,5,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,2,18,1305,410,895,401,881,4,4,1,2,1,2,0,0,3,6,404,887,4,4,4,8,1,2,0,0,408,892,399,878,4,4,1,2,1,2,0,0,3,6,402,884,4,4,4,8,1,2,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,3,0,80456,39735,40721,38461,39411,484,420,234,232,135,206,14,20,407,432,38846,39818,602,547,511,519,168,247,25,28,37806,39204,36678,37995,430,393,200,202,129,205,6,12,363,397,37026,38371,523,502,457,471,157,243,13,19,1929,1517,1783,1416,54,27,34,30,6,1,8,8,44,35,1820,1447,79,45,54,48,11,4,12,9 -050,01,043,Alabama,Cullman County,3,1,4955,2540,2415,2435,2312,27,25,12,11,10,13,2,1,54,53,2484,2362,57,55,31,28,21,20,4,4,2275,2169,2186,2076,24,22,10,9,10,13,0,0,45,49,2229,2122,51,50,24,24,19,20,0,3,265,246,249,236,3,3,2,2,0,0,2,1,9,4,255,240,6,5,7,4,2,0,4,1 -050,01,043,Alabama,Cullman County,3,2,5117,2646,2471,2559,2363,38,27,8,22,13,14,0,0,28,45,2587,2407,52,48,18,40,16,20,1,1,2439,2276,2365,2184,32,22,5,16,12,14,0,0,25,40,2390,2224,44,40,15,32,14,19,1,1,207,195,194,179,6,5,3,6,1,0,0,0,3,5,197,183,8,8,3,8,2,1,0,0 -050,01,043,Alabama,Cullman County,3,3,5285,2757,2528,2659,2435,41,30,17,14,12,13,0,1,28,35,2686,2468,53,46,31,33,14,16,1,1,2604,2374,2516,2293,35,26,15,10,11,13,0,1,27,31,2542,2322,46,39,29,28,13,16,1,1,153,154,143,142,6,4,2,4,1,0,0,0,1,4,144,146,7,7,2,5,1,0,0,0 -050,01,043,Alabama,Cullman County,3,4,5370,2775,2595,2654,2480,53,64,24,10,11,12,0,1,33,28,2686,2506,65,76,46,27,12,14,0,2,2616,2469,2507,2361,49,61,21,9,9,12,0,1,30,25,2537,2384,59,71,41,25,10,13,0,2,159,126,147,119,4,3,3,1,2,0,0,0,3,3,149,122,6,5,5,2,2,1,0,0 -050,01,043,Alabama,Cullman County,3,5,4814,2438,2376,2343,2288,52,44,10,14,6,10,2,0,25,20,2363,2304,63,50,26,28,9,13,3,1,2251,2245,2169,2164,46,43,8,12,6,10,0,0,22,16,2186,2177,55,47,24,24,9,13,0,0,187,131,174,124,6,1,2,2,0,0,2,0,3,4,177,127,8,3,2,4,0,0,3,1 -050,01,043,Alabama,Cullman County,3,6,4732,2402,2330,2313,2231,32,31,17,11,12,25,5,5,23,27,2334,2258,38,37,33,28,15,29,6,6,2136,2189,2073,2096,23,30,10,9,12,25,2,3,16,26,2087,2122,26,35,22,26,15,29,3,4,266,141,240,135,9,1,7,2,0,0,3,2,7,1,247,136,12,2,11,2,0,0,3,2 -050,01,043,Alabama,Cullman County,3,7,4843,2488,2355,2388,2280,43,24,21,13,11,16,1,1,24,21,2411,2301,49,28,38,27,13,18,1,2,2280,2220,2198,2160,38,20,15,8,10,16,1,1,18,15,2216,2175,41,21,29,19,11,18,1,2,208,135,190,120,5,4,6,5,1,0,0,0,6,6,195,126,8,7,9,8,2,0,0,0 -050,01,043,Alabama,Cullman County,3,8,5135,2596,2539,2502,2464,37,15,12,19,19,15,0,5,26,21,2526,2483,41,21,32,34,21,17,2,5,2456,2420,2368,2354,35,12,10,18,18,15,0,1,25,20,2392,2372,38,18,29,32,20,17,2,1,140,119,134,110,2,3,2,1,1,0,0,4,1,1,134,111,3,3,3,2,1,0,0,4 -050,01,043,Alabama,Cullman County,3,9,5173,2634,2539,2576,2459,20,21,12,19,7,13,2,2,17,25,2593,2482,25,24,24,40,8,16,2,2,2527,2473,2475,2400,19,19,11,17,7,13,1,2,14,22,2489,2421,21,21,22,36,8,15,1,2,107,66,101,59,1,2,1,2,0,0,1,0,3,3,104,61,4,3,2,4,0,1,1,0 -050,01,043,Alabama,Cullman County,3,10,5951,3000,2951,2905,2864,28,24,27,18,8,15,0,2,32,28,2937,2891,31,25,54,41,10,20,0,2,2918,2879,2833,2796,23,23,25,16,8,15,0,1,29,28,2862,2823,25,24,50,39,10,20,0,1,82,72,72,68,5,1,2,2,0,0,0,1,3,0,75,68,6,1,4,2,0,0,0,1 -050,01,043,Alabama,Cullman County,3,11,5848,2938,2910,2845,2816,33,28,23,23,6,12,2,1,29,30,2874,2843,33,32,50,51,7,13,3,1,2872,2868,2789,2778,26,28,20,21,6,12,2,1,29,28,2818,2804,26,31,47,47,7,13,3,1,66,42,56,38,7,0,3,2,0,0,0,0,0,2,56,39,7,1,3,4,0,0,0,0 -050,01,043,Alabama,Cullman County,3,12,5232,2549,2683,2476,2607,23,21,17,16,7,12,0,0,26,27,2501,2630,29,26,38,40,7,15,1,0,2512,2661,2443,2587,23,21,16,16,7,11,0,0,23,26,2466,2609,26,26,37,39,7,14,0,0,37,22,33,20,0,0,1,0,0,1,0,0,3,1,35,21,3,0,1,1,0,1,1,0 -050,01,043,Alabama,Cullman County,3,13,5160,2473,2687,2415,2618,16,25,18,14,4,14,0,0,20,16,2435,2633,17,29,37,27,4,14,0,0,2457,2664,2399,2596,16,25,18,14,4,14,0,0,20,15,2419,2610,17,29,37,26,4,14,0,0,16,23,16,22,0,0,0,0,0,0,0,0,0,1,16,23,0,0,0,1,0,0,0,0 -050,01,043,Alabama,Cullman County,3,14,4138,1923,2215,1880,2163,15,11,8,13,3,6,0,1,17,21,1897,2184,15,14,25,31,4,6,0,1,1913,2197,1871,2145,15,11,8,13,3,6,0,1,16,21,1887,2166,15,14,24,31,3,6,0,1,10,18,9,18,0,0,0,0,0,0,0,0,1,0,10,18,0,0,1,0,1,0,0,0 -050,01,043,Alabama,Cullman County,3,15,3283,1465,1818,1438,1781,6,12,5,9,4,4,0,0,12,12,1448,1793,8,14,16,19,5,4,0,0,1454,1807,1427,1770,6,12,5,9,4,4,0,0,12,12,1437,1782,8,14,16,19,5,4,0,0,11,11,11,11,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,3,16,2446,1065,1381,1045,1348,10,11,2,4,1,8,0,0,7,10,1051,1358,13,13,7,12,1,8,1,0,1057,1372,1038,1340,10,11,2,3,1,8,0,0,6,10,1043,1350,12,13,6,11,1,8,1,0,8,9,7,8,0,0,0,1,0,0,0,0,1,0,8,8,1,0,1,1,0,0,0,0 -050,01,043,Alabama,Cullman County,3,17,1677,641,1036,631,1023,7,4,0,0,0,2,0,0,3,7,633,1030,9,5,2,6,0,2,0,0,636,1031,626,1018,7,4,0,0,0,2,0,0,3,7,628,1025,9,5,2,6,0,2,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,3,18,1297,405,892,397,879,3,3,1,2,1,2,0,0,3,6,400,885,4,4,3,7,1,2,0,0,403,890,395,877,3,3,1,2,1,2,0,0,3,6,398,883,4,4,3,7,1,2,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,4,0,80419,39737,40682,38411,39369,501,397,221,221,154,227,14,20,436,448,38830,39784,620,529,506,513,196,278,29,36,37903,39129,36725,37916,445,371,191,192,148,226,6,12,388,412,37097,38299,543,482,452,469,187,272,20,27,1834,1553,1686,1453,56,26,30,29,6,1,8,8,48,36,1733,1485,77,47,54,44,9,6,9,9 -050,01,043,Alabama,Cullman County,4,1,4940,2502,2438,2397,2325,29,25,6,8,8,19,2,1,60,60,2455,2385,60,61,26,24,18,27,5,4,2249,2193,2159,2089,27,22,4,6,8,19,0,0,51,57,2209,2146,55,56,18,21,17,27,3,3,253,245,238,236,2,3,2,2,0,0,2,1,9,3,246,239,5,5,8,3,1,0,2,1 -050,01,043,Alabama,Cullman County,4,2,5024,2627,2397,2526,2298,39,26,9,16,14,12,0,0,39,45,2561,2339,61,49,24,36,19,17,1,2,2415,2189,2327,2105,32,21,6,11,13,12,0,0,37,40,2360,2141,52,41,21,30,18,17,1,1,212,208,199,193,7,5,3,5,1,0,0,0,2,5,201,198,9,8,3,6,1,0,0,1 -050,01,043,Alabama,Cullman County,4,3,5251,2717,2534,2616,2438,39,26,16,16,18,15,0,1,28,38,2642,2472,53,44,27,37,21,18,2,3,2556,2372,2467,2288,33,23,14,12,17,15,0,1,25,33,2490,2318,46,38,25,30,19,18,1,3,161,162,149,150,6,3,2,4,1,0,0,0,3,5,152,154,7,6,2,7,2,0,1,0 -050,01,043,Alabama,Cullman County,4,4,5120,2677,2443,2559,2336,53,59,20,14,13,11,0,1,32,22,2589,2356,64,66,41,25,15,16,1,2,2526,2315,2419,2215,48,56,18,12,11,11,0,1,30,20,2447,2233,59,61,37,23,13,16,1,2,151,128,140,121,5,3,2,2,2,0,0,0,2,2,142,123,5,5,4,2,2,0,0,0 -050,01,043,Alabama,Cullman County,4,5,4983,2517,2466,2414,2382,58,38,10,13,5,13,0,0,30,20,2444,2395,63,49,29,25,10,16,2,1,2367,2332,2274,2255,52,37,9,12,5,13,0,0,27,15,2301,2265,54,45,28,22,10,14,2,1,150,134,140,127,6,1,1,1,0,0,0,0,3,5,143,130,9,4,1,3,0,2,0,0 -050,01,043,Alabama,Cullman County,4,6,4790,2453,2337,2366,2241,31,29,12,9,13,25,7,3,24,30,2390,2269,36,38,30,28,14,27,7,5,2218,2205,2157,2114,24,29,7,6,13,25,2,2,15,29,2172,2141,27,37,18,25,14,27,2,4,235,132,209,127,7,0,5,3,0,0,5,1,9,1,218,128,9,1,12,3,0,0,5,1 -050,01,043,Alabama,Cullman County,4,7,4758,2412,2346,2322,2269,33,20,22,12,11,18,1,3,23,24,2345,2292,38,26,36,27,14,22,2,3,2232,2215,2161,2152,26,17,17,8,11,18,1,2,16,18,2177,2169,28,20,27,21,14,21,2,2,180,131,161,117,7,3,5,4,0,0,0,1,7,6,168,123,10,6,9,6,0,1,0,1 -050,01,043,Alabama,Cullman County,4,8,4945,2479,2466,2382,2382,37,24,12,18,18,20,0,4,30,18,2409,2398,42,29,36,32,20,22,2,4,2339,2339,2250,2265,35,20,9,17,16,20,0,1,29,16,2276,2279,39,23,33,30,18,22,2,1,140,127,132,117,2,4,3,1,2,0,0,3,1,2,133,119,3,6,3,2,2,0,0,3 -050,01,043,Alabama,Cullman County,4,9,5188,2627,2561,2557,2484,28,19,13,12,12,16,2,2,15,28,2571,2511,31,20,24,37,14,20,2,2,2533,2491,2469,2420,26,16,12,12,12,16,1,1,13,26,2481,2446,29,16,21,35,14,19,1,1,94,70,88,64,2,3,1,0,0,0,1,1,2,2,90,65,2,4,3,2,0,1,1,1 -050,01,043,Alabama,Cullman County,4,10,5844,2951,2893,2861,2810,28,21,22,22,10,13,0,3,30,24,2891,2833,33,25,48,40,11,15,0,4,2859,2815,2777,2739,25,20,20,18,10,13,0,2,27,23,2804,2761,28,24,45,36,11,14,0,3,92,78,84,71,3,1,2,4,0,0,0,1,3,1,87,72,5,1,3,4,0,1,0,1 -050,01,043,Alabama,Cullman County,4,11,5896,2994,2902,2889,2814,34,23,25,19,11,11,2,1,33,34,2921,2846,37,26,53,50,13,14,3,2,2926,2856,2834,2772,26,23,22,17,11,11,2,1,31,32,2864,2802,28,26,50,46,12,14,3,2,68,46,55,42,8,0,3,2,0,0,0,0,2,2,57,44,9,0,3,4,1,0,0,0 -050,01,043,Alabama,Cullman County,4,12,5347,2614,2733,2533,2646,35,26,15,18,6,13,0,0,25,30,2558,2673,36,28,36,43,8,17,1,2,2571,2711,2495,2624,34,26,14,18,6,13,0,0,22,30,2517,2651,34,28,33,43,8,17,1,2,43,22,38,22,1,0,1,0,0,0,0,0,3,0,41,22,2,0,3,0,0,0,0,0 -050,01,043,Alabama,Cullman County,4,13,5310,2572,2738,2511,2666,14,22,20,15,4,17,0,0,23,18,2534,2683,15,24,41,29,5,19,0,1,2557,2712,2496,2643,14,22,20,15,4,16,0,0,23,16,2519,2658,15,23,41,28,5,18,0,1,15,26,15,23,0,0,0,0,0,1,0,0,0,2,15,25,0,1,0,1,0,1,0,0 -050,01,043,Alabama,Cullman County,4,14,4164,1939,2225,1892,2173,16,13,10,13,3,7,0,0,18,19,1910,2192,17,14,26,31,4,7,0,0,1924,2206,1878,2154,16,13,10,13,3,7,0,0,17,19,1895,2173,16,14,26,31,4,7,0,0,15,19,14,19,0,0,0,0,0,0,0,0,1,0,15,19,1,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,4,15,3356,1488,1868,1461,1830,7,10,4,9,5,4,0,1,11,14,1472,1843,9,11,12,22,6,5,0,1,1477,1859,1450,1821,7,10,4,9,5,4,0,1,11,14,1461,1834,9,11,12,22,6,5,0,1,11,9,11,9,0,0,0,0,0,0,0,0,0,0,11,9,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,4,16,2465,1091,1374,1071,1345,8,8,3,4,1,6,0,0,8,11,1078,1356,11,9,10,13,1,7,0,0,1086,1366,1067,1338,8,8,3,3,1,6,0,0,7,11,1073,1349,10,9,10,12,1,7,0,0,5,8,4,7,0,0,0,1,0,0,0,0,1,0,5,7,1,0,0,1,0,0,0,0 -050,01,043,Alabama,Cullman County,4,17,1723,662,1061,648,1042,8,6,1,1,1,5,0,0,4,7,651,1047,9,8,4,6,2,7,0,0,655,1056,641,1037,8,6,1,1,1,5,0,0,4,7,644,1042,9,8,4,6,2,7,0,0,7,5,7,5,0,0,0,0,0,0,0,0,0,0,7,5,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,4,18,1315,415,900,406,888,4,2,1,2,1,2,0,0,3,6,409,894,5,2,3,8,1,2,1,0,413,897,404,885,4,2,1,2,1,2,0,0,3,6,407,891,5,2,3,8,1,2,1,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,5,0,80292,39706,40586,38360,39265,497,410,223,226,168,234,15,22,443,429,38777,39662,624,541,510,510,223,285,25,32,37925,39042,36732,37830,442,384,193,194,160,233,7,14,391,387,37102,38189,544,494,454,456,207,278,16,23,1781,1544,1628,1435,55,26,30,32,8,1,8,8,52,42,1675,1473,80,47,56,54,16,7,9,9 -050,01,043,Alabama,Cullman County,5,1,4856,2446,2410,2335,2296,28,30,4,8,12,28,2,1,65,47,2398,2337,62,59,25,21,23,36,5,4,2227,2207,2133,2099,26,28,3,7,10,28,0,1,55,44,2186,2137,55,55,20,19,19,36,2,4,219,203,202,197,2,2,1,1,2,0,2,0,10,3,212,200,7,4,5,2,4,0,3,0 -050,01,043,Alabama,Cullman County,5,2,4961,2606,2355,2500,2257,39,23,11,14,15,18,0,1,41,42,2538,2296,62,46,26,34,24,26,0,1,2400,2154,2307,2071,33,18,8,10,14,18,0,0,38,37,2343,2106,54,38,22,26,22,26,0,0,206,201,193,186,6,5,3,4,1,0,0,1,3,5,195,190,8,8,4,8,2,0,0,1 -050,01,043,Alabama,Cullman County,5,3,5224,2704,2520,2604,2419,34,27,16,20,24,15,0,1,26,38,2629,2452,45,45,31,39,25,21,0,1,2540,2353,2455,2268,27,24,13,16,23,15,0,1,22,29,2477,2292,36,39,25,29,24,21,0,1,164,167,149,151,7,3,3,4,1,0,0,0,4,9,152,160,9,6,6,10,1,0,0,0 -050,01,043,Alabama,Cullman County,5,4,4989,2601,2388,2493,2288,52,54,15,15,10,8,0,0,31,23,2521,2309,62,63,34,28,15,10,2,1,2447,2244,2350,2150,46,51,13,13,8,8,0,0,30,22,2377,2170,56,60,31,25,13,10,2,1,154,144,143,138,6,3,2,2,2,0,0,0,1,1,144,139,6,3,3,3,2,0,0,0 -050,01,043,Alabama,Cullman County,5,5,5094,2560,2534,2450,2438,61,52,12,9,6,10,0,1,31,24,2478,2459,69,62,32,24,12,13,1,2,2422,2395,2320,2307,57,50,11,8,6,10,0,1,28,19,2346,2323,63,57,29,21,12,12,1,2,138,139,130,131,4,2,1,1,0,0,0,0,3,5,132,136,6,5,3,3,0,1,0,0 -050,01,043,Alabama,Cullman County,5,6,4742,2462,2280,2364,2185,31,27,13,17,18,24,7,2,29,25,2390,2208,38,34,31,31,23,28,9,4,2250,2151,2176,2067,26,27,9,10,18,24,2,1,19,22,2193,2088,29,32,22,23,21,27,4,3,212,129,188,118,5,0,4,7,0,0,5,1,10,3,197,120,9,2,9,8,2,1,5,1 -050,01,043,Alabama,Cullman County,5,7,4735,2390,2345,2296,2268,39,15,23,10,9,22,1,4,22,26,2317,2294,46,24,37,30,11,23,1,4,2193,2223,2120,2158,31,13,17,6,9,22,1,3,15,21,2134,2179,35,18,27,24,11,22,1,3,197,122,176,110,8,2,6,4,0,0,0,1,7,5,183,115,11,6,10,6,0,1,0,1 -050,01,043,Alabama,Cullman County,5,8,4896,2443,2453,2351,2364,34,27,12,16,17,23,0,2,29,21,2380,2381,36,33,36,30,19,27,1,3,2319,2312,2236,2234,31,23,10,14,15,23,0,1,27,17,2263,2248,32,27,33,27,17,26,1,1,124,141,115,130,3,4,2,2,2,0,0,1,2,4,117,133,4,6,3,3,2,1,0,2 -050,01,043,Alabama,Cullman County,5,9,5159,2594,2565,2517,2486,31,23,13,16,15,12,2,4,16,24,2533,2509,34,27,26,36,15,16,2,4,2501,2485,2429,2414,29,19,12,16,15,12,1,1,15,23,2444,2436,32,22,24,36,15,16,1,1,93,80,88,72,2,4,1,0,0,0,1,3,1,1,89,73,2,5,2,0,0,0,1,3 -050,01,043,Alabama,Cullman County,5,10,5673,2887,2786,2809,2715,21,19,19,18,11,15,0,3,27,16,2835,2731,25,20,40,30,15,18,0,3,2791,2716,2721,2651,20,18,16,16,11,15,0,2,23,14,2743,2665,22,19,35,27,14,17,0,2,96,70,88,64,1,1,3,2,0,0,0,1,4,2,92,66,3,1,5,3,1,1,0,1 -050,01,043,Alabama,Cullman County,5,11,5854,2953,2901,2851,2813,35,24,24,20,9,7,2,0,32,37,2879,2849,41,28,50,53,13,8,2,0,2883,2856,2792,2773,27,24,23,17,9,7,2,0,30,35,2818,2807,32,28,48,48,13,8,2,0,70,45,59,40,8,0,1,3,0,0,0,0,2,2,61,42,9,0,2,5,0,0,0,0 -050,01,043,Alabama,Cullman County,5,12,5481,2713,2768,2630,2688,36,21,18,16,4,12,0,1,25,30,2652,2717,40,23,40,44,6,13,0,1,2666,2743,2591,2663,33,21,15,16,4,12,0,1,23,30,2612,2692,36,23,36,44,5,13,0,1,47,25,39,25,3,0,3,0,0,0,0,0,2,0,40,25,4,0,4,0,1,0,0,0 -050,01,043,Alabama,Cullman County,5,13,5122,2477,2645,2414,2571,12,26,16,15,8,15,0,0,27,18,2439,2588,16,28,40,31,9,16,0,0,2458,2617,2396,2546,12,26,16,15,8,14,0,0,26,16,2420,2562,15,27,40,30,9,14,0,0,19,28,18,25,0,0,0,0,0,1,0,0,1,2,19,26,1,1,0,1,0,2,0,0 -050,01,043,Alabama,Cullman County,5,14,4492,2105,2387,2054,2330,17,16,16,15,2,9,0,0,16,17,2070,2347,18,16,30,29,2,11,1,1,2090,2365,2039,2308,17,16,16,15,2,9,0,0,16,17,2055,2325,18,16,30,29,2,11,1,1,15,22,15,22,0,0,0,0,0,0,0,0,0,0,15,22,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,5,15,3458,1563,1895,1529,1851,8,11,6,9,6,4,1,2,13,18,1542,1868,10,13,18,25,6,5,1,2,1553,1885,1520,1842,8,11,6,8,6,4,1,2,12,18,1532,1859,9,13,18,24,6,5,1,2,10,10,9,9,0,0,0,1,0,0,0,0,1,0,10,9,1,0,0,1,0,0,0,0 -050,01,043,Alabama,Cullman County,5,16,2520,1088,1432,1070,1405,6,7,3,5,1,4,0,0,8,11,1078,1415,6,10,8,13,4,5,0,0,1080,1421,1063,1395,6,7,3,4,1,4,0,0,7,11,1070,1405,6,10,8,12,3,5,0,0,8,11,7,10,0,0,0,1,0,0,0,0,1,0,8,10,0,0,0,1,1,0,0,0 -050,01,043,Alabama,Cullman County,5,17,1709,708,1001,693,981,8,6,1,1,1,6,0,0,5,7,698,987,9,8,5,6,1,6,0,1,702,998,687,978,8,6,1,1,1,6,0,0,5,7,692,984,9,8,5,6,1,6,0,1,6,3,6,3,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,5,18,1327,406,921,400,910,5,2,1,2,0,2,0,0,0,5,400,915,5,2,1,6,0,3,0,0,403,917,397,906,5,2,1,2,0,2,0,0,0,5,397,911,5,2,1,6,0,3,0,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,6,0,80704,39986,40718,38551,39345,535,418,235,226,184,250,14,22,467,457,38990,39771,671,553,532,523,241,302,25,37,38180,39189,36897,37921,480,391,204,199,177,247,7,14,415,417,37287,38311,590,508,475,476,230,291,16,29,1806,1529,1654,1424,55,27,31,27,7,3,7,8,52,40,1703,1460,81,45,57,47,11,11,9,8 -050,01,043,Alabama,Cullman County,6,1,4828,2443,2385,2331,2259,28,32,1,5,13,28,2,1,68,60,2396,2316,66,66,25,24,22,37,3,3,2244,2181,2143,2058,27,31,1,4,11,28,0,1,62,59,2202,2115,63,64,21,23,20,36,1,3,199,204,188,201,1,1,0,1,2,0,2,0,6,1,194,201,3,2,4,1,2,1,2,0 -050,01,043,Alabama,Cullman County,6,2,4989,2601,2388,2484,2279,37,24,12,18,17,20,0,1,51,46,2534,2320,62,48,30,36,25,27,1,3,2389,2168,2284,2075,33,19,10,15,17,20,0,0,45,39,2328,2110,55,40,25,30,25,25,1,2,212,220,200,204,4,5,2,3,0,0,0,1,6,7,206,210,7,8,5,6,0,2,0,1 -050,01,043,Alabama,Cullman County,6,3,5242,2713,2529,2614,2420,37,25,15,24,21,19,0,1,26,40,2639,2456,50,42,26,43,25,27,0,3,2545,2354,2464,2262,28,21,11,20,20,19,0,1,22,31,2485,2289,37,35,21,34,24,26,0,3,168,175,150,158,9,4,4,4,1,0,0,0,4,9,154,167,13,7,5,9,1,1,0,0 -050,01,043,Alabama,Cullman County,6,4,4973,2585,2388,2470,2283,51,55,17,14,14,10,0,0,33,26,2499,2307,65,67,34,30,18,12,2,1,2423,2258,2315,2161,47,51,16,11,12,10,0,0,33,25,2344,2184,61,62,33,27,16,12,2,1,162,130,155,122,4,4,1,3,2,0,0,0,0,1,155,123,4,5,1,3,2,0,0,0 -050,01,043,Alabama,Cullman County,6,5,5185,2612,2573,2482,2482,66,47,20,8,10,6,0,1,34,29,2514,2509,75,58,44,25,15,11,0,1,2466,2435,2349,2350,61,46,16,7,10,6,0,1,30,25,2377,2373,69,55,37,21,15,10,0,1,146,138,133,132,5,1,4,1,0,0,0,0,4,4,137,136,6,3,7,4,0,1,0,0 -050,01,043,Alabama,Cullman County,6,6,4784,2502,2282,2402,2192,38,26,15,14,13,25,5,1,29,24,2426,2212,45,33,33,27,19,31,8,3,2308,2190,2229,2107,34,25,11,12,13,25,1,0,20,21,2244,2124,37,32,24,23,19,30,4,2,194,92,173,85,4,1,4,2,0,0,4,1,9,3,182,88,8,1,9,4,0,1,4,1 -050,01,043,Alabama,Cullman County,6,7,4773,2434,2339,2332,2254,40,22,19,9,16,22,2,5,25,27,2356,2279,45,26,36,30,19,24,3,8,2232,2216,2150,2139,32,21,14,6,16,22,2,4,18,24,2167,2161,35,24,27,25,18,24,3,7,202,123,182,115,8,1,5,3,0,0,0,1,7,3,189,118,10,2,9,5,1,0,0,1 -050,01,043,Alabama,Cullman County,6,8,4921,2513,2408,2412,2326,46,24,17,14,10,20,0,1,28,23,2436,2346,52,30,40,31,14,22,0,2,2375,2278,2286,2210,42,19,14,11,9,20,0,1,24,17,2307,2225,45,22,34,25,13,21,0,2,138,130,126,116,4,5,3,3,1,0,0,0,4,6,129,121,7,8,6,6,1,1,0,0 -050,01,043,Alabama,Cullman County,6,9,5204,2563,2641,2466,2551,35,27,14,17,24,17,2,5,22,24,2488,2573,37,29,30,39,28,19,2,6,2468,2542,2378,2462,32,23,13,17,23,15,1,1,21,24,2399,2484,33,25,29,39,27,17,1,2,95,99,88,89,3,4,1,0,1,2,1,4,1,0,89,89,4,4,1,0,1,2,1,4 -050,01,043,Alabama,Cullman County,6,10,5355,2753,2602,2684,2534,22,21,16,16,9,15,0,1,22,15,2706,2547,24,24,34,29,11,16,0,1,2661,2546,2599,2482,21,20,13,15,9,15,0,1,19,13,2618,2494,21,21,30,27,11,16,0,1,92,56,85,52,1,1,3,1,0,0,0,0,3,2,88,53,3,3,4,2,0,0,0,0 -050,01,043,Alabama,Cullman County,6,11,5899,2986,2913,2879,2826,35,22,23,22,12,10,2,2,35,31,2912,2857,40,24,54,48,12,13,3,2,2910,2859,2813,2776,28,22,23,20,12,10,2,1,32,30,2844,2806,32,24,52,46,12,12,2,1,76,54,66,50,7,0,0,2,0,0,0,1,3,1,68,51,8,0,2,2,0,1,1,1 -050,01,043,Alabama,Cullman County,6,12,5669,2799,2870,2710,2785,39,24,20,16,6,11,0,1,24,33,2733,2818,41,26,41,44,8,13,0,2,2742,2843,2663,2760,34,24,16,15,6,11,0,1,23,32,2685,2792,35,26,37,42,8,13,0,2,57,27,47,25,5,0,4,1,0,0,0,0,1,1,48,26,6,0,4,2,0,0,0,0 -050,01,043,Alabama,Cullman County,6,13,4994,2426,2568,2357,2495,18,24,17,15,8,15,0,0,26,19,2383,2514,20,28,38,30,11,15,0,0,2406,2542,2339,2472,18,24,17,15,8,14,0,0,24,17,2363,2489,20,26,38,30,9,14,0,0,20,26,18,23,0,0,0,0,0,1,0,0,2,2,20,25,0,2,0,0,2,1,0,0 -050,01,043,Alabama,Cullman County,6,14,4614,2170,2444,2114,2377,19,20,17,16,3,14,0,0,17,17,2130,2394,21,23,33,30,3,14,0,0,2155,2424,2099,2358,19,20,17,15,3,14,0,0,17,17,2115,2375,21,23,33,29,3,14,0,0,15,20,15,19,0,0,0,1,0,0,0,0,0,0,15,19,0,0,0,1,0,0,0,0 -050,01,043,Alabama,Cullman County,6,15,3609,1632,1977,1598,1935,8,7,6,10,5,6,1,2,14,17,1611,1951,10,9,19,25,5,7,1,2,1624,1961,1591,1920,8,7,6,9,5,6,1,2,13,17,1603,1936,9,9,19,24,5,7,1,2,8,16,7,15,0,0,0,1,0,0,0,0,1,0,8,15,1,0,0,1,0,0,0,0 -050,01,043,Alabama,Cullman County,6,16,2603,1125,1478,1106,1447,6,10,4,4,2,3,0,0,7,14,1113,1461,6,11,10,16,3,5,0,0,1114,1466,1095,1435,6,10,4,4,2,3,0,0,7,14,1102,1449,6,11,10,16,3,5,0,0,11,12,11,12,0,0,0,0,0,0,0,0,0,0,11,12,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,6,17,1720,709,1011,696,990,6,6,1,2,0,7,0,0,6,6,700,995,8,7,4,8,2,7,2,0,701,1009,689,989,6,6,1,1,0,7,0,0,5,6,693,994,7,7,4,7,1,7,1,0,8,2,7,1,0,0,0,1,0,0,0,0,1,0,7,1,1,0,0,1,1,0,1,0 -050,01,043,Alabama,Cullman County,6,18,1342,420,922,414,910,4,2,1,2,1,2,0,0,0,6,414,916,4,2,1,8,1,2,0,0,417,917,411,905,4,2,1,2,1,2,0,0,0,6,411,911,4,2,1,8,1,2,0,0,3,5,3,5,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,7,0,81081,40114,40967,38659,39545,529,414,242,242,188,269,17,27,479,470,39110,39985,671,559,553,541,244,319,29,42,38312,39412,37014,38091,470,388,209,209,181,266,10,19,428,439,37415,38503,594,519,492,492,230,311,22,32,1802,1555,1645,1454,59,26,33,33,7,3,7,8,51,31,1695,1482,77,40,61,49,14,8,7,10 -050,01,043,Alabama,Cullman County,7,1,4930,2484,2446,2374,2294,32,30,1,8,14,44,2,2,61,68,2433,2357,67,73,22,34,26,49,2,5,2298,2240,2194,2091,30,30,1,7,12,44,1,2,60,66,2252,2153,64,72,22,31,24,49,1,5,186,206,180,203,2,0,0,1,2,0,1,0,1,2,181,204,3,1,0,3,2,0,1,0 -050,01,043,Alabama,Cullman County,7,2,4963,2571,2392,2451,2283,33,27,8,14,15,20,1,2,63,46,2509,2325,65,52,34,31,25,26,2,4,2363,2173,2257,2074,31,23,7,12,15,20,0,1,53,43,2305,2114,60,47,27,28,24,25,1,2,208,219,194,209,2,4,1,2,0,0,1,1,10,3,204,211,5,5,7,3,1,1,1,2 -050,01,043,Alabama,Cullman County,7,3,5263,2711,2552,2609,2440,37,26,15,31,20,18,0,1,30,36,2638,2474,50,42,30,47,23,23,1,2,2503,2376,2420,2280,29,22,10,23,19,18,0,1,25,32,2444,2310,40,36,21,37,22,23,1,2,208,176,189,160,8,4,5,8,1,0,0,0,5,4,194,164,10,6,9,10,1,0,0,0 -050,01,043,Alabama,Cullman County,7,4,4911,2545,2366,2433,2263,52,52,16,16,12,9,0,1,32,25,2464,2284,62,64,33,28,18,13,2,2,2400,2237,2297,2145,46,47,14,13,11,9,0,1,32,22,2328,2163,56,58,31,23,17,13,2,2,145,129,136,118,6,5,2,3,1,0,0,0,0,3,136,121,6,6,2,5,1,0,0,0 -050,01,043,Alabama,Cullman County,7,5,5096,2569,2527,2442,2426,52,50,24,8,15,8,0,1,36,34,2474,2459,66,61,50,28,16,13,1,1,2426,2391,2310,2296,47,49,21,7,14,8,0,1,34,30,2340,2325,60,58,46,26,15,12,1,1,143,136,132,130,5,1,3,1,1,0,0,0,2,4,134,134,6,3,4,2,1,1,0,0 -050,01,043,Alabama,Cullman County,7,6,4948,2563,2385,2459,2300,42,22,11,13,16,27,4,0,31,23,2487,2323,50,27,32,27,21,31,6,0,2402,2285,2321,2205,36,21,6,9,16,27,1,0,22,23,2340,2228,42,26,21,23,20,31,3,0,161,100,138,95,6,1,5,4,0,0,3,0,9,0,147,95,8,1,11,4,1,0,3,0 -050,01,043,Alabama,Cullman County,7,7,4813,2445,2368,2347,2280,35,24,20,9,15,21,4,6,24,28,2371,2307,37,28,37,30,19,25,5,7,2247,2240,2171,2160,25,23,16,7,15,21,3,4,17,25,2188,2184,25,26,29,26,18,25,4,5,198,128,176,120,10,1,4,2,0,0,1,2,7,3,183,123,12,2,8,4,1,0,1,2 -050,01,043,Alabama,Cullman County,7,8,4955,2527,2428,2415,2344,49,25,21,15,14,22,0,1,28,21,2443,2362,54,32,42,27,15,27,1,1,2383,2300,2286,2232,45,20,16,10,13,22,0,1,23,15,2309,2244,48,25,35,20,13,25,1,1,144,128,129,112,4,5,5,5,1,0,0,0,5,6,134,118,6,7,7,7,2,2,0,0 -050,01,043,Alabama,Cullman County,7,9,5210,2583,2627,2490,2543,36,21,13,21,19,14,2,6,23,22,2512,2562,39,23,33,40,20,17,2,7,2478,2528,2392,2454,33,18,12,20,18,12,1,2,22,22,2413,2473,36,20,31,39,19,15,1,3,105,99,98,89,3,3,1,1,1,2,1,4,1,0,99,89,3,3,2,1,1,2,1,4 -050,01,043,Alabama,Cullman County,7,10,5216,2675,2541,2612,2475,22,17,13,15,9,13,1,2,18,19,2630,2492,24,20,25,32,13,15,1,3,2584,2481,2526,2419,22,16,11,14,9,13,1,2,15,17,2541,2435,23,18,21,29,13,14,1,2,91,60,86,56,0,1,2,1,0,0,0,0,3,2,89,57,1,2,4,3,0,1,0,1 -050,01,043,Alabama,Cullman County,7,11,5846,2976,2870,2865,2780,37,24,26,20,12,13,1,2,35,31,2899,2811,41,28,54,44,15,16,2,2,2899,2807,2799,2721,30,23,25,19,12,13,1,1,32,30,2830,2751,32,26,53,43,14,16,2,1,77,63,66,59,7,1,1,1,0,0,0,1,3,1,69,60,9,2,1,1,1,0,0,1 -050,01,043,Alabama,Cullman County,7,12,5687,2813,2874,2719,2784,34,28,24,17,9,14,1,1,26,30,2745,2813,35,32,48,43,9,14,2,3,2754,2845,2670,2757,28,28,20,16,9,14,1,1,26,29,2696,2785,29,31,44,41,9,14,2,3,59,29,49,27,6,0,4,1,0,0,0,0,0,1,49,28,6,1,4,2,0,0,0,0 -050,01,043,Alabama,Cullman County,7,13,5022,2420,2602,2346,2523,24,22,18,17,8,16,0,0,24,24,2369,2546,27,24,38,39,10,17,0,0,2391,2582,2320,2505,24,22,18,17,8,15,0,0,21,23,2340,2527,26,23,37,39,9,16,0,0,29,20,26,18,0,0,0,0,0,1,0,0,3,1,29,19,1,1,1,0,1,1,0,0 -050,01,043,Alabama,Cullman County,7,14,4745,2251,2494,2189,2431,21,22,17,15,3,12,0,0,21,14,2209,2445,22,23,37,27,4,13,0,0,2234,2469,2172,2408,21,22,17,14,3,12,0,0,21,13,2192,2421,22,23,37,25,4,13,0,0,17,25,17,23,0,0,0,1,0,0,0,0,0,1,17,24,0,0,0,2,0,0,0,0 -050,01,043,Alabama,Cullman County,7,15,3664,1675,1989,1641,1944,9,6,7,13,3,5,1,2,14,19,1653,1961,12,8,18,29,6,5,1,5,1668,1971,1635,1927,9,6,7,12,3,5,1,2,13,19,1647,1944,11,8,18,28,5,5,1,5,7,18,6,17,0,0,0,1,0,0,0,0,1,0,6,17,1,0,0,1,1,0,0,0 -050,01,043,Alabama,Cullman County,7,16,2713,1141,1572,1119,1539,4,7,6,6,4,4,0,0,8,16,1124,1555,7,8,14,20,4,5,0,0,1130,1561,1108,1528,4,7,6,6,4,4,0,0,8,16,1113,1544,7,8,14,20,4,5,0,0,11,11,11,11,0,0,0,0,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,7,17,1741,718,1023,706,998,6,9,1,2,0,6,0,0,5,8,708,1006,9,11,5,7,0,7,1,0,709,1020,698,996,6,9,1,1,0,6,0,0,4,8,699,1004,9,11,4,6,0,7,1,0,9,3,8,2,0,0,0,1,0,0,0,0,1,0,9,2,0,0,1,1,0,0,0,0 -050,01,043,Alabama,Cullman County,7,18,1358,447,911,442,898,4,2,1,2,0,3,0,0,0,6,442,903,4,3,1,8,0,3,0,0,443,906,438,893,4,2,1,2,0,3,0,0,0,6,438,898,4,3,1,8,0,3,0,0,4,5,4,5,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,8,0,81771,40429,41342,38915,39852,547,425,244,252,206,302,25,31,492,480,39380,40307,684,567,557,552,265,356,43,48,38608,39737,37262,38368,487,398,212,213,191,296,16,21,440,441,37677,38787,607,523,493,497,246,344,33,33,1821,1605,1653,1484,60,27,32,39,15,6,9,10,52,39,1703,1520,77,44,64,55,19,12,10,15 -050,01,043,Alabama,Cullman County,8,1,4987,2511,2476,2399,2312,36,31,0,9,20,50,2,4,54,70,2452,2379,64,71,13,32,29,61,7,6,2323,2247,2227,2102,32,29,0,4,10,47,2,2,52,63,2278,2164,60,65,13,25,18,56,6,3,188,229,172,210,4,2,0,5,10,3,0,2,2,7,174,215,4,6,0,7,11,5,1,3 -050,01,043,Alabama,Cullman County,8,2,5074,2595,2479,2475,2340,35,34,7,15,16,36,2,2,60,52,2532,2389,64,61,31,36,26,42,3,4,2374,2254,2268,2125,33,32,6,12,16,36,0,1,51,48,2317,2170,59,58,24,31,25,42,1,2,221,225,207,215,2,2,1,3,0,0,2,1,9,4,215,219,5,3,7,5,1,0,2,2 -050,01,043,Alabama,Cullman County,8,3,5206,2681,2525,2569,2411,41,28,10,28,18,16,0,2,43,40,2606,2447,61,47,32,47,25,20,3,4,2472,2337,2374,2240,33,23,7,21,18,16,0,2,40,35,2408,2271,51,40,28,38,25,20,3,3,209,188,195,171,8,5,3,7,0,0,0,0,3,5,198,176,10,7,4,9,0,0,0,1 -050,01,043,Alabama,Cullman County,8,4,4919,2529,2390,2414,2285,47,46,18,17,14,10,3,2,33,30,2445,2314,63,59,37,29,16,16,3,3,2386,2252,2283,2161,41,40,15,12,13,10,3,2,31,27,2312,2187,56,52,33,22,15,16,3,3,143,138,131,124,6,6,3,5,1,0,0,0,2,3,133,127,7,7,4,7,1,0,0,0 -050,01,043,Alabama,Cullman County,8,5,4901,2479,2422,2352,2332,46,48,24,13,15,7,0,1,42,21,2390,2352,58,54,50,24,23,11,1,3,2345,2306,2230,2220,40,47,21,12,13,7,0,1,41,19,2267,2238,51,52,47,23,21,11,1,2,134,116,122,112,6,1,3,1,2,0,0,0,1,2,123,114,7,2,3,1,2,0,0,1 -050,01,043,Alabama,Cullman County,8,6,5253,2683,2570,2573,2475,46,27,13,13,15,29,4,0,32,26,2601,2499,51,34,35,30,22,32,6,1,2521,2455,2434,2366,39,26,10,11,15,29,0,0,23,23,2454,2387,42,33,25,27,21,31,2,0,162,115,139,109,7,1,3,2,0,0,4,0,9,3,147,112,9,1,10,3,1,1,4,1 -050,01,043,Alabama,Cullman County,8,7,4833,2475,2358,2372,2279,36,20,18,9,22,21,6,5,21,24,2393,2300,42,26,31,28,23,23,7,6,2295,2234,2213,2162,30,20,12,6,22,21,4,3,14,22,2227,2181,32,25,22,23,23,23,5,4,180,124,159,117,6,0,6,3,0,0,2,2,7,2,166,119,10,1,9,5,0,0,2,2 -050,01,043,Alabama,Cullman County,8,8,4948,2532,2416,2414,2318,52,27,24,16,15,29,2,2,25,24,2438,2342,55,33,43,32,18,32,3,2,2367,2296,2265,2214,47,23,20,10,14,29,2,2,19,18,2283,2232,49,25,34,23,17,32,3,2,165,120,149,104,5,4,4,6,1,0,0,0,6,6,155,110,6,8,9,9,1,0,0,0 -050,01,043,Alabama,Cullman County,8,9,5185,2579,2606,2485,2521,37,19,12,21,18,15,1,6,26,24,2511,2544,39,20,32,41,20,19,3,6,2468,2506,2380,2432,35,16,10,20,17,13,1,2,25,23,2405,2454,36,16,30,40,19,17,3,2,111,100,105,89,2,3,2,1,1,2,0,4,1,1,106,90,3,4,2,1,1,2,0,4 -050,01,043,Alabama,Cullman County,8,10,5213,2675,2538,2606,2469,21,19,14,13,12,15,2,2,20,20,2625,2488,23,21,31,28,14,17,2,4,2590,2475,2527,2411,20,17,13,12,12,15,1,2,17,18,2543,2428,21,19,28,26,14,16,1,4,85,63,79,58,1,2,1,1,0,0,1,0,3,2,82,60,2,2,3,2,0,1,1,0 -050,01,043,Alabama,Cullman County,8,11,5814,2930,2884,2830,2802,34,24,26,20,12,12,0,2,28,24,2858,2826,36,27,50,39,14,14,0,2,2852,2825,2763,2746,28,23,24,19,12,12,0,1,25,24,2788,2770,29,26,46,38,14,14,0,1,78,59,67,56,6,1,2,1,0,0,0,1,3,0,70,56,7,1,4,1,0,0,0,1 -050,01,043,Alabama,Cullman County,8,12,5711,2865,2846,2755,2760,40,22,26,20,11,13,2,1,31,30,2785,2789,42,24,53,46,12,15,4,2,2801,2805,2702,2722,33,22,23,19,11,13,2,1,30,28,2731,2750,35,23,49,44,12,14,4,2,64,41,53,38,7,0,3,1,0,0,0,0,1,2,54,39,7,1,4,2,0,1,0,0 -050,01,043,Alabama,Cullman County,8,13,5189,2496,2693,2417,2604,33,27,16,17,5,15,0,0,25,30,2442,2633,36,29,38,41,6,18,0,2,2462,2673,2387,2586,33,27,15,17,5,14,0,0,22,29,2409,2614,36,28,34,41,6,17,0,2,34,20,30,18,0,0,1,0,0,1,0,0,3,1,33,19,0,1,4,0,0,1,0,0 -050,01,043,Alabama,Cullman County,8,14,4890,2306,2584,2243,2515,18,26,20,15,5,12,0,0,20,16,2262,2530,21,28,38,27,5,14,0,1,2295,2555,2232,2488,18,26,20,14,5,12,0,0,20,15,2251,2502,21,28,38,26,5,13,0,1,11,29,11,27,0,0,0,1,0,0,0,0,0,1,11,28,0,0,0,1,0,1,0,0 -050,01,043,Alabama,Cullman County,8,15,3722,1711,2011,1669,1962,14,8,9,13,3,7,0,1,16,20,1685,1980,14,10,23,33,5,7,0,1,1698,1993,1657,1945,14,8,9,12,3,7,0,1,15,20,1672,1963,14,10,22,32,5,7,0,1,13,18,12,17,0,0,0,1,0,0,0,0,1,0,13,17,0,0,1,1,0,0,0,0 -050,01,043,Alabama,Cullman County,8,16,2775,1183,1592,1162,1562,0,6,5,8,4,4,1,1,11,11,1171,1572,3,8,15,18,4,4,1,1,1173,1583,1152,1553,0,6,5,8,4,4,1,1,11,11,1161,1563,3,8,15,18,4,4,1,1,10,9,10,9,0,0,0,0,0,0,0,0,0,0,10,9,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,8,17,1740,716,1024,701,994,7,9,2,3,1,7,0,0,5,11,705,1005,8,10,5,13,3,7,0,0,709,1018,695,989,7,9,2,2,1,7,0,0,4,11,698,1000,8,10,5,12,2,7,0,0,7,6,6,5,0,0,0,1,0,0,0,0,1,0,7,5,0,0,0,1,1,0,0,0 -050,01,043,Alabama,Cullman County,8,18,1411,483,928,479,911,4,4,0,2,0,4,0,0,0,7,479,918,4,5,0,8,0,4,0,0,477,923,473,906,4,4,0,2,0,4,0,0,0,7,473,913,4,5,0,8,0,4,0,0,6,5,6,5,0,0,0,0,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,9,0,82434,40696,41738,39116,40161,576,456,252,258,213,319,31,34,508,510,39595,40648,740,624,557,570,278,373,48,42,38840,40022,37434,38588,514,422,216,213,199,306,22,24,455,469,37866,39038,656,570,494,506,257,354,34,31,1856,1716,1682,1573,62,34,36,45,14,13,9,10,53,41,1729,1610,84,54,63,64,21,19,14,11 -050,01,043,Alabama,Cullman County,9,1,5011,2513,2498,2382,2329,45,35,3,12,18,50,5,5,60,67,2439,2395,77,72,20,34,30,60,8,6,2328,2262,2214,2120,41,32,0,3,11,42,5,3,57,62,2268,2181,71,66,16,24,22,51,8,4,185,236,168,209,4,3,3,9,7,8,0,2,3,5,171,214,6,6,4,10,8,9,0,2 -050,01,043,Alabama,Cullman County,9,2,5154,2598,2556,2473,2393,33,35,1,15,20,45,3,2,68,66,2539,2454,67,71,25,40,32,56,5,2,2385,2306,2276,2156,30,31,1,12,18,44,1,1,59,62,2333,2213,62,65,20,36,28,54,3,1,213,250,197,237,3,4,0,3,2,1,2,1,9,4,206,241,5,6,5,4,4,2,2,1 -050,01,043,Alabama,Cullman County,9,3,5203,2688,2515,2576,2407,43,27,12,19,15,13,0,3,42,46,2614,2452,64,48,31,37,25,20,0,4,2468,2308,2370,2217,35,22,8,14,15,12,0,3,40,40,2406,2256,56,39,25,30,25,19,0,4,220,207,206,190,8,5,4,5,0,1,0,0,2,6,208,196,8,9,6,7,0,1,0,0 -050,01,043,Alabama,Cullman County,9,4,5003,2563,2440,2447,2322,45,55,20,14,16,15,3,1,32,33,2475,2352,59,70,37,31,21,18,5,2,2412,2279,2309,2174,39,51,17,10,15,15,3,1,29,28,2335,2200,53,64,31,24,20,17,4,2,151,161,138,148,6,4,3,4,1,0,0,0,3,5,140,152,6,6,6,7,1,1,1,0 -050,01,043,Alabama,Cullman County,9,5,4675,2418,2257,2290,2158,53,50,21,14,11,9,1,3,42,23,2330,2179,68,59,46,31,16,9,3,3,2283,2135,2166,2042,48,47,18,12,9,9,1,3,41,22,2205,2062,62,56,43,28,14,9,3,3,135,122,124,116,5,3,3,2,2,0,0,0,1,1,125,117,6,3,3,3,2,0,0,0 -050,01,043,Alabama,Cullman County,9,6,5483,2743,2740,2626,2625,51,29,13,15,15,41,2,0,36,30,2659,2654,62,35,34,33,19,46,5,3,2595,2618,2496,2510,45,27,9,14,15,41,0,0,30,26,2524,2535,51,31,29,30,19,46,2,3,148,122,130,115,6,2,4,1,0,0,2,0,6,4,135,119,11,4,5,3,0,0,3,0 -050,01,043,Alabama,Cullman County,9,7,4917,2528,2389,2413,2292,37,29,17,14,31,23,9,3,21,28,2433,2317,43,38,31,32,32,26,10,5,2342,2275,2250,2188,31,28,13,8,31,23,5,2,12,26,2261,2212,34,36,22,24,32,26,5,3,186,114,163,104,6,1,4,6,0,0,4,1,9,2,172,105,9,2,9,8,0,0,5,2 -050,01,043,Alabama,Cullman County,9,8,4942,2513,2429,2394,2340,52,19,24,13,17,28,2,4,24,25,2416,2364,58,27,42,30,19,29,2,4,2355,2311,2255,2237,45,17,19,7,17,28,2,3,17,19,2271,2256,47,22,33,21,19,28,2,3,158,118,139,103,7,2,5,6,0,0,0,1,7,6,145,108,11,5,9,9,0,1,0,1 -050,01,043,Alabama,Cullman County,9,9,5086,2516,2570,2410,2477,42,30,13,22,20,16,1,5,30,20,2439,2496,45,34,39,38,22,18,1,5,2394,2453,2296,2374,40,26,10,19,18,14,1,2,29,18,2324,2391,43,30,35,33,20,16,1,2,122,117,114,103,2,4,3,3,2,2,0,3,1,2,115,105,2,4,4,5,2,2,0,3 -050,01,043,Alabama,Cullman County,9,10,5236,2674,2562,2600,2501,31,17,14,11,11,12,2,2,16,19,2615,2520,34,20,24,26,15,14,2,2,2587,2501,2519,2446,29,13,13,11,11,12,1,1,14,18,2533,2464,31,15,22,26,14,14,1,1,87,61,81,55,2,4,1,0,0,0,1,1,2,1,82,56,3,5,2,0,1,0,1,1 -050,01,043,Alabama,Cullman County,9,11,5751,2877,2874,2796,2796,26,24,22,22,9,12,0,3,24,17,2818,2812,31,27,42,36,10,13,1,3,2788,2805,2716,2732,22,23,20,20,9,12,0,2,21,16,2736,2747,26,26,38,33,9,13,0,2,89,69,80,64,4,1,2,2,0,0,0,1,3,1,82,65,5,1,4,3,1,0,1,1 -050,01,043,Alabama,Cullman County,9,12,5753,2900,2853,2788,2763,36,23,31,22,10,10,2,1,33,34,2821,2797,38,28,59,50,12,11,3,1,2836,2805,2737,2718,28,23,28,21,10,10,2,1,31,32,2768,2750,30,27,55,48,11,11,3,1,64,48,51,45,8,0,3,1,0,0,0,0,2,2,53,47,8,1,4,2,1,0,0,0 -050,01,043,Alabama,Cullman County,9,13,5308,2555,2753,2473,2657,36,30,16,21,6,13,0,0,24,32,2497,2689,39,32,34,49,8,16,1,0,2510,2735,2433,2639,35,30,15,21,6,13,0,0,21,32,2454,2671,36,32,33,49,8,16,0,0,45,18,40,18,1,0,1,0,0,0,0,0,3,0,43,18,3,0,1,0,0,0,1,0 -050,01,043,Alabama,Cullman County,9,14,5038,2375,2663,2301,2589,19,27,26,16,5,10,0,0,24,21,2324,2609,23,29,46,34,5,12,1,0,2362,2631,2288,2562,19,26,26,15,5,9,0,0,24,19,2311,2581,23,27,46,33,5,9,1,0,13,32,13,27,0,1,0,1,0,1,0,0,0,2,13,28,0,2,0,1,0,3,0,0 -050,01,043,Alabama,Cullman County,9,15,3756,1752,2004,1710,1960,14,8,11,14,3,6,0,0,14,16,1723,1975,16,10,25,28,3,7,0,0,1737,1986,1696,1943,14,8,11,13,3,6,0,0,13,16,1708,1958,16,10,24,27,3,7,0,0,15,18,14,17,0,0,0,1,0,0,0,0,1,0,15,17,0,0,1,1,0,0,0,0 -050,01,043,Alabama,Cullman County,9,16,2849,1208,1641,1185,1603,2,7,4,9,5,5,1,2,11,15,1195,1616,4,10,13,22,6,6,1,2,1197,1633,1174,1595,2,7,4,9,5,5,1,2,11,15,1184,1608,4,10,13,22,6,6,1,2,11,8,11,8,0,0,0,0,0,0,0,0,0,0,11,8,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,9,17,1802,761,1041,746,1016,4,8,3,2,1,4,0,0,7,11,752,1027,5,11,8,10,3,4,0,0,754,1031,740,1007,4,8,3,1,1,4,0,0,6,11,746,1018,4,11,8,9,2,4,0,0,7,10,6,9,0,0,0,1,0,0,0,0,1,0,6,9,1,0,0,1,1,0,0,0 -050,01,043,Alabama,Cullman County,9,18,1467,514,953,506,933,7,3,1,3,0,7,0,0,0,7,506,940,7,3,1,9,0,8,0,0,507,948,499,928,7,3,1,3,0,7,0,0,0,7,499,935,7,3,1,9,0,8,0,0,7,5,7,5,0,0,0,0,0,0,0,0,0,0,7,5,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,10,0,82830,40926,41904,39301,40300,600,482,247,252,202,301,40,44,536,525,39809,40798,772,654,572,568,272,359,53,60,39080,40179,37632,38718,535,447,213,211,190,287,30,34,480,482,38087,39176,685,599,508,508,254,341,40,47,1846,1725,1669,1582,65,35,34,41,12,14,10,10,56,43,1722,1622,87,55,64,60,18,18,13,13 -050,01,043,Alabama,Cullman County,10,1,5065,2555,2510,2417,2354,48,36,3,9,17,35,6,8,64,68,2479,2417,84,75,24,30,28,45,8,11,2369,2282,2250,2156,42,32,0,1,11,26,6,6,60,61,2308,2212,76,68,19,19,22,36,8,8,186,228,167,198,6,4,3,8,6,9,0,2,4,7,171,205,8,7,5,11,6,9,0,3 -050,01,043,Alabama,Cullman County,10,2,5104,2562,2542,2433,2380,32,36,2,11,15,41,5,4,75,70,2503,2448,73,71,30,39,29,50,8,5,2351,2319,2240,2168,28,33,2,9,13,40,3,4,65,65,2301,2231,64,65,26,35,25,49,4,5,211,223,193,212,4,3,0,2,2,1,2,0,10,5,202,217,9,6,4,4,4,1,4,0 -050,01,043,Alabama,Cullman County,10,3,5198,2722,2476,2593,2375,46,23,13,17,14,13,1,5,55,43,2645,2416,69,43,38,38,22,18,3,7,2501,2260,2384,2174,39,18,10,12,14,12,1,4,53,40,2434,2212,62,37,33,32,22,17,3,5,221,216,209,201,7,5,3,5,0,1,0,1,2,3,211,204,7,6,5,6,0,1,0,2 -050,01,043,Alabama,Cullman County,10,4,5002,2570,2432,2453,2292,47,64,18,21,18,13,3,1,31,41,2481,2328,60,84,32,41,23,18,5,5,2408,2270,2306,2143,40,60,15,16,17,13,3,1,27,37,2330,2176,51,79,28,33,21,17,5,5,162,162,147,149,7,4,3,5,1,0,0,0,4,4,151,152,9,5,4,8,2,1,0,0 -050,01,043,Alabama,Cullman County,10,5,4623,2375,2248,2251,2159,54,45,18,13,10,10,3,2,39,19,2287,2176,68,52,41,23,17,13,5,3,2226,2122,2113,2041,49,41,14,11,9,10,2,2,39,17,2149,2056,63,47,37,20,16,13,4,3,149,126,138,118,5,4,4,2,1,0,1,0,0,2,138,120,5,5,4,3,1,0,1,0 -050,01,043,Alabama,Cullman County,10,6,5705,2858,2847,2742,2725,54,36,17,9,11,41,0,1,34,35,2775,2760,62,43,37,29,18,48,1,2,2725,2714,2621,2599,49,34,13,8,11,41,0,1,31,31,2651,2630,55,39,32,26,18,48,1,2,133,133,121,126,5,2,4,1,0,0,0,0,3,4,124,130,7,4,5,3,0,0,0,0 -050,01,043,Alabama,Cullman County,10,7,4883,2513,2370,2397,2275,37,31,15,14,26,21,12,4,26,25,2422,2297,44,40,34,29,27,25,12,4,2369,2262,2279,2175,32,30,12,10,26,21,6,3,14,23,2292,2195,36,37,22,25,27,25,6,3,144,108,118,100,5,1,3,4,0,0,6,1,12,2,130,102,8,3,12,4,0,0,6,1 -050,01,043,Alabama,Cullman County,10,8,4913,2462,2451,2348,2348,52,25,24,14,15,29,2,5,21,30,2367,2375,57,33,40,36,17,31,2,6,2281,2340,2188,2249,44,24,18,9,15,29,2,4,14,25,2200,2271,47,31,29,28,17,31,2,4,181,111,160,99,8,1,6,5,0,0,0,1,7,5,167,104,10,2,11,8,0,0,0,2 -050,01,043,Alabama,Cullman County,10,9,5070,2527,2543,2421,2449,46,32,10,20,18,18,3,4,29,20,2450,2469,49,34,34,36,20,21,3,4,2406,2414,2309,2335,43,28,8,16,16,16,3,3,27,16,2336,2351,46,28,30,31,18,18,3,3,121,129,112,114,3,4,2,4,2,2,0,1,2,4,114,118,3,6,4,5,2,3,0,1 -050,01,043,Alabama,Cullman County,10,10,5264,2659,2605,2580,2529,27,23,15,16,15,13,2,4,20,20,2598,2549,31,27,32,29,16,16,2,6,2577,2531,2503,2463,25,18,14,16,15,13,1,1,19,20,2520,2483,29,22,30,29,16,16,1,3,82,74,77,66,2,5,1,0,0,0,1,3,1,0,78,66,2,5,2,0,0,0,1,3 -050,01,043,Alabama,Cullman County,10,11,5628,2843,2785,2758,2717,29,19,18,17,13,12,0,3,25,17,2782,2733,33,24,38,28,15,14,0,3,2756,2718,2680,2655,27,18,15,16,13,12,0,2,21,15,2700,2670,29,21,34,26,14,14,0,2,87,67,78,62,2,1,3,1,0,0,0,1,4,2,82,63,4,3,4,2,1,0,0,1 -050,01,043,Alabama,Cullman County,10,12,5745,2846,2899,2739,2809,35,25,29,24,10,9,2,0,31,32,2770,2840,37,30,55,51,13,10,2,0,2776,2853,2680,2766,27,25,28,23,10,9,2,0,29,30,2709,2795,29,29,53,49,12,10,2,0,70,46,59,43,8,0,1,1,0,0,0,0,2,2,61,45,8,1,2,2,1,0,0,0 -050,01,043,Alabama,Cullman County,10,13,5445,2653,2792,2564,2699,43,29,17,20,4,12,0,1,25,31,2589,2729,46,32,38,48,5,13,0,1,2610,2768,2527,2675,40,29,16,20,4,12,0,1,23,31,2550,2705,41,32,37,48,5,13,0,1,43,24,37,24,3,0,1,0,0,0,0,0,2,0,39,24,5,0,1,0,0,0,0,0 -050,01,043,Alabama,Cullman County,10,14,4918,2324,2594,2250,2518,20,28,22,16,7,12,0,0,25,20,2273,2537,21,30,45,33,9,14,1,0,2310,2565,2237,2494,20,27,22,15,7,11,0,0,24,18,2260,2511,21,29,44,32,9,11,0,0,14,29,13,24,0,1,0,1,0,1,0,0,1,2,13,26,0,1,1,1,0,3,1,0 -050,01,043,Alabama,Cullman County,10,15,4064,1897,2167,1848,2115,15,11,16,15,2,7,0,0,16,19,1863,2134,19,14,29,30,3,8,0,0,1884,2147,1835,2095,15,11,16,15,2,7,0,0,16,19,1850,2114,19,14,29,30,3,8,0,0,13,20,13,20,0,0,0,0,0,0,0,0,0,0,13,20,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,10,16,2928,1273,1655,1243,1614,4,8,6,9,6,4,1,2,13,18,1255,1631,6,10,15,26,9,4,1,2,1261,1644,1232,1605,4,8,6,8,6,4,1,2,12,17,1244,1622,5,9,15,24,8,4,1,2,12,11,11,9,0,0,0,1,0,0,0,0,1,1,11,9,1,1,0,2,1,0,0,0 -050,01,043,Alabama,Cullman County,10,17,1821,747,1074,734,1051,2,6,3,4,1,4,0,0,7,9,740,1060,4,6,9,12,1,4,0,1,737,1061,725,1039,2,6,3,3,1,4,0,0,6,9,730,1048,3,6,9,11,1,4,0,1,10,13,9,12,0,0,0,1,0,0,0,0,1,0,10,12,1,0,0,1,0,0,0,0 -050,01,043,Alabama,Cullman County,10,18,1454,540,914,530,891,9,5,1,3,0,7,0,0,0,8,530,899,9,6,1,10,0,7,0,0,533,909,523,886,9,5,1,3,0,7,0,0,0,8,523,894,9,6,1,10,0,7,0,0,7,5,7,5,0,0,0,0,0,0,0,0,0,0,7,5,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,11,0,83300,41186,42114,39495,40461,606,489,262,262,211,313,39,41,573,548,40037,40974,797,674,603,574,277,388,61,63,39309,40322,37807,38821,541,449,226,221,196,301,29,31,510,499,38291,39294,702,610,534,508,255,365,48,48,1877,1792,1688,1640,65,40,36,41,15,12,10,10,63,49,1746,1680,95,64,69,66,22,23,13,15 -050,01,043,Alabama,Cullman County,11,1,5117,2602,2515,2459,2350,40,43,5,13,21,31,7,4,70,74,2525,2421,78,86,27,38,33,42,11,5,2386,2290,2268,2158,33,35,0,5,13,23,7,4,65,65,2330,2221,68,74,20,24,24,33,11,5,216,225,191,192,7,8,5,8,8,8,0,0,5,9,195,200,10,12,7,14,9,9,0,0 -050,01,043,Alabama,Cullman County,11,2,5115,2588,2527,2447,2354,41,36,3,11,13,45,5,8,79,73,2521,2424,81,73,33,39,25,56,10,9,2392,2303,2269,2144,35,33,2,9,11,44,3,6,72,67,2337,2208,73,68,26,35,21,53,8,7,196,224,178,210,6,3,1,2,2,1,2,2,7,6,184,216,8,5,7,4,4,3,2,2 -050,01,043,Alabama,Cullman County,11,3,5212,2728,2484,2596,2390,38,22,12,17,18,6,1,3,63,46,2656,2433,68,45,38,33,26,13,3,6,2510,2253,2393,2173,33,18,9,13,18,5,1,2,56,42,2447,2212,59,39,32,27,25,12,3,5,218,231,203,217,5,4,3,4,0,1,0,1,7,4,209,221,9,6,6,6,1,1,0,1 -050,01,043,Alabama,Cullman County,11,4,5027,2572,2455,2448,2314,53,57,14,26,16,16,1,1,40,41,2485,2354,72,74,33,44,20,20,3,5,2404,2274,2297,2147,45,52,11,21,15,16,1,1,35,37,2329,2184,61,67,28,38,19,19,3,3,168,181,151,167,8,5,3,5,1,0,0,0,5,4,156,170,11,7,5,6,1,1,0,2 -050,01,043,Alabama,Cullman County,11,5,4570,2341,2229,2217,2131,55,45,23,13,9,13,3,0,34,27,2249,2155,67,55,45,25,13,20,3,3,2186,2111,2073,2021,49,42,21,10,7,13,2,0,34,25,2105,2044,61,51,43,21,11,19,2,2,155,118,144,110,6,3,2,3,2,0,1,0,0,2,144,111,6,4,2,4,2,1,1,1 -050,01,043,Alabama,Cullman County,11,6,5790,2852,2938,2729,2805,49,41,21,11,12,39,0,3,41,39,2767,2839,61,54,46,33,19,47,2,4,2730,2784,2617,2659,47,39,16,10,12,39,0,3,38,34,2652,2689,57,49,40,29,19,47,2,4,122,154,112,146,2,2,5,1,0,0,0,0,3,5,115,150,4,5,6,4,0,0,0,0 -050,01,043,Alabama,Cullman County,11,7,4984,2587,2397,2472,2296,37,28,13,18,25,30,9,3,31,22,2503,2315,44,32,35,33,27,35,10,4,2439,2295,2351,2202,32,26,10,14,25,30,3,2,18,21,2369,2220,35,29,23,29,27,35,4,3,148,102,121,94,5,2,3,4,0,0,6,1,13,1,134,95,9,3,12,4,0,0,6,1 -050,01,043,Alabama,Cullman County,11,8,4938,2476,2462,2352,2359,51,28,23,12,20,28,5,5,25,30,2376,2385,58,37,41,33,22,31,7,7,2315,2350,2209,2256,45,28,18,8,20,28,5,4,18,26,2227,2279,48,34,33,27,21,30,5,6,161,112,143,103,6,0,5,4,0,0,0,1,7,4,149,106,10,3,8,6,1,1,2,1 -050,01,043,Alabama,Cullman County,11,9,5085,2572,2513,2464,2418,53,32,13,15,13,24,1,1,28,23,2490,2439,60,39,34,29,15,28,2,1,2444,2389,2348,2311,49,26,10,10,12,24,1,1,24,17,2370,2327,53,31,30,21,14,26,2,1,128,124,116,107,4,6,3,5,1,0,0,0,4,6,120,112,7,8,4,8,1,2,0,0 -050,01,043,Alabama,Cullman County,11,10,5256,2617,2639,2518,2565,33,18,18,17,24,15,4,6,20,18,2537,2582,37,22,32,30,26,16,5,7,2525,2548,2433,2485,30,13,17,17,23,13,3,2,19,18,2451,2502,33,17,31,30,25,14,4,3,92,91,85,80,3,5,1,0,1,2,1,4,1,0,86,80,4,5,1,0,1,2,1,4 -050,01,043,Alabama,Cullman County,11,11,5440,2784,2656,2711,2593,22,19,18,16,11,10,0,1,22,17,2731,2610,28,22,35,28,12,12,0,1,2700,2591,2635,2533,21,18,15,15,11,10,0,1,18,14,2651,2547,25,20,30,25,12,12,0,1,84,65,76,60,1,1,3,1,0,0,0,0,4,3,80,63,3,2,5,3,0,0,0,0 -050,01,043,Alabama,Cullman County,11,12,5787,2855,2932,2751,2838,36,26,23,24,9,12,2,2,34,30,2783,2868,39,29,52,48,13,14,2,3,2780,2881,2686,2790,29,26,23,23,9,12,2,1,31,29,2715,2819,32,29,49,46,13,14,2,2,75,51,65,48,7,0,0,1,0,0,0,1,3,1,68,49,7,0,3,2,0,0,0,1 -050,01,043,Alabama,Cullman County,11,13,5562,2703,2859,2610,2760,40,36,24,19,5,9,0,1,24,34,2634,2792,41,38,46,48,6,12,0,4,2652,2827,2567,2729,35,36,22,19,5,9,0,1,23,33,2590,2761,36,37,44,47,5,12,0,3,51,32,43,31,5,0,2,0,0,0,0,0,1,1,44,31,5,1,2,1,1,0,0,1 -050,01,043,Alabama,Cullman County,11,14,4851,2307,2544,2234,2479,21,19,22,15,4,13,0,0,26,18,2260,2495,23,22,45,29,6,17,0,1,2286,2519,2215,2456,21,19,22,15,4,13,0,0,24,16,2239,2472,22,20,44,28,5,15,0,0,21,25,19,23,0,0,0,0,0,0,0,0,2,2,21,23,1,2,1,1,1,2,0,1 -050,01,043,Alabama,Cullman County,11,15,4175,1949,2226,1890,2162,19,21,19,17,4,6,0,1,17,19,1905,2180,21,23,32,35,7,6,1,1,1936,2206,1877,2144,19,20,19,16,4,6,0,1,17,19,1892,2162,21,22,32,34,7,6,1,1,13,20,13,18,0,1,0,1,0,0,0,0,0,0,13,18,0,1,0,1,0,0,0,0 -050,01,043,Alabama,Cullman County,11,16,3035,1336,1699,1304,1661,7,5,6,10,5,5,1,2,13,16,1316,1677,8,8,18,22,5,6,2,2,1327,1682,1296,1646,7,5,6,9,5,5,1,2,12,15,1308,1661,7,8,18,21,5,5,1,2,9,17,8,15,0,0,0,1,0,0,0,0,1,1,8,16,1,0,0,1,0,1,1,0 -050,01,043,Alabama,Cullman County,11,17,1875,762,1113,748,1084,2,9,4,4,2,3,0,0,6,13,754,1095,2,11,10,16,2,4,0,0,749,1100,735,1071,2,9,4,4,2,3,0,0,6,13,741,1082,2,11,10,16,2,4,0,0,13,13,13,13,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,11,18,1481,555,926,545,902,9,4,1,4,0,8,0,0,0,8,545,910,9,4,1,11,0,9,0,0,548,919,538,896,9,4,1,3,0,8,0,0,0,8,538,904,9,4,1,10,0,9,0,0,7,7,7,6,0,0,0,1,0,0,0,0,0,0,7,6,0,0,0,1,0,0,0,0 -050,01,043,Alabama,Cullman County,12,0,83644,41341,42303,39601,40607,631,514,268,261,217,317,37,36,587,568,40151,41134,847,706,607,592,298,390,51,58,39417,40495,37868,38951,566,474,233,225,201,309,27,25,522,511,38360,39429,747,641,537,530,274,369,39,42,1924,1808,1733,1656,65,40,35,36,16,8,10,11,65,57,1791,1705,100,65,70,62,24,21,12,16 -050,01,043,Alabama,Cullman County,12,1,5103,2618,2485,2464,2325,41,47,8,13,28,26,4,2,73,72,2533,2392,89,88,32,39,39,34,4,7,2410,2269,2282,2141,36,39,4,4,18,20,4,2,66,63,2345,2200,78,76,25,24,29,27,4,7,208,216,182,184,5,8,4,9,10,6,0,0,7,9,188,192,11,12,7,15,10,7,0,0 -050,01,043,Alabama,Cullman County,12,2,5200,2612,2588,2475,2413,42,38,4,11,12,50,5,6,74,70,2543,2476,83,75,29,38,26,65,8,8,2414,2362,2293,2203,34,34,1,9,11,50,4,3,71,63,2360,2261,72,69,24,32,24,61,7,4,198,226,182,210,8,4,3,2,1,0,1,3,3,7,183,215,11,6,5,6,2,4,1,4 -050,01,043,Alabama,Cullman County,12,3,5205,2678,2527,2545,2420,35,29,10,12,12,7,2,2,74,57,2612,2473,71,57,43,32,25,20,4,3,2449,2283,2331,2188,32,26,9,10,12,7,1,1,64,51,2390,2236,62,50,37,29,25,18,2,2,229,244,214,232,3,3,1,2,0,0,1,1,10,6,222,237,9,7,6,3,0,2,2,1 -050,01,043,Alabama,Cullman County,12,4,5012,2583,2429,2455,2287,61,59,13,27,14,18,1,1,39,37,2492,2319,77,78,33,43,19,24,1,2,2382,2259,2267,2127,54,54,11,24,13,18,1,1,36,35,2301,2157,68,72,30,39,18,24,1,2,201,170,188,160,7,5,2,3,1,0,0,0,3,2,191,162,9,6,3,4,1,0,0,0 -050,01,043,Alabama,Cullman County,12,5,4604,2354,2250,2231,2143,58,46,18,13,7,12,1,2,39,34,2269,2173,70,62,39,30,12,14,4,5,2197,2126,2086,2030,50,44,16,10,6,12,1,2,38,28,2123,2056,62,56,36,24,11,14,4,4,157,124,145,113,8,2,2,3,1,0,0,0,1,6,146,117,8,6,3,6,1,0,0,1 -050,01,043,Alabama,Cullman County,12,6,5638,2824,2814,2692,2688,51,38,26,11,14,37,3,2,38,38,2728,2724,61,49,49,33,22,43,3,3,2693,2671,2572,2554,49,35,22,10,13,37,2,2,35,33,2605,2585,58,43,44,31,20,42,2,3,131,143,120,134,2,3,4,1,1,0,1,0,3,5,123,139,3,6,5,2,2,1,1,0 -050,01,043,Alabama,Cullman County,12,7,5182,2683,2499,2550,2397,52,30,15,18,28,27,8,1,30,26,2580,2420,62,38,32,33,34,31,8,3,2543,2388,2438,2292,46,29,11,14,28,27,3,1,17,25,2455,2314,52,36,20,29,32,31,3,3,140,111,112,105,6,1,4,4,0,0,5,0,13,1,125,106,10,2,12,4,2,0,5,0 -050,01,043,Alabama,Cullman County,12,8,4903,2415,2488,2304,2373,46,31,19,11,19,38,5,6,22,29,2326,2398,51,38,35,28,20,42,5,11,2268,2366,2175,2261,40,30,15,8,19,38,4,4,15,25,2190,2283,42,34,27,25,20,41,4,8,147,122,129,112,6,1,4,3,0,0,1,2,7,4,136,115,9,4,8,3,0,1,1,3 -050,01,043,Alabama,Cullman County,12,9,5087,2566,2521,2458,2426,52,34,11,12,17,21,1,1,27,27,2484,2451,60,40,29,33,20,22,2,2,2439,2404,2346,2326,48,28,6,9,16,21,1,1,22,19,2367,2344,53,32,21,24,18,22,2,1,127,117,112,100,4,6,5,3,1,0,0,0,5,8,117,107,7,8,8,9,2,0,0,1 -050,01,043,Alabama,Cullman County,12,10,5237,2600,2637,2504,2558,31,21,18,21,23,12,3,6,21,19,2524,2576,35,24,33,37,28,13,3,6,2506,2552,2417,2485,28,17,17,20,22,10,2,2,20,18,2436,2502,31,20,32,35,27,11,2,2,94,85,87,73,3,4,1,1,1,2,1,4,1,1,88,74,4,4,1,2,1,2,1,4 -050,01,043,Alabama,Cullman County,12,11,5355,2753,2602,2674,2538,29,19,15,16,11,12,1,1,23,16,2697,2553,33,23,32,28,13,13,1,1,2669,2539,2596,2480,29,18,13,15,11,12,1,1,19,13,2615,2492,32,22,28,25,12,12,1,1,84,63,78,58,0,1,2,1,0,0,0,0,4,3,82,61,1,1,4,3,1,1,0,0 -050,01,043,Alabama,Cullman County,12,12,5803,2880,2923,2773,2830,35,28,28,22,11,12,1,2,32,29,2801,2858,41,32,53,46,15,14,4,2,2802,2860,2707,2771,28,27,27,21,11,12,1,1,28,28,2732,2798,32,30,49,45,14,14,3,1,78,63,66,59,7,1,1,1,0,0,0,1,4,1,69,60,9,2,4,1,1,0,1,1 -050,01,043,Alabama,Cullman County,12,13,5577,2726,2851,2631,2757,36,35,26,16,5,10,1,1,27,32,2656,2789,40,37,50,43,5,13,2,1,2669,2817,2582,2724,30,35,24,16,5,10,1,1,27,31,2607,2755,34,37,48,43,5,12,2,1,57,34,49,33,6,0,2,0,0,0,0,0,0,1,49,34,6,0,2,0,0,1,0,0 -050,01,043,Alabama,Cullman County,12,14,4882,2299,2583,2218,2508,25,20,24,19,5,12,0,0,27,24,2243,2532,31,21,48,39,5,15,0,0,2272,2561,2194,2487,25,20,24,19,5,12,0,0,24,23,2216,2510,28,21,47,39,5,14,0,0,27,22,24,21,0,0,0,0,0,0,0,0,3,1,27,22,3,0,1,0,0,1,0,0 -050,01,043,Alabama,Cullman County,12,15,4315,2010,2305,1945,2244,21,22,19,15,3,6,0,1,22,17,1967,2260,23,24,38,30,5,7,1,1,1994,2277,1929,2219,21,21,19,14,3,6,0,1,22,16,1951,2234,23,23,38,28,5,7,1,1,16,28,16,25,0,1,0,1,0,0,0,0,0,1,16,26,0,1,0,2,0,0,0,0 -050,01,043,Alabama,Cullman County,12,16,3079,1374,1705,1343,1659,7,6,7,14,4,6,1,2,12,18,1352,1676,9,8,18,29,6,8,1,3,1366,1687,1336,1643,7,6,7,13,4,6,1,2,11,17,1345,1659,9,8,17,28,5,7,1,2,8,18,7,16,0,0,0,1,0,0,0,0,1,1,7,17,0,0,1,1,1,1,0,1 -050,01,043,Alabama,Cullman County,12,17,2000,819,1181,802,1151,0,6,6,6,4,4,0,0,7,14,807,1165,2,6,13,19,4,5,0,0,806,1169,789,1139,0,6,6,6,4,4,0,0,7,14,794,1153,2,6,13,19,4,5,0,0,13,12,13,12,0,0,0,0,0,0,0,0,0,0,13,12,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,12,18,1462,547,915,537,890,9,5,1,4,0,7,0,0,0,9,537,899,9,6,1,12,0,7,0,0,538,905,528,881,9,5,1,3,0,7,0,0,0,9,528,890,9,6,1,11,0,7,0,0,9,10,9,9,0,0,0,1,0,0,0,0,0,0,9,9,0,0,0,1,0,0,0,0 -050,01,043,Alabama,Cullman County,13,0,84515,41789,42726,39988,40972,650,525,286,270,227,333,33,39,605,587,40559,41520,857,720,643,617,303,416,50,59,39802,40878,38197,39293,586,483,245,228,210,321,23,28,541,525,38708,39784,767,655,569,542,278,390,38,47,1987,1848,1791,1679,64,42,41,42,17,12,10,11,64,62,1851,1736,90,65,74,75,25,26,12,12 -050,01,043,Alabama,Cullman County,13,1,5028,2596,2432,2441,2275,44,51,14,12,28,18,3,5,66,71,2498,2338,89,95,34,31,38,32,5,8,2389,2246,2256,2115,42,43,9,6,20,15,3,5,59,62,2308,2171,82,83,26,21,28,26,5,8,207,186,185,160,2,8,5,6,8,3,0,0,7,9,190,167,7,12,8,10,10,6,0,0 -050,01,043,Alabama,Cullman County,13,2,5268,2658,2610,2524,2438,42,33,4,14,13,46,2,5,73,74,2592,2507,81,70,34,43,25,60,5,7,2459,2367,2350,2219,32,29,1,9,8,41,2,2,66,67,2411,2284,69,64,27,34,20,51,4,4,199,243,174,219,10,4,3,5,5,5,0,3,7,7,181,223,12,6,7,9,5,9,1,3 -050,01,043,Alabama,Cullman County,13,3,5268,2691,2577,2553,2442,36,31,11,14,14,22,3,3,74,65,2623,2502,71,57,42,43,24,36,6,5,2445,2344,2324,2226,32,29,9,10,14,20,1,2,65,57,2386,2278,63,55,35,34,24,32,3,3,246,233,229,216,4,2,2,4,0,2,2,1,9,8,237,224,8,2,7,9,0,4,3,2 -050,01,043,Alabama,Cullman County,13,4,4971,2575,2396,2448,2253,53,65,10,23,13,17,1,1,50,37,2497,2286,76,80,34,40,19,25,2,4,2363,2208,2248,2079,48,59,9,19,13,17,1,1,44,33,2291,2108,69,72,29,34,19,25,2,4,212,188,200,174,5,6,1,4,0,0,0,0,6,4,206,178,7,8,5,6,0,0,0,0 -050,01,043,Alabama,Cullman County,13,5,4693,2403,2290,2271,2184,58,44,22,15,11,7,2,2,39,38,2307,2217,73,61,43,33,16,13,3,4,2242,2153,2123,2061,51,40,18,11,10,7,2,2,38,32,2158,2088,65,54,39,27,15,12,3,4,161,137,148,123,7,4,4,4,1,0,0,0,1,6,149,129,8,7,4,6,1,1,0,0 -050,01,043,Alabama,Cullman County,13,6,5546,2805,2741,2659,2606,50,40,27,16,13,50,2,2,54,27,2709,2632,66,49,61,33,23,53,2,3,2660,2609,2526,2481,47,37,24,15,12,50,1,2,50,24,2572,2504,62,44,56,31,21,53,1,3,145,132,133,125,3,3,3,1,1,0,1,0,4,3,137,128,4,5,5,2,2,0,1,0 -050,01,043,Alabama,Cullman County,13,7,5475,2795,2680,2659,2569,62,34,17,17,24,27,5,1,28,32,2685,2599,68,44,34,38,29,32,7,2,2670,2564,2551,2459,56,33,15,15,24,27,1,1,23,29,2572,2486,59,42,30,33,29,31,3,2,125,116,108,110,6,1,2,2,0,0,4,0,5,3,113,113,9,2,4,5,0,1,4,0 -050,01,043,Alabama,Cullman County,13,8,4914,2438,2476,2323,2378,42,27,24,10,25,30,7,6,17,25,2340,2402,49,34,34,28,25,32,7,6,2303,2353,2210,2263,36,26,16,8,25,30,5,4,11,22,2221,2284,39,31,24,26,25,31,5,4,135,123,113,115,6,1,8,2,0,0,2,2,6,3,119,118,10,3,10,2,0,1,2,2 -050,01,043,Alabama,Cullman County,13,9,5137,2610,2527,2498,2419,58,35,15,16,15,27,1,0,23,30,2521,2448,61,40,30,39,18,28,3,3,2463,2408,2365,2319,53,30,11,10,14,27,1,0,19,22,2384,2340,55,33,25,26,15,28,3,3,147,119,133,100,5,5,4,6,1,0,0,0,4,8,137,108,6,7,5,13,3,0,0,0 -050,01,043,Alabama,Cullman County,13,10,5274,2617,2657,2513,2575,39,22,15,21,23,12,2,6,25,21,2537,2594,44,29,35,33,25,16,2,7,2518,2561,2420,2493,37,19,13,18,22,10,2,2,24,19,2443,2510,41,24,33,30,24,13,2,3,99,96,93,82,2,3,2,3,1,2,0,4,1,2,94,84,3,5,2,3,1,3,0,4 -050,01,043,Alabama,Cullman County,13,11,5340,2721,2619,2642,2553,27,19,17,13,10,15,2,2,23,17,2664,2570,28,22,38,26,12,16,2,2,2627,2545,2558,2486,26,16,14,12,10,15,1,2,18,14,2575,2500,27,18,30,23,12,16,1,2,94,74,84,67,1,3,3,1,0,0,1,0,5,3,89,70,1,4,8,3,0,0,1,0 -050,01,043,Alabama,Cullman County,13,12,5818,2897,2921,2797,2832,34,28,22,18,15,15,0,2,29,26,2826,2857,35,30,45,41,19,17,1,2,2824,2866,2736,2780,28,27,20,17,15,15,0,1,25,26,2761,2805,29,29,41,40,17,17,1,1,73,55,61,52,6,1,2,1,0,0,0,1,4,0,65,52,6,1,4,1,2,0,0,1 -050,01,043,Alabama,Cullman County,13,13,5642,2783,2859,2677,2764,38,28,28,21,6,9,2,1,32,36,2707,2799,42,30,55,50,8,15,3,3,2722,2815,2625,2723,31,28,27,21,6,9,2,1,31,33,2654,2755,34,30,54,48,8,14,3,3,61,44,52,41,7,0,1,0,0,0,0,0,1,3,53,44,8,0,1,2,0,1,0,0 -050,01,043,Alabama,Cullman County,13,14,5025,2343,2682,2256,2600,33,24,23,18,5,13,0,0,26,27,2281,2626,34,28,46,42,8,14,0,0,2307,2654,2224,2573,33,24,22,18,5,13,0,0,23,26,2247,2598,33,28,43,41,7,14,0,0,36,28,32,27,0,0,1,0,0,0,0,0,3,1,34,28,1,0,3,1,1,0,0,0 -050,01,043,Alabama,Cullman County,13,15,4490,2080,2410,2018,2347,15,23,21,15,3,5,0,1,23,19,2041,2365,16,27,41,32,5,5,0,1,2068,2378,2006,2318,15,22,21,14,3,5,0,1,23,18,2029,2335,16,25,41,31,5,5,0,1,12,32,12,29,0,1,0,1,0,0,0,0,0,1,12,30,0,2,0,1,0,0,0,0 -050,01,043,Alabama,Cullman County,13,16,3141,1398,1743,1359,1691,12,9,9,14,4,7,0,1,14,21,1372,1711,15,11,22,33,4,8,0,1,1386,1725,1348,1675,12,9,9,13,4,7,0,1,13,20,1360,1694,15,10,21,32,4,8,0,1,12,18,11,16,0,0,0,1,0,0,0,0,1,1,12,17,0,1,1,1,0,0,0,0 -050,01,043,Alabama,Cullman County,13,17,1990,836,1154,817,1126,0,7,5,8,4,4,1,1,9,8,826,1134,2,7,13,16,4,4,2,1,824,1144,805,1116,0,7,5,8,4,4,1,1,9,8,814,1124,2,7,13,16,4,4,2,1,12,10,12,10,0,0,0,0,0,0,0,0,0,0,12,10,0,0,0,0,0,0,0,0 -050,01,043,Alabama,Cullman County,13,18,1495,543,952,533,920,7,5,2,5,1,9,0,0,0,13,533,933,7,6,2,16,1,10,0,0,532,938,522,907,7,5,2,4,1,9,0,0,0,13,522,920,7,6,2,15,1,10,0,0,11,14,11,13,0,0,0,1,0,0,0,0,0,0,11,13,0,0,0,1,0,0,0,0 -050,01,045,Alabama,Dale County,1,0,50251,24825,25426,19186,18907,4570,5199,218,183,163,380,26,26,662,731,19793,19564,4858,5567,491,476,336,557,61,66,23279,24151,17891,17869,4469,5105,175,163,156,372,21,21,567,621,18415,18425,4732,5430,391,397,300,518,53,54,1546,1275,1295,1038,101,94,43,20,7,8,5,5,95,110,1378,1139,126,137,100,79,36,39,8,12 -050,01,045,Alabama,Dale County,1,1,3690,1845,1845,1306,1362,376,343,18,9,7,15,3,0,135,116,1431,1470,466,421,46,23,40,47,11,8,1623,1659,1116,1204,367,331,12,7,6,15,2,0,120,102,1229,1299,451,404,35,17,32,41,10,8,222,186,190,158,9,12,6,2,1,0,1,0,15,14,202,171,15,17,11,6,8,6,1,0 -050,01,045,Alabama,Dale County,1,2,3459,1779,1680,1224,1146,442,399,16,12,13,13,2,2,82,108,1301,1244,505,479,32,37,25,31,5,4,1624,1519,1098,1023,429,389,9,10,13,12,2,1,73,84,1167,1100,486,454,22,27,23,24,5,3,155,161,126,123,13,10,7,2,0,1,0,1,9,24,134,144,19,25,10,10,2,7,0,1 -050,01,045,Alabama,Dale County,1,3,3350,1678,1672,1135,1123,442,441,12,11,16,7,0,2,73,88,1205,1208,481,492,28,35,33,22,7,10,1553,1569,1034,1037,431,436,8,10,16,6,0,2,64,78,1095,1112,470,486,20,26,28,19,7,10,125,103,101,86,11,5,4,1,0,1,0,0,9,10,110,96,11,6,8,9,5,3,0,0 -050,01,045,Alabama,Dale County,1,4,3250,1739,1511,1201,988,444,420,17,14,10,15,1,0,66,74,1258,1053,480,461,40,47,27,32,2,2,1627,1419,1117,913,432,414,14,13,10,14,1,0,53,65,1164,969,464,453,30,40,22,29,2,2,112,92,84,75,12,6,3,1,0,1,0,0,13,9,94,84,16,8,10,7,5,3,0,0 -050,01,045,Alabama,Dale County,1,5,3454,1845,1609,1413,1159,366,361,14,15,10,15,2,2,40,57,1449,1210,380,389,33,37,24,30,3,3,1664,1503,1257,1072,354,358,10,10,10,13,2,1,31,49,1285,1115,366,383,22,27,23,27,3,2,181,106,156,87,12,3,4,5,0,2,0,1,9,8,164,95,14,6,11,10,1,3,0,1 -050,01,045,Alabama,Dale County,1,6,3897,2023,1874,1616,1407,325,370,17,16,11,34,2,1,52,46,1661,1446,333,390,36,37,40,47,7,3,1825,1746,1447,1302,319,358,12,15,11,34,1,0,35,37,1476,1333,325,374,18,30,35,46,6,2,198,128,169,105,6,12,5,1,0,0,1,1,17,9,185,113,8,16,18,7,5,1,1,1 -050,01,045,Alabama,Dale County,1,7,3358,1704,1654,1333,1185,285,378,10,10,22,26,5,7,49,48,1378,1227,292,396,32,29,46,42,8,10,1550,1539,1205,1088,276,370,7,9,18,26,5,6,39,40,1240,1123,282,386,21,24,41,40,8,8,154,115,128,97,9,8,3,1,4,0,0,1,10,8,138,104,10,10,11,5,5,2,0,2 -050,01,045,Alabama,Dale County,1,8,3100,1520,1580,1188,1145,264,366,19,11,18,23,4,4,27,31,1213,1169,273,377,37,25,25,36,8,7,1410,1476,1095,1058,254,357,15,9,17,22,3,4,26,26,1119,1079,263,364,32,22,23,32,7,7,110,104,93,87,10,9,4,2,1,1,1,0,1,5,94,90,10,13,5,3,2,4,1,0 -050,01,045,Alabama,Dale County,1,9,3039,1484,1555,1165,1154,267,342,17,14,8,20,1,0,26,25,1187,1176,274,350,36,32,14,26,2,1,1405,1492,1098,1099,264,339,14,13,8,20,1,0,20,21,1116,1117,267,346,29,27,12,26,1,1,79,63,67,55,3,3,3,1,0,0,0,0,6,4,71,59,7,4,7,5,2,0,1,0 -050,01,045,Alabama,Dale County,1,10,3454,1706,1748,1355,1322,297,357,18,14,10,27,1,1,25,27,1380,1344,300,365,38,35,13,31,1,3,1644,1686,1304,1273,289,350,17,13,10,26,0,1,24,23,1328,1291,292,357,36,32,13,30,0,2,62,62,51,49,8,7,1,1,0,1,1,0,1,4,52,53,8,8,2,3,0,1,1,1 -050,01,045,Alabama,Dale County,1,11,3528,1748,1780,1356,1322,329,369,11,15,10,46,2,0,40,28,1392,1348,334,374,42,37,17,53,4,0,1704,1744,1321,1299,325,363,11,14,9,45,2,0,36,23,1354,1320,330,367,39,32,16,51,2,0,44,36,35,23,4,6,0,1,1,1,0,0,4,5,38,28,4,7,3,5,1,2,2,0 -050,01,045,Alabama,Dale County,1,12,3077,1511,1566,1209,1201,264,295,13,13,12,32,0,1,13,24,1220,1223,267,302,22,30,16,39,0,1,1464,1537,1165,1177,262,291,12,13,12,32,0,1,13,23,1176,1198,265,298,21,30,16,38,0,1,47,29,44,24,2,4,1,0,0,0,0,0,0,1,44,25,2,4,1,0,0,1,0,0 -050,01,045,Alabama,Dale County,1,13,2836,1362,1474,1149,1167,180,245,13,10,6,32,2,3,12,17,1161,1181,181,250,25,22,6,34,2,4,1343,1446,1133,1148,179,240,12,9,6,32,2,3,11,14,1144,1160,180,245,23,19,6,33,2,3,19,28,16,19,1,5,1,1,0,0,0,0,1,3,17,21,1,5,2,3,0,1,0,1 -050,01,045,Alabama,Dale County,1,14,2216,1033,1183,892,973,115,167,13,9,3,22,0,1,10,11,902,984,115,167,23,18,3,25,0,1,1019,1160,880,954,114,166,12,8,3,22,0,1,10,9,890,963,114,166,22,15,3,24,0,1,14,23,12,19,1,1,1,1,0,0,0,0,0,2,12,21,1,1,1,3,0,1,0,0 -050,01,045,Alabama,Dale County,1,15,1701,718,983,644,820,65,122,2,4,3,23,1,2,3,12,646,830,66,124,5,12,3,25,1,4,708,971,635,810,65,121,2,4,3,23,0,1,3,12,637,820,66,123,5,12,3,25,0,3,10,12,9,10,0,1,0,0,0,0,1,1,0,0,9,10,0,1,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,1,16,1331,590,741,527,627,54,83,4,1,1,23,0,0,4,7,531,634,55,83,8,7,1,24,0,0,582,729,519,615,54,83,4,1,1,23,0,0,4,7,523,622,55,83,8,7,1,24,0,0,8,12,8,12,0,0,0,0,0,0,0,0,0,0,8,12,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,1,17,826,330,496,290,410,31,71,4,2,2,6,0,0,3,7,293,417,32,75,6,6,2,11,0,5,326,487,286,405,31,71,4,2,2,6,0,0,3,3,289,408,32,71,6,3,2,7,0,1,4,9,4,5,0,0,0,0,0,0,0,0,0,4,4,9,0,4,0,3,0,4,0,4 -050,01,045,Alabama,Dale County,1,18,685,210,475,183,396,24,70,0,3,1,1,0,0,2,5,185,400,24,72,2,7,1,2,0,0,208,469,181,392,24,68,0,3,1,1,0,0,2,5,183,396,24,70,2,7,1,2,0,0,2,6,2,4,0,2,0,0,0,0,0,0,0,0,2,4,0,2,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,2,0,50253,24826,25427,19187,18908,4570,5199,218,183,163,380,26,26,662,731,19794,19565,4858,5567,491,476,336,557,61,66,23280,24152,17892,17870,4469,5105,175,163,156,372,21,21,567,621,18416,18426,4732,5430,391,397,300,518,53,54,1546,1275,1295,1038,101,94,43,20,7,8,5,5,95,110,1378,1139,126,137,100,79,36,39,8,12 -050,01,045,Alabama,Dale County,2,1,3691,1846,1845,1307,1362,376,343,18,9,7,15,3,0,135,116,1432,1470,466,421,46,23,40,47,11,8,1624,1659,1117,1204,367,331,12,7,6,15,2,0,120,102,1230,1299,451,404,35,17,32,41,10,8,222,186,190,158,9,12,6,2,1,0,1,0,15,14,202,171,15,17,11,6,8,6,1,0 -050,01,045,Alabama,Dale County,2,2,3459,1779,1680,1224,1146,442,399,16,12,13,13,2,2,82,108,1301,1244,505,479,32,37,25,31,5,4,1624,1519,1098,1023,429,389,9,10,13,12,2,1,73,84,1167,1100,486,454,22,27,23,24,5,3,155,161,126,123,13,10,7,2,0,1,0,1,9,24,134,144,19,25,10,10,2,7,0,1 -050,01,045,Alabama,Dale County,2,3,3350,1678,1672,1135,1123,442,441,12,11,16,7,0,2,73,88,1205,1208,481,492,28,35,33,22,7,10,1553,1569,1034,1037,431,436,8,10,16,6,0,2,64,78,1095,1112,470,486,20,26,28,19,7,10,125,103,101,86,11,5,4,1,0,1,0,0,9,10,110,96,11,6,8,9,5,3,0,0 -050,01,045,Alabama,Dale County,2,4,3250,1739,1511,1201,988,444,420,17,14,10,15,1,0,66,74,1258,1053,480,461,40,47,27,32,2,2,1627,1419,1117,913,432,414,14,13,10,14,1,0,53,65,1164,969,464,453,30,40,22,29,2,2,112,92,84,75,12,6,3,1,0,1,0,0,13,9,94,84,16,8,10,7,5,3,0,0 -050,01,045,Alabama,Dale County,2,5,3454,1845,1609,1413,1159,366,361,14,15,10,15,2,2,40,57,1449,1210,380,389,33,37,24,30,3,3,1664,1503,1257,1072,354,358,10,10,10,13,2,1,31,49,1285,1115,366,383,22,27,23,27,3,2,181,106,156,87,12,3,4,5,0,2,0,1,9,8,164,95,14,6,11,10,1,3,0,1 -050,01,045,Alabama,Dale County,2,6,3898,2023,1875,1616,1408,325,370,17,16,11,34,2,1,52,46,1661,1447,333,390,36,37,40,47,7,3,1825,1747,1447,1303,319,358,12,15,11,34,1,0,35,37,1476,1334,325,374,18,30,35,46,6,2,198,128,169,105,6,12,5,1,0,0,1,1,17,9,185,113,8,16,18,7,5,1,1,1 -050,01,045,Alabama,Dale County,2,7,3358,1704,1654,1333,1185,285,378,10,10,22,26,5,7,49,48,1378,1227,292,396,32,29,46,42,8,10,1550,1539,1205,1088,276,370,7,9,18,26,5,6,39,40,1240,1123,282,386,21,24,41,40,8,8,154,115,128,97,9,8,3,1,4,0,0,1,10,8,138,104,10,10,11,5,5,2,0,2 -050,01,045,Alabama,Dale County,2,8,3100,1520,1580,1188,1145,264,366,19,11,18,23,4,4,27,31,1213,1169,273,377,37,25,25,36,8,7,1410,1476,1095,1058,254,357,15,9,17,22,3,4,26,26,1119,1079,263,364,32,22,23,32,7,7,110,104,93,87,10,9,4,2,1,1,1,0,1,5,94,90,10,13,5,3,2,4,1,0 -050,01,045,Alabama,Dale County,2,9,3039,1484,1555,1165,1154,267,342,17,14,8,20,1,0,26,25,1187,1176,274,350,36,32,14,26,2,1,1405,1492,1098,1099,264,339,14,13,8,20,1,0,20,21,1116,1117,267,346,29,27,12,26,1,1,79,63,67,55,3,3,3,1,0,0,0,0,6,4,71,59,7,4,7,5,2,0,1,0 -050,01,045,Alabama,Dale County,2,10,3455,1706,1749,1355,1323,297,357,18,14,10,27,1,1,25,27,1380,1345,300,365,38,35,13,31,1,3,1644,1687,1304,1274,289,350,17,13,10,26,0,1,24,23,1328,1292,292,357,36,32,13,30,0,2,62,62,51,49,8,7,1,1,0,1,1,0,1,4,52,53,8,8,2,3,0,1,1,1 -050,01,045,Alabama,Dale County,2,11,3529,1749,1780,1357,1322,329,369,11,15,10,46,2,0,40,28,1393,1348,334,374,42,37,17,53,4,0,1705,1744,1322,1299,325,363,11,14,9,45,2,0,36,23,1355,1320,330,367,39,32,16,51,2,0,44,36,35,23,4,6,0,1,1,1,0,0,4,5,38,28,4,7,3,5,1,2,2,0 -050,01,045,Alabama,Dale County,2,12,3077,1510,1567,1208,1202,264,295,13,13,12,32,0,1,13,24,1219,1224,267,302,22,30,16,39,0,1,1463,1538,1164,1178,262,291,12,13,12,32,0,1,13,23,1175,1199,265,298,21,30,16,38,0,1,47,29,44,24,2,4,1,0,0,0,0,0,0,1,44,25,2,4,1,0,0,1,0,0 -050,01,045,Alabama,Dale County,2,13,2837,1363,1474,1150,1167,180,245,13,10,6,32,2,3,12,17,1162,1181,181,250,25,22,6,34,2,4,1344,1446,1134,1148,179,240,12,9,6,32,2,3,11,14,1145,1160,180,245,23,19,6,33,2,3,19,28,16,19,1,5,1,1,0,0,0,0,1,3,17,21,1,5,2,3,0,1,0,1 -050,01,045,Alabama,Dale County,2,14,2213,1032,1181,891,971,115,167,13,9,3,22,0,1,10,11,901,982,115,167,23,18,3,25,0,1,1018,1158,879,952,114,166,12,8,3,22,0,1,10,9,889,961,114,166,22,15,3,24,0,1,14,23,12,19,1,1,1,1,0,0,0,0,0,2,12,21,1,1,1,3,0,1,0,0 -050,01,045,Alabama,Dale County,2,15,1701,718,983,644,820,65,122,2,4,3,23,1,2,3,12,646,830,66,124,5,12,3,25,1,4,708,971,635,810,65,121,2,4,3,23,0,1,3,12,637,820,66,123,5,12,3,25,0,3,10,12,9,10,0,1,0,0,0,0,1,1,0,0,9,10,0,1,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,2,16,1331,590,741,527,627,54,83,4,1,1,23,0,0,4,7,531,634,55,83,8,7,1,24,0,0,582,729,519,615,54,83,4,1,1,23,0,0,4,7,523,622,55,83,8,7,1,24,0,0,8,12,8,12,0,0,0,0,0,0,0,0,0,0,8,12,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,2,17,826,330,496,290,410,31,71,4,2,2,6,0,0,3,7,293,417,32,75,6,6,2,11,0,5,326,487,286,405,31,71,4,2,2,6,0,0,3,3,289,408,32,71,6,3,2,7,0,1,4,9,4,5,0,0,0,0,0,0,0,0,0,4,4,9,0,4,0,3,0,4,0,4 -050,01,045,Alabama,Dale County,2,18,685,210,475,183,396,24,70,0,3,1,1,0,0,2,5,185,400,24,72,2,7,1,2,0,0,208,469,181,392,24,68,0,3,1,1,0,0,2,5,183,396,24,70,2,7,1,2,0,0,2,6,2,4,0,2,0,0,0,0,0,0,0,0,2,4,0,2,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,3,0,50396,24891,25505,19255,18971,4564,5209,218,184,164,378,24,30,666,733,19865,19641,4867,5558,470,465,328,545,67,83,23329,24217,17943,17914,4464,5120,174,165,156,370,19,25,573,623,18472,18485,4725,5410,385,398,299,518,53,61,1562,1288,1312,1057,100,89,44,19,8,8,5,5,93,110,1393,1156,142,148,85,67,29,27,14,22 -050,01,045,Alabama,Dale County,3,1,3695,1839,1856,1304,1369,370,349,18,9,8,13,3,0,136,116,1434,1475,463,428,39,27,45,38,10,7,1616,1668,1111,1208,363,339,12,7,7,13,2,0,121,101,1228,1300,449,411,27,20,39,36,6,5,223,188,193,161,7,10,6,2,1,0,1,0,15,15,206,175,14,17,12,7,6,2,4,2 -050,01,045,Alabama,Dale County,3,2,3438,1770,1668,1227,1144,431,392,16,13,13,12,2,2,81,105,1301,1243,480,456,33,39,32,34,5,8,1614,1507,1100,1021,417,381,9,11,13,11,2,1,73,82,1168,1099,462,433,22,26,31,30,4,5,156,161,127,123,14,11,7,2,0,1,0,1,8,23,133,144,18,23,11,13,1,4,1,3 -050,01,045,Alabama,Dale County,3,3,3376,1685,1691,1140,1136,444,443,12,10,14,8,0,2,75,92,1210,1223,485,496,30,35,30,28,5,6,1561,1586,1041,1046,433,439,7,9,14,7,0,2,66,83,1102,1125,471,487,22,29,28,26,4,5,124,105,99,90,11,4,5,1,0,1,0,0,9,9,108,98,14,9,8,6,2,2,1,1 -050,01,045,Alabama,Dale County,3,4,3221,1720,1501,1188,974,442,422,15,14,9,14,1,0,65,77,1249,1046,472,466,40,41,24,31,4,4,1608,1407,1103,898,429,417,13,13,9,13,1,0,53,66,1154,959,455,454,30,35,21,28,3,2,112,94,85,76,13,5,2,1,0,1,0,0,12,11,95,87,17,12,10,6,3,3,1,2 -050,01,045,Alabama,Dale County,3,5,3477,1856,1621,1420,1171,371,365,14,13,10,15,1,2,40,55,1453,1221,393,390,29,32,20,32,4,6,1679,1518,1267,1085,361,362,10,9,10,13,1,1,30,48,1291,1128,379,383,21,25,18,29,3,4,177,103,153,86,10,3,4,4,0,2,0,1,10,7,162,93,14,7,8,7,2,3,1,2 -050,01,045,Alabama,Dale County,3,6,3925,2040,1885,1630,1416,324,373,18,17,13,34,2,2,53,43,1676,1456,342,388,41,31,34,50,8,5,1836,1753,1455,1307,318,361,12,16,13,34,1,1,37,34,1488,1340,328,372,28,27,30,47,7,3,204,132,175,109,6,12,6,1,0,0,1,1,16,9,188,116,14,16,13,4,4,3,1,2 -050,01,045,Alabama,Dale County,3,7,3370,1712,1658,1343,1192,282,373,11,9,22,28,5,8,49,48,1387,1235,296,388,34,29,37,41,7,14,1555,1540,1214,1092,272,365,8,8,17,28,5,7,39,40,1250,1128,282,376,27,25,30,41,5,11,157,118,129,100,10,8,3,1,5,0,0,1,10,8,137,107,14,12,7,4,7,0,2,3 -050,01,045,Alabama,Dale County,3,8,3091,1516,1575,1185,1144,266,363,18,12,17,22,3,4,27,30,1207,1169,274,374,30,27,24,30,8,5,1406,1471,1092,1056,256,355,14,10,16,21,2,4,26,25,1113,1078,263,363,26,23,23,28,7,4,110,104,93,88,10,8,4,2,1,1,1,0,1,5,94,91,11,11,4,4,1,2,1,1 -050,01,045,Alabama,Dale County,3,9,3062,1496,1566,1175,1158,269,346,17,13,9,22,1,1,25,26,1198,1181,275,351,32,30,14,27,3,4,1413,1501,1106,1101,265,343,13,12,9,22,1,1,19,22,1123,1121,269,346,25,26,12,27,3,3,83,65,69,57,4,3,4,1,0,0,0,0,6,4,75,60,6,5,7,4,2,0,0,1 -050,01,045,Alabama,Dale County,3,10,3443,1703,1740,1353,1318,297,352,18,15,10,25,1,1,24,29,1377,1343,300,360,33,32,15,33,2,4,1642,1679,1302,1270,290,346,17,14,10,24,0,1,23,24,1325,1290,292,351,32,30,15,30,1,4,61,61,51,48,7,6,1,1,0,1,1,0,1,5,52,53,8,9,1,2,0,3,1,0 -050,01,045,Alabama,Dale County,3,11,3542,1746,1796,1360,1334,324,373,11,15,10,46,2,0,39,28,1395,1359,331,379,38,38,18,50,5,2,1699,1756,1322,1307,320,367,11,14,9,45,2,0,35,23,1353,1327,324,372,36,34,17,48,5,2,47,40,38,27,4,6,0,1,1,1,0,0,4,5,42,32,7,7,2,4,1,2,0,0 -050,01,045,Alabama,Dale County,3,12,3095,1520,1575,1213,1209,265,297,14,11,12,31,0,1,16,26,1229,1231,270,305,28,30,14,36,1,4,1472,1550,1168,1188,263,294,13,11,12,31,0,1,16,25,1184,1209,268,302,27,29,14,36,1,4,48,25,45,21,2,3,1,0,0,0,0,0,0,1,45,22,2,3,1,1,0,0,0,0 -050,01,045,Alabama,Dale County,3,13,2858,1375,1483,1156,1170,183,247,14,12,7,33,2,4,13,17,1168,1184,186,253,25,24,7,34,2,5,1355,1452,1139,1149,182,241,13,11,7,33,2,4,12,14,1150,1160,184,245,24,22,7,34,2,5,20,31,17,21,1,6,1,1,0,0,0,0,1,3,18,24,2,8,1,2,0,0,0,0 -050,01,045,Alabama,Dale County,3,14,2229,1040,1189,898,978,119,168,11,11,3,22,0,1,9,9,907,986,120,171,19,16,3,22,0,3,1026,1166,885,958,118,167,11,10,3,22,0,1,9,8,894,966,119,169,19,15,3,22,0,2,14,23,13,20,1,1,0,1,0,0,0,0,0,1,13,20,1,2,0,1,0,0,0,1 -050,01,045,Alabama,Dale County,3,15,1709,726,983,652,820,64,121,2,4,3,23,1,2,4,13,655,832,65,123,5,12,4,26,1,3,716,971,643,810,64,120,2,4,3,23,0,1,4,13,646,822,65,122,5,12,4,26,0,2,10,12,9,10,0,1,0,0,0,0,1,1,0,0,9,10,0,1,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,3,16,1330,589,741,524,625,55,86,5,1,1,22,0,0,4,7,527,632,55,86,7,8,2,22,2,0,580,729,515,613,55,86,5,1,1,22,0,0,4,7,518,620,55,86,7,8,2,22,2,0,9,12,9,12,0,0,0,0,0,0,0,0,0,0,9,12,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,3,17,850,344,506,301,419,33,71,4,2,2,7,0,0,4,7,304,426,35,75,6,7,3,10,0,3,339,497,296,414,33,71,4,2,2,7,0,0,4,3,299,417,35,71,6,5,3,7,0,0,5,9,5,5,0,0,0,0,0,0,0,0,0,4,5,9,0,4,0,2,0,3,0,3 -050,01,045,Alabama,Dale County,3,18,685,214,471,186,394,25,68,0,3,1,1,0,0,2,5,188,399,25,69,1,7,2,1,0,0,212,466,184,391,25,66,0,3,1,1,0,0,2,5,186,396,25,67,1,7,2,1,0,0,2,5,2,3,0,2,0,0,0,0,0,0,0,0,2,3,0,2,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,4,0,50134,24686,25448,19093,18924,4501,5194,232,189,176,388,27,31,657,722,19685,19571,4805,5541,470,457,340,560,78,89,23138,24074,17825,17803,4382,5090,182,161,167,376,22,25,560,619,18333,18362,4641,5388,380,390,311,524,66,70,1548,1374,1268,1121,119,104,50,28,9,12,5,6,97,103,1352,1209,164,153,90,67,29,36,12,19 -050,01,045,Alabama,Dale County,4,1,3534,1785,1749,1248,1277,366,334,15,7,7,9,3,1,146,121,1384,1393,464,418,35,26,42,33,12,8,1604,1550,1098,1104,360,326,10,4,6,9,2,0,128,107,1219,1206,447,405,26,18,37,31,9,5,181,199,150,173,6,8,5,3,1,0,1,1,18,14,165,187,17,13,9,8,5,2,3,3 -050,01,045,Alabama,Dale County,4,2,3367,1715,1652,1215,1150,376,369,23,14,16,16,3,1,82,102,1293,1244,427,436,40,39,34,35,5,8,1562,1489,1095,1029,363,355,12,10,15,14,3,0,74,81,1165,1105,411,409,26,27,31,31,5,5,153,163,120,121,13,14,11,4,1,2,0,1,8,21,128,139,16,27,14,12,3,4,0,3 -050,01,045,Alabama,Dale County,4,3,3445,1694,1751,1135,1190,456,437,15,12,12,11,0,3,76,98,1207,1284,499,491,34,36,29,35,5,11,1571,1639,1043,1095,443,430,7,11,12,10,0,3,66,90,1106,1181,483,481,23,33,26,32,3,10,123,112,92,95,13,7,8,1,0,1,0,0,10,8,101,103,16,10,11,3,3,3,2,1 -050,01,045,Alabama,Dale County,4,4,3087,1631,1456,1131,941,424,403,13,11,10,19,1,0,52,82,1178,1018,451,444,34,38,18,37,5,4,1514,1345,1041,853,409,395,11,9,10,17,1,0,42,71,1080,919,432,430,25,31,17,35,4,4,117,111,90,88,15,8,2,2,0,2,0,0,10,11,98,99,19,14,9,7,1,2,1,0 -050,01,045,Alabama,Dale County,4,5,3435,1821,1614,1363,1158,388,384,19,12,12,12,1,2,38,46,1398,1193,403,406,31,32,26,26,5,6,1658,1508,1232,1071,371,380,15,8,12,10,1,2,27,37,1257,1100,380,399,24,24,24,20,4,5,163,106,131,87,17,4,4,4,0,2,0,0,11,9,141,93,23,7,7,8,2,6,1,1 -050,01,045,Alabama,Dale County,4,6,3848,1980,1868,1614,1390,293,380,11,16,11,37,1,3,50,42,1652,1427,310,399,30,30,33,52,9,5,1761,1749,1426,1290,279,371,6,16,11,37,1,1,38,34,1456,1320,291,386,20,27,28,50,8,3,219,119,188,100,14,9,5,0,0,0,0,2,12,8,196,107,19,13,10,3,5,2,1,2 -050,01,045,Alabama,Dale County,4,7,3428,1754,1674,1379,1222,279,372,17,13,24,26,6,7,49,34,1424,1251,293,385,41,24,39,38,8,10,1585,1535,1243,1106,267,360,14,11,21,25,5,6,35,27,1275,1129,276,370,30,20,33,35,7,8,169,139,136,116,12,12,3,2,3,1,1,1,14,7,149,122,17,15,11,4,6,3,1,2 -050,01,045,Alabama,Dale County,4,8,2971,1441,1530,1120,1099,264,367,10,13,15,20,4,2,28,29,1142,1121,271,376,26,29,23,30,7,5,1335,1419,1025,1012,257,357,9,6,14,18,3,2,27,24,1046,1031,263,363,25,21,22,25,6,5,106,111,95,87,7,10,1,7,1,2,1,0,1,5,96,90,8,13,1,8,1,5,1,0 -050,01,045,Alabama,Dale County,4,9,3087,1547,1540,1220,1141,269,333,19,11,13,22,2,3,24,30,1240,1167,278,340,33,32,17,28,4,7,1453,1470,1146,1078,263,329,12,11,11,22,2,3,19,27,1162,1102,270,334,22,30,15,27,4,5,94,70,74,63,6,4,7,0,2,0,0,0,5,3,78,65,8,6,11,2,2,1,0,2 -050,01,045,Alabama,Dale County,4,10,3308,1626,1682,1280,1278,291,332,19,17,10,26,1,1,25,28,1305,1302,297,339,34,32,16,33,2,4,1567,1620,1232,1233,285,324,18,15,10,25,0,1,22,22,1254,1253,289,329,32,28,16,29,1,3,59,62,48,45,6,8,1,2,0,1,1,0,3,6,51,49,8,10,2,4,0,4,1,1 -050,01,045,Alabama,Dale County,4,11,3578,1743,1835,1379,1364,304,386,17,16,13,43,1,0,29,26,1401,1385,313,394,37,34,19,49,5,1,1691,1786,1336,1326,300,380,16,15,12,43,1,0,26,22,1355,1344,307,385,35,32,18,48,5,0,52,49,43,38,4,6,1,1,1,0,0,0,3,4,46,41,6,9,2,2,1,1,0,1 -050,01,045,Alabama,Dale County,4,12,3196,1546,1650,1209,1252,282,325,16,8,15,36,1,1,23,28,1228,1275,285,332,32,27,20,41,4,6,1496,1619,1165,1227,278,322,15,8,15,35,1,1,22,26,1183,1248,281,328,30,26,20,40,4,6,50,31,44,25,4,3,1,0,0,1,0,0,1,2,45,27,4,4,2,1,0,1,0,0 -050,01,045,Alabama,Dale County,4,13,2906,1404,1502,1167,1165,200,269,15,15,8,32,2,3,12,18,1179,1182,201,272,25,27,9,35,2,7,1381,1462,1147,1136,199,261,14,15,8,32,2,3,11,15,1158,1151,199,263,24,25,9,34,2,6,23,40,20,29,1,8,1,0,0,0,0,0,1,3,21,31,2,9,1,2,0,1,0,1 -050,01,045,Alabama,Dale County,4,14,2255,1058,1197,910,983,127,168,10,14,2,23,0,2,9,7,919,990,127,169,17,20,3,23,1,2,1045,1175,898,964,126,168,10,12,2,23,0,2,9,6,907,970,126,169,17,17,3,23,1,2,13,22,12,19,1,0,0,2,0,0,0,0,0,1,12,20,1,0,0,3,0,0,0,0 -050,01,045,Alabama,Dale County,4,15,1750,755,995,678,835,64,118,4,3,4,23,1,2,4,14,681,845,66,122,6,12,5,28,1,2,746,983,670,825,64,117,4,3,4,23,0,1,4,14,673,835,66,121,6,12,5,28,0,1,9,12,8,10,0,1,0,0,0,0,1,1,0,0,8,10,0,1,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,4,16,1327,587,740,519,619,58,89,5,2,1,23,0,0,4,7,522,626,59,89,9,8,2,24,0,0,578,728,510,607,58,89,5,2,1,23,0,0,4,7,513,614,59,89,9,8,2,24,0,0,9,12,9,12,0,0,0,0,0,0,0,0,0,0,9,12,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,4,17,919,380,539,336,457,34,67,4,1,2,9,0,0,4,5,340,460,34,68,5,3,3,12,2,2,372,529,328,448,34,67,4,1,2,9,0,0,4,4,332,450,34,68,5,3,3,11,2,1,8,10,8,9,0,0,0,0,0,0,0,0,0,1,8,10,0,0,0,0,0,1,0,1 -050,01,045,Alabama,Dale County,4,18,693,219,474,190,403,26,61,0,4,1,1,0,0,2,5,192,408,27,61,1,8,2,1,1,1,219,468,190,399,26,59,0,4,1,1,0,0,2,5,192,404,27,59,1,8,2,1,1,1,0,6,0,4,0,2,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,5,0,50313,24919,25394,19237,18823,4562,5184,214,185,199,404,28,30,679,768,19851,19513,4882,5565,472,476,368,598,68,66,23399,24046,18005,17722,4430,5080,164,159,188,391,22,24,590,670,18542,18324,4713,5410,376,410,341,569,52,51,1520,1348,1232,1101,132,104,50,26,11,13,6,6,89,98,1309,1189,169,155,96,66,27,29,16,15 -050,01,045,Alabama,Dale County,5,1,3449,1799,1650,1296,1192,333,300,8,8,14,15,5,1,143,134,1432,1316,428,398,33,23,49,47,15,5,1633,1491,1157,1054,328,290,5,5,12,14,4,0,127,128,1279,1172,413,384,22,19,45,45,8,4,166,159,139,138,5,10,3,3,2,1,1,1,16,6,153,144,15,14,11,4,4,2,7,1 -050,01,045,Alabama,Dale County,5,2,3388,1751,1637,1271,1136,345,355,17,13,13,16,0,1,105,116,1373,1244,413,431,39,42,39,41,3,6,1600,1485,1146,1016,334,350,11,8,12,16,0,0,97,95,1240,1105,399,414,29,28,37,38,3,4,151,152,125,120,11,5,6,5,1,0,0,1,8,21,133,139,14,17,10,14,2,3,0,2 -050,01,045,Alabama,Dale County,5,3,3381,1644,1737,1105,1190,439,421,11,14,12,13,1,3,76,96,1180,1277,479,479,29,40,29,37,5,5,1520,1623,1011,1100,423,411,4,13,12,11,1,3,69,85,1079,1177,460,464,19,33,28,34,5,5,124,114,94,90,16,10,7,1,0,2,0,0,7,11,101,100,19,15,10,7,1,3,0,0 -050,01,045,Alabama,Dale County,5,4,3111,1646,1465,1123,952,433,417,12,7,15,17,2,0,61,72,1177,1019,463,456,36,30,28,38,6,2,1516,1365,1029,871,412,412,10,6,14,15,1,0,50,61,1074,927,439,446,27,25,25,35,4,1,130,100,94,81,21,5,2,1,1,2,1,0,11,11,103,92,24,10,9,5,3,3,2,1 -050,01,045,Alabama,Dale County,5,5,3444,1851,1593,1370,1133,412,361,14,15,13,24,2,2,40,58,1403,1182,430,389,28,36,28,41,5,8,1704,1486,1253,1045,393,353,11,11,13,23,2,2,32,52,1281,1090,407,377,21,30,26,39,4,6,147,107,117,88,19,8,3,4,0,1,0,0,8,6,122,92,23,12,7,6,2,2,1,2 -050,01,045,Alabama,Dale County,5,6,3872,2047,1825,1651,1354,327,368,8,14,15,35,1,3,45,51,1689,1401,341,388,26,33,30,49,7,7,1849,1706,1482,1256,311,359,4,13,15,34,1,1,36,43,1511,1297,322,375,18,27,28,47,7,5,198,119,169,98,16,9,4,1,0,1,0,2,9,8,178,104,19,13,8,6,2,2,0,2 -050,01,045,Alabama,Dale County,5,7,3505,1794,1711,1406,1270,279,366,25,15,29,26,6,5,49,29,1449,1297,298,375,47,29,42,35,7,8,1617,1563,1270,1152,269,349,12,13,27,26,5,4,34,19,1300,1169,281,354,27,23,38,32,5,6,177,148,136,118,10,17,13,2,2,0,1,1,15,10,149,128,17,21,20,6,4,3,2,2 -050,01,045,Alabama,Dale County,5,8,2997,1472,1525,1141,1099,281,360,6,11,14,22,2,3,28,30,1163,1125,287,368,22,25,23,34,5,5,1379,1410,1063,1005,271,351,6,6,11,19,2,3,26,26,1084,1027,276,357,21,18,20,31,4,5,93,115,78,94,10,9,0,5,3,3,0,0,2,4,79,98,11,11,1,7,3,3,1,0 -050,01,045,Alabama,Dale County,5,9,3137,1559,1578,1203,1157,298,355,20,11,15,22,2,3,21,30,1219,1183,305,362,35,31,18,31,4,4,1463,1500,1125,1089,291,349,13,11,14,21,1,3,19,27,1139,1112,298,354,26,30,17,30,3,4,96,78,78,68,7,6,7,0,1,1,1,0,2,3,80,71,7,8,9,1,1,1,1,0 -050,01,045,Alabama,Dale County,5,10,3171,1532,1639,1206,1235,276,333,16,13,13,26,1,1,20,31,1223,1258,281,340,32,34,17,35,1,3,1474,1571,1160,1183,271,326,14,12,13,25,1,1,15,24,1173,1200,274,332,27,29,16,32,1,2,58,68,46,52,5,7,2,1,0,1,0,0,5,7,50,58,7,8,5,5,1,3,0,1 -050,01,045,Alabama,Dale County,5,11,3517,1733,1784,1377,1320,288,392,23,12,14,39,2,0,29,21,1399,1340,295,396,41,24,25,43,4,2,1678,1735,1333,1278,284,389,22,11,13,39,1,0,25,18,1352,1296,290,392,39,23,21,42,3,0,55,49,44,42,4,3,1,1,1,0,1,0,4,3,47,44,5,4,2,1,4,1,1,2 -050,01,045,Alabama,Dale County,5,12,3303,1589,1714,1222,1288,319,348,13,12,11,33,1,1,23,32,1242,1314,324,358,31,39,16,38,2,1,1531,1679,1171,1260,314,345,12,12,11,32,1,1,22,29,1190,1283,319,352,29,37,16,37,2,1,58,35,51,28,5,3,1,0,0,1,0,0,1,3,52,31,5,6,2,2,0,1,0,0 -050,01,045,Alabama,Dale County,5,13,2836,1374,1462,1127,1120,210,264,16,15,9,34,2,3,10,26,1136,1143,212,272,24,37,10,34,2,4,1351,1423,1107,1091,208,256,15,15,9,34,2,3,10,24,1116,1112,210,262,23,37,10,34,2,4,23,39,20,29,2,8,1,0,0,0,0,0,0,2,20,31,2,10,1,0,0,0,0,0 -050,01,045,Alabama,Dale County,5,14,2370,1121,1249,967,1002,130,201,10,13,2,22,0,2,12,9,978,1010,132,202,20,18,2,27,1,2,1104,1228,952,985,129,200,10,11,2,22,0,2,11,8,962,992,131,201,19,16,2,26,1,2,17,21,15,17,1,1,0,2,0,0,0,0,1,1,16,18,1,1,1,2,0,1,0,0 -050,01,045,Alabama,Dale County,5,15,1817,795,1022,699,859,77,122,6,4,6,24,0,0,7,13,706,871,77,124,13,12,6,28,0,2,786,1009,690,848,77,121,6,4,6,24,0,0,7,12,697,860,77,122,13,12,6,27,0,1,9,13,9,11,0,1,0,0,0,0,0,0,0,1,9,11,0,2,0,0,0,1,0,1 -050,01,045,Alabama,Dale County,5,16,1310,566,744,502,621,53,89,5,3,1,21,1,2,4,8,506,628,53,92,7,7,3,23,1,2,557,733,494,611,53,89,5,3,1,21,0,1,4,8,498,618,53,92,7,7,3,23,0,1,9,11,8,10,0,0,0,0,0,0,1,1,0,0,8,10,0,0,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,5,17,975,410,565,365,474,37,72,3,1,1,12,0,0,4,6,369,479,38,72,6,7,1,13,0,0,402,552,357,461,37,72,3,1,1,12,0,0,4,6,361,466,38,72,6,7,1,13,0,0,8,13,8,13,0,0,0,0,0,0,0,0,0,0,8,13,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,5,18,730,236,494,206,421,25,60,1,4,2,3,0,0,2,6,207,426,26,63,3,9,2,4,0,0,235,487,205,417,25,58,1,4,2,3,0,0,2,5,206,421,26,60,3,9,2,4,0,0,1,7,1,4,0,2,0,0,0,0,0,0,0,1,1,5,0,3,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,6,0,49807,24684,25123,19065,18547,4499,5210,200,176,211,406,28,32,681,752,19670,19212,4835,5576,444,469,383,585,72,74,23209,23780,17877,17442,4378,5116,155,154,204,396,23,27,572,645,18385,18017,4661,5427,350,397,354,552,56,61,1475,1343,1188,1105,121,94,45,22,7,10,5,5,109,107,1285,1195,174,149,94,72,29,33,16,13 -050,01,045,Alabama,Dale County,6,1,3331,1733,1598,1249,1135,312,324,8,11,17,16,4,1,143,111,1379,1238,413,399,34,25,52,41,13,7,1578,1447,1127,1001,307,319,7,8,15,15,4,1,118,103,1235,1098,391,389,25,21,43,38,9,5,155,151,122,134,5,5,1,3,2,1,0,0,25,8,144,140,22,10,9,4,9,3,4,2 -050,01,045,Alabama,Dale County,6,2,3323,1723,1600,1243,1124,346,326,17,9,12,14,2,4,103,123,1339,1240,411,408,32,41,38,40,7,6,1575,1442,1119,1005,340,320,10,7,12,14,1,2,93,94,1205,1094,399,385,23,26,36,34,6,4,148,158,124,119,6,6,7,2,0,0,1,2,10,29,134,146,12,23,9,15,2,6,1,2 -050,01,045,Alabama,Dale County,6,3,3250,1609,1641,1096,1120,414,398,12,9,11,15,1,1,75,98,1163,1206,457,458,30,32,30,42,5,8,1510,1530,1020,1034,405,385,6,9,11,13,1,1,67,88,1080,1111,445,440,21,28,28,39,4,7,99,111,76,86,9,13,6,0,0,2,0,0,8,10,83,95,12,18,9,4,2,3,1,1 -050,01,045,Alabama,Dale County,6,4,3044,1597,1447,1089,958,407,402,15,7,19,16,1,0,66,64,1143,1019,447,434,35,27,37,33,3,4,1476,1359,998,886,391,398,10,5,19,15,1,0,57,55,1045,939,428,425,25,20,35,30,2,3,121,88,91,72,16,4,5,2,0,1,0,0,9,9,98,80,19,9,10,7,2,3,1,1 -050,01,045,Alabama,Dale County,6,5,3418,1843,1575,1335,1082,431,391,10,11,16,28,0,0,51,63,1381,1136,454,422,27,34,36,45,3,5,1693,1459,1215,987,408,380,9,8,16,27,0,0,45,57,1256,1037,428,407,23,26,34,43,3,5,150,116,120,95,23,11,1,3,0,1,0,0,6,6,125,99,26,15,4,8,2,2,0,0 -050,01,045,Alabama,Dale County,6,6,3713,1959,1754,1559,1296,335,366,10,13,18,31,2,4,35,44,1587,1335,347,382,22,28,32,47,9,6,1787,1638,1424,1195,318,362,5,12,18,30,2,3,20,36,1438,1226,323,376,12,23,29,44,8,5,172,116,135,101,17,4,5,1,0,1,0,1,15,8,149,109,24,6,10,5,3,3,1,1 -050,01,045,Alabama,Dale County,6,7,3590,1840,1750,1456,1287,283,364,18,14,24,37,6,6,53,42,1504,1322,298,378,41,34,40,50,10,11,1658,1603,1309,1165,272,354,10,12,24,37,5,5,38,30,1344,1190,281,364,26,27,38,47,7,8,182,147,147,122,11,10,8,2,0,0,1,1,15,12,160,132,17,14,15,7,2,3,3,3 -050,01,045,Alabama,Dale County,6,8,2935,1429,1506,1117,1072,252,367,7,8,20,25,4,2,29,32,1141,1097,261,377,25,27,30,34,7,5,1341,1394,1045,974,245,361,7,6,17,23,4,2,23,28,1063,996,252,369,19,23,26,31,6,5,88,112,72,98,7,6,0,2,3,2,0,0,6,4,78,101,9,8,6,4,4,3,1,0 -050,01,045,Alabama,Dale County,6,9,3139,1551,1588,1204,1165,290,358,19,12,16,20,2,4,20,29,1222,1188,295,367,30,33,19,26,6,4,1443,1510,1119,1105,280,348,12,9,15,20,1,4,16,24,1133,1123,283,356,21,26,18,26,4,4,108,78,85,60,10,10,7,3,1,0,1,0,4,5,89,65,12,11,9,7,1,0,2,0 -050,01,045,Alabama,Dale County,6,10,3091,1499,1592,1187,1192,266,336,11,13,11,22,0,1,24,28,1210,1213,268,343,29,31,16,29,0,4,1440,1528,1140,1140,261,331,9,12,11,22,0,1,19,22,1159,1158,262,335,23,27,15,27,0,3,59,64,47,52,5,5,2,1,0,0,0,0,5,6,51,55,6,8,6,4,1,2,0,1 -050,01,045,Alabama,Dale County,6,11,3426,1678,1748,1330,1298,289,384,21,16,14,32,2,0,22,18,1349,1312,296,391,36,25,16,35,3,3,1616,1699,1280,1258,284,380,20,15,13,31,1,0,18,15,1296,1271,289,384,32,24,15,33,2,2,62,49,50,40,5,4,1,1,1,1,1,0,4,3,53,41,7,7,4,1,1,2,1,1 -050,01,045,Alabama,Dale County,6,12,3306,1609,1697,1254,1273,312,347,13,13,9,35,1,1,20,28,1271,1299,317,352,30,36,11,38,2,3,1557,1654,1207,1238,309,343,12,13,9,34,1,1,19,25,1223,1261,314,347,28,33,11,37,2,3,52,43,47,35,3,4,1,0,0,1,0,0,1,3,48,38,3,5,2,3,0,1,0,0 -050,01,045,Alabama,Dale County,6,13,2821,1392,1429,1130,1077,231,278,11,13,9,32,1,4,10,25,1139,1098,233,283,19,34,10,35,1,4,1362,1398,1104,1053,228,271,10,13,9,32,1,4,10,25,1113,1074,230,276,18,34,10,35,1,4,30,31,26,24,3,7,1,0,0,0,0,0,0,0,26,24,3,7,1,0,0,0,0,0 -050,01,045,Alabama,Dale County,6,14,2443,1132,1311,965,1043,140,218,9,13,5,22,1,2,12,13,976,1056,143,222,19,22,5,23,1,2,1113,1282,948,1020,139,216,9,11,5,22,1,2,11,11,958,1031,141,219,19,19,5,22,1,2,19,29,17,23,1,2,0,2,0,0,0,0,1,2,18,25,2,3,0,3,0,1,0,0 -050,01,045,Alabama,Dale County,6,15,1893,838,1055,735,889,81,125,9,7,6,22,0,0,7,12,741,898,82,129,16,14,6,26,0,0,826,1040,723,876,81,124,9,7,6,22,0,0,7,11,729,885,82,127,16,14,6,25,0,0,12,15,12,13,0,1,0,0,0,0,0,0,0,1,12,13,0,2,0,0,0,1,0,0 -050,01,045,Alabama,Dale County,6,16,1352,566,786,515,666,42,87,4,3,0,18,1,2,4,10,519,674,42,90,8,12,0,19,1,2,559,775,509,656,42,87,4,3,0,18,0,1,4,10,513,664,42,90,8,12,0,19,0,1,7,11,6,10,0,0,0,0,0,0,1,1,0,0,6,10,0,0,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,6,17,990,426,564,377,462,40,78,3,2,2,17,0,0,4,5,379,466,43,79,6,7,2,17,1,0,418,548,369,446,40,78,3,2,2,17,0,0,4,5,371,450,43,79,6,7,2,17,1,0,8,16,8,16,0,0,0,0,0,0,0,0,0,0,8,16,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,6,18,742,260,482,224,408,28,61,3,2,2,4,0,0,3,7,227,415,28,62,5,7,3,5,0,0,257,474,221,403,28,59,3,2,2,4,0,0,3,6,224,409,28,59,5,7,3,5,0,0,3,8,3,5,0,2,0,0,0,0,0,0,0,1,3,6,0,3,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,7,0,49465,24445,25020,18854,18472,4471,5178,216,181,216,412,30,34,658,743,19449,19128,4784,5542,464,444,372,603,69,88,22946,23615,17617,17305,4361,5084,166,157,202,399,26,27,574,643,18137,17877,4633,5396,370,381,349,566,59,69,1499,1405,1237,1167,110,94,50,24,14,13,4,7,84,100,1312,1251,151,146,94,63,23,37,10,19 -050,01,045,Alabama,Dale County,7,1,3301,1686,1615,1210,1131,313,338,13,10,19,20,4,3,127,113,1331,1237,397,417,36,32,52,41,10,7,1545,1447,1089,979,309,332,9,8,19,19,4,2,115,107,1200,1080,385,409,28,27,52,38,8,5,141,168,121,152,4,6,4,2,0,1,0,1,12,6,131,157,12,8,8,5,0,3,2,2 -050,01,045,Alabama,Dale County,7,2,3308,1683,1625,1208,1176,343,319,16,6,11,15,2,3,103,106,1303,1277,408,386,35,25,36,40,5,10,1513,1465,1065,1048,338,313,9,3,8,14,2,2,91,85,1149,1128,396,369,24,16,31,35,5,6,170,160,143,128,5,6,7,3,3,1,0,1,12,21,154,149,12,17,11,9,5,5,0,4 -050,01,045,Alabama,Dale County,7,3,3203,1604,1599,1110,1089,389,366,20,13,11,13,1,1,73,117,1177,1195,432,432,37,43,28,45,8,8,1487,1476,1018,1002,381,351,13,11,11,11,1,1,63,100,1077,1093,418,407,24,32,26,39,6,8,117,123,92,87,8,15,7,2,0,2,0,0,10,17,100,102,14,25,13,11,2,6,2,0 -050,01,045,Alabama,Dale County,7,4,3003,1543,1460,1052,982,401,397,13,6,15,16,1,0,61,59,1108,1030,433,433,32,21,29,31,5,7,1425,1382,960,919,384,393,8,5,14,14,1,0,58,51,1014,962,414,425,25,16,28,27,5,6,118,78,92,63,17,4,5,1,1,2,0,0,3,8,94,68,19,8,7,5,1,4,0,1 -050,01,045,Alabama,Dale County,7,5,3384,1853,1531,1336,1057,433,372,14,10,19,32,0,2,51,58,1379,1111,459,399,34,26,32,51,3,6,1708,1404,1219,950,413,363,11,6,19,32,0,1,46,52,1258,999,437,386,27,21,32,49,3,3,145,127,117,107,20,9,3,4,0,0,0,1,5,6,121,112,22,13,7,5,0,2,0,3 -050,01,045,Alabama,Dale County,7,6,3615,1911,1704,1473,1249,367,366,15,13,18,24,2,1,36,51,1502,1294,381,387,30,31,31,39,6,4,1755,1583,1342,1144,357,364,8,12,18,22,2,0,28,41,1363,1180,366,380,19,26,31,36,6,2,156,121,131,105,10,2,7,1,0,2,0,1,8,10,139,114,15,7,11,5,0,3,0,2 -050,01,045,Alabama,Dale County,7,7,3575,1844,1731,1486,1292,271,350,15,10,19,34,6,6,47,39,1528,1325,281,363,39,29,35,44,9,11,1644,1572,1317,1153,260,341,9,8,18,34,5,5,35,31,1348,1179,267,351,26,23,32,43,7,9,200,159,169,139,11,9,6,2,1,0,1,1,12,8,180,146,14,12,13,6,3,1,2,2 -050,01,045,Alabama,Dale County,7,8,2927,1371,1556,1070,1091,237,382,5,11,22,34,4,3,33,35,1103,1116,245,397,24,28,28,46,6,5,1278,1441,1003,990,227,377,5,9,17,31,4,3,22,31,1025,1012,231,388,17,25,21,43,6,5,93,115,67,101,10,5,0,2,5,3,0,0,11,4,78,104,14,9,7,3,7,3,0,0 -050,01,045,Alabama,Dale County,7,9,3081,1533,1548,1201,1121,275,355,15,14,20,22,4,5,18,31,1216,1146,280,362,27,30,22,34,6,10,1429,1457,1113,1051,268,344,9,11,19,22,3,4,17,25,1128,1072,272,349,20,26,21,31,5,7,104,91,88,70,7,11,6,3,1,0,1,1,1,6,88,74,8,13,7,4,1,3,1,3 -050,01,045,Alabama,Dale County,7,10,2908,1425,1483,1102,1119,273,309,13,10,11,21,0,1,26,23,1126,1138,278,314,30,24,17,28,1,3,1374,1425,1064,1068,268,307,11,9,10,21,0,1,21,19,1083,1084,272,310,25,21,16,27,0,2,51,58,38,51,5,2,2,1,1,0,0,0,5,4,43,54,6,4,5,3,1,1,1,1 -050,01,045,Alabama,Dale County,7,11,3357,1638,1719,1300,1257,278,393,23,21,16,31,2,0,19,17,1314,1272,285,398,37,31,19,35,2,0,1566,1666,1241,1214,272,386,22,21,14,30,1,0,16,15,1252,1227,278,390,35,30,16,34,1,0,72,53,59,43,6,7,1,0,2,1,1,0,3,2,62,45,7,8,2,1,3,1,1,0 -050,01,045,Alabama,Dale County,7,12,3328,1635,1693,1275,1266,314,350,13,14,7,35,1,1,25,27,1297,1289,317,356,31,33,11,40,4,4,1596,1646,1241,1229,311,346,12,13,7,34,1,1,24,23,1262,1249,314,351,29,29,11,38,4,4,39,47,34,37,3,4,1,1,0,1,0,0,1,4,35,40,3,5,2,4,0,2,0,0 -050,01,045,Alabama,Dale County,7,13,2852,1392,1460,1127,1121,232,270,12,14,10,30,1,3,10,22,1136,1141,234,273,20,32,11,33,1,5,1348,1431,1086,1097,230,265,11,14,10,30,1,3,10,22,1095,1117,232,268,19,32,11,33,1,5,44,29,41,24,2,5,1,0,0,0,0,0,0,0,41,24,2,5,1,0,0,0,0,0 -050,01,045,Alabama,Dale County,7,14,2501,1167,1334,990,1048,150,234,9,12,8,24,1,3,9,13,999,1058,152,238,16,19,9,28,1,4,1146,1309,971,1032,149,228,9,11,8,24,1,3,8,11,979,1041,150,231,16,18,9,26,1,4,21,25,19,16,1,6,0,1,0,0,0,0,1,2,20,17,2,7,0,1,0,2,0,0 -050,01,045,Alabama,Dale County,7,15,1935,865,1070,756,893,86,136,10,9,5,23,0,0,8,9,763,900,88,139,17,16,6,25,0,1,853,1053,745,878,85,136,10,8,5,23,0,0,8,8,752,885,87,138,17,15,6,24,0,1,12,17,11,15,1,0,0,1,0,0,0,0,0,1,11,15,1,1,0,1,0,1,0,0 -050,01,045,Alabama,Dale County,7,16,1401,571,830,524,692,39,101,2,4,1,18,1,2,4,13,528,703,40,104,4,15,2,20,1,3,564,820,518,684,39,100,2,4,1,18,0,1,4,13,522,695,40,103,4,15,2,20,0,2,7,10,6,8,0,1,0,0,0,0,1,1,0,0,6,8,0,1,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,7,17,1006,436,570,387,472,39,75,5,2,2,16,0,0,3,5,388,477,41,76,7,4,2,18,1,0,429,558,380,460,39,75,5,2,2,16,0,0,3,5,381,465,41,76,7,4,2,18,1,0,7,12,7,12,0,0,0,0,0,0,0,0,0,0,7,12,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,7,18,780,288,492,247,416,31,65,3,2,2,4,0,0,5,5,251,419,33,68,8,5,2,5,0,0,286,480,245,407,31,63,3,2,2,4,0,0,5,4,249,409,33,65,8,5,2,5,0,0,2,12,2,9,0,2,0,0,0,0,0,0,0,1,2,10,0,3,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,8,0,49428,24395,25033,18679,18282,4577,5365,219,190,229,424,34,46,657,726,19262,18940,4890,5719,451,462,403,601,78,98,22850,23608,17400,17102,4471,5263,162,165,215,413,29,37,573,628,17911,17673,4747,5570,354,387,369,573,65,80,1545,1425,1279,1180,106,102,57,25,14,11,5,9,84,98,1351,1267,143,149,97,75,34,28,13,18 -050,01,045,Alabama,Dale County,8,1,3347,1721,1626,1228,1129,347,349,10,8,18,20,7,3,111,117,1330,1243,422,429,28,26,43,51,15,11,1569,1452,1094,975,342,335,6,7,18,20,6,3,103,112,1188,1086,413,414,20,23,40,48,12,10,152,174,134,154,5,14,4,1,0,0,1,0,8,5,142,157,9,15,8,3,3,3,3,1 -050,01,045,Alabama,Dale County,8,2,3206,1601,1605,1120,1119,343,360,13,6,15,22,2,5,108,93,1221,1204,415,420,31,26,40,43,7,10,1433,1454,985,997,333,350,6,4,12,19,2,4,95,80,1075,1072,398,403,19,17,36,38,5,7,168,151,135,122,10,10,7,2,3,3,0,1,13,13,146,132,17,17,12,9,4,5,2,3 -050,01,045,Alabama,Dale County,8,3,3164,1636,1528,1149,1012,381,379,15,17,9,14,1,4,81,102,1216,1106,431,441,33,46,34,39,4,9,1520,1398,1051,922,377,368,9,11,9,11,1,3,73,83,1113,998,420,420,25,30,32,31,4,8,116,130,98,90,4,11,6,6,0,3,0,1,8,19,103,108,11,21,8,16,2,8,0,1 -050,01,045,Alabama,Dale County,8,4,2942,1481,1461,1000,980,390,389,13,8,17,13,2,2,59,69,1052,1044,427,427,31,27,30,30,3,5,1363,1372,905,907,381,384,6,7,15,13,2,2,54,59,953,962,415,417,22,21,27,30,3,4,118,89,95,73,9,5,7,1,2,0,0,0,5,10,99,82,12,10,9,6,3,0,0,1 -050,01,045,Alabama,Dale County,8,5,3437,1890,1547,1363,1048,434,390,16,7,26,36,1,4,50,62,1406,1101,459,420,32,29,45,56,5,8,1750,1412,1249,931,415,381,12,6,25,36,1,3,48,55,1290,978,438,408,28,24,44,54,5,6,140,135,114,117,19,9,4,1,1,0,0,1,2,7,116,123,21,12,4,5,1,2,0,2 -050,01,045,Alabama,Dale County,8,6,3595,1911,1684,1433,1228,401,381,24,12,15,17,1,1,37,45,1463,1266,412,403,40,28,32,31,5,5,1724,1570,1282,1130,388,377,10,8,15,16,1,1,28,38,1307,1163,395,394,20,22,29,29,4,3,187,114,151,98,13,4,14,4,0,1,0,0,9,7,156,103,17,9,20,6,3,2,1,2 -050,01,045,Alabama,Dale County,8,7,3542,1778,1764,1444,1292,267,385,6,7,18,41,5,5,38,34,1480,1323,277,397,22,22,28,50,9,8,1590,1598,1278,1146,257,377,4,7,17,40,4,4,30,24,1306,1167,264,384,16,17,27,48,7,6,188,166,166,146,10,8,2,0,1,1,1,1,8,10,174,156,13,13,6,5,1,2,2,2 -050,01,045,Alabama,Dale County,8,8,2927,1410,1517,1088,1071,251,363,9,12,25,32,5,4,32,35,1115,1103,259,373,24,29,36,41,8,6,1297,1405,999,974,242,356,9,10,21,31,5,3,21,31,1016,1002,247,363,19,26,28,40,8,5,113,112,89,97,9,7,0,2,4,1,0,1,11,4,99,101,12,10,5,3,8,1,0,1 -050,01,045,Alabama,Dale County,8,9,3038,1488,1550,1150,1114,276,362,13,15,17,22,3,4,29,33,1177,1145,281,369,29,38,26,27,6,7,1393,1460,1077,1041,268,356,8,12,17,22,2,4,21,25,1097,1064,270,359,20,30,23,27,4,7,95,90,73,73,8,6,5,3,0,0,1,0,8,8,80,81,11,10,9,8,3,0,2,0 -050,01,045,Alabama,Dale County,8,10,2875,1416,1459,1103,1082,260,325,19,14,13,18,1,2,20,18,1121,1097,262,332,32,22,17,27,4,5,1351,1398,1054,1030,256,322,14,13,12,18,1,1,14,14,1066,1042,258,327,23,20,15,24,3,4,65,61,49,52,4,3,5,1,1,0,0,1,6,4,55,55,4,5,9,2,2,3,1,1 -050,01,045,Alabama,Dale County,8,11,3281,1593,1688,1256,1247,283,370,17,21,15,29,1,1,21,20,1276,1266,286,373,32,33,19,33,3,3,1540,1641,1214,1212,276,362,16,21,14,28,0,1,20,17,1233,1228,279,364,30,31,18,32,2,3,53,47,42,35,7,8,1,0,1,1,1,0,1,3,43,38,7,9,2,2,1,1,1,0 -050,01,045,Alabama,Dale County,8,12,3399,1647,1752,1279,1274,321,396,15,17,7,39,2,1,23,25,1298,1297,326,402,30,35,12,43,4,3,1601,1707,1240,1239,318,392,15,15,6,38,2,1,20,22,1256,1259,323,397,28,31,10,42,4,3,46,45,39,35,3,4,0,2,1,1,0,0,3,3,42,38,3,5,2,4,2,1,0,0 -050,01,045,Alabama,Dale County,8,13,2886,1396,1490,1098,1137,251,289,17,12,14,25,0,1,16,26,1112,1158,254,293,29,28,16,32,2,5,1348,1463,1054,1114,248,286,16,12,14,25,0,1,16,25,1068,1134,251,290,28,27,16,32,2,5,48,27,44,23,3,3,1,0,0,0,0,0,0,1,44,24,3,3,1,1,0,0,0,0 -050,01,045,Alabama,Dale County,8,14,2557,1213,1344,1015,1053,168,229,9,13,9,29,2,6,10,14,1024,1064,171,233,17,24,10,30,2,7,1189,1315,995,1036,167,222,8,12,9,29,2,4,8,12,1002,1045,169,226,15,21,9,30,2,5,24,29,20,17,1,7,1,1,0,0,0,2,2,2,22,19,2,7,2,3,1,0,0,2 -050,01,045,Alabama,Dale County,8,15,1991,890,1101,771,904,94,148,12,11,3,27,0,1,10,10,781,911,94,152,20,19,5,27,0,3,877,1081,759,886,93,148,12,10,3,27,0,1,10,9,769,892,93,152,20,18,5,27,0,2,13,20,12,18,1,0,0,1,0,0,0,0,0,1,12,19,1,0,0,1,0,0,0,1 -050,01,045,Alabama,Dale County,8,16,1411,571,840,523,696,41,106,1,5,3,18,1,2,2,13,524,706,42,110,3,16,3,19,1,3,562,830,515,688,41,105,1,5,3,18,0,1,2,13,516,698,42,109,3,16,3,19,0,2,9,10,8,8,0,1,0,0,0,0,1,1,0,0,8,8,0,1,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,8,17,1024,456,568,409,478,36,69,5,1,2,15,0,0,4,5,412,483,37,69,9,6,2,15,0,0,449,558,402,468,36,69,5,1,2,15,0,0,4,5,405,473,37,69,9,6,2,15,0,0,7,10,7,10,0,0,0,0,0,0,0,0,0,0,7,10,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,8,18,806,297,509,250,418,33,75,5,4,3,7,0,0,6,5,254,423,35,76,9,8,5,7,0,0,294,494,247,406,33,73,5,4,3,7,0,0,6,4,251,410,35,74,9,7,5,7,0,0,3,15,3,12,0,2,0,0,0,0,0,0,0,1,3,13,0,2,0,1,0,0,0,0 -050,01,045,Alabama,Dale County,9,0,49476,24431,25045,18608,18295,4681,5367,223,200,230,429,38,49,651,705,19186,18937,5008,5711,445,444,396,591,79,96,22823,23526,17282,17040,4557,5244,168,175,222,418,32,40,562,609,17783,17595,4836,5538,350,387,373,563,67,72,1608,1519,1326,1255,124,123,55,25,8,11,6,9,89,96,1403,1342,172,173,95,57,23,28,12,24 -050,01,045,Alabama,Dale County,9,1,3352,1741,1611,1225,1137,368,344,14,7,21,16,6,3,107,104,1327,1239,437,412,33,23,44,39,12,5,1556,1430,1077,984,355,324,6,4,20,16,4,3,94,99,1168,1081,417,390,20,19,40,38,10,4,185,181,148,153,13,20,8,3,1,0,2,0,13,5,159,158,20,22,13,4,4,1,2,1 -050,01,045,Alabama,Dale County,9,2,3154,1586,1568,1093,1097,356,344,15,8,13,18,2,3,107,98,1190,1186,427,410,34,26,36,40,6,8,1396,1404,936,966,346,332,9,4,12,17,2,2,91,83,1019,1041,408,392,21,19,33,35,6,4,190,164,157,131,10,12,6,4,1,1,0,1,16,15,171,145,19,18,13,7,3,5,0,4 -050,01,045,Alabama,Dale County,9,3,3044,1549,1495,1091,1002,357,364,17,11,12,16,2,3,70,99,1155,1090,400,424,32,33,34,39,5,10,1437,1370,994,916,351,352,13,8,12,13,2,2,65,79,1053,987,393,398,26,23,33,34,4,7,112,125,97,86,6,12,4,3,0,3,0,1,5,20,102,103,7,26,6,10,1,5,1,3 -050,01,045,Alabama,Dale County,9,4,3039,1544,1495,1031,996,410,398,13,15,12,13,3,4,75,69,1097,1057,456,438,35,34,30,27,7,10,1426,1390,940,912,397,388,6,13,11,13,3,4,69,60,1002,964,439,423,24,30,29,26,6,8,118,105,91,84,13,10,7,2,1,0,0,0,6,9,95,93,17,15,11,4,1,1,1,2 -050,01,045,Alabama,Dale County,9,5,3294,1858,1436,1330,974,441,358,15,11,19,33,2,3,51,57,1374,1025,467,388,31,27,35,48,7,8,1724,1310,1219,867,426,347,11,10,19,31,2,2,47,53,1259,914,450,374,25,25,35,46,7,7,134,126,111,107,15,11,4,1,0,2,0,1,4,4,115,111,17,14,6,2,0,2,0,1 -050,01,045,Alabama,Dale County,9,6,3680,1951,1729,1439,1238,421,412,16,8,30,25,2,2,43,44,1473,1279,438,429,31,24,45,38,8,6,1794,1601,1310,1128,407,405,9,7,29,24,2,2,37,35,1338,1160,421,418,22,20,43,35,8,6,157,128,129,110,14,7,7,1,1,1,0,0,6,9,135,119,17,11,9,4,2,3,0,0 -050,01,045,Alabama,Dale County,9,7,3453,1700,1753,1371,1280,270,377,9,11,16,42,4,5,30,38,1396,1313,278,395,22,26,28,54,7,7,1525,1570,1220,1119,256,370,4,7,16,40,4,4,25,30,1241,1144,262,383,14,19,28,50,5,4,175,183,151,161,14,7,5,4,0,2,0,1,5,8,155,169,16,12,8,7,0,4,2,3 -050,01,045,Alabama,Dale County,9,8,3045,1510,1535,1167,1078,278,380,8,13,20,22,6,7,31,35,1193,1109,289,391,24,31,27,33,8,9,1363,1407,1045,965,271,372,8,11,18,22,5,6,16,31,1059,993,273,381,18,26,22,32,7,8,147,128,122,113,7,8,0,2,2,0,1,1,15,4,134,116,16,10,6,5,5,1,1,1 -050,01,045,Alabama,Dale County,9,9,2854,1348,1506,1030,1084,263,359,11,12,18,27,3,3,23,21,1048,1103,272,363,22,23,26,33,5,6,1264,1417,965,1007,252,353,8,12,18,27,2,3,19,15,980,1022,258,356,18,20,24,31,3,4,84,89,65,77,11,6,3,0,0,0,1,0,4,6,68,81,14,7,4,3,2,2,2,2 -050,01,045,Alabama,Dale County,9,10,3009,1490,1519,1154,1133,280,327,22,18,9,19,3,4,22,18,1174,1150,290,330,32,27,13,24,5,6,1406,1440,1091,1063,273,322,15,18,9,19,3,3,15,15,1104,1077,277,323,23,26,12,24,5,5,84,79,63,70,7,5,7,0,0,0,0,1,7,3,70,73,13,7,9,1,1,0,0,1 -050,01,045,Alabama,Dale County,9,11,3172,1554,1618,1222,1191,277,354,11,20,14,28,1,1,29,24,1248,1212,283,360,32,35,19,33,3,3,1504,1571,1183,1160,272,345,10,19,13,27,0,1,26,19,1206,1176,277,350,28,31,17,31,2,3,50,47,39,31,5,9,1,1,1,1,1,0,3,5,42,36,6,10,4,4,2,2,1,0 -050,01,045,Alabama,Dale County,9,12,3412,1658,1754,1301,1286,299,390,21,17,13,39,1,1,23,21,1322,1307,302,395,36,30,19,41,2,2,1598,1712,1249,1250,295,388,20,15,12,39,1,1,21,19,1268,1269,298,392,33,27,18,41,2,2,60,42,52,36,4,2,1,2,1,0,0,0,2,2,54,38,4,3,3,3,1,0,0,0 -050,01,045,Alabama,Dale County,9,13,2992,1414,1578,1109,1194,263,324,19,8,11,25,1,1,11,26,1119,1218,265,328,27,26,13,29,1,4,1364,1548,1064,1170,260,321,18,8,11,24,1,1,10,24,1073,1192,262,324,26,26,12,28,1,3,50,30,45,24,3,3,1,0,0,1,0,0,1,2,46,26,3,4,1,0,1,1,0,1 -050,01,045,Alabama,Dale County,9,14,2605,1252,1353,1034,1046,186,240,10,17,10,29,1,5,11,16,1043,1059,188,244,17,29,13,32,2,6,1226,1321,1011,1026,185,232,9,17,10,29,1,3,10,14,1020,1038,187,235,15,28,13,31,1,3,26,32,23,20,1,8,1,0,0,0,0,2,1,2,23,21,1,9,2,1,0,1,1,3 -050,01,045,Alabama,Dale County,9,15,2029,910,1119,788,910,98,149,11,14,2,35,0,2,11,9,799,918,99,151,20,20,4,36,0,3,895,1098,775,892,97,149,11,12,2,35,0,2,10,8,785,900,97,150,20,18,4,36,0,2,15,21,13,18,1,0,0,2,0,0,0,0,1,1,14,18,2,1,0,2,0,0,0,1 -050,01,045,Alabama,Dale County,9,16,1460,597,863,540,717,47,108,1,4,5,19,1,2,3,13,542,727,49,112,3,14,5,21,1,2,589,850,533,706,47,107,1,4,5,19,0,1,3,13,535,716,49,111,3,14,5,21,0,1,8,13,7,11,0,1,0,0,0,0,1,1,0,0,7,11,0,1,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,9,17,1028,446,582,395,484,40,73,5,2,2,18,0,0,4,5,398,489,41,73,9,7,2,18,0,0,439,573,388,475,40,73,5,2,2,18,0,0,4,5,391,480,41,73,9,7,2,18,0,0,7,9,7,9,0,0,0,0,0,0,0,0,0,0,7,9,0,0,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,9,18,854,323,531,288,448,27,66,5,4,3,5,0,0,0,8,288,456,27,68,5,9,3,6,0,1,317,514,282,434,27,64,5,4,3,5,0,0,0,7,282,441,27,65,5,9,3,6,0,1,6,17,6,14,0,2,0,0,0,0,0,0,0,1,6,15,0,3,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,10,0,49467,24401,25066,18417,18142,4776,5499,233,191,246,451,43,61,686,722,19037,18787,5121,5862,467,452,417,618,85,104,22712,23528,17025,16902,4646,5368,173,156,238,439,34,46,596,617,17566,17454,4951,5677,362,374,398,591,67,77,1689,1538,1392,1240,130,131,60,35,8,12,9,15,90,105,1471,1333,170,185,105,78,19,27,18,27 -050,01,045,Alabama,Dale County,10,1,3301,1662,1639,1108,1138,386,362,12,2,23,15,8,8,125,114,1227,1244,470,439,34,21,53,38,17,13,1493,1459,987,991,366,340,4,0,22,15,5,6,109,107,1092,1091,441,412,19,17,50,38,11,9,169,180,121,147,20,22,8,2,1,0,3,2,16,7,135,153,29,27,15,4,3,0,6,4 -050,01,045,Alabama,Dale County,10,2,3168,1647,1521,1123,1043,379,340,15,12,13,27,3,4,114,95,1228,1131,455,401,39,30,39,48,7,7,1456,1354,962,918,371,323,9,4,12,26,3,3,99,80,1055,992,437,377,27,18,37,43,6,5,191,167,161,125,8,17,6,8,1,1,0,1,15,15,173,139,18,24,12,12,2,5,1,2 -050,01,045,Alabama,Dale County,10,3,3061,1555,1506,1086,1000,357,378,17,13,12,17,2,4,81,94,1161,1085,404,437,32,39,35,36,7,12,1437,1365,980,902,352,370,12,7,12,15,2,2,79,69,1053,965,399,416,26,22,34,31,7,6,118,141,106,98,5,8,5,6,0,2,0,2,2,25,108,120,5,21,6,17,1,5,0,6 -050,01,045,Alabama,Dale County,10,4,2997,1513,1484,1004,974,397,395,20,16,16,18,5,7,71,74,1065,1043,437,437,41,36,32,40,9,11,1396,1383,915,899,387,386,10,14,15,15,3,5,66,64,972,960,425,423,27,29,31,35,7,8,117,101,89,75,10,9,10,2,1,3,2,2,5,10,93,83,12,14,14,7,1,5,2,3 -050,01,045,Alabama,Dale County,10,5,3218,1795,1423,1261,946,448,390,14,12,22,16,2,2,48,57,1302,995,478,420,30,30,36,31,5,6,1645,1309,1130,852,434,378,12,10,22,16,2,1,45,52,1169,896,462,405,26,26,36,31,5,5,150,114,131,94,14,12,2,2,0,0,0,1,3,5,133,99,16,15,4,4,0,0,0,1 -050,01,045,Alabama,Dale County,10,6,3849,2027,1822,1461,1281,478,446,12,11,31,42,0,3,45,39,1499,1317,495,462,25,23,48,56,7,5,1867,1687,1329,1163,462,436,6,9,30,41,0,3,40,35,1362,1195,477,450,18,19,46,54,6,5,160,135,132,118,16,10,6,2,1,1,0,0,5,4,137,122,18,12,7,4,2,2,1,0 -050,01,045,Alabama,Dale County,10,7,3408,1744,1664,1384,1215,281,358,17,10,24,34,5,7,33,40,1414,1246,291,378,32,22,34,48,6,10,1545,1526,1216,1100,266,352,8,5,24,32,5,6,26,31,1240,1123,274,367,18,16,33,44,6,7,199,138,168,115,15,6,9,5,0,2,0,1,7,9,174,123,17,11,14,6,1,4,0,3 -050,01,045,Alabama,Dale County,10,8,3010,1452,1558,1121,1099,270,384,10,10,15,28,7,7,29,30,1144,1125,280,395,26,25,23,36,8,8,1314,1408,1002,969,263,375,10,8,13,27,6,5,20,24,1016,990,269,383,22,20,20,35,7,5,138,150,119,130,7,9,0,2,2,1,1,2,9,6,128,135,11,12,4,5,3,1,1,3 -050,01,045,Alabama,Dale County,10,9,2804,1351,1453,1024,1018,270,354,9,8,17,29,2,5,29,39,1052,1050,275,362,25,31,23,46,5,9,1258,1360,952,937,262,350,5,8,17,29,2,4,20,32,972,962,265,356,16,28,22,43,3,8,93,93,72,81,8,4,4,0,0,0,0,1,9,7,80,88,10,6,9,3,1,3,2,1 -050,01,045,Alabama,Dale County,10,10,3034,1461,1573,1136,1160,265,356,20,16,14,25,4,3,22,13,1155,1172,271,362,34,23,19,26,6,4,1358,1479,1058,1079,254,347,17,15,13,25,3,3,13,10,1070,1088,257,352,26,20,17,26,3,4,103,94,78,81,11,9,3,1,1,0,1,0,9,3,85,84,14,10,8,3,2,0,3,0 -050,01,045,Alabama,Dale County,10,11,3062,1482,1580,1163,1166,266,348,15,12,13,25,0,0,25,29,1186,1192,270,355,31,27,19,33,1,2,1426,1527,1120,1128,262,341,11,11,13,24,0,0,20,23,1138,1150,265,344,24,23,18,32,1,1,56,53,43,38,4,7,4,1,0,1,0,0,5,6,48,42,5,11,7,4,1,1,0,1 -050,01,045,Alabama,Dale County,10,12,3339,1636,1703,1296,1242,281,395,20,17,13,36,2,0,24,13,1317,1255,287,398,37,25,18,37,4,1,1568,1668,1237,1213,277,392,19,15,12,36,1,0,22,12,1256,1225,282,394,35,23,16,37,3,1,68,35,59,29,4,3,1,2,1,0,1,0,2,1,61,30,5,4,2,2,2,0,1,0 -050,01,045,Alabama,Dale County,10,13,3122,1460,1662,1143,1255,280,338,17,12,7,24,1,2,12,31,1154,1282,282,346,27,36,8,25,1,5,1403,1623,1093,1223,275,335,16,12,7,23,1,2,11,28,1103,1247,277,342,25,34,8,24,1,5,57,39,50,32,5,3,1,0,0,1,0,0,1,3,51,35,5,4,2,2,0,1,0,0 -050,01,045,Alabama,Dale County,10,14,2565,1242,1323,1013,1018,198,238,9,15,12,31,1,5,9,16,1021,1031,199,242,16,29,14,31,1,6,1217,1289,991,995,196,230,8,15,12,31,1,3,9,15,999,1007,197,234,15,28,14,31,1,4,25,34,22,23,2,8,1,0,0,0,0,2,0,1,22,24,2,8,1,1,0,0,0,2 -050,01,045,Alabama,Dale County,10,15,2114,957,1157,824,923,109,172,12,14,2,35,0,2,10,11,834,933,114,175,17,22,3,36,0,3,936,1133,806,903,108,171,12,12,2,35,0,2,8,10,814,912,111,174,17,19,3,36,0,3,21,24,18,20,1,1,0,2,0,0,0,0,2,1,20,21,3,1,0,3,0,0,0,0 -050,01,045,Alabama,Dale County,10,16,1491,626,865,561,713,48,111,4,4,7,24,0,0,6,13,566,723,50,115,8,15,8,25,0,0,617,852,552,702,48,110,4,4,7,24,0,0,6,12,557,712,50,113,8,14,8,25,0,0,9,13,9,11,0,1,0,0,0,0,0,0,0,1,9,11,0,2,0,1,0,0,0,0 -050,01,045,Alabama,Dale County,10,17,1013,423,590,378,487,34,74,5,3,2,19,1,2,3,5,381,491,34,75,8,8,2,19,1,2,414,580,370,478,34,74,5,3,2,19,0,1,3,5,373,482,34,75,8,8,2,19,0,1,9,10,8,9,0,0,0,0,0,0,1,1,0,0,8,9,0,0,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,10,18,911,368,543,331,464,29,60,5,4,3,6,0,0,0,9,331,472,29,63,5,10,3,7,0,0,362,526,325,450,29,58,5,4,3,6,0,0,0,8,325,457,29,60,5,10,3,7,0,0,6,17,6,14,0,2,0,0,0,0,0,0,0,1,6,15,0,3,0,0,0,0,0,0 -050,01,045,Alabama,Dale County,11,0,49268,24207,25061,18263,18108,4734,5538,220,179,237,455,43,61,710,720,18906,18756,5097,5896,468,416,407,634,88,112,22456,23514,16841,16849,4606,5407,158,148,224,445,30,45,597,620,17389,17410,4905,5713,350,344,380,602,62,81,1751,1547,1422,1259,128,131,62,31,13,10,13,16,113,100,1517,1346,192,183,118,72,27,32,26,31 -050,01,045,Alabama,Dale County,11,1,3340,1669,1671,1127,1160,370,368,12,8,22,22,8,7,130,106,1250,1260,461,443,36,24,50,44,16,10,1474,1484,990,1011,352,348,3,2,16,22,3,4,110,97,1097,1104,429,418,17,14,42,41,8,7,195,187,137,149,18,20,9,6,6,0,5,3,20,9,153,156,32,25,19,10,8,3,8,3 -050,01,045,Alabama,Dale County,11,2,3144,1642,1502,1133,1009,362,352,9,10,21,27,4,5,113,99,1236,1103,436,416,30,27,48,48,16,12,1451,1350,979,891,354,335,4,5,20,27,4,4,90,88,1063,974,414,395,17,20,41,46,10,8,191,152,154,118,8,17,5,5,1,0,0,1,23,11,173,129,22,21,13,7,7,2,6,4 -050,01,045,Alabama,Dale County,11,3,2999,1529,1470,1066,1002,346,359,14,8,12,10,0,4,91,87,1150,1079,402,412,32,25,33,36,3,13,1396,1331,950,897,338,352,9,5,12,10,0,2,87,65,1031,955,391,392,25,14,33,29,3,7,133,139,116,105,8,7,5,3,0,0,0,2,4,22,119,124,11,20,7,11,0,7,0,6 -050,01,045,Alabama,Dale County,11,4,2950,1516,1434,1004,942,413,390,22,12,16,19,4,6,57,65,1055,1004,445,426,38,27,30,35,8,11,1397,1329,913,860,403,381,11,11,15,14,3,5,52,58,960,916,432,413,24,24,29,28,7,8,119,105,91,82,10,9,11,1,1,5,1,1,5,7,95,88,13,13,14,3,1,7,1,3 -050,01,045,Alabama,Dale County,11,5,3212,1733,1479,1220,997,429,393,13,13,13,16,2,3,56,57,1269,1050,461,419,29,28,30,33,5,7,1575,1352,1083,894,415,380,11,8,13,16,1,3,52,51,1128,942,444,404,26,20,30,33,4,5,158,127,137,103,14,13,2,5,0,0,1,0,4,6,141,108,17,15,3,8,0,0,1,2 -050,01,045,Alabama,Dale County,11,6,3864,2019,1845,1448,1270,479,476,11,8,28,42,1,4,52,45,1494,1308,500,499,30,24,47,57,5,5,1855,1707,1314,1155,465,466,4,7,27,40,1,3,44,36,1353,1186,481,483,19,18,46,53,5,4,164,138,134,115,14,10,7,1,1,2,0,1,8,9,141,122,19,16,11,6,1,4,0,1 -050,01,045,Alabama,Dale County,11,7,3376,1693,1683,1318,1207,291,382,16,9,22,34,7,7,39,44,1352,1243,304,399,36,23,32,52,10,11,1511,1548,1172,1092,276,373,11,8,22,33,5,5,25,37,1195,1121,283,386,24,20,30,51,6,8,182,135,146,115,15,9,5,1,0,1,2,2,14,7,157,122,21,13,12,3,2,1,4,3 -050,01,045,Alabama,Dale County,11,8,2973,1429,1544,1106,1099,265,366,6,9,14,26,6,5,32,39,1135,1133,275,377,22,28,24,38,9,9,1279,1402,974,975,260,357,4,7,14,25,5,4,22,34,995,1005,265,366,14,22,21,36,7,7,150,142,132,124,5,9,2,2,0,1,1,1,10,5,140,128,10,11,8,6,3,2,2,2 -050,01,045,Alabama,Dale County,11,9,2741,1308,1433,984,979,264,371,11,10,21,32,2,4,26,37,1007,1012,274,383,25,30,28,42,2,5,1236,1335,931,892,256,369,7,8,19,32,2,2,21,32,949,921,262,378,20,24,25,41,2,3,72,98,53,87,8,2,4,2,2,0,0,2,5,5,58,91,12,5,5,6,3,1,0,2 -050,01,045,Alabama,Dale County,11,10,2987,1424,1563,1117,1148,252,357,16,10,15,26,4,5,20,17,1134,1165,258,363,28,16,18,28,6,8,1315,1470,1031,1071,243,347,13,9,14,26,3,5,11,12,1041,1083,245,350,19,14,17,28,4,7,109,93,86,77,9,10,3,1,1,0,1,0,9,5,93,82,13,13,9,2,1,0,2,1 -050,01,045,Alabama,Dale County,11,11,2956,1444,1512,1123,1137,269,321,15,4,9,24,0,0,28,26,1148,1158,275,330,35,19,15,31,1,1,1385,1458,1080,1095,262,316,11,3,9,24,0,0,23,20,1100,1111,267,323,27,16,15,29,1,0,59,54,43,42,7,5,4,1,0,0,0,0,5,6,48,47,8,7,8,3,0,2,0,1 -050,01,045,Alabama,Dale County,11,12,3265,1588,1677,1267,1224,268,382,20,22,11,30,2,0,20,19,1284,1241,272,387,35,33,15,32,2,3,1504,1641,1192,1195,264,377,19,21,10,30,1,0,18,18,1207,1211,268,382,32,31,14,32,1,3,84,36,75,29,4,5,1,1,1,0,1,0,2,1,77,30,4,5,3,2,1,0,1,0 -050,01,045,Alabama,Dale County,11,13,3152,1484,1668,1171,1265,276,340,15,15,5,25,1,1,16,22,1185,1283,279,346,28,30,7,28,1,3,1425,1624,1121,1228,272,337,12,15,5,24,1,1,14,19,1133,1243,274,341,24,29,7,27,1,3,59,44,50,37,4,3,3,0,0,1,0,0,2,3,52,40,5,5,4,1,0,1,0,0 -050,01,045,Alabama,Dale County,11,14,2607,1283,1324,1032,1008,217,253,14,13,11,29,0,4,9,17,1041,1022,218,256,21,24,12,32,0,7,1253,1292,1006,983,214,246,13,13,11,29,0,4,9,17,1015,997,215,249,20,24,12,32,0,7,30,32,26,25,3,7,1,0,0,0,0,0,0,0,26,25,3,7,1,0,0,0,0,0 -050,01,045,Alabama,Dale County,11,15,2166,978,1188,830,936,123,185,8,14,6,37,1,4,10,12,839,946,126,189,14,25,7,37,3,4,957,1165,812,921,122,183,8,12,6,37,1,2,8,10,819,929,124,186,13,21,7,37,3,2,21,23,18,15,1,2,0,2,0,0,0,2,2,2,20,17,2,3,1,4,0,0,0,2 -050,01,045,Alabama,Dale County,11,16,1574,669,905,593,757,54,100,8,7,7,29,0,0,7,12,599,769,55,103,15,14,7,31,0,0,657,890,581,744,54,99,8,7,7,29,0,0,7,11,587,755,55,102,15,14,7,30,0,0,12,15,12,13,0,1,0,0,0,0,0,0,0,1,12,14,0,1,0,0,0,1,0,0 -050,01,045,Alabama,Dale County,11,17,1032,415,617,382,509,25,79,4,3,0,17,1,2,3,7,385,514,25,82,7,9,0,18,1,2,408,605,376,498,25,79,4,3,0,17,0,1,3,7,379,503,25,82,7,9,0,18,0,1,7,12,6,11,0,0,0,0,0,0,1,1,0,0,6,11,0,0,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,11,18,930,384,546,342,459,31,64,6,4,4,10,0,0,1,9,343,466,31,66,7,10,4,12,0,1,378,531,336,447,31,62,6,4,4,10,0,0,1,8,337,454,31,63,7,10,4,11,0,1,6,15,6,12,0,2,0,0,0,0,0,0,0,1,6,12,0,3,0,0,0,1,0,0 -050,01,045,Alabama,Dale County,12,0,49294,24251,25043,18281,18043,4774,5544,226,205,248,465,42,47,680,739,18897,18703,5128,5917,452,448,425,654,80,93,22453,23466,16811,16765,4647,5404,157,161,241,459,29,36,568,641,17333,17345,4938,5722,335,366,393,626,55,69,1798,1577,1470,1278,127,140,69,44,7,6,13,11,112,98,1564,1358,190,195,117,82,32,28,25,24 -050,01,045,Alabama,Dale County,12,1,3291,1653,1638,1109,1119,386,358,15,12,16,26,8,2,119,121,1219,1234,470,443,36,29,42,52,14,7,1466,1468,962,985,378,338,7,7,15,26,3,1,101,111,1057,1091,450,418,22,22,37,48,7,6,187,170,147,134,8,20,8,5,1,0,5,1,18,10,162,143,20,25,14,7,5,4,7,1 -050,01,045,Alabama,Dale County,12,2,3151,1647,1504,1150,1004,360,363,16,17,28,20,4,5,89,95,1232,1092,417,430,35,37,52,44,7,9,1452,1338,995,882,350,342,8,6,28,20,4,3,67,85,1059,962,393,400,18,22,47,41,5,5,195,166,155,122,10,21,8,11,0,0,0,2,22,10,173,130,24,30,17,15,5,3,2,4 -050,01,045,Alabama,Dale County,12,3,3023,1585,1438,1088,1001,371,335,16,11,12,13,1,3,97,75,1178,1068,431,382,37,27,39,33,3,6,1442,1298,972,885,363,327,7,6,11,13,1,2,88,65,1054,945,418,367,25,18,37,32,2,4,143,140,116,116,8,8,9,5,1,0,0,1,9,10,124,123,13,15,12,9,2,1,1,2 -050,01,045,Alabama,Dale County,12,4,2930,1513,1417,995,922,431,384,14,11,15,15,4,5,54,80,1042,994,462,429,28,30,28,35,7,9,1391,1304,898,840,423,370,3,10,15,13,3,5,49,66,942,899,451,409,15,21,27,33,5,8,122,113,97,82,8,14,11,1,0,2,1,0,5,14,100,95,11,20,13,9,1,2,2,1 -050,01,045,Alabama,Dale County,12,5,3162,1691,1471,1193,974,411,397,15,14,18,27,1,2,53,57,1242,1022,439,428,29,33,31,41,6,5,1548,1349,1069,881,397,385,13,7,18,26,0,1,51,49,1116,924,424,411,26,21,31,38,5,4,143,122,124,93,14,12,2,7,0,1,1,1,2,8,126,98,15,17,3,12,0,3,1,1 -050,01,045,Alabama,Dale County,12,6,3770,1984,1786,1442,1233,455,448,10,14,26,41,1,5,50,45,1485,1272,477,469,23,27,45,56,7,7,1803,1651,1292,1115,437,439,5,14,25,40,1,4,43,39,1329,1150,455,456,17,25,41,54,6,5,181,135,150,118,18,9,5,0,1,1,0,1,7,6,156,122,22,13,6,2,4,2,1,2 -050,01,045,Alabama,Dale County,12,7,3518,1751,1767,1347,1258,324,411,17,17,24,29,5,5,34,47,1379,1299,339,427,30,32,35,45,5,11,1564,1605,1193,1122,309,406,9,9,24,28,3,3,26,37,1217,1153,321,419,18,20,34,43,3,7,187,162,154,136,15,5,8,8,0,1,2,2,8,10,162,146,18,8,12,12,1,2,2,4 -050,01,045,Alabama,Dale County,12,8,2967,1447,1520,1107,1069,269,383,4,6,15,22,8,4,44,36,1147,1100,286,393,26,19,27,36,13,11,1291,1389,973,954,266,373,2,6,15,22,7,3,28,31,999,980,274,380,16,18,24,33,10,9,156,131,134,115,3,10,2,0,0,0,1,1,16,5,148,120,12,13,10,1,3,3,3,2 -050,01,045,Alabama,Dale County,12,9,2678,1258,1420,958,990,242,348,6,10,22,31,1,2,29,39,983,1026,254,360,19,30,30,41,4,4,1180,1310,902,889,231,346,4,8,20,31,1,2,22,34,922,920,239,355,13,26,27,41,2,4,78,110,56,101,11,2,2,2,2,0,0,0,7,5,61,106,15,5,6,4,3,0,2,0 -050,01,045,Alabama,Dale County,12,10,2956,1415,1541,1099,1116,263,364,16,7,13,28,4,5,20,21,1118,1134,268,373,27,18,21,32,6,7,1304,1448,1010,1040,252,355,13,7,12,28,3,4,14,14,1023,1052,255,360,21,15,18,32,4,5,111,93,89,76,11,9,3,0,1,0,1,1,6,7,95,82,13,13,6,3,3,0,2,2 -050,01,045,Alabama,Dale County,12,11,2886,1401,1485,1082,1136,270,299,15,7,13,22,0,0,21,21,1102,1156,274,302,29,18,18,29,0,2,1335,1435,1033,1094,262,296,11,5,13,22,0,0,16,18,1049,1111,264,299,21,16,17,26,0,1,66,50,49,42,8,3,4,2,0,0,0,0,5,3,53,45,10,3,8,2,1,3,0,1 -050,01,045,Alabama,Dale County,12,12,3213,1546,1667,1241,1207,253,389,19,21,12,29,2,0,19,21,1255,1224,260,395,32,35,16,33,3,1,1467,1625,1173,1176,248,380,18,21,11,29,1,0,16,19,1185,1192,253,385,29,34,14,32,2,1,79,42,68,31,5,9,1,0,1,0,1,0,3,2,70,32,7,10,3,1,2,1,1,0 -050,01,045,Alabama,Dale County,12,13,3185,1531,1654,1204,1240,284,348,19,15,4,30,1,1,19,20,1221,1258,289,354,32,26,7,34,3,3,1482,1616,1164,1212,280,344,16,14,4,29,1,1,17,16,1179,1228,284,347,29,24,6,33,3,1,49,38,40,28,4,4,3,1,0,1,0,0,2,4,42,30,5,7,3,2,1,1,0,2 -050,01,045,Alabama,Dale County,12,14,2672,1299,1373,1049,1052,214,255,17,15,9,28,0,3,10,20,1058,1070,216,258,25,29,10,31,0,5,1252,1341,1007,1024,212,251,14,15,9,28,0,3,10,20,1016,1042,214,254,22,29,10,31,0,5,47,32,42,28,2,4,3,0,0,0,0,0,0,0,42,28,2,4,3,0,0,0,0,0 -050,01,045,Alabama,Dale County,12,15,2268,1038,1230,874,959,132,204,9,11,11,40,1,3,11,13,884,968,135,209,16,20,13,43,1,3,1014,1203,853,942,131,197,9,10,11,40,1,3,9,11,862,950,133,201,15,18,12,42,1,3,24,27,21,17,1,7,0,1,0,0,0,0,2,2,22,18,2,8,1,2,1,1,0,0 -050,01,045,Alabama,Dale County,12,16,1618,708,910,632,748,56,109,9,9,5,35,0,0,6,9,637,755,57,112,14,15,6,37,0,1,693,891,618,731,55,109,9,8,5,35,0,0,6,8,623,737,56,112,14,14,6,36,0,0,15,19,14,17,1,0,0,1,0,0,0,0,0,1,14,18,1,0,0,1,0,1,0,1 -050,01,045,Alabama,Dale County,12,17,1063,412,651,378,533,27,85,2,4,1,17,1,2,3,10,381,542,27,86,5,12,1,19,1,2,404,641,371,525,27,84,2,4,1,17,0,1,3,10,374,534,27,85,5,12,1,19,0,1,8,10,7,8,0,1,0,0,0,0,1,1,0,0,7,8,0,1,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,12,18,943,372,571,333,482,26,64,7,4,4,12,0,0,2,9,334,489,27,67,9,11,4,13,0,0,365,554,326,468,26,62,7,4,4,12,0,0,2,8,327,475,27,64,9,11,4,12,0,0,7,17,7,14,0,2,0,0,0,0,0,0,0,1,7,14,0,3,0,0,0,1,0,0 -050,01,045,Alabama,Dale County,13,0,48959,23980,24979,18016,18037,4758,5513,234,196,250,456,39,49,683,728,18622,18689,5097,5872,467,457,420,636,81,100,22215,23348,16578,16693,4627,5368,169,168,246,451,26,38,569,630,17090,17261,4906,5680,356,386,392,612,55,74,1765,1631,1438,1344,131,145,65,28,4,5,13,11,114,98,1532,1428,191,192,111,71,28,24,26,26 -050,01,045,Alabama,Dale County,13,1,3235,1627,1608,1106,1098,378,359,17,9,17,18,7,3,102,121,1192,1213,448,445,39,24,40,47,12,8,1459,1429,977,948,367,340,9,7,17,18,3,2,86,114,1051,1057,429,424,23,20,36,44,6,6,168,179,129,150,11,19,8,2,0,0,4,1,16,7,141,156,19,21,16,4,4,3,6,2 -050,01,045,Alabama,Dale County,13,2,3152,1634,1518,1122,1032,375,358,17,15,31,22,5,4,84,87,1200,1114,428,416,35,34,49,40,10,10,1455,1334,975,901,368,328,11,8,31,22,4,3,66,72,1036,970,414,376,23,20,46,37,6,7,179,184,147,131,7,30,6,7,0,0,1,1,18,15,164,144,14,40,12,14,3,3,4,3 -050,01,045,Alabama,Dale County,13,3,2997,1563,1434,1065,998,374,336,12,7,13,14,2,3,97,76,1153,1065,433,381,32,25,37,35,8,8,1389,1286,927,869,358,328,7,5,12,14,2,2,83,68,1005,931,409,368,20,19,34,34,6,6,174,148,138,129,16,8,5,2,1,0,0,1,14,8,148,134,24,13,12,6,3,1,2,2 -050,01,045,Alabama,Dale County,13,4,2845,1483,1362,1011,906,377,362,13,6,20,12,4,3,58,73,1064,971,413,403,29,26,33,33,5,6,1359,1254,909,823,369,351,4,6,20,10,3,2,54,62,959,878,402,386,18,21,33,29,4,5,124,108,102,83,8,11,9,0,0,2,1,1,4,11,105,93,11,17,11,5,0,4,1,1 -050,01,045,Alabama,Dale County,13,5,3172,1698,1474,1175,964,413,414,13,10,19,24,1,4,77,58,1245,1012,456,446,32,27,39,40,7,9,1545,1368,1049,883,400,401,8,7,19,23,0,3,69,51,1113,926,437,430,24,21,38,39,5,5,153,106,126,81,13,13,5,3,0,1,1,1,8,7,132,86,19,16,8,6,1,1,2,4 -050,01,045,Alabama,Dale County,13,6,3645,1878,1767,1331,1228,468,442,14,13,19,33,1,4,45,47,1368,1269,488,466,30,28,36,46,4,5,1722,1618,1203,1097,452,436,8,11,18,33,1,3,40,38,1236,1130,468,454,22,22,33,46,3,4,156,149,128,131,16,6,6,2,1,0,0,1,5,9,132,139,20,12,8,6,3,0,1,1 -050,01,045,Alabama,Dale County,13,7,3540,1786,1754,1331,1249,364,409,21,17,26,32,4,9,40,38,1367,1285,379,424,38,31,39,44,6,12,1610,1585,1191,1104,352,400,13,12,26,32,2,8,26,29,1215,1132,360,412,25,22,36,40,3,9,176,169,140,145,12,9,8,5,0,0,2,1,14,9,152,153,19,12,13,9,3,4,3,3 -050,01,045,Alabama,Dale County,13,8,2939,1406,1533,1119,1084,231,374,7,9,15,33,5,4,29,29,1147,1110,237,384,21,23,23,41,7,6,1254,1412,981,975,225,367,5,9,15,32,4,3,24,26,1005,998,229,375,18,22,21,40,5,5,152,121,138,109,6,7,2,0,0,1,1,1,5,3,142,112,8,9,3,1,2,1,2,1 -050,01,045,Alabama,Dale County,13,9,2690,1269,1421,950,971,259,368,6,12,18,28,3,2,33,40,979,1005,269,379,21,33,27,38,6,7,1181,1318,884,882,249,363,4,10,18,28,3,1,23,34,904,911,254,373,16,27,24,37,6,5,88,103,66,89,10,5,2,2,0,0,0,1,10,6,75,94,15,6,5,6,3,1,0,2 -050,01,045,Alabama,Dale County,13,10,2849,1347,1502,1044,1106,254,337,15,10,14,24,2,2,18,23,1059,1128,260,345,26,21,17,31,3,5,1268,1406,987,1025,243,331,12,10,14,24,1,1,11,15,996,1040,246,335,19,19,16,28,2,2,79,96,57,81,11,6,3,0,0,0,1,1,7,8,63,88,14,10,7,2,1,3,1,3 -050,01,045,Alabama,Dale County,13,11,2798,1335,1463,1053,1107,234,308,17,7,12,19,0,2,19,20,1068,1125,240,310,29,19,17,24,2,5,1254,1396,989,1050,228,304,13,5,11,19,0,2,13,16,1000,1064,230,306,23,14,14,24,0,4,81,67,64,57,6,4,4,2,1,0,0,0,6,4,68,61,10,4,6,5,3,0,2,1 -050,01,045,Alabama,Dale County,13,12,3082,1490,1592,1182,1168,259,349,14,21,11,28,1,0,23,26,1202,1190,261,353,28,39,19,36,3,1,1430,1551,1131,1138,253,340,13,21,11,28,0,0,22,24,1150,1158,255,343,26,38,19,36,2,1,60,41,51,30,6,9,1,0,0,0,1,0,1,2,52,32,6,10,2,1,0,0,1,0 -050,01,045,Alabama,Dale County,13,13,3282,1583,1699,1243,1271,289,355,19,15,8,35,2,1,22,22,1259,1292,298,359,30,29,13,41,5,5,1514,1659,1185,1240,285,351,17,14,7,34,2,1,18,19,1197,1258,291,353,28,28,11,39,5,4,69,40,58,31,4,4,2,1,1,1,0,0,4,3,62,34,7,6,2,1,2,2,0,1 -050,01,045,Alabama,Dale County,13,14,2726,1319,1407,1059,1073,219,275,20,12,9,21,0,1,12,25,1070,1093,220,282,30,32,11,23,0,3,1270,1372,1016,1043,216,272,17,12,9,21,0,1,12,23,1027,1061,217,279,27,30,11,23,0,3,49,35,43,30,3,3,3,0,0,0,0,0,0,2,43,32,3,3,3,2,0,0,0,0 -050,01,045,Alabama,Dale County,13,15,2330,1064,1266,881,997,151,196,11,13,9,43,1,4,11,13,892,1008,152,200,19,23,11,43,1,6,1042,1233,863,975,150,188,10,12,9,43,1,4,9,11,872,984,151,192,16,21,11,43,1,5,22,33,18,22,1,8,1,1,0,0,0,0,2,2,20,24,1,8,3,2,0,0,0,1 -050,01,045,Alabama,Dale County,13,16,1683,736,947,653,763,64,122,9,11,2,40,0,1,8,10,661,772,65,124,16,19,2,41,0,1,718,925,636,743,63,122,9,10,2,40,0,1,8,9,644,751,64,123,16,18,2,41,0,1,18,22,17,20,1,0,0,1,0,0,0,0,0,1,17,21,1,1,0,1,0,0,0,0 -050,01,045,Alabama,Dale County,13,17,1052,410,642,374,523,28,87,1,5,4,15,1,2,2,10,376,531,28,89,2,13,4,16,2,3,401,632,366,515,28,86,1,5,4,15,0,1,2,10,368,523,28,88,2,13,4,16,1,2,9,10,8,8,0,1,0,0,0,0,1,1,0,0,8,8,0,1,0,0,0,0,1,1 -050,01,045,Alabama,Dale County,13,18,942,352,590,317,499,21,62,8,4,3,15,0,0,3,10,320,506,22,66,10,11,3,17,0,0,344,570,309,482,21,60,8,4,3,15,0,0,3,9,312,489,22,63,10,11,3,16,0,0,8,20,8,17,0,2,0,0,0,0,0,0,0,1,8,17,0,3,0,0,0,1,0,0 -050,01,047,Alabama,Dallas County,1,0,43820,20244,23576,6123,6710,13864,16601,48,38,82,70,7,4,120,153,6217,6820,13962,16726,78,94,93,91,23,15,20065,23446,6022,6660,13806,16533,41,37,78,67,2,4,116,145,6112,6764,13902,16652,70,91,88,86,18,12,179,130,101,50,58,68,7,1,4,3,5,0,4,8,105,56,60,74,8,3,5,5,5,3 -050,01,047,Alabama,Dallas County,1,1,3197,1590,1607,283,302,1272,1265,3,2,6,3,0,0,26,35,309,333,1296,1295,5,7,7,7,1,0,1565,1595,265,295,1268,1262,3,2,4,3,0,0,25,33,290,324,1292,1291,4,6,5,7,1,0,25,12,18,7,4,3,0,0,2,0,0,0,1,2,19,9,4,4,1,1,2,0,0,0 -050,01,047,Alabama,Dallas County,1,2,3097,1605,1492,309,296,1274,1173,2,0,4,3,0,0,16,20,325,313,1288,1193,3,2,5,4,2,1,1591,1480,303,293,1266,1166,2,0,4,2,0,0,16,19,319,309,1280,1185,3,2,5,3,2,0,14,12,6,3,8,7,0,0,0,1,0,0,0,1,6,4,8,8,0,0,0,1,0,1 -050,01,047,Alabama,Dallas County,1,3,3271,1650,1621,319,322,1311,1282,5,0,4,4,0,0,11,13,327,332,1322,1292,5,4,4,5,3,3,1636,1614,313,318,1303,1280,5,0,4,4,0,0,11,12,321,327,1314,1290,5,4,4,4,3,3,14,7,6,4,8,2,0,0,0,0,0,0,0,1,6,5,8,2,0,0,0,1,0,0 -050,01,047,Alabama,Dallas County,1,4,3343,1648,1695,361,363,1263,1313,3,2,5,3,0,1,16,13,373,373,1277,1324,6,6,7,6,2,2,1630,1681,351,358,1257,1305,3,2,5,3,0,1,14,12,361,368,1270,1315,6,6,6,6,2,1,18,14,10,5,6,8,0,0,0,0,0,0,2,1,12,5,7,9,0,0,1,0,0,1 -050,01,047,Alabama,Dallas County,1,5,2705,1235,1470,264,305,949,1155,5,5,7,1,2,0,8,4,268,309,957,1159,7,5,8,1,4,0,1218,1459,253,300,947,1149,3,5,7,1,0,0,8,4,257,304,955,1153,5,5,8,1,2,0,17,11,11,5,2,6,2,0,0,0,2,0,0,0,11,5,2,6,2,0,0,0,2,0 -050,01,047,Alabama,Dallas County,1,6,2614,1178,1436,292,311,867,1113,5,2,6,4,2,0,6,6,298,314,870,1119,6,6,7,4,3,0,1162,1428,283,305,865,1111,2,2,6,4,0,0,6,6,289,308,868,1117,3,6,7,4,1,0,16,8,9,6,2,2,3,0,0,0,2,0,0,0,9,6,2,2,3,0,0,0,2,0 -050,01,047,Alabama,Dallas County,1,7,2375,1047,1328,278,275,757,1038,0,0,8,9,0,1,4,5,282,278,757,1042,3,2,8,10,1,1,1029,1321,263,271,755,1036,0,0,7,8,0,1,4,5,267,274,755,1040,3,2,7,9,1,1,18,7,15,4,2,2,0,0,1,1,0,0,0,0,15,4,2,2,0,0,1,1,0,0 -050,01,047,Alabama,Dallas County,1,8,2494,1077,1417,310,357,756,1042,1,4,6,7,1,0,3,7,312,361,758,1048,2,7,8,9,1,2,1067,1412,305,354,753,1042,1,4,5,6,0,0,3,6,307,357,755,1047,2,6,7,7,0,2,10,5,5,3,3,0,0,0,1,1,1,0,0,1,5,4,3,1,0,1,1,2,1,0 -050,01,047,Alabama,Dallas County,1,9,2527,1156,1371,364,382,776,968,3,4,9,8,0,0,4,9,366,388,779,974,6,10,9,9,0,1,1149,1365,362,382,772,963,2,4,9,8,0,0,4,8,364,388,775,968,5,10,9,9,0,0,7,6,2,0,4,5,1,0,0,0,0,0,0,1,2,0,4,6,1,0,0,0,0,1 -050,01,047,Alabama,Dallas County,1,10,3145,1428,1717,483,475,931,1231,5,1,5,3,1,1,3,6,485,478,933,1235,6,7,6,3,1,1,1419,1710,479,474,926,1225,5,1,5,3,1,1,3,6,481,477,928,1229,6,7,6,3,1,1,9,7,4,1,5,6,0,0,0,0,0,0,0,0,4,1,5,6,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,1,11,3369,1566,1803,542,543,1004,1243,2,2,8,11,1,1,9,3,546,544,1012,1244,6,4,9,13,2,1,1561,1790,541,542,1002,1232,1,1,8,11,1,1,8,3,544,543,1009,1233,5,3,9,13,2,1,5,13,1,1,2,11,1,1,0,0,0,0,1,0,2,1,3,11,1,1,0,0,0,0 -050,01,047,Alabama,Dallas County,1,12,2916,1336,1580,515,566,813,995,2,4,3,6,0,0,3,9,517,569,814,1002,4,7,3,10,1,1,1325,1568,509,560,808,990,2,4,3,6,0,0,3,8,511,562,809,996,4,7,3,10,1,1,11,12,6,6,5,5,0,0,0,0,0,0,0,1,6,7,5,6,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,1,13,2602,1228,1374,549,553,666,812,4,3,5,3,0,0,4,3,551,554,669,814,5,6,6,3,1,0,1222,1369,545,551,664,809,4,3,5,3,0,0,4,3,547,552,667,811,5,6,6,3,1,0,6,5,4,2,2,3,0,0,0,0,0,0,0,0,4,2,2,3,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,1,14,1946,899,1047,415,430,477,607,2,3,2,2,0,0,3,5,416,432,480,611,4,7,2,3,1,0,894,1043,414,429,473,604,2,3,2,2,0,0,3,5,415,431,476,608,4,7,2,3,1,0,5,4,1,1,4,3,0,0,0,0,0,0,0,0,1,1,4,3,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,1,15,1584,705,879,330,376,371,498,1,1,3,2,0,0,0,2,330,378,371,499,1,3,3,2,0,0,704,876,330,375,370,496,1,1,3,2,0,0,0,2,330,377,370,497,1,3,3,2,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,1,16,1073,424,649,219,308,203,334,2,0,0,0,0,0,0,7,219,313,203,338,2,4,0,1,0,2,422,648,217,308,203,333,2,0,0,0,0,0,0,7,217,313,203,337,2,4,0,1,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,1,17,849,278,571,176,276,98,291,2,3,0,1,0,0,2,0,177,276,100,291,4,3,0,1,0,0,278,568,176,275,98,289,2,3,0,1,0,0,2,0,177,275,100,289,4,3,0,1,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,1,18,713,194,519,114,270,76,241,1,2,1,0,0,0,2,6,116,275,76,246,3,4,1,0,0,0,193,519,113,270,76,241,1,2,1,0,0,0,2,6,115,275,76,246,3,4,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,2,0,43813,20241,23572,6121,6709,13863,16598,48,38,82,70,7,4,120,153,6215,6819,13961,16723,78,94,93,91,23,15,20062,23442,6020,6659,13805,16530,41,37,78,67,2,4,116,145,6110,6763,13901,16649,70,91,88,86,18,12,179,130,101,50,58,68,7,1,4,3,5,0,4,8,105,56,60,74,8,3,5,5,5,3 -050,01,047,Alabama,Dallas County,2,1,3197,1590,1607,283,302,1272,1265,3,2,6,3,0,0,26,35,309,333,1296,1295,5,7,7,7,1,0,1565,1595,265,295,1268,1262,3,2,4,3,0,0,25,33,290,324,1292,1291,4,6,5,7,1,0,25,12,18,7,4,3,0,0,2,0,0,0,1,2,19,9,4,4,1,1,2,0,0,0 -050,01,047,Alabama,Dallas County,2,2,3097,1605,1492,309,296,1274,1173,2,0,4,3,0,0,16,20,325,313,1288,1193,3,2,5,4,2,1,1591,1480,303,293,1266,1166,2,0,4,2,0,0,16,19,319,309,1280,1185,3,2,5,3,2,0,14,12,6,3,8,7,0,0,0,1,0,0,0,1,6,4,8,8,0,0,0,1,0,1 -050,01,047,Alabama,Dallas County,2,3,3269,1649,1620,318,322,1311,1281,5,0,4,4,0,0,11,13,326,332,1322,1291,5,4,4,5,3,3,1635,1613,312,318,1303,1279,5,0,4,4,0,0,11,12,320,327,1314,1289,5,4,4,4,3,3,14,7,6,4,8,2,0,0,0,0,0,0,0,1,6,5,8,2,0,0,0,1,0,0 -050,01,047,Alabama,Dallas County,2,4,3342,1647,1695,361,363,1262,1313,3,2,5,3,0,1,16,13,373,373,1276,1324,6,6,7,6,2,2,1629,1681,351,358,1256,1305,3,2,5,3,0,1,14,12,361,368,1269,1315,6,6,6,6,2,1,18,14,10,5,6,8,0,0,0,0,0,0,2,1,12,5,7,9,0,0,1,0,0,1 -050,01,047,Alabama,Dallas County,2,5,2705,1235,1470,264,305,949,1155,5,5,7,1,2,0,8,4,268,309,957,1159,7,5,8,1,4,0,1218,1459,253,300,947,1149,3,5,7,1,0,0,8,4,257,304,955,1153,5,5,8,1,2,0,17,11,11,5,2,6,2,0,0,0,2,0,0,0,11,5,2,6,2,0,0,0,2,0 -050,01,047,Alabama,Dallas County,2,6,2614,1178,1436,292,311,867,1113,5,2,6,4,2,0,6,6,298,314,870,1119,6,6,7,4,3,0,1162,1428,283,305,865,1111,2,2,6,4,0,0,6,6,289,308,868,1117,3,6,7,4,1,0,16,8,9,6,2,2,3,0,0,0,2,0,0,0,9,6,2,2,3,0,0,0,2,0 -050,01,047,Alabama,Dallas County,2,7,2375,1047,1328,278,275,757,1038,0,0,8,9,0,1,4,5,282,278,757,1042,3,2,8,10,1,1,1029,1321,263,271,755,1036,0,0,7,8,0,1,4,5,267,274,755,1040,3,2,7,9,1,1,18,7,15,4,2,2,0,0,1,1,0,0,0,0,15,4,2,2,0,0,1,1,0,0 -050,01,047,Alabama,Dallas County,2,8,2494,1077,1417,310,357,756,1042,1,4,6,7,1,0,3,7,312,361,758,1048,2,7,8,9,1,2,1067,1412,305,354,753,1042,1,4,5,6,0,0,3,6,307,357,755,1047,2,6,7,7,0,2,10,5,5,3,3,0,0,0,1,1,1,0,0,1,5,4,3,1,0,1,1,2,1,0 -050,01,047,Alabama,Dallas County,2,9,2525,1156,1369,364,382,776,966,3,4,9,8,0,0,4,9,366,388,779,972,6,10,9,9,0,1,1149,1363,362,382,772,961,2,4,9,8,0,0,4,8,364,388,775,966,5,10,9,9,0,0,7,6,2,0,4,5,1,0,0,0,0,0,0,1,2,0,4,6,1,0,0,0,0,1 -050,01,047,Alabama,Dallas County,2,10,3145,1428,1717,483,475,931,1231,5,1,5,3,1,1,3,6,485,478,933,1235,6,7,6,3,1,1,1419,1710,479,474,926,1225,5,1,5,3,1,1,3,6,481,477,928,1229,6,7,6,3,1,1,9,7,4,1,5,6,0,0,0,0,0,0,0,0,4,1,5,6,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,2,11,3369,1566,1803,542,543,1004,1243,2,2,8,11,1,1,9,3,546,544,1012,1244,6,4,9,13,2,1,1561,1790,541,542,1002,1232,1,1,8,11,1,1,8,3,544,543,1009,1233,5,3,9,13,2,1,5,13,1,1,2,11,1,1,0,0,0,0,1,0,2,1,3,11,1,1,0,0,0,0 -050,01,047,Alabama,Dallas County,2,12,2916,1336,1580,515,566,813,995,2,4,3,6,0,0,3,9,517,569,814,1002,4,7,3,10,1,1,1325,1568,509,560,808,990,2,4,3,6,0,0,3,8,511,562,809,996,4,7,3,10,1,1,11,12,6,6,5,5,0,0,0,0,0,0,0,1,6,7,5,6,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,2,13,2602,1228,1374,549,553,666,812,4,3,5,3,0,0,4,3,551,554,669,814,5,6,6,3,1,0,1222,1369,545,551,664,809,4,3,5,3,0,0,4,3,547,552,667,811,5,6,6,3,1,0,6,5,4,2,2,3,0,0,0,0,0,0,0,0,4,2,2,3,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,2,14,1946,899,1047,415,430,477,607,2,3,2,2,0,0,3,5,416,432,480,611,4,7,2,3,1,0,894,1043,414,429,473,604,2,3,2,2,0,0,3,5,415,431,476,608,4,7,2,3,1,0,5,4,1,1,4,3,0,0,0,0,0,0,0,0,1,1,4,3,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,2,15,1584,705,879,330,376,371,498,1,1,3,2,0,0,0,2,330,378,371,499,1,3,3,2,0,0,704,876,330,375,370,496,1,1,3,2,0,0,0,2,330,377,370,497,1,3,3,2,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,2,16,1071,423,648,218,307,203,334,2,0,0,0,0,0,0,7,218,312,203,338,2,4,0,1,0,2,421,647,216,307,203,333,2,0,0,0,0,0,0,7,216,312,203,337,2,4,0,1,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,2,17,849,278,571,176,276,98,291,2,3,0,1,0,0,2,0,177,276,100,291,4,3,0,1,0,0,278,568,176,275,98,289,2,3,0,1,0,0,2,0,177,275,100,289,4,3,0,1,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,2,18,713,194,519,114,270,76,241,1,2,1,0,0,0,2,6,116,275,76,246,3,4,1,0,0,0,193,519,113,270,76,241,1,2,1,0,0,0,2,6,115,275,76,246,3,4,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,3,0,43855,20275,23580,6109,6677,13898,16632,51,36,85,75,7,4,125,156,6230,6815,13971,16725,91,88,103,96,13,16,20090,23452,6001,6625,13841,16568,44,35,81,72,2,4,121,148,6118,6755,13911,16656,82,84,99,93,8,16,185,128,108,52,57,64,7,1,4,3,5,0,4,8,112,60,60,69,9,4,4,3,5,0 -050,01,047,Alabama,Dallas County,3,1,3175,1595,1580,286,298,1271,1239,3,2,7,3,0,0,28,38,313,332,1294,1268,5,8,11,7,1,3,1567,1566,265,289,1267,1236,3,2,5,3,0,0,27,36,291,321,1289,1264,4,7,9,7,1,3,28,14,21,9,4,3,0,0,2,0,0,0,1,2,22,11,5,4,1,1,2,0,0,0 -050,01,047,Alabama,Dallas County,3,2,3062,1580,1482,302,293,1255,1167,3,0,4,3,0,0,16,19,318,312,1266,1182,7,2,5,6,0,0,1565,1468,295,289,1247,1159,3,0,4,2,0,0,16,18,311,307,1258,1173,7,2,5,5,0,0,15,14,7,4,8,8,0,0,0,1,0,0,0,1,7,5,8,9,0,0,0,1,0,0 -050,01,047,Alabama,Dallas County,3,3,3290,1662,1628,319,318,1321,1293,5,0,6,4,0,0,11,13,330,331,1328,1303,8,1,7,5,0,1,1647,1621,312,314,1313,1291,5,0,6,4,0,0,11,12,323,326,1320,1300,8,1,7,5,0,1,15,7,7,4,8,2,0,0,0,0,0,0,0,1,7,5,8,3,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,3,4,3329,1652,1677,360,360,1265,1296,4,2,6,5,0,1,17,13,377,372,1276,1305,8,6,8,6,0,1,1636,1665,351,356,1260,1289,4,2,6,5,0,1,15,12,366,367,1270,1297,7,6,8,6,0,1,16,12,9,4,5,7,0,0,0,0,0,0,2,1,11,5,6,8,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,3,5,2758,1247,1511,265,307,962,1194,4,4,6,1,2,0,8,5,271,311,967,1196,7,7,8,2,2,0,1229,1502,253,302,960,1190,2,4,6,1,0,0,8,5,259,306,965,1192,5,7,8,2,0,0,18,9,12,5,2,4,2,0,0,0,2,0,0,0,12,5,2,4,2,0,0,0,2,0 -050,01,047,Alabama,Dallas County,3,6,2617,1183,1434,295,309,869,1113,5,2,6,4,2,0,6,6,301,314,872,1116,9,5,9,5,3,0,1166,1425,285,302,867,1111,2,2,6,4,0,0,6,6,291,307,870,1114,6,5,9,5,1,0,17,9,10,7,2,2,3,0,0,0,2,0,0,0,10,7,2,2,3,0,0,0,2,0 -050,01,047,Alabama,Dallas County,3,7,2402,1066,1336,279,272,773,1048,0,0,8,10,0,1,6,5,285,277,774,1048,3,2,10,12,0,2,1048,1330,264,269,771,1046,0,0,7,9,0,1,6,5,270,274,772,1046,3,2,9,11,0,2,18,6,15,3,2,2,0,0,1,1,0,0,0,0,15,3,2,2,0,0,1,1,0,0 -050,01,047,Alabama,Dallas County,3,8,2478,1065,1413,305,358,749,1037,1,4,6,7,1,0,3,7,308,364,750,1042,2,7,6,7,2,0,1053,1407,298,354,746,1037,1,4,5,6,0,0,3,6,301,359,747,1041,2,7,5,6,1,0,12,6,7,4,3,0,0,0,1,1,1,0,0,1,7,5,3,1,0,0,1,1,1,0 -050,01,047,Alabama,Dallas County,3,9,2501,1146,1355,361,375,770,960,3,4,9,8,0,0,3,8,364,381,772,963,4,9,9,9,0,1,1139,1349,359,375,766,955,2,4,9,8,0,0,3,7,362,380,768,958,3,8,9,9,0,1,7,6,2,0,4,5,1,0,0,0,0,0,0,1,2,1,4,5,1,1,0,0,0,0 -050,01,047,Alabama,Dallas County,3,10,3123,1415,1708,475,473,925,1223,6,1,5,4,1,1,3,6,478,477,926,1225,8,3,5,6,1,3,1407,1702,471,472,921,1218,6,1,5,4,1,1,3,6,474,476,922,1220,8,3,5,6,1,3,8,6,4,1,4,5,0,0,0,0,0,0,0,0,4,1,4,5,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,3,11,3359,1558,1801,538,534,1000,1250,3,2,8,10,1,1,8,4,546,538,1001,1251,6,4,10,11,3,1,1553,1788,537,533,998,1239,2,1,8,10,1,1,7,4,544,537,998,1240,5,3,10,11,3,1,5,13,1,1,2,11,1,1,0,0,0,0,1,0,2,1,3,11,1,1,0,0,0,0 -050,01,047,Alabama,Dallas County,3,12,2952,1357,1595,522,565,826,1009,2,4,3,8,0,0,4,9,526,572,828,1015,5,8,3,10,0,2,1346,1585,517,560,820,1005,2,4,3,8,0,0,4,8,521,566,822,1011,5,7,3,10,0,2,11,10,5,5,6,4,0,0,0,0,0,0,0,1,5,6,6,4,0,1,0,0,0,0 -050,01,047,Alabama,Dallas County,3,13,2624,1233,1391,552,560,668,822,4,3,5,3,0,0,4,3,556,563,669,823,7,5,5,3,0,0,1227,1386,548,558,666,819,4,3,5,3,0,0,4,3,552,561,667,820,7,5,5,3,0,0,6,5,4,2,2,3,0,0,0,0,0,0,0,0,4,2,2,3,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,3,14,1959,907,1052,413,431,487,612,2,2,2,2,0,0,3,5,416,436,488,614,4,5,2,2,0,0,902,1048,412,430,483,609,2,2,2,2,0,0,3,5,415,435,484,611,4,5,2,2,0,0,5,4,1,1,4,3,0,0,0,0,0,0,0,0,1,1,4,3,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,3,15,1581,703,878,328,375,370,498,1,1,3,2,0,0,1,2,329,376,371,499,2,2,3,2,0,1,702,875,328,374,369,496,1,1,3,2,0,0,1,2,329,375,370,497,2,2,3,2,0,1,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,3,16,1086,437,649,223,308,212,334,2,0,0,0,0,0,0,7,223,314,212,335,2,5,0,1,0,1,435,648,221,308,212,333,2,0,0,0,0,0,0,7,221,314,212,334,2,5,0,1,0,1,2,1,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,3,17,847,275,572,174,274,97,294,2,3,0,1,0,0,2,0,175,274,99,294,2,3,0,1,1,0,275,569,174,273,97,292,2,3,0,1,0,0,2,0,175,273,99,292,2,3,0,1,1,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,3,18,712,194,518,112,267,78,243,1,2,1,0,0,0,2,6,114,271,78,246,2,6,2,1,0,0,193,518,111,267,78,243,1,2,1,0,0,0,2,6,113,271,78,246,2,6,2,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,4,0,43254,19966,23288,6031,6489,13656,16505,53,37,87,80,8,5,131,172,6149,6643,13729,16611,98,97,112,108,16,18,19754,23154,5901,6436,13594,16441,45,37,84,77,3,5,127,158,6015,6576,13665,16539,88,91,109,103,11,18,212,134,130,53,62,64,8,0,3,3,5,0,4,14,134,67,64,72,10,6,3,5,5,0 -050,01,047,Alabama,Dallas County,4,1,3090,1527,1563,290,289,1204,1223,2,1,8,5,0,1,23,44,312,332,1223,1258,7,7,9,9,0,4,1493,1545,265,276,1198,1221,1,1,7,5,0,1,22,41,286,316,1216,1255,6,5,8,9,0,4,34,18,25,13,6,2,1,0,1,0,0,0,1,3,26,16,7,3,1,2,1,0,0,0 -050,01,047,Alabama,Dallas County,4,2,2954,1508,1446,278,273,1206,1143,4,1,1,4,0,0,19,25,296,297,1220,1162,7,4,3,6,1,2,1492,1432,268,271,1200,1136,4,1,1,3,0,0,19,21,286,291,1214,1153,7,3,3,4,1,2,16,14,10,2,6,7,0,0,0,1,0,0,0,4,10,6,6,9,0,1,0,2,0,0 -050,01,047,Alabama,Dallas County,4,3,3276,1662,1614,324,300,1314,1295,3,0,6,5,0,0,15,14,339,312,1326,1306,6,4,6,6,0,1,1645,1606,317,295,1304,1293,3,0,6,5,0,0,15,13,332,306,1316,1304,6,3,6,6,0,1,17,8,7,5,10,2,0,0,0,0,0,0,0,1,7,6,10,2,0,1,0,0,0,0 -050,01,047,Alabama,Dallas County,4,4,3164,1592,1572,347,345,1212,1206,6,2,9,5,0,1,18,13,363,357,1225,1213,11,6,12,7,0,2,1573,1561,336,341,1206,1200,6,2,9,5,0,1,16,12,350,352,1218,1206,10,6,12,7,0,2,19,11,11,4,6,6,0,0,0,0,0,0,2,1,13,5,7,7,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,4,5,2851,1293,1558,284,318,991,1230,3,4,5,0,1,0,9,6,293,322,991,1236,6,6,10,0,2,1,1273,1550,269,315,988,1225,2,4,5,0,0,0,9,6,278,319,988,1231,5,6,10,0,1,1,20,8,15,3,3,5,1,0,0,0,1,0,0,0,15,3,3,5,1,0,0,0,1,0 -050,01,047,Alabama,Dallas County,4,6,2541,1158,1383,289,284,850,1086,7,4,5,3,3,0,4,6,292,287,852,1091,9,7,6,4,3,0,1137,1373,276,276,849,1084,3,4,5,3,0,0,4,6,279,279,851,1089,5,7,6,4,0,0,21,10,13,8,1,2,4,0,0,0,3,0,0,0,13,8,1,2,4,0,0,0,3,0 -050,01,047,Alabama,Dallas County,4,7,2451,1082,1369,277,276,787,1069,1,0,8,14,0,1,9,9,285,284,792,1075,4,4,12,15,1,1,1063,1360,262,274,784,1066,1,0,7,12,0,1,9,7,270,280,789,1070,4,3,11,13,1,1,19,9,15,2,3,3,0,0,1,2,0,0,0,2,15,4,3,5,0,1,1,2,0,0 -050,01,047,Alabama,Dallas County,4,8,2352,997,1355,273,326,711,1012,1,3,10,7,1,0,1,7,274,332,711,1015,2,9,10,7,1,0,982,1350,264,322,707,1012,1,3,9,7,0,0,1,6,265,327,707,1014,2,8,9,7,0,0,15,5,9,4,4,0,0,0,1,0,1,0,0,1,9,5,4,1,0,1,1,0,1,0 -050,01,047,Alabama,Dallas County,4,9,2411,1092,1319,351,360,725,942,2,4,8,7,0,0,6,6,356,366,727,942,4,8,11,8,0,1,1083,1316,347,360,721,939,1,4,8,7,0,0,6,6,352,366,723,939,3,8,11,8,0,1,9,3,4,0,4,3,1,0,0,0,0,0,0,0,4,0,4,3,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,4,10,2952,1322,1630,436,454,873,1162,5,2,6,5,0,1,2,6,438,460,873,1163,7,3,7,8,0,2,1314,1621,431,453,870,1155,5,2,6,5,0,1,2,5,433,458,870,1156,7,3,7,7,0,2,8,9,5,1,3,7,0,0,0,0,0,0,0,1,5,2,3,7,0,0,0,1,0,0 -050,01,047,Alabama,Dallas County,4,11,3285,1521,1764,520,504,984,1245,5,1,4,7,2,0,6,7,524,510,986,1249,8,6,5,9,4,0,1515,1753,518,503,982,1235,4,1,4,7,2,0,5,7,521,509,984,1239,6,6,5,9,4,0,6,11,2,1,2,10,1,0,0,0,0,0,1,0,3,1,2,10,2,0,0,0,0,0 -050,01,047,Alabama,Dallas County,4,12,3031,1399,1632,552,567,832,1041,1,4,6,10,0,1,8,9,557,576,834,1045,6,9,8,14,2,2,1388,1621,548,562,825,1036,1,4,6,10,0,1,8,8,553,570,827,1039,6,9,8,14,2,2,11,11,4,5,7,5,0,0,0,0,0,0,0,1,4,6,7,6,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,4,13,2693,1267,1426,566,568,686,850,5,2,5,3,1,0,4,3,570,571,686,850,9,4,5,4,1,0,1259,1421,560,567,684,846,5,2,5,3,1,0,4,3,564,570,684,846,9,4,5,4,1,0,8,5,6,1,2,4,0,0,0,0,0,0,0,0,6,1,2,4,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,4,14,1971,907,1064,400,424,503,633,1,2,2,2,0,0,1,3,401,427,503,633,1,5,3,2,0,0,902,1059,399,422,499,630,1,2,2,2,0,0,1,3,400,425,499,630,1,5,3,2,0,0,5,5,1,2,4,3,0,0,0,0,0,0,0,0,1,2,4,3,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,4,15,1564,696,868,322,367,367,494,1,2,3,2,0,0,3,3,325,368,368,496,3,3,3,4,0,0,695,865,322,366,366,492,1,2,3,2,0,0,3,3,325,367,367,494,3,3,3,4,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,4,16,1129,474,655,238,298,234,352,2,0,0,0,0,0,0,5,238,302,234,352,2,2,0,3,0,1,472,654,236,298,234,351,2,0,0,0,0,0,0,5,236,302,234,351,2,2,0,3,0,1,2,1,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,4,17,830,266,564,166,270,95,289,3,3,0,0,0,0,2,2,167,272,96,290,5,4,0,1,0,1,266,562,166,270,95,287,3,3,0,0,0,0,2,2,167,272,96,288,5,4,0,1,0,1,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,4,18,709,203,506,118,266,82,233,1,2,1,1,0,0,1,4,119,268,82,235,1,6,2,1,1,0,202,505,117,265,82,233,1,2,1,1,0,0,1,4,118,267,82,235,1,6,2,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,5,0,42794,19793,23001,5987,6354,13508,16344,57,38,89,81,11,6,141,178,6113,6505,13593,16458,108,96,108,116,17,13,19565,22842,5850,6272,13441,16281,48,38,86,79,4,6,136,166,5971,6412,13525,16390,95,90,104,112,10,13,228,159,137,82,67,63,9,0,3,2,7,0,5,12,142,93,68,68,13,6,4,4,7,0 -050,01,047,Alabama,Dallas County,5,1,3008,1481,1527,289,286,1160,1188,1,1,8,5,0,1,23,46,312,328,1176,1227,6,5,11,9,0,5,1451,1501,266,266,1155,1186,1,1,7,5,0,1,22,42,288,304,1170,1223,5,3,10,9,0,5,30,26,23,20,5,2,0,0,1,0,0,0,1,4,24,24,6,4,1,2,1,0,0,0 -050,01,047,Alabama,Dallas County,5,2,3000,1540,1460,297,277,1219,1152,4,1,1,4,0,0,19,26,316,298,1233,1173,8,6,3,7,1,2,1523,1449,286,273,1213,1148,4,1,1,3,0,0,19,24,305,293,1227,1168,8,5,3,5,1,2,17,11,11,4,6,4,0,0,0,1,0,0,0,2,11,5,6,5,0,1,0,2,0,0 -050,01,047,Alabama,Dallas County,5,3,3159,1593,1566,306,284,1263,1263,3,0,5,6,0,0,16,13,322,295,1274,1273,6,2,7,9,0,0,1578,1554,298,278,1256,1257,3,0,5,6,0,0,16,13,314,289,1267,1267,6,2,7,9,0,0,15,12,8,6,7,6,0,0,0,0,0,0,0,0,8,6,7,6,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,5,4,3046,1511,1535,309,322,1165,1193,5,3,10,5,0,0,22,12,328,332,1180,1200,12,9,12,6,2,0,1502,1523,307,316,1160,1189,5,3,10,5,0,0,20,10,324,324,1175,1195,11,8,11,6,2,0,9,12,2,6,5,4,0,0,0,0,0,0,2,2,4,8,5,5,1,1,1,0,0,0 -050,01,047,Alabama,Dallas County,5,5,2843,1314,1529,303,317,989,1200,5,1,7,1,0,0,10,10,312,326,993,1207,8,4,10,3,1,0,1297,1517,290,311,986,1194,4,1,7,1,0,0,10,10,299,320,990,1201,7,4,10,3,1,0,17,12,13,6,3,6,1,0,0,0,0,0,0,0,13,6,3,6,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,5,6,2497,1145,1352,296,281,826,1057,9,6,4,1,6,1,4,6,298,286,828,1062,11,8,5,1,7,1,1114,1340,277,272,824,1054,5,6,4,1,0,1,4,6,279,277,826,1059,7,8,5,1,1,1,31,12,19,9,2,3,4,0,0,0,6,0,0,0,19,9,2,3,4,0,0,0,6,0 -050,01,047,Alabama,Dallas County,5,7,2487,1110,1377,299,289,791,1069,3,0,7,10,0,0,10,9,308,298,797,1073,5,4,9,12,1,0,1084,1371,283,286,784,1067,1,0,6,10,0,0,10,8,292,294,790,1071,3,4,8,11,1,0,26,6,16,3,7,2,2,0,1,0,0,0,0,1,16,4,7,2,2,0,1,1,0,0 -050,01,047,Alabama,Dallas County,5,8,2294,990,1304,264,289,714,998,0,2,10,10,1,1,1,4,265,292,714,999,1,4,10,12,1,1,972,1296,252,284,710,997,0,2,9,9,0,1,1,3,253,286,710,998,1,3,9,11,0,1,18,8,12,5,4,1,0,0,1,1,1,0,0,1,12,6,4,1,0,1,1,1,1,0 -050,01,047,Alabama,Dallas County,5,9,2393,1068,1325,351,361,702,943,1,5,8,10,1,0,5,6,356,365,705,947,4,9,8,13,1,0,1057,1317,345,355,697,941,1,5,8,10,1,0,5,6,350,359,700,945,4,9,8,13,1,0,11,8,6,6,5,2,0,0,0,0,0,0,0,0,6,6,5,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,5,10,2761,1256,1505,413,417,828,1070,6,3,5,4,0,2,4,9,417,423,830,1074,6,9,7,7,0,2,1245,1496,407,415,824,1064,5,3,5,4,0,2,4,8,411,420,826,1068,5,8,7,7,0,2,11,9,6,2,4,6,1,0,0,0,0,0,0,1,6,3,4,6,1,1,0,0,0,0 -050,01,047,Alabama,Dallas County,5,11,3212,1479,1733,495,498,967,1220,6,1,5,6,2,0,4,8,498,505,970,1222,8,6,5,8,2,0,1470,1721,489,495,966,1211,5,1,5,6,2,0,3,8,491,502,969,1213,6,6,5,8,2,0,9,12,6,3,1,9,1,0,0,0,0,0,1,0,7,3,1,9,2,0,0,0,0,0 -050,01,047,Alabama,Dallas County,5,12,3126,1431,1695,555,555,857,1119,1,3,8,9,0,1,10,8,561,562,862,1122,9,8,9,11,0,1,1417,1683,551,550,847,1113,1,3,8,9,0,1,10,7,557,556,852,1115,9,8,9,11,0,1,14,12,4,5,10,6,0,0,0,0,0,0,0,1,4,6,10,7,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,5,13,2583,1226,1357,520,539,692,808,5,2,4,6,1,0,4,2,523,541,694,809,8,3,4,6,1,0,1221,1350,515,536,692,804,5,2,4,6,1,0,4,2,518,538,694,805,8,3,4,6,1,0,5,7,5,3,0,4,0,0,0,0,0,0,0,0,5,3,0,4,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,5,14,2113,972,1141,448,455,518,677,1,3,2,1,0,0,3,5,450,459,519,678,4,5,2,4,0,1,961,1136,445,453,511,674,1,3,2,1,0,0,2,5,446,457,512,675,3,5,2,4,0,1,11,5,3,2,7,3,0,0,0,0,0,0,1,0,4,2,7,3,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,5,15,1577,713,864,322,361,383,497,1,2,4,2,0,0,3,2,325,363,383,497,3,2,5,4,0,0,713,861,322,360,383,495,1,2,4,2,0,0,3,2,325,362,383,495,3,2,5,4,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,5,16,1151,485,666,236,290,247,371,2,0,0,0,0,0,0,5,236,294,247,374,2,2,0,1,0,0,483,665,235,290,246,370,2,0,0,0,0,0,0,5,235,294,246,373,2,2,0,1,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,5,17,830,277,553,162,264,111,282,3,3,0,0,0,0,1,4,163,268,111,282,4,5,0,2,0,0,276,551,161,264,111,280,3,3,0,0,0,0,1,4,162,268,111,280,4,5,0,2,0,0,1,2,1,0,0,2,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,5,18,714,202,512,122,269,76,237,1,2,1,1,0,0,2,3,123,270,77,239,3,5,1,1,0,0,201,511,121,268,76,237,1,2,1,1,0,0,2,3,122,269,77,239,3,5,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,6,0,41981,19470,22511,5826,6189,13324,16038,60,37,95,71,12,7,153,169,5960,6334,13419,16142,110,98,118,99,19,13,19252,22345,5698,6103,13257,15972,50,36,92,69,7,7,148,158,5827,6239,13349,16069,98,95,115,94,14,12,218,166,128,86,67,66,10,1,3,2,5,0,5,11,133,95,70,73,12,3,3,5,5,1 -050,01,047,Alabama,Dallas County,6,1,2758,1396,1362,278,259,1074,1061,2,0,7,6,0,0,35,36,311,293,1103,1090,8,5,9,9,1,2,1368,1340,262,241,1065,1060,1,0,6,6,0,0,34,33,294,273,1093,1088,7,4,8,8,1,1,28,22,16,18,9,1,1,0,1,0,0,0,1,3,17,20,10,2,1,1,1,1,0,1 -050,01,047,Alabama,Dallas County,6,2,3010,1533,1477,279,274,1227,1167,3,2,5,4,1,1,18,29,297,300,1240,1192,5,7,8,7,1,1,1513,1463,264,268,1222,1162,3,2,5,3,1,1,18,27,282,292,1235,1186,5,7,8,5,1,1,20,14,15,6,5,5,0,0,0,1,0,0,0,2,15,8,5,6,0,0,0,2,0,0 -050,01,047,Alabama,Dallas County,6,3,3057,1545,1512,327,302,1189,1194,5,0,4,2,1,0,19,14,344,315,1204,1204,9,3,6,5,1,0,1530,1499,320,296,1181,1188,5,0,4,2,1,0,19,13,337,308,1196,1197,9,3,6,5,1,0,15,13,7,6,8,6,0,0,0,0,0,0,0,1,7,7,8,7,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,6,4,3000,1502,1498,306,294,1169,1191,4,1,8,4,0,0,15,8,318,302,1181,1196,7,3,11,5,0,0,1490,1487,302,286,1163,1189,4,1,8,4,0,0,13,7,312,293,1174,1193,6,3,11,5,0,0,12,11,4,8,6,2,0,0,0,0,0,0,2,1,6,9,7,3,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,6,5,2866,1320,1546,284,300,1012,1230,6,3,8,1,0,0,10,12,294,312,1016,1238,9,3,10,3,1,2,1302,1532,270,297,1009,1219,5,3,8,1,0,0,10,12,280,309,1013,1227,8,3,10,3,1,2,18,14,14,3,3,11,1,0,0,0,0,0,0,0,14,3,3,11,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,6,6,2405,1101,1304,281,284,798,1005,7,6,6,2,3,2,6,5,285,288,802,1008,10,8,8,2,4,3,1084,1291,271,274,798,1002,3,6,6,2,0,2,6,5,275,278,802,1005,6,8,8,2,1,3,17,13,10,10,0,3,4,0,0,0,3,0,0,0,10,10,0,3,4,0,0,0,3,0 -050,01,047,Alabama,Dallas County,6,7,2439,1094,1345,272,276,802,1052,5,0,6,8,1,0,8,9,278,283,805,1056,8,7,8,9,3,0,1070,1335,259,269,795,1050,3,0,5,8,0,0,8,8,265,275,798,1053,6,7,7,9,2,0,24,10,13,7,7,2,2,0,1,0,1,0,0,1,13,8,7,3,2,0,1,0,1,0 -050,01,047,Alabama,Dallas County,6,8,2268,982,1286,268,288,699,978,0,1,10,12,1,1,4,6,271,293,702,981,0,4,12,13,1,1,966,1276,255,282,698,976,0,1,9,11,0,1,4,5,258,286,701,978,0,4,11,12,0,1,16,10,13,6,1,2,0,0,1,1,1,0,0,1,13,7,1,3,0,0,1,1,1,0 -050,01,047,Alabama,Dallas County,6,9,2334,1037,1297,341,349,681,929,1,6,10,8,0,0,4,5,344,352,682,932,4,9,10,9,1,0,1025,1290,335,344,675,928,1,5,10,8,0,0,4,5,338,347,676,931,4,8,10,9,1,0,12,7,6,5,6,1,0,1,0,0,0,0,0,0,6,5,6,1,0,1,0,0,0,0 -050,01,047,Alabama,Dallas County,6,10,2570,1206,1364,396,367,793,982,6,3,7,3,1,1,3,8,399,372,793,985,9,8,7,6,1,1,1192,1355,387,365,789,976,5,3,7,3,1,1,3,7,390,370,789,978,8,8,7,5,1,1,14,9,9,2,4,6,1,0,0,0,0,0,0,1,9,2,4,7,1,0,0,1,0,0 -050,01,047,Alabama,Dallas County,6,11,3112,1410,1702,459,482,935,1204,5,2,5,5,2,1,4,8,463,487,937,1208,7,5,5,9,2,1,1404,1692,454,481,934,1195,5,2,5,5,2,1,4,8,458,486,936,1199,7,5,5,9,2,1,6,10,5,1,1,9,0,0,0,0,0,0,0,0,5,1,1,9,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,6,12,3139,1441,1698,537,544,882,1140,1,1,8,6,1,1,12,6,544,549,886,1140,9,6,12,8,2,1,1427,1685,533,539,874,1133,0,1,8,6,1,1,11,5,539,543,878,1133,7,5,12,8,2,1,14,13,4,5,8,7,1,0,0,0,0,0,1,1,5,6,8,7,2,1,0,0,0,0 -050,01,047,Alabama,Dallas County,6,13,2574,1211,1363,506,538,693,810,5,4,3,6,0,0,4,5,510,542,695,811,7,8,3,7,0,0,1206,1356,503,534,691,807,5,4,3,6,0,0,4,5,507,538,693,808,7,8,3,7,0,0,5,7,3,4,2,3,0,0,0,0,0,0,0,0,3,4,2,3,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,6,14,2165,999,1166,451,447,539,713,2,1,2,1,1,0,4,4,455,451,540,714,5,4,2,1,1,0,990,1162,447,445,534,711,2,1,2,1,1,0,4,4,451,449,535,712,5,4,2,1,1,0,9,4,4,2,5,2,0,0,0,0,0,0,0,0,4,2,5,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,6,15,1587,725,862,333,362,382,492,2,3,4,2,0,0,4,3,337,363,383,494,5,6,4,2,0,0,722,860,332,362,381,490,2,3,4,2,0,0,3,3,335,363,381,492,5,6,4,2,0,0,3,2,1,0,1,2,0,0,0,0,0,0,1,0,2,0,2,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,6,16,1171,481,690,232,300,246,385,2,0,1,0,0,0,0,5,232,303,246,387,2,4,1,1,0,1,478,687,230,299,245,383,2,0,1,0,0,0,0,5,230,302,245,385,2,4,1,1,0,1,3,3,2,1,1,2,0,0,0,0,0,0,0,0,2,1,1,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,6,17,805,278,527,149,253,126,269,2,1,0,0,0,0,1,4,149,257,127,270,3,4,0,1,0,0,277,524,148,252,126,267,2,1,0,0,0,0,1,4,148,256,127,268,3,4,0,1,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,6,18,721,209,512,127,270,77,236,2,3,1,1,0,0,2,2,129,272,77,236,3,4,2,2,0,0,208,511,126,269,77,236,2,3,1,1,0,0,2,2,128,271,77,236,3,4,2,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,7,0,41560,19240,22320,5727,6107,13176,15912,64,36,101,76,11,5,161,184,5870,6274,13274,16023,116,101,126,101,20,13,19029,22152,5608,6023,13108,15845,53,35,98,72,6,5,156,172,5746,6178,13202,15952,105,93,122,96,15,13,211,168,119,84,68,67,11,1,3,4,5,0,5,12,124,96,72,71,11,8,4,5,5,0 -050,01,047,Alabama,Dallas County,7,1,2683,1328,1355,280,254,1001,1056,2,0,9,7,0,0,36,38,315,290,1032,1086,8,9,12,9,0,1,1304,1331,262,235,995,1056,2,0,9,5,0,0,36,35,297,268,1026,1085,8,7,12,7,0,1,24,24,18,19,6,0,0,0,0,2,0,0,0,3,18,22,6,1,0,2,0,2,0,0 -050,01,047,Alabama,Dallas County,7,2,2959,1489,1470,269,280,1190,1151,5,2,6,2,0,1,19,34,287,312,1206,1177,7,7,7,6,1,2,1469,1456,256,274,1187,1147,3,2,5,1,0,1,18,31,273,303,1202,1172,5,6,6,4,1,2,20,14,13,6,3,4,2,0,1,1,0,0,1,3,14,9,4,5,2,1,1,2,0,0 -050,01,047,Alabama,Dallas County,7,3,2959,1539,1420,309,288,1203,1116,4,0,3,1,1,0,19,15,328,301,1218,1127,5,3,5,4,2,0,1524,1406,305,282,1192,1109,4,0,3,1,1,0,19,14,324,294,1207,1119,5,3,5,4,2,0,15,14,4,6,11,7,0,0,0,0,0,0,0,1,4,7,11,8,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,7,4,2932,1468,1464,299,281,1144,1165,5,0,6,5,0,0,14,13,312,293,1152,1173,10,4,8,8,0,0,1456,1454,295,273,1137,1164,5,0,6,5,0,0,13,12,307,284,1144,1172,10,3,8,8,0,0,12,10,4,8,7,1,0,0,0,0,0,0,1,1,5,9,8,1,0,1,0,0,0,0 -050,01,047,Alabama,Dallas County,7,5,2896,1327,1569,279,310,1025,1238,5,4,8,2,0,0,10,15,285,325,1032,1247,8,8,11,4,1,1,1313,1557,272,309,1020,1227,4,4,8,2,0,0,9,15,277,324,1027,1236,7,8,10,4,1,1,14,12,7,1,5,11,1,0,0,0,0,0,1,0,8,1,5,11,1,0,1,0,0,0 -050,01,047,Alabama,Dallas County,7,6,2435,1123,1312,286,287,812,1011,6,5,9,2,2,1,8,6,292,292,815,1013,8,9,12,3,4,1,1108,1297,275,277,812,1006,4,5,9,2,0,1,8,6,281,282,815,1008,6,9,12,3,2,1,15,15,11,10,0,5,2,0,0,0,2,0,0,0,11,10,0,5,2,0,0,0,2,0 -050,01,047,Alabama,Dallas County,7,7,2358,1052,1306,266,288,765,1005,7,0,5,7,2,0,7,6,272,294,768,1006,11,4,6,8,2,0,1030,1299,255,283,761,1003,3,0,4,7,0,0,7,6,261,289,764,1004,7,4,5,8,0,0,22,7,11,5,4,2,4,0,1,0,2,0,0,0,11,5,4,2,4,0,1,0,2,0 -050,01,047,Alabama,Dallas County,7,8,2281,1002,1279,286,288,699,970,0,0,9,13,0,1,8,7,294,293,702,975,4,3,10,14,0,1,984,1269,273,282,695,968,0,0,8,12,0,1,8,6,281,286,698,972,4,3,9,13,0,1,18,10,13,6,4,2,0,0,1,1,0,0,0,1,13,7,4,3,0,0,1,1,0,0 -050,01,047,Alabama,Dallas County,7,9,2322,1018,1304,301,321,703,961,1,5,9,9,1,0,3,8,303,328,704,964,3,9,9,11,2,1,1006,1298,295,317,698,960,1,5,9,9,0,0,3,7,297,323,699,963,3,8,9,11,1,1,12,6,6,4,5,1,0,0,0,0,1,0,0,1,6,5,5,1,0,1,0,0,1,0 -050,01,047,Alabama,Dallas County,7,10,2401,1097,1304,359,354,719,934,5,5,9,4,1,1,4,6,362,360,720,936,7,8,11,5,1,1,1086,1294,352,352,716,928,4,4,9,4,1,1,4,5,355,357,717,930,6,6,11,5,1,1,11,10,7,2,3,6,1,1,0,0,0,0,0,1,7,3,3,6,1,2,0,0,0,0 -050,01,047,Alabama,Dallas County,7,11,3017,1368,1649,464,463,886,1176,7,1,6,3,2,0,3,6,467,469,887,1179,9,3,7,4,2,0,1357,1641,456,462,883,1169,7,1,6,3,2,0,3,6,459,468,884,1172,9,3,7,4,2,0,11,8,8,1,3,7,0,0,0,0,0,0,0,0,8,1,3,7,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,7,12,3159,1458,1701,516,531,919,1151,2,1,7,10,1,1,13,7,526,535,924,1155,10,4,10,11,2,3,1449,1688,514,527,914,1143,1,1,7,10,1,1,12,6,523,530,918,1147,9,3,10,11,2,3,9,13,2,4,5,8,1,0,0,0,0,0,1,1,3,5,6,8,1,1,0,0,0,0 -050,01,047,Alabama,Dallas County,7,13,2616,1221,1395,510,521,696,857,3,4,6,7,0,0,6,6,514,525,698,861,6,9,8,7,1,0,1210,1387,504,515,691,855,3,4,6,7,0,0,6,6,508,519,693,859,6,9,8,7,1,0,11,8,6,6,5,2,0,0,0,0,0,0,0,0,6,6,5,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,7,14,2243,1032,1211,464,468,557,736,3,2,3,0,1,0,4,5,468,472,557,737,6,6,4,1,1,0,1023,1205,459,466,553,732,3,2,3,0,1,0,4,5,463,470,553,733,6,6,4,1,1,0,9,6,5,2,4,4,0,0,0,0,0,0,0,0,5,2,4,4,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,7,15,1565,713,852,333,345,371,498,3,3,2,3,0,0,4,3,337,348,372,499,5,5,2,3,1,0,709,849,332,344,369,496,3,3,2,3,0,0,3,3,335,347,369,497,5,5,2,3,1,0,4,3,1,1,2,2,0,0,0,0,0,0,1,0,2,1,3,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,7,16,1214,505,709,236,325,264,381,2,0,3,0,0,0,0,3,236,328,264,381,2,2,3,1,0,1,503,706,235,324,263,379,2,0,3,0,0,0,0,3,235,327,263,379,2,2,3,1,0,1,2,3,1,1,1,2,0,0,0,0,0,0,0,0,1,1,1,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,7,17,786,276,510,140,241,134,262,1,1,0,0,0,0,1,6,141,247,134,263,2,5,0,1,0,1,275,507,139,240,134,260,1,1,0,0,0,0,1,6,140,246,134,261,2,5,0,1,0,1,1,3,1,1,0,2,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,7,18,734,224,510,130,262,88,244,3,3,1,1,0,0,2,0,131,262,89,244,5,3,1,1,0,0,223,508,129,261,88,243,3,3,1,1,0,0,2,0,130,261,89,243,5,3,1,1,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,8,0,40947,18906,22041,5578,5993,12989,15733,67,39,105,87,11,5,156,184,5714,6151,13085,15848,112,99,132,115,23,18,18693,21868,5460,5907,12921,15666,55,35,100,83,6,5,151,172,5591,6055,13014,15774,97,90,127,109,18,18,213,173,118,86,68,67,12,4,5,4,5,0,5,12,123,96,71,74,15,9,5,6,5,0 -050,01,047,Alabama,Dallas County,8,1,2532,1232,1300,261,247,926,1009,3,2,12,5,0,0,30,37,290,283,950,1039,5,8,14,7,3,2,1209,1273,245,226,923,1009,1,0,10,3,0,0,30,35,274,260,947,1038,3,5,12,5,3,2,23,27,16,21,3,0,2,2,2,2,0,0,0,2,16,23,3,1,2,3,2,2,0,0 -050,01,047,Alabama,Dallas County,8,2,2951,1461,1490,273,296,1158,1158,6,2,7,3,0,1,17,30,290,325,1169,1182,9,6,9,5,1,2,1439,1477,260,289,1152,1155,5,2,6,3,0,1,16,27,276,315,1163,1177,7,5,8,5,1,2,22,13,13,7,6,3,1,0,1,0,0,0,1,3,14,10,6,5,2,1,1,0,0,0 -050,01,047,Alabama,Dallas County,8,3,2882,1520,1362,294,263,1195,1076,3,0,4,3,0,0,24,20,313,279,1214,1093,8,4,9,5,0,1,1503,1348,286,259,1186,1068,3,0,4,2,0,0,24,19,305,274,1205,1084,8,4,9,4,0,1,17,14,8,4,9,8,0,0,0,1,0,0,0,1,8,5,9,9,0,0,0,1,0,0 -050,01,047,Alabama,Dallas County,8,4,2892,1453,1439,289,266,1141,1157,5,0,4,3,1,0,13,13,300,277,1153,1166,8,1,5,7,1,1,1439,1426,282,257,1134,1154,5,0,4,3,1,0,13,12,293,268,1146,1162,8,0,5,7,1,1,14,13,7,9,7,3,0,0,0,0,0,0,0,1,7,9,7,4,0,1,0,0,0,0 -050,01,047,Alabama,Dallas County,8,5,2756,1271,1485,265,294,983,1171,5,4,7,5,0,0,11,11,274,304,989,1177,7,8,10,7,2,0,1254,1471,255,291,978,1161,5,3,7,5,0,0,9,11,262,301,982,1167,7,7,10,7,2,0,17,14,10,3,5,10,0,1,0,0,0,0,2,0,12,3,7,10,0,1,0,0,0,0 -050,01,047,Alabama,Dallas County,8,6,2442,1134,1308,277,277,839,1012,5,4,4,5,2,0,7,10,284,284,840,1018,8,8,7,7,2,1,1124,1294,272,269,838,1006,3,4,4,5,0,0,7,10,279,276,839,1012,6,8,7,7,0,1,10,14,5,8,1,6,2,0,0,0,2,0,0,0,5,8,1,6,2,0,0,0,2,0 -050,01,047,Alabama,Dallas County,8,7,2331,1031,1300,273,301,731,980,7,2,10,11,2,1,8,5,280,305,735,982,9,5,12,12,3,1,1016,1289,267,292,727,978,4,2,10,11,0,1,8,5,274,296,731,980,6,5,12,12,1,1,15,11,6,9,4,2,3,0,0,0,2,0,0,0,6,9,4,2,3,0,0,0,2,0 -050,01,047,Alabama,Dallas County,8,8,2241,981,1260,266,269,700,973,3,0,8,10,0,1,4,7,270,276,701,976,3,3,10,10,1,2,960,1256,253,267,696,973,1,0,6,9,0,1,4,6,257,273,697,975,1,3,8,9,1,2,21,4,13,2,4,0,2,0,2,1,0,0,0,1,13,3,4,1,2,0,2,1,0,0 -050,01,047,Alabama,Dallas County,8,9,2267,970,1297,274,316,682,960,1,4,8,10,1,0,4,7,277,322,684,962,3,11,9,10,1,0,958,1289,267,309,678,960,1,4,8,10,0,0,4,6,270,314,680,962,3,10,9,10,0,0,12,8,7,7,4,0,0,0,0,0,1,0,0,1,7,8,4,0,0,1,0,0,1,0 -050,01,047,Alabama,Dallas County,8,10,2275,1033,1242,341,333,671,887,3,6,12,7,1,0,5,9,346,339,671,890,6,8,13,12,2,2,1024,1232,336,332,668,881,2,5,12,7,1,0,5,7,341,337,668,883,5,7,13,10,2,2,9,10,5,1,3,6,1,1,0,0,0,0,0,2,5,2,3,7,1,1,0,2,0,0 -050,01,047,Alabama,Dallas County,8,11,2872,1296,1576,447,446,831,1118,8,1,5,4,2,1,3,6,450,452,832,1120,10,4,5,5,2,1,1280,1568,435,443,827,1113,8,1,5,4,2,1,3,6,438,449,828,1115,10,4,5,5,2,1,16,8,12,3,4,5,0,0,0,0,0,0,0,0,12,3,4,5,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,8,12,3119,1431,1688,489,493,922,1180,3,1,5,9,1,1,11,4,496,496,928,1181,10,3,6,10,3,2,1425,1677,488,493,919,1169,2,1,5,9,1,1,10,4,494,496,924,1170,8,3,6,10,3,2,6,11,1,0,3,11,1,0,0,0,0,0,1,0,2,0,4,11,2,0,0,0,0,0 -050,01,047,Alabama,Dallas County,8,13,2676,1237,1439,495,521,726,897,2,4,7,8,0,0,7,9,500,527,731,901,6,9,9,12,0,0,1223,1430,489,515,718,895,2,4,7,8,0,0,7,8,494,520,723,899,6,8,9,12,0,0,14,9,6,6,8,2,0,0,0,0,0,0,0,1,6,7,8,2,0,1,0,0,0,0 -050,01,047,Alabama,Dallas County,8,14,2306,1081,1225,487,494,581,725,3,2,5,0,1,0,4,4,490,497,583,726,6,4,5,0,1,2,1074,1220,482,492,579,722,3,2,5,0,1,0,4,4,485,495,581,723,6,4,5,0,1,2,7,5,5,2,2,3,0,0,0,0,0,0,0,0,5,2,2,3,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,8,15,1640,742,898,329,359,403,530,4,2,2,2,0,0,4,5,333,361,403,533,6,6,3,2,1,1,736,894,328,358,399,527,4,2,2,2,0,0,3,5,331,360,399,530,5,6,3,2,1,1,6,4,1,1,4,3,0,0,0,0,0,0,1,0,2,1,4,3,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,8,16,1207,494,713,231,314,257,395,1,1,4,1,0,0,1,2,232,315,257,397,2,3,4,2,0,0,493,710,231,313,256,393,1,1,4,1,0,0,1,2,232,314,256,395,2,3,4,2,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,8,17,806,310,496,154,236,154,254,2,1,0,0,0,0,0,5,154,241,154,254,2,5,0,1,0,0,308,494,152,235,154,253,2,1,0,0,0,0,0,5,152,240,154,253,2,5,0,1,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,8,18,752,229,523,133,268,89,251,3,3,1,1,0,0,3,0,135,268,91,251,4,3,2,1,0,0,228,520,132,267,89,249,3,3,1,1,0,0,3,0,134,267,91,249,4,3,2,1,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,9,0,40105,18506,21599,5378,5809,12769,15452,68,40,122,98,12,7,157,193,5518,5987,12867,15566,115,101,150,126,22,16,18287,21410,5261,5708,12697,15384,54,35,116,94,7,7,152,182,5396,5875,12794,15496,97,92,143,118,16,15,219,189,117,101,72,68,14,5,6,4,5,0,5,11,122,112,73,70,18,9,7,8,6,1 -050,01,047,Alabama,Dallas County,9,1,2510,1221,1289,237,241,935,988,3,3,14,8,0,1,32,48,267,286,960,1026,7,12,17,13,2,2,1199,1268,227,226,928,988,1,0,11,6,0,1,32,47,257,270,953,1026,5,8,14,11,2,2,22,21,10,15,7,0,2,3,3,2,0,0,0,1,10,16,7,0,2,4,3,2,0,0 -050,01,047,Alabama,Dallas County,9,2,2798,1391,1407,274,280,1084,1096,4,1,9,3,0,1,20,26,292,304,1100,1114,7,6,11,7,1,2,1363,1381,255,262,1078,1092,3,1,8,3,0,1,19,22,272,282,1094,1110,5,5,10,5,1,1,28,26,19,18,6,4,1,0,1,0,0,0,1,4,20,22,6,4,2,1,1,2,0,1 -050,01,047,Alabama,Dallas County,9,3,2723,1394,1329,270,258,1099,1041,5,1,2,3,0,1,18,25,286,282,1113,1058,7,4,6,8,1,2,1381,1312,263,251,1093,1033,5,1,2,2,0,1,18,24,279,274,1107,1049,7,4,6,7,1,2,13,17,7,7,6,8,0,0,0,1,0,0,0,1,7,8,6,9,0,0,0,1,0,0 -050,01,047,Alabama,Dallas County,9,4,2896,1458,1438,294,270,1137,1151,3,0,5,5,1,0,18,12,310,281,1151,1159,6,4,8,6,2,0,1440,1423,285,259,1128,1148,3,0,5,5,1,0,18,11,301,269,1142,1156,6,4,8,5,2,0,18,15,9,11,9,3,0,0,0,0,0,0,0,1,9,12,9,3,0,0,0,1,0,0 -050,01,047,Alabama,Dallas County,9,5,2600,1228,1372,255,271,951,1082,6,4,7,5,0,0,9,10,261,280,956,1089,9,9,9,5,2,0,1218,1358,250,265,948,1075,6,3,7,5,0,0,7,10,254,274,952,1082,8,8,9,5,2,0,10,14,5,6,3,7,0,1,0,0,0,0,2,0,7,6,4,7,1,1,0,0,0,0 -050,01,047,Alabama,Dallas County,9,6,2464,1105,1359,255,285,834,1059,3,4,6,1,1,0,6,10,261,293,836,1064,5,10,8,2,1,1,1091,1345,247,278,830,1052,2,4,6,1,0,0,6,10,253,286,832,1057,4,10,8,2,0,1,14,14,8,7,4,7,1,0,0,0,1,0,0,0,8,7,4,7,1,0,0,0,1,0 -050,01,047,Alabama,Dallas County,9,7,2247,1008,1239,270,278,703,941,8,2,18,11,3,1,6,6,275,284,705,945,10,2,20,13,4,1,991,1224,263,266,700,938,4,2,18,11,0,1,6,6,268,272,702,942,6,2,20,13,1,1,17,15,7,12,3,3,4,0,0,0,3,0,0,0,7,12,3,3,4,0,0,0,3,0 -050,01,047,Alabama,Dallas County,9,8,2271,1017,1254,256,270,740,963,4,0,9,14,0,1,8,6,264,276,744,966,7,3,10,14,0,1,998,1248,246,267,735,962,2,0,7,13,0,1,8,5,254,272,739,964,5,3,8,13,0,1,19,6,10,3,5,1,2,0,2,1,0,0,0,1,10,4,5,2,2,0,2,1,0,0 -050,01,047,Alabama,Dallas County,9,9,2189,918,1271,252,305,647,942,4,3,10,13,2,0,3,8,254,312,649,945,5,8,11,14,2,0,903,1264,244,299,643,942,2,3,10,13,1,0,3,7,246,305,645,945,3,7,11,14,1,0,15,7,8,6,4,0,2,0,0,0,1,0,0,1,8,7,4,0,2,1,0,0,1,0 -050,01,047,Alabama,Dallas County,9,10,2187,1003,1184,327,313,661,854,2,6,9,7,1,0,3,4,330,316,663,855,3,7,9,9,1,1,995,1179,323,312,658,851,1,5,9,7,1,0,3,4,326,315,660,852,2,6,9,9,1,1,8,5,4,1,3,3,1,1,0,0,0,0,0,0,4,1,3,3,1,1,0,0,0,0 -050,01,047,Alabama,Dallas County,9,11,2727,1235,1492,404,422,812,1058,7,2,8,3,0,1,4,6,407,428,815,1060,9,4,8,4,0,2,1219,1481,391,420,809,1050,7,2,8,3,0,1,4,5,394,425,812,1052,9,4,8,3,0,2,16,11,13,2,3,8,0,0,0,0,0,0,0,1,13,3,3,8,0,0,0,1,0,0 -050,01,047,Alabama,Dallas County,9,12,3009,1383,1626,468,455,899,1151,5,1,2,12,3,0,6,7,474,461,901,1154,8,4,4,14,4,0,1377,1616,467,454,896,1142,4,1,2,12,3,0,5,7,472,460,898,1145,6,4,3,14,3,0,6,10,1,1,3,9,1,0,0,0,0,0,1,0,2,1,3,9,2,0,1,0,1,0 -050,01,047,Alabama,Dallas County,9,13,2731,1258,1473,491,506,744,945,1,4,11,8,0,1,11,9,500,514,748,946,9,9,13,10,0,3,1244,1464,485,501,736,942,1,4,11,8,0,1,11,8,494,508,740,943,9,8,13,10,0,3,14,9,6,5,8,3,0,0,0,0,0,0,0,1,6,6,8,3,0,1,0,0,0,0 -050,01,047,Alabama,Dallas County,9,14,2360,1111,1249,505,503,591,740,4,2,6,0,1,0,4,4,508,507,592,740,6,5,8,0,1,1,1102,1243,499,501,588,736,4,2,6,0,1,0,4,4,502,505,589,736,6,5,8,0,1,1,9,6,6,2,3,4,0,0,0,0,0,0,0,0,6,2,3,4,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,9,15,1653,741,912,325,363,410,543,1,1,2,2,0,0,3,3,328,366,410,544,4,2,3,3,0,0,735,907,324,361,406,540,1,1,2,2,0,0,2,3,326,364,406,541,3,2,3,3,0,0,6,5,1,2,4,3,0,0,0,0,0,0,1,0,2,2,4,3,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,9,16,1184,495,689,227,292,260,390,2,2,3,1,0,0,3,4,230,296,260,391,4,4,3,2,1,0,494,686,227,291,259,388,2,2,3,1,0,0,3,4,230,295,259,389,4,4,3,2,1,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,9,17,824,332,492,153,237,177,248,2,1,0,1,0,0,0,5,153,241,177,250,2,5,0,1,0,0,330,490,151,236,177,247,2,1,0,1,0,0,0,5,151,240,177,249,2,5,0,1,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,9,18,732,208,524,115,260,85,260,4,3,1,1,0,0,3,0,118,260,87,260,7,3,2,1,0,0,207,521,114,259,85,258,4,3,1,1,0,0,3,0,117,259,87,258,7,3,2,1,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,10,0,39263,18120,21143,5229,5655,12525,15143,71,39,133,111,11,6,151,189,5359,5813,12625,15270,116,98,156,141,23,17,17907,20952,5116,5560,12457,15072,55,31,127,105,6,6,146,178,5241,5707,12555,15194,97,86,150,133,18,16,213,191,113,95,68,71,16,8,6,6,5,0,5,11,118,106,70,76,19,12,6,8,5,1 -050,01,047,Alabama,Dallas County,10,1,2415,1195,1220,227,237,914,929,4,1,16,12,0,1,34,40,259,273,942,961,8,8,20,16,4,2,1179,1203,220,228,911,927,1,0,13,8,0,1,34,39,252,263,939,958,5,7,17,12,4,2,16,17,7,9,3,2,3,1,3,4,0,0,0,1,7,10,3,3,3,1,3,4,0,0 -050,01,047,Alabama,Dallas County,10,2,2663,1332,1331,276,260,1031,1030,3,5,9,2,0,1,13,33,288,292,1041,1053,4,10,11,7,1,2,1303,1299,257,240,1025,1027,1,1,8,2,0,1,12,28,268,267,1034,1048,2,4,10,6,1,2,29,32,19,20,6,3,2,4,1,0,0,0,1,5,20,25,7,5,2,6,1,1,0,0 -050,01,047,Alabama,Dallas County,10,3,2731,1390,1341,278,267,1084,1045,5,2,2,3,0,0,21,24,295,288,1099,1063,9,7,6,4,2,3,1372,1324,266,258,1078,1040,5,1,2,2,0,0,21,23,283,278,1093,1058,9,6,6,3,2,2,18,17,12,9,6,5,0,1,0,1,0,0,0,1,12,10,6,5,0,1,0,1,0,1 -050,01,047,Alabama,Dallas County,10,4,2751,1367,1384,268,257,1079,1109,3,0,5,4,1,0,11,14,277,270,1088,1121,5,4,6,6,2,0,1351,1368,257,248,1074,1102,3,0,5,4,1,0,11,14,266,261,1083,1114,5,4,6,6,2,0,16,16,11,9,5,7,0,0,0,0,0,0,0,0,11,9,5,7,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,10,5,2418,1153,1265,234,252,898,1000,5,2,7,3,0,0,9,8,243,259,904,1005,9,4,8,4,0,1,1144,1254,232,247,893,996,5,1,7,3,0,0,7,7,239,253,899,1000,7,3,8,4,0,1,9,11,2,5,5,4,0,1,0,0,0,0,2,1,4,6,5,5,2,1,0,0,0,0 -050,01,047,Alabama,Dallas County,10,6,2483,1128,1355,269,288,844,1056,5,1,3,2,0,0,7,8,276,295,847,1060,7,4,5,4,0,0,1111,1339,259,282,838,1046,4,1,3,2,0,0,7,8,266,289,841,1050,6,4,5,4,0,0,17,16,10,6,6,10,1,0,0,0,0,0,0,0,10,6,6,10,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,10,7,2195,1009,1186,272,276,699,884,9,3,20,16,4,1,5,6,277,279,701,889,12,5,20,18,4,1,993,1171,265,264,698,881,5,3,20,16,0,1,5,6,270,267,700,886,8,5,20,18,0,1,16,15,7,12,1,3,4,0,0,0,4,0,0,0,7,12,1,3,4,0,0,0,4,0 -050,01,047,Alabama,Dallas County,10,8,2228,1001,1227,258,253,718,956,4,0,12,10,0,0,9,8,264,260,723,961,8,4,14,11,2,0,982,1221,250,250,711,954,2,0,10,10,0,0,9,7,256,256,716,958,6,3,12,11,2,0,19,6,8,3,7,2,2,0,2,0,0,0,0,1,8,4,7,3,2,1,2,0,0,0 -050,01,047,Alabama,Dallas County,10,9,2081,860,1221,218,272,629,925,1,2,9,15,1,1,2,6,220,277,631,926,1,5,9,18,1,2,851,1216,212,269,627,925,1,2,9,14,0,1,2,5,214,273,629,926,1,5,9,16,0,2,9,5,6,3,2,0,0,0,0,1,1,0,0,1,6,4,2,0,0,0,0,2,1,0 -050,01,047,Alabama,Dallas County,10,10,2179,1001,1178,337,318,645,842,3,6,10,8,1,0,5,4,341,322,647,844,7,6,10,10,1,0,990,1172,332,315,641,840,1,5,10,8,1,0,5,4,336,319,643,842,5,5,10,10,1,0,11,6,5,3,4,2,2,1,0,0,0,0,0,0,5,3,4,2,2,1,0,0,0,0 -050,01,047,Alabama,Dallas County,10,11,2562,1174,1388,373,380,782,992,6,3,10,6,0,1,3,6,376,384,783,995,8,5,10,8,0,2,1160,1380,364,378,778,986,5,3,10,6,0,1,3,6,367,382,779,989,7,5,10,8,0,2,14,8,9,2,4,6,1,0,0,0,0,0,0,0,9,2,4,6,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,10,12,2934,1331,1603,444,457,868,1125,8,1,2,12,3,0,6,8,449,463,872,1129,11,4,2,14,3,2,1323,1592,439,455,867,1116,7,1,2,12,3,0,5,8,443,461,870,1120,10,4,2,14,3,2,8,11,5,2,1,9,1,0,0,0,0,0,1,0,6,2,2,9,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,10,13,2813,1281,1532,478,483,778,1027,1,3,13,10,0,1,11,8,485,487,784,1031,6,10,16,11,1,1,1270,1521,477,479,768,1021,1,3,13,10,0,1,11,7,484,482,774,1025,6,9,16,11,1,1,11,11,1,4,10,6,0,0,0,0,0,0,0,1,1,5,10,6,0,1,0,0,0,0 -050,01,047,Alabama,Dallas County,10,14,2254,1063,1191,450,482,594,702,4,2,9,3,1,0,5,2,453,483,596,704,6,3,12,3,1,0,1057,1184,445,479,593,698,4,2,9,3,1,0,5,2,448,480,595,700,6,3,12,3,1,0,6,7,5,3,1,4,0,0,0,0,0,0,0,0,5,3,1,4,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,10,15,1793,793,1000,370,398,415,594,2,2,1,1,0,0,5,5,374,401,419,597,4,7,1,1,0,0,783,995,367,396,409,591,2,2,1,1,0,0,4,5,370,399,413,594,3,7,1,1,0,0,10,5,3,2,6,3,0,0,0,0,0,0,1,0,4,2,6,3,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,10,16,1200,503,697,217,285,277,405,2,2,4,2,0,0,3,3,220,287,277,406,4,5,4,2,1,0,503,694,217,284,277,403,2,2,4,2,0,0,3,3,220,286,277,404,4,5,4,2,1,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,10,17,852,338,514,156,230,180,277,2,1,0,1,0,0,0,5,156,232,180,279,2,4,0,3,0,1,336,512,155,229,179,276,2,1,0,1,0,0,0,5,155,231,179,278,2,4,0,3,0,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,10,18,711,201,510,104,260,90,245,4,3,1,1,0,0,2,1,106,261,91,246,5,3,2,1,0,0,199,507,102,259,90,243,4,3,1,1,0,0,2,1,104,260,91,244,5,3,2,1,0,0,2,3,2,1,0,2,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,11,0,38270,17681,20589,5083,5493,12227,14739,70,39,134,115,11,6,156,197,5224,5669,12321,14875,126,85,154,146,17,17,17459,20409,4960,5408,12159,14669,54,31,129,109,6,6,151,186,5096,5573,12250,14798,109,75,147,138,12,16,222,180,123,85,68,70,16,8,5,6,5,0,5,11,128,96,71,77,17,10,7,8,5,1 -050,01,047,Alabama,Dallas County,11,1,2341,1172,1169,220,226,903,892,3,0,13,10,0,1,33,40,252,264,930,926,8,6,18,13,0,2,1157,1153,212,219,900,888,1,0,11,6,0,1,33,39,244,256,927,921,6,6,16,9,0,2,15,16,8,7,3,4,2,0,2,4,0,0,0,1,8,8,3,5,2,0,2,4,0,0 -050,01,047,Alabama,Dallas County,11,2,2436,1229,1207,272,245,926,923,4,5,10,3,0,0,17,31,289,275,939,948,8,10,10,6,1,1,1195,1180,249,228,920,921,1,0,9,3,0,0,16,28,265,255,932,945,4,4,9,5,1,1,34,27,23,17,6,2,3,5,1,0,0,0,1,3,24,20,7,3,4,6,1,1,0,0 -050,01,047,Alabama,Dallas County,11,3,2708,1386,1322,281,263,1076,1025,3,3,5,2,0,1,21,28,302,289,1092,1047,6,5,6,6,1,3,1365,1304,266,254,1070,1020,3,2,5,1,0,1,21,26,287,278,1086,1041,6,3,6,5,1,3,21,18,15,9,6,5,0,1,0,1,0,0,0,2,15,11,6,6,0,2,0,1,0,0 -050,01,047,Alabama,Dallas County,11,4,2641,1337,1304,278,260,1034,1023,5,0,5,3,1,0,14,18,291,278,1044,1036,9,3,5,5,2,0,1320,1287,266,249,1029,1018,5,0,5,3,1,0,14,17,279,266,1039,1030,9,3,5,5,2,0,17,17,12,11,5,5,0,0,0,0,0,0,0,1,12,12,5,6,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,11,5,2354,1117,1237,216,231,878,992,4,1,8,3,0,0,11,10,226,240,886,998,7,3,9,6,0,1,1107,1230,213,226,873,991,4,1,8,3,0,0,9,9,221,234,879,996,7,3,9,6,0,0,10,7,3,5,5,1,0,0,0,0,0,0,2,1,5,6,7,2,0,0,0,0,0,1 -050,01,047,Alabama,Dallas County,11,6,2375,1078,1297,248,280,816,1007,6,2,2,2,0,0,6,6,253,285,818,1012,8,4,4,2,1,0,1061,1284,238,278,810,997,5,1,2,2,0,0,6,6,243,283,812,1002,7,3,4,2,1,0,17,13,10,2,6,10,1,1,0,0,0,0,0,0,10,2,6,10,1,1,0,0,0,0 -050,01,047,Alabama,Dallas County,11,7,2107,980,1127,264,248,684,853,7,3,17,17,3,1,5,5,267,253,688,854,9,5,18,19,3,1,964,1114,255,240,684,848,3,3,17,17,0,1,5,5,258,245,688,849,5,5,18,19,0,1,16,13,9,8,0,5,4,0,0,0,3,0,0,0,9,8,0,5,4,0,0,0,3,0 -050,01,047,Alabama,Dallas County,11,8,2191,980,1211,240,278,718,912,5,0,9,11,1,0,7,10,247,287,719,918,8,2,11,12,2,2,963,1201,235,271,711,910,3,0,7,11,0,0,7,9,242,279,712,915,6,2,9,12,1,2,17,10,5,7,7,2,2,0,2,0,1,0,0,1,5,8,7,3,2,0,2,0,1,0 -050,01,047,Alabama,Dallas County,11,9,2039,871,1168,235,251,620,896,2,1,11,14,1,1,2,5,237,255,620,899,3,2,12,16,1,1,863,1165,229,250,619,896,2,1,11,13,0,1,2,4,231,253,619,899,3,2,12,14,0,1,8,3,6,1,1,0,0,0,0,1,1,0,0,1,6,2,1,0,0,0,0,2,1,0 -050,01,047,Alabama,Dallas County,11,10,2117,952,1165,300,304,637,842,3,6,8,7,0,0,4,6,303,309,639,845,5,9,9,7,0,1,940,1160,296,301,631,841,1,5,8,7,0,0,4,6,299,306,633,844,3,8,9,7,0,1,12,5,4,3,6,1,2,1,0,0,0,0,0,0,4,3,6,1,2,1,0,0,0,0 -050,01,047,Alabama,Dallas County,11,11,2420,1122,1298,361,349,740,932,6,3,11,8,1,1,3,5,363,353,741,935,8,4,12,10,1,1,1108,1290,352,347,736,926,5,3,11,8,1,1,3,5,354,351,737,929,7,4,12,10,1,1,14,8,9,2,4,6,1,0,0,0,0,0,0,0,9,2,4,6,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,11,12,2848,1258,1590,412,459,828,1109,7,2,3,11,2,0,6,9,417,467,829,1112,13,5,3,14,2,1,1250,1578,405,457,827,1099,7,2,3,11,2,0,6,9,410,465,828,1102,13,5,3,14,2,1,8,12,7,2,1,10,0,0,0,0,0,0,0,0,7,2,1,10,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,11,13,2810,1273,1537,461,457,786,1057,1,1,13,15,1,1,11,6,471,461,789,1060,8,4,15,16,1,2,1261,1525,459,454,778,1049,0,1,13,15,1,1,10,5,468,457,781,1051,7,4,14,16,1,2,12,12,2,3,8,8,1,0,0,0,0,0,1,1,3,4,8,9,1,0,1,0,0,0 -050,01,047,Alabama,Dallas County,11,14,2290,1067,1223,440,487,606,723,4,4,12,4,0,0,5,5,443,491,609,725,8,8,12,5,0,0,1062,1217,438,484,603,720,4,4,12,4,0,0,5,5,441,488,606,722,8,8,12,5,0,0,5,6,2,3,3,3,0,0,0,0,0,0,0,0,2,3,3,3,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,11,15,1834,808,1026,370,388,429,631,2,1,2,2,1,0,4,4,372,392,431,631,5,4,3,3,2,0,799,1021,366,386,424,628,2,1,2,2,1,0,4,4,368,390,426,628,5,4,3,3,2,0,9,5,4,2,5,3,0,0,0,0,0,0,0,0,4,2,5,3,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,11,16,1204,516,688,239,284,266,395,2,3,4,2,0,0,5,4,244,287,266,398,6,4,5,2,0,1,513,686,238,284,265,393,2,3,4,2,0,0,4,4,242,287,265,396,6,4,4,2,0,1,3,2,1,0,1,2,0,0,0,0,0,0,1,0,2,0,1,2,0,0,1,0,0,0 -050,01,047,Alabama,Dallas County,11,17,844,324,520,147,231,175,283,2,1,0,0,0,0,0,5,147,231,175,287,2,4,0,3,0,0,322,517,146,230,174,281,2,1,0,0,0,0,0,5,146,230,174,285,2,4,0,3,0,0,2,3,1,1,1,2,0,0,0,0,0,0,0,0,1,1,1,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,11,18,711,211,500,99,252,105,244,4,3,1,1,0,0,2,0,100,252,106,244,5,3,2,1,0,0,209,497,97,250,105,243,4,3,1,1,0,0,2,0,98,250,106,243,5,3,2,1,0,0,2,3,2,2,0,1,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,12,0,37182,17179,20003,4921,5311,11912,14348,72,42,102,97,11,6,161,199,5064,5489,12013,14479,124,93,127,126,17,19,16953,19821,4796,5222,11846,14282,54,32,97,91,6,6,154,188,4933,5391,11943,14404,104,80,121,119,11,19,226,182,125,89,66,66,18,10,5,6,5,0,7,11,131,98,70,75,20,13,6,7,6,0 -050,01,047,Alabama,Dallas County,12,1,2202,1131,1071,215,218,871,809,5,2,10,3,0,0,30,39,243,254,895,840,10,9,11,5,2,3,1112,1057,205,211,868,806,1,0,8,2,0,0,30,38,233,246,892,836,6,7,9,4,2,3,19,14,10,7,3,3,4,2,2,1,0,0,0,1,10,8,3,4,4,2,2,1,0,0 -050,01,047,Alabama,Dallas County,12,2,2311,1147,1164,249,227,865,895,3,5,6,6,0,1,24,30,272,252,883,920,7,10,9,10,0,3,1121,1132,233,207,859,894,1,0,6,3,0,1,22,27,254,230,875,917,5,3,9,7,0,3,26,32,16,20,6,1,2,5,0,3,0,0,2,3,18,22,8,3,2,7,0,3,0,0 -050,01,047,Alabama,Dallas County,12,3,2647,1350,1297,260,260,1060,1000,5,3,5,2,0,1,20,31,279,290,1074,1023,9,8,8,6,0,2,1332,1278,246,249,1059,996,4,2,4,1,0,1,19,29,264,277,1072,1017,8,7,7,5,0,2,18,19,14,11,1,4,1,1,1,1,0,0,1,2,15,13,2,6,1,1,1,1,0,0 -050,01,047,Alabama,Dallas County,12,4,2534,1313,1221,271,243,1016,962,3,0,5,2,1,0,17,14,287,257,1027,971,7,2,8,4,1,1,1290,1203,255,232,1009,956,3,0,5,2,1,0,17,13,271,245,1020,965,7,2,8,3,1,1,23,18,16,11,7,6,0,0,0,0,0,0,0,1,16,12,7,6,0,0,0,1,0,0 -050,01,047,Alabama,Dallas County,12,5,2231,1069,1162,214,220,834,926,5,1,6,3,0,0,10,12,224,231,839,936,8,3,7,4,1,0,1056,1153,208,213,828,925,5,1,6,3,0,0,9,11,217,223,833,934,7,3,7,4,1,0,13,9,6,7,6,1,0,0,0,0,0,0,1,1,7,8,6,2,1,0,0,0,0,0 -050,01,047,Alabama,Dallas County,12,6,2276,1039,1237,250,257,777,965,5,3,1,2,0,0,6,10,256,265,779,971,7,8,3,3,0,0,1024,1227,241,255,773,958,4,2,1,2,0,0,5,10,246,263,775,964,5,7,3,3,0,0,15,10,9,2,4,7,1,1,0,0,0,0,1,0,10,2,4,7,2,1,0,0,0,0 -050,01,047,Alabama,Dallas County,12,7,2045,939,1106,235,236,678,844,6,3,12,17,2,0,6,6,240,242,682,847,7,4,14,18,2,1,926,1095,228,230,676,839,4,3,12,17,0,0,6,6,233,236,680,842,5,4,14,18,0,1,13,11,7,6,2,5,2,0,0,0,2,0,0,0,7,6,2,5,2,0,0,0,2,0 -050,01,047,Alabama,Dallas County,12,8,2080,917,1163,232,273,661,877,7,0,7,6,2,0,8,7,239,279,665,880,10,2,9,8,3,1,898,1153,225,266,657,874,3,0,5,6,0,0,8,7,232,272,661,877,6,2,7,8,1,1,19,10,7,7,4,3,4,0,2,0,2,0,0,0,7,7,4,3,4,0,2,0,2,0 -050,01,047,Alabama,Dallas County,12,9,1997,873,1124,251,254,616,851,2,0,3,9,0,2,1,8,252,261,616,855,3,2,3,12,0,3,863,1122,245,254,612,851,2,0,3,8,0,2,1,7,246,260,612,854,3,2,3,11,0,3,10,2,6,0,4,0,0,0,0,1,0,0,0,1,6,1,4,1,0,0,0,1,0,0 -050,01,047,Alabama,Dallas County,12,10,2097,920,1177,272,290,635,871,3,5,6,4,1,0,3,7,275,297,637,876,4,7,9,4,1,0,906,1171,266,286,630,870,1,5,6,4,0,0,3,6,269,292,632,874,2,7,9,4,0,0,14,6,6,4,5,1,2,0,0,0,1,0,0,1,6,5,5,2,2,0,0,0,1,0 -050,01,047,Alabama,Dallas County,12,11,2232,1011,1221,329,336,663,868,5,5,10,6,1,1,3,5,332,341,664,870,7,7,10,7,1,1,1000,1213,322,335,660,862,4,4,10,6,1,1,3,5,325,340,661,864,6,6,10,7,1,1,11,8,7,1,3,6,1,1,0,0,0,0,0,0,7,1,3,6,1,1,0,0,0,0 -050,01,047,Alabama,Dallas County,12,12,2760,1236,1524,416,422,804,1085,7,1,2,10,2,0,5,6,420,427,806,1088,10,4,3,11,2,0,1224,1514,407,420,801,1077,7,1,2,10,2,0,5,6,411,425,803,1080,10,4,3,11,2,0,12,10,9,2,3,8,0,0,0,0,0,0,0,0,9,2,3,8,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,12,13,2766,1255,1511,440,451,793,1037,2,1,8,17,1,1,11,4,446,454,799,1038,9,4,10,18,2,1,1247,1501,439,451,788,1028,1,1,8,17,1,1,10,3,444,454,794,1028,8,3,9,18,2,1,8,10,1,0,5,9,1,0,0,0,0,0,1,1,2,0,5,10,1,1,1,0,0,0 -050,01,047,Alabama,Dallas County,12,14,2304,1053,1251,413,469,618,767,3,4,13,5,0,0,6,6,418,473,620,769,7,7,14,7,0,1,1045,1243,411,463,612,765,3,4,13,5,0,0,6,6,416,467,614,767,7,7,14,7,0,1,8,8,2,6,6,2,0,0,0,0,0,0,0,0,2,6,6,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,12,15,1898,855,1043,376,396,469,639,2,2,3,1,1,0,4,5,380,400,471,640,5,4,3,3,1,1,846,1038,371,395,465,635,2,2,3,1,1,0,4,5,375,399,467,636,5,4,3,3,1,1,9,5,5,1,4,4,0,0,0,0,0,0,0,0,5,1,4,4,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,12,16,1226,530,696,254,274,265,412,3,3,3,3,0,0,5,4,256,276,268,414,6,5,4,4,1,1,526,693,253,273,263,410,3,3,3,3,0,0,4,4,255,275,265,412,6,5,4,4,0,1,4,3,1,1,2,2,0,0,0,0,0,0,1,0,1,1,3,2,0,0,0,0,1,0 -050,01,047,Alabama,Dallas County,12,17,847,322,525,139,236,180,285,2,1,1,0,0,0,0,3,139,239,180,285,2,3,1,1,0,0,320,522,138,235,179,283,2,1,1,0,0,0,0,3,138,238,179,283,2,3,1,1,0,0,2,3,1,1,1,2,0,0,0,0,0,0,0,0,1,1,1,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,12,18,729,219,510,105,249,107,255,4,3,1,1,0,0,2,2,106,251,108,256,6,4,1,1,0,0,217,506,103,247,107,253,4,3,1,1,0,0,2,2,104,249,108,254,6,4,1,1,0,0,2,4,2,2,0,2,0,0,0,0,0,0,0,0,2,2,0,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,13,0,36098,16686,19412,4745,5128,11601,13954,70,42,104,89,10,6,156,193,4883,5295,11697,14080,116,103,133,117,16,18,16448,19219,4617,5029,11528,13887,52,32,99,83,5,6,147,182,4747,5187,11622,14008,92,87,126,109,11,18,238,193,128,99,73,67,18,10,5,6,5,0,9,11,136,108,75,72,24,16,7,8,5,0 -050,01,047,Alabama,Dallas County,13,1,2111,1092,1019,204,210,848,766,2,2,7,3,0,0,31,38,231,247,876,799,7,4,8,7,1,2,1080,1002,199,200,845,763,0,0,5,2,0,0,31,37,226,236,873,796,5,2,6,5,1,2,12,17,5,10,3,3,2,2,2,1,0,0,0,1,5,11,3,3,2,2,2,2,0,0 -050,01,047,Alabama,Dallas County,13,2,2239,1093,1146,244,223,817,885,5,4,7,5,0,1,20,28,262,247,832,908,10,9,10,8,1,3,1061,1109,223,197,812,883,1,0,7,2,0,1,18,26,239,219,827,905,5,5,9,4,1,3,32,37,21,26,5,2,4,4,0,3,0,0,2,2,23,28,5,3,5,4,1,4,0,0 -050,01,047,Alabama,Dallas County,13,3,2559,1306,1253,248,259,1028,964,6,3,6,3,0,1,18,23,264,278,1042,981,9,11,8,6,1,3,1288,1233,236,247,1025,961,5,1,5,3,0,1,17,20,251,264,1039,977,7,6,7,6,1,3,18,20,12,12,3,3,1,2,1,0,0,0,1,3,13,14,3,4,2,5,1,0,0,0 -050,01,047,Alabama,Dallas County,13,4,2391,1273,1118,253,223,995,877,3,0,4,3,0,0,18,15,269,235,1010,887,5,6,6,5,1,0,1252,1101,240,212,987,873,3,0,4,2,0,0,18,14,256,223,1002,882,5,6,6,4,1,0,21,17,13,11,8,4,0,0,0,1,0,0,0,1,13,12,8,5,0,0,0,1,0,0 -050,01,047,Alabama,Dallas County,13,5,2193,1065,1128,219,215,830,896,4,2,3,3,1,0,8,12,226,224,837,906,6,4,3,6,1,0,1049,1118,210,209,823,893,4,2,3,3,1,0,8,11,217,217,830,902,6,4,3,6,1,0,16,10,9,6,7,3,0,0,0,0,0,0,0,1,9,7,7,4,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,13,6,2108,943,1165,227,239,698,907,5,2,7,2,0,0,6,15,233,251,700,916,8,8,8,4,0,1,926,1155,215,236,695,901,5,1,7,2,0,0,4,15,219,248,696,910,7,7,8,4,0,1,17,10,12,3,3,6,0,1,0,0,0,0,2,0,14,3,4,6,1,1,0,0,0,0 -050,01,047,Alabama,Dallas County,13,7,2012,933,1079,226,227,683,833,4,2,12,10,2,0,6,7,232,234,684,837,8,4,13,10,2,1,914,1069,217,223,679,827,2,2,12,10,0,0,4,7,221,230,679,831,5,4,13,10,0,1,19,10,9,4,4,6,2,0,0,0,2,0,2,0,11,4,5,6,3,0,0,0,2,0 -050,01,047,Alabama,Dallas County,13,8,2004,881,1123,236,264,620,847,7,2,7,5,2,0,9,5,245,269,624,848,10,5,8,6,3,0,868,1112,233,255,616,845,4,2,6,5,0,0,9,5,242,260,620,846,7,5,7,6,1,0,13,11,3,9,4,2,3,0,1,0,2,0,0,0,3,9,4,2,3,0,1,0,2,0 -050,01,047,Alabama,Dallas County,13,9,1956,865,1091,229,232,630,844,3,0,3,5,0,2,0,8,229,238,630,849,3,4,3,5,0,3,849,1088,222,232,624,843,1,0,2,4,0,2,0,7,222,238,624,847,1,3,2,4,0,3,16,3,7,0,6,1,2,0,1,1,0,0,0,1,7,0,6,2,2,1,1,1,0,0 -050,01,047,Alabama,Dallas County,13,10,2008,858,1150,248,289,595,842,4,5,5,7,1,0,5,7,252,296,598,845,6,9,6,8,1,0,844,1145,241,285,591,842,2,5,5,7,0,0,5,6,245,291,594,845,4,8,6,8,0,0,14,5,7,4,4,0,2,0,0,0,1,0,0,1,7,5,4,0,2,1,0,0,1,0 -050,01,047,Alabama,Dallas County,13,11,2111,971,1140,324,312,634,811,3,5,8,7,0,0,2,5,326,316,634,814,4,7,9,8,0,0,960,1131,319,310,629,805,2,4,8,7,0,0,2,5,321,314,629,808,3,6,9,8,0,0,11,9,5,2,5,6,1,1,0,0,0,0,0,0,5,2,5,6,1,1,0,0,0,0 -050,01,047,Alabama,Dallas County,13,12,2624,1172,1452,386,406,766,1028,8,1,5,9,2,1,5,7,390,411,767,1029,9,4,9,13,2,2,1156,1445,373,405,763,1022,8,1,5,9,2,1,5,7,377,410,764,1023,9,4,9,13,2,2,16,7,13,1,3,6,0,0,0,0,0,0,0,0,13,1,3,6,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,13,13,2729,1242,1487,428,420,791,1047,3,1,8,17,1,1,11,1,435,421,794,1047,9,2,14,17,2,1,1236,1473,427,419,788,1034,2,1,8,17,1,1,10,1,433,420,791,1034,7,2,14,17,2,1,6,14,1,1,3,13,1,0,0,0,0,0,1,0,2,1,3,13,2,0,0,0,0,0 -050,01,047,Alabama,Dallas County,13,14,2320,1046,1274,388,451,637,805,2,4,13,5,0,0,6,9,394,458,637,809,5,9,16,7,0,1,1036,1266,386,446,629,803,2,4,13,5,0,0,6,8,392,452,629,807,5,8,16,7,0,1,10,8,2,5,8,2,0,0,0,0,0,0,0,1,2,6,8,2,0,1,0,0,0,0 -050,01,047,Alabama,Dallas County,13,15,1929,888,1041,387,409,488,625,3,2,5,1,1,0,4,4,391,413,489,626,4,4,7,1,1,1,881,1037,382,408,486,622,3,2,5,1,1,0,4,4,386,412,487,623,4,4,7,1,1,1,7,4,5,1,2,3,0,0,0,0,0,0,0,0,5,1,2,3,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,13,16,1245,532,713,253,274,269,431,3,2,2,2,0,0,5,4,257,278,270,431,7,6,3,2,0,0,526,709,252,273,265,428,3,2,2,2,0,0,4,4,256,277,266,428,6,6,2,2,0,0,6,4,1,1,4,3,0,0,0,0,0,0,1,0,1,1,4,3,1,0,1,0,0,0 -050,01,047,Alabama,Dallas County,13,17,831,311,520,142,222,165,293,1,2,2,1,0,0,1,2,143,224,165,293,2,3,2,2,0,0,310,517,142,221,164,291,1,2,2,1,0,0,1,2,143,223,164,291,2,3,2,2,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,047,Alabama,Dallas County,13,18,728,215,513,103,253,107,253,4,3,0,1,0,0,1,3,104,255,108,255,4,4,0,2,0,0,212,509,100,251,107,251,4,3,0,1,0,0,1,3,101,253,108,253,4,4,0,2,0,0,3,4,3,2,0,2,0,0,0,0,0,0,0,0,3,2,0,2,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,1,0,71109,35113,35996,32541,33367,632,638,767,790,117,149,333,291,723,761,33212,34076,756,748,1334,1392,164,211,388,349,30031,31388,28410,29643,514,521,410,457,67,100,20,15,610,652,29012,30285,630,614,874,969,110,158,33,33,5082,4608,4131,3724,118,117,357,333,50,49,313,276,113,109,4200,3791,126,134,460,423,54,53,355,316 -050,01,049,Alabama,DeKalb County,1,1,5046,2555,2491,2293,2235,44,52,79,81,9,12,47,43,83,68,2367,2299,83,85,119,110,13,17,58,48,1747,1704,1639,1596,25,35,20,13,1,3,2,2,60,55,1699,1651,61,64,40,34,4,8,5,2,808,787,654,639,19,17,59,68,8,9,45,41,23,13,668,648,22,21,79,76,9,9,53,46 -050,01,049,Alabama,DeKalb County,1,2,5199,2636,2563,2390,2290,45,59,84,83,12,13,31,41,74,77,2460,2357,78,83,121,132,15,17,37,53,1988,1876,1850,1735,28,40,38,38,3,5,2,4,67,54,1915,1786,60,57,69,72,6,9,6,8,648,687,540,555,17,19,46,45,9,8,29,37,7,23,545,571,18,26,52,60,9,8,31,45 -050,01,049,Alabama,DeKalb County,1,3,5043,2576,2467,2316,2232,57,57,81,72,16,10,35,28,71,68,2379,2292,71,78,133,117,22,15,44,37,2072,1951,1908,1802,42,42,49,50,12,2,3,1,58,54,1966,1856,56,62,88,82,18,7,4,2,504,516,408,430,15,15,32,22,4,8,32,27,13,14,413,436,15,16,45,35,4,8,40,35 -050,01,049,Alabama,DeKalb County,1,4,5021,2558,2463,2338,2240,55,43,61,82,9,15,32,24,63,59,2396,2297,71,53,105,124,17,24,36,26,2162,2065,2015,1925,43,33,43,47,4,12,2,0,55,48,2067,1973,59,42,79,79,12,21,4,0,396,398,323,315,12,10,18,35,5,3,30,24,8,11,329,324,12,11,26,45,5,3,32,26 -050,01,049,Alabama,DeKalb County,1,5,3883,2028,1855,1828,1678,47,40,59,63,11,8,41,25,42,41,1870,1713,54,46,93,95,16,16,42,28,1573,1479,1467,1381,41,30,23,31,5,3,1,0,36,34,1503,1413,48,36,52,56,10,9,1,1,455,376,361,297,6,10,36,32,6,5,40,25,6,7,367,300,6,10,41,39,6,7,41,27 -050,01,049,Alabama,DeKalb County,1,6,4411,2239,2172,2025,1982,43,25,68,74,8,14,41,32,54,45,2074,2024,49,29,115,109,12,19,44,36,1684,1729,1590,1639,33,16,20,30,2,8,1,2,38,34,1626,1673,37,18,53,56,5,12,2,4,555,443,435,343,10,9,48,44,6,6,40,30,16,11,448,351,12,11,62,53,7,7,42,32 -050,01,049,Alabama,DeKalb County,1,7,4632,2292,2340,2113,2127,37,51,68,68,12,12,29,28,33,54,2141,2176,39,52,98,116,14,18,33,32,1752,1881,1667,1752,30,39,29,36,4,9,1,0,21,45,1688,1797,31,40,48,75,5,14,1,0,540,459,446,375,7,12,39,32,8,3,28,28,12,9,453,379,8,12,50,41,9,4,32,32 -050,01,049,Alabama,DeKalb County,1,8,4804,2440,2364,2250,2183,56,42,56,52,9,10,27,31,42,46,2285,2226,59,45,93,93,13,12,33,34,2025,2015,1906,1901,47,34,30,31,8,7,3,4,31,38,1936,1939,50,36,56,65,11,9,4,4,415,349,344,282,9,8,26,21,1,3,24,27,11,8,349,287,9,9,37,28,2,3,29,30 -050,01,049,Alabama,DeKalb County,1,9,4854,2472,2382,2297,2184,49,49,49,57,7,11,19,22,51,59,2345,2238,49,50,98,111,9,14,22,29,2173,2139,2060,2000,36,38,28,42,5,8,0,0,44,51,2104,2051,36,39,70,88,7,11,0,2,299,243,237,184,13,11,21,15,2,3,19,22,7,8,241,187,13,11,28,23,2,3,22,27 -050,01,049,Alabama,DeKalb County,1,10,4860,2404,2456,2274,2298,40,42,33,48,4,13,20,6,33,49,2302,2345,41,46,64,93,5,14,25,8,2211,2316,2125,2178,35,40,20,39,3,12,1,0,27,47,2152,2224,36,43,45,83,4,13,1,1,193,140,149,120,5,2,13,9,1,1,19,6,6,2,150,121,5,3,19,10,1,1,24,7 -050,01,049,Alabama,DeKalb County,1,11,4854,2412,2442,2253,2297,49,44,39,35,10,10,8,1,53,55,2305,2351,50,44,89,88,11,13,10,3,2299,2376,2160,2245,46,40,31,29,10,10,3,0,49,52,2209,2296,46,40,79,79,11,13,3,2,113,66,93,52,3,4,8,6,0,0,5,1,4,3,96,55,4,4,10,9,0,0,7,1 -050,01,049,Alabama,DeKalb County,1,12,4363,2162,2201,2072,2079,29,41,23,28,2,7,3,5,33,41,2105,2118,29,43,52,66,6,11,3,6,2104,2137,2019,2019,28,41,21,28,2,7,1,1,33,41,2052,2058,28,43,50,66,6,11,1,2,58,64,53,60,1,0,2,0,0,0,2,4,0,0,53,60,1,0,2,0,0,0,2,4 -050,01,049,Alabama,DeKalb County,1,13,4264,2039,2225,1948,2129,27,28,36,25,4,6,0,0,24,37,1972,2166,28,29,59,62,4,6,0,0,2002,2193,1915,2100,27,28,32,22,4,6,0,0,24,37,1939,2137,28,29,55,59,4,6,0,0,37,32,33,29,0,0,4,3,0,0,0,0,0,0,33,29,0,0,4,3,0,0,0,0 -050,01,049,Alabama,DeKalb County,1,14,3236,1579,1657,1519,1591,21,23,13,12,1,2,0,4,25,25,1544,1615,21,23,38,33,1,5,0,6,1556,1636,1497,1573,21,23,12,12,1,2,0,1,25,25,1522,1597,21,23,37,33,1,5,0,3,23,21,22,18,0,0,1,0,0,0,0,3,0,0,22,18,0,0,1,0,0,0,0,3 -050,01,049,Alabama,DeKalb County,1,15,2479,1098,1381,1054,1351,14,15,9,3,2,1,0,1,19,10,1073,1361,14,15,28,13,2,1,0,1,1083,1367,1039,1338,14,15,9,3,2,1,0,0,19,10,1058,1348,14,15,28,13,2,1,0,0,15,14,15,13,0,0,0,0,0,0,0,1,0,0,15,13,0,0,0,0,0,0,0,1 -050,01,049,Alabama,DeKalb County,1,16,1877,827,1050,803,1018,9,14,3,4,1,2,0,0,11,12,814,1030,10,14,13,15,2,3,0,1,813,1046,791,1015,8,14,2,3,1,2,0,0,11,12,802,1027,9,14,12,14,2,3,0,1,14,4,12,3,1,0,1,1,0,0,0,0,0,0,12,3,1,0,1,1,0,0,0,0 -050,01,049,Alabama,DeKalb County,1,17,1241,491,750,472,735,9,5,3,0,0,1,0,0,7,9,479,744,9,5,10,8,0,2,0,1,487,744,468,729,9,5,3,0,0,1,0,0,7,9,475,738,9,5,10,8,0,2,0,1,4,6,4,6,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,1,18,1042,305,737,296,718,1,8,3,3,0,2,0,0,5,6,301,724,1,8,6,7,2,4,1,0,300,734,294,715,1,8,0,3,0,2,0,0,5,6,299,721,1,8,3,7,2,4,1,0,5,3,2,3,0,0,3,0,0,0,0,0,0,0,2,3,0,0,3,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,2,0,71090,35098,35992,32529,33363,632,638,767,790,117,149,333,291,720,761,33197,34072,753,748,1334,1392,164,211,388,349,30019,31389,28401,29644,514,521,410,457,67,100,20,15,607,652,29000,30286,627,614,874,969,110,158,33,33,5079,4603,4128,3719,118,117,357,333,50,49,313,276,113,109,4197,3786,126,134,460,423,54,53,355,316 -050,01,049,Alabama,DeKalb County,2,1,5039,2552,2487,2290,2231,44,52,79,81,9,12,47,43,83,68,2364,2295,83,85,119,110,13,17,58,48,1745,1703,1637,1595,25,35,20,13,1,3,2,2,60,55,1697,1650,61,64,40,34,4,8,5,2,807,784,653,636,19,17,59,68,8,9,45,41,23,13,667,645,22,21,79,76,9,9,53,46 -050,01,049,Alabama,DeKalb County,2,2,5193,2630,2563,2386,2290,45,59,84,83,12,13,31,41,72,77,2454,2357,76,83,121,132,15,17,37,53,1983,1876,1847,1735,28,40,38,38,3,5,2,4,65,54,1910,1786,58,57,69,72,6,9,6,8,647,687,539,555,17,19,46,45,9,8,29,37,7,23,544,571,18,26,52,60,9,8,31,45 -050,01,049,Alabama,DeKalb County,2,3,5045,2576,2469,2317,2234,57,57,81,72,16,10,35,28,70,68,2379,2294,70,78,133,117,22,15,44,37,2072,1953,1909,1804,42,42,49,50,12,2,3,1,57,54,1966,1858,55,62,88,82,18,7,4,2,504,516,408,430,15,15,32,22,4,8,32,27,13,14,413,436,15,16,45,35,4,8,40,35 -050,01,049,Alabama,DeKalb County,2,4,5022,2558,2464,2338,2241,55,43,61,82,9,15,32,24,63,59,2396,2298,71,53,105,124,17,24,36,26,2162,2066,2015,1926,43,33,43,47,4,12,2,0,55,48,2067,1974,59,42,79,79,12,21,4,0,396,398,323,315,12,10,18,35,5,3,30,24,8,11,329,324,12,11,26,45,5,3,32,26 -050,01,049,Alabama,DeKalb County,2,5,3882,2027,1855,1827,1678,47,40,59,63,11,8,41,25,42,41,1869,1713,54,46,93,95,16,16,42,28,1572,1479,1466,1381,41,30,23,31,5,3,1,0,36,34,1502,1413,48,36,52,56,10,9,1,1,455,376,361,297,6,10,36,32,6,5,40,25,6,7,367,300,6,10,41,39,6,7,41,27 -050,01,049,Alabama,DeKalb County,2,6,4406,2236,2170,2022,1980,43,25,68,74,8,14,41,32,54,45,2071,2022,49,29,115,109,12,19,44,36,1681,1728,1587,1638,33,16,20,30,2,8,1,2,38,34,1623,1672,37,18,53,56,5,12,2,4,555,442,435,342,10,9,48,44,6,6,40,30,16,11,448,350,12,11,62,53,7,7,42,32 -050,01,049,Alabama,DeKalb County,2,7,4627,2291,2336,2112,2123,37,51,68,68,12,12,29,28,33,54,2140,2172,39,52,98,116,14,18,33,32,1752,1878,1667,1749,30,39,29,36,4,9,1,0,21,45,1688,1794,31,40,48,75,5,14,1,0,539,458,445,374,7,12,39,32,8,3,28,28,12,9,452,378,8,12,50,41,9,4,32,32 -050,01,049,Alabama,DeKalb County,2,8,4803,2439,2364,2249,2183,56,42,56,52,9,10,27,31,42,46,2284,2226,59,45,93,93,13,12,33,34,2024,2015,1905,1901,47,34,30,31,8,7,3,4,31,38,1935,1939,50,36,56,65,11,9,4,4,415,349,344,282,9,8,26,21,1,3,24,27,11,8,349,287,9,9,37,28,2,3,29,30 -050,01,049,Alabama,DeKalb County,2,9,4853,2471,2382,2296,2184,49,49,49,57,7,11,19,22,51,59,2344,2238,49,50,98,111,9,14,22,29,2172,2139,2059,2000,36,38,28,42,5,8,0,0,44,51,2103,2051,36,39,70,88,7,11,0,2,299,243,237,184,13,11,21,15,2,3,19,22,7,8,241,187,13,11,28,23,2,3,22,27 -050,01,049,Alabama,DeKalb County,2,10,4861,2404,2457,2274,2299,40,42,33,48,4,13,20,6,33,49,2302,2346,41,46,64,93,5,14,25,8,2211,2317,2125,2179,35,40,20,39,3,12,1,0,27,47,2152,2225,36,43,45,83,4,13,1,1,193,140,149,120,5,2,13,9,1,1,19,6,6,2,150,121,5,3,19,10,1,1,24,7 -050,01,049,Alabama,DeKalb County,2,11,4857,2414,2443,2255,2298,49,44,39,35,10,10,8,1,53,55,2307,2352,50,44,89,88,11,13,10,3,2301,2377,2162,2246,46,40,31,29,10,10,3,0,49,52,2211,2297,46,40,79,79,11,13,3,2,113,66,93,52,3,4,8,6,0,0,5,1,4,3,96,55,4,4,10,9,0,0,7,1 -050,01,049,Alabama,DeKalb County,2,12,4363,2162,2201,2072,2079,29,41,23,28,2,7,3,5,33,41,2105,2118,29,43,52,66,6,11,3,6,2104,2137,2019,2019,28,41,21,28,2,7,1,1,33,41,2052,2058,28,43,50,66,6,11,1,2,58,64,53,60,1,0,2,0,0,0,2,4,0,0,53,60,1,0,2,0,0,0,2,4 -050,01,049,Alabama,DeKalb County,2,13,4263,2038,2225,1947,2129,27,28,36,25,4,6,0,0,24,37,1971,2166,28,29,59,62,4,6,0,0,2001,2193,1914,2100,27,28,32,22,4,6,0,0,24,37,1938,2137,28,29,55,59,4,6,0,0,37,32,33,29,0,0,4,3,0,0,0,0,0,0,33,29,0,0,4,3,0,0,0,0 -050,01,049,Alabama,DeKalb County,2,14,3237,1580,1657,1520,1591,21,23,13,12,1,2,0,4,25,25,1545,1615,21,23,38,33,1,5,0,6,1557,1636,1498,1573,21,23,12,12,1,2,0,1,25,25,1523,1597,21,23,37,33,1,5,0,3,23,21,22,18,0,0,1,0,0,0,0,3,0,0,22,18,0,0,1,0,0,0,0,3 -050,01,049,Alabama,DeKalb County,2,15,2478,1097,1381,1053,1351,14,15,9,3,2,1,0,1,19,10,1072,1361,14,15,28,13,2,1,0,1,1082,1367,1038,1338,14,15,9,3,2,1,0,0,19,10,1057,1348,14,15,28,13,2,1,0,0,15,14,15,13,0,0,0,0,0,0,0,1,0,0,15,13,0,0,0,0,0,0,0,1 -050,01,049,Alabama,DeKalb County,2,16,1878,827,1051,803,1019,9,14,3,4,1,2,0,0,11,12,814,1031,10,14,13,15,2,3,0,1,813,1047,791,1016,8,14,2,3,1,2,0,0,11,12,802,1028,9,14,12,14,2,3,0,1,14,4,12,3,1,0,1,1,0,0,0,0,0,0,12,3,1,0,1,1,0,0,0,0 -050,01,049,Alabama,DeKalb County,2,17,1241,491,750,472,735,9,5,3,0,0,1,0,0,7,9,479,744,9,5,10,8,0,2,0,1,487,744,468,729,9,5,3,0,0,1,0,0,7,9,475,738,9,5,10,8,0,2,0,1,4,6,4,6,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,2,18,1042,305,737,296,718,1,8,3,3,0,2,0,0,5,6,301,724,1,8,6,7,2,4,1,0,300,734,294,715,1,8,0,3,0,2,0,0,5,6,299,721,1,8,3,7,2,4,1,0,5,3,2,3,0,0,3,0,0,0,0,0,0,0,2,3,0,0,3,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,3,0,71133,35121,36012,32585,33408,624,629,757,769,116,154,321,285,718,767,33265,34123,779,791,1308,1353,156,204,346,321,30045,31412,28429,29666,513,518,408,449,70,108,17,15,608,656,29021,30290,636,645,879,964,101,146,24,29,5076,4600,4156,3742,111,111,349,320,46,46,304,270,110,111,4244,3833,143,146,429,389,55,58,322,292 -050,01,049,Alabama,DeKalb County,3,1,5022,2543,2479,2291,2236,45,52,76,72,8,11,39,38,84,70,2367,2298,81,86,118,104,21,19,46,44,1735,1699,1625,1595,26,34,20,11,1,3,1,1,62,55,1686,1645,58,64,45,34,10,9,2,4,808,780,666,641,19,18,56,61,7,8,38,37,22,15,681,653,23,22,73,70,11,10,44,40 -050,01,049,Alabama,DeKalb County,3,2,5173,2624,2549,2382,2283,45,56,82,84,12,12,31,41,72,73,2453,2350,71,81,122,128,19,17,31,48,1975,1861,1839,1722,29,40,37,37,4,5,2,5,64,52,1903,1772,52,62,71,65,11,9,2,7,649,688,543,561,16,16,45,47,8,7,29,36,8,21,550,578,19,19,51,63,8,8,29,41 -050,01,049,Alabama,DeKalb County,3,3,5056,2581,2475,2323,2240,56,55,81,70,16,11,35,27,70,72,2386,2305,80,78,126,118,19,16,40,32,2074,1956,1911,1809,41,41,50,47,12,2,3,1,57,56,1965,1862,60,59,86,83,15,6,5,2,507,519,412,431,15,14,31,23,4,9,32,26,13,16,421,443,20,19,40,35,4,10,35,30 -050,01,049,Alabama,DeKalb County,3,4,4949,2524,2425,2310,2207,52,41,59,80,9,16,31,24,63,57,2373,2259,67,60,105,118,13,20,31,26,2138,2032,1993,1893,42,32,42,47,5,13,1,0,55,47,2048,1936,55,46,82,81,8,16,1,1,386,393,317,314,10,9,17,33,4,3,30,24,8,10,325,323,12,14,23,37,5,4,30,25 -050,01,049,Alabama,DeKalb County,3,5,3972,2064,1908,1869,1734,46,37,58,61,11,8,38,26,42,42,1907,1773,57,47,92,93,12,13,39,27,1615,1532,1508,1433,41,28,23,31,5,5,1,0,37,35,1541,1465,50,36,53,59,6,8,2,0,449,376,361,301,5,9,35,30,6,3,37,26,5,7,366,308,7,11,39,34,6,5,37,27 -050,01,049,Alabama,DeKalb County,3,6,4354,2205,2149,1998,1961,43,27,67,70,6,15,39,31,52,45,2046,2003,53,37,110,102,9,21,40,33,1664,1713,1571,1620,34,18,19,29,2,10,1,2,37,34,1605,1652,39,23,52,56,4,13,2,3,541,436,427,341,9,9,48,41,4,5,38,29,15,11,441,351,14,14,58,46,5,8,38,30 -050,01,049,Alabama,DeKalb County,3,7,4619,2283,2336,2108,2125,35,51,66,66,13,13,28,27,33,54,2139,2174,41,61,92,107,16,17,29,31,1748,1889,1665,1760,29,40,28,35,4,9,1,0,21,45,1685,1802,32,45,45,72,6,13,1,2,535,447,443,365,6,11,38,31,9,4,27,27,12,9,454,372,9,16,47,35,10,4,28,29 -050,01,049,Alabama,DeKalb County,3,8,4773,2431,2342,2239,2161,56,41,58,53,9,11,27,31,42,45,2277,2203,62,49,91,91,11,12,32,33,2012,1986,1893,1872,48,34,30,31,8,8,2,4,31,37,1924,1908,50,39,57,63,9,9,3,4,419,356,346,289,8,7,28,22,1,3,25,27,11,8,353,295,12,10,34,28,2,3,29,29 -050,01,049,Alabama,DeKalb County,3,9,4880,2486,2394,2311,2196,51,50,48,56,6,11,20,23,50,58,2358,2249,56,55,93,108,8,14,23,26,2179,2143,2067,2006,37,38,28,41,4,8,0,0,43,50,2110,2054,40,41,67,87,5,10,0,1,307,251,244,190,14,12,20,15,2,3,20,23,7,8,248,195,16,14,26,21,3,4,23,25 -050,01,049,Alabama,DeKalb County,3,10,4870,2411,2459,2279,2302,37,40,36,46,5,14,21,6,33,51,2311,2351,40,43,66,88,5,19,22,9,2213,2319,2125,2182,33,38,22,38,4,13,1,0,28,48,2153,2228,35,40,48,80,4,17,1,2,198,140,154,120,4,2,14,8,1,1,20,6,5,3,158,123,5,3,18,8,1,2,21,7 -050,01,049,Alabama,DeKalb County,3,11,4856,2408,2448,2256,2302,46,45,37,34,9,10,9,1,51,56,2306,2357,48,48,84,88,11,10,10,1,2295,2379,2162,2247,44,41,29,28,9,10,3,0,48,53,2209,2299,45,44,74,79,11,10,4,0,113,69,94,55,2,4,8,6,0,0,6,1,3,3,97,58,3,4,10,9,0,0,6,1 -050,01,049,Alabama,DeKalb County,3,12,4402,2187,2215,2091,2092,31,40,25,28,3,7,3,5,34,43,2124,2133,34,43,57,66,3,10,3,6,2125,2152,2036,2033,29,40,23,28,3,7,1,1,33,43,2068,2074,32,43,54,66,3,10,1,2,62,63,55,59,2,0,2,0,0,0,2,4,1,0,56,59,2,0,3,0,0,0,2,4 -050,01,049,Alabama,DeKalb County,3,13,4290,2049,2241,1958,2140,26,30,35,26,5,7,0,0,25,38,1983,2177,27,34,59,61,5,7,0,0,2010,2207,1923,2108,26,30,31,24,5,7,0,0,25,38,1948,2145,27,34,55,59,5,7,0,0,39,34,35,32,0,0,4,2,0,0,0,0,0,0,35,32,0,0,4,2,0,0,0,0 -050,01,049,Alabama,DeKalb County,3,14,3252,1587,1665,1527,1602,22,22,12,12,1,2,0,4,25,23,1552,1625,23,24,36,33,1,2,0,4,1564,1643,1504,1583,22,22,12,12,1,2,0,1,25,23,1529,1606,23,24,36,33,1,2,0,1,23,22,23,19,0,0,0,0,0,0,0,3,0,0,23,19,0,0,0,0,0,0,0,3 -050,01,049,Alabama,DeKalb County,3,15,2485,1101,1384,1057,1351,14,15,9,4,2,1,0,1,19,12,1075,1362,16,16,28,15,2,2,0,1,1085,1370,1041,1338,14,15,9,4,2,1,0,0,19,12,1059,1349,16,16,28,15,2,2,0,0,16,14,16,13,0,0,0,0,0,0,0,1,0,0,16,13,0,0,0,0,0,0,0,1 -050,01,049,Alabama,DeKalb County,3,16,1876,826,1050,803,1018,8,14,3,4,1,2,0,0,11,12,813,1030,11,15,13,15,1,2,0,0,811,1046,790,1015,7,14,2,3,1,2,0,0,11,12,800,1027,10,15,12,14,1,2,0,0,15,4,13,3,1,0,1,1,0,0,0,0,0,0,13,3,1,0,1,1,0,0,0,0 -050,01,049,Alabama,DeKalb County,3,17,1256,501,755,482,740,10,4,3,0,0,1,0,0,6,10,488,750,11,4,8,10,0,1,0,0,496,750,477,735,10,4,3,0,0,1,0,0,6,10,483,745,11,4,8,10,0,1,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,3,18,1048,310,738,301,718,1,9,2,3,0,2,0,0,6,6,307,724,1,10,8,8,0,2,0,0,306,735,299,715,1,9,0,3,0,2,0,0,6,6,305,721,1,10,6,8,0,2,0,0,4,3,2,3,0,0,2,0,0,0,0,0,0,0,2,3,0,0,2,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,4,0,71335,35190,36145,32709,33540,613,643,724,765,115,153,292,266,737,778,33399,34263,769,803,1271,1369,176,203,319,300,30019,31381,28393,29592,507,530,410,468,73,111,16,15,620,665,28986,30220,636,653,878,996,119,149,27,37,5171,4764,4316,3948,106,113,314,297,42,42,276,251,117,113,4413,4043,133,150,393,373,57,54,292,263 -050,01,049,Alabama,DeKalb County,4,1,4940,2487,2453,2256,2234,44,55,61,55,8,7,27,31,91,71,2339,2299,86,86,101,89,19,14,33,37,1703,1663,1588,1555,27,36,14,11,1,1,1,1,72,59,1657,1609,63,65,43,36,10,7,2,6,784,790,668,679,17,19,47,44,7,6,26,30,19,12,682,690,23,21,58,53,9,7,31,31 -050,01,049,Alabama,DeKalb County,4,2,5130,2601,2529,2375,2252,43,62,76,94,9,13,29,38,69,70,2440,2314,71,87,111,136,17,18,31,44,1927,1799,1800,1657,30,46,34,34,4,7,2,4,57,51,1854,1703,55,66,62,63,10,11,3,7,674,730,575,595,13,16,42,60,5,6,27,34,12,19,586,611,16,21,49,73,7,7,28,37 -050,01,049,Alabama,DeKalb County,4,3,5122,2618,2504,2360,2270,49,54,85,68,17,10,33,24,74,78,2430,2340,75,80,129,120,22,14,36,29,2079,1952,1912,1807,37,41,55,43,11,3,3,1,61,57,1971,1862,60,60,91,78,13,6,5,3,539,552,448,463,12,13,30,25,6,7,30,23,13,21,459,478,15,20,38,42,9,8,31,26 -050,01,049,Alabama,DeKalb County,4,4,4760,2462,2298,2250,2081,56,39,55,77,10,14,26,27,65,60,2312,2137,71,57,103,118,14,18,27,29,2059,1905,1914,1766,44,29,38,51,8,8,1,1,54,50,1967,1812,57,42,78,87,10,12,1,3,403,393,336,315,12,10,17,26,2,6,25,26,11,10,345,325,14,15,25,31,4,6,26,26 -050,01,049,Alabama,DeKalb County,4,5,4256,2159,2097,1967,1929,49,40,53,58,10,8,29,24,51,38,2015,1964,60,51,90,87,18,9,30,26,1734,1709,1610,1608,44,30,27,34,5,6,1,0,47,31,1655,1636,52,39,62,59,13,6,2,2,425,388,357,321,5,10,26,24,5,2,28,24,4,7,360,328,8,12,28,28,5,3,28,24 -050,01,049,Alabama,DeKalb County,4,6,4225,2119,2106,1932,1922,40,29,51,71,5,11,41,27,50,46,1976,1963,46,40,90,104,15,18,42,28,1601,1658,1513,1556,33,21,17,37,3,7,1,2,34,35,1542,1588,38,28,45,63,9,12,1,3,518,448,419,366,7,8,34,34,2,4,40,25,16,11,434,375,8,12,45,41,6,6,41,25 -050,01,049,Alabama,DeKalb County,4,7,4623,2282,2341,2118,2134,35,48,60,66,13,15,25,25,31,53,2145,2183,40,59,85,105,14,20,29,28,1745,1907,1672,1780,28,36,26,34,2,11,0,0,17,46,1688,1823,30,42,40,70,3,16,1,2,537,434,446,354,7,12,34,32,11,4,25,25,14,7,457,360,10,17,45,35,11,4,28,26 -050,01,049,Alabama,DeKalb County,4,8,4678,2395,2283,2193,2099,58,40,63,52,12,14,27,31,42,47,2231,2142,64,46,98,93,15,18,29,34,1940,1907,1819,1787,48,36,29,33,11,12,3,4,30,35,1848,1820,50,39,56,66,13,13,3,4,455,376,374,312,10,4,34,19,1,2,24,27,12,12,383,322,14,7,42,27,2,5,26,30 -050,01,049,Alabama,DeKalb County,4,9,4914,2491,2423,2317,2227,50,54,48,57,6,12,19,21,51,52,2365,2273,53,58,94,105,9,16,21,23,2175,2158,2060,2023,36,38,31,42,4,9,0,0,44,46,2103,2066,39,40,70,86,7,11,0,1,316,265,257,204,14,16,17,15,2,3,19,21,7,6,262,207,14,18,24,19,2,5,21,22 -050,01,049,Alabama,DeKalb County,4,10,4800,2369,2431,2239,2271,32,34,40,47,6,15,21,7,31,57,2270,2327,36,38,66,97,8,18,22,9,2154,2276,2068,2138,27,33,26,39,5,13,1,0,27,53,2095,2190,30,36,49,86,7,15,2,2,215,155,171,133,5,1,14,8,1,2,20,7,4,4,175,137,6,2,17,11,1,3,20,7 -050,01,049,Alabama,DeKalb County,4,11,4903,2434,2469,2290,2326,41,44,35,34,6,11,13,1,49,53,2336,2378,44,48,83,83,7,12,14,1,2305,2389,2184,2261,40,41,25,27,6,11,3,0,47,49,2228,2309,43,44,72,73,6,12,4,0,129,80,106,65,1,3,10,7,0,0,10,1,2,4,108,69,1,4,11,10,1,0,10,1 -050,01,049,Alabama,DeKalb County,4,12,4519,2258,2261,2150,2131,32,43,30,31,6,6,2,4,38,46,2187,2177,33,45,65,75,8,7,3,5,2192,2201,2094,2075,29,42,28,31,6,6,0,1,35,46,2128,2121,29,44,61,75,8,7,1,2,66,60,56,56,3,1,2,0,0,0,2,3,3,0,59,56,4,1,4,0,0,0,2,3 -050,01,049,Alabama,DeKalb County,4,13,4391,2103,2288,2012,2172,27,35,31,30,5,9,0,1,28,41,2040,2213,28,37,58,69,5,10,0,1,2056,2244,1969,2131,27,35,27,28,5,9,0,0,28,41,1997,2172,28,37,54,67,5,10,0,0,47,44,43,41,0,0,4,2,0,0,0,1,0,0,43,41,0,0,4,2,0,0,0,1 -050,01,049,Alabama,DeKalb County,4,14,3312,1603,1709,1539,1652,22,18,18,14,1,3,0,3,23,19,1562,1670,22,19,39,33,2,3,1,3,1581,1687,1517,1633,22,18,18,14,1,3,0,0,23,19,1540,1651,22,19,39,33,2,3,1,0,22,22,22,19,0,0,0,0,0,0,0,3,0,0,22,19,0,0,0,0,0,0,0,3 -050,01,049,Alabama,DeKalb County,4,15,2509,1118,1391,1076,1349,13,18,9,3,1,1,0,1,19,19,1094,1367,15,19,26,21,2,2,0,1,1102,1377,1060,1335,13,18,9,3,1,1,0,1,19,19,1078,1353,15,19,26,21,2,2,0,1,16,14,16,14,0,0,0,0,0,0,0,0,0,0,16,14,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,4,16,1871,827,1044,804,1013,8,13,4,5,0,2,0,1,11,10,814,1021,9,15,15,14,0,3,0,2,811,1038,789,1009,8,13,3,4,0,2,0,0,11,10,799,1017,9,15,14,13,0,3,0,1,16,6,15,4,0,0,1,1,0,0,0,1,0,0,15,4,0,0,1,1,0,0,0,1 -050,01,049,Alabama,DeKalb County,4,17,1317,536,781,515,765,12,5,3,0,0,0,0,0,6,11,519,775,14,6,9,10,0,1,0,0,531,777,510,761,12,5,3,0,0,0,0,0,6,11,514,771,14,6,9,10,0,1,0,0,5,4,5,4,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,4,18,1065,328,737,316,713,2,12,2,3,0,2,0,0,8,7,324,720,2,12,9,10,1,2,1,0,324,734,314,710,2,12,0,3,0,2,0,0,8,7,322,717,2,12,7,10,1,2,1,0,4,3,2,3,0,0,2,0,0,0,0,0,0,0,2,3,0,0,2,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,5,0,70913,35033,35880,32560,33313,610,651,720,755,128,153,281,249,734,759,33256,34020,764,817,1270,1325,182,212,305,281,29912,31209,28273,29433,502,534,415,469,85,108,17,15,620,650,28875,30052,630,664,883,972,125,153,25,31,5121,4671,4287,3880,108,117,305,286,43,45,264,234,114,109,4381,3968,134,153,387,353,57,59,280,250 -050,01,049,Alabama,DeKalb County,5,1,4698,2402,2296,2196,2101,38,47,39,41,10,5,23,28,96,74,2286,2169,78,89,82,70,22,12,31,31,1724,1602,1600,1489,27,31,12,15,3,0,2,1,80,66,1680,1549,63,70,45,39,13,7,4,4,678,694,596,612,11,16,27,26,7,5,21,27,16,8,606,620,15,19,37,31,9,5,27,27 -050,01,049,Alabama,DeKalb County,5,2,5056,2573,2483,2356,2231,42,61,73,79,8,19,33,33,61,60,2415,2282,69,84,105,115,16,26,34,38,1866,1798,1755,1676,28,41,32,26,3,11,2,4,46,40,1800,1712,49,60,55,47,9,15,2,6,707,685,601,555,14,20,41,53,5,8,31,29,15,20,615,570,20,24,50,68,7,11,32,32 -050,01,049,Alabama,DeKalb County,5,3,5089,2616,2473,2357,2231,49,62,90,72,14,12,33,22,73,74,2430,2300,74,88,133,118,19,19,33,25,2081,1909,1918,1756,36,50,55,44,7,3,3,1,62,55,1980,1808,57,72,93,77,10,8,3,2,535,564,439,475,13,12,35,28,7,9,30,21,11,19,450,492,17,16,40,41,9,11,30,23 -050,01,049,Alabama,DeKalb County,5,4,4685,2429,2256,2206,2049,57,42,65,70,14,13,23,27,64,55,2265,2100,72,57,116,106,16,17,26,32,2000,1850,1846,1723,46,29,42,47,11,7,1,1,54,43,1897,1763,61,40,83,77,13,10,2,4,429,406,360,326,11,13,23,23,3,6,22,26,10,12,368,337,11,17,33,29,3,7,24,28 -050,01,049,Alabama,DeKalb County,5,5,4375,2205,2170,2025,1996,48,43,50,63,8,9,22,15,52,44,2075,2037,56,55,89,93,14,13,23,18,1798,1798,1677,1682,42,33,29,36,3,7,0,0,47,40,1722,1719,49,43,64,65,9,10,1,3,407,372,348,314,6,10,21,27,5,2,22,15,5,4,353,318,7,12,25,28,5,3,22,15 -050,01,049,Alabama,DeKalb County,5,6,4054,2035,2019,1847,1838,44,30,43,70,18,9,35,25,48,47,1891,1882,50,41,80,105,25,13,37,26,1532,1593,1431,1491,34,23,15,36,17,6,2,1,33,36,1461,1527,38,29,42,65,20,8,4,1,503,426,416,347,10,7,28,34,1,3,33,24,15,11,430,355,12,12,38,40,5,5,33,25 -050,01,049,Alabama,DeKalb County,5,7,4492,2221,2271,2047,2086,38,44,59,61,12,14,26,25,39,41,2083,2126,45,52,89,92,16,16,27,27,1721,1844,1635,1736,31,32,24,30,3,10,0,1,28,35,1662,1771,36,36,46,59,5,12,0,2,500,427,412,350,7,12,35,31,9,4,26,24,11,6,421,355,9,16,43,33,11,4,27,25 -050,01,049,Alabama,DeKalb County,5,8,4588,2328,2260,2138,2067,46,46,69,62,11,8,27,31,37,46,2169,2109,53,52,102,99,12,13,31,34,1874,1881,1772,1759,35,39,31,41,9,6,3,4,24,32,1796,1790,36,41,54,68,9,10,3,4,454,379,366,308,11,7,38,21,2,2,24,27,13,14,373,319,17,11,48,31,3,3,28,30 -050,01,049,Alabama,DeKalb County,5,9,4922,2502,2420,2321,2219,57,51,47,56,6,16,19,23,52,55,2371,2268,62,58,93,103,7,20,21,27,2173,2130,2049,1992,44,39,31,38,5,12,0,0,44,49,2092,2037,48,43,71,83,5,15,1,2,329,290,272,227,13,12,16,18,1,4,19,23,8,6,279,231,14,15,22,20,2,5,20,25 -050,01,049,Alabama,DeKalb County,5,10,4708,2317,2391,2186,2228,28,34,43,52,7,14,20,8,33,55,2218,2276,31,39,72,103,9,18,20,10,2082,2222,2000,2088,21,32,25,40,5,12,1,0,30,50,2029,2134,24,36,51,86,7,15,1,1,235,169,186,140,7,2,18,12,2,2,19,8,3,5,189,142,7,3,21,17,2,3,19,9 -050,01,049,Alabama,DeKalb County,5,11,4889,2453,2436,2314,2298,38,44,36,33,6,10,16,2,43,49,2353,2347,43,46,74,78,9,13,17,2,2295,2341,2190,2220,36,39,23,26,5,10,2,0,39,46,2226,2266,41,40,57,69,8,12,2,0,158,95,124,78,2,5,13,7,1,0,14,2,4,3,127,81,2,6,17,9,1,1,15,2 -050,01,049,Alabama,DeKalb County,5,12,4579,2267,2312,2150,2177,35,42,33,35,8,6,3,2,38,50,2188,2226,37,44,68,83,9,7,3,3,2198,2248,2090,2117,33,41,31,34,8,6,1,1,35,49,2125,2166,35,42,63,82,9,6,1,1,69,64,60,60,2,1,2,1,0,0,2,1,3,1,63,60,2,2,5,1,0,1,2,2 -050,01,049,Alabama,DeKalb County,5,13,4288,2049,2239,1962,2119,29,36,28,32,3,10,1,3,26,39,1987,2158,31,37,53,70,3,10,1,3,1998,2190,1918,2077,28,36,23,28,3,10,0,0,26,39,1943,2116,30,37,48,66,3,10,0,0,51,49,44,42,1,0,5,4,0,0,1,3,0,0,44,42,1,0,5,4,0,0,1,3 -050,01,049,Alabama,DeKalb County,5,14,3552,1737,1815,1664,1759,20,18,25,16,2,3,0,3,26,16,1689,1775,21,19,51,30,2,5,0,3,1713,1790,1640,1737,20,18,25,16,2,3,0,0,26,16,1665,1753,21,19,51,30,2,5,0,0,24,25,24,22,0,0,0,0,0,0,0,3,0,0,24,22,0,0,0,0,0,0,0,3 -050,01,049,Alabama,DeKalb County,5,15,2602,1176,1426,1129,1378,16,20,10,3,1,0,0,1,20,24,1149,1402,16,22,30,23,1,2,0,1,1161,1413,1114,1365,16,20,10,3,1,0,0,1,20,24,1134,1389,16,22,30,23,1,2,0,1,15,13,15,13,0,0,0,0,0,0,0,0,0,0,15,13,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,5,16,1904,836,1068,814,1037,9,11,4,5,0,3,0,1,9,11,823,1047,9,13,11,13,1,5,1,1,818,1059,797,1030,9,11,3,4,0,3,0,0,9,11,806,1040,9,13,10,12,1,5,1,0,18,9,17,7,0,0,1,1,0,0,0,1,0,0,17,7,0,0,1,1,0,0,0,1 -050,01,049,Alabama,DeKalb County,5,17,1338,549,789,526,769,13,9,3,2,0,0,0,0,7,9,533,777,13,9,10,11,0,1,0,0,543,788,520,768,13,9,3,2,0,0,0,0,7,9,527,776,13,9,10,11,0,1,0,0,6,1,6,1,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,5,18,1094,338,756,322,730,3,11,3,3,0,2,0,0,10,10,331,739,4,12,12,13,1,2,0,0,335,753,321,727,3,11,1,3,0,2,0,0,10,10,330,736,4,12,10,13,1,2,0,0,3,3,1,3,0,0,2,0,0,0,0,0,0,0,1,3,0,0,2,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,6,0,70881,35010,35871,32511,33337,617,636,708,732,148,140,273,232,753,794,33223,34078,794,811,1243,1327,206,204,305,263,29879,31164,28204,29393,508,516,407,455,105,99,18,17,637,684,28817,30041,649,658,869,977,154,149,33,33,5131,4707,4307,3944,109,120,301,277,43,41,255,215,116,110,4406,4037,145,153,374,350,52,55,272,230 -050,01,049,Alabama,DeKalb County,6,1,4527,2306,2221,2119,2041,29,35,28,43,10,3,18,17,102,82,2213,2119,79,75,73,77,20,14,24,20,1670,1569,1544,1456,19,22,10,16,5,0,1,1,91,74,1631,1527,65,60,49,46,14,10,3,2,636,652,575,585,10,13,18,27,5,3,17,16,11,8,582,592,14,15,24,31,6,4,21,18 -050,01,049,Alabama,DeKalb County,6,2,5013,2550,2463,2323,2224,42,56,73,66,8,12,35,35,69,70,2388,2287,68,86,109,105,14,19,40,40,1834,1759,1730,1643,30,34,24,23,3,5,2,3,45,51,1773,1690,49,58,44,50,8,9,5,5,716,704,593,581,12,22,49,43,5,7,33,32,24,19,615,597,19,28,65,55,6,10,35,35 -050,01,049,Alabama,DeKalb County,6,3,5141,2636,2505,2384,2268,52,58,80,74,11,13,31,18,78,74,2457,2333,84,83,126,121,16,20,32,25,2071,1924,1910,1773,37,48,49,41,4,5,2,2,69,55,1974,1824,64,68,90,73,9,12,3,5,565,581,474,495,15,10,31,33,7,8,29,16,9,19,483,509,20,15,36,48,7,8,29,20 -050,01,049,Alabama,DeKalb County,6,4,4604,2385,2219,2151,2021,63,47,66,63,15,13,24,23,66,52,2211,2070,83,58,109,99,22,19,27,26,1928,1787,1770,1663,49,34,41,44,11,6,4,1,53,39,1819,1701,67,43,74,69,17,11,5,2,457,432,381,358,14,13,25,19,4,7,20,22,13,13,392,369,16,15,35,30,5,8,22,24 -050,01,049,Alabama,DeKalb County,6,5,4507,2255,2252,2083,2060,39,50,51,60,12,7,26,19,44,56,2126,2114,48,65,83,98,16,12,26,20,1873,1865,1760,1736,35,37,31,34,7,6,0,1,40,51,1799,1785,42,51,61,69,11,10,0,2,382,387,323,324,4,13,20,26,5,1,26,18,4,5,327,329,6,14,22,29,5,2,26,18 -050,01,049,Alabama,DeKalb County,6,6,3951,2039,1912,1828,1742,53,30,52,62,35,7,24,21,47,50,1872,1788,63,41,85,98,41,13,27,22,1547,1556,1413,1452,46,23,20,35,32,5,2,1,34,40,1444,1489,51,31,46,64,37,10,5,2,492,356,415,290,7,7,32,27,3,2,22,20,13,10,428,299,12,10,39,34,4,3,22,20 -050,01,049,Alabama,DeKalb County,6,7,4409,2200,2209,2044,2027,34,42,45,62,8,14,23,22,46,42,2085,2065,40,50,81,95,12,17,28,25,1735,1776,1656,1674,24,32,18,25,2,9,0,1,35,35,1690,1706,27,37,47,55,4,10,2,3,465,433,388,353,10,10,27,37,6,5,23,21,11,7,395,359,13,13,34,40,8,7,26,22 -050,01,049,Alabama,DeKalb County,6,8,4555,2264,2291,2076,2084,42,57,76,59,13,9,29,31,28,51,2100,2129,47,66,99,99,15,16,32,34,1809,1904,1711,1770,34,47,34,39,9,7,3,3,18,38,1728,1804,37,52,49,71,10,12,3,5,455,387,365,314,8,10,42,20,4,2,26,28,10,13,372,325,10,14,50,28,5,4,29,29 -050,01,049,Alabama,DeKalb County,6,9,4895,2500,2395,2319,2210,58,42,44,55,6,17,21,20,52,51,2370,2256,62,49,87,102,9,19,24,21,2150,2098,2025,1971,45,31,31,36,5,13,0,2,44,45,2069,2011,46,36,70,78,7,15,2,3,350,297,294,239,13,11,13,19,1,4,21,18,8,6,301,245,16,13,17,24,2,4,22,18 -050,01,049,Alabama,DeKalb County,6,10,4713,2339,2374,2205,2205,34,37,44,55,9,13,17,12,30,52,2235,2253,36,42,71,99,10,18,17,14,2101,2182,2016,2048,25,32,27,45,7,11,0,0,26,46,2042,2092,26,34,51,87,8,14,0,1,238,192,189,157,9,5,17,10,2,2,17,12,4,6,193,161,10,8,20,12,2,4,17,13 -050,01,049,Alabama,DeKalb County,6,11,4831,2391,2440,2248,2306,36,43,38,38,6,8,18,4,45,41,2292,2346,40,46,79,73,6,11,19,5,2213,2329,2113,2214,32,40,21,27,5,8,2,0,40,40,2153,2253,35,42,58,62,5,11,2,1,178,111,135,92,4,3,17,11,1,0,16,4,5,1,139,93,5,4,21,11,1,0,17,4 -050,01,049,Alabama,DeKalb County,6,12,4700,2336,2364,2203,2233,43,35,36,32,8,5,5,2,41,57,2244,2290,45,37,71,87,12,7,6,3,2257,2299,2135,2177,41,32,34,31,8,5,2,0,37,54,2172,2231,42,33,68,83,11,6,2,0,79,65,68,56,2,3,2,1,0,0,3,2,4,3,72,59,3,4,3,4,1,1,4,3 -050,01,049,Alabama,DeKalb County,6,13,4284,2067,2217,1981,2098,30,37,25,30,1,11,2,3,28,38,2009,2136,33,37,50,68,1,11,2,3,2010,2166,1931,2050,29,37,21,29,1,11,0,1,28,38,1959,2088,32,37,46,67,1,11,0,1,57,51,50,48,1,0,4,1,0,0,2,2,0,0,50,48,1,0,4,1,0,0,2,2 -050,01,049,Alabama,DeKalb County,6,14,3655,1743,1912,1664,1851,20,16,29,18,4,3,0,3,26,21,1689,1872,22,19,52,36,6,3,0,3,1724,1881,1646,1826,20,16,28,15,4,3,0,0,26,21,1671,1847,22,19,51,33,6,3,0,0,19,31,18,25,0,0,1,3,0,0,0,3,0,0,18,25,0,0,1,3,0,0,0,3 -050,01,049,Alabama,DeKalb County,6,15,2684,1259,1425,1208,1374,19,18,9,6,2,0,0,1,21,26,1228,1398,19,21,29,31,3,0,1,1,1242,1411,1191,1360,19,18,9,6,2,0,0,1,21,26,1211,1384,19,21,29,31,3,0,1,1,17,14,17,14,0,0,0,0,0,0,0,0,0,0,17,14,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,6,16,2001,865,1136,840,1104,9,14,5,4,0,2,0,1,11,11,850,1113,10,16,15,15,1,2,0,1,851,1127,827,1096,9,14,4,4,0,2,0,0,11,11,837,1105,10,16,14,15,1,2,0,0,14,9,13,8,0,0,1,0,0,0,0,1,0,0,13,8,0,0,1,0,0,0,0,1 -050,01,049,Alabama,DeKalb County,6,17,1325,531,794,509,772,10,10,4,2,0,1,0,0,8,9,517,781,11,10,11,11,1,1,0,0,524,793,502,771,10,10,4,2,0,1,0,0,8,9,510,780,11,10,11,11,1,1,0,0,7,1,7,1,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,6,18,1086,344,742,326,717,4,9,3,3,0,2,0,0,11,11,337,728,4,10,13,13,1,2,0,0,340,738,324,713,4,9,1,3,0,2,0,0,11,11,335,724,4,10,11,13,1,2,0,0,4,4,2,4,0,0,2,0,0,0,0,0,0,0,2,4,0,0,2,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,7,0,70963,35067,35896,32578,33389,628,650,719,721,148,139,260,221,734,776,33271,34125,797,818,1246,1300,209,193,288,253,29934,31178,28274,29411,510,529,405,458,106,95,18,17,621,668,28869,30056,644,662,864,964,154,140,32,34,5133,4718,4304,3978,118,121,314,263,42,44,242,204,113,108,4402,4069,153,156,382,336,55,53,256,219 -050,01,049,Alabama,DeKalb County,7,1,4418,2259,2159,2105,2015,35,29,21,31,9,4,7,5,82,75,2184,2086,78,67,55,66,18,11,9,7,1649,1576,1542,1480,20,15,9,15,4,1,0,0,74,65,1614,1542,58,50,41,44,13,6,0,1,610,583,563,535,15,14,12,16,5,3,7,5,8,10,570,544,20,17,14,22,5,5,9,6 -050,01,049,Alabama,DeKalb County,7,2,4978,2509,2469,2291,2227,41,60,67,61,8,16,37,33,65,72,2352,2293,69,92,101,100,13,21,39,36,1813,1720,1712,1602,30,36,19,16,3,8,3,3,46,55,1756,1652,52,63,40,44,7,12,4,5,696,749,579,625,11,24,48,45,5,8,34,30,19,17,596,641,17,29,61,56,6,9,35,31 -050,01,049,Alabama,DeKalb County,7,3,5150,2653,2497,2404,2271,46,61,81,67,10,14,30,19,82,65,2482,2331,76,82,128,105,16,21,34,25,2058,1905,1901,1764,34,50,47,37,2,6,1,3,73,45,1971,1808,61,65,87,60,8,12,4,5,595,592,503,507,12,11,34,30,8,8,29,16,9,20,511,523,15,17,41,45,8,9,30,20 -050,01,049,Alabama,DeKalb County,7,4,4616,2406,2210,2181,1997,59,58,70,68,11,10,25,23,60,54,2239,2046,73,75,111,104,17,15,28,26,1915,1753,1769,1617,46,44,41,46,9,3,3,1,47,42,1815,1655,56,57,73,73,14,8,5,3,491,457,412,380,13,14,29,22,2,7,22,22,13,12,424,391,17,18,38,31,3,7,23,23 -050,01,049,Alabama,DeKalb County,7,5,4538,2296,2242,2120,2055,43,43,48,64,10,5,26,22,49,53,2164,2102,55,55,84,101,15,11,27,27,1922,1853,1800,1727,36,35,35,38,5,4,2,1,44,48,1839,1772,47,45,68,72,9,9,3,4,374,389,320,328,7,8,13,26,5,1,24,21,5,5,325,330,8,10,16,29,6,2,24,23 -050,01,049,Alabama,DeKalb County,7,6,4006,2060,1946,1844,1770,54,36,49,62,46,8,24,22,43,48,1884,1818,60,46,81,96,53,12,27,22,1601,1616,1456,1508,50,27,17,33,42,5,1,1,35,42,1488,1550,54,33,44,65,48,9,4,1,459,330,388,262,4,9,32,29,4,3,23,21,8,6,396,268,6,13,37,31,5,3,23,21 -050,01,049,Alabama,DeKalb County,7,7,4255,2116,2139,1938,1965,44,42,54,54,5,13,27,22,48,43,1981,2008,50,47,93,88,10,16,30,24,1688,1720,1602,1620,30,33,20,25,1,8,1,1,34,33,1634,1653,33,35,49,53,5,11,1,2,428,419,336,345,14,9,34,29,4,5,26,21,14,10,347,355,17,12,44,35,5,5,29,22 -050,01,049,Alabama,DeKalb County,7,8,4467,2232,2235,2069,2039,32,54,76,59,11,8,18,26,26,49,2091,2082,37,63,95,99,13,11,22,29,1779,1857,1696,1726,27,45,32,40,8,7,2,1,14,38,1710,1761,30,51,43,72,8,9,2,2,453,378,373,313,5,9,44,19,3,1,16,25,12,11,381,321,7,12,52,27,5,2,20,27 -050,01,049,Alabama,DeKalb County,7,9,4863,2452,2411,2264,2239,59,39,53,52,7,18,24,18,45,45,2307,2279,63,45,90,93,11,22,26,20,2094,2102,1980,1987,43,30,30,31,6,13,1,4,34,37,2014,2022,45,34,61,65,6,16,2,4,358,309,284,252,16,9,23,21,1,5,23,14,11,8,293,257,18,11,29,28,5,6,24,16 -050,01,049,Alabama,DeKalb County,7,10,4702,2356,2346,2202,2173,46,39,45,58,9,9,15,16,39,51,2239,2223,50,43,76,100,14,14,16,18,2095,2137,1993,2006,33,31,29,48,6,7,0,0,34,45,2026,2051,35,33,58,87,10,10,0,1,261,209,209,167,13,8,16,10,3,2,15,16,5,6,213,172,15,10,18,13,4,4,16,17 -050,01,049,Alabama,DeKalb County,7,11,4836,2390,2446,2256,2296,34,44,35,48,6,13,19,5,40,40,2295,2336,39,48,69,82,8,15,19,5,2202,2329,2113,2197,29,42,19,37,5,13,2,0,34,40,2146,2237,31,46,51,71,6,15,2,0,188,117,143,99,5,2,16,11,1,0,17,5,6,0,149,99,8,2,18,11,2,0,17,5 -050,01,049,Alabama,DeKalb County,7,12,4725,2365,2360,2216,2228,48,34,42,31,8,7,6,2,45,58,2261,2285,51,38,81,86,9,8,8,3,2273,2296,2137,2176,46,30,38,29,8,6,2,0,42,55,2179,2230,47,33,76,81,9,7,4,1,92,64,79,52,2,4,4,2,0,1,4,2,3,3,82,55,4,5,5,5,0,1,4,2 -050,01,049,Alabama,DeKalb County,7,13,4213,2045,2168,1967,2054,24,38,21,29,2,6,2,3,29,38,1995,2091,25,40,48,66,4,6,2,3,1994,2115,1922,2003,23,38,19,29,1,6,0,1,29,38,1950,2040,24,40,46,66,3,6,0,1,51,53,45,51,1,0,2,0,1,0,2,2,0,0,45,51,1,0,2,0,1,0,2,2 -050,01,049,Alabama,DeKalb County,7,14,3879,1841,2038,1759,1971,23,17,33,19,4,3,0,2,22,26,1780,1997,24,18,54,43,5,3,0,3,1811,2002,1733,1940,23,17,29,16,4,3,0,0,22,26,1754,1966,24,18,50,40,5,3,0,1,30,36,26,31,0,0,4,3,0,0,0,2,0,0,26,31,0,0,4,3,0,0,0,2 -050,01,049,Alabama,DeKalb County,7,15,2819,1339,1480,1285,1421,17,22,10,9,2,1,0,2,25,25,1309,1446,19,23,34,32,2,1,1,3,1319,1464,1265,1406,17,22,10,9,2,1,0,1,25,25,1289,1431,19,23,34,32,2,1,1,2,20,16,20,15,0,0,0,0,0,0,0,1,0,0,20,15,0,0,0,0,0,0,0,1 -050,01,049,Alabama,DeKalb County,7,16,2020,850,1170,818,1140,11,12,7,3,0,0,0,1,14,14,832,1154,12,12,19,16,1,1,0,1,837,1159,806,1130,11,12,6,3,0,0,0,0,14,14,820,1144,12,12,18,16,1,1,0,0,13,11,12,10,0,0,1,0,0,0,0,1,0,0,12,10,0,0,1,0,0,0,0,1 -050,01,049,Alabama,DeKalb County,7,17,1355,542,813,520,786,8,12,4,3,0,2,0,0,10,10,528,796,11,14,14,11,0,3,0,0,533,812,511,785,8,12,4,3,0,2,0,0,10,10,519,795,11,14,14,11,0,3,0,0,9,1,9,1,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,7,18,1123,356,767,339,742,4,10,3,3,0,2,0,0,10,10,348,752,5,10,13,12,0,2,0,1,351,762,336,737,4,10,1,3,0,2,0,0,10,10,345,747,5,10,11,12,0,2,0,1,5,5,3,5,0,0,2,0,0,0,0,0,0,0,3,5,0,0,2,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,8,0,71065,35171,35894,32658,33431,642,632,701,704,167,138,251,207,752,782,33356,34161,819,808,1249,1290,227,194,284,243,29974,31214,28278,29465,513,512,401,451,128,95,18,17,636,674,28884,30110,657,653,864,965,179,138,34,32,5197,4680,4380,3966,129,120,300,253,39,43,233,190,116,108,4472,4051,162,155,385,325,48,56,250,211 -050,01,049,Alabama,DeKalb County,8,1,4305,2232,2073,2087,1939,36,28,18,27,9,6,2,2,80,71,2161,2008,77,66,49,57,19,13,6,4,1647,1512,1542,1417,19,13,10,15,2,3,0,0,74,64,1612,1479,57,48,38,41,10,9,4,2,585,561,545,522,17,15,8,12,7,3,2,2,6,7,549,529,20,18,11,16,9,4,2,2 -050,01,049,Alabama,DeKalb County,8,2,4959,2518,2441,2284,2226,49,54,56,54,8,13,36,29,85,65,2363,2283,82,81,100,91,15,19,43,35,1788,1743,1677,1641,31,32,15,13,3,6,3,1,59,50,1734,1687,58,56,40,39,9,10,6,3,730,698,607,585,18,22,41,41,5,7,33,28,26,15,629,596,24,25,60,52,6,9,37,32 -050,01,049,Alabama,DeKalb County,8,3,5088,2617,2471,2386,2242,44,61,71,70,10,14,29,21,77,63,2457,2298,74,86,115,108,18,19,31,28,2002,1856,1854,1716,36,45,38,37,6,9,1,5,67,44,1918,1758,61,64,77,62,13,11,1,6,615,615,532,526,8,16,33,33,4,5,28,16,10,19,539,540,13,22,38,46,5,8,30,22 -050,01,049,Alabama,DeKalb County,8,4,4715,2469,2246,2248,2028,54,53,72,65,8,13,28,23,59,64,2300,2085,73,76,114,104,11,20,31,26,1952,1761,1809,1622,43,43,46,45,6,4,3,1,45,46,1850,1666,59,59,77,72,8,9,4,2,517,485,439,406,11,10,26,20,2,9,25,22,14,18,450,419,14,17,37,32,3,11,27,24 -050,01,049,Alabama,DeKalb County,8,5,4451,2275,2176,2088,2005,49,41,49,58,12,6,21,18,56,48,2141,2048,63,56,89,92,17,11,24,20,1886,1807,1750,1692,41,33,36,34,8,4,2,1,49,43,1796,1730,52,46,72,65,13,8,5,2,389,369,338,313,8,8,13,24,4,2,19,17,7,5,345,318,11,10,17,27,4,3,19,18 -050,01,049,Alabama,DeKalb County,8,6,4107,2129,1978,1914,1821,48,40,48,46,54,6,25,18,40,47,1952,1865,52,51,80,81,61,9,26,19,1730,1678,1585,1576,43,31,18,25,48,4,1,0,35,42,1619,1616,46,39,45,57,55,7,2,1,399,300,329,245,5,9,30,21,6,2,24,18,5,5,333,249,6,12,35,24,6,2,24,18 -050,01,049,Alabama,DeKalb County,8,7,4186,2093,2093,1899,1922,45,34,57,62,15,12,27,15,50,48,1945,1966,54,43,96,99,18,16,30,17,1676,1707,1567,1606,34,25,19,30,14,7,1,2,41,37,1606,1640,39,31,53,60,17,10,2,3,417,386,332,316,11,9,38,32,1,5,26,13,9,11,339,326,15,12,43,39,1,6,28,14 -050,01,049,Alabama,DeKalb County,8,8,4481,2210,2271,2056,2074,35,52,67,57,10,10,17,25,25,53,2075,2125,38,58,88,100,15,14,22,27,1752,1884,1674,1750,29,45,31,38,5,8,1,0,12,43,1686,1792,30,48,40,75,7,11,1,1,458,387,382,324,6,7,36,19,5,2,16,25,13,10,389,333,8,10,48,25,8,3,21,26 -050,01,049,Alabama,DeKalb County,8,9,4700,2365,2335,2178,2173,61,33,55,54,10,13,21,21,40,41,2216,2211,65,36,88,92,13,15,23,23,1998,2022,1889,1917,41,26,28,31,9,10,2,5,29,33,1918,1949,43,28,53,62,11,12,2,5,367,313,289,256,20,7,27,23,1,3,19,16,11,8,298,262,22,8,35,30,2,3,21,18 -050,01,049,Alabama,DeKalb County,8,10,4758,2392,2366,2226,2188,56,43,42,53,6,14,15,18,47,50,2268,2232,61,49,86,93,8,19,16,25,2123,2141,2012,2014,40,32,26,41,4,11,0,0,41,43,2049,2055,44,34,64,77,6,15,1,3,269,225,214,174,16,11,16,12,2,3,15,18,6,7,219,177,17,15,22,16,2,4,15,22 -050,01,049,Alabama,DeKalb County,8,11,4806,2365,2441,2242,2286,28,41,37,49,7,12,19,7,32,46,2274,2332,30,43,65,91,9,14,19,7,2170,2301,2091,2163,23,39,23,42,6,11,1,0,26,46,2117,2209,24,41,46,84,8,13,1,0,195,140,151,123,5,2,14,7,1,1,18,7,6,0,157,123,6,2,19,7,1,1,18,7 -050,01,049,Alabama,DeKalb County,8,12,4723,2327,2396,2169,2271,46,35,46,32,8,5,9,1,49,52,2215,2322,51,37,91,82,9,7,11,1,2212,2326,2074,2215,44,31,36,26,8,5,3,0,47,49,2118,2263,48,33,79,74,9,6,5,0,115,70,95,56,2,4,10,6,0,0,6,1,2,3,97,59,3,4,12,8,0,1,6,1 -050,01,049,Alabama,DeKalb County,8,13,4310,2111,2199,2022,2077,27,36,25,31,4,6,2,4,31,45,2052,2122,31,36,53,73,5,9,2,4,2052,2144,1971,2026,25,36,23,31,3,5,0,1,30,45,2000,2071,28,36,51,73,4,8,0,1,59,55,51,51,2,0,2,0,1,1,2,3,1,0,52,51,3,0,2,0,1,1,2,3 -050,01,049,Alabama,DeKalb County,8,14,4035,1918,2117,1839,2033,23,27,29,25,4,3,0,0,23,29,1861,2061,24,29,52,51,4,3,0,2,1882,2079,1806,1998,23,27,26,22,4,3,0,0,23,29,1828,2026,24,29,49,48,4,3,0,2,36,38,33,35,0,0,3,3,0,0,0,0,0,0,33,35,0,0,3,3,0,0,0,0 -050,01,049,Alabama,DeKalb County,8,15,2917,1378,1539,1325,1478,17,20,13,12,1,1,0,4,22,24,1347,1500,17,23,34,34,2,2,0,4,1362,1522,1309,1464,17,20,13,12,1,1,0,1,22,24,1331,1486,17,23,34,34,2,2,0,1,16,17,16,14,0,0,0,0,0,0,0,3,0,0,16,14,0,0,0,0,0,0,0,3 -050,01,049,Alabama,DeKalb County,8,16,2035,857,1178,819,1152,12,10,8,3,1,0,0,1,17,12,835,1163,14,12,23,14,2,0,0,1,847,1164,809,1139,12,10,8,3,1,0,0,0,17,12,825,1150,14,12,23,14,2,0,0,0,10,14,10,13,0,0,0,0,0,0,0,1,0,0,10,13,0,0,0,0,0,0,0,1 -050,01,049,Alabama,DeKalb County,8,17,1336,533,803,514,774,6,12,3,3,0,2,0,0,10,12,524,786,6,13,13,14,0,2,0,0,520,801,502,772,6,12,2,3,0,2,0,0,10,12,512,784,6,13,12,14,0,2,0,0,13,2,12,2,0,0,1,0,0,0,0,0,0,0,12,2,0,0,1,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,8,18,1153,382,771,362,742,6,12,5,3,0,2,0,0,9,12,370,754,7,13,13,14,1,2,0,0,375,766,357,737,6,12,3,3,0,2,0,0,9,12,365,749,7,13,11,14,1,2,0,0,7,5,5,5,0,0,2,0,0,0,0,0,0,0,5,5,0,0,2,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,9,0,71116,35228,35888,32675,33449,634,619,714,688,189,143,248,198,768,791,33390,34189,824,796,1261,1272,254,202,284,229,29903,31147,28196,29401,499,498,402,446,142,96,18,18,646,688,28817,30058,656,643,864,963,192,142,31,35,5325,4741,4479,4048,135,121,312,242,47,47,230,180,122,103,4573,4131,168,153,397,309,62,60,253,194 -050,01,049,Alabama,DeKalb County,9,1,4363,2256,2107,2109,1965,37,29,16,25,16,9,1,2,77,77,2181,2040,74,66,50,58,25,18,5,4,1649,1552,1547,1451,18,13,9,14,4,2,0,1,71,71,1616,1520,53,49,39,43,12,10,2,3,607,555,562,514,19,16,7,11,12,7,1,1,6,6,565,520,21,17,11,15,13,8,3,1 -050,01,049,Alabama,DeKalb County,9,2,4905,2468,2437,2239,2239,39,56,50,40,12,12,25,26,103,64,2337,2296,83,82,98,73,24,21,29,29,1759,1737,1636,1631,24,35,11,10,4,6,3,1,81,54,1713,1679,63,60,44,37,14,13,6,2,709,700,603,608,15,21,39,30,8,6,22,25,22,10,624,617,20,22,54,36,10,8,23,27 -050,01,049,Alabama,DeKalb County,9,3,5036,2615,2421,2396,2201,37,52,68,70,9,17,34,21,71,60,2460,2255,59,74,110,105,19,22,40,25,1961,1795,1837,1669,28,35,33,32,6,11,1,4,56,44,1890,1710,48,52,64,56,14,16,3,5,654,626,559,532,9,17,35,38,3,6,33,17,15,16,570,545,11,22,46,49,5,6,37,20 -050,01,049,Alabama,DeKalb County,9,4,4749,2501,2248,2265,2033,52,60,81,64,6,10,30,18,67,63,2328,2088,74,82,125,106,11,16,33,21,1955,1752,1800,1613,43,49,52,42,4,4,3,1,53,43,1851,1652,62,64,86,71,7,6,4,2,546,496,465,420,9,11,29,22,2,6,27,17,14,20,477,436,12,18,39,35,4,10,29,19 -050,01,049,Alabama,DeKalb County,9,5,4225,2163,2062,1983,1892,39,34,48,54,12,9,26,20,55,53,2034,1940,54,49,86,90,16,14,29,24,1766,1703,1644,1584,32,26,32,38,9,4,2,2,47,49,1687,1628,45,40,64,71,13,9,5,6,397,359,339,308,7,8,16,16,3,5,24,18,8,4,347,312,9,9,22,19,3,5,24,18 -050,01,049,Alabama,DeKalb County,9,6,4368,2230,2138,2015,1979,51,41,51,44,57,7,20,19,36,48,2050,2025,58,50,78,81,59,9,21,22,1856,1822,1701,1718,47,33,23,25,52,5,1,0,32,41,1732,1758,51,40,49,56,54,7,2,3,374,316,314,261,4,8,28,19,5,2,19,19,4,7,318,267,7,10,29,25,5,2,19,19 -050,01,049,Alabama,DeKalb County,9,7,4039,2035,2004,1837,1847,44,33,53,56,24,10,29,12,48,46,1882,1889,52,46,94,88,27,13,30,14,1608,1634,1502,1537,32,25,14,28,22,7,1,2,37,35,1538,1571,36,33,46,54,24,9,1,2,427,370,335,310,12,8,39,28,2,3,28,10,11,11,344,318,16,13,48,34,3,4,29,12 -050,01,049,Alabama,DeKalb County,9,8,4520,2222,2298,2070,2100,40,50,61,61,9,10,14,25,28,52,2093,2149,46,61,82,104,10,13,19,25,1765,1909,1685,1783,33,42,28,33,3,6,0,0,16,45,1701,1826,36,48,41,74,3,7,0,0,457,389,385,317,7,8,33,28,6,4,14,25,12,7,392,323,10,13,41,30,7,6,19,25 -050,01,049,Alabama,DeKalb County,9,9,4515,2295,2220,2092,2064,67,29,68,51,9,13,21,23,38,40,2123,2097,75,35,98,84,13,17,25,27,1921,1898,1808,1797,42,26,34,31,8,11,3,5,26,28,1832,1824,46,29,56,55,10,13,3,5,374,322,284,267,25,3,34,20,1,2,18,18,12,12,291,273,29,6,42,29,3,4,22,22 -050,01,049,Alabama,DeKalb County,9,10,4762,2396,2366,2219,2190,63,49,41,55,9,13,14,15,50,44,2264,2231,69,53,84,90,12,17,17,19,2110,2123,1991,2000,44,34,26,41,7,10,0,0,42,38,2031,2036,48,36,63,72,10,14,0,3,286,243,228,190,19,15,15,14,2,3,14,15,8,6,233,195,21,17,21,18,2,3,17,16 -050,01,049,Alabama,DeKalb County,9,11,4740,2343,2397,2211,2240,32,32,45,53,8,14,20,7,27,51,2235,2289,37,36,69,100,9,15,20,8,2130,2245,2048,2105,26,31,28,47,6,12,1,0,21,50,2068,2153,29,35,47,94,6,12,1,1,213,152,163,135,6,1,17,6,2,2,19,7,6,1,167,136,8,1,22,6,3,3,19,7 -050,01,049,Alabama,DeKalb County,9,12,4740,2350,2390,2199,2272,41,33,45,34,6,3,12,1,47,47,2245,2319,44,36,87,76,10,4,13,2,2225,2311,2098,2208,40,29,33,27,6,3,3,0,45,44,2143,2252,42,32,74,66,8,4,3,1,125,79,101,64,1,4,12,7,0,0,9,1,2,3,102,67,2,4,13,10,2,0,10,1 -050,01,049,Alabama,DeKalb County,9,13,4345,2107,2238,2009,2110,27,37,28,32,6,8,2,3,35,48,2042,2158,30,37,60,77,8,11,2,3,2039,2186,1949,2062,25,36,26,32,6,7,0,1,33,48,1980,2110,28,36,57,77,7,10,0,1,68,52,60,48,2,1,2,0,0,1,2,2,2,0,62,48,2,1,3,0,1,1,2,2 -050,01,049,Alabama,DeKalb County,9,14,4162,1986,2176,1908,2076,19,32,27,28,5,3,0,1,27,36,1935,2112,20,33,51,62,8,4,0,1,1944,2136,1870,2040,19,32,24,25,4,3,0,0,27,36,1897,2076,20,33,48,59,7,4,0,0,42,40,38,36,0,0,3,3,1,0,0,1,0,0,38,36,0,0,3,3,1,0,0,1 -050,01,049,Alabama,DeKalb County,9,15,2976,1404,1572,1346,1522,19,15,16,12,0,1,0,3,23,19,1369,1541,19,16,39,29,1,2,0,3,1388,1554,1330,1507,19,15,16,12,0,1,0,0,23,19,1353,1526,19,16,39,29,1,2,0,0,16,18,16,15,0,0,0,0,0,0,0,3,0,0,16,15,0,0,0,0,0,0,0,3 -050,01,049,Alabama,DeKalb County,9,16,2093,895,1198,861,1161,11,14,7,2,1,0,0,1,15,20,876,1179,12,16,21,21,2,1,0,1,888,1183,854,1146,11,14,7,2,1,0,0,1,15,20,869,1164,12,16,21,21,2,1,0,1,7,15,7,15,0,0,0,0,0,0,0,0,0,0,7,15,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,9,17,1351,541,810,517,782,9,12,4,4,0,2,0,1,11,9,527,791,10,13,14,12,0,2,1,1,526,806,503,779,9,12,3,4,0,2,0,0,11,9,513,788,10,13,13,12,0,2,1,0,15,4,14,3,0,0,1,0,0,0,0,1,0,0,14,3,0,0,1,0,0,0,0,1 -050,01,049,Alabama,DeKalb County,9,18,1227,421,806,399,776,7,11,5,3,0,2,0,0,10,14,409,790,8,11,15,16,0,3,0,0,413,801,393,771,7,11,3,3,0,2,0,0,10,14,403,785,8,11,13,16,0,3,0,0,8,5,6,5,0,0,2,0,0,0,0,0,0,0,6,5,0,0,2,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,10,0,71441,35471,35970,32861,33517,664,634,718,682,193,166,241,194,794,777,33607,34225,869,824,1281,1248,253,228,269,236,29979,31105,28230,29351,509,506,415,447,133,110,17,19,675,672,28876,29982,680,659,898,943,184,159,29,45,5492,4865,4631,4166,155,128,303,235,60,56,224,175,119,105,4731,4243,189,165,383,305,69,69,240,191 -050,01,049,Alabama,DeKalb County,10,1,4346,2257,2089,2089,1939,46,32,17,19,21,20,2,5,82,74,2168,2005,89,70,50,51,31,27,6,11,1651,1539,1536,1444,21,14,11,12,4,5,0,1,79,63,1612,1503,63,47,42,37,14,11,4,5,606,550,553,495,25,18,6,7,17,15,2,4,3,11,556,502,26,23,8,14,17,16,2,6 -050,01,049,Alabama,DeKalb County,10,2,4802,2438,2364,2225,2166,38,60,39,46,13,13,18,18,105,61,2325,2224,86,86,91,74,24,21,21,20,1762,1690,1636,1570,22,40,10,16,5,9,2,1,87,54,1720,1621,63,64,50,41,16,15,4,3,676,674,589,596,16,20,29,30,8,4,16,17,18,7,605,603,23,22,41,33,8,6,17,17 -050,01,049,Alabama,DeKalb County,10,3,5203,2694,2509,2462,2276,47,52,69,64,9,22,35,26,72,69,2528,2334,72,79,111,108,18,27,38,34,1944,1832,1823,1712,29,32,32,23,5,13,1,4,54,48,1874,1754,51,54,62,50,11,17,1,7,750,677,639,564,18,20,37,41,4,9,34,22,18,21,654,580,21,25,49,58,7,10,37,27 -050,01,049,Alabama,DeKalb County,10,4,4785,2522,2263,2279,2058,47,58,86,63,7,9,31,18,72,57,2345,2109,68,80,131,100,14,15,36,20,1951,1712,1796,1579,38,48,53,41,1,1,3,2,60,41,1852,1618,57,63,90,67,7,5,5,4,571,551,483,479,9,10,33,22,6,8,28,16,12,16,493,491,11,17,41,33,7,10,31,16 -050,01,049,Alabama,DeKalb County,10,5,4109,2143,1966,1955,1807,46,40,52,46,13,9,19,21,58,43,2011,1844,62,53,93,74,18,14,19,25,1741,1600,1609,1495,40,31,33,30,8,4,2,1,49,39,1656,1528,54,42,68,56,12,9,2,5,402,366,346,312,6,9,19,16,5,5,17,20,9,4,355,316,8,11,25,18,6,5,17,20 -050,01,049,Alabama,DeKalb County,10,6,4499,2263,2236,2064,2088,51,40,46,41,46,5,21,14,35,48,2096,2133,61,48,70,75,50,11,21,17,1893,1918,1750,1811,49,29,24,29,40,5,0,1,30,43,1777,1852,57,36,46,59,43,11,0,3,370,318,314,277,2,11,22,12,6,0,21,13,5,5,319,281,4,12,24,16,7,0,21,14 -050,01,049,Alabama,DeKalb County,10,7,3966,1994,1972,1813,1794,47,35,37,62,33,10,25,17,39,54,1850,1840,54,51,68,100,35,15,27,20,1571,1609,1465,1499,32,26,14,31,30,8,2,1,28,44,1493,1538,35,38,37,63,32,12,2,2,423,363,348,295,15,9,23,31,3,2,23,16,11,10,357,302,19,13,31,37,3,3,25,18 -050,01,049,Alabama,DeKalb County,10,8,4419,2176,2243,2003,2079,38,39,67,49,7,15,23,18,38,43,2038,2119,42,45,100,85,8,19,27,19,1726,1861,1643,1755,27,32,27,26,2,10,0,1,27,37,1669,1791,29,36,51,58,3,12,2,1,450,382,360,324,11,7,40,23,5,5,23,17,11,6,369,328,13,9,49,27,5,7,25,18 -050,01,049,Alabama,DeKalb County,10,9,4475,2277,2198,2085,2022,59,40,69,58,10,8,18,25,36,45,2117,2059,65,44,98,95,12,13,21,32,1870,1876,1764,1758,40,37,32,39,8,6,3,5,23,31,1787,1786,43,38,51,66,9,9,3,8,407,322,321,264,19,3,37,19,2,2,15,20,13,14,330,273,22,6,47,29,3,4,18,24 -050,01,049,Alabama,DeKalb County,10,10,4841,2444,2397,2246,2218,75,43,50,53,6,19,13,17,54,47,2297,2262,80,49,98,90,9,25,14,20,2151,2135,2016,2010,53,30,32,38,5,16,0,0,45,41,2060,2051,55,33,74,71,7,20,0,3,293,262,230,208,22,13,18,15,1,3,13,17,9,6,237,211,25,16,24,19,2,5,14,17 -050,01,049,Alabama,DeKalb County,10,11,4656,2294,2362,2165,2205,32,36,44,53,10,15,17,5,26,48,2189,2251,36,40,67,92,10,19,18,8,2076,2199,1992,2060,25,34,29,46,7,13,1,0,22,46,2013,2105,27,36,50,85,7,17,1,2,218,163,173,145,7,2,15,7,3,2,16,5,4,2,176,146,9,4,17,7,3,2,17,6 -050,01,049,Alabama,DeKalb County,10,12,4770,2385,2385,2234,2269,37,33,45,35,6,3,15,2,48,43,2281,2309,41,40,89,74,7,3,15,2,2229,2288,2113,2189,34,28,30,27,6,3,2,0,44,41,2157,2227,36,34,71,65,7,3,2,0,156,97,121,80,3,5,15,8,0,0,13,2,4,2,124,82,5,6,18,9,0,0,13,2 -050,01,049,Alabama,DeKalb County,10,13,4456,2160,2296,2041,2161,38,39,33,39,7,8,3,2,38,47,2077,2207,41,42,67,84,10,8,3,2,2084,2240,1973,2110,36,38,31,38,7,7,1,1,36,46,2007,2155,38,41,65,82,9,7,1,1,76,56,68,51,2,1,2,1,0,1,2,1,2,1,70,52,3,1,2,2,1,1,2,1 -050,01,049,Alabama,DeKalb County,10,14,4052,1922,2130,1848,2019,22,35,25,31,2,5,1,1,24,39,1870,2057,24,37,47,69,3,5,2,1,1878,2090,1809,1983,22,35,21,28,2,5,0,0,24,39,1831,2021,24,37,43,66,3,5,1,0,44,40,39,36,0,0,4,3,0,0,1,1,0,0,39,36,0,0,4,3,0,0,1,1 -050,01,049,Alabama,DeKalb County,10,15,3243,1559,1684,1491,1642,16,14,23,11,2,1,0,3,27,13,1516,1654,20,18,48,22,2,1,0,3,1542,1667,1474,1628,16,14,23,11,2,1,0,0,27,13,1499,1640,20,18,48,22,2,1,0,0,17,17,17,14,0,0,0,0,0,0,0,3,0,0,17,14,0,0,0,0,0,0,0,3 -050,01,049,Alabama,DeKalb County,10,16,2170,941,1229,905,1185,12,15,6,4,1,0,0,1,17,24,921,1209,14,16,21,27,1,0,1,1,931,1215,895,1171,12,15,6,4,1,0,0,1,17,24,911,1195,14,16,21,27,1,0,1,1,10,14,10,14,0,0,0,0,0,0,0,0,0,0,10,14,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,10,17,1384,562,822,539,799,10,8,4,3,0,2,0,1,9,9,547,806,11,10,13,11,0,3,0,1,548,814,526,792,10,8,3,3,0,2,0,0,9,9,534,799,11,10,12,11,0,3,0,0,14,8,13,7,0,0,1,0,0,0,0,1,0,0,13,7,0,0,1,0,0,0,0,1 -050,01,049,Alabama,DeKalb County,10,18,1265,440,825,417,790,3,15,6,5,0,2,0,0,14,13,431,803,3,16,19,17,1,2,0,0,431,820,410,785,3,15,4,5,0,2,0,0,14,13,424,798,3,16,17,17,1,2,0,0,9,5,7,5,0,0,2,0,0,0,0,0,0,0,7,5,0,0,2,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,11,0,71430,35426,36004,32788,33523,643,652,726,687,204,166,242,201,823,775,33568,34249,853,838,1306,1248,266,221,273,236,29858,31018,28090,29254,482,516,413,444,142,111,23,20,708,673,28776,29901,660,668,914,938,192,152,34,38,5568,4986,4698,4269,161,136,313,243,62,55,219,181,115,102,4792,4348,193,170,392,310,74,69,239,198 -050,01,049,Alabama,DeKalb County,11,1,4326,2307,2019,2099,1862,46,35,25,20,24,18,4,10,109,74,2205,1930,103,71,67,52,37,27,7,16,1685,1477,1543,1379,22,21,12,10,3,5,0,1,105,61,1647,1437,76,53,52,35,16,11,2,4,622,542,556,483,24,14,13,10,21,13,4,9,4,13,558,493,27,18,15,17,21,16,5,12 -050,01,049,Alabama,DeKalb County,11,2,4700,2372,2328,2189,2152,37,49,29,42,10,13,13,13,94,59,2279,2208,80,76,73,71,16,16,20,17,1743,1688,1623,1582,21,31,10,14,4,7,1,1,84,53,1704,1633,60,56,48,40,9,10,6,3,629,640,566,570,16,18,19,28,6,6,12,12,10,6,575,575,20,20,25,31,7,6,14,14 -050,01,049,Alabama,DeKalb County,11,3,5232,2666,2566,2424,2314,47,61,66,64,11,18,37,33,81,76,2495,2379,76,89,116,105,16,28,44,41,1890,1824,1777,1699,25,32,22,20,6,11,3,5,57,57,1833,1752,49,57,54,47,8,17,3,8,776,742,647,615,22,29,44,44,5,7,34,28,24,19,662,627,27,32,62,58,8,11,41,33 -050,01,049,Alabama,DeKalb County,11,4,4803,2516,2287,2276,2088,43,58,82,63,10,11,32,13,73,54,2347,2142,66,77,128,97,16,15,33,15,1912,1726,1759,1592,34,47,50,40,3,5,4,2,62,40,1819,1632,55,60,88,64,8,7,5,3,604,561,517,496,9,11,32,23,7,6,28,11,11,14,528,510,11,17,40,33,8,8,28,12 -050,01,049,Alabama,DeKalb County,11,5,4029,2102,1927,1911,1769,47,46,54,44,9,11,21,21,60,36,1969,1803,62,56,97,67,15,14,21,23,1682,1555,1549,1446,40,38,32,32,6,4,6,1,49,34,1596,1478,52,47,67,54,12,7,6,3,420,372,362,323,7,8,22,12,3,7,15,20,11,2,373,325,10,9,30,13,3,7,15,20 -050,01,049,Alabama,DeKalb County,11,6,4546,2302,2244,2109,2079,40,44,48,46,45,7,22,19,38,49,2145,2123,48,59,73,79,50,11,24,21,1945,1911,1808,1798,38,32,26,32,39,6,0,1,34,42,1840,1837,43,44,50,61,44,8,2,3,357,333,301,281,2,12,22,14,6,1,22,18,4,7,305,286,5,15,23,18,6,3,22,18 -050,01,049,Alabama,DeKalb County,11,7,3982,2017,1965,1823,1796,44,38,49,55,41,9,23,15,37,52,1857,1845,51,48,79,92,44,16,24,17,1567,1617,1448,1514,32,26,20,28,38,7,2,1,27,41,1472,1554,37,32,44,58,40,13,2,2,450,348,375,282,12,12,29,27,3,2,21,14,10,11,385,291,14,16,35,34,4,3,22,15 -050,01,049,Alabama,DeKalb County,11,8,4248,2096,2152,1936,1999,42,32,48,54,7,15,20,14,43,38,1974,2034,48,40,82,85,10,16,26,16,1719,1777,1643,1680,25,27,17,26,4,10,0,1,30,33,1673,1712,27,32,41,54,7,11,1,2,377,375,293,319,17,5,31,28,3,5,20,13,13,5,301,322,21,8,41,31,3,5,25,14 -050,01,049,Alabama,DeKalb County,11,9,4487,2241,2246,2058,2069,44,43,76,56,11,8,19,24,33,46,2089,2110,49,51,103,92,15,11,20,28,1827,1910,1721,1791,36,38,37,38,7,6,3,3,23,34,1743,1824,38,42,58,66,8,8,3,4,414,336,337,278,8,5,39,18,4,2,16,21,10,12,346,286,11,9,45,26,7,3,17,24 -050,01,049,Alabama,DeKalb County,11,10,4834,2432,2402,2230,2227,85,40,50,52,8,19,13,18,46,46,2272,2270,90,46,91,91,11,23,16,19,2107,2119,1975,1998,55,28,33,35,7,16,0,2,37,40,2010,2036,58,32,67,70,9,19,0,3,325,283,255,229,30,12,17,17,1,3,13,16,9,6,262,234,32,14,24,21,2,4,16,16 -050,01,049,Alabama,DeKalb County,11,11,4638,2290,2348,2157,2182,32,40,46,54,10,15,16,10,29,47,2185,2228,35,45,72,95,11,17,16,10,2074,2163,1986,2024,24,36,29,47,8,13,0,0,27,43,2012,2066,27,40,53,85,9,15,0,0,216,185,171,158,8,4,17,7,2,2,16,10,2,4,173,162,8,5,19,10,2,2,16,10 -050,01,049,Alabama,DeKalb County,11,12,4761,2372,2389,2224,2260,31,40,49,43,8,5,15,2,45,39,2268,2299,33,43,92,77,9,7,15,2,2187,2279,2080,2166,27,37,30,32,7,5,2,0,41,39,2121,2205,28,40,70,66,7,7,2,0,185,110,144,94,4,3,19,11,1,0,13,2,4,0,147,94,5,3,22,11,2,0,13,2 -050,01,049,Alabama,DeKalb County,11,13,4552,2206,2346,2084,2215,40,32,34,35,5,7,5,2,38,55,2122,2266,41,37,70,89,6,7,5,3,2109,2283,1997,2162,38,29,32,34,5,6,2,0,35,52,2032,2211,39,33,66,85,5,6,2,0,97,63,87,53,2,3,2,1,0,1,3,2,3,3,90,55,2,4,4,4,1,1,3,3 -050,01,049,Alabama,DeKalb County,11,14,3991,1894,2097,1825,1981,19,40,22,30,0,5,2,2,26,39,1849,2020,22,41,46,66,1,7,2,2,1844,2052,1780,1938,19,40,19,29,0,5,0,1,26,39,1804,1977,22,41,43,65,1,7,0,1,50,45,45,43,0,0,3,1,0,0,2,1,0,0,45,43,0,0,3,1,0,0,2,1 -050,01,049,Alabama,DeKalb County,11,15,3329,1570,1759,1491,1707,17,18,30,13,4,2,0,3,28,16,1518,1722,19,19,57,29,6,2,0,3,1555,1737,1477,1690,17,18,29,11,4,2,0,0,28,16,1504,1705,19,19,56,27,6,2,0,0,15,22,14,17,0,0,1,2,0,0,0,3,0,0,14,17,0,0,1,2,0,0,0,3 -050,01,049,Alabama,DeKalb County,11,16,2281,1023,1258,982,1213,16,11,7,7,1,0,0,1,17,26,999,1239,16,13,24,30,1,0,0,2,1009,1244,968,1199,16,11,7,7,1,0,0,1,17,26,985,1225,16,13,24,30,1,0,0,2,14,14,14,14,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,11,17,1462,596,866,569,840,12,11,4,4,0,1,0,1,11,9,580,847,12,13,15,13,0,1,0,1,585,856,559,831,12,11,3,4,0,1,0,0,11,9,570,838,12,13,14,13,0,1,0,0,11,10,10,9,0,0,1,0,0,0,0,1,0,0,10,9,0,0,1,0,0,0,0,1 -050,01,049,Alabama,DeKalb County,11,18,1229,424,805,401,770,1,14,7,5,0,2,0,0,15,14,415,784,2,14,21,18,2,3,0,0,418,800,397,765,1,14,5,5,0,2,0,0,15,14,411,779,2,14,19,18,2,3,0,0,6,5,4,5,0,0,2,0,0,0,0,0,0,0,4,5,0,0,2,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,12,0,71506,35514,35992,32817,33473,677,667,742,693,202,159,240,201,836,799,33609,34213,896,871,1322,1269,272,215,261,236,29876,30894,28061,29117,507,515,427,439,140,106,23,21,718,696,28752,29781,695,680,926,946,198,153,30,39,5638,5098,4756,4356,170,152,315,254,62,53,217,180,118,103,4857,4432,201,191,396,323,74,62,231,197 -050,01,049,Alabama,DeKalb County,12,1,4277,2238,2039,2038,1867,43,41,25,31,18,12,9,12,105,76,2137,1936,100,81,68,66,29,19,11,17,1648,1476,1507,1372,29,27,10,12,3,2,0,0,99,63,1601,1431,83,62,50,40,13,7,2,3,590,563,531,495,14,14,15,19,15,10,9,12,6,13,536,505,17,19,18,26,16,12,9,14 -050,01,049,Alabama,DeKalb County,12,2,4680,2403,2277,2212,2106,47,46,27,32,12,15,8,8,97,70,2304,2170,89,80,76,66,26,24,9,11,1750,1700,1628,1584,16,24,14,14,4,11,1,2,87,65,1712,1645,55,54,54,45,17,20,1,4,653,577,584,522,31,22,13,18,8,4,7,6,10,5,592,525,34,26,22,21,9,4,8,7 -050,01,049,Alabama,DeKalb County,12,3,5152,2613,2539,2376,2284,51,67,63,64,9,20,36,33,78,71,2449,2349,78,93,107,102,19,29,39,38,1861,1763,1752,1647,24,31,21,15,3,9,4,5,57,56,1808,1702,45,53,50,43,12,16,4,6,752,776,624,637,27,36,42,49,6,11,32,28,21,15,641,647,33,40,57,59,7,13,35,32 -050,01,049,Alabama,DeKalb County,12,4,4796,2534,2262,2295,2068,38,52,80,62,9,11,30,14,82,55,2376,2118,64,72,132,95,15,16,30,17,1890,1685,1740,1564,31,38,46,34,1,7,2,3,70,39,1809,1601,53,55,89,56,7,10,2,3,644,577,555,504,7,14,34,28,8,4,28,11,12,16,567,517,11,17,43,39,8,6,28,14 -050,01,049,Alabama,DeKalb County,12,5,4142,2149,1993,1961,1809,37,54,59,50,8,11,24,21,60,48,2021,1850,50,71,97,82,15,14,26,24,1700,1573,1577,1446,34,45,32,35,6,4,4,1,47,42,1624,1483,44,60,62,62,11,7,6,3,449,420,384,363,3,9,27,15,2,7,20,20,13,6,397,367,6,11,35,20,4,7,20,21 -050,01,049,Alabama,DeKalb County,12,6,4602,2360,2242,2128,2081,58,44,52,46,62,6,21,20,39,45,2166,2120,67,58,80,78,66,10,21,21,2010,1893,1830,1781,52,36,35,33,56,4,3,1,34,38,1863,1814,60,47,60,60,59,8,3,2,350,349,298,300,6,8,17,13,6,2,18,19,5,7,303,306,7,11,20,18,7,2,18,19 -050,01,049,Alabama,DeKalb County,12,7,3949,2003,1946,1839,1778,41,45,44,55,21,7,18,16,40,45,1874,1819,49,55,75,89,26,10,20,18,1591,1625,1497,1526,33,27,15,28,15,5,1,1,30,38,1524,1562,39,34,38,57,20,8,1,2,412,321,342,252,8,18,29,27,6,2,17,15,10,7,350,257,10,21,37,32,6,2,19,16 -050,01,049,Alabama,DeKalb County,12,8,4175,2061,2114,1886,1970,50,29,52,45,11,13,23,13,39,44,1923,2010,57,36,85,78,11,16,24,18,1666,1740,1577,1648,27,25,22,22,8,8,1,1,31,36,1607,1682,31,28,50,50,8,11,1,5,395,374,309,322,23,4,30,23,3,5,22,12,8,8,316,328,26,8,35,28,3,5,23,13 -050,01,049,Alabama,DeKalb County,12,9,4483,2235,2248,2055,2073,45,39,78,56,8,9,17,24,32,47,2083,2116,51,47,104,94,9,11,20,28,1812,1902,1708,1783,40,35,37,38,5,8,2,1,20,37,1728,1818,44,39,53,69,5,10,2,3,423,346,347,290,5,4,41,18,3,1,15,23,12,10,355,298,7,8,51,25,4,1,18,25 -050,01,049,Alabama,DeKalb County,12,10,4782,2394,2388,2197,2227,74,36,52,47,10,19,16,16,45,43,2239,2268,77,43,89,83,14,21,20,17,2063,2095,1945,1987,45,27,29,27,9,15,1,4,34,35,1978,2021,47,32,60,57,11,16,1,4,331,293,252,240,29,9,23,20,1,4,15,12,11,8,261,247,30,11,29,26,3,5,19,13 -050,01,049,Alabama,DeKalb County,12,11,4594,2292,2302,2141,2134,46,43,46,54,12,8,12,13,35,50,2175,2182,49,50,77,97,12,11,14,13,2073,2092,1963,1961,37,35,32,45,9,6,0,0,32,45,1994,2006,40,39,60,85,9,7,2,0,219,210,178,173,9,8,14,9,3,2,12,13,3,5,181,176,9,11,17,12,3,4,12,13 -050,01,049,Alabama,DeKalb County,12,12,4758,2363,2395,2215,2247,34,44,47,51,8,9,18,3,41,41,2253,2286,38,48,83,89,11,10,19,3,2162,2270,2060,2136,28,42,28,42,7,9,2,0,37,41,2095,2175,31,46,62,80,8,10,3,0,201,125,155,111,6,2,19,9,1,0,16,3,4,0,158,111,7,2,21,9,3,0,16,3 -050,01,049,Alabama,DeKalb County,12,13,4570,2239,2331,2091,2195,47,31,44,40,8,9,6,2,43,54,2131,2247,54,35,81,90,10,10,6,3,2122,2266,1987,2143,45,27,40,37,8,8,2,0,40,51,2024,2194,50,29,77,85,9,9,2,0,117,65,104,52,2,4,4,3,0,1,4,2,3,3,107,53,4,6,4,5,1,1,4,3 -050,01,049,Alabama,DeKalb County,12,14,3939,1882,2057,1814,1945,17,42,21,25,0,4,2,2,28,39,1841,1984,19,44,46,60,2,5,2,3,1836,2012,1772,1901,17,42,19,25,0,4,0,1,28,39,1799,1940,19,44,44,60,2,5,0,2,46,45,42,44,0,0,2,0,0,0,2,1,0,0,42,44,0,0,2,0,0,0,2,1 -050,01,049,Alabama,DeKalb County,12,15,3532,1658,1874,1578,1817,19,15,33,17,5,2,0,2,23,21,1601,1837,20,17,55,36,5,3,0,2,1632,1844,1555,1792,19,15,30,14,5,2,0,0,23,21,1578,1812,20,17,52,33,5,3,0,0,26,30,23,25,0,0,3,3,0,0,0,2,0,0,23,25,0,0,3,3,0,0,0,2 -050,01,049,Alabama,DeKalb County,12,16,2367,1093,1274,1046,1222,14,16,8,9,1,1,0,2,24,24,1068,1245,16,17,31,31,2,2,0,3,1079,1262,1032,1211,14,16,8,9,1,1,0,1,24,24,1054,1234,16,17,31,31,2,2,0,2,14,12,14,11,0,0,0,0,0,0,0,1,0,0,14,11,0,0,0,0,0,0,0,1 -050,01,049,Alabama,DeKalb County,12,17,1466,582,884,552,861,14,8,6,3,0,0,0,0,10,12,561,873,15,8,16,14,0,1,0,0,571,874,542,851,14,8,5,3,0,0,0,0,10,12,551,863,15,8,15,14,0,1,0,0,11,10,10,10,0,0,1,0,0,0,0,0,0,0,10,10,0,0,1,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,12,18,1242,415,827,393,789,2,15,5,6,0,3,0,0,15,14,407,803,3,16,20,19,0,3,0,0,410,822,389,784,2,15,4,6,0,3,0,0,15,14,403,798,3,16,19,19,0,3,0,0,5,5,4,5,0,0,1,0,0,0,0,0,0,0,4,5,0,0,1,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,13,0,71658,35598,36060,32848,33478,694,658,755,717,207,164,243,209,851,834,33647,34257,937,867,1332,1319,278,229,267,240,29879,30842,27996,29023,525,505,439,453,150,109,23,20,746,732,28707,29718,730,684,950,983,210,162,37,38,5719,5218,4852,4455,169,153,316,264,57,55,220,189,105,102,4940,4539,207,183,382,336,68,67,230,202 -050,01,049,Alabama,DeKalb County,13,1,4277,2239,2038,2021,1838,41,42,35,37,16,12,14,19,112,90,2124,1917,102,92,79,71,28,25,19,25,1646,1469,1495,1350,29,26,15,15,3,4,0,0,104,74,1592,1419,87,70,54,40,13,13,4,3,593,569,526,488,12,16,20,22,13,8,14,19,8,16,532,498,15,22,25,31,15,12,15,22 -050,01,049,Alabama,DeKalb County,13,2,4581,2386,2195,2195,2031,51,40,28,31,11,16,4,5,97,72,2288,2099,100,74,71,63,24,24,6,8,1752,1634,1616,1521,21,20,16,12,4,10,1,1,94,70,1706,1587,68,52,58,44,17,18,3,4,634,561,579,510,30,20,12,19,7,6,3,4,3,2,582,512,32,22,13,19,7,6,3,4 -050,01,049,Alabama,DeKalb County,13,3,5183,2624,2559,2371,2306,57,73,57,60,11,17,36,31,92,72,2454,2374,93,99,107,101,21,27,42,33,1868,1798,1744,1677,28,34,18,16,3,8,3,3,72,60,1813,1736,59,58,54,49,10,15,5,3,756,761,627,629,29,39,39,44,8,9,33,28,20,12,641,638,34,41,53,52,11,12,37,30 -050,01,049,Alabama,DeKalb County,13,4,4746,2456,2290,2239,2080,35,54,71,64,9,13,29,21,73,58,2310,2130,61,73,115,105,16,20,29,24,1818,1673,1683,1556,27,33,37,30,2,8,3,5,66,41,1747,1591,51,48,76,57,8,14,3,5,638,617,556,524,8,21,34,34,7,5,26,16,7,17,563,539,10,25,39,48,8,6,26,19 -050,01,049,Alabama,DeKalb County,13,5,4214,2205,2009,2022,1826,34,42,61,55,8,11,27,20,53,55,2071,1874,53,63,96,89,11,16,27,22,1710,1554,1588,1430,33,38,38,37,5,3,4,1,42,45,1628,1469,46,56,66,64,8,8,4,2,495,455,434,396,1,4,23,18,3,8,23,19,11,10,443,405,7,7,30,25,3,8,23,20 -050,01,049,Alabama,DeKalb County,13,6,4543,2333,2210,2101,2058,64,37,47,44,55,10,18,16,48,45,2144,2099,77,49,82,77,60,13,18,18,1987,1856,1803,1745,57,31,31,34,52,7,3,1,41,38,1839,1779,68,41,62,62,56,10,3,3,346,354,298,313,7,6,16,10,3,3,15,15,7,7,305,320,9,8,20,15,4,3,15,15 -050,01,049,Alabama,DeKalb County,13,7,4021,2043,1978,1856,1824,51,51,51,46,25,4,23,14,37,39,1892,1862,59,59,80,77,26,5,24,15,1668,1669,1551,1568,43,34,24,26,19,4,1,0,30,37,1580,1604,47,42,50,55,20,5,2,1,375,309,305,256,8,17,27,20,6,0,22,14,7,2,312,258,12,17,30,22,6,0,22,14 -050,01,049,Alabama,DeKalb County,13,8,4081,2024,2057,1837,1913,47,25,56,43,21,16,25,14,38,46,1874,1955,53,35,88,81,21,18,26,16,1614,1699,1512,1605,25,23,23,23,20,9,1,2,33,37,1545,1639,28,29,53,55,20,10,1,3,410,358,325,308,22,2,33,20,1,7,24,12,5,9,329,316,25,6,35,26,1,8,25,13 -050,01,049,Alabama,DeKalb County,13,9,4495,2215,2280,2056,2099,35,41,69,58,9,10,14,25,32,47,2084,2142,43,46,92,96,11,12,17,31,1799,1899,1707,1783,32,35,34,36,5,8,1,0,20,37,1726,1819,35,38,50,65,6,10,2,4,416,381,349,316,3,6,35,22,4,2,13,25,12,10,358,323,8,8,42,31,5,2,15,27 -050,01,049,Alabama,DeKalb County,13,10,4641,2345,2296,2146,2146,75,31,60,50,10,14,13,16,41,39,2184,2183,81,38,95,82,10,18,16,17,1990,1998,1873,1899,45,24,31,27,9,11,2,5,30,32,1902,1931,48,28,58,54,9,13,3,5,355,298,273,247,30,7,29,23,1,3,11,11,11,7,282,252,33,10,37,28,1,5,13,12 -050,01,049,Alabama,DeKalb County,13,11,4688,2356,2332,2191,2146,54,47,44,56,9,11,12,15,46,57,2234,2202,55,52,85,106,14,13,14,16,2110,2115,1989,1973,42,39,31,44,7,9,0,0,41,50,2028,2022,42,43,68,88,11,11,2,1,246,217,202,173,12,8,13,12,2,2,12,15,5,7,206,180,13,9,17,18,3,2,12,15 -050,01,049,Alabama,DeKalb County,13,12,4764,2364,2400,2222,2239,33,41,50,58,8,11,17,5,34,46,2256,2285,34,42,79,100,13,13,17,6,2170,2250,2072,2106,29,39,32,49,6,10,1,0,30,46,2102,2152,29,40,59,91,9,12,1,1,194,150,150,133,4,2,18,9,2,1,16,5,4,0,154,133,5,2,20,9,4,1,16,5 -050,01,049,Alabama,DeKalb County,13,13,4585,2236,2349,2084,2214,41,35,46,42,6,6,9,1,50,51,2129,2263,46,38,92,89,10,8,9,2,2091,2275,1961,2156,39,31,36,34,6,6,3,0,46,48,2002,2202,43,33,79,80,10,7,3,1,145,74,123,58,2,4,10,8,0,0,6,1,4,3,127,61,3,5,13,9,0,1,6,1 -050,01,049,Alabama,DeKalb County,13,14,4009,1956,2053,1871,1934,25,38,27,29,3,8,2,3,28,41,1899,1974,25,42,53,66,5,9,2,3,1898,2006,1819,1891,24,37,25,29,3,7,0,1,27,41,1846,1931,24,41,50,66,5,8,0,1,58,47,52,43,1,1,2,0,0,1,2,2,1,0,53,43,1,1,3,0,0,1,2,2 -050,01,049,Alabama,DeKalb County,13,15,3639,1686,1953,1609,1879,19,25,30,23,5,2,0,0,23,24,1632,1901,20,28,50,46,7,2,0,0,1653,1917,1579,1846,19,25,27,20,5,2,0,0,23,24,1602,1868,20,28,47,43,7,2,0,0,33,36,30,33,0,0,3,3,0,0,0,0,0,0,30,33,0,0,3,3,0,0,0,0 -050,01,049,Alabama,DeKalb County,13,16,2487,1141,1346,1092,1290,15,16,13,11,0,1,0,4,21,24,1113,1314,15,16,34,34,0,2,0,4,1131,1333,1082,1280,15,16,13,11,0,1,0,1,21,24,1103,1304,15,16,34,34,0,2,0,1,10,13,10,10,0,0,0,0,0,0,0,3,0,0,10,10,0,0,0,0,0,0,0,3 -050,01,049,Alabama,DeKalb County,13,17,1474,571,903,539,880,13,8,5,4,1,0,0,0,13,11,551,891,15,9,16,14,1,1,1,0,564,892,532,869,13,8,5,4,1,0,0,0,13,11,544,880,15,9,16,14,1,1,1,0,7,11,7,11,0,0,0,0,0,0,0,0,0,0,7,11,0,0,0,0,0,0,0,0 -050,01,049,Alabama,DeKalb County,13,18,1230,418,812,396,775,4,12,5,6,0,2,0,0,13,17,408,792,5,12,18,22,0,3,0,0,410,805,390,768,4,12,3,6,0,2,0,0,13,17,402,785,5,12,16,22,0,3,0,0,8,7,6,7,0,0,2,0,0,0,0,0,0,0,6,7,0,0,2,0,0,0,0,0 -050,01,051,Alabama,Elmore County,1,0,79303,38689,40614,29731,31590,8051,7934,168,161,215,320,38,47,486,562,30183,32112,8270,8180,373,385,319,461,59,77,37622,39552,28831,30702,7978,7852,135,134,208,312,23,28,447,524,29246,31188,8181,8084,316,338,309,444,36,52,1067,1062,900,888,73,82,33,27,7,8,15,19,39,38,937,924,89,96,57,47,10,17,23,25 -050,01,051,Alabama,Elmore County,1,1,4859,2451,2408,1826,1787,511,510,12,10,14,15,2,5,86,81,1908,1864,578,566,27,25,26,33,6,9,2338,2290,1738,1689,499,502,4,7,14,15,1,1,82,76,1816,1761,563,558,15,17,26,29,5,5,113,118,88,98,12,8,8,3,0,0,1,4,4,5,92,103,15,8,12,8,0,4,1,4 -050,01,051,Alabama,Elmore County,1,2,5206,2659,2547,2009,1903,556,535,10,10,16,21,3,9,65,69,2070,1968,594,584,25,21,33,33,4,12,2547,2440,1914,1818,548,530,7,7,16,18,2,4,60,63,1970,1878,583,574,19,17,33,29,2,6,112,107,95,85,8,5,3,3,0,3,1,5,5,6,100,90,11,10,6,4,0,4,2,6 -050,01,051,Alabama,Elmore County,1,3,5256,2654,2602,1996,1901,561,603,9,10,20,14,1,3,67,71,2061,1970,600,645,27,24,34,33,2,7,2569,2520,1922,1832,554,595,9,7,20,14,1,2,63,70,1983,1900,592,637,25,21,34,33,1,5,85,82,74,69,7,8,0,3,0,0,0,1,4,1,78,70,8,8,2,3,0,0,1,2 -050,01,051,Alabama,Elmore County,1,4,5579,2902,2677,2061,1926,769,660,6,18,12,18,2,4,52,51,2111,1975,788,686,23,25,29,35,4,7,2816,2606,1983,1869,766,652,5,14,12,18,0,3,50,50,2031,1917,784,678,21,21,29,35,2,5,86,71,78,57,3,8,1,4,0,0,2,1,2,1,80,58,4,8,2,4,0,0,2,2 -050,01,051,Alabama,Elmore County,1,5,5144,2679,2465,1677,1748,952,650,9,18,15,13,5,8,21,28,1693,1775,960,662,19,29,23,21,5,10,2565,2390,1578,1693,944,641,5,17,13,13,4,5,21,21,1594,1713,952,650,15,25,21,18,4,6,114,75,99,55,8,9,4,1,2,0,1,3,0,7,99,62,8,12,4,4,2,3,1,4 -050,01,051,Alabama,Elmore County,1,6,5049,2414,2635,1650,1954,692,618,17,7,23,24,5,1,27,31,1675,1982,704,629,28,16,30,39,9,1,2280,2521,1544,1847,686,613,13,6,22,23,0,1,15,31,1558,1875,693,624,18,15,26,38,1,1,134,114,106,107,6,5,4,1,1,1,5,0,12,0,117,107,11,5,10,1,4,1,8,0 -050,01,051,Alabama,Elmore County,1,7,5439,2648,2791,1875,2088,703,642,16,8,26,29,4,2,24,22,1896,2109,710,648,28,17,36,37,4,3,2559,2639,1809,1949,692,636,12,7,25,28,2,0,19,19,1825,1967,697,640,20,14,35,36,2,1,89,152,66,139,11,6,4,1,1,1,2,2,5,3,71,142,13,8,8,3,1,1,2,2 -050,01,051,Alabama,Elmore County,1,8,5872,2762,3110,2029,2335,685,688,10,16,18,31,1,2,19,38,2045,2370,692,700,16,39,23,41,6,5,2677,3024,1955,2263,681,680,6,14,17,30,1,2,17,35,1970,2295,687,691,11,36,22,40,5,4,85,86,74,72,4,8,4,2,1,1,0,0,2,3,75,75,5,9,5,3,1,1,1,1 -050,01,051,Alabama,Elmore County,1,9,5752,2771,2981,2119,2289,603,611,15,17,18,29,1,2,15,33,2134,2319,608,615,24,42,20,37,2,4,2697,2913,2055,2234,599,607,11,12,18,29,1,2,13,29,2068,2260,604,611,19,33,20,37,1,4,74,68,64,55,4,4,4,5,0,0,0,0,2,4,66,59,4,4,5,9,0,0,1,0 -050,01,051,Alabama,Elmore County,1,10,6367,3014,3353,2407,2630,553,645,18,7,14,24,1,3,21,44,2427,2670,556,657,33,39,17,31,2,6,2958,3284,2355,2569,551,642,18,7,13,23,1,2,20,41,2374,2606,554,652,33,38,16,30,1,5,56,69,52,61,2,3,0,0,1,1,0,1,1,3,53,64,2,5,0,1,1,1,1,1 -050,01,051,Alabama,Elmore County,1,11,5890,2891,2999,2360,2433,477,491,8,9,15,32,4,2,27,32,2383,2461,481,498,30,31,20,38,5,4,2849,2956,2320,2397,477,488,7,6,14,32,4,2,27,31,2343,2425,481,495,29,28,19,37,5,3,42,43,40,36,0,3,1,3,1,0,0,0,0,1,40,36,0,3,1,3,1,1,0,1 -050,01,051,Alabama,Elmore County,1,12,4908,2371,2537,1977,2086,347,398,9,11,13,26,4,3,21,13,1998,2096,350,401,27,22,15,27,5,4,2344,2515,1953,2068,345,395,9,11,13,26,4,2,20,13,1973,2078,348,398,26,22,15,27,5,3,27,22,24,18,2,3,0,0,0,0,0,1,1,0,25,18,2,3,1,0,0,0,0,1 -050,01,051,Alabama,Elmore County,1,13,4546,2216,2330,1929,2005,253,274,15,9,4,19,2,0,13,23,1940,2025,256,278,28,25,4,25,2,0,2200,2307,1914,1987,252,272,15,9,4,19,2,0,13,20,1925,2004,255,275,28,23,4,25,2,0,16,23,15,18,1,2,0,0,0,0,0,0,0,3,15,21,1,3,0,2,0,0,0,0 -050,01,051,Alabama,Elmore County,1,14,3318,1642,1676,1467,1473,151,178,7,4,5,11,0,0,12,10,1479,1481,152,179,17,10,6,14,0,2,1631,1671,1461,1468,146,178,7,4,5,11,0,0,12,10,1473,1476,147,179,17,10,6,14,0,2,11,5,6,5,5,0,0,0,0,0,0,0,0,0,6,5,5,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,1,15,2422,1136,1286,1008,1110,114,158,4,5,2,5,0,1,8,7,1016,1117,114,158,12,12,2,5,0,1,1125,1280,998,1107,114,156,4,5,2,5,0,1,7,6,1005,1113,114,156,11,11,2,5,0,1,11,6,10,3,0,2,0,0,0,0,0,0,1,1,11,4,0,2,1,1,0,0,0,0 -050,01,051,Alabama,Elmore County,1,16,1617,754,863,690,750,57,104,2,0,0,4,1,1,4,4,694,753,57,105,5,1,1,7,1,1,750,852,687,746,57,98,2,0,0,3,0,1,4,4,691,749,57,99,5,1,1,6,0,1,4,11,3,4,0,6,0,0,0,1,1,0,0,0,3,4,0,6,0,0,0,1,1,0 -050,01,051,Alabama,Elmore County,1,17,1136,445,691,397,590,45,90,0,2,0,4,1,0,2,5,399,595,46,90,1,7,0,4,1,0,440,684,393,586,45,88,0,1,0,4,0,0,2,5,395,591,46,88,1,6,0,4,0,0,5,7,4,4,0,2,0,1,0,0,1,0,0,0,4,4,0,2,0,1,0,0,1,0 -050,01,051,Alabama,Elmore County,1,18,943,280,663,254,582,22,79,1,0,0,1,1,1,2,0,254,582,24,79,3,0,0,1,1,1,277,660,252,580,22,79,1,0,0,1,0,0,2,0,252,580,24,79,3,0,0,1,0,0,3,3,2,2,0,0,0,0,0,0,1,1,0,0,2,2,0,0,0,0,0,0,1,1 -050,01,051,Alabama,Elmore County,2,0,79279,38675,40604,29723,31582,8044,7931,168,161,215,320,38,47,487,563,30176,32105,8264,8178,373,385,319,461,59,77,37607,39542,28822,30694,7971,7849,135,134,208,312,23,28,448,525,29238,31181,8175,8082,316,338,309,444,36,52,1068,1062,901,888,73,82,33,27,7,8,15,19,39,38,938,924,89,96,57,47,10,17,23,25 -050,01,051,Alabama,Elmore County,2,1,4856,2449,2407,1825,1785,509,510,12,10,14,15,2,5,87,82,1908,1863,577,567,27,25,26,33,6,9,2336,2289,1737,1687,497,502,4,7,14,15,1,1,83,77,1816,1760,562,559,15,17,26,29,5,5,113,118,88,98,12,8,8,3,0,0,1,4,4,5,92,103,15,8,12,8,0,4,1,4 -050,01,051,Alabama,Elmore County,2,2,5202,2655,2547,2006,1903,555,535,10,10,16,21,3,9,65,69,2067,1968,593,584,25,21,33,33,4,12,2543,2440,1911,1818,547,530,7,7,16,18,2,4,60,63,1967,1878,582,574,19,17,33,29,2,6,112,107,95,85,8,5,3,3,0,3,1,5,5,6,100,90,11,10,6,4,0,4,2,6 -050,01,051,Alabama,Elmore County,2,3,5249,2651,2598,1994,1898,560,602,9,10,20,14,1,3,67,71,2059,1967,599,644,27,24,34,33,2,7,2566,2516,1920,1829,553,594,9,7,20,14,1,2,63,70,1981,1897,591,636,25,21,34,33,1,5,85,82,74,69,7,8,0,3,0,0,0,1,4,1,78,70,8,8,2,3,0,0,1,2 -050,01,051,Alabama,Elmore County,2,4,5578,2902,2676,2061,1925,769,660,6,18,12,18,2,4,52,51,2111,1974,788,686,23,25,29,35,4,7,2815,2605,1982,1868,766,652,5,14,12,18,0,3,50,50,2030,1916,784,678,21,21,29,35,2,5,87,71,79,57,3,8,1,4,0,0,2,1,2,1,81,58,4,8,2,4,0,0,2,2 -050,01,051,Alabama,Elmore County,2,5,5144,2679,2465,1677,1748,952,650,9,18,15,13,5,8,21,28,1693,1775,960,662,19,29,23,21,5,10,2565,2390,1578,1693,944,641,5,17,13,13,4,5,21,21,1594,1713,952,650,15,25,21,18,4,6,114,75,99,55,8,9,4,1,2,0,1,3,0,7,99,62,8,12,4,4,2,3,1,4 -050,01,051,Alabama,Elmore County,2,6,5046,2412,2634,1650,1954,690,617,17,7,23,24,5,1,27,31,1675,1982,702,628,28,16,30,39,9,1,2278,2520,1544,1847,684,612,13,6,22,23,0,1,15,31,1558,1875,691,623,18,15,26,38,1,1,134,114,106,107,6,5,4,1,1,1,5,0,12,0,117,107,11,5,10,1,4,1,8,0 -050,01,051,Alabama,Elmore County,2,7,5439,2649,2790,1876,2087,703,642,16,8,26,29,4,2,24,22,1897,2108,710,648,28,17,36,37,4,3,2560,2638,1810,1948,692,636,12,7,25,28,2,0,19,19,1826,1966,697,640,20,14,35,36,2,1,89,152,66,139,11,6,4,1,1,1,2,2,5,3,71,142,13,8,8,3,1,1,2,2 -050,01,051,Alabama,Elmore County,2,8,5872,2762,3110,2030,2336,684,687,10,16,18,31,1,2,19,38,2046,2371,691,699,16,39,23,41,6,5,2677,3024,1956,2264,680,679,6,14,17,30,1,2,17,35,1971,2296,686,690,11,36,22,40,5,4,85,86,74,72,4,8,4,2,1,1,0,0,2,3,75,75,5,9,5,3,1,1,1,1 -050,01,051,Alabama,Elmore County,2,9,5752,2772,2980,2120,2288,603,611,15,17,18,29,1,2,15,33,2135,2318,608,615,24,42,20,37,2,4,2698,2912,2056,2233,599,607,11,12,18,29,1,2,13,29,2069,2259,604,611,19,33,20,37,1,4,74,68,64,55,4,4,4,5,0,0,0,0,2,4,66,59,4,4,5,9,0,0,1,0 -050,01,051,Alabama,Elmore County,2,10,6366,3012,3354,2405,2631,553,645,18,7,14,24,1,3,21,44,2425,2671,556,657,33,39,17,31,2,6,2956,3285,2353,2570,551,642,18,7,13,23,1,2,20,41,2372,2607,554,652,33,38,16,30,1,5,56,69,52,61,2,3,0,0,1,1,0,1,1,3,53,64,2,5,0,1,1,1,1,1 -050,01,051,Alabama,Elmore County,2,11,5889,2891,2998,2360,2432,477,491,8,9,15,32,4,2,27,32,2383,2460,481,498,30,31,20,38,5,4,2849,2955,2320,2396,477,488,7,6,14,32,4,2,27,31,2343,2424,481,495,29,28,19,37,5,3,42,43,40,36,0,3,1,3,1,0,0,0,0,1,40,36,0,3,1,3,1,1,0,1 -050,01,051,Alabama,Elmore County,2,12,4904,2368,2536,1974,2085,347,398,9,11,13,26,4,3,21,13,1995,2095,350,401,27,22,15,27,5,4,2341,2514,1950,2067,345,395,9,11,13,26,4,2,20,13,1970,2077,348,398,26,22,15,27,5,3,27,22,24,18,2,3,0,0,0,0,0,1,1,0,25,18,2,3,1,0,0,0,0,1 -050,01,051,Alabama,Elmore County,2,13,4542,2214,2328,1927,2003,253,274,15,9,4,19,2,0,13,23,1938,2023,256,278,28,25,4,25,2,0,2198,2305,1912,1985,252,272,15,9,4,19,2,0,13,20,1923,2002,255,275,28,23,4,25,2,0,16,23,15,18,1,2,0,0,0,0,0,0,0,3,15,21,1,3,0,2,0,0,0,0 -050,01,051,Alabama,Elmore County,2,14,3318,1642,1676,1467,1473,151,178,7,4,5,11,0,0,12,10,1479,1481,152,179,17,10,6,14,0,2,1631,1671,1461,1468,146,178,7,4,5,11,0,0,12,10,1473,1476,147,179,17,10,6,14,0,2,11,5,6,5,5,0,0,0,0,0,0,0,0,0,6,5,5,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,2,15,2422,1136,1286,1008,1110,114,158,4,5,2,5,0,1,8,7,1016,1117,114,158,12,12,2,5,0,1,1125,1280,998,1107,114,156,4,5,2,5,0,1,7,6,1005,1113,114,156,11,11,2,5,0,1,11,6,10,3,0,2,0,0,0,0,0,0,1,1,11,4,0,2,1,1,0,0,0,0 -050,01,051,Alabama,Elmore County,2,16,1620,755,865,691,752,57,104,2,0,0,4,1,1,4,4,695,755,57,105,5,1,1,7,1,1,751,854,688,748,57,98,2,0,0,3,0,1,4,4,692,751,57,99,5,1,1,6,0,1,4,11,3,4,0,6,0,0,0,1,1,0,0,0,3,4,0,6,0,0,0,1,1,0 -050,01,051,Alabama,Elmore County,2,17,1137,446,691,398,590,45,90,0,2,0,4,1,0,2,5,400,595,46,90,1,7,0,4,1,0,441,684,394,586,45,88,0,1,0,4,0,0,2,5,396,591,46,88,1,6,0,4,0,0,5,7,4,4,0,2,0,1,0,0,1,0,0,0,4,4,0,2,0,1,0,0,1,0 -050,01,051,Alabama,Elmore County,2,18,943,280,663,254,582,22,79,1,0,0,1,1,1,2,0,254,582,24,79,3,0,0,1,1,1,277,660,252,580,22,79,1,0,0,1,0,0,2,0,252,580,24,79,3,0,0,1,0,0,3,3,2,2,0,0,0,0,0,0,1,1,0,0,2,2,0,0,0,0,0,0,1,1 -050,01,051,Alabama,Elmore County,3,0,79558,38860,40698,29806,31639,8131,7973,168,159,225,318,38,46,492,563,30259,32158,8355,8223,368,405,323,436,61,73,37787,39627,28901,30738,8057,7893,136,131,218,311,23,28,452,526,29317,31223,8261,8127,317,359,311,423,44,52,1073,1071,905,901,74,80,32,28,7,7,15,18,40,37,942,935,94,96,51,46,12,13,17,21 -050,01,051,Alabama,Elmore County,3,1,4832,2467,2365,1832,1752,522,506,11,10,14,15,2,4,86,78,1913,1827,580,556,23,22,34,32,8,8,2352,2249,1742,1653,509,499,4,6,14,15,1,1,82,75,1819,1725,566,548,14,17,33,31,7,5,115,116,90,99,13,7,7,4,0,0,1,3,4,3,94,102,14,8,9,5,1,1,1,3 -050,01,051,Alabama,Elmore County,3,2,5203,2646,2557,1997,1912,551,537,11,9,17,19,3,10,67,70,2062,1980,588,582,25,23,33,37,5,11,2535,2447,1904,1823,542,532,8,6,17,17,2,5,62,64,1965,1885,578,575,19,16,32,34,3,5,111,110,93,89,9,5,3,3,0,2,1,5,5,6,97,95,10,7,6,7,1,3,2,6 -050,01,051,Alabama,Elmore County,3,3,5300,2675,2625,2006,1910,570,616,9,10,21,14,1,3,68,72,2071,1978,609,659,24,27,35,31,5,4,2587,2540,1929,1840,563,606,9,7,21,14,1,2,64,71,1990,1907,598,648,24,24,35,31,5,3,88,85,77,70,7,10,0,3,0,0,0,1,4,1,81,71,11,11,0,3,0,0,0,1 -050,01,051,Alabama,Elmore County,3,4,5518,2878,2640,2040,1900,768,653,6,17,13,16,2,4,49,50,2087,1945,791,681,22,34,24,28,3,5,2793,2567,1963,1841,765,646,5,12,13,16,0,3,47,49,2008,1885,787,673,20,29,24,28,1,4,85,73,77,59,3,7,1,5,0,0,2,1,2,1,79,60,4,8,2,5,0,0,2,1 -050,01,051,Alabama,Elmore County,3,5,5254,2739,2515,1707,1785,979,665,8,17,17,12,4,7,24,29,1722,1811,995,677,21,30,20,19,5,9,2625,2443,1609,1731,970,657,4,16,15,12,3,4,24,23,1624,1751,986,667,17,27,18,18,4,5,114,72,98,54,9,8,4,1,2,0,1,3,0,6,98,60,9,10,4,3,2,1,1,4 -050,01,051,Alabama,Elmore County,3,6,5082,2430,2652,1661,1971,701,617,16,6,22,24,5,1,25,33,1683,2002,712,628,29,17,26,35,6,4,2300,2536,1557,1863,696,612,12,5,21,23,0,1,14,32,1569,1893,701,623,19,15,25,34,1,4,130,116,104,108,5,5,4,1,1,1,5,0,11,1,114,109,11,5,10,2,1,1,5,0 -050,01,051,Alabama,Elmore County,3,7,5462,2655,2807,1870,2088,712,657,16,8,28,30,5,2,24,22,1892,2109,718,664,29,16,35,36,6,4,2562,2653,1803,1948,700,650,12,7,27,29,2,0,18,19,1819,1966,703,654,22,15,33,35,3,2,93,154,67,140,12,7,4,1,1,1,3,2,6,3,73,143,15,10,7,1,2,1,3,2 -050,01,051,Alabama,Elmore County,3,8,5836,2761,3075,2027,2311,683,681,11,16,19,29,1,2,20,36,2046,2343,691,694,18,40,23,37,3,2,2677,2989,1953,2238,680,673,7,14,18,28,1,2,18,34,1970,2269,686,685,14,37,22,35,3,2,84,86,74,73,3,8,4,2,1,1,0,0,2,2,76,74,5,9,4,3,1,2,0,0 -050,01,051,Alabama,Elmore County,3,9,5776,2788,2988,2126,2295,610,612,16,17,19,30,1,2,16,32,2142,2323,615,620,26,41,21,35,1,3,2713,2922,2062,2241,606,608,12,13,19,30,1,2,13,28,2075,2266,610,614,20,35,20,34,1,3,75,66,64,54,4,4,4,4,0,0,0,0,3,4,67,57,5,6,6,6,1,1,0,0 -050,01,051,Alabama,Elmore County,3,10,6354,3000,3354,2396,2628,552,645,18,8,13,25,1,3,20,45,2416,2667,555,658,31,41,16,31,2,10,2944,3285,2344,2568,550,642,18,8,12,24,1,2,19,41,2363,2603,553,653,30,39,15,30,2,8,56,69,52,60,2,3,0,0,1,1,0,1,1,4,53,64,2,5,1,2,1,1,0,2 -050,01,051,Alabama,Elmore County,3,11,5921,2910,3011,2364,2438,490,498,8,10,17,31,4,2,27,32,2385,2466,494,504,29,36,24,35,5,3,2865,2967,2321,2401,490,495,7,7,16,31,4,2,27,31,2342,2428,494,501,28,32,23,35,5,3,45,44,43,37,0,3,1,3,1,0,0,0,0,1,43,38,0,3,1,4,1,0,0,0 -050,01,051,Alabama,Elmore County,3,12,4969,2396,2573,1998,2115,349,405,10,11,13,25,4,3,22,14,2017,2127,355,410,26,18,17,28,5,6,2370,2549,1975,2094,347,403,10,11,13,25,4,2,21,14,1994,2106,352,408,26,18,16,28,4,5,26,24,23,21,2,2,0,0,0,0,0,1,1,0,23,21,3,2,0,0,1,0,1,1 -050,01,051,Alabama,Elmore County,3,13,4538,2225,2313,1931,1985,258,276,14,8,5,20,3,0,14,24,1945,2005,259,283,26,26,5,23,4,0,2208,2290,1915,1968,257,274,14,8,5,20,3,0,14,20,1929,1985,258,280,26,23,5,22,4,0,17,23,16,17,1,2,0,0,0,0,0,0,0,4,16,20,1,3,0,3,0,1,0,0 -050,01,051,Alabama,Elmore County,3,14,3363,1654,1709,1480,1499,150,183,7,6,4,11,0,0,13,10,1492,1509,152,185,17,14,6,11,0,0,1643,1703,1473,1493,146,183,7,6,4,11,0,0,13,10,1485,1503,148,185,17,14,6,11,0,0,11,6,7,6,4,0,0,0,0,0,0,0,0,0,7,6,4,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,3,15,2426,1144,1282,1013,1111,116,152,4,4,3,7,0,1,8,7,1020,1118,118,152,12,9,3,8,0,2,1133,1276,1003,1108,116,150,4,4,3,7,0,1,7,6,1009,1114,118,150,11,8,3,8,0,2,11,6,10,3,0,2,0,0,0,0,0,0,1,1,11,4,0,2,1,1,0,0,0,0 -050,01,051,Alabama,Elmore County,3,16,1637,760,877,698,761,55,107,2,0,0,4,0,1,5,4,702,765,57,107,7,4,0,4,1,1,756,867,694,758,55,101,2,0,0,3,0,1,5,4,698,762,57,101,7,4,0,3,1,1,4,10,4,3,0,6,0,0,0,1,0,0,0,0,4,3,0,6,0,0,0,1,0,0 -050,01,051,Alabama,Elmore County,3,17,1138,445,693,400,596,42,85,0,2,0,5,1,0,2,5,402,601,43,85,0,7,1,5,1,0,440,686,396,591,42,84,0,1,0,5,0,0,2,5,398,596,43,84,0,6,1,5,0,0,5,7,4,5,0,1,0,1,0,0,1,0,0,0,4,5,0,1,0,1,0,0,1,0 -050,01,051,Alabama,Elmore County,3,18,949,287,662,260,582,23,78,1,0,0,1,1,1,2,0,262,582,23,78,3,0,0,1,1,1,284,658,258,579,23,78,1,0,0,1,0,0,2,0,260,579,23,78,3,0,0,1,0,0,3,4,2,3,0,0,0,0,0,0,1,1,0,0,2,3,0,0,0,0,0,0,1,1 -050,01,051,Alabama,Elmore County,4,0,80005,39131,40874,29775,31559,8369,8164,187,156,230,329,41,51,529,615,30249,32117,8607,8443,403,430,351,461,63,80,38048,39780,28876,30639,8285,8084,150,126,222,320,26,34,489,577,29315,31168,8507,8342,345,381,336,445,47,59,1083,1094,899,920,84,80,37,30,8,9,15,17,40,38,934,949,100,101,58,49,15,16,16,21 -050,01,051,Alabama,Elmore County,4,1,4758,2493,2265,1842,1646,533,499,14,9,15,17,2,3,87,91,1926,1732,589,562,26,23,36,38,4,5,2379,2164,1747,1559,525,491,7,6,15,17,1,3,84,88,1828,1642,579,553,19,18,35,38,3,5,114,101,95,87,8,8,7,3,0,0,1,0,3,3,98,90,10,9,7,5,1,0,1,0 -050,01,051,Alabama,Elmore County,4,2,5141,2592,2549,1956,1895,522,522,15,10,18,22,5,13,76,87,2027,1977,569,578,29,27,36,41,7,15,2472,2423,1860,1793,511,517,10,5,17,20,4,6,70,82,1925,1871,555,568,23,21,33,39,6,8,120,126,96,102,11,5,5,5,1,2,1,7,6,5,102,106,14,10,6,6,3,2,1,7 -050,01,051,Alabama,Elmore County,4,3,5432,2780,2652,2065,1928,622,622,9,8,15,19,1,4,68,71,2131,1997,660,662,28,25,30,34,2,7,2690,2565,1985,1853,617,616,8,6,15,19,1,2,64,69,2047,1920,654,654,25,23,29,34,2,5,90,87,80,75,5,6,1,2,0,0,0,2,4,2,84,77,6,8,3,2,1,0,0,2 -050,01,051,Alabama,Elmore County,4,4,5287,2779,2508,1966,1792,737,624,8,17,17,16,2,4,49,55,2015,1844,759,652,24,35,26,28,4,6,2686,2427,1885,1724,732,618,7,12,17,16,0,3,45,54,1930,1775,753,645,20,30,26,28,2,5,93,81,81,68,5,6,1,5,0,0,2,1,4,1,85,69,6,7,4,5,0,0,2,1 -050,01,051,Alabama,Elmore County,4,5,5539,2873,2666,1732,1859,1071,742,5,19,17,12,4,8,44,26,1766,1880,1093,756,23,33,31,17,7,9,2785,2605,1663,1814,1059,734,2,17,15,12,3,5,43,23,1697,1834,1080,747,19,29,29,15,6,6,88,61,69,45,12,8,3,2,2,0,1,3,1,3,69,46,13,9,4,4,2,2,1,3 -050,01,051,Alabama,Elmore County,4,6,5177,2543,2634,1737,1948,737,620,18,8,24,20,4,2,23,36,1752,1977,747,634,30,19,32,37,5,6,2393,2511,1611,1839,729,614,13,7,23,18,0,2,17,31,1623,1866,736,626,21,16,29,32,1,5,150,123,126,109,8,6,5,1,1,2,4,0,6,5,129,111,11,8,9,3,3,5,4,1 -050,01,051,Alabama,Elmore County,4,7,5465,2586,2879,1795,2119,716,694,19,5,26,32,6,2,24,27,1815,2143,722,704,32,16,33,41,8,5,2493,2728,1730,1983,703,686,16,4,26,31,2,0,16,24,1742,2005,706,694,25,13,33,39,3,1,93,151,65,136,13,8,3,1,0,1,4,2,8,3,73,138,16,10,7,3,0,2,5,4 -050,01,051,Alabama,Elmore County,4,8,5639,2675,2964,1936,2227,673,659,14,13,26,26,2,1,24,38,1956,2262,682,670,26,40,31,33,4,2,2598,2865,1875,2143,665,650,9,10,24,25,2,1,23,36,1894,2176,673,659,21,37,29,32,4,2,77,99,61,84,8,9,5,3,2,1,0,0,1,2,62,86,9,11,5,3,2,1,0,0 -050,01,051,Alabama,Elmore County,4,9,5864,2816,3048,2133,2323,637,646,18,16,14,31,0,3,14,29,2145,2349,641,651,27,40,17,35,0,4,2737,2984,2067,2271,632,641,12,13,14,30,0,3,12,26,2077,2295,636,645,19,34,17,34,0,4,79,64,66,52,5,5,6,3,0,1,0,0,2,3,68,54,5,6,8,6,0,1,0,0 -050,01,051,Alabama,Elmore County,4,10,6184,2937,3247,2323,2527,568,630,17,10,11,24,2,4,16,52,2338,2574,573,643,28,48,12,33,2,9,2882,3176,2271,2465,567,628,17,9,10,24,2,3,15,47,2285,2507,572,639,27,44,11,32,2,8,55,71,52,62,1,2,0,1,1,0,0,1,1,5,53,67,1,4,1,4,1,1,0,1 -050,01,051,Alabama,Elmore County,4,11,5980,2920,3060,2321,2436,539,553,8,10,20,31,4,1,28,29,2342,2459,544,561,29,32,28,36,6,2,2879,3023,2283,2407,538,549,7,7,19,30,4,1,28,29,2304,2430,543,557,28,29,27,35,6,2,41,37,38,29,1,4,1,3,1,1,0,0,0,0,38,29,1,4,1,3,1,1,0,0 -050,01,051,Alabama,Elmore County,4,12,5086,2433,2653,2035,2169,345,426,9,11,13,24,3,3,28,20,2059,2185,350,432,31,27,18,28,6,5,2407,2621,2013,2140,344,424,9,11,13,24,3,3,25,19,2035,2155,348,430,29,26,17,28,6,5,26,32,22,29,1,2,0,0,0,0,0,0,3,1,24,30,2,2,2,1,1,0,0,0 -050,01,051,Alabama,Elmore County,4,13,4605,2272,2333,1957,1987,274,292,14,8,7,24,4,0,16,22,1973,2008,276,297,25,24,10,27,4,2,2249,2309,1936,1969,272,290,14,8,7,24,4,0,16,18,1952,1987,274,293,25,22,10,27,4,1,23,24,21,18,2,2,0,0,0,0,0,0,0,4,21,21,2,4,0,2,0,0,0,1 -050,01,051,Alabama,Elmore County,4,14,3534,1709,1825,1527,1582,157,214,9,6,3,11,0,0,13,12,1539,1593,159,215,21,17,3,12,1,0,1699,1817,1520,1574,154,214,9,6,3,11,0,0,13,12,1532,1585,156,215,21,17,3,12,1,0,10,8,7,8,3,0,0,0,0,0,0,0,0,0,7,8,3,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,4,15,2477,1181,1296,1038,1126,124,146,6,3,3,9,0,1,10,11,1046,1136,126,148,14,12,5,10,0,1,1171,1289,1030,1122,123,144,6,3,3,9,0,1,9,10,1037,1131,125,146,13,11,5,10,0,1,10,7,8,4,1,2,0,0,0,0,0,0,1,1,9,5,1,2,1,1,0,0,0,0 -050,01,051,Alabama,Elmore County,4,16,1713,786,927,724,797,53,119,3,1,1,6,0,1,5,3,728,799,54,120,8,4,1,6,0,1,781,918,719,795,53,113,3,1,1,5,0,1,5,3,723,797,54,114,8,4,1,5,0,1,5,9,5,2,0,6,0,0,0,1,0,0,0,0,5,2,0,6,0,0,0,1,0,0 -050,01,051,Alabama,Elmore County,4,17,1143,447,696,405,610,39,75,0,2,0,3,1,0,2,6,407,614,40,77,0,8,1,3,1,0,441,689,400,605,39,74,0,1,0,3,0,0,2,6,402,609,40,76,0,7,1,3,0,0,6,7,5,5,0,1,0,1,0,0,1,0,0,0,5,5,0,1,0,1,0,0,1,0 -050,01,051,Alabama,Elmore County,4,18,981,309,672,283,588,22,81,1,0,0,2,1,1,2,0,284,588,23,81,2,0,1,2,2,1,306,666,281,583,22,81,1,0,0,2,0,0,2,0,282,583,23,81,2,0,1,2,1,0,3,6,2,5,0,0,0,0,0,0,1,1,0,0,2,5,0,0,0,0,0,0,1,1 -050,01,051,Alabama,Elmore County,5,0,80211,38832,41379,29517,31814,8300,8358,184,160,243,335,43,45,545,667,30017,32420,8555,8671,391,445,364,477,68,76,37785,40258,28651,30861,8222,8279,143,127,235,326,27,34,507,631,29116,31437,8465,8573,332,394,349,462,48,62,1047,1121,866,953,78,79,41,33,8,9,16,11,38,36,901,983,90,98,59,51,15,15,20,14 -050,01,051,Alabama,Elmore County,5,1,4815,2482,2333,1820,1680,545,513,8,10,13,15,2,3,94,112,1911,1785,607,591,20,23,36,40,5,7,2366,2237,1719,1596,536,505,4,8,13,15,1,3,93,110,1809,1699,597,582,16,20,36,40,4,7,116,96,101,84,9,8,4,2,0,0,1,0,1,2,102,86,10,9,4,3,0,0,1,0 -050,01,051,Alabama,Elmore County,5,2,5047,2526,2521,1882,1885,518,510,19,11,20,22,5,6,82,87,1961,1965,572,568,32,29,41,44,7,9,2399,2398,1781,1782,510,505,10,4,19,19,4,4,75,84,1853,1861,559,561,22,21,39,39,6,7,127,123,101,103,8,5,9,7,1,3,1,2,7,3,108,104,13,7,10,8,2,5,1,2 -050,01,051,Alabama,Elmore County,5,3,5388,2720,2668,2033,1946,595,616,7,6,15,24,1,8,69,68,2102,2010,630,654,25,23,29,41,4,10,2625,2572,1947,1864,591,610,6,5,15,24,1,5,65,64,2012,1924,626,647,22,20,28,40,3,7,95,96,86,82,4,6,1,1,0,0,0,3,4,4,90,86,4,7,3,3,1,1,1,3 -050,01,051,Alabama,Elmore County,5,4,5280,2738,2542,1910,1772,747,660,8,18,14,14,2,4,57,74,1961,1839,777,700,27,39,25,34,7,7,2657,2454,1843,1697,739,655,7,12,14,14,0,3,54,73,1891,1763,769,694,23,33,25,34,5,6,81,88,67,75,8,5,1,6,0,0,2,1,3,1,70,76,8,6,4,6,0,0,2,1 -050,01,051,Alabama,Elmore County,5,5,5751,2917,2834,1773,1979,1073,782,7,12,14,14,4,6,46,41,1812,2015,1094,802,26,27,26,24,7,9,2839,2763,1710,1923,1065,774,4,9,12,14,3,5,45,38,1748,1956,1086,792,22,23,24,24,6,8,78,71,63,56,8,8,3,3,2,0,1,1,1,3,64,59,8,10,4,4,2,0,1,1 -050,01,051,Alabama,Elmore County,5,6,5139,2505,2634,1680,1942,743,627,21,17,34,17,4,2,23,29,1700,1971,750,638,31,28,41,22,6,6,2386,2515,1586,1835,734,621,14,16,33,15,1,2,18,26,1601,1861,741,630,22,26,37,20,3,6,119,119,94,107,9,6,7,1,1,2,3,0,5,3,99,110,9,8,9,2,4,2,3,0 -050,01,051,Alabama,Elmore County,5,7,5435,2592,2843,1787,2061,729,717,18,3,26,31,8,1,24,30,1808,2090,738,727,27,16,32,40,11,1,2486,2689,1710,1917,718,710,14,3,26,31,2,0,16,28,1725,1944,723,718,20,16,31,40,3,0,106,154,77,144,11,7,4,0,0,0,6,1,8,2,83,146,15,9,7,0,1,0,8,1 -050,01,051,Alabama,Elmore County,5,8,5530,2569,2961,1882,2225,619,649,14,15,28,31,2,1,24,40,1901,2259,627,663,27,45,35,37,3,3,2494,2864,1824,2146,610,640,10,11,26,30,2,0,22,37,1842,2177,617,652,22,40,33,36,2,2,75,97,58,79,9,9,4,4,2,1,0,1,2,3,59,82,10,11,5,5,2,1,1,1 -050,01,051,Alabama,Elmore County,5,9,5806,2754,3052,2082,2316,624,660,20,13,14,32,0,4,14,27,2094,2339,631,669,29,34,14,38,0,5,2696,2980,2035,2259,621,654,14,10,14,30,0,4,12,23,2045,2279,627,660,22,28,14,35,0,5,58,72,47,57,3,6,6,3,0,2,0,0,2,4,49,60,4,9,7,6,0,3,0,0 -050,01,051,Alabama,Elmore County,5,10,5963,2816,3147,2222,2453,551,608,14,11,14,25,2,3,13,47,2234,2491,554,622,21,49,19,33,2,7,2753,3077,2162,2392,550,606,13,9,13,25,2,2,13,43,2174,2427,553,619,20,43,18,33,2,5,63,70,60,61,1,2,1,2,1,0,0,1,0,4,60,64,1,3,1,6,1,0,0,2 -050,01,051,Alabama,Elmore County,5,11,5948,2841,3107,2289,2459,503,580,7,8,19,30,2,2,21,28,2305,2485,508,585,23,28,23,35,3,3,2798,3063,2249,2423,502,576,7,6,18,29,2,2,20,27,2264,2448,507,580,22,26,22,34,3,3,43,44,40,36,1,4,0,2,1,1,0,0,1,1,41,37,1,5,1,2,1,1,0,0 -050,01,051,Alabama,Elmore County,5,12,5274,2519,2755,2094,2226,370,465,10,14,14,23,5,2,26,25,2117,2248,376,471,30,35,17,26,6,2,2495,2723,2073,2198,369,463,9,13,14,23,5,2,25,24,2095,2219,375,468,28,33,17,26,6,2,24,32,21,28,1,2,1,1,0,0,0,0,1,1,22,29,1,3,2,2,0,0,0,0 -050,01,051,Alabama,Elmore County,5,13,4441,2141,2300,1836,1928,261,315,11,8,9,27,4,0,20,22,1854,1947,265,317,27,26,12,30,4,2,2115,2280,1814,1914,259,313,11,8,9,27,4,0,18,18,1830,1931,263,315,26,24,11,28,4,0,26,20,22,14,2,2,0,0,0,0,0,0,2,4,24,16,2,2,1,2,1,2,0,2 -050,01,051,Alabama,Elmore County,5,14,3824,1873,1951,1679,1696,174,223,8,7,1,9,0,0,11,16,1689,1710,175,226,17,21,3,10,0,1,1861,1942,1670,1687,171,223,8,7,1,9,0,0,11,16,1680,1701,172,226,17,21,3,10,0,1,12,9,9,9,3,0,0,0,0,0,0,0,0,0,9,9,3,0,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,5,15,2637,1243,1394,1102,1215,118,151,7,4,6,11,0,1,10,12,1112,1226,118,155,16,12,7,12,0,1,1235,1385,1095,1208,117,150,7,4,6,11,0,1,10,11,1105,1218,117,154,16,11,7,12,0,1,8,9,7,7,1,1,0,0,0,0,0,0,0,1,7,8,1,1,0,1,0,0,0,0 -050,01,051,Alabama,Elmore County,5,16,1762,812,950,736,818,64,124,4,1,2,4,0,1,6,2,741,820,65,125,9,2,3,4,0,1,806,944,731,817,64,119,4,1,2,4,0,1,5,2,735,819,65,120,8,2,3,4,0,1,6,6,5,1,0,5,0,0,0,0,0,0,1,0,6,1,0,5,1,0,0,0,0,0 -050,01,051,Alabama,Elmore County,5,17,1134,452,682,408,594,41,75,0,2,0,4,0,0,3,7,411,601,43,75,1,8,1,5,1,1,448,675,404,590,41,73,0,1,0,4,0,0,3,7,407,597,43,73,1,7,1,5,1,1,4,7,4,4,0,2,0,1,0,0,0,0,0,0,4,4,0,2,0,1,0,0,0,0 -050,01,051,Alabama,Elmore County,5,18,1037,332,705,302,619,25,83,1,0,0,2,2,1,2,0,304,619,25,83,3,0,0,2,2,1,326,697,298,613,25,82,1,0,0,2,0,0,2,0,300,613,25,82,3,0,0,2,0,0,6,8,4,6,0,1,0,0,0,0,2,1,0,0,4,6,0,1,0,0,0,0,2,1 -050,01,051,Alabama,Elmore County,6,0,80557,39046,41511,29686,31842,8349,8428,181,167,230,335,43,48,557,691,30196,32466,8620,8750,385,445,362,501,67,85,37971,40329,28794,30843,8272,8343,142,135,218,325,28,34,517,649,29266,31430,8523,8643,335,399,343,478,47,67,1075,1182,892,999,77,85,39,32,12,10,15,14,40,42,930,1036,97,107,50,46,19,23,20,18 -050,01,051,Alabama,Elmore County,6,1,4814,2529,2285,1849,1627,564,504,6,13,14,16,3,7,93,118,1934,1741,629,582,20,27,36,46,6,9,2405,2191,1739,1550,554,492,4,11,14,16,2,6,92,116,1823,1662,619,569,17,25,36,45,5,8,124,94,110,77,10,12,2,2,0,0,1,1,1,2,111,79,10,13,3,2,0,1,1,1 -050,01,051,Alabama,Elmore County,6,2,5121,2579,2542,1903,1882,560,536,15,8,18,22,3,5,80,89,1982,1965,613,596,27,26,36,43,4,8,2463,2414,1811,1775,553,528,7,4,17,19,2,2,73,86,1883,1855,600,586,19,21,33,40,3,5,116,128,92,107,7,8,8,4,1,3,1,3,7,3,99,110,13,10,8,5,3,3,1,3 -050,01,051,Alabama,Elmore County,6,3,5354,2686,2668,2010,1937,573,617,15,5,12,23,0,11,76,75,2081,2006,619,664,33,20,29,42,1,15,2584,2572,1922,1858,568,612,12,3,12,23,0,8,70,68,1987,1920,610,654,28,16,29,42,1,12,102,96,88,79,5,5,3,2,0,0,0,3,6,7,94,86,9,10,5,4,0,0,0,3 -050,01,051,Alabama,Elmore County,6,4,5102,2622,2480,1847,1766,694,602,7,18,14,13,3,6,57,75,1895,1837,728,641,21,39,32,34,5,9,2548,2388,1785,1688,685,597,7,13,14,13,2,4,55,73,1831,1757,717,634,21,34,32,33,4,6,74,92,62,78,9,5,0,5,0,0,1,2,2,2,64,80,11,7,0,5,0,1,1,3 -050,01,051,Alabama,Elmore County,6,5,5886,3043,2843,1882,1968,1086,791,8,16,12,14,4,3,51,51,1927,2011,1108,817,29,33,25,25,6,11,2967,2765,1814,1908,1084,780,6,14,12,14,2,2,49,47,1857,1948,1105,803,26,29,25,24,4,9,76,78,68,60,2,11,2,2,0,0,2,1,2,4,70,63,3,14,3,4,0,1,2,2 -050,01,051,Alabama,Elmore County,6,6,5192,2515,2677,1693,1992,750,635,21,15,28,14,4,2,19,19,1709,2008,758,643,29,21,37,20,6,4,2408,2541,1613,1869,741,628,10,13,25,14,3,2,16,15,1626,1881,748,634,18,17,32,20,5,4,107,136,80,123,9,7,11,2,3,0,1,0,3,4,83,127,10,9,11,4,5,0,1,0 -050,01,051,Alabama,Elmore County,6,7,5514,2623,2891,1810,2086,729,747,19,2,28,25,8,1,29,30,1837,2111,737,757,33,16,37,36,10,4,2501,2730,1724,1935,716,740,13,2,27,23,1,0,20,30,1743,1960,721,750,24,16,34,34,1,3,122,161,86,151,13,7,6,0,1,2,7,1,9,0,94,151,16,7,9,0,3,2,9,1 -050,01,051,Alabama,Elmore County,6,8,5434,2556,2878,1861,2148,631,635,13,18,26,36,2,1,23,40,1882,2183,640,649,24,46,32,45,5,2,2477,2775,1796,2064,622,630,12,12,24,34,2,0,21,35,1815,2095,631,642,21,39,30,41,5,0,79,103,65,84,9,5,1,6,2,2,0,1,2,5,67,88,9,7,3,7,2,4,0,2 -050,01,051,Alabama,Elmore County,6,9,5817,2741,3076,2086,2334,605,657,17,17,17,35,0,2,16,31,2099,2359,610,665,29,41,18,42,1,4,2674,2998,2031,2273,601,650,14,14,15,33,0,2,13,26,2041,2294,605,656,24,35,16,38,1,4,67,78,55,61,4,7,3,3,2,2,0,0,3,5,58,65,5,9,5,6,2,4,0,0 -050,01,051,Alabama,Elmore County,6,10,5800,2757,3043,2150,2348,564,614,16,10,17,23,2,3,8,45,2158,2384,565,626,22,43,18,34,2,7,2693,2972,2091,2286,563,612,14,8,15,23,2,2,8,41,2099,2320,564,623,20,39,16,31,2,6,64,71,59,62,1,2,2,2,2,0,0,1,0,4,59,64,1,3,2,4,2,3,0,1 -050,01,051,Alabama,Elmore County,6,11,5921,2832,3089,2286,2427,509,595,6,9,13,26,0,2,18,30,2303,2453,513,602,18,29,16,33,0,4,2779,3040,2236,2385,508,592,6,7,12,25,0,2,17,29,2252,2410,511,598,18,27,15,32,0,4,53,49,50,42,1,3,0,2,1,1,0,0,1,1,51,43,2,4,0,2,1,1,0,0 -050,01,051,Alabama,Elmore County,6,12,5364,2555,2809,2128,2273,376,463,9,12,11,31,6,2,25,28,2149,2299,382,465,28,31,16,39,8,4,2528,2776,2103,2243,376,462,8,11,11,31,6,2,24,27,2123,2268,382,464,27,30,16,38,7,4,27,33,25,30,0,1,1,1,0,0,0,0,1,1,26,31,0,1,1,1,0,1,1,0 -050,01,051,Alabama,Elmore County,6,13,4463,2124,2339,1805,1925,267,361,9,8,12,25,6,0,25,20,1830,1943,270,364,25,24,16,28,8,1,2100,2321,1786,1912,264,358,9,8,12,25,6,0,23,18,1809,1928,267,360,25,24,15,27,7,0,24,18,19,13,3,3,0,0,0,0,0,0,2,2,21,15,3,4,0,0,1,1,1,1 -050,01,051,Alabama,Elmore County,6,14,3909,1911,1998,1700,1741,190,222,8,7,0,11,0,0,13,17,1712,1758,193,226,17,19,3,12,0,0,1898,1986,1689,1730,188,222,8,7,0,11,0,0,13,16,1701,1746,191,226,17,19,3,11,0,0,13,12,11,11,2,0,0,0,0,0,0,0,0,1,11,12,2,0,0,0,0,1,0,0 -050,01,051,Alabama,Elmore County,6,15,2848,1346,1502,1201,1312,120,159,7,6,7,10,0,1,11,14,1212,1324,121,161,17,19,7,11,1,1,1336,1492,1193,1304,118,158,7,6,7,10,0,1,11,13,1204,1315,119,160,17,18,7,11,1,1,10,10,8,8,2,1,0,0,0,0,0,0,0,1,8,9,2,1,0,1,0,0,0,0 -050,01,051,Alabama,Elmore County,6,16,1833,837,996,758,864,68,124,4,1,1,4,0,1,6,2,762,865,70,125,8,3,2,4,1,1,831,994,753,863,68,123,4,1,1,4,0,1,5,2,757,864,69,124,8,3,2,4,0,1,6,2,5,1,0,1,0,0,0,0,0,0,1,0,5,1,1,1,0,0,0,0,1,0 -050,01,051,Alabama,Elmore County,6,17,1138,470,668,427,574,38,83,0,1,0,5,0,0,5,5,432,579,39,83,2,6,2,5,1,0,468,656,425,569,38,77,0,0,0,5,0,0,5,5,430,574,39,77,2,5,2,5,1,0,2,12,2,5,0,6,0,1,0,0,0,0,0,0,2,5,0,6,0,1,0,0,0,0 -050,01,051,Alabama,Elmore County,6,18,1047,320,727,290,638,25,83,1,1,0,2,2,1,2,2,292,640,25,84,3,2,0,2,2,1,311,718,283,631,25,82,1,1,0,2,0,0,2,2,285,633,25,83,3,2,0,2,0,0,9,9,7,7,0,1,0,0,0,0,2,1,0,0,7,7,0,1,0,0,0,0,2,1 -050,01,051,Alabama,Elmore County,7,0,80563,39029,41534,29607,31840,8417,8467,183,180,221,324,47,48,554,675,30108,32462,8672,8778,394,450,353,467,77,88,37936,40362,28700,30844,8331,8386,147,149,213,313,31,33,514,637,29162,31430,8571,8679,338,403,338,450,55,72,1093,1172,907,996,86,81,36,31,8,11,16,15,40,38,946,1032,101,99,56,47,15,17,22,16 -050,01,051,Alabama,Elmore County,7,1,4765,2506,2259,1829,1611,568,497,5,16,10,17,0,7,94,111,1920,1716,631,576,19,34,33,39,1,10,2373,2140,1708,1513,557,483,5,11,10,17,0,6,93,110,1798,1617,619,561,19,29,33,39,1,9,133,119,121,98,11,14,0,5,0,0,0,1,1,1,122,99,12,15,0,5,0,0,0,1 -050,01,051,Alabama,Elmore County,7,2,5066,2560,2506,1871,1850,575,545,15,9,14,16,4,2,81,84,1945,1927,627,601,31,25,34,34,6,5,2438,2379,1772,1740,570,537,6,5,13,15,3,0,74,82,1839,1815,619,592,20,20,32,33,4,3,122,127,99,110,5,8,9,4,1,1,1,2,7,2,106,112,8,9,11,5,2,1,2,2 -050,01,051,Alabama,Elmore County,7,3,5312,2657,2655,1985,1944,575,603,10,7,15,22,2,13,70,66,2049,2006,616,639,26,20,34,37,7,19,2558,2564,1900,1871,568,597,8,6,15,20,2,9,65,61,1959,1928,607,632,20,16,32,34,5,15,99,91,85,73,7,6,2,1,0,2,0,4,5,5,90,78,9,7,6,4,2,3,2,4 -050,01,051,Alabama,Elmore County,7,4,4952,2533,2419,1799,1718,656,590,9,13,13,17,3,5,53,76,1851,1786,678,634,23,31,26,39,8,9,2455,2326,1735,1635,646,585,9,11,13,17,2,3,50,75,1784,1702,667,628,23,29,25,39,6,7,78,93,64,83,10,5,0,2,0,0,1,2,3,1,67,84,11,6,0,2,1,0,2,2 -050,01,051,Alabama,Elmore County,7,5,5778,3022,2756,1873,1911,1070,755,10,20,13,14,4,4,52,52,1916,1961,1095,777,32,36,25,29,8,7,2942,2696,1803,1862,1067,753,8,16,13,14,2,3,49,48,1843,1908,1092,772,28,32,25,28,5,6,80,60,70,49,3,2,2,4,0,0,2,1,3,4,73,53,3,5,4,4,0,1,3,1 -050,01,051,Alabama,Elmore County,7,6,5380,2607,2773,1759,2034,788,676,15,21,25,14,4,2,16,26,1772,2060,795,685,23,30,31,22,6,2,2494,2641,1669,1919,775,665,8,19,23,14,3,2,16,22,1682,1941,782,671,16,27,29,22,5,2,113,132,90,115,13,11,7,2,2,0,1,0,0,4,90,119,13,14,7,3,2,0,1,0 -050,01,051,Alabama,Elmore County,7,7,5375,2574,2801,1758,2032,742,713,20,4,20,21,9,1,25,30,1779,2060,751,720,31,18,29,30,10,4,2459,2661,1684,1900,726,709,13,4,20,18,1,1,15,29,1695,1927,731,715,19,18,27,27,2,4,115,140,74,132,16,4,7,0,0,3,8,0,10,1,84,133,20,5,12,0,2,3,8,0 -050,01,051,Alabama,Elmore County,7,8,5464,2590,2874,1872,2151,636,635,22,13,29,32,3,3,28,40,1898,2184,644,651,37,40,34,40,5,4,2512,2757,1809,2054,630,628,18,10,28,30,2,0,25,35,1832,2083,637,642,31,34,33,37,4,1,78,117,63,97,6,7,4,3,1,2,1,3,3,5,66,101,7,9,6,6,1,3,1,3 -050,01,051,Alabama,Elmore County,7,9,5771,2684,3087,2054,2331,583,673,12,17,17,33,1,2,17,31,2070,2357,587,680,23,39,19,39,2,7,2620,3006,1997,2266,580,667,11,14,16,31,1,2,15,26,2011,2288,583,673,21,32,18,37,2,6,64,81,57,65,3,6,1,3,1,2,0,0,2,5,59,69,4,7,2,7,1,2,0,1 -050,01,051,Alabama,Elmore County,7,10,5548,2616,2932,2047,2234,525,625,15,11,18,22,2,3,9,37,2055,2269,527,636,19,37,21,28,3,6,2555,2872,1994,2184,523,623,11,8,17,22,2,2,8,33,2001,2215,525,631,14,33,20,27,3,5,61,60,53,50,2,2,4,3,1,0,0,1,1,4,54,54,2,5,5,4,1,1,0,1 -050,01,051,Alabama,Elmore County,7,11,5987,2868,3119,2292,2444,532,602,12,11,14,25,0,2,18,35,2307,2475,537,611,24,35,18,31,0,3,2815,3067,2244,2398,530,599,12,10,12,24,0,2,17,34,2258,2428,534,608,24,33,16,30,0,3,53,52,48,46,2,3,0,1,2,1,0,0,1,1,49,47,3,3,0,2,2,1,0,0 -050,01,051,Alabama,Elmore County,7,12,5416,2586,2830,2123,2296,415,466,9,10,9,31,5,1,25,26,2146,2321,418,472,27,28,13,34,7,3,2558,2796,2097,2267,414,464,9,8,9,31,5,1,24,25,2119,2291,417,469,26,26,13,34,7,3,28,34,26,29,1,2,0,2,0,0,0,0,1,1,27,30,1,3,1,2,0,0,0,0 -050,01,051,Alabama,Elmore County,7,13,4587,2148,2439,1801,2002,295,385,7,10,14,25,6,1,25,16,1822,2017,299,388,27,24,19,25,7,2,2122,2420,1779,1985,293,383,7,10,14,25,6,1,23,16,1798,2000,297,386,25,24,19,25,7,2,26,19,22,17,2,2,0,0,0,0,0,0,2,0,24,17,2,2,2,0,0,0,0,0 -050,01,051,Alabama,Elmore County,7,14,4035,1958,2077,1742,1790,189,243,10,9,2,13,2,0,13,22,1754,1810,190,245,22,25,3,16,2,3,1943,2060,1729,1777,187,242,10,9,2,13,2,0,13,19,1741,1794,188,244,22,24,3,14,2,3,15,17,13,13,2,1,0,0,0,0,0,0,0,3,13,16,2,1,0,1,0,2,0,0 -050,01,051,Alabama,Elmore County,7,15,2907,1393,1514,1246,1321,122,163,5,5,6,9,0,1,14,15,1257,1334,125,167,13,18,10,10,2,2,1383,1504,1239,1312,119,163,5,5,6,9,0,1,14,14,1250,1324,122,167,13,17,10,10,2,2,10,10,7,9,3,0,0,0,0,0,0,0,0,1,7,10,3,0,0,1,0,0,0,0 -050,01,051,Alabama,Elmore County,7,16,1977,902,1075,808,942,81,123,5,2,2,6,0,0,6,2,813,944,83,123,8,3,4,7,1,0,896,1072,803,941,81,121,5,2,2,6,0,0,5,2,808,943,82,121,8,3,3,7,0,0,6,3,5,1,0,2,0,0,0,0,0,0,1,0,5,1,1,2,0,0,1,0,1,0 -050,01,051,Alabama,Elmore County,7,17,1181,510,671,466,580,38,83,1,1,0,4,0,0,5,3,470,583,41,83,5,4,0,4,0,0,507,664,463,579,38,78,1,0,0,4,0,0,5,3,467,582,41,78,5,3,0,4,0,0,3,7,3,1,0,5,0,1,0,0,0,0,0,0,3,1,0,5,0,1,0,0,0,0 -050,01,051,Alabama,Elmore County,7,18,1062,315,747,282,649,27,90,1,1,0,3,2,1,3,3,284,652,28,90,4,3,0,3,2,2,306,737,275,641,27,89,1,1,0,3,0,0,3,3,277,644,28,89,4,3,0,3,0,1,9,10,7,8,0,1,0,0,0,0,2,1,0,0,7,8,0,1,0,0,0,0,2,1 -050,01,051,Alabama,Elmore County,8,0,80903,39222,41681,29658,31896,8469,8514,202,177,240,339,47,49,606,706,30204,32544,8757,8842,423,463,382,504,83,80,38131,40502,28757,30892,8390,8431,162,146,231,328,31,35,560,670,29263,31509,8655,8743,363,415,365,483,63,62,1091,1179,901,1004,79,83,40,31,9,11,16,14,46,36,941,1035,102,99,60,48,17,21,20,18 -050,01,051,Alabama,Elmore County,8,1,4707,2454,2253,1778,1612,563,478,8,11,13,19,1,6,91,127,1863,1733,625,564,18,30,34,47,6,10,2331,2150,1666,1521,553,474,8,8,13,17,0,5,91,125,1751,1640,615,560,18,26,34,44,5,9,123,103,112,91,10,4,0,3,0,2,1,1,0,2,112,93,10,4,0,4,0,3,1,1 -050,01,051,Alabama,Elmore County,8,2,4975,2550,2425,1851,1782,564,537,18,14,14,14,3,3,100,75,1947,1853,629,587,32,26,38,33,8,5,2419,2286,1739,1669,562,521,9,8,13,14,3,1,93,73,1828,1738,624,570,22,18,35,32,7,3,131,139,112,113,2,16,9,6,1,0,0,2,7,2,119,115,5,17,10,8,3,1,1,2 -050,01,051,Alabama,Elmore County,8,3,5356,2678,2678,2017,1970,555,601,14,3,16,21,3,9,73,74,2081,2038,598,646,29,20,38,39,6,12,2566,2569,1923,1877,549,595,10,3,16,18,2,7,66,69,1981,1941,589,636,23,18,36,36,4,10,112,109,94,93,6,6,4,0,0,3,1,2,7,5,100,97,9,10,6,2,2,3,2,2 -050,01,051,Alabama,Elmore County,8,4,4995,2551,2444,1799,1718,667,612,9,10,14,17,1,6,61,81,1853,1795,700,659,29,29,28,39,4,8,2475,2360,1736,1646,658,606,9,7,14,17,1,5,57,79,1787,1721,689,651,26,26,28,39,4,7,76,84,63,72,9,6,0,3,0,0,0,1,4,2,66,74,11,8,3,3,0,0,0,1 -050,01,051,Alabama,Elmore County,8,5,5592,2964,2628,1836,1813,1045,724,9,19,15,15,4,5,55,52,1882,1861,1072,747,31,41,33,30,7,6,2891,2572,1772,1767,1042,720,8,15,15,15,2,4,52,51,1815,1814,1066,743,30,36,33,30,5,5,73,56,64,46,3,4,1,4,0,0,2,1,3,1,67,47,6,4,1,5,0,0,2,1 -050,01,051,Alabama,Elmore County,8,6,5573,2693,2880,1839,2113,782,696,23,22,20,18,5,4,24,27,1862,2138,788,706,34,35,30,25,5,4,2614,2749,1774,1998,776,687,17,21,19,18,4,2,24,23,1797,2019,782,697,28,31,29,23,4,2,79,131,65,115,6,9,6,1,1,0,1,2,0,4,65,119,6,9,6,4,1,2,1,2 -050,01,051,Alabama,Elmore County,8,7,5375,2533,2842,1756,2062,702,710,17,10,25,24,4,1,29,35,1784,2095,711,721,30,23,32,35,5,3,2405,2706,1668,1934,683,707,9,9,24,22,0,1,21,33,1688,1965,688,716,18,22,31,33,1,3,128,136,88,128,19,3,8,1,1,2,4,0,8,2,96,130,23,5,12,1,1,2,4,0 -050,01,051,Alabama,Elmore County,8,8,5467,2624,2843,1851,2105,675,648,23,10,32,36,7,4,36,40,1882,2143,687,660,41,37,41,43,12,6,2548,2724,1805,2006,667,638,18,9,29,34,2,1,27,36,1829,2040,675,648,30,35,36,40,5,2,76,119,46,99,8,10,5,1,3,2,5,3,9,4,53,103,12,12,11,2,5,3,7,4 -050,01,051,Alabama,Elmore County,8,9,5702,2665,3037,2011,2295,600,660,14,19,21,32,2,1,17,30,2027,2319,605,667,25,41,23,40,2,2,2587,2949,1942,2222,597,655,11,14,20,31,2,1,15,26,1956,2243,601,661,21,34,22,38,2,1,78,88,69,73,3,5,3,5,1,1,0,0,2,4,71,76,4,6,4,7,1,2,0,1 -050,01,051,Alabama,Elmore County,8,10,5538,2628,2910,2042,2207,544,631,16,10,17,21,1,2,8,39,2048,2241,547,641,22,38,18,29,1,11,2571,2857,1992,2164,542,628,12,7,17,21,1,2,7,35,1998,2196,544,636,17,33,18,27,1,9,57,53,50,43,2,3,4,3,0,0,0,0,1,4,50,45,3,5,5,5,0,2,0,2 -050,01,051,Alabama,Elmore County,8,11,5968,2844,3124,2269,2446,530,604,12,12,15,23,1,3,17,36,2285,2478,532,611,23,36,18,32,3,4,2790,3063,2217,2395,530,600,12,11,14,22,1,2,16,33,2232,2425,532,606,22,34,17,29,3,3,54,61,52,51,0,4,0,1,1,1,0,1,1,3,53,53,0,5,1,2,1,3,0,1 -050,01,051,Alabama,Elmore County,8,12,5506,2668,2838,2167,2286,453,479,5,11,13,33,5,2,25,27,2186,2311,459,485,21,30,18,38,9,3,2633,2808,2137,2261,450,477,5,9,12,33,5,2,24,26,2155,2285,456,482,21,28,16,38,9,3,35,30,30,25,3,2,0,2,1,0,0,0,1,1,31,26,3,3,0,2,2,0,0,0 -050,01,051,Alabama,Elmore County,8,13,4687,2175,2512,1809,2058,318,404,10,9,11,22,4,1,23,18,1830,2074,323,408,27,23,13,26,6,1,2151,2492,1789,2039,316,403,10,9,11,22,4,1,21,18,1808,2055,320,407,26,23,13,26,6,1,24,20,20,19,2,1,0,0,0,0,0,0,2,0,22,19,3,1,1,0,0,0,0,0 -050,01,051,Alabama,Elmore County,8,14,4124,1980,2144,1746,1830,198,267,10,8,6,19,4,0,16,20,1761,1844,200,273,23,25,8,20,5,2,1963,2123,1731,1812,196,265,10,8,6,19,4,0,16,19,1746,1825,198,271,23,24,8,20,5,2,17,21,15,18,2,2,0,0,0,0,0,0,0,1,15,19,2,2,0,1,0,0,0,0 -050,01,051,Alabama,Elmore County,8,15,3011,1438,1573,1308,1380,109,169,6,3,3,9,0,0,12,12,1320,1389,110,172,16,12,3,11,1,1,1429,1565,1303,1373,105,169,6,3,3,9,0,0,12,11,1315,1381,106,172,16,11,3,11,1,1,9,8,5,7,4,0,0,0,0,0,0,0,0,1,5,8,4,0,0,1,0,0,0,0 -050,01,051,Alabama,Elmore County,8,16,2051,930,1121,816,969,96,132,5,4,4,8,0,1,9,7,822,976,100,133,11,9,5,9,1,1,924,1117,811,967,96,130,5,4,4,8,0,1,8,7,817,974,99,131,11,9,4,9,1,1,6,4,5,2,0,2,0,0,0,0,0,0,1,0,5,2,1,2,0,0,1,0,0,0 -050,01,051,Alabama,Elmore County,8,17,1177,506,671,459,590,38,75,2,0,0,3,0,0,7,3,465,593,40,75,8,3,0,3,0,0,504,666,457,590,38,70,2,0,0,3,0,0,7,3,463,593,40,70,8,3,0,3,0,0,2,5,2,0,0,5,0,0,0,0,0,0,0,0,2,0,0,5,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,8,18,1099,341,758,304,660,30,87,1,2,1,5,2,1,3,3,306,663,31,87,3,5,2,5,2,1,330,746,295,651,30,86,1,1,1,5,0,0,3,3,297,654,31,86,3,4,2,5,0,0,11,12,9,9,0,1,0,1,0,0,2,1,0,0,9,9,0,1,0,1,0,0,2,1 -050,01,051,Alabama,Elmore County,9,0,81258,39412,41846,29702,31917,8576,8644,198,186,264,341,51,49,621,709,30264,32564,8883,8976,414,462,417,504,84,86,38312,40674,28794,30932,8499,8559,156,145,255,330,35,35,573,673,29313,31548,8781,8872,357,408,397,486,64,69,1100,1172,908,985,77,85,42,41,9,11,16,14,48,36,951,1016,102,104,57,54,20,18,20,17 -050,01,051,Alabama,Elmore County,9,1,4729,2432,2297,1735,1605,575,527,5,16,17,16,1,5,99,128,1832,1728,639,613,18,36,43,46,5,6,2326,2182,1639,1514,568,519,4,9,17,12,0,3,98,125,1735,1634,631,603,17,28,43,42,4,4,106,115,96,91,7,8,1,7,0,4,1,2,1,3,97,94,8,10,1,8,0,4,1,2 -050,01,051,Alabama,Elmore County,9,2,4924,2557,2367,1862,1722,566,539,18,13,16,16,4,5,91,72,1946,1789,627,587,29,26,38,32,9,7,2424,2243,1749,1621,559,524,11,9,16,16,4,3,85,70,1827,1686,617,571,20,22,38,31,8,5,133,124,113,101,7,15,7,4,0,0,0,2,6,2,119,103,10,16,9,4,0,1,1,2 -050,01,051,Alabama,Elmore County,9,3,5249,2633,2616,1966,1937,556,574,17,6,17,19,5,8,72,72,2032,2001,600,619,30,17,37,39,9,12,2517,2494,1867,1831,552,570,12,3,16,16,4,7,66,67,1927,1890,592,611,24,14,35,35,8,11,116,122,99,106,4,4,5,3,1,3,1,1,6,5,105,111,8,8,6,3,2,4,1,1 -050,01,051,Alabama,Elmore County,9,4,5077,2621,2456,1858,1719,676,631,9,9,7,17,1,6,70,74,1921,1789,718,674,28,30,25,33,5,8,2519,2375,1769,1652,671,623,8,6,7,17,1,4,63,73,1826,1721,709,666,25,27,21,32,5,6,102,81,89,67,5,8,1,3,0,0,0,2,7,1,95,68,9,8,3,3,4,1,0,2 -050,01,051,Alabama,Elmore County,9,5,5329,2804,2525,1726,1740,1010,704,7,14,14,15,3,5,44,47,1762,1783,1034,728,25,30,25,27,6,9,2729,2472,1664,1696,1004,701,5,10,14,15,1,4,41,46,1697,1738,1026,725,22,25,25,27,4,8,75,53,62,44,6,3,2,4,0,0,2,1,3,1,65,45,8,3,3,5,0,0,2,1 -050,01,051,Alabama,Elmore County,9,6,5951,2917,3034,1958,2212,860,739,17,24,35,18,6,5,41,36,1994,2244,875,753,32,37,48,28,9,9,2834,2914,1890,2113,854,728,12,20,34,18,5,3,39,32,1924,2141,869,739,26,32,47,28,7,7,83,120,68,99,6,11,5,4,1,0,1,2,2,4,70,103,6,14,6,5,1,0,2,2 -050,01,051,Alabama,Elmore County,9,7,5364,2553,2811,1786,2039,691,701,19,10,25,24,4,1,28,36,1812,2072,700,714,31,21,33,38,5,2,2459,2675,1722,1910,677,699,12,9,24,22,1,1,23,34,1743,1941,684,710,22,20,32,36,1,2,94,136,64,129,14,2,7,1,1,2,3,0,5,2,69,131,16,4,9,1,1,2,4,0 -050,01,051,Alabama,Elmore County,9,8,5407,2533,2874,1776,2114,662,669,20,11,32,33,8,4,35,43,1807,2152,676,685,40,41,38,40,9,6,2442,2762,1721,2015,650,664,14,10,30,32,2,1,25,40,1744,2051,659,679,28,38,35,38,3,3,91,112,55,99,12,5,6,1,2,1,6,3,10,3,63,101,17,6,12,3,3,2,6,3 -050,01,051,Alabama,Elmore County,9,9,5525,2633,2892,1968,2182,603,633,15,19,26,26,2,1,19,31,1981,2209,613,642,24,42,31,32,4,1,2549,2799,1894,2106,600,627,11,14,24,25,2,1,18,26,1907,2129,609,633,20,34,28,30,4,1,84,93,74,76,3,6,4,5,2,1,0,0,1,5,74,80,4,9,4,8,3,2,0,0 -050,01,051,Alabama,Elmore County,9,10,5611,2639,2972,2035,2248,560,651,19,8,16,27,0,1,9,37,2042,2280,564,662,23,37,18,33,1,6,2582,2916,1987,2203,557,647,15,4,16,27,0,1,7,34,1992,2234,560,657,19,31,17,32,1,5,57,56,48,45,3,4,4,4,0,0,0,0,2,3,50,46,4,5,4,6,1,1,0,1 -050,01,051,Alabama,Elmore County,9,11,5813,2751,3062,2196,2388,517,592,11,14,13,24,2,4,12,40,2206,2421,521,603,19,39,15,32,2,9,2704,3004,2151,2341,517,588,11,12,12,24,2,3,11,36,2161,2371,520,597,19,36,13,31,2,7,47,58,45,47,0,4,0,2,1,0,0,1,1,4,45,50,1,6,0,3,2,1,0,2 -050,01,051,Alabama,Elmore County,9,12,5598,2721,2877,2189,2302,480,508,3,8,17,35,4,1,28,23,2215,2325,484,510,22,23,23,39,6,3,2679,2849,2151,2280,477,504,3,6,16,35,4,1,28,23,2177,2303,481,506,22,21,22,39,6,3,42,28,38,22,3,4,0,2,1,0,0,0,0,0,38,22,3,4,0,2,1,0,0,0 -050,01,051,Alabama,Elmore County,9,13,4886,2281,2605,1916,2116,315,430,12,14,11,20,4,2,23,23,1936,2134,319,434,26,30,17,26,6,4,2261,2579,1900,2092,314,429,12,14,11,20,4,2,20,22,1917,2109,317,433,26,30,16,26,5,3,20,26,16,24,1,1,0,0,0,0,0,0,3,1,19,25,2,1,0,0,1,0,1,1 -050,01,051,Alabama,Elmore County,9,14,4169,1996,2173,1734,1853,220,269,8,9,10,24,5,0,19,18,1752,1871,223,270,23,23,14,26,5,1,1976,2155,1717,1838,217,267,8,9,10,24,5,0,19,17,1735,1855,220,268,23,22,14,26,5,1,20,18,17,15,3,2,0,0,0,0,0,0,0,1,17,16,3,2,0,1,0,0,0,0 -050,01,051,Alabama,Elmore County,9,15,3180,1508,1672,1367,1452,119,195,9,5,2,7,0,0,11,13,1378,1465,119,196,19,14,4,9,0,1,1498,1663,1359,1444,117,195,9,5,2,7,0,0,11,12,1370,1456,117,196,19,13,4,9,0,1,10,9,8,8,2,0,0,0,0,0,0,0,0,1,8,9,2,0,0,1,0,0,0,0 -050,01,051,Alabama,Elmore County,9,16,2059,942,1117,827,971,96,122,5,3,4,10,0,1,10,10,835,978,99,125,13,10,6,13,0,1,936,1111,823,967,95,120,5,3,4,10,0,1,9,10,830,974,98,123,13,10,5,13,0,1,6,6,4,4,1,2,0,0,0,0,0,0,1,0,5,4,1,2,0,0,1,0,0,0 -050,01,051,Alabama,Elmore County,9,17,1273,541,732,489,640,41,84,3,1,1,5,0,0,7,2,496,642,42,85,8,2,1,5,1,0,538,728,486,640,41,80,3,1,1,5,0,0,7,2,493,642,42,81,8,2,1,5,1,0,3,4,3,0,0,4,0,0,0,0,0,0,0,0,3,0,0,4,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,9,18,1114,350,764,314,677,29,76,1,2,1,5,2,0,3,4,317,681,30,76,4,4,1,6,2,1,339,753,305,669,29,74,1,1,1,5,0,0,3,4,308,673,30,74,4,3,1,6,0,1,11,11,9,8,0,2,0,1,0,0,2,0,0,0,9,8,0,2,0,1,0,0,2,0 -050,01,051,Alabama,Elmore County,10,0,81452,39457,41995,29793,31973,8474,8701,222,194,277,328,50,47,641,752,30380,32658,8784,9063,456,480,433,512,76,87,38284,40768,28818,30959,8393,8592,178,152,269,317,34,35,592,713,29361,31613,8680,8932,387,423,418,491,58,69,1173,1227,975,1014,81,109,44,42,8,11,16,12,49,39,1019,1045,104,131,69,57,15,21,18,18 -050,01,051,Alabama,Elmore County,10,1,4796,2415,2381,1753,1686,526,531,8,10,17,15,1,2,110,137,1861,1818,599,622,22,28,46,46,7,6,2303,2247,1653,1583,520,516,4,3,17,11,0,1,109,133,1760,1711,592,605,18,19,46,42,6,5,112,134,100,103,6,15,4,7,0,4,1,1,1,4,101,107,7,17,4,9,0,4,1,1 -050,01,051,Alabama,Elmore County,10,2,4917,2530,2387,1851,1729,564,533,15,15,10,12,2,7,88,91,1935,1815,622,591,31,31,30,32,4,11,2413,2273,1746,1636,559,519,11,14,10,12,2,5,85,87,1827,1718,615,574,26,30,30,31,4,9,117,114,105,93,5,14,4,1,0,0,0,2,3,4,108,97,7,17,5,1,0,1,0,2 -050,01,051,Alabama,Elmore County,10,3,5242,2650,2592,1964,1907,553,566,22,8,20,19,7,6,84,86,2042,1987,603,620,40,26,44,41,9,10,2506,2457,1844,1791,546,557,15,5,19,16,6,4,76,84,1914,1869,591,609,31,22,42,38,8,8,144,135,120,116,7,9,7,3,1,3,1,2,8,2,128,118,12,11,9,4,2,3,1,2 -050,01,051,Alabama,Elmore County,10,4,5130,2664,2466,1908,1740,674,631,11,7,11,21,1,9,59,58,1963,1794,705,664,28,24,24,38,4,13,2543,2374,1797,1662,671,624,10,5,11,21,1,7,53,55,1846,1715,700,656,24,20,23,36,4,11,121,92,111,78,3,7,1,2,0,0,0,2,6,3,117,79,5,8,4,4,1,2,0,2 -050,01,051,Alabama,Elmore County,10,5,5123,2710,2413,1672,1653,961,673,10,19,15,13,3,4,49,51,1715,1698,990,699,28,37,27,26,4,9,2641,2356,1617,1608,954,669,8,14,15,13,1,3,46,49,1657,1651,981,693,25,32,27,26,2,8,69,57,55,45,7,4,2,5,0,0,2,1,3,2,58,47,9,6,3,5,0,0,2,1 -050,01,051,Alabama,Elmore County,10,6,5930,2885,3045,1955,2215,832,736,13,24,36,21,4,4,45,45,1995,2258,850,753,28,38,52,37,8,5,2809,2919,1889,2113,830,725,10,17,35,21,3,2,42,41,1926,2152,847,740,23,30,51,36,7,3,76,126,66,102,2,11,3,7,1,0,1,2,3,4,69,106,3,13,5,8,1,1,1,2 -050,01,051,Alabama,Elmore County,10,7,5457,2606,2851,1815,2092,707,691,21,15,30,19,3,2,30,32,1842,2119,716,704,35,25,39,31,4,4,2495,2704,1740,1960,688,682,12,14,29,17,2,2,24,29,1762,1985,695,693,22,23,37,29,3,3,111,147,75,132,19,9,9,1,1,2,1,0,6,3,80,134,21,11,13,2,2,2,1,1 -050,01,051,Alabama,Elmore County,10,8,5443,2584,2859,1833,2084,654,683,18,7,34,31,11,2,34,52,1863,2130,664,700,36,37,42,47,13,3,2467,2754,1749,1987,646,678,12,7,33,31,3,1,24,50,1770,2032,653,694,23,37,40,45,5,1,117,105,84,97,8,5,6,0,1,0,8,1,10,2,93,98,11,6,13,0,2,2,8,2 -050,01,051,Alabama,Elmore County,10,9,5375,2517,2858,1874,2137,580,646,16,21,25,24,1,0,21,30,1895,2164,585,654,27,42,29,30,2,3,2436,2765,1807,2064,573,637,13,16,23,23,1,0,19,25,1826,2088,577,642,23,35,27,29,2,1,81,93,67,73,7,9,3,5,2,1,0,0,2,5,69,76,8,12,4,7,2,1,0,2 -050,01,051,Alabama,Elmore County,10,10,5675,2674,3001,2043,2258,579,671,25,8,15,26,1,2,11,36,2052,2290,581,681,32,33,19,36,1,6,2617,2940,1996,2211,575,666,21,3,15,25,1,2,9,33,2004,2241,577,675,26,26,18,33,1,5,57,61,47,47,4,5,4,5,0,1,0,0,2,3,48,49,4,6,6,7,1,3,0,1 -050,01,051,Alabama,Elmore County,10,11,5658,2713,2945,2179,2274,489,597,14,13,18,21,2,3,11,37,2188,2303,492,606,22,38,20,30,2,7,2660,2890,2129,2229,488,594,13,10,17,21,2,2,11,34,2138,2255,491,602,21,32,19,30,2,6,53,55,50,45,1,3,1,3,1,0,0,1,0,3,50,48,1,4,1,6,1,0,0,1 -050,01,051,Alabama,Elmore County,10,12,5603,2686,2917,2170,2314,476,539,5,9,13,34,2,2,20,19,2188,2329,480,546,19,22,15,36,4,4,2646,2885,2135,2288,473,535,5,8,12,34,2,2,19,18,2153,2303,476,541,19,21,14,35,3,3,40,32,35,26,3,4,0,1,1,0,0,0,1,1,35,26,4,5,0,1,1,1,1,1 -050,01,051,Alabama,Elmore County,10,13,5056,2387,2669,1984,2184,348,422,12,14,13,19,5,3,25,27,2005,2207,351,430,31,35,19,22,6,4,2363,2639,1964,2160,345,418,12,13,13,19,5,3,24,26,1984,2182,348,425,31,34,18,22,6,4,24,30,20,24,3,4,0,1,0,0,0,0,1,1,21,25,3,5,0,1,1,0,0,0 -050,01,051,Alabama,Elmore County,10,14,4071,1914,2157,1632,1817,230,285,13,10,11,28,5,0,23,17,1651,1831,236,289,33,24,14,30,5,0,1895,2143,1617,1806,228,283,13,10,11,28,5,0,21,16,1634,1819,232,287,31,24,14,29,5,0,19,14,15,11,2,2,0,0,0,0,0,0,2,1,17,12,4,2,2,0,0,1,0,0 -050,01,051,Alabama,Elmore County,10,15,3384,1609,1775,1458,1541,132,205,8,7,2,5,0,0,9,17,1465,1557,135,209,16,20,2,8,0,1,1597,1767,1449,1534,129,205,8,7,2,5,0,0,9,16,1456,1549,132,209,16,19,2,8,0,1,12,8,9,7,3,0,0,0,0,0,0,0,0,1,9,8,3,0,0,1,0,0,0,0 -050,01,051,Alabama,Elmore County,10,16,2167,985,1182,871,1027,93,128,6,4,5,11,0,1,10,11,878,1037,96,130,15,13,6,12,0,1,981,1174,868,1020,92,127,6,4,5,11,0,1,10,11,875,1030,95,129,15,13,6,12,0,1,4,8,3,7,1,1,0,0,0,0,0,0,0,0,3,7,1,1,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,10,17,1294,555,739,497,646,46,87,4,1,1,4,0,0,7,1,503,647,48,87,8,2,3,4,1,0,550,735,493,646,46,83,4,1,1,4,0,0,6,1,499,647,47,83,8,2,2,4,0,0,5,4,4,0,0,4,0,0,0,0,0,0,1,0,4,0,1,4,0,0,1,0,1,0 -050,01,051,Alabama,Elmore County,10,18,1131,373,758,334,669,30,77,1,2,1,5,2,0,5,5,339,674,31,78,5,5,2,6,2,0,362,746,325,661,30,74,1,1,1,5,0,0,5,5,330,666,31,75,5,4,2,6,0,0,11,12,9,8,0,3,0,1,0,0,2,0,0,0,9,8,0,3,0,1,0,0,2,0 -050,01,051,Alabama,Elmore County,11,0,81189,39173,42016,29674,31926,8297,8754,220,190,273,331,50,46,659,769,30280,32623,8611,9134,450,476,432,511,80,80,37966,40773,28677,30915,8214,8629,171,146,266,319,32,33,606,731,29239,31580,8498,8992,376,411,417,493,58,61,1207,1243,997,1011,83,125,49,44,7,12,18,13,53,38,1041,1043,113,142,74,65,15,18,22,19 -050,01,051,Alabama,Elmore County,11,1,4785,2395,2390,1729,1668,528,552,5,9,13,18,0,1,120,142,1842,1806,607,646,22,28,43,51,5,5,2284,2254,1633,1571,521,529,2,2,13,13,0,0,115,139,1743,1706,596,623,17,20,43,44,4,4,111,136,96,97,7,23,3,7,0,5,0,1,5,3,99,100,11,23,5,8,0,7,1,1 -050,01,051,Alabama,Elmore County,11,2,4928,2609,2319,1899,1690,590,513,16,5,12,13,2,8,90,90,1986,1774,646,574,30,22,30,33,7,9,2480,2203,1784,1597,586,496,12,5,12,13,0,6,86,86,1867,1678,640,554,25,20,29,33,5,7,129,116,115,93,4,17,4,0,0,0,2,2,4,4,119,96,6,20,5,2,1,0,2,2 -050,01,051,Alabama,Elmore County,11,3,5254,2622,2632,1902,1932,595,571,19,11,17,16,5,4,84,98,1980,2021,645,634,38,29,35,44,8,7,2469,2492,1775,1809,589,565,10,7,16,13,4,2,75,96,1847,1896,634,627,25,24,32,41,6,5,153,140,127,123,6,6,9,4,1,3,1,2,9,2,133,125,11,7,13,5,3,3,2,2 -050,01,051,Alabama,Elmore County,11,4,5116,2655,2461,1913,1733,651,627,13,7,12,21,3,10,63,63,1972,1793,686,662,32,23,25,36,5,12,2523,2370,1796,1656,646,619,10,5,12,21,2,9,57,60,1849,1713,679,653,25,19,25,35,4,11,132,91,117,77,5,8,3,2,0,0,1,1,6,3,123,80,7,9,7,4,0,1,1,1 -050,01,051,Alabama,Elmore County,11,5,4901,2515,2386,1609,1630,833,672,10,21,10,14,3,3,50,46,1651,1672,857,696,28,34,24,27,5,5,2451,2310,1556,1573,824,663,10,15,10,14,2,1,49,44,1597,1613,848,687,27,27,24,27,4,2,64,76,53,57,9,9,0,6,0,0,1,2,1,2,54,59,9,9,1,7,0,0,1,3 -050,01,051,Alabama,Elmore County,11,6,5941,2899,3042,1979,2206,821,742,12,20,35,19,4,5,48,50,2021,2249,841,763,28,37,53,35,5,10,2818,2927,1911,2114,817,731,9,14,35,19,2,3,44,46,1949,2153,834,751,24,28,53,34,3,7,81,115,68,92,4,11,3,6,0,0,2,2,4,4,72,96,7,12,4,9,0,1,2,3 -050,01,051,Alabama,Elmore County,11,7,5335,2543,2792,1790,2051,671,677,23,16,35,15,3,2,21,31,1809,2078,678,688,33,26,40,28,5,4,2433,2659,1709,1934,657,669,12,11,33,15,3,2,19,28,1727,1958,663,678,21,20,38,28,4,4,110,133,81,117,14,8,11,5,2,0,0,0,2,3,82,120,15,10,12,6,2,0,1,0 -050,01,051,Alabama,Elmore County,11,8,5403,2538,2865,1822,2073,618,694,16,9,36,39,11,2,35,48,1856,2117,630,708,33,39,45,50,15,5,2426,2766,1742,1981,612,690,10,9,36,37,2,1,24,48,1766,2025,617,704,21,39,43,48,5,4,112,99,80,92,6,4,6,0,0,2,9,1,11,0,90,92,13,4,12,0,2,2,10,1 -050,01,051,Alabama,Elmore County,11,9,5185,2440,2745,1828,2064,548,613,15,17,22,22,2,1,25,28,1851,2090,554,623,28,35,32,24,3,3,2366,2646,1772,1987,537,603,12,13,20,21,2,0,23,22,1793,2008,542,611,24,27,30,23,3,1,74,99,56,77,11,10,3,4,2,1,0,1,2,6,58,82,12,12,4,8,2,1,0,2 -050,01,051,Alabama,Elmore County,11,10,5608,2616,2992,2015,2240,549,672,21,10,14,28,1,2,16,40,2028,2273,555,686,30,35,17,38,2,7,2557,2927,1966,2191,545,665,18,7,14,27,1,2,13,35,1976,2221,550,675,25,31,17,36,2,5,59,65,49,49,4,7,3,3,0,1,0,0,3,5,52,52,5,11,5,4,0,2,0,2 -050,01,051,Alabama,Elmore County,11,11,5541,2663,2878,2119,2209,496,606,19,14,20,17,2,2,7,30,2126,2234,497,615,23,36,21,23,3,3,2606,2829,2068,2169,495,603,15,10,19,17,2,1,7,29,2075,2193,496,612,19,31,20,23,3,2,57,49,51,40,1,3,4,4,1,0,0,1,0,1,51,41,1,3,4,5,1,0,0,1 -050,01,051,Alabama,Elmore County,11,12,5628,2681,2947,2158,2326,484,557,6,8,13,31,0,2,20,23,2176,2345,487,564,19,24,18,34,1,3,2639,2903,2121,2290,481,552,6,7,12,31,0,2,19,21,2139,2308,483,558,19,21,16,34,1,3,42,44,37,36,3,5,0,1,1,0,0,0,1,2,37,37,4,6,0,3,2,0,0,0 -050,01,051,Alabama,Elmore County,11,13,5119,2418,2701,2009,2205,356,426,12,16,11,25,6,2,24,27,2032,2227,358,433,30,37,16,28,6,3,2390,2672,1984,2181,354,423,12,15,11,25,6,2,23,26,2006,2202,356,429,29,36,16,28,6,3,28,29,25,24,2,3,0,1,0,0,0,0,1,1,26,25,2,4,1,1,0,0,0,0 -050,01,051,Alabama,Elmore County,11,14,4144,1912,2232,1624,1855,233,322,14,9,13,26,6,1,22,19,1640,1871,240,326,29,23,17,31,8,2,1892,2217,1609,1844,230,319,14,9,13,26,6,1,20,18,1624,1860,236,322,29,22,15,30,8,1,20,15,15,11,3,3,0,0,0,0,0,0,2,1,16,11,4,4,0,1,2,1,0,1 -050,01,051,Alabama,Elmore County,11,15,3462,1645,1817,1473,1590,152,197,8,8,2,7,0,0,10,15,1483,1603,154,199,16,22,4,8,0,0,1634,1807,1465,1581,149,197,8,8,2,7,0,0,10,14,1475,1593,151,199,16,21,4,8,0,0,11,10,8,9,3,0,0,0,0,0,0,0,0,1,8,10,3,0,0,1,0,0,0,0 -050,01,051,Alabama,Elmore County,11,16,2345,1081,1264,965,1091,93,145,6,7,6,8,0,1,11,12,975,1103,94,146,17,17,7,8,0,2,1074,1253,960,1081,92,144,6,7,6,8,0,1,10,12,969,1093,92,145,16,17,7,8,0,2,7,11,5,10,1,1,0,0,0,0,0,0,1,0,6,10,2,1,1,0,0,0,0,0 -050,01,051,Alabama,Elmore County,11,17,1357,583,774,518,684,53,82,4,1,1,5,0,0,7,2,525,685,55,83,9,3,1,5,0,0,578,773,514,684,53,81,4,1,1,5,0,0,6,2,520,685,54,82,9,3,1,5,0,0,5,1,4,0,0,1,0,0,0,0,0,0,1,0,5,0,1,1,0,0,0,0,0,0 -050,01,051,Alabama,Elmore County,11,18,1137,358,779,322,679,26,86,1,2,1,7,2,0,6,5,327,682,27,88,5,6,4,8,2,0,346,765,312,672,26,80,1,1,1,7,0,0,6,5,317,675,27,82,5,5,4,8,0,0,12,14,10,7,0,6,0,1,0,0,2,0,0,0,10,7,0,6,0,1,0,0,2,0 -050,01,051,Alabama,Elmore County,12,0,81575,39396,42179,29786,31987,8363,8828,211,197,299,336,47,47,690,784,30412,32705,8701,9217,447,477,479,522,74,87,38120,40927,28735,30968,8274,8710,159,149,291,324,33,33,628,743,29306,31649,8581,9076,367,408,459,502,55,71,1276,1252,1051,1019,89,118,52,48,8,12,14,14,62,41,1106,1056,120,141,80,69,20,20,19,16 -050,01,051,Alabama,Elmore County,12,1,4719,2371,2348,1716,1620,513,561,9,9,16,18,0,1,117,139,1827,1752,592,660,25,29,44,50,6,7,2258,2225,1623,1525,507,545,3,5,16,13,0,0,109,137,1727,1655,581,643,18,25,42,44,5,6,113,123,93,95,6,16,6,4,0,5,0,1,8,2,100,97,11,17,7,4,2,6,1,1 -050,01,051,Alabama,Elmore County,12,2,4967,2648,2319,1957,1695,574,496,7,11,10,11,2,8,98,98,2049,1786,637,559,27,29,37,38,3,12,2509,2187,1834,1594,567,478,6,5,10,11,0,6,92,93,1921,1680,627,538,21,20,36,36,1,9,139,132,123,101,7,18,1,6,0,0,2,2,6,5,128,106,10,21,6,9,1,2,2,3 -050,01,051,Alabama,Elmore County,12,3,5278,2632,2646,1888,1901,615,615,21,10,20,15,3,1,85,104,1967,2000,665,676,37,30,45,40,6,5,2487,2503,1770,1779,608,604,10,4,19,14,2,0,78,102,1843,1876,654,664,24,23,43,39,4,4,145,143,118,122,7,11,11,6,1,1,1,1,7,2,124,124,11,12,13,7,2,1,2,1 -050,01,051,Alabama,Elmore County,12,4,5054,2599,2455,1875,1747,627,612,10,7,18,22,5,12,64,55,1934,1797,661,645,29,19,35,37,6,14,2459,2362,1754,1668,618,607,6,5,18,20,4,9,59,53,1808,1716,649,638,22,16,35,35,5,11,140,93,121,79,9,5,4,2,0,2,1,3,5,2,126,81,12,7,7,3,0,2,1,3 -050,01,051,Alabama,Elmore County,12,5,4811,2525,2286,1607,1564,844,636,8,13,11,16,3,4,52,53,1653,1612,870,664,23,26,26,31,5,7,2431,2211,1526,1505,835,628,8,10,11,16,2,2,49,50,1569,1550,860,655,22,22,25,30,4,5,94,75,81,59,9,8,0,3,0,0,1,2,3,3,84,62,10,9,1,4,1,1,1,2 -050,01,051,Alabama,Elmore County,12,6,5844,2847,2997,1921,2172,824,734,13,18,31,21,4,4,54,48,1970,2213,847,757,32,33,48,36,8,6,2765,2893,1855,2088,820,725,10,11,31,21,2,3,47,45,1897,2126,840,745,25,26,45,36,5,5,82,104,66,84,4,9,3,7,0,0,2,1,7,3,73,87,7,12,7,7,3,0,3,1 -050,01,051,Alabama,Elmore County,12,7,5536,2659,2877,1891,2107,689,696,14,21,35,15,3,3,27,35,1914,2138,699,710,23,31,47,28,4,5,2550,2735,1809,1990,673,682,7,15,33,15,3,2,25,31,1830,2018,682,693,15,24,45,27,4,4,109,142,82,117,16,14,7,6,2,0,0,1,2,4,84,120,17,17,8,7,2,1,0,1 -050,01,051,Alabama,Elmore County,12,8,5401,2525,2876,1806,2076,625,715,15,9,38,30,6,1,35,45,1837,2117,639,729,32,34,44,43,8,5,2421,2783,1733,1991,617,710,8,9,38,28,2,1,23,44,1754,2031,625,724,19,33,43,41,3,5,104,93,73,85,8,5,7,0,0,2,4,0,12,1,83,86,14,5,13,1,1,2,5,0 -050,01,051,Alabama,Elmore County,12,9,5215,2479,2736,1844,2057,554,599,21,15,27,30,3,1,30,34,1871,2088,563,611,35,37,38,35,3,4,2392,2637,1773,1979,549,591,15,12,26,29,2,0,27,26,1797,2003,557,600,28,28,36,34,2,2,87,99,71,78,5,8,6,3,1,1,1,1,3,8,74,85,6,11,7,9,2,1,1,2 -050,01,051,Alabama,Elmore County,12,10,5535,2565,2970,1971,2200,545,697,15,11,16,28,1,3,17,31,1985,2228,552,708,25,36,19,31,2,5,2505,2907,1920,2150,540,693,14,8,15,27,1,2,15,27,1933,2174,545,703,23,30,18,29,2,4,60,63,51,50,5,4,1,3,1,1,0,1,2,4,52,54,7,5,2,6,1,2,0,1 -050,01,051,Alabama,Elmore County,12,11,5247,2518,2729,1983,2093,487,577,17,15,20,15,2,3,9,26,1991,2117,489,585,23,32,21,18,3,4,2464,2678,1937,2054,485,573,13,10,19,15,2,2,8,24,1944,2077,487,579,18,27,20,17,3,3,54,51,46,39,2,4,4,5,1,0,0,1,1,2,47,40,2,6,5,5,1,1,0,1 -050,01,051,Alabama,Elmore County,12,12,5765,2741,3024,2205,2376,487,576,13,7,17,33,0,2,19,30,2220,2401,491,585,27,27,20,38,2,4,2685,2972,2156,2330,485,572,11,7,15,33,0,2,18,28,2170,2353,489,579,24,26,18,38,2,4,56,52,49,46,2,4,2,0,2,0,0,0,1,2,50,48,2,6,3,1,2,0,0,0 -050,01,051,Alabama,Elmore County,12,13,5263,2517,2746,2078,2243,386,430,11,15,12,31,5,1,25,26,2101,2267,391,433,27,33,18,36,5,3,2486,2717,2050,2220,384,427,11,13,12,31,5,1,24,25,2072,2244,388,430,27,30,18,35,5,3,31,29,28,23,2,3,0,2,0,0,0,0,1,1,29,23,3,3,0,3,0,1,0,0 -050,01,051,Alabama,Elmore County,12,14,4233,1932,2301,1626,1903,248,343,14,13,16,22,5,2,23,18,1644,1919,252,347,32,24,22,25,5,4,1909,2288,1607,1892,246,341,14,13,16,22,5,2,21,18,1623,1908,250,345,31,24,21,25,5,4,23,13,19,11,2,2,0,0,0,0,0,0,2,0,21,11,2,2,1,0,1,0,0,0 -050,01,051,Alabama,Elmore County,12,15,3627,1705,1922,1514,1667,162,215,11,10,4,10,2,0,12,20,1526,1684,164,219,21,26,5,14,2,1,1693,1908,1505,1656,159,214,11,10,4,10,2,0,12,18,1517,1671,161,217,21,24,5,14,2,1,12,14,9,11,3,1,0,0,0,0,0,0,0,2,9,13,3,2,0,2,0,0,0,0 -050,01,051,Alabama,Elmore County,12,16,2442,1121,1321,1007,1141,90,150,5,9,5,6,1,1,13,14,1017,1153,93,152,14,21,7,8,3,1,1112,1310,1001,1130,88,150,5,9,5,6,1,1,12,14,1011,1142,90,152,14,21,6,8,3,1,9,11,6,11,2,0,0,0,0,0,0,0,1,0,6,11,3,0,0,0,1,0,0,0 -050,01,051,Alabama,Elmore County,12,17,1469,637,832,556,732,68,90,5,2,2,6,0,0,6,2,562,734,69,90,9,3,2,7,1,0,631,829,551,731,68,88,5,2,2,6,0,0,5,2,556,733,69,88,9,3,2,7,0,0,6,3,5,1,0,2,0,0,0,0,0,0,1,0,6,1,0,2,0,0,0,0,1,0 -050,01,051,Alabama,Elmore County,12,18,1169,375,794,341,693,25,86,2,2,1,7,2,0,4,6,344,699,27,87,6,7,1,7,2,0,363,782,331,686,25,82,2,1,1,7,0,0,4,6,334,692,27,83,6,6,1,7,0,0,12,12,10,7,0,4,0,1,0,0,2,0,0,0,10,7,0,4,0,1,0,0,2,0 -050,01,051,Alabama,Elmore County,13,0,82158,39643,42515,29904,32177,8459,8982,220,201,314,335,51,50,695,770,30538,32881,8792,9363,463,483,492,524,78,87,38411,41262,28907,31176,8372,8850,160,149,304,322,35,34,633,731,29486,31844,8679,9213,375,413,467,504,59,68,1232,1253,997,1001,87,132,60,52,10,13,16,16,62,39,1052,1037,113,150,88,70,25,20,19,19 -050,01,051,Alabama,Elmore County,13,1,4625,2360,2265,1687,1576,534,541,13,8,14,18,2,3,110,119,1791,1689,608,625,32,20,38,45,5,8,2264,2158,1617,1493,526,526,5,6,14,15,1,1,101,117,1712,1604,596,609,19,17,36,42,4,6,96,107,70,83,8,15,8,2,0,3,1,2,9,2,79,85,12,16,13,3,2,3,1,2 -050,01,051,Alabama,Elmore County,13,2,4983,2613,2370,1914,1672,567,553,10,14,15,15,2,7,105,109,2014,1773,636,629,27,28,43,44,5,10,2481,2240,1803,1577,556,535,6,4,15,13,0,5,101,106,1899,1676,624,609,22,18,41,40,3,8,132,130,111,95,11,18,4,10,0,2,2,2,4,3,115,97,12,20,5,10,2,4,2,2 -050,01,051,Alabama,Elmore County,13,3,5223,2661,2562,1906,1839,627,607,21,12,21,15,2,2,84,87,1985,1922,677,660,39,29,42,39,7,5,2522,2422,1791,1728,622,588,9,6,20,14,2,1,78,85,1866,1809,670,640,22,22,40,38,6,4,139,140,115,111,5,19,12,6,1,1,0,1,6,2,119,113,7,20,17,7,2,1,1,1 -050,01,051,Alabama,Elmore County,13,4,5047,2579,2468,1836,1788,639,582,11,6,16,21,7,8,70,63,1903,1845,681,618,28,22,32,41,9,11,2438,2358,1718,1695,628,576,7,3,16,18,4,6,65,60,1780,1749,666,610,23,18,32,38,6,9,141,110,118,93,11,6,4,3,0,3,3,2,5,3,123,96,15,8,5,4,0,3,3,2 -050,01,051,Alabama,Elmore County,13,5,4827,2538,2289,1602,1569,863,633,9,11,9,16,1,4,54,56,1650,1618,892,664,25,27,23,31,3,6,2429,2219,1503,1515,858,625,9,7,9,16,1,2,49,54,1547,1562,884,655,25,22,21,31,2,4,109,70,99,54,5,8,0,4,0,0,0,2,5,2,103,56,8,9,0,5,2,0,1,2 -050,01,051,Alabama,Elmore County,13,6,5746,2769,2977,1874,2170,796,723,11,11,34,19,4,4,50,50,1917,2213,817,747,31,29,50,34,4,7,2698,2877,1818,2087,790,712,9,8,34,19,2,3,45,48,1856,2128,809,734,26,26,50,34,2,6,71,100,56,83,6,11,2,3,0,0,2,1,5,2,61,85,8,13,5,3,0,0,2,1 -050,01,051,Alabama,Elmore County,13,7,5851,2824,3027,2010,2187,736,767,18,22,32,13,5,3,23,35,2030,2217,742,781,27,36,42,24,7,5,2729,2893,1938,2077,727,757,10,15,31,13,4,1,19,30,1954,2102,732,769,17,27,40,24,6,2,95,134,72,110,9,10,8,7,1,0,1,2,4,5,76,115,10,12,10,9,2,0,1,3 -050,01,051,Alabama,Elmore County,13,8,5343,2459,2884,1790,2089,576,713,16,12,38,26,5,3,34,41,1822,2125,586,728,33,40,47,33,5,4,2356,2794,1721,2013,565,705,8,9,35,24,1,3,26,40,1746,2048,572,719,20,37,43,31,1,4,103,90,69,76,11,8,8,3,3,2,4,0,8,1,76,77,14,9,13,3,4,2,4,0 -050,01,051,Alabama,Elmore County,13,9,5232,2507,2725,1832,2019,584,618,20,16,35,36,3,3,33,33,1859,2049,593,628,37,37,45,44,6,5,2421,2624,1768,1938,576,607,15,15,34,35,2,1,26,28,1790,1964,581,616,30,31,42,42,4,3,86,101,64,81,8,11,5,1,1,1,1,2,7,5,69,85,12,12,7,6,3,2,2,2 -050,01,051,Alabama,Elmore County,13,10,5425,2515,2910,1943,2155,518,682,12,14,21,22,2,2,19,35,1959,2187,525,695,25,38,24,30,3,5,2450,2833,1886,2095,516,677,9,9,20,21,2,1,17,30,1900,2122,522,688,21,31,23,27,3,3,65,77,57,60,2,5,3,5,1,1,0,1,2,5,59,65,3,7,4,7,1,3,0,2 -050,01,051,Alabama,Elmore County,13,11,5298,2552,2746,2000,2094,508,597,20,12,14,19,1,3,9,21,2007,2114,509,601,26,28,17,23,2,3,2507,2695,1962,2057,506,592,16,7,14,19,1,3,8,17,1968,2073,507,596,21,20,17,22,2,3,45,51,38,37,2,5,4,5,0,0,0,0,1,4,39,41,2,5,5,8,0,1,0,0 -050,01,051,Alabama,Elmore County,13,12,5748,2707,3041,2194,2392,463,585,15,9,19,24,1,2,15,29,2207,2419,465,589,23,27,26,31,1,6,2653,2988,2145,2346,463,581,13,9,17,24,1,1,14,27,2157,2371,465,584,21,26,23,31,1,5,54,53,49,46,0,4,2,0,2,0,0,1,1,2,50,48,0,5,2,1,3,0,0,1 -050,01,051,Alabama,Elmore County,13,13,5399,2610,2789,2114,2245,439,461,7,14,15,36,5,2,30,31,2138,2272,445,467,27,37,24,42,6,5,2580,2756,2089,2218,436,458,7,12,14,36,5,2,29,30,2112,2245,442,463,27,35,22,41,6,4,30,33,25,27,3,3,0,2,1,0,0,0,1,1,26,27,3,4,0,2,2,1,0,1 -050,01,051,Alabama,Elmore County,13,14,4378,1985,2393,1679,1975,258,362,10,16,15,19,3,3,20,18,1698,1992,259,367,25,30,18,20,5,3,1961,2379,1659,1962,256,361,10,16,15,19,3,3,18,18,1676,1979,257,366,23,30,18,20,5,3,24,14,20,13,2,1,0,0,0,0,0,0,2,0,22,13,2,1,2,0,0,0,0,0 -050,01,051,Alabama,Elmore County,13,15,3731,1730,2001,1522,1723,168,232,13,11,7,15,5,0,15,20,1536,1739,170,237,25,25,9,18,6,2,1719,1985,1512,1711,167,230,13,11,7,15,5,0,15,18,1526,1725,169,234,25,24,9,18,6,2,11,16,10,12,1,2,0,0,0,0,0,0,0,2,10,14,1,3,0,1,0,0,0,0 -050,01,051,Alabama,Elmore County,13,16,2555,1168,1387,1065,1218,82,144,6,7,4,7,1,0,10,11,1075,1229,82,144,15,16,5,9,1,0,1156,1378,1057,1209,79,144,6,7,4,7,1,0,9,11,1066,1220,79,144,15,16,4,9,1,0,12,9,8,9,3,0,0,0,0,0,0,0,1,0,9,9,3,0,0,0,1,0,0,0 -050,01,051,Alabama,Elmore County,13,17,1566,682,884,593,767,71,98,5,4,4,7,0,1,9,7,601,774,74,99,10,9,5,8,1,1,676,879,588,764,71,96,5,4,4,7,0,1,8,7,596,771,73,97,10,9,4,8,1,1,6,5,5,3,0,2,0,0,0,0,0,0,1,0,5,3,1,2,0,0,1,0,0,0 -050,01,051,Alabama,Elmore County,13,18,1181,384,797,343,699,30,84,3,2,1,7,2,0,5,5,346,704,31,84,8,5,2,8,2,1,371,784,332,691,30,80,3,1,1,7,0,0,5,5,335,696,31,80,8,4,2,8,0,1,13,13,11,8,0,4,0,1,0,0,2,0,0,0,11,8,0,4,0,1,0,0,2,0 -050,01,053,Alabama,Escambia County,1,0,38319,19766,18553,12162,11945,6618,5628,638,660,37,62,13,7,298,251,12422,12172,6738,5732,817,806,70,87,23,14,19323,18278,11793,11733,6579,5597,629,647,35,53,8,4,279,244,12038,11954,6695,5699,797,790,63,75,15,11,443,275,369,212,39,31,9,13,2,9,5,3,19,7,384,218,43,33,20,16,7,12,8,3 -050,01,053,Alabama,Escambia County,1,1,2385,1176,1209,669,722,397,398,53,30,1,4,2,0,54,55,722,774,432,435,70,48,3,7,3,1,1129,1176,631,695,393,396,52,29,1,3,1,0,51,53,682,745,427,432,68,47,2,5,1,1,47,33,38,27,4,2,1,1,0,1,1,0,3,2,40,29,5,3,2,1,1,2,2,0 -050,01,053,Alabama,Escambia County,1,2,2379,1161,1218,735,685,356,441,34,53,2,8,1,0,33,31,767,715,376,457,45,67,4,9,2,1,1127,1187,709,660,351,437,33,52,2,8,1,0,31,30,740,689,370,453,43,66,4,8,1,1,34,31,26,25,5,4,1,1,0,0,0,0,2,1,27,26,6,4,2,1,0,1,1,0 -050,01,053,Alabama,Escambia County,1,3,2391,1181,1210,650,669,440,453,47,56,1,2,1,0,42,30,690,697,453,469,69,70,8,5,3,1,1162,1183,634,647,439,449,47,56,1,2,1,0,40,29,672,674,452,465,69,69,6,5,3,1,19,27,16,22,1,4,0,0,0,0,0,0,2,1,18,23,1,4,0,1,2,0,0,0 -050,01,053,Alabama,Escambia County,1,4,2553,1320,1233,787,674,444,478,56,51,8,6,1,1,24,23,808,695,450,485,73,68,12,8,2,1,1282,1208,756,659,442,473,54,48,7,5,1,1,22,22,775,679,448,480,70,65,10,6,2,1,38,25,31,15,2,5,2,3,1,1,0,0,2,1,33,16,2,5,3,3,2,2,0,0 -050,01,053,Alabama,Escambia County,1,5,2227,1240,987,630,590,526,326,48,44,2,6,3,2,31,19,658,607,530,332,77,53,3,10,3,4,1177,959,579,571,522,324,47,41,2,4,1,0,26,19,602,588,526,330,71,50,3,8,1,2,63,28,51,19,4,2,1,3,0,2,2,2,5,0,56,19,4,2,6,3,0,2,2,2 -050,01,053,Alabama,Escambia County,1,6,2437,1342,1095,683,680,604,359,41,45,2,2,1,0,11,9,691,689,608,361,49,51,4,3,1,0,1284,1077,635,663,596,358,41,45,2,2,0,0,10,9,642,672,600,360,48,51,4,3,0,0,58,18,48,17,8,1,0,0,0,0,1,0,1,0,49,17,8,1,1,0,0,0,1,0 -050,01,053,Alabama,Escambia County,1,7,2582,1517,1065,791,644,664,379,41,33,2,4,0,1,19,4,807,646,671,381,54,36,4,5,0,1,1474,1044,752,627,662,378,40,30,2,4,0,1,18,4,767,629,669,380,52,33,4,5,0,1,43,21,39,17,2,1,1,3,0,0,0,0,1,0,40,17,2,1,2,3,0,0,0,0 -050,01,053,Alabama,Escambia County,1,8,2720,1561,1159,884,731,615,365,49,47,4,6,0,0,9,10,890,740,620,366,56,56,5,7,0,0,1528,1139,852,714,614,364,49,47,4,5,0,0,9,9,858,722,619,365,56,55,5,6,0,0,33,20,32,17,1,1,0,0,0,1,0,0,0,1,32,18,1,1,0,1,0,1,0,0 -050,01,053,Alabama,Escambia County,1,9,2519,1425,1094,872,686,486,340,40,49,6,8,1,1,20,10,885,695,495,341,54,58,11,9,1,2,1403,1077,853,672,485,340,40,47,6,7,0,1,19,10,866,681,493,341,54,56,10,8,0,2,22,17,19,14,1,0,0,2,0,1,1,0,1,0,19,14,2,0,0,2,1,1,1,0 -050,01,053,Alabama,Escambia County,1,10,2728,1470,1258,941,843,458,356,51,42,2,5,0,0,18,12,956,854,465,358,63,51,5,7,1,0,1444,1244,919,836,456,352,49,42,2,3,0,0,18,11,934,847,463,353,61,50,5,5,1,0,26,14,22,7,2,4,2,0,0,2,0,0,0,1,22,7,2,5,2,1,0,2,0,0 -050,01,053,Alabama,Escambia County,1,11,2858,1548,1310,1002,858,493,387,38,49,5,4,3,1,7,11,1008,867,495,391,42,56,6,6,5,1,1523,1300,982,849,492,387,37,49,4,3,3,1,5,11,987,858,493,391,40,56,5,5,4,1,25,10,20,9,1,0,1,0,1,1,0,0,2,0,21,9,2,0,2,0,1,1,1,0 -050,01,053,Alabama,Escambia County,1,12,2505,1270,1235,829,834,383,345,47,42,1,2,0,0,10,12,836,844,386,349,55,52,2,3,1,1,1261,1226,821,829,382,341,47,42,1,2,0,0,10,12,828,839,385,345,55,52,2,3,1,1,9,9,8,5,1,4,0,0,0,0,0,0,0,0,8,5,1,4,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,13,2223,1066,1157,769,835,254,272,33,42,1,1,0,0,9,7,776,842,256,273,42,47,1,2,0,0,1054,1151,760,830,251,271,33,42,1,1,0,0,9,7,767,837,253,272,42,47,1,2,0,0,12,6,9,5,3,1,0,0,0,0,0,0,0,0,9,5,3,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,14,1872,862,1010,657,743,180,229,20,28,0,2,0,1,5,7,661,748,181,231,23,35,2,2,0,1,860,1004,655,739,180,228,20,28,0,2,0,0,5,7,659,744,181,230,23,35,2,2,0,0,2,6,2,4,0,1,0,0,0,0,0,1,0,0,2,4,0,1,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,1,15,1512,718,794,546,602,145,170,24,19,0,0,0,0,3,3,548,604,146,171,27,22,0,0,0,0,713,790,544,599,142,169,24,19,0,0,0,0,3,3,546,601,143,170,27,22,0,0,0,0,5,4,2,3,3,1,0,0,0,0,0,0,0,0,2,3,3,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,16,1110,475,635,374,466,88,151,11,12,0,2,0,0,2,4,375,469,89,152,12,15,0,3,1,0,472,631,372,462,87,151,11,12,0,2,0,0,2,4,373,465,88,152,12,15,0,3,1,0,3,4,2,4,1,0,0,0,0,0,0,0,0,0,2,4,1,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,17,704,270,434,216,330,49,91,4,13,0,0,0,0,1,0,217,330,49,91,5,13,0,0,0,0,267,433,213,329,49,91,4,13,0,0,0,0,1,0,214,329,49,91,5,13,0,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,1,18,614,164,450,127,353,36,88,1,5,0,0,0,0,0,4,127,356,36,89,1,8,0,1,0,0,163,449,126,352,36,88,1,5,0,0,0,0,0,4,126,355,36,89,1,8,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,0,38325,19768,18557,12164,11949,6618,5628,638,660,37,62,13,7,298,251,12424,12176,6738,5732,817,806,70,87,23,14,19325,18282,11795,11737,6579,5597,629,647,35,53,8,4,279,244,12040,11958,6695,5699,797,790,63,75,15,11,443,275,369,212,39,31,9,13,2,9,5,3,19,7,384,218,43,33,20,16,7,12,8,3 -050,01,053,Alabama,Escambia County,2,1,2387,1177,1210,670,723,397,398,53,30,1,4,2,0,54,55,723,775,432,435,70,48,3,7,3,1,1130,1177,632,696,393,396,52,29,1,3,1,0,51,53,683,746,427,432,68,47,2,5,1,1,47,33,38,27,4,2,1,1,0,1,1,0,3,2,40,29,5,3,2,1,1,2,2,0 -050,01,053,Alabama,Escambia County,2,2,2380,1161,1219,735,686,356,441,34,53,2,8,1,0,33,31,767,716,376,457,45,67,4,9,2,1,1127,1188,709,661,351,437,33,52,2,8,1,0,31,30,740,690,370,453,43,66,4,8,1,1,34,31,26,25,5,4,1,1,0,0,0,0,2,1,27,26,6,4,2,1,0,1,1,0 -050,01,053,Alabama,Escambia County,2,3,2391,1181,1210,650,669,440,453,47,56,1,2,1,0,42,30,690,697,453,469,69,70,8,5,3,1,1162,1183,634,647,439,449,47,56,1,2,1,0,40,29,672,674,452,465,69,69,6,5,3,1,19,27,16,22,1,4,0,0,0,0,0,0,2,1,18,23,1,4,0,1,2,0,0,0 -050,01,053,Alabama,Escambia County,2,4,2553,1320,1233,787,674,444,478,56,51,8,6,1,1,24,23,808,695,450,485,73,68,12,8,2,1,1282,1208,756,659,442,473,54,48,7,5,1,1,22,22,775,679,448,480,70,65,10,6,2,1,38,25,31,15,2,5,2,3,1,1,0,0,2,1,33,16,2,5,3,3,2,2,0,0 -050,01,053,Alabama,Escambia County,2,5,2227,1240,987,630,590,526,326,48,44,2,6,3,2,31,19,658,607,530,332,77,53,3,10,3,4,1177,959,579,571,522,324,47,41,2,4,1,0,26,19,602,588,526,330,71,50,3,8,1,2,63,28,51,19,4,2,1,3,0,2,2,2,5,0,56,19,4,2,6,3,0,2,2,2 -050,01,053,Alabama,Escambia County,2,6,2438,1342,1096,683,681,604,359,41,45,2,2,1,0,11,9,691,690,608,361,49,51,4,3,1,0,1284,1078,635,664,596,358,41,45,2,2,0,0,10,9,642,673,600,360,48,51,4,3,0,0,58,18,48,17,8,1,0,0,0,0,1,0,1,0,49,17,8,1,1,0,0,0,1,0 -050,01,053,Alabama,Escambia County,2,7,2582,1517,1065,791,644,664,379,41,33,2,4,0,1,19,4,807,646,671,381,54,36,4,5,0,1,1474,1044,752,627,662,378,40,30,2,4,0,1,18,4,767,629,669,380,52,33,4,5,0,1,43,21,39,17,2,1,1,3,0,0,0,0,1,0,40,17,2,1,2,3,0,0,0,0 -050,01,053,Alabama,Escambia County,2,8,2720,1561,1159,884,731,615,365,49,47,4,6,0,0,9,10,890,740,620,366,56,56,5,7,0,0,1528,1139,852,714,614,364,49,47,4,5,0,0,9,9,858,722,619,365,56,55,5,6,0,0,33,20,32,17,1,1,0,0,0,1,0,0,0,1,32,18,1,1,0,1,0,1,0,0 -050,01,053,Alabama,Escambia County,2,9,2520,1426,1094,873,686,486,340,40,49,6,8,1,1,20,10,886,695,495,341,54,58,11,9,1,2,1404,1077,854,672,485,340,40,47,6,7,0,1,19,10,867,681,493,341,54,56,10,8,0,2,22,17,19,14,1,0,0,2,0,1,1,0,1,0,19,14,2,0,0,2,1,1,1,0 -050,01,053,Alabama,Escambia County,2,10,2728,1470,1258,941,843,458,356,51,42,2,5,0,0,18,12,956,854,465,358,63,51,5,7,1,0,1444,1244,919,836,456,352,49,42,2,3,0,0,18,11,934,847,463,353,61,50,5,5,1,0,26,14,22,7,2,4,2,0,0,2,0,0,0,1,22,7,2,5,2,1,0,2,0,0 -050,01,053,Alabama,Escambia County,2,11,2858,1548,1310,1002,858,493,387,38,49,5,4,3,1,7,11,1008,867,495,391,42,56,6,6,5,1,1523,1300,982,849,492,387,37,49,4,3,3,1,5,11,987,858,493,391,40,56,5,5,4,1,25,10,20,9,1,0,1,0,1,1,0,0,2,0,21,9,2,0,2,0,1,1,1,0 -050,01,053,Alabama,Escambia County,2,12,2505,1270,1235,829,834,383,345,47,42,1,2,0,0,10,12,836,844,386,349,55,52,2,3,1,1,1261,1226,821,829,382,341,47,42,1,2,0,0,10,12,828,839,385,345,55,52,2,3,1,1,9,9,8,5,1,4,0,0,0,0,0,0,0,0,8,5,1,4,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,13,2223,1066,1157,769,835,254,272,33,42,1,1,0,0,9,7,776,842,256,273,42,47,1,2,0,0,1054,1151,760,830,251,271,33,42,1,1,0,0,9,7,767,837,253,272,42,47,1,2,0,0,12,6,9,5,3,1,0,0,0,0,0,0,0,0,9,5,3,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,14,1873,862,1011,657,744,180,229,20,28,0,2,0,1,5,7,661,749,181,231,23,35,2,2,0,1,860,1005,655,740,180,228,20,28,0,2,0,0,5,7,659,745,181,230,23,35,2,2,0,0,2,6,2,4,0,1,0,0,0,0,0,1,0,0,2,4,0,1,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,2,15,1512,718,794,546,602,145,170,24,19,0,0,0,0,3,3,548,604,146,171,27,22,0,0,0,0,713,790,544,599,142,169,24,19,0,0,0,0,3,3,546,601,143,170,27,22,0,0,0,0,5,4,2,3,3,1,0,0,0,0,0,0,0,0,2,3,3,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,16,1110,475,635,374,466,88,151,11,12,0,2,0,0,2,4,375,469,89,152,12,15,0,3,1,0,472,631,372,462,87,151,11,12,0,2,0,0,2,4,373,465,88,152,12,15,0,3,1,0,3,4,2,4,1,0,0,0,0,0,0,0,0,0,2,4,1,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,17,704,270,434,216,330,49,91,4,13,0,0,0,0,1,0,217,330,49,91,5,13,0,0,0,0,267,433,213,329,49,91,4,13,0,0,0,0,1,0,214,329,49,91,5,13,0,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,2,18,614,164,450,127,353,36,88,1,5,0,0,0,0,0,4,127,356,36,89,1,8,0,1,0,0,163,449,126,352,36,88,1,5,0,0,0,0,0,4,126,355,36,89,1,8,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,0,38352,19787,18565,12176,11943,6620,5642,643,658,38,61,13,7,297,254,12449,12179,6755,5761,799,781,66,88,22,15,19333,18290,11798,11731,6581,5611,634,645,36,52,8,4,276,247,12051,11961,6709,5726,779,765,61,78,16,12,454,275,378,212,39,31,9,13,2,9,5,3,21,7,398,218,46,35,20,16,5,10,6,3 -050,01,053,Alabama,Escambia County,3,1,2388,1188,1200,671,719,407,392,53,30,2,3,2,0,53,56,722,771,445,430,65,45,8,8,4,3,1140,1165,633,690,402,390,52,29,2,2,1,0,50,54,681,740,439,427,63,43,7,7,3,3,48,35,38,29,5,2,1,1,0,1,1,0,3,2,41,31,6,3,2,2,1,1,1,0 -050,01,053,Alabama,Escambia County,3,2,2378,1155,1223,734,691,351,442,35,52,2,7,1,0,32,31,766,720,368,459,47,61,4,12,2,2,1119,1192,706,666,346,438,34,51,2,7,1,0,30,30,736,694,363,455,44,59,4,12,2,2,36,31,28,25,5,4,1,1,0,0,0,0,2,1,30,26,5,4,3,2,0,0,0,0 -050,01,053,Alabama,Escambia County,3,3,2391,1178,1213,654,675,436,448,45,55,1,3,1,0,41,32,694,705,459,468,61,68,3,5,3,0,1160,1187,639,654,435,444,45,55,1,3,1,0,39,31,677,683,457,463,60,68,3,5,3,0,18,26,15,21,1,4,0,0,0,0,0,0,2,1,17,22,2,5,1,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,4,2514,1303,1211,771,654,440,476,58,53,7,6,1,1,26,21,797,673,451,488,70,64,10,7,1,1,1267,1185,743,638,438,471,56,50,6,5,1,1,23,20,766,656,448,482,67,61,8,6,1,1,36,26,28,16,2,5,2,3,1,1,0,0,3,1,31,17,3,6,3,3,2,1,0,0 -050,01,053,Alabama,Escambia County,3,5,2258,1249,1009,645,606,521,335,49,42,2,6,3,2,29,18,667,623,535,341,68,53,5,8,4,3,1188,982,595,588,518,333,48,39,2,4,1,0,24,18,612,605,531,339,64,50,5,6,1,1,61,27,50,18,3,2,1,3,0,2,2,2,5,0,55,18,4,2,4,3,0,2,3,2 -050,01,053,Alabama,Escambia County,3,6,2427,1351,1076,686,675,610,349,40,42,2,1,1,0,12,9,697,684,613,353,51,45,2,3,1,0,1288,1059,634,659,602,348,40,42,2,1,0,0,10,9,643,668,605,352,49,45,2,3,0,0,63,17,52,16,8,1,0,0,0,0,1,0,2,0,54,16,8,1,2,0,0,0,1,0 -050,01,053,Alabama,Escambia County,3,7,2596,1525,1071,796,643,667,382,42,35,2,5,0,1,18,5,813,648,669,384,54,38,6,5,1,1,1482,1052,757,627,665,381,41,33,2,5,0,1,17,5,773,632,667,383,52,36,6,5,1,1,43,19,39,16,2,1,1,2,0,0,0,0,1,0,40,16,2,1,2,2,0,0,0,0 -050,01,053,Alabama,Escambia County,3,8,2695,1547,1148,872,721,610,366,49,47,5,6,0,0,11,8,883,727,613,370,56,53,5,6,1,0,1513,1128,839,705,609,365,49,46,5,5,0,0,11,7,850,710,612,369,56,51,5,5,1,0,34,20,33,16,1,1,0,1,0,1,0,0,0,1,33,17,1,1,0,2,0,1,0,0 -050,01,053,Alabama,Escambia County,3,9,2522,1419,1103,872,689,482,345,40,49,5,8,1,1,19,11,886,700,491,346,51,57,9,9,1,2,1396,1085,852,674,481,345,40,47,5,7,0,1,18,11,866,685,489,346,51,55,8,8,0,2,23,18,20,15,1,0,0,2,0,1,1,0,1,0,20,15,2,0,0,2,1,1,1,0 -050,01,053,Alabama,Escambia County,3,10,2721,1471,1250,940,837,462,352,49,44,2,5,0,0,18,12,956,847,466,354,63,52,3,9,1,0,1443,1236,916,830,460,348,47,44,2,3,0,0,18,11,932,840,464,349,61,52,3,6,1,0,28,14,24,7,2,4,2,0,0,2,0,0,0,1,24,7,2,5,2,0,0,3,0,0 -050,01,053,Alabama,Escambia County,3,11,2859,1552,1307,1004,856,492,388,40,47,5,4,3,1,8,11,1010,867,496,390,45,56,6,4,3,1,1526,1295,983,845,491,388,39,47,4,3,3,1,6,11,987,856,493,390,44,56,5,3,3,1,26,12,21,11,1,0,1,0,1,1,0,0,2,0,23,11,3,0,1,0,1,1,0,0 -050,01,053,Alabama,Escambia County,3,12,2528,1278,1250,832,838,386,353,48,44,2,2,0,0,10,13,840,850,390,357,56,52,2,5,0,0,1268,1241,823,833,385,349,48,44,2,2,0,0,10,13,831,845,389,353,56,52,2,5,0,0,10,9,9,5,1,4,0,0,0,0,0,0,0,0,9,5,1,4,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,13,2224,1069,1155,772,831,252,274,35,42,1,1,0,0,9,7,781,837,253,277,43,46,1,1,0,1,1057,1149,763,826,249,273,35,42,1,1,0,0,9,7,772,832,250,276,43,46,1,1,0,1,12,6,9,5,3,1,0,0,0,0,0,0,0,0,9,5,3,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,14,1884,868,1016,658,745,185,232,19,28,0,2,0,1,6,8,663,753,186,233,23,35,2,2,0,1,865,1011,655,742,185,231,19,28,0,2,0,0,6,8,660,750,186,232,23,35,2,2,0,0,3,5,3,3,0,1,0,0,0,0,0,1,0,0,3,3,0,1,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,3,15,1528,722,806,548,612,146,173,25,17,0,0,0,0,3,4,551,615,147,174,28,19,0,2,0,0,717,802,546,609,143,172,25,17,0,0,0,0,3,4,549,612,144,173,28,19,0,2,0,0,5,4,2,3,3,1,0,0,0,0,0,0,0,0,2,3,3,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,16,1101,468,633,367,463,89,151,11,13,0,2,0,0,1,4,368,467,89,152,12,16,0,2,0,0,465,629,365,459,88,151,11,13,0,2,0,0,1,4,366,463,88,152,12,16,0,2,0,0,3,4,2,4,1,0,0,0,0,0,0,0,0,0,2,4,1,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,17,724,282,442,227,333,50,96,4,13,0,0,0,0,1,0,228,333,50,96,5,13,0,0,0,0,278,441,223,332,50,96,4,13,0,0,0,0,1,0,224,332,50,96,5,13,0,0,0,0,4,1,4,1,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,3,18,614,162,452,127,355,34,88,1,5,0,0,0,0,0,4,127,359,34,89,1,8,0,0,0,0,161,451,126,354,34,88,1,5,0,0,0,0,0,4,126,358,34,89,1,8,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,0,38211,19687,18524,12071,11873,6601,5645,652,670,42,61,13,6,308,269,12345,12121,6738,5781,808,809,85,84,21,12,19241,18248,11709,11661,6558,5614,643,657,39,52,8,4,284,260,11963,11901,6690,5743,783,793,77,74,14,9,446,276,362,212,43,31,9,13,3,9,5,2,24,9,382,220,48,38,25,16,8,10,7,3 -050,01,053,Alabama,Escambia County,4,1,2357,1203,1154,673,681,411,384,57,31,4,2,1,0,57,56,727,734,449,424,68,47,13,7,3,1,1162,1109,641,646,406,380,56,29,4,1,0,0,55,53,693,696,444,418,67,44,12,6,1,1,41,45,32,35,5,4,1,2,0,1,1,0,2,3,34,38,5,6,1,3,1,1,2,0 -050,01,053,Alabama,Escambia County,4,2,2395,1138,1257,716,695,340,465,39,53,2,6,1,0,40,38,755,729,366,491,51,65,5,9,1,2,1101,1226,690,669,334,462,37,52,2,6,1,0,37,37,726,702,359,487,48,64,4,9,1,2,37,31,26,26,6,3,2,1,0,0,0,0,3,1,29,27,7,4,3,1,1,0,0,0 -050,01,053,Alabama,Escambia County,4,3,2424,1194,1230,658,688,454,446,44,56,1,5,2,0,35,35,692,722,473,467,59,69,2,6,4,1,1171,1214,639,677,453,442,44,56,0,5,2,0,33,34,671,710,472,462,57,69,1,6,4,1,23,16,19,11,1,4,0,0,1,0,0,0,2,1,21,12,1,5,2,0,1,0,0,0 -050,01,053,Alabama,Escambia County,4,4,2317,1194,1123,694,601,415,437,54,58,5,5,1,1,25,21,719,621,424,447,69,69,6,7,1,1,1170,1100,679,586,412,433,53,55,4,5,1,1,21,20,700,605,421,442,64,66,5,7,1,1,24,23,15,15,3,4,1,3,1,0,0,0,4,1,19,16,3,5,5,3,1,0,0,0 -050,01,053,Alabama,Escambia County,4,5,2367,1291,1076,684,641,522,368,51,41,4,6,3,0,27,20,703,659,535,381,64,52,12,6,4,1,1242,1054,645,626,519,366,49,39,4,3,1,0,24,20,663,644,530,379,61,50,11,3,1,1,49,22,39,15,3,2,2,2,0,3,2,0,3,0,40,15,5,2,3,2,1,3,3,0 -050,01,053,Alabama,Escambia County,4,6,2358,1345,1013,676,631,614,333,37,38,2,1,0,1,16,9,691,638,616,338,46,41,7,5,1,1,1281,996,622,618,608,330,37,38,2,1,0,0,12,9,633,625,610,335,43,41,6,5,1,0,64,17,54,13,6,3,0,0,0,0,0,1,4,0,58,13,6,3,3,0,1,0,0,1 -050,01,053,Alabama,Escambia County,4,7,2628,1545,1083,808,643,671,392,42,34,4,6,1,1,19,7,824,650,675,394,56,37,8,8,1,1,1495,1063,767,624,667,392,41,33,4,6,0,1,16,7,781,631,670,394,52,36,8,8,0,1,50,20,41,19,4,0,1,1,0,0,1,0,3,0,43,19,5,0,4,1,0,0,1,0 -050,01,053,Alabama,Escambia County,4,8,2601,1471,1130,820,720,586,354,44,44,5,4,0,0,16,8,834,727,589,357,56,50,7,5,1,1,1436,1108,786,704,585,353,44,42,5,3,0,0,16,6,800,710,588,354,56,47,7,3,1,0,35,22,34,16,1,1,0,2,0,1,0,0,0,2,34,17,1,3,0,3,0,2,0,1 -050,01,053,Alabama,Escambia County,4,9,2543,1412,1131,878,704,467,353,42,55,4,7,1,0,20,12,892,716,476,353,54,66,9,8,1,0,1383,1107,854,683,464,353,42,53,4,6,0,0,19,12,868,695,472,353,54,64,8,7,0,0,29,24,24,21,3,0,0,2,0,1,1,0,1,0,24,21,4,0,0,2,1,1,1,0 -050,01,053,Alabama,Escambia County,4,10,2653,1447,1206,908,804,474,335,47,49,3,6,0,1,15,11,921,815,480,337,57,56,4,8,0,1,1421,1193,885,797,472,332,46,49,3,4,0,1,15,10,898,807,478,334,56,55,4,6,0,1,26,13,23,7,2,3,1,0,0,2,0,0,0,1,23,8,2,3,1,1,0,2,0,0 -050,01,053,Alabama,Escambia County,4,11,2859,1544,1315,1009,854,476,396,45,47,3,6,3,1,8,11,1014,864,478,399,53,56,4,6,3,1,1517,1302,986,842,475,396,44,47,2,5,3,1,7,11,990,852,477,399,51,56,3,5,3,1,27,13,23,12,1,0,1,0,1,1,0,0,1,0,24,12,1,0,2,0,1,1,0,0 -050,01,053,Alabama,Escambia County,4,12,2549,1289,1260,826,841,398,358,51,45,4,2,0,0,10,14,835,853,400,362,60,59,5,2,0,0,1277,1251,816,836,397,354,51,45,4,2,0,0,9,14,824,848,399,358,59,59,5,2,0,0,12,9,10,5,1,4,0,0,0,0,0,0,1,0,11,5,1,4,1,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,13,2253,1088,1165,795,845,249,274,37,40,1,1,0,0,6,5,801,850,250,276,41,44,2,1,0,0,1076,1158,786,839,246,273,37,40,1,1,0,0,6,5,792,844,247,275,41,44,2,1,0,0,12,7,9,6,3,1,0,0,0,0,0,0,0,0,9,6,3,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,14,1898,879,1019,652,740,201,239,17,29,0,2,0,1,9,8,659,747,203,240,24,37,1,2,1,1,875,1015,648,738,201,238,17,29,0,2,0,0,9,8,655,745,203,239,24,37,1,2,1,0,4,4,4,2,0,1,0,0,0,0,0,1,0,0,4,2,0,1,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,4,15,1556,719,837,552,635,139,180,25,15,0,0,0,0,3,7,554,641,140,182,28,19,0,2,0,0,714,833,550,632,136,179,25,15,0,0,0,0,3,7,552,638,137,181,28,19,0,2,0,0,5,4,2,3,3,1,0,0,0,0,0,0,0,0,2,3,3,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,16,1079,452,627,340,459,98,147,13,16,0,2,0,0,1,3,341,460,98,149,14,19,0,2,0,0,451,623,339,455,98,147,13,16,0,2,0,0,1,3,340,456,98,149,14,19,0,2,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,17,776,319,457,257,339,56,105,5,12,0,0,0,0,1,1,258,340,56,105,6,13,0,0,0,0,313,456,252,338,55,105,5,12,0,0,0,0,1,1,253,339,55,105,6,13,0,0,0,0,6,1,5,1,1,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,4,18,598,157,441,125,352,30,79,2,7,0,0,0,0,0,3,125,355,30,79,2,10,0,0,0,0,156,440,124,351,30,79,2,7,0,0,0,0,0,3,124,354,30,79,2,10,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,5,0,38029,19596,18433,11999,11816,6584,5617,645,666,40,59,13,7,315,268,12286,12067,6725,5745,794,796,86,84,22,19,19177,18128,11665,11580,6545,5583,636,651,36,51,8,4,287,259,11926,11823,6677,5706,770,776,77,76,16,15,419,305,334,236,39,34,9,15,4,8,5,3,28,9,360,244,48,39,24,20,9,8,6,4 -050,01,053,Alabama,Escambia County,5,1,2327,1209,1118,705,672,385,360,54,33,2,2,1,0,62,51,766,719,426,400,67,43,10,7,2,2,1174,1067,678,632,380,355,53,31,2,1,0,0,61,48,738,676,420,393,66,40,10,6,1,2,35,51,27,40,5,5,1,2,0,1,1,0,1,3,28,43,6,7,1,3,0,1,1,0 -050,01,053,Alabama,Escambia County,5,2,2352,1114,1238,669,696,363,457,40,42,4,5,1,0,37,38,705,730,387,482,49,55,9,8,2,3,1073,1199,643,660,357,455,38,42,2,5,1,0,32,37,674,694,378,480,46,54,6,8,2,2,41,39,26,36,6,2,2,0,2,0,0,0,5,1,31,36,9,2,3,1,3,0,0,1 -050,01,053,Alabama,Escambia County,5,3,2414,1196,1218,683,685,434,445,44,54,1,5,2,0,32,29,715,713,452,462,56,63,3,8,2,2,1171,1199,663,674,433,440,43,52,1,5,2,0,29,28,692,701,450,457,54,60,2,8,2,2,25,19,20,11,1,5,1,2,0,0,0,0,3,1,23,12,2,5,2,3,1,0,0,0 -050,01,053,Alabama,Escambia County,5,4,2269,1157,1112,673,613,411,415,42,53,2,5,1,1,28,25,699,637,423,427,58,64,3,7,3,2,1138,1087,659,594,410,412,42,51,2,5,1,1,24,24,681,617,422,423,54,62,3,7,3,2,19,25,14,19,1,3,0,2,0,0,0,0,4,1,18,20,1,4,4,2,0,0,0,0 -050,01,053,Alabama,Escambia County,5,5,2429,1319,1110,704,662,529,373,53,51,7,6,2,1,24,17,726,679,535,379,65,59,14,8,3,3,1279,1085,673,648,524,369,52,47,6,4,1,0,23,17,694,665,530,375,63,55,13,6,2,2,40,25,31,14,5,4,1,4,1,2,1,1,1,0,32,14,5,4,2,4,1,2,1,1 -050,01,053,Alabama,Escambia County,5,6,2363,1339,1024,657,649,616,322,44,37,3,2,1,1,18,13,673,662,619,327,55,44,7,4,3,1,1290,1001,618,630,614,319,43,37,3,2,0,0,12,13,628,643,616,324,50,44,6,4,2,0,49,23,39,19,2,3,1,0,0,0,1,1,6,0,45,19,3,3,5,0,1,0,1,1 -050,01,053,Alabama,Escambia County,5,7,2610,1542,1068,787,627,693,398,40,34,1,3,1,1,20,5,805,632,699,401,50,36,6,3,2,1,1490,1054,745,615,688,397,39,33,1,3,0,1,17,5,760,620,694,400,47,35,6,3,0,1,52,14,42,12,5,1,1,1,0,0,1,0,3,0,45,12,5,1,3,1,0,0,2,0 -050,01,053,Alabama,Escambia County,5,8,2499,1424,1075,798,687,563,335,43,39,3,4,0,0,17,10,814,697,566,337,56,45,5,6,0,0,1385,1051,763,669,561,334,43,37,3,3,0,0,15,8,777,677,563,335,55,42,5,5,0,0,39,24,35,18,2,1,0,2,0,1,0,0,2,2,37,20,3,2,1,3,0,1,0,0 -050,01,053,Alabama,Escambia County,5,9,2534,1401,1133,869,701,469,355,39,58,4,8,0,0,20,11,883,710,479,358,52,68,7,9,0,0,1375,1108,845,679,468,355,39,56,4,7,0,0,19,11,859,688,477,358,52,66,6,8,0,0,26,25,24,22,1,0,0,2,0,1,0,0,1,0,24,22,2,0,0,2,1,1,0,0 -050,01,053,Alabama,Escambia County,5,10,2566,1411,1155,879,761,462,330,52,45,4,5,1,1,13,13,889,774,467,333,59,54,8,7,1,1,1383,1142,854,753,461,328,51,45,4,3,0,1,13,12,864,765,466,330,58,53,8,5,0,1,28,13,25,8,1,2,1,0,0,2,1,0,0,1,25,9,1,3,1,1,0,2,1,0 -050,01,053,Alabama,Escambia County,5,11,2779,1478,1301,974,842,443,392,44,49,3,6,2,1,12,11,984,853,447,393,52,58,4,7,3,1,1456,1286,957,829,441,391,43,49,2,5,2,1,11,11,966,840,445,392,50,58,3,6,3,1,22,15,17,13,2,1,1,0,1,1,0,0,1,0,18,13,2,1,2,0,1,1,0,0 -050,01,053,Alabama,Escambia County,5,12,2616,1323,1293,843,856,418,371,49,50,4,3,1,0,8,13,849,869,422,373,53,61,6,3,1,0,1307,1283,829,849,417,368,49,50,4,3,1,0,7,13,835,862,420,370,53,61,5,3,1,0,16,10,14,7,1,3,0,0,0,0,0,0,1,0,14,7,2,3,0,0,1,0,0,0 -050,01,053,Alabama,Escambia County,5,13,2253,1089,1164,777,829,265,289,38,38,2,1,0,0,7,7,783,836,267,289,43,45,3,1,0,0,1078,1155,769,822,262,287,38,38,2,1,0,0,7,7,775,829,264,287,43,45,3,1,0,0,11,9,8,7,3,2,0,0,0,0,0,0,0,0,8,7,3,2,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,5,14,1962,917,1045,689,752,198,244,20,35,0,2,0,1,10,11,697,761,200,247,29,44,1,3,0,2,911,1042,683,750,198,244,20,35,0,2,0,0,10,11,691,759,200,247,29,44,1,3,0,1,6,3,6,2,0,0,0,0,0,0,0,1,0,0,6,2,0,0,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,5,15,1522,698,824,546,612,126,190,21,15,0,0,0,0,5,7,551,619,126,192,26,19,0,1,0,0,693,819,544,609,123,188,21,15,0,0,0,0,5,7,549,616,123,190,26,19,0,1,0,0,5,5,2,3,3,2,0,0,0,0,0,0,0,0,2,3,3,2,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,5,16,1126,474,652,341,483,118,150,14,13,0,2,0,0,1,4,341,485,119,153,15,15,0,2,0,1,473,649,340,480,118,150,14,13,0,2,0,0,1,4,340,482,119,153,15,15,0,2,0,1,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,5,17,793,332,461,268,342,59,108,5,10,0,0,0,0,0,1,268,343,59,108,5,11,0,0,0,0,329,461,266,342,58,108,5,10,0,0,0,0,0,1,266,343,58,108,5,11,0,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,5,18,615,173,442,137,347,32,83,3,10,0,0,0,0,1,2,138,348,32,84,4,12,0,0,0,0,172,440,136,345,32,83,3,10,0,0,0,0,1,2,137,346,32,84,4,12,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,6,0,37775,19439,18336,11841,11718,6560,5602,649,672,37,60,14,6,338,278,12142,11976,6720,5731,810,811,89,94,26,14,19002,18003,11499,11456,6513,5565,639,658,35,52,9,3,307,269,11775,11705,6661,5690,785,793,80,85,16,10,437,333,342,262,47,37,10,14,2,8,5,3,31,9,367,271,59,41,25,18,9,9,10,4 -050,01,053,Alabama,Escambia County,6,1,2349,1216,1133,696,671,400,370,47,35,2,3,2,0,69,54,760,724,448,405,64,46,9,11,5,3,1184,1086,674,635,392,365,47,33,2,2,1,0,68,51,738,685,440,400,64,43,8,9,3,2,32,47,22,36,8,5,0,2,0,1,1,0,1,3,22,39,8,5,0,3,1,2,2,1 -050,01,053,Alabama,Escambia County,6,2,2298,1104,1194,655,683,365,427,43,35,1,4,1,0,39,45,694,725,391,459,52,48,5,9,2,1,1055,1154,617,647,361,423,40,35,1,4,1,0,35,45,652,689,384,455,48,48,5,9,2,1,49,40,38,36,4,4,3,0,0,0,0,0,4,0,42,36,7,4,4,0,0,0,0,0 -050,01,053,Alabama,Escambia County,6,3,2350,1139,1211,658,682,400,443,38,53,2,6,2,0,39,27,693,707,424,460,53,63,6,11,2,0,1108,1189,635,665,396,440,38,52,2,6,2,0,35,26,666,689,418,456,52,62,5,11,2,0,31,22,23,17,4,3,0,1,0,0,0,0,4,1,27,18,6,4,1,1,1,0,0,0 -050,01,053,Alabama,Escambia County,6,4,2227,1143,1084,650,601,425,401,38,49,1,4,0,0,29,29,675,628,440,416,50,62,6,7,2,1,1124,1055,637,578,423,397,38,48,1,4,0,0,25,28,659,604,438,411,48,61,5,7,0,1,19,29,13,23,2,4,0,1,0,0,0,0,4,1,16,24,2,5,2,1,1,0,2,0 -050,01,053,Alabama,Escambia County,6,5,2469,1319,1150,705,665,521,409,64,57,6,5,3,1,20,13,722,678,528,415,73,63,12,6,4,2,1272,1121,670,648,516,405,61,53,5,3,2,0,18,12,685,660,522,410,69,58,11,4,3,1,47,29,35,17,5,4,3,4,1,2,1,1,2,1,37,18,6,5,4,5,1,2,1,1 -050,01,053,Alabama,Escambia County,6,6,2318,1331,987,641,619,614,314,45,36,6,2,1,1,24,15,663,630,620,321,60,45,11,5,3,2,1293,960,614,595,611,313,44,35,6,2,0,0,18,15,630,606,615,320,56,44,10,5,2,1,38,27,27,24,3,1,1,1,0,0,1,1,6,0,33,24,5,1,4,1,1,0,1,1 -050,01,053,Alabama,Escambia County,6,7,2576,1491,1085,768,659,666,376,36,39,1,3,1,0,19,8,786,666,669,378,49,46,5,3,1,0,1452,1068,738,645,662,374,35,38,1,3,0,0,16,8,754,652,664,376,45,45,5,3,0,0,39,17,30,14,4,2,1,1,0,0,1,0,3,0,32,14,5,2,4,1,0,0,1,0 -050,01,053,Alabama,Escambia County,6,8,2394,1370,1024,753,640,548,339,48,35,3,3,0,1,18,6,766,645,554,342,61,38,7,4,2,1,1324,995,712,618,547,337,48,33,3,2,0,1,14,4,723,621,552,339,57,35,6,3,1,1,46,29,41,22,1,2,0,2,0,1,0,0,4,2,43,24,2,3,4,3,1,1,1,0 -050,01,053,Alabama,Escambia County,6,9,2604,1435,1169,886,731,487,360,39,56,3,9,0,0,20,13,898,742,496,362,53,67,8,11,0,0,1403,1145,860,710,482,359,39,55,3,8,0,0,19,13,872,721,490,361,53,66,7,10,0,0,32,24,26,21,5,1,0,1,0,1,0,0,1,0,26,21,6,1,0,1,1,1,0,0 -050,01,053,Alabama,Escambia County,6,10,2431,1351,1080,831,700,449,319,53,41,3,7,1,1,14,12,843,711,453,320,64,50,4,9,1,2,1321,1064,803,689,449,318,52,40,3,5,0,1,14,11,815,699,453,319,63,48,4,7,0,2,30,16,28,11,0,1,1,1,0,2,1,0,0,1,28,12,0,1,1,2,0,2,1,0 -050,01,053,Alabama,Escambia County,6,11,2768,1463,1305,961,861,445,380,39,47,3,4,2,1,13,12,974,873,448,380,48,56,4,7,2,1,1435,1289,939,847,442,378,38,47,2,4,2,1,12,12,951,859,444,378,47,56,3,7,2,1,28,16,22,14,3,2,1,0,1,0,0,0,1,0,23,14,4,2,1,0,1,0,0,0 -050,01,053,Alabama,Escambia County,6,12,2584,1317,1267,846,818,413,376,44,56,4,4,1,0,9,13,853,831,416,378,51,67,6,5,2,0,1300,1258,831,812,412,374,44,56,4,3,1,0,8,13,837,825,415,376,51,67,5,4,1,0,17,9,15,6,1,2,0,0,0,1,0,0,1,0,16,6,1,2,0,0,1,1,1,0 -050,01,053,Alabama,Escambia County,6,13,2273,1101,1172,763,830,284,294,45,40,2,1,0,0,7,7,770,837,287,294,48,47,3,1,0,0,1090,1160,755,821,281,291,45,40,2,1,0,0,7,7,762,828,284,291,48,47,3,1,0,0,11,12,8,9,3,3,0,0,0,0,0,0,0,0,8,9,3,3,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,6,14,1979,920,1059,695,758,193,245,24,42,0,3,0,1,8,10,702,768,195,248,29,49,2,3,0,1,913,1056,688,756,193,245,24,42,0,3,0,0,8,10,695,766,195,248,29,49,2,3,0,0,7,3,7,2,0,0,0,0,0,0,0,1,0,0,7,2,0,0,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,6,15,1568,705,863,546,635,133,201,20,19,0,1,0,0,6,7,552,640,134,203,26,26,0,1,0,0,701,858,544,631,131,200,20,19,0,1,0,0,6,7,550,636,132,202,26,26,0,1,0,0,4,5,2,4,2,1,0,0,0,0,0,0,0,0,2,4,2,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,6,16,1155,511,644,375,470,119,156,15,14,0,0,0,0,2,4,377,473,119,157,17,18,0,0,0,0,509,639,374,466,118,155,15,14,0,0,0,0,2,4,376,469,118,156,17,18,0,0,0,0,2,5,1,4,1,1,0,0,0,0,0,0,0,0,1,4,1,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,6,17,827,346,481,273,358,64,110,8,10,0,1,0,0,1,2,274,360,64,110,8,12,1,1,0,0,342,480,270,358,63,109,8,10,0,1,0,0,1,2,271,360,63,109,8,12,1,1,0,0,4,1,3,0,1,1,0,0,0,0,0,0,0,0,3,0,1,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,6,18,605,177,428,139,337,34,82,3,8,0,0,0,0,1,1,140,338,34,83,4,8,0,0,0,0,176,426,138,335,34,82,3,8,0,0,0,0,1,1,139,336,34,83,4,8,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,7,0,37749,19414,18335,11784,11654,6587,5660,649,664,37,60,14,6,343,291,12096,11934,6749,5796,803,805,92,84,26,13,18976,18007,11440,11401,6542,5622,638,647,33,52,9,3,314,282,11728,11672,6695,5754,779,783,77,76,20,10,438,328,344,253,45,38,11,17,4,8,5,3,29,9,368,262,54,42,24,22,15,8,6,3 -050,01,053,Alabama,Escambia County,7,1,2273,1171,1102,664,638,383,365,48,40,1,3,1,0,74,56,736,692,435,406,65,56,12,7,1,0,1138,1060,645,605,375,362,44,38,1,2,1,0,72,53,715,656,425,402,61,52,12,6,1,0,33,42,19,33,8,3,4,2,0,1,0,0,2,3,21,36,10,4,4,4,0,1,0,0 -050,01,053,Alabama,Escambia County,7,2,2376,1187,1189,693,694,388,412,46,32,3,2,2,0,55,49,744,739,427,446,61,45,8,6,3,2,1133,1155,652,666,384,407,44,31,1,2,1,0,51,49,700,711,420,441,58,44,5,6,2,2,54,34,41,28,4,5,2,1,2,0,1,0,4,0,44,28,7,5,3,1,3,0,1,0 -050,01,053,Alabama,Escambia County,7,3,2373,1147,1226,682,685,393,457,37,48,1,7,2,0,32,29,710,713,413,473,48,55,4,10,4,4,1116,1200,658,663,388,455,36,47,1,7,2,0,31,28,685,690,408,471,46,53,4,10,4,4,31,26,24,22,5,2,1,1,0,0,0,0,1,1,25,23,5,2,2,2,0,0,0,0 -050,01,053,Alabama,Escambia County,7,4,2144,1069,1075,594,595,412,398,36,51,1,3,0,0,26,28,620,620,421,414,47,61,6,9,1,0,1049,1045,577,571,411,394,36,50,1,3,0,0,24,27,601,595,420,409,46,60,5,9,1,0,20,30,17,24,1,4,0,1,0,0,0,0,2,1,19,25,1,5,1,1,1,0,0,0 -050,01,053,Alabama,Escambia County,7,5,2457,1298,1159,693,665,521,421,55,52,6,6,3,0,20,15,708,679,532,428,66,59,10,8,3,0,1259,1130,662,648,518,415,55,49,5,4,2,0,17,14,676,661,527,421,64,56,8,6,2,0,39,29,31,17,3,6,0,3,1,2,1,0,3,1,32,18,5,7,2,3,2,2,1,0 -050,01,053,Alabama,Escambia County,7,6,2360,1370,990,658,609,635,320,44,39,5,3,1,2,27,17,682,626,642,324,60,50,11,5,3,2,1325,965,625,592,632,318,43,35,5,3,0,0,20,17,643,609,638,322,56,46,7,5,2,0,45,25,33,17,3,2,1,4,0,0,1,2,7,0,39,17,4,2,4,4,4,0,1,2 -050,01,053,Alabama,Escambia County,7,7,2548,1482,1066,752,665,676,349,34,41,2,4,1,0,17,7,769,672,679,350,42,47,7,4,2,0,1447,1051,725,653,672,347,34,40,2,4,0,0,14,7,739,660,675,348,41,46,6,4,0,0,35,15,27,12,4,2,0,1,0,0,1,0,3,0,30,12,4,2,1,1,1,0,2,0 -050,01,053,Alabama,Escambia County,7,8,2405,1352,1053,740,643,553,370,42,31,2,2,0,1,15,6,755,649,556,372,50,35,6,2,0,1,1309,1025,703,620,552,368,41,29,2,2,0,1,11,5,714,625,555,370,47,32,4,2,0,1,43,28,37,23,1,2,1,2,0,0,0,0,4,1,41,24,1,2,3,3,2,0,0,0 -050,01,053,Alabama,Escambia County,7,9,2607,1470,1137,890,718,513,352,47,46,2,8,0,0,18,13,903,731,521,354,59,57,5,9,0,0,1436,1111,862,697,508,351,47,45,2,6,0,0,17,12,875,709,515,353,59,55,4,7,0,0,34,26,28,21,5,1,0,1,0,2,0,0,1,1,28,22,6,1,0,2,1,2,0,0 -050,01,053,Alabama,Escambia County,7,10,2397,1327,1070,835,673,423,333,49,44,5,8,1,1,14,11,846,684,428,336,57,52,8,8,2,1,1297,1053,807,659,423,333,48,43,5,7,0,1,14,10,818,669,428,335,56,51,8,7,1,1,30,17,28,14,0,0,1,1,0,1,1,0,0,1,28,15,0,1,1,1,0,1,1,0 -050,01,053,Alabama,Escambia County,7,11,2727,1432,1295,929,859,447,370,43,49,2,5,1,0,10,12,938,871,448,374,53,56,2,6,1,0,1406,1280,908,848,444,367,42,49,2,4,1,0,9,12,916,860,445,371,51,56,2,5,1,0,26,15,21,11,3,3,1,0,0,1,0,0,1,0,22,11,3,3,2,0,0,1,0,0 -050,01,053,Alabama,Escambia County,7,12,2580,1319,1261,865,818,395,374,43,52,5,3,2,1,9,13,873,831,397,377,50,63,5,3,3,1,1300,1252,848,810,395,374,43,52,4,2,2,1,8,13,855,823,397,377,49,63,4,2,3,1,19,9,17,8,0,0,0,0,1,1,0,0,1,0,18,8,0,0,1,0,1,1,0,0 -050,01,053,Alabama,Escambia County,7,13,2263,1093,1170,750,802,287,311,47,45,2,1,0,0,7,11,756,813,287,312,51,55,5,1,1,0,1084,1157,744,793,284,307,47,45,2,1,0,0,7,11,750,804,284,308,51,55,5,1,1,0,9,13,6,9,3,4,0,0,0,0,0,0,0,0,6,9,3,4,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,7,14,1986,910,1076,675,768,196,258,30,37,0,2,0,1,9,10,683,778,197,258,38,46,1,2,0,2,901,1072,667,766,195,257,30,37,0,2,0,0,9,10,675,776,196,257,38,46,1,2,0,1,9,4,8,2,1,1,0,0,0,0,0,1,0,0,8,2,1,1,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,7,15,1622,725,897,566,652,137,211,17,24,0,2,0,0,5,8,571,660,138,212,22,31,0,2,0,0,723,892,564,648,137,210,17,24,0,2,0,0,5,8,569,656,138,211,22,31,0,2,0,0,2,5,2,4,0,1,0,0,0,0,0,0,0,0,2,4,0,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,7,16,1206,542,664,396,482,128,165,16,13,0,0,0,0,2,4,397,486,128,166,17,16,1,0,1,0,538,657,395,476,125,164,16,13,0,0,0,0,2,4,396,480,125,165,17,16,1,0,1,0,4,7,1,6,3,1,0,0,0,0,0,0,0,0,1,6,3,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,7,17,815,324,491,249,362,61,115,12,11,0,1,0,0,2,2,251,364,61,115,13,12,1,2,1,0,321,491,247,362,60,115,12,11,0,1,0,0,2,2,249,364,60,115,13,12,1,2,1,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,7,18,610,196,414,153,326,39,79,3,9,0,0,0,0,1,0,154,326,39,79,4,9,0,0,0,0,194,411,151,324,39,78,3,9,0,0,0,0,1,0,152,324,39,78,4,9,0,0,0,0,2,3,2,2,0,1,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,8,0,37676,19347,18329,11732,11661,6526,5606,654,683,42,59,14,7,379,313,12067,11953,6717,5751,823,831,94,95,30,17,18901,17988,11384,11399,6476,5574,641,658,39,50,9,4,352,303,11698,11681,6654,5714,797,802,87,86,22,13,446,341,348,262,50,32,13,25,3,9,5,3,27,10,369,272,63,37,26,29,7,9,8,4 -050,01,053,Alabama,Escambia County,8,1,2185,1116,1069,650,626,342,334,47,47,4,3,1,1,72,58,718,681,392,375,60,60,13,8,5,3,1081,1026,629,590,333,331,43,44,4,2,1,1,71,58,696,645,382,372,56,57,13,7,5,3,35,43,21,36,9,3,4,3,0,1,0,0,1,0,22,36,10,3,4,3,0,1,0,0 -050,01,053,Alabama,Escambia County,8,2,2393,1211,1182,676,700,405,392,50,31,4,1,2,0,74,58,748,754,455,433,67,48,11,7,5,1,1155,1134,637,661,397,389,48,29,2,0,1,0,70,55,705,712,445,429,64,44,9,6,3,1,56,48,39,39,8,3,2,2,2,1,1,0,4,3,43,42,10,4,3,4,2,1,2,0 -050,01,053,Alabama,Escambia County,8,3,2373,1150,1223,715,691,362,442,39,50,1,7,1,0,32,33,743,720,383,462,50,62,5,11,1,1,1112,1194,687,666,355,440,38,49,1,7,1,0,30,32,713,694,374,459,49,61,5,11,1,1,38,29,28,25,7,2,1,1,0,0,0,0,2,1,30,26,9,3,1,1,0,0,0,0 -050,01,053,Alabama,Escambia County,8,4,2171,1056,1115,570,613,408,420,42,54,0,3,1,0,35,25,599,637,427,434,59,60,2,8,4,2,1038,1090,555,593,407,417,42,53,0,3,1,0,33,24,583,616,426,430,57,59,2,8,3,2,18,25,15,20,1,3,0,1,0,0,0,0,2,1,16,21,1,4,2,1,0,0,1,0 -050,01,053,Alabama,Escambia County,8,5,2391,1269,1122,678,630,505,411,50,57,8,5,1,0,27,19,699,646,518,420,65,67,13,8,3,0,1234,1098,650,620,502,405,50,52,7,4,1,0,24,17,668,634,514,413,64,61,11,7,3,0,35,24,28,10,3,6,0,5,1,1,0,0,3,2,31,12,4,7,1,6,2,1,0,0 -050,01,053,Alabama,Escambia County,8,6,2492,1442,1050,705,647,656,332,52,47,4,3,3,2,22,19,723,665,662,339,68,59,10,4,3,2,1395,1022,674,629,651,332,49,40,4,2,1,0,16,19,689,647,654,339,61,52,8,3,1,0,47,28,31,18,5,0,3,7,0,1,2,2,6,0,34,18,8,0,7,7,2,1,2,2 -050,01,053,Alabama,Escambia County,8,7,2479,1434,1045,708,666,666,326,35,41,3,3,1,0,21,9,728,675,673,327,46,49,6,3,2,0,1407,1029,690,651,662,325,35,41,3,3,0,0,17,9,706,660,667,326,44,49,6,3,1,0,27,16,18,15,4,1,0,0,0,0,1,0,4,0,22,15,6,1,2,0,0,0,1,0 -050,01,053,Alabama,Escambia County,8,8,2422,1370,1052,764,617,551,394,39,29,3,4,0,1,13,7,776,624,554,396,46,34,7,4,0,1,1320,1036,718,604,550,393,38,27,3,4,0,1,11,7,728,611,553,395,43,32,7,4,0,1,50,16,46,13,1,1,1,2,0,0,0,0,2,0,48,13,1,1,3,2,0,0,0,0 -050,01,053,Alabama,Escambia County,8,9,2575,1464,1111,884,719,511,335,47,41,2,5,0,0,20,11,899,730,519,336,60,48,6,7,0,1,1430,1080,853,694,509,333,47,40,2,4,0,0,19,9,868,703,516,333,60,47,5,6,0,0,34,31,31,25,2,2,0,1,0,1,0,0,1,2,31,27,3,3,0,1,1,1,0,1 -050,01,053,Alabama,Escambia County,8,10,2379,1308,1071,827,668,419,333,40,50,4,8,1,1,17,11,840,679,424,333,54,58,6,10,1,2,1284,1049,804,650,419,332,40,48,4,7,0,1,17,11,817,661,424,332,54,56,6,9,0,2,24,22,23,18,0,1,0,2,0,1,1,0,0,0,23,18,0,1,0,2,0,1,1,0 -050,01,053,Alabama,Escambia County,8,11,2610,1377,1233,879,828,435,340,51,45,3,8,0,0,9,12,888,840,436,342,58,54,4,9,0,0,1345,1215,852,817,432,337,49,44,3,6,0,0,9,11,861,828,433,339,56,52,4,7,0,0,32,18,27,11,3,3,2,1,0,2,0,0,0,1,27,12,3,3,2,2,0,2,0,0 -050,01,053,Alabama,Escambia County,8,12,2613,1342,1271,886,825,400,386,39,45,3,3,3,1,11,11,893,836,404,387,46,55,4,3,6,1,1323,1260,869,815,400,386,39,45,3,2,3,1,9,11,875,826,403,387,45,55,4,2,5,1,19,11,17,10,0,0,0,0,0,1,0,0,2,0,18,10,1,0,1,0,0,1,1,0 -050,01,053,Alabama,Escambia County,8,13,2258,1074,1184,729,804,291,320,46,44,2,1,0,0,6,15,734,817,293,322,50,56,3,4,0,0,1064,1174,721,798,289,316,46,44,2,1,0,0,6,15,726,811,291,318,50,56,3,4,0,0,10,10,8,6,2,4,0,0,0,0,0,0,0,0,8,6,2,4,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,8,14,2042,946,1096,698,780,206,263,31,44,1,1,0,0,10,8,706,787,208,264,39,51,3,1,0,1,935,1090,689,775,204,262,31,44,1,1,0,0,10,8,697,782,206,263,39,51,3,1,0,1,11,6,9,5,2,1,0,0,0,0,0,0,0,0,9,5,2,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,8,15,1626,717,909,554,659,145,211,13,26,0,3,0,1,5,9,559,667,145,212,18,32,0,6,0,2,716,904,553,656,145,210,13,26,0,3,0,0,5,9,558,664,145,211,18,32,0,6,0,1,1,5,1,3,0,1,0,0,0,0,0,1,0,0,1,3,0,1,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,8,16,1226,542,684,398,505,124,162,18,12,0,0,0,0,2,5,400,509,124,164,20,16,0,0,0,0,537,679,396,501,121,161,18,12,0,0,0,0,2,5,398,505,121,163,20,16,0,0,0,0,5,5,2,4,3,1,0,0,0,0,0,0,0,0,2,4,3,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,8,17,793,311,482,239,350,60,116,10,12,0,1,0,0,2,3,241,353,60,116,12,14,0,2,0,0,309,480,237,348,60,116,10,12,0,1,0,0,2,3,239,351,60,116,12,14,0,2,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,8,18,648,218,430,172,333,40,89,5,8,0,0,0,0,1,0,173,333,40,89,5,8,1,0,0,0,216,428,170,331,40,89,5,8,0,0,0,0,1,0,171,331,40,89,5,8,1,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,9,0,37500,19326,18174,11664,11520,6546,5574,670,672,43,58,17,6,386,344,12009,11843,6752,5742,833,826,100,99,32,18,18859,17823,11300,11252,6496,5535,657,650,40,49,10,3,356,334,11619,11566,6688,5699,807,800,90,87,24,15,467,351,364,268,50,39,13,22,3,9,7,3,30,10,390,277,64,43,26,26,10,12,8,3 -050,01,053,Alabama,Escambia County,9,1,2179,1117,1062,652,611,343,331,43,43,3,3,2,1,74,73,722,681,396,383,56,61,15,11,5,2,1077,1015,626,575,335,323,39,41,3,2,2,1,72,73,695,645,386,375,52,59,14,10,5,2,40,47,26,36,8,8,4,2,0,1,0,0,2,0,27,36,10,8,4,2,1,1,0,0 -050,01,053,Alabama,Escambia County,9,2,2349,1185,1164,663,678,404,392,48,32,2,1,1,0,67,61,725,735,453,430,62,50,11,8,2,3,1138,1108,629,633,396,387,46,30,2,0,0,0,65,58,689,688,443,424,60,46,11,6,1,3,47,56,34,45,8,5,2,2,0,1,1,0,2,3,36,47,10,6,2,4,0,2,1,0 -050,01,053,Alabama,Escambia County,9,3,2355,1134,1221,709,699,339,437,45,41,3,4,1,0,37,40,743,736,363,461,56,52,7,11,5,1,1092,1190,677,672,337,435,43,40,1,4,1,0,33,39,707,708,358,458,53,51,5,11,5,1,42,31,32,27,2,2,2,1,2,0,0,0,4,1,36,28,5,3,3,1,2,0,0,0 -050,01,053,Alabama,Escambia County,9,4,2197,1077,1120,586,632,413,401,41,55,1,5,2,0,34,27,618,658,434,416,55,67,3,7,3,0,1057,1096,570,612,411,399,41,54,1,5,2,0,32,26,600,637,431,414,54,66,3,6,3,0,20,24,16,20,2,2,0,1,0,0,0,0,2,1,18,21,3,2,1,1,0,1,0,0 -050,01,053,Alabama,Escambia County,9,5,2261,1241,1020,632,548,517,389,52,53,7,6,1,0,32,24,659,571,532,401,69,63,14,11,3,2,1208,989,608,529,513,384,51,48,6,6,1,0,29,22,632,550,528,395,66,58,12,10,3,2,33,31,24,19,4,5,1,5,1,0,0,0,3,2,27,21,4,6,3,5,2,1,0,0 -050,01,053,Alabama,Escambia County,9,6,2593,1482,1111,732,691,668,350,55,47,4,3,5,1,18,19,747,708,674,357,67,59,7,4,5,3,1435,1088,701,679,661,347,54,42,4,1,1,0,14,19,712,696,666,354,64,54,6,2,1,2,47,23,31,12,7,3,1,5,0,2,4,1,4,0,35,12,8,3,3,5,1,2,4,1 -050,01,053,Alabama,Escambia County,9,7,2433,1433,1000,687,620,682,325,36,40,2,4,0,1,26,10,711,628,690,330,51,46,7,5,0,1,1401,983,667,605,678,324,36,40,2,4,0,0,18,10,684,613,683,329,46,46,6,5,0,0,32,17,20,15,4,1,0,0,0,0,0,1,8,0,27,15,7,1,5,0,1,0,0,1 -050,01,053,Alabama,Escambia County,9,8,2409,1392,1017,770,603,570,379,36,28,4,2,1,0,11,5,781,608,574,382,42,30,5,2,1,0,1340,1005,723,592,569,379,35,27,4,2,0,0,9,5,732,597,573,382,40,29,4,2,0,0,52,12,47,11,1,0,1,1,0,0,1,0,2,0,49,11,1,0,2,1,1,0,1,0 -050,01,053,Alabama,Escambia County,9,9,2472,1399,1073,838,693,486,327,47,40,2,5,0,0,26,8,855,701,497,329,63,45,7,6,3,0,1362,1050,806,677,482,325,47,38,2,4,0,0,25,6,823,683,492,326,63,42,6,5,3,0,37,23,32,16,4,2,0,2,0,1,0,0,1,2,32,18,5,3,0,3,1,1,0,0 -050,01,053,Alabama,Escambia County,9,10,2425,1327,1098,848,682,415,345,45,53,3,6,1,0,15,12,860,693,421,347,54,62,6,7,1,1,1294,1069,816,657,415,344,45,51,3,5,0,0,15,12,828,668,421,346,54,60,6,6,0,1,33,29,32,25,0,1,0,2,0,1,1,0,0,0,32,25,0,1,0,2,0,1,1,0 -050,01,053,Alabama,Escambia County,9,11,2542,1365,1177,851,787,451,328,51,42,5,8,0,1,7,11,857,798,453,330,57,50,5,8,0,2,1333,1163,824,780,448,325,49,41,5,6,0,1,7,10,830,790,450,327,55,48,5,6,0,2,32,14,27,7,3,3,2,1,0,2,0,0,0,1,27,8,3,3,2,2,0,2,0,0 -050,01,053,Alabama,Escambia County,9,12,2578,1337,1241,892,816,387,364,43,45,2,4,3,1,10,11,901,827,390,366,51,54,2,4,3,1,1321,1227,877,803,387,364,43,45,2,3,3,1,9,11,885,814,390,366,50,54,2,3,3,1,16,14,15,13,0,0,0,0,0,1,0,0,1,0,16,13,0,0,1,0,0,1,0,0 -050,01,053,Alabama,Escambia County,9,13,2277,1048,1229,712,813,280,348,45,49,4,2,0,0,7,17,717,827,282,350,50,61,6,7,1,1,1036,1220,703,808,278,344,45,49,4,2,0,0,6,17,708,822,279,346,50,61,5,7,0,1,12,9,9,5,2,4,0,0,0,0,0,0,1,0,9,5,3,4,0,0,1,0,1,0 -050,01,053,Alabama,Escambia County,9,14,2067,968,1099,712,792,210,257,36,42,1,1,0,0,9,7,720,799,211,258,41,47,5,2,0,0,956,1092,702,786,208,256,36,42,1,1,0,0,9,7,710,793,209,257,41,47,5,2,0,0,12,7,10,6,2,1,0,0,0,0,0,0,0,0,10,6,2,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,9,15,1654,746,908,564,647,162,223,12,26,0,3,0,1,8,8,572,655,163,223,19,33,0,4,0,1,742,904,560,645,162,222,12,26,0,3,0,0,8,8,568,653,163,222,19,33,0,4,0,0,4,4,4,2,0,1,0,0,0,0,0,1,0,0,4,2,0,1,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,9,16,1255,543,712,409,528,115,165,17,10,0,0,0,0,2,9,411,536,115,166,19,18,0,1,0,0,539,708,408,525,112,164,17,10,0,0,0,0,2,9,410,533,112,165,19,18,0,1,0,0,4,4,1,3,3,1,0,0,0,0,0,0,0,0,1,3,3,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,9,17,777,298,479,213,341,71,118,12,17,0,1,0,0,2,2,215,343,71,118,14,19,0,1,0,0,297,475,212,337,71,118,12,17,0,1,0,0,2,2,214,339,71,118,14,19,0,1,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,9,18,677,234,443,194,339,33,95,6,9,0,0,0,0,1,0,195,339,33,95,7,9,0,0,0,0,231,441,191,337,33,95,6,9,0,0,0,0,1,0,192,337,33,95,7,9,0,0,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,10,0,37010,18742,18268,11456,11594,6184,5557,650,691,37,60,18,6,397,360,11824,11923,6381,5739,833,853,91,109,30,21,18254,17905,11080,11318,6129,5516,636,668,34,51,10,3,365,349,11418,11637,6311,5693,804,824,85,98,18,18,488,363,376,276,55,41,14,23,3,9,8,3,32,11,406,286,70,46,29,29,6,11,12,3 -050,01,053,Alabama,Escambia County,10,1,2215,1109,1106,652,632,359,355,36,49,3,3,2,1,57,66,708,694,399,400,49,65,12,11,4,3,1064,1059,621,593,351,349,32,48,3,2,2,1,55,66,675,655,390,394,44,64,12,10,4,3,45,47,31,39,8,6,4,1,0,1,0,0,2,0,33,39,9,6,5,1,0,1,0,0 -050,01,053,Alabama,Escambia County,10,2,2347,1190,1157,705,686,376,368,41,34,0,1,1,0,67,68,770,750,423,410,58,53,8,9,2,3,1142,1099,666,641,369,363,41,31,0,0,0,0,66,64,730,701,415,404,58,48,8,7,1,3,48,58,39,45,7,5,0,3,0,1,1,0,1,4,40,49,8,6,0,5,0,2,1,0 -050,01,053,Alabama,Escambia County,10,3,2320,1116,1204,675,680,346,436,44,41,4,3,1,0,46,44,718,720,374,465,59,57,12,8,1,3,1066,1171,640,650,342,434,40,41,2,3,1,0,41,43,678,689,367,462,54,56,9,8,1,3,50,33,35,30,4,2,4,0,2,0,0,0,5,1,40,31,7,3,5,1,3,0,0,0 -050,01,053,Alabama,Escambia County,10,4,2177,1080,1097,608,611,385,396,46,54,1,4,3,0,37,32,642,640,405,417,61,70,4,10,6,1,1059,1072,594,593,382,392,45,52,1,4,2,0,35,31,626,622,402,412,59,67,4,10,4,1,21,25,14,18,3,4,1,2,0,0,1,0,2,1,16,18,3,5,2,3,0,0,2,0 -050,01,053,Alabama,Escambia County,10,5,2152,1152,1000,585,556,487,363,43,53,1,5,1,0,35,23,617,576,505,375,62,64,5,7,1,2,1125,968,566,533,483,359,42,50,1,5,1,0,32,21,595,551,500,369,59,61,5,7,1,2,27,32,19,23,4,4,1,3,0,0,0,0,3,2,22,25,5,6,3,3,0,0,0,0 -050,01,053,Alabama,Escambia County,10,6,2655,1476,1179,765,721,621,379,58,53,6,5,4,1,22,20,785,740,630,385,69,64,10,8,5,2,1419,1158,724,713,613,375,58,47,5,3,1,0,18,20,740,732,620,381,67,58,9,6,2,1,57,21,41,8,8,4,0,6,1,2,3,1,4,0,45,8,10,4,2,6,1,2,3,1 -050,01,053,Alabama,Escambia County,10,7,2319,1316,1003,646,625,597,316,44,41,2,6,1,1,26,14,671,635,604,323,59,46,7,10,1,3,1286,978,625,604,596,315,43,39,2,6,0,0,20,14,644,614,601,322,54,44,7,10,0,2,30,25,21,21,1,1,1,2,0,0,1,1,6,0,27,21,3,1,5,2,0,0,1,1 -050,01,053,Alabama,Escambia County,10,8,2312,1311,1001,731,591,524,371,37,32,3,2,1,0,15,5,745,596,530,373,46,35,4,2,3,0,1268,993,698,585,520,370,36,31,3,2,0,0,11,5,709,590,523,372,43,34,3,2,1,0,43,8,33,6,4,1,1,1,0,0,1,0,4,0,36,6,7,1,3,1,1,0,2,0 -050,01,053,Alabama,Escambia County,10,9,2330,1290,1040,806,678,414,317,43,32,1,5,0,0,26,8,827,686,422,319,59,38,6,6,2,0,1244,1012,767,656,410,316,43,30,1,4,0,0,23,6,786,662,417,318,58,35,5,4,1,0,46,28,39,22,4,1,0,2,0,1,0,0,3,2,41,24,5,1,1,3,1,2,1,0 -050,01,053,Alabama,Escambia County,10,10,2386,1261,1125,800,715,403,340,37,53,5,5,0,0,16,12,814,727,406,341,49,60,8,8,0,1,1230,1098,771,694,401,337,37,51,5,4,0,0,16,12,785,706,404,338,49,58,8,7,0,1,31,27,29,21,2,3,0,2,0,1,0,0,0,0,29,21,2,3,0,2,0,1,0,0 -050,01,053,Alabama,Escambia County,10,11,2450,1304,1146,821,769,423,319,50,37,2,8,1,1,7,12,828,781,423,320,57,44,2,12,1,1,1273,1134,795,763,421,317,48,36,2,6,0,1,7,11,802,774,421,318,55,42,2,10,0,1,31,12,26,6,2,2,2,1,0,2,1,0,0,1,26,7,2,2,2,2,0,2,1,0 -050,01,053,Alabama,Escambia County,10,12,2530,1274,1256,861,812,353,368,44,59,2,5,2,1,12,11,872,822,357,372,54,67,2,5,2,1,1258,1239,847,797,352,367,44,59,2,4,2,1,11,11,857,807,355,371,53,67,2,4,2,1,16,17,14,15,1,1,0,0,0,1,0,0,1,0,15,15,2,1,1,0,0,1,0,0 -050,01,053,Alabama,Escambia County,10,13,2318,1076,1242,720,824,299,350,46,48,4,2,1,0,6,18,725,838,300,356,50,63,5,3,2,0,1058,1234,705,819,297,347,46,48,4,2,1,0,5,18,709,833,298,353,50,63,5,3,1,0,18,8,15,5,2,3,0,0,0,0,0,0,1,0,16,5,2,3,0,0,0,0,1,0 -050,01,053,Alabama,Escambia County,10,14,2036,929,1107,671,792,208,269,36,38,3,2,0,0,11,6,680,797,210,271,44,43,6,2,0,0,919,1097,663,784,206,267,36,38,3,2,0,0,11,6,672,789,208,269,44,43,6,2,0,0,10,10,8,8,2,2,0,0,0,0,0,0,0,0,8,8,2,2,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,10,15,1719,771,948,593,672,160,232,11,30,0,3,0,1,7,10,599,681,163,233,16,38,0,5,0,1,764,945,586,670,160,232,11,30,0,3,0,0,7,10,592,679,163,233,16,38,0,5,0,0,7,3,7,2,0,0,0,0,0,0,0,1,0,0,7,2,0,0,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,10,16,1243,533,710,410,523,105,166,14,13,0,0,0,0,4,8,413,531,106,166,18,20,0,1,0,0,529,705,409,520,102,164,14,13,0,0,0,0,4,8,412,528,103,164,18,20,0,1,0,0,4,5,1,3,3,2,0,0,0,0,0,0,0,0,1,3,3,2,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,10,17,808,322,486,216,362,92,108,13,12,0,1,0,0,1,3,217,364,92,109,14,14,0,2,0,0,321,482,215,358,92,108,13,12,0,1,0,0,1,3,216,360,92,109,14,14,0,2,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,10,18,693,232,461,191,345,32,104,7,12,0,0,0,0,2,0,193,345,32,104,9,12,0,0,0,0,229,461,188,345,32,104,7,12,0,0,0,0,2,0,190,345,32,104,9,12,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,11,0,36515,18407,18108,11247,11436,6025,5542,678,701,45,64,16,6,396,359,11606,11764,6216,5730,866,851,93,106,32,20,17893,17735,10863,11157,5965,5500,654,675,42,55,10,3,359,345,11193,11473,6139,5680,821,818,85,96,23,17,514,373,384,279,60,42,24,26,3,9,6,3,37,14,413,291,77,50,45,33,8,10,9,3 -050,01,053,Alabama,Escambia County,11,1,2191,1073,1118,621,639,356,363,40,43,2,2,1,1,53,70,670,708,392,412,55,57,8,9,3,2,1015,1071,589,597,346,360,31,42,2,1,1,1,46,70,633,666,379,409,41,56,7,8,3,2,58,47,32,42,10,3,9,1,0,1,0,0,7,0,37,42,13,3,14,1,1,1,0,0 -050,01,053,Alabama,Escambia County,11,2,2332,1185,1147,696,682,374,373,42,40,3,2,2,0,68,50,761,728,420,408,59,56,8,5,6,1,1142,1086,664,636,365,367,42,38,3,1,1,0,67,44,728,677,410,398,59,51,8,4,5,1,43,61,32,46,9,6,0,2,0,1,1,0,1,6,33,51,10,10,0,5,0,1,1,0 -050,01,053,Alabama,Escambia County,11,3,2292,1131,1161,671,657,359,411,44,38,4,2,1,0,52,53,719,702,391,448,61,50,8,11,4,4,1082,1126,636,626,355,408,40,37,2,2,1,0,48,53,682,671,385,445,56,49,4,11,3,4,49,35,35,31,4,3,4,1,2,0,0,0,4,0,37,31,6,3,5,1,4,0,1,0 -050,01,053,Alabama,Escambia County,11,4,2147,1044,1103,623,618,345,394,43,52,1,6,3,0,29,33,649,649,360,412,56,66,4,8,5,1,1016,1081,604,602,342,391,40,50,1,6,2,0,27,32,628,632,357,409,51,63,4,8,4,1,28,22,19,16,3,3,3,2,0,0,1,0,2,1,21,17,3,3,5,3,0,0,1,0 -050,01,053,Alabama,Escambia County,11,5,2063,1123,940,578,516,463,342,44,53,2,4,0,0,36,25,611,538,478,354,60,63,9,8,1,2,1095,908,559,494,459,336,42,51,2,4,0,0,33,23,589,514,472,347,57,60,9,8,1,2,28,32,19,22,4,6,2,2,0,0,0,0,3,2,22,24,6,7,3,3,0,0,0,0 -050,01,053,Alabama,Escambia County,11,6,2643,1464,1179,739,691,630,408,65,55,5,7,3,1,22,17,760,705,639,414,75,65,9,9,4,3,1405,1157,694,683,623,404,65,50,4,5,2,0,17,15,710,695,629,410,73,58,8,7,3,2,59,22,45,8,7,4,0,5,1,2,1,1,5,2,50,10,10,4,2,7,1,2,1,1 -050,01,053,Alabama,Escambia County,11,7,2250,1271,979,623,604,566,311,44,45,6,4,1,1,31,14,651,617,577,316,63,51,10,8,1,2,1237,951,602,583,561,309,43,41,6,4,0,0,25,14,625,596,569,314,58,47,10,8,0,1,34,28,21,21,5,2,1,4,0,0,1,1,6,0,26,21,8,2,5,4,0,0,1,1 -050,01,053,Alabama,Escambia County,11,8,2286,1260,1026,697,621,506,359,39,38,3,3,1,0,14,5,710,625,509,361,49,40,4,4,2,1,1223,1016,669,613,503,358,38,37,3,3,0,0,10,5,679,617,505,360,45,39,4,4,0,1,37,10,28,8,3,1,1,1,0,0,1,0,4,0,31,8,4,1,4,1,0,0,2,0 -050,01,053,Alabama,Escambia County,11,9,2224,1228,996,770,635,385,318,48,30,1,5,0,0,24,8,786,643,395,323,64,32,10,6,1,0,1173,970,723,617,382,317,46,26,1,4,0,0,21,6,738,623,390,320,61,28,8,5,0,0,55,26,47,18,3,1,2,4,0,1,0,0,3,2,48,20,5,3,3,4,2,1,1,0 -050,01,053,Alabama,Escambia County,11,10,2416,1277,1139,812,729,405,338,39,52,5,6,0,0,16,14,824,742,411,340,51,62,6,8,1,1,1249,1115,786,710,403,335,39,51,5,5,0,0,16,14,798,723,409,337,51,61,6,7,1,1,28,24,26,19,2,3,0,1,0,1,0,0,0,0,26,19,2,3,0,1,0,1,0,0 -050,01,053,Alabama,Escambia County,11,11,2325,1234,1091,770,714,398,316,55,39,3,9,1,1,7,12,777,724,400,321,60,46,3,11,1,1,1202,1075,742,704,397,315,53,37,3,7,0,1,7,11,749,714,399,319,58,44,3,8,0,1,32,16,28,10,1,1,2,2,0,2,1,0,0,1,28,10,1,2,2,2,0,3,1,0 -050,01,053,Alabama,Escambia County,11,12,2509,1244,1265,851,836,339,357,38,54,2,4,2,1,12,13,862,848,341,360,49,64,2,5,2,1,1225,1248,835,822,337,355,38,53,2,4,2,1,11,13,845,834,339,358,48,63,2,5,2,1,19,17,16,14,2,2,0,1,0,0,0,0,1,0,17,14,2,2,1,1,0,0,0,0 -050,01,053,Alabama,Escambia County,11,13,2268,1075,1193,720,762,302,358,41,53,4,2,1,0,7,18,727,779,303,361,46,68,5,3,1,0,1057,1185,705,757,300,356,41,53,4,1,1,0,6,18,711,774,301,359,45,68,5,2,1,0,18,8,15,5,2,2,0,0,0,1,0,0,1,0,16,5,2,2,1,0,0,1,0,0 -050,01,053,Alabama,Escambia County,11,14,2022,909,1113,646,796,208,275,42,33,3,2,0,0,10,7,655,803,209,276,50,37,5,4,0,0,899,1101,638,787,206,272,42,33,3,2,0,0,10,7,647,794,207,273,50,37,5,4,0,0,10,12,8,9,2,3,0,0,0,0,0,0,0,0,8,9,2,3,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,11,15,1714,757,957,575,680,158,226,16,37,1,4,0,1,7,9,581,688,160,227,22,46,2,4,0,1,749,954,567,678,158,226,16,37,1,4,0,0,7,9,573,686,160,227,22,46,2,4,0,0,8,3,8,2,0,0,0,0,0,0,0,1,0,0,8,2,0,0,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,11,16,1296,555,741,425,542,112,176,14,15,0,1,0,0,4,7,429,547,112,179,18,20,0,2,0,0,552,736,424,538,110,175,14,15,0,1,0,0,4,7,428,543,110,178,18,20,0,2,0,0,3,5,1,4,2,1,0,0,0,0,0,0,0,0,1,4,2,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,11,17,828,335,493,238,360,82,115,13,14,0,0,0,0,2,4,240,364,82,116,15,18,0,0,0,0,334,488,238,356,81,114,13,14,0,0,0,0,2,4,240,360,81,115,15,18,0,0,0,0,1,5,0,4,1,1,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,11,18,709,242,467,192,354,37,102,11,10,0,1,0,0,2,0,194,354,37,102,13,10,0,1,0,0,238,467,188,354,37,102,11,10,0,1,0,0,2,0,190,354,37,102,13,10,0,1,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,12,0,36569,18361,18208,11226,11530,5961,5532,693,695,51,66,20,8,410,377,11588,11876,6170,5732,871,854,119,110,32,28,17831,17792,10829,11220,5903,5486,669,667,48,57,14,5,368,357,11156,11550,6089,5673,830,817,107,96,25,22,530,416,397,310,58,46,24,28,3,9,6,3,42,20,432,326,81,59,41,37,12,14,7,6 -050,01,053,Alabama,Escambia County,12,1,2214,1066,1148,598,648,379,385,35,43,1,2,1,1,52,69,646,712,417,437,48,59,7,9,3,3,1014,1102,568,614,369,379,30,40,1,1,1,1,45,67,610,677,402,430,41,55,6,7,3,3,52,46,30,34,10,6,5,3,0,1,0,0,7,2,36,35,15,7,7,4,1,2,0,0 -050,01,053,Alabama,Escambia County,12,2,2301,1155,1146,688,688,347,354,45,45,6,3,1,0,68,56,748,740,393,389,62,63,18,13,2,4,1106,1080,653,638,341,348,41,44,6,2,1,0,64,48,710,684,384,378,57,57,17,10,2,1,49,66,35,50,6,6,4,1,0,1,0,0,4,8,38,56,9,11,5,6,1,3,0,3 -050,01,053,Alabama,Escambia County,12,3,2337,1176,1161,703,678,353,392,51,33,6,1,2,0,61,57,757,733,392,425,69,48,19,9,3,3,1112,1122,653,644,349,390,48,31,4,1,1,0,57,56,704,698,385,423,64,45,16,9,2,3,64,39,50,34,4,2,3,2,2,0,1,0,4,1,53,35,7,2,5,3,3,0,1,0 -050,01,053,Alabama,Escambia County,12,4,2152,1061,1091,642,609,338,394,44,49,2,6,4,0,31,33,671,639,354,413,57,62,6,10,4,1,1034,1060,624,584,335,391,40,47,2,6,3,0,30,32,652,613,350,409,53,59,6,10,3,1,27,31,18,25,3,3,4,2,0,0,1,0,1,1,19,26,4,4,4,3,0,0,1,0 -050,01,053,Alabama,Escambia County,12,5,2042,1092,950,554,544,464,326,45,52,2,4,2,1,25,23,577,563,476,341,54,60,6,7,4,2,1058,918,527,519,461,322,43,51,2,4,2,1,23,21,548,536,472,336,52,59,5,6,4,2,34,32,27,25,3,4,2,1,0,0,0,0,2,2,29,27,4,5,2,1,1,1,0,0 -050,01,053,Alabama,Escambia County,12,6,2666,1447,1219,753,702,599,432,59,55,4,8,4,0,28,22,778,722,609,442,75,67,8,9,5,1,1392,1189,713,688,592,425,59,50,3,6,3,0,22,20,732,706,601,433,71,62,6,7,4,1,55,30,40,14,7,7,0,5,1,2,1,0,6,2,46,16,8,9,4,5,2,2,1,0 -050,01,053,Alabama,Escambia County,12,7,2292,1313,979,639,605,583,309,50,44,7,3,1,2,33,16,666,617,596,316,67,52,17,7,2,3,1276,951,617,587,577,307,49,39,7,3,0,0,26,15,639,598,587,313,62,47,15,7,1,1,37,28,22,18,6,2,1,5,0,0,1,2,7,1,27,19,9,3,5,5,2,0,1,2 -050,01,053,Alabama,Escambia County,12,8,2267,1226,1041,659,645,507,341,40,45,4,6,1,0,15,4,674,649,512,343,47,47,6,7,2,0,1192,1023,633,629,504,340,40,44,4,6,0,0,11,4,644,633,507,342,45,46,6,7,1,0,34,18,26,16,3,1,0,1,0,0,1,0,4,0,30,16,5,1,2,1,0,0,1,0 -050,01,053,Alabama,Escambia County,12,9,2198,1200,998,752,628,374,328,47,28,2,3,0,1,25,10,772,637,383,334,62,33,7,4,1,2,1154,969,714,605,374,327,44,24,2,3,0,1,20,9,730,613,381,333,57,28,6,4,0,2,46,29,38,23,0,1,3,4,0,0,0,0,5,1,42,24,2,1,5,5,1,0,1,0 -050,01,053,Alabama,Escambia County,12,10,2411,1301,1110,833,719,408,327,42,43,4,8,0,0,14,13,843,732,414,332,51,50,7,9,0,0,1267,1083,803,698,404,325,42,42,4,6,0,0,14,12,813,710,410,329,51,49,7,7,0,0,34,27,30,21,4,2,0,1,0,2,0,0,0,1,30,22,4,3,0,1,0,2,0,0 -050,01,053,Alabama,Escambia County,12,11,2240,1179,1061,749,683,364,318,50,41,3,7,1,1,12,11,760,693,366,323,60,47,4,8,1,1,1147,1044,723,670,361,317,48,40,3,6,0,1,12,10,734,680,363,321,58,46,4,6,0,1,32,17,26,13,3,1,2,1,0,1,1,0,0,1,26,13,3,2,2,1,0,2,1,0 -050,01,053,Alabama,Escambia County,12,12,2496,1236,1260,834,846,342,345,44,50,3,6,1,0,12,13,843,858,346,348,53,60,4,6,2,1,1211,1242,812,835,340,341,44,48,3,5,1,0,11,13,821,847,343,344,53,58,3,5,2,1,25,18,22,11,2,4,0,2,0,1,0,0,1,0,22,11,3,4,0,2,1,1,0,0 -050,01,053,Alabama,Escambia County,12,13,2268,1067,1201,729,779,285,353,39,50,4,2,2,1,8,16,737,795,289,354,42,62,5,4,2,2,1050,1194,714,773,284,353,39,50,4,1,2,1,7,16,721,789,287,354,42,62,5,3,2,2,17,7,15,6,1,0,0,0,0,1,0,0,1,0,16,6,2,0,0,0,0,1,0,0 -050,01,053,Alabama,Escambia County,12,14,2047,939,1108,657,767,225,287,44,40,2,2,0,0,11,12,667,777,226,290,53,49,4,2,0,2,932,1095,652,758,223,283,44,40,2,2,0,0,11,12,662,768,224,286,53,49,4,2,0,2,7,13,5,9,2,4,0,0,0,0,0,0,0,0,5,9,2,4,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,12,15,1705,740,965,558,691,152,226,22,35,1,2,0,1,7,10,565,700,153,228,28,43,1,3,0,2,733,961,552,689,151,225,22,35,1,2,0,0,7,10,559,698,152,227,28,43,1,3,0,1,7,4,6,2,1,1,0,0,0,0,0,1,0,0,6,2,1,1,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,12,16,1326,551,775,423,563,115,182,9,20,0,2,0,0,4,8,426,570,116,184,12,27,0,2,1,0,548,770,420,559,115,181,9,20,0,2,0,0,4,8,423,566,116,183,12,27,0,2,1,0,3,5,3,4,0,1,0,0,0,0,0,0,0,0,3,4,0,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,12,17,878,354,524,254,378,86,129,13,13,0,0,0,0,1,4,255,382,86,129,14,16,0,0,0,1,351,518,254,373,83,128,13,13,0,0,0,0,1,4,255,377,83,128,14,16,0,0,0,1,3,6,0,5,3,1,0,0,0,0,0,0,0,0,0,5,3,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,12,18,729,258,471,201,357,40,104,14,9,0,1,0,0,3,0,203,357,42,104,17,9,0,1,0,0,254,471,197,357,40,104,14,9,0,1,0,0,3,0,199,357,42,104,17,9,0,1,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,13,0,36281,18204,18077,11105,11408,5927,5504,675,700,47,64,19,8,431,393,11487,11774,6152,5714,865,874,105,112,36,18,17669,17672,10700,11104,5866,5458,655,673,45,55,14,5,389,377,11043,11456,6072,5656,827,842,97,100,29,15,535,405,405,304,61,46,20,27,2,9,5,3,42,16,444,318,80,58,38,32,8,12,7,3 -050,01,053,Alabama,Escambia County,13,1,2218,1088,1130,606,648,390,370,36,40,2,2,1,0,53,70,653,713,431,423,47,52,6,12,4,3,1035,1084,575,611,381,367,30,36,2,2,1,0,46,68,615,675,419,420,39,47,5,10,3,3,53,46,31,37,9,3,6,4,0,0,0,0,7,2,38,38,12,3,8,5,1,2,1,0 -050,01,053,Alabama,Escambia County,13,2,2187,1094,1093,669,639,307,351,39,45,3,2,1,1,75,55,738,690,358,390,60,61,13,9,2,2,1046,1034,633,595,302,342,35,44,3,1,1,1,72,51,699,643,352,378,54,58,13,7,2,2,48,59,36,44,5,9,4,1,0,1,0,0,3,4,39,47,6,12,6,3,0,2,0,0 -050,01,053,Alabama,Escambia County,13,3,2327,1180,1147,676,679,380,379,54,31,5,2,2,0,63,56,738,733,418,415,71,47,12,11,6,2,1116,1102,629,641,372,376,51,29,4,1,1,0,59,55,687,694,409,411,66,45,10,10,5,2,64,45,47,38,8,3,3,2,1,1,1,0,4,1,51,39,9,4,5,2,2,1,1,0 -050,01,053,Alabama,Escambia County,13,4,2100,1049,1051,652,601,322,361,40,48,2,6,2,0,31,35,683,632,343,383,51,63,4,10,2,1,1020,1024,630,580,319,357,38,47,2,6,2,0,29,34,659,610,338,378,49,62,4,10,2,1,29,27,22,21,3,4,2,1,0,0,0,0,2,1,24,22,5,5,2,1,0,0,0,0 -050,01,053,Alabama,Escambia County,13,5,2053,1065,988,534,543,451,356,46,55,1,4,3,1,30,29,560,567,468,374,59,67,5,8,3,1,1034,961,509,521,447,353,46,54,1,4,3,1,28,28,533,544,462,370,59,66,5,8,3,1,31,27,25,22,4,3,0,1,0,0,0,0,2,1,27,23,6,4,0,1,0,0,0,0 -050,01,053,Alabama,Escambia County,13,6,2578,1435,1143,745,658,599,402,53,55,5,7,1,0,32,21,771,678,615,412,71,65,9,9,1,1,1381,1115,702,644,594,397,52,49,4,6,1,0,28,19,724,662,608,405,68,59,8,8,1,1,54,28,43,14,5,5,1,6,1,1,0,0,4,2,47,16,7,7,3,6,1,1,0,0 -050,01,053,Alabama,Escambia County,13,7,2389,1366,1023,663,628,607,328,54,46,5,4,3,2,34,15,693,642,617,336,76,54,12,5,4,2,1322,999,638,615,599,327,53,41,5,3,1,0,26,13,660,627,606,333,70,49,12,4,2,0,44,24,25,13,8,1,1,5,0,1,2,2,8,2,33,15,11,3,6,5,0,1,2,2 -050,01,053,Alabama,Escambia County,13,8,2160,1161,999,624,624,482,313,36,46,4,6,1,0,14,10,637,634,486,316,45,52,5,7,2,0,1128,979,600,606,479,311,36,46,4,6,0,0,9,10,609,616,483,314,41,52,4,7,0,0,33,20,24,18,3,2,0,0,0,0,1,0,5,0,28,18,3,2,4,0,1,0,2,0 -050,01,053,Alabama,Escambia County,13,9,2207,1205,1002,747,610,388,352,45,26,3,4,0,1,22,9,760,617,400,355,57,32,9,5,1,2,1162,981,710,592,388,351,44,24,3,4,0,1,17,9,720,599,396,354,55,30,7,5,1,2,43,21,37,18,0,1,1,2,0,0,0,0,5,0,40,18,4,1,2,2,2,0,0,0 -050,01,053,Alabama,Escambia County,13,10,2367,1288,1079,808,699,408,319,49,41,4,5,1,0,18,15,822,714,415,322,63,49,5,8,2,1,1256,1049,778,676,406,316,49,40,4,4,1,0,18,13,792,689,413,318,63,47,5,7,2,1,32,30,30,23,2,3,0,1,0,1,0,0,0,2,30,25,2,4,0,2,0,1,0,0 -050,01,053,Alabama,Escambia County,13,11,2214,1152,1062,741,679,355,319,38,47,4,5,1,1,13,11,752,690,356,321,49,56,6,5,2,1,1120,1038,716,659,350,318,37,45,4,4,0,1,13,11,727,670,351,320,48,54,6,4,1,1,32,24,25,20,5,1,1,2,0,1,1,0,0,0,25,20,5,1,1,2,0,1,1,0 -050,01,053,Alabama,Escambia County,13,12,2385,1186,1199,789,802,335,331,49,45,3,8,0,0,10,13,798,815,336,333,56,56,6,9,0,0,1160,1181,766,793,333,327,48,43,3,6,0,0,10,12,775,805,334,328,55,53,6,7,0,0,26,18,23,9,2,4,1,2,0,2,0,0,0,1,23,10,2,5,1,3,0,2,0,0 -050,01,053,Alabama,Escambia County,13,13,2302,1090,1212,760,786,281,360,35,50,2,3,3,1,9,12,767,798,283,361,38,61,6,4,5,1,1070,1204,743,779,280,360,35,50,2,2,3,1,7,12,748,791,281,361,38,61,5,3,5,1,20,8,17,7,1,0,0,0,0,1,0,0,2,0,19,7,2,0,0,0,1,1,0,0 -050,01,053,Alabama,Escambia County,13,14,2072,937,1135,649,771,231,302,44,43,3,1,0,0,10,18,658,789,232,307,52,57,5,2,0,0,929,1125,642,765,230,298,44,43,3,1,0,0,10,18,651,783,231,303,52,57,5,2,0,0,8,10,7,6,1,4,0,0,0,0,0,0,0,0,7,6,1,4,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,13,15,1759,775,984,583,714,156,225,27,35,0,2,0,0,9,8,590,719,158,229,33,41,1,3,2,0,766,978,576,709,154,224,27,35,0,2,0,0,9,8,583,714,156,228,33,41,1,3,2,0,9,6,7,5,2,1,0,0,0,0,0,0,0,0,7,5,2,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,13,16,1335,534,801,409,572,115,194,5,22,1,2,0,1,4,10,413,582,115,194,9,32,1,2,0,1,533,796,408,569,115,193,5,22,1,2,0,0,4,10,412,579,115,193,9,32,1,2,0,0,1,5,1,3,0,1,0,0,0,0,0,1,0,0,1,3,0,1,0,0,0,0,0,1 -050,01,053,Alabama,Escambia County,13,17,905,362,543,266,399,79,127,15,12,0,0,0,0,2,5,268,404,80,128,16,16,0,1,0,0,358,538,265,395,76,126,15,12,0,0,0,0,2,5,267,400,77,127,16,16,0,1,0,0,4,5,1,4,3,1,0,0,0,0,0,0,0,0,1,4,3,1,0,0,0,0,0,0 -050,01,053,Alabama,Escambia County,13,18,723,237,486,184,356,41,115,10,13,0,1,0,0,2,1,186,357,41,115,12,13,0,2,0,0,233,484,180,354,41,115,10,13,0,1,0,0,2,1,182,355,41,115,12,13,0,2,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,1,0,104430,50626,53804,41679,43768,7406,8521,317,263,377,361,184,151,663,740,42313,44474,7716,8855,622,619,464,441,198,172,48703,52280,40250,42621,7316,8439,199,176,329,338,15,15,594,691,40818,43280,7608,8757,461,500,405,415,29,35,1923,1524,1429,1147,90,82,118,87,48,23,169,136,69,49,1495,1194,108,98,161,119,59,26,169,137 -050,01,055,Alabama,Etowah County,1,1,6140,3169,2971,2470,2219,520,562,30,17,25,26,20,30,104,117,2571,2334,604,654,47,36,32,32,22,33,2915,2733,2286,2046,511,550,6,3,19,22,2,3,91,109,2375,2153,591,639,16,17,23,28,4,6,254,238,184,173,9,12,24,14,6,4,18,27,13,8,196,181,13,15,31,19,9,4,18,27 -050,01,055,Alabama,Etowah County,1,2,6540,3382,3158,2628,2434,577,556,26,19,28,32,26,9,97,108,2724,2540,650,639,44,36,39,41,27,11,3150,2968,2458,2282,570,544,6,6,25,31,1,1,90,104,2547,2384,641,625,19,21,36,40,2,3,232,190,170,152,7,12,20,13,3,1,25,8,7,4,177,156,9,14,25,15,3,1,25,8 -050,01,055,Alabama,Etowah County,1,3,6905,3555,3350,2771,2602,652,592,15,30,26,21,13,12,78,93,2843,2691,709,654,29,59,38,31,15,13,3370,3196,2634,2490,634,581,9,18,23,20,0,1,70,86,2698,2572,687,643,19,40,35,30,2,2,185,154,137,112,18,11,6,12,3,1,13,11,8,7,145,119,22,11,10,19,3,1,13,11 -050,01,055,Alabama,Etowah County,1,4,7224,3768,3456,2840,2629,803,721,20,17,31,26,10,17,64,46,2899,2673,842,742,43,36,41,32,10,20,3595,3318,2710,2530,790,716,13,10,23,22,1,0,58,40,2763,2568,827,736,32,24,33,28,1,3,173,138,130,99,13,5,7,7,8,4,9,17,6,6,136,105,15,6,11,12,8,4,9,17 -050,01,055,Alabama,Etowah County,1,5,6070,3064,3006,2353,2267,584,641,22,13,44,23,26,20,35,42,2387,2307,599,662,37,27,49,29,27,23,2860,2853,2204,2150,582,639,12,7,33,19,1,2,28,36,2231,2185,596,656,23,19,36,25,2,4,204,153,149,117,2,2,10,6,11,4,25,18,7,6,156,122,3,6,14,8,13,4,25,19 -050,01,055,Alabama,Etowah County,1,6,6022,2965,3057,2349,2406,504,562,22,14,29,24,18,16,43,35,2389,2437,513,578,48,29,41,31,18,17,2744,2915,2185,2304,495,554,6,6,23,20,4,3,31,28,2214,2329,503,568,24,17,31,25,4,4,221,142,164,102,9,8,16,8,6,4,14,13,12,7,175,108,10,10,24,12,10,6,14,13 -050,01,055,Alabama,Etowah County,1,7,6024,2895,3129,2335,2486,451,552,22,18,29,32,22,13,36,28,2369,2513,459,556,46,32,35,41,23,15,2716,3004,2207,2391,445,545,11,8,27,31,1,1,25,28,2231,2418,452,549,26,22,31,40,2,3,179,125,128,95,6,7,11,10,2,1,21,12,11,0,138,95,7,7,20,10,4,1,21,12 -050,01,055,Alabama,Etowah County,1,8,6931,3422,3509,2811,2836,512,575,28,16,38,42,17,11,16,29,2826,2861,515,583,42,39,40,46,17,12,3307,3417,2726,2774,508,567,21,11,36,39,2,0,14,26,2739,2796,510,574,34,32,38,43,2,1,115,92,85,62,4,8,7,5,2,3,15,11,2,3,87,65,5,9,8,7,2,3,15,11 -050,01,055,Alabama,Etowah County,1,9,7025,3507,3518,2917,2832,473,599,34,16,37,31,10,8,36,32,2952,2862,479,604,57,40,46,35,10,9,3403,3431,2839,2773,468,588,28,10,34,31,0,1,34,28,2872,2799,473,592,50,31,43,35,0,2,104,87,78,59,5,11,6,6,3,0,10,7,2,4,80,63,6,12,7,9,3,0,10,7 -050,01,055,Alabama,Etowah County,1,10,7260,3548,3712,3000,3088,454,544,26,12,29,25,9,10,30,33,3030,3120,459,550,47,39,33,30,10,10,3450,3638,2920,3028,452,544,22,10,26,25,1,1,29,30,2949,3057,456,549,43,35,30,29,2,1,98,74,80,60,2,0,4,2,3,0,8,9,1,3,81,63,3,1,4,4,3,1,8,9 -050,01,055,Alabama,Etowah County,1,11,7634,3713,3921,3127,3208,510,628,11,25,23,19,7,0,35,41,3161,3246,513,632,42,59,24,22,8,3,3651,3879,3078,3170,505,624,10,25,22,19,1,0,35,41,3112,3208,508,628,41,59,23,22,2,3,62,42,49,38,5,4,1,0,1,0,6,0,0,0,49,38,5,4,1,0,1,0,6,0 -050,01,055,Alabama,Etowah County,1,12,7257,3509,3748,2970,3106,469,566,26,17,13,22,4,1,27,36,2995,3141,473,572,48,47,15,24,6,1,3468,3729,2937,3090,467,566,23,16,13,22,1,0,27,35,2962,3124,471,571,45,46,15,24,3,0,41,19,33,16,2,0,3,1,0,0,3,1,0,1,33,17,2,1,3,1,0,0,3,1 -050,01,055,Alabama,Etowah County,1,13,6890,3285,3605,2877,3097,352,454,17,13,14,12,2,0,23,29,2899,3124,354,457,38,37,16,16,3,0,3264,3584,2859,3077,351,454,17,12,14,12,0,0,23,29,2881,3104,353,457,38,36,16,16,1,0,21,21,18,20,1,0,0,1,0,0,2,0,0,0,18,20,1,0,0,1,0,0,2,0 -050,01,055,Alabama,Etowah County,1,14,5028,2362,2666,2123,2385,211,230,7,13,4,6,0,2,17,30,2140,2413,211,231,24,41,5,8,1,3,2349,2645,2114,2367,209,230,5,12,4,5,0,1,17,30,2131,2395,209,231,22,40,5,7,1,2,13,21,9,18,2,0,2,1,0,1,0,1,0,0,9,18,2,0,2,1,0,1,0,1 -050,01,055,Alabama,Etowah County,1,15,4069,1758,2311,1603,2033,139,248,7,8,2,11,0,0,7,11,1609,2044,139,248,12,19,5,11,1,0,1750,2304,1598,2026,136,248,7,8,2,11,0,0,7,11,1604,2037,136,248,12,19,5,11,1,0,8,7,5,7,3,0,0,0,0,0,0,0,0,0,5,7,3,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,1,16,3077,1281,1796,1177,1571,90,202,4,8,2,6,0,2,8,7,1185,1578,90,202,12,15,2,6,0,2,1274,1784,1172,1563,89,200,3,7,2,6,0,1,8,7,1180,1570,89,200,11,14,2,6,0,1,7,12,5,8,1,2,1,1,0,0,0,1,0,0,5,8,1,2,1,1,0,0,0,1 -050,01,055,Alabama,Etowah County,1,17,2398,871,1527,802,1353,62,151,0,5,2,2,0,0,5,16,807,1367,63,153,4,21,2,2,0,0,867,1522,798,1348,62,151,0,5,2,2,0,0,5,16,803,1362,63,153,4,21,2,2,0,0,4,5,4,5,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,1,18,1936,572,1364,526,1216,43,138,0,2,1,1,0,0,2,7,527,1223,44,138,2,7,1,4,0,0,570,1360,525,1212,42,138,0,2,1,1,0,0,2,7,526,1219,43,138,2,7,1,4,0,0,2,4,1,4,1,0,0,0,0,0,0,0,0,0,1,4,1,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,2,0,104412,50619,53793,41672,43757,7406,8521,317,263,377,361,184,151,663,740,42306,44463,7716,8855,622,619,464,441,198,172,48697,52271,40244,42612,7316,8439,199,176,329,338,15,15,594,691,40812,43271,7608,8757,461,500,405,415,29,35,1922,1522,1428,1145,90,82,118,87,48,23,169,136,69,49,1494,1192,108,98,161,119,59,26,169,137 -050,01,055,Alabama,Etowah County,2,1,6139,3169,2970,2470,2218,520,562,30,17,25,26,20,30,104,117,2571,2333,604,654,47,36,32,32,22,33,2915,2732,2286,2045,511,550,6,3,19,22,2,3,91,109,2375,2152,591,639,16,17,23,28,4,6,254,238,184,173,9,12,24,14,6,4,18,27,13,8,196,181,13,15,31,19,9,4,18,27 -050,01,055,Alabama,Etowah County,2,2,6540,3382,3158,2628,2434,577,556,26,19,28,32,26,9,97,108,2724,2540,650,639,44,36,39,41,27,11,3150,2968,2458,2282,570,544,6,6,25,31,1,1,90,104,2547,2384,641,625,19,21,36,40,2,3,232,190,170,152,7,12,20,13,3,1,25,8,7,4,177,156,9,14,25,15,3,1,25,8 -050,01,055,Alabama,Etowah County,2,3,6901,3554,3347,2770,2599,652,592,15,30,26,21,13,12,78,93,2842,2688,709,654,29,59,38,31,15,13,3369,3193,2633,2487,634,581,9,18,23,20,0,1,70,86,2697,2569,687,643,19,40,35,30,2,2,185,154,137,112,18,11,6,12,3,1,13,11,8,7,145,119,22,11,10,19,3,1,13,11 -050,01,055,Alabama,Etowah County,2,4,7223,3768,3455,2840,2628,803,721,20,17,31,26,10,17,64,46,2899,2672,842,742,43,36,41,32,10,20,3595,3318,2710,2530,790,716,13,10,23,22,1,0,58,40,2763,2568,827,736,32,24,33,28,1,3,173,137,130,98,13,5,7,7,8,4,9,17,6,6,136,104,15,6,11,12,8,4,9,17 -050,01,055,Alabama,Etowah County,2,5,6071,3064,3007,2353,2268,584,641,22,13,44,23,26,20,35,42,2387,2308,599,662,37,27,49,29,27,23,2860,2854,2204,2151,582,639,12,7,33,19,1,2,28,36,2231,2186,596,656,23,19,36,25,2,4,204,153,149,117,2,2,10,6,11,4,25,18,7,6,156,122,3,6,14,8,13,4,25,19 -050,01,055,Alabama,Etowah County,2,6,6019,2964,3055,2348,2404,504,562,22,14,29,24,18,16,43,35,2388,2435,513,578,48,29,41,31,18,17,2743,2913,2184,2302,495,554,6,6,23,20,4,3,31,28,2213,2327,503,568,24,17,31,25,4,4,221,142,164,102,9,8,16,8,6,4,14,13,12,7,175,108,10,10,24,12,10,6,14,13 -050,01,055,Alabama,Etowah County,2,7,6024,2895,3129,2335,2486,451,552,22,18,29,32,22,13,36,28,2369,2513,459,556,46,32,35,41,23,15,2716,3004,2207,2391,445,545,11,8,27,31,1,1,25,28,2231,2418,452,549,26,22,31,40,2,3,179,125,128,95,6,7,11,10,2,1,21,12,11,0,138,95,7,7,20,10,4,1,21,12 -050,01,055,Alabama,Etowah County,2,8,6930,3421,3509,2810,2836,512,575,28,16,38,42,17,11,16,29,2825,2861,515,583,42,39,40,46,17,12,3306,3417,2725,2774,508,567,21,11,36,39,2,0,14,26,2738,2796,510,574,34,32,38,43,2,1,115,92,85,62,4,8,7,5,2,3,15,11,2,3,87,65,5,9,8,7,2,3,15,11 -050,01,055,Alabama,Etowah County,2,9,7023,3506,3517,2916,2831,473,599,34,16,37,31,10,8,36,32,2951,2861,479,604,57,40,46,35,10,9,3403,3430,2839,2772,468,588,28,10,34,31,0,1,34,28,2872,2798,473,592,50,31,43,35,0,2,103,87,77,59,5,11,6,6,3,0,10,7,2,4,79,63,6,12,7,9,3,0,10,7 -050,01,055,Alabama,Etowah County,2,10,7259,3549,3710,3001,3086,454,544,26,12,29,25,9,10,30,33,3031,3118,459,550,47,39,33,30,10,10,3451,3637,2921,3027,452,544,22,10,26,25,1,1,29,30,2950,3056,456,549,43,35,30,29,2,1,98,73,80,59,2,0,4,2,3,0,8,9,1,3,81,62,3,1,4,4,3,1,8,9 -050,01,055,Alabama,Etowah County,2,11,7630,3710,3920,3124,3207,510,628,11,25,23,19,7,0,35,41,3158,3245,513,632,42,59,24,22,8,3,3648,3878,3075,3169,505,624,10,25,22,19,1,0,35,41,3109,3207,508,628,41,59,23,22,2,3,62,42,49,38,5,4,1,0,1,0,6,0,0,0,49,38,5,4,1,0,1,0,6,0 -050,01,055,Alabama,Etowah County,2,12,7257,3509,3748,2970,3106,469,566,26,17,13,22,4,1,27,36,2995,3141,473,572,48,47,15,24,6,1,3468,3729,2937,3090,467,566,23,16,13,22,1,0,27,35,2962,3124,471,571,45,46,15,24,3,0,41,19,33,16,2,0,3,1,0,0,3,1,0,1,33,17,2,1,3,1,0,0,3,1 -050,01,055,Alabama,Etowah County,2,13,6889,3284,3605,2876,3097,352,454,17,13,14,12,2,0,23,29,2898,3124,354,457,38,37,16,16,3,0,3263,3584,2858,3077,351,454,17,12,14,12,0,0,23,29,2880,3104,353,457,38,36,16,16,1,0,21,21,18,20,1,0,0,1,0,0,2,0,0,0,18,20,1,0,0,1,0,0,2,0 -050,01,055,Alabama,Etowah County,2,14,5027,2362,2665,2123,2384,211,230,7,13,4,6,0,2,17,30,2140,2412,211,231,24,41,5,8,1,3,2349,2644,2114,2366,209,230,5,12,4,5,0,1,17,30,2131,2394,209,231,22,40,5,7,1,2,13,21,9,18,2,0,2,1,0,1,0,1,0,0,9,18,2,0,2,1,0,1,0,1 -050,01,055,Alabama,Etowah County,2,15,4069,1758,2311,1603,2033,139,248,7,8,2,11,0,0,7,11,1609,2044,139,248,12,19,5,11,1,0,1750,2304,1598,2026,136,248,7,8,2,11,0,0,7,11,1604,2037,136,248,12,19,5,11,1,0,8,7,5,7,3,0,0,0,0,0,0,0,0,0,5,7,3,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,2,16,3077,1281,1796,1177,1571,90,202,4,8,2,6,0,2,8,7,1185,1578,90,202,12,15,2,6,0,2,1274,1784,1172,1563,89,200,3,7,2,6,0,1,8,7,1180,1570,89,200,11,14,2,6,0,1,7,12,5,8,1,2,1,1,0,0,0,1,0,0,5,8,1,2,1,1,0,0,0,1 -050,01,055,Alabama,Etowah County,2,17,2398,871,1527,802,1353,62,151,0,5,2,2,0,0,5,16,807,1367,63,153,4,21,2,2,0,0,867,1522,798,1348,62,151,0,5,2,2,0,0,5,16,803,1362,63,153,4,21,2,2,0,0,4,5,4,5,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,2,18,1936,572,1364,526,1216,43,138,0,2,1,1,0,0,2,7,527,1223,44,138,2,7,1,4,0,0,570,1360,525,1212,42,138,0,2,1,1,0,0,2,7,526,1219,43,138,2,7,1,4,0,0,2,4,1,4,1,0,0,0,0,0,0,0,0,0,1,4,1,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,3,0,104440,50647,53793,41676,43746,7434,8531,317,259,373,361,179,148,668,748,42312,44452,7732,8859,645,626,442,443,194,174,48744,52270,40264,42597,7338,8448,199,176,331,341,14,14,598,694,40835,43255,7599,8747,495,522,392,414,28,37,1903,1523,1412,1149,96,83,118,83,42,20,165,134,70,54,1477,1197,133,112,150,104,50,29,166,137 -050,01,055,Alabama,Etowah County,3,1,6104,3156,2948,2458,2210,516,549,30,17,26,25,19,30,107,117,2561,2324,598,634,50,37,37,39,21,33,2910,2709,2281,2036,507,537,7,3,19,22,2,3,94,108,2372,2141,580,618,22,21,28,33,4,6,246,239,177,174,9,12,23,14,7,3,17,27,13,9,189,183,18,16,28,16,9,6,17,27 -050,01,055,Alabama,Etowah County,3,2,6489,3357,3132,2613,2412,569,549,24,18,27,32,27,11,97,110,2709,2518,634,623,45,40,37,48,29,14,3123,2939,2441,2261,561,537,6,5,25,31,1,1,89,104,2530,2362,621,608,24,25,34,45,3,4,234,193,172,151,8,12,18,13,2,1,26,10,8,6,179,156,13,15,21,15,3,3,26,10 -050,01,055,Alabama,Etowah County,3,3,6926,3562,3364,2781,2618,647,594,17,25,27,22,12,12,78,93,2857,2708,695,651,41,55,34,31,14,13,3376,3212,2641,2505,630,584,9,15,25,21,0,1,71,86,2710,2588,675,637,31,41,30,30,2,2,186,152,140,113,17,10,8,10,2,1,12,11,7,7,147,120,20,14,10,14,4,1,12,11 -050,01,055,Alabama,Etowah County,3,4,7144,3731,3413,2807,2582,800,723,20,19,30,26,10,17,64,46,2869,2626,832,749,46,37,37,30,11,18,3563,3274,2680,2483,786,717,14,11,23,23,1,0,59,40,2737,2521,817,740,37,27,29,26,2,1,168,139,127,99,14,6,6,8,7,3,9,17,5,6,132,105,15,9,9,10,8,4,9,17 -050,01,055,Alabama,Etowah County,3,5,6160,3117,3043,2396,2305,594,643,24,12,42,24,25,18,36,41,2427,2343,614,662,41,29,45,33,26,21,2912,2898,2249,2193,591,641,12,7,31,20,1,2,28,35,2272,2226,608,657,25,23,34,27,1,4,205,145,147,112,3,2,12,5,11,4,24,16,8,6,155,117,6,5,16,6,11,6,25,17 -050,01,055,Alabama,Etowah County,3,6,6014,2957,3057,2346,2407,502,562,21,15,31,22,17,13,40,38,2382,2443,515,577,44,31,39,30,19,14,2746,2912,2189,2301,493,553,6,7,26,19,4,2,28,30,2215,2329,500,564,23,20,32,26,6,3,211,145,157,106,9,9,15,8,5,3,13,11,12,8,167,114,15,13,21,11,7,4,13,11 -050,01,055,Alabama,Etowah County,3,7,6050,2903,3147,2334,2497,462,561,22,15,27,32,21,14,37,28,2371,2523,475,568,44,31,30,36,21,17,2726,3028,2208,2407,455,554,10,7,26,31,1,1,26,28,2234,2433,461,561,27,23,29,35,1,4,177,119,126,90,7,7,12,8,1,1,20,13,11,0,137,90,14,7,17,8,1,1,20,13 -050,01,055,Alabama,Etowah County,3,8,6892,3407,3485,2795,2813,510,570,29,18,38,42,17,11,18,31,2812,2840,514,581,42,40,39,44,18,11,3287,3389,2707,2747,505,563,22,12,37,39,1,0,15,28,2722,2771,507,572,33,33,38,41,2,0,120,96,88,66,5,7,7,6,1,3,16,11,3,3,90,69,7,9,9,7,1,3,16,11 -050,01,055,Alabama,Etowah County,3,9,7044,3513,3531,2918,2842,480,599,34,18,35,31,10,9,36,32,2954,2869,485,605,60,44,39,33,11,12,3410,3440,2841,2782,475,587,27,11,33,31,0,1,34,28,2875,2808,479,591,52,34,37,33,1,2,103,91,77,60,5,12,7,7,2,0,10,8,2,4,79,61,6,14,8,10,2,0,10,10 -050,01,055,Alabama,Etowah County,3,10,7240,3539,3701,2989,3074,455,546,27,11,29,25,9,10,30,35,3017,3105,458,553,53,39,31,29,10,12,3442,3630,2912,3016,451,546,23,10,26,25,1,1,29,32,2939,3045,454,550,48,36,28,29,2,3,97,71,77,58,4,0,4,1,3,0,8,9,1,3,78,60,4,3,5,3,3,0,8,9 -050,01,055,Alabama,Etowah County,3,11,7629,3707,3922,3125,3206,510,633,10,24,23,19,7,0,32,40,3152,3242,515,639,38,60,27,20,7,1,3642,3878,3073,3167,505,630,9,23,22,19,1,0,32,39,3100,3202,510,636,37,58,26,20,1,1,65,44,52,39,5,3,1,1,1,0,6,0,0,1,52,40,5,3,1,2,1,0,6,0 -050,01,055,Alabama,Etowah County,3,12,7273,3514,3759,2976,3116,468,566,24,17,14,23,4,1,28,36,3002,3150,471,573,48,43,17,27,4,4,3475,3738,2944,3098,466,565,22,17,14,23,1,0,28,35,2970,3131,469,571,46,43,17,27,1,3,39,21,32,18,2,1,2,0,0,0,3,1,0,1,32,19,2,2,2,0,0,0,3,1 -050,01,055,Alabama,Etowah County,3,13,6947,3313,3634,2889,3115,367,465,18,13,14,13,1,0,24,28,2913,3142,367,468,40,37,15,15,2,0,3293,3615,2871,3096,366,465,18,13,14,13,0,0,24,28,2895,3123,366,468,40,37,15,15,1,0,20,19,18,19,1,0,0,0,0,0,1,0,0,0,18,19,1,0,0,0,0,0,1,0 -050,01,055,Alabama,Etowah County,3,14,5051,2375,2676,2134,2391,214,235,6,13,3,6,0,1,18,30,2151,2421,215,236,23,41,4,6,0,2,2363,2656,2125,2373,212,235,5,12,3,5,0,1,18,30,2142,2403,213,236,22,40,4,5,0,2,12,20,9,18,2,0,1,1,0,1,0,0,0,0,9,18,2,0,1,1,0,1,0,0 -050,01,055,Alabama,Etowah County,3,15,4062,1763,2299,1605,2026,140,241,7,9,3,10,0,0,8,13,1612,2037,142,242,14,20,4,12,0,1,1755,2292,1601,2019,137,241,6,9,3,10,0,0,8,13,1608,2030,139,242,13,20,4,12,0,1,8,7,4,7,3,0,1,0,0,0,0,0,0,0,4,7,3,0,1,0,0,0,0,0 -050,01,055,Alabama,Etowah County,3,16,3078,1286,1792,1180,1560,93,209,4,9,1,6,0,1,8,7,1186,1567,94,211,11,14,2,6,1,1,1279,1780,1175,1551,92,207,3,8,1,6,0,1,8,7,1181,1558,93,209,10,13,2,6,1,1,7,12,5,9,1,2,1,1,0,0,0,0,0,0,5,9,1,2,1,1,0,0,0,0 -050,01,055,Alabama,Etowah County,3,17,2391,874,1517,804,1347,63,148,0,4,2,2,0,0,5,16,809,1363,64,148,3,19,4,3,0,0,871,1512,801,1342,63,148,0,4,2,2,0,0,5,16,806,1358,64,148,3,19,4,3,0,0,3,5,3,5,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,3,18,1946,573,1373,526,1225,44,138,0,2,1,1,0,0,2,7,528,1231,44,139,2,9,1,1,0,0,571,1368,525,1220,43,138,0,2,1,1,0,0,2,7,527,1226,43,139,2,9,1,1,0,0,2,5,1,5,1,0,0,0,0,0,0,0,0,0,1,5,1,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,4,0,104356,50548,53808,41587,43710,7404,8574,310,256,381,369,173,146,693,753,42239,44415,7712,8918,641,629,460,458,198,169,48537,52212,40056,42486,7304,8481,200,180,338,350,15,18,624,697,40647,43138,7580,8798,497,526,407,431,36,39,2011,1596,1531,1224,100,93,110,76,43,19,158,128,69,56,1592,1277,132,120,144,103,53,27,162,130 -050,01,055,Alabama,Etowah County,4,1,6139,3193,2946,2475,2240,533,534,30,19,28,18,17,25,110,110,2578,2345,617,620,47,38,42,30,21,26,2921,2706,2273,2057,523,522,5,3,20,17,2,5,98,102,2367,2154,597,604,18,18,32,28,5,6,272,240,202,183,10,12,25,16,8,1,15,20,12,8,211,191,20,16,29,20,10,2,16,20 -050,01,055,Alabama,Etowah County,4,2,6348,3274,3074,2542,2370,552,532,24,16,28,34,28,14,100,108,2638,2475,622,608,48,42,38,44,29,16,3016,2864,2352,2211,544,516,7,5,24,32,1,1,88,99,2437,2307,607,587,26,28,34,41,1,3,258,210,190,159,8,16,17,11,4,2,27,13,12,9,201,168,15,21,22,14,4,3,28,13 -050,01,055,Alabama,Etowah County,4,3,6958,3553,3405,2780,2660,625,596,20,21,30,27,12,13,86,88,2865,2746,676,652,44,46,40,35,15,15,3350,3248,2619,2538,611,586,12,14,28,26,0,2,80,82,2698,2618,661,638,33,36,36,34,3,4,203,157,161,122,14,10,8,7,2,1,12,11,6,6,167,128,15,14,11,10,4,1,12,11 -050,01,055,Alabama,Etowah County,4,4,6861,3588,3273,2692,2436,773,731,19,17,27,23,10,15,67,51,2758,2486,807,759,46,37,31,27,13,16,3432,3129,2572,2332,759,721,14,10,22,21,2,0,63,45,2634,2376,792,745,38,28,26,25,5,1,156,144,120,104,14,10,5,7,5,2,8,15,4,6,124,110,15,14,8,9,5,2,8,15 -050,01,055,Alabama,Etowah County,4,5,6437,3255,3182,2512,2427,613,654,22,15,39,26,22,17,47,43,2554,2466,633,681,43,35,48,32,24,19,3027,3053,2347,2331,602,651,12,11,27,21,1,2,38,37,2381,2365,619,675,28,29,35,26,2,3,228,129,165,96,11,3,10,4,12,5,21,15,9,6,173,101,14,6,15,6,13,6,22,16 -050,01,055,Alabama,Etowah County,4,6,5949,2902,3047,2300,2375,498,574,20,20,33,21,18,12,33,45,2328,2415,507,592,38,41,40,33,22,13,2701,2875,2150,2241,490,566,8,10,28,19,4,2,21,37,2169,2274,496,582,20,26,30,28,7,3,201,172,150,134,8,8,12,10,5,2,14,10,12,8,159,141,11,10,18,15,10,5,15,10 -050,01,055,Alabama,Etowah County,4,7,6087,2877,3210,2339,2531,444,589,15,11,24,34,17,15,38,30,2375,2560,455,599,39,24,30,39,17,18,2695,3095,2199,2446,436,582,5,5,23,32,1,1,31,29,2228,2474,444,591,24,18,29,37,1,4,182,115,140,85,8,7,10,6,1,2,16,14,7,1,147,86,11,8,15,6,1,2,16,14 -050,01,055,Alabama,Etowah County,4,8,6642,3260,3382,2681,2728,475,549,26,17,46,43,15,13,17,32,2695,2756,480,556,38,40,48,47,16,16,3139,3269,2588,2644,472,541,20,13,45,40,1,1,13,30,2598,2670,474,546,31,35,47,44,2,4,121,113,93,84,3,8,6,4,1,3,14,12,4,2,97,86,6,10,7,5,1,3,14,12 -050,01,055,Alabama,Etowah County,4,9,7091,3524,3567,2922,2886,494,595,29,16,36,32,12,9,31,29,2952,2912,498,600,53,39,40,36,13,10,3415,3473,2838,2822,490,584,22,10,35,32,0,1,30,24,2867,2844,494,587,45,29,39,36,1,1,109,94,84,64,4,11,7,6,1,0,12,8,1,5,85,68,4,13,8,10,1,0,12,9 -050,01,055,Alabama,Etowah County,4,10,7085,3485,3600,2936,2997,451,523,29,11,28,25,7,7,34,37,2970,3033,454,527,55,39,31,29,9,9,3391,3530,2863,2938,445,521,25,10,26,25,0,0,32,36,2895,2973,447,525,50,37,29,29,2,2,94,70,73,59,6,2,4,1,2,0,7,7,2,1,75,60,7,2,5,2,2,0,7,7 -050,01,055,Alabama,Etowah County,4,11,7603,3696,3907,3114,3189,509,641,16,21,22,15,9,3,26,38,3136,3222,512,647,41,52,23,21,10,3,3611,3854,3043,3145,505,639,14,19,21,15,2,1,26,35,3065,3175,508,645,39,48,22,20,3,1,85,53,71,44,4,2,2,2,1,0,7,2,0,3,71,47,4,2,2,4,1,1,7,2 -050,01,055,Alabama,Etowah County,4,12,7283,3513,3770,2972,3120,469,568,21,20,16,26,3,0,32,36,3001,3151,472,575,48,52,21,30,4,2,3469,3742,2937,3095,466,566,19,20,15,26,0,0,32,35,2966,3125,469,573,46,52,20,29,1,2,44,28,35,25,3,2,2,0,1,0,3,0,0,1,35,26,3,2,2,0,1,1,3,0 -050,01,055,Alabama,Etowah County,4,13,7236,3446,3790,2975,3216,409,513,22,11,12,17,3,1,25,32,3000,3246,411,517,44,38,13,22,3,2,3421,3773,2953,3200,408,513,22,11,12,17,1,0,25,32,2978,3230,410,517,44,38,13,22,1,1,25,17,22,16,1,0,0,0,0,0,2,1,0,0,22,16,1,0,0,0,0,0,2,1 -050,01,055,Alabama,Etowah County,4,14,5135,2423,2712,2167,2408,225,257,5,13,4,5,0,1,22,28,2188,2434,226,259,25,38,4,7,2,2,2413,2687,2158,2385,224,257,5,12,4,4,0,1,22,28,2179,2411,225,259,25,37,4,6,2,2,10,25,9,23,1,0,0,1,0,1,0,0,0,0,9,23,1,0,0,1,0,1,0,0 -050,01,055,Alabama,Etowah County,4,15,4083,1785,2298,1630,2041,136,216,6,12,3,10,0,0,10,19,1639,2059,138,219,14,27,4,12,0,1,1774,2290,1623,2033,133,216,5,12,3,10,0,0,10,19,1632,2051,135,219,13,27,4,12,0,1,11,8,7,8,3,0,1,0,0,0,0,0,0,0,7,8,3,0,1,0,0,0,0,0 -050,01,055,Alabama,Etowah County,4,16,3077,1306,1771,1200,1536,92,211,5,9,2,8,0,1,7,6,1206,1540,94,213,11,14,2,9,0,1,1298,1760,1195,1528,90,209,4,8,2,8,0,1,7,6,1201,1532,92,211,10,13,2,9,0,1,8,11,5,8,2,2,1,1,0,0,0,0,0,0,5,8,2,2,1,1,0,0,0,0 -050,01,055,Alabama,Etowah County,4,17,2374,875,1499,809,1332,57,145,1,5,2,3,0,0,6,14,813,1345,60,147,5,18,3,3,0,0,872,1496,806,1329,57,145,1,5,2,3,0,0,6,14,810,1342,60,147,5,18,3,3,0,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,4,18,1968,593,1375,541,1218,49,146,0,2,1,2,0,0,2,7,543,1224,50,147,2,9,2,2,0,0,592,1368,540,1211,49,146,0,2,1,2,0,0,2,7,542,1217,50,147,2,9,2,2,0,0,1,7,1,7,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,5,0,104271,50484,53787,41506,43656,7400,8579,307,254,401,382,168,142,702,774,42171,44385,7720,8938,646,637,483,463,187,167,48450,52152,39955,42402,7301,8485,189,170,361,365,15,19,629,711,40552,43073,7594,8806,490,526,428,441,33,39,2034,1635,1551,1254,99,94,118,84,40,17,153,123,73,63,1619,1312,126,132,156,111,55,22,154,128 -050,01,055,Alabama,Etowah County,5,1,5963,3109,2854,2424,2196,510,498,26,24,20,16,16,16,113,104,2532,2299,592,576,46,40,36,27,18,19,2839,2626,2217,2020,500,489,4,4,17,16,2,2,99,95,2312,2114,574,562,19,18,29,25,4,5,270,228,207,176,10,9,22,20,3,0,14,14,14,9,220,185,18,14,27,22,7,2,14,14 -050,01,055,Alabama,Etowah County,5,2,6289,3258,3031,2553,2315,530,530,28,18,30,32,22,17,95,119,2648,2429,597,616,46,48,41,44,24,21,3001,2807,2361,2142,522,519,7,5,25,29,1,3,85,109,2446,2247,583,598,22,30,35,41,3,6,257,224,192,173,8,11,21,13,5,3,21,14,10,10,202,182,14,18,24,18,6,3,21,15 -050,01,055,Alabama,Etowah County,5,3,6976,3548,3428,2781,2689,614,601,24,12,25,26,16,15,88,85,2867,2771,669,658,48,35,34,34,18,17,3335,3267,2615,2565,601,588,13,5,23,26,0,3,83,80,2696,2642,654,642,35,26,31,34,2,5,213,161,166,124,13,13,11,7,2,0,16,12,5,5,171,129,15,16,13,9,3,0,16,12 -050,01,055,Alabama,Etowah County,5,4,6737,3498,3239,2612,2399,749,721,16,20,34,20,12,16,75,63,2681,2458,788,757,49,43,42,27,14,17,3339,3085,2497,2290,731,711,13,12,29,17,2,1,67,54,2559,2341,769,741,40,31,35,24,4,2,159,154,115,109,18,10,3,8,5,3,10,15,8,9,122,117,19,16,9,12,7,3,10,15 -050,01,055,Alabama,Etowah County,5,5,6677,3374,3303,2599,2506,658,696,20,16,35,26,18,12,44,47,2641,2549,676,722,40,37,40,30,21,15,3159,3172,2436,2400,650,691,11,13,23,23,1,2,38,43,2472,2439,667,714,27,32,27,26,4,4,215,131,163,106,8,5,9,3,12,3,17,10,6,4,169,110,9,8,13,5,13,4,17,11 -050,01,055,Alabama,Etowah County,5,6,5839,2871,2968,2275,2323,487,547,17,16,36,24,17,14,39,44,2311,2366,501,565,38,36,43,30,18,17,2669,2801,2120,2197,481,539,8,6,32,22,3,2,25,35,2143,2232,492,551,22,23,34,28,4,4,202,167,155,126,6,8,9,10,4,2,14,12,14,9,168,134,9,14,16,13,9,2,14,13 -050,01,055,Alabama,Etowah County,5,7,6154,2914,3240,2375,2537,449,598,16,11,25,46,14,15,35,33,2407,2570,458,606,36,31,31,53,17,16,2743,3117,2248,2443,439,591,4,6,23,45,2,1,27,31,2273,2474,446,599,18,25,28,51,5,2,171,123,127,94,10,7,12,5,2,1,12,14,8,2,134,96,12,7,18,6,3,2,12,14 -050,01,055,Alabama,Etowah County,5,8,6430,3107,3323,2548,2659,444,561,28,15,54,41,16,12,17,35,2562,2689,449,571,39,39,58,47,17,14,2972,3221,2444,2589,444,552,18,9,53,38,1,0,12,33,2454,2617,446,560,26,33,57,44,1,2,135,102,104,70,0,9,10,6,1,3,15,12,5,2,108,72,3,11,13,6,1,3,16,12 -050,01,055,Alabama,Etowah County,5,9,7189,3562,3627,2934,2943,518,595,28,15,43,29,15,11,24,34,2955,2973,523,603,47,40,45,35,16,12,3449,3526,2849,2873,513,584,21,10,42,29,0,2,24,28,2870,2897,518,590,40,31,44,35,1,2,113,101,85,70,5,11,7,5,1,0,15,9,0,6,85,76,5,13,7,9,1,0,15,10 -050,01,055,Alabama,Etowah County,5,10,6997,3450,3547,2894,2948,459,513,26,14,30,31,8,6,33,35,2925,2979,465,520,54,41,34,35,8,8,3351,3466,2819,2883,452,508,21,12,29,30,0,0,30,33,2847,2913,457,514,47,38,33,33,0,1,99,81,75,65,7,5,5,2,1,1,8,6,3,2,78,66,8,6,7,3,1,2,8,7 -050,01,055,Alabama,Etowah County,5,11,7508,3632,3876,3049,3170,499,628,24,19,25,20,8,5,27,34,3075,3203,506,631,46,47,27,23,8,6,3543,3818,2978,3123,495,626,19,17,22,20,2,1,27,31,3004,3153,502,628,41,43,24,23,2,2,89,58,71,47,4,2,5,2,3,0,6,4,0,3,71,50,4,3,5,4,3,0,6,4 -050,01,055,Alabama,Etowah County,5,12,7310,3541,3769,2983,3110,487,582,15,21,18,21,3,0,35,35,3015,3141,494,588,47,51,20,23,3,1,3496,3735,2947,3080,484,580,13,20,17,21,0,0,35,34,2979,3110,491,585,45,50,19,23,0,1,45,34,36,30,3,2,2,1,1,0,3,0,0,1,36,31,3,3,2,1,1,0,3,0 -050,01,055,Alabama,Etowah County,5,13,7066,3343,3723,2880,3138,404,520,19,9,11,19,2,1,27,36,2905,3171,407,525,43,44,13,20,2,1,3317,3708,2856,3125,403,520,19,9,11,19,1,0,27,35,2881,3158,406,524,43,43,13,20,1,0,26,15,24,13,1,0,0,0,0,0,1,1,0,1,24,13,1,1,0,1,0,0,1,1 -050,01,055,Alabama,Etowah County,5,14,5607,2659,2948,2365,2612,257,288,7,14,7,6,1,1,22,27,2386,2636,258,292,28,38,8,8,1,2,2646,2922,2354,2588,256,288,7,13,7,5,0,1,22,27,2375,2612,257,292,28,37,8,7,0,2,13,26,11,24,1,0,0,1,0,1,1,0,0,0,11,24,1,0,0,1,0,1,1,0 -050,01,055,Alabama,Etowah County,5,15,4191,1842,2349,1681,2085,141,220,5,14,2,8,0,0,13,22,1694,2106,141,224,18,32,2,9,0,0,1827,2341,1670,2077,138,220,4,14,2,8,0,0,13,22,1683,2098,138,224,17,32,2,9,0,0,15,8,11,8,3,0,1,0,0,0,0,0,0,0,11,8,3,0,1,0,0,0,0,0 -050,01,055,Alabama,Etowah County,5,16,3071,1323,1748,1223,1538,84,187,7,5,3,10,0,1,6,7,1228,1544,85,189,12,10,4,11,0,1,1316,1739,1218,1531,83,185,6,5,3,10,0,1,6,7,1223,1537,84,187,11,10,4,11,0,1,7,9,5,7,1,2,1,0,0,0,0,0,0,0,5,7,1,2,1,0,0,0,0,0 -050,01,055,Alabama,Etowah County,5,17,2328,855,1473,793,1293,55,161,1,8,0,5,0,0,6,6,799,1299,56,161,6,14,2,5,2,0,851,1468,790,1289,54,161,1,7,0,5,0,0,6,6,796,1295,55,161,6,13,2,5,2,0,4,5,3,4,1,0,0,1,0,0,0,0,0,0,3,4,1,0,0,1,0,0,0,0 -050,01,055,Alabama,Etowah County,5,18,1939,598,1341,537,1195,55,133,0,3,3,2,0,0,3,8,540,1202,55,134,3,11,3,2,0,0,597,1333,536,1187,55,133,0,3,3,2,0,0,3,8,539,1194,55,134,3,11,3,2,0,0,1,8,1,8,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,6,0,103891,50305,53586,41233,43454,7452,8550,319,267,417,382,154,141,730,792,41924,44189,7794,8925,657,642,514,483,167,163,48304,51910,39717,42163,7348,8459,190,173,378,366,14,19,657,730,40339,42843,7654,8801,497,521,464,454,24,37,2001,1676,1516,1291,104,91,129,94,39,16,140,122,73,62,1585,1346,140,124,160,121,50,29,143,126 -050,01,055,Alabama,Etowah County,6,1,5895,3089,2806,2397,2175,522,476,25,24,18,16,10,7,117,108,2509,2282,612,554,46,41,34,30,10,8,2839,2578,2197,1993,516,469,4,2,16,15,1,0,105,99,2297,2091,598,544,22,17,29,26,1,0,250,228,200,182,6,7,21,22,2,1,9,7,12,9,212,191,14,10,24,24,5,4,9,8 -050,01,055,Alabama,Etowah County,6,2,6170,3146,3024,2473,2308,498,520,28,21,36,30,17,24,94,121,2565,2424,566,610,46,48,46,44,19,25,2887,2793,2282,2131,484,509,6,9,30,27,2,5,83,112,2363,2238,544,592,21,33,39,39,4,6,259,231,191,177,14,11,22,12,6,3,15,19,11,9,202,186,22,18,25,15,7,5,15,19 -050,01,055,Alabama,Etowah County,6,3,6788,3450,3338,2684,2616,590,581,27,13,25,25,20,14,104,89,2784,2701,657,640,56,36,38,36,20,15,3224,3156,2514,2471,579,570,10,3,23,25,0,3,98,84,2608,2551,642,625,37,25,36,36,0,4,226,182,170,145,11,11,17,10,2,0,20,11,6,5,176,150,15,15,19,11,2,0,20,11 -050,01,055,Alabama,Etowah County,6,4,6634,3494,3140,2616,2317,742,688,16,27,34,19,11,16,75,73,2687,2387,784,728,44,54,45,29,11,17,3330,2986,2499,2207,721,677,12,18,30,17,1,1,67,66,2562,2271,761,714,35,41,40,25,1,2,164,154,117,110,21,11,4,9,4,2,10,15,8,7,125,116,23,14,9,13,5,4,10,15 -050,01,055,Alabama,Etowah County,6,5,6845,3491,3354,2678,2555,699,690,17,22,38,26,17,11,42,50,2719,2602,719,718,34,42,43,31,18,13,3290,3223,2527,2452,691,684,9,16,28,24,1,1,34,46,2561,2495,707,710,22,34,33,28,1,3,201,131,151,103,8,6,8,6,10,2,16,10,8,4,158,107,12,8,12,8,10,3,17,10 -050,01,055,Alabama,Etowah County,6,6,5834,2865,2969,2256,2331,501,547,21,12,34,26,12,14,41,39,2293,2362,516,568,43,28,45,35,14,16,2689,2816,2121,2213,494,541,12,3,29,24,2,3,31,32,2149,2240,505,557,31,16,36,31,4,5,176,153,135,118,7,6,9,9,5,2,10,11,10,7,144,122,11,11,12,12,9,4,10,11 -050,01,055,Alabama,Etowah County,6,7,6087,2886,3201,2332,2495,465,610,14,12,30,37,11,16,34,31,2364,2522,474,624,37,30,35,41,11,18,2722,3064,2206,2391,454,603,5,6,27,36,3,2,27,26,2232,2413,461,614,23,22,31,40,3,4,164,137,126,104,11,7,9,6,3,1,8,14,7,5,132,109,13,10,14,8,4,1,8,14 -050,01,055,Alabama,Etowah County,6,8,6260,3017,3243,2455,2588,441,552,33,15,54,40,16,13,18,35,2470,2618,445,564,42,37,59,47,20,14,2872,3137,2351,2512,441,543,15,11,54,38,0,0,11,33,2360,2540,443,553,20,33,58,45,2,1,145,106,104,76,0,9,18,4,0,2,16,13,7,2,110,78,2,11,22,4,1,2,18,13 -050,01,055,Alabama,Etowah County,6,9,7167,3536,3631,2902,2954,520,590,32,14,43,31,16,9,23,33,2921,2984,526,597,50,38,46,36,16,12,3433,3545,2831,2898,516,581,22,7,41,30,1,1,22,28,2849,2923,522,586,39,27,44,34,1,3,103,86,71,56,4,9,10,7,2,1,15,8,1,5,72,61,4,11,11,11,2,2,15,9 -050,01,055,Alabama,Etowah County,6,10,6929,3421,3508,2866,2873,459,542,23,14,29,36,8,6,36,37,2902,2902,462,549,52,44,32,43,9,9,3320,3414,2788,2803,452,535,19,9,28,35,0,0,33,32,2821,2830,453,541,47,36,31,40,1,1,101,94,78,70,7,7,4,5,1,1,8,6,3,5,81,72,9,8,5,8,1,3,8,8 -050,01,055,Alabama,Etowah County,6,11,7351,3558,3793,2992,3116,476,594,25,19,27,23,7,8,31,33,3022,3146,479,596,51,45,29,27,8,12,3470,3730,2920,3066,472,593,22,17,24,23,1,1,31,30,2950,3093,475,595,48,40,26,27,2,5,88,63,72,50,4,1,3,2,3,0,6,7,0,3,72,53,4,1,3,5,3,0,6,7 -050,01,055,Alabama,Etowah County,6,12,7383,3557,3826,2984,3161,496,599,15,16,21,17,6,0,35,33,3014,3192,501,603,46,45,27,20,7,0,3509,3789,2947,3128,493,595,13,16,20,17,1,0,35,33,2977,3159,498,599,44,45,26,20,2,0,48,37,37,33,3,4,2,0,1,0,5,0,0,0,37,33,3,4,2,0,1,0,5,0 -050,01,055,Alabama,Etowah County,6,13,6937,3268,3669,2797,3041,410,557,22,11,10,24,2,1,27,35,2823,3074,414,560,44,41,12,28,2,1,3236,3652,2769,3026,408,557,21,11,10,24,1,0,27,34,2795,3058,412,559,43,41,12,28,1,0,32,17,28,15,2,0,1,0,0,0,1,1,0,1,28,16,2,1,1,0,0,0,1,1 -050,01,055,Alabama,Etowah County,6,14,5885,2804,3081,2464,2722,297,311,7,14,11,7,1,1,24,26,2487,2748,299,315,27,36,14,7,1,1,2788,3057,2450,2699,296,311,7,14,11,6,0,1,24,26,2473,2725,298,315,27,36,14,6,0,1,16,24,14,23,1,0,0,0,0,1,1,0,0,0,14,23,1,0,0,0,0,1,1,0 -050,01,055,Alabama,Etowah County,6,15,4351,1934,2417,1762,2150,149,218,7,16,2,7,0,0,14,26,1776,2172,150,221,21,38,2,11,0,1,1919,2408,1750,2142,147,218,6,15,2,7,0,0,14,26,1764,2164,148,221,20,37,2,11,0,1,15,9,12,8,2,0,1,1,0,0,0,0,0,0,12,8,2,0,1,1,0,0,0,0 -050,01,055,Alabama,Etowah County,6,16,3120,1330,1790,1233,1589,84,176,5,5,2,11,0,0,6,9,1238,1596,85,178,9,14,3,11,1,0,1323,1780,1228,1581,82,174,5,5,2,11,0,0,6,9,1233,1588,83,176,9,14,3,11,1,0,7,10,5,8,2,2,0,0,0,0,0,0,0,0,5,8,2,2,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,6,17,2284,867,1417,802,1235,56,165,2,7,1,5,0,1,6,4,807,1239,58,165,6,11,2,5,0,1,864,1412,800,1231,55,165,2,6,1,5,0,1,6,4,805,1235,57,165,6,10,2,5,0,1,3,5,2,4,1,0,0,1,0,0,0,0,0,0,2,4,1,0,0,1,0,0,0,0 -050,01,055,Alabama,Etowah County,6,18,1971,592,1379,540,1228,47,134,0,5,2,2,0,0,3,10,543,1238,47,135,3,14,2,2,0,0,589,1370,537,1219,47,134,0,5,2,2,0,0,3,10,540,1229,47,135,3,14,2,2,0,0,3,9,3,9,0,0,0,0,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,7,0,103417,50046,53371,40969,43252,7435,8503,321,273,418,385,150,139,753,819,41676,44040,7789,8887,673,644,503,470,172,163,48013,51680,39440,41950,7321,8414,185,170,378,366,15,19,674,761,40073,42683,7641,8767,500,518,452,444,35,40,2033,1691,1529,1302,114,89,136,103,40,19,135,120,79,58,1603,1357,148,120,173,126,51,26,137,123 -050,01,055,Alabama,Etowah County,7,1,5908,3072,2836,2395,2172,511,515,24,26,20,16,4,1,118,106,2509,2277,603,597,45,44,32,25,5,1,2816,2611,2191,1989,500,504,3,5,16,13,0,0,106,100,2294,2088,582,583,21,21,28,21,1,0,256,225,204,183,11,11,21,21,4,3,4,1,12,6,215,189,21,14,24,23,4,4,4,1 -050,01,055,Alabama,Etowah County,7,2,6124,3113,3011,2444,2311,486,497,33,20,32,29,16,30,102,124,2542,2431,560,586,58,48,41,42,17,30,2843,2782,2253,2138,468,492,5,6,27,25,3,5,87,116,2337,2250,534,577,23,31,35,37,4,5,270,229,191,173,18,5,28,14,5,4,13,25,15,8,205,181,26,9,35,17,6,5,13,25 -050,01,055,Alabama,Etowah County,7,3,6581,3355,3226,2620,2529,574,541,17,24,23,27,22,11,99,94,2710,2623,640,598,42,44,36,39,26,16,3122,3033,2439,2376,564,530,5,7,20,27,0,3,94,90,2524,2466,628,586,28,25,32,38,4,8,233,193,181,153,10,11,12,17,3,0,22,8,5,4,186,157,12,12,14,19,4,1,22,8 -050,01,055,Alabama,Etowah County,7,4,6554,3430,3124,2577,2348,713,639,18,22,28,21,11,15,83,79,2658,2422,756,687,46,48,39,35,14,17,3267,2972,2456,2239,697,628,14,13,26,19,0,1,74,72,2528,2307,738,672,38,36,34,31,3,2,163,152,121,109,16,11,4,9,2,2,11,14,9,7,130,115,18,15,8,12,5,4,11,15 -050,01,055,Alabama,Etowah County,7,5,6647,3396,3251,2560,2465,718,678,20,20,38,21,12,11,48,56,2603,2519,744,706,42,40,42,28,14,16,3211,3122,2422,2368,706,671,10,13,29,19,3,0,41,51,2458,2417,730,696,27,32,33,25,5,4,185,129,138,97,12,7,10,7,9,2,9,11,7,5,145,102,14,10,15,8,9,3,9,12 -050,01,055,Alabama,Etowah County,7,6,5987,2939,3048,2318,2395,513,570,21,8,33,28,14,14,40,33,2352,2427,528,585,41,23,43,32,17,14,2774,2903,2195,2279,504,563,14,4,28,27,1,2,32,28,2222,2307,517,574,32,17,34,31,3,2,165,145,123,116,9,7,7,4,5,1,13,12,8,5,130,120,11,11,9,6,9,1,14,12 -050,01,055,Alabama,Etowah County,7,7,6045,2889,3156,2321,2472,465,591,13,14,36,31,12,14,42,34,2360,2504,479,604,37,33,41,34,14,15,2729,3020,2207,2367,454,585,4,6,31,30,3,4,30,28,2236,2393,462,594,22,23,35,33,4,5,160,136,114,105,11,6,9,8,5,1,9,10,12,6,124,111,17,10,15,10,6,1,10,10 -050,01,055,Alabama,Etowah County,7,8,6103,2953,3150,2394,2492,437,549,29,15,57,40,17,14,19,40,2412,2529,439,562,44,39,59,46,18,14,2792,3045,2275,2416,435,541,11,10,57,40,1,0,13,38,2287,2451,437,553,21,33,58,46,2,0,161,105,119,76,2,8,18,5,0,0,16,14,6,2,125,78,2,9,23,6,1,0,16,14 -050,01,055,Alabama,Etowah County,7,9,7073,3453,3620,2843,2950,498,578,32,16,44,33,16,9,20,34,2863,2980,502,588,47,40,45,37,17,9,3356,3529,2781,2889,495,571,19,8,42,30,1,1,18,30,2799,2915,499,579,32,30,43,34,2,1,97,91,62,61,3,7,13,8,2,3,15,8,2,4,64,65,3,9,15,10,2,3,15,8 -050,01,055,Alabama,Etowah County,7,10,6967,3448,3519,2874,2845,476,586,27,14,27,33,10,8,34,33,2907,2877,480,592,53,36,33,36,10,11,3329,3420,2781,2776,470,576,21,8,26,33,0,0,31,27,2811,2803,472,579,46,27,32,36,0,2,119,99,93,69,6,10,6,6,1,0,10,8,3,6,96,74,8,13,7,9,1,0,10,9 -050,01,055,Alabama,Etowah County,7,11,7194,3502,3692,2952,3050,461,556,28,18,27,24,6,9,28,35,2978,3085,464,561,53,42,29,30,6,9,3417,3627,2883,3001,457,555,24,16,24,23,1,1,28,31,2909,3032,460,559,49,38,26,28,1,1,85,65,69,49,4,1,4,2,3,1,5,8,0,4,69,53,4,2,4,4,3,2,5,8 -050,01,055,Alabama,Etowah County,7,12,7339,3571,3768,2979,3074,511,619,13,20,25,17,7,0,36,38,3013,3109,515,625,42,52,29,18,9,3,3512,3737,2934,3046,506,616,11,20,24,17,1,0,36,38,2968,3081,510,622,40,52,28,18,3,3,59,31,45,28,5,3,2,0,1,0,6,0,0,0,45,28,5,3,2,0,1,0,6,0 -050,01,055,Alabama,Etowah County,7,13,6909,3247,3662,2762,3038,423,546,22,13,10,30,2,1,28,34,2788,3070,424,550,47,42,13,32,3,2,3216,3638,2735,3018,421,545,21,13,10,29,1,0,28,33,2761,3049,422,548,46,42,13,31,2,1,31,24,27,20,2,1,1,0,0,1,1,1,0,1,27,21,2,2,1,0,0,1,1,1 -050,01,055,Alabama,Etowah County,7,14,6141,2895,3246,2551,2835,298,363,9,12,9,10,1,1,27,25,2578,2859,298,364,33,34,11,10,2,4,2874,3218,2532,2808,297,363,9,12,9,9,0,1,27,25,2559,2832,297,364,33,34,11,9,1,4,21,28,19,27,1,0,0,0,0,1,1,0,0,0,19,27,1,0,0,0,0,1,1,0 -050,01,055,Alabama,Etowah County,7,15,4396,1980,2416,1793,2164,161,200,7,16,4,6,0,0,15,30,1806,2192,163,204,21,45,5,6,0,0,1966,2402,1781,2151,160,200,6,15,4,6,0,0,15,30,1794,2179,162,204,20,44,5,6,0,0,14,14,12,13,1,0,1,1,0,0,0,0,0,0,12,13,1,0,1,1,0,0,0,0 -050,01,055,Alabama,Etowah County,7,16,3243,1356,1887,1249,1677,93,185,6,4,2,11,0,0,6,10,1254,1687,95,186,12,13,2,11,0,0,1348,1879,1244,1669,90,185,6,4,2,11,0,0,6,10,1249,1679,92,186,12,13,2,11,0,0,8,8,5,8,3,0,0,0,0,0,0,0,0,0,5,8,3,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,7,17,2200,841,1359,778,1187,55,154,2,5,1,7,0,1,5,5,781,1192,57,155,7,8,1,8,0,1,837,1351,774,1181,55,153,2,4,1,7,0,1,5,5,777,1186,57,154,7,7,1,8,0,1,4,8,4,6,0,1,0,1,0,0,0,0,0,0,4,6,0,1,0,1,0,0,0,0 -050,01,055,Alabama,Etowah County,7,18,2006,606,1400,559,1248,42,136,0,6,2,1,0,0,3,9,562,1257,42,137,3,13,2,1,0,1,604,1391,557,1239,42,136,0,6,2,1,0,0,3,9,560,1248,42,137,3,13,2,1,0,1,2,9,2,9,0,0,0,0,0,0,0,0,0,0,2,9,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,8,0,103033,49810,53223,40693,43000,7450,8611,335,270,421,388,159,142,752,812,41401,43765,7794,8993,688,646,505,489,189,168,47805,51483,39192,41662,7344,8519,195,167,381,363,21,22,672,750,39828,42373,7653,8867,510,511,452,454,44,46,2005,1740,1501,1338,106,92,140,103,40,25,138,120,80,62,1573,1392,141,126,178,135,53,35,145,122 -050,01,055,Alabama,Etowah County,8,1,5802,3050,2752,2369,2106,524,507,28,22,22,16,2,3,105,98,2471,2201,600,582,44,38,32,26,8,5,2812,2537,2186,1936,514,495,4,2,17,11,0,2,91,91,2274,2025,583,567,16,15,26,19,4,3,238,215,183,170,10,12,24,20,5,5,2,1,14,7,197,176,17,15,28,23,6,7,4,2 -050,01,055,Alabama,Etowah County,8,2,6117,3105,3012,2426,2275,498,543,33,26,26,31,15,28,107,109,2531,2380,577,622,54,50,36,44,19,30,2839,2769,2236,2094,483,534,5,7,21,27,1,5,93,102,2328,2193,552,610,20,27,30,38,4,6,266,243,190,181,15,9,28,19,5,4,14,23,14,7,203,187,25,12,34,23,6,6,15,24 -050,01,055,Alabama,Etowah County,8,3,6446,3293,3153,2551,2496,568,493,18,25,29,26,28,11,99,102,2643,2595,631,562,43,52,44,38,32,11,3041,2950,2364,2337,555,484,5,7,25,25,3,1,89,96,2448,2431,614,549,27,31,38,37,4,1,252,203,187,159,13,9,13,18,4,1,25,10,10,6,195,164,17,13,16,21,6,1,28,10 -050,01,055,Alabama,Etowah County,8,4,6508,3390,3118,2567,2361,684,621,16,12,27,24,13,14,83,86,2645,2441,731,675,48,35,37,38,15,18,3231,2959,2445,2237,676,609,10,9,25,23,1,2,74,79,2515,2311,721,658,36,30,31,36,3,6,159,159,122,124,8,12,6,3,2,1,12,12,9,7,130,130,10,17,12,5,6,2,12,12 -050,01,055,Alabama,Etowah County,8,5,6474,3253,3221,2446,2402,686,708,23,19,37,25,11,14,50,53,2491,2450,713,738,44,40,43,31,14,16,3090,3072,2321,2290,673,701,18,12,30,22,3,2,45,45,2361,2330,699,726,36,31,36,27,5,4,163,149,125,112,13,7,5,7,7,3,8,12,5,8,130,120,14,12,8,9,7,4,9,12 -050,01,055,Alabama,Etowah County,8,6,6214,3048,3166,2401,2472,543,602,24,12,31,26,16,15,33,39,2430,2508,552,620,43,30,40,30,16,17,2879,3025,2277,2362,536,595,14,8,25,24,1,2,26,34,2302,2395,543,610,28,23,31,27,1,4,169,141,124,110,7,7,10,4,6,2,15,13,7,5,128,113,9,10,15,7,9,3,15,13 -050,01,055,Alabama,Etowah County,8,7,5906,2854,3052,2293,2402,466,565,15,15,32,24,9,11,39,35,2330,2433,480,577,36,35,38,29,9,14,2698,2910,2172,2288,456,561,7,6,28,23,4,3,31,29,2201,2313,466,570,25,22,33,28,4,6,156,142,121,114,10,4,8,9,4,1,5,8,8,6,129,120,14,7,11,13,5,1,5,8 -050,01,055,Alabama,Etowah County,8,8,6088,2899,3189,2336,2511,433,588,25,11,54,33,20,13,31,33,2364,2543,442,596,45,31,56,37,23,15,2744,3090,2226,2437,428,581,10,6,53,33,4,1,23,32,2247,2468,433,588,26,26,54,37,7,3,155,99,110,74,5,7,15,5,1,0,16,12,8,1,117,75,9,8,19,5,2,0,16,12 -050,01,055,Alabama,Etowah County,8,9,6832,3313,3519,2716,2840,484,567,35,21,45,41,17,11,16,39,2732,2876,488,576,46,47,46,47,17,13,3209,3421,2651,2780,481,559,17,11,45,36,1,0,14,35,2665,2812,484,566,27,35,46,42,1,2,104,98,65,60,3,8,18,10,0,5,16,11,2,4,67,64,4,10,19,12,0,5,16,11 -050,01,055,Alabama,Etowah County,8,10,6961,3476,3485,2891,2793,480,609,28,13,35,31,11,9,31,30,2919,2820,483,615,56,36,37,38,13,11,3362,3393,2803,2730,476,598,21,9,33,31,0,1,29,24,2829,2753,479,600,47,27,35,35,2,3,114,92,88,63,4,11,7,4,2,0,11,8,2,6,90,67,4,15,9,9,2,3,11,8 -050,01,055,Alabama,Etowah County,8,11,7126,3429,3697,2887,3069,451,540,28,13,24,27,6,10,33,38,2918,3107,453,545,58,42,26,30,7,11,3341,3622,2816,3009,446,540,24,12,22,26,1,1,32,34,2846,3043,448,544,53,38,24,29,2,2,88,75,71,60,5,0,4,1,2,1,5,9,1,4,72,64,5,1,5,4,2,1,5,9 -050,01,055,Alabama,Etowah County,8,12,7320,3583,3737,3011,3035,497,625,10,23,25,19,6,0,34,35,3040,3067,502,629,37,53,29,22,9,1,3525,3707,2965,3009,492,622,10,22,23,19,1,0,34,35,2994,3041,497,626,37,52,27,22,4,1,58,30,46,26,5,3,0,1,2,0,5,0,0,0,46,26,5,3,0,1,2,0,5,0 -050,01,055,Alabama,Etowah County,8,13,6899,3273,3626,2766,2984,441,561,22,15,10,29,4,1,30,36,2795,3019,443,563,48,45,13,35,6,2,3243,3599,2742,2962,439,559,21,15,10,28,1,0,30,35,2771,2996,441,561,47,44,13,34,3,1,30,27,24,22,2,2,1,0,0,1,3,1,0,1,24,23,2,2,1,1,0,1,3,1 -050,01,055,Alabama,Etowah County,8,14,6422,3016,3406,2636,2952,325,403,13,11,15,12,1,0,26,28,2661,2974,326,409,36,38,18,14,1,0,2992,3384,2614,2930,324,403,13,11,15,12,0,0,26,28,2639,2952,325,409,36,38,18,14,0,0,24,22,22,22,1,0,0,0,0,0,1,0,0,0,22,22,1,0,0,0,0,0,1,0 -050,01,055,Alabama,Etowah County,8,15,4381,1968,2413,1769,2164,171,200,6,12,3,6,0,1,19,30,1788,2193,172,203,24,36,3,10,0,3,1954,2393,1758,2146,169,200,5,11,3,5,0,1,19,30,1777,2175,170,203,23,35,3,9,0,3,14,20,11,18,2,0,1,1,0,1,0,0,0,0,11,18,2,0,1,1,0,1,0,0 -050,01,055,Alabama,Etowah County,8,16,3355,1408,1947,1286,1727,102,192,8,8,3,9,0,0,9,11,1294,1737,104,194,17,18,3,9,0,0,1399,1941,1280,1721,99,192,8,8,3,9,0,0,9,11,1288,1731,101,194,17,18,3,9,0,0,9,6,6,6,3,0,0,0,0,0,0,0,0,0,6,6,3,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,8,17,2131,835,1296,772,1132,55,145,3,6,1,8,0,1,4,4,776,1136,55,145,7,9,1,9,0,1,831,1285,768,1123,55,144,3,5,1,8,0,1,4,4,772,1127,55,144,7,8,1,9,0,1,4,11,4,9,0,1,0,1,0,0,0,0,0,0,4,9,0,1,0,1,0,0,0,0 -050,01,055,Alabama,Etowah County,8,18,2051,617,1434,570,1279,42,142,0,6,2,1,0,0,3,6,573,1285,42,142,2,11,3,2,0,0,615,1426,568,1271,42,142,0,6,2,1,0,0,3,6,571,1277,42,142,2,11,3,2,0,0,2,8,2,8,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,9,0,102931,49797,53134,40538,42828,7490,8614,361,291,442,404,170,143,796,854,41291,43637,7878,9019,711,671,539,511,198,170,47676,51332,38965,41463,7375,8510,208,174,395,376,24,24,709,785,39637,42209,7722,8879,519,528,484,468,46,47,2121,1802,1573,1365,115,104,153,117,47,28,146,119,87,69,1654,1428,156,140,192,143,55,43,152,123 -050,01,055,Alabama,Etowah County,9,1,5847,3063,2784,2333,2090,537,528,34,31,31,23,8,2,120,110,2449,2197,624,612,52,49,50,32,11,4,2800,2539,2153,1909,520,508,4,7,20,14,1,0,102,101,2252,2007,597,587,16,22,36,22,3,2,263,245,180,181,17,20,30,24,11,9,7,2,18,9,197,190,27,25,36,27,14,10,8,2 -050,01,055,Alabama,Etowah County,9,2,6105,3160,2945,2456,2256,514,511,28,26,29,23,15,24,118,105,2566,2357,603,582,47,47,43,36,20,28,2891,2712,2257,2079,500,501,5,7,24,20,1,5,104,100,2353,2175,580,572,19,25,38,32,6,8,269,233,199,177,14,10,23,19,5,3,14,19,14,5,213,182,23,10,28,22,5,4,14,20 -050,01,055,Alabama,Etowah County,9,3,6286,3184,3102,2499,2419,508,498,24,25,31,31,27,14,95,115,2588,2526,572,575,49,53,42,46,31,17,2923,2888,2302,2257,498,489,6,5,27,29,4,2,86,106,2383,2355,556,561,28,31,38,42,7,5,261,214,197,162,10,9,18,20,4,2,23,12,9,9,205,171,16,14,21,22,4,4,24,12 -050,01,055,Alabama,Etowah County,9,4,6549,3393,3156,2551,2398,693,616,20,15,26,30,14,14,89,83,2636,2478,748,667,48,42,34,40,18,14,3211,3000,2411,2278,684,607,10,8,23,29,1,3,82,75,2490,2351,736,655,35,32,30,36,4,3,182,156,140,120,9,9,10,7,3,1,13,11,7,8,146,127,12,12,13,10,4,4,14,11 -050,01,055,Alabama,Etowah County,9,5,6300,3198,3102,2368,2284,711,706,21,15,33,21,10,14,55,62,2419,2343,744,741,44,37,40,31,10,17,3039,2956,2246,2176,694,696,17,11,28,19,3,1,51,53,2293,2227,725,726,38,31,35,27,3,3,159,146,122,108,17,10,4,4,5,2,7,13,4,9,126,116,19,15,6,6,5,4,7,14 -050,01,055,Alabama,Etowah County,9,6,6469,3220,3249,2529,2530,578,611,29,16,33,32,18,14,33,46,2560,2573,591,631,44,37,40,40,18,16,3035,3110,2398,2425,569,601,18,11,25,29,1,2,24,42,2420,2464,579,620,30,30,29,36,1,4,185,139,131,105,9,10,11,5,8,3,17,12,9,4,140,109,12,11,14,7,11,4,17,12 -050,01,055,Alabama,Etowah County,9,7,5790,2797,2993,2236,2369,456,542,19,18,34,17,12,11,40,36,2273,2403,468,558,42,33,41,25,13,13,2639,2835,2118,2243,447,538,10,6,30,17,4,3,30,28,2146,2270,455,549,27,19,37,22,4,4,158,158,118,126,9,4,9,12,4,0,8,8,10,8,127,133,13,9,15,14,4,3,9,9 -050,01,055,Alabama,Etowah County,9,8,6133,2880,3253,2323,2556,437,587,14,13,52,41,17,18,37,38,2358,2593,449,597,39,35,56,46,21,20,2724,3146,2204,2477,431,580,5,8,51,40,4,4,29,37,2232,2513,440,589,25,30,55,45,7,6,156,107,119,79,6,7,9,5,1,1,13,14,8,1,126,80,9,8,14,5,1,1,14,14 -050,01,055,Alabama,Etowah County,9,9,6545,3183,3362,2595,2701,472,554,40,20,43,39,16,10,17,38,2609,2737,478,563,49,46,47,45,18,11,3068,3262,2521,2635,470,547,19,11,43,34,2,0,13,35,2532,2668,475,554,26,36,46,40,3,1,115,100,74,66,2,7,21,9,0,5,14,10,4,3,77,69,3,9,23,10,1,5,15,10 -050,01,055,Alabama,Etowah County,9,10,7054,3508,3546,2914,2852,480,610,27,16,43,30,14,9,30,29,2943,2877,484,622,52,37,46,32,14,12,3383,3454,2818,2794,477,600,18,8,41,30,0,1,29,21,2846,2813,481,606,42,24,44,31,0,3,125,92,96,58,3,10,9,8,2,0,14,8,1,8,97,64,3,16,10,13,2,1,14,9 -050,01,055,Alabama,Etowah County,9,11,6908,3339,3569,2807,2949,441,532,28,14,23,30,7,7,33,37,2838,2984,444,537,56,43,26,33,8,9,3251,3492,2742,2883,434,530,22,14,22,29,0,0,31,36,2771,2917,437,535,48,42,25,32,1,2,88,77,65,66,7,2,6,0,1,1,7,7,2,1,67,67,7,2,8,1,1,1,7,7 -050,01,055,Alabama,Etowah County,9,12,7328,3580,3748,3026,3049,476,625,17,21,27,16,7,3,27,34,3053,3082,478,629,38,48,30,21,8,3,3509,3706,2968,3016,472,623,16,19,25,16,2,1,26,31,2994,3047,474,625,36,44,28,20,3,1,71,42,58,33,4,2,1,2,2,0,5,2,1,3,59,35,4,4,2,4,2,1,5,2 -050,01,055,Alabama,Etowah County,9,13,6873,3241,3632,2732,2998,432,551,23,17,15,32,2,0,37,34,2766,3028,435,556,56,44,18,37,3,1,3205,3602,2703,2973,429,548,22,17,14,31,0,0,37,33,2737,3002,432,552,55,44,17,36,1,1,36,30,29,25,3,3,1,0,1,1,2,0,0,1,29,26,3,4,1,0,1,1,2,0 -050,01,055,Alabama,Etowah County,9,14,6665,3104,3561,2679,3055,365,447,19,11,12,16,3,1,26,31,2705,3085,366,449,41,39,15,18,4,1,3082,3542,2660,3037,364,447,19,11,12,16,1,0,26,31,2686,3067,365,449,41,39,15,18,2,0,22,19,19,18,1,0,0,0,0,0,2,1,0,0,19,18,1,0,0,0,0,0,2,1 -050,01,055,Alabama,Etowah County,9,15,4493,2039,2454,1821,2185,190,226,5,10,3,4,0,1,20,28,1841,2212,192,227,23,35,4,6,0,2,2030,2433,1813,2165,189,226,5,9,3,4,0,1,20,28,1833,2192,191,227,23,34,4,6,0,2,9,21,8,20,1,0,0,1,0,0,0,0,0,0,8,20,1,0,0,1,0,0,0,0 -050,01,055,Alabama,Etowah County,9,16,3347,1413,1934,1285,1725,105,174,8,10,3,7,0,0,12,18,1296,1740,107,177,20,24,3,10,0,1,1399,1927,1274,1718,103,174,7,10,3,7,0,0,12,18,1285,1733,105,177,19,24,3,10,0,1,14,7,11,7,2,0,1,0,0,0,0,0,0,0,11,7,2,0,1,0,0,0,0,0 -050,01,055,Alabama,Etowah County,9,17,2180,874,1306,814,1125,50,159,4,6,2,10,0,1,4,5,818,1130,50,159,7,11,2,10,1,1,868,1300,809,1121,49,158,4,5,2,10,0,1,4,5,813,1126,49,158,7,10,2,10,1,1,6,6,5,4,1,1,0,1,0,0,0,0,0,0,5,4,1,1,0,1,0,0,0,0 -050,01,055,Alabama,Etowah County,9,18,2059,621,1438,570,1287,45,137,1,7,2,2,0,0,3,5,573,1292,45,137,4,11,2,3,0,0,619,1428,568,1277,45,137,1,7,2,2,0,0,3,5,571,1282,45,137,4,11,2,3,0,0,2,10,2,10,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,10,0,103076,49875,53201,40538,42793,7550,8649,346,291,462,438,178,145,801,885,41293,43626,7948,9087,706,679,552,551,196,171,47722,51320,38965,41383,7418,8539,197,173,398,393,24,22,720,810,39648,42149,7771,8935,524,533,476,494,39,43,2153,1881,1573,1410,132,110,149,118,64,45,154,123,81,75,1645,1477,177,152,182,146,76,57,157,128 -050,01,055,Alabama,Etowah County,10,1,5924,3076,2848,2288,2083,555,570,27,26,52,44,17,6,137,119,2421,2198,656,659,53,48,69,55,19,8,2788,2572,2125,1897,528,548,1,4,20,18,1,0,113,105,2236,1998,614,628,18,21,35,28,3,2,288,276,163,186,27,22,26,22,32,26,16,6,24,14,185,200,42,31,35,27,34,27,16,6 -050,01,055,Alabama,Etowah County,10,2,5973,3102,2871,2395,2233,530,481,26,22,24,19,15,18,112,98,2504,2328,614,553,49,40,34,28,15,20,2853,2634,2208,2047,514,469,4,6,21,17,2,2,104,93,2309,2137,592,537,25,23,31,26,2,4,249,237,187,186,16,12,22,16,3,2,13,16,8,5,195,191,22,16,24,17,3,2,13,16 -050,01,055,Alabama,Etowah County,10,3,6308,3217,3091,2571,2388,482,504,27,24,30,31,21,16,86,128,2652,2509,538,592,51,58,43,47,21,21,2957,2875,2369,2222,474,498,5,3,25,28,3,3,81,121,2445,2337,528,582,27,32,37,44,3,8,260,216,202,166,8,6,22,21,5,3,18,13,5,7,207,172,10,10,24,26,6,3,18,13 -050,01,055,Alabama,Etowah County,10,4,6446,3322,3124,2512,2378,656,604,21,12,26,31,18,15,89,84,2593,2459,711,658,51,37,38,43,21,18,3122,2957,2360,2250,648,593,8,4,23,31,1,3,82,76,2437,2324,700,644,33,27,32,40,4,5,200,167,152,128,8,11,13,8,3,0,17,12,7,8,156,135,11,14,18,10,6,3,17,13 -050,01,055,Alabama,Etowah County,10,5,6230,3170,3060,2328,2276,708,667,20,17,38,20,11,16,65,64,2389,2338,746,705,44,40,45,29,13,16,3003,2914,2205,2170,688,659,17,12,33,17,2,1,58,55,2260,2223,722,692,38,31,39,26,4,1,167,146,123,106,20,8,3,5,5,3,9,15,7,9,129,115,24,13,6,9,6,3,9,15 -050,01,055,Alabama,Etowah County,10,6,6633,3283,3350,2574,2562,607,665,21,16,34,39,15,9,32,59,2604,2617,621,693,35,41,40,48,15,11,3107,3202,2443,2441,597,656,15,12,26,37,1,2,25,54,2466,2492,608,680,26,36,31,46,1,3,176,148,131,121,10,9,6,4,8,2,14,7,7,5,138,125,13,13,9,5,9,2,14,8 -050,01,055,Alabama,Etowah County,10,7,5756,2811,2945,2259,2323,456,534,21,15,26,23,10,13,39,37,2298,2352,469,552,44,31,29,32,10,15,2656,2789,2137,2204,449,525,12,6,25,22,4,3,29,29,2166,2227,457,538,30,20,28,29,4,4,155,156,122,119,7,9,9,9,1,1,6,10,10,8,132,125,12,14,14,11,1,3,6,11 -050,01,055,Alabama,Etowah County,10,8,6122,2901,3221,2348,2533,443,577,11,18,54,35,16,16,29,42,2375,2574,451,588,31,43,56,42,19,16,2757,3119,2238,2462,433,571,4,10,52,34,5,3,25,39,2261,2500,438,580,22,35,54,40,8,3,144,102,110,71,10,6,7,8,2,1,11,13,4,3,114,74,13,8,9,8,2,2,11,13 -050,01,055,Alabama,Etowah County,10,9,6423,3079,3344,2507,2687,453,551,38,19,43,37,17,13,21,37,2526,2721,459,558,49,44,48,44,19,16,2962,3238,2432,2618,453,543,17,10,43,32,1,1,16,34,2448,2650,457,549,27,34,45,38,1,3,117,106,75,69,0,8,21,9,0,5,16,12,5,3,78,71,2,9,22,10,3,6,18,13 -050,01,055,Alabama,Etowah County,10,10,7153,3537,3616,2916,2902,503,625,29,19,49,31,17,8,23,31,2939,2932,503,630,47,40,54,39,18,10,3405,3522,2817,2840,497,616,20,9,47,31,1,1,23,25,2840,2865,497,619,38,26,52,37,2,2,132,94,99,62,6,9,9,10,2,0,16,7,0,6,99,67,6,11,9,14,2,2,16,8 -050,01,055,Alabama,Etowah County,10,11,6785,3312,3473,2768,2876,451,502,26,18,22,34,8,7,37,36,2802,2906,456,508,57,45,25,42,9,8,3217,3383,2698,2803,444,498,19,16,22,33,0,0,34,33,2730,2831,447,503,49,42,25,39,0,1,95,90,70,73,7,4,7,2,0,1,8,7,3,3,72,75,9,5,8,3,0,3,9,7 -050,01,055,Alabama,Etowah County,10,12,7212,3465,3747,2930,3042,459,628,17,21,28,22,7,5,24,29,2952,3068,463,634,37,43,30,25,7,6,3398,3701,2877,3007,455,626,15,19,26,22,2,1,23,26,2898,3030,459,631,35,39,27,25,2,2,67,46,53,35,4,2,2,2,2,0,5,4,1,3,54,38,4,3,2,4,3,0,5,4 -050,01,055,Alabama,Etowah County,10,13,6920,3289,3631,2761,2997,450,561,21,17,18,24,3,0,36,32,2793,3026,454,567,53,43,20,26,5,1,3250,3595,2730,2966,447,558,20,17,17,23,0,0,36,31,2762,2994,451,563,52,43,19,25,2,1,39,36,31,31,3,3,1,0,1,1,3,0,0,1,31,32,3,4,1,0,1,1,3,0 -050,01,055,Alabama,Etowah County,10,14,6506,3006,3500,2580,2965,367,467,22,10,5,23,2,1,30,34,2607,2997,370,471,49,40,7,23,3,3,2979,3483,2555,2949,366,467,22,10,5,23,1,0,30,34,2582,2981,369,471,49,40,7,23,2,2,27,17,25,16,1,0,0,0,0,0,1,1,0,0,25,16,1,0,0,0,0,0,1,1 -050,01,055,Alabama,Etowah County,10,15,4936,2272,2664,2031,2374,209,246,5,11,6,7,1,1,20,25,2050,2398,212,248,22,33,6,9,2,1,2259,2642,2020,2353,208,246,5,10,6,7,0,1,20,25,2039,2377,211,248,22,32,6,9,1,1,13,22,11,21,1,0,0,1,0,0,1,0,0,0,11,21,1,0,0,1,0,0,1,0 -050,01,055,Alabama,Etowah County,10,16,3480,1489,1991,1344,1775,123,178,7,12,2,5,0,0,13,21,1355,1795,125,180,20,31,2,6,0,0,1474,1986,1332,1770,121,178,6,12,2,5,0,0,13,21,1343,1790,123,180,19,31,2,6,0,0,15,5,12,5,2,0,1,0,0,0,0,0,0,0,12,5,2,0,1,0,0,0,0,0 -050,01,055,Alabama,Etowah County,10,17,2204,904,1300,847,1142,45,136,6,6,3,10,0,1,3,5,849,1147,47,137,9,11,3,10,0,1,897,1295,842,1138,43,135,6,6,3,10,0,1,3,5,844,1143,45,136,9,11,3,10,0,1,7,5,5,4,2,1,0,0,0,0,0,0,0,0,5,4,2,1,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,10,18,2065,640,1425,579,1257,53,153,1,8,2,3,0,0,5,4,584,1261,53,154,5,11,3,3,0,0,638,1413,577,1246,53,153,1,7,2,3,0,0,5,4,582,1250,53,154,5,10,3,3,0,0,2,12,2,11,0,0,0,1,0,0,0,0,0,0,2,11,0,0,0,1,0,0,0,0 -050,01,055,Alabama,Etowah County,11,0,102766,49714,53052,40334,42613,7546,8646,358,301,458,444,179,143,839,905,41132,43457,7959,9092,722,693,555,559,198,170,47451,51094,38663,41132,7418,8535,200,177,395,398,26,20,749,832,39378,41909,7786,8949,525,532,481,501,42,41,2263,1958,1671,1481,128,111,158,124,63,46,153,123,90,73,1754,1548,173,143,197,161,74,58,156,129 -050,01,055,Alabama,Etowah County,11,1,5950,3058,2892,2279,2108,540,574,28,29,49,50,16,6,146,125,2419,2229,648,666,55,47,67,64,18,12,2752,2608,2100,1921,513,546,1,3,17,24,1,0,120,114,2217,2032,605,633,18,18,32,35,3,4,306,284,179,187,27,28,27,26,32,26,15,6,26,11,202,197,43,33,37,29,35,29,15,8 -050,01,055,Alabama,Etowah County,11,2,5953,3122,2831,2406,2192,546,484,24,22,17,19,9,11,120,103,2524,2290,633,559,46,44,29,30,12,12,2884,2594,2219,1995,534,476,4,6,15,18,0,2,112,97,2329,2087,616,549,23,25,27,28,3,3,238,237,187,197,12,8,20,16,2,1,9,9,8,6,195,203,17,10,23,19,2,2,9,9 -050,01,055,Alabama,Etowah County,11,3,6144,3096,3048,2469,2361,471,491,30,23,34,31,17,18,75,124,2542,2478,521,576,49,47,40,51,19,21,2818,2818,2253,2187,459,484,6,5,28,26,3,0,69,116,2321,2296,506,566,22,27,34,43,4,3,278,230,216,174,12,7,24,18,6,5,14,18,6,8,221,182,15,10,27,20,6,8,15,18 -050,01,055,Alabama,Etowah County,11,4,6344,3252,3092,2455,2355,628,590,23,16,24,29,26,15,96,87,2547,2439,684,645,54,45,36,37,28,17,3030,2909,2290,2210,622,584,6,4,21,29,3,4,88,78,2374,2286,677,633,32,27,31,36,5,5,222,183,165,145,6,6,17,12,3,0,23,11,8,9,173,153,7,12,22,18,5,1,23,12 -050,01,055,Alabama,Etowah County,11,5,6129,3155,2974,2311,2215,695,639,16,18,39,20,12,16,82,66,2391,2276,736,677,47,37,52,31,12,19,2975,2822,2176,2105,679,629,12,11,35,17,2,1,71,59,2245,2159,716,663,39,29,45,27,2,3,180,152,135,110,16,10,4,7,4,3,10,15,11,7,146,117,20,14,8,8,7,4,10,16 -050,01,055,Alabama,Etowah County,11,6,6736,3349,3387,2614,2594,618,668,24,18,35,34,13,10,45,63,2654,2649,639,698,41,45,46,46,14,12,3176,3236,2483,2474,612,660,17,12,26,32,1,1,37,57,2515,2525,629,688,31,35,36,42,2,3,173,151,131,120,6,8,7,6,9,2,12,9,8,6,139,124,10,10,10,10,10,4,12,9 -050,01,055,Alabama,Etowah County,11,7,5722,2797,2925,2229,2292,475,540,23,13,22,27,12,12,36,41,2261,2331,489,556,45,32,25,36,13,13,2638,2772,2109,2170,462,532,14,5,22,26,3,3,28,36,2134,2204,472,545,32,21,25,35,3,4,159,153,120,122,13,8,9,8,0,1,9,9,8,5,127,127,17,11,13,11,0,1,10,9 -050,01,055,Alabama,Etowah County,11,8,6152,2933,3219,2359,2544,454,578,14,17,57,27,15,14,34,39,2391,2579,462,591,35,41,64,31,18,17,2788,3093,2248,2452,443,572,7,8,55,26,7,2,28,33,2275,2481,447,582,25,29,62,30,9,4,145,126,111,92,11,6,7,9,2,1,8,12,6,6,116,98,15,9,10,12,2,1,9,13 -050,01,055,Alabama,Etowah County,11,9,6182,2965,3217,2396,2581,451,533,36,16,43,36,18,16,21,35,2414,2613,457,544,50,40,48,39,18,16,2834,3117,2308,2515,451,524,14,9,43,32,1,3,17,34,2323,2546,455,534,26,33,47,35,1,3,131,100,88,66,0,9,22,7,0,4,17,13,4,1,91,67,2,10,24,7,1,4,17,13 -050,01,055,Alabama,Etowah County,11,10,7174,3521,3653,2920,2952,490,605,31,18,44,37,18,7,18,34,2937,2980,492,614,46,42,44,43,20,9,3391,3572,2825,2900,484,597,21,10,42,36,2,1,17,28,2841,2924,486,604,35,29,42,41,4,2,130,81,95,52,6,8,10,8,2,1,16,6,1,6,96,56,6,10,11,13,2,2,16,7 -050,01,055,Alabama,Etowah County,11,11,6709,3273,3436,2747,2801,441,539,23,19,22,36,8,6,32,35,2778,2832,448,545,48,48,22,40,10,8,3170,3335,2668,2721,434,532,17,16,22,35,0,0,29,31,2696,2748,439,538,41,41,22,39,2,2,103,101,79,80,7,7,6,3,0,1,8,6,3,4,82,84,9,7,7,7,0,1,8,6 -050,01,055,Alabama,Etowah County,11,12,7019,3381,3638,2857,2970,439,579,21,26,31,25,6,9,27,29,2883,2998,442,583,44,49,32,27,7,10,3303,3582,2793,2928,435,578,18,24,29,25,1,1,27,26,2819,2953,438,581,41,45,30,27,2,2,78,56,64,42,4,1,3,2,2,0,5,8,0,3,64,45,4,2,3,4,2,0,5,8 -050,01,055,Alabama,Etowah County,11,13,7030,3327,3703,2780,3057,466,584,18,16,21,17,6,0,36,29,2813,3085,470,587,49,41,25,19,6,0,3277,3667,2740,3025,463,580,18,16,20,17,1,0,35,29,2772,3053,467,583,49,41,23,19,1,0,50,36,40,32,3,4,0,0,1,0,5,0,1,0,41,32,3,4,0,0,2,0,5,0 -050,01,055,Alabama,Etowah County,11,14,6415,2970,3445,2538,2864,373,505,25,9,4,30,2,1,28,36,2563,2899,376,507,52,40,5,34,2,1,2941,3423,2513,2845,371,505,24,9,4,29,1,0,28,35,2538,2879,374,507,51,39,5,33,1,0,29,22,25,19,2,0,1,0,0,1,1,1,0,1,25,20,2,0,1,1,0,1,1,1 -050,01,055,Alabama,Etowah County,11,15,5217,2413,2804,2135,2491,239,269,8,13,9,7,1,1,21,23,2154,2512,242,271,27,34,11,9,1,1,2396,2782,2120,2469,238,269,8,13,9,7,0,1,21,23,2139,2490,241,271,27,34,11,9,0,1,17,22,15,22,1,0,0,0,0,0,1,0,0,0,15,22,1,0,0,0,0,0,1,0 -050,01,055,Alabama,Etowah County,11,16,3590,1524,2066,1379,1851,123,173,7,13,2,5,0,0,13,24,1392,1872,123,176,19,35,3,6,0,1,1510,2060,1367,1846,122,173,6,12,2,5,0,0,13,24,1380,1867,122,176,18,34,3,6,0,1,14,6,12,5,1,0,1,1,0,0,0,0,0,0,12,5,1,0,1,1,0,0,0,0 -050,01,055,Alabama,Etowah County,11,17,2277,946,1331,881,1177,54,128,5,6,2,11,0,0,4,9,885,1185,54,129,9,14,2,13,0,0,939,1326,875,1173,53,127,5,6,2,11,0,0,4,9,879,1181,53,128,9,14,2,13,0,0,7,5,6,4,1,1,0,0,0,0,0,0,0,0,6,4,1,1,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,11,18,2023,632,1391,579,1208,43,167,2,9,3,3,0,1,5,3,584,1210,43,168,6,12,4,3,0,1,629,1378,576,1196,43,167,2,8,3,3,0,1,5,3,581,1198,43,168,6,11,4,3,0,1,3,13,3,12,0,0,0,1,0,0,0,0,0,0,3,12,0,0,0,1,0,0,0,0 -050,01,055,Alabama,Etowah County,12,0,102460,49577,52883,40136,42443,7555,8619,355,321,456,436,179,147,896,917,40985,43308,8014,9088,722,700,576,544,201,181,47282,50850,38435,40887,7427,8507,196,184,400,414,24,20,800,838,39197,41683,7836,8932,522,526,506,513,40,49,2295,2033,1701,1556,128,112,159,137,56,22,155,127,96,79,1788,1625,178,156,200,174,70,31,161,132 -050,01,055,Alabama,Etowah County,12,1,5966,3086,2880,2277,2116,548,554,32,38,47,29,20,12,162,131,2435,2241,669,658,62,61,64,39,25,15,2760,2590,2083,1914,515,524,2,7,19,25,0,3,141,117,2221,2027,623,619,24,24,35,34,4,6,326,290,194,202,33,30,30,31,28,4,20,9,21,14,214,214,46,39,38,37,29,5,21,9 -050,01,055,Alabama,Etowah County,12,2,5933,3103,2830,2385,2172,532,508,23,22,19,22,7,4,137,102,2516,2269,635,581,48,41,39,38,8,7,2850,2596,2190,1972,521,499,3,5,15,22,1,2,120,96,2305,2063,611,568,23,22,33,37,2,4,253,234,195,200,11,9,20,17,4,0,6,2,17,6,211,206,24,13,25,19,6,1,6,3 -050,01,055,Alabama,Etowah County,12,3,6097,3102,2995,2470,2327,469,475,31,18,27,30,18,24,87,121,2554,2443,527,557,50,43,41,44,19,29,2831,2766,2259,2152,459,472,6,3,22,25,4,1,81,113,2337,2260,515,550,23,25,35,39,4,5,271,229,211,175,10,3,25,15,5,5,14,23,6,8,217,183,12,7,27,18,6,5,15,24 -050,01,055,Alabama,Etowah County,12,4,6154,3165,2989,2394,2249,614,586,18,25,27,29,26,9,86,91,2474,2335,666,645,45,50,38,39,28,12,2935,2794,2216,2096,609,578,4,7,24,29,2,1,80,83,2291,2176,658,632,28,28,35,38,3,3,230,195,178,153,5,8,14,18,3,0,24,8,6,8,183,159,8,13,17,22,3,1,25,9 -050,01,055,Alabama,Etowah County,12,5,6129,3140,2989,2280,2270,706,593,19,16,30,20,15,16,90,74,2365,2339,753,637,49,39,45,29,18,19,2967,2830,2156,2152,691,586,13,10,28,17,2,1,77,64,2230,2211,733,625,37,29,40,25,4,4,173,159,124,118,15,7,6,6,2,3,13,15,13,10,135,128,20,12,12,10,5,4,14,15 -050,01,055,Alabama,Etowah County,12,6,6701,3336,3365,2598,2593,615,654,26,17,41,27,6,11,50,63,2645,2649,637,686,47,41,51,39,8,13,3156,3205,2458,2468,607,646,16,10,33,25,0,0,42,56,2498,2519,625,673,34,32,41,36,1,1,180,160,140,125,8,8,10,7,8,2,6,11,8,7,147,130,12,13,13,9,10,3,7,12 -050,01,055,Alabama,Etowah County,12,7,5797,2788,3009,2208,2354,490,556,12,15,25,33,13,14,40,37,2245,2389,505,572,34,30,32,40,14,16,2636,2849,2092,2227,477,548,9,7,25,32,3,2,30,33,2120,2258,487,562,25,20,31,39,4,4,152,160,116,127,13,8,3,8,0,1,10,12,10,4,125,131,18,10,9,10,1,1,10,12 -050,01,055,Alabama,Etowah County,12,8,6111,2955,3156,2382,2479,460,583,18,20,53,23,10,13,32,38,2411,2513,470,598,39,41,55,29,12,17,2817,3022,2271,2379,453,576,11,9,52,23,4,4,26,31,2295,2407,461,586,28,28,54,28,5,7,138,134,111,100,7,7,7,11,1,0,6,9,6,7,116,106,9,12,11,13,1,1,7,10 -050,01,055,Alabama,Etowah County,12,9,6014,2877,3137,2339,2494,426,530,28,18,44,40,20,16,20,39,2359,2531,432,541,38,42,48,47,20,18,2742,3030,2243,2419,424,521,10,10,44,40,4,2,17,38,2260,2455,429,532,19,33,47,47,4,4,135,107,96,75,2,9,18,8,0,0,16,14,3,1,99,76,3,9,19,9,1,0,16,14 -050,01,055,Alabama,Etowah County,12,10,7031,3406,3625,2814,2942,480,583,31,20,43,39,18,7,20,34,2831,2972,484,592,46,44,47,42,19,9,3294,3538,2739,2884,477,578,18,12,41,34,1,1,18,29,2755,2911,480,586,31,31,45,36,2,3,112,87,75,58,3,5,13,8,2,5,17,6,2,5,76,61,4,6,15,13,2,6,17,6 -050,01,055,Alabama,Etowah County,12,11,6757,3315,3442,2762,2786,458,568,27,17,24,31,10,8,34,32,2795,2817,463,576,52,42,29,32,11,8,3202,3334,2675,2706,452,557,20,13,24,31,0,0,31,27,2705,2733,456,562,44,35,27,31,1,0,113,108,87,80,6,11,7,4,0,0,10,8,3,5,90,84,7,14,8,7,2,1,10,8 -050,01,055,Alabama,Etowah County,12,12,6913,3319,3594,2817,2968,418,543,25,21,28,30,6,10,25,22,2838,2990,423,547,46,38,32,31,7,11,3237,3529,2751,2919,413,542,21,19,26,29,1,1,25,19,2772,2938,418,545,42,34,30,29,2,2,82,65,66,49,5,1,4,2,2,1,5,9,0,3,66,52,5,2,4,4,2,2,5,9 -050,01,055,Alabama,Etowah County,12,13,6993,3353,3640,2792,2965,475,600,11,22,27,19,7,0,41,34,2832,2998,479,602,45,50,30,23,8,1,3295,3613,2747,2941,470,597,11,22,26,19,1,0,40,34,2786,2974,474,599,45,50,28,23,2,1,58,27,45,24,5,3,0,0,1,0,6,0,1,0,46,24,5,3,0,0,2,0,6,0 -050,01,055,Alabama,Etowah County,12,14,6420,2965,3455,2517,2872,385,505,28,10,4,33,2,1,29,34,2544,2904,387,508,54,40,7,36,3,2,2936,3427,2492,2849,383,503,27,10,4,32,1,0,29,33,2519,2880,385,506,53,39,7,35,2,1,29,28,25,23,2,2,1,0,0,1,1,1,0,1,25,24,2,2,1,1,0,1,1,1 -050,01,055,Alabama,Etowah County,12,15,5521,2516,3005,2232,2626,243,328,10,14,8,11,1,1,22,25,2254,2650,244,331,31,35,8,14,1,2,2497,2983,2215,2604,242,328,10,14,8,11,0,1,22,25,2237,2628,243,331,31,35,8,14,0,2,19,22,17,22,1,0,0,0,0,0,1,0,0,0,17,22,1,0,0,0,0,0,1,0 -050,01,055,Alabama,Etowah County,12,16,3607,1561,2046,1411,1844,125,158,8,13,4,4,0,0,13,27,1423,1869,127,161,20,37,4,6,0,0,1550,2034,1401,1833,125,158,7,12,4,4,0,0,13,27,1413,1858,127,161,19,36,4,6,0,0,11,12,10,11,0,0,1,1,0,0,0,0,0,0,10,11,0,0,1,1,0,0,0,0 -050,01,055,Alabama,Etowah County,12,17,2342,952,1390,868,1226,71,139,6,4,3,11,0,0,4,10,871,1236,72,139,10,13,3,11,0,1,944,1388,862,1224,69,139,6,4,3,11,0,0,4,10,865,1234,70,139,10,13,3,11,0,1,8,2,6,2,2,0,0,0,0,0,0,0,0,0,6,2,2,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,12,18,1974,638,1336,590,1160,40,156,2,11,2,5,0,1,4,3,593,1163,41,157,6,13,3,5,0,1,633,1322,585,1148,40,155,2,10,2,5,0,1,4,3,588,1151,41,156,6,12,3,5,0,1,5,14,5,12,0,1,0,1,0,0,0,0,0,0,5,12,0,1,0,1,0,0,0,0 -050,01,055,Alabama,Etowah County,13,0,102371,49559,52812,40019,42280,7598,8656,388,348,449,432,182,156,923,940,40890,43162,8077,9135,773,744,557,556,209,186,47214,50730,38275,40678,7473,8548,221,213,395,405,25,25,825,861,39053,41489,7904,8985,559,576,495,515,47,49,2345,2082,1744,1602,125,108,167,135,54,27,157,131,98,79,1837,1673,173,150,214,168,62,41,162,137 -050,01,055,Alabama,Etowah County,13,1,5944,3055,2889,2234,2114,564,559,37,35,44,34,24,19,152,128,2379,2233,678,659,66,57,59,48,28,24,2713,2601,2024,1916,535,537,5,7,20,27,0,3,129,111,2147,2022,638,627,25,20,33,37,2,6,342,288,210,198,29,22,32,28,24,7,24,16,23,17,232,211,40,32,41,37,26,11,26,18 -050,01,055,Alabama,Etowah County,13,2,5886,3119,2767,2395,2135,544,484,25,28,21,19,4,4,130,97,2520,2230,641,556,52,45,37,32,7,6,2853,2534,2190,1937,531,474,5,10,14,19,1,2,112,92,2298,2027,617,544,26,27,28,28,4,3,266,233,205,198,13,10,20,18,7,0,3,2,18,5,222,203,24,12,26,18,9,4,3,3 -050,01,055,Alabama,Etowah County,13,3,6223,3178,3045,2504,2306,476,535,34,25,25,31,18,23,121,125,2619,2426,558,618,62,54,39,51,22,26,2907,2800,2294,2123,466,529,8,7,20,25,3,1,116,115,2406,2234,547,607,31,32,33,43,6,4,271,245,210,183,10,6,26,18,5,6,15,22,5,10,213,192,11,11,31,22,6,8,16,22 -050,01,055,Alabama,Etowah County,13,4,6048,3140,2908,2374,2205,609,532,21,27,29,27,27,11,80,106,2452,2305,660,600,44,56,37,40,30,13,2914,2710,2201,2044,604,527,7,11,27,27,3,1,72,100,2272,2138,651,591,25,38,35,40,5,3,226,198,173,161,5,5,14,16,2,0,24,10,8,6,180,167,9,9,19,18,2,0,25,10 -050,01,055,Alabama,Etowah County,13,5,6040,3086,2954,2270,2228,669,602,20,15,23,17,15,13,89,79,2357,2297,720,652,49,42,34,27,16,15,2906,2791,2133,2098,660,595,10,10,21,16,2,2,80,70,2211,2160,705,640,36,32,31,26,3,3,180,163,137,130,9,7,10,5,2,1,13,11,9,9,146,137,15,12,13,10,3,1,13,12 -050,01,055,Alabama,Etowah County,13,6,6588,3272,3316,2507,2561,623,633,30,22,43,27,7,14,62,59,2561,2615,657,661,57,45,51,39,8,17,3099,3149,2375,2429,612,625,22,16,38,24,0,2,52,53,2419,2477,641,650,45,37,45,35,1,5,173,167,132,132,11,8,8,6,5,3,7,12,10,6,142,138,16,11,12,8,6,4,7,12 -050,01,055,Alabama,Etowah County,13,7,6047,2878,3169,2302,2451,489,609,15,20,25,31,13,15,34,43,2336,2491,500,629,36,41,29,38,13,15,2726,2995,2188,2314,478,602,10,10,22,29,2,2,26,38,2214,2349,486,619,26,30,26,35,2,2,152,174,114,137,11,7,5,10,3,2,11,13,8,5,122,142,14,10,10,11,3,3,11,13 -050,01,055,Alabama,Etowah County,13,8,6039,2934,3105,2346,2468,481,551,15,18,48,20,8,11,36,37,2381,2502,490,564,39,39,52,25,8,12,2784,2970,2222,2364,472,543,11,9,47,20,4,4,28,30,2249,2391,478,552,30,28,51,25,4,4,150,135,124,104,9,8,4,9,1,0,4,7,8,7,132,111,12,12,9,11,1,0,4,8 -050,01,055,Alabama,Etowah County,13,9,5995,2876,3119,2343,2470,419,542,27,17,43,36,21,13,23,41,2362,2507,425,554,43,41,48,43,21,17,2749,3034,2254,2409,414,535,12,11,43,35,6,3,20,41,2270,2446,418,547,27,35,48,42,6,7,127,85,89,61,5,7,15,6,0,1,15,10,3,0,92,61,7,7,16,6,0,1,15,10 -050,01,055,Alabama,Etowah County,13,10,6725,3258,3467,2693,2803,447,554,39,25,41,44,19,9,19,32,2708,2833,454,566,52,46,44,47,19,11,3145,3370,2621,2741,445,547,21,16,40,39,1,0,17,27,2634,2767,451,555,33,36,43,41,1,1,113,97,72,62,2,7,18,9,1,5,18,9,2,5,74,66,3,11,19,10,1,6,18,10 -050,01,055,Alabama,Etowah County,13,11,6818,3375,3443,2801,2777,475,585,28,16,28,29,11,9,32,27,2830,2804,479,586,54,37,32,34,15,9,3263,3344,2714,2707,470,573,22,11,27,29,0,1,30,23,2741,2730,473,574,47,29,30,33,3,1,112,99,87,70,5,12,6,5,1,0,11,8,2,4,89,74,6,12,7,8,2,1,12,8 -050,01,055,Alabama,Etowah County,13,12,6897,3290,3607,2774,2986,423,530,29,20,28,31,5,11,31,29,2801,3013,427,534,53,44,35,33,5,13,3199,3534,2700,2929,418,530,23,19,27,30,1,1,30,25,2726,2952,422,532,46,40,34,32,1,3,91,73,74,57,5,0,6,1,1,1,4,10,1,4,75,61,5,2,7,4,1,1,4,10 -050,01,055,Alabama,Etowah County,13,13,7060,3390,3670,2838,2983,473,607,7,26,25,19,6,1,41,34,2876,3016,478,610,41,55,30,23,8,2,3328,3637,2789,2956,468,602,7,25,23,19,1,1,40,34,2826,2989,473,605,40,54,28,23,3,2,62,33,49,27,5,5,0,1,2,0,5,0,1,0,50,27,5,5,1,1,2,0,5,0 -050,01,055,Alabama,Etowah County,13,14,6403,2962,3441,2499,2849,393,516,28,12,9,31,4,1,29,32,2528,2880,393,521,53,38,11,33,6,2,2928,3406,2472,2820,391,513,26,12,9,30,1,0,29,31,2501,2850,391,518,51,37,11,32,3,1,34,35,27,29,2,3,2,0,0,1,3,1,0,1,27,30,2,3,2,1,0,1,3,1 -050,01,055,Alabama,Etowah County,13,15,5705,2575,3130,2265,2712,265,362,15,12,7,15,0,0,23,29,2286,2738,267,367,35,39,8,16,2,0,2553,3110,2244,2692,264,362,15,12,7,15,0,0,23,29,2265,2718,266,367,35,39,8,16,2,0,22,20,21,20,1,0,0,0,0,0,0,0,0,0,21,20,1,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,13,16,3658,1573,2085,1421,1872,128,167,7,13,4,5,0,1,13,27,1433,1897,129,169,20,37,4,8,0,1,1562,2065,1412,1854,127,167,6,11,4,5,0,1,13,27,1424,1879,128,169,19,35,4,8,0,1,11,20,9,18,1,0,1,2,0,0,0,0,0,0,9,18,1,0,1,2,0,0,0,0 -050,01,055,Alabama,Etowah County,13,17,2387,959,1428,863,1261,79,140,8,7,4,9,0,0,5,11,868,1272,80,141,11,15,5,11,1,2,951,1426,857,1259,77,140,8,7,4,9,0,0,5,11,862,1270,78,141,11,15,5,11,1,2,8,2,6,2,2,0,0,0,0,0,0,0,0,0,6,2,2,0,0,0,0,0,0,0 -050,01,055,Alabama,Etowah County,13,18,1908,639,1269,590,1099,41,148,3,10,2,7,0,1,3,4,593,1103,41,148,6,13,2,8,0,1,634,1254,585,1086,41,147,3,9,2,7,0,1,3,4,588,1090,41,147,6,12,2,8,0,1,5,15,5,13,0,1,0,1,0,0,0,0,0,0,5,13,0,1,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,1,0,17241,8507,8734,7411,7597,967,1012,30,33,14,23,0,0,85,69,7494,7664,1016,1049,60,64,20,26,3,0,8400,8637,7321,7522,959,1001,24,23,14,23,0,0,82,68,7402,7588,1005,1037,54,54,19,26,2,0,107,97,90,75,8,11,6,10,0,0,0,0,3,1,92,76,11,12,6,10,1,0,1,0 -050,01,057,Alabama,Fayette County,1,1,997,537,460,445,399,64,45,1,0,1,3,0,0,26,13,471,412,90,57,1,1,1,3,0,0,516,448,430,389,61,43,0,0,1,3,0,0,24,13,454,402,85,55,0,1,1,3,0,0,21,12,15,10,3,2,1,0,0,0,0,0,2,0,17,10,5,2,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,2,999,520,479,453,415,56,55,2,0,1,2,0,0,8,7,461,421,62,62,2,1,3,2,0,0,514,471,447,407,56,55,2,0,1,2,0,0,8,7,455,413,62,62,2,1,3,2,0,0,6,8,6,8,0,0,0,0,0,0,0,0,0,0,6,8,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,3,1146,618,528,517,459,87,59,2,4,3,0,0,0,9,6,526,465,93,64,3,5,5,0,0,0,613,517,514,452,87,58,0,1,3,0,0,0,9,6,523,458,93,63,1,2,5,0,0,0,5,11,3,7,0,1,2,3,0,0,0,0,0,0,3,7,0,1,2,3,0,0,0,0 -050,01,057,Alabama,Fayette County,1,4,1211,661,550,560,454,95,83,2,4,0,0,0,0,4,9,564,463,99,90,2,6,0,0,0,0,655,537,554,444,95,83,2,2,0,0,0,0,4,8,558,452,99,89,2,4,0,0,0,0,6,13,6,10,0,0,0,2,0,0,0,0,0,1,6,11,0,1,0,2,0,0,0,0 -050,01,057,Alabama,Fayette County,1,5,924,469,455,410,390,52,58,0,2,0,0,0,0,7,5,417,395,56,60,3,5,0,0,0,0,462,446,403,384,52,57,0,0,0,0,0,0,7,5,410,389,56,59,3,3,0,0,0,0,7,9,7,6,0,1,0,2,0,0,0,0,0,0,7,6,0,1,0,2,0,0,0,0 -050,01,057,Alabama,Fayette County,1,6,873,433,440,364,382,62,54,3,0,1,2,0,0,3,2,367,384,63,54,5,1,1,3,0,0,421,433,353,376,61,53,3,0,1,2,0,0,3,2,356,378,62,53,5,1,1,3,0,0,12,7,11,6,1,1,0,0,0,0,0,0,0,0,11,6,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,7,910,447,463,388,411,54,50,1,0,2,0,0,0,2,2,390,413,54,50,2,0,2,2,1,0,437,454,379,404,53,48,1,0,2,0,0,0,2,2,381,406,53,48,2,0,2,2,1,0,10,9,9,7,1,2,0,0,0,0,0,0,0,0,9,7,1,2,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,8,1015,506,509,454,452,44,51,1,1,2,3,0,0,5,2,458,454,45,52,5,2,3,3,1,0,499,505,450,449,43,51,0,0,2,3,0,0,4,2,454,451,43,52,4,1,2,3,0,0,7,4,4,3,1,0,1,1,0,0,0,0,1,0,4,3,2,0,1,1,1,0,1,0 -050,01,057,Alabama,Fayette County,1,9,1100,547,553,493,470,50,75,2,3,0,2,0,0,2,3,495,473,50,75,4,6,0,2,0,0,539,547,486,465,50,75,1,2,0,2,0,0,2,3,488,468,50,75,3,5,0,2,0,0,8,6,7,5,0,0,1,1,0,0,0,0,0,0,7,5,0,0,1,1,0,0,0,0 -050,01,057,Alabama,Fayette County,1,10,1285,640,645,556,573,77,67,0,3,2,1,0,0,5,1,561,574,77,67,4,4,3,1,0,0,633,640,549,569,77,67,0,2,2,1,0,0,5,1,554,570,77,67,4,3,3,1,0,0,7,5,7,4,0,0,0,1,0,0,0,0,0,0,7,4,0,0,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,1,11,1270,608,662,528,570,76,85,1,4,1,2,0,0,2,1,530,571,76,85,3,5,1,2,0,0,602,658,522,566,76,85,1,4,1,2,0,0,2,1,524,567,76,85,3,5,1,2,0,0,6,4,6,4,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,12,1252,624,628,531,543,84,77,4,3,0,2,0,0,5,3,535,546,85,77,8,6,0,2,1,0,619,624,527,541,83,75,4,3,0,2,0,0,5,3,531,544,84,75,8,6,0,2,1,0,5,4,4,2,1,2,0,0,0,0,0,0,0,0,4,2,1,2,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,13,1175,562,613,499,534,54,71,4,2,1,3,0,0,4,3,503,536,54,72,8,5,1,3,0,0,558,611,496,533,53,70,4,2,1,3,0,0,4,3,500,535,53,71,8,5,1,3,0,0,4,2,3,1,1,1,0,0,0,0,0,0,0,0,3,1,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,14,956,455,501,403,450,50,47,2,2,0,0,0,0,0,2,403,452,50,47,2,4,0,0,0,0,454,499,402,448,50,47,2,2,0,0,0,0,0,2,402,450,50,47,2,4,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,15,812,373,439,343,402,25,31,2,1,0,2,0,0,3,3,346,405,25,31,5,4,0,2,0,0,372,439,342,402,25,31,2,1,0,2,0,0,3,3,345,405,25,31,5,4,0,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,16,577,242,335,230,289,12,42,0,2,0,0,0,0,0,2,230,291,12,42,0,4,0,0,0,0,242,334,230,289,12,41,0,2,0,0,0,0,0,2,230,291,12,41,0,4,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,17,398,166,232,153,201,11,28,2,0,0,1,0,0,0,2,153,203,11,29,2,1,0,1,0,0,166,232,153,201,11,28,2,0,0,1,0,0,0,2,153,203,11,29,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,1,18,341,99,242,84,203,14,34,1,2,0,0,0,0,0,3,84,206,14,35,1,4,0,0,0,0,98,242,84,203,14,34,0,2,0,0,0,0,0,3,84,206,14,35,0,4,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,0,17237,8505,8732,7409,7595,967,1012,30,33,14,23,0,0,85,69,7492,7662,1016,1049,60,64,20,26,3,0,8398,8635,7319,7520,959,1001,24,23,14,23,0,0,82,68,7400,7586,1005,1037,54,54,19,26,2,0,107,97,90,75,8,11,6,10,0,0,0,0,3,1,92,76,11,12,6,10,1,0,1,0 -050,01,057,Alabama,Fayette County,2,1,997,537,460,445,399,64,45,1,0,1,3,0,0,26,13,471,412,90,57,1,1,1,3,0,0,516,448,430,389,61,43,0,0,1,3,0,0,24,13,454,402,85,55,0,1,1,3,0,0,21,12,15,10,3,2,1,0,0,0,0,0,2,0,17,10,5,2,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,2,998,519,479,452,415,56,55,2,0,1,2,0,0,8,7,460,421,62,62,2,1,3,2,0,0,513,471,446,407,56,55,2,0,1,2,0,0,8,7,454,413,62,62,2,1,3,2,0,0,6,8,6,8,0,0,0,0,0,0,0,0,0,0,6,8,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,3,1145,618,527,517,458,87,59,2,4,3,0,0,0,9,6,526,464,93,64,3,5,5,0,0,0,613,516,514,451,87,58,0,1,3,0,0,0,9,6,523,457,93,63,1,2,5,0,0,0,5,11,3,7,0,1,2,3,0,0,0,0,0,0,3,7,0,1,2,3,0,0,0,0 -050,01,057,Alabama,Fayette County,2,4,1208,659,549,558,453,95,83,2,4,0,0,0,0,4,9,562,462,99,90,2,6,0,0,0,0,653,536,552,443,95,83,2,2,0,0,0,0,4,8,556,451,99,89,2,4,0,0,0,0,6,13,6,10,0,0,0,2,0,0,0,0,0,1,6,11,0,1,0,2,0,0,0,0 -050,01,057,Alabama,Fayette County,2,5,924,469,455,410,390,52,58,0,2,0,0,0,0,7,5,417,395,56,60,3,5,0,0,0,0,462,446,403,384,52,57,0,0,0,0,0,0,7,5,410,389,56,59,3,3,0,0,0,0,7,9,7,6,0,1,0,2,0,0,0,0,0,0,7,6,0,1,0,2,0,0,0,0 -050,01,057,Alabama,Fayette County,2,6,873,433,440,364,382,62,54,3,0,1,2,0,0,3,2,367,384,63,54,5,1,1,3,0,0,421,433,353,376,61,53,3,0,1,2,0,0,3,2,356,378,62,53,5,1,1,3,0,0,12,7,11,6,1,1,0,0,0,0,0,0,0,0,11,6,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,7,911,448,463,389,411,54,50,1,0,2,0,0,0,2,2,391,413,54,50,2,0,2,2,1,0,438,454,380,404,53,48,1,0,2,0,0,0,2,2,382,406,53,48,2,0,2,2,1,0,10,9,9,7,1,2,0,0,0,0,0,0,0,0,9,7,1,2,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,8,1014,506,508,454,451,44,51,1,1,2,3,0,0,5,2,458,453,45,52,5,2,3,3,1,0,499,504,450,448,43,51,0,0,2,3,0,0,4,2,454,450,43,52,4,1,2,3,0,0,7,4,4,3,1,0,1,1,0,0,0,0,1,0,4,3,2,0,1,1,1,0,1,0 -050,01,057,Alabama,Fayette County,2,9,1099,547,552,493,469,50,75,2,3,0,2,0,0,2,3,495,472,50,75,4,6,0,2,0,0,539,546,486,464,50,75,1,2,0,2,0,0,2,3,488,467,50,75,3,5,0,2,0,0,8,6,7,5,0,0,1,1,0,0,0,0,0,0,7,5,0,0,1,1,0,0,0,0 -050,01,057,Alabama,Fayette County,2,10,1285,640,645,556,573,77,67,0,3,2,1,0,0,5,1,561,574,77,67,4,4,3,1,0,0,633,640,549,569,77,67,0,2,2,1,0,0,5,1,554,570,77,67,4,3,3,1,0,0,7,5,7,4,0,0,0,1,0,0,0,0,0,0,7,4,0,0,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,2,11,1271,608,663,528,571,76,85,1,4,1,2,0,0,2,1,530,572,76,85,3,5,1,2,0,0,602,659,522,567,76,85,1,4,1,2,0,0,2,1,524,568,76,85,3,5,1,2,0,0,6,4,6,4,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,12,1252,624,628,531,543,84,77,4,3,0,2,0,0,5,3,535,546,85,77,8,6,0,2,1,0,619,624,527,541,83,75,4,3,0,2,0,0,5,3,531,544,84,75,8,6,0,2,1,0,5,4,4,2,1,2,0,0,0,0,0,0,0,0,4,2,1,2,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,13,1176,562,614,499,535,54,71,4,2,1,3,0,0,4,3,503,537,54,72,8,5,1,3,0,0,558,612,496,534,53,70,4,2,1,3,0,0,4,3,500,536,53,71,8,5,1,3,0,0,4,2,3,1,1,1,0,0,0,0,0,0,0,0,3,1,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,14,956,455,501,403,450,50,47,2,2,0,0,0,0,0,2,403,452,50,47,2,4,0,0,0,0,454,499,402,448,50,47,2,2,0,0,0,0,0,2,402,450,50,47,2,4,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,15,812,373,439,343,402,25,31,2,1,0,2,0,0,3,3,346,405,25,31,5,4,0,2,0,0,372,439,342,402,25,31,2,1,0,2,0,0,3,3,345,405,25,31,5,4,0,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,16,577,242,335,230,289,12,42,0,2,0,0,0,0,0,2,230,291,12,42,0,4,0,0,0,0,242,334,230,289,12,41,0,2,0,0,0,0,0,2,230,291,12,41,0,4,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,17,398,166,232,153,201,11,28,2,0,0,1,0,0,0,2,153,203,11,29,2,1,0,1,0,0,166,232,153,201,11,28,2,0,0,1,0,0,0,2,153,203,11,29,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,2,18,341,99,242,84,203,14,34,1,2,0,0,0,0,0,3,84,206,14,35,1,4,0,0,0,0,98,242,84,203,14,34,0,2,0,0,0,0,0,3,84,206,14,35,0,4,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,0,17232,8502,8730,7407,7591,961,1016,31,31,14,24,0,0,89,68,7490,7655,1015,1055,62,55,24,31,2,2,8393,8636,7314,7516,954,1007,25,22,14,24,0,0,86,67,7395,7579,1006,1045,55,46,23,31,1,2,109,94,93,75,7,9,6,9,0,0,0,0,3,1,95,76,9,10,7,9,1,0,1,0 -050,01,057,Alabama,Fayette County,3,1,985,524,461,436,398,61,47,1,0,1,3,0,0,25,13,460,410,83,56,3,2,2,4,1,2,503,450,420,389,59,45,0,0,1,3,0,0,23,13,442,401,80,54,1,2,2,4,1,2,21,11,16,9,2,2,1,0,0,0,0,0,2,0,18,9,3,2,2,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,2,994,520,474,452,409,56,55,2,0,1,3,0,0,9,7,461,416,62,60,5,1,1,4,0,0,513,465,445,400,56,55,2,0,1,3,0,0,9,7,454,407,62,60,5,1,1,4,0,0,7,9,7,9,0,0,0,0,0,0,0,0,0,0,7,9,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,3,1137,610,527,511,460,86,57,2,4,3,0,0,0,8,6,519,466,92,62,3,5,4,0,0,0,606,517,509,454,86,56,0,1,3,0,0,0,8,6,517,460,92,61,1,2,4,0,0,0,4,10,2,6,0,1,2,3,0,0,0,0,0,0,2,6,0,1,2,3,0,0,0,0 -050,01,057,Alabama,Fayette County,3,4,1186,644,542,548,447,90,83,2,3,0,0,0,0,4,9,552,455,94,89,2,7,0,0,0,0,638,530,542,437,90,83,2,2,0,0,0,0,4,8,546,444,94,88,2,6,0,0,0,0,6,12,6,10,0,0,0,1,0,0,0,0,0,1,6,11,0,1,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,3,5,942,487,455,422,394,57,55,0,2,0,0,0,0,8,4,429,398,62,58,3,3,1,0,0,0,480,445,415,387,57,54,0,0,0,0,0,0,8,4,422,391,62,57,3,1,1,0,0,0,7,10,7,7,0,1,0,2,0,0,0,0,0,0,7,7,0,1,0,2,0,0,0,0 -050,01,057,Alabama,Fayette County,3,6,883,431,452,365,391,59,57,3,0,1,2,0,0,3,2,368,393,60,58,5,0,1,3,0,0,419,445,354,385,58,56,3,0,1,2,0,0,3,2,357,387,59,57,5,0,1,3,0,0,12,7,11,6,1,1,0,0,0,0,0,0,0,0,11,6,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,7,909,447,462,387,410,55,50,1,0,2,0,0,0,2,2,389,412,55,52,2,0,3,0,0,0,436,454,377,403,54,49,1,0,2,0,0,0,2,2,379,405,54,51,2,0,3,0,0,0,11,8,10,7,1,1,0,0,0,0,0,0,0,0,10,7,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,8,1002,502,500,451,442,43,52,1,1,2,3,0,0,5,2,455,444,46,53,3,2,3,3,1,0,494,496,446,439,42,52,0,0,2,3,0,0,4,2,450,441,44,53,2,1,2,3,0,0,8,4,5,3,1,0,1,1,0,0,0,0,1,0,5,3,2,0,1,1,1,0,1,0 -050,01,057,Alabama,Fayette County,3,9,1099,546,553,493,473,48,72,2,3,0,2,0,0,3,3,496,476,49,72,2,6,2,2,0,0,538,547,486,468,48,72,1,2,0,2,0,0,3,3,489,471,49,72,1,5,2,2,0,0,8,6,7,5,0,0,1,1,0,0,0,0,0,0,7,5,0,0,1,1,0,0,0,0 -050,01,057,Alabama,Fayette County,3,10,1291,643,648,557,572,79,71,0,3,2,1,0,0,5,1,562,573,81,71,4,3,2,2,0,0,636,643,550,568,79,71,0,2,2,1,0,0,5,1,555,569,81,71,4,2,2,2,0,0,7,5,7,4,0,0,0,1,0,0,0,0,0,0,7,4,0,0,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,3,11,1266,602,664,525,572,73,84,1,4,1,2,0,0,2,2,526,574,74,85,3,5,1,2,0,0,596,661,519,569,73,84,1,4,1,2,0,0,2,2,520,571,74,85,3,5,1,2,0,0,6,3,6,3,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,12,1260,632,628,535,545,86,77,4,2,0,2,0,0,7,2,541,546,88,78,8,2,2,4,0,0,627,624,531,542,85,76,4,2,0,2,0,0,7,2,537,543,87,77,8,2,2,4,0,0,5,4,4,3,1,1,0,0,0,0,0,0,0,0,4,3,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,13,1188,577,611,511,532,56,72,5,2,1,2,0,0,4,3,515,535,56,73,8,3,2,3,0,0,573,609,508,531,55,71,5,2,1,2,0,0,4,3,512,534,55,72,8,3,2,3,0,0,4,2,3,1,1,1,0,0,0,0,0,0,0,0,3,1,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,14,958,453,505,401,452,49,48,2,2,0,1,0,0,1,2,401,454,50,49,3,3,0,1,0,0,452,503,400,450,49,48,2,2,0,1,0,0,1,2,400,452,50,49,3,3,0,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,15,816,375,441,344,402,26,33,2,1,0,2,0,0,3,3,347,404,26,34,5,4,0,2,0,0,374,441,343,402,26,33,2,1,0,2,0,0,3,3,346,404,26,34,5,4,0,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,16,577,243,334,230,290,13,41,0,1,0,0,0,0,0,2,230,292,13,42,0,2,0,0,0,0,243,333,230,290,13,40,0,1,0,0,0,0,0,2,230,292,13,41,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,17,399,166,233,154,200,10,29,2,1,0,1,0,0,0,2,154,202,10,30,2,2,0,1,0,0,166,233,154,200,10,29,2,1,0,1,0,0,0,2,154,202,10,30,2,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,3,18,340,100,240,85,202,14,33,1,2,0,0,0,0,0,3,85,205,14,33,1,5,0,0,0,0,99,240,85,202,14,33,0,2,0,0,0,0,0,3,85,205,14,33,0,5,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,0,17061,8442,8619,7351,7502,956,988,31,32,15,23,0,1,89,73,7436,7571,1008,1028,57,61,28,30,4,3,8320,8515,7245,7416,949,979,25,24,15,23,0,0,86,73,7328,7485,998,1019,51,53,27,30,3,2,122,104,106,86,7,9,6,8,0,0,0,1,3,0,108,86,10,9,6,8,1,0,1,1 -050,01,057,Alabama,Fayette County,4,1,977,526,451,441,382,58,54,1,1,0,2,0,0,26,12,467,393,81,64,3,3,1,3,0,0,506,441,426,373,56,53,0,1,0,2,0,0,24,12,450,384,77,63,2,3,1,3,0,0,20,10,15,9,2,1,1,0,0,0,0,0,2,0,17,9,4,1,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,2,965,515,450,440,391,60,45,2,0,2,4,0,0,11,10,451,401,70,54,3,1,2,4,0,0,503,435,428,377,60,44,2,0,2,4,0,0,11,10,439,387,70,53,3,1,2,4,0,0,12,15,12,14,0,1,0,0,0,0,0,0,0,0,12,14,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,3,1095,572,523,479,462,80,51,2,3,3,0,0,0,8,7,487,469,88,58,2,3,3,0,0,0,566,511,475,452,80,51,0,1,3,0,0,0,8,7,483,459,88,58,0,1,3,0,0,0,6,12,4,10,0,0,2,2,0,0,0,0,0,0,4,10,0,0,2,2,0,0,0,0 -050,01,057,Alabama,Fayette County,4,4,1115,608,507,520,423,83,71,2,3,0,0,0,0,3,10,523,433,84,77,4,7,0,0,0,0,601,495,513,413,83,70,2,2,0,0,0,0,3,10,516,423,84,76,4,6,0,0,0,0,7,12,7,10,0,1,0,1,0,0,0,0,0,0,7,10,0,1,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,4,5,1004,541,463,462,405,73,52,0,2,0,0,0,0,6,4,468,409,75,56,2,3,2,0,0,0,534,452,455,397,73,51,0,0,0,0,0,0,6,4,461,401,75,55,2,1,2,0,0,0,7,11,7,8,0,1,0,2,0,0,0,0,0,0,7,8,0,1,0,2,0,0,0,0 -050,01,057,Alabama,Fayette County,4,6,888,420,468,363,406,50,55,3,1,1,2,0,0,3,4,365,410,52,56,3,2,2,4,1,0,409,460,353,399,49,54,3,1,1,2,0,0,3,4,355,403,51,55,3,2,2,4,1,0,11,8,10,7,1,1,0,0,0,0,0,0,0,0,10,7,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,7,899,452,447,385,397,61,49,1,0,2,0,0,0,3,1,388,398,61,49,2,0,4,1,0,0,436,439,370,390,60,48,1,0,2,0,0,0,3,1,373,391,60,48,2,0,4,1,0,0,16,8,15,7,1,1,0,0,0,0,0,0,0,0,15,7,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,8,934,464,470,418,414,41,52,1,0,1,2,0,0,3,2,420,416,43,52,3,2,2,2,1,0,456,465,413,409,40,52,0,0,1,2,0,0,2,2,415,411,41,52,2,2,1,2,0,0,8,5,5,5,1,0,1,0,0,0,0,0,1,0,5,5,2,0,1,0,1,0,1,0 -050,01,057,Alabama,Fayette County,4,9,1108,548,560,501,482,40,69,2,3,1,3,0,0,4,3,505,485,40,69,5,6,2,3,0,0,539,555,493,479,40,69,1,1,1,3,0,0,4,3,497,482,40,69,4,4,2,3,0,0,9,5,8,3,0,0,1,2,0,0,0,0,0,0,8,3,0,0,1,2,0,0,0,0 -050,01,057,Alabama,Fayette County,4,10,1270,640,630,554,551,80,77,0,1,2,1,0,0,4,0,558,551,82,77,1,1,3,1,0,0,632,626,546,547,80,77,0,1,2,1,0,0,4,0,550,547,82,77,1,1,3,1,0,0,8,4,8,4,0,0,0,0,0,0,0,0,0,0,8,4,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,11,1264,594,670,520,577,69,84,1,6,1,1,0,0,3,2,523,578,69,85,4,7,1,2,0,0,590,666,516,574,69,84,1,5,1,1,0,0,3,2,519,575,69,85,4,6,1,2,0,0,4,4,4,3,0,0,0,1,0,0,0,0,0,0,4,3,0,0,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,4,12,1264,640,624,539,547,92,71,2,2,0,1,0,0,7,3,546,549,92,72,7,5,2,1,0,0,634,621,533,545,92,70,2,2,0,1,0,0,7,3,540,547,92,71,7,5,2,1,0,0,6,3,6,2,0,1,0,0,0,0,0,0,0,0,6,2,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,13,1228,603,625,534,542,58,77,7,2,1,2,0,0,3,2,537,544,59,77,8,3,2,2,0,1,598,622,531,540,56,76,7,2,1,2,0,0,3,2,534,542,57,76,8,3,2,2,0,1,5,3,3,2,2,1,0,0,0,0,0,0,0,0,3,2,2,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,14,935,433,502,378,450,51,44,2,3,0,2,0,0,2,3,379,452,52,44,4,5,0,3,0,1,432,501,377,449,51,44,2,3,0,2,0,0,2,3,378,451,52,44,4,5,0,3,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,15,810,373,437,344,392,25,38,2,1,0,2,0,1,2,3,345,395,25,38,2,3,1,3,2,1,373,435,344,391,25,38,2,1,0,2,0,0,2,3,345,394,25,38,2,3,1,3,2,0,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,4,16,579,247,332,232,296,13,35,0,0,1,0,0,0,1,1,233,297,13,35,1,1,1,0,0,0,246,331,231,296,13,34,0,0,1,0,0,0,1,1,232,297,13,34,1,1,1,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,17,393,166,227,154,191,10,30,2,2,0,1,0,0,0,3,154,194,10,31,2,4,0,1,0,0,166,227,154,191,10,30,2,2,0,1,0,0,0,3,154,194,10,31,2,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,4,18,333,100,233,87,194,12,34,1,2,0,0,0,0,0,3,87,197,12,34,1,5,0,0,0,0,99,233,87,194,12,34,0,2,0,0,0,0,0,3,87,197,12,34,0,5,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,0,16955,8443,8512,7338,7414,960,969,36,32,15,23,0,1,94,73,7426,7484,1018,1007,66,59,29,34,1,2,8315,8401,7227,7321,953,960,29,24,15,23,0,0,91,73,7313,7391,1009,998,58,51,28,34,0,1,128,111,111,93,7,9,7,8,0,0,0,1,3,0,113,93,9,9,8,8,1,0,1,1 -050,01,057,Alabama,Fayette County,5,1,939,511,428,426,349,63,66,1,1,0,1,0,0,21,11,447,360,81,76,4,3,0,1,0,0,496,420,416,342,61,65,0,1,0,1,0,0,19,11,435,353,78,75,2,3,0,1,0,0,15,8,10,7,2,1,1,0,0,0,0,0,2,0,12,7,3,1,2,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,2,990,535,455,459,396,60,45,1,0,2,5,0,0,13,9,472,404,71,51,2,2,3,6,0,1,522,440,446,382,60,44,1,0,2,5,0,0,13,9,459,390,71,50,2,2,3,6,0,1,13,15,13,14,0,1,0,0,0,0,0,0,0,0,13,14,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,3,1074,579,495,491,445,72,44,3,0,3,0,0,0,10,6,501,451,80,49,4,0,4,1,0,0,570,482,484,432,72,44,1,0,3,0,0,0,10,6,494,438,80,49,2,0,4,1,0,0,9,13,7,13,0,0,2,0,0,0,0,0,0,0,7,13,0,0,2,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,4,1072,593,479,500,404,85,62,2,4,0,0,0,0,6,9,506,413,88,68,4,5,1,2,0,0,586,467,493,395,85,61,2,2,0,0,0,0,6,9,499,404,88,67,4,3,1,2,0,0,7,12,7,9,0,1,0,2,0,0,0,0,0,0,7,9,0,1,0,2,0,0,0,0 -050,01,057,Alabama,Fayette County,5,5,1057,561,496,482,420,71,66,1,4,0,0,0,0,7,6,489,426,74,70,2,6,3,0,0,0,557,480,479,407,71,66,0,1,0,0,0,0,7,6,486,413,74,70,1,3,3,0,0,0,4,16,3,13,0,0,1,3,0,0,0,0,0,0,3,13,0,0,1,3,0,0,0,0 -050,01,057,Alabama,Fayette County,5,6,877,424,453,369,402,49,44,2,1,0,2,0,0,4,4,373,405,52,46,3,3,1,3,0,0,415,445,360,395,49,43,2,1,0,2,0,0,4,4,364,398,52,45,3,3,1,3,0,0,9,8,9,7,0,1,0,0,0,0,0,0,0,0,9,7,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,7,886,452,434,380,389,65,43,2,0,3,0,0,0,2,2,382,391,67,44,2,1,3,0,0,0,432,425,362,382,63,41,2,0,3,0,0,0,2,2,364,384,65,42,2,1,3,0,0,0,20,9,18,7,2,2,0,0,0,0,0,0,0,0,18,7,2,2,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,8,945,469,476,422,414,43,59,1,0,0,1,0,0,3,2,423,416,45,59,3,1,1,2,1,0,454,471,409,409,43,59,0,0,0,1,0,0,2,2,410,411,44,59,2,1,0,2,0,0,15,5,13,5,0,0,1,0,0,0,0,0,1,0,13,5,1,0,1,0,1,0,1,0 -050,01,057,Alabama,Fayette County,5,9,1094,544,550,492,484,45,59,1,1,2,4,0,0,4,2,496,486,47,59,3,2,2,5,0,0,535,545,484,480,44,59,1,0,2,4,0,0,4,2,488,482,46,59,3,1,2,5,0,0,9,5,8,4,1,0,0,1,0,0,0,0,0,0,8,4,1,0,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,5,10,1170,575,595,503,506,64,84,1,3,2,1,0,0,5,1,507,507,66,84,2,3,5,2,0,0,569,589,498,501,64,84,0,2,2,1,0,0,5,1,502,502,66,84,1,2,5,2,0,0,6,6,5,5,0,0,1,1,0,0,0,0,0,0,5,5,0,0,1,1,0,0,0,0 -050,01,057,Alabama,Fayette County,5,11,1296,639,657,551,571,80,77,3,6,1,1,0,0,4,2,554,573,82,78,7,7,1,1,0,0,635,654,547,569,80,77,3,5,1,1,0,0,4,2,550,571,82,78,7,6,1,1,0,0,4,3,4,2,0,0,0,1,0,0,0,0,0,0,4,2,0,0,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,5,12,1229,620,609,528,547,86,57,2,1,0,1,0,0,4,3,532,550,86,58,5,3,1,1,0,0,613,606,521,545,86,56,2,1,0,1,0,0,4,3,525,548,86,57,5,3,1,1,0,0,7,3,7,2,0,1,0,0,0,0,0,0,0,0,7,2,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,13,1215,584,631,512,535,58,89,8,2,1,2,0,0,5,3,516,538,59,89,12,5,2,2,0,0,578,628,508,533,56,88,8,2,1,2,0,0,5,3,512,536,57,88,12,5,2,2,0,0,6,3,4,2,2,1,0,0,0,0,0,0,0,0,4,2,2,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,14,988,463,525,402,471,56,47,2,3,0,2,0,0,3,2,404,472,57,48,5,4,0,3,0,0,461,523,400,469,56,47,2,3,0,2,0,0,3,2,402,470,57,48,5,4,0,3,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,15,822,379,443,346,396,28,39,3,2,0,2,0,0,2,4,348,400,28,39,5,5,0,3,0,0,379,442,346,395,28,39,3,2,0,2,0,0,2,4,348,399,28,39,5,5,0,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,16,576,246,330,231,301,13,28,0,0,1,0,0,1,1,0,232,301,13,28,0,0,2,0,0,1,245,328,230,301,13,27,0,0,1,0,0,0,1,0,231,301,13,27,0,0,2,0,0,0,1,2,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,5,17,395,164,231,150,193,12,32,2,2,0,1,0,0,0,3,150,196,12,33,2,3,0,2,0,0,164,231,150,193,12,32,2,2,0,1,0,0,0,3,150,196,12,33,2,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,5,18,330,105,225,94,191,10,28,1,2,0,0,0,0,0,4,94,195,10,28,1,6,0,0,0,0,104,225,94,191,10,28,0,2,0,0,0,0,0,4,94,195,10,28,0,6,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,0,16837,8370,8467,7263,7371,955,953,37,33,19,24,0,1,96,85,7355,7452,1013,1003,70,65,29,31,3,1,8227,8345,7140,7272,947,941,30,24,17,23,0,0,93,85,7230,7353,1002,991,63,56,26,30,2,0,143,122,123,99,8,12,7,9,2,1,0,1,3,0,125,99,11,12,7,9,3,1,1,1 -050,01,057,Alabama,Fayette County,6,1,928,490,438,403,352,63,70,2,0,2,1,0,0,20,15,423,367,81,82,3,3,3,1,0,0,471,425,389,340,60,69,1,0,2,1,0,0,19,15,408,355,77,81,2,3,3,1,0,0,19,13,14,12,3,1,1,0,0,0,0,0,1,0,15,12,4,1,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,2,985,524,461,442,400,61,42,1,1,2,5,0,0,18,13,460,413,77,52,3,4,2,5,0,0,505,445,425,385,61,41,1,1,1,5,0,0,17,13,442,398,76,51,3,4,1,5,0,0,19,16,17,15,0,1,0,0,1,0,0,0,1,0,18,15,1,1,0,0,1,0,0,0 -050,01,057,Alabama,Fayette County,6,3,1053,567,486,479,434,74,45,2,0,4,0,0,0,8,7,487,440,80,49,4,2,4,2,0,0,558,475,471,423,74,45,1,0,4,0,0,0,8,7,479,429,80,49,3,2,4,2,0,0,9,11,8,11,0,0,1,0,0,0,0,0,0,0,8,11,0,0,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,4,1058,587,471,497,402,81,55,2,3,0,0,0,0,7,11,502,413,87,62,5,6,1,1,0,0,579,458,490,394,81,52,1,1,0,0,0,0,7,11,495,405,87,59,4,4,1,1,0,0,8,13,7,8,0,3,1,2,0,0,0,0,0,0,7,8,0,3,1,2,0,0,0,0 -050,01,057,Alabama,Fayette County,6,5,1058,560,498,483,418,70,69,2,5,0,1,0,0,5,5,488,423,73,74,4,5,0,1,0,0,556,481,480,405,70,69,1,2,0,0,0,0,5,5,485,410,73,74,3,2,0,0,0,0,4,17,3,13,0,0,1,3,0,1,0,0,0,0,3,13,0,0,1,3,0,1,0,0 -050,01,057,Alabama,Fayette County,6,6,853,414,439,367,395,41,37,2,1,0,2,0,0,4,4,371,398,42,40,4,1,1,4,1,0,407,428,360,385,41,36,2,1,0,2,0,0,4,4,364,388,42,39,4,1,1,4,1,0,7,11,7,10,0,1,0,0,0,0,0,0,0,0,7,10,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,7,900,461,439,392,394,62,42,2,0,3,1,0,0,2,2,394,396,62,42,4,2,3,1,0,0,440,432,374,388,60,41,2,0,2,1,0,0,2,2,376,390,60,41,4,2,2,1,0,0,21,7,18,6,2,1,0,0,1,0,0,0,0,0,18,6,2,1,0,0,1,0,0,0 -050,01,057,Alabama,Fayette County,6,8,913,452,461,399,405,49,53,0,0,1,1,0,0,3,2,401,407,50,53,1,1,3,2,1,0,440,455,388,400,49,52,0,0,1,1,0,0,2,2,390,402,49,52,1,1,2,2,0,0,12,6,11,5,0,1,0,0,0,0,0,0,1,0,11,5,1,1,0,0,1,0,1,0 -050,01,057,Alabama,Fayette County,6,9,1088,540,548,488,481,44,61,2,1,2,3,0,0,4,2,492,483,46,62,5,2,2,3,0,0,529,544,479,478,43,61,1,0,2,3,0,0,4,2,483,480,45,62,4,1,2,3,0,0,11,4,9,3,1,0,1,1,0,0,0,0,0,0,9,3,1,0,1,1,0,0,0,0 -050,01,057,Alabama,Fayette County,6,10,1111,551,560,484,479,60,74,1,4,1,2,0,0,5,1,489,480,60,74,6,5,1,2,0,0,541,553,475,474,60,74,0,2,1,2,0,0,5,1,480,475,60,74,5,3,1,2,0,0,10,7,9,5,0,0,1,2,0,0,0,0,0,0,9,5,0,0,1,2,0,0,0,0 -050,01,057,Alabama,Fayette County,6,11,1264,637,627,544,541,83,78,3,5,2,1,0,0,5,2,549,543,85,78,5,6,3,2,0,0,632,623,539,538,83,78,3,4,2,1,0,0,5,2,544,540,85,78,5,5,3,2,0,0,5,4,5,3,0,0,0,1,0,0,0,0,0,0,5,3,0,0,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,6,12,1257,615,642,524,569,87,67,2,2,0,1,0,0,2,3,526,572,87,68,3,4,1,1,0,0,607,639,516,566,87,67,2,2,0,1,0,0,2,3,518,569,87,68,3,4,1,1,0,0,8,3,8,3,0,0,0,0,0,0,0,0,0,0,8,3,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,13,1184,575,609,500,520,60,84,7,2,1,1,0,0,7,2,506,522,63,85,10,3,3,1,0,0,569,606,496,518,58,83,7,2,1,1,0,0,7,2,502,520,61,84,10,3,3,1,0,0,6,3,4,2,2,1,0,0,0,0,0,0,0,0,4,2,2,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,14,1000,468,532,410,469,52,54,3,3,0,3,0,0,3,3,413,472,52,56,5,4,1,3,0,0,466,530,408,468,52,53,3,3,0,3,0,0,3,3,411,471,52,55,5,4,1,3,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,15,846,382,464,348,417,31,39,2,2,0,2,0,0,1,4,349,420,31,40,3,6,0,2,0,0,382,462,348,415,31,39,2,2,0,2,0,0,1,4,349,418,31,40,3,6,0,2,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,16,614,279,335,260,308,15,25,1,0,1,0,0,1,2,1,262,308,15,26,2,1,1,0,1,1,278,333,259,308,15,24,1,0,1,0,0,0,2,1,261,308,15,25,2,1,1,0,1,0,1,2,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,6,17,396,159,237,145,201,12,31,2,2,0,0,0,0,0,3,145,204,12,32,2,4,0,0,0,0,159,236,145,201,12,30,2,2,0,0,0,0,0,3,145,204,12,31,2,4,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,6,18,329,109,220,98,186,10,27,1,2,0,0,0,0,0,5,98,191,10,28,1,6,0,0,0,0,108,220,98,186,10,27,0,2,0,0,0,0,0,5,98,191,10,28,0,6,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,0,16784,8326,8458,7213,7302,967,1006,38,35,16,25,0,1,92,89,7297,7387,1022,1062,72,66,28,31,2,2,8182,8336,7090,7204,958,993,31,26,14,25,0,0,89,88,7173,7288,1011,1048,63,56,25,31,1,1,144,122,123,98,9,13,7,9,2,0,0,1,3,1,124,99,11,14,9,10,3,0,1,1 -050,01,057,Alabama,Fayette County,7,1,931,492,439,405,349,67,70,2,0,0,4,0,0,18,16,421,365,83,83,5,3,2,4,0,0,473,420,391,331,64,69,1,0,0,4,0,0,17,16,407,347,79,82,3,3,2,4,0,0,19,19,14,18,3,1,1,0,0,0,0,0,1,0,14,18,4,1,2,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,2,1016,541,475,461,405,62,50,0,1,2,5,0,0,16,14,476,418,76,62,2,4,3,5,0,0,519,461,442,393,61,48,0,1,1,5,0,0,15,14,456,406,75,60,1,4,2,5,0,0,22,14,19,12,1,2,0,0,1,0,0,0,1,0,20,12,1,2,1,0,1,0,0,0 -050,01,057,Alabama,Fayette County,7,3,1024,539,485,456,419,70,56,3,1,2,1,0,0,8,8,464,427,77,63,3,1,3,2,0,0,528,476,447,410,69,56,2,1,2,1,0,0,8,8,455,418,76,63,2,1,3,2,0,0,11,9,9,9,1,0,1,0,0,0,0,0,0,0,9,9,1,0,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,4,1054,578,476,479,408,88,56,1,4,2,0,0,0,8,8,487,415,93,61,3,6,3,2,0,0,572,462,474,399,88,53,0,2,2,0,0,0,8,8,482,406,93,58,2,4,3,2,0,0,6,14,5,9,0,3,1,2,0,0,0,0,0,0,5,9,0,3,1,2,0,0,0,0 -050,01,057,Alabama,Fayette County,7,5,1090,587,503,496,411,83,76,4,5,0,0,0,0,4,11,500,422,84,84,6,8,0,1,1,0,582,490,492,402,83,76,3,2,0,0,0,0,4,10,496,412,84,83,5,4,0,1,1,0,5,13,4,9,0,0,1,3,0,0,0,0,0,1,4,10,0,1,1,4,0,0,0,0 -050,01,057,Alabama,Fayette County,7,6,843,412,431,369,385,37,43,0,0,0,0,0,0,6,3,374,388,41,46,2,0,1,0,0,0,403,420,360,375,37,42,0,0,0,0,0,0,6,3,365,378,41,45,2,0,1,0,0,0,9,11,9,10,0,1,0,0,0,0,0,0,0,0,9,10,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,7,845,432,413,365,359,59,49,3,1,3,2,0,0,2,2,367,361,60,49,4,3,3,2,0,0,415,407,349,354,59,48,3,1,2,2,0,0,2,2,351,356,60,48,4,3,2,2,0,0,17,6,16,5,0,1,0,0,1,0,0,0,0,0,16,5,0,1,0,0,1,0,0,0 -050,01,057,Alabama,Fayette County,7,8,938,457,481,413,420,42,58,1,0,0,1,0,0,1,2,413,422,43,60,1,0,1,1,1,0,444,473,402,413,41,57,1,0,0,1,0,0,0,2,402,415,41,59,1,0,0,1,0,0,13,8,11,7,1,1,0,0,0,0,0,0,1,0,11,7,2,1,0,0,1,0,1,0 -050,01,057,Alabama,Fayette County,7,9,1061,526,535,471,472,47,57,1,1,2,2,0,0,5,3,476,475,48,58,5,3,2,2,0,0,515,531,462,469,46,57,0,0,2,2,0,0,5,3,467,472,47,58,4,2,2,2,0,0,11,4,9,3,1,0,1,1,0,0,0,0,0,0,9,3,1,0,1,1,0,0,0,0 -050,01,057,Alabama,Fayette County,7,10,1066,517,549,461,464,50,78,2,4,1,2,0,0,3,1,464,465,50,79,3,4,3,2,0,0,508,545,453,462,50,78,1,2,1,2,0,0,3,1,456,463,50,79,2,2,3,2,0,0,9,4,8,2,0,0,1,2,0,0,0,0,0,0,8,2,0,0,1,2,0,0,0,0 -050,01,057,Alabama,Fayette County,7,11,1250,642,608,547,525,88,75,0,4,1,2,0,0,6,2,552,527,90,76,5,5,1,2,0,0,636,602,541,520,88,75,0,3,1,2,0,0,6,2,546,522,90,76,5,4,1,2,0,0,6,6,6,5,0,0,0,1,0,0,0,0,0,0,6,5,0,0,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,7,12,1219,587,632,505,553,75,73,4,3,1,0,0,0,2,3,506,556,77,73,5,6,1,0,0,0,582,629,500,550,75,73,4,3,1,0,0,0,2,3,501,553,77,73,5,6,1,0,0,0,5,3,5,3,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,13,1192,580,612,499,531,66,77,7,2,1,1,0,0,7,1,506,532,66,77,12,3,3,1,0,0,575,609,495,529,65,76,7,2,1,1,0,0,7,1,502,530,65,76,12,3,3,1,0,0,5,3,4,2,1,1,0,0,0,0,0,0,0,0,4,2,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,14,1011,472,539,411,469,55,61,3,2,0,3,0,0,3,4,414,472,55,62,6,5,0,4,0,0,469,536,409,467,54,60,3,2,0,3,0,0,3,4,412,470,54,61,6,5,0,4,0,0,3,3,2,2,1,1,0,0,0,0,0,0,0,0,2,2,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,15,864,388,476,350,426,35,45,3,2,0,1,0,0,0,2,350,428,35,45,3,4,0,1,0,0,387,474,349,424,35,45,3,2,0,1,0,0,0,2,349,426,35,45,3,4,0,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,16,647,295,352,269,322,21,24,1,1,1,1,0,1,3,3,271,325,22,24,4,4,2,1,0,1,294,350,268,322,21,23,1,1,1,1,0,0,3,3,270,325,22,23,4,4,2,1,0,0,1,2,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,7,17,398,161,237,150,202,10,30,1,2,0,0,0,0,0,3,150,204,10,31,1,3,0,1,0,1,161,237,150,202,10,30,1,2,0,0,0,0,0,3,150,204,10,31,1,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,7,18,335,120,215,106,182,12,28,2,2,0,0,0,0,0,3,106,185,12,29,2,4,0,0,0,0,119,214,106,182,12,27,1,2,0,0,0,0,0,3,106,185,12,28,1,4,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,0,16711,8266,8445,7129,7276,981,1013,38,34,16,33,0,1,102,88,7223,7356,1043,1071,71,64,28,41,6,2,8105,8319,6994,7174,971,1002,30,25,14,31,0,0,96,87,7084,7253,1028,1059,61,55,25,39,5,1,161,126,135,102,10,11,8,9,2,2,0,1,6,1,139,103,15,12,10,9,3,2,1,1 -050,01,057,Alabama,Fayette County,8,1,952,494,458,405,360,68,71,1,0,0,12,0,0,20,15,425,375,85,85,1,1,2,12,1,0,479,438,393,344,67,69,1,0,0,10,0,0,18,15,411,359,82,83,1,1,2,10,1,0,15,20,12,16,1,2,0,0,0,2,0,0,2,0,14,16,3,2,0,0,0,2,0,0 -050,01,057,Alabama,Fayette County,8,2,995,536,459,451,383,61,59,2,1,1,3,0,0,21,13,471,395,80,71,5,1,1,5,1,0,509,446,431,372,59,57,0,1,1,3,0,0,18,13,449,384,76,69,1,1,1,5,1,0,27,13,20,11,2,2,2,0,0,0,0,0,3,0,22,11,4,2,4,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,3,1007,509,498,434,430,63,52,2,1,2,3,0,0,8,12,442,442,69,62,2,3,4,4,0,0,495,487,422,419,62,52,2,1,1,3,0,0,8,12,430,431,68,62,2,3,3,4,0,0,14,11,12,11,1,0,0,0,1,0,0,0,0,0,12,11,1,0,0,0,1,0,0,0 -050,01,057,Alabama,Fayette County,8,4,1024,577,447,470,386,92,51,2,3,3,0,0,0,10,7,479,392,99,56,5,4,4,2,0,0,569,437,464,378,92,51,0,1,3,0,0,0,10,7,473,384,99,56,3,2,4,2,0,0,8,10,6,8,0,0,2,2,0,0,0,0,0,0,6,8,0,0,2,2,0,0,0,0 -050,01,057,Alabama,Fayette County,8,5,1031,537,494,453,403,77,78,3,4,0,0,0,0,4,9,455,411,79,84,5,7,0,1,2,0,534,479,451,391,77,78,2,2,0,0,0,0,4,8,453,398,79,83,4,5,0,1,2,0,3,15,2,12,0,0,1,2,0,0,0,0,0,1,2,13,0,1,1,2,0,0,0,0 -050,01,057,Alabama,Fayette County,8,6,876,456,420,397,371,52,44,0,2,0,0,0,0,7,3,404,374,54,47,2,2,2,0,1,0,444,410,385,364,52,43,0,0,0,0,0,0,7,3,392,367,54,46,2,0,2,0,1,0,12,10,12,7,0,1,0,2,0,0,0,0,0,0,12,7,0,1,0,2,0,0,0,0 -050,01,057,Alabama,Fayette County,8,7,892,439,453,372,391,61,56,3,1,2,2,0,0,1,3,373,393,62,57,3,4,2,2,0,0,418,442,354,381,59,55,3,1,1,2,0,0,1,3,355,383,60,56,3,4,1,2,0,0,21,11,18,10,2,1,0,0,1,0,0,0,0,0,18,10,2,1,0,0,1,0,0,0 -050,01,057,Alabama,Fayette County,8,8,934,462,472,406,417,52,53,1,0,1,0,0,0,2,2,407,419,53,55,1,0,3,0,1,0,446,464,392,410,51,52,1,0,1,0,0,0,1,2,393,412,51,54,1,0,2,0,0,0,16,8,14,7,1,1,0,0,0,0,0,0,1,0,14,7,2,1,0,0,1,0,1,0 -050,01,057,Alabama,Fayette County,8,9,1005,494,511,442,443,45,62,1,1,2,3,0,0,4,2,446,444,46,63,4,3,2,3,0,0,484,507,434,440,44,62,0,0,2,3,0,0,4,2,438,441,45,63,3,2,2,3,0,0,10,4,8,3,1,0,1,1,0,0,0,0,0,0,8,3,1,0,1,1,0,0,0,0 -050,01,057,Alabama,Fayette County,8,10,1068,529,539,470,456,54,76,2,3,0,2,0,0,3,2,473,458,54,76,5,4,0,2,0,1,518,535,460,453,54,76,1,2,0,2,0,0,3,2,463,455,54,76,4,3,0,2,0,1,11,4,10,3,0,0,1,1,0,0,0,0,0,0,10,3,0,0,1,1,0,0,0,0 -050,01,057,Alabama,Fayette County,8,11,1200,604,596,512,530,84,61,0,3,2,1,0,0,6,1,517,531,86,61,5,4,2,1,0,0,597,590,505,525,84,61,0,2,2,1,0,0,6,1,510,526,86,61,5,3,2,1,0,0,7,6,7,5,0,0,0,1,0,0,0,0,0,0,7,5,0,0,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,8,12,1204,562,642,493,552,63,82,3,4,1,1,0,0,2,3,494,555,64,83,4,6,2,1,0,0,557,640,488,550,63,82,3,4,1,1,0,0,2,3,489,553,64,83,4,6,2,1,0,0,5,2,5,2,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,13,1189,595,594,506,520,76,69,6,2,0,1,0,0,7,2,513,521,77,70,11,4,1,1,0,0,590,590,502,517,75,68,6,2,0,1,0,0,7,2,509,518,76,69,11,4,1,1,0,0,5,4,4,3,1,1,0,0,0,0,0,0,0,0,4,3,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,14,1071,498,573,436,495,52,70,5,2,1,2,0,0,4,4,439,497,53,71,8,6,2,3,0,0,494,570,433,493,51,69,5,2,1,2,0,0,4,4,436,495,52,70,8,6,2,3,0,0,4,3,3,2,1,1,0,0,0,0,0,0,0,0,3,2,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,15,842,375,467,334,418,39,44,2,2,0,1,0,0,0,2,334,420,39,44,2,3,0,2,0,0,374,465,333,416,39,44,2,2,0,1,0,0,0,2,333,418,39,44,2,3,0,2,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,16,677,313,364,284,332,23,25,2,1,1,2,0,1,3,3,287,335,24,25,5,4,1,2,0,1,312,363,283,332,23,25,2,1,1,2,0,0,3,3,286,335,24,25,5,4,1,2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,8,17,410,161,249,155,214,6,32,0,1,0,0,0,0,0,2,155,216,6,33,0,2,0,0,0,0,161,248,155,214,6,31,0,1,0,0,0,0,0,2,155,216,6,32,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,8,18,334,125,209,109,175,13,28,3,3,0,0,0,0,0,3,109,178,13,28,3,6,0,0,0,0,124,208,109,175,13,27,2,3,0,0,0,0,0,3,109,178,13,27,2,6,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,0,16581,8181,8400,7041,7237,965,997,40,35,19,43,0,1,116,87,7149,7320,1043,1052,73,62,31,51,5,3,8030,8276,6917,7137,954,986,32,25,16,41,0,0,111,87,7021,7220,1028,1041,64,52,27,49,4,2,151,124,124,100,11,11,8,10,3,2,0,1,5,0,128,100,15,11,9,10,4,2,1,1 -050,01,057,Alabama,Fayette County,9,1,952,482,470,383,363,76,69,1,0,0,21,0,0,22,17,404,380,94,83,2,3,4,21,0,0,475,450,377,347,75,67,1,0,0,19,0,0,22,17,398,364,93,81,2,3,4,19,0,0,7,20,6,16,1,2,0,0,0,2,0,0,0,0,6,16,1,2,0,0,0,2,0,0 -050,01,057,Alabama,Fayette County,9,2,959,534,425,444,354,66,56,2,2,0,2,0,0,22,11,465,364,86,65,5,4,0,3,0,0,511,413,429,344,64,55,0,1,0,2,0,0,18,11,446,354,81,64,2,3,0,3,0,0,23,12,15,10,2,1,2,1,0,0,0,0,4,0,19,10,5,1,3,1,0,0,0,0 -050,01,057,Alabama,Fayette County,9,3,984,506,478,427,411,59,51,2,0,3,4,0,0,15,12,441,423,70,59,4,3,4,5,2,0,491,466,413,400,59,50,2,0,2,4,0,0,15,12,427,412,70,58,4,3,3,5,2,0,15,12,14,11,0,1,0,0,1,0,0,0,0,0,14,11,0,1,0,0,1,0,0,0 -050,01,057,Alabama,Fayette County,9,4,1028,552,476,456,415,77,51,2,3,6,0,0,0,11,7,467,422,85,56,4,5,7,0,0,0,541,464,449,405,76,51,0,1,5,0,0,0,11,7,460,412,84,56,2,3,6,0,0,0,11,12,7,10,1,0,2,2,1,0,0,0,0,0,7,10,1,0,2,2,1,0,0,0 -050,01,057,Alabama,Fayette County,9,5,981,520,461,443,377,70,73,3,4,0,0,0,0,4,7,446,384,73,77,5,5,1,2,1,0,514,451,439,369,69,73,2,2,0,0,0,0,4,7,442,376,72,77,4,3,1,2,1,0,6,10,4,8,1,0,1,2,0,0,0,0,0,0,4,8,1,0,1,2,0,0,0,0 -050,01,057,Alabama,Fayette County,9,6,913,487,426,422,378,56,44,1,2,0,0,0,0,8,2,430,380,61,45,3,3,1,0,0,0,477,417,412,372,56,43,1,0,0,0,0,0,8,2,420,374,61,44,3,1,1,0,0,0,10,9,10,6,0,1,0,2,0,0,0,0,0,0,10,6,0,1,0,2,0,0,0,0 -050,01,057,Alabama,Fayette County,9,7,909,420,489,364,427,51,55,2,1,2,2,0,0,1,4,365,430,52,59,2,1,2,3,0,0,408,477,355,416,49,54,2,1,1,2,0,0,1,4,356,419,50,58,2,1,1,3,0,0,12,12,9,11,2,1,0,0,1,0,0,0,0,0,9,11,2,1,0,0,1,0,0,0 -050,01,057,Alabama,Fayette County,9,8,886,445,441,379,389,61,51,1,0,1,0,0,0,3,1,381,390,64,52,1,0,2,0,1,0,427,435,363,384,60,50,1,0,1,0,0,0,2,1,365,385,62,51,1,0,1,0,0,0,18,6,16,5,1,1,0,0,0,0,0,0,1,0,16,5,2,1,0,0,1,0,1,0 -050,01,057,Alabama,Fayette County,9,9,936,458,478,412,422,42,51,1,1,1,2,0,0,2,2,414,424,43,53,2,1,1,2,0,0,445,472,401,416,41,51,0,1,1,2,0,0,2,2,403,418,42,53,1,1,1,2,0,0,13,6,11,6,1,0,1,0,0,0,0,0,0,0,11,6,1,0,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,10,1082,538,544,479,465,50,70,4,3,1,3,0,0,4,3,482,467,52,72,7,5,1,3,0,0,525,539,467,462,50,70,3,1,1,3,0,0,4,3,470,464,52,72,6,3,1,3,0,0,13,5,12,3,0,0,1,2,0,0,0,0,0,0,12,3,0,0,1,2,0,0,0,0 -050,01,057,Alabama,Fayette County,9,11,1167,588,579,500,507,81,70,0,1,2,1,0,0,5,0,504,507,83,70,3,1,3,1,0,0,582,574,494,502,81,70,0,1,2,1,0,0,5,0,498,502,83,70,3,1,3,1,0,0,6,5,6,5,0,0,0,0,0,0,0,0,0,0,6,5,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,12,1214,568,646,495,554,66,81,3,6,1,2,0,0,3,3,498,557,68,82,4,8,1,2,0,0,565,643,492,552,66,81,3,5,1,2,0,0,3,3,495,555,68,82,4,7,1,2,0,0,3,3,3,2,0,0,0,1,0,0,0,0,0,0,3,2,0,0,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,9,13,1159,571,588,490,518,72,65,2,2,0,0,0,0,7,3,496,521,73,66,8,3,1,1,0,0,565,585,484,516,72,64,2,2,0,0,0,0,7,3,490,519,73,65,8,3,1,1,0,0,6,3,6,2,0,1,0,0,0,0,0,0,0,0,6,2,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,14,1116,532,584,467,500,52,76,9,2,1,2,0,0,3,4,470,504,52,77,10,5,2,2,1,0,527,581,464,498,50,75,9,2,1,2,0,0,3,4,467,502,50,76,10,5,2,2,1,0,5,3,3,2,2,1,0,0,0,0,0,0,0,0,3,2,2,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,15,839,372,467,329,415,39,44,2,3,0,2,0,0,2,3,331,418,39,44,4,5,0,2,0,1,371,465,328,413,39,44,2,3,0,2,0,0,2,3,330,416,39,44,4,5,0,2,0,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,16,693,315,378,285,340,25,31,2,1,0,2,0,1,3,3,288,342,26,32,5,3,0,3,0,2,315,376,285,339,25,31,2,1,0,2,0,0,3,3,288,341,26,32,5,3,0,3,0,1,0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,9,17,410,162,248,152,219,8,27,0,0,1,0,0,0,1,2,153,221,8,28,1,1,1,0,0,0,161,247,151,219,8,26,0,0,1,0,0,0,1,2,152,221,8,27,1,1,1,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,9,18,353,131,222,114,183,14,32,3,4,0,0,0,0,0,3,114,186,14,32,3,6,0,1,0,0,130,221,114,183,14,31,2,4,0,0,0,0,0,3,114,186,14,31,2,6,0,1,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,0,16478,8057,8421,6934,7243,941,984,40,35,23,54,0,1,119,104,7043,7342,1015,1051,82,71,36,61,2,2,7901,8286,6807,7133,930,974,32,25,18,50,0,0,114,104,6912,7232,999,1041,74,61,30,57,1,1,156,135,127,110,11,10,8,10,5,4,0,1,5,0,131,110,16,10,8,10,6,4,1,1 -050,01,057,Alabama,Fayette County,10,1,942,458,484,364,360,69,64,1,0,3,30,0,0,21,30,384,390,86,89,4,5,5,30,0,0,451,463,360,345,68,62,1,0,1,26,0,0,21,30,380,375,85,87,4,5,3,26,0,0,7,21,4,15,1,2,0,0,2,4,0,0,0,0,4,15,1,2,0,0,2,4,0,0 -050,01,057,Alabama,Fayette County,10,2,951,516,435,416,357,73,63,2,2,0,1,0,0,25,12,440,368,95,73,6,5,1,1,0,0,498,422,405,345,71,63,0,1,0,1,0,0,22,12,426,356,90,73,4,4,1,1,0,0,18,13,11,12,2,0,2,1,0,0,0,0,3,0,14,12,5,0,2,1,0,0,0,0 -050,01,057,Alabama,Fayette County,10,3,998,520,478,445,416,54,46,1,0,3,5,0,0,17,11,461,427,68,53,4,2,4,6,0,1,504,464,431,403,54,45,1,0,2,5,0,0,16,11,446,414,67,52,4,2,3,6,0,1,16,14,14,13,0,1,0,0,1,0,0,0,1,0,15,13,1,1,0,0,1,0,0,0 -050,01,057,Alabama,Fayette County,10,4,975,524,451,434,397,73,46,3,0,7,0,0,0,7,8,441,404,76,51,6,4,7,1,1,0,511,439,425,385,72,46,1,0,6,0,0,0,7,8,432,392,75,51,4,4,6,1,1,0,13,12,9,12,1,0,2,0,1,0,0,0,0,0,9,12,1,0,2,0,1,0,0,0 -050,01,057,Alabama,Fayette County,10,5,948,483,465,411,384,64,68,2,5,0,0,0,0,6,8,417,392,69,74,2,8,1,0,0,0,476,455,405,377,63,68,2,2,0,0,0,0,6,8,411,385,68,74,2,5,1,0,0,0,7,10,6,7,1,0,0,3,0,0,0,0,0,0,6,7,1,0,0,3,0,0,0,0 -050,01,057,Alabama,Fayette County,10,6,940,491,449,431,382,51,59,2,4,0,1,0,0,7,3,437,385,55,62,3,4,3,1,0,0,483,437,424,373,51,59,1,1,0,1,0,0,7,3,430,376,55,62,2,1,3,1,0,0,8,12,7,9,0,0,1,3,0,0,0,0,0,0,7,9,0,0,1,3,0,0,0,0 -050,01,057,Alabama,Fayette County,10,7,908,433,475,376,417,51,50,2,1,1,3,0,0,3,4,379,420,53,52,3,3,1,4,0,0,422,464,366,407,51,49,2,1,0,3,0,0,3,4,369,410,53,51,3,3,0,4,0,0,11,11,10,10,0,1,0,0,1,0,0,0,0,0,10,10,0,1,0,0,1,0,0,0 -050,01,057,Alabama,Fayette County,10,8,884,449,435,374,388,69,45,1,0,2,0,0,0,3,2,376,390,71,46,2,1,3,0,1,0,426,426,355,381,66,43,1,0,2,0,0,0,2,2,357,383,67,44,2,1,2,0,0,0,23,9,19,7,3,2,0,0,0,0,0,0,1,0,19,7,4,2,0,0,1,0,1,0 -050,01,057,Alabama,Fayette County,10,9,927,448,479,407,419,39,56,1,1,0,1,0,0,1,2,408,420,40,57,1,2,0,2,0,0,434,475,394,415,39,56,0,1,0,1,0,0,1,2,395,416,40,57,0,2,0,2,0,0,14,4,13,4,0,0,1,0,0,0,0,0,0,0,13,4,0,0,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,10,1090,539,551,474,479,56,65,3,1,2,4,0,0,4,2,478,481,56,66,7,2,2,4,0,0,529,546,465,475,55,65,3,0,2,4,0,0,4,2,469,477,55,66,7,1,2,4,0,0,10,5,9,4,1,0,0,1,0,0,0,0,0,0,9,4,1,0,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,10,11,1084,534,550,458,476,68,69,1,3,2,1,0,0,5,1,462,477,69,69,5,3,3,2,0,0,524,544,449,471,68,69,0,2,2,1,0,0,5,1,453,472,69,69,4,2,3,2,0,0,10,6,9,5,0,0,1,1,0,0,0,0,0,0,9,5,0,0,1,1,0,0,0,0 -050,01,057,Alabama,Fayette County,10,12,1211,584,627,503,542,73,76,3,5,1,2,0,0,4,2,507,544,74,77,6,6,1,2,0,0,580,624,499,540,73,76,3,4,1,2,0,0,4,2,503,542,74,77,6,5,1,2,0,0,4,3,4,2,0,0,0,1,0,0,0,0,0,0,4,2,0,0,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,10,13,1175,580,595,504,531,70,60,2,1,0,0,0,0,4,3,507,533,70,62,6,3,1,0,0,0,574,592,498,529,70,59,2,1,0,0,0,0,4,3,501,531,70,61,6,3,1,0,0,0,6,3,6,2,0,1,0,0,0,0,0,0,0,0,6,2,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,14,1120,517,603,454,512,49,82,8,3,1,2,0,0,5,4,458,516,49,83,12,6,3,2,0,0,512,598,451,508,47,81,8,3,1,2,0,0,5,4,455,512,47,82,12,6,3,2,0,0,5,5,3,4,2,1,0,0,0,0,0,0,0,0,3,4,2,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,15,875,393,482,351,427,37,47,2,3,0,2,0,0,3,3,354,430,37,47,5,5,0,3,0,0,391,479,349,424,37,47,2,3,0,2,0,0,3,3,352,427,37,47,5,5,0,3,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,16,687,311,376,281,337,24,31,3,2,0,2,0,0,3,4,283,341,25,31,6,5,0,3,0,0,311,375,281,336,24,31,3,2,0,2,0,0,3,4,283,340,25,31,6,5,0,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,10,17,409,156,253,147,230,7,21,0,0,1,0,0,1,1,1,147,231,8,22,1,0,1,0,0,1,155,251,146,230,7,20,0,0,1,0,0,0,1,1,146,231,8,21,1,0,1,0,0,0,1,2,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,10,18,354,121,233,104,189,14,36,3,4,0,0,0,0,0,4,104,193,14,37,3,7,0,0,0,0,120,232,104,189,14,35,2,4,0,0,0,0,0,4,104,193,14,36,2,7,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,0,16451,8023,8428,6877,7214,957,1007,41,34,24,56,0,1,124,116,6996,7324,1034,1087,81,66,35,63,4,4,7864,8288,6745,7101,947,992,33,27,19,52,0,0,120,116,6861,7211,1021,1072,72,59,29,59,3,3,159,140,132,113,10,15,8,7,5,4,0,1,4,0,135,113,13,15,9,7,6,4,1,1 -050,01,057,Alabama,Fayette County,11,1,950,470,480,380,342,69,70,0,2,2,30,0,0,19,36,398,378,85,101,2,7,3,30,1,0,461,462,374,333,68,65,0,2,0,26,0,0,19,36,392,369,84,96,2,7,1,26,1,0,9,18,6,9,1,5,0,0,2,4,0,0,0,0,6,9,1,5,0,0,2,4,0,0 -050,01,057,Alabama,Fayette County,11,2,959,501,458,398,375,75,63,3,1,1,4,0,0,24,15,421,390,95,75,8,3,1,5,1,0,488,444,391,362,73,63,1,0,1,4,0,0,22,15,412,377,92,75,5,2,1,5,1,0,13,14,7,13,2,0,2,1,0,0,0,0,2,0,9,13,3,0,3,1,0,0,0,0 -050,01,057,Alabama,Fayette County,11,3,1004,513,491,426,420,62,55,1,1,2,5,0,0,22,10,448,429,81,63,4,3,2,6,0,0,496,472,411,402,62,54,1,1,1,5,0,0,21,10,432,411,80,62,4,3,1,6,0,0,17,19,15,18,0,1,0,0,1,0,0,0,1,0,16,18,1,1,0,0,1,0,0,0 -050,01,057,Alabama,Fayette County,11,4,948,501,447,416,398,67,42,2,0,9,0,0,0,7,7,423,405,71,47,4,2,9,0,1,0,487,436,405,387,66,42,1,0,8,0,0,0,7,7,412,394,70,47,3,2,8,0,1,0,14,11,11,11,1,0,1,0,1,0,0,0,0,0,11,11,1,0,1,0,1,0,0,0 -050,01,057,Alabama,Fayette County,11,5,944,486,458,404,379,73,66,3,3,0,0,0,0,6,10,410,389,76,73,6,4,0,1,0,1,477,448,396,372,73,65,2,1,0,0,0,0,6,10,402,382,76,72,5,2,0,1,0,1,9,10,8,7,0,1,1,2,0,0,0,0,0,0,8,7,0,1,1,2,0,0,0,0 -050,01,057,Alabama,Fayette County,11,6,1013,530,483,466,404,54,71,2,3,0,1,0,0,8,4,474,407,58,74,3,5,3,1,0,0,522,475,459,398,54,70,1,2,0,1,0,0,8,4,467,401,58,73,2,4,3,1,0,0,8,8,7,6,0,1,1,1,0,0,0,0,0,0,7,6,0,1,1,1,0,0,0,0 -050,01,057,Alabama,Fayette County,11,7,868,410,458,358,407,46,42,2,1,0,1,0,0,4,7,362,414,49,44,3,3,0,3,0,1,402,446,350,396,46,41,2,1,0,1,0,0,4,7,354,403,49,43,3,3,0,3,0,1,8,12,8,11,0,1,0,0,0,0,0,0,0,0,8,11,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,8,905,468,437,385,388,74,45,2,0,4,2,0,0,3,2,387,390,75,46,3,0,6,3,1,0,445,426,367,378,71,44,2,0,3,2,0,0,2,2,369,380,71,45,3,0,4,3,0,0,23,11,18,10,3,1,0,0,1,0,0,0,1,0,18,10,4,1,0,0,2,0,1,0 -050,01,057,Alabama,Fayette County,11,9,901,438,463,393,403,43,57,0,0,0,1,0,0,2,2,394,405,44,58,0,0,2,2,0,0,425,457,380,398,43,56,0,0,0,1,0,0,2,2,381,400,44,57,0,0,2,2,0,0,13,6,13,5,0,1,0,0,0,0,0,0,0,0,13,5,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,10,1086,528,558,462,488,58,63,2,2,2,3,0,0,4,2,466,490,58,64,6,3,2,3,0,0,517,552,453,483,57,63,1,1,2,3,0,0,4,2,457,485,57,64,5,2,2,3,0,0,11,6,9,5,1,0,1,1,0,0,0,0,0,0,9,5,1,0,1,1,0,0,0,0 -050,01,057,Alabama,Fayette County,11,11,1045,508,537,443,461,57,70,3,3,1,2,0,0,4,1,447,462,59,70,5,4,2,2,0,0,494,531,430,456,57,70,2,2,1,2,0,0,4,1,434,457,59,70,4,3,2,2,0,0,14,6,13,5,0,0,1,1,0,0,0,0,0,0,13,5,0,0,1,1,0,0,0,0 -050,01,057,Alabama,Fayette County,11,12,1195,593,602,506,520,78,75,3,4,1,1,0,0,5,2,511,522,79,76,7,5,1,1,0,0,588,599,501,518,78,75,3,3,1,1,0,0,5,2,506,520,79,76,7,4,1,1,0,0,5,3,5,2,0,0,0,1,0,0,0,0,0,0,5,2,0,0,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,11,13,1173,560,613,486,541,70,67,2,2,0,0,0,0,2,3,488,544,71,69,2,3,1,0,0,0,554,610,480,538,70,67,2,2,0,0,0,0,2,3,482,541,71,69,2,3,1,0,0,0,6,3,6,3,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,14,1075,505,570,439,484,51,79,7,3,1,1,0,0,7,3,446,487,51,80,13,5,2,1,0,0,500,565,436,480,49,78,7,3,1,1,0,0,7,3,443,483,49,79,13,5,2,1,0,0,5,5,3,4,2,1,0,0,0,0,0,0,0,0,3,4,2,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,15,888,403,485,361,426,36,50,3,3,0,3,0,0,3,3,363,428,38,51,5,6,0,3,0,0,401,482,359,424,36,49,3,3,0,3,0,0,3,3,361,426,38,50,5,6,0,3,0,0,2,3,2,2,0,1,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,16,710,311,399,281,357,26,35,2,2,0,2,0,0,2,3,283,358,26,37,4,4,0,2,0,1,311,397,281,355,26,35,2,2,0,2,0,0,2,3,283,356,26,37,4,4,0,2,0,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,11,17,452,194,258,183,234,7,21,1,0,1,0,0,1,2,2,185,236,7,22,3,1,1,0,0,1,193,256,182,234,7,20,1,0,1,0,0,0,2,2,184,236,7,21,3,1,1,0,0,0,1,2,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,11,18,335,104,231,90,187,11,36,3,4,0,0,0,0,0,4,90,190,11,37,3,8,0,0,0,0,103,230,90,187,11,35,2,4,0,0,0,0,0,4,90,190,11,36,2,8,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,0,16279,7941,8338,6809,7128,933,985,43,38,24,57,0,1,132,129,6936,7250,1021,1073,79,75,35,69,3,4,7770,8180,6667,7004,922,969,33,25,20,53,0,0,128,129,6791,7126,1006,1057,69,62,30,65,2,3,171,158,142,124,11,16,10,13,4,4,0,1,4,0,145,124,15,16,10,13,5,4,1,1 -050,01,057,Alabama,Fayette County,12,1,900,447,453,348,324,73,64,3,2,2,32,0,0,21,31,368,354,91,91,6,5,2,33,1,2,435,433,342,314,71,60,1,0,0,28,0,0,21,31,362,344,89,87,4,3,0,29,1,2,12,20,6,10,2,4,2,2,2,4,0,0,0,0,6,10,2,4,2,2,2,4,0,0 -050,01,057,Alabama,Fayette County,12,2,951,472,479,381,376,59,65,2,3,1,5,0,0,29,30,409,404,83,90,5,7,4,8,0,0,461,460,375,361,57,64,1,0,1,5,0,0,27,30,401,389,79,89,4,4,4,8,0,0,11,19,6,15,2,1,1,3,0,0,0,0,2,0,8,15,4,1,1,3,0,0,0,0 -050,01,057,Alabama,Fayette County,12,3,999,527,472,443,417,61,46,1,1,2,3,0,0,20,5,463,422,76,48,4,3,4,4,0,0,500,456,420,402,60,45,0,1,1,3,0,0,19,5,439,407,74,47,3,3,3,4,0,0,27,16,23,15,1,1,1,0,1,0,0,0,1,0,24,15,2,1,1,0,1,0,0,0 -050,01,057,Alabama,Fayette County,12,4,921,475,446,399,382,60,52,3,0,7,1,0,0,6,11,405,393,65,60,4,1,7,3,0,0,463,434,389,370,59,52,2,0,7,1,0,0,6,11,395,381,64,60,3,1,7,3,0,0,12,12,10,12,1,0,1,0,0,0,0,0,0,0,10,12,1,0,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,5,913,482,431,391,357,79,62,2,3,3,0,0,0,7,9,398,366,83,69,4,5,4,0,0,0,470,417,381,347,79,60,1,1,2,0,0,0,7,9,388,356,83,67,3,3,3,0,0,0,12,14,10,10,0,2,1,2,1,0,0,0,0,0,10,10,0,2,1,2,1,0,0,0 -050,01,057,Alabama,Fayette County,12,6,993,499,494,433,404,56,79,3,4,0,0,0,0,7,7,440,410,61,84,5,7,0,0,0,0,491,484,426,397,56,78,2,2,0,0,0,0,7,7,433,403,61,83,4,5,0,0,0,0,8,10,7,7,0,1,1,2,0,0,0,0,0,0,7,7,0,1,1,2,0,0,0,0 -050,01,057,Alabama,Fayette County,12,7,872,423,449,379,407,38,38,0,0,0,0,0,0,6,4,385,410,42,41,1,1,1,1,0,0,411,435,367,394,38,37,0,0,0,0,0,0,6,4,373,397,42,40,1,1,1,1,0,0,12,14,12,13,0,1,0,0,0,0,0,0,0,0,12,13,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,8,887,449,438,371,386,70,43,2,1,2,2,0,0,4,6,374,391,73,46,2,5,3,3,2,1,434,426,359,375,68,42,2,1,2,2,0,0,3,6,362,380,70,45,2,5,2,3,1,1,15,12,12,11,2,1,0,0,0,0,0,0,1,0,12,11,3,1,0,0,1,0,1,0 -050,01,057,Alabama,Fayette County,12,9,909,452,457,405,401,43,53,1,0,1,1,0,0,2,2,407,403,44,55,1,1,2,1,0,0,440,449,394,394,42,52,1,0,1,1,0,0,2,2,396,396,43,54,1,1,2,1,0,0,12,8,11,7,1,1,0,0,0,0,0,0,0,0,11,7,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,10,1053,515,538,449,480,58,51,1,2,2,2,0,0,5,3,454,483,59,52,5,4,2,2,0,0,504,530,440,473,57,51,0,1,2,2,0,0,5,3,445,476,58,52,4,3,2,2,0,0,11,8,9,7,1,0,1,1,0,0,0,0,0,0,9,7,1,0,1,1,0,0,0,0 -050,01,057,Alabama,Fayette County,12,11,1007,493,514,437,439,48,68,4,3,1,2,0,0,3,2,440,441,50,68,4,5,2,2,0,0,477,511,422,437,48,68,3,2,1,2,0,0,3,2,425,439,50,68,3,4,2,2,0,0,16,3,15,2,0,0,1,1,0,0,0,0,0,0,15,2,0,0,1,1,0,0,0,0 -050,01,057,Alabama,Fayette County,12,12,1189,611,578,517,500,87,72,0,3,1,1,0,0,6,2,522,502,89,73,5,4,1,1,0,0,604,572,511,495,86,72,0,2,1,1,0,0,6,2,516,497,88,73,5,3,1,1,0,0,7,6,6,5,1,0,0,1,0,0,0,0,0,0,6,5,1,0,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,12,13,1154,535,619,471,538,58,73,4,4,0,1,0,0,2,3,473,541,59,73,5,6,0,2,0,0,527,615,463,535,58,73,4,3,0,1,0,0,2,3,465,538,59,73,5,5,0,2,0,0,8,4,8,3,0,0,0,1,0,0,0,0,0,0,8,3,0,0,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,12,14,1101,517,584,448,510,54,69,7,3,1,1,0,0,7,1,455,511,54,69,13,4,2,1,0,0,513,581,444,508,54,68,7,3,1,1,0,0,7,1,451,509,54,68,13,4,2,1,0,0,4,3,4,2,0,1,0,0,0,0,0,0,0,0,4,2,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,15,878,392,486,346,422,40,55,3,2,0,3,0,0,3,4,349,426,41,55,5,4,0,5,0,0,391,482,345,419,40,54,3,2,0,3,0,0,3,4,348,423,41,54,5,4,0,5,0,0,1,4,1,3,0,1,0,0,0,0,0,0,0,0,1,3,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,16,723,316,407,285,362,27,40,3,2,0,1,0,0,1,2,286,364,28,41,3,3,0,1,0,0,315,405,284,360,27,40,3,2,0,1,0,0,1,2,285,362,28,41,3,3,0,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,12,17,489,217,272,199,243,13,22,1,1,1,2,0,1,3,3,201,245,14,24,4,3,1,2,0,1,216,270,198,243,13,21,1,1,1,2,0,0,3,3,200,245,14,23,4,3,1,2,0,0,1,2,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1 -050,01,057,Alabama,Fayette County,12,18,340,119,221,107,180,9,33,3,4,0,0,0,0,0,4,107,184,9,34,3,7,0,0,0,0,118,220,107,180,9,32,2,4,0,0,0,0,0,4,107,184,9,33,2,7,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,0,16241,7934,8307,6796,7115,935,982,43,40,24,61,0,0,136,109,6924,7219,1023,1051,86,77,38,68,5,1,7759,8149,6650,6991,924,966,33,27,20,57,0,0,132,108,6775,7094,1009,1034,75,64,33,64,4,1,175,158,146,124,11,16,10,13,4,4,0,0,4,1,149,125,14,17,11,13,5,4,1,0 -050,01,057,Alabama,Fayette County,13,1,901,450,451,349,344,70,59,3,3,2,26,0,0,26,19,374,363,94,76,6,5,3,26,0,0,434,430,339,330,68,56,1,1,0,24,0,0,26,19,364,349,92,73,4,3,1,24,0,0,16,21,10,14,2,3,2,2,2,2,0,0,0,0,10,14,2,3,2,2,2,2,0,0 -050,01,057,Alabama,Fayette County,13,2,948,471,477,373,372,68,68,1,3,1,14,0,0,28,20,399,391,91,85,6,6,2,15,1,0,463,462,368,363,67,66,1,1,1,12,0,0,26,20,392,382,88,83,6,4,2,13,1,0,8,15,5,9,1,2,0,2,0,2,0,0,2,0,7,9,3,2,0,2,0,2,0,0 -050,01,057,Alabama,Fayette County,13,3,974,515,459,438,398,57,47,2,2,1,3,0,0,17,9,455,406,71,52,4,5,2,5,0,0,489,441,416,382,56,46,0,1,1,3,0,0,16,9,432,390,70,51,1,4,2,5,0,0,26,18,22,16,1,1,2,1,0,0,0,0,1,0,23,16,1,1,3,1,0,0,0,0 -050,01,057,Alabama,Fayette County,13,4,936,481,455,416,392,47,52,2,0,7,1,0,0,9,10,425,402,55,57,4,4,8,2,0,0,464,441,401,378,46,52,2,0,6,1,0,0,9,10,410,388,54,57,4,4,7,2,0,0,17,14,15,14,1,0,0,0,1,0,0,0,0,0,15,14,1,0,0,0,1,0,0,0 -050,01,057,Alabama,Fayette County,13,5,884,480,404,385,333,84,60,2,4,4,0,0,0,5,7,390,340,88,66,3,5,4,0,0,0,468,393,377,326,83,58,0,2,3,0,0,0,5,7,382,333,87,64,1,3,3,0,0,0,12,11,8,7,1,2,2,2,1,0,0,0,0,0,8,7,1,2,2,2,1,0,0,0 -050,01,057,Alabama,Fayette County,13,6,965,479,486,409,405,58,73,4,3,0,1,0,0,8,4,416,409,64,76,7,4,0,1,0,0,474,477,405,398,58,72,3,2,0,1,0,0,8,4,412,402,64,75,6,3,0,1,0,0,5,9,4,7,0,1,1,1,0,0,0,0,0,0,4,7,0,1,1,1,0,0,0,0 -050,01,057,Alabama,Fayette County,13,7,890,436,454,390,408,40,40,0,1,0,0,0,0,6,5,396,413,42,44,3,2,1,0,0,0,421,440,375,397,40,39,0,0,0,0,0,0,6,4,381,401,42,42,3,1,1,0,0,0,15,14,15,11,0,1,0,1,0,0,0,0,0,1,15,12,0,2,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,13,8,944,465,479,387,420,71,48,2,1,1,2,0,0,4,8,390,427,74,51,3,7,2,2,1,0,448,464,373,406,69,47,2,1,1,2,0,0,3,8,376,413,71,50,3,7,1,2,0,0,17,15,14,14,2,1,0,0,0,0,0,0,1,0,14,14,3,1,0,0,1,0,1,0 -050,01,057,Alabama,Fayette County,13,9,891,447,444,392,392,50,50,1,0,2,0,0,0,2,2,393,393,50,52,3,0,3,0,0,1,437,436,383,385,49,49,1,0,2,0,0,0,2,2,384,386,49,51,3,0,3,0,0,1,10,8,9,7,1,1,0,0,0,0,0,0,0,0,9,7,1,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,10,1008,488,520,432,464,49,49,1,2,2,3,0,0,4,2,436,466,50,49,4,4,2,3,0,0,475,512,421,457,48,49,0,1,2,3,0,0,4,2,425,459,49,49,3,3,2,3,0,0,13,8,11,7,1,0,1,1,0,0,0,0,0,0,11,7,1,0,1,1,0,0,0,0 -050,01,057,Alabama,Fayette County,13,11,1023,508,515,446,433,55,74,4,3,0,2,0,0,3,3,449,436,55,75,6,5,1,2,0,0,492,511,431,430,55,74,3,2,0,2,0,0,3,3,434,433,55,75,5,4,1,2,0,0,16,4,15,3,0,0,1,1,0,0,0,0,0,0,15,3,0,0,1,1,0,0,0,0 -050,01,057,Alabama,Fayette County,13,12,1173,601,572,512,509,81,58,0,3,2,1,0,0,6,1,517,510,82,58,2,4,6,1,0,0,594,565,506,503,80,58,0,2,2,1,0,0,6,1,511,504,81,58,2,3,6,1,0,0,7,7,6,6,1,0,0,1,0,0,0,0,0,0,6,6,1,0,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,13,13,1129,506,623,451,534,50,81,3,4,0,1,0,0,2,3,453,537,51,81,4,6,1,2,0,0,501,620,446,532,50,81,3,3,0,1,0,0,2,3,448,535,51,81,4,5,1,2,0,0,5,3,5,2,0,0,0,1,0,0,0,0,0,0,5,2,0,0,0,1,0,0,0,0 -050,01,057,Alabama,Fayette County,13,14,1088,533,555,453,486,67,62,6,3,0,1,0,0,7,3,460,489,67,64,12,4,0,1,1,0,530,551,450,483,67,61,6,3,0,1,0,0,7,3,457,486,67,63,12,4,0,1,1,0,3,4,3,3,0,1,0,0,0,0,0,0,0,0,3,3,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,15,945,419,526,373,451,36,67,5,2,1,2,0,0,4,4,376,454,37,69,8,4,1,3,1,0,417,523,371,449,36,66,5,2,1,2,0,0,4,4,374,452,37,68,8,4,1,3,1,0,2,3,2,2,0,1,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,16,699,304,395,271,351,30,39,2,2,0,1,0,0,1,2,272,353,30,39,3,4,0,1,0,0,303,393,270,349,30,39,2,2,0,1,0,0,1,2,271,351,30,39,3,4,0,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,17,511,226,285,204,255,15,23,2,1,1,3,0,0,4,3,208,258,15,25,5,2,2,3,1,0,225,285,203,255,15,23,2,1,1,3,0,0,4,3,207,258,15,25,5,2,2,3,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,057,Alabama,Fayette County,13,18,332,125,207,115,168,7,32,3,3,0,0,0,0,0,4,115,172,7,32,3,6,0,1,0,0,124,205,115,168,7,30,2,3,0,0,0,0,0,4,115,172,7,30,2,6,0,1,0,0,1,2,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0 -050,01,059,Alabama,Franklin County,1,0,31704,15828,15876,14607,14794,660,623,264,208,33,46,24,13,240,192,14842,14981,742,706,417,312,47,58,26,17,13138,13856,12257,13022,629,589,69,57,19,32,2,0,162,156,12416,13174,692,659,162,138,31,43,3,4,2690,2020,2350,1772,31,34,195,151,14,14,22,13,78,36,2426,1807,50,47,255,174,16,15,23,13 -050,01,059,Alabama,Franklin County,1,1,2266,1166,1100,1049,984,46,47,30,24,4,7,2,0,35,38,1083,1019,74,77,37,32,6,11,2,0,789,749,714,676,44,39,3,2,2,3,0,0,26,29,739,703,67,64,6,6,4,6,0,0,377,351,335,308,2,8,27,22,2,4,2,0,9,9,344,316,7,13,31,26,2,5,2,0 -050,01,059,Alabama,Franklin County,1,2,2161,1100,1061,1011,989,35,25,29,23,4,3,2,1,19,20,1030,1009,43,38,38,30,5,3,3,1,815,796,758,748,33,23,7,5,3,1,0,0,14,19,772,767,41,35,11,12,4,1,1,0,285,265,253,241,2,2,22,18,1,2,2,1,5,1,258,242,2,3,27,18,1,2,2,1 -050,01,059,Alabama,Franklin County,1,3,2093,1097,996,996,903,53,47,18,17,2,2,2,3,26,24,1022,927,73,62,23,25,3,4,2,3,878,793,796,726,52,42,7,3,1,1,0,0,22,21,818,747,70,57,10,8,2,3,0,0,219,203,200,177,1,5,11,14,1,1,2,3,4,3,204,180,3,5,13,17,1,1,2,3 -050,01,059,Alabama,Franklin County,1,4,2223,1131,1092,1035,985,55,64,17,23,1,2,1,0,22,18,1057,1003,62,74,32,30,1,2,1,1,937,928,868,848,49,62,7,3,0,1,0,0,13,14,881,862,55,69,14,9,0,1,0,1,194,164,167,137,6,2,10,20,1,1,1,0,9,4,176,141,7,5,18,21,1,1,1,0 -050,01,059,Alabama,Franklin County,1,5,1946,1078,868,973,797,54,38,26,16,3,2,1,1,21,14,994,810,60,44,39,24,8,3,1,1,757,713,694,665,49,36,5,3,1,1,0,0,8,8,702,672,50,41,9,6,5,2,0,0,321,155,279,132,5,2,21,13,2,1,1,1,13,6,292,138,10,3,30,18,3,1,1,1 -050,01,059,Alabama,Franklin County,1,6,1979,1031,948,948,878,41,39,25,22,4,6,2,0,11,3,959,881,44,40,33,23,4,7,2,0,715,723,672,681,37,37,1,2,1,2,1,0,3,1,675,682,38,37,3,2,1,3,1,0,316,225,276,197,4,2,24,20,3,4,1,0,8,2,284,199,6,3,30,21,3,4,1,0 -050,01,059,Alabama,Franklin County,1,7,2015,1032,983,941,924,34,27,38,21,6,4,0,3,13,4,953,928,37,29,47,23,8,4,0,3,724,773,681,737,33,24,5,5,3,4,0,0,2,3,683,740,33,25,6,7,4,4,0,0,308,210,260,187,1,3,33,16,3,0,0,3,11,1,270,188,4,4,41,16,4,0,0,3 -050,01,059,Alabama,Franklin County,1,8,2143,1100,1043,1011,973,53,35,17,17,2,4,5,3,12,11,1022,984,53,36,29,27,2,4,6,3,864,869,807,822,48,30,4,6,2,4,0,0,3,7,810,829,48,31,7,12,2,4,0,0,236,174,204,151,5,5,13,11,0,0,5,3,9,4,212,155,5,5,22,15,0,0,6,3 -050,01,059,Alabama,Franklin County,1,9,2043,1055,988,976,924,46,44,19,10,1,1,1,0,12,9,988,933,47,45,30,19,1,1,1,0,910,893,846,838,45,41,7,4,1,1,0,0,11,9,857,847,46,42,17,13,1,1,0,0,145,95,130,86,1,3,12,6,0,0,1,0,1,0,131,86,1,3,13,6,0,0,1,0 -050,01,059,Alabama,Franklin County,1,10,2152,1075,1077,986,1003,48,49,21,12,1,3,4,1,15,9,1001,1012,49,50,34,20,3,3,4,1,953,1022,890,955,45,48,7,7,1,3,0,0,10,9,900,964,46,49,15,15,3,3,0,0,122,55,96,48,3,1,14,5,0,0,4,1,5,0,101,48,3,1,19,5,0,0,4,1 -050,01,059,Alabama,Franklin County,1,11,2133,1085,1048,1017,990,42,38,7,10,1,1,3,1,15,8,1032,998,42,39,22,18,1,2,3,2,1022,1004,966,955,42,38,1,6,0,0,0,0,13,5,979,960,42,39,14,11,0,1,0,1,63,44,51,35,0,0,6,4,1,1,3,1,2,3,53,38,0,0,8,7,1,1,3,1 -050,01,059,Alabama,Franklin County,1,12,1952,918,1034,864,964,38,43,4,6,0,6,1,0,11,15,875,979,40,43,14,20,0,6,1,1,881,1003,829,937,38,42,3,5,0,6,1,0,10,13,839,950,40,42,12,17,0,6,1,1,37,31,35,27,0,1,1,1,0,0,0,0,1,2,36,29,0,1,2,3,0,0,0,0 -050,01,059,Alabama,Franklin County,1,13,1773,866,907,807,864,40,33,6,2,4,2,0,0,9,6,815,870,41,34,15,5,4,4,0,0,841,888,783,846,39,33,6,2,4,2,0,0,9,5,791,851,40,33,15,5,4,4,0,0,25,19,24,18,1,0,0,0,0,0,0,0,0,1,24,19,1,1,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,1,14,1507,699,808,662,777,29,24,5,1,0,1,0,0,3,5,665,782,29,24,8,5,0,1,0,1,682,796,645,765,29,24,5,1,0,1,0,0,3,5,648,770,29,24,8,5,0,1,0,1,17,12,17,12,0,0,0,0,0,0,0,0,0,0,17,12,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,1,15,1249,560,689,537,661,16,24,1,2,0,1,0,0,6,1,543,661,16,25,6,3,1,1,0,0,548,676,525,649,16,24,1,1,0,1,0,0,6,1,531,649,16,25,6,2,1,1,0,0,12,13,12,12,0,0,0,1,0,0,0,0,0,0,12,12,0,0,0,1,0,0,0,0 -050,01,059,Alabama,Franklin County,1,16,930,418,512,396,482,15,24,1,2,0,0,0,0,6,4,401,486,16,24,7,5,0,1,0,0,407,510,386,480,15,24,0,2,0,0,0,0,6,4,391,484,16,24,6,5,0,1,0,0,11,2,10,2,0,0,1,0,0,0,0,0,0,0,10,2,0,0,1,0,0,0,0,0 -050,01,059,Alabama,Franklin County,1,17,643,244,399,235,386,8,10,0,0,0,1,0,0,1,2,236,388,8,10,1,2,0,1,0,0,243,399,234,386,8,10,0,0,0,1,0,0,1,2,235,388,8,10,1,2,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,1,18,496,173,323,163,310,7,12,0,0,0,0,0,0,3,1,166,311,8,12,2,1,0,0,0,0,172,321,163,308,7,12,0,0,0,0,0,0,2,1,165,309,7,12,2,1,0,0,0,0,1,2,0,2,0,0,0,0,0,0,0,0,1,0,1,2,1,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,2,0,31708,15829,15879,14605,14795,663,625,264,208,33,46,24,13,240,192,14840,14982,745,708,417,312,47,58,26,17,13139,13859,12255,13023,632,591,69,57,19,32,2,0,162,156,12414,13175,695,661,162,138,31,43,3,4,2690,2020,2350,1772,31,34,195,151,14,14,22,13,78,36,2426,1807,50,47,255,174,16,15,23,13 -050,01,059,Alabama,Franklin County,2,1,2269,1167,1102,1049,986,47,47,30,24,4,7,2,0,35,38,1083,1021,75,77,37,32,6,11,2,0,790,751,714,678,45,39,3,2,2,3,0,0,26,29,739,705,68,64,6,6,4,6,0,0,377,351,335,308,2,8,27,22,2,4,2,0,9,9,344,316,7,13,31,26,2,5,2,0 -050,01,059,Alabama,Franklin County,2,2,2162,1100,1062,1010,990,36,25,29,23,4,3,2,1,19,20,1029,1010,44,38,38,30,5,3,3,1,815,797,757,749,34,23,7,5,3,1,0,0,14,19,771,768,42,35,11,12,4,1,1,0,285,265,253,241,2,2,22,18,1,2,2,1,5,1,258,242,2,3,27,18,1,2,2,1 -050,01,059,Alabama,Franklin County,2,3,2093,1097,996,996,903,53,47,18,17,2,2,2,3,26,24,1022,927,73,62,23,25,3,4,2,3,878,793,796,726,52,42,7,3,1,1,0,0,22,21,818,747,70,57,10,8,2,3,0,0,219,203,200,177,1,5,11,14,1,1,2,3,4,3,204,180,3,5,13,17,1,1,2,3 -050,01,059,Alabama,Franklin County,2,4,2223,1131,1092,1035,985,55,64,17,23,1,2,1,0,22,18,1057,1003,62,74,32,30,1,2,1,1,937,928,868,848,49,62,7,3,0,1,0,0,13,14,881,862,55,69,14,9,0,1,0,1,194,164,167,137,6,2,10,20,1,1,1,0,9,4,176,141,7,5,18,21,1,1,1,0 -050,01,059,Alabama,Franklin County,2,5,1947,1078,869,973,798,54,38,26,16,3,2,1,1,21,14,994,811,60,44,39,24,8,3,1,1,757,714,694,666,49,36,5,3,1,1,0,0,8,8,702,673,50,41,9,6,5,2,0,0,321,155,279,132,5,2,21,13,2,1,1,1,13,6,292,138,10,3,30,18,3,1,1,1 -050,01,059,Alabama,Franklin County,2,6,1981,1032,949,949,878,41,40,25,22,4,6,2,0,11,3,960,881,44,41,33,23,4,7,2,0,716,724,673,681,37,38,1,2,1,2,1,0,3,1,676,682,38,38,3,2,1,3,1,0,316,225,276,197,4,2,24,20,3,4,1,0,8,2,284,199,6,3,30,21,3,4,1,0 -050,01,059,Alabama,Franklin County,2,7,2012,1031,981,940,922,34,27,38,21,6,4,0,3,13,4,952,926,37,29,47,23,8,4,0,3,723,771,680,735,33,24,5,5,3,4,0,0,2,3,682,738,33,25,6,7,4,4,0,0,308,210,260,187,1,3,33,16,3,0,0,3,11,1,270,188,4,4,41,16,4,0,0,3 -050,01,059,Alabama,Franklin County,2,8,2143,1100,1043,1011,973,53,35,17,17,2,4,5,3,12,11,1022,984,53,36,29,27,2,4,6,3,864,869,807,822,48,30,4,6,2,4,0,0,3,7,810,829,48,31,7,12,2,4,0,0,236,174,204,151,5,5,13,11,0,0,5,3,9,4,212,155,5,5,22,15,0,0,6,3 -050,01,059,Alabama,Franklin County,2,9,2043,1055,988,976,924,46,44,19,10,1,1,1,0,12,9,988,933,47,45,30,19,1,1,1,0,910,893,846,838,45,41,7,4,1,1,0,0,11,9,857,847,46,42,17,13,1,1,0,0,145,95,130,86,1,3,12,6,0,0,1,0,1,0,131,86,1,3,13,6,0,0,1,0 -050,01,059,Alabama,Franklin County,2,10,2152,1075,1077,986,1003,48,49,21,12,1,3,4,1,15,9,1001,1012,49,50,34,20,3,3,4,1,953,1022,890,955,45,48,7,7,1,3,0,0,10,9,900,964,46,49,15,15,3,3,0,0,122,55,96,48,3,1,14,5,0,0,4,1,5,0,101,48,3,1,19,5,0,0,4,1 -050,01,059,Alabama,Franklin County,2,11,2134,1086,1048,1017,989,43,39,7,10,1,1,3,1,15,8,1032,997,43,40,22,18,1,2,3,2,1023,1004,966,954,43,39,1,6,0,0,0,0,13,5,979,959,43,40,14,11,0,1,0,1,63,44,51,35,0,0,6,4,1,1,3,1,2,3,53,38,0,0,8,7,1,1,3,1 -050,01,059,Alabama,Franklin County,2,12,1951,917,1034,863,964,38,43,4,6,0,6,1,0,11,15,874,979,40,43,14,20,0,6,1,1,880,1003,828,937,38,42,3,5,0,6,1,0,10,13,838,950,40,42,12,17,0,6,1,1,37,31,35,27,0,1,1,1,0,0,0,0,1,2,36,29,0,1,2,3,0,0,0,0 -050,01,059,Alabama,Franklin County,2,13,1773,866,907,807,864,40,33,6,2,4,2,0,0,9,6,815,870,41,34,15,5,4,4,0,0,841,888,783,846,39,33,6,2,4,2,0,0,9,5,791,851,40,33,15,5,4,4,0,0,25,19,24,18,1,0,0,0,0,0,0,0,0,1,24,19,1,1,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,2,14,1507,699,808,662,777,29,24,5,1,0,1,0,0,3,5,665,782,29,24,8,5,0,1,0,1,682,796,645,765,29,24,5,1,0,1,0,0,3,5,648,770,29,24,8,5,0,1,0,1,17,12,17,12,0,0,0,0,0,0,0,0,0,0,17,12,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,2,15,1249,560,689,537,661,16,24,1,2,0,1,0,0,6,1,543,661,16,25,6,3,1,1,0,0,548,676,525,649,16,24,1,1,0,1,0,0,6,1,531,649,16,25,6,2,1,1,0,0,12,13,12,12,0,0,0,1,0,0,0,0,0,0,12,12,0,0,0,1,0,0,0,0 -050,01,059,Alabama,Franklin County,2,16,930,418,512,396,482,15,24,1,2,0,0,0,0,6,4,401,486,16,24,7,5,0,1,0,0,407,510,386,480,15,24,0,2,0,0,0,0,6,4,391,484,16,24,6,5,0,1,0,0,11,2,10,2,0,0,1,0,0,0,0,0,0,0,10,2,0,0,1,0,0,0,0,0 -050,01,059,Alabama,Franklin County,2,17,643,244,399,235,386,8,10,0,0,0,1,0,0,1,2,236,388,8,10,1,2,0,1,0,0,243,399,234,386,8,10,0,0,0,1,0,0,1,2,235,388,8,10,1,2,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,2,18,496,173,323,163,310,7,12,0,0,0,0,0,0,3,1,166,311,8,12,2,1,0,0,0,0,172,321,163,308,7,12,0,0,0,0,0,0,2,1,165,309,7,12,2,1,0,0,0,0,1,2,0,2,0,0,0,0,0,0,0,0,1,0,1,2,1,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,3,0,31746,15851,15895,14623,14808,665,628,262,206,34,50,24,13,243,190,14852,14989,765,714,394,301,58,68,32,17,13160,13853,12267,13010,636,593,69,57,21,36,2,0,165,157,12424,13159,705,663,156,138,38,51,6,3,2691,2042,2356,1798,29,35,193,149,13,14,22,13,78,33,2428,1830,60,51,238,163,20,17,26,14 -050,01,059,Alabama,Franklin County,3,1,2276,1175,1101,1060,984,45,49,29,23,5,7,1,0,35,38,1093,1021,70,77,35,32,8,10,4,2,795,740,720,666,43,40,3,2,3,3,0,0,26,29,746,695,63,63,6,9,5,4,1,1,380,361,340,318,2,9,26,21,2,4,1,0,9,9,347,326,7,14,29,23,3,6,3,1 -050,01,059,Alabama,Franklin County,3,2,2164,1102,1062,1010,986,37,28,28,23,4,3,2,1,21,21,1030,1007,49,41,37,27,6,6,2,2,815,795,755,745,35,25,6,4,3,1,0,0,16,20,771,765,44,37,12,8,4,4,0,1,287,267,255,241,2,3,22,19,1,2,2,1,5,1,259,242,5,4,25,19,2,2,2,1 -050,01,059,Alabama,Franklin County,3,3,2103,1109,994,1007,906,53,45,19,17,2,2,2,2,26,22,1032,928,68,57,29,26,4,3,2,2,890,790,807,725,52,41,8,3,1,1,0,0,22,20,828,745,64,52,17,11,3,2,0,0,219,204,200,181,1,4,11,14,1,1,2,2,4,2,204,183,4,5,12,15,1,1,2,2 -050,01,059,Alabama,Franklin County,3,4,2196,1115,1081,1022,976,55,63,16,21,1,2,1,1,20,18,1042,993,64,72,27,29,1,5,1,1,922,911,854,833,50,61,7,2,0,1,0,0,11,14,865,846,57,69,11,8,0,3,0,0,193,170,168,143,5,2,9,19,1,1,1,1,9,4,177,147,7,3,16,21,1,2,1,1 -050,01,059,Alabama,Franklin County,3,5,1949,1072,877,967,808,55,39,25,16,3,2,1,1,21,11,986,818,62,43,38,22,5,3,2,2,762,721,698,674,49,37,5,3,1,1,0,0,9,6,706,679,53,38,10,7,2,2,0,1,310,156,269,134,6,2,20,13,2,1,1,1,12,5,280,139,9,5,28,15,3,1,2,1 -050,01,059,Alabama,Franklin County,3,6,1974,1029,945,946,874,40,39,26,22,4,6,2,0,11,4,957,878,45,41,32,23,4,7,2,0,714,727,671,684,37,37,1,2,1,2,1,0,3,2,674,686,39,38,2,2,1,3,1,0,315,218,275,190,3,2,25,20,3,4,1,0,8,2,283,192,6,3,30,21,3,4,1,0 -050,01,059,Alabama,Franklin County,3,7,2018,1038,980,946,920,35,29,37,19,6,5,0,3,14,4,960,923,42,31,45,22,6,5,0,3,733,767,688,729,34,26,5,4,4,5,0,0,2,3,690,731,36,28,5,6,4,5,0,0,305,213,258,191,1,3,32,15,2,0,0,3,12,1,270,192,6,3,40,16,2,0,0,3 -050,01,059,Alabama,Franklin County,3,8,2130,1090,1040,1003,969,49,35,18,17,2,5,5,3,13,11,1015,979,54,40,26,24,4,5,5,3,850,864,795,816,45,30,4,6,2,5,0,0,4,7,799,822,46,33,7,11,2,5,0,0,240,176,208,153,4,5,14,11,0,0,5,3,9,4,216,157,8,7,19,13,2,0,5,3 -050,01,059,Alabama,Franklin County,3,9,2040,1050,990,971,926,47,43,18,11,1,1,1,0,12,9,983,935,50,44,25,19,3,1,1,0,906,896,842,841,46,40,6,5,1,1,0,0,11,9,853,850,49,41,12,13,3,1,0,0,144,94,129,85,1,3,12,6,0,0,1,0,1,0,130,85,1,3,13,6,0,0,1,0 -050,01,059,Alabama,Franklin County,3,10,2166,1084,1082,993,1008,49,48,22,13,1,3,5,1,14,9,1007,1015,51,50,33,20,2,5,6,1,958,1024,894,957,46,47,8,8,1,3,0,0,9,9,903,964,48,49,16,15,1,5,0,0,126,58,99,51,3,1,14,5,0,0,5,1,5,0,104,51,3,1,17,5,1,0,6,1 -050,01,059,Alabama,Franklin County,3,11,2137,1082,1055,1013,994,43,39,7,10,1,2,3,1,15,9,1025,1003,46,42,19,16,4,2,3,1,1020,1011,963,958,43,39,1,6,0,1,0,0,13,7,974,965,44,40,13,12,2,1,0,0,62,44,50,36,0,0,6,4,1,1,3,1,2,2,51,38,2,2,6,4,2,1,3,1 -050,01,059,Alabama,Franklin County,3,12,1960,924,1036,868,966,39,43,4,6,0,6,1,0,12,15,879,980,41,45,13,18,2,8,1,0,886,1006,832,940,39,42,3,5,0,6,1,0,11,13,842,952,41,44,11,15,2,8,1,0,38,30,36,26,0,1,1,1,0,0,0,0,1,2,37,28,0,1,2,3,0,0,0,0 -050,01,059,Alabama,Franklin County,3,13,1795,880,915,819,869,42,34,6,3,4,3,0,0,9,6,828,875,42,36,13,6,6,4,0,0,852,894,792,849,41,34,6,3,4,3,0,0,9,5,801,854,41,36,13,5,6,4,0,0,28,21,27,20,1,0,0,0,0,0,0,0,0,1,27,21,1,0,0,1,0,0,0,0 -050,01,059,Alabama,Franklin County,3,14,1513,699,814,661,784,30,23,5,1,0,1,0,0,3,5,663,789,31,23,8,5,0,2,0,0,681,801,643,771,30,23,5,1,0,1,0,0,3,5,645,776,31,23,8,5,0,2,0,0,18,13,18,13,0,0,0,0,0,0,0,0,0,0,18,13,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,3,15,1251,562,689,538,661,17,24,1,2,0,1,0,0,6,1,543,662,18,24,6,3,1,1,1,0,550,676,526,649,17,24,1,1,0,1,0,0,6,1,531,650,18,24,6,2,1,1,1,0,12,13,12,12,0,0,0,1,0,0,0,0,0,0,12,12,0,0,0,1,0,0,0,0 -050,01,059,Alabama,Franklin County,3,16,928,417,511,395,481,15,24,1,2,0,0,0,0,6,4,400,485,17,24,6,6,0,0,1,0,406,509,385,479,15,24,0,2,0,0,0,0,6,4,390,483,17,24,5,6,0,0,1,0,11,2,10,2,0,0,1,0,0,0,0,0,0,0,10,2,0,0,1,0,0,0,0,0 -050,01,059,Alabama,Franklin County,3,17,642,247,395,238,381,7,11,0,0,0,1,0,0,2,2,240,383,7,11,0,2,2,1,1,0,245,395,236,381,7,11,0,0,0,1,0,0,2,2,238,383,7,11,0,2,2,1,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,3,18,504,176,328,166,315,7,12,0,0,0,0,0,0,3,1,169,315,8,13,2,1,0,0,0,0,175,326,166,313,7,12,0,0,0,0,0,0,2,1,168,313,7,13,2,1,0,0,0,0,1,2,0,2,0,0,0,0,0,0,0,0,1,0,1,2,1,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,4,0,31776,15851,15925,14617,14845,683,630,259,199,35,55,25,13,232,183,14836,15016,781,724,383,285,57,76,28,18,13127,13822,12242,12986,623,581,70,62,22,40,3,0,167,153,12400,13129,694,657,157,136,39,57,6,2,2724,2103,2375,1859,60,49,189,137,13,15,22,13,65,30,2436,1887,87,67,226,149,18,19,22,16 -050,01,059,Alabama,Franklin County,4,1,2222,1158,1064,1055,962,43,43,21,16,5,5,1,0,33,38,1086,997,68,69,28,27,8,9,1,1,789,717,717,647,42,35,2,3,3,2,0,0,25,30,741,674,62,59,6,9,5,6,0,0,369,347,338,315,1,8,19,13,2,3,1,0,8,8,345,323,6,10,22,18,3,3,1,1 -050,01,059,Alabama,Franklin County,4,2,2134,1081,1053,993,977,35,29,27,19,3,5,1,1,22,22,1015,998,51,46,33,23,3,7,1,1,793,794,735,744,33,25,4,3,2,2,0,0,19,20,754,763,47,40,9,7,2,4,0,0,288,259,258,233,2,4,23,16,1,3,1,1,3,2,261,235,4,6,24,16,1,3,1,1 -050,01,059,Alabama,Franklin County,4,3,2142,1138,1004,1037,930,48,34,24,18,2,4,4,1,23,17,1059,946,63,48,32,23,3,4,4,1,903,799,826,747,46,31,9,3,1,2,1,0,20,16,845,762,60,44,16,7,1,2,1,0,235,205,211,183,2,3,15,15,1,2,3,1,3,1,214,184,3,4,16,16,2,2,3,1 -050,01,059,Alabama,Franklin County,4,4,2141,1078,1063,981,963,59,62,17,17,2,1,1,2,18,18,999,981,65,71,26,24,4,2,2,4,871,866,804,793,44,58,9,2,1,0,0,0,13,13,817,806,49,63,14,9,3,1,1,1,207,197,177,170,15,4,8,15,1,1,1,2,5,5,182,175,16,8,12,15,1,1,1,3 -050,01,059,Alabama,Franklin County,4,5,2020,1080,940,966,864,72,44,20,17,2,2,0,1,20,12,986,875,77,51,32,24,5,4,0,2,794,770,728,715,47,43,5,3,1,2,0,0,13,7,741,722,50,48,12,7,4,3,0,0,286,170,238,149,25,1,15,14,1,0,0,1,7,5,245,153,27,3,20,17,1,1,0,2 -050,01,059,Alabama,Franklin County,4,6,2019,1059,960,971,887,41,38,26,23,4,9,3,0,14,3,982,890,44,38,36,24,7,11,4,0,734,757,692,710,36,36,2,4,0,4,1,0,3,3,694,713,36,36,3,5,2,6,2,0,325,203,279,177,5,2,24,19,4,5,2,0,11,0,288,177,8,2,33,19,5,5,2,0 -050,01,059,Alabama,Franklin County,4,7,2018,1048,970,956,907,38,33,35,20,7,5,0,1,12,4,968,911,42,36,42,20,8,6,0,1,779,753,729,711,38,30,5,4,5,5,0,0,2,3,731,714,38,32,6,4,6,6,0,0,269,217,227,196,0,3,30,16,2,0,0,1,10,1,237,197,4,4,36,16,2,0,0,1 -050,01,059,Alabama,Franklin County,4,8,2026,1017,1009,938,944,39,31,22,16,3,5,4,4,11,9,949,953,43,36,28,22,4,6,4,4,762,821,718,781,35,26,3,4,3,5,0,0,3,5,721,786,35,27,6,8,3,5,0,0,255,188,220,163,4,5,19,12,0,0,4,4,8,4,228,167,8,9,22,14,1,1,4,4 -050,01,059,Alabama,Franklin County,4,9,2120,1080,1040,1000,956,52,55,15,15,0,2,2,1,11,11,1011,967,55,55,22,25,1,3,2,1,913,920,850,861,50,38,4,8,0,2,0,0,9,11,859,872,52,38,10,18,1,3,0,0,167,120,150,95,2,17,11,7,0,0,2,1,2,0,152,95,3,17,12,7,0,0,2,1 -050,01,059,Alabama,Franklin County,4,10,2167,1101,1066,1007,997,50,48,25,12,2,1,4,1,13,7,1019,1004,55,50,33,15,3,3,4,1,973,997,903,932,48,48,10,9,2,1,0,0,10,7,913,939,51,50,16,12,3,3,0,0,128,69,104,65,2,0,15,3,0,0,4,1,3,0,106,65,4,0,17,3,0,0,4,1 -050,01,059,Alabama,Franklin County,4,11,2128,1068,1060,999,996,44,40,8,11,1,4,3,1,13,8,1009,1003,47,43,19,15,3,6,3,1,1001,1016,945,961,43,39,2,6,0,3,0,0,11,7,953,967,46,41,12,10,1,5,0,0,67,44,54,35,1,1,6,5,1,1,3,1,2,1,56,36,1,2,7,5,2,1,3,1 -050,01,059,Alabama,Franklin County,4,12,1972,947,1025,884,965,42,37,6,5,0,5,2,0,13,13,897,976,43,39,16,16,2,7,2,0,900,994,843,938,42,36,3,4,0,5,1,0,11,11,854,948,42,38,12,14,2,5,1,0,47,31,41,27,0,1,3,1,0,0,1,0,2,2,43,28,1,1,4,2,0,2,1,0 -050,01,059,Alabama,Franklin County,4,13,1851,915,936,854,880,44,40,5,4,3,3,0,0,9,9,863,888,46,43,11,10,4,3,0,1,879,914,819,859,43,40,5,4,3,3,0,0,9,8,828,866,45,42,11,10,4,3,0,1,36,22,35,21,1,0,0,0,0,0,0,0,0,1,35,22,1,1,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,4,14,1497,676,821,638,790,28,22,6,2,1,2,0,0,3,5,640,795,29,23,9,7,1,2,0,0,660,809,622,778,28,22,6,2,1,2,0,0,3,5,624,783,29,23,9,7,1,2,0,0,16,12,16,12,0,0,0,0,0,0,0,0,0,0,16,12,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,4,15,1249,560,689,533,662,21,24,1,2,0,1,0,0,5,0,538,662,21,24,5,2,0,1,1,0,546,675,519,649,21,24,1,1,0,1,0,0,5,0,524,649,21,24,5,1,0,1,1,0,14,14,14,13,0,0,0,1,0,0,0,0,0,0,14,13,0,0,0,1,0,0,0,0 -050,01,059,Alabama,Franklin County,4,16,923,415,508,397,475,12,27,1,2,0,0,0,0,5,4,402,477,12,29,6,6,0,0,0,0,405,504,388,471,12,27,0,2,0,0,0,0,5,4,393,473,12,29,5,6,0,0,0,0,10,4,9,4,0,0,1,0,0,0,0,0,0,0,9,4,0,0,1,0,0,0,0,0 -050,01,059,Alabama,Franklin County,4,17,616,249,367,237,354,8,11,0,0,0,0,0,0,4,2,239,356,11,11,3,1,0,1,0,0,245,367,233,354,8,11,0,0,0,0,0,0,4,2,235,356,11,11,3,1,0,1,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,4,18,531,181,350,171,336,7,12,0,0,0,1,0,0,3,1,174,337,9,12,2,1,1,1,0,0,180,349,171,335,7,12,0,0,0,1,0,0,2,1,173,336,8,12,2,1,1,1,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,5,0,31699,15789,15910,14473,14770,742,656,258,201,37,58,24,26,255,199,14718,14955,840,758,397,295,70,71,29,34,13048,13788,12139,12916,628,585,71,62,24,44,2,13,184,168,12314,13072,708,666,163,146,45,54,6,19,2741,2122,2334,1854,114,71,187,139,13,14,22,13,71,31,2404,1883,132,92,234,149,25,17,23,15 -050,01,059,Alabama,Franklin County,5,1,2162,1123,1039,1022,940,41,42,18,15,4,2,0,0,38,40,1060,979,68,71,30,24,7,5,0,1,773,724,701,654,38,34,2,3,3,1,0,0,29,32,730,685,60,60,8,8,4,3,0,1,350,315,321,286,3,8,16,12,1,1,0,0,9,8,330,294,8,11,22,16,3,2,0,0 -050,01,059,Alabama,Franklin County,5,2,2166,1103,1063,1008,973,35,29,21,20,4,10,2,1,33,30,1040,1001,58,51,28,27,8,11,2,3,805,792,740,734,32,24,3,2,2,5,0,0,28,27,767,759,52,43,9,9,5,6,0,2,298,271,268,239,3,5,18,18,2,5,2,1,5,3,273,242,6,8,19,18,3,5,2,1 -050,01,059,Alabama,Franklin County,5,3,2146,1109,1037,1019,958,37,37,30,17,2,4,2,1,19,20,1038,977,49,49,36,23,3,6,2,2,859,826,796,765,34,35,10,4,2,2,0,0,17,20,813,784,45,47,15,10,3,4,0,1,250,211,223,193,3,2,20,13,0,2,2,1,2,0,225,193,4,2,21,13,0,2,2,1 -050,01,059,Alabama,Franklin County,5,4,2101,1081,1020,963,925,77,61,17,16,3,1,2,2,19,15,981,939,83,70,29,23,4,1,3,2,860,808,789,741,48,55,8,2,1,0,0,0,14,10,802,751,54,60,15,7,2,0,1,0,221,212,174,184,29,6,9,14,2,1,2,2,5,5,179,188,29,10,14,16,2,1,2,2 -050,01,059,Alabama,Franklin County,5,5,2112,1118,994,970,910,102,51,20,19,2,2,0,1,24,11,993,920,106,58,34,25,7,3,2,2,830,826,761,766,47,50,5,2,1,2,0,0,16,6,776,771,51,53,12,6,5,2,2,0,288,168,209,144,55,1,15,17,1,0,0,1,8,5,217,149,55,5,22,19,2,1,0,2 -050,01,059,Alabama,Franklin County,5,6,1932,1030,902,941,826,46,39,22,22,3,7,2,0,16,8,957,833,49,43,30,27,8,7,2,0,725,719,679,667,38,37,3,5,0,3,1,0,4,7,683,673,40,40,4,10,1,3,1,0,305,183,262,159,8,2,19,17,3,4,1,0,12,1,274,160,9,3,26,17,7,4,1,0 -050,01,059,Alabama,Franklin County,5,7,1973,1000,973,908,901,38,31,33,20,7,4,1,13,13,4,920,905,42,33,42,21,10,5,1,13,755,764,706,715,36,27,5,2,4,4,0,13,4,3,710,718,38,28,6,3,5,5,0,13,245,209,202,186,2,4,28,18,3,0,1,0,9,1,210,187,4,5,36,18,5,0,1,0 -050,01,059,Alabama,Franklin County,5,8,2005,1007,998,913,931,50,27,27,18,4,7,2,5,11,10,924,940,53,30,34,22,5,9,2,7,757,807,700,765,47,22,3,7,4,7,0,0,3,6,703,771,47,23,5,10,5,8,0,1,250,191,213,166,3,5,24,11,0,0,2,5,8,4,221,169,6,7,29,12,0,1,2,6 -050,01,059,Alabama,Franklin County,5,9,2151,1094,1057,1002,960,59,67,15,14,0,4,4,1,14,11,1015,970,63,69,25,23,1,5,4,1,911,907,842,853,56,34,4,5,0,4,0,0,9,11,850,863,59,36,11,14,0,5,0,0,183,150,160,107,3,33,11,9,0,0,4,1,5,0,165,107,4,33,14,9,1,0,4,1 -050,01,059,Alabama,Franklin County,5,10,2108,1077,1031,993,970,44,47,23,8,3,0,2,0,12,6,1005,975,46,49,32,12,5,1,2,0,946,961,882,902,41,46,10,7,3,0,0,0,10,6,892,907,43,48,17,11,5,1,0,0,131,70,111,68,3,1,13,1,0,0,2,0,2,0,113,68,3,1,15,1,0,0,2,0 -050,01,059,Alabama,Franklin County,5,11,2109,1068,1041,991,966,50,49,9,13,1,4,5,2,12,7,1003,973,54,51,18,17,2,5,5,2,988,994,928,930,49,47,2,7,0,4,0,0,9,6,937,936,53,48,9,11,0,5,0,0,80,47,63,36,1,2,7,6,1,0,5,2,3,1,66,37,1,3,9,6,2,0,5,2 -050,01,059,Alabama,Franklin County,5,12,2011,965,1046,898,986,44,36,9,7,0,5,1,0,13,12,911,998,46,39,18,16,1,5,2,0,913,1004,855,950,44,34,3,5,0,4,0,0,11,11,866,961,45,36,12,14,1,4,0,0,52,42,43,36,0,2,6,2,0,1,1,0,2,1,45,37,1,3,6,2,0,1,2,0 -050,01,059,Alabama,Franklin County,5,13,1802,878,924,826,859,36,45,5,5,2,3,1,0,8,12,833,870,36,47,11,16,5,3,1,0,838,906,787,843,35,45,5,5,2,3,1,0,8,10,794,852,35,46,11,15,5,3,1,0,40,18,39,16,1,0,0,0,0,0,0,0,0,2,39,18,1,1,0,1,0,0,0,0 -050,01,059,Alabama,Franklin County,5,14,1548,708,840,664,813,30,18,6,2,2,3,0,0,6,4,669,815,31,20,12,5,2,3,0,1,690,824,646,797,30,18,6,2,2,3,0,0,6,4,651,799,31,20,12,5,2,3,0,1,18,16,18,16,0,0,0,0,0,0,0,0,0,0,18,16,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,5,15,1281,575,706,545,679,26,22,1,3,0,0,0,0,3,2,548,680,26,23,4,5,0,0,0,0,562,696,532,670,26,22,1,2,0,0,0,0,3,2,535,671,26,23,4,4,0,0,0,0,13,10,13,9,0,0,0,1,0,0,0,0,0,0,13,9,0,0,0,1,0,0,0,0 -050,01,059,Alabama,Franklin County,5,16,943,416,527,397,490,11,30,2,2,0,1,0,0,6,4,400,494,13,30,8,6,1,1,0,0,406,519,388,482,11,30,1,2,0,1,0,0,6,4,391,486,13,30,7,6,1,1,0,0,10,8,9,8,0,0,1,0,0,0,0,0,0,0,9,8,0,0,1,0,0,0,0,0 -050,01,059,Alabama,Franklin County,5,17,630,256,374,241,360,10,12,0,0,0,0,0,0,5,2,246,362,10,12,4,2,1,0,1,0,251,374,236,360,10,12,0,0,0,0,0,0,5,2,241,362,10,12,4,2,1,0,1,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,5,18,519,181,338,172,323,6,13,0,0,0,1,0,0,3,1,175,324,7,13,2,1,0,1,0,0,179,337,171,322,6,13,0,0,0,1,0,0,2,1,173,323,6,13,2,1,0,1,0,0,2,1,1,1,0,0,0,0,0,0,0,0,1,0,2,1,1,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,6,0,31566,15774,15792,14378,14634,793,657,259,194,46,61,24,41,274,205,14633,14825,918,753,401,288,74,88,32,46,12995,13652,12052,12770,643,572,74,65,33,47,3,28,190,170,12231,12927,726,649,173,148,51,68,7,31,2779,2140,2326,1864,150,85,185,129,13,14,21,13,84,35,2402,1898,192,104,228,140,23,20,25,15 -050,01,059,Alabama,Franklin County,6,1,2124,1105,1019,1003,930,39,41,16,10,4,2,0,0,43,36,1046,966,70,64,28,17,7,7,1,1,766,716,699,650,34,32,2,4,3,1,0,0,28,29,727,679,56,51,8,9,4,5,0,1,339,303,304,280,5,9,14,6,1,1,0,0,15,7,319,287,14,13,20,8,3,2,1,0 -050,01,059,Alabama,Franklin County,6,2,2147,1087,1060,973,965,45,28,22,21,6,11,1,1,40,34,1013,997,70,54,34,29,9,15,2,2,783,776,706,716,43,25,2,2,4,6,0,0,28,27,734,741,61,46,9,9,6,8,1,0,304,284,267,249,2,3,20,19,2,5,1,1,12,7,279,256,9,8,25,20,3,7,1,2 -050,01,059,Alabama,Franklin County,6,3,2136,1094,1042,1003,961,38,38,27,21,2,4,3,3,21,15,1023,974,52,47,34,28,3,5,3,3,838,824,773,760,35,36,9,8,2,2,0,3,19,15,791,773,47,45,16,15,3,3,0,3,256,218,230,201,3,2,18,13,0,2,3,0,2,0,232,201,5,2,18,13,0,2,3,0 -050,01,059,Alabama,Franklin County,6,4,2020,1063,957,943,869,75,49,19,16,4,1,1,4,21,18,961,886,88,57,28,25,5,3,2,4,833,756,763,697,43,42,9,2,2,0,0,1,16,14,776,711,53,48,16,9,3,1,1,1,230,201,180,172,32,7,10,14,2,1,1,3,5,4,185,175,35,9,12,16,2,2,1,3 -050,01,059,Alabama,Franklin County,6,5,2165,1160,1005,989,912,131,56,18,17,3,3,1,1,18,16,1006,928,138,64,28,21,5,5,1,3,852,833,783,763,51,55,4,2,2,3,0,0,12,10,795,773,55,60,10,5,4,4,0,1,308,172,206,149,80,1,14,15,1,0,1,1,6,6,211,155,83,4,18,16,1,1,1,2 -050,01,059,Alabama,Franklin County,6,6,1938,1032,906,911,835,72,36,22,18,4,9,2,0,21,8,932,840,80,40,35,21,5,12,2,1,740,749,669,699,54,35,5,4,2,5,1,0,9,6,678,702,57,38,12,6,2,8,1,1,292,157,242,136,18,1,17,14,2,4,1,0,12,2,254,138,23,2,23,15,3,4,1,0 -050,01,059,Alabama,Franklin County,6,7,1943,1007,936,920,858,35,31,29,18,8,4,2,23,13,2,932,860,38,32,39,19,9,4,2,23,785,748,737,690,34,27,4,2,5,4,1,23,4,2,741,692,34,28,8,3,5,4,1,23,222,188,183,168,1,4,25,16,3,0,1,0,9,0,191,168,4,4,31,16,4,0,1,0 -050,01,059,Alabama,Franklin County,6,8,1974,997,977,903,910,46,26,30,17,4,6,1,6,13,12,912,921,49,29,39,25,9,8,3,6,744,780,692,737,43,22,2,6,3,6,0,1,4,8,695,744,43,24,4,11,5,8,1,1,253,197,211,173,3,4,28,11,1,0,1,5,9,4,217,177,6,5,35,14,4,0,2,5 -050,01,059,Alabama,Franklin County,6,9,2159,1108,1051,1021,942,54,78,14,14,2,6,4,1,13,10,1032,951,60,80,22,20,4,9,4,1,885,878,821,827,51,31,4,5,2,6,0,0,7,9,827,835,54,33,9,11,3,8,0,0,223,173,200,115,3,47,10,9,0,0,4,1,6,1,205,116,6,47,13,9,1,1,4,1 -050,01,059,Alabama,Franklin County,6,10,2066,1047,1019,966,962,38,41,26,9,4,0,2,0,11,7,976,969,40,42,36,15,4,0,2,0,925,927,859,875,38,38,14,7,4,0,0,0,10,7,869,882,39,39,23,13,4,0,0,0,122,92,107,87,0,3,12,2,0,0,2,0,1,0,107,87,1,3,13,2,0,0,2,0 -050,01,059,Alabama,Franklin County,6,11,2112,1059,1053,975,978,52,51,13,12,1,4,4,2,14,6,988,984,54,52,24,14,2,7,5,2,966,1000,903,935,50,49,3,7,0,4,0,0,10,5,913,940,51,49,11,9,1,7,0,0,93,53,72,43,2,2,10,5,1,0,4,2,4,1,75,44,3,3,13,5,1,0,5,2 -050,01,059,Alabama,Franklin County,6,12,2018,975,1043,912,979,43,40,8,8,0,3,2,0,10,13,921,991,45,42,14,19,3,4,3,0,927,1000,874,944,43,38,2,4,0,2,0,0,8,12,881,955,44,40,8,14,2,3,0,0,48,43,38,35,0,2,6,4,0,1,2,0,2,1,40,36,1,2,6,5,1,1,3,0 -050,01,059,Alabama,Franklin County,6,13,1776,842,934,793,866,33,45,5,6,0,4,1,0,10,13,802,879,36,48,11,15,2,5,1,0,802,913,754,847,32,45,5,6,0,4,1,0,10,11,763,858,35,46,11,15,2,5,1,0,40,21,39,19,1,0,0,0,0,0,0,0,0,2,39,21,1,2,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,6,14,1535,740,795,687,766,37,21,5,2,4,1,0,0,7,5,694,770,37,24,10,5,6,1,0,0,718,779,665,750,37,21,5,2,4,1,0,0,7,5,672,754,37,24,10,5,6,1,0,0,22,16,22,16,0,0,0,0,0,0,0,0,0,0,22,16,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,6,15,1335,595,740,559,713,29,20,3,2,0,1,0,0,4,4,563,716,29,21,7,6,0,1,0,0,585,729,549,703,29,20,3,1,0,1,0,0,4,4,553,706,29,21,7,5,0,1,0,0,10,11,10,10,0,0,0,1,0,0,0,0,0,0,10,10,0,0,0,1,0,0,0,0 -050,01,059,Alabama,Franklin County,6,16,967,423,544,406,507,10,31,2,1,0,1,0,0,5,4,409,510,12,32,6,5,0,1,1,0,415,535,399,498,10,31,1,1,0,1,0,0,5,4,402,501,12,32,5,5,0,1,1,0,8,9,7,9,0,0,1,0,0,0,0,0,0,0,7,9,0,0,1,0,0,0,0,0 -050,01,059,Alabama,Franklin County,6,17,641,265,376,251,359,8,13,0,2,0,0,0,0,6,2,256,361,10,13,4,4,1,0,0,0,258,375,244,358,8,13,0,2,0,0,0,0,6,2,249,360,10,13,4,4,1,0,0,0,7,1,7,1,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,6,18,510,175,335,163,322,8,12,0,0,0,1,0,0,4,0,167,322,10,12,2,0,0,1,0,0,173,334,162,321,8,12,0,0,0,1,0,0,3,0,165,321,9,12,2,0,0,1,0,0,2,1,1,1,0,0,0,0,0,0,0,0,1,0,2,1,1,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,7,0,31572,15789,15783,14380,14622,794,630,259,194,59,70,24,50,273,217,14638,14830,905,732,407,309,84,79,33,53,12937,13600,11975,12711,640,544,79,68,46,57,3,36,194,184,12159,12887,723,634,180,161,63,65,9,39,2852,2183,2405,1911,154,86,180,126,13,13,21,14,79,33,2479,1943,182,98,227,148,21,14,24,14 -050,01,059,Alabama,Franklin County,7,1,2142,1124,1018,1029,927,39,35,11,8,6,3,0,1,39,44,1066,970,68,68,21,20,7,4,1,1,798,736,727,661,31,30,3,3,6,2,0,0,31,40,757,700,55,61,10,13,7,3,0,0,326,282,302,266,8,5,8,5,0,1,0,1,8,4,309,270,13,7,11,7,0,1,1,1 -050,01,059,Alabama,Franklin County,7,2,2158,1099,1059,988,958,42,34,21,20,8,12,1,0,39,35,1025,990,66,59,35,32,10,13,2,0,790,760,717,693,39,28,3,4,5,7,0,0,26,28,742,718,57,49,9,13,7,8,1,0,309,299,271,265,3,6,18,16,3,5,1,0,13,7,283,272,9,10,26,19,3,5,1,0 -050,01,059,Alabama,Franklin County,7,3,2131,1082,1049,992,976,34,31,24,23,5,3,3,3,24,13,1013,989,49,39,33,26,6,5,5,3,820,826,758,775,31,28,6,8,5,1,0,2,20,12,775,787,45,36,12,10,6,3,2,2,262,223,234,201,3,3,18,15,0,2,3,1,4,1,238,202,4,3,21,16,0,2,3,1 -050,01,059,Alabama,Franklin County,7,4,1980,1067,913,965,826,54,46,21,15,4,2,1,5,22,19,987,844,63,54,30,25,7,4,2,5,826,724,757,662,38,39,12,2,2,2,0,2,17,17,774,678,46,47,18,11,4,3,1,2,241,189,208,164,16,7,9,13,2,0,1,3,5,2,213,166,17,7,12,14,3,1,1,3 -050,01,059,Alabama,Franklin County,7,5,2168,1120,1048,951,965,128,44,18,19,3,3,1,0,19,17,968,982,136,52,30,27,4,3,1,1,822,858,752,798,49,43,5,3,3,2,0,0,13,12,763,810,55,49,13,8,4,2,0,1,298,190,199,167,79,1,13,16,0,1,1,0,6,5,205,172,81,3,17,19,0,1,1,0 -050,01,059,Alabama,Franklin County,7,6,1973,1076,897,941,831,91,35,21,15,5,6,2,0,16,10,957,841,96,39,31,20,8,7,2,0,782,749,714,700,54,34,4,4,2,4,1,0,7,7,721,707,56,36,8,8,3,5,1,0,294,148,227,131,37,1,17,11,3,2,1,0,9,3,236,134,40,3,23,12,5,2,1,0 -050,01,059,Alabama,Franklin County,7,7,1943,983,960,899,866,34,36,27,19,8,7,2,31,13,1,912,867,38,36,35,20,9,7,2,31,743,762,693,689,34,32,5,3,5,6,1,31,5,1,698,690,36,32,7,4,6,6,1,31,240,198,206,177,0,4,22,16,3,1,1,0,8,0,214,177,2,4,28,16,3,1,1,0 -050,01,059,Alabama,Franklin County,7,8,1941,1004,937,897,865,49,29,36,19,7,11,1,4,14,9,911,873,53,33,44,25,9,11,1,4,756,751,695,702,47,25,4,6,6,11,0,1,4,6,699,707,49,29,6,9,6,11,0,1,248,186,202,163,2,4,32,13,1,0,1,3,10,3,212,166,4,4,38,16,3,0,1,3 -050,01,059,Alabama,Franklin County,7,9,2194,1110,1084,1020,983,53,67,16,13,4,6,4,4,13,11,1030,994,55,68,26,22,6,7,6,4,854,903,792,854,50,31,4,4,4,6,0,0,4,8,796,862,50,32,8,10,4,7,0,0,256,181,228,129,3,36,12,9,0,0,4,4,9,3,234,132,5,36,18,12,2,0,6,4 -050,01,059,Alabama,Franklin County,7,10,2009,1027,982,943,913,42,50,23,8,3,1,1,0,15,10,958,922,44,53,33,16,5,1,2,0,911,870,840,819,42,35,12,6,3,1,0,0,14,9,854,828,43,37,22,13,5,1,1,0,116,112,103,94,0,15,11,2,0,0,1,0,1,1,104,94,1,16,11,3,0,0,1,0 -050,01,059,Alabama,Franklin County,7,11,2092,1045,1047,962,975,50,45,17,13,1,5,4,2,11,7,973,982,54,48,24,17,1,5,4,2,935,980,875,917,48,43,5,8,0,5,0,0,7,7,882,924,49,46,11,12,0,5,0,0,110,67,87,58,2,2,12,5,1,0,4,2,4,0,91,58,5,2,13,5,1,0,4,2 -050,01,059,Alabama,Franklin County,7,12,2018,1018,1000,950,944,45,35,7,8,0,1,3,0,13,12,961,956,48,36,18,19,1,1,3,0,955,961,898,912,45,34,1,5,0,0,0,0,11,10,907,922,48,35,11,14,0,0,0,0,63,39,52,32,0,1,6,3,0,1,3,0,2,2,54,34,0,1,7,5,1,1,3,0 -050,01,059,Alabama,Franklin County,7,13,1816,836,980,783,909,37,46,6,6,1,6,1,0,8,13,791,922,37,48,12,18,3,6,1,0,802,949,750,882,37,45,5,5,1,6,1,0,8,11,758,893,37,46,11,15,3,6,1,0,34,31,33,27,0,1,1,1,0,0,0,0,0,2,33,29,0,2,1,3,0,0,0,0 -050,01,059,Alabama,Franklin County,7,14,1561,758,803,700,769,40,25,5,3,4,1,0,0,9,5,709,773,40,26,14,7,4,1,0,1,730,787,673,753,39,25,5,3,4,1,0,0,9,5,682,757,39,26,14,7,4,1,0,1,28,16,27,16,1,0,0,0,0,0,0,0,0,0,27,16,1,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,7,15,1307,577,730,542,703,28,19,4,2,0,1,0,0,3,5,545,707,28,20,6,7,1,1,0,0,565,718,530,692,28,19,4,1,0,1,0,0,3,5,533,696,28,20,6,6,1,1,0,0,12,12,12,11,0,0,0,1,0,0,0,0,0,0,12,11,0,0,0,1,0,0,0,0 -050,01,059,Alabama,Franklin County,7,16,968,411,557,393,531,11,21,2,1,0,1,0,0,5,3,397,534,12,21,7,4,1,1,1,0,406,549,389,523,11,21,1,1,0,1,0,0,5,3,393,526,12,21,6,4,1,1,1,0,5,8,4,8,0,0,1,0,0,0,0,0,0,0,4,8,0,0,1,0,0,0,0,0 -050,01,059,Alabama,Franklin County,7,17,663,275,388,260,365,8,18,0,2,0,0,0,0,7,3,267,368,9,18,5,4,2,1,0,1,266,387,251,364,8,18,0,2,0,0,0,0,7,3,258,367,9,18,5,4,2,1,0,1,9,1,9,1,0,0,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,7,18,508,177,331,165,316,9,14,0,0,0,1,0,0,3,0,168,316,9,14,3,0,0,1,0,0,176,330,164,315,9,14,0,0,0,1,0,0,3,0,167,315,9,14,3,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,8,0,31532,15834,15698,14362,14543,835,626,262,196,64,66,24,52,287,215,14627,14748,960,719,417,306,82,87,37,56,12916,13487,11912,12616,672,536,74,67,51,53,3,35,204,180,12104,12789,767,617,177,157,63,69,11,37,2918,2211,2450,1927,163,90,188,129,13,13,21,17,83,35,2523,1959,193,102,240,149,19,18,26,19 -050,01,059,Alabama,Franklin County,8,1,2103,1100,1003,994,920,45,37,13,5,3,3,0,2,45,36,1038,955,76,65,23,12,6,5,2,3,778,724,703,654,32,33,3,4,3,3,0,0,37,30,740,683,59,58,9,8,5,4,2,1,322,279,291,266,13,4,10,1,0,0,0,2,8,6,298,272,17,7,14,4,1,1,0,2 -050,01,059,Alabama,Franklin County,8,2,2173,1102,1071,998,969,40,43,19,21,9,9,1,0,35,29,1031,997,65,61,30,31,9,11,3,1,779,766,708,700,35,33,3,4,7,5,0,0,26,24,734,723,55,51,8,11,7,6,2,0,323,305,290,269,5,10,16,17,2,4,1,0,9,5,297,274,10,10,22,20,2,5,1,1 -050,01,059,Alabama,Franklin County,8,3,2150,1101,1049,1001,977,40,21,23,25,6,6,2,3,29,17,1026,994,59,30,31,32,11,7,3,3,830,825,763,777,37,19,4,7,5,4,0,2,21,16,782,793,51,28,9,13,9,5,0,2,271,224,238,200,3,2,19,18,1,2,2,1,8,1,244,201,8,2,22,19,2,2,3,1 -050,01,059,Alabama,Franklin County,8,4,1992,1077,915,983,834,43,36,21,15,4,4,2,4,24,22,1006,853,54,49,34,21,5,10,2,5,834,725,765,668,38,31,9,2,3,2,0,2,19,20,783,686,48,43,18,7,4,7,0,3,243,190,218,166,5,5,12,13,1,2,2,2,5,2,223,167,6,6,16,14,1,3,2,2 -050,01,059,Alabama,Franklin County,8,5,2072,1058,1014,907,926,117,50,14,18,2,3,1,2,17,15,922,940,125,58,22,25,2,4,4,2,785,818,720,755,47,47,5,3,1,2,0,0,12,11,730,765,53,53,11,8,1,3,2,0,273,196,187,171,70,3,9,15,1,1,1,2,5,4,192,175,72,5,11,17,1,1,2,2 -050,01,059,Alabama,Franklin County,8,6,2008,1108,900,944,832,119,34,19,16,10,4,1,1,15,13,957,844,123,41,30,23,11,4,2,1,810,750,733,702,61,33,3,5,8,3,0,0,5,7,738,709,62,37,7,8,8,3,0,0,298,150,211,130,58,1,16,11,2,1,1,1,10,6,219,135,61,4,23,15,3,1,2,1 -050,01,059,Alabama,Franklin County,8,7,1909,995,914,898,821,43,37,28,19,5,5,3,28,18,4,916,825,50,37,39,23,5,5,3,28,726,743,670,673,40,33,4,2,2,3,2,28,8,4,678,677,44,33,8,6,2,3,2,28,269,171,228,148,3,4,24,17,3,2,1,0,10,0,238,148,6,4,31,17,3,2,1,0 -050,01,059,Alabama,Franklin County,8,8,1954,1012,942,898,875,49,27,39,19,10,10,0,6,16,5,912,880,52,29,50,22,12,10,2,6,772,756,706,710,48,23,6,6,8,10,0,3,4,4,710,714,50,25,7,8,8,10,1,3,240,186,192,165,1,4,33,13,2,0,0,3,12,1,202,166,2,4,43,14,4,0,1,3 -050,01,059,Alabama,Franklin County,8,9,2127,1108,1019,1022,929,50,52,17,17,5,4,4,4,10,13,1032,941,54,54,22,28,6,4,4,5,840,837,780,789,49,31,4,5,5,4,0,0,2,8,782,796,50,32,5,13,5,4,0,0,268,182,242,140,1,21,13,12,0,0,4,4,8,5,250,145,4,22,17,15,1,0,4,5 -050,01,059,Alabama,Franklin County,8,10,1992,1010,982,921,896,49,66,20,9,4,1,1,0,15,10,935,905,50,66,35,17,4,4,1,0,881,850,809,800,48,34,6,6,4,1,0,0,14,9,822,809,49,34,20,13,4,3,0,0,129,132,112,96,1,32,14,3,0,0,1,0,1,1,113,96,1,32,15,4,0,1,1,0 -050,01,059,Alabama,Franklin County,8,11,2098,1036,1062,950,991,46,50,24,8,0,4,5,1,11,8,960,999,49,51,33,15,0,4,5,1,920,979,860,914,44,48,10,5,0,4,0,0,6,8,865,922,46,49,15,12,0,4,0,0,116,83,90,77,2,2,14,3,0,0,5,1,5,0,95,77,3,2,18,3,0,0,5,1 -050,01,059,Alabama,Franklin County,8,12,2023,1032,991,958,942,49,28,7,9,2,2,3,1,13,9,969,951,51,29,16,17,4,2,5,1,968,954,905,912,49,28,1,5,1,1,0,0,12,8,916,920,50,29,10,12,3,1,1,0,64,37,53,30,0,0,6,4,1,1,3,1,1,1,53,31,1,0,6,5,1,1,4,1 -050,01,059,Alabama,Franklin County,8,13,1850,866,984,809,914,42,43,4,6,0,6,1,0,10,15,819,929,44,46,11,16,1,8,1,0,827,953,772,888,42,41,3,5,0,6,1,0,9,13,781,901,43,42,10,15,1,8,1,0,39,31,37,26,0,2,1,1,0,0,0,0,1,2,38,28,1,4,1,1,0,0,0,0 -050,01,059,Alabama,Franklin County,8,14,1638,804,834,738,794,45,29,7,3,4,2,0,0,10,6,747,800,46,29,15,8,6,3,0,0,771,811,706,772,44,29,7,3,4,2,0,0,10,5,715,777,45,29,15,8,6,2,0,0,33,23,32,22,1,0,0,0,0,0,0,0,0,1,32,23,1,0,0,0,0,1,0,0 -050,01,059,Alabama,Franklin County,8,15,1256,544,712,511,683,26,21,5,1,0,1,0,0,2,6,513,689,26,21,7,5,0,3,0,0,529,705,496,676,26,21,5,1,0,1,0,0,2,6,498,682,26,21,7,5,0,3,0,0,15,7,15,7,0,0,0,0,0,0,0,0,0,0,15,7,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,8,16,1013,440,573,418,552,14,16,1,3,0,1,0,0,7,1,423,553,17,16,8,4,0,1,0,0,435,563,413,543,14,16,1,2,0,1,0,0,7,1,418,544,17,16,8,3,0,1,0,0,5,10,5,9,0,0,0,1,0,0,0,0,0,0,5,9,0,0,0,1,0,0,0,0 -050,01,059,Alabama,Franklin County,8,17,656,269,387,253,360,9,20,1,2,0,0,0,0,6,5,259,364,9,21,7,6,0,1,0,0,261,384,246,357,9,20,0,2,0,0,0,0,6,5,252,361,9,21,6,6,0,1,0,0,8,3,7,3,0,0,1,0,0,0,0,0,0,0,7,3,0,0,1,0,0,0,0,0 -050,01,059,Alabama,Franklin County,8,18,518,172,346,159,328,9,16,0,0,0,1,0,0,4,1,162,329,10,16,4,1,0,1,0,0,170,344,157,326,9,16,0,0,0,1,0,0,4,1,160,327,10,16,4,1,0,1,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,9,0,31674,15867,15807,14407,14606,813,649,266,208,74,74,24,51,283,219,14673,14815,939,751,408,312,102,93,33,56,12852,13475,11856,12590,652,546,78,64,59,59,3,33,204,183,12051,12765,747,631,181,155,74,72,7,35,3015,2332,2551,2016,161,103,188,144,15,15,21,18,79,36,2622,2050,192,120,227,157,28,21,26,21 -050,01,059,Alabama,Franklin County,9,1,2159,1092,1067,988,962,46,52,13,10,7,4,0,2,38,37,1025,999,71,79,21,19,12,5,1,2,763,758,686,681,35,42,3,2,5,2,0,0,34,31,720,712,58,65,10,9,9,3,0,0,329,309,302,281,11,10,10,8,2,2,0,2,4,6,305,287,13,14,11,10,3,2,1,2 -050,01,059,Alabama,Franklin County,9,2,2117,1104,1013,993,922,46,33,16,19,11,9,1,0,37,30,1027,950,73,53,24,28,15,11,2,1,766,704,688,644,39,25,2,5,9,6,0,0,28,24,713,667,62,42,5,12,13,7,1,0,338,309,305,278,7,8,14,14,2,3,1,0,9,6,314,283,11,11,19,16,2,4,1,1 -050,01,059,Alabama,Franklin County,9,3,2213,1123,1090,1018,1003,43,30,23,23,6,14,1,3,32,17,1048,1018,65,43,33,27,7,16,2,3,841,845,768,787,40,25,4,5,5,11,0,1,24,16,790,801,57,37,12,9,5,13,1,1,282,245,250,216,3,5,19,18,1,3,1,2,8,1,258,217,8,6,21,18,2,3,1,2 -050,01,059,Alabama,Franklin County,9,4,2031,1072,959,976,878,40,38,25,17,5,3,3,3,23,20,999,897,53,49,34,26,6,4,3,3,813,753,744,694,37,34,10,3,4,1,0,2,18,19,762,712,48,45,17,12,4,1,0,2,259,206,232,184,3,4,15,14,1,2,3,1,5,1,237,185,5,4,17,14,2,3,3,1 -050,01,059,Alabama,Franklin County,9,5,1958,1022,936,896,848,97,48,15,15,4,2,1,4,9,19,904,866,101,58,19,21,6,6,1,4,726,745,673,684,37,42,7,2,3,1,0,1,6,15,678,698,40,50,9,8,5,3,0,1,296,191,223,164,60,6,8,13,1,1,1,3,3,4,226,168,61,8,10,13,1,3,1,3 -050,01,059,Alabama,Franklin County,9,6,2110,1123,987,952,914,126,39,17,17,7,4,0,1,21,12,972,925,135,45,28,23,10,4,0,2,821,819,747,766,54,38,2,5,6,4,0,0,12,6,758,771,59,40,9,9,8,4,0,1,302,168,205,148,72,1,15,12,1,0,0,1,9,6,214,154,76,5,19,14,2,0,0,1 -050,01,059,Alabama,Franklin County,9,7,1864,978,886,891,798,31,34,27,27,8,8,3,16,18,3,908,800,38,36,39,28,8,9,3,16,716,722,672,663,31,32,3,3,4,5,1,16,5,3,677,665,32,34,7,4,4,6,1,16,262,164,219,135,0,2,24,24,4,3,2,0,13,0,231,135,6,2,32,24,4,3,2,0 -050,01,059,Alabama,Franklin County,9,8,1973,1015,958,900,884,53,30,35,19,10,6,1,14,16,5,914,889,58,33,44,21,13,6,2,14,801,767,727,714,53,24,6,6,8,6,1,13,6,4,733,718,56,27,9,7,8,6,1,13,214,191,173,170,0,6,29,13,2,0,0,1,10,1,181,171,2,6,35,14,5,0,1,1 -050,01,059,Alabama,Franklin County,9,9,2079,1085,994,1002,921,42,34,22,17,6,4,3,5,10,13,1011,933,44,37,27,25,8,6,5,6,804,819,750,778,42,27,5,3,6,4,0,0,1,7,751,785,43,28,5,8,6,5,0,0,281,175,252,143,0,7,17,14,0,0,3,5,9,6,260,148,1,9,22,17,2,1,5,6 -050,01,059,Alabama,Franklin County,9,10,2065,1042,1023,960,916,49,79,15,12,3,3,2,1,13,12,972,927,53,81,25,23,3,3,2,1,892,878,827,825,47,32,4,7,3,3,0,0,11,11,837,835,50,34,13,17,3,3,0,0,150,145,133,91,2,47,11,5,0,0,2,1,2,1,135,92,3,47,12,6,0,0,2,1 -050,01,059,Alabama,Franklin County,9,11,2097,1041,1056,958,992,38,48,29,8,1,1,4,1,11,6,967,998,41,48,38,13,3,2,4,1,919,951,861,891,37,47,12,6,1,1,0,0,8,6,869,897,38,47,20,11,1,2,0,0,122,105,97,101,1,1,17,2,0,0,4,1,3,0,98,101,3,1,18,2,2,0,4,1 -050,01,059,Alabama,Franklin County,9,12,2004,1007,997,931,938,50,36,9,9,1,5,3,1,13,8,944,946,51,38,19,15,3,5,3,1,945,960,881,911,49,34,4,4,0,4,0,0,11,7,892,918,50,35,13,10,1,4,0,0,62,37,50,27,1,2,5,5,1,1,3,1,2,1,52,28,1,3,6,5,2,1,3,1 -050,01,059,Alabama,Franklin County,9,13,1854,885,969,821,903,42,42,6,5,1,5,2,0,13,14,832,917,44,44,17,15,3,7,3,1,840,934,782,875,42,38,3,4,1,5,1,0,11,12,792,887,43,40,13,13,2,6,1,0,45,35,39,28,0,4,3,1,0,0,1,0,2,2,40,30,1,4,4,2,1,1,2,1 -050,01,059,Alabama,Franklin County,9,14,1675,827,848,760,799,48,34,6,4,3,2,0,0,10,9,770,808,48,35,14,11,4,3,1,0,787,826,721,778,47,34,6,4,3,2,0,0,10,8,731,786,47,35,14,10,4,3,1,0,40,22,39,21,1,0,0,0,0,0,0,0,0,1,39,22,1,0,0,1,0,0,0,0 -050,01,059,Alabama,Franklin County,9,15,1260,551,709,516,683,25,15,6,2,1,2,0,0,3,7,519,690,25,15,9,7,1,3,0,1,536,697,501,671,25,15,6,2,1,2,0,0,3,7,504,678,25,15,9,7,1,3,0,1,15,12,15,12,0,0,0,0,0,0,0,0,0,0,15,12,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,9,16,1002,430,572,405,551,19,18,1,2,0,1,0,0,5,0,410,551,19,18,5,2,0,1,1,0,423,561,398,541,19,18,1,1,0,1,0,0,5,0,403,541,19,18,5,1,0,1,1,0,7,11,7,10,0,0,0,1,0,0,0,0,0,0,7,10,0,0,0,1,0,0,0,0 -050,01,059,Alabama,Franklin County,9,17,665,273,392,260,365,7,20,1,2,0,0,0,0,5,5,265,370,8,20,6,7,0,0,0,0,266,388,254,361,7,20,0,2,0,0,0,0,5,5,259,366,8,20,5,7,0,0,0,0,7,4,6,4,0,0,1,0,0,0,0,0,0,0,6,4,0,0,1,0,0,0,0,0 -050,01,059,Alabama,Franklin County,9,18,548,197,351,180,329,11,19,0,0,0,1,0,0,6,2,186,331,12,19,6,1,0,2,0,0,193,348,176,326,11,19,0,0,0,1,0,0,6,2,182,328,12,19,6,1,0,2,0,0,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,10,0,31670,15884,15786,14449,14579,820,648,252,231,54,58,24,47,285,223,14718,14785,947,757,398,331,76,86,37,52,12838,13387,11848,12505,671,545,74,73,39,44,3,33,203,187,12041,12679,759,636,183,158,52,65,7,37,3046,2399,2601,2074,149,103,178,158,15,14,21,14,82,36,2677,2106,188,121,215,173,24,21,30,15 -050,01,059,Alabama,Franklin County,10,1,2156,1108,1048,1000,950,48,43,10,10,4,4,0,2,46,39,1045,989,81,70,20,19,7,7,1,2,785,719,702,648,36,37,3,0,2,2,0,0,42,32,743,680,66,59,12,7,5,5,1,0,323,329,298,302,12,6,7,10,2,2,0,2,4,7,302,309,15,11,8,12,2,2,0,2 -050,01,059,Alabama,Franklin County,10,2,2145,1090,1055,996,948,49,41,15,29,3,6,0,0,27,31,1022,977,67,64,23,37,4,7,1,1,748,752,686,683,41,31,4,9,2,5,0,0,15,24,700,705,53,50,8,14,2,6,0,1,342,303,310,265,8,10,11,20,1,1,0,0,12,7,322,272,14,14,15,23,2,1,1,0 -050,01,059,Alabama,Franklin County,10,3,2210,1129,1081,1024,993,42,30,21,23,4,11,2,2,36,22,1058,1011,63,45,34,28,8,17,2,2,837,823,765,768,38,24,5,3,2,6,0,2,27,20,790,784,55,38,14,7,5,12,0,2,292,258,259,225,4,6,16,20,2,5,2,0,9,2,268,227,8,7,20,21,3,5,2,0 -050,01,059,Alabama,Franklin County,10,4,2030,1060,970,970,893,40,34,25,19,4,3,2,4,19,17,989,909,49,43,35,25,4,5,3,5,788,766,724,707,37,32,7,6,4,1,0,3,16,17,740,723,44,41,15,12,4,3,1,4,272,204,246,186,3,2,18,13,0,2,2,1,3,0,249,186,5,2,20,13,0,2,2,1 -050,01,059,Alabama,Franklin County,10,5,1871,985,886,883,814,73,44,13,11,4,1,2,3,10,13,893,827,78,50,16,18,5,2,3,3,704,681,652,630,38,37,6,2,2,0,0,1,6,11,658,641,41,42,7,9,3,0,1,1,281,205,231,184,35,7,7,9,2,1,2,2,4,2,235,186,37,8,9,9,2,2,2,2 -050,01,059,Alabama,Franklin County,10,6,2105,1084,1021,907,949,136,40,17,18,6,3,0,0,18,11,922,960,143,44,27,23,9,4,1,1,802,846,727,795,57,37,3,5,5,3,0,0,10,6,736,801,61,39,9,7,6,4,0,1,282,175,180,154,79,3,14,13,1,0,0,0,8,5,186,159,82,5,18,16,3,0,1,0 -050,01,059,Alabama,Franklin County,10,7,1890,1021,869,923,773,49,36,22,37,7,6,2,8,18,9,941,779,57,41,32,40,7,9,2,9,751,698,692,638,46,35,3,6,4,4,1,7,5,8,697,643,49,39,5,9,4,7,1,8,270,171,231,135,3,1,19,31,3,2,1,1,13,1,244,136,8,2,27,31,3,2,1,1 -050,01,059,Alabama,Franklin County,10,8,1916,991,925,886,851,42,30,32,16,10,5,2,19,19,4,904,854,48,32,45,17,11,6,3,20,785,752,722,699,42,23,5,3,7,5,1,19,8,3,730,702,44,25,11,4,7,5,1,19,206,173,164,152,0,7,27,13,3,0,1,0,11,1,174,152,4,7,34,13,4,1,2,1 -050,01,059,Alabama,Franklin County,10,9,2014,1029,985,936,907,55,36,25,19,1,3,1,7,11,13,945,918,61,40,29,29,4,5,5,7,775,809,712,761,55,30,4,7,1,3,0,1,3,7,715,768,56,32,5,12,1,3,1,1,254,176,224,146,0,6,21,12,0,0,1,6,8,6,230,150,5,8,24,17,3,2,4,6 -050,01,059,Alabama,Franklin County,10,10,2128,1081,1047,1004,943,48,78,13,13,2,1,4,1,10,11,1014,954,49,80,19,21,4,2,5,1,888,886,831,839,46,30,2,5,2,1,0,0,7,11,838,850,46,32,8,13,3,2,0,0,193,161,173,104,2,48,11,8,0,0,4,1,3,0,176,104,3,48,11,8,1,0,5,1 -050,01,059,Alabama,Franklin County,10,11,2072,1053,1019,976,959,36,45,26,8,3,0,2,0,10,7,986,966,39,46,33,11,3,3,2,0,927,908,870,851,35,44,11,7,3,0,0,0,8,6,878,857,36,45,18,9,3,3,0,0,126,111,106,108,1,1,15,1,0,0,2,0,2,1,108,109,3,1,15,2,0,0,2,0 -050,01,059,Alabama,Franklin County,10,12,1992,996,996,917,930,49,43,9,11,2,5,5,1,14,6,930,936,52,45,19,15,3,5,6,1,924,960,860,903,48,41,4,6,1,5,0,0,11,5,871,908,50,42,12,10,2,5,0,0,72,36,57,27,1,2,5,5,1,0,5,1,3,1,59,28,2,3,7,5,1,0,6,1 -050,01,059,Alabama,Franklin County,10,13,1900,919,981,846,922,47,35,9,6,0,3,1,0,16,15,860,935,50,39,23,18,0,4,2,0,865,939,801,888,47,31,3,4,0,2,0,0,14,14,813,900,49,35,17,16,0,2,0,0,54,42,45,34,0,4,6,2,0,1,1,0,2,1,47,35,1,4,6,2,0,2,2,0 -050,01,059,Alabama,Franklin County,10,14,1640,800,840,743,782,41,39,5,5,2,3,1,0,8,11,750,792,41,41,12,13,4,5,1,0,761,821,705,765,40,39,5,5,2,3,1,0,8,9,712,774,40,40,12,13,4,3,1,0,39,19,38,17,1,0,0,0,0,0,0,0,0,2,38,18,1,1,0,0,0,2,0,0 -050,01,059,Alabama,Franklin County,10,15,1343,610,733,570,706,24,18,7,2,2,2,0,0,7,5,576,710,26,20,13,6,2,2,0,0,592,717,552,690,24,18,7,2,2,2,0,0,7,5,558,694,26,20,13,6,2,2,0,0,18,16,18,16,0,0,0,0,0,0,0,0,0,0,18,16,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,10,16,1008,425,583,398,563,24,16,1,2,0,0,0,0,2,2,400,565,24,16,3,3,0,1,0,0,416,573,389,554,24,16,1,1,0,0,0,0,2,2,391,556,24,16,3,2,0,1,0,0,9,10,9,9,0,0,0,1,0,0,0,0,0,0,9,9,0,0,0,1,0,0,0,0 -050,01,059,Alabama,Franklin County,10,17,695,306,389,289,358,8,23,2,2,0,1,0,0,7,5,295,363,10,23,9,7,0,1,0,0,300,381,284,350,8,23,1,2,0,1,0,0,7,5,290,355,10,23,8,7,0,1,0,0,6,8,5,8,0,0,1,0,0,0,0,0,0,0,5,8,0,0,1,0,0,0,0,0 -050,01,059,Alabama,Franklin County,10,18,555,197,358,181,338,9,17,0,0,0,1,0,0,7,2,188,340,9,18,6,1,1,1,0,0,190,356,174,336,9,17,0,0,0,1,0,0,7,2,181,338,9,18,6,1,1,1,0,0,7,2,7,2,0,0,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,11,0,31495,15811,15684,14368,14480,802,627,259,242,59,58,24,46,299,231,14650,14696,929,740,421,350,83,82,32,51,12695,13190,11670,12316,676,539,81,66,43,43,3,32,222,194,11886,12498,769,638,201,155,59,61,5,35,3116,2494,2698,2164,126,88,178,176,16,15,21,14,77,37,2764,2198,160,102,220,195,24,21,27,16 -050,01,059,Alabama,Franklin County,11,1,2161,1118,1043,1006,935,57,47,8,11,5,4,0,2,42,44,1046,978,88,78,18,24,9,6,1,2,796,716,706,635,47,41,2,1,3,2,0,0,38,37,742,671,76,69,11,10,6,3,1,0,322,327,300,300,10,6,6,10,2,2,0,2,4,7,304,307,12,9,7,14,3,3,0,2 -050,01,059,Alabama,Franklin County,11,2,2110,1074,1036,976,933,42,38,20,32,5,6,0,0,31,27,1005,959,64,56,31,39,6,10,0,0,722,713,658,651,32,29,7,7,3,5,0,0,22,21,679,671,48,44,13,12,4,8,0,0,352,323,318,282,10,9,13,25,2,1,0,0,9,6,326,288,16,12,18,27,2,2,0,0 -050,01,059,Alabama,Franklin County,11,3,2197,1108,1089,1004,1000,45,25,19,24,3,11,1,2,36,27,1039,1025,67,44,32,31,4,15,2,2,794,804,722,749,42,21,3,3,1,6,0,2,26,23,748,770,59,38,11,9,1,9,1,2,314,285,282,251,3,4,16,21,2,5,1,0,10,4,291,255,8,6,21,22,3,6,1,0 -050,01,059,Alabama,Franklin County,11,4,2037,1080,957,989,879,36,35,23,20,6,2,3,4,23,17,1012,896,47,46,33,26,8,2,3,4,799,756,734,697,34,33,5,5,6,0,0,4,20,17,754,714,44,44,13,11,8,0,0,4,281,201,255,182,2,2,18,15,0,2,3,0,3,0,258,182,3,2,20,15,0,2,3,0 -050,01,059,Alabama,Franklin County,11,5,1858,985,873,889,808,59,36,19,11,4,1,1,3,13,14,902,822,63,43,27,15,5,3,1,4,701,651,640,605,41,31,10,2,2,0,0,0,8,13,648,618,43,37,15,6,3,2,0,1,284,222,249,203,18,5,9,9,2,1,1,3,5,1,254,204,20,6,12,9,2,1,1,3 -050,01,059,Alabama,Franklin County,11,6,2117,1093,1024,929,951,121,41,16,16,5,2,1,0,21,14,950,963,128,47,26,22,8,5,2,1,818,825,738,774,57,38,4,2,4,2,0,0,15,9,753,781,62,43,11,5,7,4,0,1,275,199,191,177,64,3,12,14,1,0,1,0,6,5,197,182,66,4,15,17,1,1,2,0 -050,01,059,Alabama,Franklin County,11,7,1818,957,861,845,767,68,35,21,43,5,7,2,3,16,6,860,773,73,37,31,46,6,8,3,3,707,691,638,641,54,33,4,6,3,5,1,2,7,4,645,645,56,34,9,8,3,6,1,2,250,170,207,126,14,2,17,37,2,2,1,1,9,2,215,128,17,3,22,38,3,2,2,1 -050,01,059,Alabama,Franklin County,11,8,1860,959,901,862,823,38,32,28,18,9,3,2,23,20,2,879,825,43,34,41,18,12,3,4,23,751,737,692,680,38,25,5,4,6,3,1,23,9,2,701,682,38,27,12,4,8,3,1,23,208,164,170,143,0,7,23,14,3,0,1,0,11,0,178,143,5,7,29,14,4,0,3,0 -050,01,059,Alabama,Franklin County,11,9,1955,997,958,904,887,48,31,29,16,3,3,1,7,12,14,912,900,54,36,36,25,7,3,2,8,743,779,687,737,48,26,3,4,2,3,0,1,3,8,690,745,50,29,4,9,3,3,0,1,254,179,217,150,0,5,26,12,1,0,1,6,9,6,222,155,4,7,32,16,4,0,2,7 -050,01,059,Alabama,Franklin County,11,10,2120,1118,1002,1037,913,48,61,15,14,4,3,4,1,10,10,1046,921,52,63,22,21,4,5,4,2,891,846,828,803,47,27,6,5,4,2,0,0,6,9,833,811,49,29,11,12,4,3,0,0,227,156,209,110,1,34,9,9,0,1,4,1,4,1,213,110,3,34,11,9,0,2,4,2 -050,01,059,Alabama,Franklin County,11,11,2025,1019,1006,948,954,33,37,22,7,3,0,2,0,11,8,959,962,36,39,30,13,3,0,2,0,898,883,844,836,33,34,8,6,3,0,0,0,10,7,854,843,35,36,16,11,3,0,0,0,121,123,104,118,0,3,14,1,0,0,2,0,1,1,105,119,1,3,14,2,0,0,2,0 -050,01,059,Alabama,Franklin County,11,12,2006,995,1011,909,935,50,54,15,10,2,6,4,1,15,5,923,940,53,55,26,14,3,6,5,1,906,973,839,905,48,52,7,6,1,6,0,0,11,4,850,909,50,53,16,9,1,6,0,0,89,38,70,30,2,2,8,4,1,0,4,1,4,1,73,31,3,2,10,5,2,0,5,1 -050,01,059,Alabama,Franklin County,11,13,1921,929,992,862,928,44,38,8,8,0,3,2,0,13,15,875,943,45,41,19,20,1,3,2,0,875,947,818,895,44,32,2,4,0,2,0,0,11,14,829,909,45,34,11,16,1,2,0,0,54,45,44,33,0,6,6,4,0,1,2,0,2,1,46,34,0,7,8,4,0,1,2,0 -050,01,059,Alabama,Franklin County,11,14,1650,779,871,721,807,40,42,5,6,0,3,1,0,12,13,732,818,41,42,16,18,1,6,1,0,740,848,683,786,39,42,5,6,0,3,1,0,12,11,694,796,40,42,16,16,1,5,1,0,39,23,38,21,1,0,0,0,0,0,0,0,0,2,38,22,1,0,0,2,0,1,0,0 -050,01,059,Alabama,Franklin County,11,15,1361,653,708,606,679,29,21,6,2,4,1,0,0,8,5,613,684,31,22,13,6,4,1,0,0,631,691,585,662,28,21,6,2,4,1,0,0,8,5,592,667,30,22,13,6,4,1,0,0,22,17,21,17,1,0,0,0,0,0,0,0,0,0,21,17,1,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,11,16,1035,448,587,415,569,28,13,3,1,0,1,0,0,2,3,417,570,28,14,5,3,0,2,0,1,440,578,407,561,28,13,3,0,0,1,0,0,2,3,409,562,28,14,5,2,0,2,0,1,8,9,8,8,0,0,0,1,0,0,0,0,0,0,8,8,0,0,0,1,0,0,0,0 -050,01,059,Alabama,Franklin County,11,17,672,280,392,265,366,8,19,2,1,0,1,0,0,5,5,270,370,8,20,7,5,0,3,0,0,274,383,260,357,8,19,1,1,0,1,0,0,5,5,265,361,8,20,6,5,0,3,0,0,6,9,5,9,0,0,1,0,0,0,0,0,0,0,5,9,0,0,1,0,0,0,0,0 -050,01,059,Alabama,Franklin County,11,18,592,219,373,201,346,8,22,0,2,1,1,0,0,9,2,210,347,8,23,8,4,2,1,0,0,209,369,191,342,8,22,0,2,1,1,0,0,9,2,200,343,8,23,8,4,2,1,0,0,10,4,10,4,0,0,0,0,0,0,0,0,0,0,10,4,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,12,0,31587,15834,15753,14415,14536,792,603,256,264,60,59,25,44,286,247,14690,14773,922,734,399,368,84,82,32,49,12673,13194,11672,12324,669,519,78,68,40,43,3,30,211,210,11878,12527,765,628,182,156,56,62,6,34,3161,2559,2743,2212,123,84,178,196,20,16,22,14,75,37,2812,2246,157,106,217,212,28,20,26,15 -050,01,059,Alabama,Franklin County,12,1,2194,1127,1067,1019,955,51,40,13,18,3,4,1,2,40,48,1058,1000,82,79,21,28,6,7,2,3,799,736,718,657,41,36,3,0,1,2,0,0,36,41,753,696,69,70,9,8,4,4,1,1,328,331,301,298,10,4,10,18,2,2,1,2,4,7,305,304,13,9,12,20,2,3,1,2 -050,01,059,Alabama,Franklin County,12,2,2167,1114,1053,1021,943,39,42,19,36,6,4,0,1,29,27,1049,969,61,59,26,43,8,9,0,1,772,742,708,675,31,37,5,6,4,3,0,0,24,21,731,696,49,50,10,10,6,7,0,0,342,311,313,268,8,5,14,30,2,1,0,1,5,6,318,273,12,9,16,33,2,2,0,1 -050,01,059,Alabama,Franklin County,12,3,2169,1096,1073,990,977,48,30,17,22,7,13,1,0,33,31,1022,1007,64,50,29,30,12,16,3,1,777,771,702,709,46,22,5,5,1,8,0,0,23,27,724,736,59,39,12,12,5,10,1,1,319,302,288,268,2,8,12,17,6,5,1,0,10,4,298,271,5,11,17,18,7,6,2,0 -050,01,059,Alabama,Franklin County,12,4,2016,1046,970,955,897,34,32,26,19,7,2,3,3,21,17,976,914,45,42,35,24,8,4,3,3,770,758,710,705,31,29,6,4,6,0,0,3,17,17,727,722,40,39,13,9,7,2,0,3,276,212,245,192,3,3,20,15,1,2,3,0,4,0,249,192,5,3,22,15,1,2,3,0 -050,01,059,Alabama,Franklin County,12,5,1861,982,879,904,815,45,30,18,14,5,0,1,4,9,16,911,829,50,40,23,21,5,1,2,4,681,648,625,603,41,26,9,3,3,0,0,1,3,15,628,616,42,36,11,9,3,1,0,1,301,231,279,212,4,4,9,11,2,0,1,3,6,1,283,213,8,4,12,12,2,0,2,3 -050,01,059,Alabama,Franklin County,12,6,2080,1064,1016,921,946,112,35,11,18,0,3,1,0,19,14,940,959,120,43,21,25,1,3,1,0,795,806,730,758,51,32,1,4,0,2,0,0,13,10,743,767,56,37,9,10,0,2,0,0,269,210,191,188,61,3,10,14,0,1,1,0,6,4,197,192,64,6,12,15,1,1,1,0 -050,01,059,Alabama,Franklin County,12,7,1931,1020,911,885,811,91,36,20,45,6,7,2,1,16,11,900,821,97,42,31,49,7,9,3,1,774,743,693,690,62,34,5,5,3,5,1,1,10,8,702,697,67,38,11,9,3,6,1,1,246,168,192,121,29,2,15,40,3,2,1,0,6,3,198,124,30,4,20,40,4,3,2,0 -050,01,059,Alabama,Franklin County,12,8,1829,947,882,858,804,40,27,21,21,7,4,2,24,19,2,877,806,48,28,31,23,7,4,3,24,726,711,667,653,40,24,4,4,5,4,1,24,9,2,676,655,43,25,9,6,5,4,2,24,221,171,191,151,0,3,17,17,2,0,1,0,10,0,201,151,5,3,22,17,2,0,1,0 -050,01,059,Alabama,Franklin County,12,9,1875,959,916,858,850,47,31,34,19,5,3,1,4,14,9,871,859,51,35,42,23,8,4,1,4,726,750,667,711,47,25,4,5,4,2,0,1,4,6,671,717,49,28,5,7,5,3,0,1,233,166,191,139,0,6,30,14,1,1,1,3,10,3,200,142,2,7,37,16,3,1,1,3 -050,01,059,Alabama,Franklin County,12,10,2167,1119,1048,1034,956,53,59,15,12,4,3,4,4,9,14,1041,970,57,63,20,21,6,4,4,4,868,881,805,842,52,24,5,3,4,2,0,0,2,10,807,852,53,26,6,10,4,3,0,0,251,167,229,114,1,35,10,9,0,1,4,4,7,4,234,118,4,37,14,11,2,1,4,4 -050,01,059,Alabama,Franklin County,12,11,1970,1009,961,942,908,30,34,19,10,3,2,1,0,14,7,956,915,32,37,30,15,4,2,1,0,893,842,841,795,30,31,6,8,3,2,0,0,13,6,854,801,32,33,16,12,4,2,0,0,116,119,101,113,0,3,13,2,0,0,1,0,1,1,102,114,0,4,14,3,0,0,1,0 -050,01,059,Alabama,Franklin County,12,12,2009,993,1016,910,945,46,50,19,9,2,4,4,1,12,7,921,952,49,52,27,14,3,4,5,1,883,960,823,896,43,48,8,5,1,4,0,0,8,7,831,903,44,50,15,10,1,4,0,0,110,56,87,49,3,2,11,4,1,0,4,1,4,0,90,49,5,2,12,4,2,0,5,1 -050,01,059,Alabama,Franklin County,12,13,1919,953,966,887,908,41,37,6,8,0,1,3,0,16,12,903,920,46,38,16,18,1,2,3,1,894,925,838,878,41,32,1,5,0,0,0,0,14,10,852,888,44,32,11,14,1,1,0,0,59,41,49,30,0,5,5,3,0,1,3,0,2,2,51,32,2,6,5,4,0,1,3,1 -050,01,059,Alabama,Franklin County,12,14,1697,776,921,722,854,37,41,6,6,0,5,1,0,10,15,732,869,37,43,15,17,1,6,1,1,744,889,691,826,37,40,5,5,0,5,1,0,10,13,701,839,37,42,14,14,1,6,1,1,32,32,31,28,0,1,1,1,0,0,0,0,0,2,31,30,0,1,1,3,0,0,0,0 -050,01,059,Alabama,Franklin County,12,15,1405,679,726,626,692,33,25,6,3,4,1,0,0,10,5,636,697,36,26,13,5,4,2,0,1,648,709,597,675,31,25,6,3,4,1,0,0,10,5,607,680,34,26,13,5,4,2,0,1,31,17,29,17,2,0,0,0,0,0,0,0,0,0,29,17,2,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,12,16,1024,444,580,412,560,26,13,4,1,0,1,0,0,2,5,414,564,26,15,6,3,0,3,0,0,432,569,400,550,26,13,4,0,0,1,0,0,2,5,402,554,26,15,6,2,0,3,0,0,12,11,12,10,0,0,0,1,0,0,0,0,0,0,12,10,0,0,0,1,0,0,0,0 -050,01,059,Alabama,Franklin County,12,17,677,278,399,261,376,11,17,2,1,0,1,0,0,4,4,265,380,12,17,4,5,1,1,0,0,271,389,255,366,11,17,1,1,0,1,0,0,4,4,259,370,12,17,3,5,1,1,0,0,7,10,6,10,0,0,1,0,0,0,0,0,0,0,6,10,0,0,1,0,0,0,0,0 -050,01,059,Alabama,Franklin County,12,18,597,228,369,210,339,8,24,0,2,1,1,0,0,9,3,218,342,9,25,9,4,2,1,0,0,220,365,202,335,8,24,0,2,1,1,0,0,9,3,210,338,9,25,9,4,2,1,0,0,8,4,8,4,0,0,0,0,0,0,0,0,0,0,8,4,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,13,0,31507,15767,15740,14337,14477,785,619,262,288,62,59,28,51,293,246,14615,14712,912,736,409,399,91,84,40,57,12603,13107,11594,12218,671,534,77,72,40,42,5,33,216,208,11799,12419,774,633,187,167,54,59,11,37,3164,2633,2743,2259,114,85,185,216,22,17,23,18,77,38,2816,2293,138,103,222,232,37,25,29,20 -050,01,059,Alabama,Franklin County,13,1,2207,1115,1092,995,979,49,39,25,27,4,4,3,4,39,39,1032,1016,80,69,33,36,7,5,4,5,787,732,702,662,44,33,4,1,1,1,1,1,35,34,735,695,74,61,11,7,3,1,1,2,328,360,293,317,5,6,21,26,3,3,2,3,4,5,297,321,6,8,22,29,4,4,3,3 -050,01,059,Alabama,Franklin County,13,2,2122,1101,1021,999,887,48,54,14,38,6,3,1,2,33,37,1032,921,71,80,22,47,9,8,2,2,787,723,712,637,38,48,5,6,3,3,1,0,28,29,740,664,58,69,12,13,5,6,2,0,314,298,287,250,10,6,9,32,3,0,0,2,5,8,292,257,13,11,10,34,4,2,0,2 -050,01,059,Alabama,Franklin County,13,3,2162,1095,1067,1005,966,41,39,14,20,7,11,1,1,27,30,1032,995,56,57,22,28,10,16,3,1,776,770,713,701,38,32,3,4,2,7,0,1,20,25,733,725,51,48,7,11,3,10,2,1,319,297,292,265,3,7,11,16,5,4,1,0,7,5,299,270,5,9,15,17,7,6,1,0 -050,01,059,Alabama,Franklin County,13,4,2015,1041,974,947,902,25,22,29,25,9,3,2,5,29,17,976,919,43,31,40,31,9,5,3,5,760,750,700,705,23,18,9,5,7,1,0,4,21,17,721,722,37,27,16,11,7,3,1,4,281,224,247,197,2,4,20,20,2,2,2,1,8,0,255,197,6,4,24,20,2,2,2,1 -050,01,059,Alabama,Franklin County,13,5,1847,971,876,894,814,44,28,15,12,4,2,2,4,12,16,906,830,51,36,19,19,4,3,3,4,662,640,609,596,40,25,4,3,3,0,0,1,6,15,615,611,44,33,6,9,3,1,0,1,309,236,285,218,4,3,11,9,1,2,2,3,6,1,291,219,7,3,13,10,1,2,3,3 -050,01,059,Alabama,Franklin County,13,6,2002,1009,993,901,922,82,40,6,18,1,2,1,1,18,10,917,932,91,43,16,21,2,6,1,1,774,790,713,740,47,36,1,4,0,1,0,0,13,9,724,749,54,39,9,6,0,5,0,0,235,203,188,182,35,4,5,14,1,1,1,1,5,1,193,183,37,4,7,15,2,1,1,1 -050,01,059,Alabama,Franklin County,13,7,1936,1015,921,858,819,117,34,19,49,4,6,1,1,16,12,873,831,121,40,31,55,5,6,1,1,768,731,681,681,70,33,6,5,2,5,0,1,9,6,689,687,73,35,13,9,2,5,0,1,247,190,177,138,47,1,13,44,2,1,1,0,7,6,184,144,48,5,18,46,3,1,1,0 -050,01,059,Alabama,Franklin County,13,8,1873,975,898,873,814,52,28,22,24,5,5,3,22,20,5,892,819,55,29,36,28,8,5,4,22,746,732,678,671,52,25,1,5,3,4,2,22,10,5,688,676,54,26,9,9,3,4,2,22,229,166,195,143,0,3,21,19,2,1,1,0,10,0,204,143,1,3,27,19,5,1,2,0 -050,01,059,Alabama,Franklin County,13,9,1902,991,911,887,856,44,24,37,16,8,4,0,6,15,5,901,860,49,26,45,18,9,5,2,7,752,751,693,716,42,21,7,4,6,3,0,3,4,4,697,719,43,23,10,5,6,4,0,4,239,160,194,140,2,3,30,12,2,1,0,3,11,1,204,141,6,3,35,13,3,1,2,3 -050,01,059,Alabama,Franklin County,13,10,2101,1084,1017,1008,930,46,47,16,18,3,3,4,4,7,15,1014,944,49,51,21,28,3,5,4,5,829,843,773,799,46,27,6,6,3,2,0,0,1,9,774,808,47,28,6,14,3,2,0,0,255,174,235,131,0,20,10,12,0,1,4,4,6,6,240,136,2,23,15,14,0,3,4,5 -050,01,059,Alabama,Franklin County,13,11,1962,1012,950,941,875,36,54,20,10,4,2,1,0,10,9,950,884,37,55,29,18,5,2,1,0,876,820,822,769,35,34,6,7,4,2,0,0,9,8,830,777,36,35,14,14,5,2,0,0,136,130,119,106,1,20,14,3,0,0,1,0,1,1,120,107,1,20,15,4,0,0,1,0 -050,01,059,Alabama,Franklin County,13,12,1992,968,1024,893,956,37,50,21,8,1,1,5,1,11,8,902,964,39,51,25,15,7,1,6,1,856,948,807,886,34,48,8,5,1,1,0,0,6,8,812,894,35,49,12,12,3,1,0,0,112,76,86,70,3,2,13,3,0,0,5,1,5,0,90,70,4,2,13,3,4,0,6,1 -050,01,059,Alabama,Franklin County,13,13,1942,963,979,892,926,44,33,6,9,1,2,3,0,17,9,909,935,46,34,18,16,4,2,3,1,904,945,843,900,44,31,1,5,0,1,0,0,16,8,859,908,46,31,13,12,2,1,0,1,59,34,49,26,0,2,5,4,1,1,3,0,1,1,50,27,0,3,5,4,2,1,3,0 -050,01,059,Alabama,Franklin County,13,14,1727,800,927,742,855,40,44,4,6,0,5,1,0,13,17,755,872,40,48,15,19,1,5,2,0,764,892,708,827,40,40,3,5,0,5,1,0,12,15,720,842,40,44,13,16,1,5,2,0,36,35,34,28,0,4,1,1,0,0,0,0,1,2,35,30,0,4,2,3,0,0,0,0 -050,01,059,Alabama,Franklin County,13,15,1458,699,759,638,721,39,26,7,3,4,3,0,0,11,6,647,725,41,28,17,7,5,5,0,1,665,736,606,699,37,26,7,3,4,3,0,0,11,5,615,703,39,27,17,7,5,4,0,0,34,23,32,22,2,0,0,0,0,0,0,0,0,1,32,22,2,1,0,0,0,1,0,1 -050,01,059,Alabama,Franklin County,13,16,975,411,564,385,539,20,18,5,1,0,1,0,0,1,5,386,544,20,18,6,5,0,2,0,0,396,556,370,531,20,18,5,1,0,1,0,0,1,5,371,536,20,18,6,5,0,2,0,0,15,8,15,8,0,0,0,0,0,0,0,0,0,0,15,8,0,0,0,0,0,0,0,0 -050,01,059,Alabama,Franklin County,13,17,708,294,414,276,397,11,13,1,2,0,1,0,0,6,1,281,397,13,14,5,2,1,1,1,1,288,401,270,385,11,13,1,1,0,1,0,0,6,1,275,385,13,14,5,1,1,1,1,1,6,13,6,12,0,0,0,1,0,0,0,0,0,0,6,12,0,0,0,1,0,0,0,0 -050,01,059,Alabama,Franklin County,13,18,576,223,353,203,319,10,26,1,2,1,1,0,0,8,5,210,324,10,26,9,6,2,2,0,0,213,347,194,313,10,26,0,2,1,1,0,0,8,5,201,318,10,26,8,6,2,2,0,0,10,6,9,6,0,0,1,0,0,0,0,0,0,0,9,6,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,0,26790,13105,13685,11576,11951,1185,1376,124,113,30,43,10,5,180,197,11746,12131,1261,1464,230,224,52,62,12,13,12591,13279,11111,11590,1173,1360,103,94,25,40,6,2,173,193,11274,11767,1249,1447,202,203,47,58,8,9,514,406,465,361,12,16,21,19,5,3,4,3,7,4,472,364,12,17,28,21,5,4,4,4 -050,01,061,Alabama,Geneva County,1,1,1576,816,760,698,635,66,74,5,8,0,4,1,2,46,37,744,671,99,103,16,15,3,6,2,2,761,701,646,582,66,73,3,6,0,3,1,1,45,36,691,617,99,101,13,13,3,5,2,1,55,59,52,53,0,1,2,2,0,1,0,1,1,1,53,54,0,2,3,2,0,1,0,1 -050,01,061,Alabama,Geneva County,1,2,1644,829,815,714,679,86,100,5,8,3,1,2,0,19,27,731,705,100,120,12,16,6,3,3,1,768,758,658,626,84,98,4,7,2,1,1,0,19,26,675,651,98,118,11,14,5,3,2,1,61,57,56,53,2,2,1,1,1,0,1,0,0,1,56,54,2,2,1,2,1,0,1,0 -050,01,061,Alabama,Geneva County,1,3,1676,882,794,759,681,92,83,9,7,1,1,2,1,19,21,778,701,103,96,14,16,5,3,2,2,825,743,708,636,91,82,7,3,1,1,0,0,18,21,726,656,102,95,11,12,5,3,0,1,57,51,51,45,1,1,2,4,0,0,2,1,1,0,52,45,1,1,3,4,0,0,2,1 -050,01,061,Alabama,Geneva County,1,4,1788,945,843,799,705,115,115,8,8,7,4,2,0,14,11,812,715,121,118,16,16,10,5,2,0,899,817,759,684,114,112,7,6,5,4,1,0,13,11,771,694,120,115,14,14,8,5,1,0,46,26,40,21,1,3,1,2,2,0,1,0,1,0,41,21,1,3,2,2,2,0,1,0 -050,01,061,Alabama,Geneva County,1,5,1498,708,790,624,688,64,85,7,3,3,2,1,0,9,12,633,696,66,92,14,9,6,6,1,2,638,753,559,656,64,83,4,2,2,1,1,0,8,11,567,664,66,90,10,8,5,4,1,1,70,37,65,32,0,2,3,1,1,1,0,0,1,1,66,32,0,2,4,1,1,2,0,1 -050,01,061,Alabama,Geneva County,1,6,1392,700,692,622,611,66,66,5,6,1,3,0,0,6,6,628,616,66,68,10,9,2,4,0,1,665,660,592,583,65,65,4,4,0,2,0,0,4,6,596,588,65,67,7,7,1,3,0,1,35,32,30,28,1,1,1,2,1,1,0,0,2,0,32,28,1,1,3,2,1,1,0,0 -050,01,061,Alabama,Geneva County,1,7,1469,741,728,648,613,75,92,11,6,0,5,0,0,7,12,655,624,76,93,17,14,0,9,0,1,703,703,615,590,74,91,7,6,0,5,0,0,7,11,622,600,75,92,13,13,0,9,0,1,38,25,33,23,1,1,4,0,0,0,0,0,0,1,33,24,1,1,4,1,0,0,0,0 -050,01,061,Alabama,Geneva County,1,8,1599,771,828,657,726,97,83,6,6,4,0,1,1,6,12,663,737,97,85,12,16,4,1,1,1,737,799,623,699,97,82,6,6,4,0,1,0,6,12,629,710,97,84,12,16,4,1,1,0,34,29,34,27,0,1,0,0,0,0,0,1,0,0,34,27,0,1,0,0,0,0,0,1 -050,01,061,Alabama,Geneva County,1,9,1813,897,916,803,810,68,82,11,10,2,4,0,0,13,10,813,818,71,86,24,20,4,4,0,0,870,896,780,795,66,81,9,6,2,4,0,0,13,10,790,803,69,85,22,16,4,4,0,0,27,20,23,15,2,1,2,4,0,0,0,0,0,0,23,15,2,1,2,4,0,0,0,0 -050,01,061,Alabama,Geneva County,1,10,1968,1013,955,895,823,98,108,11,9,2,6,0,1,7,8,902,830,99,109,18,14,2,8,0,2,991,942,873,812,98,107,11,8,2,6,0,1,7,8,880,819,99,108,18,13,2,8,0,2,22,13,22,11,0,1,0,1,0,0,0,0,0,0,22,11,0,1,0,1,0,0,0,0 -050,01,061,Alabama,Geneva County,1,11,1988,968,1020,871,879,74,120,10,11,1,3,1,0,11,7,882,885,75,122,18,17,3,3,1,0,948,1001,857,863,71,119,8,9,1,3,1,0,10,7,867,869,72,121,15,15,3,3,1,0,20,19,14,16,3,1,2,2,0,0,0,0,1,0,15,16,3,1,3,2,0,0,0,0 -050,01,061,Alabama,Geneva County,1,12,1858,926,932,818,815,88,90,8,12,2,5,0,0,10,10,827,824,89,91,18,22,2,5,0,0,911,918,805,802,87,89,7,12,2,5,0,0,10,10,814,811,88,90,17,22,2,5,0,0,15,14,13,13,1,1,1,0,0,0,0,0,0,0,13,13,1,1,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,13,1847,903,944,813,842,68,81,13,7,1,4,0,0,8,10,820,851,69,83,21,15,1,4,0,1,892,931,802,829,68,81,13,7,1,4,0,0,8,10,809,838,69,83,21,15,1,4,0,1,11,13,11,13,0,0,0,0,0,0,0,0,0,0,11,13,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,14,1481,707,774,647,698,46,64,9,6,1,0,0,0,4,6,649,704,48,64,13,12,2,0,0,0,703,771,643,695,46,64,9,6,1,0,0,0,4,6,645,701,48,64,13,12,2,0,0,0,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,15,1205,529,676,486,611,36,57,4,4,2,0,0,0,1,4,487,615,36,58,5,7,2,0,0,0,519,672,477,607,36,57,3,4,2,0,0,0,1,4,478,611,36,58,4,7,2,0,0,0,10,4,9,4,0,0,1,0,0,0,0,0,0,0,9,4,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,16,856,383,473,357,434,25,36,1,1,0,0,0,0,0,2,357,436,25,36,1,3,0,0,0,0,379,471,353,432,25,36,1,1,0,0,0,0,0,2,353,434,25,36,1,3,0,0,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,17,624,232,392,219,369,12,21,1,1,0,0,0,0,0,1,219,370,12,21,1,2,0,0,0,0,228,390,216,367,12,21,0,1,0,0,0,0,0,1,216,368,12,21,0,2,0,0,0,0,4,2,3,2,0,0,1,0,0,0,0,0,0,0,3,2,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,1,18,508,155,353,146,332,9,19,0,0,0,1,0,0,0,1,146,333,9,19,0,1,0,1,0,0,154,353,145,332,9,19,0,0,0,1,0,0,0,1,145,333,9,19,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,0,26783,13101,13682,11572,11948,1185,1376,124,113,30,43,10,5,180,197,11742,12128,1261,1464,230,224,52,62,12,13,12587,13276,11107,11587,1173,1360,103,94,25,40,6,2,173,193,11270,11764,1249,1447,202,203,47,58,8,9,514,406,465,361,12,16,21,19,5,3,4,3,7,4,472,364,12,17,28,21,5,4,4,4 -050,01,061,Alabama,Geneva County,2,1,1576,816,760,698,635,66,74,5,8,0,4,1,2,46,37,744,671,99,103,16,15,3,6,2,2,761,701,646,582,66,73,3,6,0,3,1,1,45,36,691,617,99,101,13,13,3,5,2,1,55,59,52,53,0,1,2,2,0,1,0,1,1,1,53,54,0,2,3,2,0,1,0,1 -050,01,061,Alabama,Geneva County,2,2,1643,828,815,713,679,86,100,5,8,3,1,2,0,19,27,730,705,100,120,12,16,6,3,3,1,767,758,657,626,84,98,4,7,2,1,1,0,19,26,674,651,98,118,11,14,5,3,2,1,61,57,56,53,2,2,1,1,1,0,1,0,0,1,56,54,2,2,1,2,1,0,1,0 -050,01,061,Alabama,Geneva County,2,3,1675,881,794,758,681,92,83,9,7,1,1,2,1,19,21,777,701,103,96,14,16,5,3,2,2,824,743,707,636,91,82,7,3,1,1,0,0,18,21,725,656,102,95,11,12,5,3,0,1,57,51,51,45,1,1,2,4,0,0,2,1,1,0,52,45,1,1,3,4,0,0,2,1 -050,01,061,Alabama,Geneva County,2,4,1788,945,843,799,705,115,115,8,8,7,4,2,0,14,11,812,715,121,118,16,16,10,5,2,0,899,817,759,684,114,112,7,6,5,4,1,0,13,11,771,694,120,115,14,14,8,5,1,0,46,26,40,21,1,3,1,2,2,0,1,0,1,0,41,21,1,3,2,2,2,0,1,0 -050,01,061,Alabama,Geneva County,2,5,1499,708,791,624,689,64,85,7,3,3,2,1,0,9,12,633,697,66,92,14,9,6,6,1,2,638,754,559,657,64,83,4,2,2,1,1,0,8,11,567,665,66,90,10,8,5,4,1,1,70,37,65,32,0,2,3,1,1,1,0,0,1,1,66,32,0,2,4,1,1,2,0,1 -050,01,061,Alabama,Geneva County,2,6,1393,701,692,623,611,66,66,5,6,1,3,0,0,6,6,629,616,66,68,10,9,2,4,0,1,666,660,593,583,65,65,4,4,0,2,0,0,4,6,597,588,65,67,7,7,1,3,0,1,35,32,30,28,1,1,1,2,1,1,0,0,2,0,32,28,1,1,3,2,1,1,0,0 -050,01,061,Alabama,Geneva County,2,7,1469,741,728,648,613,75,92,11,6,0,5,0,0,7,12,655,624,76,93,17,14,0,9,0,1,703,703,615,590,74,91,7,6,0,5,0,0,7,11,622,600,75,92,13,13,0,9,0,1,38,25,33,23,1,1,4,0,0,0,0,0,0,1,33,24,1,1,4,1,0,0,0,0 -050,01,061,Alabama,Geneva County,2,8,1597,770,827,656,725,97,83,6,6,4,0,1,1,6,12,662,736,97,85,12,16,4,1,1,1,736,798,622,698,97,82,6,6,4,0,1,0,6,12,628,709,97,84,12,16,4,1,1,0,34,29,34,27,0,1,0,0,0,0,0,1,0,0,34,27,0,1,0,0,0,0,0,1 -050,01,061,Alabama,Geneva County,2,9,1812,896,916,802,810,68,82,11,10,2,4,0,0,13,10,812,818,71,86,24,20,4,4,0,0,869,896,779,795,66,81,9,6,2,4,0,0,13,10,789,803,69,85,22,16,4,4,0,0,27,20,23,15,2,1,2,4,0,0,0,0,0,0,23,15,2,1,2,4,0,0,0,0 -050,01,061,Alabama,Geneva County,2,10,1967,1013,954,895,822,98,108,11,9,2,6,0,1,7,8,902,829,99,109,18,14,2,8,0,2,991,941,873,811,98,107,11,8,2,6,0,1,7,8,880,818,99,108,18,13,2,8,0,2,22,13,22,11,0,1,0,1,0,0,0,0,0,0,22,11,0,1,0,1,0,0,0,0 -050,01,061,Alabama,Geneva County,2,11,1987,967,1020,870,879,74,120,10,11,1,3,1,0,11,7,881,885,75,122,18,17,3,3,1,0,947,1001,856,863,71,119,8,9,1,3,1,0,10,7,866,869,72,121,15,15,3,3,1,0,20,19,14,16,3,1,2,2,0,0,0,0,1,0,15,16,3,1,3,2,0,0,0,0 -050,01,061,Alabama,Geneva County,2,12,1857,926,931,818,814,88,90,8,12,2,5,0,0,10,10,827,823,89,91,18,22,2,5,0,0,911,917,805,801,87,89,7,12,2,5,0,0,10,10,814,810,88,90,17,22,2,5,0,0,15,14,13,13,1,1,1,0,0,0,0,0,0,0,13,13,1,1,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,13,1845,902,943,812,841,68,81,13,7,1,4,0,0,8,10,819,850,69,83,21,15,1,4,0,1,891,930,801,828,68,81,13,7,1,4,0,0,8,10,808,837,69,83,21,15,1,4,0,1,11,13,11,13,0,0,0,0,0,0,0,0,0,0,11,13,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,14,1482,708,774,648,698,46,64,9,6,1,0,0,0,4,6,650,704,48,64,13,12,2,0,0,0,704,771,644,695,46,64,9,6,1,0,0,0,4,6,646,701,48,64,13,12,2,0,0,0,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,15,1205,529,676,486,611,36,57,4,4,2,0,0,0,1,4,487,615,36,58,5,7,2,0,0,0,519,672,477,607,36,57,3,4,2,0,0,0,1,4,478,611,36,58,4,7,2,0,0,0,10,4,9,4,0,0,1,0,0,0,0,0,0,0,9,4,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,16,856,383,473,357,434,25,36,1,1,0,0,0,0,0,2,357,436,25,36,1,3,0,0,0,0,379,471,353,432,25,36,1,1,0,0,0,0,0,2,353,434,25,36,1,3,0,0,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,17,624,232,392,219,369,12,21,1,1,0,0,0,0,0,1,219,370,12,21,1,2,0,0,0,0,228,390,216,367,12,21,0,1,0,0,0,0,0,1,216,368,12,21,0,2,0,0,0,0,4,2,3,2,0,0,1,0,0,0,0,0,0,0,3,2,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,2,18,508,155,353,146,332,9,19,0,0,0,1,0,0,0,1,146,333,9,19,0,1,0,1,0,0,154,353,145,332,9,19,0,0,0,1,0,0,0,1,145,333,9,19,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,0,26778,13089,13689,11557,11951,1190,1375,123,114,29,43,10,5,180,201,11732,12138,1278,1467,205,215,48,65,14,10,12567,13274,11085,11580,1178,1359,101,96,24,40,6,2,173,197,11253,11763,1263,1449,178,196,42,61,9,7,522,415,472,371,12,16,22,18,5,3,4,3,7,4,479,375,15,18,27,19,6,4,5,3 -050,01,061,Alabama,Geneva County,3,1,1568,804,764,683,640,71,74,4,7,0,4,1,2,45,37,726,677,108,102,12,14,2,8,4,3,748,707,630,588,71,73,2,6,0,3,1,1,44,36,672,624,108,101,9,13,2,6,4,2,56,57,53,52,0,1,2,1,0,1,0,1,1,1,54,53,0,1,3,1,0,2,0,1 -050,01,061,Alabama,Geneva County,3,2,1639,827,812,713,678,84,99,5,7,3,1,2,0,20,27,733,704,96,116,10,13,6,5,2,1,768,753,659,623,82,97,4,6,2,1,1,0,20,26,679,648,94,114,9,11,5,5,1,1,59,59,54,55,2,2,1,1,1,0,1,0,0,1,54,56,2,2,1,2,1,0,1,0 -050,01,061,Alabama,Geneva County,3,3,1688,882,806,757,687,93,88,9,8,1,1,2,1,20,21,777,707,105,100,17,16,1,3,2,1,825,753,706,640,92,87,7,4,1,1,0,0,19,21,725,660,104,99,14,12,1,3,0,0,57,53,51,47,1,1,2,4,0,0,2,1,1,0,52,47,1,1,3,4,0,0,2,1 -050,01,061,Alabama,Geneva County,3,4,1766,931,835,788,697,113,113,8,9,6,4,2,0,14,12,802,709,120,120,13,14,8,5,2,1,883,808,746,675,112,110,7,7,4,4,1,0,13,12,759,687,119,117,11,12,6,5,1,1,48,27,42,22,1,3,1,2,2,0,1,0,1,0,43,22,1,3,2,2,2,0,1,0 -050,01,061,Alabama,Geneva County,3,5,1509,721,788,633,689,68,83,7,2,3,2,1,0,9,12,640,701,74,88,11,8,4,3,1,0,653,752,570,658,68,81,4,1,2,1,1,0,8,11,576,669,73,85,8,7,3,2,1,0,68,36,63,31,0,2,3,1,1,1,0,0,1,1,64,32,1,3,3,1,1,1,0,0 -050,01,061,Alabama,Geneva County,3,6,1400,693,707,621,623,62,68,4,6,1,3,0,0,5,7,626,628,63,73,7,8,2,5,0,0,656,674,589,594,61,67,3,4,0,2,0,0,3,7,592,599,61,72,5,6,1,4,0,0,37,33,32,29,1,1,1,2,1,1,0,0,2,0,34,29,2,1,2,2,1,1,0,0 -050,01,061,Alabama,Geneva County,3,7,1471,745,726,648,613,77,91,13,6,0,4,0,0,7,12,655,623,79,95,17,14,1,5,0,1,707,699,616,588,76,90,8,6,0,4,0,0,7,11,623,597,78,93,12,14,1,5,0,1,38,27,32,25,1,1,5,0,0,0,0,0,0,1,32,26,1,2,5,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,8,1600,776,824,659,719,98,84,7,6,4,1,1,1,7,13,666,730,99,88,13,15,4,3,1,1,740,794,623,691,98,83,7,6,4,1,1,0,7,13,630,702,99,87,13,15,4,3,1,0,36,30,36,28,0,1,0,0,0,0,0,1,0,0,36,28,0,1,0,0,0,0,0,1 -050,01,061,Alabama,Geneva County,3,9,1804,886,918,796,812,66,82,10,11,2,3,0,0,12,10,808,821,68,83,18,19,4,4,0,1,857,898,771,797,64,81,8,7,2,3,0,0,12,10,783,806,66,82,16,15,4,4,0,1,29,20,25,15,2,1,2,4,0,0,0,0,0,0,25,15,2,1,2,4,0,0,0,0 -050,01,061,Alabama,Geneva County,3,10,1967,1014,953,896,820,99,108,10,10,2,6,0,1,7,8,903,826,101,110,16,17,2,7,0,1,991,939,873,808,99,107,10,9,2,6,0,1,7,8,880,814,101,109,16,16,2,7,0,1,23,14,23,12,0,1,0,1,0,0,0,0,0,0,23,12,0,1,0,1,0,0,0,0 -050,01,061,Alabama,Geneva County,3,11,1982,962,1020,864,877,75,119,10,12,1,4,1,0,11,8,874,885,78,120,19,19,3,4,2,0,941,1001,849,861,72,118,8,10,1,4,1,0,10,8,858,869,74,119,16,17,2,4,1,0,21,19,15,16,3,1,2,2,0,0,0,0,1,0,16,16,4,1,3,2,1,0,1,0 -050,01,061,Alabama,Geneva County,3,12,1869,937,932,831,815,87,91,8,11,2,5,0,0,9,10,840,824,89,93,14,18,3,7,0,0,923,919,819,803,86,90,7,11,2,5,0,0,9,10,828,812,88,92,13,18,3,7,0,0,14,13,12,12,1,1,1,0,0,0,0,0,0,0,12,12,1,1,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,13,1843,901,942,811,839,67,81,13,8,1,4,0,0,9,10,820,848,67,83,20,16,3,5,0,0,888,927,798,824,67,81,13,8,1,4,0,0,9,10,807,833,67,83,20,16,3,5,0,0,13,15,13,15,0,0,0,0,0,0,0,0,0,0,13,15,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,14,1488,711,777,650,700,47,66,9,5,1,0,0,0,4,6,654,706,48,66,11,11,2,0,0,0,707,773,646,696,47,66,9,5,1,0,0,0,4,6,650,702,48,66,11,11,2,0,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,15,1190,523,667,480,604,36,55,4,4,2,0,0,0,1,4,481,608,36,55,5,8,3,0,0,0,514,663,472,600,36,55,3,4,2,0,0,0,1,4,473,604,36,55,4,8,3,0,0,0,9,4,8,4,0,0,1,0,0,0,0,0,0,0,8,4,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,16,864,389,475,362,439,26,33,1,1,0,0,0,0,0,2,362,441,26,34,1,2,0,0,0,0,384,473,357,437,26,33,1,1,0,0,0,0,0,2,357,439,26,34,1,2,0,0,0,0,5,2,5,2,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,17,625,235,390,223,368,11,20,1,1,0,0,0,0,0,1,223,369,11,20,1,2,0,0,0,0,231,388,220,366,11,20,0,1,0,0,0,0,0,1,220,367,11,20,0,2,0,0,0,0,4,2,3,2,0,0,1,0,0,0,0,0,0,0,3,2,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,3,18,505,152,353,142,331,10,20,0,0,0,1,0,0,0,1,142,331,10,21,0,1,0,1,0,0,151,353,141,331,10,20,0,0,0,1,0,0,0,1,141,331,10,21,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,0,26758,13044,13714,11496,11927,1196,1414,115,110,33,45,11,6,193,212,11673,12125,1291,1514,197,211,62,69,16,13,12530,13283,11037,11542,1182,1397,94,93,27,42,6,3,184,206,11206,11734,1272,1493,174,192,54,66,10,10,514,431,459,385,14,17,21,17,6,3,5,3,9,6,467,391,19,21,23,19,8,3,6,3 -050,01,061,Alabama,Geneva County,4,1,1569,815,754,689,628,75,73,3,6,0,3,1,3,47,41,733,666,111,104,12,15,4,7,2,3,760,703,638,583,75,72,2,5,0,2,1,2,44,39,680,619,108,103,11,12,4,6,1,2,55,51,51,45,0,1,1,1,0,1,0,1,3,2,53,47,3,1,1,3,0,1,1,1 -050,01,061,Alabama,Geneva County,4,2,1613,828,785,714,658,79,93,6,4,2,3,2,0,25,27,738,683,98,113,11,10,4,5,2,1,768,725,660,600,78,91,3,4,1,3,1,0,25,27,684,625,97,111,8,10,3,5,1,1,60,60,54,58,1,2,3,0,1,0,1,0,0,0,54,58,1,2,3,0,1,0,1,0 -050,01,061,Alabama,Geneva County,4,3,1672,852,820,727,687,97,104,7,10,1,0,2,0,18,19,744,706,109,116,12,16,3,1,3,0,795,757,676,631,96,103,5,5,1,0,0,0,17,18,692,649,108,114,10,11,2,1,1,0,57,63,51,56,1,1,2,5,0,0,2,0,1,1,52,57,1,2,2,5,1,0,2,0 -050,01,061,Alabama,Geneva County,4,4,1709,885,824,745,676,107,118,8,8,7,5,2,1,16,16,760,691,114,126,15,16,9,6,3,2,829,786,697,644,104,115,8,6,4,5,1,0,15,16,711,659,111,123,14,14,6,6,2,1,56,38,48,32,3,3,0,2,3,0,1,1,1,0,49,32,3,3,1,2,3,0,1,1 -050,01,061,Alabama,Geneva County,4,5,1515,740,775,632,676,84,83,7,3,4,1,1,0,12,12,643,687,88,91,12,8,8,2,1,2,688,752,586,657,84,82,4,2,3,0,0,0,11,11,596,667,87,89,9,7,7,1,0,2,52,23,46,19,0,1,3,1,1,1,1,0,1,1,47,20,1,2,3,1,1,1,1,0 -050,01,061,Alabama,Geneva County,4,6,1434,681,753,611,666,57,72,4,3,2,3,1,0,6,9,616,674,59,75,7,5,4,7,2,1,641,715,577,631,56,71,2,1,1,3,1,0,4,9,580,639,58,74,4,3,2,7,2,1,40,38,34,35,1,1,2,2,1,0,0,0,2,0,36,35,1,1,3,2,2,0,0,0 -050,01,061,Alabama,Geneva County,4,7,1464,736,728,644,614,71,87,13,8,0,5,0,0,8,14,650,627,72,93,18,14,3,8,1,0,697,690,610,581,70,85,9,8,0,4,0,0,8,12,616,592,71,89,14,14,3,7,1,0,39,38,34,33,1,2,4,0,0,1,0,0,0,2,34,35,1,4,4,0,0,1,0,0 -050,01,061,Alabama,Geneva County,4,8,1527,745,782,632,671,95,91,5,3,3,3,1,1,9,13,640,683,95,93,12,12,6,6,1,1,716,753,603,645,95,89,5,3,3,3,1,0,9,13,611,657,95,91,12,12,6,6,1,0,29,29,29,26,0,2,0,0,0,0,0,1,0,0,29,26,0,2,0,0,0,0,0,1 -050,01,061,Alabama,Geneva County,4,9,1792,869,923,786,815,64,87,7,10,2,2,0,0,10,9,795,824,67,87,14,17,3,3,0,1,840,904,760,800,62,86,6,7,2,2,0,0,10,9,769,809,65,86,13,14,3,3,0,1,29,19,26,15,2,1,1,3,0,0,0,0,0,0,26,15,2,1,1,3,0,0,0,0 -050,01,061,Alabama,Geneva County,4,10,1947,1002,945,891,818,93,100,10,11,2,5,0,1,6,10,897,828,96,102,13,17,2,7,0,1,975,929,865,805,93,99,9,9,2,5,0,1,6,10,871,815,96,101,12,15,2,7,0,1,27,16,26,13,0,1,1,2,0,0,0,0,0,0,26,13,0,1,1,2,0,0,0,0 -050,01,061,Alabama,Geneva County,4,11,1964,941,1023,834,873,84,123,11,12,2,5,1,0,9,10,841,882,87,125,17,20,4,6,1,0,919,1008,819,860,80,122,9,11,2,5,1,0,8,10,825,869,82,124,15,19,4,6,1,0,22,15,15,13,4,1,2,1,0,0,0,0,1,0,16,13,5,1,2,1,0,0,0,0 -050,01,061,Alabama,Geneva County,4,12,1940,990,950,882,834,92,95,5,9,3,5,0,0,8,7,889,840,93,96,11,16,5,5,0,0,977,940,871,824,91,95,4,9,3,5,0,0,8,7,878,830,92,96,10,16,5,5,0,0,13,10,11,10,1,0,1,0,0,0,0,0,0,0,11,10,1,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,13,1875,919,956,825,847,68,87,13,10,1,3,0,0,12,9,837,855,70,89,22,17,2,3,0,1,907,939,813,831,68,86,13,10,1,3,0,0,12,9,825,839,70,88,22,17,2,3,0,1,12,17,12,16,0,1,0,0,0,0,0,0,0,0,12,16,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,14,1520,728,792,662,713,50,68,10,4,2,1,0,0,4,6,665,719,51,68,14,10,2,2,0,0,724,786,658,707,50,68,10,4,2,1,0,0,4,6,661,713,51,68,14,10,2,2,0,0,4,6,4,6,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,15,1161,515,646,472,577,35,57,4,6,2,0,0,0,2,6,474,583,35,58,5,12,3,0,0,0,508,641,466,572,35,57,3,6,2,0,0,0,2,6,468,578,35,58,4,12,3,0,0,0,7,5,6,5,0,0,1,0,0,0,0,0,0,0,6,5,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,16,902,401,501,376,465,23,33,2,2,0,0,0,0,0,1,376,466,23,33,2,3,0,0,0,0,394,500,369,464,23,33,2,2,0,0,0,0,0,1,369,465,23,33,2,3,0,0,0,0,7,1,7,1,0,0,0,0,0,0,0,0,0,0,7,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,17,638,247,391,235,362,11,26,0,1,0,0,0,0,1,2,236,364,12,27,0,2,0,0,0,0,243,389,231,360,11,26,0,1,0,0,0,0,1,2,232,362,12,27,0,2,0,0,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,4,18,516,150,366,139,347,11,17,0,0,0,1,0,0,0,1,139,347,11,18,0,1,0,1,0,0,149,366,138,347,11,17,0,0,0,1,0,0,0,1,138,347,11,18,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,0,26928,13151,13777,11549,11983,1228,1397,122,108,34,52,11,6,207,231,11745,12193,1325,1512,211,216,64,80,16,11,12608,13348,11066,11605,1210,1382,101,88,28,49,6,3,197,221,11253,11807,1304,1489,184,193,56,77,11,7,543,429,483,378,18,15,21,20,6,3,5,3,10,10,492,386,21,23,27,23,8,3,5,4 -050,01,061,Alabama,Geneva County,5,1,1545,803,742,678,613,73,75,2,5,1,2,1,2,48,45,725,656,106,111,14,13,5,6,1,3,745,696,624,574,72,73,2,5,1,1,1,2,45,41,669,614,103,106,12,11,5,5,1,3,58,46,54,39,1,2,0,0,0,1,0,0,3,4,56,42,3,5,2,2,0,1,0,0 -050,01,061,Alabama,Geneva County,5,2,1694,856,838,731,709,80,84,7,8,3,4,2,1,33,32,763,738,104,107,12,15,7,8,4,2,787,773,668,651,80,82,3,5,2,4,1,0,33,31,700,679,104,104,8,12,6,8,3,1,69,65,63,58,0,2,4,3,1,0,1,1,0,1,63,59,0,3,4,3,1,0,1,1 -050,01,061,Alabama,Geneva County,5,3,1708,872,836,747,700,102,106,6,9,1,1,1,0,15,20,762,718,111,121,10,13,3,4,1,1,816,776,697,646,100,105,4,5,1,1,0,0,14,19,711,663,109,119,7,9,3,4,0,1,56,60,50,54,2,1,2,4,0,0,1,0,1,1,51,55,2,2,3,4,0,0,1,0 -050,01,061,Alabama,Geneva County,5,4,1629,842,787,706,654,98,102,10,5,5,6,3,1,20,19,724,673,108,111,19,13,7,8,4,1,791,747,661,619,96,100,10,3,3,6,1,0,20,19,679,638,106,109,19,11,5,8,2,0,51,40,45,35,2,2,0,2,2,0,2,1,0,0,45,35,2,2,0,2,2,0,2,1 -050,01,061,Alabama,Geneva County,5,5,1561,790,771,664,668,100,83,8,5,4,2,1,0,13,13,677,681,101,90,13,10,9,3,3,0,741,747,624,649,98,82,7,4,2,1,0,0,10,11,634,660,99,87,10,9,6,2,2,0,49,24,40,19,2,1,1,1,2,1,1,0,3,2,43,21,2,3,3,1,3,1,1,0 -050,01,061,Alabama,Geneva County,5,6,1482,709,773,626,688,67,69,4,4,2,3,1,0,9,9,635,696,70,73,9,8,4,4,1,1,656,737,579,655,66,68,2,2,2,3,1,0,6,9,585,663,68,72,6,6,3,4,1,1,53,36,47,33,1,1,2,2,0,0,0,0,3,0,50,33,2,1,3,2,1,0,0,0 -050,01,061,Alabama,Geneva County,5,7,1524,776,748,677,638,79,82,12,7,1,7,0,0,7,14,684,650,81,85,15,18,3,9,0,1,739,710,647,604,78,82,7,6,0,6,0,0,7,12,654,615,80,84,10,16,2,8,0,0,37,38,30,34,1,0,5,1,1,1,0,0,0,2,30,35,1,1,5,2,1,1,0,1 -050,01,061,Alabama,Geneva County,5,8,1503,718,785,617,670,81,95,7,4,2,3,1,1,10,12,625,678,84,100,14,12,4,6,1,1,679,755,579,643,81,93,6,4,2,3,1,0,10,12,587,651,84,98,13,12,4,6,1,0,39,30,38,27,0,2,1,0,0,0,0,1,0,0,38,27,0,2,1,0,0,0,0,1 -050,01,061,Alabama,Geneva County,5,9,1776,865,911,777,800,72,90,4,10,3,3,0,0,9,8,784,805,76,94,10,16,4,4,0,0,833,891,748,783,70,89,3,8,3,3,0,0,9,8,755,788,74,93,9,14,4,4,0,0,32,20,29,17,2,1,1,2,0,0,0,0,0,0,29,17,2,1,1,2,0,0,0,0 -050,01,061,Alabama,Geneva County,5,10,1901,979,922,869,810,87,87,13,8,2,4,0,0,8,13,876,821,89,90,18,18,4,6,0,0,954,907,845,799,87,87,12,4,2,4,0,0,8,13,852,810,89,90,17,14,4,6,0,0,25,15,24,11,0,0,1,4,0,0,0,0,0,0,24,11,0,0,1,4,0,0,0,0 -050,01,061,Alabama,Geneva County,5,11,1935,932,1003,823,846,90,126,11,12,2,5,1,1,5,13,828,859,93,127,14,23,2,6,1,1,915,993,810,839,87,124,10,11,2,5,1,1,5,13,815,852,90,125,13,22,2,6,1,1,17,10,13,7,3,2,1,1,0,0,0,0,0,0,13,7,3,2,1,1,0,0,0,0 -050,01,061,Alabama,Geneva County,5,12,1969,994,975,888,854,87,102,9,7,2,5,0,0,8,7,896,861,88,104,15,12,3,5,0,0,978,962,876,841,85,102,7,7,2,5,0,0,8,7,884,848,86,104,13,12,3,5,0,0,16,13,12,13,2,0,2,0,0,0,0,0,0,0,12,13,2,0,2,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,13,1829,893,936,791,828,78,90,10,7,2,4,0,0,12,7,802,835,78,90,20,13,5,5,0,0,882,920,782,813,76,89,10,7,2,4,0,0,12,7,793,820,76,89,20,13,5,5,0,0,11,16,9,15,2,1,0,0,0,0,0,0,0,0,9,15,2,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,14,1620,791,829,724,743,50,69,10,6,1,2,0,0,6,9,729,750,51,70,16,15,1,3,0,0,780,821,713,735,50,69,10,6,1,2,0,0,6,9,718,742,51,70,16,15,1,3,0,0,11,8,11,8,0,0,0,0,0,0,0,0,0,0,11,8,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,15,1175,515,660,467,588,36,59,7,7,2,0,0,0,3,6,470,594,37,60,9,11,2,1,0,0,509,657,462,585,36,59,6,7,2,0,0,0,3,6,465,591,37,60,8,11,2,1,0,0,6,3,5,3,0,0,1,0,0,0,0,0,0,0,5,3,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,16,910,399,511,372,477,24,32,2,2,1,0,0,0,0,0,372,477,24,32,2,2,1,0,0,0,392,508,365,474,24,32,2,2,1,0,0,0,0,0,365,474,24,32,2,2,1,0,0,0,7,3,7,3,0,0,0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,17,645,261,384,249,351,11,29,0,1,0,0,0,0,1,3,250,354,11,29,1,3,0,1,0,0,257,382,245,349,11,29,0,1,0,0,0,0,1,3,246,352,11,29,1,3,0,1,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,5,18,522,156,366,143,346,13,17,0,1,0,1,0,0,0,1,143,347,13,18,0,1,0,1,0,0,154,366,141,346,13,17,0,1,0,1,0,0,0,1,141,347,13,18,0,1,0,1,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,0,26688,13075,13613,11451,11843,1217,1353,137,114,40,52,11,6,219,245,11655,12064,1328,1471,233,224,75,90,13,15,12546,13186,10990,11470,1199,1336,110,95,34,48,6,3,207,234,11182,11680,1304,1448,202,201,67,85,8,12,529,427,461,373,18,17,27,19,6,4,5,3,12,11,473,384,24,23,31,23,8,5,5,3 -050,01,061,Alabama,Geneva County,6,1,1528,792,736,671,610,71,73,3,3,1,2,0,2,46,46,714,654,107,106,14,9,4,9,1,4,742,682,623,564,70,68,3,3,1,2,0,2,45,43,665,605,105,99,14,9,4,8,1,4,50,54,48,46,1,5,0,0,0,0,0,0,1,3,49,49,2,7,0,0,0,1,0,0 -050,01,061,Alabama,Geneva County,6,2,1676,860,816,733,681,76,80,6,10,4,5,2,1,39,39,772,717,104,107,15,20,9,10,2,2,796,753,674,626,76,79,4,7,4,4,2,0,36,37,710,660,102,104,12,17,9,9,2,1,64,63,59,55,0,1,2,3,0,1,0,1,3,2,62,57,2,3,3,3,0,1,0,1 -050,01,061,Alabama,Geneva County,6,3,1745,888,857,756,714,100,111,10,7,2,1,2,0,18,24,773,733,112,128,14,17,5,3,2,1,826,798,704,662,99,108,6,4,1,1,0,0,16,23,719,680,110,125,9,13,4,3,0,1,62,59,52,52,1,3,4,3,1,0,2,0,2,1,54,53,2,3,5,4,1,0,2,0 -050,01,061,Alabama,Geneva County,6,4,1566,810,756,690,636,89,93,9,6,2,5,3,1,17,15,702,649,101,101,16,12,7,7,4,2,750,715,639,601,84,91,8,4,1,5,1,0,17,14,651,613,96,99,15,9,6,7,2,1,60,41,51,35,5,2,1,2,1,0,2,1,0,1,51,36,5,2,1,3,1,0,2,1 -050,01,061,Alabama,Geneva County,6,5,1524,783,741,649,632,106,88,9,4,7,2,1,0,11,15,660,647,110,94,15,10,8,4,1,1,744,720,619,615,104,87,7,3,4,1,0,0,10,14,629,629,107,93,13,8,5,3,0,1,39,21,30,17,2,1,2,1,3,1,1,0,1,1,31,18,3,1,2,2,3,1,1,0 -050,01,061,Alabama,Geneva County,6,6,1508,717,791,618,707,78,64,6,6,2,4,1,0,12,10,629,715,82,70,14,8,5,8,1,0,664,755,574,674,77,64,2,4,2,4,1,0,8,9,581,681,80,69,9,6,3,8,1,0,53,36,44,33,1,0,4,2,0,0,0,0,4,1,48,34,2,1,5,2,2,0,0,0 -050,01,061,Alabama,Geneva County,6,7,1464,741,723,647,619,73,81,11,7,3,5,0,0,7,11,654,628,76,85,15,14,3,6,0,1,708,689,618,589,72,81,9,6,2,4,0,0,7,9,625,596,75,84,13,12,2,5,0,1,33,34,29,30,1,0,2,1,1,1,0,0,0,2,29,32,1,1,2,2,1,1,0,0 -050,01,061,Alabama,Geneva County,6,8,1489,726,763,633,658,71,84,9,3,2,2,0,1,11,15,644,670,72,89,16,12,5,7,0,1,689,736,601,633,71,83,4,3,2,2,0,0,11,15,612,645,72,88,11,12,5,7,0,0,37,27,32,25,0,1,5,0,0,0,0,1,0,0,32,25,0,1,5,0,0,0,0,1 -050,01,061,Alabama,Geneva County,6,9,1713,825,888,739,778,69,86,5,11,4,3,1,0,7,10,744,788,71,90,10,17,6,5,1,1,792,865,708,758,67,85,5,9,4,3,1,0,7,10,713,768,69,89,10,15,6,5,1,1,33,23,31,20,2,1,0,2,0,0,0,0,0,0,31,20,2,1,0,2,0,0,0,0 -050,01,061,Alabama,Geneva County,6,10,1861,960,901,848,798,88,76,12,9,1,5,0,0,11,13,859,810,89,77,21,20,2,6,0,1,938,887,829,787,88,76,10,6,1,5,0,0,10,13,839,799,89,77,18,17,2,6,0,1,22,14,19,11,0,0,2,3,0,0,0,0,1,0,20,11,0,0,3,3,0,0,0,0 -050,01,061,Alabama,Geneva County,6,11,1914,945,969,831,816,92,125,13,10,2,4,1,1,6,13,837,828,93,126,17,20,3,7,1,1,925,957,815,808,89,123,12,8,2,4,1,1,6,13,821,820,90,124,16,18,3,7,1,1,20,12,16,8,3,2,1,2,0,0,0,0,0,0,16,8,3,2,1,2,0,0,0,0 -050,01,061,Alabama,Geneva County,6,12,1976,972,1004,863,876,85,104,12,12,2,6,0,0,10,6,872,881,86,105,19,17,5,7,0,0,956,990,851,862,84,104,9,12,2,6,0,0,10,6,860,867,85,105,16,17,5,7,0,0,16,14,12,14,1,0,3,0,0,0,0,0,0,0,12,14,1,0,3,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,13,1808,905,903,802,801,80,84,10,6,4,4,0,0,9,8,810,809,83,85,15,12,6,5,0,0,895,894,793,793,79,83,10,6,4,4,0,0,9,8,801,801,82,84,15,12,6,5,0,0,10,9,9,8,1,1,0,0,0,0,0,0,0,0,9,8,1,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,14,1619,781,838,702,757,56,62,12,7,1,3,0,0,10,9,711,765,57,65,19,14,4,3,0,0,770,826,691,746,56,62,12,7,1,2,0,0,10,9,700,754,57,65,19,14,4,2,0,0,11,12,11,11,0,0,0,0,0,1,0,0,0,0,11,11,0,0,0,0,0,1,0,0 -050,01,061,Alabama,Geneva County,6,15,1204,537,667,492,587,32,64,7,8,2,0,0,0,4,8,496,594,34,65,9,15,2,1,0,0,534,665,489,585,32,64,7,8,2,0,0,0,4,8,493,592,34,65,9,15,2,1,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,16,913,403,510,375,473,24,34,3,3,1,0,0,0,0,0,375,473,24,34,3,3,1,0,0,0,394,507,367,470,24,34,2,3,1,0,0,0,0,0,367,470,24,34,2,3,1,0,0,0,9,3,8,3,0,0,1,0,0,0,0,0,0,0,8,3,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,17,640,255,385,237,351,17,30,0,1,0,0,0,0,1,3,238,354,17,30,1,3,0,1,0,0,252,383,234,349,17,30,0,1,0,0,0,0,1,3,235,352,17,30,1,3,0,1,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,6,18,540,175,365,165,349,10,14,0,1,0,1,0,0,0,0,165,349,10,14,0,1,0,1,0,0,171,364,161,348,10,14,0,1,0,1,0,0,0,0,161,348,10,14,0,1,0,1,0,0,4,1,4,1,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,7,0,26605,13046,13559,11422,11780,1206,1356,134,117,37,53,12,5,235,248,11636,12013,1329,1477,232,235,64,75,23,13,12511,13134,10961,11414,1182,1337,110,97,31,48,6,3,221,235,11165,11635,1295,1453,205,207,57,69,13,11,535,425,461,366,24,19,24,20,6,5,6,2,14,13,471,378,34,24,27,28,7,6,10,2 -050,01,061,Alabama,Geneva County,7,1,1507,777,730,642,604,80,81,3,2,2,2,0,1,50,40,690,642,117,113,13,11,7,4,2,1,729,686,595,566,80,76,3,2,2,2,0,1,49,39,643,603,116,107,13,11,7,4,1,1,48,44,47,38,0,5,0,0,0,0,0,0,1,1,47,39,1,6,0,0,0,0,1,0 -050,01,061,Alabama,Geneva County,7,2,1654,849,805,725,670,67,81,7,8,0,5,2,2,48,39,768,706,103,110,18,21,5,6,3,2,788,757,672,630,66,79,4,6,0,4,1,1,45,37,714,664,99,107,14,18,4,5,2,1,61,48,53,40,1,2,3,2,0,1,1,1,3,2,54,42,4,3,4,3,1,1,1,1 -050,01,061,Alabama,Geneva County,7,3,1756,909,847,782,705,95,108,7,6,4,1,2,0,19,27,797,731,108,125,10,11,6,4,7,3,842,792,725,656,93,106,4,4,3,1,1,0,16,25,737,680,105,122,6,9,5,3,5,3,67,55,57,49,2,2,3,2,1,0,1,0,3,2,60,51,3,3,4,2,1,1,2,0 -050,01,061,Alabama,Geneva County,7,4,1506,771,735,651,613,88,89,8,6,2,4,3,0,19,23,670,634,96,101,15,15,6,9,3,0,709,687,599,575,83,86,6,3,1,4,1,0,19,19,618,593,91,96,13,9,5,9,1,0,62,48,52,38,5,3,2,3,1,0,2,0,0,4,52,41,5,5,2,6,1,0,2,0 -050,01,061,Alabama,Geneva County,7,5,1527,796,731,668,622,99,93,10,5,6,2,2,0,11,9,676,631,106,98,15,8,8,2,2,1,762,704,642,597,98,92,10,4,3,2,0,0,9,9,649,606,103,97,14,7,5,2,0,1,34,27,26,25,1,1,0,1,3,0,2,0,2,0,27,25,3,1,1,1,3,0,2,0 -050,01,061,Alabama,Geneva County,7,6,1514,743,771,647,682,76,69,4,6,4,4,1,0,11,10,655,690,81,74,11,11,5,6,2,0,683,740,593,655,74,69,2,5,4,3,1,0,9,8,599,661,78,74,9,8,5,5,1,0,60,31,54,27,2,0,2,1,0,1,0,0,2,2,56,29,3,0,2,3,0,1,1,0 -050,01,061,Alabama,Geneva County,7,7,1437,707,730,616,637,69,70,10,6,3,5,0,0,9,12,625,649,72,71,14,15,5,7,0,0,682,697,596,608,68,70,8,4,2,4,0,0,8,11,604,619,70,71,12,12,4,6,0,0,25,33,20,29,1,0,2,2,1,1,0,0,1,1,21,30,2,0,2,3,1,1,0,0 -050,01,061,Alabama,Geneva County,7,8,1512,732,780,646,661,63,92,11,6,1,3,0,1,11,17,657,676,64,99,19,17,3,5,0,1,698,751,618,637,62,91,6,4,1,3,0,0,11,16,629,651,63,98,14,14,3,5,0,0,34,29,28,24,1,1,5,2,0,0,0,1,0,1,28,25,1,1,5,3,0,0,0,1 -050,01,061,Alabama,Geneva County,7,9,1649,793,856,689,750,90,83,4,10,4,3,1,0,5,10,694,759,91,86,8,17,4,4,1,0,755,825,656,721,85,82,4,9,4,3,1,0,5,10,661,730,86,85,8,16,4,4,1,0,38,31,33,29,5,1,0,1,0,0,0,0,0,0,33,29,5,1,0,1,0,0,0,0 -050,01,061,Alabama,Geneva County,7,10,1838,935,903,834,799,76,75,14,10,1,6,0,0,10,13,843,811,78,77,21,20,3,7,0,1,909,883,811,784,75,74,12,7,1,5,0,0,10,13,820,796,77,76,19,17,3,6,0,1,26,20,23,15,1,1,2,3,0,1,0,0,0,0,23,15,1,1,2,3,0,1,0,0 -050,01,061,Alabama,Geneva County,7,11,1920,968,952,860,818,86,108,12,11,2,3,1,1,7,11,867,829,88,111,16,19,2,3,2,1,944,940,839,810,85,106,11,9,2,3,1,1,6,11,845,821,87,109,15,17,2,3,1,1,24,12,21,8,1,2,1,2,0,0,0,0,1,0,22,8,1,2,1,2,0,0,1,0 -050,01,061,Alabama,Geneva County,7,12,1965,971,994,862,863,87,106,12,13,0,5,0,0,10,7,870,870,91,109,20,17,0,5,0,0,952,980,850,850,84,106,9,12,0,5,0,0,9,7,857,857,87,109,17,16,0,5,0,0,19,14,12,13,3,0,3,1,0,0,0,0,1,0,13,13,4,0,3,1,0,0,0,0 -050,01,061,Alabama,Geneva County,7,13,1755,864,891,763,787,82,85,6,8,4,3,0,0,9,8,772,795,83,86,13,15,5,3,0,0,855,883,755,780,81,84,6,8,4,3,0,0,9,8,764,788,82,85,13,15,5,3,0,0,9,8,8,7,1,1,0,0,0,0,0,0,0,0,8,7,1,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,7,14,1697,831,866,746,776,60,70,14,5,1,4,0,0,10,11,756,786,60,70,24,15,1,5,0,1,821,851,736,762,60,70,14,5,1,3,0,0,10,11,746,772,60,70,24,15,1,4,0,1,10,15,10,14,0,0,0,0,0,1,0,0,0,0,10,14,0,0,0,0,0,1,0,0 -050,01,061,Alabama,Geneva County,7,15,1255,570,685,519,611,37,59,8,8,1,0,0,0,5,7,523,618,40,60,11,13,1,1,0,1,567,681,516,607,37,59,8,8,1,0,0,0,5,7,520,614,40,60,11,13,1,1,0,1,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,7,16,925,390,535,359,485,25,43,4,5,2,1,0,0,0,1,359,486,25,43,4,6,2,1,0,0,382,532,352,482,25,43,3,5,2,1,0,0,0,1,352,483,25,43,3,6,2,1,0,0,8,3,7,3,0,0,1,0,0,0,0,0,0,0,7,3,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,7,17,636,264,372,245,334,18,33,0,1,0,1,0,0,1,3,246,337,18,33,0,3,1,2,1,1,261,371,242,333,18,33,0,1,0,1,0,0,1,3,243,336,18,33,0,3,1,2,1,1,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,7,18,552,176,376,168,363,8,11,0,1,0,1,0,0,0,0,168,363,8,11,0,1,0,1,0,0,172,374,164,361,8,11,0,1,0,1,0,0,0,0,164,361,8,11,0,1,0,1,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,8,0,26645,13066,13579,11444,11814,1186,1312,136,126,41,56,13,6,246,265,11665,12060,1316,1437,247,254,60,87,26,9,12521,13112,10973,11408,1161,1293,111,106,34,50,7,4,235,251,11187,11643,1284,1411,215,226,52,80,20,6,545,467,471,406,25,19,25,20,7,6,6,2,11,14,478,417,32,26,32,28,8,7,6,3 -050,01,061,Alabama,Geneva County,8,1,1502,767,735,638,632,66,65,5,1,4,2,0,1,54,34,689,665,106,92,15,6,7,4,4,2,713,687,585,590,66,60,4,1,4,2,0,1,54,33,636,622,106,86,14,6,7,4,4,2,54,48,53,42,0,5,1,0,0,0,0,0,0,1,53,43,0,6,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,8,2,1612,834,778,703,649,76,73,4,8,0,4,1,2,50,42,749,689,115,103,18,20,1,7,3,3,775,720,649,601,75,72,1,6,0,3,1,1,49,37,695,637,113,100,14,14,1,6,3,2,59,58,54,48,1,1,3,2,0,1,0,1,1,5,54,52,2,3,4,6,0,1,0,1 -050,01,061,Alabama,Geneva County,8,3,1723,885,838,757,688,89,104,7,6,6,2,3,0,23,38,777,724,103,127,15,18,10,7,3,1,819,785,702,641,85,101,5,5,4,2,1,0,22,36,721,676,99,124,12,16,8,6,1,0,66,53,55,47,4,3,2,1,2,0,2,0,1,2,56,48,4,3,3,2,2,1,2,1 -050,01,061,Alabama,Geneva County,8,4,1584,803,781,690,661,79,87,7,7,1,3,2,0,24,23,712,681,92,101,18,13,2,9,3,0,746,725,642,612,76,86,5,4,1,3,0,0,22,20,662,629,88,98,15,9,2,9,1,0,57,56,48,49,3,1,2,3,0,0,2,0,2,3,50,52,4,3,3,4,0,0,2,0 -050,01,061,Alabama,Geneva County,8,5,1466,769,697,647,587,93,88,10,8,6,3,3,0,10,11,653,597,99,94,15,13,7,4,5,0,730,660,617,556,90,85,9,6,3,3,2,0,9,10,622,566,95,90,14,10,4,4,4,0,39,37,30,31,3,3,1,2,3,0,1,0,1,1,31,31,4,4,1,3,3,0,1,0 -050,01,061,Alabama,Geneva County,8,6,1518,752,766,647,676,82,66,7,7,4,2,2,0,10,15,655,689,85,73,12,16,7,3,3,0,697,738,600,650,80,66,5,6,3,1,1,0,8,15,608,663,81,73,8,15,6,2,2,0,55,28,47,26,2,0,2,1,1,1,1,0,2,0,47,26,4,0,4,1,1,1,1,0 -050,01,061,Alabama,Geneva County,8,7,1408,683,725,604,639,61,67,7,6,2,4,0,0,9,9,613,647,65,70,11,12,3,5,0,0,654,692,580,609,60,67,6,4,1,3,0,0,7,9,587,617,63,70,9,10,2,4,0,0,29,33,24,30,1,0,1,2,1,1,0,0,2,0,26,30,2,0,2,2,1,1,0,0 -050,01,061,Alabama,Geneva County,8,8,1548,772,776,681,657,72,87,13,8,1,4,0,1,5,19,686,675,74,92,15,20,1,7,1,1,742,741,658,626,71,87,7,6,1,4,0,1,5,17,663,642,73,91,9,17,1,7,1,1,30,35,23,31,1,0,6,2,0,0,0,0,0,2,23,33,1,1,6,3,0,0,0,0 -050,01,061,Alabama,Geneva County,8,9,1616,777,839,663,728,96,85,5,8,4,4,1,1,8,13,671,739,96,87,12,19,5,6,1,1,736,813,624,704,94,84,5,8,4,4,1,0,8,13,632,715,94,86,12,19,5,6,1,0,41,26,39,24,2,1,0,0,0,0,0,1,0,0,39,24,2,1,0,0,0,0,0,1 -050,01,061,Alabama,Geneva County,8,10,1820,908,912,817,804,68,75,11,15,2,6,0,0,10,12,825,816,69,75,21,23,2,10,1,0,878,884,791,783,66,73,9,11,2,5,0,0,10,12,799,795,67,73,19,19,2,9,1,0,30,28,26,21,2,2,2,4,0,1,0,0,0,0,26,21,2,2,2,4,0,1,0,0 -050,01,061,Alabama,Geneva County,8,11,1933,988,945,872,824,94,101,13,8,2,5,0,1,7,6,878,830,96,102,19,13,2,5,0,1,964,930,850,813,93,100,13,6,2,4,0,1,6,6,855,819,95,101,18,11,2,4,0,1,24,15,22,11,1,1,0,2,0,1,0,0,1,0,23,11,1,1,1,2,0,1,0,0 -050,01,061,Alabama,Geneva County,8,12,1934,936,998,843,859,70,113,12,14,0,4,1,0,10,8,851,867,72,114,19,21,3,4,1,0,916,985,832,848,66,112,8,13,0,4,1,0,9,8,840,856,67,113,15,20,2,4,1,0,20,13,11,11,4,1,4,1,0,0,0,0,1,0,11,11,5,1,4,1,1,0,0,0 -050,01,061,Alabama,Geneva County,8,13,1801,891,910,791,806,80,80,7,8,3,5,0,0,10,11,800,816,82,82,15,17,3,6,1,0,879,903,780,800,79,79,7,8,3,5,0,0,10,11,789,810,81,81,15,17,3,6,1,0,12,7,11,6,1,1,0,0,0,0,0,0,0,0,11,6,1,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,8,14,1741,839,902,750,806,66,74,13,8,1,4,0,0,9,10,759,815,66,75,21,18,2,4,0,0,830,884,741,789,66,74,13,8,1,3,0,0,9,10,750,798,66,75,21,18,2,3,0,0,9,18,9,17,0,0,0,0,0,1,0,0,0,0,9,17,0,0,0,0,0,1,0,0 -050,01,061,Alabama,Geneva County,8,15,1277,598,679,545,610,36,56,10,7,2,0,0,0,5,6,550,615,37,57,14,11,2,2,0,0,595,673,542,604,36,56,10,7,2,0,0,0,5,6,547,609,37,57,14,11,2,2,0,0,3,6,3,6,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,8,16,950,397,553,360,498,29,44,4,6,3,1,0,0,1,4,360,502,30,45,5,9,3,1,0,0,389,550,353,495,29,44,3,6,3,1,0,0,1,4,353,499,30,45,4,9,3,1,0,0,8,3,7,3,0,0,1,0,0,0,0,0,0,0,7,3,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,8,17,653,280,373,256,338,22,29,1,0,0,2,0,0,1,4,257,341,22,30,2,4,0,2,0,0,275,372,251,337,22,29,1,0,0,2,0,0,1,4,252,340,22,30,2,4,0,2,0,0,5,1,5,1,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,8,18,559,187,372,180,352,7,18,0,1,0,1,0,0,0,0,180,352,7,18,0,1,0,1,0,0,183,370,176,350,7,18,0,1,0,1,0,0,0,0,176,350,7,18,0,1,0,1,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,9,0,26497,12960,13537,11346,11782,1200,1311,130,128,41,51,13,8,230,257,11559,12020,1326,1432,220,249,66,81,24,17,12399,13069,10863,11368,1173,1294,105,105,34,47,7,6,217,249,11064,11599,1291,1411,193,223,56,75,17,15,561,468,483,414,27,17,25,23,7,4,6,2,13,8,495,421,35,21,27,26,10,6,7,2 -050,01,061,Alabama,Geneva County,9,1,1456,750,706,617,603,76,67,5,2,4,3,0,0,48,31,662,634,111,89,13,8,9,6,3,0,687,656,563,560,73,61,2,1,4,3,0,0,45,31,606,591,105,83,10,7,9,6,2,0,63,50,54,43,3,6,3,1,0,0,0,0,3,0,56,43,6,6,3,1,0,0,1,0 -050,01,061,Alabama,Geneva County,9,2,1621,845,776,711,653,83,68,4,7,0,3,1,5,46,40,751,691,121,95,13,18,3,6,4,7,775,721,645,605,82,67,2,6,0,2,1,4,45,37,684,641,119,93,11,15,3,4,4,6,70,55,66,48,1,1,2,1,0,1,0,1,1,3,67,50,2,2,2,3,0,2,0,1 -050,01,061,Alabama,Geneva County,9,3,1734,898,836,785,698,76,97,5,6,5,4,3,0,24,31,806,725,93,118,11,15,6,9,6,0,836,786,732,651,74,95,2,5,3,4,1,0,24,31,753,678,91,116,8,14,4,9,4,0,62,50,53,47,2,2,3,1,2,0,2,0,0,0,53,47,2,2,3,1,2,0,2,0 -050,01,061,Alabama,Geneva County,9,4,1548,773,775,664,648,81,97,6,8,1,0,2,0,19,22,682,669,92,110,12,16,5,2,2,0,728,714,625,596,80,95,4,4,1,0,0,0,18,19,642,614,91,107,10,11,4,1,0,0,45,61,39,52,1,2,2,4,0,0,2,0,1,3,40,55,1,3,2,5,1,1,2,0 -050,01,061,Alabama,Geneva County,9,5,1402,716,686,590,574,97,86,11,8,6,2,3,0,9,16,598,589,100,95,15,13,10,5,3,1,664,651,550,543,91,85,10,6,3,2,2,0,8,15,557,557,94,93,13,11,7,5,2,1,52,35,40,31,6,1,1,2,3,0,1,0,1,1,41,32,6,2,2,2,3,0,1,0 -050,01,061,Alabama,Geneva County,9,6,1574,783,791,675,697,88,70,5,7,3,1,1,0,11,16,686,708,93,79,8,16,5,2,2,2,731,768,631,677,86,70,4,5,2,0,0,0,8,16,639,688,89,79,7,14,3,1,1,2,52,23,44,20,2,0,1,2,1,1,1,0,3,0,47,20,4,0,1,2,2,1,1,0 -050,01,061,Alabama,Geneva County,9,7,1417,665,752,600,668,48,64,6,6,2,4,1,0,8,10,608,677,51,69,11,11,2,6,1,0,630,716,571,634,47,64,4,4,1,4,1,0,6,10,577,643,48,69,9,9,1,6,1,0,35,36,29,34,1,0,2,2,1,0,0,0,2,0,31,34,3,0,2,2,1,0,0,0 -050,01,061,Alabama,Geneva County,9,8,1496,753,743,663,629,71,86,14,9,1,4,0,1,4,14,667,642,73,89,16,19,1,5,0,2,730,711,645,599,70,86,10,9,1,3,0,1,4,13,649,611,72,88,12,19,1,4,0,2,23,32,18,30,1,0,4,0,0,1,0,0,0,1,18,31,1,1,4,0,0,1,0,0 -050,01,061,Alabama,Geneva County,9,9,1572,755,817,638,711,98,82,5,6,4,3,1,1,9,14,646,723,102,86,12,16,4,5,1,1,715,784,599,682,97,81,5,4,4,3,1,0,9,14,607,694,101,85,12,14,4,5,1,0,40,33,39,29,1,1,0,2,0,0,0,1,0,0,39,29,1,1,0,2,0,0,0,1 -050,01,061,Alabama,Geneva County,9,10,1770,856,914,771,810,66,73,7,14,2,6,0,0,10,11,781,821,68,75,15,23,3,6,0,1,828,888,747,789,63,72,6,11,2,5,0,0,10,11,757,800,65,74,14,20,3,5,0,1,28,26,24,21,3,1,1,3,0,1,0,0,0,0,24,21,3,1,1,3,0,1,0,0 -050,01,061,Alabama,Geneva County,9,11,1925,1002,923,884,803,96,99,14,8,2,4,0,1,6,8,890,811,97,100,19,15,2,4,0,1,977,908,862,792,95,98,13,5,2,4,0,1,5,8,867,800,96,99,17,12,2,4,0,1,25,15,22,11,1,1,1,3,0,0,0,0,1,0,23,11,1,1,2,3,0,0,0,0 -050,01,061,Alabama,Geneva County,9,12,1898,902,996,806,847,73,117,11,17,2,5,1,0,9,10,815,857,75,119,16,24,4,6,1,0,880,984,791,837,69,116,9,16,2,5,1,0,8,10,799,847,71,118,14,23,3,6,1,0,22,12,15,10,4,1,2,1,0,0,0,0,1,0,16,10,4,1,2,1,1,0,0,0 -050,01,061,Alabama,Geneva County,9,13,1885,958,927,856,825,82,83,8,6,3,5,0,0,9,8,864,833,83,84,14,12,5,6,1,0,942,915,843,813,81,83,6,6,3,5,0,0,9,8,851,821,82,84,12,12,5,6,1,0,16,12,13,12,1,0,2,0,0,0,0,0,0,0,13,12,1,0,2,0,0,0,0,0 -050,01,061,Alabama,Geneva County,9,14,1729,837,892,751,802,61,68,12,9,1,2,0,0,12,11,762,813,62,69,23,18,2,3,0,0,828,876,742,787,61,67,12,9,1,2,0,0,12,11,753,798,62,68,23,18,2,3,0,0,9,16,9,15,0,1,0,0,0,0,0,0,0,0,9,15,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,9,15,1294,608,686,550,617,41,57,11,6,2,1,0,0,4,5,554,621,42,58,14,10,2,2,0,0,606,680,548,612,41,57,11,5,2,1,0,0,4,5,552,616,42,58,14,9,2,2,0,0,2,6,2,5,0,0,0,1,0,0,0,0,0,0,2,5,0,0,0,1,0,0,0,0 -050,01,061,Alabama,Geneva County,9,16,927,384,543,346,479,29,49,4,8,3,1,0,0,2,6,348,484,29,49,6,11,3,4,0,2,378,539,341,475,29,49,3,8,3,1,0,0,2,6,343,480,29,49,5,11,3,4,0,2,6,4,5,4,0,0,1,0,0,0,0,0,0,0,5,4,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,9,17,672,279,393,254,364,23,24,2,0,0,2,0,0,0,3,254,367,23,24,2,3,0,2,0,0,273,391,248,362,23,24,2,0,0,2,0,0,0,3,248,365,23,24,2,3,0,2,0,0,6,2,6,2,0,0,0,0,0,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,9,18,577,196,381,185,354,11,24,0,1,0,1,0,0,0,1,185,355,11,24,0,1,0,2,0,0,191,381,180,354,11,24,0,1,0,1,0,0,0,1,180,355,11,24,0,1,0,2,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,10,0,26404,12913,13491,11292,11769,1186,1291,132,127,42,51,14,8,247,245,11520,11996,1320,1413,236,239,69,79,19,15,12343,13016,10802,11349,1160,1275,107,105,35,48,7,6,232,233,11016,11565,1285,1389,206,212,60,75,12,13,570,475,490,420,26,16,25,22,7,3,7,2,15,12,504,431,35,24,30,27,9,4,7,2 -050,01,061,Alabama,Geneva County,10,1,1460,757,703,618,601,70,64,5,1,4,4,1,0,59,33,674,634,113,85,18,7,11,7,2,3,689,662,560,566,68,61,2,0,4,4,0,0,55,31,613,597,108,81,13,5,11,7,1,3,68,41,58,35,2,3,3,1,0,0,1,0,4,2,61,37,5,4,5,2,0,0,1,0 -050,01,061,Alabama,Geneva County,10,2,1586,824,762,690,649,89,68,4,6,1,2,1,3,39,34,728,682,117,93,13,14,5,3,1,4,755,710,627,603,87,66,3,6,1,1,1,3,36,31,662,633,113,88,12,14,4,2,1,4,69,52,63,46,2,2,1,0,0,1,0,0,3,3,66,49,4,5,1,0,1,1,0,0 -050,01,061,Alabama,Geneva County,10,3,1739,882,857,762,731,78,80,6,7,4,5,3,2,29,32,786,760,99,103,14,14,7,9,5,3,817,800,705,678,78,79,2,6,2,5,1,1,29,31,729,706,99,101,10,13,5,9,3,2,65,57,57,53,0,1,4,1,2,0,2,1,0,1,57,54,0,2,4,1,2,0,2,1 -050,01,061,Alabama,Geneva County,10,4,1597,817,780,705,641,87,109,6,9,1,0,1,0,17,21,720,659,95,124,15,19,3,2,1,0,769,724,662,595,86,106,4,5,1,0,0,0,16,18,676,611,94,119,12,13,3,1,0,0,48,56,43,46,1,3,2,4,0,0,1,0,1,3,44,48,1,5,3,6,0,1,1,0 -050,01,061,Alabama,Geneva County,10,5,1342,695,647,584,550,76,75,10,4,5,1,4,0,16,17,598,564,87,86,16,11,7,4,4,0,648,610,548,515,70,75,9,3,3,1,2,0,16,16,562,528,81,85,15,10,5,4,2,0,47,37,36,35,6,0,1,1,2,0,2,0,0,1,36,36,6,1,1,1,2,0,2,0 -050,01,061,Alabama,Geneva County,10,6,1555,777,778,669,687,88,79,4,6,4,1,1,0,11,5,678,692,92,82,9,8,8,1,1,0,731,753,631,665,86,78,3,4,2,1,0,0,9,5,638,670,90,81,7,6,5,1,0,0,46,25,38,22,2,1,1,2,2,0,1,0,2,0,40,22,2,1,2,2,3,0,1,0 -050,01,061,Alabama,Geneva County,10,7,1444,687,757,614,668,58,62,6,8,1,4,1,0,7,15,621,680,62,68,9,16,1,7,1,1,647,722,582,636,55,61,4,6,1,4,1,0,4,15,586,648,57,67,6,14,1,7,1,1,40,35,32,32,3,1,2,2,0,0,0,0,3,0,35,32,5,1,3,2,0,0,0,0 -050,01,061,Alabama,Geneva County,10,8,1493,742,751,648,640,76,83,11,8,2,4,0,1,5,15,653,655,77,85,15,18,2,7,0,1,714,717,625,609,75,83,8,7,1,3,0,1,5,14,630,623,76,85,12,16,1,6,0,1,28,34,23,31,1,0,3,1,1,1,0,0,0,1,23,32,1,0,3,2,1,1,0,0 -050,01,061,Alabama,Geneva County,10,9,1528,747,781,643,676,82,86,8,5,4,3,1,1,9,10,652,686,85,89,13,13,5,3,1,1,708,747,606,647,81,85,7,3,4,3,1,0,9,9,615,656,84,88,12,10,5,3,1,0,39,34,37,29,1,1,1,2,0,0,0,1,0,1,37,30,1,1,1,3,0,0,0,1 -050,01,061,Alabama,Geneva County,10,10,1762,853,909,762,809,73,71,5,13,4,6,0,0,9,10,771,819,73,72,13,21,5,7,0,0,821,879,733,783,71,70,4,11,4,5,0,0,9,10,742,793,71,71,12,19,5,6,0,0,32,30,29,26,2,1,1,2,0,1,0,0,0,0,29,26,2,1,1,2,0,1,0,0 -050,01,061,Alabama,Geneva County,10,11,1867,962,905,856,792,81,85,16,10,2,5,0,0,7,13,862,803,83,89,21,18,3,9,0,0,937,887,834,778,80,85,15,6,2,5,0,0,6,13,839,789,81,89,20,14,3,9,0,0,25,18,22,14,1,0,1,4,0,0,0,0,1,0,23,14,2,0,1,4,0,0,0,0 -050,01,061,Alabama,Geneva County,10,12,1875,888,987,789,838,77,123,11,16,2,3,1,1,8,6,797,844,81,124,14,20,3,3,1,2,871,977,777,831,74,121,10,15,2,3,1,1,7,6,784,837,77,122,13,19,3,3,1,2,17,10,12,7,3,2,1,1,0,0,0,0,1,0,13,7,4,2,1,1,0,0,0,0 -050,01,061,Alabama,Geneva County,10,13,1900,949,951,852,839,75,91,9,9,2,5,0,0,11,7,861,844,77,94,20,14,2,6,0,0,933,936,841,824,73,91,6,9,2,5,0,0,11,7,850,829,75,94,17,14,2,6,0,0,16,15,11,15,2,0,3,0,0,0,0,0,0,0,11,15,2,0,3,0,0,0,0,0 -050,01,061,Alabama,Geneva County,10,14,1675,817,858,725,778,68,61,11,7,2,3,0,0,11,9,736,787,69,62,20,15,3,3,0,0,810,843,718,764,68,60,11,7,2,3,0,0,11,9,729,773,69,61,20,15,3,3,0,0,7,15,7,14,0,1,0,0,0,0,0,0,0,0,7,14,0,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,10,15,1385,651,734,592,663,41,55,11,6,1,1,0,0,6,9,598,671,42,56,14,14,1,2,2,0,644,725,585,654,41,55,11,6,1,1,0,0,6,9,591,662,42,56,14,14,1,2,2,0,7,9,7,9,0,0,0,0,0,0,0,0,0,0,7,9,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,10,16,940,388,552,344,485,32,50,7,10,2,1,0,0,3,6,346,491,33,50,10,14,2,3,0,0,384,549,341,483,32,50,6,9,2,1,0,0,3,6,343,489,33,50,9,13,2,3,0,0,4,3,3,2,0,0,1,1,0,0,0,0,0,0,3,2,0,0,1,1,0,0,0,0 -050,01,061,Alabama,Geneva County,10,17,673,267,406,243,376,21,26,2,1,1,2,0,0,0,1,243,377,21,27,2,1,1,2,0,0,260,402,236,372,21,26,2,1,1,2,0,0,0,1,236,373,21,27,2,1,1,2,0,0,7,4,7,4,0,0,0,0,0,0,0,0,0,0,7,4,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,10,18,583,210,373,196,346,14,23,0,1,0,1,0,0,0,2,196,348,14,24,0,2,0,1,0,0,205,373,191,346,14,23,0,1,0,1,0,0,0,2,191,348,14,24,0,2,0,1,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,11,0,26296,12830,13466,11192,11727,1193,1283,136,137,42,53,12,8,255,258,11435,11958,1319,1412,240,252,75,83,18,21,12251,12975,10699,11294,1163,1267,109,111,35,50,5,6,240,247,10928,11516,1282,1390,206,222,66,77,11,18,579,491,493,433,30,16,27,26,7,3,7,2,15,11,507,442,37,22,34,30,9,6,7,3 -050,01,061,Alabama,Geneva County,11,1,1428,719,709,584,588,72,61,5,6,4,3,1,0,53,51,634,637,111,97,15,16,11,8,3,3,655,655,533,545,67,58,2,1,4,3,0,0,49,48,579,591,105,93,10,9,10,7,2,3,64,54,51,43,5,3,3,5,0,0,1,0,4,3,55,46,6,4,5,7,1,1,1,0 -050,01,061,Alabama,Geneva County,11,2,1560,804,756,685,657,82,68,6,7,1,2,0,2,30,20,714,675,102,82,13,13,3,4,2,2,733,704,620,609,79,66,4,7,1,2,0,2,29,18,648,625,98,79,11,13,3,3,2,2,71,52,65,48,3,2,2,0,0,0,0,0,1,2,66,50,4,3,2,0,0,1,0,0 -050,01,061,Alabama,Geneva County,11,3,1702,868,834,740,701,79,77,5,9,3,8,3,3,38,36,777,734,104,102,17,17,4,14,4,4,798,781,675,653,79,76,2,8,2,7,2,2,38,35,712,685,104,101,14,16,3,12,3,3,70,53,65,48,0,1,3,1,1,1,1,1,0,1,65,49,0,1,3,1,1,2,1,1 -050,01,061,Alabama,Geneva County,11,4,1634,852,782,722,655,93,98,11,8,2,0,2,0,22,21,744,675,104,110,19,16,5,1,2,1,795,729,676,609,92,96,7,5,1,0,0,0,19,19,695,628,102,107,13,12,4,1,0,0,57,53,46,46,1,2,4,3,1,0,2,0,3,2,49,47,2,3,6,4,1,0,2,1 -050,01,061,Alabama,Geneva County,11,5,1323,680,643,578,545,74,75,7,6,2,1,2,0,17,16,595,559,81,83,14,10,5,4,2,3,634,605,542,510,68,75,6,4,1,1,0,0,17,15,559,523,75,82,13,8,4,4,0,3,46,38,36,35,6,0,1,2,1,0,2,0,0,1,36,36,6,1,1,2,1,0,2,0 -050,01,061,Alabama,Geneva County,11,6,1543,769,774,647,672,92,92,7,7,7,1,1,0,15,2,661,673,99,94,11,8,11,1,2,0,723,743,610,645,90,90,6,5,4,1,0,0,13,2,622,646,96,92,9,6,8,1,1,0,46,31,37,27,2,2,1,2,3,0,1,0,2,0,39,27,3,2,2,2,3,0,1,0 -050,01,061,Alabama,Geneva County,11,7,1446,679,767,603,668,61,70,3,8,1,2,1,0,10,19,611,684,66,77,9,16,2,8,1,1,638,740,567,644,60,69,2,6,1,2,1,0,7,19,573,660,63,76,7,14,1,8,1,1,41,27,36,24,1,1,1,2,0,0,0,0,3,0,38,24,3,1,2,2,1,0,0,0 -050,01,061,Alabama,Geneva County,11,8,1514,762,752,674,654,71,72,11,8,1,5,0,1,5,12,679,664,71,77,13,16,4,6,0,1,738,723,654,628,70,72,9,7,0,4,0,1,5,11,659,638,70,76,11,14,3,5,0,1,24,29,20,26,1,0,2,1,1,1,0,0,0,1,20,26,1,1,2,2,1,1,0,0 -050,01,061,Alabama,Geneva County,11,9,1500,725,775,619,668,84,82,9,6,3,2,0,1,10,16,627,681,87,89,13,17,8,2,0,2,689,738,589,636,81,81,6,4,3,2,0,0,10,15,597,648,84,87,10,15,8,2,0,1,36,37,30,32,3,1,3,2,0,0,0,1,0,1,30,33,3,2,3,2,0,0,0,1 -050,01,061,Alabama,Geneva County,11,10,1733,819,914,720,810,79,75,7,13,4,5,1,0,8,11,727,819,81,78,14,20,4,7,1,1,785,879,688,779,77,74,7,11,4,4,1,0,8,11,695,788,79,77,14,18,4,6,1,1,34,35,32,31,2,1,0,2,0,1,0,0,0,0,32,31,2,1,0,2,0,1,0,0 -050,01,061,Alabama,Geneva County,11,11,1816,951,865,849,760,77,73,15,12,2,8,0,0,8,12,857,769,78,78,21,21,3,9,0,0,929,843,831,741,76,73,13,9,2,8,0,0,7,12,838,750,77,78,18,18,3,9,0,0,22,22,18,19,1,0,2,3,0,0,0,0,1,0,19,19,1,0,3,3,0,0,0,0 -050,01,061,Alabama,Geneva County,11,12,1812,879,933,788,804,70,111,11,10,2,1,1,1,7,6,795,810,73,113,15,14,2,1,1,1,856,922,770,797,67,109,10,8,2,1,1,1,6,6,776,803,69,111,14,12,2,1,1,1,23,11,18,7,3,2,1,2,0,0,0,0,1,0,19,7,4,2,1,2,0,0,0,0 -050,01,061,Alabama,Geneva County,11,13,1946,958,988,853,870,82,94,9,12,2,6,0,0,12,6,865,876,83,94,19,18,3,6,0,0,944,973,843,855,81,94,6,12,2,6,0,0,12,6,855,861,82,94,16,18,3,6,0,0,14,15,10,15,1,0,3,0,0,0,0,0,0,0,10,15,1,0,3,0,0,0,0,0 -050,01,061,Alabama,Geneva County,11,14,1662,800,862,719,765,59,76,8,6,4,4,0,0,10,11,728,775,60,76,17,15,5,6,0,1,791,849,711,753,58,75,8,6,4,4,0,0,10,11,720,763,59,75,17,15,5,6,0,1,9,13,8,12,1,1,0,0,0,0,0,0,0,0,8,12,1,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,11,15,1421,668,753,600,683,49,53,12,7,1,1,0,0,6,9,606,692,50,54,16,15,2,1,0,0,661,740,593,670,49,53,12,7,1,1,0,0,6,9,599,679,50,54,16,15,2,1,0,0,7,13,7,13,0,0,0,0,0,0,0,0,0,0,7,13,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,11,16,976,406,570,366,500,27,53,7,9,2,0,0,0,4,8,370,507,27,54,11,15,2,1,0,1,404,567,364,498,27,53,7,8,2,0,0,0,4,8,368,505,27,54,11,14,2,1,0,1,2,3,2,2,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,1,0,0,0,0 -050,01,061,Alabama,Geneva County,11,17,673,265,408,237,376,24,28,3,2,1,2,0,0,0,0,237,376,24,28,3,2,1,2,0,0,258,404,231,372,24,28,2,2,1,2,0,0,0,0,231,372,24,28,2,2,1,2,0,0,7,4,6,4,0,0,1,0,0,0,0,0,0,0,6,4,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,11,18,607,226,381,208,351,18,25,0,1,0,2,0,0,0,2,208,352,18,26,0,3,0,2,0,0,220,380,202,350,18,25,0,1,0,2,0,0,0,2,202,351,18,26,0,3,0,2,0,0,6,1,6,1,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,12,0,26309,12818,13491,11158,11737,1181,1268,150,148,47,49,12,8,270,281,11413,11996,1327,1418,258,264,75,84,20,19,12236,12981,10667,11294,1152,1249,122,118,37,46,5,6,253,268,10905,11542,1287,1389,225,230,64,79,12,16,582,510,491,443,29,19,28,30,10,3,7,2,17,13,508,454,40,29,33,34,11,5,8,3 -050,01,061,Alabama,Geneva County,12,1,1437,733,704,589,578,72,59,8,7,7,3,1,0,56,57,643,633,113,104,19,18,12,7,4,2,675,655,545,538,67,55,4,3,5,3,0,0,54,56,597,592,107,99,14,14,10,7,3,2,58,49,44,40,5,4,4,4,2,0,1,0,2,1,46,41,6,5,5,4,2,0,1,0 -050,01,061,Alabama,Geneva County,12,2,1561,784,777,673,679,70,59,7,7,2,2,0,1,32,29,702,706,94,77,13,14,7,8,1,3,715,720,611,631,68,57,5,5,2,2,0,1,29,24,637,654,90,72,11,9,6,7,0,2,69,57,62,48,2,2,2,2,0,0,0,0,3,5,65,52,4,5,2,5,1,1,1,1 -050,01,061,Alabama,Geneva County,12,3,1725,881,844,758,704,76,81,7,10,2,4,2,4,36,41,791,740,99,108,16,20,10,10,3,7,812,784,696,652,75,79,4,8,1,3,1,3,35,39,728,687,97,104,13,18,9,8,2,6,69,60,62,52,1,2,3,2,1,1,1,1,1,2,63,53,2,4,3,2,1,2,1,1 -050,01,061,Alabama,Geneva County,12,4,1618,847,771,728,643,83,96,7,10,3,0,2,0,24,22,752,664,95,110,16,18,5,1,3,0,785,721,675,599,82,95,4,7,2,0,1,0,21,20,696,618,92,108,12,14,4,1,2,0,62,50,53,44,1,1,3,3,1,0,1,0,3,2,56,46,3,2,4,4,1,0,1,0 -050,01,061,Alabama,Geneva County,12,5,1243,642,601,534,505,71,74,10,9,2,0,2,0,23,13,556,515,81,84,21,12,4,3,3,0,594,557,496,468,66,73,8,4,1,0,0,0,23,12,518,477,76,82,19,7,3,3,1,0,48,44,38,37,5,1,2,5,1,0,2,0,0,1,38,38,5,2,2,5,1,0,2,0 -050,01,061,Alabama,Geneva County,12,6,1516,754,762,637,670,86,77,7,8,6,2,2,0,16,5,653,673,92,80,15,11,7,3,3,0,714,738,606,648,85,76,7,7,3,2,0,0,13,5,619,651,90,79,13,10,4,3,1,0,40,24,31,22,1,1,0,1,3,0,2,0,3,0,34,22,2,1,2,1,3,0,2,0 -050,01,061,Alabama,Geneva County,12,7,1524,741,783,646,674,78,79,6,8,2,2,1,0,8,20,652,692,85,88,8,19,3,5,1,0,689,752,600,647,76,77,4,6,2,2,1,0,6,20,604,665,81,86,6,17,3,5,1,0,52,31,46,27,2,2,2,2,0,0,0,0,2,0,48,27,4,2,2,2,0,0,0,0 -050,01,061,Alabama,Geneva County,12,8,1474,706,768,618,680,68,66,11,7,1,4,0,0,8,11,626,690,72,69,15,15,1,6,0,1,692,737,609,653,67,66,9,5,0,3,0,0,7,10,616,662,70,68,13,13,0,5,0,1,14,31,9,27,1,0,2,2,1,1,0,0,1,1,10,28,2,1,2,2,1,1,0,0 -050,01,061,Alabama,Geneva County,12,9,1519,752,767,648,657,83,86,10,7,3,3,0,2,8,12,656,667,86,91,14,16,4,4,0,2,720,734,622,627,81,85,7,6,2,3,0,1,8,12,630,637,84,90,11,15,3,4,0,1,32,33,26,30,2,1,3,1,1,0,0,1,0,0,26,30,2,1,3,1,1,0,0,1 -050,01,061,Alabama,Geneva County,12,10,1680,805,875,695,770,88,75,9,13,5,3,1,0,7,14,702,784,90,79,14,20,5,5,1,1,764,839,658,737,84,74,9,12,5,3,1,0,7,13,665,750,86,77,14,19,5,5,1,1,41,36,37,33,4,1,0,1,0,0,0,0,0,1,37,34,4,2,0,1,0,0,0,0 -050,01,061,Alabama,Geneva County,12,11,1809,927,882,823,784,78,64,13,12,2,9,0,0,11,13,833,797,80,67,23,20,2,11,0,0,903,853,802,759,77,64,11,9,2,8,0,0,11,13,812,772,79,67,21,17,2,10,0,0,24,29,21,25,1,0,2,3,0,1,0,0,0,0,21,25,1,0,2,3,0,1,0,0 -050,01,061,Alabama,Geneva County,12,12,1832,900,932,807,814,71,101,12,8,2,3,1,1,7,5,813,819,72,103,19,11,2,3,1,1,878,918,788,805,70,98,11,6,2,3,1,1,6,5,793,810,71,100,17,9,2,3,1,1,22,14,19,9,1,3,1,2,0,0,0,0,1,0,20,9,1,3,2,2,0,0,0,0 -050,01,061,Alabama,Geneva County,12,13,1925,927,998,838,866,66,105,11,15,2,5,0,0,10,7,848,873,71,106,15,21,3,5,0,0,910,982,827,851,64,105,8,14,2,5,0,0,9,7,836,858,68,106,12,20,3,5,0,0,17,16,11,15,2,0,3,1,0,0,0,0,1,0,12,15,3,0,3,1,0,0,0,0 -050,01,061,Alabama,Geneva County,12,14,1641,785,856,695,759,69,74,6,8,4,3,0,0,11,12,706,770,70,77,15,17,5,3,0,1,774,845,685,749,68,73,6,8,4,3,0,0,11,12,696,760,69,76,15,17,5,3,0,1,11,11,10,10,1,1,0,0,0,0,0,0,0,0,10,10,1,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,12,15,1489,703,786,633,707,48,61,13,5,1,3,0,0,8,10,641,717,50,62,19,11,1,5,0,1,694,771,624,692,48,61,13,5,1,3,0,0,8,10,632,702,50,62,19,11,1,5,0,1,9,15,9,15,0,0,0,0,0,0,0,0,0,0,9,15,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,12,16,1039,450,589,403,520,33,52,8,9,1,0,0,0,5,8,406,527,36,53,11,15,2,2,0,0,449,585,402,517,33,52,8,8,1,0,0,0,5,8,405,524,36,53,11,14,2,2,0,0,1,4,1,3,0,0,0,1,0,0,0,0,0,0,1,3,0,0,0,1,0,0,0,0 -050,01,061,Alabama,Geneva County,12,17,680,258,422,228,381,23,35,5,4,2,1,0,0,0,1,228,382,23,35,5,5,2,1,0,0,251,419,222,378,23,35,4,4,2,1,0,0,0,1,222,379,23,35,4,5,2,1,0,0,7,3,6,3,0,0,1,0,0,0,0,0,0,0,6,3,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,12,18,597,223,374,205,346,18,24,0,1,0,2,0,0,0,1,205,347,18,25,0,1,0,2,0,0,217,371,199,343,18,24,0,1,0,2,0,0,0,1,199,344,18,25,0,1,0,2,0,0,6,3,6,3,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,13,0,26411,12864,13547,11190,11755,1178,1274,154,150,50,55,12,10,280,303,11453,12036,1323,1426,274,288,81,90,23,17,12271,12996,10695,11271,1150,1255,123,122,37,52,5,6,261,290,10941,11541,1289,1397,233,256,64,86,13,13,593,551,495,484,28,19,31,28,13,3,7,4,19,13,512,495,34,29,41,32,17,4,10,4 -050,01,061,Alabama,Geneva County,13,1,1449,739,710,597,575,72,70,8,7,7,4,1,0,54,54,647,627,115,113,20,15,12,7,2,2,678,665,552,538,69,66,4,4,3,4,0,0,50,53,600,589,110,108,14,12,7,7,0,2,61,45,45,37,3,4,4,3,4,0,1,0,4,1,47,38,5,5,6,3,5,0,2,0 -050,01,061,Alabama,Geneva County,13,2,1539,762,777,651,663,60,61,11,6,5,2,0,3,35,42,684,703,84,90,22,17,7,7,1,3,699,709,599,608,56,59,8,2,5,2,0,1,31,37,628,644,79,85,17,11,6,6,1,1,63,68,52,55,4,2,3,4,0,0,0,2,4,5,56,59,5,5,5,6,1,1,0,2 -050,01,061,Alabama,Geneva County,13,3,1676,857,819,727,704,84,64,5,10,1,4,1,4,39,33,765,733,111,86,15,20,5,9,3,5,786,756,662,647,83,63,2,9,1,3,1,3,37,31,698,675,109,83,11,18,4,8,2,4,71,63,65,57,1,1,3,1,0,1,0,1,2,2,67,58,2,3,4,2,1,1,1,1 -050,01,061,Alabama,Geneva County,13,4,1607,834,773,723,639,72,94,6,6,5,1,3,0,25,33,748,670,87,114,13,17,9,5,5,0,768,719,666,590,71,92,3,5,3,1,1,0,24,31,690,619,85,111,10,15,7,5,3,0,66,54,57,49,1,2,3,1,2,0,2,0,1,2,58,51,2,3,3,2,2,0,2,0 -050,01,061,Alabama,Geneva County,13,5,1283,641,642,541,540,65,81,9,9,1,0,2,0,23,12,563,551,76,90,18,13,4,0,3,0,591,598,500,500,62,80,6,6,1,0,0,0,22,12,521,511,73,89,15,10,4,0,0,0,50,44,41,40,3,1,3,3,0,0,2,0,1,0,42,40,3,1,3,3,0,0,3,0 -050,01,061,Alabama,Geneva County,13,6,1492,764,728,646,630,87,78,11,11,6,2,1,0,13,7,657,636,94,81,18,13,6,5,2,0,720,695,610,602,84,77,10,8,3,2,0,0,13,6,621,607,91,79,17,10,3,5,1,0,44,33,36,28,3,1,1,3,3,0,1,0,0,1,36,29,3,2,1,3,3,0,1,0 -050,01,061,Alabama,Geneva County,13,7,1529,745,784,639,685,82,68,7,8,3,4,2,0,12,19,650,702,86,75,14,21,4,7,3,0,690,752,593,657,80,66,5,6,2,4,1,0,9,19,601,674,83,73,10,19,3,7,2,0,55,32,46,28,2,2,2,2,1,0,1,0,3,0,49,28,3,2,4,2,1,0,1,0 -050,01,061,Alabama,Geneva County,13,8,1482,710,772,622,682,69,71,7,7,1,3,0,0,11,9,632,689,71,74,16,14,2,4,0,0,692,732,609,645,68,71,6,5,0,2,0,0,9,9,617,652,70,74,13,12,1,3,0,0,18,40,13,37,1,0,1,2,1,1,0,0,2,0,15,37,1,0,3,2,1,1,0,0 -050,01,061,Alabama,Geneva County,13,9,1553,777,776,674,667,83,82,11,10,3,3,0,1,6,13,680,678,84,86,16,19,3,4,0,3,743,745,648,638,81,82,7,9,1,3,0,1,6,12,654,648,82,85,12,18,1,4,0,3,34,31,26,29,2,0,4,1,2,0,0,0,0,1,26,30,2,1,4,1,2,0,0,0 -050,01,061,Alabama,Geneva County,13,10,1626,781,845,662,737,96,80,9,7,4,3,1,1,9,17,670,753,99,83,14,18,6,8,1,1,748,814,632,709,93,79,9,7,4,3,1,0,9,16,640,724,96,81,14,18,6,8,1,0,33,31,30,28,3,1,0,0,0,0,0,1,0,1,30,29,3,2,0,0,0,0,0,1 -050,01,061,Alabama,Geneva County,13,11,1810,889,921,792,818,73,66,11,14,3,7,0,0,10,16,802,834,74,67,18,26,5,9,0,1,858,887,765,790,71,65,9,10,3,6,0,0,10,16,775,806,72,66,16,22,5,8,0,1,31,34,27,28,2,1,2,4,0,1,0,0,0,0,27,28,2,1,2,4,0,1,0,0 -050,01,061,Alabama,Geneva County,13,12,1862,928,934,826,816,80,98,13,8,2,6,0,1,7,5,832,821,81,98,17,13,5,6,0,1,912,911,811,797,80,96,13,6,2,6,0,1,6,5,816,802,81,96,16,11,5,6,0,1,16,23,15,19,0,2,0,2,0,0,0,0,1,0,16,19,0,2,1,2,0,0,0,0 -050,01,061,Alabama,Geneva County,13,13,1899,895,1004,814,863,57,115,11,16,2,4,1,0,10,6,824,868,59,117,17,21,4,4,1,1,880,990,806,851,55,114,7,15,2,4,1,0,9,6,815,856,57,116,13,20,3,4,1,1,15,14,8,12,2,1,4,1,0,0,0,0,1,0,9,12,2,1,4,1,1,0,0,0 -050,01,061,Alabama,Geneva County,13,14,1704,831,873,743,776,67,71,7,8,2,5,0,0,12,13,754,788,68,76,16,17,3,5,2,0,817,864,730,768,66,70,7,8,2,5,0,0,12,13,741,780,67,75,16,17,3,5,2,0,14,9,13,8,1,1,0,0,0,0,0,0,0,0,13,8,1,1,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,13,15,1531,745,786,667,701,57,64,12,6,1,4,0,0,8,11,674,711,58,65,19,16,2,5,0,0,737,768,659,683,57,64,12,6,1,4,0,0,8,11,666,693,58,65,19,16,2,5,0,0,8,18,8,18,0,0,0,0,0,0,0,0,0,0,8,18,0,0,0,0,0,0,0,0 -050,01,061,Alabama,Geneva County,13,16,1075,488,587,438,522,33,48,10,9,2,0,0,0,5,8,442,530,34,48,15,16,2,1,0,0,488,583,438,519,33,48,10,8,2,0,0,0,5,8,442,527,34,48,15,15,2,1,0,0,0,4,0,3,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0 -050,01,061,Alabama,Geneva County,13,17,699,251,448,221,399,22,39,5,5,2,1,0,0,1,4,222,403,23,39,5,9,2,1,0,0,245,443,216,394,22,39,4,5,2,1,0,0,1,4,217,398,23,39,4,9,2,1,0,0,6,5,5,5,0,0,1,0,0,0,0,0,0,0,5,5,0,0,1,0,0,0,0,0 -050,01,061,Alabama,Geneva County,13,18,595,227,368,207,338,19,24,1,3,0,2,0,0,0,1,207,339,19,24,1,3,0,3,0,0,219,365,199,335,19,24,1,3,0,2,0,0,0,1,199,336,19,24,1,3,0,3,0,0,8,3,8,3,0,0,0,0,0,0,0,0,0,0,8,3,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,0,9045,4271,4774,818,783,3421,3952,10,8,8,7,0,0,14,24,827,799,3432,3972,17,20,9,8,0,0,4241,4735,801,762,3415,3935,3,8,8,7,0,0,14,23,810,777,3426,3954,10,19,9,8,0,0,30,39,17,21,6,17,7,0,0,0,0,0,0,1,17,22,6,18,7,1,0,0,0,0 -050,01,063,Alabama,Greene County,1,1,555,277,278,44,26,230,247,0,0,1,1,0,0,2,4,46,29,232,251,0,1,1,1,0,0,274,274,41,25,230,244,0,0,1,1,0,0,2,4,43,28,232,248,0,1,1,1,0,0,3,4,3,1,0,3,0,0,0,0,0,0,0,0,3,1,0,3,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,2,584,304,280,39,20,262,256,0,0,0,0,0,0,3,4,40,22,265,260,2,2,0,0,0,0,301,272,36,16,262,252,0,0,0,0,0,0,3,4,37,18,265,256,2,2,0,0,0,0,3,8,3,4,0,4,0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,3,632,337,295,33,24,303,269,0,0,0,0,0,0,1,2,34,25,304,271,0,1,0,0,0,0,334,293,31,22,302,269,0,0,0,0,0,0,1,2,32,23,303,271,0,1,0,0,0,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,4,738,398,340,36,34,360,305,0,0,0,0,0,0,2,1,38,35,362,306,0,0,0,0,0,0,395,336,34,30,359,305,0,0,0,0,0,0,2,1,36,31,361,306,0,0,0,0,0,0,3,4,2,4,1,0,0,0,0,0,0,0,0,0,2,4,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,5,506,250,256,32,24,217,229,1,0,0,0,0,0,0,3,32,26,217,231,1,1,0,1,0,0,248,254,31,22,217,229,0,0,0,0,0,0,0,3,31,24,217,231,0,1,0,1,0,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,6,494,228,266,29,24,196,239,3,0,0,2,0,0,0,1,29,25,196,239,3,1,0,2,0,0,223,264,26,23,196,238,1,0,0,2,0,0,0,1,26,24,196,238,1,1,0,2,0,0,5,2,3,1,0,1,2,0,0,0,0,0,0,0,3,1,0,1,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,7,409,192,217,25,21,163,194,0,1,4,0,0,0,0,1,25,22,163,195,0,1,4,0,0,0,191,216,24,21,163,193,0,1,4,0,0,0,0,1,24,22,163,194,0,1,4,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,8,449,218,231,48,36,168,194,2,0,0,1,0,0,0,0,48,36,168,194,2,0,0,1,0,0,217,230,48,36,168,193,1,0,0,1,0,0,0,0,48,36,168,193,1,0,0,1,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,9,477,207,270,49,42,155,224,1,2,1,2,0,0,1,0,49,42,156,224,2,2,1,2,0,0,206,265,49,40,155,221,0,2,1,2,0,0,1,0,49,40,156,221,1,2,1,2,0,0,1,5,0,2,0,3,1,0,0,0,0,0,0,0,0,2,0,3,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,10,613,262,351,52,52,208,294,2,2,0,0,0,0,0,3,52,54,208,297,2,4,0,0,0,0,257,348,51,51,206,293,0,2,0,0,0,0,0,2,51,52,206,295,0,3,0,0,0,0,5,3,1,1,2,1,2,0,0,0,0,0,0,1,1,2,2,2,2,1,0,0,0,0 -050,01,063,Alabama,Greene County,1,11,774,347,427,94,91,251,334,0,1,1,0,0,0,1,1,95,91,251,335,1,2,1,0,0,0,346,426,94,90,250,334,0,1,1,0,0,0,1,1,95,90,250,335,1,2,1,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,12,768,367,401,83,85,280,315,0,0,0,0,0,0,4,1,85,86,282,315,3,1,1,0,0,0,367,400,83,84,280,315,0,0,0,0,0,0,4,1,85,85,282,315,3,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,13,592,270,322,69,76,200,245,1,0,0,0,0,0,0,1,69,77,200,245,1,1,0,0,0,0,269,321,68,75,200,245,1,0,0,0,0,0,0,1,68,76,200,245,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,14,418,188,230,56,63,132,164,0,2,0,1,0,0,0,0,56,63,132,164,0,2,0,1,0,0,187,230,56,63,131,164,0,2,0,1,0,0,0,0,56,63,131,164,0,2,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,15,341,166,175,47,51,118,124,0,0,1,0,0,0,0,0,47,51,118,124,0,0,1,0,0,0,166,174,47,51,118,123,0,0,1,0,0,0,0,0,47,51,118,123,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,16,255,102,153,35,43,67,110,0,0,0,0,0,0,0,0,35,43,67,110,0,0,0,0,0,0,102,152,35,43,67,109,0,0,0,0,0,0,0,0,35,43,67,109,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,17,243,98,145,34,43,64,101,0,0,0,0,0,0,0,1,34,43,64,102,0,1,0,0,0,0,98,145,34,43,64,101,0,0,0,0,0,0,0,1,34,43,64,102,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,1,18,197,60,137,13,28,47,108,0,0,0,0,0,0,0,1,13,29,47,109,0,0,0,0,0,0,60,135,13,27,47,107,0,0,0,0,0,0,0,1,13,28,47,108,0,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,0,9039,4268,4771,818,781,3418,3951,10,8,8,7,0,0,14,24,827,797,3429,3971,17,20,9,8,0,0,4238,4732,801,760,3412,3934,3,8,8,7,0,0,14,23,810,775,3423,3953,10,19,9,8,0,0,30,39,17,21,6,17,7,0,0,0,0,0,0,1,17,22,6,18,7,1,0,0,0,0 -050,01,063,Alabama,Greene County,2,1,554,276,278,44,26,229,247,0,0,1,1,0,0,2,4,46,29,231,251,0,1,1,1,0,0,273,274,41,25,229,244,0,0,1,1,0,0,2,4,43,28,231,248,0,1,1,1,0,0,3,4,3,1,0,3,0,0,0,0,0,0,0,0,3,1,0,3,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,2,584,304,280,39,20,262,256,0,0,0,0,0,0,3,4,40,22,265,260,2,2,0,0,0,0,301,272,36,16,262,252,0,0,0,0,0,0,3,4,37,18,265,256,2,2,0,0,0,0,3,8,3,4,0,4,0,0,0,0,0,0,0,0,3,4,0,4,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,3,632,337,295,33,24,303,269,0,0,0,0,0,0,1,2,34,25,304,271,0,1,0,0,0,0,334,293,31,22,302,269,0,0,0,0,0,0,1,2,32,23,303,271,0,1,0,0,0,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,4,738,398,340,36,34,360,305,0,0,0,0,0,0,2,1,38,35,362,306,0,0,0,0,0,0,395,336,34,30,359,305,0,0,0,0,0,0,2,1,36,31,361,306,0,0,0,0,0,0,3,4,2,4,1,0,0,0,0,0,0,0,0,0,2,4,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,5,505,250,255,32,23,217,229,1,0,0,0,0,0,0,3,32,25,217,231,1,1,0,1,0,0,248,253,31,21,217,229,0,0,0,0,0,0,0,3,31,23,217,231,0,1,0,1,0,0,2,2,1,2,0,0,1,0,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,6,494,228,266,29,24,196,239,3,0,0,2,0,0,0,1,29,25,196,239,3,1,0,2,0,0,223,264,26,23,196,238,1,0,0,2,0,0,0,1,26,24,196,238,1,1,0,2,0,0,5,2,3,1,0,1,2,0,0,0,0,0,0,0,3,1,0,1,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,7,408,191,217,25,21,162,194,0,1,4,0,0,0,0,1,25,22,162,195,0,1,4,0,0,0,190,216,24,21,162,193,0,1,4,0,0,0,0,1,24,22,162,194,0,1,4,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,8,448,218,230,48,36,168,193,2,0,0,1,0,0,0,0,48,36,168,193,2,0,0,1,0,0,217,229,48,36,168,192,1,0,0,1,0,0,0,0,48,36,168,192,1,0,0,1,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,9,477,207,270,49,42,155,224,1,2,1,2,0,0,1,0,49,42,156,224,2,2,1,2,0,0,206,265,49,40,155,221,0,2,1,2,0,0,1,0,49,40,156,221,1,2,1,2,0,0,1,5,0,2,0,3,1,0,0,0,0,0,0,0,0,2,0,3,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,10,613,262,351,52,52,208,294,2,2,0,0,0,0,0,3,52,54,208,297,2,4,0,0,0,0,257,348,51,51,206,293,0,2,0,0,0,0,0,2,51,52,206,295,0,3,0,0,0,0,5,3,1,1,2,1,2,0,0,0,0,0,0,1,1,2,2,2,2,1,0,0,0,0 -050,01,063,Alabama,Greene County,2,11,774,347,427,94,91,251,334,0,1,1,0,0,0,1,1,95,91,251,335,1,2,1,0,0,0,346,426,94,90,250,334,0,1,1,0,0,0,1,1,95,90,250,335,1,2,1,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,12,767,367,400,83,84,280,315,0,0,0,0,0,0,4,1,85,85,282,315,3,1,1,0,0,0,367,399,83,83,280,315,0,0,0,0,0,0,4,1,85,84,282,315,3,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,13,591,269,322,69,76,199,245,1,0,0,0,0,0,0,1,69,77,199,245,1,1,0,0,0,0,268,321,68,75,199,245,1,0,0,0,0,0,0,1,68,76,199,245,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,14,418,188,230,56,63,132,164,0,2,0,1,0,0,0,0,56,63,132,164,0,2,0,1,0,0,187,230,56,63,131,164,0,2,0,1,0,0,0,0,56,63,131,164,0,2,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,15,341,166,175,47,51,118,124,0,0,1,0,0,0,0,0,47,51,118,124,0,0,1,0,0,0,166,174,47,51,118,123,0,0,1,0,0,0,0,0,47,51,118,123,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,16,255,102,153,35,43,67,110,0,0,0,0,0,0,0,0,35,43,67,110,0,0,0,0,0,0,102,152,35,43,67,109,0,0,0,0,0,0,0,0,35,43,67,109,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,17,243,98,145,34,43,64,101,0,0,0,0,0,0,0,1,34,43,64,102,0,1,0,0,0,0,98,145,34,43,64,101,0,0,0,0,0,0,0,1,34,43,64,102,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,2,18,197,60,137,13,28,47,108,0,0,0,0,0,0,0,1,13,29,47,109,0,0,0,0,0,0,60,135,13,27,47,107,0,0,0,0,0,0,0,1,13,28,47,108,0,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,0,8990,4239,4751,815,783,3393,3930,10,8,7,5,0,0,14,25,828,806,3400,3944,16,19,9,8,0,1,4210,4712,799,763,3387,3912,3,8,7,5,0,0,14,24,812,785,3394,3925,9,18,9,8,0,1,29,39,16,20,6,18,7,0,0,0,0,0,0,1,16,21,6,19,7,1,0,0,0,0 -050,01,063,Alabama,Greene County,3,1,564,281,283,43,31,235,246,0,0,1,1,0,0,2,5,45,36,237,250,0,2,1,1,0,0,279,279,41,30,235,243,0,0,1,1,0,0,2,5,43,35,237,247,0,2,1,1,0,0,2,4,2,1,0,3,0,0,0,0,0,0,0,0,2,1,0,3,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,2,574,298,276,39,19,256,253,0,0,0,0,0,0,3,4,42,23,257,255,2,1,0,1,0,0,295,267,36,15,256,248,0,0,0,0,0,0,3,4,39,19,257,250,2,1,0,1,0,0,3,9,3,4,0,5,0,0,0,0,0,0,0,0,3,4,0,5,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,3,630,333,297,34,27,297,268,0,0,0,0,0,0,2,2,36,29,298,270,1,0,0,0,0,0,330,295,32,25,296,268,0,0,0,0,0,0,2,2,34,27,297,270,1,0,0,0,0,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,4,714,386,328,34,32,351,295,0,0,0,0,0,0,1,1,35,33,352,296,0,0,0,0,0,0,383,325,32,29,350,295,0,0,0,0,0,0,1,1,33,30,351,296,0,0,0,0,0,0,3,3,2,3,1,0,0,0,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,5,516,259,257,33,24,225,230,1,0,0,0,0,0,0,3,33,27,225,230,1,2,0,0,0,1,257,255,32,22,225,230,0,0,0,0,0,0,0,3,32,25,225,230,0,2,0,0,0,1,2,2,1,2,0,0,1,0,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,6,488,226,262,29,24,194,236,3,0,0,1,0,0,0,1,29,25,194,237,3,0,0,1,0,0,221,260,26,23,194,235,1,0,0,1,0,0,0,1,26,24,194,236,1,0,0,1,0,0,5,2,3,1,0,1,2,0,0,0,0,0,0,0,3,1,0,1,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,7,404,189,215,26,21,160,192,0,1,3,0,0,0,0,1,26,22,160,192,0,2,3,0,0,0,188,214,25,21,160,191,0,1,3,0,0,0,0,1,25,22,160,191,0,2,3,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,8,446,217,229,48,35,166,193,2,0,1,1,0,0,0,0,48,35,166,193,2,0,1,1,0,0,216,228,48,35,166,192,1,0,1,1,0,0,0,0,48,35,166,192,1,0,1,1,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,9,470,204,266,49,41,152,222,1,2,1,1,0,0,1,0,50,41,152,222,2,2,1,1,0,0,203,261,49,39,152,219,0,2,1,1,0,0,1,0,50,39,152,219,1,2,1,1,0,0,1,5,0,2,0,3,1,0,0,0,0,0,0,0,0,2,0,3,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,10,606,257,349,49,50,206,294,2,2,0,0,0,0,0,3,49,52,206,296,2,4,0,1,0,0,252,346,48,49,204,293,0,2,0,0,0,0,0,2,48,50,204,294,0,3,0,1,0,0,5,3,1,1,2,1,2,0,0,0,0,0,0,1,1,2,2,2,2,1,0,0,0,0 -050,01,063,Alabama,Greene County,3,11,757,338,419,91,92,245,325,0,1,1,0,0,0,1,1,92,93,245,325,1,2,1,0,0,0,337,418,91,91,244,325,0,1,1,0,0,0,1,1,92,92,244,325,1,2,1,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,12,767,365,402,84,83,278,318,0,0,0,0,0,0,3,1,86,84,280,319,1,0,1,0,0,0,365,401,84,82,278,318,0,0,0,0,0,0,3,1,86,83,280,319,1,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,13,603,278,325,73,72,203,252,1,0,0,0,0,0,1,1,74,73,203,252,1,0,1,1,0,0,277,324,72,71,203,252,1,0,0,0,0,0,1,1,73,72,203,252,1,0,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,14,418,186,232,55,67,131,162,0,2,0,1,0,0,0,0,55,67,131,162,0,2,0,1,0,0,185,232,55,67,130,162,0,2,0,1,0,0,0,0,55,67,130,162,0,2,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,15,340,164,176,47,51,117,125,0,0,0,0,0,0,0,0,47,51,117,125,0,0,0,0,0,0,164,175,47,51,117,124,0,0,0,0,0,0,0,0,47,51,117,124,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,16,252,102,150,34,42,68,108,0,0,0,0,0,0,0,0,34,42,68,108,0,0,0,0,0,0,102,149,34,42,68,107,0,0,0,0,0,0,0,0,34,42,68,107,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,17,239,96,143,34,43,62,99,0,0,0,0,0,0,0,1,34,44,62,99,0,1,0,0,0,0,96,143,34,43,62,99,0,0,0,0,0,0,0,1,34,44,62,99,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,3,18,202,60,142,13,29,47,112,0,0,0,0,0,0,0,1,13,29,47,113,0,1,0,0,0,0,60,140,13,28,47,111,0,0,0,0,0,0,0,1,13,28,47,112,0,1,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,0,8903,4165,4738,781,781,3348,3914,10,8,8,5,0,0,18,30,796,808,3360,3932,17,19,10,10,0,2,4126,4700,758,758,3339,3901,3,8,8,5,0,0,18,28,773,783,3351,3918,10,18,10,10,0,2,39,38,23,23,9,13,7,0,0,0,0,0,0,2,23,25,9,14,7,1,0,0,0,0 -050,01,063,Alabama,Greene County,4,1,535,267,268,33,22,231,240,0,0,0,1,0,0,3,5,36,27,233,243,1,1,0,2,0,0,264,267,31,22,230,239,0,0,0,1,0,0,3,5,34,27,232,242,1,1,0,2,0,0,3,1,2,0,1,1,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,2,557,290,267,35,18,250,245,0,0,1,0,0,0,4,4,39,22,253,249,1,0,1,0,0,0,288,254,33,10,250,241,0,0,1,0,0,0,4,3,37,13,253,244,1,0,1,0,0,0,2,13,2,8,0,4,0,0,0,0,0,0,0,1,2,9,0,5,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,3,613,315,298,34,28,279,267,0,0,0,0,0,0,2,3,35,31,281,270,1,0,0,0,0,0,313,296,32,26,279,267,0,0,0,0,0,0,2,3,33,29,281,270,1,0,0,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,4,645,346,299,31,26,314,271,0,0,0,0,0,0,1,2,32,28,314,272,1,1,0,0,0,0,342,297,29,24,312,271,0,0,0,0,0,0,1,2,30,26,312,272,1,1,0,0,0,0,4,2,2,2,2,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,5,563,287,276,30,35,256,238,1,0,0,0,0,0,0,3,30,38,256,240,1,1,0,1,0,2,281,272,27,31,254,238,0,0,0,0,0,0,0,3,27,34,254,240,0,1,0,1,0,2,6,4,3,4,2,0,1,0,0,0,0,0,0,0,3,4,2,0,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,6,486,229,257,35,34,191,222,3,0,0,0,0,0,0,1,35,35,191,222,3,0,0,1,0,0,219,255,27,33,191,221,1,0,0,0,0,0,0,1,27,34,191,221,1,0,0,1,0,0,10,2,8,1,0,1,2,0,0,0,0,0,0,0,8,1,0,1,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,7,418,196,222,27,22,167,197,0,1,1,1,0,0,1,1,28,23,167,197,0,2,2,1,0,0,194,221,25,22,167,196,0,1,1,1,0,0,1,1,26,23,167,196,0,2,2,1,0,0,2,1,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,8,426,203,223,37,30,160,191,2,0,4,1,0,0,0,1,37,31,160,192,2,0,4,1,0,0,202,223,37,30,160,191,1,0,4,1,0,0,0,1,37,31,160,192,1,0,4,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,9,458,193,265,48,44,142,218,1,2,1,1,0,0,1,0,49,44,143,218,1,2,1,1,0,0,192,261,48,42,142,216,0,2,1,1,0,0,1,0,49,42,143,216,0,2,1,1,0,0,1,4,0,2,0,2,1,0,0,0,0,0,0,0,0,2,0,2,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,10,590,243,347,50,45,191,298,2,1,0,0,0,0,0,3,50,47,191,299,2,3,0,1,0,0,240,343,50,44,190,296,0,1,0,0,0,0,0,2,50,45,190,297,0,2,0,1,0,0,3,4,0,1,1,2,2,0,0,0,0,0,0,1,0,2,1,2,2,1,0,0,0,0 -050,01,063,Alabama,Greene County,4,11,720,323,397,80,85,241,308,0,2,1,0,0,0,1,2,80,86,242,309,1,3,1,1,0,0,320,396,79,84,239,308,0,2,1,0,0,0,1,2,79,85,240,309,1,3,1,1,0,0,3,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,12,762,359,403,85,80,271,323,0,0,0,0,0,0,3,0,87,80,272,323,2,0,1,0,0,0,359,402,85,79,271,323,0,0,0,0,0,0,3,0,87,79,272,323,2,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,13,679,315,364,84,74,229,289,0,0,0,0,0,0,2,1,86,75,231,290,0,0,0,0,0,0,314,363,83,73,229,289,0,0,0,0,0,0,2,1,85,74,231,290,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,14,414,178,236,50,72,127,160,1,2,0,0,0,0,0,2,50,74,127,160,1,4,0,0,0,0,177,236,50,72,126,160,1,2,0,0,0,0,0,2,50,74,126,160,1,4,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,15,335,158,177,47,48,111,128,0,0,0,1,0,0,0,0,47,48,111,128,0,0,0,1,0,0,158,176,47,48,111,127,0,0,0,1,0,0,0,0,47,48,111,127,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,16,266,113,153,30,45,83,108,0,0,0,0,0,0,0,0,30,45,83,108,0,0,0,0,0,0,113,152,30,45,83,107,0,0,0,0,0,0,0,0,30,45,83,107,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,17,217,84,133,31,43,53,89,0,0,0,0,0,0,0,1,31,44,53,89,0,1,0,0,0,0,84,133,31,43,53,89,0,0,0,0,0,0,0,1,31,44,53,89,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,4,18,219,66,153,14,30,52,122,0,0,0,0,0,0,0,1,14,30,52,123,0,1,0,0,0,0,66,153,14,30,52,122,0,0,0,0,0,0,0,1,14,30,52,123,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,0,8849,4210,4639,794,779,3373,3819,10,8,8,5,0,0,25,28,816,803,3388,3838,21,17,10,10,1,0,4167,4596,769,752,3363,3804,3,8,8,5,0,0,24,27,790,775,3377,3822,14,17,10,10,1,0,43,43,25,27,10,15,7,0,0,0,0,0,1,1,26,28,11,16,7,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,1,539,289,250,33,21,253,224,0,0,0,1,0,0,3,4,36,25,254,228,2,0,0,1,0,0,288,249,33,21,252,223,0,0,0,1,0,0,3,4,36,25,253,227,2,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,2,555,295,260,38,22,251,236,0,0,1,0,0,0,5,2,43,24,255,237,1,0,1,1,0,0,291,249,35,14,251,233,0,0,1,0,0,0,4,2,39,16,254,234,1,0,1,1,0,0,4,11,3,8,0,3,0,0,0,0,0,0,1,0,4,8,1,3,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,3,599,307,292,40,24,263,263,0,0,0,0,0,0,4,5,44,28,264,267,2,0,1,2,0,0,305,289,38,22,263,262,0,0,0,0,0,0,4,5,42,26,264,266,2,0,1,2,0,0,2,3,2,2,0,1,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,4,601,320,281,26,24,290,254,0,0,0,0,0,0,4,3,29,27,292,255,2,1,0,1,1,0,315,278,23,21,288,254,0,0,0,0,0,0,4,3,26,24,290,255,2,1,0,1,1,0,5,3,3,3,2,0,0,0,0,0,0,0,0,0,3,3,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,5,605,315,290,38,36,277,251,0,0,0,0,0,0,0,3,38,39,277,252,0,1,0,1,0,0,306,288,30,34,276,251,0,0,0,0,0,0,0,3,30,37,276,252,0,1,0,1,0,0,9,2,8,2,1,0,0,0,0,0,0,0,0,0,8,2,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,6,469,235,234,40,30,191,203,3,0,0,0,0,0,1,1,41,30,192,204,3,1,0,0,0,0,225,229,35,27,189,201,0,0,0,0,0,0,1,1,36,27,190,202,0,1,0,0,0,0,10,5,5,3,2,2,3,0,0,0,0,0,0,0,5,3,2,2,3,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,7,443,220,223,26,24,192,196,1,1,1,1,0,0,0,1,26,25,192,196,1,2,1,1,0,0,218,222,24,24,192,195,1,1,1,1,0,0,0,1,24,25,192,195,1,2,1,1,0,0,2,1,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,8,396,194,202,30,28,157,172,1,0,4,1,0,0,2,1,31,28,159,173,2,1,4,1,0,0,194,200,30,26,157,172,1,0,4,1,0,0,2,1,31,26,159,173,2,1,4,1,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,9,435,191,244,50,42,137,199,2,2,1,1,0,0,1,0,51,42,138,199,2,2,1,1,0,0,189,239,50,40,137,196,0,2,1,1,0,0,1,0,51,40,138,196,0,2,1,1,0,0,2,5,0,2,0,3,2,0,0,0,0,0,0,0,0,2,0,3,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,10,572,229,343,50,52,177,289,2,1,0,0,0,0,0,1,50,53,177,290,2,1,0,0,0,0,227,339,50,51,177,287,0,1,0,0,0,0,0,0,50,51,177,287,0,1,0,0,0,0,2,4,0,1,0,2,2,0,0,0,0,0,0,1,0,2,0,3,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,11,679,303,376,72,72,229,300,0,2,1,0,0,0,1,2,73,74,230,301,0,3,1,0,0,0,300,375,71,71,227,300,0,2,1,0,0,0,1,2,72,73,228,301,0,3,1,0,0,0,3,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,12,755,351,404,86,83,262,321,0,0,0,0,0,0,3,0,88,83,263,321,2,0,1,0,0,0,350,403,86,82,261,321,0,0,0,0,0,0,3,0,88,82,262,321,2,0,1,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,13,701,332,369,83,81,248,287,0,0,0,0,0,0,1,1,84,82,249,287,1,1,0,0,0,0,331,368,82,80,248,287,0,0,0,0,0,0,1,1,83,81,249,287,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,14,446,192,254,60,70,131,181,1,1,0,0,0,0,0,2,60,71,131,183,1,3,0,0,0,0,191,253,60,69,130,181,1,1,0,0,0,0,0,2,60,70,130,183,1,3,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,15,350,167,183,47,51,120,130,0,1,0,1,0,0,0,0,47,51,120,130,0,1,0,1,0,0,167,182,47,51,120,129,0,1,0,1,0,0,0,0,47,51,120,129,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,16,257,112,145,26,47,86,98,0,0,0,0,0,0,0,0,26,47,86,98,0,0,0,0,0,0,112,144,26,47,86,97,0,0,0,0,0,0,0,0,26,47,86,97,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,17,212,85,127,31,40,54,86,0,0,0,0,0,0,0,1,31,41,54,87,0,0,0,0,0,0,85,127,31,40,54,86,0,0,0,0,0,0,0,1,31,41,54,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,5,18,235,73,162,18,32,55,129,0,0,0,0,0,0,0,1,18,33,55,130,0,0,0,0,0,0,73,162,18,32,55,129,0,0,0,0,0,0,0,1,18,33,55,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,0,8749,4158,4591,779,777,3330,3763,12,10,14,10,0,0,23,31,799,803,3344,3785,21,20,17,15,1,1,4115,4545,754,746,3320,3750,5,10,14,10,0,0,22,29,773,770,3333,3770,14,19,17,15,1,1,43,46,25,31,10,13,7,0,0,0,0,0,1,2,26,33,11,15,7,1,0,0,0,0 -050,01,063,Alabama,Greene County,6,1,531,291,240,34,25,252,211,2,1,1,1,0,0,2,2,36,27,253,212,2,1,2,2,0,0,286,239,30,24,251,211,2,1,1,1,0,0,2,2,32,26,252,212,2,1,2,2,0,0,5,1,4,1,1,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,2,551,276,275,38,30,233,239,0,0,3,0,0,0,2,6,40,36,234,243,1,2,3,1,0,0,272,264,35,22,233,236,0,0,3,0,0,0,1,6,36,28,233,240,1,2,3,1,0,0,4,11,3,8,0,3,0,0,0,0,0,0,1,0,4,8,1,3,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,3,573,287,286,31,22,250,256,0,0,1,1,0,0,5,7,36,28,254,263,1,1,1,1,0,0,285,281,29,19,250,255,0,0,1,1,0,0,5,6,34,24,254,261,1,1,1,1,0,0,2,5,2,3,0,1,0,0,0,0,0,0,0,1,2,4,0,2,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,4,592,314,278,34,23,277,252,0,0,1,1,0,0,2,2,35,25,278,253,1,0,1,2,1,0,309,274,31,19,275,252,0,0,1,1,0,0,2,2,32,21,276,253,1,0,1,2,1,0,5,4,3,4,2,0,0,0,0,0,0,0,0,0,3,4,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,5,597,319,278,36,38,282,237,0,0,0,0,0,0,1,3,37,40,283,240,0,1,0,0,0,0,314,276,32,36,281,237,0,0,0,0,0,0,1,3,33,38,282,240,0,1,0,0,0,0,5,2,4,2,1,0,0,0,0,0,0,0,0,0,4,2,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,6,468,238,230,38,28,198,200,2,1,0,0,0,0,0,1,38,28,198,201,2,1,0,0,0,1,232,227,36,25,196,200,0,1,0,0,0,0,0,1,36,25,196,201,0,1,0,0,0,1,6,3,2,3,2,0,2,0,0,0,0,0,0,0,2,3,2,0,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,7,461,225,236,29,24,191,208,2,1,1,2,0,0,2,1,31,25,191,208,3,2,2,2,0,0,219,233,24,23,191,206,1,1,1,2,0,0,2,1,26,24,191,206,2,2,2,2,0,0,6,3,5,1,0,2,1,0,0,0,0,0,0,0,5,1,0,2,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,8,399,188,211,20,21,162,189,1,0,4,0,0,0,1,1,21,21,162,190,1,0,5,1,0,0,188,208,20,19,162,188,1,0,4,0,0,0,1,1,21,19,162,189,1,0,5,1,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,9,428,208,220,60,41,142,174,2,2,2,3,0,0,2,0,62,41,144,174,3,2,2,3,0,0,206,216,60,40,142,171,0,2,2,3,0,0,2,0,62,40,144,171,1,2,2,3,0,0,2,4,0,1,0,3,2,0,0,0,0,0,0,0,0,1,0,3,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,10,517,218,299,46,43,170,254,1,0,0,1,0,0,1,1,47,44,171,255,1,1,0,1,0,0,217,295,46,40,170,254,0,0,0,1,0,0,1,0,47,40,171,254,0,0,0,1,0,0,1,4,0,3,0,0,1,0,0,0,0,0,0,1,0,4,0,1,1,1,0,0,0,0 -050,01,063,Alabama,Greene County,6,11,672,300,372,63,72,234,295,1,3,1,0,0,0,1,2,64,74,234,295,2,4,1,1,0,0,296,370,62,71,232,294,0,3,1,0,0,0,1,2,63,73,232,294,1,4,1,1,0,0,4,2,1,1,2,1,1,0,0,0,0,0,0,0,1,1,2,1,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,12,729,343,386,97,81,243,305,0,0,0,0,0,0,3,0,98,81,245,305,3,0,0,0,0,0,342,386,97,81,242,305,0,0,0,0,0,0,3,0,98,81,244,305,3,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,13,678,311,367,67,83,243,283,0,0,0,0,0,0,1,1,68,84,244,283,0,1,0,0,0,0,310,366,66,82,243,283,0,0,0,0,0,0,1,1,67,83,244,283,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,14,481,202,279,62,66,139,211,1,0,0,0,0,0,0,2,62,67,139,213,1,1,0,0,0,0,201,278,62,65,138,211,1,0,0,0,0,0,0,2,62,66,138,213,1,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,15,364,168,196,51,61,117,132,0,2,0,1,0,0,0,0,51,61,117,132,0,2,0,1,0,0,168,196,51,61,117,132,0,2,0,1,0,0,0,0,51,61,117,132,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,16,259,110,149,24,46,86,103,0,0,0,0,0,0,0,0,24,46,86,103,0,0,0,0,0,0,110,148,24,46,86,102,0,0,0,0,0,0,0,0,24,46,86,102,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,17,196,83,113,29,34,54,78,0,0,0,0,0,0,0,1,29,35,54,78,0,1,0,0,0,0,83,112,29,34,54,77,0,0,0,0,0,0,0,1,29,35,54,77,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,6,18,253,77,176,20,39,57,136,0,0,0,0,0,0,0,1,20,40,57,137,0,0,0,0,0,0,77,176,20,39,57,136,0,0,0,0,0,0,0,1,20,40,57,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,0,8585,4073,4512,751,749,3278,3716,12,9,9,6,0,0,23,32,769,776,3292,3736,21,21,12,8,2,3,4027,4472,723,722,3268,3704,5,9,9,6,0,0,22,31,740,748,3281,3723,14,21,12,8,2,3,46,40,28,27,10,12,7,0,0,0,0,0,1,1,29,28,11,13,7,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,1,520,287,233,33,23,251,209,2,0,0,0,0,0,1,1,34,24,252,209,2,1,0,0,0,0,283,231,30,21,250,209,2,0,0,0,0,0,1,1,31,22,251,209,2,1,0,0,0,0,4,2,3,2,1,0,0,0,0,0,0,0,0,0,3,2,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,2,556,275,281,40,27,232,246,0,0,1,1,0,0,2,7,42,34,233,251,1,2,1,1,0,0,270,276,36,23,232,245,0,0,1,1,0,0,1,7,37,30,232,250,1,2,1,1,0,0,5,5,4,4,0,1,0,0,0,0,0,0,1,0,5,4,1,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,3,562,286,276,29,20,252,251,1,0,0,0,0,0,4,5,32,24,255,254,2,0,1,1,0,2,283,271,26,16,252,250,1,0,0,0,0,0,4,5,29,20,255,253,2,0,1,1,0,2,3,5,3,4,0,1,0,0,0,0,0,0,0,0,3,4,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,4,536,282,254,28,20,249,230,0,0,1,1,0,0,4,3,32,23,251,232,1,1,1,1,1,0,279,253,27,19,247,230,0,0,1,1,0,0,4,3,31,22,249,232,1,1,1,1,1,0,3,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,5,570,312,258,32,31,280,223,0,1,0,0,0,0,0,3,32,33,280,225,0,2,0,0,0,1,309,256,30,29,279,223,0,1,0,0,0,0,0,3,30,31,279,225,0,2,0,0,0,1,3,2,2,2,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,6,479,241,238,39,29,200,207,1,0,0,0,0,0,1,2,40,30,200,209,2,1,0,0,0,0,233,235,34,26,198,207,0,0,0,0,0,0,1,2,35,27,198,209,1,1,0,0,0,0,8,3,5,3,2,0,1,0,0,0,0,0,0,0,5,3,2,0,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,7,454,201,253,27,32,170,218,2,1,0,1,0,0,2,1,28,33,171,218,3,2,1,1,0,0,193,248,21,29,170,216,0,1,0,1,0,0,2,1,22,30,171,216,1,2,1,1,0,0,8,5,6,3,0,2,2,0,0,0,0,0,0,0,6,3,0,2,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,8,413,195,218,24,27,165,190,0,0,5,0,0,0,1,1,25,27,165,191,1,0,5,1,0,0,195,215,24,25,165,189,0,0,5,0,0,0,1,1,25,25,165,190,1,0,5,1,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,9,414,206,208,53,35,149,171,2,2,0,0,0,0,2,0,55,35,150,171,3,2,0,0,0,0,205,206,53,35,149,169,1,2,0,0,0,0,2,0,55,35,150,169,2,2,0,0,0,0,1,2,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,10,466,194,272,39,43,151,227,2,0,1,2,0,0,1,0,40,43,152,227,2,0,1,2,0,0,190,267,37,39,151,226,0,0,1,2,0,0,1,0,38,39,152,226,0,0,1,2,0,0,4,5,2,4,0,1,2,0,0,0,0,0,0,0,2,4,0,1,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,11,610,280,330,56,58,222,266,1,3,1,0,0,0,0,3,56,61,222,268,1,4,1,0,0,0,276,328,55,58,220,265,0,3,1,0,0,0,0,2,55,60,220,266,0,4,1,0,0,0,4,2,1,0,2,1,1,0,0,0,0,0,0,1,1,1,2,2,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,12,715,328,387,103,83,221,303,0,0,0,0,0,0,4,1,104,84,224,304,2,0,1,0,1,0,327,386,103,82,220,303,0,0,0,0,0,0,4,1,104,83,223,304,2,0,1,0,1,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,13,695,332,363,64,76,267,286,0,0,0,0,0,0,1,1,65,77,268,286,0,1,0,0,0,0,332,362,64,75,267,286,0,0,0,0,0,0,1,1,65,76,268,286,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,14,502,219,283,64,61,154,220,1,0,0,0,0,0,0,2,64,63,154,220,1,2,0,0,0,0,217,283,63,61,153,220,1,0,0,0,0,0,0,2,63,63,153,220,1,2,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,15,378,167,211,50,63,117,145,0,2,0,1,0,0,0,0,50,63,117,145,0,2,0,1,0,0,167,210,50,63,117,144,0,2,0,1,0,0,0,0,50,63,117,144,0,2,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,16,266,110,156,27,45,83,111,0,0,0,0,0,0,0,0,27,45,83,111,0,0,0,0,0,0,110,155,27,45,83,110,0,0,0,0,0,0,0,0,27,45,83,110,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,17,192,77,115,24,30,53,85,0,0,0,0,0,0,0,0,24,30,53,85,0,0,0,0,0,0,77,114,24,30,53,84,0,0,0,0,0,0,0,0,24,30,53,84,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,7,18,257,81,176,19,46,62,128,0,0,0,0,0,0,0,2,19,47,62,130,0,1,0,0,0,0,81,176,19,46,62,128,0,0,0,0,0,0,0,2,19,47,62,130,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,0,8509,4015,4494,727,751,3235,3687,14,11,11,9,0,0,28,36,749,785,3252,3709,25,20,15,15,2,1,3968,4445,702,718,3224,3673,4,11,11,9,0,0,27,34,723,750,3240,3693,15,20,15,15,2,1,47,49,25,33,11,14,10,0,0,0,0,0,1,2,26,35,12,16,10,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,1,515,263,252,29,31,226,214,5,0,1,3,0,0,2,4,31,35,228,218,5,0,1,3,0,0,256,245,26,25,225,214,2,0,1,3,0,0,2,3,28,28,227,217,2,0,1,3,0,0,7,7,3,6,1,0,3,0,0,0,0,0,0,1,3,7,1,1,3,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,2,546,278,268,30,22,244,239,0,0,1,1,0,0,3,6,33,27,247,245,0,0,1,2,0,0,274,265,27,20,244,238,0,0,1,1,0,0,2,6,29,25,246,244,0,0,1,2,0,0,4,3,3,2,0,1,0,0,0,0,0,0,1,0,4,2,1,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,3,548,285,263,31,23,250,234,0,0,0,0,0,0,4,6,35,29,252,236,1,1,1,2,0,1,282,253,28,16,250,231,0,0,0,0,0,0,4,6,32,22,252,233,1,1,1,2,0,1,3,10,3,7,0,3,0,0,0,0,0,0,0,0,3,7,0,3,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,4,516,264,252,30,19,229,229,0,0,1,1,0,0,4,3,34,22,231,231,2,1,1,1,0,0,264,251,30,18,229,229,0,0,1,1,0,0,4,3,34,21,231,231,2,1,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,5,557,302,255,27,36,270,217,0,1,1,0,0,0,4,1,28,37,273,218,2,1,1,0,2,0,297,252,24,33,268,217,0,1,1,0,0,0,4,1,25,34,271,218,2,1,1,0,2,0,5,3,3,3,2,0,0,0,0,0,0,0,0,0,3,3,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,6,482,245,237,39,24,204,210,1,0,0,0,0,0,1,3,40,27,204,212,1,1,1,0,0,0,235,234,34,21,200,210,0,0,0,0,0,0,1,3,35,24,200,212,0,1,1,0,0,0,10,3,5,3,4,0,1,0,0,0,0,0,0,0,5,3,4,0,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,7,430,189,241,24,27,160,211,2,0,1,2,0,0,2,1,25,28,161,211,3,1,2,2,0,0,185,238,22,26,160,209,0,0,1,2,0,0,2,1,23,27,161,209,1,1,2,2,0,0,4,3,2,1,0,2,2,0,0,0,0,0,0,0,2,1,0,2,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,8,432,211,221,21,25,187,193,0,1,3,0,0,0,0,2,21,27,187,194,0,1,3,1,0,0,209,218,19,23,187,192,0,1,3,0,0,0,0,2,19,25,187,193,0,1,3,1,0,0,2,3,2,2,0,1,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,9,402,205,197,49,33,151,163,2,0,1,0,0,0,2,1,51,34,153,164,2,0,1,0,0,0,204,194,49,31,151,162,1,0,1,0,0,0,2,1,51,32,153,163,1,0,1,0,0,0,1,3,0,2,0,1,1,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,10,452,190,262,44,47,143,211,1,2,1,2,0,0,1,0,44,47,144,211,2,2,1,2,0,0,187,257,42,44,143,209,0,2,1,2,0,0,1,0,42,44,144,209,1,2,1,2,0,0,3,5,2,3,0,2,1,0,0,0,0,0,0,0,2,3,0,2,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,11,568,239,329,46,56,190,269,2,2,1,0,0,0,0,2,46,58,190,270,2,3,1,0,0,0,234,326,45,55,188,268,0,2,1,0,0,0,0,1,45,56,188,268,0,3,1,0,0,0,5,3,1,1,2,1,2,0,0,0,0,0,0,1,1,2,2,2,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,12,698,322,376,86,81,235,290,0,3,0,0,0,0,1,2,87,83,235,291,1,3,0,1,0,0,321,375,86,80,234,290,0,3,0,0,0,0,1,2,87,82,234,291,1,3,0,1,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,13,706,339,367,76,76,259,290,0,0,0,0,0,0,4,1,79,77,260,290,3,1,1,0,0,0,339,366,76,75,259,290,0,0,0,0,0,0,4,1,79,76,260,290,3,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,14,554,253,301,65,68,187,232,1,0,0,0,0,0,0,1,65,69,187,232,1,1,0,0,0,0,252,301,64,68,187,232,1,0,0,0,0,0,0,1,64,69,187,232,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,15,371,152,219,45,58,107,158,0,2,0,0,0,0,0,1,45,59,107,158,0,2,0,1,0,0,151,218,45,58,106,157,0,2,0,0,0,0,0,1,45,59,106,157,0,2,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,16,288,131,157,44,46,87,111,0,0,0,0,0,0,0,0,44,46,87,111,0,0,0,0,0,0,131,156,44,46,87,110,0,0,0,0,0,0,0,0,44,46,87,110,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,17,190,70,120,20,33,50,87,0,0,0,0,0,0,0,0,20,33,50,87,0,0,0,0,0,0,70,119,20,33,50,86,0,0,0,0,0,0,0,0,20,33,50,86,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,8,18,254,77,177,21,46,56,129,0,0,0,0,0,0,0,2,21,47,56,130,0,2,0,0,0,0,77,177,21,46,56,129,0,0,0,0,0,0,0,2,21,47,56,130,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,0,8485,4014,4471,731,780,3233,3632,14,12,13,9,0,0,23,38,749,814,3246,3653,24,24,17,17,1,1,3960,4417,701,744,3220,3617,4,12,13,9,0,0,22,35,718,775,3233,3636,13,23,17,17,1,1,54,54,30,36,13,15,10,0,0,0,0,0,1,3,31,39,13,17,11,1,0,0,0,0 -050,01,063,Alabama,Greene County,9,1,490,245,245,29,38,211,201,5,0,0,2,0,0,0,4,29,42,211,203,5,1,0,3,0,0,238,235,26,30,210,201,2,0,0,2,0,0,0,2,26,32,210,202,2,0,0,3,0,0,7,10,3,8,1,0,3,0,0,0,0,0,0,2,3,10,1,1,3,1,0,0,0,0 -050,01,063,Alabama,Greene County,9,2,546,269,277,26,25,238,244,0,0,0,1,0,0,5,7,31,32,241,249,2,2,0,1,0,0,265,273,24,22,237,243,0,0,0,1,0,0,4,7,28,29,240,248,1,2,0,1,0,0,4,4,2,3,1,1,0,0,0,0,0,0,1,0,3,3,1,1,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,3,541,285,256,37,24,243,227,0,0,1,0,0,0,4,5,40,28,247,230,1,2,1,1,0,0,280,245,32,16,243,224,0,0,1,0,0,0,4,5,35,20,247,227,1,2,1,1,0,0,5,11,5,8,0,3,0,0,0,0,0,0,0,0,5,8,0,3,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,4,514,264,250,33,22,229,223,0,0,1,1,0,0,1,4,34,26,230,227,0,0,1,1,0,0,262,249,31,21,229,223,0,0,1,1,0,0,1,4,32,25,230,227,0,0,1,1,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,5,532,291,241,29,27,260,211,0,1,0,0,0,0,2,2,31,29,261,212,1,1,0,1,0,0,287,239,26,26,259,210,0,1,0,0,0,0,2,2,28,28,260,211,1,1,0,1,0,0,4,2,3,1,1,1,0,0,0,0,0,0,0,0,3,1,1,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,6,527,266,261,33,39,230,217,1,1,1,0,0,0,1,4,34,41,231,219,1,3,1,1,0,1,257,256,30,34,225,217,0,1,1,0,0,0,1,4,31,36,226,219,0,3,1,1,0,1,9,5,3,5,5,0,1,0,0,0,0,0,0,0,3,5,5,0,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,7,425,211,214,33,26,173,187,2,0,1,0,0,0,2,1,35,27,173,188,3,0,2,0,0,0,206,212,30,25,173,186,0,0,1,0,0,0,2,1,32,26,173,187,1,0,2,0,0,0,5,2,3,1,0,1,2,0,0,0,0,0,0,0,3,1,0,1,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,8,420,197,223,26,33,170,187,0,1,1,1,0,0,0,1,26,34,170,187,0,2,1,1,0,0,192,222,21,33,170,186,0,1,1,1,0,0,0,1,21,34,170,186,0,2,1,1,0,0,5,1,5,0,0,1,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,9,414,213,201,44,31,163,169,2,0,3,0,0,0,1,1,45,32,163,169,2,0,4,1,0,0,212,199,44,29,163,169,1,0,3,0,0,0,1,1,45,30,163,169,1,0,4,1,0,0,1,2,0,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,10,437,187,250,47,42,135,203,1,2,2,3,0,0,2,0,49,42,135,203,3,2,2,3,0,0,184,244,45,39,135,200,0,2,2,3,0,0,2,0,47,39,135,200,2,2,2,3,0,0,3,6,2,3,0,3,1,0,0,0,0,0,0,0,2,3,0,3,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,11,552,232,320,39,57,190,261,2,1,1,0,0,0,0,1,39,58,190,262,2,1,1,0,0,0,229,316,39,56,189,259,0,1,1,0,0,0,0,0,39,56,189,259,0,1,1,0,0,0,3,4,0,1,1,2,2,0,0,0,0,0,0,1,0,2,1,3,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,12,648,304,344,80,76,222,261,0,4,1,1,0,0,1,2,81,78,222,262,0,5,2,1,0,0,300,343,79,75,219,261,0,4,1,1,0,0,1,2,80,77,219,262,0,5,2,1,0,0,4,1,1,1,3,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,13,718,337,381,84,85,250,296,0,0,0,0,0,0,3,0,84,85,252,296,2,0,1,0,1,0,337,380,84,84,250,296,0,0,0,0,0,0,3,0,84,84,252,296,2,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,14,612,283,329,63,66,219,262,0,0,0,0,0,0,1,1,63,67,220,262,1,0,0,1,0,0,282,329,62,66,219,262,0,0,0,0,0,0,1,1,62,67,220,262,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,15,369,146,223,44,64,101,154,1,2,0,0,0,0,0,3,44,67,101,154,1,4,0,1,0,0,145,221,44,63,100,153,1,2,0,0,0,0,0,3,44,66,100,153,1,4,0,1,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,16,294,134,160,42,41,91,119,0,0,1,0,0,0,0,0,42,41,91,119,0,0,1,0,0,0,134,159,42,41,91,118,0,0,1,0,0,0,0,0,42,41,91,118,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,17,202,78,124,22,37,56,87,0,0,0,0,0,0,0,0,22,37,56,87,0,0,0,0,0,0,78,123,22,37,56,86,0,0,0,0,0,0,0,0,22,37,56,86,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,9,18,244,72,172,20,47,52,123,0,0,0,0,0,0,0,2,20,48,52,124,0,1,0,1,0,0,72,172,20,47,52,123,0,0,0,0,0,0,0,2,20,48,52,124,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,0,8312,3924,4388,744,788,3127,3538,17,12,13,9,0,0,23,41,766,820,3137,3567,27,29,16,14,1,0,3859,4327,708,752,3112,3520,4,12,13,8,0,0,22,35,729,779,3122,3543,13,29,16,12,1,0,65,61,36,36,15,18,13,0,0,1,0,0,1,6,37,41,15,24,14,0,0,2,0,0 -050,01,063,Alabama,Greene County,10,1,476,241,235,32,32,203,194,6,0,0,2,0,0,0,7,32,38,203,199,6,2,0,3,0,0,230,226,28,28,202,194,0,0,0,2,0,0,0,2,28,30,202,194,0,2,0,2,0,0,11,9,4,4,1,0,6,0,0,0,0,0,0,5,4,8,1,5,6,0,0,1,0,0 -050,01,063,Alabama,Greene County,10,2,518,259,259,30,28,223,223,2,0,0,2,0,0,4,6,34,32,226,229,3,1,0,3,0,0,255,253,27,23,222,223,2,0,0,1,0,0,4,6,31,27,225,229,3,1,0,2,0,0,4,6,3,5,1,0,0,0,0,1,0,0,0,0,3,5,1,0,0,0,0,1,0,0 -050,01,063,Alabama,Greene County,10,3,527,271,256,40,29,226,224,0,0,1,0,0,0,4,3,44,31,227,226,2,1,2,1,0,0,265,245,35,22,226,220,0,0,1,0,0,0,3,3,38,24,227,222,1,1,2,1,0,0,6,11,5,7,0,4,0,0,0,0,0,0,1,0,6,7,0,4,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,4,494,253,241,30,22,221,213,0,0,0,0,0,0,2,6,32,27,221,218,2,2,0,1,0,0,251,239,28,21,221,212,0,0,0,0,0,0,2,6,30,26,221,217,2,2,0,1,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,5,479,242,237,27,21,212,210,0,0,1,1,0,0,2,5,29,25,214,213,0,2,1,2,0,0,238,234,25,19,210,209,0,0,1,1,0,0,2,5,27,23,212,212,0,2,1,2,0,0,4,3,2,2,2,1,0,0,0,0,0,0,0,0,2,2,2,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,6,520,261,259,35,50,224,205,0,2,1,0,0,0,1,2,36,51,225,207,0,3,1,0,0,0,256,256,31,47,223,205,0,2,1,0,0,0,1,2,32,48,224,207,0,3,1,0,0,0,5,3,4,3,1,0,0,0,0,0,0,0,0,0,4,3,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,7,430,228,202,39,27,183,174,3,0,1,0,0,0,2,1,41,28,183,175,4,0,2,0,0,0,217,195,35,22,179,172,0,0,1,0,0,0,2,1,37,23,179,173,1,0,2,0,0,0,11,7,4,5,4,2,3,0,0,0,0,0,0,0,4,5,4,2,3,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,8,440,208,232,26,32,181,197,0,1,1,1,0,0,0,1,26,33,181,197,0,2,1,1,0,0,200,231,18,32,181,196,0,1,1,1,0,0,0,1,18,33,181,196,0,2,1,1,0,0,8,1,8,0,0,1,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,9,398,207,191,35,30,167,160,1,0,3,0,0,0,1,1,36,31,167,161,1,0,3,0,1,0,207,188,35,28,167,159,1,0,3,0,0,0,1,1,36,29,167,160,1,0,3,0,1,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,10,423,182,241,48,44,128,194,2,2,2,1,0,0,2,0,50,44,128,194,4,2,2,1,0,0,180,236,48,41,128,192,0,2,2,1,0,0,2,0,50,41,128,192,2,2,2,1,0,0,2,5,0,3,0,2,2,0,0,0,0,0,0,0,0,3,0,2,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,11,519,216,303,49,56,165,244,2,1,0,1,0,0,0,1,49,57,165,245,2,1,0,1,0,0,212,298,47,55,165,241,0,1,0,1,0,0,0,0,47,55,165,241,0,1,0,1,0,0,4,5,2,1,0,3,2,0,0,0,0,0,0,1,2,2,0,4,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,12,610,280,330,66,75,212,250,0,2,1,1,0,0,1,2,67,77,213,250,0,4,1,1,0,0,276,329,65,74,209,250,0,2,1,1,0,0,1,2,66,76,210,250,0,4,1,1,0,0,4,1,1,1,3,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,13,709,324,385,88,88,232,295,0,2,1,0,0,0,3,0,90,88,233,295,2,2,2,0,0,0,323,385,88,88,231,295,0,2,1,0,0,0,3,0,90,88,232,295,2,2,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,14,625,291,334,59,70,231,263,0,0,0,0,0,0,1,1,60,71,232,263,0,1,0,0,0,0,290,333,58,69,231,263,0,0,0,0,0,0,1,1,59,70,232,263,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,15,400,163,237,54,65,108,168,1,1,0,0,0,0,0,3,54,67,108,169,1,4,0,0,0,0,162,235,54,64,107,167,1,1,0,0,0,0,0,3,54,66,107,168,1,4,0,0,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,16,298,140,158,42,41,97,116,0,1,1,0,0,0,0,0,42,41,97,116,0,1,1,0,0,0,139,157,42,41,96,115,0,1,1,0,0,0,0,0,42,41,96,115,0,1,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,17,200,80,120,20,37,60,83,0,0,0,0,0,0,0,0,20,37,60,83,0,0,0,0,0,0,80,119,20,37,60,82,0,0,0,0,0,0,0,0,20,37,60,82,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,10,18,246,78,168,24,41,54,125,0,0,0,0,0,0,0,2,24,42,54,127,0,1,0,0,0,0,78,168,24,41,54,125,0,0,0,0,0,0,0,2,24,42,54,127,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,0,8212,3846,4366,708,773,3088,3531,17,13,11,9,0,0,22,40,727,809,3097,3554,28,27,15,15,2,2,3781,4303,671,738,3074,3511,4,12,11,8,0,0,21,34,689,768,3083,3532,14,24,14,13,2,1,65,63,37,35,14,20,13,1,0,1,0,0,1,6,38,41,14,22,14,3,1,2,0,1 -050,01,063,Alabama,Greene County,11,1,490,234,256,28,37,200,211,6,0,0,2,0,0,0,6,28,43,200,213,6,2,0,3,0,1,224,248,25,34,199,211,0,0,0,2,0,0,0,1,25,35,199,211,0,1,0,2,0,0,10,8,3,3,1,0,6,0,0,0,0,0,0,5,3,8,1,2,6,1,0,1,0,1 -050,01,063,Alabama,Greene County,11,2,519,277,242,32,34,239,203,2,0,0,2,0,0,4,3,36,37,241,205,3,0,0,3,1,0,270,233,26,26,238,203,2,0,0,1,0,0,4,3,30,29,240,205,3,0,0,2,1,0,7,9,6,8,1,0,0,0,0,1,0,0,0,0,6,8,1,0,0,0,0,1,0,0 -050,01,063,Alabama,Greene County,11,3,514,256,258,38,29,214,222,0,0,1,0,0,0,3,7,41,36,216,228,1,0,2,1,0,0,254,251,37,26,214,218,0,0,1,0,0,0,2,7,39,33,216,224,0,0,1,1,0,0,2,7,1,3,0,4,0,0,0,0,0,0,1,0,2,3,0,4,1,0,1,0,0,0 -050,01,063,Alabama,Greene County,11,4,481,234,247,23,21,208,220,0,0,0,0,0,0,3,6,26,27,208,224,2,2,1,0,0,0,231,243,20,18,208,219,0,0,0,0,0,0,3,6,23,24,208,223,2,2,1,0,0,0,3,4,3,3,0,1,0,0,0,0,0,0,0,0,3,3,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,5,464,232,232,29,18,201,209,0,0,1,1,0,0,1,4,30,21,201,211,1,1,1,2,0,1,229,228,27,15,200,208,0,0,1,1,0,0,1,4,28,18,200,210,1,1,1,2,0,1,3,4,2,3,1,1,0,0,0,0,0,0,0,0,2,3,1,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,6,529,272,257,33,41,237,212,0,2,1,0,0,0,1,2,34,42,238,213,0,4,1,0,0,0,267,255,29,39,236,212,0,2,1,0,0,0,1,2,30,40,237,213,0,4,1,0,0,0,5,2,4,2,1,0,0,0,0,0,0,0,0,0,4,2,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,7,416,211,205,36,32,172,172,2,0,1,0,0,0,0,1,36,33,172,172,2,0,1,1,0,0,201,201,32,29,168,171,0,0,1,0,0,0,0,1,32,30,168,171,0,0,1,1,0,0,10,4,4,3,4,1,2,0,0,0,0,0,0,0,4,3,4,1,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,8,442,205,237,28,27,173,207,1,1,1,1,0,0,2,1,30,28,173,207,1,2,2,1,1,0,194,235,18,27,173,205,0,1,1,1,0,0,2,1,20,28,173,205,0,2,2,1,1,0,11,2,10,0,0,2,1,0,0,0,0,0,0,0,10,0,0,2,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,9,380,189,191,23,28,164,162,1,0,1,0,0,0,0,1,23,29,164,163,1,0,1,0,0,0,189,188,23,26,164,161,1,0,1,0,0,0,0,1,23,27,164,162,1,0,1,0,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,10,414,197,217,60,42,132,172,2,2,1,1,0,0,2,0,61,42,133,172,4,2,1,1,0,0,195,213,60,41,132,169,0,2,1,1,0,0,2,0,61,41,133,169,2,2,1,1,0,0,2,4,0,1,0,3,2,0,0,0,0,0,0,0,0,1,0,3,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,11,478,209,269,47,51,159,216,1,0,1,1,0,0,1,1,48,52,159,216,2,1,1,1,0,0,206,262,45,48,159,213,0,0,1,1,0,0,1,0,46,48,159,213,1,0,1,1,0,0,3,7,2,3,0,3,1,0,0,0,0,0,0,1,2,4,0,3,1,1,0,0,0,0 -050,01,063,Alabama,Greene County,11,12,608,266,342,53,72,210,264,1,3,1,1,0,0,1,2,54,74,211,265,1,4,1,1,0,0,262,340,52,71,208,263,0,3,1,1,0,0,1,2,53,73,209,264,0,4,1,1,0,0,4,2,1,1,2,1,1,0,0,0,0,0,0,0,1,1,2,1,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,13,650,302,348,87,77,211,269,0,2,1,0,0,0,3,0,88,77,213,269,2,2,2,0,0,0,300,348,87,77,209,269,0,2,1,0,0,0,3,0,88,77,211,269,2,2,2,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,14,644,292,352,57,77,234,274,0,0,0,0,0,0,1,1,58,78,234,275,1,1,0,0,0,0,291,351,56,76,234,274,0,0,0,0,0,0,1,1,57,77,234,275,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,15,419,172,247,52,56,119,187,1,1,0,0,0,0,0,3,52,59,119,188,1,2,0,1,0,0,171,244,52,55,118,186,1,0,0,0,0,0,0,3,52,58,118,187,1,1,0,1,0,0,1,3,0,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0 -050,01,063,Alabama,Greene County,11,16,310,142,168,41,50,100,116,0,2,1,0,0,0,0,0,41,50,100,116,0,2,1,0,0,0,141,168,41,50,99,116,0,2,1,0,0,0,0,0,41,50,99,116,0,2,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,17,208,82,126,22,38,60,88,0,0,0,0,0,0,0,0,22,38,60,88,0,0,0,0,0,0,82,124,22,37,60,87,0,0,0,0,0,0,0,0,22,37,60,87,0,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,11,18,246,74,172,19,43,55,127,0,0,0,0,0,0,0,2,19,43,55,129,0,2,0,0,0,0,74,171,19,43,55,126,0,0,0,0,0,0,0,2,19,43,55,128,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,0,8104,3792,4312,717,755,3014,3488,21,14,11,10,0,0,29,45,745,794,3032,3518,33,26,11,17,0,2,3719,4249,674,722,3004,3466,6,13,11,9,0,0,24,39,697,756,3018,3491,17,23,11,16,0,2,73,63,43,33,10,22,15,1,0,1,0,0,5,6,48,38,14,27,16,3,0,1,0,0 -050,01,063,Alabama,Greene County,12,1,456,221,235,28,38,185,187,4,0,0,2,0,0,4,8,32,45,188,194,5,1,0,3,0,0,209,227,24,35,184,187,1,0,0,2,0,0,0,3,24,38,184,189,1,0,0,3,0,0,12,8,4,3,1,0,3,0,0,0,0,0,4,5,8,7,4,5,4,1,0,0,0,0 -050,01,063,Alabama,Greene County,12,2,484,253,231,29,34,212,193,7,1,0,1,0,0,5,2,34,36,216,193,8,2,0,2,0,0,241,222,23,26,211,193,2,1,0,0,0,0,5,2,28,28,215,193,3,2,0,1,0,0,12,9,6,8,1,0,5,0,0,1,0,0,0,0,6,8,1,0,5,0,0,1,0,0 -050,01,063,Alabama,Greene County,12,3,506,243,263,35,29,204,225,0,0,1,1,0,0,3,8,38,35,207,230,0,1,1,4,0,1,241,255,34,25,204,221,0,0,1,1,0,0,2,8,36,31,206,226,0,1,1,4,0,1,2,8,1,4,0,4,0,0,0,0,0,0,1,0,2,4,1,4,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,4,470,232,238,25,18,202,214,0,0,0,0,0,0,5,6,30,23,204,218,3,2,0,1,0,0,228,234,21,16,202,212,0,0,0,0,0,0,5,6,26,21,204,216,3,2,0,1,0,0,4,4,4,2,0,2,0,0,0,0,0,0,0,0,4,2,0,2,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,5,444,230,214,27,15,201,193,0,0,1,1,0,0,1,5,28,19,202,197,0,2,1,1,0,0,226,212,24,14,200,192,0,0,1,1,0,0,1,5,25,18,201,196,0,2,1,1,0,0,4,2,3,1,1,1,0,0,0,0,0,0,0,0,3,1,1,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,6,522,271,251,24,36,246,210,0,1,1,0,0,0,0,4,24,40,246,212,0,3,1,0,0,0,269,248,23,33,245,210,0,1,1,0,0,0,0,4,23,37,245,212,0,3,1,0,0,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,7,418,206,212,41,38,162,172,2,1,0,0,0,0,1,1,42,39,163,173,2,1,0,0,0,0,198,208,34,35,162,171,1,1,0,0,0,0,1,1,35,36,163,172,1,1,0,0,0,0,8,4,7,3,0,1,1,0,0,0,0,0,0,0,7,3,0,1,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,8,432,195,237,33,26,158,207,2,1,0,2,0,0,2,1,35,27,159,208,3,1,0,2,0,0,185,235,25,26,158,205,0,1,0,2,0,0,2,1,27,27,159,206,1,1,0,2,0,0,10,2,8,0,0,2,2,0,0,0,0,0,0,0,8,0,0,2,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,9,397,192,205,28,27,161,177,0,0,3,0,0,0,0,1,28,28,161,178,0,0,3,0,0,0,190,201,26,25,161,175,0,0,3,0,0,0,0,1,26,26,161,176,0,0,3,0,0,0,2,4,2,2,0,2,0,0,0,0,0,0,0,0,2,2,0,2,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,10,415,200,215,54,41,142,172,2,2,0,0,0,0,2,0,56,41,142,172,4,2,0,0,0,0,199,212,54,41,142,169,1,2,0,0,0,0,2,0,56,41,142,169,3,2,0,0,0,0,1,3,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,11,466,202,264,44,53,153,209,2,0,2,2,0,0,1,0,45,53,153,209,3,0,2,2,0,0,198,258,42,49,153,207,0,0,2,2,0,0,1,0,43,49,153,207,1,0,2,2,0,0,4,6,2,4,0,2,2,0,0,0,0,0,0,0,2,4,0,2,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,12,566,258,308,55,56,201,245,1,3,1,1,0,0,0,3,55,59,201,246,1,5,1,1,0,0,252,305,52,56,199,243,0,3,1,1,0,0,0,2,52,58,199,244,0,4,1,1,0,0,6,3,3,0,2,2,1,0,0,0,0,0,0,1,3,1,2,2,1,1,0,0,0,0 -050,01,063,Alabama,Greene County,12,13,632,286,346,86,79,195,265,0,2,1,0,0,0,4,0,89,79,198,265,2,2,1,0,0,0,284,345,86,78,193,265,0,2,1,0,0,0,4,0,89,78,196,265,2,2,1,0,0,0,2,1,0,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,14,654,303,351,65,75,237,275,0,0,0,0,0,0,1,1,66,76,237,276,1,0,0,0,0,0,303,350,65,74,237,275,0,0,0,0,0,0,1,1,66,75,237,276,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,15,456,193,263,56,60,136,201,1,0,0,0,0,0,0,2,56,62,136,202,1,0,0,0,0,1,190,262,54,59,135,201,1,0,0,0,0,0,0,2,54,61,135,202,1,0,0,0,0,1,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,16,321,140,181,40,55,99,122,0,3,1,0,0,0,0,1,40,56,99,122,0,3,1,1,0,0,139,179,40,55,98,121,0,2,1,0,0,0,0,1,40,56,98,121,0,2,1,1,0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0 -050,01,063,Alabama,Greene County,12,17,213,89,124,28,35,61,89,0,0,0,0,0,0,0,0,28,35,61,89,0,0,0,0,0,0,89,123,28,35,61,88,0,0,0,0,0,0,0,0,28,35,61,88,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,12,18,252,78,174,19,40,59,132,0,0,0,0,0,0,0,2,19,41,59,134,0,1,0,0,0,0,78,173,19,40,59,131,0,0,0,0,0,0,0,2,19,41,59,133,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,0,7990,3714,4276,701,753,2949,3451,22,16,10,9,0,0,32,47,728,795,2967,3479,39,33,13,15,0,1,3638,4211,659,719,2935,3428,7,15,10,8,0,0,27,41,681,755,2950,3453,22,30,13,14,0,0,76,65,42,34,14,23,15,1,0,1,0,0,5,6,47,40,17,26,17,3,0,1,0,1 -050,01,063,Alabama,Greene County,13,1,436,223,213,27,36,187,170,4,1,0,0,0,0,5,6,32,42,191,173,6,4,0,0,0,0,210,208,23,33,185,170,1,1,0,0,0,0,1,4,24,37,186,173,2,2,0,0,0,0,13,5,4,3,2,0,3,0,0,0,0,0,4,2,8,5,5,0,4,2,0,0,0,0 -050,01,063,Alabama,Greene County,13,2,497,247,250,27,42,208,200,8,1,0,2,0,0,4,5,31,47,211,204,9,1,0,2,0,1,230,238,19,33,204,200,3,1,0,2,0,0,4,2,23,35,207,202,4,1,0,2,0,0,17,12,8,9,4,0,5,0,0,0,0,0,0,3,8,12,4,2,5,0,0,0,0,1 -050,01,063,Alabama,Greene County,13,3,504,242,262,37,26,200,227,0,0,1,2,0,0,4,7,41,33,202,230,1,3,2,3,0,0,240,256,36,24,200,224,0,0,1,1,0,0,3,7,39,31,202,227,0,3,2,2,0,0,2,6,1,2,0,3,0,0,0,1,0,0,1,0,2,2,0,3,1,0,0,1,0,0 -050,01,063,Alabama,Greene County,13,4,457,219,238,24,25,190,206,0,0,0,0,0,0,5,7,28,32,193,209,2,2,1,2,0,0,216,232,21,22,190,203,0,0,0,0,0,0,5,7,25,29,193,206,2,2,1,2,0,0,3,6,3,3,0,3,0,0,0,0,0,0,0,0,3,3,0,3,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,5,424,218,206,25,20,190,181,0,0,1,1,0,0,2,4,27,24,191,185,1,0,1,1,0,0,217,204,24,19,190,180,0,0,1,1,0,0,2,4,26,23,191,184,1,0,1,1,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,6,478,241,237,23,27,216,205,0,2,1,0,0,0,1,3,24,30,216,207,1,3,1,0,0,0,236,234,20,24,214,205,0,2,1,0,0,0,1,3,21,27,214,207,1,3,1,0,0,0,5,3,3,3,2,0,0,0,0,0,0,0,0,0,3,3,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,7,430,219,211,37,35,179,173,2,1,0,0,0,0,1,2,38,37,180,174,2,2,0,0,0,0,213,207,32,32,179,172,1,1,0,0,0,0,1,2,33,34,180,173,1,2,0,0,0,0,6,4,5,3,0,1,1,0,0,0,0,0,0,0,5,3,0,1,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,8,408,183,225,33,27,146,195,2,0,0,1,0,0,2,2,34,28,147,196,4,1,0,2,0,0,173,221,25,25,146,193,0,0,0,1,0,0,2,2,26,26,147,194,2,1,0,2,0,0,10,4,8,2,0,2,2,0,0,0,0,0,0,0,8,2,0,2,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,9,403,184,219,32,27,150,189,0,1,2,1,0,0,0,1,32,27,150,190,0,2,2,1,0,0,180,216,28,27,150,186,0,1,2,1,0,0,0,1,28,27,150,187,0,2,2,1,0,0,4,3,4,0,0,3,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,10,413,204,209,47,36,152,172,2,0,1,0,0,0,2,1,49,37,152,173,3,0,2,0,0,0,203,205,47,34,152,170,1,0,1,0,0,0,2,1,49,35,152,171,2,0,2,0,0,0,1,4,0,2,0,2,1,0,0,0,0,0,0,0,0,2,0,2,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,11,450,192,258,50,51,138,203,1,2,2,2,0,0,1,0,51,51,138,203,2,2,2,2,0,0,189,252,48,48,138,200,0,2,2,2,0,0,1,0,49,48,138,200,1,2,2,2,0,0,3,6,2,3,0,3,1,0,0,0,0,0,0,0,2,3,0,3,1,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,12,524,227,297,44,52,180,241,2,2,1,0,0,0,0,2,44,54,180,242,2,3,1,0,0,0,222,293,43,51,178,239,0,2,1,0,0,0,0,1,43,52,178,239,0,3,1,0,0,0,5,4,1,1,2,2,2,0,0,0,0,0,0,1,1,2,2,3,2,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,13,616,291,325,83,75,207,246,0,3,0,0,0,0,1,1,84,75,207,247,1,4,0,0,0,0,289,324,83,74,205,246,0,3,0,0,0,0,1,1,84,74,205,247,1,4,0,0,0,0,2,1,0,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,14,650,298,352,72,79,222,272,0,0,0,0,0,0,4,1,73,80,225,273,4,0,0,0,0,0,298,351,72,78,222,272,0,0,0,0,0,0,4,1,73,79,225,273,4,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,15,504,218,286,54,65,163,220,1,0,0,0,0,0,0,1,54,65,163,221,1,1,0,0,0,0,216,286,52,65,163,220,1,0,0,0,0,0,0,1,52,65,163,221,1,1,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,16,313,127,186,34,51,93,130,0,3,0,0,0,0,0,2,34,53,93,130,0,4,0,1,0,0,126,184,34,51,92,129,0,2,0,0,0,0,0,2,34,53,92,129,0,3,0,1,0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0 -050,01,063,Alabama,Greene County,13,17,233,110,123,34,36,75,87,0,0,1,0,0,0,0,0,34,36,75,87,0,0,1,0,0,0,109,122,34,36,74,86,0,0,1,0,0,0,0,0,34,36,74,86,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,063,Alabama,Greene County,13,18,250,71,179,18,43,53,134,0,0,0,0,0,0,0,2,18,44,53,135,0,1,0,1,0,0,71,178,18,43,53,133,0,0,0,0,0,0,0,2,18,44,53,134,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,0,15760,7466,8294,3117,3199,4288,5022,12,13,10,25,1,0,38,35,3148,3227,4304,5037,35,30,18,37,2,3,7387,8233,3061,3164,4269,4999,11,12,10,25,1,0,35,33,3089,3190,4285,5014,31,27,16,37,2,3,79,61,56,35,19,23,1,1,0,0,0,0,3,2,59,37,19,23,4,3,2,0,0,0 -050,01,065,Alabama,Hale County,1,1,954,465,489,164,179,297,301,0,0,0,2,0,0,4,7,167,186,301,305,0,3,1,2,0,0,459,481,160,173,295,300,0,0,0,2,0,0,4,6,163,179,299,304,0,2,1,2,0,0,6,8,4,6,2,1,0,0,0,0,0,0,0,1,4,7,2,1,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,1,2,969,482,487,134,164,346,319,0,1,0,0,0,0,2,3,136,167,348,321,0,3,0,0,0,0,472,481,129,160,341,317,0,1,0,0,0,0,2,3,131,163,343,319,0,3,0,0,0,0,10,6,5,4,5,2,0,0,0,0,0,0,0,0,5,4,5,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,3,1230,615,615,196,200,415,409,2,1,1,2,0,0,1,3,197,203,415,410,3,3,1,2,0,0,608,608,191,197,413,406,2,1,1,2,0,0,1,2,192,199,413,407,3,2,1,2,0,0,7,7,5,3,2,3,0,0,0,0,0,0,0,1,5,4,2,3,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,1,4,1225,623,602,188,188,427,408,3,4,1,0,0,0,4,2,192,190,429,408,5,4,3,2,0,0,614,597,182,186,426,406,3,3,1,0,0,0,2,2,184,188,428,406,3,3,1,2,0,0,9,5,6,2,1,2,0,1,0,0,0,0,2,0,8,2,1,2,2,1,2,0,0,0 -050,01,065,Alabama,Hale County,1,5,898,450,448,165,147,282,296,0,1,0,3,0,0,3,1,167,148,285,296,1,1,0,4,0,0,442,445,159,145,280,295,0,1,0,3,0,0,3,1,161,146,283,295,1,1,0,4,0,0,8,3,6,2,2,1,0,0,0,0,0,0,0,0,6,2,2,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,6,861,407,454,168,170,234,276,1,0,0,4,0,0,4,4,172,172,235,278,3,1,2,7,0,0,398,451,161,168,232,275,1,0,0,4,0,0,4,4,165,170,233,277,3,1,2,7,0,0,9,3,7,2,2,1,0,0,0,0,0,0,0,0,7,2,2,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,7,859,396,463,156,147,237,311,0,0,1,2,0,0,2,3,157,150,238,312,1,3,1,2,1,0,393,453,154,142,236,306,0,0,1,2,0,0,2,3,155,145,237,307,1,3,1,2,1,0,3,10,2,5,1,5,0,0,0,0,0,0,0,0,2,5,1,5,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,8,885,403,482,170,161,230,317,0,1,1,2,0,0,2,1,172,162,230,317,2,2,1,2,0,0,397,481,166,161,229,316,0,1,1,2,0,0,1,1,167,162,229,316,1,2,1,2,0,0,6,1,4,0,1,1,0,0,0,0,0,0,1,0,5,0,1,1,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,9,898,405,493,172,194,230,297,1,0,2,0,0,0,0,2,172,195,230,298,1,1,2,2,0,0,400,490,167,192,230,296,1,0,2,0,0,0,0,2,167,193,230,297,1,1,2,2,0,0,5,3,5,2,0,1,0,0,0,0,0,0,0,0,5,2,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,10,1270,587,683,270,257,311,418,2,2,1,4,1,0,2,2,272,257,311,420,4,2,1,6,1,0,584,681,268,256,311,417,1,2,1,4,1,0,2,2,270,256,311,419,3,2,1,6,1,0,3,2,2,1,0,1,1,0,0,0,0,0,0,0,2,1,0,1,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,11,1222,595,627,275,221,313,404,1,1,2,0,0,0,4,1,279,222,313,404,5,2,2,0,0,0,589,624,271,220,311,402,1,1,2,0,0,0,4,1,275,221,311,402,5,2,2,0,0,0,6,3,4,1,2,2,0,0,0,0,0,0,0,0,4,1,2,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,12,1142,544,598,261,251,279,346,0,0,0,1,0,0,4,0,262,251,282,346,2,0,2,1,0,0,543,597,260,250,279,346,0,0,0,1,0,0,4,0,261,250,282,346,2,0,2,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,13,977,496,481,255,236,239,239,0,1,0,2,0,0,2,3,257,238,239,240,2,3,0,3,0,1,494,480,253,236,239,238,0,1,0,2,0,0,2,3,255,238,239,239,2,3,0,3,0,1,2,1,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,14,734,361,373,187,205,170,167,0,0,0,0,0,0,4,1,190,206,170,167,4,1,1,0,0,0,360,368,187,201,169,166,0,0,0,0,0,0,4,1,190,202,169,166,4,1,1,0,0,0,1,5,0,4,1,1,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,15,558,239,319,133,148,105,167,1,1,0,2,0,0,0,1,133,148,105,168,1,1,0,2,0,1,237,318,131,147,105,167,1,1,0,2,0,0,0,1,131,147,105,168,1,1,0,2,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,16,437,184,253,114,132,70,121,0,0,0,0,0,0,0,0,114,132,70,121,0,0,0,0,0,0,184,253,114,132,70,121,0,0,0,0,0,0,0,0,114,132,70,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,17,327,128,199,64,95,63,102,1,0,0,1,0,0,0,1,64,96,63,102,1,0,0,2,0,1,127,198,63,94,63,102,1,0,0,1,0,0,0,1,63,95,63,102,1,0,0,2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,1,18,314,86,228,45,104,40,124,0,0,1,0,0,0,0,0,45,104,40,124,0,0,1,0,0,0,86,227,45,104,40,123,0,0,1,0,0,0,0,0,45,104,40,123,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,0,15762,7467,8295,3117,3199,4289,5023,12,13,10,25,1,0,38,35,3148,3227,4305,5038,35,30,18,37,2,3,7388,8234,3061,3164,4270,5000,11,12,10,25,1,0,35,33,3089,3190,4286,5015,31,27,16,37,2,3,79,61,56,35,19,23,1,1,0,0,0,0,3,2,59,37,19,23,4,3,2,0,0,0 -050,01,065,Alabama,Hale County,2,1,954,465,489,164,179,297,301,0,0,0,2,0,0,4,7,167,186,301,305,0,3,1,2,0,0,459,481,160,173,295,300,0,0,0,2,0,0,4,6,163,179,299,304,0,2,1,2,0,0,6,8,4,6,2,1,0,0,0,0,0,0,0,1,4,7,2,1,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,2,2,969,482,487,134,164,346,319,0,1,0,0,0,0,2,3,136,167,348,321,0,3,0,0,0,0,472,481,129,160,341,317,0,1,0,0,0,0,2,3,131,163,343,319,0,3,0,0,0,0,10,6,5,4,5,2,0,0,0,0,0,0,0,0,5,4,5,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,3,1230,615,615,196,200,415,409,2,1,1,2,0,0,1,3,197,203,415,410,3,3,1,2,0,0,608,608,191,197,413,406,2,1,1,2,0,0,1,2,192,199,413,407,3,2,1,2,0,0,7,7,5,3,2,3,0,0,0,0,0,0,0,1,5,4,2,3,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,2,4,1225,623,602,188,188,427,408,3,4,1,0,0,0,4,2,192,190,429,408,5,4,3,2,0,0,614,597,182,186,426,406,3,3,1,0,0,0,2,2,184,188,428,406,3,3,1,2,0,0,9,5,6,2,1,2,0,1,0,0,0,0,2,0,8,2,1,2,2,1,2,0,0,0 -050,01,065,Alabama,Hale County,2,5,898,450,448,165,147,282,296,0,1,0,3,0,0,3,1,167,148,285,296,1,1,0,4,0,0,442,445,159,145,280,295,0,1,0,3,0,0,3,1,161,146,283,295,1,1,0,4,0,0,8,3,6,2,2,1,0,0,0,0,0,0,0,0,6,2,2,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,6,861,407,454,168,170,234,276,1,0,0,4,0,0,4,4,172,172,235,278,3,1,2,7,0,0,398,451,161,168,232,275,1,0,0,4,0,0,4,4,165,170,233,277,3,1,2,7,0,0,9,3,7,2,2,1,0,0,0,0,0,0,0,0,7,2,2,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,7,859,396,463,156,147,237,311,0,0,1,2,0,0,2,3,157,150,238,312,1,3,1,2,1,0,393,453,154,142,236,306,0,0,1,2,0,0,2,3,155,145,237,307,1,3,1,2,1,0,3,10,2,5,1,5,0,0,0,0,0,0,0,0,2,5,1,5,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,8,885,403,482,170,161,230,317,0,1,1,2,0,0,2,1,172,162,230,317,2,2,1,2,0,0,397,481,166,161,229,316,0,1,1,2,0,0,1,1,167,162,229,316,1,2,1,2,0,0,6,1,4,0,1,1,0,0,0,0,0,0,1,0,5,0,1,1,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,9,898,405,493,172,194,230,297,1,0,2,0,0,0,0,2,172,195,230,298,1,1,2,2,0,0,400,490,167,192,230,296,1,0,2,0,0,0,0,2,167,193,230,297,1,1,2,2,0,0,5,3,5,2,0,1,0,0,0,0,0,0,0,0,5,2,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,10,1270,587,683,270,257,311,418,2,2,1,4,1,0,2,2,272,257,311,420,4,2,1,6,1,0,584,681,268,256,311,417,1,2,1,4,1,0,2,2,270,256,311,419,3,2,1,6,1,0,3,2,2,1,0,1,1,0,0,0,0,0,0,0,2,1,0,1,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,11,1224,596,628,276,222,313,404,1,1,2,0,0,0,4,1,280,223,313,404,5,2,2,0,0,0,590,625,272,221,311,402,1,1,2,0,0,0,4,1,276,222,311,402,5,2,2,0,0,0,6,3,4,1,2,2,0,0,0,0,0,0,0,0,4,1,2,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,12,1142,544,598,261,251,279,346,0,0,0,1,0,0,4,0,262,251,282,346,2,0,2,1,0,0,543,597,260,250,279,346,0,0,0,1,0,0,4,0,261,250,282,346,2,0,2,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,13,976,495,481,254,236,239,239,0,1,0,2,0,0,2,3,256,238,239,240,2,3,0,3,0,1,493,480,252,236,239,238,0,1,0,2,0,0,2,3,254,238,239,239,2,3,0,3,0,1,2,1,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,14,735,361,374,187,205,170,168,0,0,0,0,0,0,4,1,190,206,170,168,4,1,1,0,0,0,360,369,187,201,169,167,0,0,0,0,0,0,4,1,190,202,169,167,4,1,1,0,0,0,1,5,0,4,1,1,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,15,558,240,318,133,147,106,167,1,1,0,2,0,0,0,1,133,147,106,168,1,1,0,2,0,1,238,317,131,146,106,167,1,1,0,2,0,0,0,1,131,146,106,168,1,1,0,2,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,16,437,184,253,114,132,70,121,0,0,0,0,0,0,0,0,114,132,70,121,0,0,0,0,0,0,184,253,114,132,70,121,0,0,0,0,0,0,0,0,114,132,70,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,17,327,128,199,64,95,63,102,1,0,0,1,0,0,0,1,64,96,63,102,1,0,0,2,0,1,127,198,63,94,63,102,1,0,0,1,0,0,0,1,63,95,63,102,1,0,0,2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,2,18,314,86,228,45,104,40,124,0,0,1,0,0,0,0,0,45,104,40,124,0,0,1,0,0,0,86,227,45,104,40,123,0,0,1,0,0,0,0,0,45,104,40,123,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,0,15745,7467,8278,3121,3199,4285,5008,11,13,10,24,1,0,39,34,3155,3231,4303,5021,29,30,18,28,1,3,7389,8216,3064,3163,4268,4985,10,12,10,24,1,0,36,32,3095,3193,4284,4998,27,27,18,28,1,3,78,62,57,36,17,23,1,1,0,0,0,0,3,2,60,38,19,23,2,3,0,0,0,0 -050,01,065,Alabama,Hale County,3,1,964,468,496,167,186,297,300,0,0,0,2,0,0,4,8,171,194,300,303,1,4,0,3,0,1,461,487,162,179,295,299,0,0,0,2,0,0,4,7,166,186,298,302,1,3,0,3,0,1,7,9,5,7,2,1,0,0,0,0,0,0,0,1,5,8,2,1,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,3,2,961,473,488,130,167,341,317,0,1,0,0,0,0,2,3,132,170,342,319,1,2,0,0,0,0,463,480,125,161,336,315,0,1,0,0,0,0,2,3,127,164,337,317,1,2,0,0,0,0,10,8,5,6,5,2,0,0,0,0,0,0,0,0,5,6,5,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,3,1210,607,603,193,197,410,400,2,1,1,2,0,0,1,3,194,200,410,402,3,2,1,2,0,0,602,597,189,195,409,397,2,1,1,2,0,0,1,2,190,197,409,399,3,1,1,2,0,0,5,6,4,2,1,3,0,0,0,0,0,0,0,1,4,3,1,3,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,3,4,1207,614,593,184,183,424,404,2,4,1,0,0,0,3,2,187,185,426,404,3,5,1,1,0,0,606,589,179,182,423,402,2,3,1,0,0,0,1,2,180,184,424,402,2,4,1,1,0,0,8,4,5,1,1,2,0,1,0,0,0,0,2,0,7,1,2,2,1,1,0,0,0,0 -050,01,065,Alabama,Hale County,3,5,913,460,453,170,149,287,300,0,1,0,2,0,0,3,1,171,150,290,300,2,2,0,2,0,0,451,450,163,147,285,299,0,1,0,2,0,0,3,1,164,148,288,299,2,2,0,2,0,0,9,3,7,2,2,1,0,0,0,0,0,0,0,0,7,2,2,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,6,863,410,453,170,168,235,277,1,0,0,4,0,0,4,4,174,171,237,279,2,1,1,5,0,1,401,451,163,167,233,276,1,0,0,4,0,0,4,4,167,170,235,278,2,1,1,5,0,1,9,2,7,1,2,1,0,0,0,0,0,0,0,0,7,1,2,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,7,877,410,467,165,148,242,314,0,0,1,2,0,0,2,3,167,151,243,315,0,1,2,2,0,1,407,456,163,142,241,309,0,0,1,2,0,0,2,3,165,145,242,310,0,1,2,2,0,1,3,11,2,6,1,5,0,0,0,0,0,0,0,0,2,6,1,5,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,8,872,397,475,169,156,225,315,0,1,1,2,0,0,2,1,171,157,226,316,1,1,1,2,0,0,391,474,165,156,224,314,0,1,1,2,0,0,1,1,166,157,224,315,1,1,1,2,0,0,6,1,4,0,1,1,0,0,0,0,0,0,1,0,5,0,2,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,9,883,406,477,172,193,231,283,1,0,2,0,0,0,0,1,172,194,231,283,1,1,2,0,0,0,400,474,166,191,231,282,1,0,2,0,0,0,0,1,166,192,231,282,1,1,2,0,0,0,6,3,6,2,0,1,0,0,0,0,0,0,0,0,6,2,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,10,1256,573,683,264,257,303,418,2,2,1,4,1,0,2,2,266,258,304,419,3,4,1,4,1,0,569,681,261,256,303,417,1,2,1,4,1,0,2,2,263,257,304,418,2,4,1,4,1,0,4,2,3,1,0,1,1,0,0,0,0,0,0,0,3,1,0,1,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,11,1224,598,626,274,223,316,401,1,1,2,0,0,0,5,1,277,224,318,402,4,1,4,0,0,0,594,623,271,222,315,399,1,1,2,0,0,0,5,1,274,223,317,400,4,1,4,0,0,0,4,3,3,1,1,2,0,0,0,0,0,0,0,0,3,1,1,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,12,1139,541,598,261,248,277,349,0,0,0,1,0,0,3,0,264,248,278,349,1,0,1,1,0,0,540,597,260,247,277,349,0,0,0,1,0,0,3,0,263,247,278,349,1,0,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,13,988,504,484,256,239,245,240,0,1,0,2,0,0,3,2,259,241,245,240,1,2,2,3,0,0,502,483,254,239,245,239,0,1,0,2,0,0,3,2,257,241,245,239,1,2,2,3,0,0,2,1,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,14,739,364,375,188,204,171,170,0,0,0,0,0,0,5,1,192,205,172,170,4,1,1,0,0,0,363,370,188,200,170,169,0,0,0,0,0,0,5,1,192,201,171,169,4,1,1,0,0,0,1,5,0,4,1,1,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,15,560,243,317,135,147,107,166,1,1,0,2,0,0,0,1,135,148,107,166,1,2,0,2,0,0,241,316,133,146,107,166,1,1,0,2,0,0,0,1,133,147,107,166,1,2,0,2,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,16,440,181,259,111,132,70,127,0,0,0,0,0,0,0,0,111,132,70,127,0,0,0,0,0,0,181,259,111,132,70,127,0,0,0,0,0,0,0,0,111,132,70,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,17,338,133,205,67,98,65,105,1,0,0,1,0,0,0,1,67,99,65,105,1,1,0,1,0,0,132,204,66,97,65,105,1,0,0,1,0,0,0,1,66,98,65,105,1,1,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,3,18,311,85,226,45,104,39,122,0,0,1,0,0,0,0,0,45,104,39,122,0,0,1,0,0,0,85,225,45,104,39,121,0,0,1,0,0,0,0,0,45,104,39,121,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,0,15360,7283,8077,3065,3118,4154,4880,12,13,12,29,1,0,39,37,3098,3153,4171,4897,31,25,21,35,1,4,7196,8009,2999,3082,4138,4851,10,12,12,29,1,0,36,35,3029,3115,4154,4867,27,23,21,35,1,4,87,68,66,36,16,29,2,1,0,0,0,0,3,2,69,38,17,30,4,2,0,0,0,0 -050,01,065,Alabama,Hale County,4,1,923,476,447,160,161,311,274,0,0,0,3,0,0,5,9,164,170,314,278,2,3,1,5,0,0,470,438,156,155,309,272,0,0,0,3,0,0,5,8,160,163,312,276,2,2,1,5,0,0,6,9,4,6,2,2,0,0,0,0,0,0,0,1,4,7,2,2,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,4,2,922,460,462,131,158,326,298,0,1,0,0,0,0,3,5,134,162,328,302,1,2,0,1,0,0,450,449,126,149,321,294,0,1,0,0,0,0,3,5,129,153,323,298,1,2,0,1,0,0,10,13,5,9,5,4,0,0,0,0,0,0,0,0,5,9,5,4,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,3,1122,561,561,175,188,382,368,2,0,1,2,0,0,1,3,176,191,383,371,2,0,1,2,0,0,553,557,169,187,381,366,1,0,1,2,0,0,1,2,170,189,382,368,1,0,1,2,0,0,8,4,6,1,1,2,1,0,0,0,0,0,0,1,6,2,1,3,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,4,1144,565,579,168,177,390,394,3,5,2,1,0,0,2,2,170,179,390,394,5,6,2,1,0,1,559,573,164,176,390,390,3,4,2,1,0,0,0,2,164,178,390,390,3,5,2,1,0,1,6,6,4,1,0,4,0,1,0,0,0,0,2,0,6,1,0,4,2,1,0,0,0,0 -050,01,065,Alabama,Hale County,4,5,933,465,468,169,146,293,320,0,0,0,1,0,0,3,1,171,147,296,320,1,0,0,1,0,1,454,462,161,143,290,317,0,0,0,1,0,0,3,1,163,144,293,317,1,0,0,1,0,1,11,6,8,3,3,3,0,0,0,0,0,0,0,0,8,3,3,3,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,6,860,404,456,183,179,216,267,1,0,1,6,0,0,3,4,184,182,218,269,3,1,2,7,0,1,391,455,172,179,214,266,1,0,1,6,0,0,3,4,173,182,216,268,3,1,2,7,0,1,13,1,11,0,2,1,0,0,0,0,0,0,0,0,11,0,2,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,7,867,398,469,162,147,235,316,0,0,0,4,0,0,1,2,163,149,235,317,1,1,0,4,0,0,394,460,159,142,234,312,0,0,0,4,0,0,1,2,160,144,234,313,1,1,0,4,0,0,4,9,3,5,1,4,0,0,0,0,0,0,0,0,3,5,1,4,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,8,819,374,445,163,135,206,306,0,1,2,2,0,0,3,1,166,136,207,306,1,2,3,2,0,0,367,443,158,135,205,304,0,1,2,2,0,0,2,1,160,136,205,304,1,2,3,2,0,0,7,2,5,0,1,2,0,0,0,0,0,0,1,0,6,0,2,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,9,838,411,427,173,192,235,233,1,0,2,0,0,0,0,2,173,194,235,233,1,1,2,1,0,0,405,424,167,190,235,232,1,0,2,0,0,0,0,2,167,192,235,232,1,1,2,1,0,0,6,3,6,2,0,1,0,0,0,0,0,0,0,0,6,2,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,10,1175,524,651,243,242,275,402,2,1,1,4,1,0,2,2,245,244,276,403,2,1,2,5,1,0,521,649,241,241,275,401,1,1,1,4,1,0,2,2,243,243,276,402,1,1,2,5,1,0,3,2,2,1,0,1,1,0,0,0,0,0,0,0,2,1,0,1,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,11,1208,588,620,269,222,312,395,1,2,2,0,0,0,4,1,271,223,314,395,3,3,4,0,0,0,583,617,264,220,312,394,1,2,2,0,0,0,4,1,266,221,314,394,3,3,4,0,0,0,5,3,5,2,0,1,0,0,0,0,0,0,0,0,5,2,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,12,1133,532,601,259,231,270,368,0,1,0,1,0,0,3,0,262,231,270,368,1,1,2,1,0,0,530,599,257,230,270,367,0,1,0,1,0,0,3,0,260,230,270,367,1,1,2,1,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,13,1013,519,494,262,250,253,240,0,1,0,2,0,0,4,1,266,251,255,240,2,1,0,2,0,1,518,493,261,250,253,239,0,1,0,2,0,0,4,1,265,251,255,239,2,1,0,2,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,14,739,364,375,191,199,169,174,0,0,0,0,0,0,4,2,195,201,169,174,4,2,0,0,0,0,362,371,190,196,168,173,0,0,0,0,0,0,4,2,194,198,168,173,4,2,0,0,0,0,2,4,1,3,1,1,0,0,0,0,0,0,0,0,1,3,1,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,15,565,248,317,140,156,106,158,1,1,0,2,0,0,1,0,141,156,106,158,1,1,1,2,0,0,246,316,138,155,106,158,1,1,0,2,0,0,1,0,139,155,106,158,1,1,1,2,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,16,450,170,280,99,134,71,145,0,0,0,0,0,0,0,1,99,135,71,146,0,0,0,0,0,0,170,279,99,133,71,145,0,0,0,0,0,0,0,1,99,134,71,146,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,17,353,143,210,77,100,65,108,1,0,0,1,0,0,0,1,77,101,65,109,1,0,0,1,0,0,142,210,76,100,65,108,1,0,0,1,0,0,0,1,76,101,65,109,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,4,18,296,81,215,41,101,39,114,0,0,1,0,0,0,0,0,41,101,39,114,0,0,1,0,0,0,81,214,41,101,39,113,0,0,1,0,0,0,0,0,41,101,39,113,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,0,15366,7284,8082,3082,3131,4132,4863,12,15,13,30,1,3,44,40,3121,3165,4149,4879,35,40,20,36,4,4,7199,8011,3019,3089,4116,4837,10,14,13,30,1,3,40,38,3054,3121,4132,4853,30,37,20,36,4,4,85,71,63,42,16,26,2,1,0,0,0,0,4,2,67,44,17,26,5,3,0,0,0,0 -050,01,065,Alabama,Hale County,5,1,950,489,461,181,166,298,282,0,0,1,2,0,3,9,8,190,174,303,287,3,3,2,2,0,4,481,453,176,161,296,280,0,0,1,2,0,3,8,7,184,168,300,285,3,2,2,2,0,4,8,8,5,5,2,2,0,0,0,0,0,0,1,1,6,6,3,2,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,5,2,928,464,464,150,180,312,278,0,1,0,0,0,0,2,5,152,184,312,279,1,3,1,3,0,0,455,448,146,166,307,276,0,1,0,0,0,0,2,5,148,170,307,277,1,3,1,3,0,0,9,16,4,14,5,2,0,0,0,0,0,0,0,0,4,14,5,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,3,1096,554,542,190,170,360,367,2,0,1,2,0,0,1,3,191,173,361,368,2,1,1,3,0,0,546,537,184,169,359,364,1,0,1,2,0,0,1,2,185,171,360,365,1,0,1,3,0,0,8,5,6,1,1,3,1,0,0,0,0,0,0,1,6,2,1,3,1,1,0,0,0,0 -050,01,065,Alabama,Hale County,5,4,1104,541,563,161,178,372,378,3,4,2,1,0,0,3,2,163,179,372,379,5,6,3,1,1,0,535,558,157,177,372,374,3,4,2,1,0,0,1,2,157,178,372,375,3,6,3,1,1,0,6,5,4,1,0,4,0,0,0,0,0,0,2,0,6,1,0,4,2,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,5,1016,515,501,186,156,326,339,0,2,0,1,0,0,3,3,188,158,328,340,1,5,0,1,1,0,503,496,177,154,323,337,0,1,0,1,0,0,3,3,179,156,325,338,1,4,0,1,1,0,12,5,9,2,3,2,0,1,0,0,0,0,0,0,9,2,3,2,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,5,6,831,401,430,167,158,231,264,1,0,0,4,0,0,2,4,169,162,232,265,1,2,1,5,0,0,391,427,158,156,230,263,1,0,0,4,0,0,2,4,160,160,231,264,1,2,1,5,0,0,10,3,9,2,1,1,0,0,0,0,0,0,0,0,9,2,1,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,7,870,389,481,149,160,238,313,0,0,0,5,0,0,2,3,149,163,240,313,1,2,1,6,0,0,384,473,146,154,236,311,0,0,0,5,0,0,2,3,146,157,238,311,1,2,1,6,0,0,5,8,3,6,2,2,0,0,0,0,0,0,0,0,3,6,2,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,8,811,383,428,171,141,207,284,0,1,2,1,0,0,3,1,174,142,208,284,2,2,2,1,0,0,378,425,168,140,206,282,0,1,2,1,0,0,2,1,170,141,207,282,1,2,2,1,0,0,5,3,3,1,1,2,0,0,0,0,0,0,1,0,4,1,1,2,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,9,839,408,431,172,175,232,251,1,0,3,3,0,0,0,2,172,177,232,252,1,1,3,3,0,0,401,429,165,174,232,250,1,0,3,3,0,0,0,2,165,176,232,251,1,1,3,3,0,0,7,2,7,1,0,1,0,0,0,0,0,0,0,0,7,1,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,10,1104,494,610,227,240,265,365,1,1,0,2,0,0,1,2,228,240,265,367,2,3,0,2,0,0,491,607,225,239,265,363,0,1,0,2,0,0,1,2,226,239,265,365,1,3,0,2,0,0,3,3,2,1,0,2,1,0,0,0,0,0,0,0,2,1,0,2,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,11,1185,562,623,258,232,295,385,1,2,3,2,1,0,4,2,262,234,296,385,3,4,3,2,2,0,558,620,254,229,295,385,1,2,3,2,1,0,4,2,258,231,296,385,3,4,3,2,2,0,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,12,1137,541,596,255,210,281,383,1,1,0,2,0,0,4,0,259,210,282,383,4,1,0,2,0,0,539,594,253,210,281,381,1,1,0,2,0,0,4,0,257,210,282,381,4,1,0,2,0,0,2,2,2,0,0,2,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,13,1008,508,500,259,241,245,256,0,1,0,1,0,0,4,1,263,242,246,256,2,2,2,1,0,0,507,500,258,241,245,256,0,1,0,1,0,0,4,1,262,242,246,256,2,2,2,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,14,788,382,406,202,218,175,185,0,0,0,1,0,0,5,2,206,219,176,187,5,2,0,1,0,0,380,402,201,216,174,183,0,0,0,1,0,0,5,2,205,217,175,185,5,2,0,1,0,0,2,4,1,2,1,2,0,0,0,0,0,0,0,0,1,2,1,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,15,581,259,322,147,160,110,160,1,1,0,1,0,0,1,0,148,160,111,160,1,1,0,1,0,0,258,320,146,158,110,160,1,1,0,1,0,0,1,0,147,158,111,160,1,1,0,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,16,457,165,292,83,148,82,141,0,1,0,1,0,0,0,1,83,149,82,141,0,2,0,1,0,0,164,291,82,147,82,141,0,1,0,1,0,0,0,1,82,148,82,141,0,2,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,17,351,139,212,80,98,58,113,1,0,0,1,0,0,0,0,80,98,58,113,1,0,0,1,0,0,138,212,79,98,58,113,1,0,0,1,0,0,0,0,79,98,58,113,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,5,18,310,90,220,44,100,45,119,0,0,1,0,0,0,0,1,44,101,45,120,0,0,1,0,0,0,90,219,44,100,45,118,0,0,1,0,0,0,0,1,44,101,45,119,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,0,15249,7176,8073,3044,3140,4061,4846,11,15,13,31,2,3,45,38,3084,3171,4082,4864,31,33,22,40,3,4,7083,7994,2972,3091,4046,4819,9,14,13,31,2,3,41,36,3008,3120,4065,4836,27,32,22,39,3,4,93,79,72,49,15,27,2,1,0,0,0,0,4,2,76,51,17,28,4,1,0,1,0,0 -050,01,065,Alabama,Hale County,6,1,958,498,460,188,165,299,286,0,0,1,1,0,3,10,5,197,170,304,288,4,1,2,3,1,3,487,451,180,159,297,284,0,0,1,1,0,3,9,4,188,163,301,286,4,1,2,2,1,3,11,9,8,6,2,2,0,0,0,0,0,0,1,1,9,7,3,2,0,0,0,1,0,0 -050,01,065,Alabama,Hale County,6,2,929,465,464,155,185,307,272,0,0,0,2,0,0,3,5,158,189,309,275,0,2,1,4,0,0,460,447,152,171,305,269,0,0,0,2,0,0,3,5,155,175,307,272,0,2,1,4,0,0,5,17,3,14,2,3,0,0,0,0,0,0,0,0,3,14,2,3,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,3,1041,525,516,185,163,335,346,1,1,1,3,0,0,3,3,188,165,337,349,2,2,1,3,0,0,513,511,176,160,333,345,0,1,1,3,0,0,3,2,179,161,335,347,1,2,1,3,0,0,12,5,9,3,2,1,1,0,0,0,0,0,0,1,9,4,2,2,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,4,1082,526,556,155,191,365,361,2,3,2,0,0,0,2,1,156,192,367,361,3,3,2,1,0,0,517,548,148,188,364,356,2,3,2,0,0,0,1,1,148,189,365,356,3,3,2,1,0,0,9,8,7,3,1,5,0,0,0,0,0,0,1,0,8,3,2,5,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,5,1032,517,515,183,155,331,353,1,3,0,0,0,0,2,4,185,159,332,356,2,4,0,0,0,0,508,508,178,153,328,349,1,2,0,0,0,0,1,4,179,157,329,352,1,3,0,0,0,0,9,7,5,2,3,4,0,1,0,0,0,0,1,0,6,2,3,4,1,1,0,0,0,0 -050,01,065,Alabama,Hale County,6,6,822,382,440,158,157,220,275,1,0,0,6,1,0,2,2,159,159,222,276,2,0,0,7,1,0,370,439,146,157,220,274,1,0,0,6,1,0,2,2,147,159,222,275,2,0,0,7,1,0,12,1,12,0,0,1,0,0,0,0,0,0,0,0,12,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,7,835,373,462,149,161,222,292,0,0,0,5,0,0,2,4,151,163,223,293,1,4,0,6,0,0,365,458,144,158,219,291,0,0,0,5,0,0,2,4,146,160,220,292,1,4,0,6,0,0,8,4,5,3,3,1,0,0,0,0,0,0,0,0,5,3,3,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,8,807,365,442,154,150,207,289,0,0,2,1,0,0,2,2,156,152,208,289,1,2,2,1,0,0,361,434,151,145,207,286,0,0,2,1,0,0,1,2,152,147,208,286,0,2,2,1,0,0,4,8,3,5,0,3,0,0,0,0,0,0,1,0,4,5,0,3,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,9,818,399,419,173,160,222,254,1,1,2,2,0,0,1,2,174,162,223,254,1,2,2,2,0,1,394,417,169,159,221,253,1,1,2,2,0,0,1,2,170,161,222,253,1,2,2,2,0,1,5,2,4,1,1,1,0,0,0,0,0,0,0,0,4,1,1,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,10,1017,454,563,206,235,245,326,1,0,1,1,0,0,1,1,207,236,245,326,2,1,1,1,0,0,447,559,200,233,245,324,0,0,1,1,0,0,1,1,201,234,245,324,1,1,1,1,0,0,7,4,6,2,0,2,1,0,0,0,0,0,0,0,6,2,0,2,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,11,1206,549,657,247,233,295,415,1,3,2,3,1,0,3,3,250,235,295,416,3,5,3,4,1,0,547,655,245,231,295,415,1,3,2,3,1,0,3,3,248,233,295,416,3,5,3,4,1,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,12,1115,530,585,250,218,274,366,1,0,1,0,0,0,4,1,253,218,275,367,3,1,3,0,0,0,528,582,248,217,274,364,1,0,1,0,0,0,4,1,251,217,275,365,3,1,3,0,0,0,2,3,2,1,0,2,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,13,1036,521,515,263,222,255,290,0,1,0,2,0,0,3,0,265,222,257,290,0,1,2,2,0,0,519,513,261,220,255,290,0,1,0,2,0,0,3,0,263,220,257,290,0,1,2,2,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,14,816,388,428,205,235,178,187,0,1,0,2,0,0,5,3,210,238,179,188,3,2,2,3,0,0,386,426,204,234,177,186,0,1,0,2,0,0,5,3,209,237,178,187,3,2,2,3,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,15,611,276,335,151,164,123,169,0,1,0,1,0,0,2,0,153,164,123,169,2,1,0,1,0,0,276,332,151,161,123,169,0,1,0,1,0,0,2,0,153,161,123,169,2,1,0,1,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,16,460,182,278,95,140,86,135,1,1,0,1,0,0,0,1,95,140,86,136,1,2,0,1,0,0,180,277,93,139,86,135,1,1,0,1,0,0,0,1,93,139,86,136,1,2,0,1,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,17,338,129,209,78,100,50,109,1,0,0,0,0,0,0,0,78,100,50,109,1,0,0,0,0,0,129,209,78,100,50,109,1,0,0,0,0,0,0,0,78,100,50,109,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,6,18,326,97,229,49,106,47,121,0,0,1,1,0,0,0,1,49,107,47,122,0,0,1,1,0,0,96,228,48,106,47,120,0,0,1,1,0,0,0,1,48,107,47,121,0,0,1,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,0,15047,7060,7987,3015,3102,3970,4797,11,15,14,30,1,3,49,40,3057,3141,3997,4813,30,35,23,31,2,7,6959,7893,2936,3039,3954,4769,9,14,14,30,1,3,45,38,2974,3076,3980,4784,26,33,22,31,2,7,101,94,79,63,16,28,2,1,0,0,0,0,4,2,83,65,17,29,4,2,1,0,0,0 -050,01,065,Alabama,Hale County,7,1,924,478,446,194,152,270,283,0,0,1,3,0,3,13,5,207,157,275,284,5,3,3,3,1,4,468,436,186,143,269,283,0,0,1,3,0,3,12,4,198,147,274,284,4,2,3,3,1,4,10,10,8,9,1,0,0,0,0,0,0,0,1,1,9,10,1,0,1,1,0,0,0,0 -050,01,065,Alabama,Hale County,7,2,938,465,473,166,192,295,272,0,0,0,3,0,0,4,6,168,198,299,275,1,3,1,3,0,0,458,454,160,176,294,269,0,0,0,3,0,0,4,6,162,182,298,272,1,3,1,3,0,0,7,19,6,16,1,3,0,0,0,0,0,0,0,0,6,16,1,3,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,3,989,496,493,174,169,316,320,1,1,2,1,0,0,3,2,176,171,318,321,2,1,3,1,0,1,480,489,163,168,312,318,0,1,2,1,0,0,3,1,165,169,314,318,1,1,3,1,0,1,16,4,11,1,4,2,1,0,0,0,0,0,0,1,11,2,4,3,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,4,1074,527,547,166,182,357,361,2,2,0,0,0,0,2,2,168,184,357,362,4,3,0,0,0,0,519,539,161,180,355,355,2,2,0,0,0,0,1,2,162,182,355,356,3,3,0,0,0,0,8,8,5,2,2,6,0,0,0,0,0,0,1,0,6,2,2,6,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,5,997,501,496,155,150,340,339,2,4,2,0,0,0,2,3,156,153,341,341,3,4,3,0,0,1,494,486,150,144,339,336,2,3,2,0,0,0,1,3,150,147,340,338,3,3,2,0,0,1,7,10,5,6,1,3,0,1,0,0,0,0,1,0,6,6,1,3,0,1,1,0,0,0 -050,01,065,Alabama,Hale County,7,6,823,400,423,173,155,226,261,0,0,0,5,0,0,1,2,174,156,227,263,0,1,0,5,0,0,383,419,156,153,226,259,0,0,0,5,0,0,1,2,157,154,227,261,0,1,0,5,0,0,17,4,17,2,0,2,0,0,0,0,0,0,0,0,17,2,0,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,7,838,378,460,153,174,222,276,0,0,0,4,0,0,3,6,156,180,223,276,1,4,1,5,0,1,367,454,146,169,218,275,0,0,0,4,0,0,3,6,149,175,219,275,1,4,1,5,0,1,11,6,7,5,4,1,0,0,0,0,0,0,0,0,7,5,4,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,8,799,351,448,148,144,200,300,0,0,1,2,0,0,2,2,150,146,202,302,0,0,1,2,0,0,346,436,145,135,199,297,0,0,1,2,0,0,1,2,146,137,200,299,0,0,1,2,0,0,5,12,3,9,1,3,0,0,0,0,0,0,1,0,4,9,2,3,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,9,807,375,432,152,164,220,264,1,1,1,2,0,0,1,1,153,165,221,264,1,2,1,2,0,0,371,429,149,162,219,263,1,1,1,2,0,0,1,1,150,163,220,263,1,2,1,2,0,0,4,3,3,2,1,1,0,0,0,0,0,0,0,0,3,2,1,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,10,930,412,518,184,207,224,307,1,0,3,1,0,0,0,3,184,210,224,307,1,3,3,1,0,0,406,515,179,205,224,306,0,0,3,1,0,0,0,3,179,208,224,306,0,3,3,1,0,0,6,3,5,2,0,1,1,0,0,0,0,0,0,0,5,2,0,1,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,11,1173,536,637,260,238,271,393,1,2,1,2,1,0,2,2,262,240,273,394,1,3,1,2,1,0,534,634,258,236,271,392,1,2,1,2,1,0,2,2,260,238,273,393,1,3,1,2,1,0,2,3,2,2,0,1,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,12,1121,528,593,245,218,274,373,1,1,2,0,0,0,6,1,249,219,277,374,5,1,3,0,0,0,526,590,243,217,274,371,1,1,2,0,0,0,6,1,247,218,277,372,5,1,3,0,0,0,2,3,2,1,0,2,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,13,1040,501,539,255,216,243,319,0,1,0,2,0,0,3,1,258,217,244,320,0,1,2,2,0,0,499,537,253,215,243,318,0,1,0,2,0,0,3,1,256,216,244,319,0,1,2,2,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,14,846,415,431,217,228,195,198,0,1,0,2,0,0,3,2,220,230,196,198,2,3,0,2,0,0,413,430,216,227,194,198,0,1,0,2,0,0,3,2,219,229,195,198,2,3,0,2,0,0,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,15,641,297,344,158,182,135,160,0,1,0,1,0,0,4,0,161,182,138,160,2,1,0,1,0,0,297,340,158,179,135,159,0,1,0,1,0,0,4,0,161,179,138,159,2,1,0,1,0,0,0,4,0,3,0,1,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,16,446,178,268,92,131,85,134,1,1,0,1,0,0,0,1,92,132,85,134,1,2,0,1,0,0,177,267,91,130,85,134,1,1,0,1,0,0,0,1,91,131,85,134,1,2,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,17,328,123,205,74,99,48,106,1,0,0,0,0,0,0,0,74,99,48,106,1,0,0,0,0,0,123,205,74,99,48,106,1,0,0,0,0,0,0,0,74,99,48,106,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,7,18,333,99,234,49,101,49,131,0,0,1,1,0,0,0,1,49,102,49,132,0,0,1,1,0,0,98,233,48,101,49,130,0,0,1,1,0,0,0,1,48,102,49,131,0,0,1,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,0,15016,7094,7922,3044,3074,3967,4757,15,17,13,24,1,4,54,46,3093,3117,3992,4780,38,36,20,30,5,6,6993,7836,2966,3020,3950,4731,13,14,13,24,1,3,50,44,3011,3061,3974,4753,34,33,19,30,5,4,101,86,78,54,17,26,2,3,0,0,0,1,4,2,82,56,18,27,4,3,1,0,0,2 -050,01,065,Alabama,Hale County,8,1,956,516,440,217,159,281,265,2,2,2,2,0,3,14,9,229,167,290,272,5,4,5,3,1,3,508,428,210,149,281,265,2,0,2,2,0,3,13,9,221,157,290,272,4,2,5,3,1,3,8,12,7,10,0,0,0,2,0,0,0,0,1,0,8,10,0,0,1,2,0,0,0,0 -050,01,065,Alabama,Hale County,8,2,936,479,457,176,174,296,274,0,0,0,3,0,0,7,6,182,179,301,279,1,2,0,3,2,1,465,449,164,168,294,273,0,0,0,3,0,0,7,5,170,172,299,278,1,2,0,3,2,0,14,8,12,6,2,1,0,0,0,0,0,0,0,1,12,7,2,1,0,0,0,0,0,1 -050,01,065,Alabama,Hale County,8,3,962,479,483,168,177,307,303,0,1,0,0,0,0,4,2,171,179,310,303,1,2,1,1,0,0,465,472,159,170,302,299,0,1,0,0,0,0,4,2,162,172,305,299,1,2,1,1,0,0,14,11,9,7,5,4,0,0,0,0,0,0,0,0,9,7,5,4,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,4,1050,524,526,177,172,341,348,4,1,2,1,0,1,0,3,177,175,341,350,4,2,2,1,0,1,517,517,173,169,339,344,3,1,2,1,0,0,0,2,173,171,339,345,3,2,2,1,0,0,7,9,4,3,2,4,1,0,0,0,0,1,0,1,4,4,2,5,1,0,0,0,0,1 -050,01,065,Alabama,Hale County,8,5,1004,486,518,143,166,337,344,2,5,2,0,0,0,2,3,145,169,338,345,3,6,2,1,0,0,480,508,140,161,336,340,2,4,2,0,0,0,0,3,140,164,336,341,2,5,2,1,0,0,6,10,3,5,1,4,0,1,0,0,0,0,2,0,5,5,2,4,1,1,0,0,0,0 -050,01,065,Alabama,Hale County,8,6,866,427,439,184,158,242,274,0,0,0,3,0,0,1,4,185,162,242,277,1,1,0,3,0,0,416,437,173,156,242,274,0,0,0,3,0,0,1,4,174,160,242,277,1,1,0,3,0,0,11,2,11,2,0,0,0,0,0,0,0,0,0,0,11,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,7,810,370,440,158,161,206,271,1,0,0,3,0,0,5,5,163,166,208,273,4,3,0,3,0,0,355,439,147,161,202,270,1,0,0,3,0,0,5,5,152,166,204,272,4,3,0,3,0,0,15,1,11,0,4,1,0,0,0,0,0,0,0,0,11,0,4,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,8,812,365,447,146,145,217,297,0,0,1,2,0,0,1,3,147,148,218,299,0,1,1,2,0,0,362,433,144,135,216,293,0,0,1,2,0,0,1,3,145,138,217,295,0,1,1,2,0,0,3,14,2,10,1,4,0,0,0,0,0,0,0,0,2,10,1,4,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,9,816,377,439,161,144,213,291,0,1,1,2,0,0,2,1,163,145,214,291,0,2,2,2,0,0,369,438,155,144,212,290,0,1,1,2,0,0,1,1,156,145,213,290,0,2,1,2,0,0,8,1,6,0,1,1,0,0,0,0,0,0,1,0,7,0,1,1,0,0,1,0,0,0 -050,01,065,Alabama,Hale County,8,10,815,356,459,160,194,194,263,1,0,1,0,0,0,0,2,160,195,194,264,1,0,1,1,0,1,352,456,156,192,194,262,1,0,1,0,0,0,0,2,156,193,194,263,1,0,1,1,0,1,4,3,4,2,0,1,0,0,0,0,0,0,0,0,4,2,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,11,1162,531,631,245,246,280,377,2,2,1,3,1,0,2,3,246,249,281,377,4,5,1,3,1,0,528,629,243,245,280,376,1,2,1,3,1,0,2,3,244,248,281,376,3,5,1,3,1,0,3,2,2,1,0,1,1,0,0,0,0,0,0,0,2,1,0,1,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,12,1131,532,599,254,223,270,374,1,1,2,0,0,0,5,1,259,224,270,374,5,1,3,1,0,0,530,595,252,221,270,372,1,1,2,0,0,0,5,1,257,222,270,372,5,1,3,1,0,0,2,4,2,2,0,2,0,0,0,0,0,0,0,0,2,2,0,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,13,1049,486,563,238,223,245,339,0,1,0,0,0,0,3,0,241,223,246,339,2,1,0,0,0,0,485,561,237,222,245,338,0,1,0,0,0,0,3,0,240,222,246,338,2,1,0,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,14,883,442,441,242,227,197,209,0,1,0,2,0,0,3,2,245,229,197,209,1,3,1,2,1,0,440,441,240,227,197,209,0,1,0,2,0,0,3,2,243,229,197,209,1,3,1,2,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,15,659,320,339,163,181,152,156,0,1,0,0,0,0,5,1,168,182,153,156,4,1,0,1,0,0,319,334,163,177,151,155,0,1,0,0,0,0,5,1,168,178,152,155,4,1,0,1,0,0,1,5,0,4,1,1,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,16,449,182,267,93,126,88,137,1,1,0,2,0,0,0,1,93,127,88,137,1,2,0,2,0,0,181,266,92,125,88,137,1,1,0,2,0,0,0,1,92,126,88,137,1,2,0,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,17,324,122,202,72,93,50,109,0,0,0,0,0,0,0,0,72,93,50,109,0,0,0,0,0,0,122,202,72,93,50,109,0,0,0,0,0,0,0,0,72,93,50,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,8,18,332,100,232,47,105,51,126,1,0,1,1,0,0,0,0,47,105,51,126,1,0,1,1,0,0,99,231,46,105,51,125,1,0,1,1,0,0,0,0,46,105,51,125,1,0,1,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,0,14845,7006,7839,3003,3022,3915,4721,14,18,19,24,1,4,54,50,3048,3068,3938,4745,40,39,32,31,3,6,6896,7746,2926,2966,3888,4692,12,15,19,24,1,3,50,46,2967,3008,3910,4714,35,34,32,31,3,5,110,93,77,56,27,29,2,3,0,0,0,1,4,4,81,60,28,31,5,5,0,0,0,1 -050,01,065,Alabama,Hale County,9,1,1000,515,485,201,174,294,292,2,2,5,4,0,3,13,10,212,183,302,299,6,5,9,5,0,3,503,470,196,161,288,292,2,0,5,4,0,3,12,10,206,170,295,299,6,3,9,5,0,3,12,15,5,13,6,0,0,2,0,0,0,0,1,0,6,13,7,0,0,2,0,0,0,0 -050,01,065,Alabama,Hale County,9,2,916,478,438,180,175,294,255,0,0,0,2,0,0,4,6,182,181,298,257,0,3,1,2,1,1,464,430,168,169,292,254,0,0,0,2,0,0,4,5,170,174,296,256,0,2,1,2,1,1,14,8,12,6,2,1,0,0,0,0,0,0,0,1,12,7,2,1,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,9,3,924,464,460,173,162,288,293,0,1,0,0,0,0,3,4,175,166,291,295,1,2,0,1,0,0,447,448,162,156,282,288,0,1,0,0,0,0,3,3,164,159,285,290,1,1,0,1,0,0,17,12,11,6,6,5,0,0,0,0,0,0,0,1,11,7,6,5,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,9,4,1010,509,501,174,162,329,335,2,0,2,1,0,1,2,2,176,164,330,337,3,0,2,1,0,1,502,493,169,159,328,332,1,0,2,1,0,0,2,1,171,160,329,333,2,0,2,1,0,0,7,8,5,3,1,3,1,0,0,0,0,1,0,1,5,4,1,4,1,0,0,0,0,1 -050,01,065,Alabama,Hale County,9,5,962,468,494,138,138,322,345,3,7,2,0,0,0,3,4,141,142,322,347,5,8,3,1,0,0,463,486,135,136,322,340,3,6,2,0,0,0,1,4,136,140,322,342,3,7,3,1,0,0,5,8,3,2,0,5,0,1,0,0,0,0,2,0,5,2,0,5,2,1,0,0,0,0 -050,01,065,Alabama,Hale County,9,6,880,420,460,163,157,255,301,0,0,0,0,0,0,2,2,165,158,256,302,0,2,1,0,0,0,410,455,154,154,254,299,0,0,0,0,0,0,2,2,156,155,255,300,0,2,1,0,0,0,10,5,9,3,1,2,0,0,0,0,0,0,0,0,9,3,1,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,7,803,379,424,169,158,202,254,1,0,1,5,0,0,6,7,175,163,203,257,4,2,3,8,0,1,366,423,160,158,198,253,1,0,1,5,0,0,6,7,166,163,199,256,4,2,3,8,0,1,13,1,9,0,4,1,0,0,0,0,0,0,0,0,9,0,4,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,8,855,376,479,150,166,225,308,0,0,1,2,0,0,0,3,150,169,225,309,0,2,1,2,0,0,370,464,147,155,222,305,0,0,1,2,0,0,0,2,147,157,222,305,0,2,1,2,0,0,6,15,3,11,3,3,0,0,0,0,0,0,0,1,3,12,3,4,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,9,788,357,431,158,144,194,283,0,1,2,2,0,0,3,1,161,145,195,284,1,1,3,2,0,0,348,429,153,144,191,281,0,1,2,2,0,0,2,1,155,145,192,282,0,1,3,2,0,0,9,2,5,0,3,2,0,0,0,0,0,0,1,0,6,0,3,2,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,10,755,354,401,148,180,204,218,1,0,1,0,0,0,0,3,148,183,204,219,1,2,1,0,0,0,349,398,143,178,204,217,1,0,1,0,0,0,0,3,143,181,204,218,1,2,1,0,0,0,5,3,5,2,0,1,0,0,0,0,0,0,0,0,5,2,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,11,1088,488,600,228,232,254,362,2,1,1,3,1,0,2,2,230,234,254,362,4,3,1,3,1,0,485,597,226,230,254,361,1,1,1,3,1,0,2,2,228,232,254,361,3,3,1,3,1,0,3,3,2,2,0,1,1,0,0,0,0,0,0,0,2,2,0,1,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,12,1089,516,573,244,218,264,351,1,2,3,0,0,0,4,2,248,220,264,353,4,2,4,0,0,0,515,570,243,216,264,350,1,2,3,0,0,0,4,2,247,218,264,352,4,2,4,0,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,13,1050,486,564,242,209,241,354,0,1,0,0,0,0,3,0,243,209,243,354,1,1,1,0,1,0,483,561,239,208,241,352,0,1,0,0,0,0,3,0,240,208,243,352,1,1,1,0,1,0,3,3,3,1,0,2,0,0,0,0,0,0,0,0,3,1,0,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,14,919,460,459,243,234,213,221,0,1,0,2,0,0,4,1,245,235,215,221,4,2,0,2,0,0,459,459,242,234,213,221,0,1,0,2,0,0,4,1,244,235,215,221,4,2,0,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,15,659,312,347,167,186,141,158,0,1,0,0,0,0,4,2,171,188,141,158,3,2,1,1,0,0,310,342,166,182,140,157,0,1,0,0,0,0,4,2,170,184,140,157,3,2,1,1,0,0,2,5,1,4,1,1,0,0,0,0,0,0,0,0,1,4,1,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,16,463,199,264,104,131,93,130,1,1,0,2,0,0,1,0,105,131,93,130,2,1,0,2,0,0,198,264,103,131,93,130,1,1,0,2,0,0,1,0,104,131,93,130,2,1,0,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,17,346,120,226,62,94,58,131,0,0,0,0,0,0,0,1,62,95,58,131,0,1,0,0,0,0,120,225,62,93,58,131,0,0,0,0,0,0,0,1,62,94,58,131,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,9,18,338,105,233,59,102,44,130,1,0,1,1,0,0,0,0,59,102,44,130,1,0,1,1,0,0,104,232,58,102,44,129,1,0,1,1,0,0,0,0,58,102,44,129,1,0,1,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,0,14812,7026,7786,3027,2997,3921,4690,17,18,21,24,1,4,39,53,3061,3044,3937,4715,35,43,31,33,1,6,6897,7700,2932,2951,3893,4659,15,15,21,24,1,3,35,48,2962,2993,3907,4682,33,37,29,33,1,5,129,86,95,46,28,31,2,3,0,0,0,1,4,5,99,51,30,33,2,6,2,0,0,1 -050,01,065,Alabama,Hale County,10,1,999,538,461,218,159,309,286,2,2,4,3,0,0,5,11,222,170,311,290,3,5,7,7,0,0,521,456,207,157,303,286,2,0,4,3,0,0,5,10,211,167,305,289,3,3,7,7,0,0,17,5,11,2,6,0,0,2,0,0,0,0,0,1,11,3,6,1,0,2,0,0,0,0 -050,01,065,Alabama,Hale County,10,2,899,467,432,186,157,278,262,0,0,1,3,0,3,2,7,188,163,279,267,1,4,1,3,0,3,451,419,173,148,276,259,0,0,1,3,0,3,1,6,174,153,276,264,1,3,1,3,0,3,16,13,13,9,2,3,0,0,0,0,0,0,1,1,14,10,3,3,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,10,3,938,469,469,159,178,307,285,0,1,0,0,0,0,3,5,161,182,309,287,1,3,1,1,0,1,454,454,151,171,300,278,0,1,0,0,0,0,3,4,153,174,302,280,1,2,1,1,0,1,15,15,8,7,7,7,0,0,0,0,0,0,0,1,8,8,7,7,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,10,4,956,483,473,172,149,304,321,3,0,2,1,0,1,2,1,174,150,304,322,5,0,2,1,0,1,472,467,163,148,303,318,2,0,2,1,0,0,2,0,165,148,303,318,4,0,2,1,0,0,11,6,9,1,1,3,1,0,0,0,0,1,0,1,9,2,1,4,1,0,0,0,0,1 -050,01,065,Alabama,Hale County,10,5,948,457,491,144,152,305,328,3,5,2,0,0,0,3,6,147,157,307,331,3,7,3,2,0,0,448,487,137,151,305,325,3,5,2,0,0,0,1,6,138,156,306,328,3,7,2,2,0,0,9,4,7,1,0,3,0,0,0,0,0,0,2,0,9,1,1,3,0,0,1,0,0,0 -050,01,065,Alabama,Hale County,10,6,903,448,455,168,151,279,299,0,2,0,0,0,0,1,3,169,154,279,301,0,3,1,0,0,0,438,448,159,147,278,297,0,1,0,0,0,0,1,3,160,150,278,299,0,2,1,0,0,0,10,7,9,4,1,2,0,1,0,0,0,0,0,0,9,4,1,2,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,10,7,810,385,425,179,160,203,256,1,0,0,5,0,0,2,4,181,162,204,259,2,2,0,6,0,0,369,424,166,160,200,255,1,0,0,5,0,0,2,4,168,162,201,258,2,2,0,6,0,0,16,1,13,0,3,1,0,0,0,0,0,0,0,0,13,0,3,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,8,824,356,468,143,164,211,300,0,0,2,0,0,0,0,4,143,168,211,301,0,3,2,0,0,0,348,456,139,155,207,298,0,0,2,0,0,0,0,3,139,158,207,299,0,2,2,0,0,0,8,12,4,9,4,2,0,0,0,0,0,0,0,1,4,10,4,2,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,10,9,795,362,433,164,141,192,288,0,1,2,2,0,0,4,1,167,142,193,289,2,2,4,2,0,0,355,429,161,139,189,286,0,1,2,2,0,0,3,1,163,140,190,287,2,2,3,2,0,0,7,4,3,2,3,2,0,0,0,0,0,0,1,0,4,2,3,2,0,0,1,0,0,0 -050,01,065,Alabama,Hale County,10,10,798,372,426,151,183,218,238,1,0,2,2,0,0,0,3,151,186,218,239,1,2,2,2,0,0,366,423,145,181,218,237,1,0,2,2,0,0,0,3,145,184,218,238,1,2,2,2,0,0,6,3,6,2,0,1,0,0,0,0,0,0,0,0,6,2,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,11,1000,439,561,208,223,229,334,1,1,0,1,0,0,1,2,209,225,229,335,1,1,1,2,0,0,436,559,206,223,229,332,0,1,0,1,0,0,1,2,207,225,229,333,0,1,1,2,0,0,3,2,2,0,0,2,1,0,0,0,0,0,0,0,2,0,0,2,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,12,1103,521,582,246,220,265,356,1,2,4,2,1,0,4,2,250,222,267,356,2,3,5,2,1,1,519,579,244,217,265,356,1,2,4,2,1,0,4,2,248,219,267,356,2,3,5,2,1,1,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,13,1035,492,543,235,195,251,347,1,1,1,0,0,0,4,0,237,195,253,347,5,1,1,0,0,0,489,539,232,194,251,344,1,1,1,0,0,0,4,0,234,194,253,344,5,1,1,0,0,0,3,4,3,1,0,3,0,0,0,0,0,0,0,0,3,1,0,3,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,14,931,460,471,241,224,217,244,0,1,0,1,0,0,2,1,243,225,218,244,1,2,0,1,0,0,458,471,239,224,217,244,0,1,0,1,0,0,2,1,241,225,218,244,1,2,0,1,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,15,709,341,368,183,201,153,164,0,0,0,1,0,0,5,2,188,202,154,165,4,2,0,1,0,0,339,365,182,199,152,163,0,0,0,1,0,0,5,2,187,200,153,164,4,2,0,1,0,0,2,3,1,2,1,1,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,16,459,199,260,103,133,94,125,1,1,0,1,0,0,1,0,104,133,95,125,1,1,0,1,0,0,199,258,103,131,94,125,1,1,0,1,0,0,1,0,104,131,95,125,1,1,0,1,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,17,355,124,231,58,105,66,123,0,1,0,1,0,0,0,1,58,106,66,123,0,2,0,1,0,0,123,230,57,104,66,123,0,1,0,1,0,0,0,1,57,105,66,123,0,2,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,10,18,350,113,237,69,102,40,134,3,0,1,1,0,0,0,0,69,102,40,134,3,0,1,1,0,0,112,236,68,102,40,133,3,0,1,1,0,0,0,0,68,102,40,133,3,0,1,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,0,14773,7012,7761,2991,3004,3939,4654,17,22,20,23,1,4,44,54,3031,3050,3958,4684,35,45,30,30,2,7,6897,7676,2904,2955,3918,4626,15,19,20,23,1,3,39,50,2940,2997,3934,4652,32,42,28,30,2,6,115,85,87,49,21,28,2,3,0,0,0,1,5,4,91,53,24,32,3,3,2,0,0,1 -050,01,065,Alabama,Hale County,11,1,1003,554,449,205,154,337,283,2,0,4,0,0,0,6,12,210,165,340,288,4,5,5,2,1,1,542,444,193,150,337,283,2,0,4,0,0,0,6,11,198,160,340,287,4,5,5,2,1,1,12,5,12,4,0,0,0,0,0,0,0,0,0,1,12,5,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,2,910,465,445,181,175,280,254,0,2,1,3,0,3,3,8,184,182,282,258,1,4,1,5,0,4,458,429,177,165,278,251,0,0,1,3,0,3,2,7,179,171,279,254,1,2,1,5,0,4,7,16,4,10,2,3,0,2,0,0,0,0,1,1,5,11,3,4,0,2,0,0,0,0 -050,01,065,Alabama,Hale County,11,3,957,497,460,169,185,323,267,1,0,0,2,0,0,4,6,173,189,326,273,2,3,0,2,0,0,482,451,158,180,319,264,1,0,0,2,0,0,4,5,162,183,322,269,2,3,0,2,0,0,15,9,11,5,4,3,0,0,0,0,0,0,0,1,11,6,4,4,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,4,910,462,448,170,142,286,301,2,1,2,1,0,1,2,2,172,144,287,303,2,1,3,1,0,1,449,439,160,138,284,298,1,1,2,1,0,0,2,1,162,139,285,299,1,1,3,1,0,0,13,9,10,4,2,3,1,0,0,0,0,1,0,1,10,5,2,4,1,0,0,0,0,1 -050,01,065,Alabama,Hale County,11,5,932,430,502,133,162,291,333,2,3,2,0,0,0,2,4,135,164,293,336,2,5,2,1,0,0,422,498,127,161,290,330,2,3,2,0,0,0,1,4,128,163,291,333,2,5,2,1,0,0,8,4,6,1,1,3,0,0,0,0,0,0,1,0,7,1,2,3,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,6,950,475,475,182,159,290,307,1,5,0,0,0,0,2,4,184,163,291,310,2,6,0,0,0,0,468,468,177,156,289,304,1,4,0,0,0,0,1,4,178,160,290,307,1,5,0,0,0,0,7,7,5,3,1,3,0,1,0,0,0,0,1,0,6,3,1,3,1,1,0,0,0,0 -050,01,065,Alabama,Hale County,11,7,789,379,410,168,151,208,254,1,0,0,4,0,0,2,1,170,152,209,255,2,0,0,4,0,0,366,408,157,150,206,253,1,0,0,4,0,0,2,1,159,151,207,254,2,0,0,4,0,0,13,2,11,1,2,1,0,0,0,0,0,0,0,0,11,1,2,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,8,837,367,470,158,173,209,293,0,0,0,0,0,0,0,4,158,175,209,295,0,2,0,1,0,1,356,462,152,166,204,292,0,0,0,0,0,0,0,4,152,168,204,294,0,2,0,1,0,1,11,8,6,7,5,1,0,0,0,0,0,0,0,0,6,7,5,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,9,787,347,440,145,146,196,290,0,1,2,1,0,0,4,2,148,148,198,290,0,3,5,1,0,0,341,433,142,142,194,287,0,1,2,1,0,0,3,2,144,144,196,287,0,3,4,1,0,0,6,7,3,4,2,3,0,0,0,0,0,0,1,0,4,4,2,3,0,0,1,0,0,0 -050,01,065,Alabama,Hale County,11,10,799,387,412,167,165,217,239,1,3,1,3,0,0,1,2,167,167,218,239,2,5,1,3,0,0,381,409,162,163,216,238,1,3,1,3,0,0,1,2,162,165,217,238,2,5,1,3,0,0,6,3,5,2,1,1,0,0,0,0,0,0,0,0,5,2,1,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,11,924,403,521,189,211,210,306,1,0,2,2,0,0,1,2,190,213,210,307,1,1,3,2,0,0,397,519,184,211,210,304,0,0,2,2,0,0,1,2,185,213,210,305,0,1,3,2,0,0,6,2,5,0,0,2,1,0,0,0,0,0,0,0,5,0,0,2,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,12,1107,518,589,239,212,270,369,1,3,3,2,1,0,4,3,242,215,272,371,3,4,4,2,1,0,515,588,237,211,270,369,1,3,3,2,1,0,3,3,240,214,271,371,3,4,3,2,1,0,3,1,2,1,0,0,0,0,0,0,0,0,1,0,2,1,1,0,0,0,1,0,0,0 -050,01,065,Alabama,Hale County,11,13,1016,480,536,234,201,239,335,1,0,2,0,0,0,4,0,238,201,239,335,4,0,3,0,0,0,478,533,232,200,239,333,1,0,2,0,0,0,4,0,236,200,239,333,4,0,3,0,0,0,2,3,2,1,0,2,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,14,944,470,474,241,202,227,271,0,1,0,0,0,0,2,0,243,202,227,271,1,1,1,0,0,0,468,472,239,201,227,270,0,1,0,0,0,0,2,0,241,201,227,270,1,1,1,0,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,15,716,344,372,184,210,155,156,0,1,0,2,0,0,5,3,189,213,156,157,3,3,1,2,0,0,342,370,183,209,154,155,0,1,0,2,0,0,5,3,188,212,155,156,3,3,1,2,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,16,477,199,278,100,137,97,139,0,1,0,1,0,0,2,0,102,137,97,139,2,1,0,1,0,0,199,275,100,134,97,139,0,1,0,1,0,0,2,0,102,134,97,139,2,1,0,1,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,17,366,132,234,63,113,68,118,1,1,0,1,0,0,0,1,63,114,68,118,1,1,0,2,0,0,131,233,62,112,68,118,1,1,0,1,0,0,0,1,62,113,68,118,1,1,0,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,11,18,349,103,246,63,106,36,139,3,0,1,1,0,0,0,0,63,106,36,139,3,0,1,1,0,0,102,245,62,106,36,138,3,0,1,1,0,0,0,0,62,106,36,138,3,0,1,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,0,14669,6952,7717,2952,2991,3917,4617,14,23,21,25,1,4,47,57,2996,3038,3937,4649,38,42,26,36,3,10,6840,7620,2869,2931,3895,4589,12,19,21,25,1,3,42,53,2908,2975,3912,4618,34,36,26,36,2,9,112,97,83,60,22,28,2,4,0,0,0,1,5,4,88,63,25,31,4,6,0,0,1,1 -050,01,065,Alabama,Hale County,12,1,979,519,460,184,146,329,298,0,2,4,1,0,0,2,13,186,157,329,307,1,4,5,4,0,2,510,447,176,135,328,297,0,2,4,1,0,0,2,12,178,145,328,305,1,4,5,4,0,2,9,13,8,11,1,1,0,0,0,0,0,0,0,1,8,12,1,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,2,909,462,447,187,166,267,263,2,3,1,4,0,3,5,8,192,173,268,267,5,4,2,7,0,4,453,431,180,156,266,261,2,0,1,4,0,3,4,7,184,162,266,264,5,1,2,7,0,4,9,16,7,10,1,2,0,3,0,0,0,0,1,1,8,11,2,3,0,3,0,0,0,0 -050,01,065,Alabama,Hale County,12,3,947,495,452,170,178,319,264,1,0,0,2,0,0,5,8,175,186,322,266,3,4,0,3,0,1,482,443,159,173,317,261,1,0,0,2,0,0,5,7,164,180,320,263,3,3,0,3,0,1,13,9,11,5,2,3,0,0,0,0,0,0,0,1,11,6,2,3,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,12,4,873,442,431,152,147,285,280,1,1,2,0,0,0,2,3,154,149,286,282,2,3,2,0,0,0,426,422,142,142,280,277,0,1,2,0,0,0,2,2,144,144,281,278,1,2,2,0,0,0,16,9,10,5,5,3,1,0,0,0,0,0,0,1,10,5,5,4,1,1,0,0,0,0 -050,01,065,Alabama,Hale County,12,5,875,405,470,130,162,269,303,1,2,1,0,0,1,4,2,134,163,270,304,5,4,1,0,0,1,397,464,124,160,268,300,1,2,1,0,0,0,3,2,127,161,268,301,4,4,1,0,0,0,8,6,6,2,1,3,0,0,0,0,0,1,1,0,7,2,2,3,1,0,0,0,0,1 -050,01,065,Alabama,Hale County,12,6,955,474,481,166,167,300,305,3,4,2,1,0,0,3,4,169,169,303,309,3,5,2,2,0,0,466,475,160,164,299,303,3,3,2,1,0,0,2,4,162,166,301,307,3,4,2,2,0,0,8,6,6,3,1,2,0,1,0,0,0,0,1,0,7,3,2,2,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,12,7,810,395,415,175,146,218,264,1,0,0,4,0,0,1,1,176,147,219,264,1,0,0,5,0,0,386,412,168,145,216,262,1,0,0,4,0,0,1,1,169,146,217,262,1,0,0,5,0,0,9,3,7,1,2,2,0,0,0,0,0,0,0,0,7,1,2,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,8,845,378,467,172,177,205,285,0,0,0,0,0,0,1,5,173,181,205,286,1,2,0,2,0,1,368,465,166,176,201,284,0,0,0,0,0,0,1,5,167,180,201,285,1,2,0,2,0,1,10,2,6,1,4,1,0,0,0,0,0,0,0,0,6,1,4,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,9,778,346,432,141,147,202,282,0,0,1,1,0,0,2,2,143,148,203,283,1,2,1,1,0,0,339,419,138,137,199,279,0,0,1,1,0,0,1,2,139,138,200,280,0,2,1,1,0,0,7,13,3,10,3,3,0,0,0,0,0,0,1,0,4,10,3,3,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,10,779,370,409,153,160,212,241,1,4,2,3,0,0,2,1,155,161,213,241,2,5,2,3,0,0,364,405,148,157,211,240,1,4,2,3,0,0,2,1,150,158,212,240,2,5,2,3,0,0,6,4,5,3,1,1,0,0,0,0,0,0,0,0,5,3,1,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,11,883,384,499,175,202,206,292,1,0,2,2,0,0,0,3,175,205,206,295,1,0,2,2,0,0,379,498,171,202,206,291,0,0,2,2,0,0,0,3,171,205,206,294,0,0,2,2,0,0,5,1,4,0,0,1,1,0,0,0,0,0,0,0,4,0,0,1,1,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,12,1089,514,575,245,210,262,359,1,2,2,2,1,0,3,2,247,212,263,361,3,2,2,2,2,0,511,572,243,208,262,358,1,2,2,2,1,0,2,2,244,210,263,360,3,2,2,2,1,0,3,3,2,2,0,1,0,0,0,0,0,0,1,0,3,2,0,1,0,0,0,0,1,0 -050,01,065,Alabama,Hale County,12,13,1040,493,547,237,213,244,332,1,1,3,0,0,0,8,1,245,214,248,333,4,1,4,0,0,0,491,544,235,212,244,330,1,1,3,0,0,0,8,1,243,213,248,331,4,1,4,0,0,0,2,3,2,1,0,2,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,14,937,450,487,233,204,215,282,0,1,0,0,0,0,2,0,235,204,215,282,1,1,1,0,0,0,448,485,231,203,215,281,0,1,0,0,0,0,2,0,233,203,215,281,1,1,1,0,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,15,747,369,378,195,199,171,173,0,1,0,2,0,0,3,3,198,201,172,175,2,2,0,2,0,1,366,377,193,198,170,173,0,1,0,2,0,0,3,3,196,200,171,175,2,2,0,2,0,1,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,16,525,234,291,116,154,114,135,0,1,0,1,0,0,4,0,118,154,116,135,2,1,1,1,1,0,234,287,116,151,114,134,0,1,0,1,0,0,4,0,118,151,116,134,2,1,1,1,1,0,0,4,0,3,0,1,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,17,339,124,215,62,104,61,108,1,1,0,1,0,0,0,1,62,105,61,108,1,2,0,1,0,0,123,214,61,103,61,108,1,1,0,1,0,0,0,1,61,104,61,108,1,2,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,12,18,359,98,261,59,109,38,151,0,0,1,1,0,0,0,0,59,109,38,151,0,0,1,1,0,0,97,260,58,109,38,150,0,0,1,1,0,0,0,0,58,109,38,150,0,0,1,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,0,14670,6917,7753,2950,2998,3880,4624,14,31,21,26,1,4,51,70,2997,3053,3899,4659,40,61,33,43,2,7,6803,7644,2866,2937,3857,4595,12,19,21,26,1,3,46,64,2909,2989,3873,4627,37,44,31,42,2,6,114,109,84,61,23,29,2,12,0,0,0,1,5,6,88,64,26,32,3,17,2,1,0,1 -050,01,065,Alabama,Hale County,13,1,952,511,441,179,145,329,281,0,4,0,0,0,0,3,11,182,154,332,289,2,7,0,2,0,0,502,427,172,137,327,279,0,1,0,0,0,0,3,10,175,145,330,287,2,3,0,2,0,0,9,14,7,8,2,2,0,3,0,0,0,0,0,1,7,9,2,2,0,4,0,0,0,0 -050,01,065,Alabama,Hale County,13,2,968,496,472,204,180,278,263,2,7,5,5,0,3,7,14,211,190,281,270,5,14,7,9,0,3,487,453,196,171,278,261,2,1,5,5,0,3,6,12,202,181,281,266,5,7,6,8,0,3,9,19,8,9,0,2,0,6,0,0,0,0,1,2,9,9,0,4,0,7,1,1,0,0 -050,01,065,Alabama,Hale County,13,3,940,480,460,170,173,304,269,1,1,0,2,0,0,5,15,175,187,306,274,2,6,1,6,1,2,468,450,161,167,301,268,1,0,0,2,0,0,5,13,166,180,303,272,2,3,1,6,1,2,12,10,9,6,3,1,0,1,0,0,0,0,0,2,9,7,3,2,0,3,0,0,0,0 -050,01,065,Alabama,Hale County,13,4,841,428,413,145,150,280,259,0,2,0,0,0,0,3,2,148,152,280,260,1,3,2,0,0,0,413,401,135,143,275,255,0,1,0,0,0,0,3,2,138,145,275,256,1,2,2,0,0,0,15,12,10,7,5,4,0,1,0,0,0,0,0,0,10,7,5,4,0,1,0,0,0,0 -050,01,065,Alabama,Hale County,13,5,879,413,466,142,157,265,303,2,1,3,0,0,1,1,4,143,161,265,306,3,2,3,0,0,1,406,457,137,154,264,299,1,1,3,0,0,0,1,3,138,157,264,302,2,1,3,0,0,0,7,9,5,3,1,4,1,0,0,0,0,1,0,1,5,4,1,4,1,1,0,0,0,1 -050,01,065,Alabama,Hale County,13,6,983,483,500,170,177,305,312,3,5,2,2,0,0,3,4,172,180,308,315,4,5,2,4,0,0,471,496,161,176,304,310,3,4,2,2,0,0,1,4,162,179,305,313,3,4,2,4,0,0,12,4,9,1,1,2,0,1,0,0,0,0,2,0,10,1,3,2,1,1,0,0,0,0 -050,01,065,Alabama,Hale County,13,7,798,370,428,168,146,200,278,0,0,0,2,0,0,2,2,170,148,201,279,1,0,0,3,0,0,362,423,162,142,198,277,0,0,0,2,0,0,2,2,164,144,199,278,1,0,0,3,0,0,8,5,6,4,2,1,0,0,0,0,0,0,0,0,6,4,2,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,8,821,376,445,173,165,199,274,1,0,0,2,0,0,3,4,176,167,199,277,3,2,1,3,0,0,366,444,167,165,195,273,1,0,0,2,0,0,3,4,170,167,195,276,3,2,1,3,0,0,10,1,6,0,4,1,0,0,0,0,0,0,0,0,6,0,4,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,9,804,353,451,146,157,205,290,0,0,1,1,0,0,1,3,147,158,205,292,1,1,1,2,0,1,349,436,143,146,204,286,0,0,1,1,0,0,1,3,144,147,204,288,1,1,1,2,0,1,4,15,3,11,1,4,0,0,0,0,0,0,0,0,3,11,1,4,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,10,779,360,419,150,145,206,268,0,2,1,3,0,0,3,1,153,146,208,268,0,3,2,3,0,0,348,417,142,144,203,267,0,2,1,3,0,0,2,1,144,145,204,267,0,3,2,3,0,0,12,2,8,1,3,1,0,0,0,0,0,0,1,0,9,1,4,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,11,795,348,447,161,195,183,248,1,2,3,0,0,0,0,2,161,197,183,248,1,4,3,0,0,0,344,444,157,193,183,247,1,2,3,0,0,0,0,2,157,195,183,247,1,4,3,0,0,0,4,3,4,2,0,1,0,0,0,0,0,0,0,0,4,2,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,12,1081,504,577,228,218,268,350,2,2,2,4,1,0,3,3,231,221,268,350,2,5,5,4,1,0,500,575,226,217,268,349,1,2,2,4,1,0,2,3,228,220,268,349,1,5,4,4,1,0,4,2,2,1,0,1,1,0,0,0,0,0,1,0,3,1,0,1,1,0,1,0,0,0 -050,01,065,Alabama,Hale County,13,13,1069,509,560,244,219,254,339,1,1,3,0,0,0,7,1,251,219,256,340,5,2,4,0,0,0,507,556,242,217,254,337,1,1,3,0,0,0,7,1,249,217,256,338,5,2,4,0,0,0,2,4,2,2,0,2,0,0,0,0,0,0,0,0,2,2,0,2,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,14,950,432,518,221,202,208,315,0,1,0,0,0,0,3,0,223,202,209,315,3,1,0,0,0,0,431,516,220,201,208,314,0,1,0,0,0,0,3,0,222,201,209,314,3,1,0,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,15,759,378,381,212,192,164,184,0,1,0,2,0,0,2,2,213,193,165,185,1,2,1,3,0,0,376,381,210,192,164,184,0,1,0,2,0,0,2,2,211,193,165,185,1,2,1,3,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,16,544,255,289,126,162,124,125,0,1,0,0,0,0,5,1,130,163,125,125,5,2,0,0,0,0,254,284,126,158,123,124,0,1,0,0,0,0,5,1,130,159,124,124,5,2,0,0,0,0,1,5,0,4,1,1,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,17,357,137,220,67,102,69,114,1,1,0,2,0,0,0,1,67,102,69,114,1,2,0,3,0,0,136,219,66,101,69,114,1,1,0,2,0,0,0,1,66,101,69,114,1,2,0,3,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,065,Alabama,Hale County,13,18,350,84,266,44,113,39,152,0,0,1,1,0,0,0,0,44,113,39,152,0,0,1,1,0,0,83,265,43,113,39,151,0,0,1,1,0,0,0,0,43,113,39,151,0,0,1,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,0,17302,8302,9000,5880,6174,2276,2694,32,26,28,27,1,1,85,78,5959,6242,2320,2741,71,56,37,40,5,4,8092,8821,5703,6036,2255,2661,31,23,20,25,1,1,82,75,5779,6101,2299,2707,69,53,27,36,5,4,210,179,177,138,21,33,1,3,8,2,0,0,3,3,180,141,21,34,2,3,10,4,0,0 -050,01,067,Alabama,Henry County,1,1,937,475,462,325,294,128,145,2,2,3,2,0,0,17,19,341,312,142,161,5,4,3,4,1,1,449,431,303,269,126,139,2,2,2,2,0,0,16,19,318,287,140,155,4,4,2,4,1,1,26,31,22,25,2,6,0,0,1,0,0,0,1,0,23,25,2,6,1,0,1,0,0,0 -050,01,067,Alabama,Henry County,1,2,1076,563,513,381,344,160,152,3,3,4,6,0,0,15,8,395,352,171,159,6,4,5,6,1,0,543,496,364,334,158,147,3,1,3,6,0,0,15,8,378,342,169,154,6,2,4,6,1,0,20,17,17,10,2,5,0,2,1,0,0,0,0,0,17,10,2,5,0,2,1,0,0,0 -050,01,067,Alabama,Henry County,1,3,1139,590,549,406,338,170,202,0,1,1,1,0,0,13,7,419,345,179,205,4,4,2,3,1,1,571,531,389,326,168,196,0,1,1,1,0,0,13,7,402,333,177,199,4,4,2,3,1,1,19,18,17,12,2,6,0,0,0,0,0,0,0,0,17,12,2,6,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,4,1138,558,580,337,347,212,220,1,3,2,3,0,0,6,7,342,354,216,224,3,5,3,4,0,0,541,560,323,330,209,217,1,3,2,3,0,0,6,7,328,337,213,221,3,5,3,4,0,0,17,20,14,17,3,3,0,0,0,0,0,0,0,0,14,17,3,3,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,5,827,401,426,249,282,143,142,2,1,3,0,1,0,3,1,252,283,143,143,4,1,5,0,1,0,376,410,229,269,140,139,2,1,1,0,1,0,3,1,232,270,140,140,4,1,3,0,1,0,25,16,20,13,3,3,0,0,2,0,0,0,0,0,20,13,3,3,0,0,2,0,0,0 -050,01,067,Alabama,Henry County,1,6,862,417,445,283,300,129,139,0,0,2,4,0,0,3,2,285,301,130,140,2,1,2,5,1,0,397,430,266,286,126,139,0,0,2,3,0,0,3,2,268,287,127,140,2,1,2,4,1,0,20,15,17,14,3,0,0,0,0,1,0,0,0,0,17,14,3,0,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,1,7,1002,477,525,332,377,137,141,1,2,5,1,0,0,2,4,333,381,138,143,3,4,5,1,0,0,456,513,314,367,136,139,1,2,3,1,0,0,2,4,315,371,137,141,3,4,3,1,0,0,21,12,18,10,1,2,0,0,2,0,0,0,0,0,18,10,1,2,0,0,2,0,0,0 -050,01,067,Alabama,Henry County,1,8,1102,546,556,386,380,156,172,1,2,0,2,0,0,3,0,389,380,156,172,4,2,0,2,0,0,530,546,371,371,155,171,1,2,0,2,0,0,3,0,374,371,155,171,4,2,0,2,0,0,16,10,15,9,1,1,0,0,0,0,0,0,0,0,15,9,1,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,9,1031,503,528,365,362,124,158,5,1,5,1,0,0,4,6,369,367,125,161,7,4,6,2,0,0,488,520,352,355,123,158,5,1,4,1,0,0,4,5,356,359,124,160,7,4,5,2,0,0,15,8,13,7,1,0,0,0,1,0,0,0,0,1,13,8,1,1,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,1,10,1231,583,648,420,436,153,203,5,3,3,3,0,0,2,3,421,439,154,203,7,5,3,3,0,1,571,641,411,431,151,201,5,3,2,3,0,0,2,3,412,434,152,201,7,5,2,3,0,1,12,7,9,5,2,2,0,0,1,0,0,0,0,0,9,5,2,2,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,1,11,1265,642,623,457,418,182,196,3,1,0,1,0,0,0,7,457,424,182,198,3,5,0,4,0,0,640,613,455,412,182,194,3,1,0,1,0,0,0,5,455,416,182,196,3,5,0,2,0,0,2,10,2,6,0,2,0,0,0,0,0,0,0,2,2,8,0,2,0,0,0,2,0,0 -050,01,067,Alabama,Henry County,1,12,1287,582,705,416,490,159,211,4,1,0,0,0,0,3,3,419,492,159,213,6,2,2,1,0,0,577,703,413,488,159,211,3,1,0,0,0,0,2,3,415,490,159,213,5,2,1,1,0,0,5,2,3,2,0,0,1,0,0,0,0,0,1,0,4,2,0,0,1,0,1,0,0,0 -050,01,067,Alabama,Henry County,1,13,1361,653,708,477,542,169,158,3,4,0,0,0,0,4,4,481,545,169,159,7,8,0,0,0,0,651,704,475,539,169,158,3,3,0,0,0,0,4,4,479,542,169,159,7,7,0,0,0,0,2,4,2,3,0,0,0,1,0,0,0,0,0,0,2,3,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,1,14,1000,483,517,389,390,85,120,2,1,0,3,0,1,7,2,396,391,87,122,8,2,0,4,0,1,479,515,385,389,85,120,2,1,0,2,0,1,7,2,392,390,87,122,8,2,0,3,0,1,4,2,4,1,0,0,0,0,0,1,0,0,0,0,4,1,0,0,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,1,15,748,353,395,275,280,77,115,0,0,0,0,0,0,1,0,276,280,77,115,1,0,0,0,0,0,351,394,274,280,76,114,0,0,0,0,0,0,1,0,275,280,76,114,1,0,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,16,504,215,289,173,204,41,83,0,1,0,0,0,0,1,1,174,205,41,83,0,2,1,0,0,0,211,287,170,203,41,82,0,1,0,0,0,0,0,1,170,204,41,82,0,2,0,0,0,0,4,2,3,1,0,1,0,0,0,0,0,0,1,0,4,1,0,1,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,1,17,380,158,222,125,160,32,61,0,0,0,0,0,0,1,1,126,160,32,62,1,1,0,0,0,0,158,222,125,160,32,61,0,0,0,0,0,0,1,1,126,160,32,62,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,1,18,412,103,309,84,230,19,76,0,0,0,0,0,0,0,3,84,231,19,78,0,2,0,1,0,0,103,305,84,227,19,75,0,0,0,0,0,0,0,3,84,228,19,77,0,2,0,1,0,0,0,4,0,3,0,1,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,0,17296,8299,8997,5877,6171,2276,2694,32,26,28,27,1,1,85,78,5956,6239,2320,2741,71,56,37,40,5,4,8089,8818,5700,6033,2255,2661,31,23,20,25,1,1,82,75,5776,6098,2299,2707,69,53,27,36,5,4,210,179,177,138,21,33,1,3,8,2,0,0,3,3,180,141,21,34,2,3,10,4,0,0 -050,01,067,Alabama,Henry County,2,1,937,475,462,325,294,128,145,2,2,3,2,0,0,17,19,341,312,142,161,5,4,3,4,1,1,449,431,303,269,126,139,2,2,2,2,0,0,16,19,318,287,140,155,4,4,2,4,1,1,26,31,22,25,2,6,0,0,1,0,0,0,1,0,23,25,2,6,1,0,1,0,0,0 -050,01,067,Alabama,Henry County,2,2,1076,563,513,381,344,160,152,3,3,4,6,0,0,15,8,395,352,171,159,6,4,5,6,1,0,543,496,364,334,158,147,3,1,3,6,0,0,15,8,378,342,169,154,6,2,4,6,1,0,20,17,17,10,2,5,0,2,1,0,0,0,0,0,17,10,2,5,0,2,1,0,0,0 -050,01,067,Alabama,Henry County,2,3,1139,590,549,406,338,170,202,0,1,1,1,0,0,13,7,419,345,179,205,4,4,2,3,1,1,571,531,389,326,168,196,0,1,1,1,0,0,13,7,402,333,177,199,4,4,2,3,1,1,19,18,17,12,2,6,0,0,0,0,0,0,0,0,17,12,2,6,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,4,1138,558,580,337,347,212,220,1,3,2,3,0,0,6,7,342,354,216,224,3,5,3,4,0,0,541,560,323,330,209,217,1,3,2,3,0,0,6,7,328,337,213,221,3,5,3,4,0,0,17,20,14,17,3,3,0,0,0,0,0,0,0,0,14,17,3,3,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,5,827,401,426,249,282,143,142,2,1,3,0,1,0,3,1,252,283,143,143,4,1,5,0,1,0,376,410,229,269,140,139,2,1,1,0,1,0,3,1,232,270,140,140,4,1,3,0,1,0,25,16,20,13,3,3,0,0,2,0,0,0,0,0,20,13,3,3,0,0,2,0,0,0 -050,01,067,Alabama,Henry County,2,6,863,418,445,284,300,129,139,0,0,2,4,0,0,3,2,286,301,130,140,2,1,2,5,1,0,398,430,267,286,126,139,0,0,2,3,0,0,3,2,269,287,127,140,2,1,2,4,1,0,20,15,17,14,3,0,0,0,0,1,0,0,0,0,17,14,3,0,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,2,7,1002,477,525,332,377,137,141,1,2,5,1,0,0,2,4,333,381,138,143,3,4,5,1,0,0,456,513,314,367,136,139,1,2,3,1,0,0,2,4,315,371,137,141,3,4,3,1,0,0,21,12,18,10,1,2,0,0,2,0,0,0,0,0,18,10,1,2,0,0,2,0,0,0 -050,01,067,Alabama,Henry County,2,8,1102,546,556,386,380,156,172,1,2,0,2,0,0,3,0,389,380,156,172,4,2,0,2,0,0,530,546,371,371,155,171,1,2,0,2,0,0,3,0,374,371,155,171,4,2,0,2,0,0,16,10,15,9,1,1,0,0,0,0,0,0,0,0,15,9,1,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,9,1030,502,528,364,362,124,158,5,1,5,1,0,0,4,6,368,367,125,161,7,4,6,2,0,0,487,520,351,355,123,158,5,1,4,1,0,0,4,5,355,359,124,160,7,4,5,2,0,0,15,8,13,7,1,0,0,0,1,0,0,0,0,1,13,8,1,1,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,2,10,1230,582,648,419,436,153,203,5,3,3,3,0,0,2,3,420,439,154,203,7,5,3,3,0,1,570,641,410,431,151,201,5,3,2,3,0,0,2,3,411,434,152,201,7,5,2,3,0,1,12,7,9,5,2,2,0,0,1,0,0,0,0,0,9,5,2,2,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,2,11,1262,641,621,456,416,182,196,3,1,0,1,0,0,0,7,456,422,182,198,3,5,0,4,0,0,639,611,454,410,182,194,3,1,0,1,0,0,0,5,454,414,182,196,3,5,0,2,0,0,2,10,2,6,0,2,0,0,0,0,0,0,0,2,2,8,0,2,0,0,0,2,0,0 -050,01,067,Alabama,Henry County,2,12,1286,581,705,415,490,159,211,4,1,0,0,0,0,3,3,418,492,159,213,6,2,2,1,0,0,576,703,412,488,159,211,3,1,0,0,0,0,2,3,414,490,159,213,5,2,1,1,0,0,5,2,3,2,0,0,1,0,0,0,0,0,1,0,4,2,0,0,1,0,1,0,0,0 -050,01,067,Alabama,Henry County,2,13,1360,653,707,477,541,169,158,3,4,0,0,0,0,4,4,481,544,169,159,7,8,0,0,0,0,651,703,475,538,169,158,3,3,0,0,0,0,4,4,479,541,169,159,7,7,0,0,0,0,2,4,2,3,0,0,0,1,0,0,0,0,0,0,2,3,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,2,14,1000,483,517,389,390,85,120,2,1,0,3,0,1,7,2,396,391,87,122,8,2,0,4,0,1,479,515,385,389,85,120,2,1,0,2,0,1,7,2,392,390,87,122,8,2,0,3,0,1,4,2,4,1,0,0,0,0,0,1,0,0,0,0,4,1,0,0,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,2,15,748,353,395,275,280,77,115,0,0,0,0,0,0,1,0,276,280,77,115,1,0,0,0,0,0,351,394,274,280,76,114,0,0,0,0,0,0,1,0,275,280,76,114,1,0,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,16,504,215,289,173,204,41,83,0,1,0,0,0,0,1,1,174,205,41,83,0,2,1,0,0,0,211,287,170,203,41,82,0,1,0,0,0,0,0,1,170,204,41,82,0,2,0,0,0,0,4,2,3,1,0,1,0,0,0,0,0,0,1,0,4,1,0,1,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,2,17,380,158,222,125,160,32,61,0,0,0,0,0,0,1,1,126,160,32,62,1,1,0,0,0,0,158,222,125,160,32,61,0,0,0,0,0,0,1,1,126,160,32,62,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,2,18,412,103,309,84,230,19,76,0,0,0,0,0,0,0,3,84,231,19,78,0,2,0,1,0,0,103,305,84,227,19,75,0,0,0,0,0,0,0,3,84,228,19,77,0,2,0,1,0,0,0,4,0,3,0,1,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,0,17293,8302,8991,5880,6172,2279,2683,31,26,28,32,1,1,83,77,5957,6243,2333,2720,57,60,34,43,5,4,8088,8811,5700,6029,2257,2653,30,23,20,30,1,1,80,75,5775,6098,2309,2689,56,56,25,41,4,4,214,180,180,143,22,30,1,3,8,2,0,0,3,2,182,145,24,31,1,4,9,2,1,0 -050,01,067,Alabama,Henry County,3,1,934,471,463,324,296,126,144,2,2,3,2,0,0,16,19,339,315,140,160,3,5,4,3,2,1,447,429,304,269,124,137,2,2,2,2,0,0,15,19,319,288,137,153,3,5,3,3,1,1,24,34,20,27,2,7,0,0,1,0,0,0,1,0,20,27,3,7,0,0,1,0,1,0 -050,01,067,Alabama,Henry County,3,2,1065,561,504,381,341,159,148,2,2,4,6,0,0,15,7,395,348,172,152,5,3,4,8,0,0,539,490,362,331,157,145,2,1,3,6,0,0,15,7,376,338,170,149,5,2,3,8,0,0,22,14,19,10,2,3,0,1,1,0,0,0,0,0,19,10,2,3,0,1,1,0,0,0 -050,01,067,Alabama,Henry County,3,3,1151,596,555,411,345,171,199,0,2,1,1,0,0,13,8,423,353,179,203,3,5,2,2,2,0,576,534,393,332,169,192,0,1,1,1,0,0,13,8,405,340,177,196,3,4,2,2,2,0,20,21,18,13,2,7,0,1,0,0,0,0,0,0,18,13,2,7,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,3,4,1126,558,568,336,337,213,218,1,3,2,3,0,0,6,7,342,343,218,221,1,4,3,6,0,1,539,550,320,321,210,216,1,3,2,3,0,0,6,7,326,327,215,219,1,4,3,6,0,1,19,18,16,16,3,2,0,0,0,0,0,0,0,0,16,16,3,2,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,5,829,402,427,251,283,142,142,2,1,3,0,1,0,3,1,253,284,145,143,3,1,3,0,1,0,378,412,232,270,139,140,2,1,1,0,1,0,3,1,234,271,142,141,3,1,1,0,1,0,24,15,19,13,3,2,0,0,2,0,0,0,0,0,19,13,3,2,0,0,2,0,0,0 -050,01,067,Alabama,Henry County,3,6,861,410,451,275,304,130,140,0,0,2,5,0,0,3,2,278,306,132,142,1,0,2,5,0,0,389,435,258,289,126,140,0,0,2,4,0,0,3,2,261,291,128,142,1,0,2,4,0,0,21,16,17,15,4,0,0,0,0,1,0,0,0,0,17,15,4,0,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,3,7,1008,486,522,339,376,139,139,1,2,5,1,0,0,2,4,341,380,140,139,2,4,5,2,0,1,466,508,322,364,138,137,1,2,3,1,0,0,2,4,324,368,139,137,2,4,3,2,0,1,20,14,17,12,1,2,0,0,2,0,0,0,0,0,17,12,1,2,0,0,2,0,0,0 -050,01,067,Alabama,Henry County,3,8,1095,538,557,382,383,152,170,1,2,0,2,0,0,3,0,385,383,153,170,3,2,0,2,0,0,521,546,366,373,151,169,1,2,0,2,0,0,3,0,369,373,152,169,3,2,0,2,0,0,17,11,16,10,1,1,0,0,0,0,0,0,0,0,16,10,1,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,9,1038,511,527,367,361,132,158,4,1,5,1,0,0,3,6,370,366,133,160,5,5,6,2,0,0,496,519,354,354,131,158,4,1,4,1,0,0,3,5,357,358,132,159,5,5,5,2,0,0,15,8,13,7,1,0,0,0,1,0,0,0,0,1,13,8,1,1,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,3,10,1222,575,647,417,435,148,203,5,3,3,3,0,0,2,3,419,437,149,204,6,6,3,3,0,0,563,641,408,430,146,202,5,3,2,3,0,0,2,3,410,432,147,203,6,6,2,3,0,0,12,6,9,5,2,1,0,0,1,0,0,0,0,0,9,5,2,1,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,3,11,1266,645,621,457,415,184,198,3,1,0,1,0,0,1,6,458,421,185,199,3,6,0,1,0,0,642,612,454,409,184,196,3,1,0,1,0,0,1,5,455,414,185,197,3,5,0,1,0,0,3,9,3,6,0,2,0,0,0,0,0,0,0,1,3,7,0,2,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,3,12,1277,579,698,413,485,161,209,3,1,0,0,0,0,2,3,415,487,162,209,4,4,0,1,0,0,574,696,410,483,161,209,2,1,0,0,0,0,1,3,411,485,161,209,3,4,0,1,0,0,5,2,3,2,0,0,1,0,0,0,0,0,1,0,4,2,1,0,1,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,13,1361,653,708,476,541,169,159,4,4,0,0,0,0,4,4,479,544,170,161,8,6,0,1,0,0,651,705,474,539,169,159,4,3,0,0,0,0,4,4,477,542,170,161,8,5,0,1,0,0,2,3,2,2,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,3,14,1007,486,521,388,391,88,121,3,1,0,5,0,1,7,2,394,393,90,121,8,3,1,5,0,1,483,519,385,390,88,121,3,1,0,4,0,1,7,2,391,392,90,121,8,3,1,4,0,1,3,2,3,1,0,0,0,0,0,1,0,0,0,0,3,1,0,0,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,3,15,748,350,398,275,283,74,115,0,0,0,0,0,0,1,0,276,283,74,115,1,0,0,0,0,0,347,397,273,283,73,114,0,0,0,0,0,0,1,0,274,283,73,114,1,0,0,0,0,0,3,1,2,0,1,1,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,16,514,222,292,178,207,43,81,0,1,0,2,0,0,1,1,179,208,43,81,0,2,1,2,0,0,218,290,175,206,43,80,0,1,0,2,0,0,0,1,175,207,43,80,0,2,0,2,0,0,4,2,3,1,0,1,0,0,0,0,0,0,1,0,4,1,0,1,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,3,17,380,157,223,126,159,30,63,0,0,0,0,0,0,1,1,127,160,30,63,1,1,0,0,0,0,157,223,126,159,30,63,0,0,0,0,0,0,1,1,127,160,30,63,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,3,18,411,102,309,84,230,18,76,0,0,0,0,0,0,0,3,84,232,18,77,0,3,0,0,0,0,102,305,84,227,18,75,0,0,0,0,0,0,0,3,84,229,18,76,0,3,0,0,0,0,0,4,0,3,0,1,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,0,17377,8320,9057,5905,6228,2243,2659,33,25,38,50,2,1,99,94,5998,6314,2308,2715,60,64,50,57,4,2,8112,8874,5732,6085,2221,2627,32,22,30,48,2,1,95,91,5822,6168,2283,2682,59,59,40,55,4,2,208,183,173,143,22,32,1,3,8,2,0,0,4,3,176,146,25,33,1,5,10,2,0,0 -050,01,067,Alabama,Henry County,4,1,977,508,469,348,301,125,140,2,2,8,0,1,0,24,26,372,325,145,162,3,6,10,2,2,0,488,438,332,278,123,132,2,2,7,0,1,0,23,26,355,302,142,154,3,6,9,2,2,0,20,31,16,23,2,8,0,0,1,0,0,0,1,0,17,23,3,8,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,4,2,1051,544,507,376,335,146,152,3,1,4,9,0,0,15,10,391,344,159,162,5,2,4,9,0,0,514,495,350,326,144,149,3,1,3,9,0,0,14,10,364,335,156,159,5,2,3,9,0,0,30,12,26,9,2,3,0,0,1,0,0,0,1,0,27,9,3,3,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,4,3,1175,612,563,423,365,170,184,0,3,3,3,0,0,16,8,438,372,182,191,4,5,4,3,0,0,588,541,401,353,168,176,0,1,3,3,0,0,16,8,416,360,180,183,4,3,4,3,0,0,24,22,22,12,2,8,0,2,0,0,0,0,0,0,22,12,2,8,0,2,0,0,0,0 -050,01,067,Alabama,Henry County,4,4,1105,567,538,349,314,209,206,1,2,1,7,0,0,7,9,356,322,213,210,3,6,2,8,0,1,543,519,328,298,206,203,1,2,1,7,0,0,7,9,335,306,210,207,3,6,2,8,0,1,24,19,21,16,3,3,0,0,0,0,0,0,0,0,21,16,3,3,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,5,864,410,454,255,302,147,146,1,3,3,1,1,0,3,2,258,304,149,147,1,4,4,1,1,0,395,436,242,286,146,144,1,3,2,1,1,0,3,2,245,288,148,145,1,4,3,1,1,0,15,18,13,16,1,2,0,0,1,0,0,0,0,0,13,16,1,2,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,4,6,865,394,471,242,315,142,147,1,0,5,5,0,0,4,4,246,319,144,147,1,3,7,6,0,0,380,456,233,301,138,147,1,0,4,5,0,0,4,3,237,304,140,147,1,2,6,6,0,0,14,15,9,14,4,0,0,0,1,0,0,0,0,1,9,15,4,0,0,1,1,0,0,0 -050,01,067,Alabama,Henry County,4,7,992,492,500,357,358,127,135,1,1,4,1,0,0,3,5,359,363,128,137,3,3,5,2,0,0,471,484,340,344,125,134,1,1,2,0,0,0,3,5,342,349,126,136,3,3,3,1,0,0,21,16,17,14,2,1,0,0,2,1,0,0,0,0,17,14,2,1,0,0,2,1,0,0 -050,01,067,Alabama,Henry County,4,8,1076,505,571,362,404,136,160,1,2,1,4,0,0,5,1,367,405,138,161,4,2,2,4,0,0,492,560,350,394,135,159,1,2,1,4,0,0,5,1,355,395,137,160,4,2,2,4,0,0,13,11,12,10,1,1,0,0,0,0,0,0,0,0,12,10,1,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,9,1065,542,523,383,358,148,158,5,1,3,2,0,0,3,4,386,362,150,160,6,3,3,2,0,0,528,513,372,350,146,157,5,1,2,2,0,0,3,3,375,353,148,158,6,3,2,2,0,0,14,10,11,8,2,1,0,0,1,0,0,0,0,1,11,9,2,2,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,4,10,1163,528,635,388,422,131,203,4,2,4,3,0,0,1,5,389,427,132,205,4,4,4,4,0,0,517,627,379,415,129,202,4,2,4,3,0,0,1,5,380,420,130,204,4,4,4,4,0,0,11,8,9,7,2,1,0,0,0,0,0,0,0,0,9,7,2,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,11,1260,629,631,456,423,168,199,3,2,1,1,0,0,1,6,457,428,168,201,4,7,1,1,0,0,623,625,451,419,168,198,3,2,0,1,0,0,1,5,452,423,168,200,4,6,0,1,0,0,6,6,5,4,0,1,0,0,1,0,0,0,0,1,5,5,0,1,0,1,1,0,0,0 -050,01,067,Alabama,Henry County,4,12,1275,590,685,408,483,176,198,3,1,1,0,0,0,2,3,409,486,177,198,3,4,3,0,0,0,586,682,406,480,176,198,2,1,1,0,0,0,1,3,407,483,176,198,2,4,2,0,0,0,4,3,2,3,0,0,1,0,0,0,0,0,1,0,2,3,1,0,1,0,1,0,0,0 -050,01,067,Alabama,Henry County,4,13,1376,654,722,485,549,161,167,5,4,0,0,0,0,3,2,488,551,163,167,6,6,0,0,0,0,651,719,482,547,161,167,5,3,0,0,0,0,3,2,485,549,163,167,6,5,0,0,0,0,3,3,3,2,0,0,0,1,0,0,0,0,0,0,3,2,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,4,14,1041,494,547,392,408,92,123,3,0,0,11,0,1,7,4,397,411,94,124,10,3,0,12,0,1,494,545,392,407,92,123,3,0,0,10,0,1,7,4,397,410,94,124,10,3,0,11,0,1,0,2,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,4,15,752,352,400,281,286,69,113,0,0,0,0,0,0,2,1,282,287,70,114,1,1,0,0,1,0,348,399,277,286,69,112,0,0,0,0,0,0,2,1,278,287,70,113,1,1,0,0,1,0,4,1,4,0,0,1,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,16,553,244,309,189,219,54,86,0,0,0,3,0,0,1,1,190,220,54,86,0,1,1,3,0,0,239,308,186,218,53,86,0,0,0,3,0,0,0,1,186,219,53,86,0,1,0,3,0,0,5,1,3,1,1,0,0,0,0,0,0,0,1,0,4,1,1,0,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,4,17,386,151,235,128,164,22,69,0,1,0,0,0,0,1,1,129,165,22,69,1,2,0,0,0,0,151,234,128,164,22,68,0,1,0,0,0,0,1,1,129,165,22,68,1,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,4,18,401,104,297,83,222,20,73,0,0,0,0,0,0,1,2,84,223,20,74,1,2,0,0,0,0,104,293,83,219,20,72,0,0,0,0,0,0,1,2,84,220,20,73,1,2,0,0,0,0,0,4,0,3,0,1,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,0,17152,8262,8890,5853,6123,2239,2596,33,24,33,51,2,1,102,95,5951,6208,2297,2655,66,58,46,64,6,3,8042,8710,5675,5983,2210,2563,32,21,25,49,2,1,98,93,5770,6066,2266,2621,63,54,37,62,6,3,220,180,178,140,29,33,1,3,8,2,0,0,4,2,181,142,31,34,3,4,9,2,0,0 -050,01,067,Alabama,Henry County,5,1,931,483,448,334,286,123,131,2,1,4,1,1,0,19,29,353,312,139,157,4,5,5,4,1,1,466,422,320,262,122,129,2,1,3,1,1,0,18,29,338,288,137,155,4,5,4,4,1,1,17,26,14,24,1,2,0,0,1,0,0,0,1,0,15,24,2,2,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,5,2,1049,544,505,368,333,150,155,1,1,3,8,0,0,22,8,390,341,167,161,3,2,4,9,2,0,518,486,347,321,147,148,1,1,2,8,0,0,21,8,368,329,163,154,3,2,3,9,2,0,26,19,21,12,3,7,0,0,1,0,0,0,1,0,22,12,4,7,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,5,3,1132,583,549,392,367,173,165,1,4,3,3,0,0,14,10,406,376,181,172,4,4,5,7,1,0,557,532,368,357,171,160,1,2,3,3,0,0,14,10,382,366,179,167,4,2,5,7,1,0,26,17,24,10,2,5,0,2,0,0,0,0,0,0,24,10,2,5,0,2,0,0,0,0 -050,01,067,Alabama,Henry County,5,4,1066,554,512,349,300,194,200,0,1,1,6,0,0,10,5,358,305,202,203,4,3,2,6,0,0,534,491,333,285,190,194,0,1,1,6,0,0,10,5,342,290,198,197,4,3,2,6,0,0,20,21,16,15,4,6,0,0,0,0,0,0,0,0,16,15,4,6,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,5,857,420,437,264,277,149,150,1,3,3,2,1,0,2,5,266,280,150,154,1,5,3,3,2,0,406,430,252,272,148,148,1,3,2,2,1,0,2,5,254,275,149,152,1,5,2,3,2,0,14,7,12,5,1,2,0,0,1,0,0,0,0,0,12,5,1,2,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,5,6,849,399,450,248,303,142,139,1,0,4,4,0,0,4,4,252,306,144,141,2,3,5,4,0,0,379,436,234,290,137,138,1,0,3,4,0,0,4,4,238,293,139,140,2,3,4,4,0,0,20,14,14,13,5,1,0,0,1,0,0,0,0,0,14,13,5,1,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,5,7,978,479,499,351,356,121,136,1,1,2,2,0,0,4,4,354,360,123,137,2,3,4,3,0,0,456,478,334,336,116,136,1,1,1,1,0,0,4,4,337,340,118,137,2,3,3,2,0,0,23,21,17,20,5,0,0,0,1,1,0,0,0,0,17,20,5,0,0,0,1,1,0,0 -050,01,067,Alabama,Henry County,5,8,1031,485,546,341,386,134,152,2,1,3,3,0,0,5,4,346,389,135,153,4,4,5,4,0,0,473,535,332,378,132,149,2,1,2,3,0,0,5,4,337,381,133,150,4,4,4,4,0,0,12,11,9,8,2,3,0,0,1,0,0,0,0,0,9,8,2,3,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,5,9,1060,546,514,388,355,149,154,3,2,3,1,0,0,3,2,390,357,151,155,5,2,3,1,0,1,529,506,375,348,146,153,3,2,2,1,0,0,3,2,377,350,148,154,5,2,2,1,0,1,17,8,13,7,3,1,0,0,1,0,0,0,0,0,13,7,3,1,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,5,10,1139,541,598,401,401,128,185,7,2,4,3,0,0,1,7,402,406,128,189,7,6,5,4,0,0,522,586,384,391,126,184,7,2,4,3,0,0,1,6,385,395,126,187,7,6,5,4,0,0,19,12,17,10,2,1,0,0,0,0,0,0,0,1,17,11,2,2,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,11,1183,580,603,418,397,157,197,2,1,2,2,0,0,1,6,419,403,157,198,3,6,2,2,0,0,578,597,417,394,157,195,2,1,1,2,0,0,1,5,418,399,157,196,3,5,1,2,0,0,2,6,1,3,0,2,0,0,1,0,0,0,0,1,1,4,0,2,0,1,1,0,0,0 -050,01,067,Alabama,Henry County,5,12,1304,616,688,431,482,181,201,2,2,1,1,0,0,1,2,432,484,181,202,3,3,1,1,0,0,612,683,427,477,181,201,2,2,1,1,0,0,1,2,428,479,181,202,3,3,1,1,0,0,4,5,4,5,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,13,1336,624,712,455,526,159,183,6,1,0,0,0,0,4,2,459,528,159,183,9,3,1,0,0,0,616,710,449,524,159,183,5,1,0,0,0,0,3,2,452,526,159,183,7,3,1,0,0,0,8,2,6,2,0,0,1,0,0,0,0,0,1,0,7,2,0,0,2,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,14,1124,533,591,411,456,113,118,3,3,0,10,0,1,6,3,417,459,113,119,9,6,0,10,0,1,532,587,410,454,113,118,3,2,0,9,0,1,6,3,416,457,113,119,9,5,0,9,0,1,1,4,1,2,0,0,0,1,0,1,0,0,0,0,1,2,0,0,0,1,0,1,0,0 -050,01,067,Alabama,Henry County,5,15,751,353,398,288,293,61,102,1,0,0,2,0,0,3,1,291,294,62,102,3,0,0,3,0,0,347,397,282,293,61,101,1,0,0,2,0,0,3,1,285,294,62,101,3,0,0,3,0,0,6,1,6,0,0,1,0,0,0,0,0,0,0,0,6,0,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,16,581,259,322,199,221,59,97,0,0,0,3,0,0,1,1,199,222,59,97,1,1,1,3,0,0,255,321,197,220,58,97,0,0,0,3,0,0,0,1,197,221,58,97,0,1,0,3,0,0,4,1,2,1,1,0,0,0,0,0,0,0,1,0,2,1,1,0,1,0,1,0,0,0 -050,01,067,Alabama,Henry County,5,17,389,152,237,128,167,24,68,0,1,0,0,0,0,0,1,128,168,24,68,0,2,0,0,0,0,151,236,127,167,24,67,0,1,0,0,0,0,0,1,127,168,24,67,0,2,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,5,18,392,111,281,87,217,22,63,0,0,0,0,0,0,2,1,89,218,22,64,2,0,0,0,0,0,111,277,87,214,22,62,0,0,0,0,0,0,2,1,89,215,22,63,2,0,0,0,0,0,0,4,0,3,0,1,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,0,17128,8277,8851,5887,6143,2200,2547,39,23,35,50,2,1,114,87,5991,6223,2275,2594,71,51,50,65,6,6,8046,8660,5699,5997,2171,2509,36,20,28,48,2,1,110,85,5799,6075,2244,2556,67,48,42,62,6,5,231,191,188,146,29,38,3,3,7,2,0,0,4,2,192,148,31,38,4,3,8,3,0,1 -050,01,067,Alabama,Henry County,6,1,881,457,424,317,285,115,123,1,0,3,0,0,0,21,16,335,301,135,135,4,2,4,2,0,0,445,399,305,263,115,120,1,0,3,0,0,0,21,16,323,279,135,132,4,2,4,2,0,0,12,25,12,22,0,3,0,0,0,0,0,0,0,0,12,22,0,3,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,2,1018,548,470,371,320,147,131,2,2,4,6,1,0,23,11,394,331,164,138,6,4,6,7,2,1,518,446,348,303,143,124,2,2,3,6,1,0,21,11,369,314,159,131,5,4,5,7,2,1,30,24,23,17,4,7,0,0,1,0,0,0,2,0,25,17,5,7,1,0,1,0,0,0 -050,01,067,Alabama,Henry County,6,3,1102,557,545,379,365,156,160,1,3,3,6,0,0,18,11,396,374,171,169,3,6,5,6,0,1,531,524,356,352,154,154,1,1,2,6,0,0,18,11,373,361,169,163,3,4,4,6,0,1,26,21,23,13,2,6,0,2,1,0,0,0,0,0,23,13,2,6,0,2,1,0,0,0 -050,01,067,Alabama,Henry County,6,4,1043,551,492,348,290,187,189,0,2,4,5,0,0,12,6,358,296,195,192,3,3,7,7,1,0,537,473,338,279,183,181,0,2,4,5,0,0,12,6,348,285,191,184,3,3,7,7,1,0,14,19,10,11,4,8,0,0,0,0,0,0,0,0,10,11,4,8,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,5,897,447,450,289,263,155,178,0,2,1,2,0,0,2,5,291,268,157,181,0,3,1,3,0,0,423,439,266,255,154,175,0,2,1,2,0,0,2,5,268,260,156,178,0,3,1,3,0,0,24,11,23,8,1,3,0,0,0,0,0,0,0,0,23,8,1,3,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,6,865,419,446,269,305,136,133,2,0,6,2,1,0,5,6,274,309,138,137,5,1,6,4,1,1,400,435,255,295,133,132,2,0,4,2,1,0,5,6,260,299,135,136,5,1,4,4,1,1,19,11,14,10,3,1,0,0,2,0,0,0,0,0,14,10,3,1,0,0,2,0,0,0 -050,01,067,Alabama,Henry County,6,7,965,454,511,331,368,118,135,1,1,1,4,0,0,3,3,334,371,120,136,2,3,1,4,0,0,428,489,312,347,111,135,1,1,1,3,0,0,3,3,315,350,113,136,2,3,1,3,0,0,26,22,19,21,7,0,0,0,0,1,0,0,0,0,19,21,7,0,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,6,8,1012,494,518,351,370,130,141,5,1,3,2,0,0,5,4,355,373,131,143,9,3,4,3,0,0,480,509,342,364,128,138,3,1,2,2,0,0,5,4,346,367,129,140,7,3,3,3,0,0,14,9,9,6,2,3,2,0,1,0,0,0,0,0,9,6,2,3,2,0,1,0,0,0 -050,01,067,Alabama,Henry County,6,9,1110,549,561,395,395,145,161,2,1,3,2,0,0,4,2,398,397,148,162,3,1,3,2,1,1,526,549,375,384,143,160,2,1,2,2,0,0,4,2,378,386,146,161,3,1,2,2,1,1,23,12,20,11,2,1,0,0,1,0,0,0,0,0,20,11,2,1,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,6,10,1101,530,571,393,393,123,167,7,2,4,3,0,0,3,6,396,398,124,168,8,7,5,3,0,1,510,557,375,381,121,166,7,2,4,3,0,0,3,5,378,385,122,167,8,7,5,3,0,0,20,14,18,12,2,1,0,0,0,0,0,0,0,1,18,13,2,1,0,0,0,0,0,1 -050,01,067,Alabama,Henry County,6,11,1160,569,591,405,397,158,185,3,2,2,2,0,0,1,5,406,401,158,186,4,4,2,5,0,0,565,586,403,394,157,184,3,2,1,2,0,0,1,4,404,397,157,185,4,4,1,4,0,0,4,5,2,3,1,1,0,0,1,0,0,0,0,1,2,4,1,1,0,0,1,1,0,0 -050,01,067,Alabama,Henry County,6,12,1298,631,667,443,469,184,193,2,1,1,1,0,0,1,3,444,472,184,193,3,3,1,2,0,0,627,662,439,465,184,192,2,1,1,1,0,0,1,3,440,468,184,192,3,3,1,2,0,0,4,5,4,4,0,1,0,0,0,0,0,0,0,0,4,4,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,13,1287,571,716,418,513,142,199,6,1,0,0,0,0,5,3,422,516,142,200,8,2,3,1,1,0,569,715,418,512,142,199,5,1,0,0,0,0,4,3,421,515,142,200,7,2,2,1,1,0,2,1,0,1,0,0,1,0,0,0,0,0,1,0,1,1,0,0,1,0,1,0,0,0 -050,01,067,Alabama,Henry County,6,14,1184,567,617,421,489,139,116,4,4,0,5,0,1,3,2,423,491,140,116,5,5,2,6,0,1,565,613,419,487,139,116,4,3,0,4,0,1,3,2,421,489,140,116,5,4,2,5,0,1,2,4,2,2,0,0,0,1,0,1,0,0,0,0,2,2,0,0,0,1,0,1,0,0 -050,01,067,Alabama,Henry County,6,15,810,387,423,321,311,57,103,3,0,0,7,0,0,6,2,327,313,58,104,8,2,0,7,0,0,382,421,316,310,57,102,3,0,0,7,0,0,6,2,322,312,58,103,8,2,0,7,0,0,5,2,5,1,0,1,0,0,0,0,0,0,0,0,5,1,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,16,606,270,336,213,231,56,101,0,0,0,3,0,0,1,1,214,232,57,102,0,0,0,3,0,0,265,335,210,230,55,101,0,0,0,3,0,0,0,1,210,231,55,102,0,0,0,3,0,0,5,1,3,1,1,0,0,0,0,0,0,0,1,0,4,1,2,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,17,384,159,225,132,161,27,62,0,1,0,0,0,0,0,1,132,162,27,62,0,2,0,0,0,0,158,224,131,161,27,61,0,1,0,0,0,0,0,1,131,162,27,61,0,2,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,6,18,405,117,288,91,218,25,70,0,0,0,0,0,0,1,0,92,218,26,70,0,0,0,0,0,0,117,284,91,215,25,69,0,0,0,0,0,0,1,0,92,215,26,69,0,0,0,0,0,0,0,4,0,3,0,1,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,0,17074,8258,8816,5891,6174,2169,2471,40,22,36,56,2,1,120,92,5999,6260,2242,2528,79,55,52,62,7,3,8033,8621,5710,6026,2139,2431,37,19,29,54,2,1,116,90,5814,6111,2210,2486,75,51,44,60,7,3,225,195,181,148,30,40,3,3,7,2,0,0,4,2,185,149,32,42,4,4,8,2,0,0 -050,01,067,Alabama,Henry County,7,1,901,472,429,324,290,118,116,1,0,2,2,0,0,27,21,349,309,139,132,4,6,5,3,2,0,459,400,311,264,118,113,1,0,2,2,0,0,27,21,336,283,139,129,4,6,5,3,2,0,13,29,13,26,0,3,0,0,0,0,0,0,0,0,13,26,0,3,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,2,943,495,448,346,313,121,116,2,2,4,5,1,0,21,12,364,325,139,127,6,3,6,5,2,0,474,422,330,294,119,109,2,2,3,5,1,0,19,12,346,306,136,120,5,3,5,5,2,0,21,26,16,19,2,7,0,0,1,0,0,0,2,0,18,19,3,7,1,0,1,0,0,0 -050,01,067,Alabama,Henry County,7,3,1094,572,522,398,355,154,150,1,3,3,5,0,0,16,9,411,364,168,156,3,4,5,6,1,1,542,505,374,344,149,146,1,1,2,5,0,0,16,9,387,353,163,152,3,2,4,6,1,1,30,17,24,11,5,4,0,2,1,0,0,0,0,0,24,11,5,4,0,2,1,0,0,0 -050,01,067,Alabama,Henry County,7,4,1026,530,496,346,301,169,181,0,1,3,5,0,0,12,8,357,307,176,187,4,4,4,6,1,0,514,475,333,290,166,171,0,1,3,5,0,0,12,8,344,296,173,177,4,4,4,6,1,0,16,21,13,11,3,10,0,0,0,0,0,0,0,0,13,11,3,10,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,5,918,470,448,287,275,174,163,1,3,2,2,0,0,6,5,292,280,177,167,4,4,3,2,0,0,443,433,262,264,172,159,1,3,2,2,0,0,6,5,267,269,175,163,4,4,3,2,0,0,27,15,25,11,2,4,0,0,0,0,0,0,0,0,25,11,2,4,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,6,865,416,449,282,303,125,140,2,0,2,2,1,0,4,4,286,307,127,142,4,1,2,3,1,0,402,437,273,292,122,139,2,0,0,2,1,0,4,4,277,296,124,141,4,1,0,3,1,0,14,12,9,11,3,1,0,0,2,0,0,0,0,0,9,11,3,1,0,0,2,0,0,0 -050,01,067,Alabama,Henry County,7,7,920,446,474,312,347,127,116,1,0,4,8,0,0,2,3,314,349,127,117,2,3,5,8,0,0,429,461,302,336,120,115,1,0,4,7,0,0,2,3,304,338,120,116,2,3,5,7,0,0,17,13,10,11,7,1,0,0,0,1,0,0,0,0,10,11,7,1,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,7,8,997,485,512,353,376,121,126,4,2,3,2,0,0,4,6,357,382,122,128,6,5,4,2,0,1,465,501,337,368,120,123,2,2,2,2,0,0,4,6,341,374,121,125,4,5,3,2,0,1,20,11,16,8,1,3,2,0,1,0,0,0,0,0,16,8,1,3,2,0,1,0,0,0 -050,01,067,Alabama,Henry County,7,9,1109,543,566,397,392,134,171,3,0,3,2,0,0,6,1,403,393,134,171,8,1,4,2,0,0,523,555,380,382,132,170,3,0,2,2,0,0,6,1,386,383,132,170,8,1,3,2,0,0,20,11,17,10,2,1,0,0,1,0,0,0,0,0,17,10,2,1,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,7,10,1111,539,572,389,399,139,162,3,2,4,3,0,0,4,6,393,404,140,164,5,6,5,4,0,0,519,558,371,387,137,161,3,2,4,3,0,0,4,5,375,392,138,162,5,5,5,4,0,0,20,14,18,12,2,1,0,0,0,0,0,0,0,1,18,12,2,2,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,7,11,1168,552,616,395,430,146,176,6,2,4,3,0,0,1,5,396,435,146,178,7,4,4,4,0,0,544,609,390,425,144,175,6,2,3,3,0,0,1,4,391,429,144,176,7,4,3,4,0,0,8,7,5,5,2,1,0,0,1,0,0,0,0,1,5,6,2,2,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,7,12,1253,627,626,436,430,186,190,3,1,1,1,0,0,1,4,437,434,187,193,3,2,1,1,0,0,623,621,432,426,186,189,3,1,1,1,0,0,1,4,433,430,187,192,3,2,1,1,0,0,4,5,4,4,0,1,0,0,0,0,0,0,0,0,4,4,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,13,1283,570,713,425,505,137,205,5,1,0,0,0,0,3,2,428,507,138,205,5,3,2,0,0,0,567,712,424,504,137,205,4,1,0,0,0,0,2,2,426,506,137,205,4,3,2,0,0,0,3,1,1,1,0,0,1,0,0,0,0,0,1,0,2,1,1,0,1,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,14,1244,598,646,441,511,148,125,5,4,0,2,0,1,4,3,445,514,149,125,8,7,0,2,0,1,596,641,439,508,148,125,5,3,0,1,0,1,4,3,443,511,149,125,8,6,0,1,0,1,2,5,2,3,0,0,0,1,0,1,0,0,0,0,2,3,0,0,0,1,0,1,0,0 -050,01,067,Alabama,Henry County,7,15,841,394,447,322,326,62,108,3,0,0,11,0,0,7,2,327,328,65,110,9,0,0,11,0,0,391,446,319,325,62,108,3,0,0,11,0,0,7,2,324,327,65,110,9,0,0,11,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,16,621,279,342,227,242,50,98,0,0,1,1,0,0,1,1,228,243,50,98,0,1,2,1,0,0,274,341,224,242,49,97,0,0,1,1,0,0,0,1,224,243,49,97,0,1,1,1,0,0,5,1,3,0,1,1,0,0,0,0,0,0,1,0,4,0,1,1,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,7,17,378,164,214,132,156,32,55,0,1,0,2,0,0,0,0,132,156,32,55,0,1,0,2,0,0,162,212,130,155,32,54,0,1,0,2,0,0,0,0,130,155,32,54,0,1,0,2,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,7,18,402,106,296,79,223,26,73,0,0,0,0,0,0,1,0,80,223,26,73,1,0,0,0,0,0,106,292,79,220,26,72,0,0,0,0,0,0,1,0,80,220,26,72,1,0,0,0,0,0,0,4,0,3,0,1,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,0,17097,8280,8817,5918,6182,2164,2460,40,22,35,55,2,1,121,97,6028,6271,2246,2517,79,55,45,70,6,2,8048,8610,5731,6024,2133,2420,37,19,28,53,2,1,117,93,5838,6110,2213,2477,74,50,37,65,5,2,232,207,187,158,31,40,3,3,7,2,0,0,4,4,190,161,33,40,5,5,8,5,1,0 -050,01,067,Alabama,Henry County,8,1,864,456,408,317,273,115,117,0,0,4,0,0,0,20,18,335,290,133,133,1,2,7,1,0,0,435,391,296,258,115,115,0,0,4,0,0,0,20,18,314,275,133,131,1,2,7,1,0,0,21,17,21,15,0,2,0,0,0,0,0,0,0,0,21,15,0,2,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,2,981,507,474,348,319,129,128,1,2,3,7,1,0,25,18,371,336,151,144,7,3,3,9,1,0,486,447,331,299,127,121,1,2,2,7,1,0,24,18,353,316,149,137,6,3,2,9,1,0,21,27,17,20,2,7,0,0,1,0,0,0,1,0,18,20,2,7,1,0,1,0,0,0 -050,01,067,Alabama,Henry County,8,3,1085,567,518,399,368,146,134,3,2,4,7,0,0,15,7,412,375,160,136,5,4,5,10,0,0,545,498,382,352,143,132,3,1,3,7,0,0,14,6,394,358,156,134,5,3,4,9,0,0,22,20,17,16,3,2,0,1,1,0,0,0,1,1,18,17,4,2,0,1,1,1,0,0 -050,01,067,Alabama,Henry County,8,4,1021,537,484,369,303,150,167,0,2,2,4,0,0,16,8,385,310,161,173,4,3,3,6,0,0,521,458,356,290,147,156,0,1,2,4,0,0,16,7,372,296,158,162,4,2,3,5,0,0,16,26,13,13,3,11,0,1,0,0,0,0,0,1,13,14,3,11,0,1,0,1,0,0 -050,01,067,Alabama,Henry County,8,5,929,472,457,290,267,177,176,0,3,1,3,0,0,4,8,292,275,180,181,3,6,1,4,1,0,450,443,271,257,174,172,0,3,1,3,0,0,4,8,273,265,177,177,3,6,1,4,1,0,22,14,19,10,3,4,0,0,0,0,0,0,0,0,19,10,3,4,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,6,880,429,451,293,316,127,130,2,0,2,2,1,0,4,3,297,318,128,132,5,2,2,2,1,0,404,436,275,303,122,128,2,0,0,2,1,0,4,3,279,305,123,130,5,2,0,2,1,0,25,15,18,13,5,2,0,0,2,0,0,0,0,0,18,13,5,2,0,0,2,0,0,0 -050,01,067,Alabama,Henry County,8,7,914,451,463,308,337,134,117,1,0,4,6,0,0,4,3,312,340,136,117,2,2,5,6,0,1,434,446,296,323,129,115,1,0,4,5,0,0,4,3,300,326,131,115,2,2,5,5,0,1,17,17,12,14,5,2,0,0,0,1,0,0,0,0,12,14,5,2,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,8,8,1006,483,523,357,378,113,134,4,3,4,2,0,0,5,6,361,383,115,137,7,6,4,3,1,0,460,506,340,363,110,132,2,3,3,2,0,0,5,6,344,368,112,135,5,6,3,3,1,0,23,17,17,15,3,2,2,0,1,0,0,0,0,0,17,15,3,2,2,0,1,0,0,0 -050,01,067,Alabama,Henry County,8,9,1106,555,551,402,381,145,166,2,0,0,2,0,0,6,2,408,383,147,167,5,1,1,2,0,0,541,539,390,371,143,164,2,0,0,2,0,0,6,2,396,373,145,165,5,1,1,2,0,0,14,12,12,10,2,2,0,0,0,0,0,0,0,0,12,10,2,2,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,10,1054,503,551,354,396,136,146,4,1,6,2,0,0,3,6,357,401,137,147,6,5,6,4,0,0,483,539,337,385,134,146,4,1,5,2,0,0,3,5,340,390,135,147,6,4,5,3,0,0,20,12,17,11,2,0,0,0,1,0,0,0,0,1,17,11,2,0,0,1,1,1,0,0 -050,01,067,Alabama,Henry County,8,11,1193,560,633,406,443,143,182,7,2,3,3,0,0,1,3,407,446,144,183,7,3,3,4,0,0,549,627,398,438,141,181,7,2,2,3,0,0,1,3,399,441,142,182,7,3,2,4,0,0,11,6,8,5,2,1,0,0,1,0,0,0,0,0,8,5,2,1,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,8,12,1204,605,599,429,412,170,179,3,1,1,1,0,0,2,6,431,418,170,180,4,5,2,2,0,0,602,590,426,406,170,177,3,1,1,1,0,0,2,5,428,411,170,178,4,4,2,2,0,0,3,9,3,6,0,2,0,0,0,0,0,0,0,1,3,7,0,2,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,8,13,1276,567,709,411,503,149,202,5,1,0,0,0,0,2,3,413,506,150,203,6,3,0,0,0,0,562,707,408,501,149,202,4,1,0,0,0,0,1,3,409,504,150,203,4,3,0,0,0,0,5,2,3,2,0,0,1,0,0,0,0,0,1,0,4,2,0,0,2,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,14,1278,613,665,453,514,152,144,4,4,0,0,0,0,4,3,456,516,154,145,5,7,1,0,1,0,611,661,451,511,152,144,4,3,0,0,0,0,4,3,454,513,154,145,5,6,1,0,1,0,2,4,2,3,0,0,0,1,0,0,0,0,0,0,2,3,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,8,15,905,426,479,344,355,70,108,4,0,0,13,0,1,8,2,352,356,71,109,11,2,0,13,0,1,424,477,342,354,70,108,4,0,0,12,0,1,8,2,350,355,71,109,11,2,0,12,0,1,2,2,2,1,0,0,0,0,0,1,0,0,0,0,2,1,0,0,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,8,16,619,279,340,229,244,49,96,0,0,1,0,0,0,0,0,229,244,49,96,0,0,1,0,0,0,274,339,225,244,48,95,0,0,1,0,0,0,0,0,225,244,48,95,0,0,1,0,0,0,5,1,4,0,1,1,0,0,0,0,0,0,0,0,4,0,1,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,8,17,377,163,214,128,150,34,59,0,1,0,3,0,0,1,1,128,151,35,59,0,1,1,4,1,0,160,212,126,149,34,58,0,1,0,3,0,0,0,1,126,150,34,58,0,1,0,4,0,0,3,2,2,1,0,1,0,0,0,0,0,0,1,0,2,1,1,1,0,0,1,0,1,0 -050,01,067,Alabama,Henry County,8,18,405,107,298,81,223,25,75,0,0,0,0,0,0,1,0,82,223,25,75,1,0,0,0,0,0,107,294,81,220,25,74,0,0,0,0,0,0,1,0,82,220,25,74,1,0,0,0,0,0,0,4,0,3,0,1,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,0,17062,8270,8792,5892,6197,2171,2413,45,23,34,53,3,1,125,105,6009,6296,2246,2469,84,61,53,67,6,4,8043,8590,5709,6042,2142,2375,42,20,27,51,2,1,121,101,5822,6138,2216,2429,79,56,45,64,5,4,227,202,183,155,29,38,3,3,7,2,1,0,4,4,187,158,30,40,5,5,8,3,1,0 -050,01,067,Alabama,Henry County,9,1,864,457,407,316,272,115,110,1,0,1,0,0,0,24,25,340,297,131,129,3,3,5,2,2,1,442,391,301,258,115,108,1,0,1,0,0,0,24,25,325,283,131,127,3,3,5,2,2,1,15,16,15,14,0,2,0,0,0,0,0,0,0,0,15,14,0,2,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,2,953,487,466,340,333,117,115,4,2,3,4,2,0,21,12,358,344,136,125,8,3,4,5,3,1,469,441,327,314,115,109,4,2,2,4,1,0,20,12,344,325,134,119,7,3,3,5,2,1,18,25,13,19,2,6,0,0,1,0,1,0,1,0,14,19,2,6,1,0,1,0,1,0 -050,01,067,Alabama,Henry County,9,3,1064,556,508,379,354,152,138,3,1,4,8,0,0,18,7,394,360,168,143,6,2,6,10,0,0,535,494,362,342,150,136,3,1,3,8,0,0,17,7,376,348,165,141,6,2,5,10,0,0,21,14,17,12,2,2,0,0,1,0,0,0,1,0,18,12,3,2,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,9,4,1024,544,480,373,315,151,148,0,3,3,2,0,0,17,12,390,326,163,156,3,6,6,4,0,0,531,456,362,303,149,140,0,1,3,2,0,0,17,10,379,313,161,147,3,3,6,3,0,0,13,24,11,12,2,8,0,2,0,0,0,0,0,2,11,13,2,9,0,3,0,1,0,0 -050,01,067,Alabama,Henry County,9,5,900,458,442,266,265,187,163,0,2,1,5,0,0,4,7,270,272,189,167,0,4,3,6,0,0,436,424,248,253,183,157,0,2,1,5,0,0,4,7,252,260,185,161,0,4,3,6,0,0,22,18,18,12,4,6,0,0,0,0,0,0,0,0,18,12,4,6,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,6,912,459,453,312,311,140,134,2,3,1,1,1,0,3,4,315,313,141,136,2,6,3,2,1,0,430,444,287,304,137,132,2,3,0,1,1,0,3,4,290,306,138,134,2,6,2,2,1,0,29,9,25,7,3,2,0,0,1,0,0,0,0,0,25,7,3,2,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,9,7,902,431,471,277,344,143,118,2,0,5,5,0,0,4,4,281,348,145,119,3,2,6,6,0,0,412,455,265,330,137,116,2,0,4,5,0,0,4,4,269,334,139,117,3,2,5,6,0,0,19,16,12,14,6,2,0,0,1,0,0,0,0,0,12,14,6,2,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,9,8,1007,482,525,373,382,99,135,3,1,3,2,0,0,4,5,377,387,100,136,6,5,3,2,0,0,460,503,358,362,95,134,1,1,2,1,0,0,4,5,362,367,96,135,4,5,2,1,0,0,22,22,15,20,4,1,2,0,1,1,0,0,0,0,15,20,4,1,2,0,1,1,0,0 -050,01,067,Alabama,Henry County,9,9,1069,516,553,371,387,136,161,2,1,1,2,0,0,6,2,376,389,138,161,6,2,2,3,0,0,507,544,362,380,136,159,2,1,1,2,0,0,6,2,367,382,138,159,6,2,2,3,0,0,9,9,9,7,0,2,0,0,0,0,0,0,0,0,9,7,0,2,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,10,1092,549,543,387,388,150,146,5,1,4,3,0,0,3,5,390,393,150,148,8,3,4,3,0,1,530,529,372,376,147,145,5,1,3,3,0,0,3,4,375,380,147,147,8,2,3,3,0,1,19,14,15,12,3,1,0,0,1,0,0,0,0,1,15,13,3,1,0,1,1,0,0,0 -050,01,067,Alabama,Henry County,9,11,1134,524,610,391,421,120,178,6,1,5,3,0,0,2,7,393,428,121,179,8,7,5,3,0,0,505,599,374,411,118,177,6,1,5,3,0,0,2,7,376,418,119,178,8,7,5,3,0,0,19,11,17,10,2,1,0,0,0,0,0,0,0,0,17,10,2,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,12,1210,594,616,415,418,173,189,3,2,2,1,0,0,1,6,416,424,174,190,3,7,2,1,0,0,591,608,413,413,173,187,3,2,1,1,0,0,1,5,414,418,174,187,3,7,1,1,0,0,3,8,2,5,0,2,0,0,1,0,0,0,0,1,2,6,0,3,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,9,13,1247,573,674,414,479,153,190,3,1,0,1,0,0,3,3,416,482,154,190,4,3,2,2,0,0,568,671,411,476,153,190,2,1,0,1,0,0,2,3,412,479,154,190,3,3,1,2,0,0,5,3,3,3,0,0,1,0,0,0,0,0,1,0,4,3,0,0,1,0,1,0,0,0 -050,01,067,Alabama,Henry County,9,14,1318,629,689,467,525,152,158,7,4,0,0,0,0,3,2,470,526,152,159,10,6,0,0,0,0,626,685,464,522,152,158,7,3,0,0,0,0,3,2,467,523,152,159,10,5,0,0,0,0,3,4,3,3,0,0,0,1,0,0,0,0,0,0,3,3,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,9,15,940,447,493,360,375,75,102,4,0,0,13,0,1,8,2,368,377,76,102,10,1,1,14,0,1,446,491,359,374,75,102,4,0,0,12,0,1,8,2,367,376,76,102,10,1,1,13,0,1,1,2,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,9,16,599,272,327,228,235,42,91,0,0,1,0,0,0,1,1,229,236,42,91,1,0,1,1,0,0,267,326,223,235,42,90,0,0,1,0,0,0,1,1,224,236,42,90,1,0,1,1,0,0,5,1,5,0,0,1,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,17,402,175,227,133,163,41,60,0,0,0,3,0,0,1,1,134,164,41,61,1,0,0,3,0,0,171,226,131,162,40,60,0,0,0,3,0,0,0,1,131,163,40,61,0,0,0,3,0,0,4,1,2,1,1,0,0,0,0,0,0,0,1,0,3,1,1,0,1,0,0,0,0,0 -050,01,067,Alabama,Henry County,9,18,425,117,308,90,230,25,77,0,1,0,0,0,0,2,0,92,230,25,77,2,1,0,0,0,0,117,303,90,227,25,75,0,1,0,0,0,0,2,0,92,227,25,75,2,1,0,0,0,0,0,5,0,3,0,2,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,0,17105,8274,8831,5949,6211,2112,2420,48,29,30,47,3,1,132,123,6073,6327,2196,2490,86,68,46,65,6,5,8035,8615,5757,6044,2082,2380,43,25,23,45,2,1,128,120,5877,6157,2163,2450,79,62,39,62,5,5,239,216,192,167,30,40,5,4,7,2,1,0,4,3,196,170,33,40,7,6,7,3,1,0 -050,01,067,Alabama,Henry County,10,1,904,468,436,327,286,107,117,2,1,0,1,0,0,32,31,358,316,132,140,5,5,3,5,2,1,445,421,306,273,106,115,1,1,0,1,0,0,32,31,337,303,131,138,4,5,3,5,2,1,23,15,21,13,1,2,1,0,0,0,0,0,0,0,21,13,1,2,1,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,2,943,482,461,341,327,117,116,5,1,3,3,2,0,14,14,355,341,129,128,6,2,4,3,2,1,464,439,328,307,116,114,4,1,2,3,1,0,13,14,341,321,127,126,5,2,3,3,1,1,18,22,13,20,1,2,1,0,1,0,1,0,1,0,14,20,2,2,1,0,1,0,1,0 -050,01,067,Alabama,Henry County,10,3,1053,558,495,392,348,138,132,3,1,3,7,0,0,22,7,410,354,154,137,8,1,7,9,1,1,537,472,376,332,135,125,3,1,2,7,0,0,21,7,393,338,151,130,7,1,6,9,1,1,21,23,16,16,3,7,0,0,1,0,0,0,1,0,17,16,3,7,1,0,1,0,0,0 -050,01,067,Alabama,Henry County,10,4,1014,518,496,347,328,154,147,1,5,3,3,0,0,13,13,360,340,161,159,5,7,5,4,0,0,500,471,331,314,152,140,1,2,3,3,0,0,13,12,344,325,159,152,5,4,5,3,0,0,18,25,16,14,2,7,0,3,0,0,0,0,0,1,16,15,2,7,0,3,0,1,0,0 -050,01,067,Alabama,Henry County,10,5,876,447,429,268,252,170,162,0,1,1,3,0,0,8,11,276,262,177,168,0,5,2,5,0,0,434,416,259,244,166,157,0,1,1,3,0,0,8,11,267,254,173,163,0,5,2,5,0,0,13,13,9,8,4,5,0,0,0,0,0,0,0,0,9,8,4,5,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,6,907,450,457,302,309,144,138,0,4,1,2,1,0,2,4,304,313,146,140,0,6,1,2,1,0,423,447,279,302,141,135,0,4,0,2,1,0,2,4,281,306,143,137,0,6,0,2,1,0,27,10,23,7,3,3,0,0,1,0,0,0,0,0,23,7,3,3,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,10,7,872,423,449,276,323,135,117,2,2,5,3,0,0,5,4,281,326,138,119,3,4,6,4,0,0,407,435,265,311,131,115,2,2,4,3,0,0,5,4,270,314,134,117,3,4,5,4,0,0,16,14,11,12,4,2,0,0,1,0,0,0,0,0,11,12,4,2,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,10,8,1040,504,536,389,395,107,131,3,1,0,2,0,0,5,7,394,402,110,133,5,5,0,3,0,0,477,505,369,366,102,130,1,1,0,1,0,0,5,7,374,373,105,132,3,5,0,2,0,0,27,31,20,29,5,1,2,0,0,1,0,0,0,0,20,29,5,1,2,0,0,1,0,0 -050,01,067,Alabama,Henry County,10,9,1039,490,549,357,389,122,154,2,1,3,2,0,0,6,3,362,392,124,154,6,3,4,3,0,0,479,538,348,382,121,150,2,1,2,2,0,0,6,3,353,385,123,150,6,3,3,3,0,0,11,11,9,7,1,4,0,0,1,0,0,0,0,0,9,7,1,4,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,10,10,1113,569,544,407,390,151,149,5,1,3,1,0,0,3,3,410,393,151,150,8,3,3,1,0,0,551,533,393,380,148,148,5,1,2,1,0,0,3,3,396,383,148,149,8,3,2,1,0,0,18,11,14,10,3,1,0,0,1,0,0,0,0,0,14,10,3,1,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,10,11,1138,530,608,399,423,116,172,8,3,5,2,0,0,2,8,401,430,117,174,9,7,5,5,0,0,503,592,374,409,114,171,8,3,5,2,0,0,2,7,376,415,115,173,9,6,5,5,0,0,27,16,25,14,2,1,0,0,0,0,0,0,0,1,25,15,2,1,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,10,12,1121,548,573,389,385,154,178,2,1,2,3,0,0,1,6,390,391,154,179,2,5,3,3,0,1,546,566,388,381,154,176,2,1,1,3,0,0,1,5,389,386,154,177,2,4,2,3,0,1,2,7,1,4,0,2,0,0,1,0,0,0,0,1,1,5,0,2,0,1,1,0,0,0 -050,01,067,Alabama,Henry County,10,13,1292,613,679,449,480,159,192,2,2,1,1,0,0,2,4,450,483,160,193,4,5,1,2,0,0,609,675,445,476,159,192,2,2,1,1,0,0,2,4,446,479,160,193,4,5,1,2,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,14,1292,601,691,442,503,146,183,9,1,0,1,0,0,4,3,446,506,147,184,12,3,1,1,0,0,597,689,440,501,146,183,8,1,0,1,0,0,3,3,443,504,146,184,10,3,1,1,0,0,4,2,2,2,0,0,1,0,0,0,0,0,1,0,3,2,1,0,2,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,15,1021,480,541,380,428,91,96,3,3,0,10,0,1,6,3,386,431,92,96,7,5,1,11,0,1,479,537,379,426,91,96,3,2,0,9,0,1,6,3,385,429,92,96,7,4,1,10,0,1,1,4,1,2,0,0,0,1,0,1,0,0,0,0,1,2,0,0,0,1,0,1,0,0 -050,01,067,Alabama,Henry County,10,16,610,277,333,233,241,40,91,1,0,0,0,0,0,3,1,235,242,42,91,3,0,0,1,0,0,272,332,228,241,40,90,1,0,0,0,0,0,3,1,230,242,42,90,3,0,0,1,0,0,5,1,5,0,0,1,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,17,437,192,245,152,172,38,69,0,0,0,3,0,0,2,1,154,173,39,69,1,1,0,3,0,0,189,244,151,171,37,69,0,0,0,3,0,0,1,1,152,172,37,69,1,1,0,3,0,0,3,1,1,1,1,0,0,0,0,0,0,0,1,0,2,1,2,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,10,18,433,124,309,99,232,23,76,0,1,0,0,0,0,2,0,101,232,23,76,2,1,0,0,0,0,123,303,98,228,23,74,0,1,0,0,0,0,2,0,100,228,23,74,2,1,0,0,0,0,1,6,1,4,0,2,0,0,0,0,0,0,0,0,1,4,0,2,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,0,17100,8267,8833,5960,6235,2100,2394,51,30,27,45,3,1,126,128,6077,6349,2171,2470,95,80,44,58,8,6,8029,8619,5774,6075,2064,2354,47,26,20,43,2,1,122,120,5889,6183,2132,2427,90,70,35,56,7,5,238,214,186,160,36,40,4,4,7,2,1,0,4,8,188,166,39,43,5,10,9,2,1,1 -050,01,067,Alabama,Henry County,11,1,897,468,429,342,296,102,105,1,0,0,1,0,0,23,27,364,322,121,124,6,5,2,4,0,1,450,413,326,280,101,105,0,0,0,1,0,0,23,27,348,306,120,124,5,5,2,4,0,1,18,16,16,16,1,0,1,0,0,0,0,0,0,0,16,16,1,0,1,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,2,926,458,468,326,317,112,128,4,1,1,2,0,0,15,20,340,335,123,145,7,5,2,3,1,0,438,452,309,304,109,125,4,1,1,2,0,0,15,20,323,322,120,142,7,5,2,3,1,0,20,16,17,13,3,3,0,0,0,0,0,0,0,0,17,13,3,3,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,3,1064,567,497,398,360,135,122,5,3,4,6,2,0,23,6,421,364,152,128,9,5,6,6,2,0,543,471,383,341,130,115,5,3,3,6,1,0,21,6,404,345,146,121,8,5,5,6,1,0,24,26,15,19,5,7,0,0,1,0,1,0,2,0,17,19,6,7,1,0,1,0,1,0 -050,01,067,Alabama,Henry County,11,4,992,505,487,339,318,147,148,1,5,2,4,0,0,16,12,355,329,154,157,6,8,5,4,1,1,487,461,324,304,145,141,1,2,1,4,0,0,16,10,340,313,152,149,6,4,4,4,1,1,18,26,15,14,2,7,0,3,1,0,0,0,0,2,15,16,2,8,0,4,1,0,0,0 -050,01,067,Alabama,Henry County,11,5,845,457,388,278,230,172,145,0,2,1,3,0,0,6,8,284,237,175,150,2,5,2,4,0,1,440,375,265,223,168,140,0,2,1,3,0,0,6,7,271,229,171,144,2,5,2,4,0,1,17,13,13,7,4,5,0,0,0,0,0,0,0,1,13,8,4,6,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,6,956,470,486,307,330,159,144,3,4,0,3,0,0,1,5,308,334,160,148,3,6,0,3,0,0,444,477,285,324,155,141,3,4,0,3,0,0,1,5,286,328,156,145,3,6,0,3,0,0,26,9,22,6,4,3,0,0,0,0,0,0,0,0,22,6,4,3,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,7,888,427,461,287,331,128,121,1,1,4,1,1,0,6,7,293,337,131,124,4,3,4,4,1,0,412,452,276,325,126,118,1,1,2,1,1,0,6,7,282,331,129,121,4,3,2,4,1,0,15,9,11,6,2,3,0,0,2,0,0,0,0,0,11,6,2,3,0,0,2,0,0,0 -050,01,067,Alabama,Henry County,11,8,1018,488,530,365,396,117,123,1,1,2,2,0,0,3,8,368,400,118,127,2,6,2,4,1,1,468,502,352,372,110,122,1,1,2,1,0,0,3,6,355,376,111,125,2,4,2,3,1,0,20,28,13,24,7,1,0,0,0,1,0,0,0,2,13,24,7,2,0,2,0,1,0,1 -050,01,067,Alabama,Henry County,11,9,1023,498,525,367,377,117,141,5,1,3,1,0,0,6,5,371,382,119,142,8,5,5,1,1,0,482,510,356,367,115,137,3,1,2,1,0,0,6,4,360,371,117,138,6,4,4,1,1,0,16,15,11,10,2,4,2,0,1,0,0,0,0,1,11,11,2,4,2,1,1,0,0,0 -050,01,067,Alabama,Henry County,11,10,1128,545,583,396,417,139,161,4,0,2,2,0,0,4,3,398,420,141,162,6,2,3,2,1,0,528,572,382,407,137,160,4,0,1,2,0,0,4,3,384,410,139,161,6,2,2,2,1,0,17,11,14,10,2,1,0,0,1,0,0,0,0,0,14,10,2,1,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,11,11,1125,555,570,416,389,124,168,8,4,4,2,0,0,3,7,419,395,125,171,10,9,4,2,0,0,529,552,392,373,122,167,8,4,4,2,0,0,3,6,395,378,123,170,10,8,4,2,0,0,26,18,24,16,2,1,0,0,0,0,0,0,0,1,24,17,2,1,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,11,12,1112,526,586,376,400,143,176,3,1,3,3,0,0,1,6,377,406,144,177,3,6,3,3,0,0,522,579,374,395,142,175,3,1,2,3,0,0,1,5,375,400,143,176,3,5,2,3,0,0,4,7,2,5,1,1,0,0,1,0,0,0,0,1,2,6,1,1,0,1,1,0,0,0 -050,01,067,Alabama,Henry County,11,13,1273,602,671,438,482,160,182,2,1,1,1,0,0,1,5,439,487,160,183,3,5,1,1,0,0,598,665,434,477,160,181,2,1,1,1,0,0,1,5,435,482,160,182,3,5,1,1,0,0,4,6,4,5,0,1,0,0,0,0,0,0,0,0,4,5,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,14,1282,582,700,440,493,130,202,7,1,0,1,0,0,5,3,443,496,132,203,10,2,2,2,0,0,579,698,439,491,130,202,6,1,0,1,0,0,4,3,442,494,131,203,9,2,1,2,0,0,3,2,1,2,0,0,1,0,0,0,0,0,1,0,1,2,1,0,1,0,1,0,0,0 -050,01,067,Alabama,Henry County,11,15,1047,504,543,376,437,122,93,3,4,0,5,0,1,3,3,379,440,122,93,4,7,2,5,0,1,502,540,374,436,122,93,3,3,0,4,0,1,3,3,377,439,122,93,4,6,2,4,0,1,2,3,2,1,0,0,0,1,0,1,0,0,0,0,2,1,0,0,0,1,0,1,0,0 -050,01,067,Alabama,Henry County,11,16,655,299,356,255,263,35,86,3,0,0,5,0,0,6,2,261,265,35,87,9,0,0,6,0,0,296,354,252,262,35,85,3,0,0,5,0,0,6,2,258,264,35,86,9,0,0,6,0,0,3,2,3,1,0,1,0,0,0,0,0,0,0,0,3,1,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,11,17,443,199,244,161,161,36,79,0,0,0,3,0,0,2,1,162,162,37,79,1,0,1,4,0,1,195,243,159,160,35,79,0,0,0,3,0,0,1,1,160,161,35,79,1,0,0,4,0,1,4,1,2,1,1,0,0,0,0,0,0,0,1,0,2,1,2,0,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,11,18,426,117,309,93,238,22,70,0,1,0,0,0,0,2,0,95,238,22,70,2,1,0,0,0,0,116,303,92,234,22,68,0,1,0,0,0,0,2,0,94,234,22,68,2,1,0,0,0,0,1,6,1,4,0,2,0,0,0,0,0,0,0,0,1,4,0,2,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,0,17125,8273,8852,5950,6267,2101,2354,47,30,34,50,3,0,138,151,6079,6404,2182,2449,92,76,53,69,8,7,8034,8627,5767,6099,2063,2311,43,26,27,48,2,0,132,143,5891,6229,2140,2400,87,68,46,66,5,7,239,225,183,168,38,43,4,4,7,2,1,0,6,8,188,175,42,49,5,8,7,3,3,0 -050,01,067,Alabama,Henry County,12,1,879,462,417,327,283,108,108,0,0,1,4,0,0,26,22,350,304,130,126,5,0,3,8,0,1,442,401,310,269,105,106,0,0,1,4,0,0,26,22,333,290,127,124,5,0,3,8,0,1,20,16,17,14,3,2,0,0,0,0,0,0,0,0,17,14,3,2,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,2,924,475,449,333,309,120,105,1,1,3,1,0,0,18,33,351,342,132,130,4,3,6,6,0,1,457,432,319,295,117,102,0,1,3,1,0,0,18,33,337,328,129,127,3,3,6,6,0,1,18,17,14,14,3,3,1,0,0,0,0,0,0,0,14,14,3,3,1,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,3,1028,521,507,365,359,121,123,4,3,5,5,2,0,24,17,387,374,139,135,6,7,10,7,4,1,501,476,352,336,118,115,4,3,4,5,1,0,22,17,372,351,135,127,6,7,9,7,2,1,20,31,13,23,3,8,0,0,1,0,1,0,2,0,15,23,4,8,0,0,1,0,2,0 -050,01,067,Alabama,Henry County,12,4,998,519,479,353,324,149,133,2,4,2,5,0,0,13,13,366,336,156,142,5,9,4,6,1,0,497,452,336,308,145,128,2,1,1,5,0,0,13,10,349,318,152,134,5,4,3,6,1,0,22,27,17,16,4,5,0,3,1,0,0,0,0,3,17,18,4,8,0,5,1,0,0,0 -050,01,067,Alabama,Henry County,12,5,843,445,398,273,242,160,145,0,1,1,3,0,0,11,7,284,248,164,150,5,3,2,4,1,0,430,387,261,237,157,139,0,1,1,3,0,0,11,7,272,243,161,144,5,3,2,4,1,0,15,11,12,5,3,6,0,0,0,0,0,0,0,0,12,5,3,6,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,6,926,464,462,299,316,161,131,2,3,0,4,0,0,2,8,301,321,163,137,2,7,0,4,0,1,438,451,278,309,156,127,2,3,0,4,0,0,2,8,280,314,158,133,2,7,0,4,0,1,26,11,21,7,5,4,0,0,0,0,0,0,0,0,21,7,5,4,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,7,893,418,475,291,333,115,130,2,3,3,2,1,0,6,7,295,339,120,134,4,5,3,4,2,0,401,465,280,326,113,127,2,3,1,2,1,0,4,7,283,332,116,131,4,5,1,4,1,0,17,10,11,7,2,3,0,0,2,0,0,0,2,0,12,7,4,3,0,0,2,0,1,0 -050,01,067,Alabama,Henry County,12,8,1012,488,524,347,385,132,127,1,0,6,3,0,0,2,9,349,393,133,131,2,5,6,4,0,1,470,497,336,362,125,126,1,0,6,2,0,0,2,7,338,368,126,128,2,5,6,2,0,1,18,27,11,23,7,1,0,0,0,1,0,0,0,2,11,25,7,3,0,0,0,2,0,0 -050,01,067,Alabama,Henry County,12,9,1026,504,522,379,384,112,129,4,3,3,1,0,0,6,5,385,388,114,131,7,7,4,1,0,0,489,505,369,372,110,125,2,3,2,1,0,0,6,4,375,375,112,127,5,6,3,1,0,0,15,17,10,12,2,4,2,0,1,0,0,0,0,1,10,13,2,4,2,1,1,0,0,0 -050,01,067,Alabama,Henry County,12,10,1137,566,571,417,396,136,171,5,0,2,2,0,0,6,2,423,398,137,172,9,1,3,2,0,0,548,562,401,388,135,170,5,0,1,2,0,0,6,2,407,390,136,171,9,1,2,2,0,0,18,9,16,8,1,1,0,0,1,0,0,0,0,0,16,8,1,1,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,12,11,1102,536,566,390,404,135,152,4,2,3,2,0,0,4,6,394,410,136,155,6,5,4,2,0,0,515,547,371,387,133,151,4,2,3,2,0,0,4,5,375,392,134,153,6,5,4,2,0,0,21,19,19,17,2,1,0,0,0,0,0,0,0,1,19,18,2,2,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,12,1136,536,600,388,423,137,164,6,3,4,3,0,0,1,7,389,430,137,165,7,9,4,3,0,0,526,592,381,417,135,163,6,3,3,3,0,0,1,6,382,423,135,164,7,8,3,3,0,0,10,8,7,6,2,1,0,0,1,0,0,0,0,1,7,7,2,1,0,1,1,0,0,0 -050,01,067,Alabama,Henry County,12,13,1244,600,644,427,454,168,182,3,1,1,1,0,0,1,6,428,460,169,183,3,5,1,2,0,0,595,638,422,449,168,181,3,1,1,1,0,0,1,6,423,455,169,182,3,5,1,2,0,0,5,6,5,5,0,1,0,0,0,0,0,0,0,0,5,5,0,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,14,1269,567,702,437,493,122,205,5,1,0,1,0,0,3,2,440,493,122,207,7,2,1,1,0,1,564,700,436,491,122,205,4,1,0,1,0,0,2,2,438,491,122,207,5,2,1,1,0,1,3,2,1,2,0,0,1,0,0,0,0,0,1,0,2,2,0,0,2,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,15,1109,534,575,398,460,127,104,5,4,0,3,0,0,4,4,402,464,128,105,8,5,0,4,0,1,531,571,395,458,127,104,5,3,0,2,0,0,4,4,399,462,128,105,8,4,0,3,0,1,3,4,3,2,0,0,0,1,0,1,0,0,0,0,3,2,0,0,0,1,0,1,0,0 -050,01,067,Alabama,Henry County,12,16,706,318,388,264,284,44,94,3,0,0,8,0,0,7,2,270,285,46,95,9,1,2,9,0,0,316,387,262,283,44,94,3,0,0,8,0,0,7,2,268,284,46,95,9,1,2,9,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,17,459,204,255,170,175,32,79,0,0,0,0,0,0,2,1,172,176,33,79,1,1,0,0,0,0,200,253,168,174,31,78,0,0,0,0,0,0,1,1,169,175,31,78,1,1,0,0,0,0,4,2,2,1,1,1,0,0,0,0,0,0,1,0,3,1,2,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,12,18,434,116,318,92,243,22,72,0,1,0,2,0,0,2,0,93,243,23,72,2,1,0,2,0,0,114,311,90,238,22,70,0,1,0,2,0,0,2,0,91,238,23,70,2,1,0,2,0,0,2,7,2,5,0,2,0,0,0,0,0,0,0,0,2,5,0,2,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,0,17223,8269,8954,5998,6381,2059,2350,50,30,34,50,3,0,125,143,6113,6514,2129,2426,95,85,51,68,9,4,8036,8723,5820,6208,2020,2306,46,27,27,47,2,0,121,135,5932,6333,2088,2378,90,78,41,65,8,4,233,231,178,173,39,44,4,3,7,3,1,0,4,8,181,181,41,48,5,7,10,3,1,0 -050,01,067,Alabama,Henry County,13,1,853,441,412,304,285,114,109,0,0,1,3,0,0,22,15,324,299,133,122,3,1,3,5,1,0,428,393,295,272,110,103,0,0,1,3,0,0,22,15,315,286,129,116,3,1,3,5,1,0,13,19,9,13,4,6,0,0,0,0,0,0,0,0,9,13,4,6,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,2,979,511,468,355,331,136,106,1,1,3,1,0,0,16,29,371,359,149,127,3,6,5,4,0,1,491,445,339,310,133,104,0,1,3,1,0,0,16,29,355,338,146,125,2,6,5,4,0,1,20,23,16,21,3,2,1,0,0,0,0,0,0,0,16,21,3,2,1,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,3,1006,514,492,375,349,113,121,2,3,4,5,2,0,18,14,393,362,124,130,3,6,8,8,4,0,491,468,358,331,110,115,2,3,3,5,1,0,17,14,375,344,121,124,3,6,6,8,3,0,23,24,17,18,3,6,0,0,1,0,1,0,1,0,18,18,3,6,0,0,2,0,1,0 -050,01,067,Alabama,Henry County,13,4,1013,532,481,361,336,150,126,4,3,3,6,0,0,14,10,373,346,161,131,6,6,5,8,1,0,516,460,350,322,147,123,4,1,2,6,0,0,13,8,361,330,157,126,6,4,4,8,1,0,16,21,11,14,3,3,0,2,1,0,0,0,1,2,12,16,4,5,0,2,1,0,0,0 -050,01,067,Alabama,Henry County,13,5,863,444,419,298,259,135,147,0,2,1,3,0,0,10,8,308,267,140,153,3,4,3,3,0,0,422,402,279,251,132,139,0,2,1,3,0,0,10,7,289,258,137,145,3,3,3,3,0,0,22,17,19,8,3,8,0,0,0,0,0,0,0,1,19,9,3,8,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,13,6,898,447,451,283,302,157,133,4,2,0,3,0,0,3,11,285,311,159,138,6,6,0,6,0,1,434,438,273,293,154,130,4,2,0,2,0,0,3,11,275,302,156,135,6,6,0,5,0,1,13,13,10,9,3,3,0,0,0,1,0,0,0,0,10,9,3,3,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,13,7,910,410,500,306,359,96,128,1,3,2,2,1,0,4,8,310,366,97,133,4,7,2,2,1,0,381,490,284,353,91,124,1,3,0,2,1,0,4,8,288,360,92,129,4,7,0,2,1,0,29,10,22,6,5,4,0,0,2,0,0,0,0,0,22,6,5,4,0,0,2,0,0,0 -050,01,067,Alabama,Henry County,13,8,978,473,505,335,373,127,122,1,1,6,2,0,0,4,7,339,379,127,123,3,4,8,4,0,2,459,483,326,353,122,121,1,1,6,1,0,0,4,7,330,359,122,122,3,4,8,3,0,2,14,22,9,20,5,1,0,0,0,1,0,0,0,0,9,20,5,1,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,13,9,1089,522,567,390,413,119,139,4,3,4,2,0,0,5,10,395,422,120,144,8,8,4,3,0,0,505,544,380,396,115,136,2,3,3,2,0,0,5,7,385,402,116,139,6,7,3,3,0,0,17,23,10,17,4,3,2,0,1,0,0,0,0,3,10,20,4,5,2,1,1,0,0,0 -050,01,067,Alabama,Henry County,13,10,1139,573,566,419,395,144,167,4,0,0,2,0,0,6,2,424,397,146,168,8,1,1,2,0,0,564,555,411,386,143,165,4,0,0,2,0,0,6,2,416,388,145,166,8,1,1,2,0,0,9,11,8,9,1,2,0,0,0,0,0,0,0,0,8,9,1,2,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,11,1036,496,540,359,391,125,141,4,1,5,1,0,0,3,6,362,397,126,142,6,6,5,1,0,0,473,523,339,375,123,141,4,1,4,1,0,0,3,5,342,380,124,142,6,5,4,1,0,0,23,17,20,16,2,0,0,0,1,0,0,0,0,1,20,17,2,0,0,1,1,0,0,0 -050,01,067,Alabama,Henry County,13,12,1187,556,631,415,449,127,170,9,3,4,4,0,0,1,5,415,454,128,170,10,8,4,4,0,0,541,624,403,443,125,169,9,3,3,4,0,0,1,5,403,448,126,169,10,8,3,4,0,0,15,7,12,6,2,1,0,0,1,0,0,0,0,0,12,6,2,1,0,0,1,0,0,0 -050,01,067,Alabama,Henry County,13,13,1205,576,629,418,442,153,177,3,1,1,1,0,0,1,8,419,449,153,178,4,9,1,1,0,0,573,622,415,438,153,175,3,1,1,1,0,0,1,7,416,444,153,176,4,8,1,1,0,0,3,7,3,4,0,2,0,0,0,0,0,0,0,1,3,5,0,2,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,13,14,1256,560,696,420,491,133,200,5,1,0,1,0,0,2,3,422,494,133,202,7,2,1,1,0,0,555,692,417,487,133,200,4,1,0,1,0,0,1,3,418,490,133,202,5,2,0,1,0,0,5,4,3,4,0,0,1,0,0,0,0,0,1,0,4,4,0,0,2,0,1,0,0,0 -050,01,067,Alabama,Henry County,13,15,1161,558,603,422,473,128,120,4,5,0,1,0,0,4,4,425,476,129,121,7,8,0,2,1,0,555,600,419,471,128,120,4,4,0,1,0,0,4,4,422,474,129,121,7,7,0,2,1,0,3,3,3,2,0,0,0,1,0,0,0,0,0,0,3,2,0,0,0,1,0,0,0,0 -050,01,067,Alabama,Henry County,13,16,764,356,408,291,308,53,88,4,0,0,10,0,0,8,2,298,310,54,88,12,2,0,10,0,0,355,406,290,307,53,88,4,0,0,9,0,0,8,2,297,309,54,88,12,2,0,9,0,0,1,2,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0 -050,01,067,Alabama,Henry County,13,17,454,189,265,160,187,29,77,0,0,0,1,0,0,0,0,160,187,29,77,0,0,0,1,0,0,185,264,157,187,28,76,0,0,0,1,0,0,0,0,157,187,28,76,0,0,0,1,0,0,4,1,3,0,1,1,0,0,0,0,0,0,0,0,3,0,1,1,0,0,0,0,0,0 -050,01,067,Alabama,Henry County,13,18,432,111,321,87,238,20,79,0,1,0,2,0,0,4,1,90,239,21,79,2,1,1,3,1,0,108,314,85,233,20,77,0,1,0,2,0,0,3,1,88,234,20,77,2,1,0,3,1,0,3,7,2,5,0,2,0,0,0,0,0,0,1,0,2,5,1,2,0,0,1,0,0,0 -050,01,069,Alabama,Houston County,1,0,101547,48740,52807,35154,37034,12132,14210,254,248,383,470,27,34,790,811,35842,37734,12576,14642,575,595,516,643,66,74,47116,51436,33855,35947,12009,14085,189,210,359,451,20,23,684,720,34463,36574,12383,14458,468,522,478,608,47,54,1624,1371,1299,1087,123,125,65,38,24,19,7,11,106,91,1379,1160,193,184,107,73,38,35,19,20 -050,01,069,Alabama,Houston County,1,1,6731,3479,3252,2170,1962,1091,1090,20,12,33,29,4,4,161,155,2317,2107,1220,1207,43,34,53,54,12,10,3276,3049,2011,1809,1080,1067,9,12,27,29,3,0,146,132,2149,1933,1199,1171,26,25,46,53,7,3,203,203,159,153,11,23,11,0,6,0,1,4,15,23,168,174,21,36,17,9,7,1,5,7 -050,01,069,Alabama,Houston County,1,2,7051,3670,3381,2285,2155,1192,1088,21,12,29,38,0,3,143,85,2410,2233,1297,1144,54,30,53,61,6,5,3517,3239,2172,2045,1179,1073,16,6,26,36,0,3,124,76,2283,2116,1269,1124,42,20,50,55,4,4,153,142,113,110,13,15,5,6,3,2,0,0,19,9,127,117,28,20,12,10,3,6,2,1 -050,01,069,Alabama,Houston County,1,3,6936,3528,3408,2298,2187,1088,1091,15,18,31,16,0,3,96,93,2381,2271,1151,1156,37,41,57,31,5,5,3404,3301,2209,2101,1072,1083,8,15,30,14,0,3,85,85,2284,2179,1129,1141,27,36,54,28,2,5,124,107,89,86,16,8,7,3,1,2,0,0,11,8,97,92,22,15,10,5,3,3,3,0 -050,01,069,Alabama,Houston County,1,4,6690,3400,3290,2156,2071,1137,1111,21,12,16,31,3,0,67,65,2213,2123,1182,1149,45,45,26,46,8,3,3290,3199,2076,2005,1120,1099,17,8,15,30,2,0,60,57,2128,2051,1160,1131,36,37,24,44,7,3,110,91,80,66,17,12,4,4,1,1,1,0,7,8,85,72,22,18,9,8,2,2,1,0 -050,01,069,Alabama,Houston County,1,5,5986,2855,3131,1921,1995,855,1056,18,15,18,19,5,4,38,42,1948,2030,877,1077,37,34,26,29,6,6,2679,3015,1772,1900,845,1048,13,11,17,18,4,2,28,36,1790,1930,862,1063,27,29,24,27,5,4,176,116,149,95,10,8,5,4,1,1,1,2,10,6,158,100,15,14,10,5,2,2,1,2 -050,01,069,Alabama,Houston County,1,6,6579,3178,3401,2208,2210,864,1067,21,27,38,42,3,3,44,52,2249,2252,884,1096,39,43,50,60,7,6,2965,3234,2041,2082,848,1054,13,21,35,39,1,3,27,35,2065,2108,855,1074,28,30,44,55,5,6,213,167,167,128,16,13,8,6,3,3,2,0,17,17,184,144,29,22,11,13,6,5,2,0 -050,01,069,Alabama,Houston County,1,7,6287,2972,3315,2137,2132,738,1073,17,16,38,36,2,6,40,52,2172,2176,751,1100,37,37,50,50,3,8,2817,3207,2014,2046,726,1065,12,11,35,34,2,2,28,49,2038,2088,735,1089,25,31,45,47,2,4,155,108,123,86,12,8,5,5,3,2,0,4,12,3,134,88,16,11,12,6,5,3,1,4 -050,01,069,Alabama,Houston County,1,8,6655,3192,3463,2343,2344,769,1021,20,15,31,44,3,1,26,38,2361,2374,782,1034,36,34,37,60,4,5,3071,3370,2247,2271,762,1013,12,13,31,41,1,0,18,32,2262,2297,767,1022,26,30,35,56,1,3,121,93,96,73,7,8,8,2,0,3,2,1,8,6,99,77,15,12,10,4,2,4,3,2 -050,01,069,Alabama,Houston County,1,9,6565,3179,3386,2370,2353,723,934,14,18,42,44,2,2,28,35,2395,2386,727,943,38,46,47,52,3,4,3085,3313,2291,2295,718,925,10,16,38,43,2,2,26,32,2315,2325,721,933,33,42,42,51,2,4,94,73,79,58,5,9,4,2,4,1,0,0,2,3,80,61,6,10,5,4,5,1,1,0 -050,01,069,Alabama,Houston County,1,10,7355,3539,3816,2701,2747,742,969,24,19,28,43,2,1,42,37,2739,2778,748,979,56,43,33,52,5,6,3453,3746,2625,2685,740,966,23,17,26,42,2,1,37,35,2660,2715,743,975,52,41,30,50,5,4,86,70,76,62,2,3,1,2,2,1,0,0,5,2,79,63,5,4,4,2,3,2,0,2 -050,01,069,Alabama,Houston County,1,11,7406,3581,3825,2700,2799,813,931,13,21,20,30,2,3,33,41,2731,2831,818,945,42,55,21,34,2,5,3532,3762,2652,2746,813,925,12,20,20,28,2,3,33,40,2683,2778,818,938,41,54,21,31,2,5,49,63,48,53,0,6,1,1,0,2,0,0,0,1,48,53,0,7,1,1,0,3,0,0 -050,01,069,Alabama,Houston County,1,12,6648,3089,3559,2382,2692,651,773,17,18,15,40,0,0,24,36,2404,2722,657,783,40,41,16,49,0,4,3032,3524,2334,2665,644,769,15,17,15,40,0,0,24,33,2356,2694,650,777,38,39,16,47,0,2,57,35,48,27,7,4,2,1,0,0,0,0,0,3,48,28,7,6,2,2,0,2,0,2 -050,01,069,Alabama,Houston County,1,13,5983,2880,3103,2292,2433,534,601,13,18,21,25,1,3,19,23,2307,2453,541,606,26,35,22,28,3,5,2858,3078,2273,2411,532,599,12,18,21,25,1,3,19,22,2288,2430,539,604,25,34,22,28,3,5,22,25,19,22,2,2,1,0,0,0,0,0,0,1,19,23,2,2,1,1,0,0,0,0 -050,01,069,Alabama,Houston County,1,14,4594,2110,2484,1742,2008,340,430,8,10,7,14,0,0,13,22,1752,2024,344,438,18,29,8,15,1,0,2080,2463,1716,1989,337,430,7,9,7,13,0,0,13,22,1726,2005,341,438,17,28,8,14,1,0,30,21,26,19,3,0,1,1,0,1,0,0,0,0,26,19,3,0,1,1,0,1,0,0 -050,01,069,Alabama,Houston County,1,15,3574,1591,1983,1333,1637,236,320,6,8,10,5,0,1,6,12,1339,1645,236,325,12,18,10,7,0,2,1582,1958,1325,1615,236,318,5,7,10,5,0,1,6,12,1331,1623,236,323,11,17,10,7,0,2,9,25,8,22,0,2,1,1,0,0,0,0,0,0,8,22,0,2,1,1,0,0,0,0 -050,01,069,Alabama,Houston County,1,16,2827,1190,1637,1002,1347,178,266,3,7,3,9,0,0,4,8,1005,1353,179,269,7,14,3,9,0,0,1183,1625,997,1337,176,265,3,7,3,9,0,0,4,7,1000,1343,177,267,7,13,3,9,0,0,7,12,5,10,2,1,0,0,0,0,0,0,0,1,5,10,2,2,0,1,0,0,0,0 -050,01,069,Alabama,Houston County,1,17,2002,789,1213,685,1013,96,187,2,1,3,4,0,0,3,8,688,1021,96,187,5,8,3,5,0,0,781,1202,678,1003,96,186,1,1,3,4,0,0,3,8,681,1011,96,186,4,8,3,5,0,0,8,11,7,10,0,1,1,0,0,0,0,0,0,0,7,10,0,1,1,0,0,0,0,0 -050,01,069,Alabama,Houston County,1,18,1678,518,1160,429,949,85,202,1,1,0,1,0,0,3,7,431,955,86,204,3,8,1,1,1,0,511,1151,422,942,85,200,1,1,0,1,0,0,3,7,424,948,86,202,3,8,1,1,1,0,7,9,7,7,0,2,0,0,0,0,0,0,0,0,7,7,0,2,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,2,0,101562,48748,52814,35162,37041,12132,14210,254,248,383,470,27,34,790,811,35850,37741,12576,14642,575,595,516,643,66,74,47124,51443,33863,35954,12009,14085,189,210,359,451,20,23,684,720,34471,36581,12383,14458,468,522,478,608,47,54,1624,1371,1299,1087,123,125,65,38,24,19,7,11,106,91,1379,1160,193,184,107,73,38,35,19,20 -050,01,069,Alabama,Houston County,2,1,6730,3478,3252,2169,1962,1091,1090,20,12,33,29,4,4,161,155,2316,2107,1220,1207,43,34,53,54,12,10,3275,3049,2010,1809,1080,1067,9,12,27,29,3,0,146,132,2148,1933,1199,1171,26,25,46,53,7,3,203,203,159,153,11,23,11,0,6,0,1,4,15,23,168,174,21,36,17,9,7,1,5,7 -050,01,069,Alabama,Houston County,2,2,7052,3671,3381,2286,2155,1192,1088,21,12,29,38,0,3,143,85,2411,2233,1297,1144,54,30,53,61,6,5,3518,3239,2173,2045,1179,1073,16,6,26,36,0,3,124,76,2284,2116,1269,1124,42,20,50,55,4,4,153,142,113,110,13,15,5,6,3,2,0,0,19,9,127,117,28,20,12,10,3,6,2,1 -050,01,069,Alabama,Houston County,2,3,6937,3529,3408,2299,2187,1088,1091,15,18,31,16,0,3,96,93,2382,2271,1151,1156,37,41,57,31,5,5,3405,3301,2210,2101,1072,1083,8,15,30,14,0,3,85,85,2285,2179,1129,1141,27,36,54,28,2,5,124,107,89,86,16,8,7,3,1,2,0,0,11,8,97,92,22,15,10,5,3,3,3,0 -050,01,069,Alabama,Houston County,2,4,6690,3400,3290,2156,2071,1137,1111,21,12,16,31,3,0,67,65,2213,2123,1182,1149,45,45,26,46,8,3,3290,3199,2076,2005,1120,1099,17,8,15,30,2,0,60,57,2128,2051,1160,1131,36,37,24,44,7,3,110,91,80,66,17,12,4,4,1,1,1,0,7,8,85,72,22,18,9,8,2,2,1,0 -050,01,069,Alabama,Houston County,2,5,5986,2855,3131,1921,1995,855,1056,18,15,18,19,5,4,38,42,1948,2030,877,1077,37,34,26,29,6,6,2679,3015,1772,1900,845,1048,13,11,17,18,4,2,28,36,1790,1930,862,1063,27,29,24,27,5,4,176,116,149,95,10,8,5,4,1,1,1,2,10,6,158,100,15,14,10,5,2,2,1,2 -050,01,069,Alabama,Houston County,2,6,6577,3177,3400,2207,2209,864,1067,21,27,38,42,3,3,44,52,2248,2251,884,1096,39,43,50,60,7,6,2964,3233,2040,2081,848,1054,13,21,35,39,1,3,27,35,2064,2107,855,1074,28,30,44,55,5,6,213,167,167,128,16,13,8,6,3,3,2,0,17,17,184,144,29,22,11,13,6,5,2,0 -050,01,069,Alabama,Houston County,2,7,6287,2972,3315,2137,2132,738,1073,17,16,38,36,2,6,40,52,2172,2176,751,1100,37,37,50,50,3,8,2817,3207,2014,2046,726,1065,12,11,35,34,2,2,28,49,2038,2088,735,1089,25,31,45,47,2,4,155,108,123,86,12,8,5,5,3,2,0,4,12,3,134,88,16,11,12,6,5,3,1,4 -050,01,069,Alabama,Houston County,2,8,6657,3193,3464,2344,2345,769,1021,20,15,31,44,3,1,26,38,2362,2375,782,1034,36,34,37,60,4,5,3072,3371,2248,2272,762,1013,12,13,31,41,1,0,18,32,2263,2298,767,1022,26,30,35,56,1,3,121,93,96,73,7,8,8,2,0,3,2,1,8,6,99,77,15,12,10,4,2,4,3,2 -050,01,069,Alabama,Houston County,2,9,6566,3180,3386,2371,2353,723,934,14,18,42,44,2,2,28,35,2396,2386,727,943,38,46,47,52,3,4,3086,3313,2292,2295,718,925,10,16,38,43,2,2,26,32,2316,2325,721,933,33,42,42,51,2,4,94,73,79,58,5,9,4,2,4,1,0,0,2,3,80,61,6,10,5,4,5,1,1,0 -050,01,069,Alabama,Houston County,2,10,7355,3540,3815,2702,2746,742,969,24,19,28,43,2,1,42,37,2740,2777,748,979,56,43,33,52,5,6,3454,3745,2626,2684,740,966,23,17,26,42,2,1,37,35,2661,2714,743,975,52,41,30,50,5,4,86,70,76,62,2,3,1,2,2,1,0,0,5,2,79,63,5,4,4,2,3,2,0,2 -050,01,069,Alabama,Houston County,2,11,7409,3582,3827,2701,2801,813,931,13,21,20,30,2,3,33,41,2732,2833,818,945,42,55,21,34,2,5,3533,3764,2653,2748,813,925,12,20,20,28,2,3,33,40,2684,2780,818,938,41,54,21,31,2,5,49,63,48,53,0,6,1,1,0,2,0,0,0,1,48,53,0,7,1,1,0,3,0,0 -050,01,069,Alabama,Houston County,2,12,6651,3091,3560,2384,2693,651,773,17,18,15,40,0,0,24,36,2406,2723,657,783,40,41,16,49,0,4,3034,3525,2336,2666,644,769,15,17,15,40,0,0,24,33,2358,2695,650,777,38,39,16,47,0,2,57,35,48,27,7,4,2,1,0,0,0,0,0,3,48,28,7,6,2,2,0,2,0,2 -050,01,069,Alabama,Houston County,2,13,5986,2881,3105,2293,2435,534,601,13,18,21,25,1,3,19,23,2308,2455,541,606,26,35,22,28,3,5,2859,3080,2274,2413,532,599,12,18,21,25,1,3,19,22,2289,2432,539,604,25,34,22,28,3,5,22,25,19,22,2,2,1,0,0,0,0,0,0,1,19,23,2,2,1,1,0,0,0,0 -050,01,069,Alabama,Houston County,2,14,4597,2111,2486,1743,2010,340,430,8,10,7,14,0,0,13,22,1753,2026,344,438,18,29,8,15,1,0,2081,2465,1717,1991,337,430,7,9,7,13,0,0,13,22,1727,2007,341,438,17,28,8,14,1,0,30,21,26,19,3,0,1,1,0,1,0,0,0,0,26,19,3,0,1,1,0,1,0,0 -050,01,069,Alabama,Houston County,2,15,3574,1591,1983,1333,1637,236,320,6,8,10,5,0,1,6,12,1339,1645,236,325,12,18,10,7,0,2,1582,1958,1325,1615,236,318,5,7,10,5,0,1,6,12,1331,1623,236,323,11,17,10,7,0,2,9,25,8,22,0,2,1,1,0,0,0,0,0,0,8,22,0,2,1,1,0,0,0,0 -050,01,069,Alabama,Houston County,2,16,2827,1190,1637,1002,1347,178,266,3,7,3,9,0,0,4,8,1005,1353,179,269,7,14,3,9,0,0,1183,1625,997,1337,176,265,3,7,3,9,0,0,4,7,1000,1343,177,267,7,13,3,9,0,0,7,12,5,10,2,1,0,0,0,0,0,0,0,1,5,10,2,2,0,1,0,0,0,0 -050,01,069,Alabama,Houston County,2,17,2003,789,1214,685,1014,96,187,2,1,3,4,0,0,3,8,688,1022,96,187,5,8,3,5,0,0,781,1203,678,1004,96,186,1,1,3,4,0,0,3,8,681,1012,96,186,4,8,3,5,0,0,8,11,7,10,0,1,1,0,0,0,0,0,0,0,7,10,0,1,1,0,0,0,0,0 -050,01,069,Alabama,Houston County,2,18,1678,518,1160,429,949,85,202,1,1,0,1,0,0,3,7,431,955,86,204,3,8,1,1,1,0,511,1151,422,942,85,200,1,1,0,1,0,0,3,7,424,948,86,202,3,8,1,1,1,0,7,9,7,7,0,2,0,0,0,0,0,0,0,0,7,7,0,2,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,3,0,101800,48874,52926,35254,37129,12163,14237,248,244,385,475,27,34,797,807,35962,37834,12577,14650,552,582,525,622,78,80,47241,51537,33944,36027,12042,14110,187,207,360,456,20,22,688,715,34558,36653,12406,14475,444,511,480,585,61,63,1633,1389,1310,1102,121,127,61,37,25,19,7,12,109,92,1404,1181,171,175,108,71,45,37,17,17 -050,01,069,Alabama,Houston County,3,1,6741,3477,3264,2171,1971,1095,1094,18,11,29,29,4,4,160,155,2322,2117,1210,1209,38,39,61,56,14,7,3272,3056,2007,1813,1085,1071,8,11,24,29,3,0,145,132,2145,1939,1194,1174,23,30,52,51,11,3,205,208,164,158,10,23,10,0,5,0,1,4,15,23,177,178,16,35,15,9,9,5,3,4 -050,01,069,Alabama,Houston County,3,2,7035,3667,3368,2292,2139,1177,1088,22,12,32,37,0,3,144,89,2423,2223,1274,1148,53,27,55,53,8,8,3508,3223,2174,2027,1165,1073,16,6,29,35,0,3,124,79,2287,2101,1253,1130,39,19,50,48,5,6,159,145,118,112,12,15,6,6,3,2,0,0,20,10,136,122,21,18,14,8,5,5,3,2 -050,01,069,Alabama,Houston County,3,3,6982,3566,3416,2312,2198,1111,1089,15,17,27,18,0,3,101,91,2405,2281,1172,1145,45,42,42,34,5,7,3437,3304,2218,2109,1096,1079,8,14,26,16,0,3,89,83,2301,2185,1149,1133,33,35,40,30,5,6,129,112,94,89,15,10,7,3,1,2,0,0,12,8,104,96,23,12,12,7,2,4,0,1 -050,01,069,Alabama,Houston County,3,4,6647,3374,3273,2141,2068,1125,1100,19,11,17,31,3,0,69,63,2205,2126,1162,1137,41,34,28,41,7,3,3263,3182,2060,2000,1108,1089,16,7,16,30,2,0,61,56,2116,2052,1143,1122,34,27,25,39,6,3,111,91,81,68,17,11,3,4,1,1,1,0,8,7,89,74,19,15,7,7,3,2,1,0 -050,01,069,Alabama,Houston County,3,5,6041,2894,3147,1942,2007,872,1061,18,12,19,21,5,4,38,42,1970,2045,894,1083,33,27,25,28,10,7,2724,3036,1800,1915,861,1054,13,9,18,20,4,2,28,36,1821,1947,877,1072,25,22,22,27,7,5,170,111,142,92,11,7,5,3,1,1,1,2,10,6,149,98,17,11,8,5,3,1,3,2 -050,01,069,Alabama,Houston County,3,6,6591,3192,3399,2227,2210,861,1064,19,28,38,43,3,2,44,52,2265,2251,881,1088,38,48,51,57,3,7,2982,3233,2059,2083,849,1050,12,21,34,40,1,2,27,37,2082,2112,862,1066,24,34,41,51,1,7,210,166,168,127,12,14,7,7,4,3,2,0,17,15,183,139,19,22,14,14,10,6,2,0 -050,01,069,Alabama,Houston County,3,7,6307,2976,3331,2140,2148,739,1073,15,16,39,34,2,7,41,53,2176,2192,754,1095,37,39,47,48,5,11,2818,3216,2015,2057,726,1066,11,11,35,32,2,2,29,48,2040,2096,735,1085,27,33,41,45,5,6,158,115,125,91,13,7,4,5,4,2,0,5,12,5,136,96,19,10,10,6,6,3,0,5 -050,01,069,Alabama,Houston County,3,8,6644,3175,3469,2318,2341,779,1028,19,16,31,46,3,1,25,37,2337,2370,789,1042,36,35,33,54,6,5,3056,3377,2224,2269,771,1019,11,14,31,43,1,0,18,32,2237,2293,778,1029,24,32,33,51,2,4,119,92,94,72,8,9,8,2,0,3,2,1,7,5,100,77,11,13,12,3,0,3,4,1 -050,01,069,Alabama,Houston County,3,9,6596,3196,3400,2390,2359,721,945,15,18,41,44,2,2,27,32,2414,2382,727,956,33,38,46,51,3,5,3101,3325,2311,2299,715,936,11,16,37,43,2,2,25,29,2333,2320,720,945,28,35,42,50,3,4,95,75,79,60,6,9,4,2,4,1,0,0,2,3,81,62,7,11,5,3,4,1,0,1 -050,01,069,Alabama,Houston County,3,10,7335,3531,3804,2689,2737,742,966,24,18,30,43,2,1,44,39,2725,2767,754,979,55,47,36,47,7,6,3441,3737,2610,2679,740,963,23,16,28,42,2,1,38,36,2642,2708,750,974,50,43,33,46,6,5,90,67,79,58,2,3,1,2,2,1,0,0,6,3,83,59,4,5,5,4,3,1,1,1 -050,01,069,Alabama,Houston County,3,11,7413,3586,3827,2705,2807,814,928,13,21,20,32,2,2,32,37,2731,2836,821,939,38,49,26,36,3,5,3539,3762,2659,2752,814,922,12,20,20,30,2,2,32,36,2685,2780,821,932,37,48,26,34,3,5,47,65,46,55,0,6,1,1,0,2,0,0,0,1,46,56,0,7,1,1,0,2,0,0 -050,01,069,Alabama,Houston County,3,12,6709,3126,3583,2417,2709,653,778,16,19,17,38,0,0,23,39,2437,2741,656,790,32,49,23,47,1,2,3070,3546,2371,2681,645,774,14,18,17,38,0,0,23,35,2391,2710,648,785,30,47,23,44,1,2,56,37,46,28,8,4,2,1,0,0,0,0,0,4,46,31,8,5,2,2,0,3,0,0 -050,01,069,Alabama,Houston County,3,13,5996,2868,3128,2288,2450,525,608,13,18,21,26,1,4,20,22,2303,2470,529,613,31,36,23,29,2,4,2844,3099,2267,2425,523,605,12,18,21,26,1,4,20,21,2282,2444,527,609,30,36,23,29,2,4,24,29,21,25,2,3,1,0,0,0,0,0,0,1,21,26,2,4,1,0,0,0,0,0 -050,01,069,Alabama,Houston County,3,14,4650,2135,2515,1757,2035,349,433,9,11,8,14,0,0,12,22,1767,2056,352,435,17,28,9,18,2,1,2105,2495,1730,2017,346,433,9,10,8,13,0,0,12,22,1740,2038,349,435,17,27,9,17,2,1,30,20,27,18,3,0,0,1,0,1,0,0,0,0,27,18,3,0,0,1,0,1,0,0 -050,01,069,Alabama,Houston County,3,15,3577,1597,1980,1338,1629,236,325,7,7,9,6,0,1,7,12,1345,1638,236,329,14,17,10,7,1,2,1588,1958,1330,1609,236,323,6,7,9,6,0,1,7,12,1337,1618,236,327,13,17,10,7,1,2,9,22,8,20,0,2,1,0,0,0,0,0,0,0,8,20,0,2,1,0,0,0,0,0 -050,01,069,Alabama,Houston County,3,16,2843,1199,1644,1007,1356,181,266,3,7,4,7,0,0,4,8,1011,1363,183,268,5,13,4,8,0,0,1192,1631,1002,1345,179,265,3,7,4,7,0,0,4,7,1006,1352,181,266,5,12,4,8,0,0,7,13,5,11,2,1,0,0,0,0,0,0,0,1,5,11,2,2,0,1,0,0,0,0 -050,01,069,Alabama,Houston County,3,17,2012,790,1222,683,1021,99,188,2,1,3,5,0,0,3,7,686,1028,99,188,3,7,5,6,1,0,783,1210,677,1010,99,187,1,1,3,5,0,0,3,7,680,1017,99,187,2,7,5,6,1,0,7,12,6,11,0,1,1,0,0,0,0,0,0,0,6,11,0,1,1,0,0,0,0,0 -050,01,069,Alabama,Houston County,3,18,1681,525,1156,437,944,84,203,1,1,0,1,0,0,3,7,440,948,84,206,3,7,1,2,0,0,518,1147,430,937,84,201,1,1,0,1,0,0,3,7,433,941,84,204,3,7,1,2,0,0,7,9,7,7,0,2,0,0,0,0,0,0,0,0,7,7,0,2,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,4,0,102509,49053,53456,35297,37351,12273,14447,242,244,380,512,29,37,832,865,36026,38113,12729,14889,553,591,536,666,68,87,47422,51991,33982,36194,12151,14313,187,204,354,492,20,24,728,764,34620,36868,12556,14706,455,506,491,630,51,63,1631,1465,1315,1157,122,134,55,40,26,20,9,13,104,101,1406,1245,173,183,98,85,45,36,17,24 -050,01,069,Alabama,Houston County,4,1,6645,3353,3292,2096,1984,1067,1106,13,6,25,28,3,3,149,165,2232,2132,1179,1227,34,33,54,57,6,12,3148,3064,1924,1803,1052,1086,9,6,21,28,2,0,140,141,2053,1930,1158,1196,26,25,48,52,5,5,205,228,172,181,15,20,4,0,4,0,1,3,9,24,179,202,21,31,8,8,6,5,1,7 -050,01,069,Alabama,Houston County,4,2,6978,3639,3339,2286,2107,1148,1065,21,10,34,44,3,5,147,108,2423,2209,1251,1140,46,34,61,58,9,8,3465,3177,2151,1981,1139,1049,13,6,30,42,1,3,131,96,2273,2071,1235,1117,34,25,54,56,4,6,174,162,135,126,9,16,8,4,4,2,2,2,16,12,150,138,16,23,12,9,7,2,5,2 -050,01,069,Alabama,Houston County,4,3,7132,3645,3487,2312,2237,1173,1101,16,16,24,21,0,3,120,109,2418,2335,1257,1172,47,46,44,37,4,8,3522,3362,2223,2150,1160,1083,10,11,22,19,0,3,107,96,2320,2238,1235,1147,37,34,39,35,3,6,123,125,89,87,13,18,6,5,2,2,0,0,13,13,98,97,22,25,10,12,5,2,1,2 -050,01,069,Alabama,Houston County,4,4,6511,3276,3235,2093,2049,1075,1077,17,12,19,25,2,1,70,71,2155,2112,1114,1120,40,31,32,40,7,7,3164,3136,2010,1973,1059,1067,13,8,18,24,1,1,63,63,2065,2028,1098,1107,33,24,28,37,5,7,112,99,83,76,16,10,4,4,1,1,1,0,7,8,90,84,16,13,7,7,4,3,2,0 -050,01,069,Alabama,Houston County,4,5,6078,2941,3137,1953,1969,894,1090,18,10,19,25,6,2,51,41,1999,2006,919,1109,37,28,32,32,6,4,2804,3045,1846,1894,880,1086,17,7,18,24,5,1,38,33,1880,1924,899,1102,30,21,28,30,5,2,137,92,107,75,14,4,1,3,1,1,1,1,13,8,119,82,20,7,7,7,4,2,1,2 -050,01,069,Alabama,Houston County,4,6,6660,3204,3456,2221,2237,877,1083,17,28,35,50,3,5,51,53,2263,2278,901,1106,41,51,47,64,7,11,3003,3285,2060,2103,866,1066,9,21,32,47,1,4,35,44,2091,2138,880,1087,25,39,42,58,3,8,201,171,161,134,11,17,8,7,3,3,2,1,16,9,172,140,21,19,16,12,5,6,4,3 -050,01,069,Alabama,Houston County,4,7,6401,3022,3379,2165,2162,762,1098,14,20,36,39,2,5,43,55,2200,2208,778,1125,35,42,47,51,6,8,2866,3260,2041,2072,750,1091,11,15,31,37,2,1,31,44,2064,2108,761,1110,27,33,41,49,5,4,156,119,124,90,12,7,3,5,5,2,0,4,12,11,136,100,17,15,8,9,6,2,1,4 -050,01,069,Alabama,Houston County,4,8,6506,3061,3445,2236,2300,751,1028,18,18,27,55,3,4,26,40,2255,2336,762,1037,34,42,32,63,5,7,2933,3354,2137,2231,739,1019,11,14,27,51,1,2,18,37,2148,2264,745,1027,25,36,31,59,3,5,128,91,99,69,12,9,7,4,0,4,2,2,8,3,107,72,17,10,9,6,1,4,2,2 -050,01,069,Alabama,Houston County,4,9,6721,3251,3470,2440,2391,721,994,17,16,44,39,1,2,28,28,2463,2417,728,999,36,32,50,45,4,5,3153,3391,2361,2323,715,986,12,14,40,39,1,2,24,27,2380,2348,722,990,28,30,45,45,4,5,98,79,79,68,6,8,5,2,4,0,0,0,4,1,83,69,6,9,8,2,5,0,0,0 -050,01,069,Alabama,Houston County,4,10,7223,3478,3745,2617,2687,765,957,25,19,30,41,2,1,39,40,2654,2721,773,968,53,46,33,47,5,4,3379,3681,2529,2633,764,955,23,17,28,40,2,1,33,35,2560,2664,769,963,47,40,31,45,5,4,99,64,88,54,1,2,2,2,2,1,0,0,6,5,94,57,4,5,6,6,2,2,0,0 -050,01,069,Alabama,Houston County,4,11,7431,3613,3818,2724,2803,824,923,14,22,18,41,3,2,30,27,2746,2823,832,931,38,41,24,48,4,2,3562,3748,2675,2745,823,916,13,20,18,38,3,2,30,27,2697,2765,831,924,37,39,24,45,4,2,51,70,49,58,1,7,1,2,0,3,0,0,0,0,49,58,1,7,1,2,0,3,0,0 -050,01,069,Alabama,Houston County,4,12,6879,3238,3641,2499,2721,673,820,16,19,24,33,0,0,26,48,2520,2759,680,835,35,58,28,43,2,1,3183,3597,2452,2687,669,816,12,18,24,33,0,0,26,43,2473,2720,676,828,31,54,28,41,2,0,55,44,47,34,4,4,4,1,0,0,0,0,0,5,47,39,4,7,4,4,0,2,0,1 -050,01,069,Alabama,Houston County,4,13,6187,2908,3279,2318,2558,540,645,12,17,15,34,1,3,22,22,2339,2577,543,649,27,33,19,36,2,7,2879,3241,2294,2527,536,639,11,17,15,34,1,3,22,21,2315,2545,539,643,26,33,19,35,2,6,29,38,24,31,4,6,1,0,0,0,0,0,0,1,24,32,4,6,1,0,0,1,0,1 -050,01,069,Alabama,Houston County,4,14,4852,2250,2602,1830,2104,387,448,11,13,11,16,0,0,11,21,1838,2123,390,451,20,30,12,18,1,1,2220,2580,1803,2083,384,448,11,13,11,15,0,0,11,21,1811,2102,387,451,20,30,12,17,1,1,30,22,27,21,3,0,0,0,0,1,0,0,0,0,27,21,3,0,0,0,0,1,0,0 -050,01,069,Alabama,Houston County,4,15,3593,1605,1988,1338,1621,243,336,7,7,9,9,0,1,8,14,1344,1635,245,338,15,18,10,10,0,2,1592,1965,1325,1601,243,334,7,6,9,9,0,1,8,14,1331,1615,245,336,15,17,10,10,0,2,13,23,13,20,0,2,0,1,0,0,0,0,0,0,13,20,0,2,0,1,0,0,0,0 -050,01,069,Alabama,Houston County,4,16,2898,1229,1669,1028,1379,188,268,3,9,6,4,0,0,4,9,1032,1388,189,270,6,14,6,6,0,0,1224,1655,1024,1367,187,267,3,9,6,4,0,0,4,8,1028,1375,188,269,6,14,6,5,0,0,5,14,4,12,1,1,0,0,0,0,0,0,0,1,4,13,1,1,0,0,0,1,0,0 -050,01,069,Alabama,Houston County,4,17,2082,817,1265,705,1057,103,192,1,1,4,7,0,0,4,8,707,1065,105,194,4,7,5,8,0,0,810,1252,698,1045,103,191,1,1,4,7,0,0,4,8,700,1053,105,193,4,7,5,8,0,0,7,13,7,12,0,1,0,0,0,0,0,0,0,0,7,12,0,1,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,4,18,1732,523,1209,436,985,82,216,2,1,0,1,0,0,3,6,438,989,83,218,5,5,0,3,0,0,515,1198,429,976,82,214,1,1,0,1,0,0,3,6,431,980,83,216,4,5,0,3,0,0,8,11,7,9,0,2,1,0,0,0,0,0,0,0,7,9,0,2,1,0,0,0,0,0 -050,01,069,Alabama,Houston County,5,0,103410,49621,53789,35443,37437,12620,14614,256,260,382,535,33,40,887,903,36233,38228,13089,15096,589,627,548,697,78,84,47970,52260,34112,36220,12502,14476,195,214,360,512,21,28,780,810,34806,36925,12927,14909,481,543,503,661,59,66,1651,1529,1331,1217,118,138,61,46,22,23,12,12,107,93,1427,1303,162,187,108,84,45,36,19,18 -050,01,069,Alabama,Houston County,5,1,6719,3446,3273,2106,1973,1112,1101,15,9,27,21,3,2,183,167,2277,2128,1248,1229,43,36,57,50,8,7,3229,3073,1927,1813,1096,1081,8,9,25,21,2,0,171,149,2086,1951,1225,1200,32,28,54,48,7,4,217,200,179,160,16,20,7,0,2,0,1,2,12,18,191,177,23,29,11,8,3,2,1,3 -050,01,069,Alabama,Houston County,5,2,6924,3627,3297,2279,2032,1145,1077,27,12,29,46,5,7,142,123,2413,2145,1243,1169,51,39,55,64,9,9,3437,3111,2133,1886,1135,1060,18,5,24,44,1,4,126,112,2252,1989,1225,1144,36,27,47,62,5,5,190,186,146,146,10,17,9,7,5,2,4,3,16,11,161,156,18,25,15,12,8,2,4,4 -050,01,069,Alabama,Houston County,5,3,7133,3676,3457,2307,2218,1208,1089,14,17,27,23,1,3,119,107,2416,2315,1283,1161,43,41,47,44,7,10,3538,3337,2201,2133,1197,1073,10,12,24,22,0,3,106,94,2298,2217,1265,1138,35,34,42,40,5,9,138,120,106,85,11,16,4,5,3,1,1,0,13,13,118,98,18,23,8,7,5,4,2,1 -050,01,069,Alabama,Houston County,5,4,6470,3274,3196,2090,2040,1056,1040,15,15,22,23,2,2,89,76,2171,2108,1110,1085,46,39,39,37,6,5,3164,3077,2005,1945,1043,1027,12,11,21,22,1,2,82,70,2079,2008,1096,1069,40,31,35,36,5,5,110,119,85,95,13,13,3,4,1,1,1,0,7,6,92,100,14,16,6,8,4,1,1,0 -050,01,069,Alabama,Houston County,5,5,6243,3033,3210,2000,1997,943,1137,16,9,14,24,5,1,55,42,2045,2032,969,1161,40,25,24,31,10,3,2915,3109,1905,1916,935,1131,15,7,13,22,4,0,43,33,1939,1942,958,1151,32,19,21,28,8,2,118,101,95,81,8,6,1,2,1,2,1,1,12,9,106,90,11,10,8,6,3,3,2,1 -050,01,069,Alabama,Houston County,5,6,6687,3219,3468,2167,2246,944,1090,22,26,40,50,3,4,43,52,2204,2291,960,1115,40,47,52,61,8,8,3019,3281,2004,2094,934,1077,11,19,38,45,2,3,30,43,2032,2132,945,1096,23,37,47,54,4,7,200,187,163,152,10,13,11,7,2,5,1,1,13,9,172,159,15,19,17,10,5,7,4,1 -050,01,069,Alabama,Houston County,5,7,6510,3123,3387,2178,2161,835,1085,20,20,41,53,2,5,47,63,2216,2214,852,1111,43,52,57,68,4,8,2983,3275,2076,2076,820,1075,17,14,36,53,1,4,33,53,2102,2119,832,1097,32,40,47,68,3,6,140,112,102,85,15,10,3,6,5,0,1,1,14,10,114,95,20,14,11,12,10,0,1,2 -050,01,069,Alabama,Houston County,5,8,6430,3012,3418,2189,2243,745,1049,16,22,27,55,5,7,30,42,2214,2277,754,1064,34,44,34,67,6,10,2873,3314,2080,2169,734,1039,8,16,27,49,3,3,21,38,2096,2199,739,1052,22,37,33,60,4,6,139,104,109,74,11,10,8,6,0,6,2,4,9,4,118,78,15,12,12,7,1,7,2,4 -050,01,069,Alabama,Houston County,5,9,6821,3256,3565,2441,2481,738,991,17,15,35,40,0,2,25,36,2463,2507,746,1004,35,41,38,45,1,6,3155,3488,2357,2415,730,982,13,14,35,40,0,2,20,35,2375,2441,735,994,29,39,37,44,0,6,101,77,84,66,8,9,4,1,0,0,0,0,5,1,88,66,11,10,6,2,1,1,1,0 -050,01,069,Alabama,Houston County,5,10,7037,3414,3623,2564,2562,763,967,19,21,32,36,3,1,33,36,2591,2589,771,981,43,44,37,43,6,4,3322,3552,2484,2502,760,964,16,19,29,35,3,1,30,31,2509,2525,767,975,38,41,33,41,6,3,92,71,80,60,3,3,3,2,3,1,0,0,3,5,82,64,4,6,5,3,4,2,0,1 -050,01,069,Alabama,Houston County,5,11,7455,3572,3883,2683,2826,818,959,20,20,17,49,2,2,32,27,2713,2851,822,963,47,41,21,52,4,4,3514,3811,2631,2765,817,953,18,18,17,46,2,2,29,27,2658,2790,821,957,44,39,20,49,3,4,58,72,52,61,1,6,2,2,0,3,0,0,3,0,55,61,1,6,3,2,1,3,1,0 -050,01,069,Alabama,Houston County,5,12,6984,3311,3673,2529,2713,707,853,17,24,23,34,1,0,34,49,2554,2756,716,864,45,63,27,39,3,1,3265,3619,2487,2670,705,849,15,22,23,34,1,0,34,44,2512,2708,714,858,43,58,27,39,3,1,46,54,42,43,2,4,2,2,0,0,0,0,0,5,42,48,2,6,2,5,0,0,0,0 -050,01,069,Alabama,Houston County,5,13,6229,2941,3288,2314,2535,576,671,15,18,13,37,1,3,22,24,2333,2555,579,674,32,36,19,42,2,6,2904,3250,2285,2504,571,665,12,17,13,37,1,3,22,24,2304,2524,574,668,29,35,19,42,2,6,37,38,29,31,5,6,3,1,0,0,0,0,0,0,29,31,5,6,3,1,0,0,0,0 -050,01,069,Alabama,Houston County,5,14,5185,2420,2765,1978,2248,406,467,10,12,13,18,0,0,13,20,1989,2266,407,469,21,29,15,21,1,0,2392,2740,1954,2225,402,467,10,12,13,17,0,0,13,19,1965,2242,403,469,21,29,15,19,1,0,28,25,24,23,4,0,0,0,0,1,0,0,0,1,24,24,4,0,0,0,0,2,0,0 -050,01,069,Alabama,Houston County,5,15,3740,1662,2078,1392,1690,243,352,7,8,12,12,0,1,8,15,1400,1701,244,356,13,19,13,15,0,2,1645,2053,1375,1669,243,350,7,7,12,11,0,1,8,15,1383,1680,244,354,13,18,13,14,0,2,17,25,17,21,0,2,0,1,0,1,0,0,0,0,17,21,0,2,0,1,0,1,0,0 -050,01,069,Alabama,Houston County,5,16,2943,1247,1696,1037,1397,200,277,2,9,5,5,0,0,3,8,1039,1403,201,279,3,15,6,7,1,1,1243,1681,1034,1384,199,276,2,9,5,5,0,0,3,7,1036,1389,200,278,3,15,6,6,1,0,4,15,3,13,1,1,0,0,0,0,0,0,0,1,3,14,1,1,0,0,0,1,0,1 -050,01,069,Alabama,Houston County,5,17,2116,852,1264,743,1046,96,198,2,2,5,7,0,0,6,11,747,1056,98,199,6,11,6,9,2,0,845,1255,736,1037,96,198,2,2,5,7,0,0,6,11,740,1047,98,199,6,11,6,9,2,0,7,9,7,9,0,0,0,0,0,0,0,0,0,0,7,9,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,5,18,1784,536,1248,446,1029,85,211,2,1,0,2,0,0,3,5,448,1034,86,212,4,5,1,2,0,0,527,1234,438,1017,85,209,1,1,0,2,0,0,3,5,440,1022,86,210,3,5,1,2,0,0,9,14,8,12,0,2,1,0,0,0,0,0,0,0,8,12,0,2,1,0,0,0,0,0 -050,01,069,Alabama,Houston County,6,0,103691,49745,53946,35449,37493,12727,14681,255,251,386,524,33,47,895,950,36245,38326,13211,15187,581,621,556,712,87,99,48047,52418,34087,36276,12592,14539,188,206,364,503,21,33,795,861,34796,37030,13035,15003,469,537,515,674,61,80,1698,1528,1362,1217,135,142,67,45,22,21,12,14,100,89,1449,1296,176,184,112,84,41,38,26,19 -050,01,069,Alabama,Houston County,6,1,6502,3321,3181,2004,1928,1104,1062,16,7,30,17,2,3,165,164,2153,2080,1231,1186,42,27,58,45,8,9,3127,2990,1847,1769,1087,1043,5,7,29,17,2,0,157,154,1989,1911,1210,1163,29,23,55,44,7,5,194,191,157,159,17,19,11,0,1,0,0,3,8,10,164,169,21,23,13,4,3,1,1,4 -050,01,069,Alabama,Houston County,6,2,6875,3601,3274,2282,2016,1108,1056,25,12,29,45,4,6,153,139,2427,2143,1217,1158,55,37,57,71,8,14,3398,3074,2123,1862,1095,1037,17,6,22,43,1,3,140,123,2255,1975,1197,1130,42,27,48,66,5,9,203,200,159,154,13,19,8,6,7,2,3,3,13,16,172,168,20,28,13,10,9,5,3,5 -050,01,069,Alabama,Houston County,6,3,7240,3721,3519,2330,2255,1222,1111,11,15,29,28,3,7,126,103,2445,2344,1308,1180,37,44,55,44,8,12,3577,3378,2220,2148,1207,1096,7,11,27,27,0,6,116,90,2326,2225,1289,1158,30,34,49,42,5,11,144,141,110,107,15,15,4,4,2,1,3,1,10,13,119,119,19,22,7,10,6,2,3,1 -050,01,069,Alabama,Houston County,6,4,6436,3294,3142,2094,2016,1059,1008,18,16,23,18,2,2,98,82,2179,2090,1118,1056,50,41,43,32,9,8,3158,3044,1993,1940,1042,1000,14,12,20,17,1,2,88,73,2069,2005,1097,1045,42,32,37,29,7,8,136,98,101,76,17,8,4,4,3,1,1,0,10,9,110,85,21,11,8,9,6,3,2,0 -050,01,069,Alabama,Houston County,6,5,6378,3109,3269,2028,2015,1003,1161,14,13,14,26,5,1,45,53,2069,2062,1026,1190,28,31,24,36,7,5,2983,3167,1930,1934,993,1152,10,10,14,25,4,0,32,46,1960,1976,1009,1177,19,26,21,33,6,3,126,102,98,81,10,9,4,3,0,1,1,1,13,7,109,86,17,13,9,5,3,3,1,2 -050,01,069,Alabama,Houston County,6,6,6649,3194,3455,2180,2243,925,1093,12,18,33,40,2,6,42,55,2211,2288,944,1120,32,35,43,57,7,12,3015,3305,2022,2122,917,1080,9,13,32,37,2,5,33,48,2047,2160,932,1104,24,27,41,53,4,11,179,150,158,121,8,13,3,5,1,3,0,1,9,7,164,128,12,16,8,8,2,4,3,1 -050,01,069,Alabama,Houston County,6,7,6627,3164,3463,2196,2233,869,1096,17,20,31,48,2,5,49,61,2240,2288,882,1121,43,46,43,64,6,7,3010,3349,2083,2146,853,1085,13,15,27,47,0,4,34,52,2113,2193,862,1106,30,37,38,61,2,6,154,114,113,87,16,11,4,5,4,1,2,1,15,9,127,95,20,15,13,9,5,3,4,1 -050,01,069,Alabama,Houston County,6,8,6379,2968,3411,2152,2229,725,1058,21,17,33,54,5,8,32,45,2177,2266,737,1078,41,40,38,68,9,10,2816,3287,2031,2137,716,1046,10,9,32,49,3,4,24,42,2050,2171,726,1063,25,32,36,63,4,6,152,124,121,92,9,12,11,8,1,5,2,4,8,3,127,95,11,15,16,8,2,5,5,4 -050,01,069,Alabama,Houston County,6,9,6879,3283,3596,2425,2495,774,1006,17,17,36,36,1,1,30,41,2448,2530,784,1019,35,43,42,44,5,4,3183,3507,2348,2423,763,997,12,14,36,34,1,1,23,38,2365,2456,771,1008,27,38,41,42,3,4,100,89,77,72,11,9,5,3,0,2,0,0,7,3,83,74,13,11,8,5,1,2,2,0 -050,01,069,Alabama,Houston County,6,10,6830,3332,3498,2510,2465,740,930,21,21,28,41,3,1,30,40,2539,2494,743,942,42,51,32,52,6,4,3242,3427,2433,2405,736,926,16,20,26,40,3,1,28,35,2460,2431,738,937,37,46,30,48,5,3,90,71,77,60,4,4,5,1,2,1,0,0,2,5,79,63,5,5,5,5,2,4,1,1 -050,01,069,Alabama,Houston County,6,11,7363,3531,3832,2661,2773,790,967,20,16,24,45,2,2,34,29,2691,2796,796,975,45,36,29,51,6,6,3459,3764,2598,2715,789,961,18,14,23,43,2,2,29,29,2624,2738,793,969,39,34,27,49,5,6,72,68,63,58,1,6,2,2,1,2,0,0,5,0,67,58,3,6,6,2,2,2,1,0 -050,01,069,Alabama,Houston County,6,12,7026,3327,3699,2533,2701,721,884,16,27,24,39,1,1,32,47,2559,2741,729,895,41,64,31,48,2,2,3292,3644,2500,2658,720,878,15,26,24,39,1,1,32,42,2526,2694,728,887,40,59,31,47,2,2,35,55,33,43,1,6,1,1,0,0,0,0,0,5,33,47,1,8,1,5,0,1,0,0 -050,01,069,Alabama,Houston County,6,13,6266,2954,3312,2281,2536,619,691,19,16,12,37,0,3,23,29,2302,2559,622,698,35,38,17,42,2,4,2915,3277,2254,2508,611,686,15,14,12,37,0,3,23,29,2275,2531,614,693,31,36,17,42,2,4,39,35,27,28,8,5,4,2,0,0,0,0,0,0,27,28,8,5,4,2,0,0,0,0 -050,01,069,Alabama,Houston County,6,14,5381,2533,2848,2075,2291,413,498,12,17,15,21,1,0,17,21,2090,2311,415,502,24,34,17,24,4,1,2506,2823,2052,2268,409,497,12,17,15,21,1,0,17,20,2067,2287,411,501,24,34,17,23,4,1,27,25,23,23,4,1,0,0,0,0,0,0,0,1,23,24,4,1,0,0,0,1,0,0 -050,01,069,Alabama,Houston County,6,15,3886,1716,2170,1420,1762,268,368,8,6,14,15,0,1,6,18,1426,1779,269,371,13,21,14,18,0,1,1691,2145,1395,1742,268,366,8,5,14,13,0,1,6,18,1401,1759,269,369,13,20,14,16,0,1,25,25,25,20,0,2,0,1,0,2,0,0,0,0,25,20,0,2,0,1,0,2,0,0 -050,01,069,Alabama,Houston County,6,16,3016,1284,1732,1074,1436,196,276,4,7,5,4,0,0,5,9,1077,1442,198,279,9,16,5,4,0,0,1279,1717,1070,1423,195,275,4,7,5,4,0,0,5,8,1073,1428,197,278,9,15,5,4,0,0,5,15,4,13,1,1,0,0,0,0,0,0,0,1,4,14,1,1,0,1,0,0,0,0 -050,01,069,Alabama,Houston County,6,17,2116,860,1256,751,1036,97,199,2,5,6,8,0,0,4,8,755,1044,97,199,5,12,7,9,0,0,854,1246,745,1026,97,199,2,5,6,8,0,0,4,8,749,1034,97,199,5,12,7,9,0,0,6,10,6,10,0,0,0,0,0,0,0,0,0,0,6,10,0,0,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,6,18,1842,553,1289,453,1063,94,217,2,1,0,2,0,0,4,6,457,1069,95,218,4,5,1,3,0,0,542,1274,443,1050,94,215,1,1,0,2,0,0,4,6,447,1056,95,216,3,5,1,3,0,0,11,15,10,13,0,2,1,0,0,0,0,0,0,0,10,13,0,2,1,0,0,0,0,0 -050,01,069,Alabama,Houston County,7,0,104216,49994,54222,35485,37447,12900,14928,247,271,401,539,33,50,928,987,36306,38312,13404,15450,594,652,575,718,85,113,48248,52650,34075,36198,12770,14798,176,213,380,517,20,33,827,891,34809,36982,13226,15275,475,551,534,675,66,86,1746,1572,1410,1249,130,130,71,58,21,22,13,17,101,96,1497,1330,178,175,119,101,41,43,19,27 -050,01,069,Alabama,Houston County,7,1,6418,3331,3087,2006,1886,1098,1007,16,9,35,21,1,4,175,160,2171,2036,1223,1128,42,32,68,48,9,9,3150,2904,1857,1732,1086,994,6,5,35,21,1,0,165,152,2012,1874,1207,1111,28,26,66,46,9,5,181,183,149,154,12,13,10,4,0,0,0,4,10,8,159,162,16,17,14,6,2,2,0,4 -050,01,069,Alabama,Houston County,7,2,6798,3544,3254,2223,1987,1115,1061,27,12,25,40,6,7,148,147,2359,2120,1222,1166,56,41,52,63,12,14,3314,3046,2045,1829,1099,1042,16,8,17,37,2,2,135,128,2169,1946,1199,1136,40,31,43,58,7,6,230,208,178,158,16,19,11,4,8,3,4,5,13,19,190,174,23,30,16,10,9,5,5,8 -050,01,069,Alabama,Houston County,7,3,7270,3769,3501,2339,2184,1254,1150,7,13,32,38,2,7,135,109,2460,2284,1347,1223,37,37,57,59,8,10,3627,3344,2223,2062,1245,1133,6,8,29,37,0,6,124,98,2333,2152,1333,1201,32,28,52,53,6,9,142,157,116,122,9,17,1,5,3,1,2,1,11,11,127,132,14,22,5,9,5,6,2,1 -050,01,069,Alabama,Houston County,7,4,6441,3308,3133,2106,1998,1070,1003,17,19,21,21,3,3,91,89,2188,2079,1123,1059,45,43,36,41,11,5,3183,3035,2016,1921,1053,998,8,14,21,19,1,3,84,80,2091,1995,1105,1049,32,35,34,36,8,5,125,98,90,77,17,5,9,5,0,2,2,0,7,9,97,84,18,10,13,8,2,5,3,0 -050,01,069,Alabama,Houston County,7,5,6450,3098,3352,1991,2085,1013,1171,18,13,16,20,2,1,58,62,2041,2139,1044,1208,42,33,29,30,6,6,2954,3246,1874,2000,1002,1162,14,9,13,20,2,0,49,55,1916,2048,1028,1195,34,25,24,30,6,5,144,106,117,85,11,9,4,4,3,0,0,1,9,7,125,91,16,13,8,8,5,0,0,1 -050,01,069,Alabama,Houston County,7,6,6667,3229,3438,2186,2189,937,1127,15,13,34,48,5,6,52,55,2225,2236,960,1153,43,34,48,61,8,10,3057,3306,2042,2087,930,1111,10,9,33,47,4,5,38,47,2073,2128,946,1132,29,27,44,59,5,8,172,132,144,102,7,16,5,4,1,1,1,1,14,8,152,108,14,21,14,7,4,2,3,2 -050,01,069,Alabama,Houston County,7,7,6726,3240,3486,2230,2228,914,1105,13,34,35,52,3,4,45,63,2272,2278,929,1128,35,65,45,65,5,13,3065,3358,2092,2128,897,1103,10,25,33,50,1,3,32,49,2122,2167,906,1122,26,46,40,62,3,10,175,128,138,100,17,2,3,9,2,2,2,1,13,14,150,111,23,6,9,19,5,3,2,3 -050,01,069,Alabama,Houston County,7,8,6404,2966,3438,2161,2202,716,1113,14,19,34,47,3,8,38,49,2192,2245,729,1128,38,44,42,58,4,13,2820,3308,2042,2104,705,1102,9,11,33,42,2,4,29,45,2067,2143,712,1116,27,34,40,52,3,9,146,130,119,98,11,11,5,8,1,5,1,4,9,4,125,102,17,12,11,10,2,6,1,4 -050,01,069,Alabama,Houston County,7,9,6871,3283,3588,2396,2474,806,1020,17,15,37,39,2,2,25,38,2417,2501,813,1033,35,40,40,49,4,5,3174,3491,2314,2394,797,1012,8,11,37,37,1,2,17,35,2328,2418,801,1024,23,34,38,47,2,5,109,97,82,80,9,8,9,4,0,2,1,0,8,3,89,83,12,9,12,6,2,2,2,0 -050,01,069,Alabama,Houston County,7,10,6554,3156,3398,2370,2357,705,946,20,23,31,37,2,1,28,34,2396,2383,709,953,42,42,35,48,3,8,3065,3331,2293,2302,699,939,15,22,30,35,2,1,26,32,2317,2326,703,946,35,41,34,44,3,6,91,67,77,55,6,7,5,1,1,2,0,0,2,2,79,57,6,7,7,1,1,4,0,2 -050,01,069,Alabama,Houston County,7,11,7381,3535,3846,2680,2772,775,977,18,16,25,48,1,2,36,31,2709,2798,787,985,44,35,30,53,3,6,3465,3778,2619,2711,774,973,17,15,23,47,1,2,31,30,2644,2736,782,980,42,34,26,52,2,6,70,68,61,61,1,4,1,1,2,1,0,0,5,1,65,62,5,5,2,1,4,1,1,0 -050,01,069,Alabama,Houston County,7,12,7058,3382,3676,2566,2674,746,894,14,23,21,41,2,1,33,43,2592,2709,754,907,38,57,27,45,5,3,3341,3617,2528,2627,745,888,12,22,21,40,2,1,33,39,2554,2658,753,901,36,52,27,44,5,3,41,59,38,47,1,6,2,1,0,1,0,0,0,4,38,51,1,6,2,5,0,1,0,0 -050,01,069,Alabama,Houston County,7,13,6348,2935,3413,2254,2591,631,741,13,19,16,26,0,2,21,34,2272,2620,634,749,26,48,20,28,4,4,2894,3374,2221,2563,625,735,11,15,16,26,0,2,21,33,2239,2592,628,742,24,43,20,28,4,3,41,39,33,28,6,6,2,4,0,0,0,0,0,1,33,28,6,7,2,5,0,0,0,1 -050,01,069,Alabama,Houston County,7,14,5661,2658,3003,2149,2384,451,543,20,21,16,31,1,1,21,23,2168,2405,454,545,37,38,19,35,1,3,2633,2972,2131,2360,447,541,17,18,16,31,1,1,21,21,2150,2380,450,542,34,35,19,33,1,3,25,31,18,24,4,2,3,3,0,0,0,0,0,2,18,25,4,3,3,3,0,2,0,0 -050,01,069,Alabama,Houston County,7,15,4043,1802,2241,1500,1824,274,375,9,7,12,13,0,0,7,22,1505,1842,277,382,12,26,15,16,0,1,1772,2215,1472,1802,272,374,9,6,12,11,0,0,7,22,1477,1820,275,381,12,25,15,14,0,1,30,26,28,22,2,1,0,1,0,2,0,0,0,0,28,22,2,1,0,1,0,2,0,0 -050,01,069,Alabama,Houston County,7,16,3054,1279,1775,1072,1470,190,280,4,7,7,7,0,1,6,10,1076,1478,192,284,8,14,7,8,2,1,1273,1756,1066,1453,190,279,4,7,7,7,0,1,6,9,1070,1461,192,282,8,14,7,7,2,1,6,19,6,17,0,1,0,0,0,0,0,0,0,1,6,17,0,2,0,0,0,1,0,0 -050,01,069,Alabama,Houston County,7,17,2170,889,1281,772,1061,108,199,3,6,3,7,0,0,3,8,775,1069,108,201,6,13,3,8,0,1,883,1269,767,1052,107,198,3,6,3,7,0,0,3,6,770,1058,107,199,6,11,3,7,0,0,6,12,5,9,1,1,0,0,0,0,0,0,0,2,5,11,1,2,0,2,0,1,0,1 -050,01,069,Alabama,Houston County,7,18,1902,590,1312,484,1081,97,216,2,2,1,3,0,0,6,10,488,1090,99,218,8,10,2,3,0,1,578,1300,473,1071,97,214,1,2,1,3,0,0,6,10,477,1080,99,216,7,10,2,3,0,1,12,12,11,10,0,2,1,0,0,0,0,0,0,0,11,10,0,2,1,0,0,0,0,0 -050,01,069,Alabama,Houston County,8,0,104326,50065,54261,35491,37481,12919,14938,248,276,406,557,32,50,969,959,36346,38313,13438,15441,612,641,588,742,86,112,48317,52671,34075,36221,12796,14794,174,215,387,536,18,32,867,873,34845,36981,13268,15250,491,548,551,705,60,86,1748,1590,1416,1260,123,144,74,61,19,21,14,18,102,86,1501,1332,170,191,121,93,37,37,26,26 -050,01,069,Alabama,Houston County,8,1,6338,3307,3031,2010,1885,1074,981,17,6,37,30,1,3,168,126,2163,2003,1201,1076,39,23,65,50,10,7,3129,2852,1864,1738,1063,963,7,3,37,30,0,0,158,118,2009,1848,1185,1054,26,18,63,49,7,3,178,179,146,147,11,18,10,3,0,0,1,3,10,8,154,155,16,22,13,5,2,1,3,4 -050,01,069,Alabama,Houston County,8,2,6756,3437,3319,2163,2018,1082,1108,17,12,24,33,5,7,146,141,2300,2144,1188,1208,46,40,48,55,10,18,3235,3116,2005,1862,1070,1090,9,7,17,32,1,1,133,124,2130,1977,1170,1180,32,29,39,51,6,8,202,203,158,156,12,18,8,5,7,1,4,6,13,17,170,167,18,28,14,11,9,4,4,10 -050,01,069,Alabama,Houston County,8,3,7178,3787,3391,2376,2120,1230,1095,13,14,26,45,3,6,139,111,2499,2222,1327,1166,43,36,53,72,7,14,3620,3224,2237,1994,1218,1076,10,7,24,42,0,5,131,100,2354,2087,1310,1141,38,26,49,65,3,12,167,167,139,126,12,19,3,7,2,3,3,1,8,11,145,135,17,25,5,10,4,7,4,2 -050,01,069,Alabama,Houston County,8,4,6513,3314,3199,2103,2032,1078,1019,17,23,23,18,2,5,91,102,2186,2120,1129,1085,46,51,40,40,8,10,3177,3087,2002,1945,1060,1011,8,17,22,16,0,4,85,94,2081,2026,1109,1073,33,41,38,36,5,9,137,112,101,87,18,8,9,6,1,2,2,1,6,8,105,94,20,12,13,10,2,4,3,1 -050,01,069,Alabama,Houston County,8,5,6179,3043,3136,1903,1974,1017,1063,19,14,23,20,1,0,80,65,1968,2026,1062,1103,50,35,41,33,7,5,2908,3040,1797,1896,1004,1053,15,10,20,20,1,0,71,61,1854,1945,1044,1090,41,29,37,33,7,5,135,96,106,78,13,10,4,4,3,0,0,0,9,4,114,81,18,13,9,6,4,0,0,0 -050,01,069,Alabama,Houston County,8,6,6811,3238,3573,2191,2280,941,1188,13,12,35,42,6,5,52,46,2237,2319,960,1213,35,27,51,52,10,8,3100,3468,2075,2197,940,1177,8,9,34,41,5,3,38,41,2108,2233,953,1198,23,23,47,50,9,5,138,105,116,83,1,11,5,3,1,1,1,2,14,5,129,86,7,15,12,4,4,2,1,3 -050,01,069,Alabama,Houston County,8,7,6752,3279,3473,2282,2238,899,1088,14,28,40,52,2,6,42,61,2318,2292,915,1113,33,50,50,70,5,10,3089,3331,2126,2124,886,1081,9,20,39,50,1,5,28,51,2151,2168,896,1101,22,39,47,66,1,9,190,142,156,114,13,7,5,8,1,2,1,1,14,10,167,124,19,12,11,11,3,4,4,1 -050,01,069,Alabama,Houston County,8,8,6379,2960,3419,2129,2199,734,1098,13,21,33,49,2,5,49,47,2166,2240,749,1112,43,45,45,62,7,8,2820,3295,2012,2102,727,1089,10,13,32,46,2,2,37,43,2040,2139,739,1101,33,36,42,58,3,5,140,124,117,97,7,9,3,8,1,3,0,3,12,4,126,101,10,11,10,9,3,4,4,3 -050,01,069,Alabama,Houston County,8,9,6702,3192,3510,2335,2405,774,1005,21,15,28,42,4,3,30,40,2361,2437,783,1017,40,39,33,51,5,6,3073,3401,2248,2317,763,995,9,12,28,38,2,2,23,37,2268,2346,768,1006,24,34,33,47,3,5,119,109,87,88,11,10,12,3,0,4,2,1,7,3,93,91,15,11,16,5,0,4,2,1 -050,01,069,Alabama,Houston County,8,10,6543,3188,3355,2382,2314,727,936,16,24,36,44,2,2,25,35,2404,2343,731,948,36,44,38,50,5,7,3096,3285,2304,2261,720,929,12,20,35,42,2,2,23,31,2324,2287,724,938,30,38,37,48,5,6,92,70,78,53,7,7,4,4,1,2,0,0,2,4,80,56,7,10,6,6,1,2,0,1 -050,01,069,Alabama,Houston County,8,11,7309,3507,3802,2635,2701,783,999,22,18,24,51,1,1,42,32,2671,2728,793,1005,53,41,32,57,3,4,3437,3733,2578,2638,781,995,19,17,22,51,1,1,36,31,2609,2664,787,1000,49,40,27,57,2,4,70,69,57,63,2,4,3,1,2,0,0,0,6,1,62,64,6,5,4,1,5,0,1,0 -050,01,069,Alabama,Houston County,8,12,7193,3419,3774,2594,2774,755,907,13,20,24,36,2,2,31,35,2619,2804,762,915,36,46,30,42,5,3,3364,3716,2540,2726,755,900,12,19,24,35,2,2,31,34,2565,2755,762,908,35,44,30,41,5,3,55,58,54,48,0,7,1,1,0,1,0,0,0,1,54,49,0,7,1,2,0,1,0,0 -050,01,069,Alabama,Houston County,8,13,6451,2956,3495,2263,2620,641,779,15,26,14,30,0,0,23,40,2284,2649,643,791,32,59,19,33,1,3,2914,3445,2233,2586,632,771,12,22,14,30,0,0,23,36,2254,2611,634,782,29,52,19,33,1,3,42,50,30,34,9,8,3,4,0,0,0,0,0,4,30,38,9,9,3,7,0,0,0,0 -050,01,069,Alabama,Houston County,8,14,5741,2708,3033,2173,2386,480,570,17,20,17,31,1,3,20,23,2191,2404,483,575,33,42,19,32,2,3,2683,2998,2154,2359,477,567,14,17,17,31,1,3,20,21,2172,2375,480,572,30,37,19,32,2,3,25,35,19,27,3,3,3,3,0,0,0,0,0,2,19,29,3,3,3,5,0,0,0,0 -050,01,069,Alabama,Houston County,8,15,4241,1900,2341,1580,1911,289,386,11,6,7,14,0,1,13,23,1593,1931,291,390,21,22,8,19,0,4,1867,2320,1551,1893,286,386,11,5,7,12,0,1,12,23,1563,1913,287,390,21,21,8,17,0,4,33,21,29,18,3,0,0,1,0,2,0,0,1,0,30,18,4,0,0,1,0,2,0,0 -050,01,069,Alabama,Houston County,8,16,3085,1322,1763,1107,1448,193,286,4,6,10,9,0,1,8,13,1113,1459,196,289,12,17,10,10,0,1,1315,1742,1100,1429,193,284,4,6,10,9,0,1,8,13,1106,1440,196,287,12,17,10,10,0,1,7,21,7,19,0,2,0,0,0,0,0,0,0,0,7,19,0,2,0,0,0,0,0,0 -050,01,069,Alabama,Houston County,8,17,2228,899,1329,763,1092,125,213,3,8,4,7,0,0,4,9,767,1099,126,217,5,13,4,9,1,0,895,1314,760,1082,124,212,3,8,4,7,0,0,4,5,764,1086,125,213,5,13,4,7,1,0,4,15,3,10,1,1,0,0,0,0,0,0,0,4,3,13,1,4,0,0,0,2,0,0 -050,01,069,Alabama,Houston County,8,18,1927,609,1318,502,1084,97,217,3,3,1,4,0,0,6,10,506,1093,99,218,9,11,2,5,0,1,595,1304,489,1072,97,215,2,3,1,4,0,0,6,10,493,1081,99,216,8,11,2,5,0,1,14,14,13,12,0,2,1,0,0,0,0,0,0,0,13,12,0,2,1,0,0,0,0,0 -050,01,069,Alabama,Houston County,9,0,104355,50068,54287,35334,37268,12987,15079,255,279,421,602,37,47,1034,1012,36260,38156,13550,15623,625,659,621,790,93,116,48268,52713,33894,36041,12856,14932,175,211,401,581,20,29,922,919,34727,36849,13366,15431,494,552,585,751,62,87,1800,1574,1440,1227,131,147,80,68,20,21,17,18,112,93,1533,1307,184,192,131,107,36,39,31,29 -050,01,069,Alabama,Houston County,9,1,6375,3345,3030,2024,1850,1061,992,17,5,39,37,2,3,202,143,2214,1984,1211,1104,44,26,76,58,12,7,3149,2862,1863,1717,1045,973,9,1,39,37,0,0,193,134,2045,1843,1190,1080,32,18,76,58,9,3,196,168,161,133,16,19,8,4,0,0,2,3,9,9,169,141,21,24,12,8,0,0,3,4 -050,01,069,Alabama,Houston County,9,2,6649,3397,3252,2109,1943,1108,1103,19,14,26,36,3,6,132,150,2231,2079,1207,1214,41,40,47,61,11,13,3207,3064,1966,1793,1095,1089,8,9,20,36,2,2,116,135,2073,1917,1187,1191,25,29,39,58,7,8,190,188,143,150,13,14,11,5,6,0,1,4,16,15,158,162,20,23,16,11,8,3,4,5 -050,01,069,Alabama,Houston County,9,3,6978,3642,3336,2297,2075,1161,1079,17,13,26,48,6,6,135,115,2420,2175,1253,1160,47,39,50,70,10,13,3459,3163,2156,1949,1146,1060,10,6,23,44,0,3,124,101,2268,2036,1233,1135,36,27,45,63,4,9,183,173,141,126,15,19,7,7,3,4,6,3,11,14,152,139,20,25,11,12,5,7,6,4 -050,01,069,Alabama,Houston County,9,4,6579,3392,3187,2130,2008,1115,1037,18,22,16,23,2,3,111,94,2229,2094,1187,1097,48,49,37,39,7,7,3242,3055,2013,1908,1102,1023,9,14,15,21,0,2,103,87,2106,1988,1168,1080,37,37,35,37,4,5,150,132,117,100,13,14,9,8,1,2,2,1,8,7,123,106,19,17,11,12,2,2,3,2 -050,01,069,Alabama,Houston County,9,5,6007,2966,3041,1864,1919,989,998,15,15,17,24,0,1,81,84,1938,1994,1032,1046,41,42,38,41,2,8,2833,2940,1758,1840,974,989,12,10,15,24,0,1,74,76,1825,1909,1015,1034,35,34,34,38,2,7,133,101,106,79,15,9,3,5,2,0,0,0,7,8,113,85,17,12,6,8,4,3,0,1 -050,01,069,Alabama,Houston County,9,6,6924,3281,3643,2208,2277,955,1246,14,15,35,49,7,3,62,53,2262,2319,985,1272,37,34,51,65,11,8,3146,3550,2101,2199,950,1239,9,12,33,48,6,2,47,50,2143,2238,970,1264,27,29,46,64,8,7,135,93,107,78,5,7,5,3,2,1,1,1,15,3,119,81,15,8,10,5,5,1,3,1 -050,01,069,Alabama,Houston County,9,7,6699,3236,3463,2192,2224,932,1119,10,19,55,53,2,7,45,41,2231,2260,948,1137,31,35,67,63,5,10,3048,3321,2040,2111,921,1104,4,14,54,51,1,5,28,36,2065,2142,928,1119,15,29,66,60,2,8,188,142,152,113,11,15,6,5,1,2,1,2,17,5,166,118,20,18,16,6,1,3,3,2 -050,01,069,Alabama,Houston County,9,8,6459,3071,3388,2155,2176,806,1071,18,22,35,53,5,4,52,62,2200,2230,820,1092,46,51,48,67,9,11,2934,3271,2042,2087,799,1066,15,13,34,51,3,2,41,52,2080,2133,810,1082,37,39,43,63,5,7,137,117,113,89,7,5,3,9,1,2,2,2,11,10,120,97,10,10,9,12,5,4,4,4 -050,01,069,Alabama,Houston County,9,9,6461,3022,3439,2209,2307,737,1027,16,22,26,37,4,3,30,43,2232,2343,747,1041,36,48,32,46,6,5,2906,3332,2123,2230,724,1016,8,14,26,33,2,1,23,38,2141,2261,731,1028,24,37,31,42,3,3,116,107,86,77,13,11,8,8,0,4,2,2,7,5,91,82,16,13,12,11,1,4,3,2 -050,01,069,Alabama,Houston County,9,10,6647,3230,3417,2428,2363,716,955,17,19,41,42,1,2,27,36,2450,2394,723,965,36,42,45,49,4,5,3123,3337,2338,2298,711,947,10,15,40,41,1,2,23,34,2357,2327,716,957,27,36,44,48,3,5,107,80,90,65,5,8,7,4,1,1,0,0,4,2,93,67,7,8,9,6,1,1,1,0 -050,01,069,Alabama,Houston County,9,11,7160,3431,3729,2551,2646,788,977,27,22,25,49,2,1,38,34,2582,2673,795,985,58,44,32,56,4,5,3348,3668,2482,2593,787,974,22,21,23,48,2,1,32,31,2509,2618,793,980,48,42,29,54,3,5,83,61,69,53,1,3,5,1,2,1,0,0,6,3,73,55,2,5,10,2,3,2,1,0 -050,01,069,Alabama,Houston County,9,12,7194,3395,3799,2581,2777,741,928,14,20,21,45,2,2,36,27,2612,2803,748,930,41,38,26,49,4,6,3343,3739,2532,2727,740,921,13,19,21,43,2,2,35,27,2562,2753,747,923,39,37,26,47,4,6,52,60,49,50,1,7,1,1,0,2,0,0,1,0,50,50,1,7,2,1,0,2,0,0 -050,01,069,Alabama,Houston County,9,13,6569,3052,3517,2341,2611,651,797,14,26,19,35,0,0,27,48,2365,2648,654,812,35,60,25,41,3,6,3012,3473,2313,2581,643,792,11,22,18,35,0,0,27,43,2337,2614,646,804,32,54,24,40,3,6,40,44,28,30,8,5,3,4,1,0,0,0,0,5,28,34,8,8,3,6,1,1,0,0 -050,01,069,Alabama,Houston County,9,14,5917,2748,3169,2207,2465,489,623,16,22,13,31,1,4,22,24,2225,2485,494,627,33,42,16,36,2,5,2721,3134,2187,2440,485,617,13,19,13,31,1,4,22,23,2205,2460,490,620,30,38,16,35,2,4,27,35,20,25,4,6,3,3,0,0,0,0,0,1,20,25,4,7,3,4,0,1,0,1 -050,01,069,Alabama,Houston County,9,15,4412,1987,2425,1633,1973,322,406,11,4,9,18,0,1,12,23,1645,1991,323,411,20,24,11,20,0,2,1956,2399,1605,1950,319,406,11,4,9,16,0,1,12,22,1617,1967,320,411,20,23,11,18,0,2,31,26,28,23,3,0,0,0,0,2,0,0,0,1,28,24,3,0,0,1,0,2,0,0 -050,01,069,Alabama,Houston County,9,16,3089,1328,1761,1113,1443,191,288,6,6,10,8,0,1,8,15,1121,1456,191,292,14,19,10,10,0,1,1314,1738,1099,1423,191,286,6,5,10,8,0,1,8,15,1107,1436,191,290,14,18,10,10,0,1,14,23,14,20,0,2,0,1,0,0,0,0,0,0,14,20,0,2,0,1,0,0,0,0 -050,01,069,Alabama,Houston County,9,17,2241,907,1334,760,1101,132,208,3,10,6,6,0,0,6,9,764,1110,135,210,7,15,7,9,2,3,904,1322,758,1095,131,207,3,10,6,6,0,0,6,4,762,1099,134,207,7,14,7,6,2,0,3,12,2,6,1,1,0,0,0,0,0,0,0,5,2,11,1,3,0,1,0,3,0,3 -050,01,069,Alabama,Houston County,9,18,1995,638,1357,532,1110,93,225,3,3,2,8,0,0,8,11,539,1118,97,228,10,11,3,10,1,1,623,1345,518,1100,93,223,2,3,2,8,0,0,8,11,525,1108,97,226,9,11,3,10,1,1,15,12,14,10,0,2,1,0,0,0,0,0,0,0,14,10,0,2,1,0,0,0,0,0 -050,01,069,Alabama,Houston County,10,0,104472,50141,54331,35232,37233,13120,15067,261,293,449,636,37,52,1042,1050,36156,38162,13699,15642,647,674,641,843,87,106,48314,52696,33769,35935,12982,14918,186,226,428,614,19,32,930,971,34600,36791,13499,15456,523,571,598,808,56,82,1827,1635,1463,1298,138,149,75,67,21,22,18,20,112,79,1556,1371,200,186,124,103,43,35,31,24 -050,01,069,Alabama,Houston County,10,1,6314,3321,2993,2034,1794,1068,976,8,8,42,46,2,4,167,165,2190,1944,1196,1102,31,31,69,72,8,11,3118,2813,1870,1652,1046,955,6,1,40,44,0,1,156,160,2017,1797,1166,1078,25,23,67,69,5,8,203,180,164,142,22,21,2,7,2,2,2,3,11,5,173,147,30,24,6,8,2,3,3,3 -050,01,069,Alabama,Houston County,10,2,6605,3340,3265,2039,1963,1095,1103,23,16,34,38,1,5,148,140,2176,2094,1203,1203,51,44,58,58,3,9,3139,3086,1881,1813,1080,1088,11,13,30,38,1,2,136,132,2007,1936,1181,1185,35,38,52,57,2,5,201,179,158,150,15,15,12,3,4,0,0,3,12,8,169,158,22,18,16,6,6,1,1,4 -050,01,069,Alabama,Houston County,10,3,6909,3647,3262,2287,2021,1167,1056,19,15,21,44,8,7,145,119,2418,2126,1266,1140,50,41,48,68,14,10,3468,3084,2154,1885,1152,1037,13,9,17,40,1,3,131,110,2272,1983,1244,1115,40,31,41,63,6,6,179,178,133,136,15,19,6,6,4,4,7,4,14,9,146,143,22,25,10,10,7,5,8,4 -050,01,069,Alabama,Houston County,10,4,6578,3384,3194,2102,2012,1129,1027,15,20,20,27,2,3,116,105,2204,2109,1201,1098,51,44,45,48,4,9,3234,3057,1980,1905,1119,1016,8,12,18,26,0,2,109,96,2078,1994,1189,1082,39,34,40,45,2,7,150,137,122,107,10,11,7,8,2,1,2,1,7,9,126,115,12,16,12,10,5,3,2,2 -050,01,069,Alabama,Houston County,10,5,5874,2895,2979,1842,1894,938,968,12,16,17,20,1,2,85,79,1917,1967,989,1016,41,39,32,36,5,6,2762,2875,1740,1811,918,959,9,12,15,19,0,1,80,73,1810,1879,967,1004,36,32,29,34,4,5,133,104,102,83,20,9,3,4,2,1,1,1,5,6,107,88,22,12,5,7,3,2,1,1 -050,01,069,Alabama,Houston County,10,6,7009,3339,3670,2221,2301,1002,1233,18,9,31,53,6,4,61,70,2272,2360,1031,1270,44,34,45,72,9,7,3206,3560,2109,2211,999,1223,13,6,30,53,5,2,50,65,2150,2266,1024,1259,33,27,42,71,8,5,133,110,112,90,3,10,5,3,1,0,1,2,11,5,122,94,7,11,11,7,3,1,1,2 -050,01,069,Alabama,Houston County,10,7,6688,3242,3446,2193,2215,920,1117,10,13,66,49,2,6,51,46,2233,2255,945,1138,34,33,77,61,6,7,3055,3307,2041,2102,910,1103,4,11,66,47,2,4,32,40,2068,2136,922,1120,19,29,74,59,4,5,187,139,152,113,10,14,6,2,0,2,0,2,19,6,165,119,23,18,15,4,3,2,2,2 -050,01,069,Alabama,Houston County,10,8,6547,3148,3399,2180,2187,859,1063,21,29,38,62,3,4,47,54,2222,2235,878,1081,45,56,48,77,10,5,3027,3284,2087,2095,850,1058,18,18,36,62,2,4,34,47,2118,2136,859,1074,37,41,42,75,5,5,121,115,93,92,9,5,3,11,2,0,1,0,13,7,104,99,19,7,8,15,6,2,5,0 -050,01,069,Alabama,Houston County,10,9,6325,2914,3411,2117,2253,710,1037,16,21,31,50,7,5,33,45,2142,2290,723,1050,34,49,39,62,11,11,2785,3298,2022,2172,698,1027,7,14,31,45,3,1,24,39,2040,2204,706,1038,22,38,36,56,5,7,129,113,95,81,12,10,9,7,0,5,4,4,9,6,102,86,17,12,12,11,3,6,6,4 -050,01,069,Alabama,Houston County,10,10,6724,3217,3507,2415,2460,717,957,20,18,38,35,0,2,27,35,2439,2490,722,966,38,39,44,43,3,5,3111,3415,2325,2383,714,949,12,15,38,33,0,2,22,33,2345,2411,717,956,28,36,43,41,1,5,106,92,90,77,3,8,8,3,0,2,0,0,5,2,94,79,5,10,10,3,1,2,2,0 -050,01,069,Alabama,Houston County,10,11,6953,3383,3570,2503,2507,796,958,22,26,25,42,3,2,34,35,2534,2533,801,968,46,50,32,50,4,5,3286,3508,2420,2455,794,954,16,25,22,41,3,2,31,31,2448,2477,798,963,38,46,29,49,4,5,97,62,83,52,2,4,6,1,3,1,0,0,3,4,86,56,3,5,8,4,3,1,0,0 -050,01,069,Alabama,Houston County,10,12,7219,3376,3843,2564,2785,734,959,21,22,22,53,1,2,34,22,2593,2802,742,965,45,37,27,56,4,5,3322,3778,2516,2729,733,953,19,20,22,52,1,2,31,22,2542,2746,740,959,40,35,27,55,4,5,54,65,48,56,1,6,2,2,0,1,0,0,3,0,51,56,2,6,5,2,0,1,0,0 -050,01,069,Alabama,Houston County,10,13,6612,3090,3522,2349,2590,669,819,15,30,25,36,1,0,31,47,2375,2629,673,832,41,64,32,42,3,4,3054,3472,2320,2555,664,814,14,26,24,35,1,0,31,42,2346,2589,668,826,40,57,31,40,3,4,36,50,29,35,5,5,1,4,1,1,0,0,0,5,29,40,5,6,1,7,1,2,0,0 -050,01,069,Alabama,Houston County,10,14,5870,2727,3143,2143,2421,537,632,16,24,9,34,0,4,22,28,2162,2445,541,638,35,45,11,38,0,5,2693,3103,2118,2393,531,625,13,19,9,34,0,4,22,28,2137,2417,535,631,32,40,11,38,0,5,34,40,25,28,6,7,3,5,0,0,0,0,0,0,25,28,6,7,3,5,0,0,0,0 -050,01,069,Alabama,Houston County,10,15,4760,2163,2597,1775,2116,348,431,11,7,12,21,0,0,17,22,1792,2134,349,435,26,23,13,26,1,1,2134,2574,1751,2096,344,431,10,7,12,20,0,0,17,20,1768,2112,345,434,25,22,13,25,1,1,29,23,24,20,4,0,1,0,0,1,0,0,0,2,24,22,4,1,1,1,0,1,0,0 -050,01,069,Alabama,Houston County,10,16,3229,1388,1841,1164,1510,197,298,8,6,10,10,0,2,9,15,1170,1523,200,301,16,16,11,13,0,3,1370,1817,1146,1490,197,296,8,5,10,9,0,2,9,15,1152,1503,200,299,16,15,11,12,0,3,18,24,18,20,0,2,0,1,0,1,0,0,0,0,18,20,0,2,0,1,0,1,0,0 -050,01,069,Alabama,Houston County,10,17,2229,892,1337,739,1102,141,212,2,8,5,6,0,0,5,9,744,1111,141,214,7,13,5,10,0,3,887,1326,735,1095,140,211,2,8,5,6,0,0,5,6,740,1101,140,211,7,12,5,8,0,1,5,11,4,7,1,1,0,0,0,0,0,0,0,3,4,10,1,3,0,1,0,2,0,2 -050,01,069,Alabama,Houston County,10,18,2027,675,1352,565,1102,93,221,4,5,3,10,0,0,10,14,573,1115,98,225,12,16,5,11,2,0,663,1339,554,1093,93,219,3,5,3,10,0,0,10,12,562,1104,98,222,11,15,5,11,2,0,12,13,11,9,0,2,1,0,0,0,0,0,0,2,11,11,0,3,1,1,0,0,0,0 -050,01,069,Alabama,Houston County,11,0,104943,50403,54540,35203,37168,13358,15273,253,300,468,651,43,57,1078,1091,36158,38116,13955,15896,628,684,675,865,106,116,48524,52848,33708,35833,13198,15115,179,234,445,628,24,34,970,1004,34572,36704,13739,15696,504,581,631,829,78,84,1879,1692,1495,1335,160,158,74,66,23,23,19,23,108,87,1586,1412,216,200,124,103,44,36,28,32 -050,01,069,Alabama,Houston County,11,1,6440,3362,3078,1995,1798,1117,1040,13,7,46,44,4,4,187,185,2167,1969,1261,1182,41,31,78,74,12,11,3146,2909,1829,1662,1090,1022,7,6,41,40,1,1,178,178,1995,1826,1229,1162,30,28,72,67,8,8,216,169,166,136,27,18,6,1,5,4,3,3,9,7,172,143,32,20,11,3,6,7,4,3 -050,01,069,Alabama,Houston County,11,2,6534,3367,3167,2049,1909,1115,1061,16,18,34,38,4,5,149,136,2185,2035,1225,1160,39,44,64,62,9,7,3159,2975,1879,1757,1098,1039,8,11,32,38,3,2,139,128,2005,1876,1202,1134,29,34,60,60,8,4,208,192,170,152,17,22,8,7,2,0,1,3,10,8,180,159,23,26,10,10,4,2,1,3 -050,01,069,Alabama,Houston County,11,3,6896,3620,3276,2263,1984,1168,1085,15,10,27,46,5,7,142,144,2395,2110,1264,1183,45,41,51,76,10,15,3442,3093,2128,1850,1151,1066,12,4,21,42,1,2,129,129,2248,1963,1240,1159,36,27,43,69,4,8,178,183,135,134,17,19,3,6,6,4,4,5,13,15,147,147,24,24,9,14,8,7,6,7 -050,01,069,Alabama,Houston County,11,4,6592,3359,3233,2095,2034,1114,1057,13,15,21,27,5,6,111,94,2196,2121,1184,1121,40,39,43,43,9,10,3215,3076,1983,1908,1105,1043,6,9,19,27,0,5,102,84,2075,1986,1173,1100,30,29,37,42,4,9,144,157,112,126,9,14,7,6,2,0,5,1,9,10,121,135,11,21,10,10,6,1,5,1 -050,01,069,Alabama,Houston County,11,5,5845,2926,2919,1832,1843,966,948,11,20,19,20,0,3,98,85,1915,1919,1022,999,44,45,40,39,6,7,2779,2826,1721,1770,942,942,6,15,17,19,0,1,93,79,1799,1840,997,989,37,37,37,38,5,5,147,93,111,73,24,6,5,5,2,1,0,2,5,6,116,79,25,10,7,8,3,1,1,2 -050,01,069,Alabama,Houston County,11,6,6991,3374,3617,2212,2245,1050,1239,13,12,30,42,5,4,64,75,2266,2307,1082,1278,35,36,49,62,8,10,3251,3504,2113,2155,1041,1228,10,8,29,42,4,1,54,70,2160,2212,1065,1264,29,30,46,62,7,7,123,113,99,90,9,11,3,4,1,0,1,3,10,5,106,95,17,14,6,6,3,0,1,3 -050,01,069,Alabama,Houston County,11,7,6695,3215,3480,2155,2252,937,1099,14,13,62,58,3,7,44,51,2191,2296,958,1122,35,32,71,76,6,9,3043,3349,2015,2143,928,1087,7,11,62,57,3,5,28,46,2038,2182,940,1108,20,27,68,75,5,7,172,131,140,109,9,12,7,2,0,1,0,2,16,5,153,114,18,14,15,5,3,1,1,2 -050,01,069,Alabama,Houston County,11,8,6626,3194,3432,2188,2179,895,1101,18,29,43,65,2,3,48,55,2227,2225,912,1124,42,58,54,76,7,7,3044,3307,2068,2077,882,1096,14,21,43,64,1,3,36,46,2097,2115,893,1115,33,46,52,75,5,5,150,125,120,102,13,5,4,8,0,1,1,0,12,9,130,110,19,9,9,12,2,1,2,2 -050,01,069,Alabama,Houston County,11,9,6253,2896,3357,2116,2189,692,1046,16,22,30,48,7,7,35,45,2144,2220,704,1065,35,49,38,57,13,11,2765,3224,2018,2091,682,1036,8,11,29,44,3,3,25,39,2040,2117,689,1052,20,36,35,53,6,5,131,133,98,98,10,10,8,11,1,4,4,4,10,6,104,103,15,13,15,13,3,4,7,6 -050,01,069,Alabama,Houston County,11,10,6769,3225,3544,2390,2497,741,965,23,16,38,30,1,1,32,35,2418,2522,747,977,44,35,43,39,5,7,3127,3451,2312,2422,737,955,14,13,38,28,1,1,25,32,2333,2446,741,966,31,30,42,36,5,6,98,93,78,75,4,10,9,3,0,2,0,0,7,3,85,76,6,11,13,5,1,3,0,1 -050,01,069,Alabama,Houston County,11,11,6756,3262,3494,2415,2453,766,936,20,31,25,44,5,2,31,28,2443,2476,773,944,42,52,28,49,9,4,3159,3429,2325,2399,763,932,14,30,23,42,5,2,29,24,2351,2418,768,940,36,48,26,46,9,4,103,65,90,54,3,4,6,1,2,2,0,0,2,4,92,58,5,4,6,4,2,3,0,0 -050,01,069,Alabama,Houston County,11,12,7184,3373,3811,2549,2747,739,968,23,19,27,53,1,2,34,22,2579,2766,746,974,48,34,33,55,3,4,3310,3749,2496,2694,736,961,21,18,26,52,1,2,30,22,2523,2713,741,967,42,33,31,54,3,4,63,62,53,53,3,7,2,1,1,1,0,0,4,0,56,53,5,7,6,1,2,1,0,0 -050,01,069,Alabama,Houston County,11,13,6708,3165,3543,2403,2560,691,857,14,32,23,48,1,1,33,45,2431,2594,696,873,39,66,29,53,3,4,3126,3486,2367,2518,689,851,14,28,22,47,1,1,33,41,2395,2549,694,864,39,61,28,52,3,3,39,57,36,42,2,6,0,4,1,1,0,0,0,4,36,45,2,9,0,5,1,1,0,1 -050,01,069,Alabama,Houston County,11,14,5884,2714,3170,2104,2419,559,656,17,27,11,36,0,3,23,29,2123,2446,564,661,35,50,15,40,1,4,2676,3131,2078,2393,552,649,13,21,11,36,0,3,22,29,2096,2420,556,654,30,44,15,40,1,4,38,39,26,26,7,7,4,6,0,0,0,0,1,0,27,26,8,7,5,6,0,0,0,0 -050,01,069,Alabama,Houston County,11,15,4985,2295,2690,1889,2172,358,462,12,10,14,23,0,0,22,23,1909,2192,362,468,31,27,16,25,1,1,2265,2663,1865,2147,353,461,11,10,14,23,0,0,22,22,1885,2166,357,466,30,27,16,25,1,1,30,27,24,25,5,1,1,0,0,0,0,0,0,1,24,26,5,2,1,0,0,0,0,0 -050,01,069,Alabama,Houston County,11,16,3378,1442,1936,1195,1590,224,309,7,5,10,11,0,2,6,19,1201,1606,224,313,13,19,10,15,0,3,1420,1911,1173,1571,224,306,7,4,10,9,0,2,6,19,1179,1587,224,310,13,18,10,13,0,3,22,25,22,19,0,3,0,1,0,2,0,0,0,0,22,19,0,3,0,1,0,2,0,0 -050,01,069,Alabama,Houston County,11,17,2312,922,1390,778,1162,129,209,4,6,5,6,0,0,6,7,782,1168,131,211,8,8,6,10,1,2,917,1377,774,1152,128,208,4,6,5,6,0,0,6,5,778,1156,130,209,8,8,6,9,1,1,5,13,4,10,1,1,0,0,0,0,0,0,0,2,4,12,1,2,0,0,0,1,0,1 -050,01,069,Alabama,Houston County,11,18,2095,692,1403,575,1135,97,235,4,8,3,12,0,0,13,13,586,1144,100,241,12,18,7,14,3,0,680,1388,564,1124,97,233,3,8,3,12,0,0,13,11,575,1132,100,237,11,18,7,13,3,0,12,15,11,11,0,2,1,0,0,0,0,0,0,2,11,12,0,4,1,0,0,1,0,0 -050,01,069,Alabama,Houston County,12,0,106240,50799,55441,35370,37600,13499,15634,259,319,501,681,42,60,1128,1147,36367,38608,14134,16288,642,704,726,903,103,137,48879,53724,33837,36246,13349,15476,184,248,475,658,22,36,1012,1060,34733,37184,13921,16080,517,600,680,865,69,97,1920,1717,1533,1354,150,158,75,71,26,23,20,24,116,87,1634,1424,213,208,125,104,46,38,34,40 -050,01,069,Alabama,Houston County,12,1,6702,3445,3257,2024,1879,1172,1106,11,16,47,43,6,5,185,208,2194,2068,1311,1272,36,45,86,74,12,12,3240,3074,1869,1738,1149,1091,6,7,39,39,2,2,175,197,2030,1918,1283,1249,27,33,75,69,8,8,205,183,155,141,23,15,5,9,8,4,4,3,10,11,164,150,28,23,9,12,11,5,4,4 -050,01,069,Alabama,Houston County,12,2,6577,3431,3146,2077,1870,1117,1082,20,16,35,41,3,6,179,131,2241,1990,1251,1177,44,38,67,66,9,11,3209,2958,1898,1720,1100,1060,10,11,35,41,2,2,164,124,2048,1835,1223,1150,31,31,65,64,6,6,222,188,179,150,17,22,10,5,0,0,1,4,15,7,193,155,28,27,13,7,2,2,3,5 -050,01,069,Alabama,Houston County,12,3,6829,3540,3289,2230,1991,1132,1096,14,10,29,42,5,6,130,144,2349,2118,1221,1196,43,36,53,69,11,19,3346,3106,2083,1855,1111,1076,11,6,22,39,1,1,118,129,2192,1970,1193,1169,34,27,45,64,5,10,194,183,147,136,21,20,3,4,7,3,4,5,12,15,157,148,28,27,9,9,8,5,6,9 -050,01,069,Alabama,Houston County,12,4,6603,3392,3211,2105,1995,1115,1053,11,13,25,35,5,5,131,110,2222,2093,1200,1128,44,36,51,57,8,12,3239,3057,1977,1874,1108,1038,8,7,22,34,1,4,123,100,2086,1963,1189,1105,37,28,48,54,4,9,153,154,128,121,7,15,3,6,3,1,4,1,8,10,136,130,11,23,7,8,3,3,4,3 -050,01,069,Alabama,Houston County,12,5,5818,2886,2932,1811,1828,952,963,11,24,15,26,1,5,96,86,1895,1903,1008,1015,39,46,38,44,7,13,2742,2824,1703,1738,935,958,4,20,15,25,0,3,85,80,1776,1808,985,1007,29,40,36,42,4,10,144,108,108,90,17,5,7,4,0,1,1,2,11,6,119,95,23,8,10,6,2,2,3,3 -050,01,069,Alabama,Houston County,12,6,7159,3383,3776,2172,2345,1084,1305,20,15,35,30,2,4,70,77,2228,2409,1121,1347,46,44,52,46,7,9,3253,3672,2070,2264,1071,1294,14,10,32,30,2,1,64,73,2120,2325,1104,1333,38,37,48,46,7,5,130,104,102,81,13,11,6,5,3,0,0,3,6,4,108,84,17,14,8,7,4,0,0,4 -050,01,069,Alabama,Houston County,12,7,6683,3157,3526,2122,2255,915,1122,18,12,53,65,5,7,44,65,2160,2311,935,1154,37,39,64,82,7,8,2992,3398,1987,2155,907,1107,11,9,53,64,4,5,30,58,2012,2204,918,1136,25,33,62,80,5,6,165,128,135,100,8,15,7,3,0,1,1,2,14,7,148,107,17,18,12,6,2,2,2,2 -050,01,069,Alabama,Houston County,12,8,6757,3267,3490,2217,2263,930,1079,13,33,49,63,3,3,55,49,2263,2307,950,1093,43,60,59,77,9,8,3124,3364,2103,2153,919,1076,10,26,49,62,2,3,41,44,2138,2193,933,1087,31,50,57,76,7,8,143,126,114,110,11,3,3,7,0,1,1,0,14,5,125,114,17,6,12,10,2,1,2,0 -050,01,069,Alabama,Houston County,12,9,6334,2953,3381,2146,2164,706,1086,15,21,40,55,6,7,40,48,2179,2208,720,1101,39,48,50,65,8,10,2819,3253,2039,2074,699,1072,10,10,39,51,3,3,29,43,2065,2113,707,1085,28,34,46,61,3,6,134,128,107,90,7,14,5,11,1,4,3,4,11,5,114,95,13,16,11,14,4,4,5,4 -050,01,069,Alabama,Houston County,12,10,6729,3193,3536,2346,2467,756,985,20,11,36,37,2,2,33,34,2376,2497,763,995,41,29,41,45,6,7,3091,3437,2271,2383,751,980,7,7,36,35,1,2,25,30,2295,2409,755,990,23,22,40,43,3,6,102,99,75,84,5,5,13,4,0,2,1,0,8,4,81,88,8,5,18,7,1,2,3,1 -050,01,069,Alabama,Houston County,12,11,6570,3162,3408,2339,2384,736,923,24,32,35,40,1,2,27,27,2362,2408,741,931,45,48,38,46,3,2,3067,3345,2255,2334,733,916,19,31,34,38,1,2,25,24,2276,2357,738,921,38,46,37,43,3,2,95,63,84,50,3,7,5,1,1,2,0,0,2,3,86,51,3,10,7,2,1,3,0,0 -050,01,069,Alabama,Houston County,12,12,7275,3409,3866,2578,2779,748,979,24,22,27,58,1,2,31,26,2601,2802,755,985,47,40,35,62,6,3,3335,3799,2513,2719,746,974,23,21,25,58,1,2,27,25,2533,2741,751,980,45,38,31,62,4,3,74,67,65,60,2,5,1,1,2,0,0,0,4,1,68,61,4,5,2,2,4,0,2,0 -050,01,069,Alabama,Houston County,12,13,6861,3274,3587,2472,2592,728,878,12,29,23,47,2,1,37,40,2505,2625,735,887,38,59,28,56,5,5,3222,3531,2424,2549,726,872,11,27,22,45,2,1,37,37,2457,2580,733,879,37,56,27,52,5,3,52,56,48,43,2,6,1,2,1,2,0,0,0,3,48,45,2,8,1,3,1,4,0,2 -050,01,069,Alabama,Houston County,12,14,6058,2731,3327,2121,2510,558,721,14,24,17,36,0,2,21,34,2141,2538,561,732,29,48,20,40,2,7,2692,3286,2092,2483,551,713,12,19,17,36,0,2,20,33,2111,2510,554,723,27,42,19,40,2,7,39,41,29,27,7,8,2,5,0,0,0,0,1,1,30,28,7,9,2,6,1,0,0,0 -050,01,069,Alabama,Houston County,12,15,5202,2378,2824,1927,2249,395,498,16,22,16,31,0,1,24,23,1949,2266,397,505,36,39,19,33,1,4,2350,2795,1907,2226,390,496,13,19,16,31,0,1,24,22,1929,2243,392,503,33,36,19,32,1,3,28,29,20,23,5,2,3,3,0,0,0,0,0,1,20,23,5,2,3,3,0,1,0,1 -050,01,069,Alabama,Houston County,12,16,3519,1513,2006,1263,1657,227,310,8,4,8,11,0,1,7,23,1268,1675,230,317,14,20,9,15,0,3,1490,1978,1242,1633,225,309,8,3,8,9,0,1,7,23,1247,1651,228,316,14,19,9,13,0,3,23,28,21,24,2,1,0,1,0,2,0,0,0,0,21,24,2,1,0,1,0,2,0,0 -050,01,069,Alabama,Houston County,12,17,2382,964,1418,818,1172,128,222,4,6,8,9,0,1,6,8,823,1179,130,223,8,11,9,12,0,2,959,1404,813,1160,128,221,4,6,8,9,0,1,6,7,818,1166,130,222,8,11,9,11,0,1,5,14,5,12,0,1,0,0,0,0,0,0,0,1,5,13,0,1,0,0,0,1,0,1 -050,01,069,Alabama,Houston County,12,18,2182,721,1461,602,1200,100,226,4,9,3,12,0,0,12,14,611,1211,105,230,13,18,7,14,2,2,709,1443,591,1188,100,223,3,9,3,12,0,0,12,11,600,1198,105,225,12,17,7,13,2,1,12,18,11,12,0,3,1,0,0,0,0,0,0,3,11,13,0,5,1,1,0,1,0,1 -050,01,069,Alabama,Houston County,13,0,106580,50976,55604,35292,37490,13700,15862,275,326,506,696,47,59,1156,1171,36314,38516,14355,16510,662,733,734,939,115,129,49034,53833,33751,36119,13546,15697,190,241,482,670,25,35,1040,1071,34671,37062,14144,16296,523,607,690,891,86,90,1942,1771,1541,1371,154,165,85,85,24,26,22,24,116,100,1643,1454,211,214,139,126,44,48,29,39 -050,01,069,Alabama,Houston County,13,1,6707,3450,3257,1991,1840,1193,1167,18,15,41,39,7,6,200,190,2180,2011,1348,1318,44,37,78,71,12,13,3260,3082,1853,1709,1172,1151,10,7,33,37,3,2,189,176,2032,1868,1320,1294,32,24,68,67,8,8,190,175,138,131,21,16,8,8,8,2,4,4,11,14,148,143,28,24,12,13,10,4,4,5 -050,01,069,Alabama,Houston County,13,2,6485,3401,3084,2027,1823,1122,1050,21,17,41,49,3,5,187,140,2201,1953,1258,1151,51,42,77,73,11,11,3182,2900,1853,1688,1106,1028,12,7,41,45,1,2,169,130,2011,1811,1233,1123,36,28,73,67,8,7,219,184,174,135,16,22,9,10,0,4,2,3,18,10,190,142,25,28,15,14,4,6,3,4 -050,01,069,Alabama,Houston County,13,3,6944,3568,3376,2226,2038,1165,1143,12,12,28,37,8,8,129,138,2341,2162,1253,1234,34,40,57,68,15,15,3376,3181,2073,1887,1149,1126,8,6,22,36,3,2,121,124,2181,1999,1234,1212,27,29,49,64,9,6,192,195,153,151,16,17,4,6,6,1,5,6,8,14,160,163,19,22,7,11,8,4,6,9 -050,01,069,Alabama,Houston County,13,4,6454,3354,3100,2059,1916,1128,1020,12,17,23,38,5,4,127,105,2175,2011,1212,1088,42,42,47,58,10,8,3184,2946,1923,1799,1113,1004,9,9,21,35,1,3,117,96,2030,1885,1193,1067,35,31,43,54,5,7,170,154,136,117,15,16,3,8,2,3,4,1,10,9,145,126,19,21,7,11,4,4,5,1 -050,01,069,Alabama,Houston County,13,5,5854,2884,2970,1799,1819,954,981,17,24,23,33,1,5,90,108,1879,1910,1005,1052,42,54,42,56,7,7,2745,2847,1692,1718,944,976,5,17,22,32,0,4,82,100,1764,1804,990,1042,28,42,40,54,6,6,139,123,107,101,10,5,12,7,1,1,1,1,8,8,115,106,15,10,14,12,2,2,1,1 -050,01,069,Alabama,Houston County,13,6,6894,3354,3540,2124,2182,1097,1230,17,16,28,19,1,2,87,91,2196,2259,1145,1279,49,47,49,43,4,6,3227,3439,2030,2105,1081,1217,9,11,25,19,1,0,81,87,2096,2178,1126,1265,39,41,46,42,3,3,127,101,94,77,16,13,8,5,3,0,0,2,6,4,100,81,19,14,10,6,3,1,1,3 -050,01,069,Alabama,Houston County,13,7,6816,3169,3647,2110,2307,939,1194,19,15,53,64,6,6,42,61,2148,2358,954,1224,39,36,64,85,8,11,3010,3529,1977,2223,931,1179,14,10,53,63,5,3,30,51,2003,2266,942,1203,27,29,63,81,7,7,159,118,133,84,8,15,5,5,0,1,1,3,12,10,145,92,12,21,12,7,1,4,1,4 -050,01,069,Alabama,Houston County,13,8,6712,3230,3482,2234,2254,883,1077,15,29,50,71,2,5,46,46,2271,2289,898,1094,42,49,60,84,6,12,3069,3340,2107,2136,870,1068,10,22,50,69,1,5,31,40,2131,2166,877,1083,29,39,58,81,5,11,161,142,127,118,13,9,5,7,0,2,1,0,15,6,140,123,21,11,13,10,2,3,1,1 -050,01,069,Alabama,Houston County,13,9,6394,2984,3410,2116,2204,759,1079,15,15,44,52,6,6,44,54,2152,2251,776,1097,44,47,49,64,10,9,2858,3277,2014,2101,754,1068,12,9,43,49,4,3,31,47,2041,2142,762,1083,34,38,47,59,7,6,126,133,102,103,5,11,3,6,1,3,2,3,13,7,111,109,14,14,10,9,2,5,3,3 -050,01,069,Alabama,Houston County,13,10,6590,3111,3479,2284,2359,740,1031,20,14,26,40,4,2,37,33,2314,2387,751,1042,41,31,34,48,8,6,2997,3378,2203,2277,730,1024,6,9,26,37,2,1,30,30,2228,2302,738,1033,22,25,33,45,6,5,114,101,81,82,10,7,14,5,0,3,2,1,7,3,86,85,13,9,19,6,1,3,2,1 -050,01,069,Alabama,Houston County,13,11,6596,3227,3369,2386,2339,756,924,20,28,42,45,1,2,22,31,2406,2369,760,928,35,45,44,52,4,6,3132,3290,2301,2282,752,915,16,22,42,43,1,2,20,26,2319,2307,755,918,30,37,44,49,4,5,95,79,85,57,4,9,4,6,0,2,0,0,2,5,87,62,5,10,5,8,0,3,0,1 -050,01,069,Alabama,Houston County,13,12,7214,3395,3819,2551,2712,749,985,27,30,31,58,1,2,36,32,2576,2739,759,993,53,52,41,64,7,4,3318,3758,2488,2657,745,981,24,29,29,58,1,2,31,31,2509,2683,754,988,46,51,36,64,5,4,77,61,63,55,4,4,3,1,2,0,0,0,5,1,67,56,5,5,7,1,5,0,2,0 -050,01,069,Alabama,Houston County,13,13,7010,3293,3717,2482,2726,745,893,13,23,20,41,2,2,31,32,2506,2751,753,903,36,50,25,44,4,5,3234,3660,2426,2678,743,888,12,21,20,39,2,2,31,32,2450,2703,751,898,35,48,25,42,4,5,59,57,56,48,2,5,1,2,0,2,0,0,0,0,56,48,2,5,1,2,0,2,0,0 -050,01,069,Alabama,Houston County,13,14,6192,2770,3422,2145,2542,569,775,16,26,13,39,0,0,27,40,2166,2575,574,785,36,61,18,45,4,3,2728,3369,2114,2506,562,767,14,21,12,39,0,0,26,36,2134,2535,567,775,33,52,16,43,4,2,42,53,31,36,7,8,2,5,1,0,0,0,1,4,32,40,7,10,3,9,2,2,0,1 -050,01,069,Alabama,Houston County,13,15,5289,2430,2859,1951,2250,421,528,15,23,22,33,0,3,21,22,1969,2270,425,530,31,41,24,35,2,5,2404,2825,1931,2223,418,525,12,20,22,33,0,3,21,21,1949,2242,422,527,28,38,24,35,2,4,26,34,20,27,3,3,3,3,0,0,0,0,0,1,20,28,3,3,3,3,0,0,0,1 -050,01,069,Alabama,Houston County,13,16,3790,1638,2152,1358,1774,251,333,10,7,6,14,0,1,13,23,1370,1796,252,336,22,26,7,18,0,1,1611,2125,1335,1750,247,333,10,6,6,12,0,1,13,23,1347,1772,248,336,22,25,7,16,0,1,27,27,23,24,4,0,0,1,0,2,0,0,0,0,23,24,4,0,0,1,0,2,0,0 -050,01,069,Alabama,Houston County,13,17,2430,990,1440,841,1189,128,223,4,6,11,10,0,0,6,12,847,1201,128,223,9,13,12,14,0,3,982,1423,833,1175,128,221,4,6,11,10,0,0,6,11,839,1186,128,221,9,13,12,13,0,2,8,17,8,14,0,2,0,0,0,0,0,0,0,1,8,15,0,2,0,0,0,1,0,1 -050,01,069,Alabama,Houston County,13,18,2209,728,1481,608,1216,101,229,4,9,4,14,0,0,11,13,617,1224,104,233,12,20,6,17,3,4,717,1464,598,1205,101,226,3,9,4,14,0,0,11,10,607,1213,104,228,11,17,6,15,3,1,11,17,10,11,0,3,1,0,0,0,0,0,0,3,10,11,0,5,1,3,0,2,0,3 -050,01,071,Alabama,Jackson County,1,0,53227,26139,27088,24061,24908,878,942,399,420,97,128,38,25,666,665,24698,25543,1002,1097,917,904,138,171,56,46,25402,26486,23502,24467,859,921,331,351,65,101,21,8,624,638,24112,25087,972,1068,826,825,96,134,24,15,737,602,559,441,19,21,68,69,32,27,17,17,42,27,586,456,30,29,91,79,42,37,32,31 -050,01,071,Alabama,Jackson County,1,1,2975,1535,1440,1391,1288,56,53,16,10,5,13,4,3,63,73,1449,1361,85,107,48,23,11,17,6,7,1448,1344,1322,1214,52,52,11,3,3,7,2,1,58,67,1376,1281,79,103,42,14,8,11,2,3,87,96,69,74,4,1,5,7,2,6,2,2,5,6,73,80,6,4,6,9,3,6,4,4 -050,01,071,Alabama,Jackson County,1,2,3333,1705,1628,1537,1482,57,55,25,28,14,7,3,1,69,55,1604,1536,93,89,56,46,21,12,4,3,1620,1548,1475,1423,57,53,17,17,8,4,2,0,61,51,1536,1474,89,85,43,34,13,7,2,0,85,80,62,59,0,2,8,11,6,3,1,1,8,4,68,62,4,4,13,12,8,5,2,3 -050,01,071,Alabama,Jackson County,1,3,3546,1827,1719,1621,1538,79,81,38,27,6,11,0,1,83,61,1700,1593,104,100,92,66,11,17,3,4,1757,1644,1575,1481,76,76,27,20,4,9,0,0,75,58,1648,1536,99,95,78,58,7,13,0,0,70,75,46,57,3,5,11,7,2,2,0,1,8,3,52,57,5,5,14,8,4,4,3,4 -050,01,071,Alabama,Jackson County,1,4,3548,1846,1702,1668,1518,68,80,37,34,5,10,2,4,66,56,1730,1572,84,99,81,71,12,12,5,5,1767,1651,1608,1485,66,77,27,27,3,5,1,2,62,55,1670,1539,81,95,69,63,8,7,1,3,79,51,60,33,2,3,10,7,2,5,1,2,4,1,60,33,3,4,12,8,4,5,4,2 -050,01,071,Alabama,Jackson County,1,5,2718,1383,1335,1247,1215,63,48,26,23,8,7,12,2,27,40,1273,1253,66,55,47,51,11,12,13,5,1309,1303,1188,1195,63,47,22,17,3,7,9,0,24,37,1212,1232,66,54,41,44,5,10,9,1,74,32,59,20,0,1,4,6,5,0,3,2,3,3,61,21,0,1,6,7,6,2,4,4 -050,01,071,Alabama,Jackson County,1,6,2822,1390,1432,1271,1318,43,39,25,32,6,8,7,4,38,31,1307,1346,47,41,59,58,8,11,7,7,1312,1383,1207,1278,42,39,23,31,1,3,4,2,35,30,1240,1306,45,41,55,57,3,5,4,4,78,49,64,40,1,0,2,1,5,5,3,2,3,1,67,40,2,0,4,1,5,6,3,3 -050,01,071,Alabama,Jackson County,1,7,3081,1520,1561,1368,1416,64,47,41,43,9,10,1,1,37,44,1405,1458,65,50,75,78,11,16,1,3,1457,1513,1316,1382,63,45,37,37,6,9,0,0,35,40,1351,1422,63,46,70,72,8,13,0,0,63,48,52,34,1,2,4,6,3,1,1,1,2,4,54,36,2,4,5,6,3,3,1,3 -050,01,071,Alabama,Jackson County,1,8,3587,1773,1814,1616,1635,68,69,30,47,8,15,1,4,50,44,1664,1675,69,73,76,89,12,16,2,5,1708,1756,1564,1599,65,63,24,36,6,13,1,2,48,43,1611,1639,66,67,69,77,9,14,1,2,65,58,52,36,3,6,6,11,2,2,0,2,2,1,53,36,3,6,7,12,3,2,1,3 -050,01,071,Alabama,Jackson County,1,9,3492,1798,1694,1672,1548,48,62,18,27,10,13,2,2,48,42,1717,1588,49,65,64,66,11,14,5,3,1753,1665,1641,1527,47,62,13,23,8,12,0,0,44,41,1685,1567,48,65,56,62,8,12,0,0,45,29,31,21,1,0,5,4,2,1,2,2,4,1,32,21,1,0,8,4,3,2,5,3 -050,01,071,Alabama,Jackson County,1,10,3853,1882,1971,1758,1818,54,60,24,29,5,10,2,2,39,52,1796,1869,55,63,62,74,5,15,3,3,1858,1951,1746,1804,53,59,17,26,5,9,1,1,36,52,1782,1855,54,62,52,71,5,14,1,2,24,20,12,14,1,1,7,3,0,1,1,1,3,0,14,14,1,1,10,3,0,1,2,1 -050,01,071,Alabama,Jackson County,1,11,4128,2080,2048,1917,1871,77,81,33,42,7,4,3,0,43,50,1957,1918,82,84,70,90,9,6,5,0,2049,2031,1898,1860,75,81,28,38,4,3,1,0,43,49,1938,1906,80,84,65,85,6,5,3,0,31,17,19,11,2,0,5,4,3,1,2,0,0,1,19,12,2,0,5,5,3,1,2,0 -050,01,071,Alabama,Jackson County,1,12,3785,1829,1956,1691,1831,74,56,27,28,3,2,1,0,33,39,1722,1869,76,57,59,66,4,3,1,0,1819,1940,1682,1816,74,56,27,27,3,2,0,0,33,39,1713,1854,76,57,59,65,4,3,0,0,10,16,9,15,0,0,0,1,0,0,1,0,0,0,9,15,0,0,0,1,0,0,1,0 -050,01,071,Alabama,Jackson County,1,13,3586,1706,1880,1604,1760,45,62,32,23,3,12,0,0,22,23,1626,1782,45,63,54,46,3,12,0,0,1696,1868,1594,1749,45,62,32,22,3,12,0,0,22,23,1616,1771,45,63,54,45,3,12,0,0,10,12,10,11,0,0,0,1,0,0,0,0,0,0,10,11,0,0,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,1,14,3040,1474,1566,1402,1485,28,46,17,14,6,1,0,0,21,20,1423,1505,28,46,37,33,7,2,1,0,1466,1564,1395,1484,28,46,16,14,6,1,0,0,21,19,1416,1503,28,46,36,32,7,2,1,0,8,2,7,1,0,0,1,0,0,0,0,0,0,1,7,2,0,0,1,1,0,0,0,0 -050,01,071,Alabama,Jackson County,1,15,2283,1076,1207,1040,1151,17,38,6,6,2,1,0,0,11,11,1051,1161,17,39,17,17,2,1,0,0,1074,1197,1038,1142,17,38,6,6,2,1,0,0,11,10,1049,1151,17,39,17,16,2,1,0,0,2,10,2,9,0,0,0,0,0,0,0,0,0,1,2,10,0,0,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,1,16,1578,663,915,641,876,11,27,1,2,0,1,0,0,10,9,651,885,11,27,11,11,0,1,0,0,662,910,640,871,11,27,1,2,0,1,0,0,10,9,650,880,11,27,11,11,0,1,0,0,1,5,1,5,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,1,17,1051,421,630,406,598,13,21,1,2,0,1,0,0,1,8,407,606,13,21,2,9,0,2,0,0,417,629,402,597,13,21,1,2,0,1,0,0,1,8,403,605,13,21,2,9,0,2,0,0,4,1,4,1,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,1,18,821,231,590,211,560,13,17,2,3,0,2,0,1,5,7,216,566,13,18,7,10,0,2,0,1,230,589,211,560,12,17,2,3,0,2,0,0,5,7,216,566,12,18,7,10,0,2,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,2,0,53248,26151,27097,24070,24917,878,942,399,420,97,128,38,25,669,665,24710,25552,1005,1097,917,904,138,171,56,46,25411,26490,23508,24471,859,921,331,351,65,101,21,8,627,638,24121,25091,975,1068,826,825,96,134,24,15,740,607,562,446,19,21,68,69,32,27,17,17,42,27,589,461,30,29,91,79,42,37,32,31 -050,01,071,Alabama,Jackson County,2,1,2982,1538,1444,1394,1292,56,53,16,10,5,13,4,3,63,73,1452,1365,85,107,48,23,11,17,6,7,1450,1345,1324,1215,52,52,11,3,3,7,2,1,58,67,1378,1282,79,103,42,14,8,11,2,3,88,99,70,77,4,1,5,7,2,6,2,2,5,6,74,83,6,4,6,9,3,6,4,4 -050,01,071,Alabama,Jackson County,2,2,3337,1709,1628,1539,1482,57,55,25,28,14,7,3,1,71,55,1608,1536,95,89,56,46,21,12,4,3,1623,1548,1476,1423,57,53,17,17,8,4,2,0,63,51,1539,1474,91,85,43,34,13,7,2,0,86,80,63,59,0,2,8,11,6,3,1,1,8,4,69,62,4,4,13,12,8,5,2,3 -050,01,071,Alabama,Jackson County,2,3,3547,1828,1719,1621,1538,79,81,38,27,6,11,0,1,84,61,1701,1593,105,100,92,66,11,17,3,4,1758,1644,1575,1481,76,76,27,20,4,9,0,0,76,58,1649,1536,100,95,78,58,7,13,0,0,70,75,46,57,3,5,11,7,2,2,0,1,8,3,52,57,5,5,14,8,4,4,3,4 -050,01,071,Alabama,Jackson County,2,4,3549,1846,1703,1668,1519,68,80,37,34,5,10,2,4,66,56,1730,1573,84,99,81,71,12,12,5,5,1767,1652,1608,1486,66,77,27,27,3,5,1,2,62,55,1670,1540,81,95,69,63,8,7,1,3,79,51,60,33,2,3,10,7,2,5,1,2,4,1,60,33,3,4,12,8,4,5,4,2 -050,01,071,Alabama,Jackson County,2,5,2719,1384,1335,1248,1215,63,48,26,23,8,7,12,2,27,40,1274,1253,66,55,47,51,11,12,13,5,1310,1303,1189,1195,63,47,22,17,3,7,9,0,24,37,1213,1232,66,54,41,44,5,10,9,1,74,32,59,20,0,1,4,6,5,0,3,2,3,3,61,21,0,1,6,7,6,2,4,4 -050,01,071,Alabama,Jackson County,2,6,2826,1392,1434,1273,1320,43,39,25,32,6,8,7,4,38,31,1309,1348,47,41,59,58,8,11,7,7,1314,1384,1209,1279,42,39,23,31,1,3,4,2,35,30,1242,1307,45,41,55,57,3,5,4,4,78,50,64,41,1,0,2,1,5,5,3,2,3,1,67,41,2,0,4,1,5,6,3,3 -050,01,071,Alabama,Jackson County,2,7,3083,1519,1564,1367,1419,64,47,41,43,9,10,1,1,37,44,1404,1461,65,50,75,78,11,16,1,3,1455,1515,1314,1384,63,45,37,37,6,9,0,0,35,40,1349,1424,63,46,70,72,8,13,0,0,64,49,53,35,1,2,4,6,3,1,1,1,2,4,55,37,2,4,5,6,3,3,1,3 -050,01,071,Alabama,Jackson County,2,8,3589,1774,1815,1617,1636,68,69,30,47,8,15,1,4,50,44,1665,1676,69,73,76,89,12,16,2,5,1709,1757,1565,1600,65,63,24,36,6,13,1,2,48,43,1612,1640,66,67,69,77,9,14,1,2,65,58,52,36,3,6,6,11,2,2,0,2,2,1,53,36,3,6,7,12,3,2,1,3 -050,01,071,Alabama,Jackson County,2,9,3494,1800,1694,1674,1548,48,62,18,27,10,13,2,2,48,42,1719,1588,49,65,64,66,11,14,5,3,1755,1665,1643,1527,47,62,13,23,8,12,0,0,44,41,1687,1567,48,65,56,62,8,12,0,0,45,29,31,21,1,0,5,4,2,1,2,2,4,1,32,21,1,0,8,4,3,2,5,3 -050,01,071,Alabama,Jackson County,2,10,3853,1882,1971,1758,1818,54,60,24,29,5,10,2,2,39,52,1796,1869,55,63,62,74,5,15,3,3,1858,1951,1746,1804,53,59,17,26,5,9,1,1,36,52,1782,1855,54,62,52,71,5,14,1,2,24,20,12,14,1,1,7,3,0,1,1,1,3,0,14,14,1,1,10,3,0,1,2,1 -050,01,071,Alabama,Jackson County,2,11,4127,2079,2048,1916,1871,77,81,33,42,7,4,3,0,43,50,1956,1918,82,84,70,90,9,6,5,0,2048,2031,1897,1860,75,81,28,38,4,3,1,0,43,49,1937,1906,80,84,65,85,6,5,3,0,31,17,19,11,2,0,5,4,3,1,2,0,0,1,19,12,2,0,5,5,3,1,2,0 -050,01,071,Alabama,Jackson County,2,12,3785,1829,1956,1691,1831,74,56,27,28,3,2,1,0,33,39,1722,1869,76,57,59,66,4,3,1,0,1819,1940,1682,1816,74,56,27,27,3,2,0,0,33,39,1713,1854,76,57,59,65,4,3,0,0,10,16,9,15,0,0,0,1,0,0,1,0,0,0,9,15,0,0,0,1,0,0,1,0 -050,01,071,Alabama,Jackson County,2,13,3586,1706,1880,1604,1760,45,62,32,23,3,12,0,0,22,23,1626,1782,45,63,54,46,3,12,0,0,1696,1868,1594,1749,45,62,32,22,3,12,0,0,22,23,1616,1771,45,63,54,45,3,12,0,0,10,12,10,11,0,0,0,1,0,0,0,0,0,0,10,11,0,0,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,2,14,3039,1473,1566,1401,1485,28,46,17,14,6,1,0,0,21,20,1422,1505,28,46,37,33,7,2,1,0,1465,1564,1394,1484,28,46,16,14,6,1,0,0,21,19,1415,1503,28,46,36,32,7,2,1,0,8,2,7,1,0,0,1,0,0,0,0,0,0,1,7,2,0,0,1,1,0,0,0,0 -050,01,071,Alabama,Jackson County,2,15,2284,1077,1207,1041,1151,17,38,6,6,2,1,0,0,11,11,1052,1161,17,39,17,17,2,1,0,0,1075,1197,1039,1142,17,38,6,6,2,1,0,0,11,10,1050,1151,17,39,17,16,2,1,0,0,2,10,2,9,0,0,0,0,0,0,0,0,0,1,2,10,0,0,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,2,16,1577,663,914,641,875,11,27,1,2,0,1,0,0,10,9,651,884,11,27,11,11,0,1,0,0,662,909,640,870,11,27,1,2,0,1,0,0,10,9,650,879,11,27,11,11,0,1,0,0,1,5,1,5,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,2,17,1050,421,629,406,597,13,21,1,2,0,1,0,0,1,8,407,605,13,21,2,9,0,2,0,0,417,628,402,596,13,21,1,2,0,1,0,0,1,8,403,604,13,21,2,9,0,2,0,0,4,1,4,1,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,2,18,821,231,590,211,560,13,17,2,3,0,2,0,1,5,7,216,566,13,18,7,10,0,2,0,1,230,589,211,560,12,17,2,3,0,2,0,0,5,7,216,566,12,18,7,10,0,2,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,3,0,53207,26123,27084,24040,24893,882,942,394,423,99,132,36,26,672,668,24689,25530,1047,1101,883,912,132,173,47,42,25392,26475,23486,24444,862,921,326,354,67,104,21,9,630,643,24094,25057,1012,1069,792,832,98,142,29,24,731,609,554,449,20,21,68,69,32,28,15,17,42,25,595,473,35,32,91,80,34,31,18,18 -050,01,071,Alabama,Jackson County,3,1,2979,1545,1434,1397,1282,57,51,17,10,5,12,4,3,65,76,1460,1357,95,96,39,39,12,19,6,4,1455,1335,1326,1204,53,50,11,3,3,7,2,1,60,70,1385,1273,89,93,32,29,8,13,3,2,90,99,71,78,4,1,6,7,2,5,2,2,5,6,75,84,6,3,7,10,4,6,3,2 -050,01,071,Alabama,Jackson County,3,2,3290,1688,1602,1518,1458,57,54,22,28,15,7,3,1,73,54,1590,1509,88,79,60,53,18,11,5,4,1605,1522,1457,1399,57,52,16,17,8,4,2,0,65,50,1521,1446,87,76,48,40,11,7,3,3,83,80,61,59,0,2,6,11,7,3,1,1,8,4,69,63,1,3,12,13,7,4,2,1 -050,01,071,Alabama,Jackson County,3,3,3547,1829,1718,1626,1538,79,80,36,27,6,12,0,1,82,60,1706,1597,109,103,85,61,9,14,3,3,1757,1647,1579,1484,76,75,25,20,4,10,0,0,73,58,1650,1541,102,96,69,54,7,12,3,2,72,71,47,54,3,5,11,7,2,2,0,1,9,2,56,56,7,7,16,7,2,2,0,1 -050,01,071,Alabama,Jackson County,3,4,3493,1815,1678,1632,1492,70,81,38,33,6,11,2,4,67,57,1698,1547,91,99,81,70,9,15,3,5,1735,1624,1571,1457,68,78,28,26,4,5,1,2,63,56,1633,1511,87,95,69,63,7,9,2,3,80,54,61,35,2,3,10,7,2,6,1,2,4,1,65,36,4,4,12,7,2,6,1,2 -050,01,071,Alabama,Jackson County,3,5,2780,1419,1361,1284,1240,62,49,26,23,8,7,10,2,29,40,1310,1279,71,59,48,51,9,9,10,3,1347,1327,1227,1219,62,48,21,17,3,6,8,0,26,37,1250,1255,69,56,42,44,4,8,8,1,72,34,57,21,0,1,5,6,5,1,2,2,3,3,60,24,2,3,6,7,5,1,2,2 -050,01,071,Alabama,Jackson County,3,6,2811,1379,1432,1258,1315,44,40,25,32,7,10,7,4,38,31,1294,1342,53,47,54,55,9,14,7,5,1307,1383,1198,1275,43,40,23,31,2,5,5,2,36,30,1232,1301,50,47,52,53,4,9,5,3,72,49,60,40,1,0,2,1,5,5,2,2,2,1,62,41,3,0,2,2,5,5,2,2 -050,01,071,Alabama,Jackson County,3,7,3053,1509,1544,1359,1401,62,46,41,43,9,9,1,1,37,44,1393,1440,69,56,70,77,12,13,2,2,1446,1498,1308,1368,61,44,36,37,6,8,0,0,35,41,1340,1404,66,52,65,70,9,12,1,1,63,46,51,33,1,2,5,6,3,1,1,1,2,3,53,36,3,4,5,7,3,1,1,1 -050,01,071,Alabama,Jackson County,3,8,3567,1760,1807,1604,1629,69,67,30,48,8,14,1,5,48,44,1650,1671,73,70,75,87,9,16,1,7,1695,1746,1554,1591,65,61,23,36,6,12,1,3,46,43,1598,1632,69,64,66,74,7,14,1,5,65,61,50,38,4,6,7,12,2,2,0,2,2,1,52,39,4,6,9,13,2,2,0,2 -050,01,071,Alabama,Jackson County,3,9,3506,1799,1707,1674,1559,47,63,17,27,10,16,2,2,49,40,1721,1597,51,65,61,62,13,19,2,4,1755,1677,1642,1537,46,63,13,23,9,15,0,0,45,39,1685,1575,50,65,53,58,12,17,0,1,44,30,32,22,1,0,4,4,1,1,2,2,4,1,36,22,1,0,8,4,1,2,2,3 -050,01,071,Alabama,Jackson County,3,10,3832,1873,1959,1752,1805,53,60,23,30,5,10,2,2,38,52,1789,1854,56,63,56,78,7,14,3,2,1849,1939,1739,1790,52,59,17,28,5,9,1,1,35,52,1773,1839,55,62,48,76,7,13,1,1,24,20,13,15,1,1,6,2,0,1,1,1,3,0,16,15,1,1,8,2,0,1,2,1 -050,01,071,Alabama,Jackson County,3,11,4119,2068,2051,1906,1874,77,79,32,43,6,4,3,0,44,51,1949,1921,79,85,74,91,7,4,3,1,2040,2034,1890,1864,75,79,27,38,3,3,1,0,44,50,1933,1910,77,84,69,86,4,3,1,1,28,17,16,10,2,0,5,5,3,1,2,0,0,1,16,11,2,1,5,5,3,1,2,0 -050,01,071,Alabama,Jackson County,3,12,3817,1847,1970,1708,1841,75,59,28,29,3,2,1,0,32,39,1739,1880,77,62,58,65,4,2,1,0,1836,1954,1698,1826,75,59,28,28,3,2,0,0,32,39,1729,1865,77,62,58,64,4,2,0,0,11,16,10,15,0,0,0,1,0,0,1,0,0,0,10,15,0,0,0,1,0,0,1,0 -050,01,071,Alabama,Jackson County,3,13,3594,1714,1880,1609,1762,48,62,31,22,3,11,0,0,23,23,1631,1784,49,64,53,43,4,12,0,0,1704,1868,1599,1750,48,62,31,22,3,11,0,0,23,23,1621,1772,49,64,53,43,4,12,0,0,10,12,10,12,0,0,0,0,0,0,0,0,0,0,10,12,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,3,14,3054,1475,1579,1403,1495,28,45,18,15,5,2,0,0,21,22,1423,1517,30,45,36,36,6,3,1,0,1467,1576,1396,1493,28,45,17,15,5,2,0,0,21,21,1416,1514,30,45,35,35,6,3,1,0,8,3,7,2,0,0,1,0,0,0,0,0,0,1,7,3,0,0,1,1,0,0,0,0 -050,01,071,Alabama,Jackson County,3,15,2287,1082,1205,1045,1151,17,36,6,6,3,1,0,0,11,11,1056,1161,18,36,16,15,3,3,0,1,1080,1196,1043,1143,17,36,6,6,3,1,0,0,11,10,1054,1152,18,36,16,14,3,3,0,1,2,9,2,8,0,0,0,0,0,0,0,0,0,1,2,9,0,0,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,3,16,1587,662,925,641,885,11,28,1,2,0,1,0,0,9,9,650,894,12,29,8,9,1,2,0,0,661,919,640,879,11,28,1,2,0,1,0,0,9,9,649,888,12,29,8,9,1,2,0,0,1,6,1,6,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,3,17,1056,426,630,411,596,13,24,1,2,0,1,0,0,1,7,412,603,13,24,2,9,0,1,0,0,421,629,406,595,13,24,1,2,0,1,0,0,1,7,407,602,13,24,2,9,0,1,0,0,5,1,5,1,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,3,18,835,233,602,213,570,13,18,2,3,0,2,0,1,5,8,218,577,13,19,7,11,0,2,0,1,232,601,213,570,12,18,2,3,0,2,0,0,5,8,218,577,12,19,7,11,0,2,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,4,0,53240,26232,27008,24115,24863,886,899,398,414,107,138,39,24,687,670,24773,25509,1063,1062,900,894,139,179,47,34,25462,26396,23530,24402,868,881,323,350,74,109,22,9,645,645,24149,25024,1026,1031,801,819,105,149,29,18,770,612,585,461,18,18,75,64,33,29,17,15,42,25,624,485,37,31,99,75,34,30,18,16 -050,01,071,Alabama,Jackson County,4,1,2954,1550,1404,1395,1267,54,44,19,8,6,8,3,2,73,75,1465,1338,96,88,47,38,13,13,3,2,1456,1315,1318,1192,51,43,12,4,5,5,2,1,68,70,1384,1258,89,87,38,29,12,10,2,1,94,89,77,75,3,1,7,4,1,3,1,1,5,5,81,80,7,1,9,9,1,3,1,1 -050,01,071,Alabama,Jackson County,4,2,3204,1668,1536,1497,1388,64,55,20,24,14,10,3,0,70,59,1567,1444,99,86,53,51,17,13,3,1,1589,1461,1442,1333,63,54,14,14,7,6,1,0,62,54,1504,1384,94,81,43,40,10,9,1,1,79,75,55,55,1,1,6,10,7,4,2,0,8,5,63,60,5,5,10,11,7,4,2,0 -050,01,071,Alabama,Jackson County,4,3,3586,1857,1729,1665,1567,76,70,30,25,8,10,1,2,77,55,1738,1621,108,93,75,55,11,13,2,2,1783,1666,1615,1519,75,65,19,19,4,9,1,0,69,54,1681,1572,104,87,58,49,7,12,2,0,74,63,50,48,1,5,11,6,4,1,0,2,8,1,57,49,4,6,17,6,4,1,0,2 -050,01,071,Alabama,Jackson County,4,4,3280,1723,1557,1535,1388,65,68,43,29,6,10,2,3,72,59,1605,1445,85,89,93,63,9,13,4,6,1639,1501,1473,1349,62,67,31,22,4,4,1,2,68,57,1539,1404,82,86,78,56,6,7,3,5,84,56,62,39,3,1,12,7,2,6,1,1,4,2,66,41,3,3,15,7,3,6,1,1 -050,01,071,Alabama,Jackson County,4,5,2946,1511,1435,1383,1323,57,44,28,22,8,9,7,3,28,34,1409,1356,68,54,46,46,9,10,7,3,1432,1392,1320,1296,57,43,21,16,3,6,5,0,26,31,1344,1326,66,52,39,38,4,7,5,0,79,43,63,27,0,1,7,6,5,3,2,3,2,3,65,30,2,2,7,8,5,3,2,3 -050,01,071,Alabama,Jackson County,4,6,2777,1355,1422,1224,1312,52,34,23,28,5,14,10,3,41,31,1261,1340,61,38,55,54,8,17,11,4,1285,1366,1167,1264,51,34,21,27,2,9,6,2,38,30,1202,1291,58,38,51,52,5,12,7,3,70,56,57,48,1,0,2,1,3,5,4,1,3,1,59,49,3,0,4,2,3,5,4,1 -050,01,071,Alabama,Jackson County,4,7,3000,1479,1521,1333,1378,56,47,42,42,9,10,1,1,38,43,1369,1421,59,54,73,73,13,15,3,1,1412,1479,1278,1349,55,45,38,36,4,9,1,0,36,40,1312,1389,57,49,68,67,8,14,3,0,67,42,55,29,1,2,4,6,5,1,0,1,2,3,57,32,2,5,5,6,5,1,0,1 -050,01,071,Alabama,Jackson County,4,8,3477,1738,1739,1589,1571,69,59,25,47,9,12,2,4,44,46,1629,1613,75,64,64,86,11,16,3,6,1674,1677,1539,1529,66,54,18,36,8,10,1,3,42,45,1577,1571,70,59,57,75,10,13,2,4,64,62,50,42,3,5,7,11,1,2,1,1,2,1,52,42,5,5,7,11,1,3,1,2 -050,01,071,Alabama,Jackson County,4,9,3589,1832,1757,1683,1603,57,63,22,30,11,18,2,2,57,41,1738,1644,61,65,75,66,13,21,2,2,1770,1719,1639,1575,55,62,15,24,9,18,0,0,52,40,1689,1615,59,63,63,60,11,21,0,0,62,38,44,28,2,1,7,6,2,0,2,2,5,1,49,29,2,2,12,6,2,0,2,2 -050,01,071,Alabama,Jackson County,4,10,3745,1864,1881,1745,1730,51,62,23,30,9,10,2,2,34,47,1779,1777,54,63,52,72,10,13,3,3,1839,1859,1731,1714,50,61,17,29,9,8,1,0,31,47,1762,1761,52,62,45,71,10,11,1,1,25,22,14,16,1,1,6,1,0,2,1,2,3,0,17,16,2,1,7,1,0,2,2,2 -050,01,071,Alabama,Jackson County,4,11,4098,2033,2065,1874,1890,76,73,26,40,6,6,3,1,48,55,1922,1941,77,78,71,90,8,10,3,1,2001,2049,1853,1881,74,73,22,35,3,4,1,1,48,55,1901,1932,75,78,67,85,5,8,1,1,32,16,21,9,2,0,4,5,3,2,2,0,0,0,21,9,2,0,4,5,3,2,2,0 -050,01,071,Alabama,Jackson County,4,12,3937,1917,2020,1766,1873,77,66,36,35,3,3,3,0,32,43,1796,1915,80,69,66,75,4,3,3,1,1903,2007,1754,1861,77,66,35,35,3,3,2,0,32,42,1784,1902,80,68,65,75,4,3,2,1,14,13,12,12,0,0,1,0,0,0,1,0,0,1,12,13,0,1,1,0,0,0,1,0 -050,01,071,Alabama,Jackson County,4,13,3657,1740,1917,1633,1804,52,59,25,23,5,7,0,0,25,24,1658,1827,55,61,47,45,5,8,0,0,1732,1903,1625,1791,52,59,25,22,5,7,0,0,25,24,1650,1814,55,61,47,44,5,8,0,0,8,14,8,13,0,0,0,1,0,0,0,0,0,0,8,13,0,0,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,4,14,3078,1470,1608,1400,1517,26,48,22,17,3,5,0,0,19,21,1417,1538,28,49,41,36,3,5,0,1,1462,1603,1393,1512,26,48,21,17,3,5,0,0,19,21,1410,1533,28,49,40,36,3,5,0,1,8,5,7,5,0,0,1,0,0,0,0,0,0,0,7,5,0,0,1,0,0,0,0,0 -050,01,071,Alabama,Jackson County,4,15,2341,1135,1206,1087,1153,19,33,9,6,5,2,0,0,15,12,1100,1165,21,34,24,16,5,3,0,0,1131,1198,1083,1147,19,33,9,6,5,2,0,0,15,10,1096,1157,21,34,24,14,5,3,0,0,4,8,4,6,0,0,0,0,0,0,0,0,0,2,4,8,0,0,0,2,0,0,0,0 -050,01,071,Alabama,Jackson County,4,16,1652,684,968,660,925,13,29,2,3,0,1,0,0,9,10,669,935,14,31,10,11,0,1,0,0,684,961,660,918,13,29,2,3,0,1,0,0,9,10,669,928,14,31,10,11,0,1,0,0,0,7,0,7,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,4,17,1065,436,629,427,593,8,26,1,2,0,1,0,0,0,7,427,600,8,27,1,7,0,2,0,0,430,627,421,591,8,26,1,2,0,1,0,0,0,7,421,598,8,27,1,7,0,2,0,0,6,2,6,2,0,0,0,0,0,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,4,18,854,240,614,219,581,14,19,2,3,0,2,0,1,5,8,224,589,14,19,7,10,0,3,0,1,240,613,219,581,14,19,2,3,0,2,0,0,5,8,224,589,14,19,7,10,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,5,0,53107,26153,26954,24022,24800,884,893,399,426,115,144,35,24,698,667,24700,25436,1057,1060,892,913,161,181,48,34,25414,26320,23464,24321,858,875,329,359,83,114,21,9,659,642,24104,24934,1016,1029,801,835,125,149,34,18,739,634,558,479,26,18,70,67,32,30,14,15,39,25,596,502,41,31,91,78,36,32,14,16 -050,01,071,Alabama,Jackson County,5,1,2958,1538,1420,1374,1285,59,45,15,6,5,12,2,1,83,71,1456,1354,106,86,44,32,12,18,3,1,1442,1335,1295,1209,53,44,10,3,4,10,1,1,79,68,1373,1275,97,84,38,27,11,16,2,1,96,85,79,76,6,1,5,3,1,2,1,0,4,3,83,79,9,2,6,5,1,2,1,0 -050,01,071,Alabama,Jackson County,5,2,3194,1694,1500,1526,1329,65,60,15,26,14,12,2,1,72,72,1597,1399,103,97,44,59,19,15,3,2,1611,1415,1464,1270,62,58,10,15,8,6,1,0,66,66,1529,1335,96,92,37,44,13,9,2,1,83,85,62,59,3,2,5,11,6,6,1,1,6,6,68,64,7,5,7,15,6,6,1,1 -050,01,071,Alabama,Jackson County,5,3,3532,1821,1711,1644,1568,65,63,28,20,8,7,2,2,74,51,1717,1616,90,86,68,46,15,12,5,3,1748,1650,1596,1523,63,58,17,13,4,7,1,0,67,49,1662,1569,87,80,53,39,9,11,4,1,73,61,48,45,2,5,11,7,4,0,1,2,7,2,55,47,3,6,15,7,6,1,1,2 -050,01,071,Alabama,Jackson County,5,4,3216,1678,1538,1497,1374,66,64,43,29,4,12,1,1,67,58,1560,1429,89,84,89,66,8,15,2,2,1607,1476,1447,1329,63,62,33,21,3,6,0,1,61,57,1504,1383,84,81,76,58,6,9,1,2,71,62,50,45,3,2,10,8,1,6,1,0,6,1,56,46,5,3,13,8,2,6,1,0 -050,01,071,Alabama,Jackson County,5,5,3131,1616,1515,1474,1394,59,52,30,24,8,7,7,5,38,33,1509,1425,68,61,58,47,12,10,7,5,1546,1462,1418,1357,59,51,23,20,4,3,6,1,36,30,1451,1385,68,59,49,41,8,6,6,1,70,53,56,37,0,1,7,4,4,4,1,4,2,3,58,40,0,2,9,6,4,4,1,4 -050,01,071,Alabama,Jackson County,5,6,2712,1345,1367,1207,1254,49,34,26,27,17,17,8,3,38,32,1245,1285,54,41,56,50,20,19,9,4,1285,1321,1157,1217,49,34,24,25,13,13,6,2,36,30,1193,1246,54,40,52,47,16,15,7,3,60,46,50,37,0,0,2,2,4,4,2,1,2,2,52,39,0,1,4,3,4,4,2,1 -050,01,071,Alabama,Jackson County,5,7,2957,1421,1536,1285,1403,50,45,38,39,8,9,1,1,39,39,1321,1440,55,51,68,72,13,11,3,1,1367,1486,1242,1364,49,44,35,33,3,8,1,0,37,37,1277,1399,53,48,64,66,7,10,3,0,54,50,43,39,1,1,3,6,5,1,0,1,2,2,44,41,2,3,4,6,6,1,0,1 -050,01,071,Alabama,Jackson County,5,8,3340,1668,1672,1528,1515,63,55,25,47,8,11,2,3,42,41,1567,1550,68,61,58,82,13,15,4,5,1605,1620,1481,1478,59,51,19,39,6,9,1,3,39,40,1517,1512,62,56,51,74,11,13,3,5,63,52,47,37,4,4,6,8,2,2,1,0,3,1,50,38,6,5,7,8,2,2,1,0 -050,01,071,Alabama,Jackson County,5,9,3584,1800,1784,1641,1623,64,58,29,38,9,17,2,3,55,45,1695,1666,70,62,79,79,10,17,3,5,1739,1736,1598,1591,60,57,23,29,7,16,0,0,51,43,1648,1632,65,60,70,69,8,16,1,2,61,48,43,32,4,1,6,9,2,1,2,3,4,2,47,34,5,2,9,10,2,1,2,3 -050,01,071,Alabama,Jackson County,5,10,3661,1839,1822,1727,1664,47,70,23,32,7,12,2,1,33,43,1760,1705,49,75,52,72,9,14,2,1,1805,1801,1704,1649,47,69,16,30,7,10,1,0,30,43,1734,1690,48,74,43,70,9,12,1,0,34,21,23,15,0,1,7,2,0,2,1,1,3,0,26,15,1,1,9,2,0,2,1,1 -050,01,071,Alabama,Jackson County,5,11,4009,1979,2030,1821,1868,73,64,24,36,7,6,3,2,51,54,1872,1922,74,65,73,87,7,8,4,2,1951,2011,1805,1857,70,64,19,31,5,4,1,1,51,54,1856,1911,71,65,68,82,5,6,2,1,28,19,16,11,3,0,5,5,2,2,2,1,0,0,16,11,3,0,5,5,2,2,2,1 -050,01,071,Alabama,Jackson County,5,12,4004,1953,2051,1797,1895,79,68,40,42,5,3,3,0,29,43,1825,1938,81,69,68,84,5,3,3,0,1935,2039,1783,1885,79,68,38,41,4,3,2,0,29,42,1811,1927,81,69,66,82,4,3,2,0,18,12,14,10,0,0,2,1,1,0,1,0,0,1,14,11,0,0,2,2,1,0,1,0 -050,01,071,Alabama,Jackson County,5,13,3546,1708,1838,1592,1723,61,56,19,25,6,6,0,0,30,28,1621,1751,63,56,48,52,7,7,0,0,1702,1825,1586,1711,61,56,19,24,6,6,0,0,30,28,1615,1739,63,56,48,51,7,7,0,0,6,13,6,12,0,0,0,1,0,0,0,0,0,0,6,12,0,0,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,5,14,3255,1522,1733,1444,1638,30,50,28,17,4,7,0,0,16,21,1460,1658,30,51,44,38,4,7,0,0,1512,1724,1435,1629,30,50,27,17,4,7,0,0,16,21,1451,1649,30,51,43,38,4,7,0,0,10,9,9,9,0,0,1,0,0,0,0,0,0,0,9,9,0,0,1,0,0,0,0,0 -050,01,071,Alabama,Jackson County,5,15,2371,1165,1206,1121,1149,16,32,9,9,5,2,0,0,14,14,1135,1159,17,36,21,18,6,5,0,2,1160,1199,1116,1144,16,32,9,9,5,2,0,0,14,12,1130,1153,17,35,21,18,6,4,0,1,5,7,5,5,0,0,0,0,0,0,0,0,0,2,5,6,0,1,0,0,0,1,0,1 -050,01,071,Alabama,Jackson County,5,16,1699,704,995,675,950,14,32,4,4,0,1,0,0,11,8,686,957,15,33,13,12,1,1,0,0,703,989,674,944,14,32,4,4,0,1,0,0,11,8,685,951,15,33,13,12,1,1,0,0,1,6,1,6,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,5,17,1072,442,630,431,597,9,23,1,2,0,1,0,0,1,7,431,604,10,23,2,8,0,2,0,0,436,626,425,593,9,23,1,2,0,1,0,0,1,7,425,600,10,23,2,8,0,2,0,0,6,4,6,4,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,5,18,866,260,606,238,571,15,22,2,3,0,2,0,1,5,7,243,578,15,23,7,9,0,2,0,1,260,605,238,571,15,22,2,3,0,2,0,0,5,7,243,578,15,23,7,9,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,6,0,52986,26078,26908,23957,24763,885,874,392,412,126,152,33,23,685,684,24610,25410,1069,1060,879,884,169,198,45,44,25308,26254,23376,24264,854,855,323,347,93,121,19,9,643,658,23990,24888,1018,1026,788,809,133,166,31,27,770,654,581,499,31,19,69,65,33,31,14,14,42,26,620,522,51,34,91,75,36,32,14,17 -050,01,071,Alabama,Jackson County,6,1,2851,1488,1363,1338,1230,56,45,13,2,6,11,2,0,73,75,1406,1303,102,88,44,26,9,18,3,3,1388,1295,1254,1166,49,44,9,2,5,9,1,0,70,74,1320,1238,93,86,39,26,7,16,2,3,100,68,84,64,7,1,4,0,1,2,1,0,3,1,86,65,9,2,5,0,2,2,1,0 -050,01,071,Alabama,Jackson County,6,2,3182,1687,1495,1532,1323,66,59,11,21,10,14,2,2,66,76,1596,1396,100,97,40,53,17,21,3,4,1609,1408,1474,1259,60,58,8,11,6,8,1,1,60,71,1532,1327,91,93,34,41,13,15,2,3,78,87,58,64,6,1,3,10,4,6,1,1,6,5,64,69,9,4,6,12,4,6,1,1 -050,01,071,Alabama,Jackson County,6,3,3490,1799,1691,1629,1557,59,50,27,21,11,9,2,2,71,52,1696,1603,91,75,64,48,16,12,3,5,1718,1619,1577,1506,57,45,16,13,4,8,1,0,63,47,1637,1547,84,67,50,38,8,11,2,3,81,72,52,51,2,5,11,8,7,1,1,2,8,5,59,56,7,8,14,10,8,1,1,2 -050,01,071,Alabama,Jackson County,6,4,3197,1674,1523,1496,1361,66,59,39,30,5,13,0,1,68,59,1559,1418,89,80,81,67,12,16,1,2,1609,1457,1447,1314,65,56,30,21,4,8,0,1,63,57,1505,1369,85,76,71,57,10,11,1,2,65,66,49,47,1,3,9,9,1,5,0,0,5,2,54,49,4,4,10,10,2,5,0,0 -050,01,071,Alabama,Jackson County,6,5,3218,1648,1570,1489,1434,73,61,30,27,7,7,5,4,44,37,1533,1468,86,74,58,50,10,9,5,6,1567,1514,1428,1395,70,59,22,22,4,3,3,1,40,34,1468,1427,80,70,49,44,7,5,3,2,81,56,61,39,3,2,8,5,3,4,2,3,4,3,65,41,6,4,9,6,3,4,2,4 -050,01,071,Alabama,Jackson County,6,6,2690,1368,1322,1226,1225,52,32,27,22,24,15,8,3,31,25,1253,1246,59,40,52,37,27,19,10,5,1307,1279,1174,1189,52,32,24,18,20,14,7,2,30,24,1200,1209,59,40,48,32,23,18,9,4,61,43,52,36,0,0,3,4,4,1,1,1,1,1,53,37,0,0,4,5,4,1,1,1 -050,01,071,Alabama,Jackson County,6,7,2952,1402,1550,1275,1426,44,37,32,39,9,10,2,0,40,38,1314,1463,48,43,65,68,12,13,3,1,1342,1493,1228,1380,43,36,30,34,3,6,1,0,37,37,1264,1416,46,41,61,63,6,9,2,1,60,57,47,46,1,1,2,5,6,4,1,0,3,1,50,47,2,2,4,5,6,4,1,0 -050,01,071,Alabama,Jackson County,6,8,3226,1598,1628,1460,1480,57,48,34,44,8,10,2,3,37,43,1494,1518,62,56,68,80,9,14,2,4,1534,1578,1412,1444,54,45,27,39,7,7,1,2,33,41,1443,1480,58,52,57,74,8,11,1,3,64,50,48,36,3,3,7,5,1,3,1,1,4,2,51,38,4,4,11,6,1,3,1,1 -050,01,071,Alabama,Jackson County,6,9,3615,1805,1810,1633,1648,72,60,29,36,10,18,2,4,59,44,1689,1691,79,65,80,74,13,19,4,6,1741,1755,1587,1611,67,58,24,26,8,17,0,1,55,42,1639,1653,73,62,72,63,11,18,2,2,64,55,46,37,5,2,5,10,2,1,2,3,4,2,50,38,6,3,8,11,2,1,2,4 -050,01,071,Alabama,Jackson County,6,10,3534,1761,1773,1655,1623,41,70,19,27,9,15,1,1,36,37,1691,1659,44,73,51,60,9,16,2,2,1723,1751,1631,1606,41,70,11,25,8,14,0,0,32,36,1663,1641,43,72,40,58,8,15,1,1,38,22,24,17,0,0,8,2,1,1,1,1,4,1,28,18,1,1,11,2,1,1,1,1 -050,01,071,Alabama,Jackson County,6,11,3939,1966,1973,1820,1824,66,54,26,28,7,7,3,2,44,58,1864,1877,67,59,66,81,10,11,3,3,1940,1954,1804,1812,63,53,21,25,6,5,2,1,44,58,1848,1865,64,58,61,78,9,9,2,2,26,19,16,12,3,1,5,3,1,2,1,1,0,0,16,12,3,1,5,3,1,2,1,1 -050,01,071,Alabama,Jackson County,6,12,4024,1973,2051,1816,1875,77,77,36,48,8,4,3,0,33,47,1846,1921,80,80,67,91,10,5,3,1,1948,2035,1798,1864,77,77,33,45,6,3,1,0,33,46,1828,1909,80,80,64,87,8,4,1,1,25,16,18,11,0,0,3,3,2,1,2,0,0,1,18,12,0,0,3,4,2,1,2,0 -050,01,071,Alabama,Jackson County,6,13,3545,1696,1849,1572,1729,70,61,20,24,3,4,1,0,30,31,1602,1760,71,61,48,53,3,6,2,0,1692,1834,1568,1715,70,61,20,23,3,4,1,0,30,31,1598,1746,71,61,48,52,3,6,2,0,4,15,4,14,0,0,0,1,0,0,0,0,0,0,4,14,0,0,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,6,14,3254,1519,1735,1439,1632,28,48,30,22,4,8,0,0,18,25,1457,1657,29,49,44,45,6,9,1,0,1508,1726,1429,1623,28,48,29,22,4,8,0,0,18,25,1447,1648,29,49,43,45,6,9,1,0,11,9,10,9,0,0,1,0,0,0,0,0,0,0,10,9,0,0,1,0,0,0,0,0 -050,01,071,Alabama,Jackson County,6,15,2516,1218,1298,1168,1237,19,33,12,11,3,3,0,0,16,14,1184,1250,20,35,27,23,3,4,0,1,1212,1293,1162,1234,19,33,12,11,3,3,0,0,16,12,1178,1246,20,34,27,23,3,3,0,0,6,5,6,3,0,0,0,0,0,0,0,0,0,2,6,4,0,1,0,0,0,1,0,1 -050,01,071,Alabama,Jackson County,6,16,1785,758,1027,725,979,16,35,3,4,2,0,0,0,12,9,736,986,17,38,14,11,3,1,0,0,757,1019,724,971,16,35,3,4,2,0,0,0,12,9,735,978,17,38,14,11,3,1,0,0,1,8,1,8,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,6,17,1072,435,637,424,604,7,21,2,2,0,2,0,0,2,8,425,612,8,22,4,8,0,3,0,0,431,632,420,599,7,21,2,2,0,2,0,0,2,8,421,607,8,22,4,8,0,3,0,0,4,5,4,5,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,6,18,896,283,613,260,576,16,24,2,4,0,2,0,1,5,6,265,582,17,25,6,9,0,2,0,1,282,612,259,576,16,24,2,4,0,2,0,0,5,6,264,582,17,25,6,9,0,2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,7,0,52592,25902,26690,23765,24553,894,889,392,421,129,149,32,23,690,655,24416,25183,1078,1055,893,887,166,185,45,38,25087,26024,23149,24048,857,864,319,356,97,118,19,9,646,629,23758,24652,1027,1021,794,807,131,153,29,23,815,666,616,505,37,25,73,65,32,31,13,14,44,26,658,531,51,34,99,80,35,32,16,15 -050,01,071,Alabama,Jackson County,7,1,2796,1462,1334,1323,1208,54,50,10,5,5,9,1,0,69,62,1392,1267,92,88,37,28,8,14,3,1,1357,1259,1233,1139,46,47,5,5,4,6,1,0,68,62,1301,1198,84,85,31,28,7,11,3,1,105,75,90,69,8,3,5,0,1,3,0,0,1,0,91,69,8,3,6,0,1,3,0,0 -050,01,071,Alabama,Jackson County,7,2,3085,1644,1441,1483,1285,66,53,16,15,8,11,2,2,69,75,1546,1357,104,91,47,49,15,17,3,2,1547,1359,1410,1223,58,52,12,7,5,5,1,1,61,71,1465,1291,94,88,38,39,11,11,2,1,97,82,73,62,8,1,4,8,3,6,1,1,8,4,81,66,10,3,9,10,4,6,1,1 -050,01,071,Alabama,Jackson County,7,3,3437,1762,1675,1592,1531,59,60,25,22,14,6,2,2,70,54,1656,1585,93,82,64,48,17,10,3,4,1678,1597,1536,1477,57,55,15,14,7,4,1,0,62,47,1592,1524,88,75,49,36,10,7,2,2,84,78,56,54,2,5,10,8,7,2,1,2,8,7,64,61,5,7,15,12,7,3,1,2 -050,01,071,Alabama,Jackson County,7,4,3158,1669,1489,1491,1336,74,61,35,26,3,14,0,1,66,51,1553,1386,95,80,79,57,7,17,1,1,1601,1424,1442,1288,71,57,26,19,2,10,0,1,60,49,1498,1336,91,74,66,50,5,13,1,1,68,65,49,48,3,4,9,7,1,4,0,0,6,2,55,50,4,6,13,7,2,4,0,0 -050,01,071,Alabama,Jackson County,7,5,3162,1612,1550,1445,1396,74,76,32,29,8,6,5,3,48,40,1490,1432,87,90,67,54,12,8,5,6,1531,1493,1384,1356,71,74,23,23,5,2,3,1,45,37,1426,1389,83,86,57,47,8,4,3,4,81,57,61,40,3,2,9,6,3,4,2,2,3,3,64,43,4,4,10,7,4,4,2,2 -050,01,071,Alabama,Jackson County,7,6,2768,1427,1341,1287,1233,56,34,25,26,24,17,8,4,27,27,1311,1257,63,40,46,46,25,21,9,4,1366,1297,1239,1198,55,34,20,22,20,17,7,1,25,25,1261,1220,62,40,40,40,21,21,7,1,61,44,48,35,1,0,5,4,4,0,1,3,2,2,50,37,1,0,6,6,4,0,2,3 -050,01,071,Alabama,Jackson County,7,7,2880,1360,1520,1232,1403,38,35,29,34,12,14,2,1,47,33,1275,1435,45,38,69,61,14,16,4,3,1304,1465,1189,1358,37,34,28,31,5,9,1,1,44,32,1229,1389,43,37,66,57,7,11,3,3,56,55,43,45,1,1,1,3,7,5,1,0,3,1,46,46,2,1,3,4,7,5,1,0 -050,01,071,Alabama,Jackson County,7,8,3150,1551,1599,1404,1468,66,45,40,42,7,9,2,1,32,34,1434,1500,69,50,66,68,10,12,4,3,1485,1549,1352,1435,63,41,34,35,6,6,1,0,29,32,1380,1465,65,45,58,60,9,9,2,2,66,50,52,33,3,4,6,7,1,3,1,1,3,2,54,35,4,5,8,8,1,3,2,1 -050,01,071,Alabama,Jackson County,7,9,3541,1771,1770,1613,1605,69,60,27,43,9,16,1,4,52,42,1663,1644,73,64,74,81,11,18,2,5,1706,1719,1566,1571,64,57,21,32,7,15,0,3,48,41,1612,1609,66,61,66,69,9,17,1,4,65,51,47,34,5,3,6,11,2,1,1,1,4,1,51,35,7,3,8,12,2,1,1,1 -050,01,071,Alabama,Jackson County,7,10,3427,1715,1712,1600,1572,44,64,16,25,12,15,1,2,42,34,1641,1606,48,65,54,55,13,18,1,2,1668,1683,1566,1550,44,64,9,22,11,14,0,0,38,33,1603,1583,46,65,45,51,12,17,0,0,47,29,34,22,0,0,7,3,1,1,1,2,4,1,38,23,2,0,9,4,1,1,1,2 -050,01,071,Alabama,Jackson County,7,11,3901,1935,1966,1793,1810,62,57,27,30,5,7,3,2,45,60,1836,1870,66,59,69,84,5,9,4,4,1908,1948,1778,1798,60,56,21,27,5,6,1,1,43,60,1820,1858,63,58,62,81,5,8,1,3,27,18,15,12,2,1,6,3,0,1,2,1,2,0,16,12,3,1,7,3,0,1,3,1 -050,01,071,Alabama,Jackson County,7,12,3970,1957,2013,1801,1836,69,78,35,48,8,5,4,0,40,46,1837,1881,74,82,72,91,10,5,4,0,1929,1996,1782,1825,68,78,31,44,6,4,2,0,40,45,1818,1869,73,82,68,86,8,4,2,0,28,17,19,11,1,0,4,4,2,1,2,0,0,1,19,12,1,0,4,5,2,1,2,0 -050,01,071,Alabama,Jackson County,7,13,3590,1733,1857,1609,1738,67,54,22,29,4,3,1,0,30,33,1639,1770,68,57,50,60,5,3,1,0,1728,1843,1604,1725,67,54,22,28,4,3,1,0,30,33,1634,1757,68,57,50,59,5,3,1,0,5,14,5,13,0,0,0,1,0,0,0,0,0,0,5,13,0,0,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,7,14,3291,1522,1769,1430,1665,37,49,30,24,3,9,0,0,22,22,1452,1687,38,49,49,46,5,9,0,0,1512,1758,1421,1655,37,48,29,24,3,9,0,0,22,22,1443,1677,38,48,48,46,5,9,0,0,10,11,9,10,0,1,1,0,0,0,0,0,0,0,9,10,0,1,1,0,0,0,0,0 -050,01,071,Alabama,Jackson County,7,15,2566,1227,1339,1174,1276,22,32,15,11,3,3,0,0,13,17,1186,1292,24,34,25,26,5,3,1,1,1219,1335,1166,1274,22,32,15,11,3,3,0,0,13,15,1178,1288,24,34,25,25,5,3,1,0,8,4,8,2,0,0,0,0,0,0,0,0,0,2,8,4,0,0,0,1,0,0,0,1 -050,01,071,Alabama,Jackson County,7,16,1874,834,1040,801,985,15,38,4,5,4,1,0,0,10,11,810,996,17,40,13,14,4,1,0,0,832,1030,799,975,15,38,4,5,4,1,0,0,10,11,808,986,17,40,13,14,4,1,0,0,2,10,2,10,0,0,0,0,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,7,17,1050,417,633,405,603,6,19,2,2,0,1,0,0,4,8,409,609,6,21,6,9,0,1,0,1,414,628,402,598,6,19,2,2,0,1,0,0,4,8,406,604,6,21,6,9,0,1,0,1,3,5,3,5,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,7,18,946,304,642,282,603,16,24,2,5,0,3,0,1,4,6,286,609,16,25,6,10,0,3,0,1,302,641,280,603,16,24,2,5,0,3,0,0,4,6,284,609,16,25,6,10,0,3,0,0,2,1,2,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,8,0,52229,25711,26518,23577,24322,892,881,405,430,132,157,31,23,674,705,24225,24996,1068,1068,891,926,167,201,37,35,24916,25831,22980,23798,851,857,330,363,99,127,19,9,637,677,23593,24449,1013,1030,794,842,131,169,25,21,795,687,597,524,41,24,75,67,33,30,12,14,37,28,632,547,55,38,97,84,36,32,12,14 -050,01,071,Alabama,Jackson County,8,1,2757,1459,1298,1327,1157,47,45,9,5,8,4,0,0,68,87,1392,1241,89,97,32,37,12,10,2,0,1361,1210,1240,1076,42,42,7,5,5,2,0,0,67,85,1304,1159,83,93,30,35,9,8,2,0,98,88,87,81,5,3,2,0,3,2,0,0,1,2,88,82,6,4,2,2,3,2,0,0 -050,01,071,Alabama,Jackson County,8,2,2990,1585,1405,1434,1257,61,47,16,15,9,13,2,2,63,71,1494,1324,97,82,45,49,11,17,2,4,1484,1329,1360,1199,50,46,8,8,7,8,1,1,58,67,1415,1263,84,80,34,38,9,12,1,3,101,76,74,58,11,1,8,7,2,5,1,1,5,4,79,61,13,2,11,11,2,5,1,1 -050,01,071,Alabama,Jackson County,8,3,3339,1713,1626,1554,1473,57,61,22,24,14,7,3,1,63,60,1613,1532,88,87,55,54,17,12,3,3,1631,1548,1495,1417,54,60,15,14,6,3,2,0,59,54,1551,1471,82,82,46,42,9,7,2,2,82,78,59,56,3,1,7,10,8,4,1,1,4,6,62,61,6,5,9,12,8,5,1,1 -050,01,071,Alabama,Jackson County,8,4,3193,1677,1516,1497,1372,75,62,35,19,4,11,0,1,66,51,1561,1418,99,83,78,47,6,17,0,2,1616,1444,1457,1317,73,56,23,14,3,8,0,0,60,49,1515,1361,95,75,62,42,5,14,0,1,61,72,40,55,2,6,12,5,1,3,0,1,6,2,46,57,4,8,16,5,1,3,0,1 -050,01,071,Alabama,Jackson County,8,5,3003,1537,1466,1372,1311,73,72,36,30,4,8,2,4,50,41,1419,1350,86,86,73,58,7,9,2,5,1459,1414,1315,1276,67,70,27,23,2,4,1,2,47,39,1359,1313,79,83,62,50,5,5,1,3,78,52,57,35,6,2,9,7,2,4,1,2,3,2,60,37,7,3,11,8,2,4,1,2 -050,01,071,Alabama,Jackson County,8,6,2890,1465,1425,1330,1298,60,42,21,29,14,19,7,2,33,35,1363,1331,63,50,45,54,18,22,9,3,1406,1374,1287,1259,58,41,16,24,9,18,6,0,30,32,1317,1290,60,48,39,47,12,20,8,1,59,51,43,39,2,1,5,5,5,1,1,2,3,3,46,41,3,2,6,7,6,2,1,2 -050,01,071,Alabama,Jackson County,8,7,2792,1341,1451,1220,1336,32,31,31,32,17,17,5,3,36,32,1253,1367,38,37,60,55,21,20,5,4,1298,1402,1187,1295,31,30,29,31,13,13,4,2,34,31,1218,1325,36,35,57,54,17,16,4,3,43,49,33,41,1,1,2,1,4,4,1,1,2,1,35,42,2,2,3,1,4,4,1,1 -050,01,071,Alabama,Jackson County,8,8,3113,1517,1596,1360,1455,68,42,42,45,13,14,1,1,33,39,1392,1492,71,47,71,77,15,18,1,1,1455,1544,1312,1421,65,40,37,35,10,12,0,0,31,36,1342,1455,68,44,64,65,12,16,0,0,62,52,48,34,3,2,5,10,3,2,1,1,2,3,50,37,3,3,7,12,3,2,1,1 -050,01,071,Alabama,Jackson County,8,9,3503,1764,1739,1608,1567,73,63,30,49,6,14,1,4,46,42,1654,1606,76,67,69,89,10,15,1,4,1695,1682,1557,1531,68,58,23,37,4,12,1,3,42,41,1599,1569,70,62,60,76,7,13,1,3,69,57,51,36,5,5,7,12,2,2,0,1,4,1,55,37,6,5,9,13,3,2,0,1 -050,01,071,Alabama,Jackson County,8,10,3442,1760,1682,1634,1528,48,65,18,29,10,18,2,2,48,40,1680,1567,50,68,62,63,13,21,3,3,1707,1652,1595,1505,48,65,12,26,9,17,0,0,43,39,1637,1543,49,68,52,59,11,20,1,1,53,30,39,23,0,0,6,3,1,1,2,2,5,1,43,24,1,0,10,4,2,1,2,2 -050,01,071,Alabama,Jackson County,8,11,3722,1798,1924,1678,1781,42,59,27,25,9,7,2,2,40,50,1718,1829,44,61,65,71,9,9,2,4,1775,1905,1665,1767,41,58,21,23,9,6,1,1,38,50,1703,1815,42,60,58,69,9,8,1,3,23,19,13,14,1,1,6,2,0,1,1,1,2,0,15,14,2,1,7,2,0,1,1,1 -050,01,071,Alabama,Jackson County,8,12,3976,1971,2005,1800,1826,80,76,31,45,9,5,4,0,47,53,1844,1879,83,79,74,93,12,6,5,1,1939,1992,1779,1819,78,76,26,41,7,4,2,0,47,52,1823,1871,81,79,69,88,10,5,3,1,32,13,21,7,2,0,5,4,2,1,2,0,0,1,21,8,2,0,5,5,2,1,2,0 -050,01,071,Alabama,Jackson County,8,13,3643,1767,1876,1625,1757,75,49,29,31,4,3,2,0,32,36,1657,1792,77,51,59,66,4,3,2,0,1759,1860,1618,1742,75,49,29,30,4,3,1,0,32,36,1650,1777,77,51,59,65,4,3,1,0,8,16,7,15,0,0,0,1,0,0,1,0,0,0,7,15,0,0,0,1,0,0,1,0 -050,01,071,Alabama,Jackson County,8,14,3308,1546,1762,1448,1654,45,52,31,25,3,8,0,0,19,23,1467,1676,46,53,48,48,4,8,0,0,1537,1750,1439,1642,45,52,31,25,3,8,0,0,19,23,1458,1664,46,53,48,48,4,8,0,0,9,12,9,12,0,0,0,0,0,0,0,0,0,0,9,12,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,8,15,2650,1235,1415,1181,1339,20,40,18,14,3,3,0,0,13,19,1194,1357,21,42,30,29,3,6,0,0,1226,1410,1173,1336,20,39,17,14,3,3,0,0,13,18,1186,1353,21,40,29,29,3,6,0,0,9,5,8,3,0,1,1,0,0,0,0,0,0,1,8,4,0,2,1,0,0,0,0,0 -050,01,071,Alabama,Jackson County,8,16,1875,861,1014,832,965,13,31,5,6,4,2,0,0,7,10,837,974,16,33,12,14,4,3,0,0,858,1004,829,956,13,31,5,6,4,2,0,0,7,9,834,965,16,32,12,13,4,3,0,0,3,10,3,9,0,0,0,0,0,0,0,0,0,1,3,9,0,1,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,8,17,1076,408,668,390,638,9,19,1,2,1,1,0,0,7,8,397,645,10,20,7,9,1,2,0,0,407,663,389,633,9,19,1,2,1,1,0,0,7,8,396,640,10,20,7,9,1,2,0,0,1,5,1,5,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,8,18,957,307,650,287,608,14,25,3,5,0,3,0,1,3,8,290,616,14,25,6,13,0,3,0,1,303,648,283,607,14,25,3,5,0,3,0,0,3,8,286,615,14,25,6,13,0,3,0,0,4,2,4,1,0,0,0,0,0,0,0,1,0,0,4,1,0,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,9,0,52058,25610,26448,23509,24262,879,878,400,421,130,151,29,24,663,712,24152,24953,1042,1066,869,914,171,193,43,36,24808,25770,22901,23744,837,854,329,357,98,123,18,10,625,682,23508,24406,988,1030,775,835,136,162,30,21,802,678,608,518,42,24,71,64,32,28,11,14,38,30,644,547,54,36,94,79,35,31,13,15 -050,01,071,Alabama,Jackson County,9,1,2771,1458,1313,1332,1147,45,57,7,6,6,6,0,0,68,97,1399,1242,83,116,29,38,12,13,3,1,1371,1231,1254,1075,38,52,6,6,5,4,0,0,68,94,1321,1167,76,110,28,36,11,11,3,1,87,82,78,72,7,5,1,0,1,2,0,0,0,3,78,75,7,6,1,2,1,2,0,0 -050,01,071,Alabama,Jackson County,9,2,2963,1561,1402,1405,1262,63,47,15,13,7,10,1,2,70,68,1472,1330,101,80,44,44,12,13,3,4,1455,1325,1321,1200,54,46,9,7,5,7,1,1,65,64,1383,1264,92,78,34,35,9,10,3,3,106,77,84,62,9,1,6,6,2,3,0,1,5,4,89,66,9,2,10,9,3,3,0,1 -050,01,071,Alabama,Jackson County,9,3,3221,1674,1547,1524,1402,52,59,20,23,14,8,2,0,62,55,1583,1451,81,86,51,51,18,12,3,2,1589,1463,1462,1340,49,58,13,13,7,2,1,0,57,50,1516,1384,75,83,42,38,11,6,2,2,85,84,62,62,3,1,7,10,7,6,1,0,5,5,67,67,6,3,9,13,7,6,1,0 -050,01,071,Alabama,Jackson County,9,4,3201,1677,1524,1524,1390,67,61,26,18,5,7,1,2,54,46,1578,1435,86,78,59,46,8,9,1,2,1610,1458,1475,1340,65,55,19,13,2,7,1,0,48,43,1523,1382,82,71,49,39,4,9,1,0,67,66,49,50,2,6,7,5,3,0,0,2,6,3,55,53,4,7,10,7,4,0,0,2 -050,01,071,Alabama,Jackson County,9,5,2872,1473,1399,1311,1253,70,65,39,25,5,7,2,4,46,45,1354,1298,82,79,72,50,10,12,2,5,1388,1351,1250,1221,64,64,28,18,3,3,1,3,42,42,1289,1263,76,77,57,43,8,7,1,3,85,48,61,32,6,1,11,7,2,4,1,1,4,3,65,35,6,2,15,7,2,5,1,2 -050,01,071,Alabama,Jackson County,9,6,3066,1554,1512,1408,1393,72,47,26,25,11,11,4,3,33,33,1440,1424,78,56,48,47,14,13,7,5,1486,1456,1358,1354,69,45,19,19,6,8,3,0,31,30,1388,1382,73,53,41,40,9,9,6,2,68,56,50,39,3,2,7,6,5,3,1,3,2,3,52,42,5,3,7,7,5,4,1,3 -050,01,071,Alabama,Jackson County,9,7,2738,1308,1430,1180,1312,41,34,27,28,18,22,7,3,35,31,1214,1342,45,40,52,52,23,24,9,4,1261,1385,1143,1273,40,34,25,28,15,18,6,2,32,30,1174,1302,41,39,50,52,20,20,8,3,47,45,37,39,1,0,2,0,3,4,1,1,3,1,40,40,4,1,2,0,3,4,1,1 -050,01,071,Alabama,Jackson County,9,8,3083,1480,1603,1332,1458,58,44,43,45,14,14,1,1,32,41,1363,1498,61,50,71,79,15,16,2,1,1439,1553,1302,1423,57,42,39,38,10,12,1,0,30,38,1332,1460,60,46,65,71,11,14,1,0,41,50,30,35,1,2,4,7,4,2,0,1,2,3,31,38,1,4,6,8,4,2,1,1 -050,01,071,Alabama,Jackson County,9,9,3383,1703,1680,1555,1519,67,56,28,49,5,13,2,3,46,40,1598,1557,71,60,69,85,8,15,3,3,1639,1632,1510,1488,61,53,21,38,4,11,1,3,42,39,1550,1525,64,57,59,73,7,13,1,3,64,48,45,31,6,3,7,11,1,2,1,0,4,1,48,32,7,3,10,12,1,2,2,0 -050,01,071,Alabama,Jackson County,9,10,3493,1791,1702,1658,1552,51,61,22,29,10,17,2,2,48,41,1705,1592,53,64,66,65,13,19,2,3,1733,1664,1617,1523,50,60,15,24,8,17,0,0,43,40,1659,1562,51,63,56,59,10,19,0,1,58,38,41,29,1,1,7,5,2,0,2,2,5,1,46,30,2,1,10,6,3,0,2,2 -050,01,071,Alabama,Jackson County,9,11,3604,1771,1833,1663,1695,37,62,24,25,10,7,2,2,35,42,1698,1736,38,64,58,63,10,9,2,3,1747,1811,1649,1678,36,61,18,24,10,6,1,0,33,42,1682,1719,37,63,50,62,10,8,1,1,24,22,14,17,1,1,6,1,0,1,1,2,2,0,16,17,1,1,8,1,0,1,1,2 -050,01,071,Alabama,Jackson County,9,12,3939,1916,2023,1761,1848,72,64,25,44,8,7,3,1,47,59,1807,1907,75,65,67,100,10,9,4,1,1883,2011,1738,1842,70,64,21,39,6,6,1,1,47,59,1784,1901,73,65,63,95,8,8,2,1,33,12,23,6,2,0,4,5,2,1,2,0,0,0,23,6,2,0,4,5,2,1,2,0 -050,01,071,Alabama,Jackson County,9,13,3748,1828,1920,1670,1780,76,58,37,37,5,4,2,0,38,41,1708,1820,77,62,74,73,6,6,2,0,1814,1908,1658,1769,76,58,36,37,5,4,1,0,38,40,1696,1808,77,61,73,73,6,6,1,0,14,12,12,11,0,0,1,0,0,0,1,0,0,1,12,12,0,1,1,0,0,0,1,0 -050,01,071,Alabama,Jackson County,9,14,3350,1566,1784,1462,1678,53,52,28,24,3,6,0,0,20,24,1480,1701,55,53,48,47,3,7,0,0,1558,1769,1454,1664,53,52,28,23,3,6,0,0,20,24,1472,1687,55,53,48,46,3,7,0,0,8,15,8,14,0,0,0,1,0,0,0,0,0,0,8,14,0,0,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,9,15,2642,1211,1431,1153,1351,22,39,20,16,3,4,0,0,13,21,1166,1372,23,39,32,36,3,4,0,1,1205,1424,1148,1345,22,38,19,16,3,4,0,0,13,21,1161,1366,23,38,31,36,3,4,0,1,6,7,5,6,0,1,1,0,0,0,0,0,0,0,5,6,0,1,1,0,0,0,0,0 -050,01,071,Alabama,Jackson County,9,16,1912,907,1005,876,958,10,27,8,6,5,3,0,0,8,11,884,967,10,29,16,14,5,6,0,0,903,999,872,954,10,27,8,6,5,3,0,0,8,9,880,962,10,28,16,13,5,5,0,0,4,6,4,4,0,0,0,0,0,0,0,0,0,2,4,5,0,1,0,1,0,1,0,0 -050,01,071,Alabama,Jackson County,9,17,1139,435,704,416,672,10,18,2,3,1,2,0,0,6,9,422,681,10,18,8,12,1,2,0,0,434,697,415,665,10,18,2,3,1,2,0,0,6,9,421,674,10,18,8,12,1,2,0,0,1,7,1,7,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,9,18,933,297,636,279,592,13,27,3,5,0,3,0,1,2,8,281,600,13,27,5,12,0,4,0,1,293,633,275,590,13,27,3,5,0,3,0,0,2,8,277,598,13,27,5,12,0,4,0,0,4,3,4,2,0,0,0,0,0,0,0,1,0,0,4,2,0,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,10,0,51865,25455,26410,23330,24185,891,886,402,425,133,156,29,26,670,732,23979,24890,1076,1086,856,927,175,211,40,34,24647,25689,22718,23634,850,856,333,360,101,128,18,12,627,699,23327,24308,1019,1045,768,843,135,177,26,19,808,721,612,551,41,30,69,65,32,28,11,14,43,33,652,582,57,41,88,84,40,34,14,15 -050,01,071,Alabama,Jackson County,10,1,2757,1440,1317,1302,1141,43,60,6,6,7,7,0,0,82,103,1382,1242,92,120,34,42,13,15,1,2,1361,1208,1231,1048,40,50,5,6,4,4,0,0,81,100,1310,1146,88,109,33,40,10,12,1,2,79,109,71,93,3,10,1,0,3,3,0,0,1,3,72,96,4,11,1,2,3,3,0,0 -050,01,071,Alabama,Jackson County,10,2,2924,1531,1393,1371,1263,67,45,18,9,8,11,1,1,66,64,1437,1325,103,79,44,39,13,13,1,1,1425,1321,1287,1204,56,44,13,3,6,9,1,1,62,60,1349,1262,90,76,38,31,10,11,1,1,106,72,84,59,11,1,5,6,2,2,0,0,4,4,88,63,13,3,6,8,3,2,0,0 -050,01,071,Alabama,Jackson County,10,3,3209,1696,1513,1546,1358,57,57,19,24,16,10,1,1,57,63,1600,1417,83,84,46,57,21,16,3,2,1601,1429,1474,1298,52,56,13,15,10,3,1,0,51,57,1522,1351,76,82,37,43,14,9,3,1,95,84,72,60,5,1,6,9,6,7,0,1,6,6,78,66,7,2,9,14,7,7,0,1 -050,01,071,Alabama,Jackson County,10,4,3161,1641,1520,1492,1383,59,64,25,18,7,7,2,2,56,46,1546,1425,78,87,60,44,10,9,3,2,1572,1456,1442,1334,57,59,19,14,3,7,1,0,50,42,1491,1373,75,79,50,38,5,8,1,0,69,64,50,49,2,5,6,4,4,0,1,2,6,4,55,52,3,8,10,6,5,1,2,2 -050,01,071,Alabama,Jackson County,10,5,2791,1408,1383,1253,1230,69,66,41,28,6,8,1,2,38,49,1291,1277,81,81,64,59,8,12,2,3,1334,1327,1203,1192,65,63,29,19,5,4,0,2,32,47,1235,1237,75,78,49,49,6,7,1,3,74,56,50,38,4,3,12,9,1,4,1,0,6,2,56,40,6,3,15,10,2,5,1,0 -050,01,071,Alabama,Jackson County,10,6,3179,1626,1553,1476,1415,74,57,27,25,6,14,4,5,39,37,1515,1450,83,67,51,50,10,18,6,5,1547,1503,1414,1382,69,55,20,20,3,11,4,1,37,34,1451,1414,77,65,43,42,7,15,6,1,79,50,62,33,5,2,7,5,3,3,0,4,2,3,64,36,6,2,8,8,3,3,0,4 -050,01,071,Alabama,Jackson County,10,7,2675,1294,1381,1164,1271,43,33,24,30,21,18,8,3,34,26,1197,1296,49,39,51,50,23,20,8,3,1247,1334,1127,1230,43,33,22,29,17,16,6,2,32,24,1158,1254,47,37,49,49,19,17,6,2,47,47,37,41,0,0,2,1,4,2,2,1,2,2,39,42,2,2,2,1,4,3,2,1 -050,01,071,Alabama,Jackson County,10,8,3009,1432,1577,1285,1447,60,39,38,39,14,13,1,1,34,38,1318,1483,64,43,66,70,16,17,2,2,1389,1522,1252,1405,59,38,35,33,10,11,1,0,32,35,1284,1438,62,42,62,62,12,14,1,1,43,55,33,42,1,1,3,6,4,2,0,1,2,3,34,45,2,1,4,8,4,3,1,1 -050,01,071,Alabama,Jackson County,10,9,3286,1650,1636,1515,1487,56,54,26,43,5,12,2,3,46,37,1556,1524,65,58,63,75,10,14,2,3,1589,1588,1474,1454,52,50,20,35,3,10,1,3,39,36,1509,1490,58,53,54,67,6,12,1,3,61,48,41,33,4,4,6,8,2,2,1,0,7,1,47,34,7,5,9,8,4,2,1,0 -050,01,071,Alabama,Jackson County,10,10,3495,1755,1740,1608,1583,64,57,26,36,8,17,2,2,47,45,1654,1628,66,59,67,75,11,21,4,2,1701,1691,1570,1549,61,56,20,27,7,16,0,0,43,43,1612,1592,62,57,60,65,9,20,1,0,54,49,38,34,3,1,6,9,1,1,2,2,4,2,42,36,4,2,7,10,2,1,3,2 -050,01,071,Alabama,Jackson County,10,11,3544,1767,1777,1660,1635,39,63,22,28,10,10,2,1,34,40,1694,1675,41,65,52,64,12,13,2,1,1736,1756,1640,1619,39,62,15,26,10,9,1,0,31,40,1671,1659,41,64,43,62,11,12,1,0,31,21,20,16,0,1,7,2,0,1,1,1,3,0,23,16,0,1,9,2,1,1,1,1 -050,01,071,Alabama,Jackson County,10,12,3842,1856,1986,1709,1821,66,61,25,38,5,7,3,2,48,57,1756,1874,70,65,68,90,7,11,3,3,1824,1970,1688,1811,63,61,20,34,4,6,1,1,48,57,1735,1864,67,65,63,86,6,10,1,2,32,16,21,10,3,0,5,4,1,1,2,1,0,0,21,10,3,0,5,4,1,1,2,1 -050,01,071,Alabama,Jackson County,10,13,3877,1893,1984,1729,1829,79,62,41,42,9,4,2,2,33,45,1760,1872,81,65,74,82,9,7,2,3,1881,1971,1721,1818,79,62,39,41,8,4,1,2,33,44,1752,1860,81,65,72,80,8,7,1,3,12,13,8,11,0,0,2,1,1,0,1,0,0,1,8,12,0,0,2,2,1,0,1,0 -050,01,071,Alabama,Jackson County,10,14,3266,1540,1726,1433,1614,55,51,23,27,3,4,0,0,26,30,1459,1643,57,53,47,56,3,4,0,0,1533,1714,1426,1603,55,51,23,26,3,4,0,0,26,30,1452,1632,57,53,47,55,3,4,0,0,7,12,7,11,0,0,0,1,0,0,0,0,0,0,7,11,0,0,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,10,15,2765,1238,1527,1170,1442,25,43,26,16,3,5,0,0,14,21,1184,1462,25,44,39,35,4,7,0,0,1229,1518,1162,1434,25,42,25,16,3,5,0,0,14,21,1176,1454,25,43,38,35,4,7,0,0,9,9,8,8,0,1,1,0,0,0,0,0,0,0,8,8,0,1,1,0,0,0,0,0 -050,01,071,Alabama,Jackson County,10,16,1917,905,1012,875,959,11,29,8,7,4,3,0,0,7,14,879,973,14,30,14,16,4,7,1,1,901,1007,871,956,11,29,8,7,4,3,0,0,7,12,875,968,14,30,14,16,4,5,1,0,4,5,4,3,0,0,0,0,0,0,0,0,0,2,4,5,0,0,0,0,0,2,0,1 -050,01,071,Alabama,Jackson County,10,17,1188,465,723,444,687,9,22,4,4,1,2,0,0,7,8,451,695,9,23,11,10,1,3,0,0,464,717,443,681,9,22,4,4,1,2,0,0,7,8,450,689,9,23,11,10,1,3,0,0,1,6,1,6,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,10,18,980,318,662,298,620,15,23,3,5,0,4,0,1,2,9,300,629,15,24,5,13,0,4,0,1,313,657,293,616,15,23,3,5,0,4,0,0,2,9,295,625,15,24,5,13,0,4,0,0,5,5,5,4,0,0,0,0,0,0,0,1,0,0,5,4,0,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,11,0,51649,25333,26316,23169,24047,892,902,411,434,139,160,29,26,693,747,23846,24760,1080,1121,878,942,187,202,41,45,24548,25591,22581,23498,847,870,341,365,109,133,18,12,652,713,23218,24178,1021,1078,784,851,154,173,28,29,785,725,588,549,45,32,70,69,30,27,11,14,41,34,628,582,59,43,94,91,33,29,13,16 -050,01,071,Alabama,Jackson County,11,1,2806,1451,1355,1301,1165,39,72,7,8,7,11,0,0,97,99,1395,1262,97,131,41,41,16,17,2,3,1387,1258,1245,1086,36,60,7,6,4,8,0,0,95,98,1338,1182,93,118,39,39,13,14,2,3,64,97,56,79,3,12,0,2,3,3,0,0,2,1,57,80,4,13,2,2,3,3,0,0 -050,01,071,Alabama,Jackson County,11,2,2837,1498,1339,1335,1213,63,44,25,8,8,10,1,0,66,64,1399,1274,98,77,52,38,14,14,2,0,1393,1265,1252,1153,53,43,17,3,7,8,1,0,63,58,1313,1208,87,75,43,29,13,11,1,0,105,74,83,60,10,1,8,5,1,2,0,0,3,6,86,66,11,2,9,9,1,3,1,0 -050,01,071,Alabama,Jackson County,11,3,3148,1660,1488,1524,1315,59,63,14,25,12,8,1,2,50,75,1574,1386,82,99,38,62,14,15,2,3,1567,1403,1453,1252,51,63,9,14,8,2,1,1,45,71,1498,1319,72,98,31,48,10,9,1,2,93,85,71,63,8,0,5,11,4,6,0,1,5,4,76,67,10,1,7,14,4,6,1,1 -050,01,071,Alabama,Jackson County,11,4,3111,1598,1513,1443,1381,56,56,24,16,11,9,2,2,62,49,1503,1427,78,77,60,45,15,11,4,2,1526,1436,1394,1324,53,51,16,10,4,8,1,0,58,43,1450,1365,75,70,48,34,8,10,3,0,72,77,49,57,3,5,8,6,7,1,1,2,4,6,53,62,3,7,12,11,7,1,1,2 -050,01,071,Alabama,Jackson County,11,5,2753,1388,1365,1246,1214,53,67,37,26,3,10,0,2,49,46,1294,1258,66,83,68,55,9,13,0,4,1331,1308,1204,1174,49,63,32,19,2,6,0,2,44,44,1247,1216,61,77,60,47,7,9,0,4,57,57,42,40,4,4,5,7,1,4,0,0,5,2,47,42,5,6,8,8,2,4,0,0 -050,01,071,Alabama,Jackson County,11,6,3213,1628,1585,1461,1440,85,64,29,28,10,9,4,4,39,40,1499,1477,93,75,55,53,16,14,4,6,1554,1542,1409,1412,79,62,20,23,8,7,3,1,35,37,1443,1446,85,72,44,46,14,12,3,3,74,43,52,28,6,2,9,5,2,2,1,3,4,3,56,31,8,3,11,7,2,2,1,3 -050,01,071,Alabama,Jackson County,11,7,2644,1314,1330,1169,1218,57,29,27,32,22,19,8,4,31,28,1199,1244,63,36,51,51,24,22,8,5,1273,1295,1138,1191,57,29,22,28,19,19,7,2,30,26,1167,1215,62,35,46,46,21,22,7,3,41,35,31,27,0,0,5,4,3,0,1,2,1,2,32,29,1,1,5,5,3,0,1,2 -050,01,071,Alabama,Jackson County,11,8,2963,1410,1553,1282,1422,49,42,33,38,10,15,2,0,34,36,1314,1456,54,47,58,69,14,16,4,1,1361,1488,1244,1369,48,41,31,32,6,12,1,0,31,34,1273,1401,50,45,56,62,10,13,3,1,49,65,38,53,1,1,2,6,4,3,1,0,3,2,41,55,4,2,2,7,4,3,1,0 -050,01,071,Alabama,Jackson County,11,9,3206,1581,1625,1443,1485,59,50,32,42,8,9,2,3,37,36,1479,1516,65,57,60,74,12,10,3,4,1521,1570,1402,1444,55,47,25,38,7,6,1,2,31,33,1432,1472,59,54,49,68,10,7,2,2,60,55,41,41,4,3,7,4,1,3,1,1,6,3,47,44,6,3,11,6,2,3,1,2 -050,01,071,Alabama,Jackson County,11,10,3525,1797,1728,1634,1570,66,60,33,36,7,17,2,3,55,42,1689,1608,70,65,82,72,8,20,4,5,1739,1686,1592,1544,63,58,28,26,5,16,0,1,51,41,1643,1581,66,63,75,61,5,19,2,3,58,42,42,26,3,2,5,10,2,1,2,2,4,1,46,27,4,2,7,11,3,1,2,2 -050,01,071,Alabama,Jackson County,11,11,3446,1704,1742,1603,1597,40,63,16,29,12,14,1,1,32,38,1635,1633,42,68,45,63,13,15,1,1,1668,1713,1580,1574,40,63,8,26,12,13,0,0,28,37,1608,1609,42,68,33,59,13,14,0,0,36,29,23,23,0,0,8,3,0,1,1,1,4,1,27,24,0,0,12,4,0,1,1,1 -050,01,071,Alabama,Jackson County,11,12,3742,1815,1927,1678,1776,57,55,28,29,5,7,3,2,44,58,1721,1834,60,58,69,82,5,7,4,4,1786,1914,1658,1767,54,54,23,27,5,7,2,1,44,58,1701,1825,57,57,64,80,5,7,3,3,29,13,20,9,3,1,5,2,0,0,1,1,0,0,20,9,3,1,5,2,0,0,1,1 -050,01,071,Alabama,Jackson County,11,13,3926,1914,2012,1743,1839,84,70,39,50,12,6,2,2,34,45,1777,1882,84,74,72,93,13,6,2,2,1893,1995,1728,1827,84,70,37,47,10,5,0,2,34,44,1762,1869,84,74,70,89,11,5,0,2,21,17,15,12,0,0,2,3,2,1,2,0,0,1,15,13,0,0,2,4,2,1,2,0 -050,01,071,Alabama,Jackson County,11,14,3254,1541,1713,1422,1601,64,50,22,26,3,3,1,0,29,33,1450,1634,65,52,50,55,4,4,1,1,1534,1700,1415,1589,64,50,22,25,3,3,1,0,29,33,1443,1622,65,52,50,54,4,4,1,1,7,13,7,12,0,0,0,1,0,0,0,0,0,0,7,12,0,0,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,11,15,2806,1277,1529,1208,1438,22,40,27,22,4,3,0,0,16,26,1224,1464,23,42,41,46,5,3,0,0,1269,1523,1201,1433,22,39,26,22,4,3,0,0,16,26,1217,1459,23,41,40,46,5,3,0,0,8,6,7,5,0,1,1,0,0,0,0,0,0,0,7,5,0,1,1,0,0,0,0,0 -050,01,071,Alabama,Jackson County,11,16,2035,935,1100,895,1044,17,29,11,9,3,4,0,0,9,14,904,1058,17,31,20,19,3,6,0,1,930,1097,890,1043,17,29,11,9,3,4,0,0,9,12,899,1055,17,30,20,19,3,5,0,0,5,3,5,1,0,0,0,0,0,0,0,0,0,2,5,3,0,1,0,0,0,1,0,1 -050,01,071,Alabama,Jackson County,11,17,1259,504,755,483,714,8,27,3,4,2,1,0,0,8,9,490,723,9,28,11,9,2,4,0,2,503,747,482,706,8,27,3,4,2,1,0,0,8,9,489,715,9,28,11,9,2,4,0,2,1,8,1,8,0,0,0,0,0,0,0,0,0,0,1,8,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,11,18,975,318,657,299,615,14,21,4,6,0,5,0,1,1,9,300,624,14,21,5,15,0,5,0,1,313,651,294,610,14,21,4,6,0,5,0,0,1,9,295,619,14,21,5,15,0,5,0,0,5,6,5,5,0,0,0,0,0,0,0,1,0,0,5,5,0,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,12,0,51672,25370,26302,23195,24052,887,884,410,427,135,167,35,27,708,745,23881,24766,1087,1110,895,925,181,213,40,39,24550,25538,22577,23470,846,848,337,363,104,140,18,12,668,705,23224,24149,1029,1052,797,842,148,183,23,22,820,764,618,582,41,36,73,64,31,27,17,15,40,40,657,617,58,58,98,83,33,30,17,17 -050,01,071,Alabama,Jackson County,12,1,2790,1435,1355,1293,1175,43,66,11,7,7,11,0,0,81,96,1371,1268,93,126,38,36,14,20,0,1,1365,1256,1233,1096,41,53,10,5,3,10,0,0,78,92,1308,1185,88,110,37,33,10,19,0,1,70,99,60,79,2,13,1,2,4,1,0,0,3,4,63,83,5,16,1,3,4,1,0,0 -050,01,071,Alabama,Jackson County,12,2,2810,1460,1350,1298,1216,53,44,18,10,8,14,3,1,80,65,1376,1278,96,77,49,38,15,21,4,1,1361,1257,1213,1141,49,41,12,8,7,10,1,0,79,57,1290,1197,91,71,43,30,14,16,2,0,99,93,85,75,4,3,6,2,1,4,2,1,1,8,86,81,5,6,6,8,1,5,2,1 -050,01,071,Alabama,Jackson County,12,3,3109,1643,1466,1497,1302,64,54,16,20,7,7,2,2,57,81,1554,1378,88,93,44,57,12,12,3,7,1543,1387,1419,1242,55,53,11,10,4,4,1,1,53,77,1472,1314,79,91,35,45,9,9,2,5,100,79,78,60,9,1,5,10,3,3,1,1,4,4,82,64,9,2,9,12,3,3,1,2 -050,01,071,Alabama,Jackson County,12,4,3075,1578,1497,1426,1363,54,55,27,20,14,8,2,2,55,49,1480,1409,75,75,58,48,17,12,3,3,1504,1414,1376,1303,52,51,18,12,7,5,1,0,50,43,1425,1343,70,67,47,37,10,9,2,1,74,83,50,60,2,4,9,8,7,3,1,2,5,6,55,66,5,8,11,11,7,3,1,2 -050,01,071,Alabama,Jackson County,12,5,2746,1416,1330,1270,1189,57,64,36,23,3,12,0,2,50,40,1318,1227,72,78,71,47,6,15,0,3,1359,1267,1227,1141,54,59,31,18,2,9,0,2,45,38,1270,1177,67,72,62,41,5,12,0,3,57,63,43,48,3,5,5,5,1,3,0,0,5,2,48,50,5,6,9,6,1,3,0,0 -050,01,071,Alabama,Jackson County,12,6,3208,1603,1605,1441,1451,72,74,27,25,9,10,4,3,50,42,1488,1491,82,87,64,53,15,11,4,5,1525,1563,1385,1425,63,72,20,19,7,7,3,1,47,39,1429,1462,72,83,55,46,13,8,3,3,78,42,56,26,9,2,7,6,2,3,1,2,3,3,59,29,10,4,9,7,2,3,1,2 -050,01,071,Alabama,Jackson County,12,7,2736,1390,1346,1240,1236,64,30,26,27,21,17,8,4,31,32,1270,1267,72,40,49,52,22,19,8,4,1344,1303,1206,1202,63,30,21,25,18,17,7,1,29,28,1234,1229,69,38,44,48,19,19,7,1,46,43,34,34,1,0,5,2,3,0,1,3,2,4,36,38,3,2,5,4,3,0,1,3 -050,01,071,Alabama,Jackson County,12,8,2923,1391,1532,1258,1409,48,39,29,32,15,19,2,1,39,32,1296,1439,55,44,61,60,16,20,2,1,1341,1472,1221,1357,47,38,26,30,10,16,1,1,36,30,1256,1385,52,42,57,57,11,17,1,1,50,60,37,52,1,1,3,2,5,3,1,0,3,2,40,54,3,2,4,3,5,3,1,0 -050,01,071,Alabama,Jackson County,12,9,3156,1523,1633,1384,1502,59,45,37,41,7,8,2,1,34,36,1416,1537,63,50,67,72,9,9,2,1,1470,1580,1347,1464,55,42,32,35,6,5,1,0,29,34,1375,1497,58,46,58,65,7,6,1,0,53,53,37,38,4,3,5,6,1,3,1,1,5,2,41,40,5,4,9,7,2,3,1,1 -050,01,071,Alabama,Jackson County,12,10,3478,1782,1696,1634,1537,65,53,25,44,8,17,4,4,46,41,1680,1576,66,58,66,79,11,20,5,4,1717,1653,1589,1511,62,51,17,33,6,15,0,3,43,40,1632,1550,63,55,55,67,9,18,1,3,65,43,45,26,3,2,8,11,2,2,4,1,3,1,48,26,3,3,11,12,2,2,4,1 -050,01,071,Alabama,Jackson County,12,11,3369,1680,1689,1586,1560,36,59,17,24,6,13,1,2,34,31,1619,1591,39,63,49,51,8,13,1,2,1640,1656,1558,1534,36,59,10,21,6,12,0,0,30,30,1587,1564,38,62,38,48,7,12,0,0,40,33,28,26,0,0,7,3,0,1,1,2,4,1,32,27,1,1,11,3,1,1,1,2 -050,01,071,Alabama,Jackson County,12,12,3762,1825,1937,1693,1784,50,55,29,33,5,7,3,2,45,56,1735,1840,54,58,71,84,7,9,4,2,1791,1916,1673,1768,48,54,21,30,5,7,1,1,43,56,1713,1824,51,57,62,81,7,9,2,1,34,21,20,16,2,1,8,3,0,0,2,1,2,0,22,16,3,1,9,3,0,0,2,1 -050,01,071,Alabama,Jackson County,12,13,3867,1902,1965,1733,1789,76,73,40,48,12,7,3,2,38,46,1771,1833,79,75,73,89,14,11,3,3,1875,1949,1714,1778,75,73,37,45,10,6,1,2,38,45,1752,1822,78,75,70,86,12,9,1,2,27,16,19,11,1,0,3,3,2,1,2,0,0,1,19,11,1,0,3,3,2,2,2,1 -050,01,071,Alabama,Jackson County,12,14,3361,1608,1753,1480,1637,73,47,21,28,4,3,1,0,29,38,1509,1674,74,51,47,64,6,3,1,0,1600,1742,1472,1627,73,47,21,27,4,3,1,0,29,38,1501,1664,74,51,47,63,6,3,1,0,8,11,8,10,0,0,0,1,0,0,0,0,0,0,8,10,0,0,0,1,0,0,0,0 -050,01,071,Alabama,Jackson County,12,15,2873,1310,1563,1225,1465,33,47,28,24,3,4,0,0,21,23,1246,1487,34,50,48,44,3,4,0,1,1303,1552,1219,1455,33,46,27,24,3,4,0,0,21,23,1240,1477,34,49,47,44,3,4,0,1,7,11,6,10,0,1,1,0,0,0,0,0,0,0,6,10,0,1,1,0,0,0,0,0 -050,01,071,Alabama,Jackson County,12,16,2102,950,1152,907,1093,17,29,15,10,3,3,0,0,8,17,913,1108,20,33,23,22,3,6,0,0,945,1150,902,1093,17,29,15,10,3,3,0,0,8,15,908,1107,20,31,23,22,3,5,0,0,5,2,5,0,0,0,0,0,0,0,0,0,0,2,5,1,0,2,0,0,0,1,0,0 -050,01,071,Alabama,Jackson County,12,17,1321,551,770,527,721,10,31,4,5,3,2,0,0,7,11,534,731,11,32,10,15,3,3,0,0,549,763,525,714,10,31,4,5,3,2,0,0,7,11,532,724,11,32,10,15,3,3,0,0,2,7,2,7,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,12,18,986,323,663,303,623,13,19,4,6,0,5,0,1,3,9,305,632,14,20,7,14,0,5,0,1,318,658,298,619,13,19,4,6,0,5,0,0,3,9,300,628,14,20,7,14,0,5,0,0,5,5,5,4,0,0,0,0,0,0,0,1,0,0,5,4,0,0,0,0,0,0,0,1 -050,01,071,Alabama,Jackson County,13,0,51582,25314,26268,23129,24022,888,872,412,425,137,162,37,30,711,757,23814,24743,1096,1094,889,935,180,217,52,41,24492,25484,22519,23425,845,838,341,357,105,138,19,14,663,712,23157,24106,1033,1037,792,846,147,187,32,24,822,784,610,597,43,34,71,68,32,24,18,16,48,45,657,637,63,57,97,89,33,30,20,17 -050,01,071,Alabama,Jackson County,13,1,2811,1445,1366,1284,1190,51,68,16,13,8,14,1,1,85,80,1369,1265,104,120,43,38,16,21,1,2,1360,1259,1214,1109,48,56,13,7,4,12,0,0,81,75,1295,1179,98,106,40,29,11,19,0,1,85,107,70,81,3,12,3,6,4,2,1,1,4,5,74,86,6,14,3,9,5,2,1,1 -050,01,071,Alabama,Jackson County,13,2,2781,1451,1330,1317,1181,36,40,12,9,8,10,3,3,75,87,1390,1265,77,84,41,48,13,17,5,3,1369,1234,1245,1104,34,36,9,8,6,7,1,2,74,77,1317,1179,75,76,37,41,11,13,3,2,82,96,72,77,2,4,3,1,2,3,2,1,1,10,73,86,2,8,4,7,2,4,2,1 -050,01,071,Alabama,Jackson County,13,3,3039,1574,1465,1425,1312,57,52,21,19,6,9,2,2,63,71,1486,1378,86,84,50,51,10,20,5,4,1461,1381,1339,1247,47,51,13,10,4,6,1,1,57,66,1394,1310,74,81,38,39,8,15,4,3,113,84,86,65,10,1,8,9,2,3,1,1,6,5,92,68,12,3,12,12,2,5,1,1 -050,01,071,Alabama,Jackson County,13,4,2998,1575,1423,1424,1284,54,49,21,24,14,6,3,1,59,59,1481,1342,80,73,52,55,17,10,4,2,1490,1348,1366,1229,50,48,17,15,6,4,2,0,49,52,1413,1280,71,69,43,42,9,8,3,1,85,75,58,55,4,1,4,9,8,2,1,1,10,7,68,62,9,4,9,13,8,2,1,1 -050,01,071,Alabama,Jackson County,13,5,2759,1427,1332,1279,1198,61,60,37,20,4,7,0,2,46,45,1322,1240,77,78,64,48,8,9,2,2,1377,1257,1243,1139,59,54,30,15,3,5,0,1,42,43,1282,1180,73,71,55,42,7,6,2,1,50,75,36,59,2,6,7,5,1,2,0,1,4,2,40,60,4,7,9,6,1,3,0,1 -050,01,071,Alabama,Jackson County,13,6,3117,1559,1558,1396,1415,77,71,27,18,11,15,2,3,46,36,1437,1448,90,82,61,40,15,19,2,5,1487,1508,1344,1383,68,67,22,11,9,12,1,1,43,34,1383,1414,79,77,54,32,13,16,1,3,72,50,52,32,9,4,5,7,2,3,1,2,3,2,54,34,11,5,7,8,2,3,1,2 -050,01,071,Alabama,Jackson County,13,7,2827,1416,1411,1275,1301,66,37,23,21,15,15,7,2,30,35,1305,1334,74,48,47,44,16,19,7,2,1375,1374,1248,1274,64,37,18,18,12,14,6,0,27,31,1275,1303,70,45,41,41,13,17,6,0,41,37,27,27,2,0,5,3,3,1,1,2,3,4,30,31,4,3,6,3,3,2,1,2 -050,01,071,Alabama,Jackson County,13,8,2846,1375,1471,1246,1358,41,33,30,34,17,14,5,4,36,28,1281,1380,42,41,62,56,20,17,6,5,1333,1421,1215,1313,40,33,26,34,14,11,4,3,34,27,1248,1334,40,40,57,56,17,14,5,4,42,50,31,45,1,0,4,0,3,3,1,1,2,1,33,46,2,1,5,0,3,3,1,1 -050,01,071,Alabama,Jackson County,13,9,3128,1515,1613,1363,1480,68,41,40,40,9,12,1,1,34,39,1396,1517,71,47,69,74,10,14,3,1,1465,1565,1328,1448,64,39,35,33,6,10,0,0,32,35,1359,1481,65,43,64,65,7,12,2,0,50,48,35,32,4,2,5,7,3,2,1,1,2,4,37,36,6,4,5,9,3,2,1,1 -050,01,071,Alabama,Jackson County,13,10,3454,1764,1690,1623,1529,61,56,24,47,6,13,4,4,46,41,1668,1569,64,59,63,80,9,17,6,6,1702,1643,1581,1501,58,52,18,35,4,12,1,3,40,40,1620,1540,61,54,53,68,7,16,1,5,62,47,42,28,3,4,6,12,2,1,3,1,6,1,48,29,3,5,10,12,2,1,5,1 -050,01,071,Alabama,Jackson County,13,11,3368,1704,1664,1586,1528,49,59,18,25,7,16,2,2,42,34,1627,1562,53,61,55,56,9,17,2,2,1655,1629,1552,1499,49,59,10,23,7,15,0,0,37,33,1588,1532,52,60,43,54,9,16,0,0,49,35,34,29,0,0,8,2,0,1,2,2,5,1,39,30,1,1,12,2,0,1,2,2 -050,01,071,Alabama,Jackson County,13,12,3645,1738,1907,1624,1773,42,55,27,25,6,6,2,2,37,46,1658,1819,45,55,61,68,8,8,3,3,1713,1883,1611,1752,41,55,19,23,6,6,1,1,35,46,1643,1798,44,55,51,66,8,8,2,2,25,24,13,21,1,0,8,2,0,0,1,1,2,0,15,21,1,0,10,2,0,0,1,1 -050,01,071,Alabama,Jackson County,13,13,3912,1915,1997,1748,1816,79,71,32,48,12,7,3,2,41,53,1788,1866,82,76,69,100,14,7,3,2,1879,1982,1722,1807,77,71,28,44,10,6,1,2,41,52,1762,1856,80,75,65,96,12,6,1,2,36,15,26,9,2,0,4,4,2,1,2,0,0,1,26,10,2,1,4,4,2,1,2,0 -050,01,071,Alabama,Jackson County,13,14,3434,1633,1801,1495,1679,69,48,32,34,4,3,2,0,31,37,1525,1716,70,50,61,69,5,3,3,0,1623,1786,1486,1665,69,48,32,33,4,3,1,0,31,37,1516,1702,70,50,61,68,5,3,2,0,10,15,9,14,0,0,0,1,0,0,1,0,0,0,9,14,0,0,0,1,0,0,1,0 -050,01,071,Alabama,Jackson County,13,15,2941,1352,1589,1263,1483,41,50,26,25,3,6,0,0,19,25,1279,1508,45,50,44,49,3,7,0,0,1346,1579,1257,1473,41,50,26,25,3,6,0,0,19,25,1273,1498,45,50,44,49,3,7,0,0,6,10,6,10,0,0,0,0,0,0,0,0,0,0,6,10,0,0,0,0,0,0,0,0 -050,01,071,Alabama,Jackson County,13,16,2157,972,1185,927,1114,14,36,18,14,3,2,0,0,10,19,937,1132,14,38,28,31,3,3,0,0,966,1182,922,1112,14,36,17,14,3,2,0,0,10,18,932,1130,14,37,27,31,3,2,0,0,6,3,5,2,0,0,1,0,0,0,0,0,0,1,5,2,0,1,1,0,0,1,0,0 -050,01,071,Alabama,Jackson County,13,17,1339,585,754,564,713,8,24,5,4,3,2,0,0,5,11,569,723,8,26,10,13,3,3,0,1,582,746,561,706,8,24,5,4,3,2,0,0,5,10,566,715,8,26,10,12,3,3,0,0,3,8,3,7,0,0,0,0,0,0,0,0,0,1,3,8,0,0,0,1,0,0,0,1 -050,01,071,Alabama,Jackson County,13,18,1026,314,712,290,668,14,22,3,5,1,5,0,1,6,11,296,679,14,22,9,15,1,6,0,1,309,707,285,664,14,22,3,5,1,5,0,0,6,11,291,675,14,22,9,15,1,6,0,0,5,5,5,4,0,0,0,0,0,0,0,1,0,0,5,4,0,0,0,0,0,0,0,1 -050,01,073,Alabama,Jefferson County,1,0,658466,311813,346653,175873,185768,126787,151398,1252,1148,4562,4817,260,214,3079,3308,178550,188532,128373,153259,2481,2389,5347,5673,371,333,297154,335824,163758,176831,125518,150320,645,796,4468,4745,74,91,2691,3041,166071,179360,126921,152013,1683,1928,5200,5565,160,191,14659,10829,12115,8937,1269,1078,607,352,94,72,186,123,388,267,12479,9172,1452,1246,798,461,147,108,211,142 -050,01,073,Alabama,Jefferson County,1,1,43897,22313,21584,10655,10068,10667,10510,98,103,344,340,25,36,524,527,11142,10552,11022,10895,186,166,486,470,40,49,20616,19968,9260,8741,10511,10367,37,43,335,329,5,11,468,477,9692,9179,10829,10723,105,88,470,453,19,22,1697,1616,1395,1327,156,143,61,60,9,11,20,25,56,50,1450,1373,193,172,81,78,16,17,21,27 -050,01,073,Alabama,Jefferson County,1,2,41902,21211,20691,10070,9810,10297,10087,95,64,344,326,22,15,383,389,10413,10165,10550,10347,171,133,456,432,32,25,19959,19527,9038,8828,10193,9982,40,34,333,316,4,2,351,365,9353,9161,10429,10225,102,95,438,421,11,10,1252,1164,1032,982,104,105,55,30,11,10,18,13,32,24,1060,1004,121,122,69,38,18,11,21,15 -050,01,073,Alabama,Jefferson County,1,3,42373,21719,20654,10267,9635,10748,10328,72,70,268,287,20,12,344,322,10568,9918,10982,10553,150,145,364,365,32,19,20810,19858,9509,8975,10679,10246,45,45,265,284,6,4,306,304,9779,9243,10890,10457,107,113,355,358,14,11,909,796,758,660,69,82,27,25,3,3,14,8,38,18,789,675,92,96,43,32,9,7,18,8 -050,01,073,Alabama,Jefferson County,1,4,44662,22568,22094,10712,10224,11243,11264,92,78,269,255,14,12,238,261,10920,10444,11397,11428,159,162,324,324,21,19,21566,21351,9902,9631,11128,11164,51,57,261,251,7,5,217,243,10091,9838,11273,11316,106,132,310,317,13,12,1002,743,810,593,115,100,41,21,8,4,7,7,21,18,829,606,124,112,53,30,14,7,8,7 -050,01,073,Alabama,Jefferson County,1,5,46405,22298,24107,11805,12139,9742,11136,125,109,358,412,41,21,227,290,12001,12394,9865,11292,213,194,408,507,51,28,20272,22937,10120,11178,9586,11021,25,67,352,406,10,8,179,257,10269,11402,9686,11152,90,138,399,498,16,14,2026,1170,1685,961,156,115,100,42,6,6,31,13,48,33,1732,992,179,140,123,56,9,9,35,14 -050,01,073,Alabama,Jefferson County,1,6,48533,23224,25309,13394,13004,8908,11359,149,115,501,536,43,33,229,262,13587,13205,9013,11517,260,216,557,607,54,49,21081,23962,11608,11891,8767,11252,33,55,488,527,6,12,179,225,11754,12059,8851,11383,117,144,540,595,13,21,2143,1347,1786,1113,141,107,116,60,13,9,37,21,50,37,1833,1146,162,134,143,72,17,12,41,28 -050,01,073,Alabama,Jefferson County,1,7,44764,21452,23312,12313,11644,8316,10803,120,94,467,537,42,32,194,202,12471,11809,8395,10903,214,170,532,607,50,44,19708,22167,10870,10681,8176,10720,44,58,458,527,10,11,150,170,10985,10815,8241,10802,108,118,521,594,15,23,1744,1145,1443,963,140,83,76,36,9,10,32,21,44,32,1486,994,154,101,106,52,11,13,35,21 -050,01,073,Alabama,Jefferson County,1,8,42291,20526,21765,11782,11174,8004,9877,84,79,474,481,16,9,166,145,11928,11281,8059,9943,175,148,525,532,24,18,19249,20901,10715,10459,7900,9785,41,52,463,474,4,3,126,128,10821,10554,7940,9843,111,114,507,520,11,8,1277,864,1067,715,104,92,43,27,11,7,12,6,40,17,1107,727,119,100,64,34,18,12,13,10 -050,01,073,Alabama,Jefferson County,1,9,41302,19764,21538,11491,11210,7662,9728,72,70,397,393,11,9,131,128,11603,11311,7704,9777,153,142,422,435,15,13,18893,20997,10770,10759,7578,9668,49,53,390,389,2,5,104,123,10856,10855,7610,9715,118,122,410,431,4,9,871,541,721,451,84,60,23,17,7,4,9,4,27,5,747,456,94,62,35,20,12,4,11,4 -050,01,073,Alabama,Jefferson County,1,10,46460,22005,24455,12975,13139,8445,10717,76,82,364,357,7,11,138,149,13086,13248,8477,10785,172,173,397,392,12,16,21379,24015,12451,12779,8379,10665,59,73,357,355,6,7,127,136,12553,12877,8408,10725,148,158,388,387,10,12,626,440,524,360,66,52,17,9,7,2,1,4,11,13,533,371,69,60,24,15,9,5,2,4 -050,01,073,Alabama,Jefferson County,1,11,48773,22900,25873,13306,13708,9172,11705,65,80,222,232,5,10,130,138,13419,13816,9216,11754,154,169,246,262,8,15,22471,25545,12942,13425,9130,11675,52,72,222,230,3,10,122,133,13047,13528,9171,11723,137,158,245,259,6,15,429,328,364,283,42,30,13,8,0,2,2,0,8,5,372,288,45,31,17,11,1,3,2,0 -050,01,073,Alabama,Jefferson County,1,12,44702,20837,23865,12427,13198,8060,10250,73,60,155,219,4,2,118,136,12524,13294,8103,10308,150,161,182,240,5,9,20554,23667,12211,13045,8023,10217,53,54,151,219,3,2,113,130,12304,13135,8063,10273,127,151,177,240,4,9,283,198,216,153,37,33,20,6,4,0,1,0,5,6,220,159,40,35,23,10,5,0,1,0 -050,01,073,Alabama,Jefferson County,1,13,35959,16769,19190,10507,11476,5951,7384,48,43,160,174,3,4,100,109,10589,11558,5976,7433,131,118,178,194,7,11,16629,19027,10403,11347,5927,7357,42,40,159,174,2,4,96,105,10482,11427,5949,7404,124,114,176,192,5,9,140,163,104,129,24,27,6,3,1,0,1,0,4,4,107,131,27,29,7,4,2,2,2,2 -050,01,073,Alabama,Jefferson County,1,14,25034,11285,13749,7563,8845,3505,4673,39,39,121,113,3,3,54,76,7610,8910,3518,4697,77,97,130,123,9,4,11174,13650,7473,8769,3492,4658,37,34,117,110,3,3,52,76,7518,8834,3504,4682,74,92,126,120,9,4,111,99,90,76,13,15,2,5,4,3,0,0,2,0,92,76,14,15,3,5,4,3,0,0 -050,01,073,Alabama,Jefferson County,1,15,19239,8032,11207,5547,7358,2363,3706,19,20,59,77,1,2,43,44,5586,7391,2372,3720,47,53,69,84,3,4,7985,11134,5509,7299,2356,3693,18,20,59,77,1,2,42,43,5547,7332,2364,3706,46,53,69,84,3,3,47,73,38,59,7,13,1,0,0,0,0,0,1,1,39,59,8,14,1,0,0,0,0,1 -050,01,073,Alabama,Jefferson County,1,16,15956,6207,9749,4451,6721,1676,2929,13,15,35,41,0,2,32,41,4473,6750,1687,2942,39,47,40,48,2,5,6164,9688,4417,6675,1669,2919,12,13,35,41,0,1,31,39,4438,6703,1680,2932,38,44,39,46,2,4,43,61,34,46,7,10,1,2,0,0,0,1,1,2,35,47,7,10,1,3,1,2,0,1 -050,01,073,Alabama,Jefferson County,1,17,13671,4924,8747,3750,6161,1135,2505,4,13,14,26,2,0,19,42,3766,6193,1140,2518,16,41,18,37,5,1,4886,8704,3719,6128,1132,2498,1,13,14,25,1,0,19,40,3735,6158,1137,2509,13,41,18,36,4,1,38,43,31,33,3,7,3,0,0,1,1,0,0,2,31,35,3,9,3,0,0,1,1,0 -050,01,073,Alabama,Jefferson County,1,18,12543,3779,8764,2858,6254,893,2437,8,14,10,11,1,1,9,47,2864,6293,897,2447,14,54,13,14,1,4,3758,8726,2841,6221,892,2433,6,13,9,11,1,1,9,47,2847,6260,896,2443,12,53,12,14,1,4,21,38,17,33,1,4,2,1,1,0,0,0,0,0,17,33,1,4,2,1,1,0,0,0 -050,01,073,Alabama,Jefferson County,2,0,658564,311857,346707,175887,185788,126816,151430,1253,1147,4564,4819,263,215,3074,3308,178559,188552,128402,153291,2477,2388,5349,5675,374,334,297202,335884,163776,176857,125547,150352,646,795,4470,4747,77,92,2686,3041,166084,179386,126950,152045,1679,1927,5202,5567,163,192,14655,10823,12111,8931,1269,1078,607,352,94,72,186,123,388,267,12475,9166,1452,1246,798,461,147,108,211,142 -050,01,073,Alabama,Jefferson County,2,1,43915,22324,21591,10665,10074,10669,10511,98,103,344,340,25,36,523,527,11151,10558,11024,10896,185,166,486,470,40,49,20627,19976,9270,8748,10513,10368,37,43,335,329,5,11,467,477,9701,9186,10831,10724,104,88,470,453,19,22,1697,1615,1395,1326,156,143,61,60,9,11,20,25,56,50,1450,1372,193,172,81,78,16,17,21,27 -050,01,073,Alabama,Jefferson County,2,2,41909,21213,20696,10071,9810,10299,10092,95,64,344,326,22,15,382,389,10413,10165,10552,10352,170,133,456,432,32,25,19961,19533,9039,8829,10195,9987,40,34,333,316,4,2,350,365,9353,9162,10431,10230,101,95,438,421,11,10,1252,1163,1032,981,104,105,55,30,11,10,18,13,32,24,1060,1003,121,122,69,38,18,11,21,15 -050,01,073,Alabama,Jefferson County,2,3,42359,21713,20646,10260,9624,10750,10331,72,70,268,287,20,12,343,322,10560,9907,10984,10556,149,145,364,365,32,19,20804,19850,9502,8964,10681,10249,45,45,265,284,6,4,305,304,9771,9232,10892,10460,106,113,355,358,14,11,909,796,758,660,69,82,27,25,3,3,14,8,38,18,789,675,92,96,43,32,9,7,18,8 -050,01,073,Alabama,Jefferson County,2,4,44651,22556,22095,10699,10224,11244,11265,92,78,269,255,14,12,238,261,10907,10444,11398,11429,159,162,324,324,21,19,21555,21353,9890,9632,11129,11165,51,57,261,251,7,5,217,243,10079,9839,11274,11317,106,132,310,317,13,12,1001,742,809,592,115,100,41,21,8,4,7,7,21,18,828,605,124,112,53,30,14,7,8,7 -050,01,073,Alabama,Jefferson County,2,5,46414,22302,24112,11807,12142,9744,11138,125,109,358,412,41,21,227,290,12003,12397,9867,11294,213,194,408,507,51,28,20277,22942,10123,11181,9588,11023,25,67,352,406,10,8,179,257,10272,11405,9688,11154,90,138,399,498,16,14,2025,1170,1684,961,156,115,100,42,6,6,31,13,48,33,1731,992,179,140,123,56,9,9,35,14 -050,01,073,Alabama,Jefferson County,2,6,48551,23230,25321,13397,13016,8911,11359,149,115,501,536,43,33,229,262,13590,13217,9016,11517,260,216,557,607,54,49,21087,23974,11611,11903,8770,11252,33,55,488,527,6,12,179,225,11757,12071,8854,11383,117,144,540,595,13,21,2143,1347,1786,1113,141,107,116,60,13,9,37,21,50,37,1833,1146,162,134,143,72,17,12,41,28 -050,01,073,Alabama,Jefferson County,2,7,44778,21460,23318,12318,11648,8318,10805,121,94,467,537,42,32,194,202,12476,11813,8397,10905,215,170,532,607,50,44,19716,22173,10875,10685,8178,10722,45,58,458,527,10,11,150,170,10990,10819,8243,10804,109,118,521,594,15,23,1744,1145,1443,963,140,83,76,36,9,10,32,21,44,32,1486,994,154,101,106,52,11,13,35,21 -050,01,073,Alabama,Jefferson County,2,8,42302,20531,21771,11785,11175,8006,9881,84,79,474,482,17,9,165,145,11930,11282,8061,9947,174,148,525,533,25,18,19254,20908,10718,10461,7902,9789,41,52,463,475,5,3,125,128,10823,10556,7942,9847,110,114,507,521,12,8,1277,863,1067,714,104,92,43,27,11,7,12,6,40,17,1107,726,119,100,64,34,18,12,13,10 -050,01,073,Alabama,Jefferson County,2,9,41313,19773,21540,11497,11208,7666,9732,72,70,397,393,11,9,130,128,11608,11309,7708,9781,152,142,422,435,15,13,18903,20999,10777,10757,7582,9672,49,53,390,389,2,5,103,123,10862,10853,7614,9719,117,122,410,431,4,9,870,541,720,451,84,60,23,17,7,4,9,4,27,5,746,456,94,62,35,20,12,4,11,4 -050,01,073,Alabama,Jefferson County,2,10,46465,22003,24462,12971,13142,8445,10721,76,82,365,357,8,11,138,149,13082,13251,8477,10789,172,173,398,392,13,16,21377,24022,12447,12782,8379,10669,59,73,358,355,7,7,127,136,12549,12880,8408,10729,148,158,389,387,11,12,626,440,524,360,66,52,17,9,7,2,1,4,11,13,533,371,69,60,24,15,9,5,2,4 -050,01,073,Alabama,Jefferson County,2,11,48776,22904,25872,13304,13704,9178,11708,65,80,222,232,5,10,130,138,13417,13812,9222,11757,154,169,246,262,8,15,22475,25545,12940,13422,9136,11678,52,72,222,230,3,10,122,133,13045,13525,9177,11726,137,158,245,259,6,15,429,327,364,282,42,30,13,8,0,2,2,0,8,5,372,287,45,31,17,11,1,3,2,0 -050,01,073,Alabama,Jefferson County,2,12,44714,20846,23868,12435,13201,8061,10250,73,60,155,219,4,2,118,136,12532,13297,8104,10308,150,161,182,240,5,9,20564,23670,12220,13048,8024,10217,53,54,151,219,3,2,113,130,12313,13138,8064,10273,127,151,177,240,4,9,282,198,215,153,37,33,20,6,4,0,1,0,5,6,219,159,40,35,23,10,5,0,1,0 -050,01,073,Alabama,Jefferson County,2,13,35968,16771,19197,10508,11483,5951,7384,48,42,161,175,3,4,100,109,10590,11565,5976,7433,131,117,179,195,7,11,16631,19034,10404,11354,5927,7357,42,39,160,175,2,4,96,105,10483,11434,5949,7404,124,113,177,193,5,9,140,163,104,129,24,27,6,3,1,0,1,0,4,4,107,131,27,29,7,4,2,2,2,2 -050,01,073,Alabama,Jefferson County,2,14,25034,11285,13749,7563,8845,3505,4673,39,39,121,113,3,3,54,76,7610,8910,3518,4697,77,97,130,123,9,4,11174,13650,7473,8769,3492,4658,37,34,117,110,3,3,52,76,7518,8834,3504,4682,74,92,126,120,9,4,111,99,90,76,13,15,2,5,4,3,0,0,2,0,92,76,14,15,3,5,4,3,0,0 -050,01,073,Alabama,Jefferson County,2,15,19242,8034,11208,5547,7356,2364,3708,19,20,59,77,2,3,43,44,5586,7389,2373,3722,47,53,69,84,4,5,7987,11135,5509,7297,2357,3695,18,20,59,77,2,3,42,43,5547,7330,2365,3708,46,53,69,84,4,4,47,73,38,59,7,13,1,0,0,0,0,0,1,1,39,59,8,14,1,0,0,0,0,1 -050,01,073,Alabama,Jefferson County,2,16,15957,6207,9750,4450,6722,1677,2929,13,15,35,41,0,2,32,41,4472,6751,1688,2942,39,47,40,48,2,5,6164,9689,4416,6676,1670,2919,12,13,35,41,0,1,31,39,4437,6704,1681,2932,38,44,39,46,2,4,43,61,34,46,7,10,1,2,0,0,0,1,1,2,35,47,7,10,1,3,1,2,0,1 -050,01,073,Alabama,Jefferson County,2,17,13673,4926,8747,3752,6160,1135,2506,4,13,14,26,2,0,19,42,3768,6192,1140,2519,16,41,18,37,5,1,4888,8704,3721,6127,1132,2499,1,13,14,25,1,0,19,40,3737,6157,1137,2510,13,41,18,36,4,1,38,43,31,33,3,7,3,0,0,1,1,0,0,2,31,35,3,9,3,0,0,1,1,0 -050,01,073,Alabama,Jefferson County,2,18,12543,3779,8764,2858,6254,893,2437,8,14,10,11,1,1,9,47,2864,6293,897,2447,14,54,13,14,1,4,3758,8727,2841,6222,892,2433,6,13,9,11,1,1,9,47,2847,6261,896,2443,12,53,12,14,1,4,21,37,17,32,1,4,2,1,1,0,0,0,0,0,17,32,1,4,2,1,1,0,0,0 -050,01,073,Alabama,Jefferson County,3,0,658230,311648,346582,175542,185532,126944,151561,1251,1149,4542,4834,251,193,3118,3313,178199,188300,128522,153301,2549,2513,5320,5678,381,322,297132,335766,163506,176560,125683,150492,665,800,4470,4774,72,72,2736,3068,165853,179133,127072,152109,1775,2060,5177,5557,157,175,14516,10816,12036,8972,1261,1069,586,349,72,60,179,121,382,245,12346,9167,1450,1192,774,453,143,121,224,147 -050,01,073,Alabama,Jefferson County,3,1,43847,22324,21523,10652,10051,10670,10461,91,100,346,350,28,36,537,525,11138,10527,11051,10843,183,179,475,478,51,48,20602,19904,9233,8706,10510,10324,34,42,341,340,5,12,479,480,9673,9147,10858,10683,105,106,460,453,18,21,1722,1619,1419,1345,160,137,57,58,5,10,23,24,58,45,1465,1380,193,160,78,73,15,25,33,27 -050,01,073,Alabama,Jefferson County,3,2,41804,21149,20655,10034,9801,10264,10064,98,65,340,325,24,12,389,388,10384,10149,10527,10331,174,144,434,417,38,27,19882,19475,8991,8806,10159,9955,41,34,331,315,4,1,356,364,9313,9133,10407,10209,102,102,418,402,13,12,1267,1180,1043,995,105,109,57,31,9,10,20,11,33,24,1071,1016,120,122,72,42,16,15,25,15 -050,01,073,Alabama,Jefferson County,3,3,42381,21695,20686,10234,9645,10745,10345,73,72,275,289,19,14,349,321,10548,9928,10967,10548,165,155,361,369,26,23,20779,19882,9469,8973,10677,10262,43,47,274,288,5,5,311,307,9753,9243,10878,10459,120,124,352,365,9,13,916,804,765,672,68,83,30,25,1,1,14,9,38,14,795,685,89,89,45,31,9,4,17,10 -050,01,073,Alabama,Jefferson County,3,4,44368,22437,21931,10634,10166,11184,11163,94,76,269,253,11,11,245,262,10847,10391,11321,11319,180,162,329,326,19,15,21454,21201,9843,9578,11068,11068,53,56,262,250,5,4,223,245,10039,9790,11197,11217,126,133,317,318,10,8,983,730,791,588,116,95,41,20,7,3,6,7,22,17,808,601,124,102,54,29,12,8,9,7 -050,01,073,Alabama,Jefferson County,3,5,46135,22175,23960,11650,11968,9795,11173,115,114,348,403,41,16,226,286,11837,12203,9916,11327,207,217,406,492,55,27,20253,22829,10039,11038,9645,11066,26,72,346,396,15,4,182,253,10188,11248,9742,11201,95,161,400,479,25,11,1922,1131,1611,930,150,107,89,42,2,7,26,12,44,33,1649,955,174,126,112,56,6,13,30,16 -050,01,073,Alabama,Jefferson County,3,6,48463,23148,25315,13325,13023,8904,11346,152,112,490,539,40,36,237,259,13514,13230,9011,11471,255,213,567,625,51,55,21047,23978,11580,11916,8764,11240,37,54,480,533,4,12,182,223,11727,12096,8843,11346,114,139,544,610,8,25,2101,1337,1745,1107,140,106,115,58,10,6,36,24,55,36,1787,1134,168,125,141,74,23,15,43,30 -050,01,073,Alabama,Jefferson County,3,7,45000,21546,23454,12351,11719,8381,10867,122,97,460,538,40,27,192,206,12509,11891,8458,10960,213,185,522,606,47,33,19830,22302,10926,10750,8245,10780,50,58,449,528,11,9,149,177,11046,10897,8300,10860,119,135,504,590,15,12,1716,1152,1425,969,136,87,72,39,11,10,29,18,43,29,1463,994,158,100,94,50,18,16,32,21 -050,01,073,Alabama,Jefferson County,3,8,42070,20369,21701,11656,11101,7991,9891,82,76,465,485,15,6,160,142,11786,11206,8044,9949,172,149,514,530,26,15,19099,20838,10590,10377,7885,9803,40,52,457,481,3,2,124,123,10690,10468,7923,9850,107,118,501,522,9,9,1270,863,1066,724,106,88,42,24,8,4,12,4,36,19,1096,738,121,99,65,31,13,8,17,6 -050,01,073,Alabama,Jefferson County,3,9,41373,19812,21561,11546,11233,7644,9717,75,74,401,394,12,6,134,137,11657,11334,7687,9771,159,161,436,431,16,12,18938,21009,10817,10770,7561,9655,53,54,395,393,2,3,110,134,10906,10869,7596,9706,124,139,422,429,5,9,874,552,729,463,83,62,22,20,6,1,10,3,24,3,751,465,91,65,35,22,14,2,11,3 -050,01,073,Alabama,Jefferson County,3,10,46178,21887,24291,12891,13030,8415,10675,77,77,366,354,7,11,131,144,12993,13141,8452,10727,167,175,396,388,16,17,21264,23859,12365,12676,8351,10621,59,70,361,353,7,6,121,133,12465,12778,8381,10668,144,163,388,385,13,11,623,432,526,354,64,54,18,7,5,1,0,5,10,11,528,363,71,59,23,12,8,3,3,6 -050,01,073,Alabama,Jefferson County,3,11,48696,22878,25818,13290,13691,9149,11662,65,81,229,234,5,10,140,140,13402,13799,9188,11705,172,177,258,266,7,18,22437,25484,12913,13402,9105,11632,55,72,229,233,3,9,132,136,13019,13507,9142,11673,156,166,257,264,4,17,441,334,377,289,44,30,10,9,0,1,2,1,8,4,383,292,46,32,16,11,1,2,3,1 -050,01,073,Alabama,Jefferson County,3,12,44933,20958,23975,12486,13227,8119,10328,75,67,158,223,2,0,118,130,12582,13331,8152,10376,162,164,186,246,7,4,20677,23775,12267,13070,8082,10293,57,62,155,223,2,0,114,127,12359,13172,8114,10341,140,156,183,245,7,4,281,200,219,157,37,35,18,5,3,0,0,0,4,3,223,159,38,35,22,8,3,1,0,0 -050,01,073,Alabama,Jefferson County,3,13,36428,16942,19486,10585,11602,6059,7553,43,41,156,180,2,1,97,109,10661,11687,6084,7588,119,127,173,197,5,8,16801,19322,10476,11475,6036,7523,39,37,156,179,1,1,93,107,10548,11558,6059,7558,113,122,173,196,4,7,141,164,109,127,23,30,4,4,0,1,1,0,4,2,113,129,25,30,6,5,0,1,1,1 -050,01,073,Alabama,Jefferson County,3,14,25137,11344,13793,7588,8853,3537,4702,40,39,120,114,2,3,57,82,7631,8920,3552,4722,83,102,130,125,6,8,11231,13690,7496,8773,3524,4690,37,35,116,110,2,1,56,81,7538,8839,3538,4710,80,97,126,121,6,6,113,103,92,80,13,12,3,4,4,4,0,2,1,1,93,81,14,12,3,5,4,4,0,2 -050,01,073,Alabama,Jefferson County,3,15,19279,8076,11203,5572,7342,2382,3719,19,19,61,79,1,1,41,43,5610,7375,2391,3731,53,54,67,86,6,2,8029,11129,5535,7283,2375,3705,18,18,61,79,1,1,39,43,5571,7316,2382,3717,52,53,67,86,6,2,47,74,37,59,7,14,1,1,0,0,0,0,2,0,39,59,9,14,1,1,0,0,0,0 -050,01,073,Alabama,Jefferson County,3,16,15871,6192,9679,4440,6654,1667,2928,15,15,35,37,0,2,35,43,4466,6688,1678,2938,46,50,38,43,1,4,6153,9620,4407,6608,1662,2920,14,13,35,37,0,1,35,41,4433,6641,1673,2929,45,47,38,42,1,3,39,59,33,46,5,8,1,2,0,0,0,1,0,2,33,47,5,9,1,3,0,1,0,1 -050,01,073,Alabama,Jefferson County,3,17,13635,4895,8740,3722,6148,1135,2509,6,11,12,26,1,0,19,46,3739,6186,1137,2519,21,46,14,35,3,3,4856,8694,3691,6113,1131,2501,2,11,12,25,1,0,19,44,3708,6149,1133,2510,17,46,14,32,3,2,39,46,31,35,4,8,4,0,0,1,0,0,0,2,31,37,4,9,4,0,0,3,0,1 -050,01,073,Alabama,Jefferson County,3,18,12632,3821,8811,2886,6278,903,2458,9,13,11,11,1,1,11,50,2895,6314,906,2476,18,53,14,18,1,3,3800,8775,2868,6246,903,2454,7,13,10,11,1,1,11,50,2877,6282,906,2472,16,53,13,18,1,3,21,36,18,32,0,4,2,0,1,0,0,0,0,0,18,32,0,4,2,0,1,0,0,0 -050,01,073,Alabama,Jefferson County,4,0,658175,311454,346721,174773,184805,127471,152209,1174,1119,4591,4973,220,168,3225,3447,177534,187691,129124,154043,2448,2485,5429,5862,338,300,297268,335732,162883,175545,126267,151181,662,804,4528,4927,62,62,2866,3213,165346,178234,127742,152898,1774,2069,5283,5763,144,165,14186,10989,11890,9260,1204,1028,512,315,63,46,158,106,359,234,12188,9457,1382,1145,674,416,146,99,194,135 -050,01,073,Alabama,Jefferson County,4,1,43945,22562,21383,10844,10079,10703,10280,70,81,338,354,23,22,584,567,11382,10594,11126,10694,160,165,484,490,40,36,20805,19744,9333,8666,10569,10165,28,35,335,348,4,7,536,523,9830,9145,10962,10555,102,104,469,470,16,17,1757,1639,1511,1413,134,115,42,46,3,6,19,15,48,44,1552,1449,164,139,58,61,15,20,24,19 -050,01,073,Alabama,Jefferson County,4,2,41841,21216,20625,10099,9792,10236,10029,88,59,350,323,21,16,422,406,10484,10163,10519,10311,165,138,454,414,34,23,19852,19366,8959,8718,10122,9923,43,29,342,315,3,1,383,380,9309,9064,10385,10192,105,100,440,402,13,6,1364,1259,1140,1074,114,106,45,30,8,8,18,15,39,26,1175,1099,134,119,60,38,14,12,21,17 -050,01,073,Alabama,Jefferson County,4,3,42472,21607,20865,10090,9702,10775,10429,71,83,298,296,14,10,359,345,10409,10009,11001,10653,166,167,388,381,22,19,20696,20010,9332,8987,10704,10340,38,55,296,293,2,3,324,332,9623,9283,10912,10558,116,132,379,376,7,11,911,855,758,715,71,89,33,28,2,3,12,7,35,13,786,726,89,95,50,35,9,5,15,8 -050,01,073,Alabama,Jefferson County,4,4,43121,21850,21271,10395,9943,10842,10740,77,65,275,253,9,17,252,253,10613,10156,10985,10897,158,140,339,318,18,24,20957,20531,9658,9327,10747,10656,46,50,271,252,5,7,230,239,9859,9530,10882,10804,116,119,328,315,12,13,893,740,737,616,95,84,31,15,4,1,4,10,22,14,754,626,103,93,42,21,11,3,6,11 -050,01,073,Alabama,Jefferson County,4,5,45499,21952,23547,11215,11403,10030,11307,113,103,328,418,24,10,242,306,11411,11659,10158,11467,203,210,401,513,33,29,20313,22532,9850,10557,9889,11214,37,67,326,414,10,1,201,279,10012,10793,9996,11358,109,163,388,506,16,14,1639,1015,1365,846,141,93,76,36,2,4,14,9,41,27,1399,866,162,109,94,47,13,7,17,15 -050,01,073,Alabama,Jefferson County,4,6,48401,22982,25419,13261,13099,8894,11376,119,106,431,526,45,31,232,281,13448,13320,8997,11517,217,218,511,625,59,49,21047,24104,11628,12007,8782,11267,28,57,427,519,8,9,174,245,11768,12199,8858,11389,98,151,493,608,14,20,1935,1315,1633,1092,112,109,91,49,4,7,37,22,58,36,1680,1121,139,128,119,67,18,17,45,29 -050,01,073,Alabama,Jefferson County,4,7,45989,21844,24145,12502,12141,8544,11109,115,96,473,553,36,24,174,222,12640,12325,8614,11205,195,185,535,634,43,31,20131,22949,11079,11132,8399,11007,48,55,458,544,8,11,139,200,11189,11296,8453,11093,109,135,513,621,12,17,1713,1196,1423,1009,145,102,67,41,15,9,28,13,35,22,1451,1029,161,112,86,50,22,13,31,14 -050,01,073,Alabama,Jefferson County,4,8,40918,19677,21241,11126,10720,7789,9778,90,79,499,520,15,7,158,137,11259,10827,7843,9829,175,150,550,566,23,18,18415,20377,10054,9988,7692,9698,45,52,492,518,4,1,128,120,10162,10079,7731,9743,116,114,536,559,11,7,1262,864,1072,732,97,80,45,27,7,2,11,6,30,17,1097,748,112,86,59,36,14,7,12,11 -050,01,073,Alabama,Jefferson County,4,9,41756,20072,21684,11758,11310,7674,9732,78,86,414,412,9,6,139,138,11870,11418,7718,9780,165,170,451,449,17,12,19167,21095,10996,10808,7587,9670,54,70,410,412,1,3,119,132,11092,10910,7623,9716,130,150,442,449,6,9,905,589,762,502,87,62,24,16,4,0,8,3,20,6,778,508,95,64,35,20,9,0,11,3 -050,01,073,Alabama,Jefferson County,4,10,44629,21223,23406,12400,12412,8247,10432,73,64,363,357,7,8,133,133,12510,12511,8283,10479,158,147,395,393,15,16,20588,22984,11862,12055,8187,10381,56,61,359,356,5,4,119,127,11962,12151,8214,10425,136,141,388,390,11,11,635,422,538,357,60,51,17,3,4,1,2,4,14,6,548,360,69,54,22,6,7,3,4,5 -050,01,073,Alabama,Jefferson County,4,11,48278,22583,25695,13120,13692,8990,11510,68,75,255,263,2,8,148,147,13241,13805,9032,11558,173,177,287,300,6,11,22142,25301,12747,13350,8943,11476,57,67,252,262,1,8,142,138,12862,13456,8983,11522,159,164,283,295,3,11,441,394,373,342,47,34,11,8,3,1,1,0,6,9,379,349,49,36,14,13,4,5,3,0 -050,01,073,Alabama,Jefferson County,4,12,45559,21256,24303,12592,13234,8288,10649,79,80,165,221,7,2,125,117,12692,13323,8323,10691,170,167,193,244,12,7,20932,24094,12348,13065,8232,10618,64,76,163,221,4,2,121,112,12444,13149,8266,10657,153,160,190,243,8,7,324,209,244,169,56,31,15,4,2,0,3,0,4,5,248,174,57,34,17,7,3,1,4,0 -050,01,073,Alabama,Jefferson County,4,13,38663,17814,20849,10994,12171,6529,8327,45,43,156,181,3,1,87,126,11066,12268,6546,8371,110,142,172,200,7,5,17668,20678,10871,12039,6514,8295,41,38,156,180,2,1,84,125,10940,12135,6530,8338,105,137,171,199,6,5,146,171,123,132,15,32,4,5,0,1,1,0,3,1,126,133,16,33,5,5,1,1,1,0 -050,01,073,Alabama,Jefferson County,4,14,25654,11630,14024,7691,8906,3718,4860,36,32,114,134,2,2,69,90,7743,8978,3739,4883,92,101,125,147,5,8,11518,13924,7598,8823,3706,4851,34,29,111,131,2,1,67,89,7648,8894,3727,4874,88,97,121,144,5,7,112,100,93,83,12,9,2,3,3,3,0,1,2,1,95,84,12,9,4,4,4,3,0,1 -050,01,073,Alabama,Jefferson County,4,15,19558,8306,11252,5703,7347,2464,3748,23,27,74,83,1,1,41,46,5737,7382,2475,3761,58,62,80,91,1,5,8261,11182,5672,7289,2456,3739,20,25,73,83,1,1,39,45,5704,7323,2465,3752,55,59,79,91,1,5,45,70,31,58,8,9,3,2,1,0,0,0,2,1,33,59,10,9,3,3,1,0,0,0 -050,01,073,Alabama,Jefferson County,4,16,15625,6139,9486,4363,6417,1687,2975,16,15,36,32,0,1,37,46,4392,6451,1696,2990,49,53,39,38,1,2,6098,9419,4326,6365,1683,2964,16,13,36,32,0,1,37,44,4355,6397,1692,2979,49,51,39,36,1,1,41,67,37,52,4,11,0,2,0,0,0,0,0,2,37,54,4,11,0,2,0,2,0,1 -050,01,073,Alabama,Jefferson County,4,17,13348,4765,8583,3612,6069,1124,2432,5,12,12,34,1,1,11,35,3621,6097,1127,2442,15,38,13,39,1,3,4728,8538,3584,6036,1119,2425,1,12,12,34,1,0,11,31,3593,6060,1122,2432,11,37,13,39,1,2,37,45,28,33,5,7,4,0,0,0,0,1,0,4,28,37,5,10,4,1,0,0,0,1 -050,01,073,Alabama,Jefferson County,4,18,12919,3976,8943,3008,6368,937,2496,8,13,10,13,1,1,12,52,3016,6405,942,2515,19,55,12,20,1,2,3950,8904,2986,6333,936,2492,6,13,9,13,1,1,12,52,2994,6370,941,2511,17,55,11,20,1,2,26,39,22,35,1,4,2,0,1,0,0,0,0,0,22,35,1,4,2,0,1,0,0,0 -050,01,073,Alabama,Jefferson County,5,0,658183,311510,346673,173854,183846,128181,152798,1124,1060,4825,5256,201,148,3325,3565,176719,186849,129914,154712,2424,2452,5675,6177,323,305,297913,335768,162381,174593,127028,151773,659,773,4785,5215,75,72,2985,3342,164971,177409,128595,153568,1800,2081,5559,6091,162,193,13597,10905,11473,9253,1153,1025,465,287,40,41,126,76,340,223,11748,9440,1319,1144,624,371,116,86,161,112 -050,01,073,Alabama,Jefferson County,5,1,43811,22530,21281,10852,10101,10622,10112,72,71,350,375,18,18,616,604,11418,10653,11067,10558,165,153,499,515,33,33,20873,19686,9397,8713,10525,10007,26,27,346,369,7,9,572,561,9927,9231,10943,10428,102,98,487,498,19,19,1657,1595,1455,1388,97,105,46,44,4,6,11,9,44,43,1491,1422,124,130,63,55,12,17,14,14 -050,01,073,Alabama,Jefferson County,5,2,42080,21368,20712,10239,9734,10210,10146,78,69,393,341,18,12,430,410,10635,10106,10506,10435,153,151,499,432,29,26,19925,19400,9031,8611,10077,10043,42,31,387,333,3,1,385,381,9387,8957,10348,10312,102,101,484,420,12,10,1443,1312,1208,1123,133,103,36,38,6,8,15,11,45,29,1248,1149,158,123,51,50,15,12,17,16 -050,01,073,Alabama,Jefferson County,5,3,42293,21405,20888,9892,9680,10744,10483,77,71,305,297,15,7,372,350,10216,9990,10983,10712,168,153,397,392,26,18,20477,19990,9119,8932,10668,10386,43,41,303,296,6,3,338,332,9419,9226,10889,10607,117,118,389,386,13,12,928,898,773,748,76,97,34,30,2,1,9,4,34,18,797,764,94,105,51,35,8,6,13,6 -050,01,073,Alabama,Jefferson County,5,4,41892,21263,20629,10164,9766,10489,10254,55,52,278,276,12,11,265,270,10397,9997,10645,10419,141,132,345,344,19,21,20447,19916,9475,9158,10410,10177,37,42,277,275,7,7,241,257,9689,9378,10557,10334,114,116,335,342,12,15,816,713,689,608,79,77,18,10,1,1,5,4,24,13,708,619,88,85,27,16,10,2,7,6 -050,01,073,Alabama,Jefferson County,5,5,45185,21881,23304,10851,11107,10312,11317,108,95,353,454,20,14,237,317,11046,11364,10437,11486,199,206,419,557,30,31,20552,22430,9762,10378,10181,11226,43,69,351,453,10,4,205,300,9929,10623,10290,11387,117,171,411,554,18,18,1329,874,1089,729,131,91,65,26,2,1,10,10,32,17,1117,741,147,99,82,35,8,3,12,13 -050,01,073,Alabama,Jefferson County,5,6,48185,22779,25406,13020,13041,8948,11403,91,103,446,566,42,26,232,267,13209,13259,9054,11535,188,200,528,654,54,40,21099,24203,11599,12043,8836,11296,25,60,445,558,7,7,187,239,11749,12238,8920,11412,103,145,514,642,13,18,1680,1203,1421,998,112,107,66,43,1,8,35,19,45,28,1460,1021,134,123,85,55,14,12,41,22 -050,01,073,Alabama,Jefferson County,5,7,46240,22020,24220,12469,12057,8704,11267,124,95,499,556,25,18,199,227,12631,12246,8784,11368,217,186,569,638,33,30,20389,23059,11087,11058,8584,11170,49,56,495,550,11,11,163,214,11220,11234,8649,11264,121,141,557,630,14,21,1631,1161,1382,999,120,97,75,39,4,6,14,7,36,13,1411,1012,135,104,96,45,12,8,19,9 -050,01,073,Alabama,Jefferson County,5,8,40914,19540,21374,11044,10711,7724,9885,92,78,503,530,18,8,159,162,11174,10837,7781,9955,177,160,550,582,28,18,18267,20467,9964,9936,7615,9804,52,54,497,528,4,4,135,141,10075,10044,7660,9863,123,130,541,575,11,9,1273,907,1080,775,109,81,40,24,6,2,14,4,24,21,1099,793,121,92,54,30,9,7,17,9 -050,01,073,Alabama,Jefferson County,5,9,42149,20375,21774,11937,11329,7774,9749,72,70,459,474,10,7,123,145,12040,11444,7818,9801,145,158,487,511,18,18,19418,21143,11116,10792,7692,9676,49,59,455,474,3,5,103,137,11204,10899,7727,9726,112,142,478,511,10,15,957,631,821,537,82,73,23,11,4,0,7,2,20,8,836,545,91,75,33,16,9,0,8,3 -050,01,073,Alabama,Jefferson County,5,10,42856,20323,22533,11778,11876,7972,10087,73,66,351,365,5,4,144,135,11896,11982,8012,10139,173,149,384,399,14,14,19699,22100,11253,11511,7915,10032,53,65,347,364,3,1,128,127,11359,11611,7949,10079,142,146,379,397,7,9,624,433,525,365,57,55,20,1,4,1,2,3,16,8,537,371,63,60,31,3,5,2,7,5 -050,01,073,Alabama,Jefferson County,5,11,47468,22227,25241,12934,13436,8791,11284,67,65,274,294,4,14,157,148,13066,13553,8832,11331,182,166,308,330,11,20,21776,24811,12552,13062,8741,11248,57,59,273,292,3,13,150,137,12679,13171,8780,11291,168,155,305,324,9,17,451,430,382,374,50,36,10,6,1,2,1,1,7,11,387,382,52,40,14,11,3,6,2,3 -050,01,073,Alabama,Jefferson County,5,12,46256,21482,24774,12541,13359,8564,10996,67,70,175,221,5,3,130,125,12642,13455,8601,11038,162,162,206,246,9,7,21115,24528,12256,13156,8500,10961,57,67,174,221,3,3,125,120,12353,13247,8536,11002,149,156,204,245,6,7,367,246,285,203,64,35,10,3,1,0,2,0,5,5,289,208,65,36,13,6,2,1,3,0 -050,01,073,Alabama,Jefferson County,5,13,39222,18140,21082,10985,11940,6832,8777,58,47,168,194,4,1,93,123,11063,12037,6855,8816,130,143,188,213,6,6,17975,20916,10844,11808,6821,8751,48,43,168,192,3,1,91,121,10920,11903,6844,8789,119,138,187,211,5,6,165,166,141,132,11,26,10,4,0,2,1,0,2,2,143,134,11,27,11,5,1,2,1,0 -050,01,073,Alabama,Jefferson County,5,14,27798,12685,15113,8367,9566,4085,5276,39,34,121,138,2,2,71,97,8428,9647,4102,5298,96,112,131,153,6,5,12569,15002,8268,9475,4075,5264,37,31,120,135,2,1,67,96,8326,9555,4090,5286,93,108,128,150,6,4,116,111,99,91,10,12,2,3,1,3,0,1,4,1,102,92,12,12,3,4,3,3,0,1 -050,01,073,Alabama,Jefferson County,5,15,20157,8626,11531,5889,7544,2585,3821,24,32,83,82,0,1,45,51,5927,7577,2594,3838,56,70,93,94,2,6,8569,11458,5852,7483,2573,3812,20,29,81,82,0,1,43,51,5890,7516,2580,3829,52,67,89,94,2,6,57,73,37,61,12,9,4,3,2,0,0,0,2,0,37,61,14,9,4,3,4,0,0,0 -050,01,073,Alabama,Jefferson County,5,16,15476,6117,9359,4274,6229,1753,3020,14,15,41,47,1,0,34,48,4299,6264,1765,3034,45,54,42,56,2,5,6080,9297,4241,6184,1749,3007,14,13,41,47,1,0,34,46,4266,6218,1761,3019,45,52,42,55,2,4,37,62,33,45,4,13,0,2,0,0,0,0,0,2,33,46,4,15,0,2,0,1,0,1 -050,01,073,Alabama,Jefferson County,5,17,12999,4670,8329,3521,5891,1124,2362,5,12,14,33,1,1,5,30,3525,5915,1125,2369,9,34,15,41,1,5,4635,8283,3493,5852,1120,2360,2,12,14,33,1,0,5,26,3497,5873,1121,2366,6,34,15,37,1,1,35,46,28,39,4,2,3,0,0,0,0,1,0,4,28,42,4,3,3,0,0,4,0,4 -050,01,073,Alabama,Jefferson County,5,18,13202,4079,9123,3097,6479,948,2559,8,15,12,13,1,1,13,56,3107,6523,953,2580,18,63,15,20,2,2,4048,9079,3072,6441,946,2553,5,15,11,13,1,1,13,56,3082,6485,951,2574,15,63,14,20,2,2,31,44,25,38,2,6,3,0,1,0,0,0,0,0,25,38,2,6,3,0,1,0,0,0 -050,01,073,Alabama,Jefferson County,6,0,659434,312342,347092,173350,183000,129331,153879,1063,1049,4921,5358,201,152,3476,3654,176347,186099,131166,155847,2372,2445,5832,6311,343,286,299157,336217,162146,173752,128240,152865,646,781,4884,5313,88,83,3153,3423,164879,176657,129908,154711,1798,2084,5725,6215,200,194,13185,10875,11204,9248,1091,1014,417,268,37,45,113,69,323,231,11468,9442,1258,1136,574,361,107,96,143,92 -050,01,073,Alabama,Jefferson County,6,1,43355,22314,21041,10835,10060,10388,9903,66,55,348,400,19,16,658,607,11437,10620,10863,10345,167,142,511,540,40,30,20700,19508,9397,8699,10316,9819,18,21,344,396,9,11,616,562,9964,9218,10766,10238,103,94,496,524,24,22,1614,1533,1438,1361,72,84,48,34,4,4,10,5,42,45,1473,1402,97,107,64,48,15,16,16,8 -050,01,073,Alabama,Jefferson County,6,2,42681,21673,21008,10320,9819,10428,10325,85,78,373,339,14,12,453,435,10731,10214,10742,10635,168,156,490,446,26,24,20156,19571,9045,8605,10282,10201,47,29,371,333,3,0,408,403,9420,8975,10571,10490,114,98,477,430,11,9,1517,1437,1275,1214,146,124,38,49,2,6,11,12,45,32,1311,1239,171,145,54,58,13,16,15,15 -050,01,073,Alabama,Jefferson County,6,3,41939,21141,20798,9770,9662,10548,10392,75,69,317,306,18,8,413,361,10144,9984,10816,10628,171,150,426,398,26,20,20194,19852,8982,8863,10461,10300,45,43,315,306,10,2,381,338,9328,9163,10711,10525,128,117,417,393,18,12,947,946,788,799,87,92,30,26,2,0,8,6,32,23,816,821,105,103,43,33,9,5,8,8 -050,01,073,Alabama,Jefferson County,6,4,41587,21034,20553,10140,9849,10265,10044,53,53,297,299,9,8,270,300,10382,10111,10424,10226,135,139,370,378,18,20,20233,19844,9452,9254,10196,9963,37,43,296,298,4,4,248,282,9674,9500,10345,10134,108,122,362,372,13,14,801,709,688,595,69,81,16,10,1,1,5,4,22,18,708,611,79,92,27,17,8,6,5,6 -050,01,073,Alabama,Jefferson County,6,5,45386,22209,23177,10729,10826,10727,11517,97,93,386,428,20,18,250,295,10935,11069,10860,11677,187,192,458,520,28,31,21088,22393,9815,10168,10606,11435,49,74,384,424,9,10,225,282,10002,10404,10727,11587,128,168,451,514,14,19,1121,784,914,658,121,82,48,19,2,4,11,8,25,13,933,665,133,90,59,24,7,6,14,12 -050,01,073,Alabama,Jefferson County,6,6,47970,22726,25244,12847,12900,9128,11413,65,91,428,552,40,22,218,266,13016,13120,9233,11548,157,187,501,642,50,33,21256,24147,11583,11965,9018,11323,31,57,425,549,15,11,184,242,11728,12166,9103,11445,108,141,490,636,22,20,1470,1097,1264,935,110,90,34,34,3,3,25,11,34,24,1288,954,130,103,49,46,11,6,28,13 -050,01,073,Alabama,Jefferson County,6,7,46429,22146,24283,12392,11982,8859,11375,117,98,529,553,23,28,226,247,12583,12190,8946,11487,221,199,605,635,34,38,20554,23150,11038,11038,8764,11263,37,56,528,548,9,18,178,227,11185,11227,8830,11364,115,146,597,629,16,27,1592,1133,1354,944,95,112,80,42,1,5,14,10,48,20,1398,963,116,123,106,53,8,6,18,11 -050,01,073,Alabama,Jefferson County,6,8,41345,19771,21574,11168,10738,7855,10050,99,72,485,528,19,11,145,175,11288,10877,7908,10123,177,164,533,585,28,18,18559,20693,10141,9984,7754,9971,52,58,480,520,6,5,126,155,10246,10107,7795,10035,117,142,524,572,13,9,1212,881,1027,754,101,79,47,14,5,8,13,6,19,20,1042,770,113,88,60,22,9,13,15,9 -050,01,073,Alabama,Jefferson County,6,9,42254,20357,21897,11790,11307,7874,9846,77,68,463,514,10,6,143,156,11905,11432,7924,9905,160,162,501,557,23,11,19395,21194,10960,10712,7799,9768,52,56,456,509,5,4,123,145,11062,10828,7841,9825,122,142,491,550,13,8,962,703,830,595,75,78,25,12,7,5,5,2,20,11,843,604,83,80,38,20,10,7,10,3 -050,01,073,Alabama,Jefferson County,6,10,41535,19713,21822,11363,11424,7797,9823,61,71,347,373,6,4,139,127,11480,11520,7835,9870,153,148,378,407,11,12,19102,21370,10850,11038,7734,9769,47,65,345,371,2,2,124,125,10955,11132,7766,9816,130,142,372,404,6,9,611,452,513,386,63,54,14,6,2,2,4,2,15,2,525,388,69,54,23,6,6,3,5,3 -050,01,073,Alabama,Jefferson County,6,11,46672,21964,24708,12788,13096,8649,11071,55,69,316,308,4,8,152,156,12912,13217,8688,11124,162,177,351,345,12,15,21475,24298,12368,12737,8601,11038,46,66,313,307,2,7,145,143,12487,12847,8637,11085,147,165,345,342,9,13,489,410,420,359,48,33,9,3,3,1,2,1,7,13,425,370,51,39,15,12,6,3,3,2 -050,01,073,Alabama,Jefferson County,6,12,46469,21567,24902,12527,13242,8658,11245,57,75,178,209,8,6,139,125,12634,13338,8701,11288,153,164,211,236,16,10,21188,24634,12223,13022,8599,11206,53,68,177,208,4,6,132,124,12324,13117,8639,11249,145,156,210,235,11,10,379,268,304,220,59,39,4,7,1,1,4,0,7,1,310,221,62,39,8,8,1,1,5,0 -050,01,073,Alabama,Jefferson County,6,13,40060,18472,21588,11065,11994,7068,9220,67,38,166,211,5,0,101,125,11147,12088,7094,9262,142,134,185,231,12,4,18286,21429,10905,11859,7057,9201,55,36,166,210,4,0,99,123,10985,11951,7082,9242,129,131,185,230,11,4,186,159,160,135,11,19,12,2,0,1,1,0,2,2,162,137,12,20,13,3,0,1,1,0 -050,01,073,Alabama,Jefferson County,6,14,29262,13336,15926,8610,9877,4493,5757,37,43,121,150,3,3,72,96,8667,9956,4512,5779,92,117,130,167,10,7,13213,15795,8505,9769,4480,5742,34,39,121,148,3,2,70,95,8560,9847,4497,5764,88,112,130,165,10,6,123,131,105,108,13,15,3,4,0,2,0,1,2,1,107,109,15,15,4,5,0,2,0,1 -050,01,073,Alabama,Jefferson County,6,15,20937,9008,11929,6131,7804,2712,3945,25,34,94,87,0,1,46,58,6174,7850,2724,3958,60,81,99,99,2,3,8940,11847,6083,7739,2701,3935,22,29,91,85,0,1,43,58,6123,7785,2712,3948,55,76,96,97,2,3,68,82,48,65,11,10,3,5,3,2,0,0,3,0,51,65,12,10,5,5,3,2,0,0 -050,01,073,Alabama,Jefferson County,6,16,15689,6214,9475,4312,6271,1803,3089,14,16,49,57,1,0,35,42,4336,6298,1812,3104,43,47,55,66,3,5,6181,9414,4285,6229,1797,3074,14,15,49,57,1,0,35,39,4309,6255,1806,3086,43,46,55,64,3,5,33,61,27,42,6,15,0,1,0,0,0,0,0,3,27,43,6,18,0,1,0,2,0,0 -050,01,073,Alabama,Jefferson County,6,17,12516,4587,7929,3434,5585,1128,2279,5,11,14,27,1,1,5,26,3438,5608,1129,2282,8,28,16,35,3,4,4556,7889,3408,5548,1125,2277,3,11,14,27,1,0,5,26,3412,5571,1126,2280,6,28,16,35,3,3,31,40,26,37,3,2,2,0,0,0,0,1,0,0,26,37,3,2,2,0,0,0,0,1 -050,01,073,Alabama,Jefferson County,6,18,13348,4110,9238,3129,6564,951,2585,8,15,10,17,1,0,11,57,3138,6607,955,2606,16,58,12,24,1,1,4081,9189,3106,6523,950,2580,4,15,9,17,1,0,11,54,3115,6564,954,2598,12,58,11,23,1,1,29,49,23,41,1,5,4,0,1,0,0,0,0,3,23,43,1,8,4,0,1,1,0,0 -050,01,073,Alabama,Jefferson County,7,0,660185,312577,347608,172964,182596,129860,154507,1021,1019,4956,5475,190,167,3586,3844,176048,185845,131758,156606,2353,2454,5916,6474,314,319,299604,336719,161849,173245,128801,153527,663,788,4925,5430,78,95,3288,3634,164690,176324,130547,155521,1858,2134,5817,6379,173,220,12973,10889,11115,9351,1059,980,358,231,31,45,112,72,298,210,11358,9521,1211,1085,495,320,99,95,141,99 -050,01,073,Alabama,Jefferson County,7,1,43101,22173,20928,10833,10096,10229,9760,41,39,341,393,14,17,715,623,11487,10666,10736,10219,147,132,514,541,39,34,20567,19436,9384,8747,10154,9693,15,16,334,388,9,10,671,582,10005,9282,10635,10128,103,93,500,522,28,24,1606,1492,1449,1349,75,67,26,23,7,5,5,7,44,41,1482,1384,101,91,44,39,14,19,11,10 -050,01,073,Alabama,Jefferson County,7,2,42890,21825,21065,10373,9776,10528,10352,82,86,350,335,13,11,479,505,10808,10236,10862,10707,167,172,478,453,25,28,20291,19589,9088,8510,10379,10236,42,38,349,334,1,2,432,469,9484,8938,10686,10571,110,114,465,445,11,12,1534,1476,1285,1266,149,116,40,48,1,1,12,9,47,36,1324,1298,176,136,57,58,13,8,14,16 -050,01,073,Alabama,Jefferson County,7,3,41640,20940,20700,9730,9613,10401,10319,75,52,318,335,17,6,399,375,10082,9943,10660,10565,168,132,424,435,29,21,19927,19700,8881,8752,10315,10226,44,33,315,332,4,1,368,356,9207,9066,10558,10464,125,106,416,427,11,13,1013,1000,849,861,86,93,31,19,3,3,13,5,31,19,875,877,102,101,43,26,8,8,18,8 -050,01,073,Alabama,Jefferson County,7,4,41264,20819,20445,10089,9825,10043,9898,54,66,314,308,10,16,309,332,10361,10116,10226,10103,142,160,392,396,23,26,20017,19724,9400,9219,9972,9821,43,52,313,308,8,12,281,312,9648,9494,10145,10016,118,137,381,393,19,19,802,721,689,606,71,77,11,14,1,0,2,4,28,20,713,622,81,87,24,23,11,3,4,7 -050,01,073,Alabama,Jefferson County,7,5,44849,22106,22743,10668,10645,10694,11280,86,80,376,406,15,30,267,302,10893,10896,10839,11449,182,176,458,502,23,44,21091,22015,9829,10040,10581,11190,55,68,374,399,5,23,247,295,10037,10285,10715,11355,142,161,452,495,12,36,1015,728,839,605,113,90,31,12,2,7,10,7,20,7,856,611,124,94,40,15,6,7,11,8 -050,01,073,Alabama,Jefferson County,7,6,48408,22921,25487,12651,12903,9496,11637,81,99,452,549,39,21,202,278,12813,13129,9590,11776,168,199,526,641,44,33,21552,24414,11481,11989,9376,11543,42,65,451,548,17,8,185,261,11631,12203,9460,11674,118,155,520,637,20,19,1369,1073,1170,914,120,94,39,34,1,1,22,13,17,17,1182,926,130,102,50,44,6,4,24,14 -050,01,073,Alabama,Jefferson County,7,7,46463,22217,24246,12507,12049,8843,11277,92,94,525,542,23,21,227,263,12693,12268,8933,11385,195,200,604,638,31,34,20686,23248,11182,11197,8761,11185,34,67,525,540,4,9,180,250,11329,11405,8829,11289,110,168,595,633,8,19,1531,998,1325,852,82,92,58,27,0,2,19,12,47,13,1364,863,104,96,85,32,9,5,23,15 -050,01,073,Alabama,Jefferson County,7,8,41944,19885,22059,11184,10925,7981,10304,97,77,450,537,18,14,155,202,11314,11087,8032,10390,177,181,502,598,24,24,18718,21133,10173,10138,7900,10225,51,60,447,527,7,7,140,176,10290,10279,7944,10297,123,152,495,582,12,14,1167,926,1011,787,81,79,46,17,3,10,11,7,15,26,1024,808,88,93,54,29,7,16,12,10 -050,01,073,Alabama,Jefferson County,7,9,41752,20078,21674,11552,11040,7812,9888,79,65,481,526,8,6,146,149,11671,11156,7865,9946,165,157,523,566,11,13,19152,20910,10747,10393,7742,9802,49,52,477,518,6,4,131,141,10853,10504,7787,9857,129,136,515,558,8,10,926,764,805,647,70,86,30,13,4,8,2,2,15,8,818,652,78,89,36,21,8,8,3,3 -050,01,073,Alabama,Jefferson County,7,10,40595,19254,21341,11053,11146,7637,9610,62,73,357,376,8,4,137,132,11165,11249,7674,9658,153,153,389,412,15,9,18606,20875,10509,10735,7566,9561,49,70,357,375,0,2,125,132,10613,10838,7598,9609,135,150,385,411,5,7,648,466,544,411,71,49,13,3,0,1,8,2,12,0,552,411,76,49,18,3,4,1,10,2 -050,01,073,Alabama,Jefferson County,7,11,45851,21638,24213,12626,12868,8486,10770,55,67,335,347,5,7,131,154,12732,12984,8520,10824,151,164,362,384,13,16,21141,23801,12194,12522,8442,10724,48,63,331,346,3,5,123,141,12294,12630,8474,10773,139,154,356,378,8,12,497,412,432,346,44,46,7,4,4,1,2,2,8,13,438,354,46,51,12,10,6,6,5,4 -050,01,073,Alabama,Jefferson County,7,12,46464,21506,24958,12410,13160,8685,11349,57,73,202,241,8,8,144,127,12523,13257,8724,11393,160,164,241,266,13,16,21135,24674,12102,12911,8636,11324,54,65,201,240,3,8,139,126,12211,13007,8672,11368,155,155,238,265,8,16,371,284,308,249,49,25,3,8,1,1,5,0,5,1,312,250,52,25,5,9,3,1,5,0 -050,01,073,Alabama,Jefferson County,7,13,40809,18764,22045,11186,12099,7256,9562,63,33,161,225,3,0,95,126,11265,12198,7282,9606,134,131,181,243,4,3,18551,21869,11006,11946,7236,9542,53,32,161,224,3,0,92,125,11082,12044,7260,9585,123,130,181,242,4,3,213,176,180,153,20,20,10,1,0,1,0,0,3,1,183,154,22,21,11,1,0,1,0,0 -050,01,073,Alabama,Jefferson County,7,14,31042,14184,16858,8982,10254,4952,6320,39,37,122,148,5,1,84,98,9044,10333,4974,6345,106,114,135,165,11,5,14064,16716,8880,10135,4941,6302,34,35,122,147,4,1,83,96,8941,10212,4962,6327,101,111,135,163,10,5,120,142,102,119,11,18,5,2,0,1,1,0,1,2,103,121,12,18,5,3,0,2,1,0 -050,01,073,Alabama,Jefferson County,7,15,21654,9373,12281,6334,7910,2869,4159,29,35,94,107,1,2,46,68,6374,7960,2879,4179,66,89,102,120,4,6,9298,12200,6275,7845,2862,4151,27,31,91,104,1,1,42,68,6311,7895,2870,4171,62,85,99,117,4,5,75,81,59,65,7,8,2,4,3,3,0,1,4,0,63,65,9,8,4,4,3,3,0,1 -050,01,073,Alabama,Jefferson County,7,16,15814,6283,9531,4377,6300,1799,3124,15,15,56,57,1,1,35,34,4403,6324,1809,3137,46,44,59,60,2,2,6257,9465,4359,6248,1792,3112,15,14,56,57,1,1,34,33,4384,6272,1802,3124,45,43,59,59,2,2,26,66,18,52,7,12,0,1,0,0,0,0,1,1,19,52,7,13,1,1,0,1,0,0 -050,01,073,Alabama,Jefferson County,7,17,12089,4459,7630,3288,5315,1143,2254,6,11,14,27,1,2,7,21,3294,5330,1145,2260,11,26,16,32,2,4,4430,7591,3263,5284,1140,2250,5,10,14,27,1,1,7,19,3269,5297,1142,2255,10,25,16,31,2,3,29,39,25,31,3,4,1,1,0,0,0,1,0,2,25,33,3,5,1,1,0,1,0,1 -050,01,073,Alabama,Jefferson County,7,18,13556,4152,9404,3121,6672,1006,2644,8,17,8,16,1,0,8,55,3126,6713,1008,2664,15,60,10,22,1,1,4121,9359,3096,6634,1006,2640,3,17,7,16,1,0,8,52,3101,6673,1008,2658,10,59,9,21,1,1,31,45,25,38,0,4,5,0,1,0,0,0,0,3,25,40,0,6,5,1,1,1,0,0 -050,01,073,Alabama,Jefferson County,8,0,660717,312654,348063,172188,182056,130567,155219,961,1012,5084,5612,174,172,3680,3992,175378,185453,132543,157400,2278,2456,6050,6687,294,309,299665,336961,160973,172513,129509,154214,648,772,5052,5574,69,106,3414,3782,163940,175741,131359,156293,1840,2127,5965,6587,164,220,12989,11102,11215,9543,1058,1005,313,240,32,38,105,66,266,210,11438,9712,1184,1107,438,329,85,100,130,89 -050,01,073,Alabama,Jefferson County,8,1,43181,22128,21053,10868,10259,10118,9697,24,42,350,389,15,9,753,657,11561,10855,10661,10186,131,131,540,538,36,21,20507,19545,9401,8883,10035,9637,12,12,342,383,7,8,710,622,10061,9453,10552,10101,102,90,524,523,25,19,1621,1508,1467,1376,83,60,12,30,8,6,8,1,43,35,1500,1402,109,85,29,41,16,15,11,2 -050,01,073,Alabama,Jefferson County,8,2,42995,21930,21065,10347,9718,10664,10352,72,86,338,363,10,13,499,533,10804,10201,11019,10723,163,181,457,487,21,33,20355,19529,9005,8406,10521,10227,35,36,336,361,2,3,456,496,9425,8859,10851,10580,107,117,448,476,11,16,1575,1536,1342,1312,143,125,37,50,2,2,8,10,43,37,1379,1342,168,143,56,64,9,11,10,17 -050,01,073,Alabama,Jefferson County,8,3,41197,20741,20456,9762,9538,10185,10119,64,45,324,342,12,6,394,406,10113,9902,10442,10382,149,130,428,460,22,20,19624,19382,8810,8617,10091,10011,39,31,321,337,2,0,361,386,9134,8965,10331,10263,113,108,416,448,7,12,1117,1074,952,921,94,108,25,14,3,5,10,6,33,20,979,937,111,119,36,22,12,12,15,8 -050,01,073,Alabama,Jefferson County,8,4,41588,20858,20730,10076,9971,10043,9998,66,62,321,333,8,24,344,342,10385,10273,10249,10211,166,156,402,427,17,32,19996,19960,9336,9312,9971,9926,50,45,320,332,5,21,314,324,9620,9599,10167,10134,136,130,393,421,11,27,862,770,740,659,72,72,16,17,1,1,3,3,30,18,765,674,82,77,30,26,9,6,6,5 -050,01,073,Alabama,Jefferson County,8,5,44075,21646,22429,10386,10611,10495,11030,83,70,406,373,10,39,266,306,10612,10868,10644,11202,177,169,483,470,18,51,20691,21706,9584,10029,10392,10929,58,53,405,369,2,33,250,293,9795,10277,10532,11093,145,146,480,463,9,44,955,723,802,582,103,101,25,17,1,4,8,6,16,13,817,591,112,109,32,23,3,7,9,7 -050,01,073,Alabama,Jefferson County,8,6,48866,23261,25605,12630,12886,9861,11789,91,97,445,540,31,12,203,281,12791,13117,9952,11935,169,190,521,637,39,27,21876,24568,11433,11998,9747,11686,47,72,443,540,14,7,192,265,11584,12215,9833,11823,120,158,516,631,21,18,1385,1037,1197,888,114,103,44,25,2,0,17,5,11,16,1207,902,119,112,49,32,5,6,18,9 -050,01,073,Alabama,Jefferson County,8,7,46106,21965,24141,12394,12059,8723,11152,74,96,533,531,22,29,219,274,12570,12294,8806,11268,167,202,615,629,33,40,20668,23173,11257,11247,8647,11064,42,64,533,530,6,8,183,260,11404,11468,8715,11173,115,165,608,626,13,19,1297,968,1137,812,76,88,32,32,0,1,16,21,36,14,1166,826,91,95,52,37,7,3,20,21 -050,01,073,Alabama,Jefferson County,8,8,42750,20250,22500,11224,10983,8309,10647,92,81,443,562,18,14,164,213,11357,11155,8361,10733,178,188,497,636,27,22,19094,21599,10232,10214,8220,10570,42,60,440,555,6,8,154,192,10357,10368,8271,10647,121,159,492,620,12,13,1156,901,992,769,89,77,50,21,3,7,12,6,10,21,1000,787,90,86,57,29,5,16,15,9 -050,01,073,Alabama,Jefferson County,8,9,40862,19663,21199,11172,10714,7797,9741,74,62,463,520,12,7,145,155,11291,10833,7852,9801,155,149,501,568,18,12,18746,20434,10370,10059,7734,9657,45,54,460,514,7,4,130,146,10476,10171,7782,9714,118,137,496,559,12,8,917,765,802,655,63,84,29,8,3,6,5,3,15,9,815,662,70,87,37,12,5,9,6,4 -050,01,073,Alabama,Jefferson County,8,10,40206,19131,21075,11069,10917,7456,9536,49,72,405,414,8,1,144,135,11190,11027,7493,9582,145,152,440,451,15,6,18457,20592,10492,10495,7384,9482,39,68,404,413,0,0,138,134,10609,10604,7419,9528,131,147,437,450,6,5,674,483,577,422,72,54,10,4,1,1,8,1,6,1,581,423,74,54,14,5,3,1,9,1 -050,01,073,Alabama,Jefferson County,8,11,44551,21016,23535,12131,12491,8341,10450,59,65,349,373,6,5,130,151,12239,12609,8374,10497,148,166,376,414,11,12,20514,23117,11701,12131,8291,10407,52,64,345,373,4,3,121,139,11800,12240,8321,10452,136,158,371,409,9,9,502,418,430,360,50,43,7,1,4,0,2,2,9,12,439,369,53,45,12,8,5,5,2,3 -050,01,073,Alabama,Jefferson County,8,12,46348,21458,24890,12354,13024,8685,11400,45,70,221,254,10,7,143,135,12465,13131,8728,11445,143,166,259,283,15,10,21085,24553,12033,12721,8651,11378,42,62,220,254,3,7,136,131,12137,12825,8690,11422,136,154,257,283,8,10,373,337,321,303,34,22,3,8,1,0,7,0,7,4,328,306,38,23,7,12,2,0,7,0 -050,01,073,Alabama,Jefferson County,8,13,41527,19070,22457,11298,12181,7438,9888,70,45,160,225,3,0,101,118,11385,12269,7463,9929,146,136,182,245,3,6,18815,22283,11090,12034,7404,9864,60,43,160,225,3,0,98,117,11174,12121,7428,9905,135,133,181,245,3,6,255,174,208,147,34,24,10,2,0,0,0,0,3,1,211,148,35,24,11,3,1,0,0,0 -050,01,073,Alabama,Jefferson County,8,14,32930,14941,17989,9280,10621,5406,7056,38,38,135,169,5,1,77,104,9340,10700,5429,7086,99,117,146,188,10,5,14828,17833,9187,10493,5392,7037,34,34,135,167,4,1,76,101,9246,10569,5415,7067,94,112,146,184,9,5,113,156,93,128,14,19,4,4,0,2,1,0,1,3,94,131,14,19,5,5,0,4,1,0 -050,01,073,Alabama,Jefferson County,8,15,22132,9623,12509,6449,7996,2994,4277,30,38,101,128,1,2,48,68,6493,8047,3001,4296,69,91,107,141,3,6,9525,12418,6367,7920,2985,4270,27,34,98,125,1,1,47,68,6410,7971,2992,4289,65,87,104,138,3,5,98,91,82,76,9,7,3,4,3,3,0,1,1,0,83,76,9,7,4,4,3,3,0,1 -050,01,073,Alabama,Jefferson County,8,16,15955,6430,9525,4454,6286,1867,3124,11,15,65,57,1,1,32,42,4477,6318,1875,3136,39,48,70,63,3,2,6400,9459,4432,6229,1861,3116,11,14,65,57,1,1,30,42,4454,6261,1868,3128,38,47,70,63,2,2,30,66,22,57,6,8,0,1,0,0,0,0,2,0,23,57,7,8,1,1,0,0,1,0 -050,01,073,Alabama,Jefferson County,8,17,11869,4381,7488,3190,5177,1151,2259,12,10,16,21,0,2,12,19,3197,5191,1158,2265,21,26,16,24,1,3,4359,7436,3171,5136,1149,2254,11,8,16,21,0,1,12,16,3178,5148,1156,2259,20,21,16,24,1,1,22,52,19,41,2,5,1,2,0,0,0,1,0,3,19,43,2,6,1,5,0,0,0,2 -050,01,073,Alabama,Jefferson County,8,18,13579,4162,9417,3104,6624,1034,2704,7,18,9,18,2,0,6,53,3108,6663,1036,2723,13,58,10,26,2,1,4125,9374,3072,6589,1034,2699,2,18,9,18,2,0,6,50,3076,6627,1036,2715,8,58,10,24,2,1,37,43,32,35,0,5,5,0,0,0,0,0,0,3,32,36,0,8,5,0,0,2,0,0 -050,01,073,Alabama,Jefferson County,9,0,660507,312808,347699,171919,181347,130778,155280,951,974,5210,5832,161,194,3789,4072,175222,184821,132832,157537,2266,2417,6246,6918,290,336,299616,336328,160444,171560,129765,154259,637,750,5164,5794,59,122,3547,3843,163555,174846,131689,156390,1843,2099,6146,6830,165,238,13192,11371,11475,9787,1013,1021,314,224,46,38,102,72,242,229,11667,9975,1143,1147,423,318,100,88,125,98 -050,01,073,Alabama,Jefferson County,9,1,42872,21810,21062,10812,10233,9846,9724,32,40,363,396,13,9,744,660,11502,10842,10381,10212,133,127,552,547,35,23,20166,19525,9338,8847,9765,9649,10,10,339,390,5,5,709,624,9998,9424,10280,10117,98,87,519,534,25,15,1644,1537,1474,1386,81,75,22,30,24,6,8,4,35,36,1504,1418,101,95,35,40,33,13,10,8 -050,01,073,Alabama,Jefferson County,9,2,42756,21969,20787,10384,9721,10634,10077,56,69,352,364,15,12,528,544,10865,10216,11015,10459,141,169,486,486,28,31,20359,19236,8989,8394,10507,9953,22,28,348,363,4,4,489,494,9440,8849,10864,10305,93,108,473,477,14,16,1610,1551,1395,1327,127,124,34,41,4,1,11,8,39,50,1425,1367,151,154,48,61,13,9,14,15 -050,01,073,Alabama,Jefferson County,9,3,41004,20712,20292,9791,9533,10074,9956,72,48,343,356,10,10,422,389,10170,9877,10346,10213,164,129,456,465,21,20,19474,19129,8723,8534,9978,9845,46,29,341,350,2,0,384,371,9070,8861,10232,10095,124,103,445,454,10,10,1238,1163,1068,999,96,111,26,19,2,6,8,10,38,18,1100,1016,114,118,40,26,11,11,11,10 -050,01,073,Alabama,Jefferson County,9,4,41561,20805,20756,9958,9887,10091,10069,60,64,332,334,9,25,355,377,10279,10220,10308,10312,155,162,427,436,20,36,19889,19958,9161,9201,10019,9993,47,47,331,332,4,25,327,360,9457,9521,10221,10226,129,136,417,428,14,34,916,798,797,686,72,76,13,17,1,2,5,0,28,17,822,699,87,86,26,26,10,8,6,2 -050,01,073,Alabama,Jefferson County,9,5,43095,21177,21918,10300,10515,10114,10540,59,76,408,403,8,52,288,332,10542,10793,10275,10728,156,185,494,501,20,67,20238,21107,9487,9864,10020,10443,44,53,408,400,2,43,277,304,9720,10123,10175,10612,136,149,493,496,12,53,939,811,813,651,94,97,15,23,0,3,6,9,11,28,822,670,100,116,20,36,1,5,8,14 -050,01,073,Alabama,Jefferson County,9,6,49312,23693,25619,12659,12771,10258,11916,86,82,451,533,27,12,212,305,12828,13020,10361,12077,166,184,528,640,31,24,22382,24684,11536,11982,10136,11809,46,64,449,532,14,8,201,289,11696,12217,10232,11961,122,160,524,635,18,20,1311,935,1123,789,122,107,40,18,2,1,13,4,11,16,1132,803,129,116,44,24,4,5,13,4 -050,01,073,Alabama,Jefferson County,9,7,45992,21870,24122,12322,12064,8702,11116,82,71,532,588,21,29,211,254,12498,12282,8782,11227,173,168,611,688,31,35,20660,23160,11239,11223,8654,11040,53,58,532,588,2,6,180,245,11390,11432,8717,11146,127,151,607,686,9,12,1210,962,1083,841,48,76,29,13,0,0,19,23,31,9,1108,850,65,81,46,17,4,2,22,23 -050,01,073,Alabama,Jefferson County,9,8,43550,20612,22938,11484,11188,8428,10875,92,90,424,562,11,19,173,204,11627,11355,8488,10956,180,188,480,628,20,28,19484,22037,10512,10432,8338,10782,43,59,422,557,5,13,164,194,10649,10590,8394,10858,125,156,477,620,12,19,1128,901,972,756,90,93,49,31,2,5,6,6,9,10,978,765,94,98,55,32,3,8,8,9 -050,01,073,Alabama,Jefferson County,9,9,39589,18958,20631,10684,10319,7585,9560,74,59,456,524,10,5,149,164,10811,10447,7638,9626,159,150,498,570,14,10,17967,19823,9814,9621,7518,9487,40,52,454,514,3,3,138,146,9932,9734,7565,9545,118,132,495,559,7,7,991,808,870,698,67,73,34,7,2,10,7,2,11,18,879,713,73,81,41,18,3,11,7,3 -050,01,073,Alabama,Jefferson County,9,10,40662,19360,21302,11226,11078,7469,9553,56,78,452,436,7,5,150,152,11347,11197,7512,9613,149,165,496,479,15,10,18634,20786,10601,10620,7398,9500,39,75,451,436,2,3,143,152,10719,10739,7437,9560,128,162,494,479,8,8,726,516,625,458,71,53,17,3,1,0,5,2,7,0,628,458,75,53,21,3,2,0,7,2 -050,01,073,Alabama,Jefferson County,9,11,43115,20436,22679,11701,11860,8192,10229,55,64,338,381,8,3,142,142,11819,11978,8229,10271,153,154,373,420,16,13,19928,22280,11261,11526,8146,10175,49,63,334,381,3,1,135,134,11375,11639,8180,10215,143,149,366,415,9,10,508,399,440,334,46,54,6,1,4,0,5,2,7,8,444,339,49,56,10,5,7,5,7,3 -050,01,073,Alabama,Jefferson County,9,12,45912,21265,24647,12212,12975,8612,11183,50,56,246,284,8,5,137,144,12322,13087,8651,11231,143,152,284,316,14,11,20877,24271,11882,12634,8576,11164,44,48,246,284,1,5,128,136,11986,12738,8612,11209,131,141,281,313,7,11,388,376,330,341,36,19,6,8,0,0,7,0,9,8,336,349,39,22,12,11,3,3,7,0 -050,01,073,Alabama,Jefferson County,9,13,42121,19333,22788,11343,12193,7632,10192,72,54,166,230,5,2,115,117,11440,12282,7660,10233,158,138,192,251,9,9,19063,22614,11123,12046,7595,10168,62,53,166,230,4,2,113,115,11218,12134,7622,10207,147,136,192,251,8,8,270,174,220,147,37,24,10,1,0,0,1,0,2,2,222,148,38,26,11,2,0,0,1,1 -050,01,073,Alabama,Jefferson County,9,14,34859,15789,19070,9658,11031,5874,7701,42,40,145,188,5,1,65,109,9708,11116,5894,7732,93,122,155,208,7,6,15663,18922,9550,10911,5863,7682,38,35,144,186,4,1,64,107,9599,10995,5883,7712,89,116,153,205,5,6,126,148,108,120,11,19,4,5,1,2,1,0,1,2,109,121,11,20,4,6,2,3,2,0 -050,01,073,Alabama,Jefferson County,9,15,22499,9862,12637,6568,7962,3108,4423,31,32,101,140,1,2,53,78,6615,8018,3118,4447,71,94,110,154,3,4,9764,12540,6483,7875,3100,4420,29,29,99,138,1,1,52,77,6529,7930,3110,4444,68,90,108,152,3,3,98,97,85,87,8,3,2,3,2,2,0,1,1,1,86,88,8,3,3,4,2,2,0,1 -050,01,073,Alabama,Jefferson County,9,16,16243,6630,9613,4567,6330,1939,3155,14,21,75,69,1,1,34,37,4591,6356,1950,3168,44,52,78,74,3,2,6600,9550,4546,6275,1934,3149,13,19,74,69,1,1,32,37,4570,6301,1943,3162,43,50,76,74,1,2,30,63,21,55,5,6,1,2,1,0,0,0,2,0,21,55,7,6,1,2,2,0,2,0 -050,01,073,Alabama,Jefferson County,9,17,11803,4368,7435,3130,5061,1202,2321,10,10,19,22,0,0,7,21,3135,5079,1204,2325,16,26,19,28,1,3,4345,7360,3108,4997,1201,2315,10,8,19,22,0,0,7,18,3113,5013,1203,2316,16,22,19,26,1,1,23,75,22,64,1,6,0,2,0,0,0,0,0,3,22,66,1,9,0,4,0,2,0,2 -050,01,073,Alabama,Jefferson County,9,18,13562,4159,9403,3120,6626,1018,2690,8,20,7,22,2,2,4,43,3123,6656,1020,2707,12,52,7,27,2,4,4123,9346,3091,6578,1017,2685,2,20,7,22,2,1,4,40,3094,6606,1019,2700,6,51,7,26,2,3,36,57,29,48,1,5,6,0,0,0,0,1,0,3,29,50,1,7,6,1,0,1,0,1 -050,01,073,Alabama,Jefferson County,10,0,659892,311886,348006,170810,180812,130702,155666,954,945,5358,6076,168,191,3894,4316,174201,184510,132835,158079,2254,2443,6411,7249,290,338,298501,336279,159101,170643,129731,154677,647,723,5299,6038,60,119,3663,4079,162301,174147,131747,156967,1864,2124,6293,7150,158,240,13385,11727,11709,10169,971,989,307,222,59,38,108,72,231,237,11900,10363,1088,1112,390,319,118,99,132,98 -050,01,073,Alabama,Jefferson County,10,1,42340,21446,20894,10707,10138,9591,9578,39,32,362,433,17,10,730,703,11381,10784,10121,10091,135,127,543,590,37,30,19723,19306,9161,8701,9506,9507,16,10,331,420,7,4,702,664,9810,9313,10021,9999,103,94,507,568,23,20,1723,1588,1546,1437,85,71,23,22,31,13,10,6,28,39,1571,1471,100,92,32,33,36,22,14,10 -050,01,073,Alabama,Jefferson County,10,2,42537,21893,20644,10331,9660,10526,9956,55,53,360,374,14,10,607,591,10887,10196,10957,10375,154,159,507,507,25,27,20297,19104,8931,8326,10426,9847,20,17,356,370,4,6,560,538,9446,8820,10830,10235,104,105,493,492,12,18,1596,1540,1400,1334,100,109,35,36,4,4,10,4,47,53,1441,1376,127,140,50,54,14,15,13,9 -050,01,073,Alabama,Jefferson County,10,3,41231,20831,20400,9876,9519,10095,10009,67,58,378,371,6,10,409,433,10236,9911,10363,10292,148,149,489,498,22,23,19442,19132,8673,8421,9978,9904,48,33,373,370,0,0,370,404,9004,8788,10225,10174,117,110,473,488,11,11,1389,1268,1203,1098,117,105,19,25,5,1,6,10,39,29,1232,1123,138,118,31,39,16,10,11,12 -050,01,073,Alabama,Jefferson County,10,4,41384,20581,20803,9764,9964,10058,10046,63,59,305,325,13,20,378,389,10098,10308,10289,10300,165,156,407,432,22,29,19634,19925,8933,9217,9999,9952,45,39,303,325,4,18,350,374,9246,9549,10218,10197,133,130,395,426,10,25,947,878,831,747,59,94,18,20,2,0,9,2,28,15,852,759,71,103,32,26,12,6,12,4 -050,01,073,Alabama,Jefferson County,10,5,42266,20633,21633,10094,10519,9789,10155,54,79,390,449,12,48,294,383,10347,10846,9959,10374,144,192,475,570,23,64,19750,20776,9331,9806,9698,10074,41,50,390,447,3,41,287,358,9577,10115,9866,10277,130,154,472,561,13,53,883,857,763,713,91,81,13,29,0,2,9,7,7,25,770,731,93,97,14,38,3,9,10,11 -050,01,073,Alabama,Jefferson County,10,6,49785,23913,25872,12587,12858,10483,12044,85,92,481,550,19,14,258,314,12793,13116,10609,12206,184,200,569,662,29,25,22745,24963,11580,12100,10388,11929,49,71,477,548,11,10,240,305,11772,12352,10508,12088,138,175,562,657,18,19,1168,909,1007,758,95,115,36,21,4,2,8,4,18,9,1021,764,101,118,46,25,7,5,11,6 -050,01,073,Alabama,Jefferson County,10,7,45786,21708,24078,12177,12084,8681,11013,89,69,550,640,28,30,183,242,12331,12292,8752,11124,158,159,624,731,34,41,20520,23156,11117,11270,8620,10950,58,62,550,637,6,11,169,226,11259,11465,8682,11051,123,145,621,723,11,20,1188,922,1060,814,61,63,31,7,0,3,22,19,14,16,1072,827,70,73,35,14,3,8,23,21 -050,01,073,Alabama,Jefferson County,10,8,43804,20710,23094,11501,11176,8476,11030,84,93,461,543,10,17,178,235,11653,11367,8535,11121,171,211,519,619,18,25,19610,22197,10552,10413,8391,10946,42,62,460,540,3,8,162,228,10689,10597,8443,11036,123,176,514,614,10,16,1100,897,949,763,85,84,42,31,1,3,7,9,16,7,964,770,92,85,48,35,5,5,8,9 -050,01,073,Alabama,Jefferson County,10,9,39283,18619,20664,10384,10264,7522,9632,79,50,473,534,12,10,149,174,10506,10404,7577,9702,160,146,519,588,13,19,17592,19845,9474,9546,7455,9566,46,43,470,528,3,5,144,157,9591,9673,7508,9629,126,127,514,580,4,13,1027,819,910,718,67,66,33,7,3,6,9,5,5,17,915,731,69,73,34,19,5,8,9,6 -050,01,073,Alabama,Jefferson County,10,10,40798,19582,21216,11379,10960,7526,9576,50,59,476,455,9,5,142,161,11498,11086,7569,9639,134,149,518,501,16,11,18780,20624,10671,10432,7471,9519,28,57,474,455,4,3,132,158,10785,10555,7507,9582,108,145,514,501,8,8,802,592,708,528,55,57,22,2,2,0,5,2,10,3,713,531,62,57,26,4,4,0,8,3 -050,01,073,Alabama,Jefferson County,10,11,41336,19497,21839,11099,11312,7865,9924,46,64,324,393,6,2,157,144,11229,11427,7906,9971,152,158,364,434,10,7,19005,21439,10677,10974,7813,9869,41,64,321,393,3,1,150,138,10801,11084,7852,9916,144,154,358,431,7,5,492,400,422,338,52,55,5,0,3,0,3,1,7,6,428,343,54,55,8,4,6,3,3,2 -050,01,073,Alabama,Jefferson County,10,12,44990,20829,24161,11950,12761,8427,10908,55,52,256,291,8,7,133,142,12055,12869,8470,10960,145,148,288,326,12,11,20415,23776,11594,12413,8391,10888,46,45,255,291,1,6,128,133,11695,12512,8431,10936,134,137,285,324,5,10,414,385,356,348,36,20,9,7,1,0,7,1,5,9,360,357,39,24,11,11,3,2,7,1 -050,01,073,Alabama,Jefferson County,10,13,42698,19477,23221,11293,12254,7838,10567,55,56,167,228,4,2,120,114,11392,12343,7868,10607,140,140,196,248,11,7,19168,23008,11036,12076,7794,10536,54,53,167,228,2,2,115,113,11130,12164,7821,10575,138,137,195,248,9,7,309,213,257,178,44,31,1,3,0,0,2,0,5,1,262,179,47,32,2,3,1,0,2,0 -050,01,073,Alabama,Jefferson County,10,14,35229,15952,19277,9619,10827,6050,8087,54,40,163,213,6,1,60,109,9667,10910,6066,8118,102,122,170,231,10,8,15810,19135,9497,10704,6041,8074,44,37,163,211,5,1,60,108,9545,10787,6057,8104,92,119,170,229,9,7,142,142,122,123,9,13,10,3,0,2,1,0,0,1,122,123,9,14,10,3,0,2,1,1 -050,01,073,Alabama,Jefferson County,10,15,24367,10766,13601,7133,8558,3439,4785,40,31,99,142,1,2,54,83,7180,8620,3449,4809,86,94,104,160,4,5,10663,13491,7039,8464,3435,4776,38,28,98,140,1,1,52,82,7084,8525,3444,4799,83,91,103,158,4,4,103,110,94,94,4,9,2,3,1,2,0,1,2,1,96,95,5,10,3,3,1,2,0,1 -050,01,073,Alabama,Jefferson County,10,16,16733,6863,9870,4705,6471,2025,3252,20,28,78,75,0,1,35,43,4730,6501,2034,3267,51,62,83,81,1,2,6824,9807,4679,6415,2016,3248,18,25,76,75,0,1,35,43,4704,6445,2025,3263,49,59,81,81,1,2,39,63,26,56,9,4,2,3,2,0,0,0,0,0,26,56,9,4,2,3,2,0,0,0 -050,01,073,Alabama,Jefferson County,10,17,11754,4383,7371,3074,4921,1267,2385,8,8,27,37,1,0,6,20,3080,4938,1267,2391,13,22,28,42,1,2,4359,7308,3051,4872,1266,2377,8,5,27,37,1,0,6,17,3057,4886,1266,2380,13,18,28,41,1,1,24,63,23,49,1,8,0,3,0,0,0,0,0,3,23,52,1,11,0,4,0,1,0,1 -050,01,073,Alabama,Jefferson County,10,18,13571,4203,9368,3137,6566,1044,2719,11,22,8,23,2,2,1,36,3138,6592,1044,2732,12,49,8,29,2,2,4164,9287,3105,6493,1043,2715,5,22,8,23,2,1,1,33,3106,6517,1043,2726,6,48,8,28,2,1,39,81,32,73,1,4,6,0,0,0,0,1,0,3,32,75,1,6,6,1,0,1,0,1 -050,01,073,Alabama,Jefferson County,11,0,659672,311677,347995,170350,180488,130665,155767,916,944,5583,6163,152,179,4011,4454,173829,184311,132868,158293,2231,2453,6675,7363,292,329,298022,335810,158383,169927,129675,154746,611,707,5510,6122,55,116,3788,4192,161676,173526,131770,157132,1842,2105,6545,7262,169,242,13655,12185,11967,10561,990,1021,305,237,73,41,97,63,223,262,12153,10785,1098,1161,389,348,130,101,123,87 -050,01,073,Alabama,Jefferson County,11,1,42251,21498,20753,10766,10175,9534,9382,30,40,422,410,16,6,730,740,11436,10857,10066,9924,133,136,604,585,36,24,19712,19099,9182,8690,9440,9304,7,9,377,397,7,4,699,695,9828,9330,9955,9822,97,91,552,559,23,19,1786,1654,1584,1485,94,78,23,31,45,13,9,2,31,45,1608,1527,111,102,36,45,52,26,13,5 -050,01,073,Alabama,Jefferson County,11,2,42064,21561,20503,10240,9646,10294,9819,40,44,339,371,14,9,634,614,10816,10197,10741,10259,142,156,501,512,32,27,20000,18972,8859,8290,10200,9734,9,17,332,368,4,4,596,559,9404,8801,10625,10138,97,108,485,501,19,15,1561,1531,1381,1356,94,85,31,27,7,3,10,5,38,55,1412,1396,116,121,45,48,16,11,13,12 -050,01,073,Alabama,Jefferson County,11,3,41849,21129,20720,9999,9630,10240,10202,61,69,394,367,10,7,425,445,10378,10028,10518,10495,146,164,505,486,24,22,19609,19291,8694,8421,10103,10070,39,30,391,366,0,1,382,403,9038,8782,10358,10342,110,105,491,479,6,13,1520,1429,1305,1209,137,132,22,39,3,1,10,6,43,42,1340,1246,160,153,36,59,14,7,18,9 -050,01,073,Alabama,Jefferson County,11,4,40938,20369,20569,9745,9895,9841,9870,68,50,315,325,9,19,391,410,10091,10255,10081,10135,162,144,422,439,21,32,19323,19647,8826,9104,9774,9774,43,36,312,324,2,14,366,395,9150,9451,10005,10030,128,123,410,435,12,25,1046,922,919,791,67,96,25,14,3,1,7,5,25,15,941,804,76,105,34,21,12,4,9,7 -050,01,073,Alabama,Jefferson County,11,5,41646,20245,21401,9991,10618,9477,9827,65,91,387,447,9,51,316,367,10265,10930,9658,10041,162,198,478,561,17,64,19335,20476,9194,9847,9398,9746,49,53,387,443,4,47,303,340,9455,10136,9575,9943,143,148,473,551,11,59,910,925,797,771,79,81,16,38,0,4,5,4,13,27,810,794,83,98,19,50,5,10,6,5 -050,01,073,Alabama,Jefferson County,11,6,50230,24240,25990,12570,12900,10763,12088,75,90,547,576,10,9,275,327,12793,13173,10895,12262,176,195,649,687,20,23,23159,25107,11629,12159,10669,11975,48,73,545,576,7,8,261,316,11842,12422,10794,12145,143,175,643,684,16,20,1081,883,941,741,94,113,27,17,2,0,3,1,14,11,951,751,101,117,33,20,6,3,4,3 -050,01,073,Alabama,Jefferson County,11,7,45846,21702,24144,12165,12129,8721,11054,70,55,542,626,25,22,179,258,12310,12351,8793,11174,140,147,615,725,31,31,20535,23163,11113,11262,8651,10983,47,45,542,624,5,10,177,239,11256,11466,8723,11093,115,127,615,719,10,18,1167,981,1052,867,70,71,23,10,0,2,20,12,2,19,1054,885,70,81,25,20,0,6,21,13 -050,01,073,Alabama,Jefferson County,11,8,43874,20742,23132,11457,11235,8505,10976,95,93,491,559,11,18,183,251,11610,11444,8567,11079,180,216,555,641,22,25,19621,22276,10466,10513,8440,10886,51,67,491,556,4,6,169,248,10608,10719,8495,10986,130,190,552,638,14,13,1121,856,991,722,65,90,44,26,0,3,7,12,14,3,1002,725,72,93,50,26,3,3,8,12 -050,01,073,Alabama,Jefferson County,11,9,39563,18732,20831,10550,10254,7514,9815,75,62,431,512,11,12,151,176,10676,10388,7570,9890,152,162,477,569,17,18,17714,20026,9653,9554,7451,9747,41,52,426,506,2,6,141,161,9769,9677,7503,9816,114,142,471,557,7,10,1018,805,897,700,63,68,34,10,5,6,9,6,10,15,907,711,67,74,38,20,6,12,10,8 -050,01,073,Alabama,Jefferson County,11,10,40550,19407,21143,11191,10857,7493,9584,55,53,506,487,9,5,153,157,11317,10982,7540,9647,146,137,547,533,17,15,18598,20471,10475,10259,7441,9518,31,53,504,485,6,3,141,153,10592,10380,7482,9580,117,134,543,530,11,12,809,672,716,598,52,66,24,0,2,2,3,2,12,4,725,602,58,67,29,3,4,3,6,3 -050,01,073,Alabama,Jefferson County,11,11,39787,18746,21041,10595,10851,7614,9569,35,59,347,407,6,4,149,151,10718,10970,7653,9621,139,153,377,448,12,9,18254,20657,10175,10520,7560,9526,29,58,346,406,2,0,142,147,10292,10636,7596,9577,128,150,376,445,7,5,492,384,420,331,54,43,6,1,1,1,4,4,7,4,426,334,57,44,11,3,1,3,5,4 -050,01,073,Alabama,Jefferson County,11,12,44035,20541,23494,11780,12313,8294,10648,48,47,288,321,6,7,125,158,11878,12439,8332,10706,131,152,315,355,12,10,20106,23101,11410,11971,8247,10617,41,43,285,320,1,5,122,145,11505,12085,8283,10671,123,141,312,350,7,8,435,393,370,342,47,31,7,4,3,1,5,2,3,13,373,354,49,35,8,11,3,5,5,2 -050,01,073,Alabama,Jefferson County,11,13,42746,19401,23345,11133,12248,7909,10688,59,57,176,239,6,4,118,109,11232,12330,7936,10727,142,136,203,257,9,10,19078,23097,10868,12037,7865,10658,57,50,176,239,2,4,110,109,10959,12119,7890,10697,138,129,199,257,5,10,323,248,265,211,44,30,2,7,0,0,4,0,8,0,273,211,46,30,4,7,4,0,4,0 -050,01,073,Alabama,Jefferson County,11,14,36024,16271,19753,9738,10886,6212,8505,58,34,175,220,6,0,82,108,9799,10976,6238,8536,122,118,189,236,10,5,16102,19623,9591,10772,6202,8496,48,30,175,219,5,0,81,106,9652,10860,6227,8527,112,112,188,235,9,5,169,130,147,114,10,9,10,4,0,1,1,0,1,2,147,116,11,9,10,6,1,1,1,0 -050,01,073,Alabama,Jefferson County,11,15,25483,11255,14228,7299,8771,3764,5198,38,36,98,138,1,3,55,82,7343,8835,3780,5223,80,99,106,152,6,4,11153,14094,7207,8655,3757,5185,36,35,98,137,1,2,54,80,7250,8717,3772,5209,78,98,106,150,6,3,102,134,92,116,7,13,2,1,0,1,0,1,1,2,93,118,8,14,2,1,0,2,0,1 -050,01,073,Alabama,Jefferson County,11,16,17375,7157,10218,4904,6656,2121,3393,25,32,75,91,0,1,32,45,4932,6689,2126,3407,49,69,81,97,1,3,7108,10138,4870,6589,2112,3387,22,27,73,89,0,1,31,45,4897,6622,2117,3401,46,64,78,95,1,3,49,80,34,67,9,6,3,5,2,2,0,0,1,0,35,67,9,6,3,5,3,2,0,0 -050,01,073,Alabama,Jefferson County,11,17,12003,4512,7491,3143,4987,1307,2429,8,10,43,44,1,0,10,21,3148,5005,1312,2434,17,22,43,50,2,4,4489,7428,3123,4935,1304,2423,8,8,43,44,1,0,10,18,3128,4950,1309,2427,17,20,43,48,2,2,23,63,20,52,3,6,0,2,0,0,0,0,0,3,20,55,3,7,0,2,0,2,0,2 -050,01,073,Alabama,Jefferson County,11,18,13408,4169,9239,3084,6437,1062,2720,11,22,7,23,2,2,3,35,3087,6462,1062,2733,12,49,8,30,3,3,4126,9144,3048,6349,1061,2717,5,21,7,23,2,1,3,33,3051,6373,1061,2728,6,48,8,29,3,2,43,95,36,88,1,3,6,1,0,0,0,1,0,2,36,89,1,5,6,1,0,1,0,1 -050,01,073,Alabama,Jefferson County,12,0,658539,311069,347470,169520,179649,130646,155884,893,936,5640,6246,162,180,4208,4575,173189,183570,133005,158499,2234,2436,6804,7499,301,342,297174,334924,157329,168777,129651,154838,599,690,5566,6206,65,112,3964,4301,160804,172464,131879,157300,1833,2082,6666,7400,170,248,13895,12546,12191,10872,995,1046,294,246,74,40,97,68,244,274,12385,11106,1126,1199,401,354,138,99,131,94 -050,01,073,Alabama,Jefferson County,12,1,42314,21502,20812,10742,10179,9470,9408,46,56,405,436,29,14,810,719,11483,10840,10059,9947,157,151,610,603,51,32,19684,19084,9176,8664,9352,9303,11,14,362,420,16,10,767,673,9883,9285,9917,9814,105,95,557,578,33,23,1818,1728,1566,1515,118,105,35,42,43,16,13,4,43,46,1600,1555,142,133,52,56,53,25,18,9 -050,01,073,Alabama,Jefferson County,12,2,41630,21289,20341,10115,9647,10140,9667,32,27,330,366,7,12,665,622,10726,10213,10616,10110,129,131,495,518,24,33,19726,18807,8696,8268,10057,9581,12,6,323,362,2,5,636,585,9281,8805,10514,10000,100,96,481,505,15,19,1563,1534,1419,1379,83,86,20,21,7,4,5,7,29,37,1445,1408,102,110,29,35,14,13,9,14 -050,01,073,Alabama,Jefferson County,12,3,41833,21190,20643,10007,9518,10295,10197,60,74,361,350,10,5,457,499,10413,9964,10597,10529,158,176,481,485,26,19,19617,19136,8651,8241,10163,10068,32,33,358,350,0,0,413,444,9029,8638,10439,10372,110,113,468,473,8,10,1573,1507,1356,1277,132,129,28,41,3,0,10,5,44,55,1384,1326,158,157,48,63,13,12,18,9 -050,01,073,Alabama,Jefferson County,12,4,40619,20273,20346,9742,9819,9720,9737,74,41,351,331,9,11,377,407,10083,10175,9953,10001,166,132,454,446,16,27,19131,19347,8743,8955,9634,9641,48,30,349,330,1,5,356,386,9065,9294,9859,9891,130,114,445,441,8,17,1142,999,999,864,86,96,26,11,2,1,8,6,21,21,1018,881,94,110,36,18,9,5,8,10 -050,01,073,Alabama,Jefferson County,12,5,41069,19966,21103,9890,10483,9278,9642,62,88,372,452,8,42,356,396,10198,10821,9485,9879,171,198,477,570,18,59,19013,20197,9062,9720,9202,9571,47,51,370,449,6,38,326,368,9343,10037,9392,9789,143,148,468,564,15,53,953,906,828,763,76,71,15,37,2,3,2,4,30,28,855,784,93,90,28,50,9,6,3,6 -050,01,073,Alabama,Jefferson County,12,6,49558,23958,25600,12382,12727,10646,11850,68,94,560,560,15,20,287,349,12609,13012,10792,12042,171,205,663,672,29,33,22940,24676,11488,11960,10566,11734,54,70,558,560,8,17,266,335,11699,12232,10701,11918,148,176,652,670,19,30,1018,924,894,767,80,116,14,24,2,0,7,3,21,14,910,780,91,124,23,29,11,2,10,3 -050,01,073,Alabama,Jefferson County,12,7,46784,22256,24528,12294,12314,9114,11227,76,73,574,635,18,17,180,262,12443,12542,9187,11352,141,166,646,731,24,22,21094,23565,11251,11473,9041,11146,47,64,572,635,5,5,178,242,11398,11682,9113,11261,111,150,644,726,10,10,1162,963,1043,841,73,81,29,9,2,0,13,12,2,20,1045,860,74,91,30,16,2,5,14,12 -050,01,073,Alabama,Jefferson County,12,8,43688,20620,23068,11480,11278,8361,10884,84,77,478,560,18,17,199,252,11648,11488,8430,10989,174,196,551,645,32,29,19524,22217,10510,10551,8294,10798,54,57,477,557,4,8,185,246,10667,10755,8357,10899,137,175,547,640,16,20,1096,851,970,727,67,86,30,20,1,3,14,9,14,6,981,733,73,90,37,21,4,5,16,9 -050,01,073,Alabama,Jefferson County,12,9,39965,18859,21106,10600,10338,7582,9998,73,61,431,509,9,13,164,187,10736,10489,7645,10074,162,159,481,566,15,18,17840,20304,9694,9638,7535,9935,31,48,428,504,1,8,151,171,9822,9776,7591,10005,115,137,471,556,2,13,1019,802,906,700,47,63,42,13,3,5,8,5,13,16,914,713,54,69,47,22,10,10,13,5 -050,01,073,Alabama,Jefferson County,12,10,39953,19074,20879,10895,10570,7450,9563,54,54,506,515,10,6,159,171,11032,10707,7496,9628,146,139,550,573,16,14,18254,20142,10155,9910,7406,9497,31,53,504,513,8,3,150,166,10285,10043,7449,9560,116,135,547,570,11,11,820,737,740,660,44,66,23,1,2,2,2,3,9,5,747,664,47,68,30,4,3,3,5,3 -050,01,073,Alabama,Jefferson County,12,11,38661,18265,20396,10292,10476,7435,9331,30,53,360,388,5,6,143,142,10406,10591,7477,9380,124,135,398,428,9,9,17732,19991,9842,10120,7366,9293,24,50,360,388,0,0,140,140,9954,10233,7406,9341,116,132,397,428,3,2,533,405,450,356,69,38,6,3,0,0,5,6,3,2,452,358,71,39,8,3,1,0,6,7 -050,01,073,Alabama,Jefferson County,12,12,42909,20012,22897,11460,12001,8076,10330,42,52,315,343,6,4,113,167,11554,12128,8106,10390,119,163,348,384,11,9,19563,22507,11069,11676,8035,10288,36,48,311,342,3,2,109,151,11159,11788,8063,10343,111,148,344,379,8,7,449,390,391,325,41,42,6,4,4,1,3,2,4,16,395,340,43,47,8,15,4,5,3,2 -050,01,073,Alabama,Jefferson County,12,13,42516,19236,23280,10951,12071,7939,10765,51,57,182,269,8,6,105,112,11036,12155,7968,10802,121,137,206,290,11,13,18921,23005,10694,11826,7894,10743,50,50,182,268,2,6,99,112,10773,11910,7921,10780,118,130,204,289,5,13,315,275,257,245,45,22,1,7,0,1,6,0,6,0,263,245,47,22,3,7,2,1,6,0 -050,01,073,Alabama,Jefferson County,12,14,36516,16420,20096,9751,10945,6345,8800,61,29,175,220,4,1,84,101,9819,11021,6370,8830,124,106,190,242,7,7,16220,19950,9579,10816,6329,8786,52,28,175,219,4,1,81,100,9644,10891,6352,8816,113,104,190,241,7,7,200,146,172,129,16,14,9,1,0,1,0,0,3,1,175,130,18,14,11,2,0,1,0,0 -050,01,073,Alabama,Jefferson County,12,15,27168,12040,15128,7657,9168,4178,5705,31,36,113,131,2,1,59,87,7708,9234,4190,5731,78,100,121,147,4,8,11928,14997,7558,9062,4171,5688,28,32,112,130,1,1,58,84,7608,9126,4183,5713,74,95,120,145,3,6,112,131,99,106,7,17,3,4,1,1,1,0,1,3,100,108,7,18,4,5,1,2,1,2 -050,01,073,Alabama,Jefferson County,12,16,17932,7394,10538,5027,6769,2231,3576,31,29,72,108,1,2,32,54,5048,6809,2241,3593,58,72,78,117,4,6,7331,10456,4976,6698,2225,3572,28,25,70,106,1,1,31,54,4997,6738,2234,3589,55,68,76,115,3,5,63,82,51,71,6,4,3,4,2,2,0,1,1,0,51,71,7,4,3,4,2,2,1,1 -050,01,073,Alabama,Jefferson County,12,17,12182,4582,7600,3205,5057,1299,2457,10,17,50,50,1,1,17,18,3217,5069,1305,2463,26,31,50,54,2,2,4565,7540,3192,5007,1295,2450,10,15,50,50,1,1,17,17,3204,5018,1301,2456,26,29,50,53,2,1,17,60,13,50,4,7,0,2,0,0,0,0,0,1,13,51,4,7,0,2,0,1,0,1 -050,01,073,Alabama,Jefferson County,12,18,13242,4133,9109,3030,6289,1087,2747,8,18,5,23,2,2,1,30,3030,6312,1088,2759,9,39,5,28,2,2,4091,9003,2993,6192,1086,2744,4,16,5,23,2,1,1,27,2993,6213,1087,2753,5,37,5,27,2,1,42,106,37,97,1,3,4,2,0,0,0,1,0,3,37,99,1,6,4,2,0,1,0,1 -050,01,073,Alabama,Jefferson County,13,0,655342,309232,346110,167769,178125,130373,155931,877,963,5672,6333,182,190,4359,4568,171569,182043,132841,158532,2223,2467,6876,7595,339,358,295264,333254,155544,167018,129348,154830,579,709,5611,6287,81,102,4101,4308,159131,170713,131682,157291,1823,2101,6760,7498,206,238,13968,12856,12225,11107,1025,1101,298,254,61,46,101,88,258,260,12438,11330,1159,1241,400,366,116,97,133,120 -050,01,073,Alabama,Jefferson County,13,1,41467,21187,20280,10394,9869,9488,9255,62,65,377,412,39,19,827,660,11156,10469,10093,9744,176,152,578,562,68,40,19289,18493,8810,8334,9331,9121,16,18,344,397,21,11,767,612,9520,8892,9896,9585,107,87,536,537,42,26,1898,1787,1584,1535,157,134,46,47,33,15,18,8,60,48,1636,1577,197,159,69,65,42,25,26,14 -050,01,073,Alabama,Jefferson County,13,2,41617,21187,20430,10153,9733,9964,9648,23,38,363,368,6,8,678,635,10778,10315,10447,10106,123,142,536,519,22,22,19629,18927,8733,8363,9879,9584,5,8,353,361,3,1,656,610,9340,8924,10352,10025,97,103,520,505,17,12,1558,1503,1420,1370,85,64,18,30,10,7,3,7,22,25,1438,1391,95,81,26,39,16,14,5,10 -050,01,073,Alabama,Jefferson County,13,3,41727,21143,20584,9909,9442,10335,10194,55,69,339,353,11,13,494,513,10352,9899,10665,10532,139,174,471,496,32,32,19577,19000,8557,8109,10207,10055,26,29,337,352,0,2,450,453,8964,8518,10511,10361,99,108,457,483,14,13,1566,1584,1352,1333,128,139,29,40,2,1,11,11,44,60,1388,1381,154,171,40,66,14,13,18,19 -050,01,073,Alabama,Jefferson County,13,4,40105,20021,20084,9710,9700,9505,9588,75,38,353,341,7,7,371,410,10044,10061,9736,9852,160,127,459,461,15,19,18799,19043,8632,8793,9416,9489,48,32,352,338,1,0,350,391,8947,9138,9639,9743,127,115,450,453,7,11,1222,1041,1078,907,89,99,27,6,1,3,6,7,21,19,1097,923,97,109,33,12,9,8,8,8 -050,01,073,Alabama,Jefferson County,13,5,40973,19774,21199,9747,10499,9208,9686,64,90,370,475,8,35,377,414,10065,10858,9436,9933,167,201,481,605,21,45,18824,20254,8929,9697,9134,9601,44,58,369,472,4,29,344,397,9222,10042,9341,9837,135,160,475,598,14,37,950,945,818,802,74,85,20,32,1,3,4,6,33,17,843,816,95,96,32,41,6,7,7,8 -050,01,073,Alabama,Jefferson County,13,6,48325,23394,24931,12110,12463,10319,11459,65,92,559,544,19,30,322,343,12372,12752,10487,11647,178,197,670,662,25,43,22401,24002,11229,11681,10232,11360,60,66,558,543,12,26,310,326,11479,11953,10394,11541,169,166,667,658,18,37,993,929,881,782,87,99,5,26,1,1,7,4,12,17,893,799,93,106,9,31,3,4,7,6 -050,01,073,Alabama,Jefferson County,13,7,47388,22597,24791,12295,12388,9422,11417,61,65,605,640,17,9,197,272,12465,12615,9502,11551,137,160,685,740,25,19,21465,23837,11299,11564,9338,11317,36,56,602,640,5,4,185,256,11458,11775,9415,11442,106,143,679,738,11,14,1132,954,996,824,84,100,25,9,3,0,12,5,12,16,1007,840,87,109,31,17,6,2,14,5 -050,01,073,Alabama,Jefferson County,13,8,43121,20335,22786,11326,11172,8216,10698,79,74,486,578,17,27,211,237,11501,11361,8284,10798,177,187,559,654,35,39,19323,21904,10413,10423,8167,10612,58,60,484,576,5,9,196,224,10578,10600,8231,10705,147,167,554,652,19,20,1012,882,913,749,49,86,21,14,2,2,12,18,15,13,923,761,53,93,30,20,5,2,16,19 -050,01,073,Alabama,Jefferson County,13,9,40642,19090,21552,10592,10433,7801,10307,87,69,436,521,7,11,167,211,10737,10605,7863,10395,181,179,479,589,14,20,18113,20738,9728,9730,7747,10240,39,51,435,516,4,5,160,196,9868,9890,7804,10319,129,154,478,581,10,13,977,814,864,703,54,67,48,18,1,5,3,6,7,15,869,715,59,76,52,25,1,8,4,7 -050,01,073,Alabama,Jefferson County,13,10,38910,18462,20448,10405,10271,7350,9456,58,53,466,503,21,7,162,158,10539,10397,7400,9521,148,132,514,556,29,17,17638,19701,9670,9607,7314,9390,31,50,464,499,11,3,148,152,9793,9728,7360,9452,112,127,511,549,16,11,824,747,735,664,36,66,27,3,2,4,10,4,14,6,746,669,40,69,36,5,3,7,13,6 -050,01,073,Alabama,Jefferson County,13,11,38154,18057,20097,10264,10254,7227,9223,27,51,387,405,6,7,146,157,10381,10380,7270,9271,121,140,424,454,10,14,17469,19661,9753,9877,7165,9175,22,46,387,405,1,1,141,157,9865,10003,7206,9223,114,135,422,454,5,8,588,436,511,377,62,48,5,5,0,0,5,6,5,0,516,377,64,48,7,5,2,0,5,6 -050,01,073,Alabama,Jefferson County,13,12,41277,19221,22056,10925,11471,7826,10025,37,53,319,357,4,5,110,145,11006,11586,7861,10081,107,147,350,388,10,10,18782,21660,10541,11142,7784,9977,31,52,317,356,2,1,107,132,10620,11244,7818,10026,99,138,347,386,8,5,439,396,384,329,42,48,6,1,2,1,2,4,3,13,386,342,43,55,8,9,3,2,2,5 -050,01,073,Alabama,Jefferson County,13,13,42125,19021,23104,10838,11938,7847,10687,48,64,186,278,9,6,93,131,10916,12039,7871,10733,112,164,207,301,12,16,18669,22797,10540,11660,7808,10672,46,56,186,278,2,6,87,125,10613,11757,7830,10716,106,152,206,301,5,14,352,307,298,278,39,15,2,8,0,0,7,0,6,6,303,282,41,17,6,12,1,0,7,2 -050,01,073,Alabama,Jefferson County,13,14,36989,16636,20353,9772,10939,6529,9068,63,45,175,210,4,1,93,90,9841,11009,6558,9094,128,114,196,226,10,7,16432,20204,9599,10814,6508,9048,55,42,175,210,4,1,91,89,9667,10883,6535,9074,120,110,195,226,10,7,204,149,173,125,21,20,8,3,0,0,0,0,2,1,174,126,23,20,8,4,1,0,0,0 -050,01,073,Alabama,Jefferson County,13,15,28805,12656,16149,7897,9531,4557,6343,24,34,119,150,1,1,58,90,7946,9600,4575,6369,72,106,126,165,3,5,12552,16020,7806,9427,4550,6326,21,30,118,148,0,1,57,88,7854,9494,4568,6352,68,101,125,163,2,4,104,129,91,104,7,17,3,4,1,2,1,0,1,2,92,106,7,17,4,5,1,2,1,1 -050,01,073,Alabama,Jefferson County,13,16,18283,7619,10664,5139,6820,2336,3639,32,31,75,122,1,2,36,50,5163,6859,2346,3651,66,72,81,129,1,4,7532,10570,5066,6739,2329,3633,28,27,73,120,1,1,35,50,5090,6778,2339,3645,61,68,78,127,1,3,87,94,73,81,7,6,4,4,2,2,0,1,1,0,73,81,7,6,5,4,3,2,0,1 -050,01,073,Alabama,Jefferson County,13,17,12251,4688,7563,3268,5007,1352,2458,8,15,46,56,3,0,11,27,3277,5026,1354,2465,18,36,47,63,3,0,4673,7504,3257,4954,1348,2453,8,14,46,56,3,0,11,27,3266,4973,1350,2460,18,35,47,63,3,0,15,59,11,53,4,5,0,1,0,0,0,0,0,0,11,53,4,5,0,1,0,0,0,0 -050,01,073,Alabama,Jefferson County,13,18,13183,4144,9039,3025,6195,1091,2780,9,17,11,20,2,2,6,25,3030,6212,1093,2789,13,37,13,25,4,6,4097,8939,2982,6104,1091,2777,5,14,11,20,2,1,6,23,2987,6121,1093,2785,9,32,13,24,4,3,47,100,43,91,0,3,4,3,0,0,0,1,0,2,43,91,0,4,4,5,0,1,0,3 -050,01,075,Alabama,Lamar County,1,0,14564,7097,7467,6234,6468,760,900,9,15,3,3,1,1,90,80,6312,6541,805,938,56,59,15,8,5,2,6990,7394,6144,6404,747,892,9,15,3,3,1,0,86,80,6218,6477,791,930,53,59,14,8,4,1,107,73,90,64,13,8,0,0,0,0,0,1,4,0,94,64,14,8,3,0,1,0,1,1 -050,01,075,Alabama,Lamar County,1,1,861,442,419,383,347,46,53,2,0,0,0,0,1,11,18,394,365,57,71,2,0,0,0,0,1,429,414,374,343,42,53,2,0,0,0,0,0,11,18,385,361,53,71,2,0,0,0,0,0,13,5,9,4,4,0,0,0,0,0,0,1,0,0,9,4,4,0,0,0,0,0,0,1 -050,01,075,Alabama,Lamar County,1,2,892,453,439,387,382,49,51,0,0,0,0,0,0,17,6,404,385,62,57,1,3,2,0,1,0,446,430,380,375,49,49,0,0,0,0,0,0,17,6,397,378,62,55,1,3,2,0,1,0,7,9,7,7,0,2,0,0,0,0,0,0,0,0,7,7,0,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,3,933,493,440,415,358,68,73,0,0,0,0,0,0,10,9,421,367,77,76,5,4,0,2,0,0,480,434,402,352,68,73,0,0,0,0,0,0,10,9,408,361,77,76,5,4,0,2,0,0,13,6,13,6,0,0,0,0,0,0,0,0,0,0,13,6,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,4,865,416,449,334,364,72,75,1,1,0,0,0,0,9,9,342,373,75,77,7,7,3,1,1,0,407,441,326,357,71,74,1,1,0,0,0,0,9,9,334,366,74,76,7,7,3,1,1,0,9,8,8,7,1,1,0,0,0,0,0,0,0,0,8,7,1,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,5,731,389,342,320,293,65,46,0,3,0,0,0,0,4,0,324,293,66,46,4,3,0,0,0,0,375,334,312,287,61,44,0,3,0,0,0,0,2,0,314,287,62,44,2,3,0,0,0,0,14,8,8,6,4,2,0,0,0,0,0,0,2,0,10,6,4,2,2,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,6,683,335,348,296,294,37,49,0,1,0,0,0,0,2,4,297,297,37,51,2,3,1,0,0,1,330,343,292,289,36,49,0,1,0,0,0,0,2,4,293,292,36,51,2,3,1,0,0,1,5,5,4,5,1,0,0,0,0,0,0,0,0,0,4,5,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,7,783,371,412,333,363,35,48,0,0,0,0,0,0,3,1,336,363,35,49,3,1,0,0,0,0,364,411,327,362,35,48,0,0,0,0,0,0,2,1,329,362,35,49,2,1,0,0,0,0,7,1,6,1,0,0,0,0,0,0,0,0,1,0,7,1,0,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,8,901,427,474,383,409,39,61,0,0,2,0,0,0,3,4,386,413,39,61,1,3,4,1,0,0,420,466,376,401,39,61,0,0,2,0,0,0,3,4,379,405,39,61,1,3,4,1,0,0,7,8,7,8,0,0,0,0,0,0,0,0,0,0,7,8,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,9,913,458,455,403,383,51,69,0,0,0,0,0,0,4,3,406,385,52,71,4,2,0,0,0,0,451,449,397,379,50,67,0,0,0,0,0,0,4,3,400,381,51,69,4,2,0,0,0,0,7,6,6,4,1,2,0,0,0,0,0,0,0,0,6,4,1,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,10,1066,554,512,489,437,57,69,2,0,0,0,1,0,5,6,492,443,60,70,6,6,0,0,1,0,545,509,481,434,56,69,2,0,0,0,1,0,5,6,484,440,59,70,6,6,0,0,1,0,9,3,8,3,1,0,0,0,0,0,0,0,0,0,8,3,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,11,1144,554,590,479,500,68,81,1,4,0,0,0,0,6,5,484,505,70,82,4,8,2,0,2,0,550,587,476,497,68,81,1,4,0,0,0,0,5,5,480,502,69,82,4,8,1,0,1,0,4,3,3,3,0,0,0,0,0,0,0,0,1,0,4,3,1,0,0,0,1,0,1,0 -050,01,075,Alabama,Lamar County,1,12,1046,538,508,486,446,49,52,1,3,0,3,0,0,2,4,488,450,49,52,3,7,0,3,0,0,536,505,484,443,49,52,1,3,0,3,0,0,2,4,486,447,49,52,3,7,0,3,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,13,1014,498,516,453,468,43,45,1,1,1,0,0,0,0,2,453,470,43,45,1,3,1,0,0,0,497,515,452,468,43,44,1,1,1,0,0,0,0,2,452,470,43,44,1,3,1,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,14,799,388,411,356,382,27,26,0,1,0,0,0,0,5,2,361,384,27,26,5,3,0,0,0,0,385,410,354,381,26,26,0,1,0,0,0,0,5,2,359,383,26,26,5,3,0,0,0,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,15,748,341,407,316,363,19,40,1,0,0,0,0,0,5,4,321,367,19,40,6,3,0,1,0,0,337,404,312,360,19,40,1,0,0,0,0,0,5,4,317,364,19,40,6,3,0,1,0,0,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,16,534,233,301,218,280,13,20,0,0,0,0,0,0,2,1,220,280,13,21,0,1,2,0,0,0,232,301,217,280,13,20,0,0,0,0,0,0,2,1,219,280,13,21,0,1,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,17,380,137,243,124,220,11,21,0,1,0,0,0,0,2,1,124,221,13,21,2,2,0,0,0,0,137,241,124,218,11,21,0,1,0,0,0,0,2,1,124,219,13,21,2,2,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,1,18,271,70,201,59,179,11,21,0,0,0,0,0,0,0,1,59,180,11,22,0,0,0,0,0,0,69,200,58,178,11,21,0,0,0,0,0,0,0,1,58,179,11,22,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,0,14564,7097,7467,6234,6468,760,900,9,15,3,3,1,1,90,80,6312,6541,805,938,56,59,15,8,5,2,6990,7394,6144,6404,747,892,9,15,3,3,1,0,86,80,6218,6477,791,930,53,59,14,8,4,1,107,73,90,64,13,8,0,0,0,0,0,1,4,0,94,64,14,8,3,0,1,0,1,1 -050,01,075,Alabama,Lamar County,2,1,861,442,419,383,347,46,53,2,0,0,0,0,1,11,18,394,365,57,71,2,0,0,0,0,1,429,414,374,343,42,53,2,0,0,0,0,0,11,18,385,361,53,71,2,0,0,0,0,0,13,5,9,4,4,0,0,0,0,0,0,1,0,0,9,4,4,0,0,0,0,0,0,1 -050,01,075,Alabama,Lamar County,2,2,892,453,439,387,382,49,51,0,0,0,0,0,0,17,6,404,385,62,57,1,3,2,0,1,0,446,430,380,375,49,49,0,0,0,0,0,0,17,6,397,378,62,55,1,3,2,0,1,0,7,9,7,7,0,2,0,0,0,0,0,0,0,0,7,7,0,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,3,933,493,440,415,358,68,73,0,0,0,0,0,0,10,9,421,367,77,76,5,4,0,2,0,0,480,434,402,352,68,73,0,0,0,0,0,0,10,9,408,361,77,76,5,4,0,2,0,0,13,6,13,6,0,0,0,0,0,0,0,0,0,0,13,6,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,4,865,416,449,334,364,72,75,1,1,0,0,0,0,9,9,342,373,75,77,7,7,3,1,1,0,407,441,326,357,71,74,1,1,0,0,0,0,9,9,334,366,74,76,7,7,3,1,1,0,9,8,8,7,1,1,0,0,0,0,0,0,0,0,8,7,1,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,5,731,389,342,320,293,65,46,0,3,0,0,0,0,4,0,324,293,66,46,4,3,0,0,0,0,375,334,312,287,61,44,0,3,0,0,0,0,2,0,314,287,62,44,2,3,0,0,0,0,14,8,8,6,4,2,0,0,0,0,0,0,2,0,10,6,4,2,2,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,6,683,335,348,296,294,37,49,0,1,0,0,0,0,2,4,297,297,37,51,2,3,1,0,0,1,330,343,292,289,36,49,0,1,0,0,0,0,2,4,293,292,36,51,2,3,1,0,0,1,5,5,4,5,1,0,0,0,0,0,0,0,0,0,4,5,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,7,783,371,412,333,363,35,48,0,0,0,0,0,0,3,1,336,363,35,49,3,1,0,0,0,0,364,411,327,362,35,48,0,0,0,0,0,0,2,1,329,362,35,49,2,1,0,0,0,0,7,1,6,1,0,0,0,0,0,0,0,0,1,0,7,1,0,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,8,901,427,474,383,409,39,61,0,0,2,0,0,0,3,4,386,413,39,61,1,3,4,1,0,0,420,466,376,401,39,61,0,0,2,0,0,0,3,4,379,405,39,61,1,3,4,1,0,0,7,8,7,8,0,0,0,0,0,0,0,0,0,0,7,8,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,9,913,458,455,403,383,51,69,0,0,0,0,0,0,4,3,406,385,52,71,4,2,0,0,0,0,451,449,397,379,50,67,0,0,0,0,0,0,4,3,400,381,51,69,4,2,0,0,0,0,7,6,6,4,1,2,0,0,0,0,0,0,0,0,6,4,1,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,10,1066,554,512,489,437,57,69,2,0,0,0,1,0,5,6,492,443,60,70,6,6,0,0,1,0,545,509,481,434,56,69,2,0,0,0,1,0,5,6,484,440,59,70,6,6,0,0,1,0,9,3,8,3,1,0,0,0,0,0,0,0,0,0,8,3,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,11,1144,554,590,479,500,68,81,1,4,0,0,0,0,6,5,484,505,70,82,4,8,2,0,2,0,550,587,476,497,68,81,1,4,0,0,0,0,5,5,480,502,69,82,4,8,1,0,1,0,4,3,3,3,0,0,0,0,0,0,0,0,1,0,4,3,1,0,0,0,1,0,1,0 -050,01,075,Alabama,Lamar County,2,12,1046,538,508,486,446,49,52,1,3,0,3,0,0,2,4,488,450,49,52,3,7,0,3,0,0,536,505,484,443,49,52,1,3,0,3,0,0,2,4,486,447,49,52,3,7,0,3,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,13,1014,498,516,453,468,43,45,1,1,1,0,0,0,0,2,453,470,43,45,1,3,1,0,0,0,497,515,452,468,43,44,1,1,1,0,0,0,0,2,452,470,43,44,1,3,1,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,14,799,388,411,356,382,27,26,0,1,0,0,0,0,5,2,361,384,27,26,5,3,0,0,0,0,385,410,354,381,26,26,0,1,0,0,0,0,5,2,359,383,26,26,5,3,0,0,0,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,15,748,341,407,316,363,19,40,1,0,0,0,0,0,5,4,321,367,19,40,6,3,0,1,0,0,337,404,312,360,19,40,1,0,0,0,0,0,5,4,317,364,19,40,6,3,0,1,0,0,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,16,534,233,301,218,280,13,20,0,0,0,0,0,0,2,1,220,280,13,21,0,1,2,0,0,0,232,301,217,280,13,20,0,0,0,0,0,0,2,1,219,280,13,21,0,1,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,17,380,137,243,124,220,11,21,0,1,0,0,0,0,2,1,124,221,13,21,2,2,0,0,0,0,137,241,124,218,11,21,0,1,0,0,0,0,2,1,124,219,13,21,2,2,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,2,18,271,70,201,59,179,11,21,0,0,0,0,0,0,0,1,59,180,11,22,0,0,0,0,0,0,69,200,58,178,11,21,0,0,0,0,0,0,0,1,58,179,11,22,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,0,14496,7063,7433,6207,6440,751,895,10,13,3,3,1,1,91,81,6290,6515,796,932,50,47,13,15,6,5,6954,7363,6115,6379,738,887,10,13,3,3,1,0,87,81,6194,6454,779,924,50,47,13,15,6,4,109,70,92,61,13,8,0,0,0,0,0,1,4,0,96,61,17,8,0,0,0,0,0,1 -050,01,075,Alabama,Lamar County,3,1,843,436,407,378,340,44,50,3,0,0,0,0,1,11,16,389,355,53,61,4,4,0,2,1,1,424,402,370,336,40,50,3,0,0,0,0,0,11,16,381,351,49,61,4,4,0,2,1,0,12,5,8,4,4,0,0,0,0,0,0,1,0,0,8,4,4,0,0,0,0,0,0,1 -050,01,075,Alabama,Lamar County,3,2,890,447,443,381,381,49,54,0,0,0,0,0,0,17,8,397,389,60,59,6,0,1,2,0,1,441,435,375,375,49,52,0,0,0,0,0,0,17,8,391,383,60,57,6,0,1,2,0,1,6,8,6,6,0,2,0,0,0,0,0,0,0,0,6,6,0,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,3,928,490,438,415,360,65,68,0,0,0,0,0,0,10,10,424,370,71,74,3,2,1,1,1,1,477,431,402,353,65,68,0,0,0,0,0,0,10,10,411,363,71,74,3,2,1,1,1,1,13,7,13,7,0,0,0,0,0,0,0,0,0,0,13,7,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,4,855,411,444,329,359,72,75,1,1,0,0,0,0,9,9,338,367,77,79,3,5,1,1,1,1,401,436,320,352,71,74,1,1,0,0,0,0,9,9,329,360,76,78,3,5,1,1,1,1,10,8,9,7,1,1,0,0,0,0,0,0,0,0,9,7,1,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,5,744,394,350,323,297,66,51,0,2,0,0,0,0,5,0,327,297,71,51,1,2,0,0,1,0,380,343,315,292,62,49,0,2,0,0,0,0,3,0,317,292,65,49,1,2,0,0,1,0,14,7,8,5,4,2,0,0,0,0,0,0,2,0,10,5,6,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,6,679,333,346,295,293,36,48,0,1,0,0,0,0,2,4,297,297,37,50,0,1,1,1,0,1,328,342,291,289,35,48,0,1,0,0,0,0,2,4,293,293,36,50,0,1,1,1,0,1,5,4,4,4,1,0,0,0,0,0,0,0,0,0,4,4,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,7,772,367,405,329,355,35,49,0,0,0,0,0,0,3,1,332,356,37,50,1,0,0,0,0,0,359,404,322,354,35,49,0,0,0,0,0,0,2,1,324,355,36,50,1,0,0,0,0,0,8,1,7,1,0,0,0,0,0,0,0,0,1,0,8,1,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,8,896,425,471,381,407,39,60,0,0,2,0,0,0,3,4,384,411,39,61,3,3,2,0,0,0,416,463,372,399,39,60,0,0,2,0,0,0,3,4,375,403,39,61,3,3,2,0,0,0,9,8,9,8,0,0,0,0,0,0,0,0,0,0,9,8,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,9,912,456,456,403,385,49,68,0,0,0,0,0,0,4,3,405,387,50,69,4,2,1,1,0,0,448,450,396,381,48,66,0,0,0,0,0,0,4,3,398,383,49,67,4,2,1,1,0,0,8,6,7,4,1,2,0,0,0,0,0,0,0,0,7,4,1,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,10,1054,550,504,485,429,58,69,1,0,0,0,1,0,5,6,490,434,59,70,3,6,2,0,1,0,542,501,478,426,57,69,1,0,0,0,1,0,5,6,483,431,58,70,3,6,2,0,1,0,8,3,7,3,1,0,0,0,0,0,0,0,0,0,7,3,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,11,1131,547,584,475,496,65,80,2,3,0,0,0,0,5,5,479,500,67,82,4,7,2,0,0,0,543,581,472,493,65,80,2,3,0,0,0,0,4,5,475,497,66,82,4,7,2,0,0,0,4,3,3,3,0,0,0,0,0,0,0,0,1,0,4,3,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,12,1051,539,512,485,450,50,52,1,3,0,3,0,0,3,4,488,454,51,54,3,5,0,3,0,0,537,509,483,447,50,52,1,3,0,3,0,0,3,4,486,451,51,54,3,5,0,3,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,13,1010,500,510,456,464,42,43,1,1,1,0,0,0,0,2,456,466,42,43,1,2,1,1,0,0,499,509,455,464,42,42,1,1,1,0,0,0,0,2,455,466,42,42,1,2,1,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,14,801,391,410,357,382,29,25,0,1,0,0,0,0,5,2,360,384,30,25,4,2,1,1,1,0,388,409,355,381,28,25,0,1,0,0,0,0,5,2,358,383,29,25,4,2,1,1,1,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,15,741,336,405,312,362,18,39,1,0,0,0,0,0,5,4,317,366,18,39,6,3,0,1,0,0,332,403,308,360,18,39,1,0,0,0,0,0,5,4,313,364,18,39,6,3,0,1,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,16,549,241,308,225,286,14,21,0,0,0,0,0,0,2,1,227,287,14,21,2,0,0,1,0,0,240,308,224,286,14,21,0,0,0,0,0,0,2,1,226,287,14,21,2,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,17,367,131,236,120,212,9,22,0,1,0,0,0,0,2,1,122,213,9,22,2,2,0,0,0,0,131,234,120,210,9,22,0,1,0,0,0,0,2,1,122,211,9,22,2,2,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,3,18,273,69,204,58,182,11,21,0,0,0,0,0,0,0,1,58,182,11,22,0,1,0,0,0,0,68,203,57,181,11,21,0,0,0,0,0,0,0,1,57,181,11,22,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,0,14292,6953,7339,6116,6361,725,868,11,13,4,5,1,1,96,91,6203,6441,780,923,53,44,12,19,2,5,6833,7261,6014,6292,712,860,11,13,4,5,1,0,91,91,6096,6372,765,915,50,44,12,19,2,4,120,78,102,69,13,8,0,0,0,0,0,1,5,0,107,69,15,8,3,0,0,0,0,1 -050,01,075,Alabama,Lamar County,4,1,781,400,381,349,320,38,45,3,0,0,0,0,1,10,15,358,333,48,58,4,2,1,2,0,1,387,372,339,312,35,45,3,0,0,0,0,0,10,15,348,325,45,58,4,2,1,2,0,0,13,9,10,8,3,0,0,0,0,0,0,1,0,0,10,8,3,0,0,0,0,0,0,1 -050,01,075,Alabama,Lamar County,4,2,897,434,463,368,391,51,56,0,0,0,0,0,0,15,16,383,406,64,69,1,4,1,0,0,0,427,454,363,384,50,54,0,0,0,0,0,0,14,16,377,399,62,67,1,4,1,0,0,0,7,9,5,7,1,2,0,0,0,0,0,0,1,0,6,7,2,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,3,933,491,442,426,370,53,60,0,0,0,0,0,0,12,12,438,381,62,71,3,3,0,0,0,0,479,432,414,360,53,60,0,0,0,0,0,0,12,12,426,371,62,71,3,3,0,0,0,0,12,10,12,10,0,0,0,0,0,0,0,0,0,0,12,10,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,4,829,411,418,333,339,67,69,0,1,0,0,0,0,11,9,342,346,73,75,4,2,2,2,1,2,400,411,323,332,66,69,0,1,0,0,0,0,11,9,332,339,72,75,4,2,2,2,1,2,11,7,10,7,1,0,0,0,0,0,0,0,0,0,10,7,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,5,774,408,366,338,306,61,57,1,2,0,0,0,0,8,1,345,307,67,58,4,2,0,0,0,0,393,356,327,299,59,54,1,2,0,0,0,0,6,1,332,300,64,55,3,2,0,0,0,0,15,10,11,7,2,3,0,0,0,0,0,0,2,0,13,7,3,3,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,6,643,315,328,275,278,37,47,0,1,0,0,0,0,3,2,277,280,40,47,1,3,0,0,0,0,306,325,269,275,34,47,0,1,0,0,0,0,3,2,271,277,37,47,1,3,0,0,0,0,9,3,6,3,3,0,0,0,0,0,0,0,0,0,6,3,3,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,7,738,352,386,310,336,40,48,0,0,0,0,0,0,2,2,312,337,40,49,2,1,0,1,0,0,345,384,304,334,40,48,0,0,0,0,0,0,1,2,305,335,40,49,1,1,0,1,0,0,7,2,6,2,0,0,0,0,0,0,0,0,1,0,7,2,0,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,8,871,411,460,366,403,40,53,0,0,1,1,0,0,4,3,370,406,40,55,4,1,1,1,0,0,400,455,355,398,40,53,0,0,1,1,0,0,4,3,359,401,40,55,4,1,1,1,0,0,11,5,11,5,0,0,0,0,0,0,0,0,0,0,11,5,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,9,914,459,455,409,390,44,60,1,0,1,1,0,0,4,4,413,394,45,61,3,1,2,3,0,0,453,448,404,385,43,58,1,0,1,1,0,0,4,4,408,389,44,59,3,1,2,3,0,0,6,7,5,5,1,2,0,0,0,0,0,0,0,0,5,5,1,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,10,1015,525,490,461,412,58,72,0,0,1,0,1,0,4,6,464,416,60,74,3,4,1,2,1,0,513,487,450,409,57,72,0,0,1,0,1,0,4,6,453,413,59,74,3,4,1,2,1,0,12,3,11,3,1,0,0,0,0,0,0,0,0,0,11,3,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,11,1094,528,566,464,485,56,75,3,1,0,0,0,0,5,5,469,489,57,76,5,3,2,3,0,0,524,563,461,482,56,75,3,1,0,0,0,0,4,5,465,486,57,76,4,3,2,3,0,0,4,3,3,3,0,0,0,0,0,0,0,0,1,0,4,3,0,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,12,1058,535,523,475,454,55,57,1,5,0,3,0,0,4,4,478,458,57,58,4,8,0,3,0,0,533,520,473,451,55,57,1,5,0,3,0,0,4,4,476,455,57,58,4,8,0,3,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,13,1016,501,515,455,467,45,44,1,1,0,0,0,0,0,3,455,470,45,45,1,2,0,1,0,1,500,514,454,467,45,43,1,1,0,0,0,0,0,3,454,470,45,44,1,2,0,1,0,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,14,814,414,400,376,373,32,25,0,0,1,0,0,0,5,2,381,375,32,26,5,0,1,0,0,1,410,399,373,372,31,25,0,0,1,0,0,0,5,2,378,374,31,26,5,0,1,0,0,1,4,1,3,1,1,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,15,720,322,398,298,359,19,34,1,1,0,0,0,0,4,4,300,362,21,35,4,5,1,0,0,0,319,396,295,357,19,34,1,1,0,0,0,0,4,4,297,360,21,35,4,5,1,0,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,16,575,255,320,242,296,11,23,0,0,0,0,0,0,2,1,244,297,11,23,2,1,0,0,0,0,254,320,241,296,11,23,0,0,0,0,0,0,2,1,243,297,11,23,2,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,17,350,122,228,110,203,9,24,0,0,0,0,0,0,3,1,113,204,9,24,3,1,0,0,0,0,121,226,109,201,9,24,0,0,0,0,0,0,3,1,112,202,9,24,3,1,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,4,18,270,70,200,61,179,9,19,0,1,0,0,0,0,0,1,61,180,9,19,0,1,0,1,0,0,69,199,60,178,9,19,0,1,0,0,0,0,0,1,60,179,9,19,0,1,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,0,14250,6931,7319,6095,6337,719,866,15,18,4,8,1,1,97,89,6186,6416,770,914,59,54,13,21,2,4,6817,7229,6004,6260,704,858,11,14,4,8,1,0,93,89,6091,6339,753,906,53,50,13,21,2,3,114,90,91,77,15,8,4,4,0,0,0,1,4,0,95,77,17,8,6,4,0,0,0,1 -050,01,075,Alabama,Lamar County,5,1,745,386,359,323,304,48,44,3,0,0,0,0,1,12,10,335,314,57,52,5,1,1,1,0,1,372,354,314,300,44,44,2,0,0,0,0,0,12,10,326,310,53,52,4,1,1,1,0,0,14,5,9,4,4,0,1,0,0,0,0,1,0,0,9,4,4,0,1,0,0,0,0,1 -050,01,075,Alabama,Lamar County,5,2,914,447,467,392,393,43,57,1,0,0,0,0,0,11,17,403,409,52,71,2,2,1,2,0,0,440,458,386,385,42,56,1,0,0,0,0,0,11,17,397,401,51,70,2,2,1,2,0,0,7,9,6,8,1,1,0,0,0,0,0,0,0,0,6,8,1,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,3,931,477,454,408,384,55,56,0,0,0,0,0,0,14,14,421,396,63,65,5,4,2,2,0,1,469,442,400,373,55,55,0,0,0,0,0,0,14,14,413,385,63,64,5,4,2,2,0,1,8,12,8,11,0,1,0,0,0,0,0,0,0,0,8,11,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,4,810,411,399,338,324,63,65,0,0,0,1,0,0,10,9,346,332,70,70,4,3,2,3,0,0,400,393,329,318,61,65,0,0,0,1,0,0,10,9,337,326,68,70,4,3,2,3,0,0,11,6,9,6,2,0,0,0,0,0,0,0,0,0,9,6,2,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,5,788,407,381,335,311,60,64,2,5,0,0,0,0,10,1,344,312,65,65,7,5,1,0,0,0,394,368,326,303,58,61,1,3,0,0,0,0,9,1,334,304,63,62,5,3,1,0,0,0,13,13,9,8,2,3,1,2,0,0,0,0,1,0,10,8,2,3,2,2,0,0,0,0 -050,01,075,Alabama,Lamar County,5,6,672,320,352,276,303,40,44,0,4,0,0,0,0,4,1,280,304,43,45,1,4,0,0,0,0,311,343,271,296,37,44,0,2,0,0,0,0,3,1,274,297,39,45,1,2,0,0,0,0,9,9,5,7,3,0,0,2,0,0,0,0,1,0,6,7,4,0,0,2,0,0,0,0 -050,01,075,Alabama,Lamar County,5,7,716,355,361,319,308,35,50,0,0,0,0,0,0,1,3,320,311,36,50,0,2,0,1,0,0,352,357,316,304,35,50,0,0,0,0,0,0,1,3,317,307,36,50,0,2,0,1,0,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,8,840,393,447,345,391,42,53,0,0,1,2,0,0,5,1,350,391,44,54,3,1,1,2,0,0,379,444,332,388,42,53,0,0,1,2,0,0,4,1,336,388,43,54,3,1,1,2,0,0,14,3,13,3,0,0,0,0,0,0,0,0,1,0,14,3,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,9,935,459,476,416,407,38,63,1,0,1,2,0,0,3,4,419,411,39,64,2,3,1,2,1,0,454,464,412,396,37,62,1,0,1,2,0,0,3,4,415,400,38,63,2,3,1,2,1,0,5,12,4,11,1,1,0,0,0,0,0,0,0,0,4,11,1,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,10,981,497,484,440,410,53,68,0,0,1,0,1,0,2,6,442,413,53,72,1,2,2,2,1,1,486,480,430,407,52,67,0,0,1,0,1,0,2,6,432,410,52,71,1,2,2,2,1,1,11,4,10,3,1,1,0,0,0,0,0,0,0,0,10,3,1,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,11,1068,523,545,462,467,52,73,4,0,0,0,0,0,5,5,467,472,54,73,8,4,0,1,0,0,518,542,459,464,52,73,2,0,0,0,0,0,5,5,464,469,54,73,6,4,0,1,0,0,5,3,3,3,0,0,2,0,0,0,0,0,0,0,3,3,0,0,2,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,12,1052,536,516,470,448,58,58,2,6,0,1,0,0,6,3,476,451,59,58,7,9,0,1,0,0,533,514,468,446,58,58,2,6,0,1,0,0,5,3,473,449,59,58,6,9,0,1,0,0,3,2,2,2,0,0,0,0,0,0,0,0,1,0,3,2,0,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,13,992,484,508,437,451,46,49,1,1,0,2,0,0,0,5,437,456,46,49,1,6,0,2,0,0,483,506,436,450,46,48,1,1,0,2,0,0,0,5,436,455,46,48,1,6,0,2,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,14,865,446,419,409,390,31,27,0,0,1,0,0,0,5,2,414,392,31,28,5,1,1,0,0,0,443,418,406,389,31,27,0,0,1,0,0,0,5,2,411,391,31,28,5,1,1,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,15,706,316,390,286,356,28,30,1,1,0,0,0,0,1,3,287,358,28,31,1,3,1,1,0,0,313,388,284,354,27,30,1,1,0,0,0,0,1,3,285,356,27,31,1,3,1,1,0,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,16,584,264,320,251,292,9,26,0,0,0,0,0,0,4,2,253,293,11,27,4,2,0,0,0,0,262,320,249,292,9,26,0,0,0,0,0,0,4,2,251,293,11,27,4,2,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,17,362,129,233,115,211,12,20,0,0,0,0,0,0,2,2,117,213,12,20,2,1,0,1,0,1,128,232,114,210,12,20,0,0,0,0,0,0,2,2,116,212,12,20,2,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,5,18,289,81,208,73,187,6,19,0,1,0,0,0,0,2,1,75,188,7,20,1,1,0,0,0,0,80,206,72,185,6,19,0,1,0,0,0,0,2,1,74,186,7,20,1,1,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,0,14214,6927,7287,6098,6304,704,863,16,20,3,6,1,1,105,93,6195,6392,765,910,50,55,21,18,3,6,6813,7197,6005,6227,691,855,12,16,3,6,1,0,101,93,6099,6315,750,902,44,51,20,18,3,5,114,90,93,77,13,8,4,4,0,0,0,1,4,0,96,77,15,8,6,4,1,0,0,1 -050,01,075,Alabama,Lamar County,6,1,725,365,360,300,300,44,46,1,0,0,0,0,0,20,14,318,314,62,55,5,1,1,3,0,1,355,352,295,292,40,46,0,0,0,0,0,0,20,14,313,306,58,55,4,1,1,3,0,1,10,8,5,8,4,0,1,0,0,0,0,0,0,0,5,8,4,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,2,922,469,453,410,385,43,53,3,0,0,0,0,1,13,14,422,397,53,62,3,3,4,3,0,2,462,449,404,382,42,53,3,0,0,0,0,0,13,14,416,394,52,62,3,3,4,3,0,1,7,4,6,3,1,0,0,0,0,0,0,1,0,0,6,3,1,0,0,0,0,0,0,1 -050,01,075,Alabama,Lamar County,6,3,933,486,447,426,388,45,49,0,0,0,0,0,0,15,10,441,397,56,57,2,1,2,1,0,1,481,434,421,377,45,47,0,0,0,0,0,0,15,10,436,386,56,55,2,1,2,1,0,1,5,13,5,11,0,2,0,0,0,0,0,0,0,0,5,11,0,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,4,829,424,405,355,328,60,67,0,1,0,0,0,0,9,9,363,337,64,72,5,5,1,0,0,0,411,400,342,323,60,67,0,1,0,0,0,0,9,9,350,332,64,72,5,5,1,0,0,0,13,5,13,5,0,0,0,0,0,0,0,0,0,0,13,5,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,5,761,379,382,313,307,56,67,2,3,0,0,0,0,8,5,321,312,60,70,4,4,2,1,0,0,363,370,301,298,54,65,1,2,0,0,0,0,7,5,308,303,57,68,3,3,2,1,0,0,16,12,12,9,2,2,1,1,0,0,0,0,1,0,13,9,3,2,1,1,0,0,0,0 -050,01,075,Alabama,Lamar County,6,6,717,358,359,308,311,46,41,0,4,0,0,0,0,4,3,311,314,48,43,2,4,1,1,0,0,346,348,300,304,43,40,0,1,0,0,0,0,3,3,303,307,45,42,1,1,0,1,0,0,12,11,8,7,3,1,0,3,0,0,0,0,1,0,8,7,3,1,1,3,1,0,0,0 -050,01,075,Alabama,Lamar County,6,7,688,331,357,297,292,34,60,0,1,0,0,0,0,0,4,297,296,34,62,0,2,0,1,0,0,329,352,295,287,34,60,0,1,0,0,0,0,0,4,295,291,34,62,0,2,0,1,0,0,2,5,2,5,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,8,826,383,443,340,394,37,46,0,0,1,2,0,0,5,1,345,395,39,46,3,1,1,2,0,0,369,439,327,390,37,46,0,0,1,2,0,0,4,1,331,391,39,46,2,1,1,2,0,0,14,4,13,4,0,0,0,0,0,0,0,0,1,0,14,4,0,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,9,929,464,465,414,399,45,60,2,0,0,1,0,0,3,5,417,404,47,62,3,3,0,1,0,0,459,456,410,391,44,59,2,0,0,1,0,0,3,5,413,396,46,61,3,3,0,1,0,0,5,9,4,8,1,1,0,0,0,0,0,0,0,0,4,8,1,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,10,925,466,459,418,398,46,56,0,0,1,0,0,0,1,5,419,402,46,57,1,5,1,0,0,0,460,454,413,394,45,55,0,0,1,0,0,0,1,5,414,398,45,56,1,5,1,0,0,0,6,5,5,4,1,1,0,0,0,0,0,0,0,0,5,4,1,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,11,1083,536,547,478,456,48,84,4,2,0,0,1,0,5,5,483,460,48,86,7,4,2,1,1,1,529,544,473,453,48,84,2,2,0,0,1,0,5,5,478,457,48,86,5,4,2,1,1,1,7,3,5,3,0,0,2,0,0,0,0,0,0,0,5,3,0,0,2,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,12,1053,514,539,442,468,62,61,2,6,0,1,0,0,8,3,450,471,63,63,5,7,3,1,1,0,508,536,437,465,62,61,2,6,0,1,0,0,7,3,444,468,62,63,5,7,3,1,1,0,6,3,5,3,0,0,0,0,0,0,0,0,1,0,6,3,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,13,972,502,470,456,414,45,49,1,1,0,2,0,0,0,4,456,418,45,49,1,4,0,3,0,0,501,469,455,413,45,49,1,1,0,2,0,0,0,4,455,417,45,49,1,4,0,3,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,14,876,437,439,396,408,37,29,0,0,1,0,0,0,3,2,399,410,38,29,1,2,1,0,1,0,435,437,394,407,37,28,0,0,1,0,0,0,3,2,397,409,38,28,1,2,1,0,1,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,15,718,331,387,298,354,29,28,1,1,0,0,0,0,3,4,301,358,30,29,3,5,0,0,0,0,328,386,296,353,28,28,1,1,0,0,0,0,3,4,299,357,29,29,3,5,0,0,0,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,16,577,254,323,241,292,9,29,0,0,0,0,0,0,4,2,243,294,12,29,3,2,1,0,0,0,251,322,238,291,9,29,0,0,0,0,0,0,4,2,240,293,12,29,3,2,1,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,17,376,143,233,128,212,13,19,0,0,0,0,0,0,2,2,129,214,14,19,1,1,1,0,0,1,142,232,127,211,13,19,0,0,0,0,0,0,2,2,128,213,14,19,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,6,18,304,85,219,78,198,5,19,0,1,0,0,0,0,2,1,80,199,6,20,1,1,0,0,0,0,84,217,77,196,5,19,0,1,0,0,0,0,2,1,79,197,6,20,1,1,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,0,14071,6851,7220,6027,6258,700,844,13,18,4,6,1,1,106,93,6124,6346,759,888,53,61,19,13,4,5,6736,7127,5936,6178,687,836,9,14,4,6,1,0,99,93,6029,6266,742,880,46,57,17,13,3,4,115,93,91,80,13,8,4,4,0,0,0,1,7,0,95,80,17,8,7,4,2,0,1,1 -050,01,075,Alabama,Lamar County,7,1,714,360,354,289,300,46,42,1,0,0,0,0,0,24,12,312,311,64,51,4,3,2,1,2,0,350,347,284,293,43,42,0,0,0,0,0,0,23,12,307,304,60,51,3,3,2,1,1,0,10,7,5,7,3,0,1,0,0,0,0,0,1,0,5,7,4,0,1,0,0,0,1,0 -050,01,075,Alabama,Lamar County,7,2,873,459,414,399,352,47,46,3,0,0,0,0,1,10,15,408,367,54,56,5,4,2,1,0,1,448,411,390,350,45,46,3,0,0,0,0,0,10,15,399,365,52,56,5,4,2,1,0,0,11,3,9,2,2,0,0,0,0,0,0,1,0,0,9,2,2,0,0,0,0,0,0,1 -050,01,075,Alabama,Lamar County,7,3,911,462,449,410,386,40,55,0,0,0,0,0,0,12,8,421,394,48,61,3,1,1,0,1,1,457,434,405,373,40,53,0,0,0,0,0,0,12,8,416,381,48,59,3,1,1,0,1,1,5,15,5,13,0,2,0,0,0,0,0,0,0,0,5,13,0,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,4,823,411,412,348,344,54,60,0,0,0,0,0,0,9,8,356,351,60,65,4,4,0,0,0,0,398,402,336,334,53,60,0,0,0,0,0,0,9,8,344,341,59,65,4,4,0,0,0,0,13,10,12,10,1,0,0,0,0,0,0,0,0,0,12,10,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,5,701,349,352,290,281,49,63,1,2,1,0,0,0,8,6,296,286,55,66,3,4,4,0,0,2,340,343,284,274,48,62,0,1,1,0,0,0,7,6,289,279,53,65,2,3,4,0,0,2,9,9,6,7,1,1,1,1,0,0,0,0,1,0,7,7,2,1,1,1,0,0,0,0 -050,01,075,Alabama,Lamar County,7,6,756,383,373,326,320,54,45,0,5,0,0,0,0,3,3,328,322,57,46,1,7,0,1,0,0,371,362,317,314,52,43,0,2,0,0,0,0,2,3,319,316,54,44,0,4,0,1,0,0,12,11,9,6,2,2,0,3,0,0,0,0,1,0,9,6,3,2,1,3,0,0,0,0 -050,01,075,Alabama,Lamar County,7,7,701,331,370,292,307,35,55,0,1,0,0,0,0,4,7,295,313,37,57,2,7,1,0,0,0,325,367,289,304,34,55,0,1,0,0,0,0,2,7,290,310,36,57,1,7,0,0,0,0,6,3,3,3,1,0,0,0,0,0,0,0,2,0,5,3,1,0,1,0,1,0,0,0 -050,01,075,Alabama,Lamar County,7,8,804,389,415,343,363,41,49,0,0,1,2,0,0,4,1,346,364,41,49,3,1,3,2,0,0,375,413,330,361,41,49,0,0,1,2,0,0,3,1,333,362,41,49,2,1,2,2,0,0,14,2,13,2,0,0,0,0,0,0,0,0,1,0,13,2,0,0,1,0,1,0,0,0 -050,01,075,Alabama,Lamar County,7,9,905,434,471,396,410,34,55,0,0,0,1,0,0,4,5,400,415,35,55,2,4,1,2,0,0,429,459,391,398,34,55,0,0,0,1,0,0,4,5,395,403,35,55,2,4,1,2,0,0,5,12,5,12,0,0,0,0,0,0,0,0,0,0,5,12,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,10,897,451,446,398,390,50,51,0,0,1,0,0,0,2,5,400,395,51,52,1,3,1,1,0,0,444,440,393,386,48,49,0,0,1,0,0,0,2,5,395,391,49,50,1,3,1,1,0,0,7,6,5,4,2,2,0,0,0,0,0,0,0,0,5,4,2,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,11,1045,538,507,482,427,47,73,4,0,0,0,1,0,4,7,486,434,48,75,7,4,0,0,1,1,531,505,477,425,47,73,2,0,0,0,1,0,4,7,481,432,48,75,5,4,0,0,1,1,7,2,5,2,0,0,2,0,0,0,0,0,0,0,5,2,0,0,2,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,12,1083,523,560,451,479,64,73,1,5,0,0,0,0,7,3,458,482,65,75,4,6,3,0,0,0,518,556,447,475,64,73,1,5,0,0,0,0,6,3,453,478,64,75,4,6,3,0,0,0,5,4,4,4,0,0,0,0,0,0,0,0,1,0,5,4,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,13,961,488,473,438,422,48,45,1,2,0,3,0,0,1,1,439,423,48,45,2,3,0,3,0,0,487,471,437,420,48,45,1,2,0,3,0,0,1,1,438,421,48,45,2,3,0,3,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,14,896,439,457,398,418,38,37,1,0,1,0,0,0,1,2,399,420,39,37,1,1,1,1,0,0,437,455,396,417,38,36,1,0,1,0,0,0,1,2,397,419,39,36,1,1,1,1,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,15,712,342,370,308,347,29,19,1,1,0,0,0,0,4,3,312,350,31,20,4,2,0,1,0,0,339,369,306,346,28,19,1,1,0,0,0,0,4,3,310,349,30,20,4,2,0,1,0,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,16,595,257,338,241,297,11,37,0,0,0,0,0,0,5,4,246,301,11,38,5,3,0,0,0,0,254,337,238,296,11,37,0,0,0,0,0,0,5,4,243,300,11,38,5,3,0,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,17,370,138,232,130,211,6,19,0,1,0,0,0,0,2,1,132,212,8,19,0,2,0,0,0,0,137,231,129,210,6,19,0,1,0,0,0,0,2,1,131,211,8,19,0,2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,7,18,324,97,227,88,204,7,20,0,1,0,0,0,0,2,2,90,206,7,21,2,2,0,0,0,0,96,225,87,202,7,20,0,1,0,0,0,0,2,2,89,204,7,21,2,2,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,0,13931,6819,7112,5991,6182,690,798,16,19,4,7,1,1,117,105,6100,6283,752,856,66,57,14,21,4,2,6702,7026,5899,6109,675,790,12,15,4,7,1,0,111,105,6002,6210,735,848,60,53,13,21,3,1,117,86,92,73,15,8,4,4,0,0,0,1,6,0,98,73,17,8,6,4,1,0,1,1 -050,01,075,Alabama,Lamar County,8,1,751,380,371,299,311,52,42,2,0,0,0,0,0,27,18,322,329,76,57,4,2,3,1,2,0,371,364,292,304,52,42,1,0,0,0,0,0,26,18,314,322,76,57,3,2,3,1,1,0,9,7,7,7,0,0,1,0,0,0,0,0,1,0,8,7,0,0,1,0,0,0,1,0 -050,01,075,Alabama,Lamar County,8,2,831,444,387,383,332,41,38,3,0,0,0,0,1,17,16,399,347,54,49,8,3,0,3,0,1,427,383,372,329,36,38,3,0,0,0,0,0,16,16,387,344,49,49,7,3,0,3,0,0,17,4,11,3,5,0,0,0,0,0,0,1,1,0,12,3,5,0,1,0,0,0,0,1 -050,01,075,Alabama,Lamar County,8,3,876,442,434,389,376,40,48,0,0,0,1,0,0,13,9,402,385,49,52,3,2,1,4,0,0,437,424,384,368,40,46,0,0,0,1,0,0,13,9,397,377,49,50,3,2,1,4,0,0,5,10,5,8,0,2,0,0,0,0,0,0,0,0,5,8,0,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,4,828,427,401,364,334,54,59,1,0,0,0,0,0,8,8,372,342,58,65,5,3,0,0,0,0,415,395,353,328,53,59,1,0,0,0,0,0,8,8,361,336,57,65,5,3,0,0,0,0,12,6,11,6,1,0,0,0,0,0,0,0,0,0,11,6,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,5,686,330,356,282,299,40,48,1,1,1,0,0,0,6,8,286,306,43,54,5,4,2,0,0,0,323,347,277,291,39,47,0,1,1,0,0,0,6,8,281,298,42,53,4,4,2,0,0,0,7,9,5,8,1,1,1,0,0,0,0,0,0,0,5,8,1,1,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,6,772,408,364,346,311,56,45,0,6,0,0,0,0,6,2,352,313,58,47,2,6,1,0,1,0,396,355,338,308,54,43,0,2,0,0,0,0,4,2,342,310,55,45,2,2,0,0,1,0,12,9,8,3,2,2,0,4,0,0,0,0,2,0,10,3,3,2,0,4,1,0,0,0 -050,01,075,Alabama,Lamar County,8,7,710,339,371,301,313,35,46,0,2,0,1,0,0,3,9,304,321,36,49,1,6,1,3,0,1,334,366,299,308,32,46,0,2,0,1,0,0,3,9,302,316,33,49,1,6,1,3,0,1,5,5,2,5,3,0,0,0,0,0,0,0,0,0,2,5,3,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,8,753,348,405,308,353,37,51,0,0,0,0,0,0,3,1,311,354,39,52,1,0,0,0,0,0,340,402,301,350,37,51,0,0,0,0,0,0,2,1,303,351,39,52,0,0,0,0,0,0,8,3,7,3,0,0,0,0,0,0,0,0,1,0,8,3,0,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,9,887,441,446,394,394,43,46,0,0,1,1,0,0,3,5,397,399,43,47,2,4,2,1,0,0,430,438,383,386,43,46,0,0,1,1,0,0,3,5,386,391,43,47,2,4,2,1,0,0,11,8,11,8,0,0,0,0,0,0,0,0,0,0,11,8,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,10,861,431,430,384,375,43,51,0,0,0,1,0,0,4,3,388,378,43,53,3,0,1,2,0,0,424,422,379,369,41,49,0,0,0,1,0,0,4,3,383,372,41,51,3,0,1,2,0,0,7,8,5,6,2,2,0,0,0,0,0,0,0,0,5,6,2,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,11,1007,527,480,470,408,47,64,3,0,1,0,1,0,5,8,475,415,48,66,7,7,1,1,1,0,519,477,464,405,47,64,1,0,1,0,1,0,5,8,469,412,48,66,5,7,1,1,1,0,8,3,6,3,0,0,2,0,0,0,0,0,0,0,6,3,0,0,2,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,12,1066,516,550,446,468,63,75,2,3,0,0,0,0,5,4,451,472,64,78,5,4,1,0,0,0,512,546,443,464,63,75,2,3,0,0,0,0,4,4,447,468,63,78,5,4,1,0,0,0,4,4,3,4,0,0,0,0,0,0,0,0,1,0,4,4,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,13,964,491,473,436,413,51,52,1,3,0,3,0,0,3,2,439,415,52,53,3,4,0,3,0,0,489,470,434,410,51,52,1,3,0,3,0,0,3,2,437,412,52,53,3,4,0,3,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,14,934,449,485,409,441,37,41,2,1,1,0,0,0,0,2,409,443,37,41,2,3,1,0,0,0,448,484,408,441,37,40,2,1,1,0,0,0,0,2,408,443,37,40,2,3,1,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,15,697,341,356,310,335,26,18,0,1,0,0,0,0,5,2,315,337,26,18,5,2,0,1,0,0,338,355,308,334,25,18,0,1,0,0,0,0,5,2,313,336,25,18,5,2,0,1,0,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,16,602,257,345,236,304,15,36,1,0,0,0,0,0,5,5,240,309,16,37,6,3,0,1,0,0,253,343,232,302,15,36,1,0,0,0,0,0,5,5,236,307,16,37,6,3,0,1,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,17,377,151,226,144,211,5,14,0,0,0,0,0,0,2,1,146,212,5,14,2,1,0,0,0,0,150,226,143,211,5,14,0,0,0,0,0,0,2,1,145,212,5,14,2,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,8,18,329,97,232,90,204,5,24,0,2,0,0,0,0,2,2,92,206,5,24,2,3,0,1,0,0,96,229,89,201,5,24,0,2,0,0,0,0,2,2,91,203,5,24,2,3,0,1,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,0,13926,6804,7122,5972,6210,693,780,17,22,4,7,1,1,117,102,6081,6307,752,831,63,62,20,18,6,6,6684,7029,5878,6132,679,772,11,16,4,7,1,0,111,102,5981,6229,736,823,54,56,19,18,6,5,120,93,94,78,14,8,6,6,0,0,0,1,6,0,100,78,16,8,9,6,1,0,0,1 -050,01,075,Alabama,Lamar County,9,1,737,395,342,326,289,51,38,1,0,0,0,0,0,17,15,343,304,62,50,2,2,4,1,1,0,381,334,314,281,51,38,0,0,0,0,0,0,16,15,330,296,62,50,1,2,3,1,1,0,14,8,12,8,0,0,1,0,0,0,0,0,1,0,13,8,0,0,1,0,1,0,0,0 -050,01,075,Alabama,Lamar County,9,2,821,422,399,357,348,38,34,4,0,0,0,0,1,23,16,379,364,56,44,8,2,0,1,2,4,406,394,346,344,34,34,4,0,0,0,0,0,22,16,367,360,51,44,8,2,0,1,2,3,16,5,11,4,4,0,0,0,0,0,0,1,1,0,12,4,5,0,0,0,0,0,0,1 -050,01,075,Alabama,Lamar County,9,3,888,449,439,395,381,45,49,0,0,0,1,0,0,9,8,403,389,51,54,1,1,3,3,0,0,444,430,391,374,44,47,0,0,0,1,0,0,9,8,399,382,50,52,1,1,3,3,0,0,5,9,4,7,1,2,0,0,0,0,0,0,0,0,4,7,1,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,4,862,445,417,387,353,47,56,0,0,0,0,0,0,11,8,397,361,55,61,4,2,0,1,0,0,438,408,380,344,47,56,0,0,0,0,0,0,11,8,390,352,55,61,4,2,0,1,0,0,7,9,7,9,0,0,0,0,0,0,0,0,0,0,7,9,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,5,664,323,341,277,297,35,35,1,1,0,0,0,0,10,8,284,304,41,39,5,4,3,2,0,0,312,334,268,290,34,35,0,1,0,0,0,0,10,8,275,297,40,39,4,4,3,2,0,0,11,7,9,7,1,0,1,0,0,0,0,0,0,0,9,7,1,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,6,776,386,390,319,338,62,45,0,4,1,0,0,0,4,3,323,341,65,48,1,4,1,0,0,0,381,379,316,332,62,42,0,2,1,0,0,0,2,3,318,335,64,45,0,2,1,0,0,0,5,11,3,6,0,3,0,2,0,0,0,0,2,0,5,6,1,3,1,2,0,0,0,0 -050,01,075,Alabama,Lamar County,9,7,743,363,380,320,323,39,46,0,5,0,0,0,0,4,6,324,329,40,49,1,7,1,1,1,0,354,373,316,318,34,46,0,3,0,0,0,0,4,6,320,324,35,49,1,5,1,1,1,0,9,7,4,5,5,0,0,2,0,0,0,0,0,0,4,5,5,0,0,2,0,0,0,0 -050,01,075,Alabama,Lamar County,9,8,737,351,386,311,333,38,48,0,0,0,1,0,0,2,4,313,337,38,48,2,3,0,2,0,0,344,385,305,332,38,48,0,0,0,1,0,0,1,4,306,336,38,48,1,3,0,2,0,0,7,1,6,1,0,0,0,0,0,0,0,0,1,0,7,1,0,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,9,886,439,447,388,396,46,47,0,0,1,1,0,0,4,3,392,399,47,47,2,3,2,1,0,0,426,437,375,386,46,47,0,0,1,1,0,0,4,3,379,389,47,47,2,3,2,1,0,0,13,10,13,10,0,0,0,0,0,0,0,0,0,0,13,10,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,10,880,438,442,395,380,39,56,0,0,0,1,0,0,4,5,399,385,39,58,3,2,1,2,0,0,432,435,391,375,37,54,0,0,0,1,0,0,4,5,395,380,37,56,3,2,1,2,0,0,6,7,4,5,2,2,0,0,0,0,0,0,0,0,4,5,2,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,11,955,485,470,427,395,50,67,2,2,1,0,1,0,4,6,431,399,50,70,5,5,2,0,1,2,476,465,420,392,50,67,0,0,1,0,1,0,4,6,424,396,50,70,3,3,2,0,1,2,9,5,7,3,0,0,2,2,0,0,0,0,0,0,7,3,0,0,2,2,0,0,0,0 -050,01,075,Alabama,Lamar County,9,12,1014,502,512,436,435,55,71,5,1,0,0,0,0,6,5,442,440,56,71,9,5,1,1,0,0,497,508,434,431,55,71,3,1,0,0,0,0,5,5,439,436,56,71,6,5,1,1,0,0,5,4,2,4,0,0,2,0,0,0,0,0,1,0,3,4,0,0,3,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,13,985,493,492,434,429,53,53,1,5,0,3,0,0,5,2,439,431,54,54,6,6,0,3,0,0,491,489,432,426,53,53,1,5,0,3,0,0,5,2,437,428,54,54,6,6,0,3,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,14,921,439,482,397,434,40,44,2,1,0,0,0,0,0,3,397,436,40,45,2,4,0,0,0,0,438,481,396,434,40,43,2,1,0,0,0,0,0,3,396,436,40,44,2,4,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,15,727,367,360,332,340,29,18,0,0,1,0,0,0,5,2,337,342,30,18,3,2,2,0,0,0,363,359,329,339,28,18,0,0,1,0,0,0,5,2,334,341,29,18,3,2,2,0,0,0,4,1,3,1,1,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,16,591,248,343,230,305,13,32,1,1,0,0,0,0,4,5,234,309,13,33,5,6,0,0,0,0,245,341,227,303,13,32,1,1,0,0,0,0,4,5,231,307,13,33,5,6,0,0,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,17,402,158,244,151,225,5,18,0,0,0,0,0,0,2,1,152,226,6,18,1,1,0,0,1,0,157,244,150,225,5,18,0,0,0,0,0,0,2,1,151,226,6,18,1,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,9,18,337,101,236,90,209,8,23,0,2,0,0,0,0,3,2,92,211,9,24,3,3,0,0,0,0,99,233,88,206,8,23,0,2,0,0,0,0,3,2,90,208,9,24,3,3,0,0,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,0,13885,6784,7101,5952,6175,687,791,16,22,7,8,1,1,121,104,6062,6275,753,845,70,62,17,19,4,4,6663,7004,5859,6093,673,783,10,16,7,8,1,0,113,104,5962,6193,737,837,59,56,14,19,4,3,121,97,93,82,14,8,6,6,0,0,0,1,8,0,100,82,16,8,11,6,3,0,0,1 -050,01,075,Alabama,Lamar County,10,1,739,393,346,327,290,47,37,0,0,0,0,0,0,19,19,345,308,61,51,2,3,3,2,1,1,378,337,313,281,47,37,0,0,0,0,0,0,18,19,330,299,61,51,2,3,2,2,1,1,15,9,14,9,0,0,0,0,0,0,0,0,1,0,15,9,0,0,0,0,1,0,0,0 -050,01,075,Alabama,Lamar County,10,2,805,410,395,344,338,45,44,3,0,0,0,0,1,18,12,362,350,58,54,8,1,0,1,0,1,396,388,336,332,41,44,2,0,0,0,0,0,17,12,353,344,54,54,6,1,0,1,0,0,14,7,8,6,4,0,1,0,0,0,0,1,1,0,9,6,4,0,2,0,0,0,0,1 -050,01,075,Alabama,Lamar County,10,3,929,468,461,412,398,47,51,1,0,0,0,0,0,8,12,418,410,53,59,3,1,1,2,1,1,460,455,405,393,46,50,1,0,0,0,0,0,8,12,411,405,52,58,3,1,1,2,1,1,8,6,7,5,1,1,0,0,0,0,0,0,0,0,7,5,1,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,4,835,446,389,389,334,42,47,0,0,0,1,0,0,15,7,404,341,51,54,5,0,1,1,0,0,440,378,383,324,42,46,0,0,0,1,0,0,15,7,398,331,51,53,5,0,1,1,0,0,6,11,6,10,0,1,0,0,0,0,0,0,0,0,6,10,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,5,683,332,351,284,300,38,43,0,0,1,0,0,0,9,8,292,308,45,47,2,1,2,2,0,1,326,346,279,295,37,43,0,0,1,0,0,0,9,8,287,303,44,47,2,1,2,2,0,1,6,5,5,5,1,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,6,782,386,396,318,335,59,54,1,5,2,0,0,0,6,2,324,337,61,55,4,6,2,0,1,0,382,387,316,331,59,51,0,3,2,0,0,0,5,2,321,333,61,52,2,4,2,0,1,0,4,9,2,4,0,3,1,2,0,0,0,0,1,0,3,4,0,3,2,2,0,0,0,0 -050,01,075,Alabama,Lamar County,10,7,700,336,364,298,316,33,40,0,3,0,0,0,0,5,5,302,321,35,41,3,6,1,1,0,0,326,356,294,310,28,40,0,1,0,0,0,0,4,5,298,315,29,41,3,4,0,1,0,0,10,8,4,6,5,0,0,2,0,0,0,0,1,0,4,6,6,0,0,2,1,0,0,0 -050,01,075,Alabama,Lamar County,10,8,750,370,380,327,319,40,53,0,2,0,1,0,0,3,5,330,324,40,54,3,5,1,2,0,0,365,377,324,316,40,53,0,2,0,1,0,0,1,5,325,321,40,54,1,5,0,2,0,0,5,3,3,3,0,0,0,0,0,0,0,0,2,0,5,3,0,0,2,0,1,0,0,0 -050,01,075,Alabama,Lamar County,10,9,856,423,433,367,387,50,44,0,0,1,1,0,0,5,1,371,388,53,45,3,0,1,1,0,0,407,424,352,378,50,44,0,0,1,1,0,0,4,1,355,379,52,45,3,0,1,1,0,0,16,9,15,9,0,0,0,0,0,0,0,0,1,0,16,9,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,10,902,449,453,403,392,42,54,0,0,0,1,0,0,4,6,407,398,44,55,2,5,0,1,0,0,442,445,398,385,40,53,0,0,0,1,0,0,4,6,402,391,42,54,2,5,0,1,0,0,7,8,5,7,2,1,0,0,0,0,0,0,0,0,5,7,2,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,11,903,447,456,398,388,45,59,0,2,1,1,1,0,2,6,400,393,45,61,2,6,1,2,1,0,440,449,391,384,45,58,0,0,1,1,1,0,2,6,393,389,45,60,2,4,1,2,1,0,7,7,7,4,0,1,0,2,0,0,0,0,0,0,7,4,0,1,0,2,0,0,0,0 -050,01,075,Alabama,Lamar County,10,12,1014,504,510,444,436,47,69,6,0,1,0,0,0,6,5,450,440,50,70,8,5,2,0,0,0,496,506,440,432,47,69,2,0,1,0,0,0,6,5,446,436,50,70,4,5,2,0,0,0,8,4,4,4,0,0,4,0,0,0,0,0,0,0,4,4,0,0,4,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,13,978,494,484,434,416,51,58,2,6,0,1,0,0,7,3,439,419,53,59,9,8,0,1,0,0,489,482,430,414,51,58,2,6,0,1,0,0,6,3,434,417,53,59,8,8,0,1,0,0,5,2,4,2,0,0,0,0,0,0,0,0,1,0,5,2,0,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,14,889,419,470,376,418,41,46,2,1,0,2,0,0,0,3,376,421,41,47,2,3,0,2,0,0,418,468,375,417,41,45,2,1,0,2,0,0,0,3,375,420,41,46,2,3,0,2,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,15,791,390,401,352,377,32,22,0,0,1,0,0,0,5,2,357,379,32,22,5,2,1,0,0,0,387,400,349,376,32,22,0,0,1,0,0,0,5,2,354,378,32,22,5,2,1,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,16,565,242,323,223,295,17,24,1,1,0,0,0,0,1,3,223,297,18,25,2,4,0,0,0,0,240,320,222,292,16,24,1,1,0,0,0,0,1,3,222,294,17,25,2,4,0,0,0,0,2,3,1,3,1,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,17,418,166,252,159,227,3,23,0,0,0,0,0,0,4,2,162,229,4,23,4,1,0,1,0,0,164,252,157,227,3,23,0,0,0,0,0,0,4,2,160,229,4,23,4,1,0,1,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,10,18,346,109,237,97,209,8,23,0,2,0,0,0,0,4,3,100,212,9,23,3,5,1,0,0,0,107,234,95,206,8,23,0,2,0,0,0,0,4,3,98,209,9,23,3,5,1,0,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,0,13878,6790,7088,5961,6168,683,771,16,22,6,8,1,1,123,118,6076,6276,741,837,64,71,24,20,9,4,6663,6982,5868,6079,664,763,10,15,6,8,1,0,114,117,5975,6186,719,829,55,63,23,20,6,3,127,106,93,89,19,8,6,7,0,0,0,1,9,1,101,90,22,8,9,8,1,0,3,1 -050,01,075,Alabama,Lamar County,11,1,765,408,357,341,292,50,45,0,0,0,0,0,0,17,20,357,312,63,59,2,3,3,2,1,1,390,346,327,282,47,45,0,0,0,0,0,0,16,19,342,301,60,59,1,2,3,2,1,1,18,11,14,10,3,0,0,0,0,0,0,0,1,1,15,11,3,0,1,1,0,0,0,0 -050,01,075,Alabama,Lamar County,11,2,755,377,378,314,320,46,39,1,0,0,0,0,0,16,19,329,337,59,52,4,6,1,2,0,0,362,373,305,315,42,39,0,0,0,0,0,0,15,19,319,332,54,52,3,6,1,2,0,0,15,5,9,5,4,0,1,0,0,0,0,0,1,0,10,5,5,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,3,918,462,456,408,398,41,44,3,0,0,0,0,1,10,13,418,408,46,54,6,4,1,2,1,3,454,451,402,394,40,44,3,0,0,0,0,0,9,13,411,404,45,54,6,4,1,2,0,2,8,5,6,4,1,0,0,0,0,0,0,1,1,0,7,4,1,0,0,0,0,0,1,1 -050,01,075,Alabama,Lamar County,11,4,826,453,373,400,319,37,45,0,0,0,1,0,0,16,8,414,326,47,51,4,3,4,1,0,0,448,363,395,311,37,43,0,0,0,1,0,0,16,8,409,318,47,49,4,3,4,1,0,0,5,10,5,8,0,2,0,0,0,0,0,0,0,0,5,8,0,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,5,707,359,348,301,300,46,38,0,0,0,0,0,0,12,10,312,309,52,43,5,4,2,2,0,0,355,340,297,292,46,38,0,0,0,0,0,0,12,10,308,301,52,43,5,4,2,2,0,0,4,8,4,8,0,0,0,0,0,0,0,0,0,0,4,8,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,6,756,372,384,307,326,58,51,1,3,2,0,0,0,4,4,311,329,60,54,2,5,3,0,0,0,363,375,303,320,55,49,0,2,2,0,0,0,3,4,306,323,56,52,1,4,3,0,0,0,9,9,4,6,3,2,1,1,0,0,0,0,1,0,5,6,4,2,1,1,0,0,0,0 -050,01,075,Alabama,Lamar County,11,7,738,347,391,303,340,38,44,0,4,0,0,0,0,6,3,309,343,40,46,3,4,0,1,1,0,336,379,298,332,33,43,0,1,0,0,0,0,5,3,303,335,35,45,3,1,0,1,0,0,11,12,5,8,5,1,0,3,0,0,0,0,1,0,6,8,5,1,0,3,0,0,1,0 -050,01,075,Alabama,Lamar County,11,8,738,359,379,321,317,34,52,0,2,0,1,0,0,4,7,324,323,35,54,2,8,0,1,2,0,355,375,319,313,34,52,0,2,0,1,0,0,2,7,321,319,34,54,1,8,0,1,1,0,4,4,2,4,0,0,0,0,0,0,0,0,2,0,3,4,1,0,1,0,0,0,1,0 -050,01,075,Alabama,Lamar County,11,9,833,404,429,358,391,40,36,0,0,1,1,0,0,5,1,362,392,42,37,2,0,2,1,1,0,388,423,343,385,40,36,0,0,1,1,0,0,4,1,346,386,42,37,1,0,2,1,1,0,16,6,15,6,0,0,0,0,0,0,0,0,1,0,16,6,0,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,10,926,470,456,412,389,54,60,0,0,0,1,0,0,4,6,416,394,54,62,3,4,0,2,1,0,461,443,405,377,52,59,0,0,0,1,0,0,4,6,409,382,52,61,3,4,0,2,1,0,9,13,7,12,2,1,0,0,0,0,0,0,0,0,7,12,2,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,11,872,431,441,384,384,45,48,0,3,1,1,0,0,1,5,385,389,46,49,0,7,1,1,0,0,427,433,380,380,45,47,0,0,1,1,0,0,1,5,381,385,46,48,0,4,1,1,0,0,4,8,4,4,0,1,0,3,0,0,0,0,0,0,4,4,0,1,0,3,0,0,0,0 -050,01,075,Alabama,Lamar County,11,12,1003,497,506,446,429,39,71,6,0,0,0,1,0,5,6,451,435,40,73,9,4,1,0,1,0,488,503,441,426,39,71,2,0,0,0,1,0,5,6,446,432,40,73,5,4,1,0,1,0,9,3,5,3,0,0,4,0,0,0,0,0,0,0,5,3,0,0,4,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,13,994,482,512,418,441,52,61,2,6,1,1,0,0,9,3,427,444,52,63,9,7,3,1,0,0,478,509,415,438,52,61,2,6,1,1,0,0,8,3,423,441,52,63,9,7,2,1,0,0,4,3,3,3,0,0,0,0,0,0,0,0,1,0,4,3,0,0,0,0,1,0,0,0 -050,01,075,Alabama,Lamar County,11,14,880,446,434,406,386,39,43,1,1,0,2,0,0,0,2,406,388,39,45,1,1,0,2,0,0,445,433,405,385,39,43,1,1,0,2,0,0,0,2,405,387,39,45,1,1,0,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,15,781,369,412,331,385,33,25,1,0,1,0,0,0,3,2,334,387,33,26,3,1,1,0,1,0,367,410,329,384,33,24,1,0,1,0,0,0,3,2,332,386,33,25,3,1,1,0,1,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,16,593,266,327,242,300,20,22,1,1,0,0,0,0,3,4,245,304,21,22,3,3,0,2,0,0,263,325,240,298,19,22,1,1,0,0,0,0,3,4,243,302,20,22,3,3,0,2,0,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,17,418,162,256,154,231,4,23,0,0,0,0,0,0,4,2,157,233,5,23,3,2,1,0,0,0,159,255,151,230,4,23,0,0,0,0,0,0,4,2,154,232,5,23,3,2,1,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,11,18,375,126,249,115,220,7,24,0,2,0,0,0,0,4,3,119,223,7,24,3,5,1,0,0,0,124,246,113,217,7,24,0,2,0,0,0,0,4,3,117,220,7,24,3,5,1,0,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,0,13817,6783,7034,5954,6134,682,754,19,25,7,8,1,1,120,112,6069,6238,748,813,71,63,15,25,3,7,6639,6916,5847,6034,663,746,11,17,6,8,1,0,111,111,5954,6137,724,804,59,55,14,25,2,6,144,118,107,100,19,8,8,8,1,0,0,1,9,1,115,101,24,9,12,8,1,0,1,1 -050,01,075,Alabama,Lamar County,12,1,800,424,376,352,306,54,50,2,4,0,0,0,0,16,16,366,321,67,63,6,5,0,3,1,0,401,359,335,292,51,50,0,1,0,0,0,0,15,16,349,307,63,63,4,2,0,3,0,0,23,17,17,14,3,0,2,3,0,0,0,0,1,0,17,14,4,0,2,3,0,0,1,0 -050,01,075,Alabama,Lamar County,12,2,752,375,377,315,326,40,33,1,0,1,0,0,0,18,18,333,344,53,47,4,2,3,2,0,0,357,371,303,320,37,33,0,0,0,0,0,0,17,18,320,338,49,47,3,2,2,2,0,0,18,6,12,6,3,0,1,0,1,0,0,0,1,0,13,6,4,0,1,0,1,0,0,0 -050,01,075,Alabama,Lamar County,12,3,880,461,419,405,365,42,40,3,0,0,0,0,1,11,13,416,376,49,50,6,3,1,1,0,2,449,412,396,359,40,40,3,0,0,0,0,0,10,13,406,370,47,50,5,3,1,1,0,1,12,7,9,6,2,0,0,0,0,0,0,1,1,0,10,6,2,0,1,0,0,0,0,1 -050,01,075,Alabama,Lamar County,12,4,809,435,374,387,319,35,48,0,0,0,1,0,0,13,6,400,325,43,50,5,2,1,2,0,1,430,364,382,311,35,46,0,0,0,1,0,0,13,6,395,317,43,48,5,2,1,2,0,1,5,10,5,8,0,2,0,0,0,0,0,0,0,0,5,8,0,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,5,700,357,343,297,294,49,40,0,0,0,0,0,0,11,9,308,301,52,45,7,2,1,3,0,1,353,333,293,284,49,40,0,0,0,0,0,0,11,9,304,291,52,45,7,2,1,3,0,1,4,10,4,10,0,0,0,0,0,0,0,0,0,0,4,10,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,6,779,378,401,317,349,52,41,1,3,2,0,0,0,6,8,323,356,54,46,5,6,2,0,0,1,367,390,311,342,49,40,0,1,2,0,0,0,5,7,316,348,51,44,3,4,2,0,0,1,11,11,6,7,3,1,1,2,0,0,0,0,1,1,7,8,3,2,2,2,0,0,0,0 -050,01,075,Alabama,Lamar County,12,7,721,351,370,301,321,45,42,1,5,0,0,0,0,4,2,304,323,49,44,2,5,0,0,0,0,338,358,293,314,41,40,1,2,0,0,0,0,3,2,295,316,44,42,2,2,0,0,0,0,13,12,8,7,4,2,0,3,0,0,0,0,1,0,9,7,5,2,0,3,0,0,0,0 -050,01,075,Alabama,Lamar County,12,8,731,355,376,312,319,36,47,2,2,0,1,0,0,5,7,317,326,38,48,5,6,0,3,0,0,347,371,309,314,35,47,0,2,0,1,0,0,3,7,312,321,36,48,2,6,0,3,0,0,8,5,3,5,1,0,2,0,0,0,0,0,2,0,5,5,2,0,3,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,9,820,399,421,358,376,36,42,0,1,1,1,0,0,4,1,362,377,37,43,3,1,1,1,0,0,385,415,345,370,36,42,0,1,1,1,0,0,3,1,348,371,37,43,2,1,1,1,0,0,14,6,13,6,0,0,0,0,0,0,0,0,1,0,14,6,0,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,10,907,461,446,411,388,46,52,0,0,0,1,0,0,4,5,415,393,47,53,2,3,1,2,0,0,453,435,404,377,45,52,0,0,0,1,0,0,4,5,408,382,46,53,2,3,1,2,0,0,8,11,7,11,1,0,0,0,0,0,0,0,0,0,7,11,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,11,871,433,438,381,388,49,44,0,0,1,1,0,0,2,5,383,393,50,45,1,4,1,1,0,0,426,433,375,385,48,42,0,0,1,1,0,0,2,5,377,390,49,43,1,4,1,1,0,0,7,5,6,3,1,2,0,0,0,0,0,0,0,0,6,3,1,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,12,973,492,481,444,413,39,62,4,0,0,0,1,0,4,6,448,419,39,63,8,5,0,0,1,0,486,479,440,411,39,62,2,0,0,0,1,0,4,6,444,417,39,63,6,5,0,0,1,0,6,2,4,2,0,0,2,0,0,0,0,0,0,0,4,2,0,0,2,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,13,1002,483,519,425,437,49,74,1,5,1,0,0,0,7,3,432,440,53,74,3,7,2,1,0,0,479,513,422,431,49,74,1,5,1,0,0,0,6,3,428,434,52,74,3,7,2,1,0,0,4,6,3,6,0,0,0,0,0,0,0,0,1,0,4,6,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,14,877,431,446,387,398,42,42,1,2,0,3,0,0,1,1,388,399,43,42,1,2,0,3,0,1,430,444,386,396,42,42,1,2,0,3,0,0,1,1,387,397,43,42,1,2,0,3,0,1,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,15,790,373,417,339,385,30,30,2,0,1,0,0,0,1,2,340,386,31,32,2,1,1,0,0,0,371,415,337,384,30,29,2,0,1,0,0,0,1,2,338,385,31,31,2,1,1,0,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,16,596,279,317,250,297,24,16,1,1,0,0,0,0,4,3,253,299,26,16,5,2,0,2,0,1,276,316,248,296,23,16,1,1,0,0,0,0,4,3,251,298,25,16,5,2,0,2,0,1,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,17,433,173,260,160,228,8,28,0,0,0,0,0,0,5,4,165,232,10,28,3,3,0,1,0,0,170,258,157,226,8,28,0,0,0,0,0,0,5,4,162,230,10,28,3,3,0,1,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,12,18,376,123,253,113,225,6,23,0,2,0,0,0,0,4,3,116,228,7,24,3,4,1,0,1,0,121,250,111,222,6,23,0,2,0,0,0,0,4,3,114,225,7,24,3,4,1,0,1,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,0,13764,6753,7011,5915,6116,687,744,22,26,7,8,1,1,121,116,6026,6223,751,800,66,77,29,23,4,5,6601,6888,5804,6014,666,735,13,17,6,8,1,0,111,114,5906,6119,728,791,52,66,26,23,2,4,152,123,111,102,21,9,9,9,1,0,0,1,10,2,120,104,23,9,14,11,3,0,2,1 -050,01,075,Alabama,Lamar County,13,1,810,441,369,357,302,64,46,3,4,0,0,0,0,17,17,374,318,76,59,6,7,2,2,0,0,419,352,343,290,60,46,0,0,0,0,0,0,16,16,359,305,72,59,3,2,1,2,0,0,22,17,14,12,4,0,3,4,0,0,0,0,1,1,15,13,4,0,3,5,1,0,0,0 -050,01,075,Alabama,Lamar County,13,2,770,367,403,310,344,35,38,1,1,1,0,0,0,20,20,328,364,54,48,2,8,3,2,0,1,351,395,298,336,34,38,0,1,0,0,0,0,19,20,315,356,52,48,1,8,2,2,0,1,16,8,12,8,1,0,1,0,1,0,0,0,1,0,13,8,2,0,1,0,1,0,0,0 -050,01,075,Alabama,Lamar County,13,3,858,464,394,402,347,44,34,3,0,0,0,0,1,15,12,416,357,53,42,4,4,4,3,2,1,446,388,391,342,39,34,3,0,0,0,0,0,13,12,403,352,48,42,4,4,3,3,1,0,18,6,11,5,5,0,0,0,0,0,0,1,2,0,13,5,5,0,0,0,1,0,1,1 -050,01,075,Alabama,Lamar County,13,4,787,411,376,366,327,34,43,0,0,0,1,0,0,11,5,377,332,39,46,4,1,2,2,0,0,407,366,362,319,34,41,0,0,0,1,0,0,11,5,373,324,39,44,4,1,2,2,0,0,4,10,4,8,0,2,0,0,0,0,0,0,0,0,4,8,0,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,5,727,386,341,324,293,51,40,0,0,0,0,0,0,11,8,334,301,55,47,4,1,5,0,0,0,379,333,317,285,51,40,0,0,0,0,0,0,11,8,327,293,55,47,4,1,5,0,0,0,7,8,7,8,0,0,0,0,0,0,0,0,0,0,7,8,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,6,731,354,377,304,333,44,33,1,2,2,0,0,0,3,9,306,341,46,37,2,5,3,3,0,0,345,366,297,325,43,32,0,1,2,0,0,0,3,8,299,332,45,36,1,3,3,3,0,0,9,11,7,8,1,1,1,1,0,0,0,0,0,1,7,9,1,1,1,2,0,0,0,0 -050,01,075,Alabama,Lamar County,13,7,764,372,392,313,339,54,45,1,6,0,0,0,0,4,2,317,341,54,46,5,7,0,0,0,0,360,382,307,335,50,43,1,2,0,0,0,0,2,2,309,337,50,44,3,3,0,0,0,0,12,10,6,4,4,2,0,4,0,0,0,0,2,0,8,4,4,2,2,4,0,0,0,0 -050,01,075,Alabama,Lamar County,13,8,724,347,377,310,322,30,45,2,2,0,1,0,0,5,7,314,326,30,49,5,5,2,3,1,1,338,370,306,316,29,44,0,2,0,1,0,0,3,7,309,320,29,48,1,5,2,3,0,1,9,7,4,6,1,1,2,0,0,0,0,0,2,0,5,6,1,1,4,0,0,0,1,0 -050,01,075,Alabama,Lamar County,13,9,786,367,419,331,370,31,47,2,1,0,0,0,0,3,1,334,371,32,47,4,2,0,0,0,0,359,412,324,363,31,47,2,1,0,0,0,0,2,1,326,364,31,47,4,2,0,0,0,0,8,7,7,7,0,0,0,0,0,0,0,0,1,0,8,7,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,10,890,458,432,401,384,53,42,0,0,1,1,0,0,3,5,404,389,55,43,1,3,1,1,0,1,442,425,388,377,50,42,0,0,1,1,0,0,3,5,391,382,52,43,1,3,1,1,0,1,16,7,13,7,3,0,0,0,0,0,0,0,0,0,13,7,3,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,11,867,427,440,380,386,43,49,0,0,0,2,0,0,4,3,382,389,46,50,2,2,1,2,0,0,420,431,374,379,42,47,0,0,0,2,0,0,4,3,376,382,45,48,2,2,1,2,0,0,7,9,6,7,1,2,0,0,0,0,0,0,0,0,6,7,1,2,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,12,948,484,464,437,394,37,61,3,0,1,0,1,0,5,9,441,402,39,62,6,9,2,0,1,0,475,461,430,391,37,61,1,0,1,0,1,0,5,9,434,399,39,62,4,9,2,0,1,0,9,3,7,3,0,0,2,0,0,0,0,0,0,0,7,3,0,0,2,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,13,1003,488,515,424,434,54,74,2,3,1,0,0,0,7,4,431,438,56,74,6,7,2,0,0,0,485,509,422,428,54,74,2,3,1,0,0,0,6,4,428,432,56,74,5,7,2,0,0,0,3,6,2,6,0,0,0,0,0,0,0,0,1,0,3,6,0,0,1,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,14,891,440,451,392,391,44,51,1,3,0,3,0,0,3,3,395,394,44,52,3,5,1,3,0,0,438,446,390,386,44,51,1,3,0,3,0,0,3,3,393,389,44,52,3,5,1,3,0,0,2,5,2,5,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,15,826,386,440,350,402,33,35,2,1,1,0,0,0,0,2,350,404,33,35,2,2,1,1,0,0,385,438,349,401,33,34,2,1,1,0,0,0,0,2,349,403,33,34,2,2,1,1,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,16,591,272,319,247,301,20,15,0,1,0,0,0,0,5,2,251,303,22,16,4,2,0,0,0,0,269,318,245,300,19,15,0,1,0,0,0,0,5,2,249,302,21,16,4,2,0,0,0,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,17,433,174,259,161,229,10,25,1,0,0,0,0,0,2,5,163,233,10,26,3,4,0,1,0,0,170,256,157,226,10,25,1,0,0,0,0,0,2,5,159,230,10,26,3,4,0,1,0,0,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,075,Alabama,Lamar County,13,18,358,115,243,106,218,6,21,0,2,0,0,0,0,3,2,109,220,7,21,3,3,0,0,0,1,113,240,104,215,6,21,0,2,0,0,0,0,3,2,107,217,7,21,3,3,0,0,0,1,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,1,0,92709,44379,48330,38950,42097,4256,5069,184,162,365,365,25,22,599,615,39516,42670,4564,5374,440,422,436,457,43,42,43274,47353,38012,41267,4195,5004,172,153,337,341,11,12,547,576,38527,41802,4489,5295,396,393,403,430,23,28,1105,977,938,830,61,65,12,9,28,24,14,10,52,39,989,868,75,79,44,29,33,27,20,14 -050,01,077,Alabama,Lauderdale County,1,1,5158,2540,2618,2097,2113,305,374,12,6,17,17,1,4,108,104,2204,2215,380,456,27,16,31,28,6,7,2403,2465,1982,1992,298,358,11,6,14,14,0,1,98,94,2079,2084,371,436,21,13,27,23,3,3,137,153,115,121,7,16,1,0,3,3,1,3,10,10,125,131,9,20,6,3,4,5,3,4 -050,01,077,Alabama,Lauderdale County,1,2,5466,2750,2716,2298,2251,309,348,15,7,19,21,3,0,106,89,2402,2339,394,416,33,15,27,34,3,2,2621,2610,2187,2158,300,339,13,7,18,19,2,0,101,87,2286,2244,383,406,28,15,26,32,2,1,129,106,111,93,9,9,2,0,1,2,1,0,5,2,116,95,11,10,5,0,1,2,1,1 -050,01,077,Alabama,Lauderdale County,1,3,5718,2867,2851,2458,2439,311,324,12,11,21,15,1,2,64,60,2518,2497,363,358,24,25,25,29,2,2,2772,2766,2376,2368,305,318,11,9,20,13,1,1,59,57,2431,2423,354,351,22,21,24,27,1,1,95,85,82,71,6,6,1,2,1,2,0,1,5,3,87,74,9,7,2,4,1,2,1,1 -050,01,077,Alabama,Lauderdale County,1,4,6699,3337,3362,2801,2771,439,491,9,14,34,24,0,0,54,62,2851,2829,475,529,25,38,39,31,1,0,3237,3258,2715,2682,434,485,9,13,28,21,0,0,51,57,2762,2735,468,521,24,34,33,28,1,0,100,104,86,89,5,6,0,1,6,3,0,0,3,5,89,94,7,8,1,4,6,3,0,0 -050,01,077,Alabama,Lauderdale County,1,5,7088,3566,3522,2920,2892,480,480,17,14,104,78,2,3,43,55,2958,2941,501,507,34,36,115,91,5,5,3447,3431,2826,2818,469,471,16,14,100,78,1,2,35,48,2857,2861,488,496,27,31,110,91,3,3,119,91,94,74,11,9,1,0,4,0,1,1,8,7,101,80,13,11,7,5,5,0,2,2 -050,01,077,Alabama,Lauderdale County,1,6,5328,2669,2659,2293,2245,284,328,11,13,45,41,5,2,31,30,2320,2270,292,342,32,26,51,48,5,4,2565,2582,2211,2181,278,326,9,13,42,36,2,0,23,26,2230,2202,286,338,23,24,47,43,2,2,104,77,82,64,6,2,2,0,3,5,3,2,8,4,90,68,6,4,9,2,4,5,3,2 -050,01,077,Alabama,Lauderdale County,1,7,4896,2401,2495,2097,2154,241,290,19,10,17,14,3,4,24,23,2117,2175,249,297,33,22,23,20,3,5,2308,2419,2016,2091,238,286,19,8,15,13,0,2,20,19,2032,2108,246,293,30,16,20,18,0,3,93,76,81,63,3,4,0,2,2,1,3,2,4,4,85,67,3,4,3,6,3,2,3,2 -050,01,077,Alabama,Lauderdale County,1,8,5530,2677,2853,2360,2511,258,271,14,16,20,28,3,1,22,26,2380,2532,264,280,30,34,22,31,3,3,2586,2777,2281,2443,254,268,13,14,17,27,1,0,20,25,2299,2463,259,277,28,31,19,30,1,2,91,76,79,68,4,3,1,2,3,1,2,1,2,1,81,69,5,3,2,3,3,1,2,1 -050,01,077,Alabama,Lauderdale County,1,9,5882,2885,2997,2600,2605,239,340,8,11,21,19,0,2,17,20,2616,2624,244,342,22,28,21,19,0,4,2823,2945,2542,2557,236,338,8,11,21,18,0,2,16,19,2557,2575,241,340,21,28,21,18,0,3,62,52,58,48,3,2,0,0,0,1,0,0,1,1,59,49,3,2,1,0,0,1,0,1 -050,01,077,Alabama,Lauderdale County,1,10,6523,3120,3403,2773,2974,297,374,11,17,12,20,1,0,26,18,2798,2990,299,377,32,32,15,23,4,0,3079,3369,2738,2943,295,374,10,16,12,19,0,0,24,17,2761,2958,297,376,30,31,15,22,2,0,41,34,35,31,2,0,1,1,0,1,1,0,2,1,37,32,2,1,2,1,0,1,2,0 -050,01,077,Alabama,Lauderdale County,1,11,6757,3178,3579,2845,3161,270,349,16,16,20,20,2,4,25,29,2869,3189,271,352,39,42,22,23,2,4,3137,3551,2814,3140,267,345,14,16,17,17,0,4,25,29,2838,3168,268,348,37,42,19,20,0,4,41,28,31,21,3,4,2,0,3,3,2,0,0,0,31,21,3,4,2,0,3,3,2,0 -050,01,077,Alabama,Lauderdale County,1,12,6295,3055,3240,2748,2897,254,291,12,7,15,14,0,0,26,31,2772,2924,257,298,35,33,20,18,2,1,3020,3212,2716,2871,254,290,12,7,13,13,0,0,25,31,2739,2898,256,297,34,33,17,17,1,1,35,28,32,26,0,1,0,0,2,1,0,0,1,0,33,26,1,1,1,0,3,1,1,0 -050,01,077,Alabama,Lauderdale County,1,13,5816,2744,3072,2510,2799,200,222,13,9,1,24,1,0,19,18,2529,2814,202,226,28,24,4,26,2,2,2729,3051,2498,2782,198,220,13,9,1,23,1,0,18,17,2516,2796,200,223,27,24,4,25,2,2,15,21,12,17,2,2,0,0,0,1,0,0,1,1,13,18,2,3,1,0,0,1,0,0 -050,01,077,Alabama,Lauderdale County,1,14,4735,2241,2494,2067,2282,140,179,6,4,11,14,1,0,16,15,2081,2296,143,181,19,17,12,16,2,0,2226,2482,2053,2271,140,178,6,4,11,14,1,0,15,15,2066,2285,142,180,19,17,12,16,2,0,15,12,14,11,0,1,0,0,0,0,0,0,1,0,15,11,1,1,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,1,15,3785,1685,2100,1564,1939,101,135,5,4,4,9,1,0,10,13,1574,1950,101,135,15,14,5,12,2,2,1672,2084,1552,1924,101,135,5,3,4,9,1,0,9,13,1561,1935,101,135,14,13,5,12,2,2,13,16,12,15,0,0,0,1,0,0,0,0,1,0,13,15,0,0,1,1,0,0,0,0 -050,01,077,Alabama,Lauderdale County,1,16,2989,1273,1716,1193,1595,73,107,1,2,2,4,1,0,3,8,1196,1603,74,109,4,9,2,4,1,0,1266,1706,1186,1585,73,107,1,2,2,4,1,0,3,8,1189,1593,74,109,4,9,2,4,1,0,7,10,7,10,0,0,0,0,0,0,0,0,0,0,7,10,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,1,17,2171,844,1327,799,1226,38,92,2,0,1,2,0,0,4,7,803,1233,38,93,6,5,1,2,0,1,838,1323,794,1222,38,92,1,0,1,2,0,0,4,7,798,1229,38,93,5,5,1,2,0,1,6,4,5,4,0,0,1,0,0,0,0,0,0,0,5,4,0,0,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,1,18,1873,547,1326,527,1243,17,74,1,1,1,1,0,0,1,7,528,1249,17,76,2,6,1,2,0,0,545,1322,525,1239,17,74,1,1,1,1,0,0,1,7,526,1245,17,76,2,6,1,2,0,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,2,0,92709,44379,48330,38950,42097,4256,5069,184,162,365,365,25,22,599,615,39516,42670,4564,5374,440,422,436,457,43,42,43274,47353,38012,41267,4195,5004,172,153,337,341,11,12,547,576,38527,41802,4489,5295,396,393,403,430,23,28,1105,977,938,830,61,65,12,9,28,24,14,10,52,39,989,868,75,79,44,29,33,27,20,14 -050,01,077,Alabama,Lauderdale County,2,1,5158,2540,2618,2097,2113,305,374,12,6,17,17,1,4,108,104,2204,2215,380,456,27,16,31,28,6,7,2403,2465,1982,1992,298,358,11,6,14,14,0,1,98,94,2079,2084,371,436,21,13,27,23,3,3,137,153,115,121,7,16,1,0,3,3,1,3,10,10,125,131,9,20,6,3,4,5,3,4 -050,01,077,Alabama,Lauderdale County,2,2,5466,2750,2716,2298,2251,309,348,15,7,19,21,3,0,106,89,2402,2339,394,416,33,15,27,34,3,2,2621,2610,2187,2158,300,339,13,7,18,19,2,0,101,87,2286,2244,383,406,28,15,26,32,2,1,129,106,111,93,9,9,2,0,1,2,1,0,5,2,116,95,11,10,5,0,1,2,1,1 -050,01,077,Alabama,Lauderdale County,2,3,5718,2867,2851,2458,2439,311,324,12,11,21,15,1,2,64,60,2518,2497,363,358,24,25,25,29,2,2,2772,2766,2376,2368,305,318,11,9,20,13,1,1,59,57,2431,2423,354,351,22,21,24,27,1,1,95,85,82,71,6,6,1,2,1,2,0,1,5,3,87,74,9,7,2,4,1,2,1,1 -050,01,077,Alabama,Lauderdale County,2,4,6699,3337,3362,2801,2771,439,491,9,14,34,24,0,0,54,62,2851,2829,475,529,25,38,39,31,1,0,3237,3258,2715,2682,434,485,9,13,28,21,0,0,51,57,2762,2735,468,521,24,34,33,28,1,0,100,104,86,89,5,6,0,1,6,3,0,0,3,5,89,94,7,8,1,4,6,3,0,0 -050,01,077,Alabama,Lauderdale County,2,5,7088,3566,3522,2920,2892,480,480,17,14,104,78,2,3,43,55,2958,2941,501,507,34,36,115,91,5,5,3447,3431,2826,2818,469,471,16,14,100,78,1,2,35,48,2857,2861,488,496,27,31,110,91,3,3,119,91,94,74,11,9,1,0,4,0,1,1,8,7,101,80,13,11,7,5,5,0,2,2 -050,01,077,Alabama,Lauderdale County,2,6,5328,2669,2659,2293,2245,284,328,11,13,45,41,5,2,31,30,2320,2270,292,342,32,26,51,48,5,4,2565,2582,2211,2181,278,326,9,13,42,36,2,0,23,26,2230,2202,286,338,23,24,47,43,2,2,104,77,82,64,6,2,2,0,3,5,3,2,8,4,90,68,6,4,9,2,4,5,3,2 -050,01,077,Alabama,Lauderdale County,2,7,4896,2401,2495,2097,2154,241,290,19,10,17,14,3,4,24,23,2117,2175,249,297,33,22,23,20,3,5,2308,2419,2016,2091,238,286,19,8,15,13,0,2,20,19,2032,2108,246,293,30,16,20,18,0,3,93,76,81,63,3,4,0,2,2,1,3,2,4,4,85,67,3,4,3,6,3,2,3,2 -050,01,077,Alabama,Lauderdale County,2,8,5530,2677,2853,2360,2511,258,271,14,16,20,28,3,1,22,26,2380,2532,264,280,30,34,22,31,3,3,2586,2777,2281,2443,254,268,13,14,17,27,1,0,20,25,2299,2463,259,277,28,31,19,30,1,2,91,76,79,68,4,3,1,2,3,1,2,1,2,1,81,69,5,3,2,3,3,1,2,1 -050,01,077,Alabama,Lauderdale County,2,9,5882,2885,2997,2600,2605,239,340,8,11,21,19,0,2,17,20,2616,2624,244,342,22,28,21,19,0,4,2823,2945,2542,2557,236,338,8,11,21,18,0,2,16,19,2557,2575,241,340,21,28,21,18,0,3,62,52,58,48,3,2,0,0,0,1,0,0,1,1,59,49,3,2,1,0,0,1,0,1 -050,01,077,Alabama,Lauderdale County,2,10,6523,3120,3403,2773,2974,297,374,11,17,12,20,1,0,26,18,2798,2990,299,377,32,32,15,23,4,0,3079,3369,2738,2943,295,374,10,16,12,19,0,0,24,17,2761,2958,297,376,30,31,15,22,2,0,41,34,35,31,2,0,1,1,0,1,1,0,2,1,37,32,2,1,2,1,0,1,2,0 -050,01,077,Alabama,Lauderdale County,2,11,6757,3178,3579,2845,3161,270,349,16,16,20,20,2,4,25,29,2869,3189,271,352,39,42,22,23,2,4,3137,3551,2814,3140,267,345,14,16,17,17,0,4,25,29,2838,3168,268,348,37,42,19,20,0,4,41,28,31,21,3,4,2,0,3,3,2,0,0,0,31,21,3,4,2,0,3,3,2,0 -050,01,077,Alabama,Lauderdale County,2,12,6295,3055,3240,2748,2897,254,291,12,7,15,14,0,0,26,31,2772,2924,257,298,35,33,20,18,2,1,3020,3212,2716,2871,254,290,12,7,13,13,0,0,25,31,2739,2898,256,297,34,33,17,17,1,1,35,28,32,26,0,1,0,0,2,1,0,0,1,0,33,26,1,1,1,0,3,1,1,0 -050,01,077,Alabama,Lauderdale County,2,13,5816,2744,3072,2510,2799,200,222,13,9,1,24,1,0,19,18,2529,2814,202,226,28,24,4,26,2,2,2729,3051,2498,2782,198,220,13,9,1,23,1,0,18,17,2516,2796,200,223,27,24,4,25,2,2,15,21,12,17,2,2,0,0,0,1,0,0,1,1,13,18,2,3,1,0,0,1,0,0 -050,01,077,Alabama,Lauderdale County,2,14,4735,2241,2494,2067,2282,140,179,6,4,11,14,1,0,16,15,2081,2296,143,181,19,17,12,16,2,0,2226,2482,2053,2271,140,178,6,4,11,14,1,0,15,15,2066,2285,142,180,19,17,12,16,2,0,15,12,14,11,0,1,0,0,0,0,0,0,1,0,15,11,1,1,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,2,15,3785,1685,2100,1564,1939,101,135,5,4,4,9,1,0,10,13,1574,1950,101,135,15,14,5,12,2,2,1672,2084,1552,1924,101,135,5,3,4,9,1,0,9,13,1561,1935,101,135,14,13,5,12,2,2,13,16,12,15,0,0,0,1,0,0,0,0,1,0,13,15,0,0,1,1,0,0,0,0 -050,01,077,Alabama,Lauderdale County,2,16,2989,1273,1716,1193,1595,73,107,1,2,2,4,1,0,3,8,1196,1603,74,109,4,9,2,4,1,0,1266,1706,1186,1585,73,107,1,2,2,4,1,0,3,8,1189,1593,74,109,4,9,2,4,1,0,7,10,7,10,0,0,0,0,0,0,0,0,0,0,7,10,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,2,17,2171,844,1327,799,1226,38,92,2,0,1,2,0,0,4,7,803,1233,38,93,6,5,1,2,0,1,838,1323,794,1222,38,92,1,0,1,2,0,0,4,7,798,1229,38,93,5,5,1,2,0,1,6,4,5,4,0,0,1,0,0,0,0,0,0,0,5,4,0,0,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,2,18,1873,547,1326,527,1243,17,74,1,1,1,1,0,0,1,7,528,1249,17,76,2,6,1,2,0,0,545,1322,525,1239,17,74,1,1,1,1,0,0,1,7,526,1245,17,76,2,6,1,2,0,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,3,0,92738,44419,48319,38957,42098,4264,5040,187,176,366,366,26,21,619,618,39534,42671,4574,5360,464,431,437,445,41,40,43303,47341,38024,41263,4204,4978,172,166,337,340,11,12,555,582,38544,41803,4484,5273,410,409,404,416,24,31,1116,978,933,835,60,62,15,10,29,26,15,9,64,36,990,868,90,87,54,22,33,29,17,9 -050,01,077,Alabama,Lauderdale County,3,1,5157,2542,2615,2101,2123,304,358,13,8,17,17,1,4,106,105,2203,2226,386,438,31,24,28,29,2,5,2409,2461,1990,2001,297,343,11,6,14,14,0,1,97,96,2084,2096,373,418,26,18,24,25,1,2,133,154,111,122,7,15,2,2,3,3,1,3,9,9,119,130,13,20,5,6,4,4,1,3 -050,01,077,Alabama,Lauderdale County,3,2,5426,2731,2695,2276,2229,309,347,15,8,20,22,3,0,108,89,2380,2313,385,414,38,21,33,35,4,2,2605,2590,2167,2137,301,338,13,8,19,20,2,0,103,87,2267,2219,375,404,32,21,32,32,3,2,126,105,109,92,8,9,2,0,1,2,1,0,5,2,113,94,10,10,6,0,1,3,1,0 -050,01,077,Alabama,Lauderdale County,3,3,5721,2870,2851,2456,2437,314,323,13,11,19,15,1,2,67,63,2521,2498,357,363,33,28,27,21,1,4,2773,2765,2371,2365,309,317,12,9,18,13,1,1,62,60,2432,2423,350,356,29,24,25,19,1,3,97,86,85,72,5,6,1,2,1,2,0,1,5,3,89,75,7,7,4,4,2,2,0,1 -050,01,077,Alabama,Lauderdale County,3,4,6657,3325,3332,2792,2748,436,480,9,16,34,25,0,0,54,63,2844,2804,468,519,25,38,40,34,2,2,3226,3234,2708,2662,430,476,9,15,28,23,0,0,51,58,2757,2714,461,511,23,35,34,32,2,2,99,98,84,86,6,4,0,1,6,2,0,0,3,5,87,90,7,8,2,3,6,2,0,0 -050,01,077,Alabama,Lauderdale County,3,5,7141,3580,3561,2927,2925,474,488,17,20,102,72,2,3,58,53,2977,2975,502,519,46,36,108,80,7,5,3442,3469,2831,2848,462,480,15,20,97,72,1,2,36,47,2861,2893,480,506,30,35,103,79,5,4,138,92,96,77,12,8,2,0,5,0,1,1,22,6,116,82,22,13,16,1,5,1,2,1 -050,01,077,Alabama,Lauderdale County,3,6,5322,2675,2647,2292,2239,291,320,10,14,46,43,5,1,31,30,2322,2268,304,334,26,25,51,47,5,3,2574,2570,2212,2176,285,318,8,14,43,36,2,0,24,26,2235,2201,295,329,19,24,47,40,2,2,101,77,80,63,6,2,2,0,3,7,3,1,7,4,87,67,9,5,7,1,4,7,3,1 -050,01,077,Alabama,Lauderdale County,3,7,4925,2423,2502,2113,2163,244,288,20,7,16,16,4,4,26,24,2138,2184,255,300,34,16,19,20,4,6,2330,2427,2034,2100,241,283,19,6,14,15,0,2,22,21,2055,2118,248,292,32,15,17,19,0,4,93,75,79,63,3,5,1,1,2,1,4,2,4,3,83,66,7,8,2,1,2,1,4,2 -050,01,077,Alabama,Lauderdale County,3,8,5453,2648,2805,2335,2468,254,270,13,17,20,26,3,1,23,23,2353,2488,260,278,30,30,24,29,4,4,2556,2729,2254,2400,251,267,12,15,17,25,1,0,21,22,2271,2419,256,274,28,28,20,28,2,3,92,76,81,68,3,3,1,2,3,1,2,1,2,1,82,69,4,4,2,2,4,1,2,1 -050,01,077,Alabama,Lauderdale County,3,9,5885,2877,3008,2591,2618,235,335,9,11,24,20,0,2,18,22,2606,2636,239,341,23,27,26,24,1,2,2815,2956,2533,2570,232,333,9,11,24,19,0,2,17,21,2547,2587,236,338,22,27,26,23,1,2,62,52,58,48,3,2,0,0,0,1,0,0,1,1,59,49,3,3,1,0,0,1,0,0 -050,01,077,Alabama,Lauderdale County,3,10,6510,3124,3386,2776,2958,297,372,11,18,13,22,1,0,26,16,2799,2972,300,374,31,31,17,25,3,0,3082,3350,2740,2925,295,372,10,17,13,21,0,0,24,15,2762,2938,298,374,28,29,17,24,1,0,42,36,36,33,2,0,1,1,0,1,1,0,2,1,37,34,2,0,3,2,0,1,2,0 -050,01,077,Alabama,Lauderdale County,3,11,6750,3167,3583,2834,3159,272,353,16,17,19,20,2,4,24,30,2854,3184,275,359,36,43,23,23,3,5,3127,3554,2804,3138,269,349,14,17,16,16,0,4,24,30,2824,3163,272,355,34,43,20,19,1,5,40,29,30,21,3,4,2,0,3,4,2,0,0,0,30,21,3,4,2,0,3,4,2,0 -050,01,077,Alabama,Lauderdale County,3,12,6328,3060,3268,2753,2924,255,290,12,8,15,15,0,0,25,31,2777,2954,257,296,32,32,18,16,1,2,3027,3239,2723,2897,255,289,12,8,13,14,0,0,24,31,2746,2927,257,295,31,32,16,15,1,2,33,29,30,27,0,1,0,0,2,1,0,0,1,0,31,27,0,1,1,0,2,1,0,0 -050,01,077,Alabama,Lauderdale County,3,13,5871,2779,3092,2539,2809,205,230,13,10,2,24,1,0,19,19,2556,2826,207,234,31,26,3,26,1,0,2762,3071,2525,2792,203,228,13,10,2,23,1,0,18,18,2541,2808,205,231,30,25,3,25,1,0,17,21,14,17,2,2,0,0,0,1,0,0,1,1,15,18,2,3,1,1,0,1,0,0 -050,01,077,Alabama,Lauderdale County,3,14,4725,2230,2495,2054,2284,140,177,7,4,11,14,1,0,17,16,2070,2299,143,178,22,18,12,16,1,0,2215,2483,2040,2273,140,176,7,4,11,14,1,0,16,16,2055,2288,142,177,22,18,12,16,1,0,15,12,14,11,0,1,0,0,0,0,0,0,1,0,15,11,1,1,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,3,15,3806,1714,2092,1592,1933,102,134,5,4,4,8,1,0,10,13,1602,1946,102,134,15,15,4,10,1,0,1701,2076,1580,1918,102,134,5,3,4,8,1,0,9,13,1589,1931,102,134,14,14,4,10,1,0,13,16,12,15,0,0,0,1,0,0,0,0,1,0,13,15,0,0,1,1,0,0,0,0 -050,01,077,Alabama,Lauderdale County,3,16,3005,1263,1742,1184,1618,73,110,1,2,2,4,1,0,2,8,1186,1624,74,112,3,9,2,5,1,0,1255,1730,1176,1606,73,110,1,2,2,4,1,0,2,8,1178,1612,74,112,3,9,2,5,1,0,8,12,8,12,0,0,0,0,0,0,0,0,0,0,8,12,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,3,17,2170,851,1319,803,1222,41,89,2,0,1,2,0,0,4,6,806,1228,42,89,6,5,1,3,0,0,846,1315,799,1218,41,89,1,0,1,2,0,0,4,6,802,1224,42,89,5,5,1,3,0,0,5,4,4,4,0,0,1,0,0,0,0,0,0,0,4,4,0,0,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,3,18,1886,560,1326,539,1241,18,76,1,1,1,1,0,0,1,7,540,1246,18,78,2,7,1,2,0,0,558,1322,537,1237,18,76,1,1,1,1,0,0,1,7,538,1242,18,78,2,7,1,2,0,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,4,0,92615,44352,48263,38833,41996,4293,5026,205,189,362,374,26,22,633,656,39428,42598,4626,5375,474,451,432,460,42,42,43222,47264,37901,41156,4231,4965,177,170,334,348,11,11,568,614,38436,41720,4529,5292,411,413,402,429,23,30,1130,999,932,840,62,61,28,19,28,26,15,11,65,42,992,878,97,83,63,38,30,31,19,12 -050,01,077,Alabama,Lauderdale County,4,1,5157,2585,2572,2124,2095,324,323,22,14,17,14,1,4,97,122,2215,2210,403,417,39,34,27,29,3,5,2447,2411,2017,1977,315,311,9,3,14,11,0,1,92,108,2104,2080,391,398,23,16,24,24,1,1,138,161,107,118,9,12,13,11,3,3,1,3,5,14,111,130,12,19,16,18,3,5,2,4 -050,01,077,Alabama,Lauderdale County,4,2,5277,2657,2620,2196,2152,312,346,14,9,14,22,3,1,118,90,2311,2239,401,414,33,25,27,31,4,2,2538,2508,2094,2056,305,336,12,9,13,20,2,0,112,87,2203,2140,391,402,28,24,26,29,3,1,119,112,102,96,7,10,2,0,1,2,1,1,6,3,108,99,10,12,5,1,1,2,1,1 -050,01,077,Alabama,Lauderdale County,4,3,5760,2861,2899,2434,2447,319,344,17,10,14,15,1,1,76,82,2507,2526,371,400,34,28,23,27,4,2,2755,2808,2340,2369,315,338,16,8,14,13,1,0,69,80,2406,2447,362,393,31,25,22,24,3,1,106,91,94,78,4,6,1,2,0,2,0,1,7,2,101,79,9,7,3,3,1,3,1,1 -050,01,077,Alabama,Lauderdale County,4,4,6448,3238,3210,2713,2650,420,448,10,23,37,26,0,0,58,63,2770,2703,452,490,29,45,44,35,3,1,3150,3120,2640,2572,416,444,10,22,30,25,0,0,54,57,2694,2619,448,484,26,41,36,33,2,1,88,90,73,78,4,4,0,1,7,1,0,0,4,6,76,84,4,6,3,4,8,2,1,0 -050,01,077,Alabama,Lauderdale County,4,5,7443,3639,3804,2999,3120,461,532,18,24,97,72,1,3,63,53,3058,3172,493,560,46,42,102,78,3,6,3490,3714,2893,3045,448,524,16,24,91,71,1,2,41,48,2931,3092,469,549,32,40,96,77,3,5,149,90,106,75,13,8,2,0,6,1,0,1,22,5,127,80,24,11,14,2,6,1,0,1 -050,01,077,Alabama,Lauderdale County,4,6,5262,2691,2571,2290,2177,311,310,10,10,47,47,4,3,29,24,2315,2198,325,322,26,22,52,50,5,3,2587,2484,2206,2106,304,306,8,10,45,41,2,1,22,20,2225,2123,314,316,19,20,50,44,3,1,104,87,84,71,7,4,2,0,2,6,2,2,7,4,90,75,11,6,7,2,2,6,2,2 -050,01,077,Alabama,Lauderdale County,4,7,5039,2490,2549,2154,2194,265,297,21,5,20,21,5,3,25,29,2176,2219,275,312,36,17,22,26,7,4,2396,2480,2080,2137,260,293,19,4,17,19,0,1,20,26,2097,2159,266,305,33,16,19,24,2,2,94,69,74,57,5,4,2,1,3,2,5,2,5,3,79,60,9,7,3,1,3,2,5,2 -050,01,077,Alabama,Lauderdale County,4,8,5134,2476,2658,2201,2322,228,269,13,17,11,26,4,2,19,22,2218,2343,232,274,27,30,15,29,4,4,2397,2576,2129,2249,226,266,12,15,10,25,1,1,19,20,2146,2268,230,271,26,26,14,28,1,3,79,82,72,73,2,3,1,2,1,1,3,1,0,2,72,75,2,3,1,4,1,1,3,1 -050,01,077,Alabama,Lauderdale County,4,9,5862,2857,3005,2555,2628,241,315,12,14,30,23,0,1,19,24,2573,2649,243,320,28,28,32,29,0,3,2785,2955,2493,2582,237,313,10,14,29,22,0,1,16,23,2508,2602,239,317,23,28,31,28,0,3,72,50,62,46,4,2,2,0,1,1,0,0,3,1,65,47,4,3,5,0,1,1,0,0 -050,01,077,Alabama,Lauderdale County,4,10,6345,3090,3255,2756,2850,279,360,10,13,21,19,1,0,23,13,2777,2860,284,363,27,23,25,21,1,1,3050,3223,2719,2820,279,360,9,13,21,18,0,0,22,12,2739,2830,283,362,25,22,25,20,0,1,40,32,37,30,0,0,1,0,0,1,1,0,1,1,38,30,1,1,2,1,0,1,1,0 -050,01,077,Alabama,Lauderdale County,4,11,6682,3141,3541,2810,3115,278,355,14,19,15,20,2,3,22,29,2829,3136,282,362,31,41,17,26,4,5,3099,3510,2777,3093,274,351,13,18,14,16,0,3,21,29,2796,3114,277,358,30,40,16,22,1,5,42,31,33,22,4,4,1,1,1,4,2,0,1,0,33,22,5,4,1,1,1,4,3,0 -050,01,077,Alabama,Lauderdale County,4,12,6409,3059,3350,2757,3003,250,290,12,9,16,17,0,1,24,30,2779,3030,253,295,34,34,18,19,0,2,3025,3317,2728,2971,249,290,12,9,13,16,0,1,23,30,2749,2998,251,295,33,34,15,18,0,2,34,33,29,32,1,0,0,0,3,1,0,0,1,0,30,32,2,0,1,0,3,1,0,0 -050,01,077,Alabama,Lauderdale County,4,13,6093,2906,3187,2643,2873,222,260,14,11,3,21,1,0,23,22,2665,2893,225,263,32,30,6,23,1,1,2887,3169,2626,2858,221,258,14,11,3,20,1,0,22,22,2647,2878,223,261,32,30,6,22,1,1,19,18,17,15,1,2,0,0,0,1,0,0,1,0,18,15,2,2,0,0,0,1,0,0 -050,01,077,Alabama,Lauderdale County,4,14,4696,2178,2518,1994,2308,147,174,7,5,11,14,1,0,18,17,2010,2325,149,175,25,16,11,17,1,2,2163,2501,1980,2294,146,172,7,5,11,14,1,0,18,16,1996,2310,148,173,25,16,11,16,1,2,15,17,14,14,1,2,0,0,0,0,0,0,0,1,14,15,1,2,0,0,0,1,0,0 -050,01,077,Alabama,Lauderdale County,4,15,3874,1794,2080,1673,1924,98,131,6,2,4,9,1,0,12,14,1684,1937,100,132,16,15,5,10,1,0,1780,2069,1661,1913,98,131,6,2,4,9,1,0,10,14,1670,1926,99,132,15,15,5,10,1,0,14,11,12,11,0,0,0,0,0,0,0,0,2,0,14,11,1,0,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,4,16,3061,1264,1797,1186,1665,72,117,2,3,2,4,0,0,2,8,1188,1673,72,119,4,9,2,4,0,0,1256,1783,1178,1652,72,117,2,2,2,4,0,0,2,8,1180,1660,72,119,4,8,2,4,0,0,8,14,8,13,0,0,0,1,0,0,0,0,0,0,8,13,0,0,0,1,0,0,0,0 -050,01,077,Alabama,Lauderdale County,4,17,2165,856,1309,805,1223,44,78,1,0,2,2,1,0,3,6,808,1229,44,78,3,5,3,2,1,1,851,1302,800,1216,44,78,1,0,2,2,1,0,3,6,803,1222,44,78,3,5,3,2,1,1,5,7,5,7,0,0,0,0,0,0,0,0,0,0,5,7,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,4,18,1908,570,1338,543,1250,22,77,2,1,1,2,0,0,2,8,545,1256,22,79,4,7,1,4,0,0,566,1334,540,1246,22,77,1,1,1,2,0,0,2,8,542,1252,22,79,3,7,1,4,0,0,4,4,3,4,0,0,1,0,0,0,0,0,0,0,3,4,0,0,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,5,0,92687,44307,48380,38715,42025,4326,5085,202,196,387,389,27,21,650,664,39324,42632,4658,5440,468,470,474,473,39,39,43223,47398,37836,41197,4258,5026,177,175,359,365,12,11,581,624,38382,41766,4556,5358,409,435,440,445,22,27,1084,982,879,828,68,59,25,21,28,24,15,10,69,40,942,866,102,82,59,35,34,28,17,12 -050,01,077,Alabama,Lauderdale County,5,1,4898,2456,2442,2010,1991,305,301,18,14,20,16,0,4,103,116,2111,2104,384,394,32,28,30,30,2,4,2342,2316,1923,1896,297,294,8,3,18,13,0,1,96,109,2017,2002,371,383,20,15,28,26,2,1,114,126,87,95,8,7,10,11,2,3,0,3,7,7,94,102,13,11,12,13,2,4,0,3 -050,01,077,Alabama,Lauderdale County,5,2,5289,2638,2651,2201,2165,300,372,12,10,20,19,4,0,101,85,2299,2248,375,437,26,23,35,28,4,1,2516,2539,2101,2075,290,358,10,9,19,18,2,0,94,79,2192,2152,360,418,22,20,34,27,2,1,122,112,100,90,10,14,2,1,1,1,2,0,7,6,107,96,15,19,4,3,1,1,2,0 -050,01,077,Alabama,Lauderdale County,5,3,5732,2858,2874,2410,2419,327,343,19,8,14,20,1,2,87,82,2494,2494,383,399,42,26,25,32,1,5,2757,2772,2323,2331,323,337,18,7,13,17,1,0,79,80,2399,2404,376,392,36,25,24,28,1,3,101,102,87,88,4,6,1,1,1,3,0,2,8,2,95,90,7,7,6,1,1,4,0,2 -050,01,077,Alabama,Lauderdale County,5,4,6445,3197,3248,2661,2657,414,476,14,22,38,24,1,0,69,69,2725,2717,459,521,36,45,47,34,2,1,3107,3159,2586,2579,410,473,14,20,32,23,1,0,64,64,2646,2635,451,515,34,41,40,33,2,0,90,89,75,78,4,3,0,2,6,1,0,0,5,5,79,82,8,6,2,4,7,1,0,1 -050,01,077,Alabama,Lauderdale County,5,5,7730,3762,3968,3088,3256,499,559,13,30,91,62,1,3,70,58,3151,3309,533,592,44,51,101,73,3,4,3624,3878,2994,3184,485,550,11,30,85,61,1,2,48,51,3037,3230,509,580,29,48,94,71,3,3,138,90,94,72,14,9,2,0,6,1,0,1,22,7,114,79,24,12,15,3,7,2,0,1 -050,01,077,Alabama,Lauderdale County,5,6,5275,2694,2581,2294,2188,311,304,11,8,48,58,2,1,28,22,2318,2210,323,314,26,17,54,60,2,2,2609,2503,2230,2124,302,299,10,8,45,52,1,1,21,19,2249,2143,311,307,21,16,49,54,1,2,85,78,64,64,9,5,1,0,3,6,1,0,7,3,69,67,12,7,5,1,5,6,1,0 -050,01,077,Alabama,Lauderdale County,5,7,5016,2442,2574,2118,2210,251,294,21,10,26,23,6,4,20,33,2135,2238,257,307,33,29,31,28,6,5,2342,2493,2038,2141,245,292,18,8,24,22,1,1,16,29,2051,2165,250,304,27,25,29,26,1,2,100,81,80,69,6,2,3,2,2,1,5,3,4,4,84,73,7,3,6,4,2,2,5,3 -050,01,077,Alabama,Lauderdale County,5,8,4964,2420,2544,2132,2203,236,264,15,15,14,34,4,2,19,26,2148,2223,241,271,25,32,19,40,6,5,2353,2471,2074,2139,234,262,14,14,12,32,1,1,18,23,2089,2157,238,267,24,30,17,38,3,3,67,73,58,64,2,2,1,1,2,2,3,1,1,3,59,66,3,4,1,2,2,2,3,2 -050,01,077,Alabama,Lauderdale County,5,9,5814,2856,2958,2540,2599,246,300,12,14,40,23,1,0,17,22,2557,2619,248,305,23,29,43,25,2,2,2779,2904,2472,2549,243,298,10,13,39,22,0,0,15,22,2487,2569,245,303,20,28,41,24,1,2,77,54,68,50,3,2,2,1,1,1,1,0,2,0,70,50,3,2,3,1,2,1,1,0 -050,01,077,Alabama,Lauderdale County,5,10,6223,3037,3186,2700,2801,279,345,11,9,21,15,1,1,25,15,2721,2815,281,350,31,19,25,16,4,2,2987,3145,2654,2764,278,344,10,9,21,14,0,1,24,13,2675,2776,280,347,29,19,25,15,2,2,50,41,46,37,1,1,1,0,0,1,1,0,1,2,46,39,1,3,2,0,0,1,2,0 -050,01,077,Alabama,Lauderdale County,5,11,6563,3095,3468,2769,3044,284,354,11,21,9,22,1,1,21,26,2788,3067,289,358,28,43,10,25,1,1,3061,3438,2743,3020,280,351,10,20,8,20,0,1,20,26,2761,3043,284,355,27,42,9,23,0,1,34,30,26,24,4,3,1,1,1,2,1,0,1,0,27,24,5,3,1,1,1,2,1,0 -050,01,077,Alabama,Lauderdale County,5,12,6539,3134,3405,2823,3029,248,310,13,11,20,19,1,3,29,33,2850,3059,251,314,39,38,22,23,1,4,3096,3374,2791,3000,247,309,13,11,17,18,0,3,28,33,2817,3030,250,313,38,38,19,22,0,4,38,31,32,29,1,1,0,0,3,1,1,0,1,0,33,29,1,1,1,0,3,1,1,0 -050,01,077,Alabama,Lauderdale County,5,13,5977,2812,3165,2539,2847,231,262,13,13,6,21,0,0,23,22,2560,2866,234,266,33,32,9,23,1,1,2789,3146,2518,2831,230,260,13,13,6,20,0,0,22,22,2538,2850,233,264,33,32,9,22,0,1,23,19,21,16,1,2,0,0,0,1,0,0,1,0,22,16,1,2,0,0,0,1,1,0 -050,01,077,Alabama,Lauderdale County,5,14,5059,2342,2717,2159,2498,149,181,8,5,8,15,1,0,17,18,2176,2515,149,183,24,21,9,15,1,1,2331,2700,2149,2483,148,180,8,5,8,15,1,0,17,17,2166,2499,148,182,24,20,9,15,1,1,11,17,10,15,1,1,0,0,0,0,0,0,0,1,10,16,1,1,0,1,0,0,0,0 -050,01,077,Alabama,Lauderdale County,5,15,4005,1846,2159,1713,1989,105,146,7,1,7,9,1,0,13,14,1726,1999,107,150,17,14,8,10,1,0,1831,2146,1699,1977,105,145,7,1,7,9,1,0,12,14,1711,1987,106,149,17,14,8,10,1,0,15,13,14,12,0,1,0,0,0,0,0,0,1,0,15,12,1,1,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,5,16,3026,1269,1757,1191,1622,71,119,1,4,1,4,1,0,4,8,1194,1629,73,120,3,9,2,6,1,1,1260,1744,1183,1610,71,119,1,3,1,4,1,0,3,8,1185,1617,73,120,3,8,1,6,1,1,9,13,8,12,0,0,0,1,0,0,0,0,1,0,9,12,0,0,0,1,1,0,0,0 -050,01,077,Alabama,Lauderdale County,5,17,2184,856,1328,801,1243,46,75,2,0,3,2,1,0,3,8,804,1249,46,78,5,7,3,2,1,0,851,1320,796,1235,46,75,2,0,3,2,1,0,3,8,799,1241,46,78,5,7,3,2,1,0,5,8,5,8,0,0,0,0,0,0,0,0,0,0,5,8,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,5,18,1948,593,1355,566,1264,24,80,1,1,1,3,0,0,1,7,567,1271,25,81,1,7,1,3,0,0,588,1350,562,1259,24,80,0,1,1,3,0,0,1,7,563,1266,25,81,0,7,1,3,0,0,5,5,4,5,0,0,1,0,0,0,0,0,0,0,4,5,0,0,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,6,0,92738,44290,48448,38767,42102,4281,5071,205,205,367,395,29,20,641,655,39371,42707,4622,5415,462,468,444,486,46,37,43185,47419,37871,41235,4213,5011,175,178,338,371,13,10,575,614,38415,41804,4517,5333,403,426,410,456,28,24,1105,1029,896,867,68,60,30,27,29,24,16,10,66,41,956,903,105,82,59,42,34,30,18,13 -050,01,077,Alabama,Lauderdale County,6,1,4817,2451,2366,2024,1955,299,266,13,17,18,17,0,4,97,107,2118,2057,377,349,25,29,29,31,2,7,2344,2233,1937,1850,293,263,4,3,16,15,0,1,94,101,2028,1946,369,343,15,14,27,28,2,3,107,133,87,105,6,3,9,14,2,2,0,3,3,6,90,111,8,6,10,15,2,3,0,4 -050,01,077,Alabama,Lauderdale County,6,2,5303,2635,2668,2182,2204,321,344,15,9,17,23,2,0,98,88,2276,2288,397,406,32,26,28,35,4,1,2505,2545,2075,2110,308,326,14,7,15,21,1,0,92,81,2164,2188,380,385,28,20,26,32,3,1,130,123,107,94,13,18,1,2,2,2,1,0,6,7,112,100,17,21,4,6,2,3,1,0 -050,01,077,Alabama,Lauderdale County,6,3,5623,2838,2785,2402,2333,313,348,19,9,17,17,3,2,84,76,2486,2405,369,403,38,26,27,27,4,3,2733,2671,2317,2231,308,345,16,8,16,14,2,0,74,73,2391,2300,358,398,31,24,26,24,3,1,105,114,85,102,5,3,3,1,1,3,1,2,10,3,95,105,11,5,7,2,1,3,1,2 -050,01,077,Alabama,Lauderdale County,6,4,6347,3138,3209,2622,2649,395,450,15,14,36,25,1,0,69,71,2688,2713,437,499,39,37,44,33,1,0,3049,3117,2544,2568,392,446,14,13,32,25,1,0,66,65,2607,2627,433,489,36,35,40,33,1,0,89,92,78,81,3,4,1,1,4,0,0,0,3,6,81,86,4,10,3,2,4,0,0,0 -050,01,077,Alabama,Lauderdale County,6,5,7987,3860,4127,3209,3363,502,604,10,37,71,60,1,2,67,61,3274,3420,534,639,37,57,79,70,3,4,3718,4025,3113,3281,491,594,5,36,64,58,1,1,44,55,3156,3334,512,627,21,54,71,66,2,1,142,102,96,82,11,10,5,1,7,2,0,1,23,6,118,86,22,12,16,3,8,4,1,3 -050,01,077,Alabama,Lauderdale County,6,6,5239,2665,2574,2261,2175,308,310,14,5,46,56,1,1,35,27,2291,2200,326,323,29,16,52,60,2,3,2584,2498,2201,2112,299,304,12,5,43,51,0,1,29,25,2226,2135,313,316,25,15,48,55,1,3,81,76,60,63,9,6,2,0,3,5,1,0,6,2,65,65,13,7,4,1,4,5,1,0 -050,01,077,Alabama,Lauderdale County,6,7,5070,2462,2608,2147,2226,245,313,19,15,28,22,7,3,16,29,2163,2250,249,328,28,28,29,28,9,4,2372,2532,2077,2162,239,312,16,13,26,20,3,1,11,24,2088,2181,240,323,23,25,27,26,5,2,90,76,70,64,6,1,3,2,2,2,4,2,5,5,75,69,9,5,5,3,2,2,4,2 -050,01,077,Alabama,Lauderdale County,6,8,4924,2406,2518,2117,2177,225,258,19,13,19,41,6,3,20,26,2133,2201,232,265,33,30,22,46,6,3,2334,2450,2059,2120,221,255,18,12,17,39,1,1,18,23,2073,2141,227,261,31,27,20,44,1,1,72,68,58,57,4,3,1,1,2,2,5,2,2,3,60,60,5,4,2,3,2,2,5,2 -050,01,077,Alabama,Lauderdale County,6,9,5754,2819,2935,2513,2572,237,301,13,20,36,24,1,0,19,18,2529,2589,243,306,27,31,39,27,1,0,2733,2870,2435,2512,235,299,11,17,35,24,0,0,17,18,2449,2529,240,304,23,28,38,27,0,0,86,65,78,60,2,2,2,3,1,0,1,0,2,0,80,60,3,2,4,3,1,0,1,0 -050,01,077,Alabama,Lauderdale County,6,10,6012,2903,3109,2590,2738,260,332,11,9,20,14,1,1,21,15,2609,2750,263,335,28,19,23,18,1,2,2844,3060,2536,2693,258,331,11,9,19,13,0,1,20,13,2555,2704,260,334,28,18,21,15,0,2,59,49,54,45,2,1,0,0,1,1,1,0,1,2,54,46,3,1,0,1,2,3,1,0 -050,01,077,Alabama,Lauderdale County,6,11,6407,3054,3353,2742,2949,265,339,11,18,14,20,1,1,21,26,2762,2969,267,344,26,41,18,22,2,3,3020,3325,2717,2927,261,336,9,17,13,18,0,1,20,26,2736,2947,262,341,24,40,17,20,1,3,34,28,25,22,4,3,2,1,1,2,1,0,1,0,26,22,5,3,2,1,1,2,1,0 -050,01,077,Alabama,Lauderdale County,6,12,6648,3147,3501,2823,3118,265,316,12,14,17,19,1,3,29,31,2848,3146,270,320,32,39,23,23,4,4,3109,3474,2789,3095,264,314,12,14,16,17,0,3,28,31,2813,3123,269,318,32,39,21,21,3,4,38,27,34,23,1,2,0,0,1,2,1,0,1,0,35,23,1,2,0,0,2,2,1,0 -050,01,077,Alabama,Lauderdale County,6,13,5997,2835,3162,2550,2836,238,274,12,10,11,18,0,0,24,24,2573,2856,241,279,34,28,11,21,1,2,2808,3143,2526,2818,237,273,12,10,9,18,0,0,24,24,2549,2838,240,278,34,28,9,21,1,2,27,19,24,18,1,1,0,0,2,0,0,0,0,0,24,18,1,1,0,0,2,0,0,0 -050,01,077,Alabama,Lauderdale County,6,14,5194,2403,2791,2210,2547,157,196,9,8,5,19,1,0,21,21,2228,2568,161,196,26,25,7,22,2,1,2392,2771,2201,2531,156,194,9,8,5,18,1,0,20,20,2219,2551,159,194,26,24,6,21,2,1,11,20,9,16,1,2,0,0,0,1,0,0,1,1,9,17,2,2,0,1,1,1,0,0 -050,01,077,Alabama,Lauderdale County,6,15,4173,1909,2264,1778,2090,102,152,8,2,7,8,1,0,13,12,1790,2102,105,153,19,12,7,9,1,0,1896,2255,1766,2082,102,151,8,2,7,8,1,0,12,12,1777,2094,105,152,18,12,7,9,1,0,13,9,12,8,0,1,0,0,0,0,0,0,1,0,13,8,0,1,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,6,16,3085,1305,1780,1223,1648,74,114,2,3,1,6,1,0,4,9,1226,1657,75,115,5,11,1,6,2,0,1293,1766,1212,1635,74,114,2,2,1,6,1,0,3,9,1215,1644,74,115,5,10,1,6,1,0,12,14,11,13,0,0,0,1,0,0,0,0,1,0,11,13,1,0,0,1,0,0,1,0 -050,01,077,Alabama,Lauderdale County,6,17,2162,855,1307,795,1222,53,74,2,1,2,3,1,0,2,7,797,1229,53,75,3,6,3,4,1,0,852,1298,792,1213,53,74,2,1,2,3,1,0,2,7,794,1220,53,75,3,6,3,4,1,0,3,9,3,9,0,0,0,0,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,6,18,1996,605,1391,579,1300,22,80,1,1,2,3,0,0,1,7,580,1307,23,80,1,7,2,4,0,0,599,1386,574,1295,22,80,0,1,2,3,0,0,1,7,575,1302,23,80,0,7,2,4,0,0,6,5,5,5,0,0,1,0,0,0,0,0,0,0,5,5,0,0,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,7,0,93049,44535,48514,38881,42057,4360,5144,207,214,367,398,30,21,690,680,39517,42691,4721,5499,488,486,465,486,48,42,43421,47469,37989,41184,4287,5077,176,185,339,374,14,10,616,639,38569,41780,4613,5411,416,444,419,455,28,28,1114,1045,892,873,73,67,31,29,28,24,16,11,74,41,948,911,108,88,72,42,46,31,20,14 -050,01,077,Alabama,Lauderdale County,7,1,4751,2437,2314,2005,1899,284,274,14,14,23,16,0,3,111,108,2115,2003,366,359,30,27,35,31,3,5,2332,2178,1925,1792,274,266,5,2,22,14,0,1,106,103,2030,1891,355,348,18,14,33,28,3,3,105,136,80,107,10,8,9,12,1,2,0,2,5,5,85,112,11,11,12,13,2,3,0,2 -050,01,077,Alabama,Lauderdale County,7,2,5282,2649,2633,2183,2167,325,338,17,12,19,24,2,1,103,91,2280,2254,401,405,36,29,32,33,3,3,2517,2505,2077,2069,313,324,15,8,16,21,1,0,95,83,2166,2149,386,386,30,23,28,30,2,0,132,128,106,98,12,14,2,4,3,3,1,1,8,8,114,105,15,19,6,6,4,3,1,3 -050,01,077,Alabama,Lauderdale County,7,3,5566,2820,2746,2376,2283,320,350,15,10,17,19,3,2,89,82,2462,2361,384,408,38,27,25,30,3,3,2703,2643,2281,2193,315,345,11,8,16,17,2,0,78,80,2356,2269,373,402,29,24,24,28,2,1,117,103,95,90,5,5,4,2,1,2,1,2,11,2,106,92,11,6,9,3,1,2,1,2 -050,01,077,Alabama,Lauderdale County,7,4,6343,3133,3210,2598,2664,406,442,15,11,36,25,2,0,76,68,2670,2726,454,485,37,31,44,36,4,1,3050,3114,2526,2579,401,437,14,10,34,24,2,0,73,64,2595,2637,448,477,35,30,41,34,4,1,83,96,72,85,5,5,1,1,2,1,0,0,3,4,75,89,6,8,2,1,3,2,0,0 -050,01,077,Alabama,Lauderdale County,7,5,8149,3958,4191,3277,3416,521,607,13,40,73,58,1,2,73,68,3331,3479,562,647,44,61,94,68,7,5,3823,4087,3186,3330,512,598,9,38,67,57,1,1,48,63,3230,3388,536,634,25,58,78,67,4,4,135,104,91,86,9,9,4,2,6,1,0,1,25,5,101,91,26,13,19,3,16,1,3,1 -050,01,077,Alabama,Lauderdale County,7,6,5356,2689,2667,2264,2215,337,360,17,7,29,53,1,1,41,31,2302,2244,354,372,37,19,38,59,1,4,2609,2598,2205,2162,327,353,16,7,24,49,0,1,37,26,2240,2187,343,364,33,16,31,53,0,4,80,69,59,53,10,7,1,0,5,4,1,0,4,5,62,57,11,8,4,3,7,6,1,0 -050,01,077,Alabama,Lauderdale County,7,7,5167,2545,2622,2238,2236,243,315,11,15,25,24,6,4,22,28,2257,2260,250,325,24,32,28,29,8,4,2464,2540,2177,2168,239,312,9,15,23,21,2,1,14,23,2188,2187,244,321,17,28,26,26,3,1,81,82,61,68,4,3,2,0,2,3,4,3,8,5,69,73,6,4,7,4,2,3,5,3 -050,01,077,Alabama,Lauderdale County,7,8,4860,2368,2492,2068,2141,229,278,21,10,25,34,5,3,20,26,2087,2164,232,286,34,24,29,37,6,7,2287,2419,2004,2082,223,274,18,7,23,33,1,1,18,22,2021,2101,225,281,30,21,27,34,2,4,81,73,64,59,6,4,3,3,2,1,4,2,2,4,66,63,7,5,4,3,2,3,4,3 -050,01,077,Alabama,Lauderdale County,7,9,5667,2778,2889,2459,2541,247,270,15,21,37,32,3,0,17,25,2473,2563,251,276,27,39,41,36,3,1,2704,2822,2395,2480,244,268,13,18,36,31,1,0,15,25,2408,2502,247,274,24,36,39,35,1,1,74,67,64,61,3,2,2,3,1,1,2,0,2,0,65,61,4,2,3,3,2,1,2,0 -050,01,077,Alabama,Lauderdale County,7,10,5828,2828,3000,2537,2635,242,323,10,11,21,15,1,1,17,15,2554,2648,243,328,25,19,22,19,1,1,2751,2956,2465,2595,240,322,10,11,20,14,0,1,16,13,2481,2607,241,325,24,19,21,17,0,1,77,44,72,40,2,1,0,0,1,1,1,0,1,2,73,41,2,3,1,0,1,2,1,0 -050,01,077,Alabama,Lauderdale County,7,11,6422,3077,3345,2753,2938,273,346,10,18,17,20,1,1,23,22,2774,2959,277,348,28,34,19,23,2,3,3045,3315,2729,2912,270,344,8,17,16,19,0,1,22,22,2749,2933,273,346,26,33,18,22,1,3,32,30,24,26,3,2,2,1,1,1,1,0,1,0,25,26,4,2,2,1,1,1,1,0 -050,01,077,Alabama,Lauderdale County,7,12,6593,3092,3501,2774,3120,265,309,13,18,14,21,1,3,25,30,2796,3147,268,315,32,41,19,24,2,4,3059,3472,2745,3097,263,306,13,18,13,18,0,3,25,30,2767,3124,266,312,32,41,18,21,1,4,33,29,29,23,2,3,0,0,1,3,1,0,0,0,29,23,2,3,0,0,1,3,1,0 -050,01,077,Alabama,Lauderdale County,7,13,6041,2883,3158,2597,2833,236,278,10,7,14,13,0,0,26,27,2621,2857,240,283,30,32,18,14,0,0,2849,3132,2567,2808,235,277,10,7,12,13,0,0,25,27,2590,2832,239,282,30,32,15,14,0,0,34,26,30,25,1,1,0,0,2,0,0,0,1,0,31,25,1,1,0,0,3,0,0,0 -050,01,077,Alabama,Lauderdale County,7,14,5425,2514,2911,2301,2642,175,216,12,12,2,20,1,0,23,21,2321,2662,179,219,31,31,4,21,2,1,2499,2894,2288,2629,174,214,12,12,2,19,1,0,22,20,2307,2648,177,217,31,30,4,20,2,1,15,17,13,13,1,2,0,0,0,1,0,0,1,1,14,14,2,2,0,1,0,1,0,0 -050,01,077,Alabama,Lauderdale County,7,15,4256,1935,2321,1797,2128,105,164,8,3,9,11,1,0,15,15,1812,2143,107,165,21,16,10,12,1,0,1923,2312,1786,2120,105,163,8,3,9,11,1,0,14,15,1800,2135,107,164,20,16,10,12,1,0,12,9,11,8,0,1,0,0,0,0,0,0,1,0,12,8,0,1,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,7,16,3142,1333,1809,1243,1679,76,112,4,2,2,7,1,0,7,9,1249,1688,76,114,11,9,3,7,1,0,1320,1792,1231,1663,76,112,4,1,2,7,1,0,6,9,1237,1672,76,114,10,8,2,7,1,0,13,17,12,16,0,0,0,1,0,0,0,0,1,0,12,16,0,0,1,1,1,0,0,0 -050,01,077,Alabama,Lauderdale County,7,17,2210,889,1321,835,1236,49,74,1,2,2,3,1,0,1,6,836,1241,50,75,1,7,2,4,1,0,884,1312,830,1227,49,74,1,2,2,3,1,0,1,6,831,1232,50,75,1,7,2,4,1,0,5,9,5,9,0,0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,7,18,1991,607,1384,576,1284,27,88,1,1,2,3,0,0,1,8,577,1292,27,89,2,8,2,3,0,0,602,1378,572,1278,27,88,0,1,2,3,0,0,1,8,573,1286,27,89,1,8,2,3,0,0,5,6,4,6,0,0,1,0,0,0,0,0,0,0,4,6,0,0,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,8,0,92524,44273,48251,38672,41889,4272,5045,212,209,366,386,30,22,721,700,39337,42542,4644,5417,495,485,474,481,51,37,43151,47132,37774,40945,4199,4979,181,177,339,361,14,10,644,660,38376,41560,4539,5332,423,436,430,450,29,23,1122,1119,898,944,73,66,31,32,27,25,16,12,77,40,961,982,105,85,72,49,44,31,22,14 -050,01,077,Alabama,Lauderdale County,8,1,4667,2412,2255,1975,1859,284,254,10,8,26,17,0,0,117,117,2086,1973,376,345,24,24,41,29,2,2,2309,2127,1891,1749,277,250,5,2,25,16,0,0,111,110,1997,1856,366,337,15,15,40,27,2,2,103,128,84,110,7,4,5,6,1,1,0,0,6,7,89,117,10,8,9,9,1,2,0,0 -050,01,077,Alabama,Lauderdale County,8,2,5169,2586,2583,2166,2141,294,322,17,13,17,19,1,3,91,85,2255,2222,359,385,35,26,25,30,4,5,2453,2433,2060,2025,283,309,12,6,14,16,0,0,84,77,2142,2100,345,368,26,16,22,25,3,1,133,150,106,116,11,13,5,7,3,3,1,3,7,8,113,122,14,17,9,10,3,5,1,4 -050,01,077,Alabama,Lauderdale County,8,3,5488,2755,2733,2321,2269,310,345,14,9,20,22,3,0,87,88,2403,2356,366,402,34,27,32,37,7,0,2649,2609,2232,2162,305,334,12,6,19,20,2,0,79,87,2307,2248,360,391,28,23,29,35,4,0,106,124,89,107,5,11,2,3,1,2,1,0,8,1,96,108,6,11,6,4,3,2,3,0 -050,01,077,Alabama,Lauderdale County,8,4,6188,3053,3135,2527,2606,393,417,16,12,33,30,1,2,83,68,2609,2665,443,464,41,33,42,40,1,3,2954,3036,2444,2523,386,412,14,10,32,27,1,0,77,64,2520,2578,435,457,35,30,40,36,1,1,99,99,83,83,7,5,2,2,1,3,0,2,6,4,89,87,8,7,6,3,2,4,0,2 -050,01,077,Alabama,Lauderdale County,8,5,8058,3904,4154,3257,3423,479,579,12,33,66,48,2,0,88,71,3329,3488,526,623,48,55,87,58,8,3,3781,4051,3180,3329,472,575,7,31,60,47,2,0,60,69,3236,3392,503,618,28,52,71,57,4,3,123,103,77,94,7,4,5,2,6,1,0,0,28,2,93,96,23,5,20,3,16,1,4,0 -050,01,077,Alabama,Lauderdale County,8,6,5435,2762,2673,2312,2206,344,359,14,17,41,50,2,4,49,37,2355,2242,367,376,34,31,52,56,3,5,2677,2603,2252,2154,331,352,12,15,36,46,1,3,45,33,2291,2186,351,367,31,28,47,51,2,4,85,70,60,52,13,7,2,2,5,4,1,1,4,4,64,56,16,9,3,3,5,5,1,1 -050,01,077,Alabama,Lauderdale County,8,7,5154,2539,2615,2216,2255,259,295,10,13,23,25,5,2,26,25,2240,2279,267,306,21,24,31,28,6,3,2455,2529,2151,2184,254,293,8,11,21,22,2,0,19,19,2168,2202,260,300,16,20,27,25,3,1,84,86,65,71,5,2,2,2,2,3,3,2,7,6,72,77,7,6,5,4,4,3,3,2 -050,01,077,Alabama,Lauderdale County,8,8,4839,2345,2494,2050,2135,218,286,20,10,26,32,5,5,26,26,2071,2159,225,294,38,24,32,37,5,6,2265,2417,1986,2071,212,283,18,7,25,31,1,2,23,23,2004,2092,219,290,34,20,30,36,1,2,80,77,64,64,6,3,2,3,1,1,4,3,3,3,67,67,6,4,4,4,2,1,4,4 -050,01,077,Alabama,Lauderdale County,8,9,5422,2620,2802,2319,2463,235,261,20,20,24,32,4,1,18,25,2334,2486,240,266,29,38,30,37,5,1,2546,2724,2257,2397,233,256,17,17,22,31,1,0,16,23,2270,2418,237,261,25,33,28,36,2,0,74,78,62,66,2,5,3,3,2,1,3,1,2,2,64,68,3,5,4,5,2,1,3,1 -050,01,077,Alabama,Lauderdale County,8,10,5800,2853,2947,2561,2586,237,309,13,10,29,21,0,1,13,20,2574,2605,239,314,24,24,29,25,0,1,2778,2894,2490,2536,234,308,13,10,28,20,0,1,13,19,2503,2554,236,312,24,23,28,24,0,1,75,53,71,50,3,1,0,0,1,1,0,0,0,1,71,51,3,2,0,1,1,1,0,0 -050,01,077,Alabama,Lauderdale County,8,11,6303,3026,3277,2711,2876,266,353,8,14,14,17,1,0,26,17,2736,2891,269,355,29,27,17,20,1,1,2987,3245,2677,2848,265,352,7,13,14,16,0,0,24,16,2700,2862,267,354,27,26,17,18,0,1,39,32,34,28,1,1,1,1,0,1,1,0,2,1,36,29,2,1,2,1,0,2,1,0 -050,01,077,Alabama,Lauderdale County,8,12,6480,3025,3455,2706,3068,259,316,17,20,16,19,2,4,25,28,2727,3095,263,320,37,41,21,22,2,5,2990,3428,2679,3048,256,312,16,20,14,16,0,4,25,28,2700,3075,260,316,36,41,19,19,0,5,35,27,27,20,3,4,1,0,2,3,2,0,0,0,27,20,3,4,1,0,2,3,2,0 -050,01,077,Alabama,Lauderdale County,8,13,6187,2947,3240,2658,2916,241,274,13,8,13,11,0,0,22,31,2679,2941,243,281,30,35,17,13,0,1,2911,3207,2626,2886,240,271,13,8,11,11,0,0,21,31,2646,2911,242,278,30,35,14,13,0,1,36,33,32,30,1,3,0,0,2,0,0,0,1,0,33,30,1,3,0,0,3,0,0,0 -050,01,077,Alabama,Lauderdale County,8,14,5619,2613,3006,2384,2718,189,232,14,12,2,23,1,0,23,21,2404,2735,194,236,34,32,2,24,2,0,2598,2988,2372,2704,187,230,14,12,2,22,1,0,22,20,2391,2720,191,234,34,31,2,23,2,0,15,18,12,14,2,2,0,0,0,1,0,0,1,1,13,15,3,2,0,1,0,1,0,0 -050,01,077,Alabama,Lauderdale County,8,15,4261,1939,2322,1784,2128,122,165,7,3,8,10,1,0,17,16,1801,2142,124,169,21,16,8,13,2,0,1927,2315,1773,2122,122,164,7,3,8,10,1,0,16,16,1789,2136,124,168,20,16,8,13,2,0,12,7,11,6,0,1,0,0,0,0,0,0,1,0,12,6,0,1,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,8,16,3186,1361,1825,1278,1695,64,110,5,4,4,4,1,0,9,12,1286,1706,65,112,13,14,4,5,2,0,1350,1810,1268,1681,64,110,5,3,4,4,1,0,8,12,1275,1692,65,112,12,13,4,5,2,0,11,15,10,14,0,0,0,1,0,0,0,0,1,0,11,14,0,0,1,1,0,0,0,0 -050,01,077,Alabama,Lauderdale County,8,17,2249,895,1354,844,1262,46,81,1,2,2,4,1,0,1,5,845,1266,46,82,2,7,2,4,1,0,888,1342,837,1250,46,81,1,2,2,4,1,0,1,5,838,1254,46,82,2,7,2,4,1,0,7,12,7,12,0,0,0,0,0,0,0,0,0,0,7,12,0,0,0,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,8,18,2019,638,1381,603,1283,32,87,1,1,2,2,0,0,0,8,603,1291,32,87,1,7,2,3,0,1,633,1374,599,1276,32,87,0,1,2,2,0,0,0,8,599,1284,32,87,0,7,2,3,0,1,5,7,4,7,0,0,1,0,0,0,0,0,0,0,4,7,0,0,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,9,0,92521,44227,48294,38623,41837,4238,5088,199,195,371,394,32,26,764,754,39347,42537,4641,5499,478,487,482,491,54,47,43073,47123,37704,40840,4159,5028,163,165,344,369,16,12,687,709,38357,41498,4528,5415,402,441,444,461,36,29,1154,1171,919,997,79,60,36,30,27,25,16,14,77,45,990,1039,113,84,76,46,38,30,18,18 -050,01,077,Alabama,Lauderdale County,9,1,4731,2438,2293,2003,1881,275,261,3,7,18,16,0,0,139,128,2140,2005,381,364,17,21,37,30,5,3,2333,2166,1913,1774,265,255,3,2,18,15,0,0,134,120,2045,1890,368,353,15,15,37,28,5,2,105,127,90,107,10,6,0,5,0,1,0,0,5,8,95,115,13,11,2,6,0,2,0,1 -050,01,077,Alabama,Lauderdale County,9,2,5012,2507,2505,2097,2062,281,310,15,11,20,22,1,4,93,96,2187,2157,350,380,30,27,31,31,3,7,2378,2364,1994,1952,274,302,7,4,16,19,0,0,87,87,2078,2039,341,367,20,16,24,27,2,3,129,141,103,110,7,8,8,7,4,3,1,4,6,9,109,118,9,13,10,11,7,4,1,4 -050,01,077,Alabama,Lauderdale County,9,3,5383,2704,2679,2268,2217,298,349,17,6,19,19,3,1,99,87,2363,2296,368,413,39,24,33,30,3,4,2602,2527,2186,2084,290,339,14,3,18,17,2,0,92,84,2274,2160,356,401,33,20,32,28,2,3,102,152,82,133,8,10,3,3,1,2,1,1,7,3,89,136,12,12,6,4,1,2,1,1 -050,01,077,Alabama,Lauderdale County,9,4,6243,3044,3199,2511,2617,397,448,14,11,33,39,1,2,88,82,2596,2691,454,503,40,34,42,51,2,4,2920,3093,2404,2526,390,443,12,8,33,37,1,0,80,79,2482,2597,443,495,32,30,41,49,2,2,124,106,107,91,7,5,2,3,0,2,0,2,8,3,114,94,11,8,8,4,1,2,0,2 -050,01,077,Alabama,Lauderdale County,9,5,7899,3836,4063,3184,3334,465,565,12,30,72,56,3,1,100,77,3276,3404,515,609,49,54,89,69,7,6,3710,3958,3105,3239,457,562,7,28,66,55,3,1,72,73,3171,3306,495,605,30,51,80,67,6,4,126,105,79,95,8,3,5,2,6,1,0,0,28,4,105,98,20,4,19,3,9,2,1,2 -050,01,077,Alabama,Lauderdale County,9,6,5678,2865,2813,2412,2332,348,389,18,9,41,36,1,4,45,43,2454,2372,369,412,36,23,50,45,2,4,2769,2736,2341,2271,337,383,14,9,34,30,1,3,42,40,2380,2308,356,405,31,23,43,37,2,3,96,77,71,61,11,6,4,0,7,6,0,1,3,3,74,64,13,7,5,0,7,8,0,1 -050,01,077,Alabama,Lauderdale County,9,7,5135,2581,2554,2209,2188,300,295,13,15,24,28,4,2,31,26,2237,2213,308,305,26,27,34,33,7,2,2501,2466,2154,2113,290,292,9,13,23,26,2,0,23,22,2175,2134,295,299,18,24,31,31,5,0,80,88,55,75,10,3,4,2,1,2,2,2,8,4,62,79,13,6,8,3,3,2,2,2 -050,01,077,Alabama,Lauderdale County,9,8,4941,2398,2543,2095,2193,234,277,16,8,23,33,6,4,24,28,2118,2219,241,284,31,27,27,37,6,5,2320,2465,2036,2130,228,275,14,5,21,31,1,1,20,23,2056,2152,232,280,27,21,24,35,1,1,78,78,59,63,6,2,2,3,2,2,5,3,4,5,62,67,9,4,4,6,3,2,5,4 -050,01,077,Alabama,Lauderdale County,9,9,5132,2458,2674,2190,2341,208,255,16,19,22,34,5,2,17,23,2203,2361,212,263,29,32,26,39,5,2,2384,2588,2125,2267,207,251,13,16,21,33,1,1,17,20,2138,2284,211,257,26,28,25,38,1,1,74,86,65,74,1,4,3,3,1,1,4,1,0,3,65,77,1,6,3,4,1,1,4,1 -050,01,077,Alabama,Lauderdale County,9,10,5743,2807,2936,2524,2568,224,310,11,12,33,23,1,1,14,22,2536,2587,225,315,22,28,35,27,3,1,2732,2882,2458,2518,220,308,9,12,32,22,1,1,12,21,2469,2536,220,313,19,27,34,26,2,1,75,54,66,50,4,2,2,0,1,1,0,0,2,1,67,51,5,2,3,1,1,1,1,0 -050,01,077,Alabama,Lauderdale County,9,11,6181,2992,3189,2692,2819,252,332,6,11,17,13,1,0,24,14,2714,2833,254,335,26,22,20,14,2,0,2948,3155,2651,2788,252,331,5,11,17,12,0,0,23,13,2672,2801,254,334,24,21,20,13,1,0,44,34,41,31,0,1,1,0,0,1,1,0,1,1,42,32,0,1,2,1,0,1,1,0 -050,01,077,Alabama,Lauderdale County,9,12,6432,3000,3432,2684,3029,266,331,14,21,14,20,2,3,20,28,2703,3055,268,333,29,44,17,24,3,4,2961,3404,2654,3008,262,327,13,20,13,18,0,3,19,28,2672,3034,264,329,27,43,16,22,1,4,39,28,30,21,4,4,1,1,1,2,2,0,1,0,31,21,4,4,2,1,1,2,2,0 -050,01,077,Alabama,Lauderdale County,9,13,6291,2946,3345,2673,3016,229,275,13,11,15,11,0,1,16,31,2689,3043,229,282,26,37,17,13,1,2,2916,3310,2648,2981,228,275,13,11,12,11,0,1,15,31,2663,3008,228,282,25,37,14,13,1,2,30,35,25,35,1,0,0,0,3,0,0,0,1,0,26,35,1,0,1,0,3,0,0,0 -050,01,077,Alabama,Lauderdale County,9,14,5893,2765,3128,2523,2812,199,254,15,13,3,24,1,1,24,24,2544,2833,203,258,36,34,4,27,2,2,2746,3110,2506,2799,198,250,15,13,3,23,1,1,23,24,2526,2820,202,254,35,34,4,26,2,2,19,18,17,13,1,4,0,0,0,1,0,0,1,0,18,13,1,4,1,0,0,1,0,0 -050,01,077,Alabama,Lauderdale County,9,15,4249,1914,2335,1756,2143,122,162,8,4,8,9,1,0,19,17,1775,2158,123,164,24,21,10,9,1,0,1904,2325,1747,2136,121,160,8,4,8,9,1,0,19,16,1766,2150,122,162,24,20,10,9,1,0,10,10,9,7,1,2,0,0,0,0,0,0,0,1,9,8,1,2,0,1,0,0,0,0 -050,01,077,Alabama,Lauderdale County,9,16,3253,1422,1831,1337,1707,65,104,5,3,4,3,1,0,10,14,1347,1719,65,106,14,16,5,4,1,0,1411,1820,1328,1696,65,104,5,3,4,3,1,0,8,14,1336,1708,65,106,13,16,4,4,1,0,11,11,9,11,0,0,0,0,0,0,0,0,2,0,11,11,0,0,1,0,1,0,0,0 -050,01,077,Alabama,Lauderdale County,9,17,2295,903,1392,855,1293,43,86,2,3,2,5,0,0,1,5,855,1298,44,86,3,8,2,5,0,0,896,1381,848,1283,43,86,2,2,2,5,0,0,1,5,848,1288,44,86,3,7,2,5,0,0,7,11,7,10,0,0,0,1,0,0,0,0,0,0,7,10,0,0,0,1,0,0,0,0 -050,01,077,Alabama,Lauderdale County,9,18,2030,647,1383,610,1285,32,85,1,1,3,3,1,0,0,9,610,1293,32,87,1,8,3,3,1,1,642,1373,606,1275,32,85,0,1,3,3,1,0,0,9,606,1283,32,87,0,8,3,3,1,1,5,10,4,10,0,0,1,0,0,0,0,0,0,0,4,10,0,0,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,10,0,92701,44374,48327,38700,41866,4249,5056,208,193,379,400,31,25,807,787,39469,42597,4709,5490,491,500,478,505,48,40,43143,47088,37718,40809,4166,4991,166,164,352,375,15,11,726,738,38411,41495,4583,5401,414,447,442,474,30,26,1231,1239,982,1057,83,65,42,29,27,25,16,14,81,49,1058,1102,126,89,77,53,36,31,18,14 -050,01,077,Alabama,Lauderdale County,10,1,4751,2485,2266,2028,1873,267,241,4,2,25,19,0,0,161,131,2186,1998,393,344,23,20,43,33,4,3,2368,2132,1927,1760,258,232,4,2,24,17,0,0,155,121,2079,1875,380,328,21,18,41,30,4,3,117,134,101,113,9,9,0,0,1,2,0,0,6,10,107,123,13,16,2,2,2,3,0,0 -050,01,077,Alabama,Lauderdale County,10,2,4930,2489,2441,2052,1992,303,306,13,11,17,20,2,4,102,108,2154,2096,379,391,27,31,29,29,3,4,2363,2307,1950,1886,297,297,4,4,14,17,2,0,96,103,2046,1987,369,378,18,21,25,26,2,0,126,134,102,106,6,9,9,7,3,3,0,4,6,5,108,109,10,13,9,10,4,3,1,4 -050,01,077,Alabama,Lauderdale County,10,3,5370,2668,2702,2255,2252,280,342,14,8,21,13,4,1,94,86,2345,2332,346,400,32,28,35,26,7,3,2557,2533,2169,2107,268,332,11,4,20,12,2,0,87,78,2252,2179,332,387,27,19,31,25,5,2,111,169,86,145,12,10,3,4,1,1,2,1,7,8,93,153,14,13,5,9,4,1,2,1 -050,01,077,Alabama,Lauderdale County,10,4,6218,3061,3157,2513,2561,413,444,16,8,33,44,1,2,85,98,2596,2650,468,514,38,36,44,55,1,3,2948,3038,2418,2457,406,441,14,6,32,41,1,0,77,93,2493,2541,458,507,31,33,43,52,1,1,113,119,95,104,7,3,2,2,1,3,0,2,8,5,103,109,10,7,7,3,1,3,0,2 -050,01,077,Alabama,Lauderdale County,10,5,7811,3736,4075,3091,3351,450,549,15,33,75,63,0,0,105,79,3189,3425,510,597,53,57,87,75,3,3,3579,3974,2981,3259,441,545,12,31,69,63,0,0,76,76,3052,3330,487,591,35,54,79,74,3,3,157,101,110,92,9,4,3,2,6,0,0,0,29,3,137,95,23,6,18,3,8,1,0,0 -050,01,077,Alabama,Lauderdale County,10,6,5825,2977,2848,2498,2351,362,415,19,11,46,28,1,4,51,39,2545,2386,385,436,39,24,56,35,3,6,2877,2759,2424,2281,352,408,13,9,41,22,1,3,46,36,2466,2314,374,427,29,21,51,28,3,5,100,89,74,70,10,7,6,2,5,6,0,1,5,3,79,72,11,9,10,3,5,7,0,1 -050,01,077,Alabama,Lauderdale County,10,7,5101,2560,2541,2197,2172,291,299,16,12,20,30,2,1,34,27,2227,2199,305,308,31,26,29,35,2,1,2478,2444,2143,2089,281,293,9,10,18,29,1,0,26,23,2167,2112,290,301,21,21,25,34,1,0,82,97,54,83,10,6,7,2,2,1,1,1,8,4,60,87,15,7,10,5,4,1,1,1 -050,01,077,Alabama,Lauderdale County,10,8,5032,2445,2587,2121,2251,257,259,15,8,20,32,7,5,25,32,2145,2282,266,266,29,27,22,38,8,6,2366,2504,2062,2183,250,256,12,6,19,31,2,1,21,27,2082,2209,255,262,26,22,21,36,3,2,79,83,59,68,7,3,3,2,1,1,5,4,4,5,63,73,11,4,3,5,1,2,5,4 -050,01,077,Alabama,Lauderdale County,10,9,4973,2406,2567,2157,2238,190,258,16,18,19,30,5,2,19,21,2172,2255,196,264,30,31,22,36,5,3,2324,2486,2083,2169,189,255,15,15,17,28,1,1,19,18,2098,2184,195,261,29,25,20,33,1,2,82,81,74,69,1,3,1,3,2,2,4,1,0,3,74,71,1,3,1,6,2,3,4,1 -050,01,077,Alabama,Lauderdale County,10,10,5772,2797,2975,2508,2612,228,303,13,12,35,26,2,0,11,22,2519,2632,232,307,21,27,36,30,2,1,2719,2919,2441,2563,225,301,9,9,34,24,1,0,9,22,2450,2583,227,305,15,24,35,28,1,1,78,56,67,49,3,2,4,3,1,2,1,0,2,0,69,49,5,2,6,3,1,2,1,0 -050,01,077,Alabama,Lauderdale County,10,11,6089,2964,3125,2665,2762,246,326,7,10,20,10,1,1,25,16,2688,2777,250,329,27,23,23,12,1,1,2905,3080,2611,2722,244,324,6,10,20,9,0,1,24,14,2633,2735,247,327,26,22,23,10,0,1,59,45,54,40,2,2,1,0,0,1,1,0,1,2,55,42,3,2,1,1,0,2,1,0 -050,01,077,Alabama,Lauderdale County,10,12,6359,2992,3367,2678,2979,272,317,11,18,11,26,1,1,19,26,2696,3001,275,323,26,40,13,30,1,1,2957,3338,2651,2955,268,314,10,17,10,25,0,1,18,26,2668,2977,271,320,24,39,12,29,0,1,35,29,27,24,4,3,1,1,1,1,1,0,1,0,28,24,4,3,2,1,1,1,1,0 -050,01,077,Alabama,Lauderdale County,10,13,6301,2952,3349,2682,2989,214,292,16,15,20,16,1,3,19,34,2700,3021,217,298,32,45,22,19,1,3,2912,3311,2648,2953,213,291,16,15,17,15,0,3,18,34,2665,2985,215,297,32,45,19,18,0,3,40,38,34,36,1,1,0,0,3,1,1,0,1,0,35,36,2,1,0,0,3,1,1,0 -050,01,077,Alabama,Lauderdale County,10,14,5807,2680,3127,2431,2825,208,244,13,13,4,22,0,1,24,22,2453,2844,216,247,33,32,4,25,0,1,2661,3110,2414,2810,207,243,13,13,4,21,0,1,23,22,2435,2829,214,246,33,32,4,24,0,1,19,17,17,15,1,1,0,0,0,1,0,0,1,0,18,15,2,1,0,0,0,1,0,0 -050,01,077,Alabama,Lauderdale County,10,15,4631,2104,2527,1955,2325,118,170,9,7,3,8,1,0,18,17,1972,2340,119,171,26,20,3,12,2,1,2094,2513,1946,2313,117,169,9,7,3,8,1,0,18,16,1963,2327,118,170,26,19,3,12,2,1,10,14,9,12,1,1,0,0,0,0,0,0,0,1,9,13,1,1,0,1,0,0,0,0 -050,01,077,Alabama,Lauderdale County,10,16,3376,1470,1906,1364,1764,79,122,8,1,5,5,1,0,13,14,1375,1776,81,125,19,14,5,5,3,0,1461,1896,1357,1755,79,121,7,1,5,5,1,0,12,14,1368,1767,80,124,18,14,5,5,2,0,9,10,7,9,0,1,1,0,0,0,0,0,1,0,7,9,1,1,1,0,0,0,1,0 -050,01,077,Alabama,Lauderdale County,10,17,2285,921,1364,870,1271,46,80,1,5,1,3,1,0,2,5,872,1276,46,80,3,9,1,4,1,0,914,1353,864,1261,46,80,1,4,1,3,1,0,1,5,865,1266,46,80,2,8,1,4,1,0,7,11,6,10,0,0,0,1,0,0,0,0,1,0,7,10,0,0,1,1,0,0,0,0 -050,01,077,Alabama,Lauderdale County,10,18,2070,667,1403,635,1298,25,89,2,1,4,5,1,0,0,10,635,1307,25,90,2,10,4,6,1,0,660,1391,629,1286,25,89,1,1,4,5,1,0,0,10,629,1295,25,90,1,10,4,6,1,0,7,12,6,12,0,0,1,0,0,0,0,0,0,0,6,12,0,0,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,11,0,92733,44506,48227,38770,41760,4294,5039,219,191,360,415,31,26,832,796,39553,42497,4763,5484,499,483,482,519,55,49,43213,46926,37737,40649,4199,4966,178,165,331,389,16,11,752,746,38455,41339,4625,5380,426,439,433,487,34,34,1293,1301,1033,1111,95,73,41,26,29,26,15,15,80,50,1098,1158,138,104,73,44,49,32,21,15 -050,01,077,Alabama,Lauderdale County,11,1,4817,2495,2322,2019,1923,287,249,3,2,26,23,0,0,160,125,2172,2044,414,345,22,17,46,38,3,3,2369,2184,1916,1807,273,239,3,2,23,21,0,0,154,115,2063,1919,397,330,19,14,43,33,3,3,126,138,103,116,14,10,0,0,3,2,0,0,6,10,109,125,17,15,3,3,3,5,0,0 -050,01,077,Alabama,Lauderdale County,11,2,4853,2486,2367,2065,1933,281,289,13,12,17,21,4,4,106,108,2168,2036,361,371,28,31,31,32,5,5,2358,2237,1960,1825,273,284,5,5,15,19,4,0,101,104,2058,1924,350,363,19,23,28,30,5,1,128,130,105,108,8,5,8,7,2,2,0,4,5,4,110,112,11,8,9,8,3,2,0,4 -050,01,077,Alabama,Lauderdale County,11,3,5314,2632,2682,2199,2235,311,339,12,6,15,15,2,1,93,86,2288,2316,374,399,33,23,26,28,4,4,2509,2504,2101,2085,296,325,10,4,13,12,1,0,88,78,2186,2159,357,379,27,18,24,24,3,3,123,178,98,150,15,14,2,2,2,3,1,1,5,8,102,157,17,20,6,5,2,4,1,1 -050,01,077,Alabama,Lauderdale County,11,4,6133,3052,3081,2500,2472,407,461,19,9,35,39,3,2,88,98,2584,2560,462,528,41,36,50,52,3,4,2933,2946,2404,2356,400,457,16,6,33,36,2,0,78,91,2478,2437,453,520,34,31,44,48,2,2,119,135,96,116,7,4,3,3,2,3,1,2,10,7,106,123,9,8,7,5,6,4,1,2 -050,01,077,Alabama,Lauderdale County,11,5,7812,3773,4039,3132,3339,443,517,17,27,69,81,0,0,112,75,3227,3410,506,563,57,50,94,92,7,2,3620,3929,3019,3239,436,511,15,26,65,81,0,0,85,72,3099,3307,484,555,41,48,79,92,3,2,153,110,113,100,7,6,2,1,4,0,0,0,27,3,128,103,22,8,16,2,15,0,4,0 -050,01,077,Alabama,Lauderdale County,11,6,5957,3008,2949,2551,2440,356,421,20,15,29,22,0,3,52,48,2601,2485,381,445,37,31,40,32,3,5,2899,2855,2471,2364,343,414,14,13,25,16,0,2,46,46,2515,2407,365,437,30,28,35,26,2,4,109,94,80,76,13,7,6,2,4,6,0,1,6,2,86,78,16,8,7,3,5,6,1,1 -050,01,077,Alabama,Lauderdale County,11,7,5110,2580,2530,2185,2152,314,309,17,8,24,28,1,2,39,31,2223,2181,330,322,35,19,31,37,1,2,2506,2439,2136,2075,307,300,9,7,22,28,0,1,32,28,2168,2101,317,311,24,17,29,37,0,1,74,91,49,77,7,9,8,1,2,0,1,1,7,3,55,80,13,11,11,2,2,0,1,1 -050,01,077,Alabama,Lauderdale County,11,8,5100,2468,2632,2161,2277,239,271,17,12,21,34,6,4,24,34,2184,2308,248,283,30,30,25,39,6,6,2390,2544,2103,2203,232,270,14,10,20,32,2,1,19,28,2121,2228,237,278,27,26,23,37,2,3,78,88,58,74,7,1,3,2,1,2,4,3,5,6,63,80,11,5,3,4,2,2,4,3 -050,01,077,Alabama,Lauderdale County,11,9,4811,2353,2458,2087,2146,201,249,15,11,21,22,6,3,23,27,2108,2165,209,261,28,28,25,26,6,5,2268,2374,2018,2077,196,243,14,10,17,19,1,1,22,24,2038,2093,203,254,27,25,21,23,1,3,85,84,69,69,5,6,1,1,4,3,5,2,1,3,70,72,6,7,1,3,4,3,5,2 -050,01,077,Alabama,Lauderdale County,11,10,5743,2800,2943,2511,2581,225,295,16,17,33,31,2,0,13,19,2524,2597,228,301,26,27,33,36,3,2,2716,2880,2437,2526,223,293,12,12,32,31,1,0,11,18,2448,2541,225,298,21,21,32,36,2,2,84,63,74,55,2,2,4,5,1,0,1,0,2,1,76,56,3,3,5,6,1,0,1,0 -050,01,077,Alabama,Lauderdale County,11,11,5939,2856,3083,2557,2725,248,318,8,9,19,14,1,1,23,16,2579,2739,252,322,26,21,20,15,2,2,2781,3036,2487,2683,245,317,8,9,19,12,0,1,22,14,2508,2695,248,320,26,20,20,13,1,2,75,47,70,42,3,1,0,0,0,2,1,0,1,2,71,44,4,2,0,1,0,2,1,0 -050,01,077,Alabama,Lauderdale County,11,12,6247,2983,3264,2682,2885,258,313,10,17,12,23,1,1,20,25,2702,2909,260,317,23,38,14,23,4,2,2947,3230,2655,2856,254,310,8,16,11,22,0,1,19,25,2674,2880,256,314,21,37,13,22,2,2,36,34,27,29,4,3,2,1,1,1,1,0,1,0,28,29,4,3,2,1,1,1,2,0 -050,01,077,Alabama,Lauderdale County,11,13,6382,2974,3408,2691,3055,234,284,14,19,18,15,0,3,17,32,2708,3085,236,289,26,46,21,16,0,4,2933,3375,2653,3025,233,282,14,19,17,14,0,3,16,32,2669,3055,234,287,26,46,20,15,0,4,41,33,38,30,1,2,0,0,1,1,0,0,1,0,39,30,2,2,0,0,1,1,0,0 -050,01,077,Alabama,Lauderdale County,11,14,5740,2678,3062,2425,2756,207,251,13,10,8,19,1,2,24,24,2446,2777,211,257,33,30,9,20,3,3,2654,3040,2404,2735,206,251,13,10,6,19,1,1,24,24,2425,2756,210,257,33,30,7,20,3,2,24,22,21,21,1,0,0,0,2,0,0,1,0,0,21,21,1,0,0,0,2,0,0,1 -050,01,077,Alabama,Lauderdale County,11,15,4801,2193,2608,2025,2378,132,188,12,9,2,13,1,0,21,20,2044,2397,137,191,29,24,2,16,2,0,2182,2588,2016,2362,131,186,12,9,2,12,1,0,20,19,2034,2381,135,188,29,24,2,14,2,0,11,20,9,16,1,2,0,0,0,1,0,0,1,1,10,16,2,3,0,0,0,2,0,0 -050,01,077,Alabama,Lauderdale County,11,16,3573,1551,2022,1448,1876,75,128,8,2,6,5,1,0,13,11,1460,1887,77,128,18,12,8,6,1,0,1541,2014,1439,1869,75,127,8,2,6,5,1,0,12,11,1451,1880,77,127,17,12,7,6,1,0,10,8,9,7,0,1,0,0,0,0,0,0,1,0,9,7,0,1,1,0,1,0,0,0 -050,01,077,Alabama,Lauderdale County,11,17,2303,920,1383,865,1289,46,78,3,4,1,4,1,0,4,8,868,1296,47,81,5,10,3,4,1,0,910,1367,857,1274,46,78,2,3,1,4,1,0,3,8,859,1281,47,81,4,9,2,4,1,0,10,16,8,15,0,0,1,1,0,0,0,0,1,0,9,15,0,0,1,1,1,0,0,0 -050,01,077,Alabama,Lauderdale County,11,18,2098,704,1394,667,1298,30,79,2,2,4,6,1,0,0,9,667,1305,30,81,2,10,4,7,1,0,697,1384,661,1288,30,79,1,2,4,6,1,0,0,9,661,1295,30,81,1,10,4,7,1,0,7,10,6,10,0,0,1,0,0,0,0,0,0,0,6,10,0,0,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,12,0,93028,44593,48435,38817,41939,4311,5021,224,192,382,438,35,28,824,817,39576,42697,4762,5478,537,497,501,543,63,54,43294,47077,37781,40778,4222,4949,178,163,350,412,20,14,743,761,38478,41482,4631,5375,448,449,455,510,37,33,1299,1358,1036,1161,89,72,46,29,32,26,15,14,81,56,1098,1215,131,103,89,48,46,33,26,21 -050,01,077,Alabama,Lauderdale County,12,1,4758,2442,2316,1977,1907,310,266,8,5,32,26,0,0,115,112,2084,2013,400,357,24,18,48,37,2,3,2313,2172,1875,1789,298,255,4,2,27,24,0,0,109,102,1977,1885,384,340,18,12,42,35,1,2,129,144,102,118,12,11,4,3,5,2,0,0,6,10,107,128,16,17,6,6,6,2,1,1 -050,01,077,Alabama,Lauderdale County,12,2,4841,2500,2341,2064,1924,286,266,12,7,18,20,6,3,114,121,2175,2042,373,359,28,23,31,35,8,4,2384,2207,1973,1808,275,261,4,3,17,19,6,0,109,116,2079,1922,358,351,19,19,30,32,8,0,116,134,91,116,11,5,8,4,1,1,0,3,5,5,96,120,15,8,9,4,1,3,0,4 -050,01,077,Alabama,Lauderdale County,12,3,5312,2628,2684,2208,2240,301,332,8,8,15,18,3,2,93,84,2297,2318,365,391,27,29,27,27,5,5,2497,2492,2100,2076,289,322,7,4,12,15,2,1,87,74,2184,2144,351,375,22,20,24,24,3,3,131,192,108,164,12,10,1,4,3,3,1,1,6,10,113,174,14,16,5,9,3,3,2,2 -050,01,077,Alabama,Lauderdale County,12,4,6167,3071,3096,2506,2469,411,471,20,9,41,39,3,3,90,105,2595,2564,469,544,45,36,53,55,3,7,2938,2952,2398,2350,403,463,16,5,39,36,2,1,80,97,2477,2437,457,529,36,31,49,50,2,4,133,144,108,119,8,8,4,4,2,3,1,2,10,8,118,127,12,15,9,5,4,5,1,3 -050,01,077,Alabama,Lauderdale County,12,5,7799,3727,4072,3073,3378,433,500,19,23,75,92,0,0,127,79,3179,3454,508,549,63,45,103,103,10,3,3592,3957,2974,3275,425,494,19,22,73,91,0,0,101,75,3067,3347,484,541,49,42,91,102,4,3,135,115,99,103,8,6,0,1,2,1,0,0,26,4,112,107,24,8,14,3,12,1,6,0 -050,01,077,Alabama,Lauderdale County,12,6,6032,3062,2970,2598,2465,362,409,22,15,29,26,0,2,51,53,2643,2512,386,438,44,33,38,35,2,5,2945,2880,2506,2390,355,404,13,13,24,20,0,1,47,52,2547,2436,378,433,32,31,33,28,2,4,117,90,92,75,7,5,9,2,5,6,0,1,4,1,96,76,8,5,12,2,5,7,0,1 -050,01,077,Alabama,Lauderdale County,12,7,5131,2570,2561,2194,2173,305,319,15,7,22,31,1,3,33,28,2225,2200,318,334,30,19,30,34,2,4,2504,2475,2150,2102,299,311,8,6,18,31,0,2,29,23,2177,2124,310,324,21,16,26,34,1,2,66,86,44,71,6,8,7,1,4,0,1,1,4,5,48,76,8,10,9,3,4,0,1,2 -050,01,077,Alabama,Lauderdale County,12,8,5136,2504,2632,2197,2261,235,292,11,11,23,26,7,5,31,37,2224,2294,248,304,31,32,24,34,9,6,2420,2533,2133,2176,230,288,9,11,22,24,3,2,23,32,2154,2205,239,297,24,29,23,31,4,3,84,99,64,85,5,4,2,0,1,2,4,3,8,5,70,89,9,7,7,3,1,3,5,3 -050,01,077,Alabama,Lauderdale County,12,9,4775,2327,2448,2047,2148,208,241,18,10,21,22,4,3,29,24,2073,2169,214,246,38,25,26,28,6,4,2236,2355,1978,2070,201,237,15,7,17,20,0,1,25,20,2001,2087,206,241,33,20,21,25,0,2,91,93,69,78,7,4,3,3,4,2,4,2,4,4,72,82,8,5,5,5,5,3,6,2 -050,01,077,Alabama,Lauderdale County,12,10,5590,2712,2878,2412,2540,229,260,17,20,34,36,4,0,16,22,2427,2561,231,265,29,34,37,41,4,0,2630,2818,2342,2489,226,258,13,15,33,35,2,0,14,21,2356,2509,227,263,23,28,36,40,2,0,82,60,70,51,3,2,4,5,1,1,2,0,2,1,71,52,4,2,6,6,1,1,2,0 -050,01,077,Alabama,Lauderdale County,12,11,5799,2805,2994,2537,2645,222,310,10,8,17,14,1,1,18,16,2555,2661,223,313,23,17,20,17,2,2,2732,2941,2468,2597,220,309,10,8,17,12,0,1,17,14,2485,2611,221,311,22,17,20,15,1,1,73,53,69,48,2,1,0,0,0,2,1,0,1,2,70,50,2,2,1,0,0,2,1,1 -050,01,077,Alabama,Lauderdale County,12,12,6312,3019,3293,2706,2903,266,325,7,19,14,22,1,1,25,23,2727,2925,272,329,28,37,17,24,2,1,2980,3257,2676,2870,262,323,5,18,13,22,0,1,24,23,2696,2892,267,327,26,36,16,24,1,1,39,36,30,33,4,2,2,1,1,0,1,0,1,0,31,33,5,2,2,1,1,0,1,0 -050,01,077,Alabama,Lauderdale County,12,13,6427,2961,3466,2678,3111,237,280,17,21,16,19,0,3,13,32,2690,3140,239,284,27,48,18,21,0,5,2929,3437,2649,3087,235,277,17,21,15,17,0,3,13,32,2661,3116,237,281,27,48,17,19,0,5,32,29,29,24,2,3,0,0,1,2,0,0,0,0,29,24,2,3,0,0,1,2,0,0 -050,01,077,Alabama,Lauderdale County,12,14,5781,2749,3032,2498,2726,199,255,11,7,13,14,1,1,27,29,2522,2750,202,260,34,33,15,16,3,2,2717,3002,2470,2697,198,255,11,7,11,14,1,0,26,29,2493,2721,201,260,33,33,13,16,3,1,32,30,28,29,1,0,0,0,2,0,0,1,1,0,29,29,1,0,1,0,2,0,0,1 -050,01,077,Alabama,Lauderdale County,12,15,4996,2271,2725,2087,2471,148,204,13,13,2,15,1,1,20,21,2107,2488,150,208,30,32,3,16,1,3,2257,2706,2075,2456,147,202,13,13,2,14,1,1,19,20,2094,2472,148,206,30,32,3,15,1,2,14,19,12,15,1,2,0,0,0,1,0,0,1,1,13,16,2,2,0,0,0,1,0,1 -050,01,077,Alabama,Lauderdale County,12,16,3681,1589,2092,1480,1929,79,137,9,3,5,8,1,0,15,15,1491,1942,83,141,24,16,5,9,1,0,1580,2085,1472,1923,79,136,9,3,5,8,1,0,14,15,1482,1936,83,140,23,16,5,9,1,0,9,7,8,6,0,1,0,0,0,0,0,0,1,0,9,6,0,1,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,12,17,2333,924,1409,863,1318,47,77,5,3,1,4,1,0,7,7,870,1324,48,78,10,10,2,4,2,0,915,1391,856,1301,47,77,4,2,1,4,1,0,6,7,862,1307,47,78,9,9,2,4,2,0,9,18,7,17,0,0,1,1,0,0,0,0,1,0,8,17,1,0,1,1,0,0,0,0 -050,01,077,Alabama,Lauderdale County,12,18,2158,732,1426,692,1331,33,77,2,3,4,6,1,0,0,9,692,1340,33,78,2,10,4,7,1,0,725,1417,686,1322,33,77,1,3,4,6,1,0,0,9,686,1331,33,78,1,10,4,7,1,0,7,9,6,9,0,0,1,0,0,0,0,0,0,0,6,9,0,0,1,0,0,0,0,0 -050,01,077,Alabama,Lauderdale County,13,0,93368,44753,48615,38934,42054,4324,5046,225,195,399,454,39,33,832,833,39712,42821,4791,5513,516,507,515,566,64,58,43380,47223,37834,40880,4228,4964,175,161,366,423,22,17,755,778,38542,41598,4654,5399,432,451,473,529,45,40,1373,1392,1100,1174,96,82,50,34,33,31,17,16,77,55,1170,1223,137,114,84,56,42,37,19,18 -050,01,077,Alabama,Lauderdale County,13,1,4798,2429,2369,1961,1939,302,282,14,6,32,32,1,1,119,109,2080,2041,393,369,30,20,46,45,4,3,2291,2214,1853,1818,292,264,5,2,26,27,0,0,115,103,1968,1915,382,349,19,12,39,39,3,2,138,155,108,121,10,18,9,4,6,5,1,1,4,6,112,126,11,20,11,8,7,6,1,1 -050,01,077,Alabama,Lauderdale County,13,2,4916,2540,2376,2093,1955,305,273,8,7,26,15,7,2,101,124,2192,2073,381,366,21,30,39,28,8,5,2406,2238,1988,1838,288,267,3,4,25,14,7,1,95,114,2081,1948,361,353,14,23,37,26,8,3,134,138,105,117,17,6,5,3,1,1,0,1,6,10,111,125,20,13,7,7,2,2,0,2 -050,01,077,Alabama,Lauderdale County,13,3,5266,2647,2619,2227,2182,293,315,11,10,17,18,2,5,97,89,2318,2263,365,379,27,27,31,33,4,8,2506,2418,2111,2013,282,305,5,2,14,17,1,2,93,79,2198,2087,351,362,20,16,28,30,3,4,141,201,116,169,11,10,6,8,3,1,1,3,4,10,120,176,14,17,7,11,3,3,1,4 -050,01,077,Alabama,Lauderdale County,13,4,6089,2991,3098,2434,2485,401,467,14,4,40,39,5,2,97,101,2527,2576,471,538,34,30,52,52,5,5,2857,2957,2323,2364,392,460,12,1,37,36,3,1,90,95,2409,2449,456,526,31,26,49,49,3,4,134,141,111,121,9,7,2,3,3,3,2,1,7,6,118,127,15,12,3,4,3,3,2,1 -050,01,077,Alabama,Lauderdale County,13,5,7732,3699,4033,3057,3320,433,510,15,21,71,99,1,3,122,80,3170,3397,500,561,56,42,90,111,7,4,3547,3907,2950,3215,423,503,13,18,70,95,0,1,91,75,3036,3287,472,552,39,37,87,106,5,2,152,126,107,105,10,7,2,3,1,4,1,2,31,5,134,110,28,9,17,5,3,5,2,2 -050,01,077,Alabama,Lauderdale County,13,6,6025,3006,3019,2552,2522,347,397,18,16,34,26,0,0,55,58,2603,2575,378,428,37,34,42,39,1,1,2902,2927,2466,2447,341,389,13,14,29,20,0,0,53,57,2515,2499,371,420,31,31,37,33,1,1,104,92,86,75,6,8,5,2,5,6,0,0,2,1,88,76,7,8,6,3,5,6,0,0 -050,01,077,Alabama,Lauderdale County,13,7,5243,2629,2614,2242,2199,310,338,15,9,23,27,1,4,38,37,2277,2233,324,356,32,23,32,33,2,6,2547,2536,2177,2135,305,330,13,8,19,27,0,3,33,33,2207,2165,317,345,27,21,28,33,1,5,82,78,65,64,5,8,2,1,4,0,1,1,5,4,70,68,7,11,5,2,4,0,1,1 -050,01,077,Alabama,Lauderdale County,13,8,5209,2569,2640,2237,2280,256,291,18,7,24,32,4,3,30,27,2264,2303,262,302,36,20,29,37,8,5,2476,2542,2170,2192,250,290,10,7,23,30,2,1,21,22,2189,2210,253,298,23,18,26,35,6,3,93,98,67,88,6,1,8,0,1,2,2,2,9,5,75,93,9,4,13,2,3,2,2,2 -050,01,077,Alabama,Lauderdale County,13,9,4789,2324,2465,2048,2142,204,259,17,10,23,19,5,5,27,30,2073,2170,213,270,37,29,26,22,5,5,2240,2385,1981,2078,197,254,15,7,20,17,1,2,26,27,2005,2103,205,263,34,25,23,20,1,2,84,80,67,64,7,5,2,3,3,2,4,3,1,3,68,67,8,7,3,4,3,2,4,3 -050,01,077,Alabama,Lauderdale County,13,10,5403,2629,2774,2332,2450,226,244,18,22,29,37,6,1,18,20,2349,2466,230,250,29,33,33,41,6,4,2548,2701,2263,2388,224,242,15,19,27,35,3,0,16,17,2278,2401,228,247,24,29,31,38,3,3,81,73,69,62,2,2,3,3,2,2,3,1,2,3,71,65,2,3,5,4,2,3,3,1 -050,01,077,Alabama,Lauderdale County,13,11,5721,2819,2902,2559,2557,215,295,11,14,20,18,0,1,14,17,2570,2572,220,297,21,26,21,23,1,1,2748,2847,2493,2508,212,293,9,12,20,16,0,1,14,17,2504,2523,217,295,19,24,21,21,1,1,71,55,66,49,3,2,2,2,0,2,0,0,0,0,66,49,3,2,2,2,0,2,0,0 -050,01,077,Alabama,Lauderdale County,13,12,6302,2992,3310,2675,2920,267,332,6,17,14,20,1,0,29,21,2697,2940,273,334,26,34,21,22,4,1,2945,3272,2636,2885,263,331,5,16,14,20,0,0,27,20,2657,2904,268,333,25,32,20,22,2,1,47,38,39,35,4,1,1,1,0,0,1,0,2,1,40,36,5,1,1,2,1,0,2,0 -050,01,077,Alabama,Lauderdale County,13,13,6404,2930,3474,2653,3115,228,283,16,22,16,20,1,4,16,30,2668,3142,230,289,29,50,18,22,1,4,2896,3448,2626,3095,225,279,15,22,14,18,0,4,16,30,2641,3122,227,285,28,50,16,20,0,4,34,26,27,20,3,4,1,0,2,2,1,0,0,0,27,20,3,4,1,0,2,2,1,0 -050,01,077,Alabama,Lauderdale County,13,14,5948,2815,3133,2556,2830,207,242,12,10,16,14,1,1,23,36,2575,2864,212,248,30,41,19,16,2,1,2777,3096,2522,2794,206,242,12,10,14,14,1,0,22,36,2540,2828,210,248,30,41,17,16,2,0,38,37,34,36,1,0,0,0,2,0,0,1,1,0,35,36,2,0,0,0,2,0,0,1 -050,01,077,Alabama,Lauderdale County,13,15,5200,2396,2804,2193,2533,163,220,16,10,3,20,1,1,20,20,2211,2550,167,223,34,29,3,21,2,1,2383,2786,2183,2519,161,218,16,10,3,19,1,1,19,19,2200,2535,165,221,33,28,3,20,2,1,13,18,10,14,2,2,0,0,0,1,0,0,1,1,11,15,2,2,1,1,0,1,0,0 -050,01,077,Alabama,Lauderdale County,13,16,3677,1604,2073,1483,1905,91,141,8,4,4,8,1,0,17,15,1498,1918,94,144,22,17,5,8,2,1,1592,2066,1472,1899,91,140,8,4,4,8,1,0,16,15,1486,1912,94,143,22,17,4,8,2,1,12,7,11,6,0,1,0,0,0,0,0,0,1,0,12,6,0,1,0,0,1,0,0,0 -050,01,077,Alabama,Lauderdale County,13,17,2461,990,1471,933,1371,38,81,6,4,3,4,1,0,9,11,941,1381,40,82,13,14,4,5,1,1,983,1456,928,1357,38,81,5,3,3,4,1,0,8,11,936,1367,39,82,12,13,3,5,1,1,7,15,5,14,0,0,1,1,0,0,0,0,1,0,5,14,1,0,1,1,1,0,0,0 -050,01,077,Alabama,Lauderdale County,13,18,2185,744,1441,699,1349,38,76,2,2,4,6,1,0,0,8,699,1357,38,77,2,8,4,8,1,2,736,1427,692,1335,38,76,1,2,4,6,1,0,0,8,692,1343,38,77,1,8,4,8,1,2,8,14,7,14,0,0,1,0,0,0,0,0,0,0,7,14,0,0,1,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,0,34339,16791,17548,13219,13686,1855,2092,999,999,17,25,4,3,697,743,13900,14400,1932,2202,1615,1646,54,60,11,15,16494,17271,12985,13462,1838,2082,965,969,16,25,3,2,687,731,13659,14166,1909,2185,1575,1606,48,55,8,10,297,277,234,224,17,10,34,30,1,0,1,1,10,12,241,234,23,17,40,40,6,5,3,5 -050,01,079,Alabama,Lawrence County,1,1,2156,1072,1084,817,828,120,114,70,69,0,2,0,0,65,71,881,894,141,143,117,115,4,8,3,4,1030,1049,783,801,119,113,65,66,0,2,0,0,63,67,846,864,139,140,110,109,2,6,2,3,42,35,34,27,1,1,5,3,0,0,0,0,2,4,35,30,2,3,7,6,2,2,1,1 -050,01,079,Alabama,Lawrence County,1,2,2119,1064,1055,784,759,116,107,87,112,1,1,0,0,76,76,860,831,136,128,141,172,7,5,0,0,1018,1016,744,731,116,107,82,104,1,1,0,0,75,73,819,801,135,128,136,161,7,4,0,0,46,39,40,28,0,0,5,8,0,0,0,0,1,3,41,30,1,0,5,11,0,1,0,0 -050,01,079,Alabama,Lawrence County,1,3,2161,1129,1032,829,762,123,114,95,92,0,2,0,0,82,62,909,823,131,127,165,139,6,6,1,2,1095,1000,809,736,120,114,88,87,0,2,0,0,78,61,887,796,127,126,155,134,4,6,1,2,34,32,20,26,3,0,7,5,0,0,0,0,4,1,22,27,4,1,10,5,2,0,0,0 -050,01,079,Alabama,Lawrence County,1,4,2437,1255,1182,922,901,162,143,110,67,1,1,0,0,60,70,980,970,167,161,163,118,7,6,0,1,1235,1141,909,866,159,143,106,63,1,1,0,0,60,68,967,933,164,159,159,112,7,5,0,0,20,41,13,35,3,0,4,4,0,0,0,0,0,2,13,37,3,2,4,6,0,1,0,1 -050,01,079,Alabama,Lawrence County,1,5,1963,978,985,737,750,125,132,70,66,4,1,0,1,42,35,777,785,132,136,107,98,5,4,0,2,956,968,719,736,124,131,68,65,3,1,0,1,42,34,759,770,131,134,105,96,4,3,0,1,22,17,18,14,1,1,2,1,1,0,0,0,0,1,18,15,1,2,2,2,1,1,0,1 -050,01,079,Alabama,Lawrence County,1,6,1877,948,929,725,689,102,98,80,99,3,3,1,1,37,39,759,725,108,104,114,135,6,3,2,2,925,910,706,670,101,98,79,99,3,3,0,1,36,39,739,706,106,104,112,135,5,3,0,2,23,19,19,19,1,0,1,0,0,0,1,0,1,0,20,19,2,0,2,0,1,0,2,0 -050,01,079,Alabama,Lawrence County,1,7,1918,955,963,730,729,95,111,88,73,1,1,1,1,40,48,769,774,97,113,127,119,1,4,1,1,930,943,708,713,95,111,86,70,1,1,1,0,39,48,746,758,96,113,125,116,1,4,1,0,25,20,22,16,0,0,2,3,0,0,0,1,1,0,23,16,1,0,2,3,0,0,0,1 -050,01,079,Alabama,Lawrence County,1,8,2225,1078,1147,849,904,101,117,81,72,2,2,0,0,45,52,891,956,104,118,123,122,5,4,0,0,1052,1129,829,891,100,116,76,68,2,2,0,0,45,52,871,943,103,117,118,118,5,4,0,0,26,18,20,13,1,1,5,4,0,0,0,0,0,0,20,13,1,1,5,4,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,9,2505,1255,1250,1013,982,131,161,61,59,1,3,0,0,49,45,1060,1026,132,161,109,104,4,4,0,0,1240,1236,1000,970,130,160,60,58,1,3,0,0,49,45,1047,1014,131,160,108,103,4,4,0,0,15,14,13,12,1,1,1,1,0,0,0,0,0,0,13,12,1,1,1,1,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,10,2848,1378,1470,1128,1139,144,188,63,89,0,1,1,0,42,53,1170,1191,145,190,104,139,1,4,1,1,1361,1455,1117,1129,139,185,62,88,0,1,1,0,42,52,1159,1180,140,186,103,137,1,4,1,0,17,15,11,10,5,3,1,1,0,0,0,0,0,1,11,11,5,4,1,2,0,0,0,1 -050,01,079,Alabama,Lawrence County,1,11,2633,1289,1344,1021,1063,153,165,75,71,3,2,0,0,37,43,1058,1103,154,168,111,113,4,2,0,1,1277,1336,1011,1056,152,164,74,71,3,2,0,0,37,43,1048,1096,153,167,110,113,4,2,0,1,12,8,10,7,1,1,1,0,0,0,0,0,0,0,10,7,1,1,1,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,12,2269,1126,1143,883,867,151,165,49,55,0,3,1,0,42,53,925,919,151,167,89,105,1,5,2,0,1121,1137,878,861,151,165,49,55,0,3,1,0,42,53,920,913,151,167,89,105,1,5,2,0,5,6,5,6,0,0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,13,2229,1073,1156,884,940,124,139,36,37,1,2,0,0,28,38,912,978,125,141,63,75,1,2,0,0,1069,1153,880,937,124,139,36,37,1,2,0,0,28,38,908,975,125,141,63,75,1,2,0,0,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,14,1750,809,941,687,773,80,130,15,13,0,0,0,0,27,25,714,798,81,130,39,37,1,1,1,0,806,938,685,770,80,130,15,13,0,0,0,0,26,25,711,795,80,130,39,37,1,1,1,0,3,3,2,3,0,0,0,0,0,0,0,0,1,0,3,3,1,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,15,1284,640,644,561,555,59,58,12,17,0,1,0,0,8,13,569,568,59,59,20,28,0,2,0,0,639,643,560,554,59,58,12,17,0,1,0,0,8,13,568,567,59,59,20,28,0,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,16,903,379,524,341,458,29,53,3,2,0,0,0,0,6,11,347,466,29,56,9,12,0,0,0,1,377,521,339,457,29,51,3,2,0,0,0,0,6,11,345,465,29,54,9,12,0,0,0,1,2,3,2,1,0,2,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,17,594,219,375,190,317,21,51,2,4,0,0,0,0,6,3,196,320,21,51,7,7,1,0,0,0,219,373,190,315,21,51,2,4,0,0,0,0,6,3,196,318,21,51,7,7,1,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,1,18,468,144,324,118,270,19,46,2,2,0,0,0,0,5,6,123,273,19,49,7,8,0,0,0,0,144,323,118,269,19,46,2,2,0,0,0,0,5,6,123,272,19,49,7,8,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,0,34308,16774,17534,13205,13673,1853,2091,999,999,16,25,4,3,697,743,13886,14387,1930,2201,1615,1646,53,60,11,15,16477,17257,12971,13449,1836,2081,965,969,15,25,3,2,687,731,13645,14153,1907,2184,1575,1606,47,55,8,10,297,277,234,224,17,10,34,30,1,0,1,1,10,12,241,234,23,17,40,40,6,5,3,5 -050,01,079,Alabama,Lawrence County,2,1,2156,1071,1085,816,829,120,114,70,69,0,2,0,0,65,71,880,895,141,143,117,115,4,8,3,4,1029,1050,782,802,119,113,65,66,0,2,0,0,63,67,845,865,139,140,110,109,2,6,2,3,42,35,34,27,1,1,5,3,0,0,0,0,2,4,35,30,2,3,7,6,2,2,1,1 -050,01,079,Alabama,Lawrence County,2,2,2118,1063,1055,783,759,116,107,87,112,1,1,0,0,76,76,859,831,136,128,141,172,7,5,0,0,1017,1016,743,731,116,107,82,104,1,1,0,0,75,73,818,801,135,128,136,161,7,4,0,0,46,39,40,28,0,0,5,8,0,0,0,0,1,3,41,30,1,0,5,11,0,1,0,0 -050,01,079,Alabama,Lawrence County,2,3,2161,1129,1032,829,762,123,114,95,92,0,2,0,0,82,62,909,823,131,127,165,139,6,6,1,2,1095,1000,809,736,120,114,88,87,0,2,0,0,78,61,887,796,127,126,155,134,4,6,1,2,34,32,20,26,3,0,7,5,0,0,0,0,4,1,22,27,4,1,10,5,2,0,0,0 -050,01,079,Alabama,Lawrence County,2,4,2435,1255,1180,922,900,162,142,110,67,1,1,0,0,60,70,980,969,167,160,163,118,7,6,0,1,1235,1139,909,865,159,142,106,63,1,1,0,0,60,68,967,932,164,158,159,112,7,5,0,0,20,41,13,35,3,0,4,4,0,0,0,0,0,2,13,37,3,2,4,6,0,1,0,1 -050,01,079,Alabama,Lawrence County,2,5,1958,974,984,736,749,123,132,70,66,3,1,0,1,42,35,776,784,130,136,107,98,4,4,0,2,952,967,718,735,122,131,68,65,2,1,0,1,42,34,758,769,129,134,105,96,3,3,0,1,22,17,18,14,1,1,2,1,1,0,0,0,0,1,18,15,1,2,2,2,1,1,0,1 -050,01,079,Alabama,Lawrence County,2,6,1875,946,929,723,689,102,98,80,99,3,3,1,1,37,39,757,725,108,104,114,135,6,3,2,2,923,910,704,670,101,98,79,99,3,3,0,1,36,39,737,706,106,104,112,135,5,3,0,2,23,19,19,19,1,0,1,0,0,0,1,0,1,0,20,19,2,0,2,0,1,0,2,0 -050,01,079,Alabama,Lawrence County,2,7,1918,955,963,730,729,95,111,88,73,1,1,1,1,40,48,769,774,97,113,127,119,1,4,1,1,930,943,708,713,95,111,86,70,1,1,1,0,39,48,746,758,96,113,125,116,1,4,1,0,25,20,22,16,0,0,2,3,0,0,0,1,1,0,23,16,1,0,2,3,0,0,0,1 -050,01,079,Alabama,Lawrence County,2,8,2225,1078,1147,849,904,101,117,81,72,2,2,0,0,45,52,891,956,104,118,123,122,5,4,0,0,1052,1129,829,891,100,116,76,68,2,2,0,0,45,52,871,943,103,117,118,118,5,4,0,0,26,18,20,13,1,1,5,4,0,0,0,0,0,0,20,13,1,1,5,4,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,9,2505,1255,1250,1013,982,131,161,61,59,1,3,0,0,49,45,1060,1026,132,161,109,104,4,4,0,0,1240,1236,1000,970,130,160,60,58,1,3,0,0,49,45,1047,1014,131,160,108,103,4,4,0,0,15,14,13,12,1,1,1,1,0,0,0,0,0,0,13,12,1,1,1,1,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,10,2845,1378,1467,1128,1136,144,188,63,89,0,1,1,0,42,53,1170,1188,145,190,104,139,1,4,1,1,1361,1452,1117,1126,139,185,62,88,0,1,1,0,42,52,1159,1177,140,186,103,137,1,4,1,0,17,15,11,10,5,3,1,1,0,0,0,0,0,1,11,11,5,4,1,2,0,0,0,1 -050,01,079,Alabama,Lawrence County,2,11,2625,1285,1340,1017,1059,153,165,75,71,3,2,0,0,37,43,1054,1099,154,168,111,113,4,2,0,1,1273,1332,1007,1052,152,164,74,71,3,2,0,0,37,43,1044,1092,153,167,110,113,4,2,0,1,12,8,10,7,1,1,1,0,0,0,0,0,0,0,10,7,1,1,1,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,12,2267,1124,1143,881,867,151,165,49,55,0,3,1,0,42,53,923,919,151,167,89,105,1,5,2,0,1119,1137,876,861,151,165,49,55,0,3,1,0,42,53,918,913,151,167,89,105,1,5,2,0,5,6,5,6,0,0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,13,2227,1072,1155,883,939,124,139,36,37,1,2,0,0,28,38,911,977,125,141,63,75,1,2,0,0,1068,1152,879,936,124,139,36,37,1,2,0,0,28,38,907,974,125,141,63,75,1,2,0,0,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,14,1749,809,940,687,772,80,130,15,13,0,0,0,0,27,25,714,797,81,130,39,37,1,1,1,0,806,937,685,769,80,130,15,13,0,0,0,0,26,25,711,794,80,130,39,37,1,1,1,0,3,3,2,3,0,0,0,0,0,0,0,0,1,0,3,3,1,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,15,1282,640,642,561,553,59,58,12,17,0,1,0,0,8,13,569,566,59,59,20,28,0,2,0,0,639,641,560,552,59,58,12,17,0,1,0,0,8,13,568,565,59,59,20,28,0,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,16,902,378,524,340,458,29,53,3,2,0,0,0,0,6,11,346,466,29,56,9,12,0,0,0,1,376,521,338,457,29,51,3,2,0,0,0,0,6,11,344,465,29,54,9,12,0,0,0,1,2,3,2,1,0,2,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,17,592,218,374,189,316,21,51,2,4,0,0,0,0,6,3,195,319,21,51,7,7,1,0,0,0,218,372,189,314,21,51,2,4,0,0,0,0,6,3,195,317,21,51,7,7,1,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,2,18,468,144,324,118,270,19,46,2,2,0,0,0,0,5,6,123,273,19,49,7,8,0,0,0,0,144,323,118,269,19,46,2,2,0,0,0,0,5,6,123,272,19,49,7,8,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,0,34314,16778,17536,13201,13685,1858,2088,999,994,18,26,4,3,698,740,13879,14397,1971,2199,1575,1604,52,66,11,15,16485,17253,12968,13452,1841,2079,968,966,17,26,3,2,688,728,13636,14152,1947,2185,1542,1571,50,64,10,14,293,283,233,233,17,9,31,28,1,0,1,1,10,12,243,245,24,14,33,33,2,2,1,1 -050,01,079,Alabama,Lawrence County,3,1,2138,1060,1078,807,824,120,112,69,68,0,3,0,0,64,71,868,892,146,138,106,108,4,11,2,1,1018,1043,773,796,119,111,64,66,0,3,0,0,62,67,832,860,143,135,101,105,4,10,2,1,42,35,34,28,1,1,5,2,0,0,0,0,2,4,36,32,3,3,5,3,0,1,0,0 -050,01,079,Alabama,Lawrence County,3,2,2103,1052,1051,778,759,115,108,83,108,1,1,0,0,75,75,847,829,140,133,131,154,8,9,2,3,1008,1014,739,732,115,108,79,101,1,1,0,0,74,72,807,799,139,132,127,146,8,8,2,3,44,37,39,27,0,0,4,7,0,0,0,0,1,3,40,30,1,1,4,8,0,1,0,0 -050,01,079,Alabama,Lawrence County,3,3,2161,1122,1039,827,761,120,119,93,93,0,2,0,0,82,64,907,824,140,132,155,141,4,5,1,1,1090,1006,807,734,117,119,88,88,0,2,0,0,78,63,883,796,135,132,148,135,4,5,1,1,32,33,20,27,3,0,5,5,0,0,0,0,4,1,24,28,5,0,7,6,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,4,2398,1243,1155,916,880,158,138,110,66,1,1,0,0,58,70,973,947,168,150,156,121,4,7,1,1,1224,1113,904,845,155,138,106,61,1,1,0,0,58,68,961,910,165,149,152,115,4,7,1,1,19,42,12,35,3,0,4,5,0,0,0,0,0,2,12,37,3,1,4,6,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,5,1983,988,995,744,762,127,132,70,65,3,1,0,1,44,34,787,795,136,138,108,92,3,2,0,2,967,977,727,747,126,131,68,64,2,1,0,1,44,33,770,779,135,136,106,91,2,2,0,2,21,18,17,15,1,1,2,1,1,0,0,0,0,1,17,16,1,2,2,1,1,0,0,0 -050,01,079,Alabama,Lawrence County,3,6,1881,946,935,719,695,104,100,82,96,4,3,1,1,36,40,754,734,110,104,111,129,6,5,1,3,926,915,703,675,103,100,81,96,4,3,0,1,35,40,737,714,108,104,110,129,6,5,0,3,20,20,16,20,1,0,1,0,0,0,1,0,1,0,17,20,2,0,1,0,0,0,1,0 -050,01,079,Alabama,Lawrence County,3,7,1919,963,956,735,724,96,109,87,74,2,1,1,1,42,47,776,770,100,114,123,115,5,3,1,2,938,939,713,710,96,109,85,72,2,1,1,0,41,47,753,756,99,114,121,113,5,3,1,1,25,17,22,14,0,0,2,2,0,0,0,1,1,0,23,14,1,0,2,2,0,0,0,1 -050,01,079,Alabama,Lawrence County,3,8,2196,1066,1130,837,890,101,114,83,71,2,2,0,0,43,53,879,941,103,116,124,119,3,6,0,1,1039,1110,816,875,100,113,78,67,2,2,0,0,43,53,858,926,102,115,119,115,3,6,0,1,27,20,21,15,1,1,5,4,0,0,0,0,0,0,21,15,1,1,5,4,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,9,2511,1252,1259,1011,996,130,157,59,59,1,3,0,0,51,44,1061,1036,132,161,106,99,3,6,1,1,1235,1245,996,984,129,156,58,58,1,3,0,0,51,44,1046,1024,131,160,105,98,3,6,1,1,17,14,15,12,1,1,1,1,0,0,0,0,0,0,15,12,1,1,1,1,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,10,2835,1373,1462,1124,1134,142,186,65,89,0,1,1,0,41,52,1165,1185,143,187,103,140,2,2,1,0,1356,1447,1112,1123,138,184,64,88,0,1,1,0,41,51,1153,1173,139,185,102,138,2,2,1,0,17,15,12,11,4,2,1,1,0,0,0,0,0,1,12,12,4,2,1,2,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,11,2645,1293,1352,1021,1064,157,171,75,73,3,2,0,0,37,42,1058,1105,159,173,110,114,4,2,0,0,1279,1342,1010,1055,155,170,74,73,3,2,0,0,37,42,1047,1096,157,172,109,114,4,2,0,0,14,10,11,9,2,1,1,0,0,0,0,0,0,0,11,9,2,1,1,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,12,2278,1132,1146,889,872,151,165,49,55,0,2,1,0,42,52,931,924,152,169,89,103,1,2,1,0,1127,1138,884,864,151,165,49,55,0,2,1,0,42,52,926,916,152,169,89,103,1,2,1,0,5,8,5,8,0,0,0,0,0,0,0,0,0,0,5,8,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,13,2226,1074,1152,880,938,125,136,40,37,1,3,0,0,28,38,907,976,126,137,67,73,2,4,0,0,1070,1149,876,935,125,136,40,37,1,3,0,0,28,38,903,973,126,137,67,73,2,4,0,0,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,14,1773,818,955,694,784,82,132,15,14,0,0,0,0,27,25,720,808,84,134,39,38,3,0,0,0,815,951,692,780,82,132,15,14,0,0,0,0,26,25,717,804,84,134,39,38,2,0,0,0,3,4,2,4,0,0,0,0,0,0,0,0,1,0,3,4,0,0,0,0,1,0,0,0 -050,01,079,Alabama,Lawrence County,3,15,1295,642,653,562,563,59,60,11,16,0,1,0,0,10,13,572,575,59,61,21,28,0,2,0,0,641,652,561,562,59,60,11,16,0,1,0,0,10,13,571,574,59,61,21,28,0,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,16,901,382,519,341,454,32,51,3,4,0,0,0,0,6,10,347,462,33,53,9,14,0,0,0,0,380,516,339,453,32,49,3,4,0,0,0,0,6,10,345,461,33,51,9,14,0,0,0,0,2,3,2,1,0,2,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,17,601,228,373,198,313,20,52,3,4,0,0,0,0,7,4,204,317,21,52,10,8,0,0,0,0,228,371,198,311,20,52,3,4,0,0,0,0,7,4,204,315,21,52,10,8,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,3,18,470,144,326,118,272,19,46,2,2,0,0,0,0,5,6,123,277,19,47,7,8,0,0,0,0,144,325,118,271,19,46,2,2,0,0,0,0,5,6,123,276,19,47,7,8,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,0,34026,16613,17413,13050,13590,1839,2059,976,985,27,32,4,3,717,744,13739,14296,1958,2185,1568,1592,64,72,10,15,16306,17112,12810,13341,1821,2050,944,956,24,32,3,2,704,731,13487,14035,1935,2169,1529,1559,60,71,8,12,307,301,240,249,18,9,32,29,3,0,1,1,13,13,252,261,23,16,39,33,4,1,2,3 -050,01,079,Alabama,Lawrence County,4,1,1997,988,1009,763,793,113,103,48,46,0,4,0,0,64,63,824,852,141,130,86,81,5,9,0,2,950,976,733,767,111,102,44,45,0,4,0,0,62,58,792,822,138,128,81,77,5,8,0,1,38,33,30,26,2,1,4,1,0,0,0,0,2,5,32,30,3,2,5,4,0,1,0,1 -050,01,079,Alabama,Lawrence County,4,2,2092,1038,1054,766,781,112,101,80,100,2,1,0,0,78,71,840,847,138,125,127,147,9,4,3,2,991,1009,726,743,112,101,76,95,2,1,0,0,75,69,797,807,137,123,121,142,9,4,3,2,47,45,40,38,0,0,4,5,0,0,0,0,3,2,43,40,1,2,6,5,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,3,2206,1170,1036,860,746,134,120,95,103,0,1,0,0,81,66,940,808,155,137,155,151,3,4,0,2,1129,996,830,713,131,120,90,98,0,1,0,0,78,64,907,773,151,136,148,145,3,4,0,2,41,40,30,33,3,0,5,5,0,0,0,0,3,2,33,35,4,1,7,6,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,4,2249,1155,1094,857,809,133,138,107,67,1,2,0,0,57,78,912,881,144,158,152,125,4,5,2,3,1130,1057,842,781,131,138,101,60,1,2,0,0,55,76,895,851,142,157,145,118,4,5,1,2,25,37,15,28,2,0,6,7,0,0,0,0,2,2,17,30,2,1,7,7,0,0,1,1 -050,01,079,Alabama,Lawrence County,4,5,2023,1003,1020,738,796,138,127,68,62,5,2,0,1,54,32,789,828,146,132,112,87,9,4,1,1,980,1002,721,781,136,126,67,61,2,2,0,1,54,31,772,812,144,130,111,86,6,4,1,1,23,18,17,15,2,1,1,1,3,0,0,0,0,1,17,16,2,2,1,1,3,0,0,0 -050,01,079,Alabama,Lawrence County,4,6,1837,911,926,688,688,99,101,83,91,6,6,1,1,34,39,719,724,103,105,112,125,10,10,1,1,896,897,678,660,98,101,81,90,6,6,0,1,33,39,709,696,102,105,109,124,9,10,0,1,15,29,10,28,1,0,2,1,0,0,1,0,1,0,10,28,1,0,3,1,1,0,1,0 -050,01,079,Alabama,Lawrence County,4,7,1936,979,957,742,722,99,100,86,85,5,1,1,1,46,48,784,766,104,106,127,126,9,6,1,1,957,939,723,707,99,100,84,83,5,1,1,0,45,48,764,751,103,106,125,124,9,6,1,0,22,18,19,15,0,0,2,2,0,0,0,1,1,0,20,15,1,0,2,2,0,0,0,1 -050,01,079,Alabama,Lawrence County,4,8,2053,1016,1037,804,805,91,105,82,71,2,2,0,0,37,54,840,856,93,110,117,120,3,5,0,0,991,1020,784,792,90,104,78,68,2,2,0,0,37,54,820,843,92,109,113,117,3,5,0,0,25,17,20,13,1,1,4,3,0,0,0,0,0,0,20,13,1,1,4,3,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,9,2502,1224,1278,980,1024,129,150,57,57,1,2,0,0,57,45,1036,1069,131,151,111,97,3,6,0,0,1201,1262,960,1011,128,149,55,55,1,2,0,0,57,45,1016,1056,130,150,109,95,3,6,0,0,23,16,20,13,1,1,2,2,0,0,0,0,0,0,20,13,1,1,2,2,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,10,2766,1352,1414,1098,1092,152,180,62,87,0,3,1,0,39,52,1136,1140,155,185,99,136,0,5,1,0,1337,1399,1086,1082,150,178,61,85,0,3,1,0,39,51,1124,1129,153,182,98,134,0,5,1,0,15,15,12,10,2,2,1,2,0,0,0,0,0,1,12,11,2,3,1,2,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,11,2695,1304,1391,1031,1087,159,187,72,74,4,2,0,0,38,41,1069,1128,160,188,107,111,6,4,0,1,1289,1380,1020,1077,155,186,72,74,4,2,0,0,38,41,1058,1118,156,187,107,111,6,4,0,1,15,11,11,10,4,1,0,0,0,0,0,0,0,0,11,10,4,1,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,12,2313,1139,1174,905,900,140,167,52,58,0,2,1,0,41,47,946,945,141,171,92,102,0,3,1,0,1131,1166,898,892,140,167,51,58,0,2,1,0,41,47,939,937,141,171,91,102,0,3,1,0,8,8,7,8,0,0,1,0,0,0,0,0,0,0,7,8,0,0,1,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,13,2204,1072,1132,878,911,118,136,45,40,1,3,0,0,30,42,907,953,120,137,74,80,1,4,0,1,1069,1131,875,910,118,136,45,40,1,3,0,0,30,42,904,952,120,137,74,80,1,4,0,1,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,14,1823,830,993,695,816,88,131,18,18,0,0,0,0,29,28,722,843,91,133,46,43,0,2,0,0,827,987,693,810,88,131,18,18,0,0,0,0,28,28,719,837,90,133,46,43,0,2,0,0,3,6,2,6,0,0,0,0,0,0,0,0,1,0,3,6,1,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,15,1345,664,681,584,583,56,68,12,12,0,0,0,0,12,18,595,600,57,69,23,29,1,0,0,1,662,680,582,582,56,68,12,12,0,0,0,0,12,18,593,599,57,69,23,29,1,0,0,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,16,888,382,506,334,442,37,48,4,8,0,1,0,0,7,7,341,449,37,49,10,14,1,1,0,0,380,503,332,441,37,46,4,8,0,1,0,0,7,7,339,448,37,47,10,14,1,1,0,0,2,3,2,1,0,2,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,17,616,248,368,218,309,20,50,2,3,0,0,0,0,8,6,225,314,21,51,10,9,0,0,0,0,248,367,218,308,20,50,2,3,0,0,0,0,8,6,225,313,21,51,10,9,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,4,18,481,138,343,109,286,21,47,3,3,0,0,0,0,5,7,114,293,21,48,8,9,0,0,0,0,138,341,109,284,21,47,3,3,0,0,0,0,5,7,114,291,21,48,8,9,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,0,33782,16399,17383,12900,13549,1799,2076,978,976,27,30,4,2,691,750,13566,14261,1901,2203,1548,1592,67,69,11,12,16055,17055,12627,13273,1779,2067,943,947,23,30,3,2,680,736,13282,13971,1875,2185,1508,1558,63,69,10,12,344,328,273,276,20,9,35,29,4,0,1,0,11,14,284,290,26,18,40,34,4,0,1,0 -050,01,079,Alabama,Lawrence County,5,1,1900,917,983,734,768,106,104,32,38,0,4,0,0,45,69,777,835,125,135,56,76,3,8,1,0,872,945,698,735,104,104,28,38,0,4,0,0,42,64,738,797,120,132,52,74,3,8,1,0,45,38,36,33,2,0,4,0,0,0,0,0,3,5,39,38,5,3,4,2,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,2,2143,1072,1071,795,792,108,116,94,90,2,1,0,0,73,72,865,860,132,142,137,135,11,6,1,0,1019,1021,749,751,108,115,90,85,2,1,0,0,70,69,816,816,131,138,131,130,11,6,1,0,53,50,46,41,0,1,4,5,0,0,0,0,3,3,49,44,1,4,6,5,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,3,2187,1140,1047,825,761,137,111,89,109,2,1,0,0,87,65,906,818,158,130,154,156,9,6,0,3,1101,1006,793,728,135,111,84,103,2,1,0,0,87,63,874,783,156,128,149,150,9,6,0,3,39,41,32,33,2,0,5,6,0,0,0,0,0,2,32,35,2,2,5,6,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,4,2126,1076,1050,782,753,129,150,104,70,1,2,0,0,60,75,838,824,141,165,154,126,4,9,1,1,1045,1015,765,727,125,150,97,62,1,2,0,0,57,74,818,797,135,165,146,117,4,9,1,1,31,35,17,26,4,0,7,8,0,0,0,0,3,1,20,27,6,0,8,9,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,5,2097,1041,1056,775,834,141,136,74,50,2,2,0,0,49,34,820,865,149,143,115,77,5,5,1,0,1017,1028,757,809,138,136,72,49,1,2,0,0,49,32,802,838,146,142,113,75,4,5,1,0,24,28,18,25,3,0,2,1,1,0,0,0,0,2,18,27,3,1,2,2,1,0,0,0 -050,01,079,Alabama,Lawrence County,5,6,1827,922,905,716,694,92,95,77,77,8,1,1,2,28,36,744,729,94,99,100,107,11,3,1,3,894,882,696,672,91,94,74,77,5,1,0,2,28,36,724,707,93,98,97,107,8,3,0,3,28,23,20,22,1,1,3,0,3,0,1,0,0,0,20,22,1,1,3,0,3,0,1,0 -050,01,079,Alabama,Lawrence County,5,7,1860,933,927,707,698,90,95,90,89,4,2,0,0,42,43,748,738,93,99,127,128,6,5,1,0,914,903,692,675,90,95,88,88,4,2,0,0,40,43,731,715,93,99,123,127,6,5,1,0,19,24,15,23,0,0,2,1,0,0,0,0,2,0,17,23,0,0,4,1,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,8,1942,952,990,751,760,91,98,76,78,2,1,1,0,31,53,782,810,93,101,102,127,5,5,1,1,927,971,729,746,90,97,74,74,2,1,1,0,31,53,760,796,92,100,100,123,5,5,1,1,25,19,22,14,1,1,2,4,0,0,0,0,0,0,22,14,1,1,2,4,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,9,2450,1188,1262,942,998,119,151,66,58,1,3,0,0,60,52,1001,1050,121,153,121,106,4,3,1,2,1159,1247,918,986,118,150,62,56,1,3,0,0,60,52,977,1038,120,152,117,104,4,3,1,2,29,15,24,12,1,1,4,2,0,0,0,0,0,0,24,12,1,1,4,2,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,10,2677,1300,1377,1064,1076,144,171,53,83,0,4,0,0,39,43,1103,1117,144,176,90,121,1,5,1,1,1286,1360,1052,1062,143,170,52,81,0,4,0,0,39,43,1091,1103,143,175,89,119,1,5,1,1,14,17,12,14,1,1,1,2,0,0,0,0,0,0,12,14,1,1,1,2,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,11,2693,1299,1394,1035,1086,151,185,68,77,3,2,1,0,41,44,1076,1129,153,187,107,120,3,2,1,0,1281,1379,1022,1074,146,183,68,77,3,2,1,0,41,43,1063,1116,148,185,107,119,3,2,1,0,18,15,13,12,5,2,0,0,0,0,0,0,0,1,13,13,5,2,0,1,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,12,2426,1196,1230,954,954,137,171,64,61,1,1,1,0,39,43,993,997,138,172,102,103,1,1,1,0,1187,1224,946,948,137,171,63,61,1,1,1,0,39,43,985,991,138,172,101,103,1,1,1,0,9,6,8,6,0,0,1,0,0,0,0,0,0,0,8,6,0,0,1,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,13,2092,1004,1088,804,843,123,144,44,49,0,5,0,0,33,47,835,889,125,146,75,94,2,6,0,0,1001,1086,801,841,123,144,44,49,0,5,0,0,33,47,832,887,125,146,75,94,2,6,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,14,1932,868,1064,725,890,92,125,23,17,1,0,0,0,27,32,752,922,92,125,50,49,1,0,0,0,866,1058,723,884,92,125,23,17,1,0,0,0,27,32,750,916,92,125,50,49,1,0,0,0,2,6,2,6,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,15,1430,711,719,621,603,63,85,13,12,0,0,0,0,14,19,635,619,63,88,26,28,1,3,0,0,708,717,618,601,63,85,13,12,0,0,0,0,14,19,632,617,63,88,26,28,1,3,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,16,895,388,507,337,441,37,47,6,11,0,1,0,0,8,7,343,447,40,47,13,17,0,2,0,1,387,504,336,439,37,46,6,11,0,1,0,0,8,7,342,445,40,46,13,17,0,2,0,1,1,3,1,2,0,1,0,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,17,633,251,382,225,324,18,47,0,3,0,0,0,0,8,8,233,330,18,49,8,11,0,0,0,0,250,380,224,323,18,46,0,3,0,0,0,0,8,8,232,329,18,48,8,11,0,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,5,18,472,141,331,108,274,21,45,5,4,0,0,0,0,7,8,115,282,22,46,11,11,0,0,0,0,141,329,108,272,21,45,5,4,0,0,0,0,7,8,115,280,22,46,11,11,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,0,33553,16349,17204,12873,13437,1775,2018,976,971,28,32,4,2,693,744,13539,14147,1894,2142,1540,1578,67,68,13,17,15981,16877,12582,13164,1754,2006,940,943,23,32,3,2,679,730,13235,13863,1868,2121,1497,1544,60,66,11,17,368,327,291,273,21,12,36,28,5,0,1,0,14,14,304,284,26,21,43,34,7,2,2,0 -050,01,079,Alabama,Lawrence County,6,1,1836,931,905,750,733,105,81,24,28,0,3,0,0,52,60,800,788,126,105,53,60,5,9,3,3,882,868,710,699,104,81,20,28,0,3,0,0,48,57,757,752,124,103,47,59,4,8,2,3,49,37,40,34,1,0,4,0,0,0,0,0,4,3,43,36,2,2,6,1,1,1,1,0 -050,01,079,Alabama,Lawrence County,6,2,2141,1059,1082,800,795,102,119,84,91,1,1,0,0,72,76,867,867,130,144,128,140,8,6,2,2,1011,1041,760,764,101,117,79,86,1,1,0,0,70,73,825,834,128,140,122,133,8,6,2,2,48,41,40,31,1,2,5,5,0,0,0,0,2,3,42,33,2,4,6,7,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,3,2121,1080,1041,781,757,128,116,92,103,1,2,0,0,78,63,856,815,150,136,147,148,6,4,1,2,1036,1003,743,728,127,116,88,97,1,2,0,0,77,60,817,783,148,135,143,140,6,4,1,2,44,38,38,29,1,0,4,6,0,0,0,0,1,3,39,32,2,1,4,8,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,4,2025,1047,978,764,710,118,130,100,72,0,2,0,0,65,64,825,771,133,146,152,122,2,4,1,0,1013,944,744,684,113,130,94,65,0,2,0,0,62,63,802,744,127,145,144,115,2,4,1,0,34,34,20,26,5,0,6,7,0,0,0,0,3,1,23,27,6,1,8,7,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,5,2104,1084,1020,808,809,140,121,85,52,3,1,0,0,48,37,856,844,145,129,124,82,7,2,0,0,1056,993,788,786,137,121,81,50,2,1,0,0,48,35,836,820,142,128,120,79,6,1,0,0,28,27,20,23,3,0,4,2,1,0,0,0,0,2,20,24,3,1,4,3,1,1,0,0 -050,01,079,Alabama,Lawrence County,6,6,1866,922,944,718,724,94,108,72,69,9,3,1,1,28,39,743,760,99,113,96,100,11,8,1,3,895,925,700,708,92,106,70,69,5,3,0,1,28,38,725,743,97,110,94,100,7,8,0,3,27,19,18,16,2,2,2,0,4,0,1,0,0,1,18,17,2,3,2,0,4,0,1,0 -050,01,079,Alabama,Lawrence County,6,7,1867,924,943,698,722,96,87,84,91,5,1,0,1,41,41,737,760,101,91,119,125,8,6,0,2,898,913,678,692,96,87,82,91,5,1,0,1,37,41,713,730,100,91,115,125,7,6,0,2,26,30,20,30,0,0,2,0,0,0,0,0,4,0,24,30,1,0,4,0,1,0,0,0 -050,01,079,Alabama,Lawrence County,6,8,1898,951,947,740,718,100,99,79,76,1,2,1,0,30,52,770,768,102,102,106,123,2,5,1,1,923,923,715,698,100,99,76,72,1,2,1,0,30,52,745,748,102,102,103,119,2,5,1,1,28,24,25,20,0,0,3,4,0,0,0,0,0,0,25,20,0,0,3,4,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,9,2352,1155,1197,917,946,104,136,75,64,3,2,0,0,56,49,970,995,109,140,126,108,5,2,1,1,1125,1180,892,934,103,134,71,61,3,2,0,0,56,49,945,983,108,138,122,105,5,2,1,1,30,17,25,12,1,2,4,3,0,0,0,0,0,0,25,12,1,2,4,3,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,10,2537,1238,1299,1017,1026,130,152,52,75,0,3,0,0,39,43,1055,1067,132,155,90,115,0,4,0,1,1224,1286,1005,1014,129,152,51,74,0,3,0,0,39,43,1043,1055,131,155,89,114,0,4,0,1,14,13,12,12,1,0,1,1,0,0,0,0,0,0,12,12,1,0,1,1,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,11,2726,1318,1408,1057,1098,157,183,60,77,2,3,1,0,41,47,1098,1143,157,187,100,120,3,4,1,1,1300,1390,1045,1084,151,180,60,77,2,3,1,0,41,46,1086,1128,151,183,100,120,3,4,1,1,18,18,12,14,6,3,0,0,0,0,0,0,0,1,12,15,6,4,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,12,2452,1196,1256,955,979,131,169,69,66,2,2,1,0,38,40,993,1018,132,171,103,104,4,2,2,1,1186,1247,946,970,131,169,68,66,2,2,1,0,38,40,984,1009,132,171,102,104,4,2,2,1,10,9,9,9,0,0,1,0,0,0,0,0,0,0,9,9,0,0,1,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,13,2136,1014,1122,797,857,135,156,44,54,0,5,0,0,38,50,834,907,137,157,81,101,0,7,0,0,1009,1120,792,855,135,156,44,54,0,5,0,0,38,50,829,905,137,157,81,101,0,7,0,0,5,2,5,2,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,14,1945,875,1070,735,882,83,128,30,21,1,1,0,0,26,38,759,920,86,128,53,57,3,3,0,0,873,1066,733,878,83,128,30,21,1,1,0,0,26,38,757,916,86,128,53,57,3,3,0,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,15,1490,733,757,631,632,72,94,13,11,0,0,0,0,17,20,648,652,73,95,29,30,0,0,0,0,730,754,628,629,72,94,13,11,0,0,0,0,17,20,645,649,73,95,29,30,0,0,0,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,16,961,426,535,373,464,38,50,7,12,0,1,0,0,8,8,380,472,39,51,14,19,1,1,0,0,425,532,372,462,38,49,7,12,0,1,0,0,8,8,379,470,39,50,14,19,1,1,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,17,628,246,382,219,326,20,42,1,5,0,0,0,0,6,9,225,333,21,45,5,12,1,1,0,0,245,378,218,324,20,40,1,5,0,0,0,0,6,9,224,331,21,43,5,12,1,1,0,0,1,4,1,2,0,2,0,0,0,0,0,0,0,0,1,2,0,2,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,6,18,468,150,318,113,259,22,47,5,4,0,0,0,0,10,8,123,267,22,47,14,12,1,0,0,0,150,314,113,255,22,47,5,4,0,0,0,0,10,8,123,263,22,47,14,12,1,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,0,33423,16263,17160,12778,13421,1778,1995,966,973,29,36,4,2,708,733,13461,14126,1896,2124,1547,1565,66,74,12,10,15897,16829,12492,13151,1756,1984,930,942,25,35,3,2,691,715,13160,13838,1867,2102,1501,1529,59,71,11,10,366,331,286,270,22,11,36,31,4,1,1,0,17,18,301,288,29,22,46,36,7,3,1,0 -050,01,079,Alabama,Lawrence County,7,1,1796,889,907,724,742,95,87,21,20,1,2,0,0,48,56,768,797,114,110,47,48,6,6,2,2,850,868,694,706,94,87,18,20,1,2,0,0,43,53,735,758,111,107,42,48,3,6,2,2,39,39,30,36,1,0,3,0,0,0,0,0,5,3,33,39,3,3,5,0,3,0,0,0 -050,01,079,Alabama,Lawrence County,7,2,2113,1058,1055,805,801,114,105,73,74,1,1,0,0,65,74,866,872,138,130,114,121,6,8,0,0,1012,1010,766,765,113,103,68,71,1,1,0,0,64,70,826,832,137,126,108,116,6,8,0,0,46,45,39,36,1,2,5,3,0,0,0,0,1,4,40,40,1,4,6,5,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,3,2099,1064,1035,776,747,118,112,84,106,2,2,0,0,84,68,857,809,143,134,145,154,6,7,0,0,1018,998,734,722,118,112,82,98,2,2,0,0,82,64,813,780,142,133,142,144,6,6,0,0,46,37,42,25,0,0,2,8,0,0,0,0,2,4,44,29,1,1,3,10,0,1,0,0 -050,01,079,Alabama,Lawrence County,7,4,1990,1028,962,740,704,113,118,102,81,0,2,0,0,73,57,808,759,130,132,159,123,2,6,3,1,988,923,720,673,107,118,93,75,0,1,0,0,68,56,783,727,122,131,146,117,2,5,3,1,40,39,20,31,6,0,9,6,0,1,0,0,5,1,25,32,8,1,13,6,0,1,0,0 -050,01,079,Alabama,Lawrence County,7,5,2070,1062,1008,777,788,141,121,88,50,3,3,0,0,53,46,828,829,149,133,132,84,6,6,2,2,1040,983,761,770,137,121,86,46,3,3,0,0,53,43,812,808,145,130,130,80,6,6,2,2,22,25,16,18,4,0,2,4,0,0,0,0,0,3,16,21,4,3,2,4,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,6,1898,939,959,736,767,101,101,61,62,9,3,1,1,31,25,766,792,106,103,88,82,10,4,1,3,908,943,715,754,100,99,57,62,5,3,0,1,31,24,745,778,105,101,84,81,6,4,0,3,31,16,21,13,1,2,4,0,4,0,1,0,0,1,21,14,1,2,4,1,4,0,1,0 -050,01,079,Alabama,Lawrence County,7,7,1910,953,957,737,720,90,90,82,103,4,3,0,1,40,40,775,757,96,96,115,139,6,5,1,1,921,925,712,690,89,90,80,101,4,3,0,1,36,40,746,727,93,96,111,137,6,5,1,1,32,32,25,30,1,0,2,2,0,0,0,0,4,0,29,30,3,0,4,2,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,8,1843,926,917,708,689,104,108,80,73,2,2,1,0,31,45,739,732,105,113,108,112,4,5,1,0,904,897,688,673,104,108,78,70,2,2,1,0,31,44,719,715,105,113,106,109,4,4,1,0,22,20,20,16,0,0,2,3,0,0,0,0,0,1,20,17,0,0,2,3,0,1,0,0 -050,01,079,Alabama,Lawrence County,7,9,2247,1079,1168,854,921,96,132,78,67,2,1,0,0,49,47,903,966,97,136,122,110,6,3,0,0,1049,1151,829,909,95,131,74,63,2,1,0,0,49,47,878,954,96,135,118,106,6,3,0,0,30,17,25,12,1,1,4,4,0,0,0,0,0,0,25,12,1,1,4,4,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,10,2506,1254,1252,1017,991,134,143,57,65,1,3,0,0,45,50,1062,1041,135,145,100,110,2,6,0,0,1235,1238,1001,979,133,142,55,64,1,3,0,0,45,50,1046,1029,134,144,98,109,2,6,0,0,19,14,16,12,1,1,2,1,0,0,0,0,0,0,16,12,1,1,2,1,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,11,2690,1282,1408,1049,1106,131,178,61,79,1,3,1,0,39,42,1087,1148,133,180,98,117,2,4,1,1,1266,1391,1038,1093,126,175,61,79,1,3,1,0,39,41,1076,1134,128,176,98,117,2,4,1,1,16,17,11,13,5,3,0,0,0,0,0,0,0,1,11,14,5,4,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,12,2458,1200,1258,933,983,153,161,74,72,3,3,1,0,36,39,969,1021,153,164,107,109,6,3,1,0,1191,1248,926,973,152,161,73,72,3,3,1,0,36,39,962,1011,152,164,106,109,6,3,1,0,9,10,7,10,1,0,1,0,0,0,0,0,0,0,7,10,1,0,1,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,13,2163,1034,1129,817,859,134,158,43,56,0,3,0,0,40,53,856,912,138,160,81,107,0,3,0,0,1028,1125,811,855,134,158,43,56,0,3,0,0,40,53,850,908,138,160,81,107,0,3,0,0,6,4,6,4,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,14,1971,897,1074,743,867,92,134,33,29,0,4,0,0,29,40,771,906,93,135,61,68,1,5,0,0,894,1070,740,863,92,134,33,29,0,4,0,0,29,40,768,902,93,135,61,68,1,5,0,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,15,1557,735,822,627,683,76,104,12,12,0,0,0,0,20,23,647,706,77,105,30,33,2,1,0,0,733,819,625,680,76,104,12,12,0,0,0,0,20,23,645,703,77,105,30,33,2,1,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,16,999,462,537,404,459,41,52,9,15,0,1,0,0,8,10,412,469,41,54,16,23,1,1,0,0,460,535,402,457,41,52,9,15,0,1,0,0,8,10,410,467,41,54,16,23,1,1,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,17,637,249,388,217,336,23,38,3,5,0,0,0,0,6,9,223,343,25,40,8,13,0,1,0,0,248,384,216,334,23,36,3,5,0,0,0,0,6,9,222,341,25,38,8,13,0,1,0,0,1,4,1,2,0,2,0,0,0,0,0,0,0,0,1,2,0,2,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,7,18,476,152,324,114,258,22,53,5,4,0,0,0,0,11,9,124,267,23,54,16,12,0,0,0,0,152,321,114,255,22,53,5,4,0,0,0,0,11,9,124,264,23,54,16,12,0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,0,33116,16127,16989,12687,13346,1729,1896,950,965,28,35,5,2,728,745,13382,14065,1857,2020,1535,1567,66,78,18,14,15776,16662,12406,13076,1709,1884,919,935,24,35,4,2,714,730,13088,13781,1832,2002,1494,1529,62,75,17,14,351,327,281,270,20,12,31,30,4,0,1,0,14,15,294,284,25,18,41,38,4,3,1,0 -050,01,079,Alabama,Lawrence County,8,1,1830,929,901,753,737,99,81,20,17,0,2,0,0,57,64,805,800,126,106,49,51,5,6,2,2,889,863,720,702,98,80,19,17,0,2,0,0,52,62,768,763,122,104,45,50,5,6,2,2,40,38,33,35,1,1,1,0,0,0,0,0,5,2,37,37,4,2,4,1,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,2,2027,1010,1017,772,803,109,91,62,57,1,2,0,0,66,64,835,863,131,112,104,96,5,8,2,2,971,976,740,770,108,90,58,54,1,2,0,0,64,60,801,827,130,110,98,90,5,7,2,2,39,41,32,33,1,1,4,3,0,0,0,0,2,4,34,36,1,2,6,6,0,1,0,0 -050,01,079,Alabama,Lawrence County,8,3,2087,1041,1046,775,761,95,103,86,106,2,1,0,0,83,75,852,833,117,122,144,157,8,10,3,2,991,1007,730,734,95,102,82,98,2,1,0,0,82,72,806,803,117,119,139,148,8,9,3,2,50,39,45,27,0,1,4,8,0,0,0,0,1,3,46,30,0,3,5,9,0,1,0,0 -050,01,079,Alabama,Lawrence County,8,4,1919,1007,912,730,661,109,105,88,89,0,2,1,0,79,55,807,713,125,121,150,128,3,5,2,2,972,879,706,632,105,105,83,86,0,2,1,0,77,54,781,683,121,120,143,125,3,5,2,2,35,33,24,29,4,0,5,3,0,0,0,0,2,1,26,30,4,1,7,3,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,5,1977,993,984,739,760,118,109,86,53,2,3,0,0,48,59,782,815,127,123,125,100,6,5,1,1,974,951,726,735,114,109,84,47,2,3,0,0,48,57,769,788,123,122,123,93,6,5,1,1,19,33,13,25,4,0,2,6,0,0,0,0,0,2,13,27,4,1,2,7,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,6,2066,1020,1046,794,854,114,114,67,49,8,3,0,1,37,25,827,878,121,118,97,68,11,6,1,1,991,1031,774,842,113,112,63,49,4,3,0,1,37,24,807,865,120,116,93,67,7,6,1,1,29,15,20,12,1,2,4,0,4,0,0,0,0,1,20,13,1,2,4,1,4,0,0,0 -050,01,079,Alabama,Lawrence County,8,7,1841,917,924,707,704,92,87,78,95,5,2,1,1,34,35,740,739,97,91,106,125,7,5,1,1,894,893,690,675,91,87,77,93,5,2,0,1,31,35,720,710,94,91,104,123,7,5,0,1,23,31,17,29,1,0,1,2,0,0,1,0,3,0,20,29,3,0,2,2,0,0,1,0 -050,01,079,Alabama,Lawrence County,8,8,1855,934,921,709,692,100,101,86,80,2,1,1,0,36,47,744,736,103,106,119,122,3,4,1,0,907,901,685,675,100,101,84,78,2,1,1,0,35,46,719,718,103,106,116,119,3,4,1,0,27,20,24,17,0,0,2,2,0,0,0,0,1,1,25,18,0,0,3,3,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,9,2074,991,1083,790,862,87,103,72,71,3,2,0,0,39,45,828,907,89,106,105,113,8,4,0,0,962,1062,767,846,86,102,67,67,3,2,0,0,39,45,805,891,88,105,100,109,8,4,0,0,29,21,23,16,1,1,5,4,0,0,0,0,0,0,23,16,1,1,5,4,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,10,2399,1206,1193,976,955,126,138,53,56,1,3,0,0,50,41,1026,995,128,141,99,94,3,4,0,0,1187,1179,959,944,125,137,52,54,1,3,0,0,50,41,1009,984,127,140,98,92,3,4,0,0,19,14,17,11,1,1,1,2,0,0,0,0,0,0,17,11,1,1,1,2,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,11,2653,1281,1372,1042,1066,135,169,64,88,0,3,1,0,39,46,1081,1109,137,172,101,131,0,6,1,0,1266,1359,1032,1056,131,167,63,88,0,3,1,0,39,45,1071,1098,133,170,100,131,0,5,1,0,15,13,10,10,4,2,1,0,0,0,0,0,0,1,10,11,4,2,1,0,0,1,0,0 -050,01,079,Alabama,Lawrence County,8,12,2477,1189,1288,935,1021,143,154,70,71,4,3,0,0,37,39,971,1060,144,157,105,106,6,4,0,0,1178,1279,927,1013,141,153,69,71,4,3,0,0,37,39,963,1052,142,156,104,106,6,4,0,0,11,9,8,8,2,1,1,0,0,0,0,0,0,0,8,8,2,1,1,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,13,2134,1041,1093,822,832,129,147,47,58,0,3,1,0,42,53,864,885,131,148,87,110,0,3,1,0,1035,1089,816,828,129,147,47,58,0,3,1,0,42,53,858,881,131,148,87,110,0,3,1,0,6,4,6,4,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,14,2029,952,1077,783,862,105,136,37,37,0,4,0,0,27,38,809,899,107,137,62,75,0,4,1,0,948,1074,779,859,105,136,37,37,0,4,0,0,27,38,805,896,107,137,62,75,0,4,1,0,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,15,1543,704,839,588,686,75,112,15,14,0,0,0,0,26,27,614,712,77,113,39,38,0,2,0,1,702,835,586,682,75,112,15,14,0,0,0,0,26,27,612,708,77,113,39,38,0,2,0,1,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,16,1051,490,561,425,476,44,56,11,15,0,1,0,0,10,13,433,489,45,56,20,27,1,2,1,0,489,559,424,474,44,56,11,15,0,1,0,0,10,13,432,487,45,56,20,27,1,2,1,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,17,633,248,385,213,336,26,38,3,3,0,0,0,0,6,8,219,343,28,39,6,10,0,0,1,1,246,381,211,334,26,36,3,3,0,0,0,0,6,8,217,341,28,37,6,10,0,0,1,1,2,4,2,2,0,2,0,0,0,0,0,0,0,0,2,2,0,2,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,8,18,521,174,347,134,278,23,52,5,6,0,0,0,0,12,11,145,289,24,52,17,16,0,0,0,1,174,344,134,275,23,52,5,6,0,0,0,0,12,11,145,286,24,52,17,16,0,0,0,1,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,0,33196,16173,17023,12717,13364,1719,1896,950,976,32,40,5,2,750,745,13438,14081,1848,2021,1552,1579,76,81,16,14,15814,16687,12429,13083,1698,1882,917,949,28,40,4,2,738,731,13138,13786,1818,1997,1516,1550,71,79,15,13,359,336,288,281,21,14,33,27,4,0,1,0,12,14,300,295,30,24,36,29,5,2,1,1 -050,01,079,Alabama,Lawrence County,9,1,1872,959,913,768,745,96,77,19,15,1,2,0,0,75,74,840,815,127,110,57,53,10,9,3,1,920,869,733,707,96,76,18,13,1,2,0,0,72,71,802,774,124,107,56,51,10,8,3,1,39,44,35,38,0,1,1,2,0,0,0,0,3,3,38,41,3,3,1,2,0,1,0,0 -050,01,079,Alabama,Lawrence County,9,2,2025,1023,1002,800,803,109,93,47,52,3,3,0,0,64,51,860,851,133,111,87,81,6,7,3,3,982,953,767,760,106,92,44,50,3,3,0,0,62,48,825,805,129,108,83,78,6,7,3,3,41,49,33,43,3,1,3,2,0,0,0,0,2,3,35,46,4,3,4,3,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,3,2030,1027,1003,771,748,88,98,86,91,2,1,0,0,80,65,848,806,111,120,140,134,8,8,1,2,972,966,722,718,88,97,82,87,2,1,0,0,78,63,797,774,109,117,136,130,8,8,1,2,55,37,49,30,0,1,4,4,0,0,0,0,2,2,51,32,2,3,4,4,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,4,1953,1013,940,746,674,104,110,87,98,0,1,0,0,76,57,817,727,121,124,143,138,6,6,2,2,977,913,720,652,100,110,82,94,0,1,0,0,75,56,790,704,117,124,138,134,5,5,2,2,36,27,26,22,4,0,5,4,0,0,0,0,1,1,27,23,4,0,5,4,1,1,0,0 -050,01,079,Alabama,Lawrence County,9,5,1967,1001,966,746,728,111,105,93,58,2,6,0,0,49,69,792,794,119,118,134,112,5,11,0,3,980,936,733,704,108,105,88,54,2,6,0,0,49,67,779,768,116,117,129,107,5,11,0,2,21,30,13,24,3,0,5,4,0,0,0,0,0,2,13,26,3,1,5,5,0,0,0,1 -050,01,079,Alabama,Lawrence County,9,6,2136,1051,1085,803,881,133,123,66,51,5,3,0,1,44,26,844,906,140,129,103,71,8,4,0,1,1018,1067,779,869,131,119,63,50,1,3,0,1,44,25,820,893,138,124,100,70,4,4,0,1,33,18,24,12,2,4,3,1,4,0,0,0,0,1,24,13,2,5,3,1,4,0,0,0 -050,01,079,Alabama,Lawrence County,9,7,1840,895,945,692,724,88,91,80,91,7,4,1,1,27,34,718,757,90,93,102,121,10,7,2,1,875,918,677,699,87,91,78,89,7,4,0,1,26,34,702,732,88,93,100,119,10,7,1,1,20,27,15,25,1,0,2,2,0,0,1,0,1,0,16,25,2,0,2,2,0,0,1,0 -050,01,079,Alabama,Lawrence County,9,8,1836,925,911,697,684,101,92,78,92,4,1,1,0,44,42,741,726,105,93,118,130,5,4,1,0,901,890,678,666,101,92,76,90,4,1,1,0,41,41,719,707,103,92,114,128,5,4,1,0,24,21,19,18,0,0,2,2,0,0,0,0,3,1,22,19,2,1,4,2,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,9,1969,963,1006,763,801,91,92,73,69,2,2,0,0,34,42,795,841,93,96,104,107,5,4,0,0,930,984,735,783,90,91,69,66,2,2,0,0,34,42,767,823,92,95,100,104,5,4,0,0,33,22,28,18,1,1,4,3,0,0,0,0,0,0,28,18,1,1,4,3,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,10,2377,1157,1220,937,981,114,139,52,54,2,2,0,0,52,44,989,1025,114,140,102,95,4,4,0,0,1141,1205,924,969,113,138,50,52,2,2,0,0,52,44,976,1013,113,139,100,93,4,4,0,0,16,15,13,12,1,1,2,2,0,0,0,0,0,0,13,12,1,1,2,2,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,11,2580,1261,1319,1015,1027,141,157,68,86,0,4,1,0,36,45,1051,1072,142,161,101,128,2,4,1,0,1249,1306,1006,1018,139,155,67,85,0,4,1,0,36,44,1042,1062,140,158,100,127,2,4,1,0,12,13,9,9,2,2,1,1,0,0,0,0,0,1,9,10,2,3,1,1,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,12,2519,1201,1318,952,1033,141,169,65,76,4,2,0,0,39,38,990,1071,143,169,101,113,5,3,1,0,1190,1306,945,1022,137,168,65,76,4,2,0,0,39,38,983,1060,139,168,101,113,5,3,1,0,11,12,7,11,4,1,0,0,0,0,0,0,0,0,7,11,4,1,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,13,2169,1053,1116,842,861,116,140,53,60,0,3,1,0,41,52,883,913,117,142,92,110,1,3,1,0,1044,1111,834,856,116,140,52,60,0,3,1,0,41,52,875,908,117,142,91,110,1,3,1,0,9,5,8,5,0,0,1,0,0,0,0,0,0,0,8,5,0,0,1,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,14,2050,970,1080,783,854,111,141,44,40,0,5,1,0,31,40,812,894,114,142,74,79,0,5,1,1,967,1079,780,853,111,141,44,40,0,5,1,0,31,40,809,893,114,142,74,79,0,5,1,1,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,15,1598,722,876,599,716,79,115,18,17,0,0,0,0,26,28,625,743,80,116,42,45,1,0,0,0,720,870,597,710,79,115,18,17,0,0,0,0,26,28,623,737,80,116,42,45,1,0,0,0,2,6,2,6,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,16,1084,505,579,438,485,43,64,12,12,0,0,0,0,12,18,450,501,43,66,24,29,0,1,0,0,503,578,436,484,43,64,12,12,0,0,0,0,12,18,448,500,43,66,24,29,0,1,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,17,629,250,379,208,321,31,43,4,8,0,1,0,0,7,6,213,327,33,43,11,14,0,1,0,0,248,375,206,319,31,41,4,8,0,1,0,0,7,6,211,325,33,41,11,14,0,1,0,0,2,4,2,2,0,2,0,0,0,0,0,0,0,0,2,2,0,2,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,9,18,562,197,365,157,298,22,47,5,6,0,0,0,0,13,14,170,312,23,48,17,19,0,0,0,0,197,361,157,294,22,47,5,6,0,0,0,0,13,14,170,308,23,48,17,19,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,0,33035,16099,16936,12668,13311,1702,1858,937,962,29,40,5,2,758,763,13402,14044,1845,1987,1542,1579,64,80,16,14,15727,16583,12369,13022,1682,1845,903,928,25,38,4,2,744,748,13089,13740,1817,1967,1503,1538,59,77,15,14,372,353,299,289,20,13,34,34,4,2,1,0,14,15,313,304,28,20,39,41,5,3,1,0 -050,01,079,Alabama,Lawrence County,10,1,1843,959,884,782,721,85,67,16,14,0,3,0,0,76,79,855,794,118,100,56,56,6,11,3,3,924,842,751,687,85,66,15,12,0,1,0,0,73,76,821,757,116,97,55,53,5,9,3,3,35,42,31,34,0,1,1,2,0,2,0,0,3,3,34,37,2,3,1,3,1,2,0,0 -050,01,079,Alabama,Lawrence County,10,2,1967,961,1006,770,806,101,90,33,39,0,4,0,0,57,67,825,871,123,116,68,79,3,9,0,1,920,952,737,757,100,89,29,38,0,4,0,0,54,64,789,819,120,113,63,78,3,8,0,1,41,54,33,49,1,1,4,1,0,0,0,0,3,3,36,52,3,3,5,1,0,1,0,0 -050,01,079,Alabama,Lawrence County,10,3,2069,1068,1001,813,753,84,96,89,90,3,1,0,0,79,61,888,808,111,113,140,130,9,8,3,3,1012,958,763,719,84,94,86,86,3,1,0,0,76,58,835,771,109,110,136,124,9,8,3,3,56,43,50,34,0,2,3,4,0,0,0,0,3,3,53,37,2,3,4,6,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,4,1934,1006,928,739,679,109,92,82,101,0,1,0,0,76,55,814,729,126,108,137,142,6,2,0,2,968,892,707,653,108,92,77,92,0,1,0,0,76,54,782,702,125,108,132,132,6,2,0,2,38,36,32,26,1,0,5,9,0,0,0,0,0,1,32,27,1,0,5,10,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,5,1859,950,909,688,677,111,117,87,56,2,4,0,0,62,55,744,729,125,128,136,98,6,7,1,2,924,881,675,657,105,117,81,49,2,4,0,0,61,54,730,708,119,127,129,91,6,7,1,2,26,28,13,20,6,0,6,7,0,0,0,0,1,1,14,21,6,1,7,7,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,6,2179,1089,1090,830,894,139,117,68,44,2,1,0,0,50,34,878,927,146,123,109,71,5,2,1,1,1061,1070,808,878,136,116,66,43,1,1,0,0,50,32,856,909,143,121,107,69,4,2,1,1,28,20,22,16,3,1,2,1,1,0,0,0,0,2,22,18,3,2,2,2,1,0,0,0 -050,01,079,Alabama,Lawrence County,10,7,1815,894,921,698,726,94,83,72,78,8,3,1,2,21,29,719,755,96,86,91,102,8,5,1,2,867,900,679,706,93,82,69,78,5,3,0,2,21,29,700,735,95,85,88,102,5,5,0,2,27,21,19,20,1,1,3,0,3,0,1,0,0,0,19,20,1,1,3,0,3,0,1,0 -050,01,079,Alabama,Lawrence County,10,8,1824,904,920,682,694,96,94,82,93,6,2,0,0,38,37,720,731,101,95,115,125,6,6,0,0,878,900,662,678,96,94,80,90,6,2,0,0,34,36,696,714,99,95,111,121,6,6,0,0,26,20,20,16,0,0,2,3,0,0,0,0,4,1,24,17,2,0,4,4,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,9,1915,942,973,750,761,88,85,70,77,2,2,1,0,31,48,780,808,91,89,98,120,3,5,2,0,916,946,727,739,87,84,68,73,2,2,1,0,31,48,757,786,90,88,96,116,3,5,2,0,26,27,23,22,1,1,2,4,0,0,0,0,0,0,23,22,1,1,2,4,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,10,2306,1117,1189,897,946,104,132,59,58,2,4,0,0,55,49,951,994,107,134,111,106,3,4,0,0,1092,1177,877,937,103,131,55,56,2,4,0,0,55,49,931,985,106,133,107,104,3,4,0,0,25,12,20,9,1,1,4,2,0,0,0,0,0,0,20,9,1,1,4,2,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,11,2528,1230,1298,993,1024,146,156,58,73,0,4,0,0,33,41,1026,1064,148,158,89,113,0,4,0,0,1217,1285,982,1013,145,155,57,72,0,4,0,0,33,41,1015,1053,147,157,88,112,0,4,0,0,13,13,11,11,1,1,1,1,0,0,0,0,0,0,11,11,1,1,1,1,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,12,2529,1214,1315,962,1028,138,166,66,77,3,2,1,0,44,42,1006,1069,140,167,106,118,5,3,1,0,1200,1301,953,1017,133,164,66,77,3,2,1,0,44,41,997,1057,135,165,106,117,5,3,1,0,14,14,9,11,5,2,0,0,0,0,0,0,0,1,9,12,5,2,0,1,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,13,2249,1079,1170,867,911,109,148,62,64,1,2,1,0,39,45,905,956,110,149,100,107,1,3,2,0,1072,1166,861,907,109,148,61,64,1,2,1,0,39,45,899,952,110,149,99,107,1,3,2,0,7,4,6,4,0,0,1,0,0,0,0,0,0,0,6,4,0,0,1,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,14,1961,924,1037,730,788,115,146,45,49,0,6,1,0,33,48,762,835,119,148,76,95,0,7,1,0,921,1034,727,785,115,146,45,49,0,6,1,0,33,48,759,832,119,148,76,95,0,7,1,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,15,1684,754,930,620,773,83,109,23,17,0,0,0,0,28,31,648,804,83,109,50,47,0,1,1,0,752,924,618,767,83,109,23,17,0,0,0,0,28,31,646,798,83,109,50,47,0,1,1,0,2,6,2,6,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,16,1172,560,612,484,505,51,76,12,12,0,0,0,0,13,19,497,522,51,79,25,30,1,0,0,0,557,611,481,504,51,76,12,12,0,0,0,0,13,19,494,521,51,79,25,30,1,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,17,623,248,375,205,315,29,42,6,11,0,1,0,0,8,6,213,321,29,43,14,15,0,2,0,0,247,370,204,312,29,40,6,11,0,1,0,0,8,6,212,318,29,41,14,15,0,2,0,0,1,5,1,3,0,2,0,0,0,0,0,0,0,0,1,3,0,2,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,10,18,578,200,378,158,310,20,42,7,9,0,0,0,0,15,17,171,327,21,42,21,25,2,1,0,0,199,374,157,306,20,42,7,9,0,0,0,0,15,17,170,323,21,42,21,25,2,1,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,0,32905,16039,16866,12624,13191,1684,1877,930,960,34,46,4,2,763,790,13358,13953,1824,2019,1526,1582,82,88,18,20,15654,16519,12316,12904,1665,1864,894,931,31,44,3,2,745,774,13034,13650,1796,1999,1482,1547,77,84,16,19,385,347,308,287,19,13,36,29,3,2,1,0,18,16,324,303,28,20,44,35,5,4,2,1 -050,01,079,Alabama,Lawrence County,11,1,1831,964,867,773,706,87,62,25,15,2,4,0,0,77,80,844,783,119,95,65,55,11,10,3,4,930,830,747,675,87,61,20,15,2,2,0,0,74,77,816,749,118,93,58,54,10,8,3,3,34,37,26,31,0,1,5,0,0,2,0,0,3,3,28,34,1,2,7,1,1,2,0,1 -050,01,079,Alabama,Lawrence County,11,2,1958,985,973,794,778,101,85,22,29,2,2,0,0,66,79,856,853,129,113,59,78,8,8,1,1,936,919,752,727,101,85,19,28,2,2,0,0,62,77,810,800,125,111,56,77,8,8,1,1,49,54,42,51,0,0,3,1,0,0,0,0,4,2,46,53,4,2,3,1,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,3,2106,1078,1028,824,767,92,105,81,89,2,2,0,0,79,65,900,829,113,126,134,132,8,7,2,2,1021,989,775,737,91,102,76,86,2,2,0,0,77,62,849,796,111,122,128,128,8,6,2,2,57,39,49,30,1,3,5,3,0,0,0,0,2,3,51,33,2,4,6,4,0,1,0,0 -050,01,079,Alabama,Lawrence County,11,4,1912,989,923,726,664,101,100,85,97,1,2,0,0,76,60,798,720,119,116,139,140,10,6,1,1,945,892,690,643,100,100,81,90,1,2,0,0,73,57,759,696,117,116,133,130,10,6,1,1,44,31,36,21,1,0,4,7,0,0,0,0,3,3,39,24,2,0,6,10,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,5,1773,897,876,656,648,98,118,81,55,2,3,0,0,60,52,713,695,109,129,130,96,5,6,1,2,872,854,639,630,94,118,78,51,2,3,0,0,59,52,695,677,105,129,126,92,5,6,1,2,25,22,17,18,4,0,3,4,0,0,0,0,1,0,18,18,4,0,4,4,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,6,2137,1093,1044,844,854,127,104,70,47,2,3,0,0,50,36,893,889,134,110,109,73,6,7,1,1,1067,1014,824,828,124,104,67,45,2,3,0,0,50,34,873,861,131,108,106,71,6,7,1,1,26,30,20,26,3,0,3,2,0,0,0,0,0,2,20,28,3,2,3,2,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,7,1832,894,938,701,741,94,93,67,69,8,3,1,1,23,31,724,772,97,96,86,93,9,7,1,1,870,923,685,729,92,91,65,69,5,3,0,1,23,30,708,759,95,94,84,92,6,7,0,1,24,15,16,12,2,2,2,0,3,0,1,0,0,1,16,13,2,2,2,1,3,0,1,0 -050,01,079,Alabama,Lawrence County,11,8,1817,863,954,660,720,86,94,74,101,6,2,0,1,37,36,695,755,89,97,107,133,8,3,1,3,834,925,637,696,86,94,72,97,6,2,0,1,33,35,669,730,88,96,103,129,7,3,0,3,29,29,23,24,0,0,2,4,0,0,0,0,4,1,26,25,1,1,4,4,1,0,1,0 -050,01,079,Alabama,Lawrence County,11,9,1874,929,945,733,721,94,91,72,79,0,5,1,0,29,49,761,766,98,97,97,123,1,7,1,1,905,919,712,699,94,91,69,75,0,5,1,0,29,49,740,744,98,97,94,119,1,7,1,1,24,26,21,22,0,0,3,4,0,0,0,0,0,0,21,22,0,0,3,4,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,10,2262,1106,1156,881,915,99,130,67,59,5,4,0,0,54,48,934,962,101,133,118,102,6,7,1,1,1083,1145,863,909,98,128,63,56,5,4,0,0,54,48,916,956,100,131,114,99,6,7,1,1,23,11,18,6,1,2,4,3,0,0,0,0,0,0,18,6,1,2,4,3,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,11,2421,1183,1238,959,979,136,156,56,68,0,3,0,0,32,32,990,1011,139,157,85,98,1,3,0,1,1168,1227,946,969,135,156,55,67,0,3,0,0,32,32,977,1001,138,157,84,97,1,3,0,1,15,11,13,10,1,0,1,1,0,0,0,0,0,0,13,10,1,0,1,1,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,12,2557,1229,1328,968,1030,153,172,63,78,2,3,1,0,42,45,1010,1075,154,175,102,118,3,4,2,1,1216,1311,961,1017,147,169,63,78,2,3,1,0,42,44,1003,1061,148,172,102,118,3,3,2,1,13,17,7,13,6,3,0,0,0,0,0,0,0,1,7,14,6,3,0,0,0,1,0,0 -050,01,079,Alabama,Lawrence County,11,13,2295,1096,1199,879,945,112,144,64,67,2,2,1,0,38,41,917,986,113,147,100,105,3,2,1,0,1086,1194,870,940,112,144,63,67,2,2,1,0,38,41,908,981,113,147,99,105,3,2,1,0,10,5,9,5,0,0,1,0,0,0,0,0,0,0,9,5,0,0,1,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,14,1967,935,1032,728,773,121,144,48,55,0,6,0,0,38,54,766,827,122,145,84,106,0,7,1,1,931,1029,724,770,121,144,48,55,0,6,0,0,38,54,762,824,122,145,84,106,0,7,1,1,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,15,1694,751,943,623,770,73,116,28,20,0,1,0,0,27,36,648,806,76,116,52,55,1,2,1,0,748,938,621,765,73,116,28,20,0,1,0,0,26,36,645,801,75,116,52,55,1,2,1,0,3,5,2,5,0,0,0,0,0,0,0,0,1,0,3,5,1,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,16,1188,565,623,478,512,59,82,12,9,0,0,0,0,16,20,494,532,60,83,27,27,0,1,0,0,562,620,475,509,59,82,12,9,0,0,0,0,16,20,491,529,60,83,27,27,0,1,0,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,17,707,291,416,242,353,34,42,7,12,0,1,0,0,8,8,249,360,35,44,14,19,1,1,0,0,290,414,241,352,34,41,7,12,0,1,0,0,8,8,248,359,35,43,14,19,1,1,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,11,18,574,191,383,155,315,17,39,8,11,0,0,0,0,11,18,166,332,17,40,18,29,1,0,0,0,190,376,154,309,17,38,8,11,0,0,0,0,11,18,165,326,17,39,18,29,1,0,0,0,1,7,1,6,0,1,0,0,0,0,0,0,0,0,1,6,0,1,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,0,32851,15985,16866,12596,13167,1667,1887,930,959,32,46,4,2,756,805,13323,13926,1805,2054,1529,1586,75,93,17,19,15590,16493,12278,12862,1647,1868,893,927,29,44,3,2,740,790,12989,13606,1775,2024,1488,1551,71,91,15,18,395,373,318,305,20,19,37,32,3,2,1,0,16,15,334,320,30,30,41,35,4,2,2,1 -050,01,079,Alabama,Lawrence County,12,1,1818,964,854,773,669,92,69,27,21,2,4,0,0,70,91,837,753,122,111,63,66,10,14,2,3,924,810,742,635,92,66,22,18,2,2,0,0,66,89,802,717,119,106,58,63,9,12,2,3,40,44,31,34,0,3,5,3,0,2,0,0,4,2,35,36,3,5,5,3,1,2,0,0 -050,01,079,Alabama,Lawrence County,12,2,1896,950,946,772,764,93,88,21,18,2,2,0,0,62,74,831,835,118,114,54,63,8,8,3,1,899,895,728,717,92,86,19,18,2,2,0,0,58,72,783,786,113,111,52,62,8,8,3,1,51,51,44,47,1,2,2,0,0,0,0,0,4,2,48,49,5,3,2,1,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,3,2144,1078,1066,840,815,95,103,72,78,0,2,0,0,71,68,910,874,116,129,117,121,5,6,1,4,1023,1016,793,775,94,100,66,75,0,2,0,0,70,64,862,830,115,123,111,117,5,6,0,4,55,50,47,40,1,3,6,3,0,0,0,0,1,4,48,44,1,6,6,4,0,0,1,0 -050,01,079,Alabama,Lawrence County,12,4,1913,990,923,734,659,90,98,79,101,2,2,0,0,85,63,817,716,111,116,142,143,7,8,1,3,945,891,693,636,90,98,77,94,2,2,0,0,83,61,774,691,111,115,138,135,7,8,1,3,45,32,41,23,0,0,2,7,0,0,0,0,2,2,43,25,0,1,4,8,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,5,1710,857,853,621,630,96,110,79,65,1,0,0,0,60,48,677,675,106,120,129,102,4,4,2,2,827,824,601,605,92,109,74,62,1,0,0,0,59,48,656,650,102,119,123,99,4,4,2,2,30,29,20,25,4,1,5,3,0,0,0,0,1,0,21,25,4,1,6,3,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,6,2099,1038,1061,788,852,119,111,74,47,2,4,0,0,55,47,839,895,125,120,120,83,8,7,1,3,1024,1031,779,828,115,111,73,43,2,4,0,0,55,45,830,869,121,118,119,79,8,7,1,3,14,30,9,24,4,0,1,4,0,0,0,0,0,2,9,26,4,2,1,4,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,7,1875,916,959,726,770,100,102,57,58,8,2,1,1,24,26,748,795,106,106,75,79,10,4,2,1,885,946,705,761,99,99,52,58,5,2,0,1,24,25,727,785,105,102,70,79,7,4,1,1,31,13,21,9,1,3,5,0,3,0,1,0,0,1,21,10,1,4,5,0,3,0,1,0 -050,01,079,Alabama,Lawrence County,12,8,1847,905,942,701,715,89,85,76,105,5,4,0,1,34,32,735,745,95,88,103,134,5,5,1,2,875,913,678,691,88,85,74,101,5,4,0,1,30,31,708,720,91,88,100,130,5,5,1,1,30,29,23,24,1,0,2,4,0,0,0,0,4,1,27,25,4,0,3,4,0,0,0,1 -050,01,079,Alabama,Lawrence County,12,9,1825,907,918,718,695,77,102,78,75,1,5,1,0,32,41,750,735,79,106,108,111,1,7,1,0,886,899,699,679,77,102,76,72,1,5,1,0,32,41,731,719,79,106,106,108,1,7,1,0,21,19,19,16,0,0,2,3,0,0,0,0,0,0,19,16,0,0,2,3,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,10,2202,1064,1138,834,902,102,119,76,65,4,3,0,0,48,49,882,950,103,122,121,108,6,7,0,0,1040,1118,815,887,101,118,72,61,4,3,0,0,48,49,863,935,102,121,117,104,6,7,0,0,24,20,19,15,1,1,4,4,0,0,0,0,0,0,19,15,1,1,4,4,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,11,2422,1212,1210,982,954,134,153,54,60,1,4,0,0,41,39,1022,993,135,156,93,96,3,5,0,0,1193,1198,966,944,133,152,52,59,1,4,0,0,41,39,1006,983,134,155,91,95,3,5,0,0,19,12,16,10,1,1,2,1,0,0,0,0,0,0,16,10,1,1,2,1,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,12,2552,1211,1341,971,1045,137,170,63,76,1,3,1,0,38,47,1009,1092,137,174,101,119,1,3,1,0,1199,1325,964,1033,132,167,63,76,1,3,1,0,38,46,1002,1079,132,170,101,119,1,3,1,0,12,16,7,12,5,3,0,0,0,0,0,0,0,1,7,13,5,4,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,13,2266,1076,1190,828,938,141,141,67,72,3,3,1,0,36,36,864,973,142,142,101,107,4,4,1,0,1065,1183,819,931,140,141,66,72,3,3,1,0,36,36,855,966,141,142,100,107,4,4,1,0,11,7,9,7,1,0,1,0,0,0,0,0,0,0,9,7,1,0,1,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,14,1981,949,1032,755,780,110,139,43,55,0,3,0,0,41,55,795,832,111,144,83,107,1,4,0,0,944,1028,750,776,110,139,43,55,0,3,0,0,41,55,790,828,111,144,83,107,1,4,0,0,5,4,5,4,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,15,1725,782,943,639,747,80,123,36,29,0,4,0,0,27,40,666,784,81,127,61,69,1,4,0,0,779,938,636,742,80,123,36,29,0,4,0,0,27,40,663,779,81,127,61,69,1,4,0,0,3,5,3,5,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,16,1255,577,678,485,551,62,95,11,10,0,0,0,0,19,22,501,572,65,98,30,29,0,1,0,0,576,675,484,548,62,95,11,10,0,0,0,0,19,22,500,569,65,98,30,29,0,1,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,17,736,326,410,283,346,27,40,8,14,0,1,0,0,8,9,290,354,29,41,14,22,1,2,1,0,324,408,281,345,27,39,8,14,0,1,0,0,8,9,288,353,29,40,14,22,1,2,1,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,12,18,585,183,402,146,335,23,39,9,10,0,0,0,0,5,18,150,353,24,40,14,27,0,0,0,0,182,395,145,329,23,38,9,10,0,0,0,0,5,18,149,347,24,39,14,27,0,0,0,0,1,7,1,6,0,1,0,0,0,0,0,0,0,0,1,6,0,1,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,0,32857,16031,16826,12647,13100,1628,1861,931,974,35,52,5,2,785,837,13397,13901,1785,2019,1543,1628,79,98,19,24,15608,16444,12308,12794,1609,1842,895,941,32,50,4,2,760,815,13033,13574,1758,1988,1493,1585,74,95,17,23,423,382,339,306,19,19,36,33,3,2,1,0,25,22,364,327,27,31,50,43,5,3,2,1 -050,01,079,Alabama,Lawrence County,13,1,1779,909,870,731,660,76,77,34,34,2,5,0,0,66,94,796,746,106,120,65,81,10,15,3,2,877,823,704,628,76,75,32,29,2,3,0,0,63,88,766,708,104,116,63,72,9,13,3,2,32,47,27,32,0,2,2,5,0,2,0,0,3,6,30,38,2,4,2,9,1,2,0,0 -050,01,079,Alabama,Lawrence County,13,2,1939,995,944,801,746,90,83,25,18,1,3,0,0,78,94,875,836,122,116,67,77,8,8,1,3,951,896,762,705,90,80,24,18,1,3,0,0,74,90,832,791,120,110,64,75,8,8,1,3,44,48,39,41,0,3,1,0,0,0,0,0,4,4,43,45,2,6,3,2,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,3,2121,1077,1044,827,816,106,103,65,58,1,2,0,0,78,65,901,875,130,126,115,99,8,6,1,6,1020,989,781,770,104,101,58,54,1,2,0,0,76,62,853,827,128,122,107,94,8,6,0,5,57,55,46,46,2,2,7,4,0,0,0,0,2,3,48,48,2,4,8,5,0,0,1,1 -050,01,079,Alabama,Lawrence County,13,4,1890,997,893,748,636,87,90,81,98,3,2,0,0,78,67,821,699,107,110,138,144,9,7,1,2,941,865,699,616,87,90,77,94,3,2,0,0,75,63,769,675,106,108,132,138,9,7,1,2,56,28,49,20,0,0,4,4,0,0,0,0,3,4,52,24,1,2,6,6,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,5,1737,883,854,656,637,88,88,74,81,0,2,0,0,65,46,717,682,99,98,124,115,5,5,3,0,842,825,626,610,85,88,69,79,0,2,0,0,62,46,684,655,95,98,117,113,5,5,3,0,41,29,30,27,3,0,5,2,0,0,0,0,3,0,33,27,4,0,7,2,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,6,2069,1031,1038,792,822,111,109,70,51,3,5,0,0,55,51,843,869,122,117,115,91,5,10,2,2,1013,1002,781,794,107,107,69,45,3,5,0,0,53,51,830,841,117,115,113,85,5,10,2,2,18,36,11,28,4,2,1,6,0,0,0,0,2,0,13,28,5,2,2,6,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,7,1987,969,1018,758,830,104,108,61,53,9,1,0,1,37,25,794,854,108,111,93,73,11,3,0,2,939,1008,739,823,103,106,56,53,6,1,0,1,35,24,773,846,107,109,87,73,7,2,0,2,30,10,19,7,1,2,5,0,3,0,0,0,2,1,21,8,1,2,6,0,4,1,0,0 -050,01,079,Alabama,Lawrence County,13,8,1844,889,955,699,724,82,99,70,98,4,4,1,1,33,29,732,752,82,101,100,122,6,6,2,3,862,925,678,699,81,98,69,94,4,4,0,1,30,29,708,727,81,100,96,118,6,6,1,3,27,30,21,25,1,1,1,4,0,0,1,0,3,0,24,25,1,1,4,4,0,0,1,0 -050,01,079,Alabama,Lawrence County,13,9,1815,904,911,700,682,79,96,86,80,3,5,1,0,35,48,734,728,83,101,117,123,4,7,1,0,876,889,677,665,79,96,84,78,3,5,1,0,32,45,708,708,82,99,113,120,4,7,1,0,28,22,23,17,0,0,2,2,0,0,0,0,3,3,26,20,1,2,4,3,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,10,2090,1003,1087,798,859,91,103,72,71,3,5,0,0,39,49,837,906,94,105,107,115,3,8,1,2,976,1070,777,847,90,102,67,67,3,5,0,0,39,49,816,894,93,104,102,111,3,8,1,2,27,17,21,12,1,1,5,4,0,0,0,0,0,0,21,12,1,1,5,4,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,11,2392,1199,1193,962,939,132,159,57,53,2,4,0,0,46,38,1005,977,137,160,100,86,3,7,0,1,1179,1180,944,929,131,158,56,51,2,4,0,0,46,38,987,967,136,159,99,84,3,7,0,1,20,13,18,10,1,1,1,2,0,0,0,0,0,0,18,10,1,1,1,2,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,12,2566,1237,1329,995,1032,147,165,58,81,1,3,1,0,35,48,1028,1079,150,168,91,126,2,4,1,0,1218,1314,981,1020,143,163,57,81,1,3,1,0,35,47,1014,1066,146,165,90,126,2,4,1,0,19,15,14,12,4,2,1,0,0,0,0,0,0,1,14,13,4,3,1,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,13,2303,1070,1233,844,974,126,145,61,71,3,3,0,0,36,40,879,1014,129,146,95,110,3,3,0,0,1059,1223,836,965,124,144,60,71,3,3,0,0,36,40,871,1005,127,145,94,110,3,3,0,0,11,10,8,9,2,1,1,0,0,0,0,0,0,0,8,9,2,1,1,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,14,1943,941,1002,746,763,106,129,46,56,0,3,1,0,42,51,786,814,108,130,86,106,2,3,1,0,936,998,741,759,106,129,46,56,0,3,1,0,42,51,781,810,108,130,86,106,2,3,1,0,5,4,5,4,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,15,1778,836,942,676,744,91,121,42,37,0,4,1,0,26,36,700,779,94,122,66,73,0,4,2,0,832,938,672,740,91,121,42,37,0,4,1,0,26,36,696,775,94,122,66,73,0,4,2,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,16,1242,540,702,448,563,58,99,12,12,0,0,0,0,22,28,469,590,59,101,34,39,0,0,0,0,539,698,447,559,58,99,12,12,0,0,0,0,22,28,468,586,59,101,34,39,0,0,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,17,778,366,412,314,342,32,43,10,14,0,1,0,0,10,12,324,354,33,43,19,25,0,2,0,0,365,410,313,340,32,43,10,14,0,1,0,0,10,12,323,352,33,43,19,25,0,2,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,079,Alabama,Lawrence County,13,18,584,185,399,152,331,22,44,7,8,0,0,0,0,4,16,156,347,22,44,11,23,0,0,0,1,183,391,150,325,22,42,7,8,0,0,0,0,4,16,154,341,22,42,11,23,0,0,0,1,2,8,2,6,0,2,0,0,0,0,0,0,0,0,2,6,0,2,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,1,0,140247,69126,71121,50904,50790,14907,17258,265,224,1979,1787,100,54,971,1008,51755,51697,15369,17727,592,544,2280,2116,162,105,66524,69152,48806,49223,14691,17051,201,196,1911,1743,34,35,881,904,49574,50030,15111,17472,490,480,2191,2044,89,83,2602,1969,2098,1567,216,207,64,28,68,44,66,19,90,104,2181,1667,258,255,102,64,89,72,73,22 -050,01,081,Alabama,Lee County,1,1,8687,4456,4231,2957,2730,1168,1196,19,19,133,109,7,4,172,173,3108,2897,1290,1299,45,43,180,159,15,9,4217,3963,2774,2533,1137,1165,13,11,127,104,2,2,164,148,2917,2675,1255,1259,37,31,172,144,9,4,239,268,183,197,31,31,6,8,6,5,5,2,8,25,191,222,35,40,8,12,8,15,6,5 -050,01,081,Alabama,Lee County,1,2,8455,4394,4061,3001,2709,1156,1092,15,19,103,122,7,7,112,112,3104,2814,1225,1163,37,38,134,153,12,12,4167,3893,2818,2579,1137,1080,11,13,99,119,1,4,101,98,2910,2670,1202,1146,30,27,125,146,6,9,227,168,183,130,19,12,4,6,4,3,6,3,11,14,194,144,23,17,7,11,9,7,6,3 -050,01,081,Alabama,Lee County,1,3,8988,4495,4493,2968,2926,1282,1303,17,18,119,121,6,4,103,121,3063,3039,1350,1373,39,50,138,150,10,10,4346,4331,2858,2808,1263,1282,15,16,116,118,1,2,93,105,2943,2905,1327,1344,32,40,133,144,5,8,149,162,110,118,19,21,2,2,3,3,5,2,10,16,120,134,23,29,7,10,5,6,5,2 -050,01,081,Alabama,Lee County,1,4,13185,6581,6604,4834,4867,1449,1446,38,25,138,134,4,3,118,129,4946,4983,1496,1508,76,59,175,184,12,9,6351,6405,4651,4702,1425,1430,28,24,134,127,2,2,111,120,4756,4809,1468,1487,65,53,170,176,9,8,230,199,183,165,24,16,10,1,4,7,2,1,7,9,190,174,28,21,11,6,5,8,3,1 -050,01,081,Alabama,Lee County,1,5,21095,10868,10227,8735,8144,1633,1733,28,24,314,183,33,5,125,138,8841,8258,1680,1789,65,70,374,239,42,16,10405,9938,8358,7899,1597,1703,23,24,302,177,11,3,114,132,8454,8007,1638,1756,54,68,361,232,20,14,463,289,377,245,36,30,5,0,12,6,22,2,11,6,387,251,42,33,11,2,13,7,22,2 -050,01,081,Alabama,Lee County,1,6,10675,5430,5245,4014,3659,1031,1270,21,17,279,217,12,5,73,77,4072,3730,1062,1290,44,39,315,256,15,10,5112,5045,3754,3499,1004,1245,16,15,267,212,4,3,67,71,3806,3564,1032,1263,38,36,301,248,7,8,318,200,260,160,27,25,5,2,12,5,8,2,6,6,266,166,30,27,6,3,14,8,8,2 -050,01,081,Alabama,Lee County,1,7,8672,4229,4443,3000,2931,928,1253,21,13,206,189,14,4,60,53,3050,2974,951,1279,45,29,226,212,20,5,3970,4272,2789,2791,915,1243,14,10,199,182,6,3,47,43,2828,2825,931,1262,32,23,218,204,9,4,259,171,211,140,13,10,7,3,7,7,8,1,13,10,222,149,20,17,13,6,8,8,11,1 -050,01,081,Alabama,Lee County,1,8,8721,4176,4545,3010,3127,926,1216,23,12,179,155,4,6,34,29,3040,3152,934,1226,34,25,195,167,8,7,3982,4405,2852,3010,914,1199,12,10,172,154,1,5,31,27,2879,3033,921,1208,21,23,188,165,5,6,194,140,158,117,12,17,11,2,7,1,3,1,3,2,161,119,13,18,13,2,7,2,3,1 -050,01,081,Alabama,Lee County,1,9,8540,4196,4344,3007,2990,985,1153,15,12,147,142,6,7,36,40,3036,3024,993,1166,37,32,159,151,10,12,4038,4239,2877,2906,974,1142,12,11,143,140,1,5,31,35,2901,2935,981,1154,31,27,154,149,5,10,158,105,130,84,11,11,3,1,4,2,5,2,5,5,135,89,12,12,6,5,5,2,5,2 -050,01,081,Alabama,Lee County,1,10,8792,4318,4474,3082,3032,1060,1273,21,21,120,113,1,5,34,30,3108,3060,1069,1281,45,40,129,120,3,6,4199,4400,2980,2976,1055,1260,17,20,116,112,0,4,31,28,3005,3002,1062,1267,40,39,123,118,2,5,119,74,102,56,5,13,4,1,4,1,1,1,3,2,103,58,7,14,5,1,6,2,1,1 -050,01,081,Alabama,Lee County,1,11,8354,4071,4283,2949,3012,993,1127,15,6,77,101,1,4,36,33,2980,3040,1005,1137,42,29,83,108,2,5,3975,4212,2871,2956,985,1119,12,6,76,100,0,2,31,29,2899,2981,995,1125,36,28,80,106,1,3,96,71,78,56,8,8,3,0,1,1,1,2,5,4,81,59,10,12,6,1,3,2,1,2 -050,01,081,Alabama,Lee County,1,12,7124,3348,3776,2452,2665,805,997,15,13,53,78,1,0,22,23,2474,2684,810,1002,28,28,58,85,4,2,3296,3731,2413,2626,800,995,13,12,52,77,1,0,17,21,2430,2644,803,1000,23,25,56,83,3,2,52,45,39,39,5,2,2,1,1,1,0,0,5,2,44,40,7,2,5,3,2,2,1,0 -050,01,081,Alabama,Lee County,1,13,6243,3015,3228,2363,2430,597,705,7,11,32,63,1,0,15,19,2376,2446,600,709,20,27,34,65,2,0,2982,3197,2335,2408,594,700,7,10,31,61,1,0,14,18,2347,2424,597,704,19,25,32,62,1,0,33,31,28,22,3,5,0,1,1,2,0,0,1,1,29,22,3,5,1,2,2,3,1,0 -050,01,081,Alabama,Lee County,1,14,4407,2103,2304,1672,1791,371,470,5,6,41,24,1,0,13,13,1683,1802,374,474,16,16,42,26,3,1,2072,2292,1645,1781,369,468,5,6,40,24,1,0,12,13,1655,1792,371,472,15,16,41,26,3,1,31,12,27,10,2,2,0,0,1,0,0,0,1,0,28,10,3,2,1,0,1,0,0,0 -050,01,081,Alabama,Lee County,1,15,3120,1411,1709,1150,1304,226,370,1,5,24,24,2,0,8,6,1157,1309,229,372,6,8,24,26,3,0,1397,1689,1138,1287,225,367,1,5,24,24,2,0,7,6,1144,1292,227,369,6,8,24,26,3,0,14,20,12,17,1,3,0,0,0,0,0,0,1,0,13,17,2,3,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,1,16,2378,1070,1308,871,1011,181,282,3,1,10,9,0,0,5,5,875,1016,182,283,7,4,10,10,1,0,1060,1305,862,1008,181,282,2,1,10,9,0,0,5,5,866,1013,182,283,6,4,10,10,1,0,10,3,9,3,0,0,1,0,0,0,0,0,0,0,9,3,0,0,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,1,17,1514,595,919,524,731,63,183,1,0,4,3,0,0,3,2,526,733,64,183,4,2,4,3,0,0,587,913,518,725,63,183,0,0,3,3,0,0,3,2,520,727,64,183,3,2,3,3,0,0,8,6,6,6,0,0,1,0,1,0,0,0,0,0,6,6,0,0,1,0,1,0,0,0 -050,01,081,Alabama,Lee County,1,18,1297,370,927,315,731,53,189,0,2,0,0,0,0,2,5,316,736,55,193,2,5,0,2,0,1,368,922,313,729,53,188,0,2,0,0,0,0,2,3,314,732,55,190,2,5,0,2,0,1,2,5,2,2,0,1,0,0,0,0,0,0,0,2,2,4,0,3,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,2,0,140300,69152,71148,50926,50814,14911,17260,265,225,1979,1787,100,54,971,1008,51777,51721,15373,17729,592,545,2280,2116,162,105,66543,69169,48821,49238,14695,17053,201,196,1911,1743,34,35,881,904,49589,50045,15115,17474,490,480,2191,2044,89,83,2609,1979,2105,1576,216,207,64,29,68,44,66,19,90,104,2188,1676,258,255,102,65,89,72,73,22 -050,01,081,Alabama,Lee County,2,1,8687,4454,4233,2956,2732,1167,1196,19,19,133,109,7,4,172,173,3107,2899,1289,1299,45,43,180,159,15,9,4215,3964,2773,2534,1136,1165,13,11,127,104,2,2,164,148,2916,2676,1254,1259,37,31,172,144,9,4,239,269,183,198,31,31,6,8,6,5,5,2,8,25,191,223,35,40,8,12,8,15,6,5 -050,01,081,Alabama,Lee County,2,2,8459,4397,4062,3004,2709,1156,1093,15,19,103,122,7,7,112,112,3107,2814,1225,1164,37,38,134,153,12,12,4168,3894,2819,2579,1137,1081,11,13,99,119,1,4,101,98,2911,2670,1202,1147,30,27,125,146,6,9,229,168,185,130,19,12,4,6,4,3,6,3,11,14,196,144,23,17,7,11,9,7,6,3 -050,01,081,Alabama,Lee County,2,3,8993,4494,4499,2967,2932,1282,1303,17,18,119,121,6,4,103,121,3062,3045,1350,1373,39,50,138,150,10,10,4345,4333,2857,2810,1263,1282,15,16,116,118,1,2,93,105,2942,2907,1327,1344,32,40,133,144,5,8,149,166,110,122,19,21,2,2,3,3,5,2,10,16,120,138,23,29,7,10,5,6,5,2 -050,01,081,Alabama,Lee County,2,4,13189,6584,6605,4837,4868,1449,1446,38,25,138,134,4,3,118,129,4949,4984,1496,1508,76,59,175,184,12,9,6354,6406,4654,4703,1425,1430,28,24,134,127,2,2,111,120,4759,4810,1468,1487,65,53,170,176,9,8,230,199,183,165,24,16,10,1,4,7,2,1,7,9,190,174,28,21,11,6,5,8,3,1 -050,01,081,Alabama,Lee County,2,5,21095,10869,10226,8736,8143,1633,1733,28,24,314,183,33,5,125,138,8842,8257,1680,1789,65,70,374,239,42,16,10406,9937,8359,7898,1597,1703,23,24,302,177,11,3,114,132,8455,8006,1638,1756,54,68,361,232,20,14,463,289,377,245,36,30,5,0,12,6,22,2,11,6,387,251,42,33,11,2,13,7,22,2 -050,01,081,Alabama,Lee County,2,6,10681,5433,5248,4017,3662,1031,1270,21,17,279,217,12,5,73,77,4075,3733,1062,1290,44,39,315,256,15,10,5114,5048,3756,3502,1004,1245,16,15,267,212,4,3,67,71,3808,3567,1032,1263,38,36,301,248,7,8,319,200,261,160,27,25,5,2,12,5,8,2,6,6,267,166,30,27,6,3,14,8,8,2 -050,01,081,Alabama,Lee County,2,7,8678,4232,4446,3002,2934,929,1253,21,13,206,189,14,4,60,53,3052,2977,952,1279,45,29,226,212,20,5,3972,4273,2790,2792,916,1243,14,10,199,182,6,3,47,43,2829,2826,932,1262,32,23,218,204,9,4,260,173,212,142,13,10,7,3,7,7,8,1,13,10,223,151,20,17,13,6,8,8,11,1 -050,01,081,Alabama,Lee County,2,8,8727,4182,4545,3014,3127,928,1216,23,12,179,155,4,6,34,29,3044,3152,936,1226,34,25,195,167,8,7,3987,4405,2855,3010,916,1199,12,10,172,154,1,5,31,27,2882,3033,923,1208,21,23,188,165,5,6,195,140,159,117,12,17,11,2,7,1,3,1,3,2,162,119,13,18,13,2,7,2,3,1 -050,01,081,Alabama,Lee County,2,9,8545,4196,4349,3007,2993,985,1154,15,13,147,142,6,7,36,40,3036,3027,993,1167,37,33,159,151,10,12,4038,4242,2877,2908,974,1143,12,11,143,140,1,5,31,35,2901,2937,981,1155,31,27,154,149,5,10,158,107,130,85,11,11,3,2,4,2,5,2,5,5,135,90,12,12,6,6,5,2,5,2 -050,01,081,Alabama,Lee County,2,10,8792,4319,4473,3083,3031,1060,1273,21,21,120,113,1,5,34,30,3109,3059,1069,1281,45,40,129,120,3,6,4200,4399,2981,2975,1055,1260,17,20,116,112,0,4,31,28,3006,3001,1062,1267,40,39,123,118,2,5,119,74,102,56,5,13,4,1,4,1,1,1,3,2,103,58,7,14,5,1,6,2,1,1 -050,01,081,Alabama,Lee County,2,11,8362,4075,4287,2953,3016,993,1127,15,6,77,101,1,4,36,33,2984,3044,1005,1137,42,29,83,108,2,5,3978,4216,2874,2960,985,1119,12,6,76,100,0,2,31,29,2902,2985,995,1125,36,28,80,106,1,3,97,71,79,56,8,8,3,0,1,1,1,2,5,4,82,59,10,12,6,1,3,2,1,2 -050,01,081,Alabama,Lee County,2,12,7127,3349,3778,2452,2667,806,997,15,13,53,78,1,0,22,23,2474,2686,811,1002,28,28,58,85,4,2,3297,3732,2413,2627,801,995,13,12,52,77,1,0,17,21,2430,2645,804,1000,23,25,56,83,3,2,52,46,39,40,5,2,2,1,1,1,0,0,5,2,44,41,7,2,5,3,2,2,1,0 -050,01,081,Alabama,Lee County,2,13,6248,3018,3230,2365,2432,598,705,7,11,32,63,1,0,15,19,2378,2448,601,709,20,27,34,65,2,0,2984,3199,2336,2410,595,700,7,10,31,61,1,0,14,18,2348,2426,598,704,19,25,32,62,1,0,34,31,29,22,3,5,0,1,1,2,0,0,1,1,30,22,3,5,1,2,2,3,1,0 -050,01,081,Alabama,Lee County,2,14,4405,2102,2303,1671,1790,371,470,5,6,41,24,1,0,13,13,1682,1801,374,474,16,16,42,26,3,1,2071,2291,1644,1780,369,468,5,6,40,24,1,0,12,13,1654,1791,371,472,15,16,41,26,3,1,31,12,27,10,2,2,0,0,1,0,0,0,1,0,28,10,3,2,1,0,1,0,0,0 -050,01,081,Alabama,Lee County,2,15,3122,1412,1710,1151,1305,226,370,1,5,24,24,2,0,8,6,1158,1310,229,372,6,8,24,26,3,0,1398,1690,1139,1288,225,367,1,5,24,24,2,0,7,6,1145,1293,227,369,6,8,24,26,3,0,14,20,12,17,1,3,0,0,0,0,0,0,1,0,13,17,2,3,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,2,16,2379,1071,1308,872,1011,181,282,3,1,10,9,0,0,5,5,876,1016,182,283,7,4,10,10,1,0,1061,1305,863,1008,181,282,2,1,10,9,0,0,5,5,867,1013,182,283,6,4,10,10,1,0,10,3,9,3,0,0,1,0,0,0,0,0,0,0,9,3,0,0,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,2,17,1514,595,919,524,731,63,183,1,0,4,3,0,0,3,2,526,733,64,183,4,2,4,3,0,0,587,913,518,725,63,183,0,0,3,3,0,0,3,2,520,727,64,183,3,2,3,3,0,0,8,6,6,6,0,0,1,0,1,0,0,0,0,0,6,6,0,0,1,0,1,0,0,0 -050,01,081,Alabama,Lee County,2,18,1297,370,927,315,731,53,189,0,2,0,0,0,0,2,5,316,736,55,193,2,5,0,2,0,1,368,922,313,729,53,188,0,2,0,0,0,0,2,3,314,732,55,190,2,5,0,2,0,1,2,5,2,2,0,1,0,0,0,0,0,0,0,2,2,4,0,3,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,3,0,140815,69419,71396,51074,50956,14973,17344,280,228,2006,1809,102,55,984,1004,51956,51846,15414,17824,623,555,2313,2125,143,104,66785,69389,48948,49361,14758,17135,212,194,1941,1766,33,37,893,896,49752,50153,15160,17565,507,474,2234,2062,63,79,2634,2007,2126,1595,215,209,68,34,65,43,69,18,91,108,2204,1693,254,259,116,81,79,63,80,25 -050,01,081,Alabama,Lee County,3,1,8710,4465,4245,2968,2743,1165,1191,20,20,134,111,7,4,171,176,3127,2906,1279,1305,43,43,180,161,13,9,4222,3971,2779,2538,1136,1160,13,12,129,107,2,2,163,152,2931,2679,1245,1263,33,29,174,150,8,5,243,274,189,205,29,31,7,8,5,4,5,2,8,24,196,227,34,42,10,14,6,11,5,4 -050,01,081,Alabama,Lee County,3,2,8451,4396,4055,2994,2700,1160,1092,16,21,107,121,6,6,113,115,3096,2803,1228,1166,35,42,142,152,10,13,4168,3881,2808,2569,1142,1078,12,14,103,117,1,3,102,100,2901,2659,1207,1146,27,28,134,145,3,7,228,174,186,131,18,14,4,7,4,4,5,3,11,15,195,144,21,20,8,14,8,7,7,6 -050,01,081,Alabama,Lee County,3,3,9017,4517,4500,2988,2929,1282,1309,16,18,122,121,6,4,103,119,3086,3039,1339,1374,43,47,150,154,9,9,4365,4331,2876,2807,1261,1288,14,14,118,118,1,2,95,102,2968,2901,1315,1345,36,34,145,148,3,7,152,169,112,122,21,21,2,4,4,3,5,2,8,17,118,138,24,29,7,13,5,6,6,2 -050,01,081,Alabama,Lee County,3,4,13108,6545,6563,4789,4808,1461,1460,35,26,137,135,5,3,118,131,4897,4928,1516,1519,68,65,175,183,12,11,6317,6364,4606,4642,1439,1444,26,25,133,130,2,2,111,121,4707,4753,1492,1498,55,59,171,178,8,8,228,199,183,166,22,16,9,1,4,5,3,1,7,10,190,175,24,21,13,6,4,5,4,3 -050,01,081,Alabama,Lee County,3,5,21216,10921,10295,8759,8204,1648,1744,43,26,312,184,30,5,129,132,8873,8318,1712,1811,88,65,356,231,32,11,10466,10000,8384,7952,1615,1718,37,25,302,176,10,3,118,126,8490,8061,1671,1781,77,62,344,222,12,9,455,295,375,252,33,26,6,1,10,8,20,2,11,6,383,257,41,30,11,3,12,9,20,2 -050,01,081,Alabama,Lee County,3,6,10766,5468,5298,4046,3697,1028,1275,22,18,281,224,16,5,75,79,4114,3767,1053,1305,48,47,311,253,19,11,5140,5092,3780,3534,1001,1248,16,15,269,219,5,4,69,72,3842,3597,1023,1275,38,40,298,248,8,10,328,206,266,163,27,27,6,3,12,5,11,1,6,7,272,170,30,30,10,7,13,5,11,1 -050,01,081,Alabama,Lee County,3,7,8761,4288,4473,3032,2953,940,1258,26,12,215,194,13,4,62,52,3088,3000,956,1280,53,31,238,210,17,6,4016,4302,2813,2811,925,1248,15,9,209,189,5,3,49,42,2856,2848,936,1266,35,24,231,203,7,5,272,171,219,142,15,10,11,3,6,5,8,1,13,10,232,152,20,14,18,7,7,7,10,1 -050,01,081,Alabama,Lee County,3,8,8673,4150,4523,2988,3096,917,1227,20,11,183,155,5,6,37,28,3016,3120,923,1235,42,22,199,166,9,10,3958,4387,2833,2982,906,1211,11,9,176,154,1,5,31,26,2856,3004,912,1217,28,20,190,165,3,9,192,136,155,114,11,16,9,2,7,1,4,1,6,2,160,116,11,18,14,2,9,1,6,1 -050,01,081,Alabama,Lee County,3,9,8601,4217,4384,3028,3021,987,1157,14,13,145,146,7,8,36,39,3055,3050,996,1166,37,35,157,164,8,12,4054,4276,2895,2935,975,1146,11,11,141,144,1,6,31,34,2918,2961,982,1152,30,30,153,160,2,10,163,108,133,86,12,11,3,2,4,2,6,2,5,5,137,89,14,14,7,5,4,4,6,2 -050,01,081,Alabama,Lee County,3,10,8781,4325,4456,3088,3030,1058,1262,22,19,122,112,1,5,34,28,3118,3053,1062,1267,42,36,134,122,3,6,4205,4376,2986,2970,1051,1248,18,18,118,110,0,4,32,26,3015,2991,1053,1252,37,34,130,120,2,5,120,80,102,60,7,14,4,1,4,2,1,1,2,2,103,62,9,15,5,2,4,2,1,1 -050,01,081,Alabama,Lee County,3,11,8390,4085,4305,2945,3019,1005,1137,17,6,82,103,1,5,35,35,2977,3047,1012,1146,40,31,91,112,4,6,3984,4233,2864,2964,996,1128,13,6,81,102,0,3,30,30,2892,2987,1002,1136,33,28,90,110,1,4,101,72,81,55,9,9,4,0,1,1,1,2,5,5,85,60,10,10,7,3,1,2,3,2 -050,01,081,Alabama,Lee County,3,12,7205,3399,3806,2489,2685,820,1006,13,13,52,80,1,0,24,22,2511,2704,826,1012,29,29,57,85,1,0,3345,3761,2449,2646,815,1004,11,12,51,79,1,0,18,20,2465,2663,818,1010,24,26,55,84,1,0,54,45,40,39,5,2,2,1,1,1,0,0,6,2,46,41,8,2,5,3,2,1,0,0 -050,01,081,Alabama,Lee County,3,13,6309,3034,3275,2373,2462,603,722,7,11,33,62,1,0,17,18,2385,2479,606,724,21,26,37,65,3,0,3001,3243,2345,2440,600,716,7,10,32,60,1,0,16,17,2356,2456,603,718,21,24,36,63,2,0,33,32,28,22,3,6,0,1,1,2,0,0,1,1,29,23,3,6,0,2,1,2,1,0 -050,01,081,Alabama,Lee County,3,14,4438,2126,2312,1694,1794,372,475,5,6,42,25,1,0,12,12,1703,1805,377,478,14,16,45,26,1,0,2094,2301,1666,1785,370,473,5,6,41,25,1,0,11,12,1675,1796,374,476,14,16,43,26,1,0,32,11,28,9,2,2,0,0,1,0,0,0,1,0,28,9,3,2,0,0,2,0,0,0 -050,01,081,Alabama,Lee County,3,15,3163,1431,1732,1163,1327,232,370,1,5,25,23,2,0,8,7,1171,1333,233,371,8,10,25,25,2,0,1417,1712,1151,1310,231,367,1,5,25,23,2,0,7,7,1158,1316,231,368,8,10,25,25,2,0,14,20,12,17,1,3,0,0,0,0,0,0,1,0,13,17,2,3,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,3,16,2370,1069,1301,872,1006,180,281,2,1,10,9,0,0,5,4,877,1009,180,282,7,4,11,10,0,0,1060,1297,863,1002,180,281,2,1,10,9,0,0,5,4,868,1005,180,282,7,4,11,10,0,0,9,4,9,4,0,0,0,0,0,0,0,0,0,0,9,4,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,3,17,1539,608,931,537,737,63,188,1,0,4,4,0,0,3,2,539,738,64,189,4,2,4,4,0,0,600,926,531,732,63,188,0,0,3,4,0,0,3,2,533,733,64,189,3,2,3,4,0,0,8,5,6,5,0,0,1,0,1,0,0,0,0,0,6,5,0,0,1,0,1,0,0,0 -050,01,081,Alabama,Lee County,3,18,1317,375,942,321,745,52,190,0,2,0,0,0,0,2,5,323,747,52,194,1,4,1,2,0,0,373,936,319,742,52,189,0,2,0,0,0,0,2,3,321,743,52,191,1,4,1,1,0,0,2,6,2,3,0,1,0,0,0,0,0,0,0,2,2,4,0,3,0,0,0,1,0,0 -050,01,081,Alabama,Lee County,4,0,144194,71187,73007,52326,51847,15275,17812,285,235,2160,2024,91,57,1050,1032,53267,52752,15778,18323,627,549,2483,2356,135,115,68365,70832,50026,50116,15051,17590,211,186,2096,1977,30,38,951,925,50880,50925,15508,18053,502,453,2405,2286,66,87,2822,2175,2300,1731,224,222,74,49,64,47,61,19,99,107,2387,1827,270,270,125,96,78,70,69,28 -050,01,081,Alabama,Lee County,4,1,8747,4495,4252,2982,2746,1179,1174,20,16,135,140,7,3,172,173,3145,2909,1298,1290,42,38,183,193,12,6,4215,3973,2759,2530,1151,1146,14,10,131,135,1,2,159,150,2909,2671,1263,1252,31,25,176,179,6,4,280,279,223,216,28,28,6,6,4,5,6,1,13,23,236,238,35,38,11,13,7,14,6,2 -050,01,081,Alabama,Lee County,4,2,8650,4497,4153,3032,2760,1161,1095,11,18,143,146,6,5,144,129,3166,2881,1253,1178,30,40,182,178,14,10,4257,3938,2835,2598,1144,1074,8,9,138,140,2,2,130,115,2957,2706,1229,1151,22,26,175,170,8,5,240,215,197,162,17,21,3,9,5,6,4,3,14,14,209,175,24,27,8,14,7,8,6,5 -050,01,081,Alabama,Lee County,4,3,9138,4656,4482,3122,2887,1272,1330,19,19,133,129,5,5,105,112,3221,2988,1334,1400,41,41,161,160,7,13,4471,4318,2981,2768,1245,1314,17,14,129,124,0,2,99,96,3074,2855,1304,1375,36,30,157,151,2,7,185,164,141,119,27,16,2,5,4,5,5,3,6,16,147,133,30,25,5,11,4,9,5,6 -050,01,081,Alabama,Lee County,4,4,12853,6389,6464,4659,4651,1454,1511,34,30,126,136,6,4,110,132,4758,4766,1508,1577,64,66,162,185,14,12,6183,6247,4491,4471,1434,1492,28,28,123,135,2,2,105,119,4586,4575,1486,1551,55,57,159,183,8,9,206,217,168,180,20,19,6,2,3,1,4,2,5,13,172,191,22,26,9,9,3,2,6,3 -050,01,081,Alabama,Lee County,4,5,22043,11311,10732,9034,8505,1746,1844,42,30,327,203,15,5,147,145,9162,8637,1814,1912,89,73,378,253,20,12,10843,10388,8635,8210,1709,1822,38,23,319,192,6,3,136,138,8752,8335,1773,1887,80,62,368,242,10,10,468,344,399,295,37,22,4,7,8,11,9,2,11,7,410,302,41,25,9,11,10,11,10,2 -050,01,081,Alabama,Lee County,4,6,11082,5660,5422,4185,3750,1050,1315,20,18,291,253,22,6,92,80,4263,3812,1085,1348,55,45,332,287,25,12,5304,5208,3898,3590,1026,1281,11,11,278,248,8,4,83,74,3968,3648,1056,1311,39,35,318,280,11,10,356,214,287,160,24,34,9,7,13,5,14,2,9,6,295,164,29,37,16,10,14,7,14,2 -050,01,081,Alabama,Lee County,4,7,9282,4572,4710,3236,3115,985,1296,36,13,238,230,12,4,65,52,3292,3159,1006,1316,68,30,264,252,14,7,4259,4529,2984,2960,968,1284,17,10,232,227,4,3,54,45,3030,2997,984,1300,41,25,258,248,6,6,313,181,252,155,17,12,19,3,6,3,8,1,11,7,262,162,22,16,27,5,6,4,8,1 -050,01,081,Alabama,Lee County,4,8,8630,4122,4508,2917,3030,940,1236,18,14,200,186,3,5,44,37,2956,3060,951,1247,41,30,215,202,5,6,3930,4370,2764,2919,928,1219,10,11,194,183,0,4,34,34,2794,2946,935,1229,28,26,207,198,2,5,192,138,153,111,12,17,8,3,6,3,3,1,10,3,162,114,16,18,13,4,8,4,3,1 -050,01,081,Alabama,Lee County,4,9,8862,4330,4532,3145,3109,961,1208,15,13,165,161,9,8,35,33,3174,3134,970,1217,37,30,175,172,11,12,4153,4410,3001,3009,951,1196,9,10,160,160,2,7,30,28,3027,3031,959,1203,27,24,169,170,3,10,177,122,144,100,10,12,6,3,5,1,7,1,5,5,147,103,11,14,10,6,6,2,8,2 -050,01,081,Alabama,Lee County,4,10,8741,4324,4417,3081,3031,1061,1217,21,15,129,117,0,6,32,31,3108,3051,1069,1225,40,31,138,131,1,10,4192,4325,2967,2960,1052,1203,18,14,126,114,0,4,29,30,2991,2979,1058,1210,36,30,135,128,1,8,132,92,114,71,9,14,3,1,3,3,0,2,3,1,117,72,11,15,4,1,3,3,0,2 -050,01,081,Alabama,Lee County,4,11,8571,4158,4413,3015,3063,1004,1192,17,11,94,105,1,6,27,36,3039,3092,1009,1200,32,33,101,116,4,10,4055,4338,2929,3010,996,1179,13,10,92,104,0,5,25,30,2951,3033,1001,1187,27,28,99,113,2,8,103,75,86,53,8,13,4,1,2,1,1,1,2,6,88,59,8,13,5,5,2,3,2,2 -050,01,081,Alabama,Lee County,4,12,7493,3570,3923,2614,2775,865,1030,13,11,52,86,1,0,25,21,2633,2793,872,1035,31,27,57,89,3,1,3512,3884,2574,2741,857,1028,10,10,51,85,1,0,19,20,2590,2758,861,1033,25,25,54,88,2,1,58,39,40,34,8,2,3,1,1,1,0,0,6,1,43,35,11,2,6,2,3,1,1,0 -050,01,081,Alabama,Lee County,4,13,6720,3201,3519,2469,2619,658,808,9,12,41,60,1,0,23,20,2491,2637,661,811,25,28,46,63,1,1,3159,3481,2434,2592,655,802,9,11,39,59,1,0,21,17,2454,2608,657,804,24,24,44,62,1,1,42,38,35,27,3,6,0,1,2,1,0,0,2,3,37,29,4,7,1,4,2,1,0,0 -050,01,081,Alabama,Lee County,4,14,4649,2254,2395,1794,1844,398,502,7,7,44,30,1,0,10,12,1801,1854,402,506,14,14,46,33,1,2,2223,2378,1767,1829,396,501,7,7,43,29,1,0,9,12,1773,1839,399,505,14,14,45,32,1,2,31,17,27,15,2,1,0,0,1,1,0,0,1,0,28,15,3,1,0,0,1,1,0,0 -050,01,081,Alabama,Lee County,4,15,3336,1492,1844,1213,1418,241,387,1,4,26,25,1,0,10,10,1222,1426,244,391,9,13,27,25,1,1,1473,1824,1197,1402,239,383,1,4,26,25,1,0,9,10,1206,1410,241,387,9,13,26,25,1,1,19,20,16,16,2,4,0,0,0,0,0,0,1,0,16,16,3,4,0,0,1,0,0,0 -050,01,081,Alabama,Lee County,4,16,2397,1090,1307,890,1006,181,286,1,1,12,10,1,0,5,4,895,1010,181,287,5,4,12,10,2,0,1080,1299,880,998,181,286,1,1,12,10,1,0,5,4,885,1002,181,287,5,4,12,10,2,0,10,8,10,8,0,0,0,0,0,0,0,0,0,0,10,8,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,4,17,1643,674,969,596,768,71,193,1,1,3,6,0,0,3,1,598,769,73,193,3,2,3,6,0,0,666,965,590,764,71,193,0,1,2,6,0,0,3,1,592,765,73,193,2,2,2,6,0,0,8,4,6,4,0,0,1,0,1,0,0,0,0,0,6,4,0,0,1,0,1,0,0,0 -050,01,081,Alabama,Lee County,4,18,1357,392,965,342,770,48,188,0,2,1,1,0,0,1,4,343,774,48,190,1,4,1,1,0,0,390,957,340,765,48,187,0,2,1,1,0,0,1,2,341,767,48,188,1,3,1,1,0,0,2,8,2,5,0,1,0,0,0,0,0,0,0,2,2,7,0,2,0,1,0,0,0,0 -050,01,081,Alabama,Lee County,5,0,148670,73480,75190,53653,52998,15864,18500,297,242,2449,2297,99,64,1118,1089,54654,53968,16378,19038,647,581,2820,2638,147,113,70526,72822,51226,51079,15636,18277,203,180,2396,2258,38,46,1027,982,52148,51956,16108,18760,513,471,2745,2580,79,86,2954,2368,2427,1919,228,223,94,62,53,39,61,18,91,107,2506,2012,270,278,134,110,75,58,68,27 -050,01,081,Alabama,Lee County,5,1,8765,4434,4331,2910,2777,1146,1220,13,10,173,157,7,3,185,164,3084,2931,1269,1330,33,28,227,204,10,7,4150,4053,2681,2550,1119,1200,6,3,169,154,2,2,173,144,2844,2686,1234,1300,25,17,220,195,4,4,284,278,229,227,27,20,7,7,4,3,5,1,12,20,240,245,35,30,8,11,7,9,6,3 -050,01,081,Alabama,Lee County,5,2,9095,4726,4369,3162,2852,1227,1179,11,16,152,171,6,2,168,149,3321,2987,1334,1277,29,43,204,209,11,5,4468,4130,2949,2670,1204,1156,7,6,148,166,3,1,157,131,3098,2790,1306,1241,23,26,197,203,6,3,258,239,213,182,23,23,4,10,4,5,3,1,11,18,223,197,28,36,6,17,7,6,5,2 -050,01,081,Alabama,Lee County,5,3,9297,4811,4486,3197,2863,1304,1322,18,15,182,153,10,7,100,126,3288,2976,1361,1398,38,39,214,195,13,12,4582,4321,3015,2735,1276,1307,14,10,178,148,4,3,95,118,3102,2841,1331,1380,32,33,208,186,7,7,229,165,182,128,28,15,4,5,4,5,6,4,5,8,186,135,30,18,6,6,6,9,6,5 -050,01,081,Alabama,Lee County,5,4,12802,6333,6469,4607,4635,1446,1537,30,34,129,133,6,4,115,126,4710,4749,1501,1603,65,71,168,173,9,10,6116,6225,4429,4432,1424,1516,27,30,126,132,2,2,108,113,4526,4535,1476,1571,57,60,165,172,5,7,217,244,178,203,22,21,3,4,3,1,4,2,7,13,184,214,25,32,8,11,3,1,4,3 -050,01,081,Alabama,Lee County,5,5,22942,11892,11050,9392,8681,1904,1976,49,25,367,222,15,5,165,141,9531,8804,1982,2049,104,67,424,275,21,10,11424,10695,8973,8373,1882,1952,44,18,364,216,6,4,155,132,9104,8488,1955,2019,93,55,419,268,12,8,468,355,419,308,22,24,5,7,3,6,9,1,10,9,427,316,27,30,11,12,5,7,9,2 -050,01,081,Alabama,Lee County,5,6,11473,5795,5678,4243,3825,1140,1407,17,33,300,300,20,8,75,105,4308,3916,1167,1450,45,61,335,342,24,16,5442,5408,3951,3616,1112,1379,10,17,292,295,7,6,70,95,4013,3697,1135,1416,34,42,326,335,11,14,353,270,292,209,28,28,7,16,8,5,13,2,5,10,295,219,32,34,11,19,9,7,13,2 -050,01,081,Alabama,Lee County,5,7,9919,4928,4991,3465,3305,1059,1345,45,13,273,267,13,9,73,52,3527,3350,1082,1364,74,33,305,288,17,10,4583,4795,3205,3142,1035,1324,13,9,266,264,3,7,61,49,3257,3184,1054,1343,36,26,295,285,5,8,345,196,260,163,24,21,32,4,7,3,10,2,12,3,270,166,28,21,38,7,10,3,12,2 -050,01,081,Alabama,Lee County,5,8,8759,4192,4567,2919,3011,975,1261,21,15,222,229,3,5,52,46,2963,3051,989,1273,43,37,243,248,9,10,3996,4400,2767,2873,961,1246,9,11,215,226,2,4,42,40,2802,2908,971,1257,25,29,234,244,7,7,196,167,152,138,14,15,12,4,7,3,1,1,10,6,161,143,18,16,18,8,9,4,2,3 -050,01,081,Alabama,Lee County,5,9,9194,4441,4753,3185,3233,1005,1281,16,13,185,187,11,9,39,30,3220,3258,1014,1287,39,30,195,196,14,13,4267,4612,3042,3115,996,1267,10,11,183,186,3,8,33,25,3072,3136,1002,1272,30,25,192,193,6,12,174,141,143,118,9,14,6,2,2,1,8,1,6,5,148,122,12,15,9,5,3,3,8,1 -050,01,081,Alabama,Lee County,5,10,8748,4345,4403,3094,3016,1042,1213,24,13,155,121,1,7,29,33,3119,3046,1046,1223,42,31,165,129,3,10,4209,4317,2976,2948,1034,1202,20,12,151,118,0,5,28,32,3000,2977,1038,1211,38,30,160,126,2,8,136,86,118,68,8,11,4,1,4,3,1,2,1,1,119,69,8,12,4,1,5,3,1,2 -050,01,081,Alabama,Lee County,5,11,8752,4239,4513,3076,3116,998,1231,18,12,116,115,1,4,30,35,3102,3146,1001,1237,41,36,123,124,4,5,4136,4434,2987,3057,990,1217,15,12,113,114,1,4,30,30,3013,3083,993,1222,38,32,120,122,4,5,103,79,89,59,8,14,3,0,3,1,0,0,0,5,89,63,8,15,3,4,3,2,0,0 -050,01,081,Alabama,Lee County,5,12,7816,3753,4063,2725,2884,923,1048,14,12,57,95,2,0,32,24,2753,2906,931,1052,34,30,65,98,4,2,3678,4018,2672,2847,915,1044,9,11,56,94,1,0,25,22,2693,2867,920,1048,26,27,62,97,2,2,75,45,53,37,8,4,5,1,1,1,1,0,7,2,60,39,11,4,8,3,3,1,2,0 -050,01,081,Alabama,Lee County,5,13,6770,3228,3542,2444,2621,706,827,9,13,45,60,1,0,23,21,2463,2640,709,832,23,28,55,63,3,1,3183,3501,2405,2590,704,821,9,13,44,60,1,0,20,17,2421,2606,707,825,22,25,52,63,3,0,45,41,39,31,2,6,0,0,1,0,0,0,3,4,42,34,2,7,1,3,3,0,0,1 -050,01,081,Alabama,Lee County,5,14,5207,2512,2695,2013,2056,435,573,6,9,45,40,1,1,12,16,2025,2070,437,575,15,23,47,42,1,1,2487,2674,1992,2042,432,571,6,8,45,38,1,0,11,15,2003,2055,433,573,15,21,47,40,1,0,25,21,21,14,3,2,0,1,0,2,0,1,1,1,22,15,4,2,0,2,0,2,0,1 -050,01,081,Alabama,Lee County,5,15,3509,1594,1915,1309,1475,240,397,3,5,29,26,1,0,12,12,1321,1484,240,402,11,13,31,29,3,1,1573,1901,1292,1464,238,394,3,5,28,26,1,0,11,12,1303,1473,238,399,10,13,30,29,3,1,21,14,17,11,2,3,0,0,1,0,0,0,1,0,18,11,2,3,1,0,1,0,0,0 -050,01,081,Alabama,Lee County,5,16,2496,1114,1382,905,1064,187,301,2,1,14,11,1,0,5,5,909,1068,188,302,7,5,14,12,1,0,1100,1371,892,1054,187,300,1,1,14,11,1,0,5,5,896,1058,188,301,6,5,14,12,1,0,14,11,13,10,0,1,1,0,0,0,0,0,0,0,13,10,0,1,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,5,17,1708,714,994,627,790,79,193,1,1,4,8,0,0,3,2,630,791,79,194,4,3,4,8,0,0,705,989,620,785,79,193,0,1,3,8,0,0,3,2,623,786,79,194,3,3,3,8,0,0,9,5,7,5,0,0,1,0,1,0,0,0,0,0,7,5,0,0,1,0,1,0,0,0 -050,01,081,Alabama,Lee County,5,18,1418,429,989,380,794,48,189,0,2,1,2,0,0,0,2,380,795,48,190,0,3,1,3,0,0,427,978,378,786,48,188,0,2,1,2,0,0,0,0,378,786,48,188,0,2,1,2,0,0,2,11,2,8,0,1,0,0,0,0,0,0,0,2,2,9,0,2,0,1,0,1,0,0 -050,01,081,Alabama,Lee County,6,0,151943,75185,76758,54673,53784,16321,18988,274,236,2674,2522,81,68,1162,1160,55709,54817,16874,19561,641,584,3050,2890,134,128,72039,74316,52058,51818,16078,18756,192,181,2614,2479,34,47,1063,1035,53007,52747,16585,19262,510,478,2972,2819,79,96,3146,2442,2615,1966,243,232,82,55,60,43,47,21,99,125,2702,2070,289,299,131,106,78,71,55,32 -050,01,081,Alabama,Lee County,6,1,8909,4497,4412,2949,2796,1145,1247,10,7,213,180,0,3,180,179,3119,2963,1263,1366,35,27,267,230,6,10,4200,4119,2691,2557,1129,1221,7,2,208,177,0,2,165,160,2847,2706,1238,1331,27,17,257,222,5,7,297,293,258,239,16,26,3,5,5,3,0,1,15,19,272,257,25,35,8,10,10,8,1,3 -050,01,081,Alabama,Lee County,6,2,9335,4814,4521,3185,2918,1292,1240,13,12,151,178,7,4,166,169,3341,3069,1401,1351,38,40,202,224,9,14,4551,4258,2979,2723,1260,1213,5,5,148,174,3,2,156,141,3126,2853,1363,1306,25,24,199,212,5,9,263,263,206,195,32,27,8,7,3,4,4,2,10,28,215,216,38,45,13,16,3,12,4,5 -050,01,081,Alabama,Lee County,6,3,9313,4858,4455,3231,2847,1279,1276,10,14,212,195,7,5,119,118,3343,2956,1348,1347,32,38,249,228,11,10,4585,4284,3008,2716,1254,1265,8,8,206,188,1,1,108,106,3109,2813,1318,1331,26,26,241,219,5,6,273,171,223,131,25,11,2,6,6,7,6,4,11,12,234,143,30,16,6,12,8,9,6,4 -050,01,081,Alabama,Lee County,6,4,13044,6411,6633,4688,4735,1449,1565,26,34,125,156,6,6,117,137,4796,4863,1510,1634,57,66,164,202,11,13,6184,6400,4507,4548,1423,1541,23,30,122,155,1,3,108,123,4606,4663,1479,1601,50,59,159,199,6,8,227,233,181,187,26,24,3,4,3,1,5,3,9,14,190,200,31,33,7,7,5,3,5,5 -050,01,081,Alabama,Lee County,6,5,23275,12247,11028,9580,8552,2011,2066,45,24,432,242,2,3,177,141,9740,8672,2091,2137,99,64,496,292,6,10,11765,10712,9147,8275,1983,2042,40,23,428,237,2,2,165,133,9298,8391,2058,2110,88,58,488,284,5,8,482,316,433,277,28,24,5,1,4,5,0,1,12,8,442,281,33,27,11,6,8,8,1,2 -050,01,081,Alabama,Lee County,6,6,11729,5828,5901,4178,3945,1268,1524,22,32,257,281,21,9,82,110,4245,4040,1299,1570,51,67,292,328,26,16,5442,5594,3856,3706,1235,1494,17,13,247,275,11,7,76,99,3919,3796,1263,1531,43,43,280,319,16,14,386,307,322,239,33,30,5,19,10,6,10,2,6,11,326,244,36,39,8,24,12,9,10,2 -050,01,081,Alabama,Lee County,6,7,10125,5011,5114,3588,3389,1042,1353,23,18,268,284,15,10,75,60,3652,3443,1065,1375,50,38,302,313,19,10,4707,4930,3343,3237,1016,1333,12,13,261,280,5,8,70,59,3402,3290,1037,1354,37,33,295,309,8,8,304,184,245,152,26,20,11,5,7,4,10,2,5,1,250,153,28,21,13,5,7,4,11,2 -050,01,081,Alabama,Lee County,6,8,9049,4399,4650,3025,3038,1032,1276,31,11,264,278,2,3,45,44,3062,3076,1043,1289,53,34,280,296,8,6,4153,4470,2830,2888,1019,1265,9,7,256,275,1,1,38,34,2861,2917,1028,1272,26,25,272,291,5,2,246,180,195,150,13,11,22,4,8,3,1,2,7,10,201,159,15,17,27,9,8,5,3,4 -050,01,081,Alabama,Lee County,6,9,9423,4519,4904,3197,3287,1029,1344,17,14,221,219,10,9,45,31,3234,3317,1039,1353,41,30,235,225,15,11,4337,4769,3052,3176,1018,1329,8,12,218,217,3,7,38,28,3083,3203,1027,1337,28,26,231,223,6,9,182,135,145,111,11,15,9,2,3,2,7,2,7,3,151,114,12,16,13,4,4,2,9,2 -050,01,081,Alabama,Lee County,6,10,8757,4352,4405,3081,3022,1037,1186,22,9,177,136,3,8,32,44,3106,3057,1045,1200,44,32,185,150,5,14,4211,4305,2963,2941,1027,1175,18,9,174,132,0,7,29,41,2986,2973,1034,1188,38,31,182,146,1,12,141,100,118,81,10,11,4,0,3,4,3,1,3,3,120,84,11,12,6,1,3,4,4,2 -050,01,081,Alabama,Lee County,6,11,8940,4349,4591,3125,3136,1030,1280,20,15,139,122,1,6,34,32,3155,3159,1034,1288,44,36,148,132,3,8,4223,4508,3012,3072,1024,1266,18,15,135,121,1,6,33,28,3041,3091,1028,1273,41,33,144,131,3,8,126,83,113,64,6,14,2,0,4,1,0,0,1,4,114,68,6,15,3,3,4,1,0,0 -050,01,081,Alabama,Lee County,6,12,8132,3894,4238,2828,3010,949,1089,11,12,71,95,2,1,33,31,2855,3036,960,1097,29,31,80,103,6,3,3806,4181,2761,2964,940,1083,6,11,71,94,1,1,27,28,2783,2987,946,1090,21,29,79,101,5,3,88,57,67,46,9,6,5,1,0,1,1,0,6,3,72,49,14,7,8,2,1,2,1,0 -050,01,081,Alabama,Lee County,6,13,6771,3229,3542,2440,2636,705,815,11,14,50,55,1,0,22,22,2458,2655,711,821,29,30,52,58,1,1,3183,3498,2400,2602,705,811,10,14,49,55,1,0,18,16,2414,2615,710,815,25,25,51,58,1,1,46,44,40,34,0,4,1,0,1,0,0,0,4,6,44,40,1,6,4,5,1,0,0,0 -050,01,081,Alabama,Lee County,6,14,5547,2664,2883,2145,2193,458,611,5,9,39,51,2,1,15,18,2153,2210,465,612,15,21,42,56,4,2,2634,2855,2122,2174,454,607,5,8,38,49,2,0,13,17,2129,2190,460,608,14,20,40,53,4,1,30,28,23,19,4,4,0,1,1,2,0,1,2,1,24,20,5,4,1,1,2,3,0,1 -050,01,081,Alabama,Lee County,6,15,3801,1767,2034,1453,1572,267,418,4,6,30,27,1,0,12,11,1464,1582,269,420,14,14,30,29,2,0,1740,2021,1432,1560,263,417,4,6,29,27,1,0,11,11,1442,1570,265,419,13,14,29,29,2,0,27,13,21,12,4,1,0,0,1,0,0,0,1,0,22,12,4,1,1,0,1,0,0,0 -050,01,081,Alabama,Lee County,6,16,2585,1152,1433,928,1099,199,312,2,2,18,11,1,0,4,9,931,1108,200,313,6,10,18,11,1,0,1137,1416,914,1085,199,309,1,2,18,11,1,0,4,9,917,1094,200,310,5,10,18,11,1,0,15,17,14,14,0,3,1,0,0,0,0,0,0,0,14,14,0,3,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,6,17,1744,735,1009,633,802,92,196,2,1,4,8,0,0,4,2,636,803,94,197,4,3,5,8,1,0,724,1004,624,797,92,196,1,1,3,8,0,0,4,2,627,798,94,197,3,3,4,8,1,0,11,5,9,5,0,0,1,0,1,0,0,0,0,0,9,5,0,0,1,0,1,0,0,0 -050,01,081,Alabama,Lee County,6,18,1464,459,1005,419,807,37,190,0,2,3,4,0,0,0,2,419,808,37,191,0,3,3,5,0,0,457,992,417,797,37,189,0,2,3,4,0,0,0,0,417,797,37,189,0,2,3,4,0,0,2,13,2,10,0,1,0,0,0,0,0,0,0,2,2,11,0,2,0,1,0,1,0,0 -050,01,081,Alabama,Lee County,7,0,154682,76406,78276,55230,54577,16675,19507,286,249,2916,2665,83,67,1216,1211,56314,55639,17258,20113,661,596,3313,3049,135,139,73246,75777,52596,52550,16446,19273,201,188,2847,2626,35,45,1121,1095,53605,53523,16982,19809,525,495,3225,2980,77,106,3160,2499,2634,2027,229,234,85,61,69,39,48,22,95,116,2709,2116,276,304,136,101,88,69,58,33 -050,01,081,Alabama,Lee County,7,1,9098,4653,4445,2967,2825,1208,1211,17,10,250,198,0,2,211,199,3159,3013,1348,1344,45,28,312,253,8,9,4356,4171,2724,2599,1190,1184,9,4,239,197,0,1,194,186,2903,2775,1319,1308,30,20,296,249,6,8,297,274,243,226,18,27,8,6,11,1,0,1,17,13,256,238,29,36,15,8,16,4,2,1 -050,01,081,Alabama,Lee County,7,2,9362,4804,4558,3107,2888,1326,1317,12,17,177,177,4,2,178,157,3272,3033,1440,1418,37,45,231,219,8,8,4545,4304,2899,2692,1293,1295,7,8,171,173,1,2,174,134,3060,2819,1407,1384,29,27,224,211,5,5,259,254,208,196,33,22,5,9,6,4,3,0,4,23,212,214,33,34,8,18,7,8,3,3 -050,01,081,Alabama,Lee County,7,3,9396,4857,4539,3248,2912,1256,1269,9,14,226,215,7,7,111,122,3352,3020,1323,1345,31,37,257,251,10,13,4574,4340,3010,2757,1236,1258,7,6,220,210,2,1,99,108,3103,2854,1297,1326,25,23,249,242,4,7,283,199,238,155,20,11,2,8,6,5,5,6,12,14,249,166,26,19,6,14,8,9,6,6 -050,01,081,Alabama,Lee County,7,4,13260,6519,6741,4784,4859,1409,1522,23,33,160,179,5,5,138,143,4909,4991,1477,1593,56,70,207,229,13,9,6293,6495,4600,4658,1389,1495,19,29,159,177,0,3,126,133,4715,4781,1453,1559,45,63,203,225,8,7,226,246,184,201,20,27,4,4,1,2,5,2,12,10,194,210,24,34,11,7,4,4,5,2 -050,01,081,Alabama,Lee County,7,5,23152,12192,10960,9395,8415,2085,2156,50,26,476,221,6,3,180,139,9556,8533,2171,2232,107,63,541,267,9,13,11785,10678,9032,8168,2059,2137,46,24,472,217,4,2,172,130,9186,8278,2140,2207,98,59,537,262,7,11,407,282,363,247,26,19,4,2,4,4,2,1,8,9,370,255,31,25,9,4,4,5,2,2 -050,01,081,Alabama,Lee County,7,6,11891,6022,5869,4299,3941,1361,1511,22,29,243,263,20,8,77,117,4365,4036,1388,1562,52,59,276,310,23,20,5643,5560,3975,3696,1334,1481,18,16,233,259,9,6,74,102,4039,3783,1360,1522,45,41,266,301,11,16,379,309,324,245,27,30,4,13,10,4,11,2,3,15,326,253,28,40,7,18,10,9,12,4 -050,01,081,Alabama,Lee County,7,7,10319,5052,5267,3651,3478,1038,1434,26,17,256,264,15,8,66,66,3706,3534,1058,1459,54,37,285,293,18,12,4730,5072,3385,3318,1014,1412,12,11,250,260,7,6,62,65,3438,3373,1032,1436,37,31,277,289,10,10,322,195,266,160,24,22,14,6,6,4,8,2,4,1,268,161,26,23,17,6,8,4,8,2 -050,01,081,Alabama,Lee County,7,8,9291,4443,4848,3069,3146,1032,1345,30,12,262,292,3,4,47,49,3108,3184,1045,1361,51,31,279,313,8,10,4156,4640,2846,2975,1013,1328,9,8,252,287,0,3,36,39,2875,3007,1021,1337,24,24,268,305,4,7,287,208,223,171,19,17,21,4,10,5,3,1,11,10,233,177,24,24,27,7,11,8,4,3 -050,01,081,Alabama,Lee County,7,9,9508,4489,5019,3136,3339,1029,1362,16,14,258,254,7,11,43,39,3170,3370,1042,1374,41,35,273,267,8,15,4316,4883,2996,3228,1016,1348,9,9,256,254,2,7,37,37,3027,3257,1024,1359,30,29,270,267,2,11,173,136,140,111,13,14,7,5,2,0,5,4,6,2,143,113,18,15,11,6,3,0,6,4 -050,01,081,Alabama,Lee County,7,10,8967,4434,4533,3136,3078,1043,1218,14,13,197,173,6,8,38,43,3169,3115,1049,1232,38,32,207,187,10,12,4263,4432,2988,2996,1036,1209,11,12,194,168,1,7,33,40,3019,3032,1040,1220,31,31,204,181,3,10,171,101,148,82,7,9,3,1,3,5,5,1,5,3,150,83,9,12,7,1,3,6,7,2 -050,01,081,Alabama,Lee County,7,11,9168,4480,4688,3188,3159,1070,1324,24,17,164,147,2,6,32,35,3215,3188,1074,1332,44,36,175,158,5,9,4360,4600,3087,3094,1063,1308,19,16,158,145,2,5,31,32,3113,3121,1067,1314,38,35,169,154,5,8,120,88,101,65,7,16,5,1,6,2,0,1,1,3,102,67,7,18,6,1,6,4,0,1 -050,01,081,Alabama,Lee County,7,12,8347,4023,4324,2927,3061,951,1111,14,12,92,105,1,2,38,33,2961,3089,961,1119,37,35,105,112,3,5,3930,4246,2852,2996,944,1104,10,12,92,104,0,2,32,28,2882,3020,951,1110,30,30,103,110,0,4,93,78,75,65,7,7,4,0,0,1,1,0,6,5,79,69,10,9,7,5,2,2,3,1 -050,01,081,Alabama,Lee County,7,13,7002,3266,3736,2420,2697,756,941,13,14,56,60,1,0,20,24,2437,2716,764,947,24,31,61,65,2,2,3216,3692,2376,2661,756,938,11,13,55,60,1,0,17,20,2390,2677,762,943,22,28,59,63,2,1,50,44,44,36,0,3,2,1,1,0,0,0,3,4,47,39,2,4,2,3,2,2,0,1 -050,01,081,Alabama,Lee County,7,14,5858,2807,3051,2255,2295,484,672,7,8,39,57,3,1,19,18,2270,2311,488,675,20,22,42,61,6,2,2770,3016,2226,2271,480,667,7,7,38,55,3,0,16,16,2238,2285,483,670,19,20,40,57,6,1,37,35,29,24,4,5,0,1,1,2,0,1,3,2,32,26,5,5,1,2,2,4,0,1 -050,01,081,Alabama,Lee County,7,15,4057,1901,2156,1556,1696,302,413,5,5,27,28,1,0,10,14,1565,1707,304,416,13,16,29,31,2,0,1874,2141,1533,1681,299,413,5,5,26,28,1,0,10,14,1542,1692,301,416,13,16,28,31,2,0,27,15,23,15,3,0,0,0,1,0,0,0,0,0,23,15,3,0,0,0,1,0,0,0 -050,01,081,Alabama,Lee County,7,16,2706,1206,1500,996,1167,178,302,2,5,23,17,2,0,5,9,1001,1175,178,303,7,13,23,18,2,0,1191,1483,983,1154,177,298,1,5,23,17,2,0,5,9,988,1162,177,299,6,13,23,18,2,0,15,17,13,13,1,4,1,0,0,0,0,0,0,0,13,13,1,4,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,7,17,1782,775,1007,653,790,112,205,1,1,6,9,0,0,3,2,656,791,113,206,3,3,6,9,0,0,766,1003,645,786,112,205,1,1,5,9,0,0,3,2,648,787,113,206,3,3,5,9,0,0,9,4,8,4,0,0,0,0,1,0,0,0,0,0,8,4,0,0,0,0,1,0,0,0 -050,01,081,Alabama,Lee County,7,18,1518,483,1035,443,831,35,194,1,2,4,6,0,0,0,2,443,833,35,195,1,3,4,6,0,0,478,1021,439,820,35,193,0,2,4,6,0,0,0,0,439,820,35,193,0,2,4,6,0,0,5,14,4,11,0,1,1,0,0,0,0,0,0,2,4,13,0,2,1,1,0,0,0,0 -050,01,081,Alabama,Lee County,8,0,157162,77604,79558,55820,55288,17006,19816,309,265,3145,2829,81,63,1243,1297,56938,56434,17607,20464,671,651,3558,3262,128,135,74460,77024,53189,53252,16781,19577,212,200,3091,2790,36,39,1151,1166,54232,54293,17334,20160,536,526,3481,3190,76,90,3144,2534,2631,2036,225,239,97,65,54,39,45,24,92,131,2706,2141,273,304,135,125,77,72,52,45 -050,01,081,Alabama,Lee County,8,1,9217,4685,4532,2960,2891,1218,1192,18,13,288,219,1,1,200,216,3145,3087,1355,1340,41,43,349,276,6,10,4401,4256,2729,2672,1200,1169,8,6,277,213,1,1,186,195,2905,2853,1329,1304,25,24,334,266,5,6,284,276,231,219,18,23,10,7,11,6,0,0,14,21,240,234,26,36,16,19,15,10,1,4 -050,01,081,Alabama,Lee County,8,2,9395,4853,4542,3087,2890,1359,1304,18,19,193,165,7,3,189,161,3267,3033,1483,1406,46,46,245,208,11,12,4590,4263,2885,2669,1326,1281,9,9,190,164,3,2,177,138,3053,2796,1443,1371,32,27,241,201,7,8,263,279,202,221,33,23,9,10,3,1,4,1,12,23,214,237,40,35,14,19,4,7,4,4 -050,01,081,Alabama,Lee County,8,3,9468,4893,4575,3250,2928,1258,1231,9,18,249,247,8,10,119,141,3358,3059,1329,1312,34,45,285,296,10,17,4617,4372,3010,2782,1242,1218,8,9,245,242,2,3,110,118,3112,2892,1308,1286,28,28,279,284,4,6,276,203,240,146,16,13,1,9,4,5,6,7,9,23,246,167,21,26,6,17,6,12,6,11 -050,01,081,Alabama,Lee County,8,4,13387,6629,6758,4866,4850,1414,1521,20,32,178,198,5,3,146,154,5003,4989,1486,1603,55,69,226,258,12,8,6386,6517,4663,4651,1393,1498,17,27,178,197,0,1,135,143,4790,4779,1462,1575,47,60,223,255,6,5,243,241,203,199,21,23,3,5,0,1,5,2,11,11,213,210,24,28,8,9,3,3,6,3 -050,01,081,Alabama,Lee County,8,5,22850,11958,10892,9207,8260,2024,2220,51,29,494,235,5,2,177,146,9368,8388,2111,2296,104,73,554,285,8,9,11590,10620,8873,8027,2008,2199,47,26,491,233,2,1,169,134,9026,8144,2088,2269,97,64,551,282,5,7,368,272,334,233,16,21,4,3,3,2,3,1,8,12,342,244,23,27,7,9,3,3,3,2 -050,01,081,Alabama,Lee County,8,6,12174,6211,5963,4379,4027,1450,1520,23,30,263,249,16,9,80,128,4446,4137,1477,1575,47,62,304,302,23,19,5825,5703,4048,3825,1415,1491,19,17,257,245,9,6,77,119,4112,3929,1440,1541,43,45,296,296,16,14,386,260,331,202,35,29,4,13,6,4,7,3,3,9,334,208,37,34,4,17,8,6,7,5 -050,01,081,Alabama,Lee County,8,7,10464,5122,5342,3691,3534,1067,1461,24,14,260,263,12,7,68,63,3748,3591,1085,1485,50,35,293,293,14,11,4804,5139,3417,3367,1048,1435,13,11,257,260,6,5,63,61,3471,3422,1064,1458,37,31,287,290,8,9,318,203,274,167,19,26,11,3,3,3,6,2,5,2,277,169,21,27,13,4,6,3,6,2 -050,01,081,Alabama,Lee County,8,8,9467,4558,4909,3147,3154,1046,1363,38,15,271,312,7,5,49,60,3183,3205,1062,1382,60,43,292,336,14,9,4295,4689,2951,2975,1025,1346,13,9,264,306,1,3,41,50,2983,3019,1037,1362,31,32,281,327,5,4,263,220,196,179,21,17,25,6,7,6,6,2,8,10,200,186,25,20,29,11,11,9,9,5 -050,01,081,Alabama,Lee County,8,9,9410,4448,4962,3071,3264,1048,1376,16,16,264,255,3,9,46,42,3110,3302,1061,1389,37,35,282,272,5,12,4265,4806,2919,3136,1036,1359,8,11,260,254,2,6,40,40,2952,3172,1047,1370,27,30,277,271,3,9,183,156,152,128,12,17,8,5,4,1,1,3,6,2,158,130,14,19,10,5,5,1,2,3 -050,01,081,Alabama,Lee County,8,10,9314,4561,4753,3203,3203,1069,1270,17,15,232,216,7,4,33,45,3233,3240,1074,1284,37,35,239,235,11,8,4376,4641,3049,3109,1059,1262,10,13,228,212,1,3,29,42,3076,3144,1063,1274,27,32,235,228,4,6,185,112,154,94,10,8,7,2,4,4,6,1,4,3,157,96,11,10,10,3,4,7,7,2 -050,01,081,Alabama,Lee County,8,11,9203,4470,4733,3176,3192,1063,1338,28,15,164,154,2,4,37,30,3211,3219,1068,1343,51,33,174,163,4,7,4352,4640,3076,3120,1057,1323,21,15,160,152,2,3,36,27,3110,3144,1062,1328,43,32,170,160,4,5,118,93,100,72,6,15,7,0,4,2,0,1,1,3,101,75,6,15,8,1,4,3,0,2 -050,01,081,Alabama,Lee County,8,12,8725,4266,4459,3068,3127,1021,1165,14,8,122,118,1,5,40,36,3100,3156,1030,1175,36,31,137,128,3,7,4163,4384,2985,3065,1013,1156,10,8,120,117,0,5,35,33,3013,3092,1019,1165,31,28,133,126,2,7,103,75,83,62,8,9,4,0,2,1,1,0,5,3,87,64,11,10,5,3,4,2,1,0 -050,01,081,Alabama,Lee County,8,13,7290,3400,3890,2527,2781,777,998,12,16,59,69,1,0,24,26,2549,2803,783,1005,27,38,64,71,1,2,3339,3843,2476,2742,775,996,10,15,58,68,1,0,19,22,2493,2760,778,1002,24,33,62,70,1,2,61,47,51,39,2,2,2,1,1,1,0,0,5,4,56,43,5,3,3,5,2,1,0,0 -050,01,081,Alabama,Lee County,8,14,6259,2981,3278,2379,2478,537,703,10,11,36,64,3,0,16,22,2390,2496,543,708,21,29,40,69,3,0,2946,3237,2349,2449,533,697,10,10,35,62,3,0,16,19,2360,2464,539,702,21,27,39,65,3,0,35,41,30,29,4,6,0,1,1,2,0,0,0,3,30,32,4,6,0,2,1,4,0,0 -050,01,081,Alabama,Lee County,8,15,4267,2012,2255,1637,1768,322,438,6,6,35,26,1,1,11,16,1648,1780,324,442,14,18,36,29,1,3,1983,2238,1612,1754,320,436,6,6,34,26,1,0,10,16,1622,1766,321,440,14,18,35,29,1,2,29,17,25,14,2,2,0,0,1,0,0,1,1,0,26,14,3,2,0,0,1,0,0,1 -050,01,081,Alabama,Lee County,8,16,2807,1224,1583,1018,1250,170,302,2,5,26,22,2,0,6,4,1023,1253,172,303,7,8,27,23,2,0,1211,1564,1008,1235,168,298,1,5,26,22,2,0,6,4,1013,1238,170,299,6,8,27,23,2,0,13,19,10,15,2,4,1,0,0,0,0,0,0,0,10,15,2,4,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,8,17,1856,808,1048,665,818,131,216,2,1,8,8,0,0,2,5,667,823,132,217,3,5,8,8,0,0,799,1043,656,813,131,216,2,1,8,8,0,0,2,5,658,818,132,217,3,5,8,8,0,0,9,5,9,5,0,0,0,0,0,0,0,0,0,0,9,5,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,8,18,1609,525,1084,489,873,32,198,1,2,3,9,0,0,0,2,489,873,32,199,1,3,3,10,0,1,518,1069,483,861,32,197,0,2,3,9,0,0,0,0,483,861,32,197,0,2,3,9,0,0,7,15,6,12,0,1,1,0,0,0,0,0,0,2,6,12,0,2,1,1,0,1,0,1 -050,01,081,Alabama,Lee County,9,0,159446,78591,80855,56370,56120,17209,20062,296,259,3348,3001,75,61,1293,1352,57534,57326,17838,20741,674,629,3774,3459,141,139,75400,78222,53704,53971,16970,19817,197,198,3300,2968,32,42,1197,1226,54790,55074,17556,20430,529,520,3703,3394,86,104,3191,2633,2666,2149,239,245,99,61,48,33,43,19,96,126,2744,2252,282,311,145,109,71,65,55,35 -050,01,081,Alabama,Lee County,9,1,9354,4677,4677,2967,2975,1197,1218,12,10,276,251,2,1,223,222,3174,3182,1346,1368,41,33,341,315,13,9,4395,4389,2736,2746,1180,1195,4,6,269,243,1,1,205,198,2927,2934,1320,1331,25,23,332,300,10,7,282,288,231,229,17,23,8,4,7,8,1,0,18,24,247,248,26,37,16,10,9,15,3,2 -050,01,081,Alabama,Lee County,9,2,9435,4877,4558,3125,2926,1349,1267,24,15,197,161,2,4,180,185,3291,3100,1470,1389,48,43,247,210,8,11,4606,4267,2921,2692,1311,1243,13,7,192,159,0,3,169,163,3079,2846,1426,1353,33,28,240,204,4,8,271,291,204,234,38,24,11,8,5,2,2,1,11,22,212,254,44,36,15,15,7,6,4,3 -050,01,081,Alabama,Lee County,9,3,9493,4935,4558,3196,2909,1303,1225,6,17,275,262,6,5,149,140,3335,3033,1389,1312,34,44,322,306,12,12,4689,4336,2982,2741,1289,1208,4,7,274,260,3,1,137,119,3110,2848,1371,1285,27,24,317,301,9,6,246,222,214,168,14,17,2,10,1,2,3,4,12,21,225,185,18,27,7,20,5,5,3,6 -050,01,081,Alabama,Lee County,9,4,13440,6666,6774,4935,4860,1391,1513,17,31,186,203,6,3,131,164,5056,5013,1455,1599,47,66,235,265,11,8,6383,6532,4691,4654,1368,1494,14,25,185,202,2,2,123,155,4804,4798,1430,1575,40,56,232,262,6,7,283,242,244,206,23,19,3,6,1,1,4,1,8,9,252,215,25,24,7,10,3,3,5,1 -050,01,081,Alabama,Lee County,9,5,22494,11789,10705,9048,8111,2013,2166,52,29,493,251,4,2,179,146,9209,8240,2105,2243,101,70,555,304,9,10,11425,10423,8717,7867,1998,2143,48,26,491,250,1,1,170,136,8871,7988,2084,2213,93,62,551,302,6,9,364,282,331,244,15,23,4,3,2,1,3,1,9,10,338,252,21,30,8,8,4,2,3,1 -050,01,081,Alabama,Lee County,9,6,12593,6405,6188,4423,4140,1542,1635,22,29,315,255,11,6,92,123,4497,4243,1578,1690,48,59,357,308,18,14,6050,5924,4116,3930,1516,1608,17,16,310,251,4,4,87,115,4187,4027,1551,1659,40,43,351,301,9,12,355,264,307,210,26,27,5,13,5,4,7,2,5,8,310,216,27,31,8,16,6,7,9,2 -050,01,081,Alabama,Lee County,9,7,10537,5136,5401,3687,3581,1074,1463,21,16,275,270,18,9,61,62,3744,3638,1092,1483,45,37,304,299,20,12,4811,5192,3419,3411,1048,1434,8,13,270,269,10,7,56,58,3472,3464,1064,1453,30,33,297,297,12,9,325,209,268,170,26,29,13,3,5,1,8,2,5,4,272,174,28,30,15,4,7,2,8,3 -050,01,081,Alabama,Lee County,9,8,9815,4714,5101,3279,3317,1059,1379,40,14,277,314,7,5,52,72,3324,3377,1073,1398,64,41,296,344,13,17,4417,4887,3048,3140,1031,1361,16,9,273,310,1,3,48,64,3090,3195,1043,1377,37,33,290,337,6,11,297,214,231,177,28,18,24,5,4,4,6,2,4,8,234,182,30,21,27,8,6,7,7,6 -050,01,081,Alabama,Lee County,9,9,9188,4343,4845,2990,3164,1019,1371,16,14,273,246,1,8,44,42,3030,3199,1030,1382,42,32,287,265,2,11,4168,4697,2850,3036,1006,1358,9,11,267,246,0,5,36,41,2883,3070,1013,1369,30,29,280,264,1,8,175,148,140,128,13,13,7,3,6,0,1,3,8,1,147,129,17,13,12,3,7,1,1,3 -050,01,081,Alabama,Lee County,9,10,9638,4696,4942,3289,3279,1086,1331,10,14,263,268,9,7,39,43,3322,3315,1093,1344,36,34,275,283,14,10,4507,4817,3133,3176,1073,1320,4,11,259,265,3,6,35,39,3164,3209,1079,1330,26,30,270,279,6,8,189,125,156,103,13,11,6,3,4,3,6,1,4,4,158,106,14,14,10,4,5,4,8,2 -050,01,081,Alabama,Lee County,9,11,9216,4496,4720,3172,3248,1080,1271,26,12,179,151,2,3,37,35,3205,3281,1087,1277,51,34,189,162,5,5,4379,4605,3071,3155,1073,1255,22,12,176,148,1,2,36,33,3103,3186,1080,1261,46,32,186,159,4,4,117,115,101,93,7,16,4,0,3,3,1,1,1,2,102,95,7,16,5,2,3,3,1,1 -050,01,081,Alabama,Lee County,9,12,8943,4332,4611,3122,3188,1002,1223,16,15,152,137,1,6,39,42,3153,3224,1010,1232,37,38,166,149,5,10,4220,4536,3029,3130,995,1213,10,14,150,136,0,6,36,37,3058,3161,1001,1220,30,35,163,147,4,10,112,75,93,58,7,10,6,1,2,1,1,0,3,5,95,63,9,12,7,3,3,2,1,0 -050,01,081,Alabama,Lee County,9,13,7657,3605,4052,2679,2894,820,1035,11,15,66,85,1,1,28,22,2704,2912,827,1042,30,29,72,89,3,3,3541,4006,2629,2854,816,1033,8,14,65,84,1,1,22,20,2649,2870,821,1039,25,28,69,87,1,3,64,46,50,40,4,2,3,1,1,1,0,0,6,2,55,42,6,3,5,1,3,2,2,0 -050,01,081,Alabama,Lee County,9,14,6653,3131,3522,2453,2659,603,756,11,12,40,71,2,0,22,24,2469,2679,609,765,26,30,45,78,4,2,3087,3470,2415,2619,599,750,11,11,39,70,2,0,21,20,2431,2637,604,756,26,27,43,74,4,0,44,52,38,40,4,6,0,1,1,1,0,0,1,4,38,42,5,9,0,3,2,4,0,2 -050,01,081,Alabama,Lee County,9,15,4428,2104,2324,1711,1806,337,464,6,7,41,31,1,1,8,15,1719,1817,339,468,9,17,43,34,2,3,2074,2305,1685,1791,335,462,6,7,40,30,1,0,7,15,1692,1802,336,466,9,17,42,33,2,2,30,19,26,15,2,2,0,0,1,1,0,1,1,0,27,15,3,2,0,0,1,1,0,1 -050,01,081,Alabama,Lee County,9,16,2996,1316,1680,1090,1326,188,317,2,4,27,25,1,0,8,8,1097,1331,189,320,10,11,27,26,1,0,1298,1663,1075,1313,186,313,1,4,27,25,1,0,8,8,1082,1318,187,316,9,11,27,26,1,0,18,17,15,13,2,4,1,0,0,0,0,0,0,0,15,13,2,4,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,9,17,1836,780,1056,658,819,108,220,2,2,10,10,1,0,1,5,659,824,108,220,3,6,10,11,1,0,769,1048,647,811,108,220,2,2,10,10,1,0,1,5,648,816,108,220,3,6,10,11,1,0,11,8,11,8,0,0,0,0,0,0,0,0,0,0,11,8,0,0,0,0,0,0,0,0 -050,01,081,Alabama,Lee County,9,18,1730,589,1141,546,918,38,208,2,3,3,10,0,0,0,2,546,918,38,209,2,5,3,11,0,2,581,1125,540,905,38,207,0,3,3,10,0,0,0,0,540,905,38,207,0,3,3,10,0,0,8,16,6,13,0,1,2,0,0,0,0,0,0,2,6,13,0,2,2,2,0,1,0,2 -050,01,081,Alabama,Lee County,10,0,161808,79756,82052,57028,56938,17401,20296,317,266,3548,3146,80,63,1382,1343,58294,58136,18070,20958,701,664,3997,3586,139,132,76516,79350,54333,54729,17168,20056,210,201,3500,3104,30,45,1275,1215,55505,55824,17792,20659,546,542,3924,3511,81,100,3240,2702,2695,2209,233,240,107,65,48,42,50,18,107,128,2789,2312,278,299,155,122,73,75,58,32 -050,01,081,Alabama,Lee County,10,1,9493,4861,4632,3076,3021,1216,1156,17,10,293,258,4,2,255,185,3315,3196,1381,1280,47,33,368,309,17,8,4563,4342,2833,2799,1201,1130,7,5,283,243,1,1,238,164,3058,2954,1360,1245,31,23,354,287,10,5,298,290,243,222,15,26,10,5,10,15,3,1,17,21,257,242,21,35,16,10,14,22,7,3 -050,01,081,Alabama,Lee County,10,2,9304,4776,4528,3070,2907,1284,1245,26,16,207,173,5,4,184,183,3242,3074,1404,1364,52,47,259,220,6,12,4496,4235,2855,2670,1255,1223,13,9,204,171,0,3,169,159,3014,2822,1367,1326,34,32,252,213,1,7,280,293,215,237,29,22,13,7,3,2,5,1,15,24,228,252,37,38,18,15,7,7,5,5 -050,01,081,Alabama,Lee County,10,3,9701,5037,4664,3251,3027,1353,1244,10,13,265,242,6,3,152,135,3394,3147,1444,1321,33,39,316,286,16,12,4797,4439,3047,2844,1337,1230,7,6,263,239,3,2,140,118,3181,2951,1421,1300,26,23,310,280,13,9,240,225,204,183,16,14,3,7,2,3,3,1,12,17,213,196,23,21,7,16,6,6,3,3 -050,01,081,Alabama,Lee County,10,4,13398,6653,6745,4893,4826,1376,1480,22,30,226,223,4,3,132,183,5015,4994,1439,1580,53,72,274,286,8,9,6361,6500,4643,4626,1359,1458,16,23,223,223,0,1,120,169,4754,4782,1419,1550,40,59,268,284,3,5,292,245,250,200,17,22,6,7,3,0,4,2,12,14,261,212,20,30,13,13,6,2,5,4 -050,01,081,Alabama,Lee County,10,5,22176,11601,10575,8939,7981,1929,2151,48,36,478,272,5,2,202,133,9119,8099,2038,2222,101,69,544,319,12,8,11287,10300,8663,7738,1906,2134,47,32,476,271,2,2,193,123,8834,7847,2010,2200,95,60,542,316,9,8,314,275,276,243,23,17,1,4,2,1,3,0,9,10,285,252,28,22,6,9,2,3,3,0 -050,01,081,Alabama,Lee County,10,6,12980,6589,6391,4455,4280,1643,1694,30,23,357,269,10,4,94,121,4533,4379,1682,1747,57,56,399,320,13,14,6249,6142,4164,4075,1622,1669,19,14,353,267,3,3,88,114,4237,4171,1659,1718,43,44,393,316,6,11,340,249,291,205,21,25,11,9,4,2,7,1,6,7,296,208,23,29,14,12,6,4,7,3 -050,01,081,Alabama,Lee County,10,7,10566,5145,5421,3671,3585,1108,1474,19,22,261,243,14,9,72,88,3736,3666,1128,1508,45,51,295,280,16,14,4794,5182,3367,3392,1080,1447,14,13,259,241,7,7,67,82,3427,3467,1098,1480,36,37,292,276,9,12,351,239,304,193,28,27,5,9,2,2,7,2,5,6,309,199,30,28,9,14,3,4,7,2 -050,01,081,Alabama,Lee County,10,8,10138,4866,5272,3412,3465,1062,1399,33,13,297,329,13,8,49,58,3460,3516,1072,1415,54,33,313,357,16,13,4579,5063,3198,3295,1031,1378,11,10,291,324,4,5,44,51,3241,3340,1039,1391,30,29,306,347,7,9,287,209,214,170,31,21,22,3,6,5,9,3,5,7,219,176,33,24,24,4,7,10,9,4 -050,01,081,Alabama,Lee County,10,9,9207,4377,4830,2994,3113,1012,1368,25,18,301,272,1,8,44,51,3034,3156,1025,1384,45,43,316,288,3,13,4171,4677,2829,2984,998,1358,11,13,295,272,0,4,38,46,2863,3023,1008,1373,30,34,308,288,2,8,206,153,165,129,14,10,14,5,6,0,1,4,6,5,171,133,17,11,15,9,8,0,1,5 -050,01,081,Alabama,Lee County,10,10,9891,4762,5129,3330,3371,1093,1403,11,12,274,293,8,7,46,43,3371,3408,1105,1414,34,33,289,308,12,10,4580,4977,3177,3245,1084,1389,5,9,272,288,3,6,39,40,3214,3279,1091,1399,24,28,286,302,5,9,182,152,153,126,9,14,6,3,2,5,5,1,7,3,157,129,14,15,10,5,3,6,7,1 -050,01,081,Alabama,Lee County,10,11,9229,4545,4684,3200,3204,1083,1259,20,11,204,165,3,4,35,41,3232,3239,1089,1268,43,37,214,178,3,7,4416,4583,3090,3122,1075,1246,17,10,200,162,1,3,33,40,3120,3156,1081,1255,38,35,210,175,1,6,129,101,110,82,8,13,3,1,4,3,2,1,2,1,112,83,8,13,5,2,4,3,2,1 -050,01,081,Alabama,Lee County,10,12,9182,4444,4738,3204,3268,998,1261,18,19,184,143,0,6,40,41,3238,3302,1005,1275,42,48,197,154,2,7,4333,4656,3108,3207,990,1249,13,17,183,142,0,6,39,35,3141,3236,996,1261,37,42,196,152,2,7,111,82,96,61,8,12,5,2,1,1,0,0,1,6,97,66,9,14,5,6,1,2,0,0 -050,01,081,Alabama,Lee County,10,13,7929,3756,4173,2745,2993,889,1043,15,14,72,101,2,1,33,21,2778,3012,893,1049,35,29,82,105,7,2,3680,4112,2689,2939,883,1040,10,12,71,100,1,1,26,20,2715,2957,887,1045,27,27,78,104,5,2,76,61,56,54,6,3,5,2,1,1,1,0,7,1,63,55,6,4,8,2,4,1,2,0 -050,01,081,Alabama,Lee County,10,14,6795,3189,3606,2462,2689,646,811,9,11,47,68,2,1,23,26,2481,2713,654,815,26,30,49,74,4,2,3121,3547,2400,2639,643,805,9,11,46,68,2,1,21,23,2417,2660,650,809,25,28,48,72,4,2,68,59,62,50,3,6,0,0,1,0,0,0,2,3,64,53,4,6,1,2,1,2,0,0 -050,01,081,Alabama,Lee County,10,15,4946,2301,2645,1889,2036,360,538,6,9,36,44,1,1,9,17,1898,2051,360,540,14,23,36,47,2,1,2278,2622,1870,2021,357,535,6,8,36,42,1,0,8,16,1878,2035,357,537,13,21,36,45,2,0,23,23,19,15,3,3,0,1,0,2,0,1,1,1,20,16,3,3,1,2,0,2,0,1 -050,01,081,Alabama,Lee County,10,16,3123,1394,1729,1168,1352,181,335,3,5,30,28,1,0,11,9,1178,1358,183,339,14,11,30,30,1,0,1375,1712,1152,1338,179,332,3,5,29,28,1,0,11,9,1162,1344,181,336,14,11,29,30,1,0,19,17,16,14,2,3,0,0,1,0,0,0,0,0,16,14,2,3,0,0,1,0,0,0 -050,01,081,Alabama,Lee County,10,17,1980,846,1134,704,888,124,227,3,1,13,12,1,0,1,6,705,893,124,228,4,6,13,13,1,0,831,1123,690,878,124,226,2,1,13,12,1,0,1,6,691,883,124,227,3,6,13,13,1,0,15,11,14,10,0,1,1,0,0,0,0,0,0,0,14,10,0,1,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,10,18,1770,614,1156,565,932,44,208,2,3,3,11,0,0,0,2,565,933,44,209,2,4,3,12,0,0,605,1138,558,917,44,207,0,3,3,11,0,0,0,0,558,917,44,207,0,3,3,11,0,0,9,18,7,15,0,1,2,0,0,0,0,0,0,2,7,16,0,2,2,1,0,1,0,0 -050,01,081,Alabama,Lee County,11,0,164206,80723,83483,57803,58077,17471,20468,332,272,3636,3231,73,64,1408,1371,59056,59290,18170,21144,723,669,4102,3673,140,140,77344,80618,54985,55733,17225,20215,214,195,3586,3189,29,47,1305,1239,56160,56834,17875,20827,564,536,4024,3600,85,112,3379,2865,2818,2344,246,253,118,77,50,42,44,17,103,132,2896,2456,295,317,159,133,78,73,55,28 -050,01,081,Alabama,Lee County,11,1,9648,4933,4715,3112,3070,1260,1199,17,10,302,257,4,1,238,178,3326,3231,1420,1319,41,31,374,308,18,6,4613,4409,2850,2833,1241,1174,8,2,289,242,1,1,224,157,3055,2978,1394,1283,27,17,357,284,12,5,320,306,262,237,19,25,9,8,13,15,3,0,14,21,271,253,26,36,14,14,17,24,6,1 -050,01,081,Alabama,Lee County,11,2,9504,4833,4671,3179,3064,1233,1245,20,14,202,169,0,2,199,177,3363,3225,1366,1360,43,44,261,216,7,7,4544,4389,2934,2831,1212,1222,9,7,199,167,0,1,190,161,3110,2979,1338,1327,30,32,257,212,7,4,289,282,245,233,21,23,11,7,3,2,0,1,9,16,253,246,28,33,13,12,4,4,0,3 -050,01,081,Alabama,Lee County,11,3,10001,5139,4862,3293,3144,1413,1307,16,18,247,233,8,5,162,155,3438,3287,1509,1398,47,48,299,280,12,15,4873,4570,3079,2913,1391,1287,8,7,245,230,3,3,147,130,3213,3034,1481,1366,32,26,292,272,6,11,266,292,214,231,22,20,8,11,2,3,5,2,15,25,225,253,28,32,15,22,7,8,6,4 -050,01,081,Alabama,Lee County,11,4,13323,6651,6672,4898,4810,1341,1412,21,24,245,241,5,3,141,182,5026,4974,1409,1510,50,65,302,303,12,10,6348,6420,4643,4608,1323,1393,14,16,242,239,0,1,126,163,4759,4755,1387,1480,37,49,292,298,6,6,303,252,255,202,18,19,7,8,3,2,5,2,15,19,267,219,22,30,13,16,10,5,6,4 -050,01,081,Alabama,Lee County,11,5,21802,11390,10412,8818,7908,1834,2046,47,36,489,284,6,5,196,133,8994,8025,1937,2119,97,69,558,330,11,11,11066,10122,8532,7661,1815,2022,43,29,487,283,1,3,188,124,8703,7770,1913,2092,90,56,553,327,5,8,324,290,286,247,19,24,4,7,2,1,5,2,8,9,291,255,24,27,7,13,5,3,6,3 -050,01,081,Alabama,Lee County,11,6,12803,6475,6328,4417,4198,1561,1694,33,21,361,278,3,4,100,133,4506,4314,1601,1754,61,52,406,333,7,14,6166,6111,4154,4019,1539,1673,22,16,357,277,1,3,93,123,4238,4126,1574,1727,47,45,401,329,5,13,309,217,263,179,22,21,11,5,4,1,2,1,7,10,268,188,27,27,14,7,5,4,2,1 -050,01,081,Alabama,Lee County,11,7,10679,5173,5506,3609,3661,1189,1506,18,25,280,220,16,9,61,85,3661,3736,1212,1539,42,50,308,254,16,15,4839,5226,3317,3435,1162,1474,14,11,278,219,9,8,59,79,3368,3504,1183,1504,37,34,306,253,9,13,334,280,292,226,27,32,4,14,2,1,7,1,2,6,293,232,29,35,5,16,2,1,7,2 -050,01,081,Alabama,Lee County,11,8,10392,5009,5383,3590,3577,1046,1392,27,13,279,333,10,6,57,62,3639,3632,1062,1407,50,39,300,362,15,9,4717,5174,3356,3399,1013,1370,14,11,278,329,2,5,54,60,3402,3452,1028,1385,36,36,298,357,7,8,292,209,234,178,33,22,13,2,1,4,8,1,3,2,237,180,34,22,14,3,2,5,8,1 -050,01,081,Alabama,Lee County,11,9,9378,4516,4862,3107,3178,1027,1328,33,11,305,289,1,5,43,51,3144,3218,1041,1346,55,35,317,308,4,10,4273,4688,2919,3028,1013,1319,10,6,295,288,0,3,36,44,2951,3064,1025,1334,27,27,307,304,1,7,243,174,188,150,14,9,23,5,10,1,1,2,7,7,193,154,16,12,28,8,10,4,3,3 -050,01,081,Alabama,Lee County,11,10,10006,4760,5246,3338,3430,1065,1439,24,17,284,308,7,10,42,42,3374,3463,1074,1451,48,37,296,324,12,15,4573,5106,3194,3316,1047,1425,14,15,282,304,3,7,33,39,3222,3346,1053,1436,36,33,292,320,5,12,187,140,144,114,18,14,10,2,2,4,4,3,9,3,152,117,21,15,12,4,4,4,7,3 -050,01,081,Alabama,Lee County,11,11,9329,4561,4768,3196,3256,1088,1263,15,13,216,187,3,4,43,45,3233,3292,1097,1276,43,39,227,199,5,10,4427,4643,3080,3150,1082,1253,12,10,213,183,0,3,40,44,3115,3185,1090,1266,38,36,223,194,2,9,134,125,116,106,6,10,3,3,3,4,3,1,3,1,118,107,7,10,5,3,4,5,3,1 -050,01,081,Alabama,Lee County,11,12,9449,4625,4824,3297,3324,1053,1295,23,19,209,146,3,6,40,34,3330,3355,1061,1302,47,41,220,156,9,6,4495,4737,3184,3260,1045,1280,17,17,207,145,3,6,39,29,3216,3286,1052,1286,41,35,218,154,9,6,130,87,113,64,8,15,6,2,2,1,0,0,1,5,114,69,9,16,6,6,2,2,0,0 -050,01,081,Alabama,Lee County,11,13,8285,3878,4407,2838,3140,907,1109,13,17,81,109,2,2,37,30,2871,3165,914,1118,35,37,92,112,3,6,3798,4338,2779,3080,898,1104,8,15,81,108,1,2,31,29,2807,3105,902,1112,28,34,90,111,2,5,80,69,59,60,9,5,5,2,0,1,1,0,6,1,64,60,12,6,7,3,2,1,1,1 -050,01,081,Alabama,Lee County,11,14,6944,3226,3718,2469,2758,670,849,10,12,52,69,1,1,24,29,2489,2783,676,855,26,36,55,73,4,3,3135,3654,2385,2703,668,845,9,12,51,69,1,1,21,24,2403,2723,672,851,24,31,53,73,4,3,91,64,84,55,2,4,1,0,1,0,0,0,3,5,86,60,4,4,2,5,2,0,0,0 -050,01,081,Alabama,Lee County,11,15,5348,2515,2833,2068,2182,393,569,6,10,33,55,2,1,13,16,2078,2197,398,570,18,22,35,58,3,2,2488,2804,2047,2162,389,564,6,9,32,53,2,0,12,16,2056,2177,394,565,17,21,34,56,3,1,27,29,21,20,4,5,0,1,1,2,0,1,1,0,22,20,4,5,1,1,1,2,0,1 -050,01,081,Alabama,Lee County,11,16,3390,1517,1873,1277,1450,197,376,3,6,29,30,1,0,10,11,1286,1460,198,378,12,14,30,32,1,0,1493,1859,1258,1437,193,375,3,6,28,30,1,0,10,11,1267,1447,194,377,12,14,29,32,1,0,24,14,19,13,4,1,0,0,1,0,0,0,0,0,19,13,4,1,0,0,1,0,0,0 -050,01,081,Alabama,Lee County,11,17,2097,898,1199,738,943,137,235,3,2,17,13,1,0,2,6,739,948,138,236,5,6,17,14,1,1,881,1181,722,928,137,232,2,2,17,13,1,0,2,6,723,933,138,233,4,6,17,14,1,1,17,18,16,15,0,3,1,0,0,0,0,0,0,0,16,15,0,3,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,11,18,1828,624,1204,559,984,57,204,3,4,5,10,0,0,0,2,559,985,57,206,3,4,5,11,0,0,615,1187,552,970,57,203,1,4,5,10,0,0,0,0,552,970,57,203,1,4,5,10,0,0,9,17,7,14,0,1,2,0,0,0,0,0,0,2,7,15,0,3,2,0,0,1,0,0 -050,01,081,Alabama,Lee County,12,0,165015,81114,83901,58118,58511,17487,20415,317,276,3708,3240,78,70,1406,1389,59395,59738,18167,21120,703,665,4172,3702,137,139,77813,81044,55340,56176,17264,20169,200,197,3667,3202,33,47,1309,1253,56531,57288,17899,20797,542,531,4116,3637,84,105,3301,2857,2778,2335,223,246,117,79,41,38,45,23,97,136,2864,2450,268,323,161,134,56,65,53,34 -050,01,081,Alabama,Lee County,12,1,9482,4868,4614,3114,2990,1258,1196,8,7,285,255,6,2,197,164,3297,3139,1391,1308,31,25,341,302,11,8,4549,4329,2837,2771,1245,1166,2,2,277,243,2,1,186,146,3010,2905,1372,1267,20,15,332,286,7,5,319,285,277,219,13,30,6,5,8,12,4,1,11,18,287,234,19,41,11,10,9,16,4,3 -050,01,081,Alabama,Lee County,12,2,9498,4941,4557,3244,3041,1219,1160,26,15,236,162,1,2,215,177,3445,3208,1361,1273,52,38,298,212,7,8,4647,4279,3001,2815,1201,1139,10,5,232,159,1,1,202,160,3190,2968,1334,1243,32,21,294,206,6,5,294,278,243,226,18,21,16,10,4,3,0,1,13,17,255,240,27,30,20,17,4,6,1,3 -050,01,081,Alabama,Lee County,12,3,10000,5115,4885,3285,3118,1425,1355,17,17,209,217,6,4,173,174,3443,3275,1531,1458,45,51,261,273,14,12,4873,4604,3091,2900,1404,1333,7,7,207,215,1,3,163,146,3241,3032,1505,1423,30,30,258,263,8,8,242,281,194,218,21,22,10,10,2,2,5,1,10,28,202,243,26,35,15,21,3,10,6,4 -050,01,081,Alabama,Lee County,12,4,13334,6614,6720,4869,4902,1329,1370,13,29,267,237,5,6,131,176,4990,5058,1395,1467,40,68,315,302,12,15,6320,6449,4621,4685,1309,1354,10,18,265,235,1,3,114,154,4725,4822,1370,1437,31,48,308,295,7,11,294,271,248,217,20,16,3,11,2,2,4,3,17,22,265,236,25,30,9,20,7,7,5,4 -050,01,081,Alabama,Lee County,12,5,21462,11267,10195,8739,7825,1794,1913,49,28,465,285,5,4,215,140,8933,7951,1908,1990,105,62,538,334,9,12,10935,9909,8445,7584,1775,1886,44,25,464,283,0,1,207,130,8631,7702,1884,1956,96,54,537,331,4,9,332,286,294,241,19,27,5,3,1,2,5,3,8,10,302,249,24,34,9,8,1,3,5,3 -050,01,081,Alabama,Lee County,12,6,12641,6302,6339,4267,4194,1511,1700,30,26,395,276,6,5,93,138,4349,4316,1550,1764,56,62,436,330,11,13,6034,6137,4044,4025,1489,1683,21,21,393,276,1,3,86,129,4121,4138,1523,1741,44,53,432,330,6,11,268,202,223,169,22,17,9,5,2,0,5,2,7,9,228,178,27,23,12,9,4,0,5,2 -050,01,081,Alabama,Lee County,12,7,10627,5223,5404,3620,3638,1223,1442,19,27,281,209,16,9,64,79,3678,3707,1244,1476,38,54,313,242,17,11,4924,5138,3358,3420,1200,1418,13,13,278,208,11,7,64,72,3416,3484,1221,1447,32,38,310,239,12,9,299,266,262,218,23,24,6,14,3,1,5,2,0,7,262,223,23,29,6,16,3,3,5,2 -050,01,081,Alabama,Lee County,12,8,10481,5027,5454,3622,3618,1034,1424,23,15,278,329,8,6,62,62,3676,3673,1052,1443,49,42,303,353,13,9,4725,5251,3366,3445,1010,1406,11,10,277,325,2,5,59,60,3418,3500,1028,1423,34,36,302,349,6,7,302,203,256,173,24,18,12,5,1,4,6,1,3,2,258,173,24,20,15,6,1,4,7,2 -050,01,081,Alabama,Lee County,12,9,9548,4595,4953,3147,3225,1066,1360,35,9,300,293,3,4,44,62,3187,3277,1077,1380,56,36,315,316,5,7,4347,4760,2955,3056,1049,1346,11,8,293,292,0,3,39,55,2991,3103,1057,1363,30,32,307,312,1,6,248,193,192,169,17,14,24,1,7,1,3,1,5,7,196,174,20,17,26,4,8,4,4,1 -050,01,081,Alabama,Lee County,12,10,9863,4687,5176,3290,3395,1032,1407,22,19,299,304,6,11,38,40,3325,3429,1037,1418,45,36,310,320,9,14,4523,5024,3157,3271,1021,1394,13,13,297,301,4,7,31,38,3187,3303,1024,1405,30,28,307,317,6,10,164,152,133,124,11,13,9,6,2,3,2,4,7,2,138,126,13,13,15,8,3,3,3,4 -050,01,081,Alabama,Lee County,12,11,9302,4538,4764,3200,3253,1043,1241,10,12,233,209,6,4,46,45,3240,3294,1051,1253,35,36,249,223,9,5,4388,4653,3072,3160,1036,1234,8,8,230,206,1,3,41,42,3107,3198,1043,1244,32,31,244,220,3,4,150,111,128,93,7,7,2,4,3,3,5,1,5,3,133,96,8,9,3,5,5,3,6,1 -050,01,081,Alabama,Lee County,12,12,9635,4683,4952,3347,3391,1057,1346,26,21,219,155,1,5,33,34,3378,3422,1061,1355,46,40,229,162,3,7,4559,4857,3242,3319,1049,1331,19,18,216,153,1,5,32,31,3272,3347,1052,1338,39,36,226,160,3,7,124,95,105,72,8,15,7,3,3,2,0,0,1,3,106,75,9,17,7,4,3,2,0,0 -050,01,081,Alabama,Lee County,12,13,8637,4083,4554,2982,3243,944,1141,12,16,101,116,3,3,41,35,3016,3266,950,1152,36,34,114,127,8,10,3986,4471,2906,3171,934,1134,8,16,101,115,2,3,35,32,2934,3192,938,1144,30,34,113,125,6,8,97,83,76,72,10,7,4,0,0,1,1,0,6,3,82,74,12,8,6,0,1,2,2,2 -050,01,081,Alabama,Lee County,12,14,7088,3233,3855,2453,2834,691,913,12,13,51,70,1,1,25,24,2474,2849,694,922,30,30,57,75,3,3,3156,3795,2384,2780,689,910,10,12,50,70,1,1,22,22,2403,2793,691,919,26,27,55,75,3,3,77,60,69,54,2,3,2,1,1,0,0,0,3,2,71,56,3,3,4,3,2,0,0,0 -050,01,081,Alabama,Lee County,12,15,5702,2700,3002,2211,2286,429,619,7,8,35,66,2,4,16,19,2225,2299,431,627,20,22,37,71,3,5,2660,2963,2177,2260,425,614,7,7,34,64,2,1,15,17,2190,2271,427,621,19,19,36,69,3,2,40,39,34,26,4,5,0,1,1,2,0,3,1,2,35,28,4,6,1,3,1,2,0,3 -050,01,081,Alabama,Lee County,12,16,3604,1636,1968,1361,1546,236,376,3,5,24,28,1,0,11,13,1371,1556,237,381,12,16,26,29,1,0,1612,1950,1341,1530,233,374,3,5,23,28,1,0,11,13,1351,1540,234,379,12,16,25,29,1,0,24,18,20,16,3,2,0,0,1,0,0,0,0,0,20,16,3,2,0,0,1,0,0,0 -050,01,081,Alabama,Lee County,12,17,2232,952,1280,799,1008,122,245,3,5,24,17,2,0,2,5,800,1013,123,245,5,8,24,19,2,0,935,1262,784,994,121,241,2,5,24,17,2,0,2,5,785,999,122,241,4,8,24,19,2,0,17,18,15,14,1,4,1,0,0,0,0,0,0,0,15,14,1,4,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,12,18,1879,650,1229,568,1004,74,207,2,4,6,12,0,0,0,2,568,1006,74,208,2,5,6,12,0,0,640,1213,559,990,74,206,1,4,6,12,0,0,0,1,559,991,74,206,1,5,6,12,0,0,10,16,9,14,0,1,1,0,0,0,0,0,0,1,9,15,0,2,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,13,0,166831,81985,84846,58769,59192,17662,20580,322,294,3678,3277,87,71,1467,1432,60083,60467,18386,21289,726,703,4171,3745,148,154,78595,81940,55905,56822,17437,20330,210,209,3639,3238,41,48,1363,1293,57133,57975,18116,20965,566,565,4103,3679,91,120,3390,2906,2864,2370,225,250,112,85,39,39,46,23,104,139,2950,2492,270,324,160,138,68,66,57,34 -050,01,081,Alabama,Lee County,13,1,9352,4803,4549,3114,2912,1231,1194,15,12,246,247,7,4,190,180,3292,3075,1356,1318,33,33,306,296,16,10,4455,4260,2819,2693,1210,1160,6,5,239,241,2,2,179,159,2988,2837,1330,1273,22,20,295,285,9,7,348,289,295,219,21,34,9,7,7,6,5,2,11,21,304,238,26,45,11,13,11,11,7,3 -050,01,081,Alabama,Lee County,13,2,9652,4987,4665,3269,3118,1225,1186,19,17,249,176,4,1,221,167,3473,3270,1371,1294,44,42,319,224,11,9,4697,4384,3017,2898,1217,1165,8,5,245,166,4,1,206,149,3210,3036,1354,1262,28,26,309,207,11,6,290,281,252,220,8,21,11,12,4,10,0,0,15,18,263,234,17,32,16,16,10,17,0,3 -050,01,081,Alabama,Lee County,13,3,10035,5152,4883,3320,3167,1412,1334,21,19,206,183,6,6,187,174,3490,3325,1527,1442,49,56,263,233,13,17,4875,4583,3110,2933,1380,1310,6,8,203,182,2,4,174,146,3268,3069,1489,1401,29,31,258,228,7,12,277,300,210,234,32,24,15,11,3,1,4,2,13,28,222,256,38,41,20,25,5,5,6,5 -050,01,081,Alabama,Lee County,13,4,13388,6674,6714,4911,4896,1343,1336,11,32,265,258,7,6,137,186,5036,5064,1411,1434,41,72,315,326,14,13,6375,6428,4653,4669,1326,1318,8,21,264,255,3,4,121,161,4762,4815,1388,1402,32,52,309,318,10,10,299,286,258,227,17,18,3,11,1,3,4,2,16,25,274,249,23,32,9,20,6,8,4,3 -050,01,081,Alabama,Lee County,13,5,21475,11216,10259,8764,7858,1754,1934,43,29,427,286,5,3,223,149,8962,7993,1870,2014,98,63,505,336,13,9,10875,9992,8464,7630,1735,1914,40,24,425,283,0,1,211,140,8652,7756,1844,1989,88,54,502,332,7,7,341,267,300,228,19,20,3,5,2,3,5,2,12,9,310,237,26,25,10,9,3,4,6,2 -050,01,081,Alabama,Lee County,13,6,12223,6158,6065,4179,3997,1469,1628,29,25,369,274,7,6,105,135,4271,4114,1517,1694,60,61,411,329,9,11,5914,5866,3971,3839,1450,1604,22,21,368,274,1,4,102,124,4060,3947,1497,1664,52,52,409,328,3,8,244,199,208,158,19,24,7,4,1,0,6,2,3,11,211,167,20,30,8,9,2,1,6,3 -050,01,081,Alabama,Lee County,13,7,10918,5349,5569,3641,3734,1298,1498,19,28,309,219,13,11,69,79,3702,3802,1319,1531,43,47,340,254,16,15,5071,5323,3402,3532,1277,1477,12,11,306,218,9,8,65,77,3460,3598,1298,1508,33,30,336,253,11,12,278,246,239,202,21,21,7,17,3,1,4,3,4,2,242,204,21,23,10,17,4,1,5,3 -050,01,081,Alabama,Lee County,13,8,10494,5044,5450,3634,3666,1065,1389,24,12,248,311,9,5,64,67,3691,3722,1081,1409,50,36,274,340,14,14,4711,5260,3340,3503,1043,1374,15,9,248,308,4,4,61,62,3395,3554,1058,1393,40,31,272,336,9,12,333,190,294,163,22,15,9,3,0,3,5,1,3,5,296,168,23,16,10,5,2,4,5,2 -050,01,081,Alabama,Lee County,13,9,9865,4771,5094,3294,3307,1069,1409,39,13,311,292,6,7,52,66,3338,3368,1084,1426,66,46,331,317,7,15,4524,4876,3108,3113,1047,1395,15,10,305,291,1,6,48,61,3150,3169,1060,1411,39,41,324,315,2,13,247,218,186,194,22,14,24,3,6,1,5,1,4,5,188,199,24,15,27,5,7,2,5,2 -050,01,081,Alabama,Lee County,13,10,9775,4645,5130,3218,3384,1062,1408,21,16,300,275,3,9,41,38,3254,3415,1071,1422,41,35,316,286,7,14,4481,4970,3078,3245,1055,1399,14,11,298,273,2,6,34,36,3109,3274,1062,1412,28,29,312,284,4,11,164,160,140,139,7,9,7,5,2,2,1,3,7,2,145,141,9,10,13,6,4,2,3,3 -050,01,081,Alabama,Lee County,13,11,9499,4575,4924,3242,3348,1024,1259,11,14,247,255,11,3,40,45,3277,3389,1032,1268,38,33,257,273,12,7,4415,4811,3110,3254,1014,1250,7,12,243,251,5,2,36,42,3141,3292,1022,1258,30,30,253,268,6,6,160,113,132,94,10,9,4,2,4,4,6,1,4,3,136,97,10,10,8,3,4,5,6,1 -050,01,081,Alabama,Lee County,13,12,9609,4678,4931,3299,3378,1091,1333,24,22,228,158,0,4,36,36,3328,3408,1104,1342,46,43,237,168,3,7,4554,4826,3192,3295,1084,1319,19,19,225,157,0,3,34,33,3220,3322,1095,1326,40,39,234,167,2,6,124,105,107,83,7,14,5,3,3,1,0,1,2,3,108,86,9,16,6,4,3,1,1,1 -050,01,081,Alabama,Lee County,13,13,8959,4326,4633,3161,3273,980,1174,16,14,123,130,3,1,43,41,3200,3306,988,1186,42,44,135,139,5,3,4224,4553,3078,3208,971,1163,12,14,123,129,2,1,38,38,3113,3238,978,1174,36,43,134,137,2,3,102,80,83,65,9,11,4,0,0,1,1,0,5,3,87,68,10,12,6,1,1,2,3,0 -050,01,081,Alabama,Lee County,13,14,7325,3318,4007,2508,2926,714,960,11,15,57,79,1,1,27,26,2528,2951,724,964,29,35,65,83,2,2,3246,3940,2448,2865,710,958,9,14,56,78,1,1,22,24,2464,2888,717,962,25,32,61,82,2,2,72,67,60,61,4,2,2,1,1,1,0,0,5,2,64,63,7,2,4,3,4,1,0,0 -050,01,081,Alabama,Lee County,13,15,6093,2867,3226,2346,2467,463,651,10,11,30,74,2,3,16,20,2358,2484,466,654,23,26,33,77,3,5,2805,3175,2288,2429,460,645,10,10,29,72,2,1,16,18,2300,2444,463,647,23,24,32,75,3,3,62,51,58,38,3,6,0,1,1,2,0,2,0,2,58,40,3,7,0,2,1,2,0,2 -050,01,081,Alabama,Lee County,13,16,3871,1762,2109,1454,1652,261,407,4,6,30,29,1,1,12,14,1464,1664,263,410,15,16,31,32,1,1,1740,2089,1435,1636,259,404,4,6,29,29,1,0,12,14,1445,1648,261,407,15,16,30,32,1,0,22,20,19,16,2,3,0,0,1,0,0,1,0,0,19,16,2,3,0,0,1,0,0,1 -050,01,081,Alabama,Lee County,13,17,2329,990,1339,841,1061,117,248,2,5,24,19,2,0,4,6,845,1067,118,248,5,10,24,20,2,0,978,1319,832,1045,115,244,1,5,24,19,2,0,4,6,836,1051,116,244,4,10,24,20,2,0,12,20,9,16,2,4,1,0,0,0,0,0,0,0,9,16,2,4,1,0,0,0,0,0 -050,01,081,Alabama,Lee County,13,18,1969,670,1299,574,1048,84,232,3,4,9,12,0,0,0,3,574,1050,84,233,3,5,9,12,0,2,655,1285,560,1035,84,231,2,4,9,12,0,0,0,3,560,1037,84,232,2,5,9,12,0,2,15,14,14,13,0,1,1,0,0,0,0,0,0,0,14,13,0,1,1,0,0,0,0,0 -050,01,083,Alabama,Limestone County,1,0,82782,41910,40872,34712,34250,5611,5002,380,340,417,537,77,59,713,684,35380,34895,5907,5287,743,660,534,672,98,72,39381,38810,32627,32556,5499,4892,250,239,404,526,14,13,587,584,33177,33112,5761,5151,514,486,510,647,33,23,2529,2062,2085,1694,112,110,130,101,13,11,63,46,126,100,2203,1783,146,136,229,174,24,25,65,49 -050,01,083,Alabama,Limestone County,1,1,5352,2744,2608,2250,2099,281,332,36,19,41,43,19,9,117,106,2363,2201,356,404,65,41,63,64,20,10,2416,2276,1995,1825,268,307,12,8,40,43,1,1,100,92,2091,1914,337,376,30,20,61,62,2,2,328,332,255,274,13,25,24,11,1,0,18,8,17,14,272,287,19,28,35,21,2,2,18,8 -050,01,083,Alabama,Limestone County,1,2,5414,2749,2665,2235,2147,319,329,34,32,54,56,7,12,100,89,2330,2233,389,383,54,60,71,67,12,12,2477,2392,2007,1929,303,312,19,21,54,56,2,1,92,73,2094,2001,371,362,33,36,70,66,7,1,272,273,228,218,16,17,15,11,0,0,5,11,8,16,236,232,18,21,21,24,1,1,5,11 -050,01,083,Alabama,Limestone County,1,3,5686,2933,2753,2388,2220,388,360,31,30,34,48,8,5,84,90,2468,2306,434,407,64,59,45,67,8,6,2688,2548,2195,2049,375,354,19,18,33,47,3,2,63,78,2258,2125,414,398,34,37,43,65,3,3,245,205,193,171,13,6,12,12,1,1,5,3,21,12,210,181,20,9,30,22,2,2,5,3 -050,01,083,Alabama,Limestone County,1,4,5317,2682,2635,2206,2161,355,356,27,32,23,17,4,2,67,67,2267,2223,390,392,60,56,35,31,4,5,2484,2449,2040,2011,349,350,18,20,21,14,1,1,55,53,2090,2060,380,381,40,36,32,26,1,3,198,186,166,150,6,6,9,12,2,3,3,1,12,14,177,163,10,11,20,20,3,5,3,2 -050,01,083,Alabama,Limestone County,1,5,4707,2506,2201,2006,1817,398,289,25,31,24,20,7,6,46,38,2050,1852,412,302,45,53,36,27,12,6,2225,2010,1771,1667,385,276,10,15,24,19,1,0,34,33,1803,1697,396,287,22,33,35,26,5,0,281,191,235,150,13,13,15,16,0,1,6,6,12,5,247,155,16,15,23,20,1,1,7,6 -050,01,083,Alabama,Limestone County,1,6,5515,2886,2629,2274,2157,492,342,43,30,20,44,12,11,45,45,2316,2199,505,361,70,50,28,55,15,13,2588,2420,2037,1997,479,327,25,16,18,41,1,2,28,37,2062,2032,487,345,40,29,25,51,4,4,298,209,237,160,13,15,18,14,2,3,11,9,17,8,254,167,18,16,30,21,3,4,11,9 -050,01,083,Alabama,Limestone County,1,7,5536,2933,2603,2301,2140,526,353,30,22,36,51,9,7,31,30,2328,2170,532,359,50,33,45,64,9,7,2663,2426,2078,1986,519,346,12,15,32,50,1,4,21,25,2096,2011,525,352,23,22,39,62,1,4,270,177,223,154,7,7,18,7,4,1,8,3,10,5,232,159,7,7,27,11,6,2,8,3 -050,01,083,Alabama,Limestone County,1,8,5889,3073,2816,2464,2309,489,367,25,25,49,71,4,1,42,43,2505,2349,494,377,58,52,54,84,5,2,2867,2661,2289,2183,473,359,20,20,49,70,1,0,35,29,2323,2210,477,364,47,36,53,81,2,1,206,155,175,126,16,8,5,5,0,1,3,1,7,14,182,139,17,13,11,16,1,3,3,1 -050,01,083,Alabama,Limestone County,1,9,6326,3279,3047,2612,2554,546,392,25,26,57,48,2,4,37,23,2646,2574,555,399,52,41,62,52,4,4,3142,2929,2494,2451,543,389,17,20,57,48,0,1,31,20,2523,2469,549,395,39,33,62,51,2,1,137,118,118,103,3,3,8,6,0,0,2,3,6,3,123,105,6,4,13,8,0,1,2,3 -050,01,083,Alabama,Limestone County,1,10,6762,3554,3208,2938,2668,535,438,21,35,22,31,2,0,36,36,2972,2702,540,442,50,65,27,35,3,1,3447,3134,2847,2607,530,432,17,32,21,31,1,0,31,32,2876,2638,535,435,42,60,26,34,1,0,107,74,91,61,5,6,4,3,1,0,1,0,5,4,96,64,5,7,8,5,1,1,2,1 -050,01,083,Alabama,Limestone County,1,11,6205,3209,2996,2729,2525,403,379,27,19,17,36,1,1,32,36,2755,2557,413,384,54,45,20,44,3,3,3137,2941,2668,2481,400,376,25,16,17,35,1,1,26,32,2689,2510,407,380,46,40,20,42,3,2,72,55,61,44,3,3,2,3,0,1,0,0,6,4,66,47,6,4,8,5,0,2,0,1 -050,01,083,Alabama,Limestone County,1,12,5166,2553,2613,2179,2242,312,304,18,12,17,30,1,0,26,25,2204,2266,315,310,40,30,20,34,1,1,2497,2585,2130,2215,310,304,18,11,15,30,1,0,23,25,2152,2239,313,310,38,29,17,34,1,1,56,28,49,27,2,0,0,1,2,0,0,0,3,0,52,27,2,0,2,1,3,0,0,0 -050,01,083,Alabama,Limestone County,1,13,4720,2292,2428,2027,2133,219,246,15,13,10,22,1,0,20,14,2047,2146,220,247,31,26,13,23,1,0,2266,2407,2004,2112,218,246,15,13,10,22,0,0,19,14,2023,2125,219,247,31,26,12,23,0,0,26,21,23,21,1,0,0,0,0,0,1,0,1,0,24,21,1,0,0,0,1,0,1,0 -050,01,083,Alabama,Limestone County,1,14,3514,1703,1811,1530,1616,145,169,11,4,6,7,0,1,11,14,1540,1629,146,171,20,14,8,11,0,1,1690,1794,1518,1601,144,169,11,4,6,7,0,0,11,13,1528,1613,145,171,20,14,8,10,0,0,13,17,12,15,1,0,0,0,0,0,0,1,0,1,12,16,1,0,0,0,0,1,0,1 -050,01,083,Alabama,Limestone County,1,15,2615,1233,1382,1134,1245,80,119,6,5,4,3,0,0,9,10,1143,1253,80,122,15,13,4,3,0,1,1223,1372,1125,1235,80,119,6,5,4,3,0,0,8,10,1133,1243,80,122,14,13,4,3,0,1,10,10,9,10,0,0,0,0,0,0,0,0,1,0,10,10,0,0,1,0,0,0,0,0 -050,01,083,Alabama,Limestone County,1,16,1889,830,1059,765,945,56,99,4,2,1,5,0,0,4,8,768,953,57,99,7,10,1,5,1,0,825,1052,760,938,56,99,4,2,1,5,0,0,4,8,763,946,57,99,7,10,1,5,1,0,5,7,5,7,0,0,0,0,0,0,0,0,0,0,5,7,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,1,17,1177,447,730,402,657,40,62,1,0,1,3,0,0,3,8,404,665,41,62,4,8,1,3,0,0,442,729,397,657,40,61,1,0,1,3,0,0,3,8,399,665,41,61,4,8,1,3,0,0,5,1,5,0,0,1,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,1,18,992,304,688,272,615,27,66,1,3,1,2,0,0,3,2,274,617,28,66,4,4,1,3,0,0,304,685,272,612,27,66,1,3,1,2,0,0,3,2,274,614,28,66,4,4,1,3,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,2,0,82775,41906,40869,34706,34245,5613,5004,380,340,417,537,77,59,713,684,35374,34890,5909,5289,743,660,534,672,98,72,39377,38807,32621,32551,5501,4894,250,239,404,526,14,13,587,584,33171,33107,5763,5153,514,486,510,647,33,23,2529,2062,2085,1694,112,110,130,101,13,11,63,46,126,100,2203,1783,146,136,229,174,24,25,65,49 -050,01,083,Alabama,Limestone County,2,1,5353,2745,2608,2250,2099,282,332,36,19,41,43,19,9,117,106,2363,2201,357,404,65,41,63,64,20,10,2417,2276,1995,1825,269,307,12,8,40,43,1,1,100,92,2091,1914,338,376,30,20,61,62,2,2,328,332,255,274,13,25,24,11,1,0,18,8,17,14,272,287,19,28,35,21,2,2,18,8 -050,01,083,Alabama,Limestone County,2,2,5415,2749,2666,2235,2147,319,330,34,32,54,56,7,12,100,89,2330,2233,389,384,54,60,71,67,12,12,2477,2393,2007,1929,303,313,19,21,54,56,2,1,92,73,2094,2001,371,363,33,36,70,66,7,1,272,273,228,218,16,17,15,11,0,0,5,11,8,16,236,232,18,21,21,24,1,1,5,11 -050,01,083,Alabama,Limestone County,2,3,5686,2933,2753,2388,2220,388,360,31,30,34,48,8,5,84,90,2468,2306,434,407,64,59,45,67,8,6,2688,2548,2195,2049,375,354,19,18,33,47,3,2,63,78,2258,2125,414,398,34,37,43,65,3,3,245,205,193,171,13,6,12,12,1,1,5,3,21,12,210,181,20,9,30,22,2,2,5,3 -050,01,083,Alabama,Limestone County,2,4,5317,2682,2635,2206,2161,355,356,27,32,23,17,4,2,67,67,2267,2223,390,392,60,56,35,31,4,5,2484,2449,2040,2011,349,350,18,20,21,14,1,1,55,53,2090,2060,380,381,40,36,32,26,1,3,198,186,166,150,6,6,9,12,2,3,3,1,12,14,177,163,10,11,20,20,3,5,3,2 -050,01,083,Alabama,Limestone County,2,5,4706,2506,2200,2006,1816,398,289,25,31,24,20,7,6,46,38,2050,1851,412,302,45,53,36,27,12,6,2225,2009,1771,1666,385,276,10,15,24,19,1,0,34,33,1803,1696,396,287,22,33,35,26,5,0,281,191,235,150,13,13,15,16,0,1,6,6,12,5,247,155,16,15,23,20,1,1,7,6 -050,01,083,Alabama,Limestone County,2,6,5515,2886,2629,2273,2157,493,342,43,30,20,44,12,11,45,45,2315,2199,506,361,70,50,28,55,15,13,2588,2420,2036,1997,480,327,25,16,18,41,1,2,28,37,2061,2032,488,345,40,29,25,51,4,4,298,209,237,160,13,15,18,14,2,3,11,9,17,8,254,167,18,16,30,21,3,4,11,9 -050,01,083,Alabama,Limestone County,2,7,5536,2932,2604,2300,2140,526,354,30,22,36,51,9,7,31,30,2327,2170,532,360,50,33,45,64,9,7,2662,2427,2077,1986,519,347,12,15,32,50,1,4,21,25,2095,2011,525,353,23,22,39,62,1,4,270,177,223,154,7,7,18,7,4,1,8,3,10,5,232,159,7,7,27,11,6,2,8,3 -050,01,083,Alabama,Limestone County,2,8,5889,3073,2816,2464,2309,489,367,25,25,49,71,4,1,42,43,2505,2349,494,377,58,52,54,84,5,2,2867,2661,2289,2183,473,359,20,20,49,70,1,0,35,29,2323,2210,477,364,47,36,53,81,2,1,206,155,175,126,16,8,5,5,0,1,3,1,7,14,182,139,17,13,11,16,1,3,3,1 -050,01,083,Alabama,Limestone County,2,9,6326,3279,3047,2612,2554,546,392,25,26,57,48,2,4,37,23,2646,2574,555,399,52,41,62,52,4,4,3142,2929,2494,2451,543,389,17,20,57,48,0,1,31,20,2523,2469,549,395,39,33,62,51,2,1,137,118,118,103,3,3,8,6,0,0,2,3,6,3,123,105,6,4,13,8,0,1,2,3 -050,01,083,Alabama,Limestone County,2,10,6760,3552,3208,2936,2668,535,438,21,35,22,31,2,0,36,36,2970,2702,540,442,50,65,27,35,3,1,3445,3134,2845,2607,530,432,17,32,21,31,1,0,31,32,2874,2638,535,435,42,60,26,34,1,0,107,74,91,61,5,6,4,3,1,0,1,0,5,4,96,64,5,7,8,5,1,1,2,1 -050,01,083,Alabama,Limestone County,2,11,6202,3208,2994,2728,2523,403,379,27,19,17,36,1,1,32,36,2754,2555,413,384,54,45,20,44,3,3,3136,2939,2667,2479,400,376,25,16,17,35,1,1,26,32,2688,2508,407,380,46,40,20,42,3,2,72,55,61,44,3,3,2,3,0,1,0,0,6,4,66,47,6,4,8,5,0,2,0,1 -050,01,083,Alabama,Limestone County,2,12,5164,2553,2611,2179,2240,312,304,18,12,17,30,1,0,26,25,2204,2264,315,310,40,30,20,34,1,1,2497,2583,2130,2213,310,304,18,11,15,30,1,0,23,25,2152,2237,313,310,38,29,17,34,1,1,56,28,49,27,2,0,0,1,2,0,0,0,3,0,52,27,2,0,2,1,3,0,0,0 -050,01,083,Alabama,Limestone County,2,13,4719,2291,2428,2026,2133,219,246,15,13,10,22,1,0,20,14,2046,2146,220,247,31,26,13,23,1,0,2265,2407,2003,2112,218,246,15,13,10,22,0,0,19,14,2022,2125,219,247,31,26,12,23,0,0,26,21,23,21,1,0,0,0,0,0,1,0,1,0,24,21,1,0,0,0,1,0,1,0 -050,01,083,Alabama,Limestone County,2,14,3514,1703,1811,1530,1616,145,169,11,4,6,7,0,1,11,14,1540,1629,146,171,20,14,8,11,0,1,1690,1794,1518,1601,144,169,11,4,6,7,0,0,11,13,1528,1613,145,171,20,14,8,10,0,0,13,17,12,15,1,0,0,0,0,0,0,1,0,1,12,16,1,0,0,0,0,1,0,1 -050,01,083,Alabama,Limestone County,2,15,2615,1233,1382,1134,1245,80,119,6,5,4,3,0,0,9,10,1143,1253,80,122,15,13,4,3,0,1,1223,1372,1125,1235,80,119,6,5,4,3,0,0,8,10,1133,1243,80,122,14,13,4,3,0,1,10,10,9,10,0,0,0,0,0,0,0,0,1,0,10,10,0,0,1,0,0,0,0,0 -050,01,083,Alabama,Limestone County,2,16,1889,830,1059,765,945,56,99,4,2,1,5,0,0,4,8,768,953,57,99,7,10,1,5,1,0,825,1052,760,938,56,99,4,2,1,5,0,0,4,8,763,946,57,99,7,10,1,5,1,0,5,7,5,7,0,0,0,0,0,0,0,0,0,0,5,7,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,2,17,1177,447,730,402,657,40,62,1,0,1,3,0,0,3,8,404,665,41,62,4,8,1,3,0,0,442,729,397,657,40,61,1,0,1,3,0,0,3,8,399,665,41,61,4,8,1,3,0,0,5,1,5,0,0,1,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,2,18,992,304,688,272,615,27,66,1,3,1,2,0,0,3,2,274,617,28,66,4,4,1,3,0,0,304,685,272,612,27,66,1,3,1,2,0,0,3,2,274,614,28,66,4,4,1,3,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,3,0,83168,42084,41084,34823,34368,5643,5067,378,339,432,553,75,60,733,697,35497,35011,5929,5349,754,670,567,679,102,90,39572,39007,32750,32661,5531,4957,250,239,420,542,14,13,607,595,33314,33211,5780,5199,544,516,535,652,27,38,2512,2077,2073,1707,112,110,128,100,12,11,61,47,126,102,2183,1800,149,150,210,154,32,27,75,52 -050,01,083,Alabama,Limestone County,3,1,5329,2733,2596,2236,2087,284,334,34,20,42,43,17,9,120,103,2349,2187,362,401,58,41,65,62,23,10,2418,2264,1989,1814,270,308,12,9,41,43,1,1,105,89,2090,1900,341,368,29,24,61,59,4,2,315,332,247,273,14,26,22,11,1,0,16,8,15,14,259,287,21,33,29,17,4,3,19,8 -050,01,083,Alabama,Limestone County,3,2,5405,2751,2654,2234,2132,318,328,33,32,56,59,6,13,104,90,2334,2213,381,383,59,55,79,75,9,19,2478,2379,2007,1912,301,312,18,21,56,59,2,1,94,74,2098,1980,359,360,39,37,77,72,4,4,273,275,227,220,17,16,15,11,0,0,4,12,10,16,236,233,22,23,20,18,2,3,5,15 -050,01,083,Alabama,Limestone County,3,3,5752,2961,2791,2409,2247,388,367,34,30,36,49,9,5,85,93,2490,2335,430,415,64,61,51,67,12,8,2708,2581,2209,2072,376,361,21,18,35,48,3,2,64,80,2271,2148,411,405,41,42,46,63,4,5,253,210,200,175,12,6,13,12,1,1,6,3,21,13,219,187,19,10,23,19,5,4,8,3 -050,01,083,Alabama,Limestone County,3,4,5290,2676,2614,2194,2141,362,353,26,32,23,19,4,2,67,67,2256,2204,392,383,58,60,35,32,6,6,2482,2429,2032,1990,355,347,18,20,21,16,1,1,55,55,2084,2043,383,373,41,40,32,28,1,4,194,185,162,151,7,6,8,12,2,3,3,1,12,12,172,161,9,10,17,20,3,4,5,2 -050,01,083,Alabama,Limestone County,3,5,4747,2531,2216,2023,1830,404,291,25,30,25,19,7,6,47,40,2067,1866,422,310,49,48,32,26,10,7,2256,2031,1793,1686,392,279,10,14,25,18,1,0,35,34,1827,1717,406,294,27,29,31,25,2,1,275,185,230,144,12,12,15,16,0,1,6,6,12,6,240,149,16,16,22,19,1,1,8,6 -050,01,083,Alabama,Limestone County,3,6,5560,2907,2653,2292,2168,493,355,42,28,21,45,11,10,48,47,2336,2213,508,370,68,50,34,56,12,13,2610,2443,2054,2005,480,341,24,15,20,42,1,2,31,38,2081,2041,491,353,38,33,29,51,2,5,297,210,238,163,13,14,18,13,1,3,10,8,17,9,255,172,17,17,30,17,5,5,10,8 -050,01,083,Alabama,Limestone County,3,7,5577,2942,2635,2305,2157,528,362,30,23,37,53,9,8,33,32,2333,2188,535,374,52,38,47,60,10,9,2674,2457,2086,2004,521,354,11,16,33,52,1,4,22,27,2106,2030,524,363,25,29,40,59,1,5,268,178,219,153,7,8,19,7,4,1,8,4,11,5,227,158,11,11,27,9,7,1,9,4 -050,01,083,Alabama,Limestone County,3,8,5874,3063,2811,2454,2294,489,375,25,24,48,74,5,1,42,43,2488,2332,496,384,58,48,56,85,8,5,2857,2652,2278,2165,475,366,20,18,48,73,1,0,35,30,2307,2192,482,370,46,36,56,81,2,3,206,159,176,129,14,9,5,6,0,1,4,1,7,13,181,140,14,14,12,12,0,4,6,2 -050,01,083,Alabama,Limestone County,3,9,6328,3276,3052,2609,2555,544,391,24,26,60,52,1,4,38,24,2639,2574,550,396,56,43,66,57,3,6,3140,2933,2491,2452,540,388,17,20,60,52,0,1,32,20,2515,2467,546,392,44,34,66,57,1,3,136,119,118,103,4,3,7,6,0,0,1,3,6,4,124,107,4,4,12,9,0,0,2,3 -050,01,083,Alabama,Limestone County,3,10,6794,3558,3236,2931,2687,539,445,21,35,26,31,3,0,38,38,2966,2721,545,450,51,64,32,37,4,4,3450,3161,2840,2624,534,440,17,32,25,31,1,0,33,34,2871,2654,538,443,43,58,30,37,2,4,108,75,91,63,5,5,4,3,1,0,2,0,5,4,95,67,7,7,8,6,2,0,2,0 -050,01,083,Alabama,Limestone County,3,11,6268,3239,3029,2755,2544,405,389,27,20,19,37,1,1,32,38,2785,2578,410,394,55,54,23,42,2,1,3170,2973,2695,2500,403,386,25,17,19,36,1,1,27,33,2720,2529,406,391,49,47,23,40,2,1,69,56,60,44,2,3,2,3,0,1,0,0,5,5,65,49,4,3,6,7,0,2,0,0 -050,01,083,Alabama,Limestone County,3,12,5218,2582,2636,2197,2260,320,312,19,10,17,30,1,0,28,24,2225,2281,321,316,42,29,21,34,1,0,2526,2605,2149,2230,317,311,19,10,15,30,1,0,25,24,2174,2251,318,315,39,29,19,34,1,0,56,31,48,30,3,1,0,0,2,0,0,0,3,0,51,30,3,1,3,0,2,0,0,0 -050,01,083,Alabama,Limestone County,3,13,4743,2306,2437,2044,2140,219,247,14,13,10,21,1,0,18,16,2061,2156,221,248,30,26,12,23,2,0,2277,2416,2018,2119,218,247,14,13,10,21,0,0,17,16,2034,2135,220,248,30,26,11,23,1,0,29,21,26,21,1,0,0,0,0,0,1,0,1,0,27,21,1,0,0,0,1,0,1,0 -050,01,083,Alabama,Limestone County,3,14,3547,1716,1831,1543,1632,146,171,11,5,5,8,0,1,11,14,1553,1645,148,173,19,18,7,8,0,1,1703,1814,1531,1617,145,171,11,5,5,8,0,0,11,13,1541,1629,147,173,19,17,7,8,0,0,13,17,12,15,1,0,0,0,0,0,0,1,0,1,12,16,1,0,0,1,0,0,0,1 -050,01,083,Alabama,Limestone County,3,15,2639,1240,1399,1139,1260,81,120,6,6,4,3,0,0,10,10,1149,1269,81,121,16,15,4,3,0,1,1230,1386,1130,1247,81,120,6,6,4,3,0,0,9,10,1139,1256,81,121,15,15,4,3,0,1,10,13,9,13,0,0,0,0,0,0,0,0,1,0,10,13,0,0,1,0,0,0,0,0 -050,01,083,Alabama,Limestone County,3,16,1908,845,1063,778,951,56,98,5,2,1,5,0,0,5,7,781,957,58,99,10,8,1,6,0,0,840,1056,773,944,56,98,5,2,1,5,0,0,5,7,776,950,58,99,10,8,1,6,0,0,5,7,5,7,0,0,0,0,0,0,0,0,0,0,5,7,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,3,17,1186,450,736,405,660,39,64,1,0,1,3,0,0,4,9,408,668,40,66,5,7,1,4,0,0,446,735,401,660,39,63,1,0,1,3,0,0,4,9,404,668,40,65,5,7,1,4,0,0,4,1,4,0,0,1,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,3,18,1003,308,695,275,623,28,65,1,3,1,2,0,0,3,2,277,624,29,66,4,5,1,2,0,0,307,692,274,620,28,65,1,3,1,2,0,0,3,2,276,621,29,66,4,5,1,2,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,4,0,85553,43265,42288,35576,35242,5968,5282,377,342,464,589,78,68,802,765,36310,35936,6303,5623,758,692,618,732,107,95,40705,40140,33495,33483,5841,5158,253,244,448,577,19,22,649,656,34095,34080,6117,5451,544,533,580,705,35,44,2560,2148,2081,1759,127,124,124,98,16,12,59,46,153,109,2215,1856,186,172,214,159,38,27,72,51 -050,01,083,Alabama,Limestone County,4,1,5407,2721,2686,2208,2151,290,348,21,18,47,43,15,9,140,117,2344,2261,387,429,49,42,73,65,17,11,2389,2339,1940,1875,272,309,8,7,44,43,1,2,124,103,2061,1973,361,382,30,22,68,62,2,4,332,347,268,276,18,39,13,11,3,0,14,7,16,14,283,288,26,47,19,20,5,3,15,7 -050,01,083,Alabama,Limestone County,4,2,5441,2748,2693,2235,2155,316,335,33,32,57,60,10,13,97,98,2325,2250,377,396,53,61,74,76,16,13,2451,2410,1995,1928,296,319,17,19,55,60,3,2,85,82,2076,2007,350,373,32,41,72,74,6,2,297,283,240,227,20,16,16,13,2,0,7,11,12,16,249,243,27,23,21,20,2,2,10,11 -050,01,083,Alabama,Limestone County,4,3,5920,3023,2897,2454,2331,393,384,39,32,44,46,9,6,84,98,2536,2421,438,444,68,63,58,63,10,8,2759,2659,2240,2132,381,376,25,21,43,45,4,1,66,84,2304,2209,419,429,45,44,55,61,4,3,264,238,214,199,12,8,14,11,1,1,5,5,18,14,232,212,19,15,23,19,3,2,6,5 -050,01,083,Alabama,Limestone County,4,4,5309,2697,2612,2186,2118,381,357,23,33,21,29,4,4,82,71,2260,2179,416,395,60,57,40,45,10,9,2497,2420,2034,1961,370,350,15,20,19,26,1,3,58,60,2088,2014,398,384,36,38,31,39,5,6,200,192,152,157,11,7,8,13,2,3,3,1,24,11,172,165,18,11,24,19,9,6,5,3 -050,01,083,Alabama,Limestone County,4,5,5000,2675,2325,2082,1924,461,298,27,23,30,15,6,5,69,60,2141,1983,491,321,59,48,45,27,10,7,2422,2156,1878,1794,452,287,14,14,30,14,2,1,46,46,1917,1840,473,303,33,32,41,24,5,3,253,169,204,130,9,11,13,9,0,1,4,4,23,14,224,143,18,18,26,16,4,3,5,4 -050,01,083,Alabama,Limestone County,4,6,5708,2983,2725,2343,2215,516,372,38,29,26,51,10,10,50,48,2390,2257,530,390,66,51,39,64,12,14,2700,2513,2122,2044,502,358,20,16,25,49,1,3,30,43,2150,2081,510,374,33,36,36,61,1,7,283,212,221,171,14,14,18,13,1,2,9,7,20,5,240,176,20,16,33,15,3,3,11,7 -050,01,083,Alabama,Limestone County,4,7,5808,3074,2734,2385,2232,570,373,31,27,36,55,10,11,42,36,2419,2264,581,386,58,43,46,63,12,14,2801,2551,2164,2082,560,364,12,19,33,52,2,5,30,29,2187,2107,568,374,31,32,42,60,3,7,273,183,221,150,10,9,19,8,3,3,8,6,12,7,232,157,13,12,27,11,4,3,9,7 -050,01,083,Alabama,Limestone County,4,8,5816,3051,2765,2426,2248,511,371,27,21,42,82,5,3,40,40,2461,2281,518,382,52,47,53,91,7,4,2858,2605,2263,2114,499,365,21,13,41,81,0,2,34,30,2294,2140,503,371,43,32,50,90,2,2,193,160,163,134,12,6,6,8,1,1,5,1,6,10,167,141,15,11,9,15,3,1,5,2 -050,01,083,Alabama,Limestone County,4,9,6471,3408,3063,2699,2524,578,422,23,26,65,58,1,5,42,28,2736,2547,585,429,57,43,72,65,2,7,3259,2940,2573,2418,569,419,15,21,65,58,1,2,36,22,2605,2435,574,424,43,34,72,65,2,4,149,123,126,106,9,3,8,5,0,0,0,3,6,6,131,112,11,5,14,9,0,0,0,3 -050,01,083,Alabama,Limestone County,4,10,6890,3562,3328,2901,2770,562,455,22,30,35,35,5,0,37,38,2933,2799,570,464,49,57,41,45,6,2,3446,3245,2799,2699,558,449,19,28,35,35,2,0,33,34,2828,2726,564,455,44,53,41,44,2,1,116,83,102,71,4,6,3,2,0,0,3,0,4,4,105,73,6,9,5,4,0,1,4,1 -050,01,083,Alabama,Limestone County,4,11,6605,3427,3178,2896,2652,439,421,30,28,24,34,1,1,37,42,2929,2689,448,427,57,61,28,41,2,2,3355,3119,2836,2605,436,420,27,24,23,33,1,1,32,36,2865,2636,442,426,52,52,27,39,1,2,72,59,60,47,3,1,3,4,1,1,0,0,5,6,64,53,6,1,5,9,1,2,1,0 -050,01,083,Alabama,Limestone County,4,12,5521,2732,2789,2308,2372,357,348,22,9,15,35,0,0,30,25,2336,2395,361,352,48,29,18,38,1,1,2679,2754,2266,2342,355,345,20,8,13,35,0,0,25,24,2289,2364,358,349,41,28,16,37,1,1,53,35,42,30,2,3,2,1,2,0,0,0,5,1,47,31,3,3,7,1,2,1,0,0 -050,01,083,Alabama,Limestone County,4,13,4959,2415,2544,2152,2227,226,257,10,15,8,25,2,0,17,20,2169,2247,226,258,23,32,12,27,2,1,2376,2522,2118,2205,224,257,9,15,8,25,1,0,16,20,2134,2225,224,258,22,32,11,27,1,1,39,22,34,22,2,0,1,0,0,0,1,0,1,0,35,22,2,0,1,0,1,0,1,0 -050,01,083,Alabama,Limestone County,4,14,3676,1786,1890,1594,1683,156,179,16,8,7,6,0,1,13,13,1605,1695,158,182,26,18,10,7,0,2,1771,1875,1579,1670,156,179,16,8,7,6,0,0,13,12,1590,1681,158,182,26,17,10,7,0,1,15,15,15,13,0,0,0,0,0,0,0,1,0,1,15,14,0,0,0,1,0,0,0,1 -050,01,083,Alabama,Limestone County,4,15,2744,1262,1482,1153,1332,90,130,7,5,3,3,0,0,9,12,1162,1342,91,133,14,17,4,3,0,0,1253,1465,1145,1315,89,130,7,5,3,3,0,0,9,12,1154,1325,90,133,14,17,4,3,0,0,9,17,8,17,1,0,0,0,0,0,0,0,0,0,8,17,1,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,4,16,1986,895,1091,826,982,56,94,5,2,2,6,0,0,6,7,830,989,58,95,10,8,3,6,0,0,888,1085,820,976,56,94,5,2,2,6,0,0,5,7,824,983,57,95,10,8,2,6,0,0,7,6,6,6,0,0,0,0,0,0,0,0,1,0,6,6,1,0,0,0,1,0,0,0 -050,01,083,Alabama,Limestone County,4,17,1232,478,754,435,670,36,70,2,1,1,3,0,0,4,10,439,679,37,71,5,11,1,3,0,0,475,753,432,670,36,69,2,1,1,3,0,0,4,10,436,679,37,70,5,11,1,3,0,0,3,1,3,0,0,1,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,4,18,1060,328,732,293,656,30,68,1,3,1,3,0,0,3,2,295,658,31,69,4,4,1,3,0,0,326,729,291,653,30,68,1,3,1,3,0,0,3,2,293,655,31,69,4,4,1,3,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,5,0,87336,43932,43404,36109,36052,5980,5463,382,352,517,650,83,73,861,814,36903,36805,6332,5807,791,727,678,797,113,104,41350,41192,34015,34255,5852,5334,259,250,500,631,25,25,699,697,34668,34907,6145,5631,574,561,635,761,43,45,2582,2212,2094,1797,128,129,123,102,17,19,58,48,162,117,2235,1898,187,176,217,166,43,36,70,59 -050,01,083,Alabama,Limestone County,5,1,5474,2694,2780,2168,2241,291,345,23,13,45,45,15,7,152,129,2313,2366,392,432,51,38,73,67,19,10,2389,2450,1923,1976,273,307,11,5,42,43,4,1,136,118,2055,2092,364,390,33,24,68,63,6,3,305,330,245,265,18,38,12,8,3,2,11,6,16,11,258,274,28,42,18,14,5,4,13,7 -050,01,083,Alabama,Limestone County,5,2,5722,2918,2804,2367,2223,323,368,30,28,68,65,14,12,116,108,2478,2323,394,439,53,55,92,83,18,13,2610,2523,2118,2003,306,350,13,14,67,65,4,2,102,89,2215,2087,374,409,31,33,88,82,5,2,308,281,249,220,17,18,17,14,1,0,10,10,14,19,263,236,20,30,22,22,4,1,13,11 -050,01,083,Alabama,Limestone County,5,3,6051,3115,2936,2538,2348,398,388,38,34,51,58,8,10,82,98,2612,2438,442,444,67,68,69,77,8,12,2854,2665,2323,2128,383,379,25,22,49,56,3,2,71,78,2388,2202,424,425,46,46,65,71,3,3,261,271,215,220,15,9,13,12,2,2,5,8,11,20,224,236,18,19,21,22,4,6,5,9 -050,01,083,Alabama,Limestone County,5,4,5344,2743,2601,2219,2089,383,361,25,35,25,34,6,4,85,78,2298,2161,419,399,64,65,42,48,10,8,2516,2418,2048,1941,373,353,15,22,21,30,2,3,57,69,2102,2005,399,387,37,48,32,43,5,5,227,183,171,148,10,8,10,13,4,4,4,1,28,9,196,156,20,12,27,17,10,5,5,3 -050,01,083,Alabama,Limestone County,5,5,5060,2661,2399,2054,1989,462,309,26,25,32,10,6,4,81,62,2122,2045,495,335,64,52,52,24,11,7,2430,2222,1877,1846,453,302,14,17,32,9,2,2,52,46,1921,1887,476,320,37,35,45,21,5,5,231,177,177,143,9,7,12,8,0,1,4,2,29,16,201,158,19,15,27,17,7,3,6,2 -050,01,083,Alabama,Limestone County,5,6,5749,2962,2787,2334,2294,501,356,32,33,30,43,10,12,55,49,2384,2342,521,371,60,53,43,55,11,15,2676,2569,2102,2120,489,341,19,19,29,40,1,5,36,44,2135,2163,500,354,35,37,41,51,1,8,286,218,232,174,12,15,13,14,1,3,9,7,19,5,249,179,21,17,25,16,2,4,10,7 -050,01,083,Alabama,Limestone County,5,7,5991,3138,2853,2482,2307,538,402,31,28,39,62,8,12,40,42,2516,2344,547,414,56,52,50,73,10,12,2851,2657,2246,2152,528,390,11,17,37,60,3,4,26,34,2267,2182,535,401,25,34,46,70,4,4,287,196,236,155,10,12,20,11,2,2,5,8,14,8,249,162,12,13,31,18,4,3,6,8 -050,01,083,Alabama,Limestone County,5,8,5769,3001,2768,2361,2250,526,363,27,21,50,89,6,3,31,42,2389,2284,534,371,47,48,57,100,6,8,2827,2596,2220,2109,514,356,20,13,48,86,0,1,25,31,2243,2135,519,361,36,35,55,95,0,2,174,172,141,141,12,7,7,8,2,3,6,2,6,11,146,149,15,10,11,13,2,5,6,6 -050,01,083,Alabama,Limestone County,5,9,6546,3408,3138,2726,2570,548,443,27,23,56,64,2,6,49,32,2771,2600,555,447,63,46,64,69,4,9,3246,3025,2591,2472,537,441,18,20,56,63,2,3,42,26,2630,2496,541,445,50,39,63,67,4,5,162,113,135,98,11,2,9,3,0,1,0,3,7,6,141,104,14,2,13,7,1,2,0,4 -050,01,083,Alabama,Limestone County,5,10,6842,3491,3351,2814,2787,565,458,23,31,44,39,5,1,40,35,2850,2819,573,468,56,55,49,44,5,4,3365,3256,2703,2707,562,451,20,27,44,39,2,1,34,31,2735,2736,567,458,49,49,48,43,2,3,126,95,111,80,3,7,3,4,0,0,3,0,6,4,115,83,6,10,7,6,1,1,3,1 -050,01,083,Alabama,Limestone County,5,11,6694,3499,3195,2957,2629,444,443,30,36,29,47,0,1,39,39,2995,2666,449,446,63,65,32,53,3,4,3415,3135,2885,2581,440,442,26,31,29,46,0,1,35,34,2919,2613,444,445,56,56,32,51,3,4,84,60,72,48,4,1,4,5,0,1,0,0,4,5,76,53,5,1,7,9,0,2,0,0 -050,01,083,Alabama,Limestone County,5,12,5754,2849,2905,2390,2442,380,385,27,9,20,38,1,0,31,31,2420,2468,383,392,53,36,23,40,2,1,2806,2863,2358,2408,378,381,25,7,19,38,1,0,25,29,2382,2432,380,388,47,32,21,40,1,1,43,42,32,34,2,4,2,2,1,0,0,0,6,2,38,36,3,4,6,4,2,0,1,0 -050,01,083,Alabama,Limestone County,5,13,4934,2401,2533,2128,2211,237,259,7,15,10,30,2,0,17,18,2145,2228,238,262,21,29,13,32,2,0,2355,2506,2089,2184,233,259,7,15,9,30,1,0,16,18,2105,2201,234,262,20,29,12,32,1,0,46,27,39,27,4,0,0,0,1,0,1,0,1,0,40,27,4,0,1,0,1,0,1,0 -050,01,083,Alabama,Limestone County,5,14,4061,1954,2107,1750,1868,159,205,19,9,9,8,0,0,17,17,1767,1885,160,205,35,25,10,9,0,0,1936,2091,1733,1853,159,205,18,9,9,8,0,0,17,16,1750,1869,160,205,34,24,10,9,0,0,18,16,17,15,0,0,1,0,0,0,0,0,0,1,17,16,0,0,1,1,0,0,0,0 -050,01,083,Alabama,Limestone County,5,15,2877,1323,1554,1198,1397,101,133,9,5,5,6,0,1,10,12,1207,1409,102,134,17,14,5,9,2,1,1312,1534,1188,1378,100,133,9,5,5,6,0,0,10,12,1197,1390,101,134,17,14,5,9,2,0,11,20,10,19,1,0,0,0,0,0,0,1,0,0,10,19,1,0,0,0,0,0,0,1 -050,01,083,Alabama,Limestone County,5,16,2055,926,1129,861,1011,51,99,3,3,2,6,0,0,9,10,867,1020,54,100,10,12,2,7,2,0,918,1123,854,1005,51,99,3,3,2,6,0,0,8,10,860,1014,53,100,10,12,2,7,1,0,8,6,7,6,0,0,0,0,0,0,0,0,1,0,7,6,1,0,0,0,0,0,1,0 -050,01,083,Alabama,Limestone County,5,17,1310,513,797,466,707,38,77,4,1,1,3,0,0,4,9,470,715,38,78,8,9,1,4,0,0,510,795,463,706,38,76,4,1,1,3,0,0,4,9,467,714,38,77,8,9,1,4,0,0,3,2,3,1,0,1,0,0,0,0,0,0,0,0,3,1,0,1,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,5,18,1103,336,767,296,689,35,69,1,3,1,3,0,0,3,3,299,692,36,70,3,5,1,3,0,0,334,764,294,686,35,69,1,3,1,3,0,0,3,3,297,689,36,70,3,5,1,3,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,6,0,88931,44801,44130,36701,36584,6198,5574,381,352,539,692,87,75,895,853,37532,37368,6582,5951,797,730,703,852,112,111,42215,41812,34577,34685,6073,5432,276,251,525,678,31,27,733,739,35259,35370,6399,5760,599,571,663,819,50,54,2586,2318,2124,1899,125,142,105,101,14,14,56,48,162,114,2273,1998,183,191,198,159,40,33,62,57 -050,01,083,Alabama,Limestone County,6,1,5396,2693,2703,2161,2165,298,344,16,11,46,46,13,6,159,131,2311,2290,400,432,48,33,80,73,20,9,2372,2385,1896,1912,270,302,12,4,45,44,6,4,143,119,2032,2026,367,385,37,22,75,68,11,6,321,318,265,253,28,42,4,7,1,2,7,2,16,12,279,264,33,47,11,11,5,5,9,3 -050,01,083,Alabama,Limestone County,6,2,5851,2992,2859,2427,2273,323,371,31,22,68,69,19,13,124,111,2543,2375,403,444,58,51,95,86,22,19,2683,2544,2178,2026,311,347,11,10,67,68,6,1,110,92,2281,2113,387,408,31,32,91,82,8,4,309,315,249,247,12,24,20,12,1,1,13,12,14,19,262,262,16,36,27,19,4,4,14,15 -050,01,083,Alabama,Limestone County,6,3,6080,3129,2951,2538,2370,400,376,37,34,60,61,9,11,85,99,2618,2464,450,431,62,62,74,80,11,15,2857,2687,2315,2150,383,366,25,24,59,59,3,2,72,86,2382,2231,427,418,44,46,72,74,5,6,272,264,223,220,17,10,12,10,1,2,6,9,13,13,236,233,23,13,18,16,2,6,6,9 -050,01,083,Alabama,Limestone County,6,4,5462,2823,2639,2291,2110,389,371,25,35,29,32,6,6,83,85,2368,2190,432,415,57,64,45,46,8,12,2602,2443,2110,1951,382,361,15,21,26,31,2,4,67,75,2173,2022,418,399,39,47,39,44,3,9,221,196,181,159,7,10,10,14,3,1,4,2,16,10,195,168,14,16,18,17,6,2,5,3 -050,01,083,Alabama,Limestone County,6,5,5242,2698,2544,2057,2116,499,323,30,25,19,10,4,3,89,67,2144,2178,534,353,73,53,36,23,4,7,2466,2345,1881,1954,492,317,21,15,19,9,1,2,52,48,1932,1999,515,338,43,33,29,20,1,4,232,199,176,162,7,6,9,10,0,1,3,1,37,19,212,179,19,15,30,20,7,3,3,3 -050,01,083,Alabama,Limestone County,6,6,5665,2941,2724,2302,2249,517,346,32,30,26,40,10,9,54,50,2349,2296,536,365,61,53,39,55,11,10,2690,2516,2094,2073,511,334,19,21,25,38,3,2,38,48,2126,2119,524,351,38,43,36,53,4,3,251,208,208,176,6,12,13,9,1,2,7,7,16,2,223,177,12,14,23,10,3,2,7,7 -050,01,083,Alabama,Limestone County,6,7,6112,3219,2893,2550,2301,553,422,26,32,34,80,8,13,48,45,2595,2341,566,441,54,55,43,89,9,15,2949,2679,2330,2133,540,410,15,18,34,78,2,5,28,35,2356,2164,547,424,30,35,41,87,3,6,270,214,220,168,13,12,11,14,0,2,6,8,20,10,239,177,19,17,24,20,2,2,6,9 -050,01,083,Alabama,Limestone County,6,8,5959,3134,2825,2474,2314,540,355,29,20,58,86,7,4,26,46,2496,2354,545,365,51,50,60,98,10,6,2934,2645,2307,2160,532,347,18,13,55,86,1,2,21,37,2326,2193,536,355,35,37,57,96,2,3,200,180,167,154,8,8,11,7,3,0,6,2,5,9,170,161,9,10,16,13,3,2,8,3 -050,01,083,Alabama,Limestone County,6,9,6575,3396,3179,2707,2582,555,450,25,28,61,77,3,6,45,36,2748,2615,566,459,57,50,69,84,4,7,3236,3049,2573,2472,542,445,21,23,59,75,3,3,38,31,2607,2500,549,453,49,42,66,81,4,4,160,130,134,110,13,5,4,5,2,2,0,3,7,5,141,115,17,6,8,8,3,3,0,3 -050,01,083,Alabama,Limestone County,6,10,6797,3446,3351,2735,2785,587,458,22,31,53,45,4,2,45,30,2776,2809,594,466,56,52,60,51,5,5,3317,3246,2620,2701,584,451,20,24,53,45,1,1,39,24,2655,2721,590,456,50,40,59,50,2,4,129,105,115,84,3,7,2,7,0,0,3,1,6,6,121,88,4,10,6,12,1,1,3,1 -050,01,083,Alabama,Limestone County,6,11,6920,3631,3289,3053,2696,475,474,30,35,32,40,1,0,40,44,3092,2731,478,484,62,71,38,47,3,1,3543,3222,2978,2641,471,473,24,31,32,39,1,0,37,38,3014,2671,473,482,54,61,38,46,3,1,88,67,75,55,4,1,6,4,0,1,0,0,3,6,78,60,5,2,8,10,0,1,0,0 -050,01,083,Alabama,Limestone County,6,12,5945,2972,2973,2498,2478,394,401,27,12,21,44,1,1,31,37,2526,2510,400,407,48,41,27,50,3,2,2934,2932,2471,2445,392,397,26,10,20,44,1,1,24,35,2494,2475,394,403,42,38,25,49,3,2,38,41,27,33,2,4,1,2,1,0,0,0,7,2,32,35,6,4,6,3,2,1,0,0 -050,01,083,Alabama,Limestone County,6,13,4934,2396,2538,2101,2207,250,270,12,12,11,32,1,0,21,17,2121,2224,253,271,30,24,12,34,1,2,2348,2515,2060,2184,246,270,11,12,10,32,1,0,20,17,2079,2201,248,271,29,24,11,34,1,2,48,23,41,23,4,0,1,0,1,0,0,0,1,0,42,23,5,0,1,0,1,0,0,0 -050,01,083,Alabama,Limestone County,6,14,4266,2041,2225,1818,1969,173,213,18,12,11,12,1,0,20,19,1834,1987,177,214,36,28,13,15,1,0,2019,2201,1798,1946,173,213,17,12,11,12,0,0,20,18,1814,1963,177,214,35,28,13,14,0,0,22,24,20,23,0,0,1,0,0,0,1,0,0,1,20,24,0,0,1,0,0,1,1,0 -050,01,083,Alabama,Limestone County,6,15,3025,1418,1607,1281,1439,110,143,12,5,6,6,0,1,9,13,1290,1452,110,144,21,16,6,7,0,1,1407,1589,1271,1422,109,143,12,5,6,6,0,0,9,13,1280,1435,109,144,21,16,6,7,0,0,11,18,10,17,1,0,0,0,0,0,0,1,0,0,10,17,1,0,0,0,0,0,0,1 -050,01,083,Alabama,Limestone County,6,16,2183,984,1199,915,1076,55,103,4,4,2,5,0,0,8,11,920,1087,57,104,12,14,3,5,0,0,975,1191,907,1068,55,103,4,4,2,5,0,0,7,11,912,1079,57,104,11,14,2,5,0,0,9,8,8,8,0,0,0,0,0,0,0,0,1,0,8,8,0,0,1,0,1,0,0,0 -050,01,083,Alabama,Limestone County,6,17,1367,534,833,483,744,41,78,4,1,1,3,0,0,5,7,488,750,42,80,8,6,1,4,0,0,530,829,479,741,41,77,4,1,1,3,0,0,5,7,484,747,42,79,8,6,1,4,0,0,4,4,4,3,0,1,0,0,0,0,0,0,0,0,4,3,0,1,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,6,18,1152,354,798,310,710,39,76,1,3,1,4,0,0,3,5,313,715,39,76,3,7,2,5,0,0,353,794,309,706,39,76,1,3,1,4,0,0,3,5,312,711,39,76,3,7,2,5,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,7,0,90622,45426,45196,37154,37286,6324,5845,384,345,550,724,83,80,931,916,38011,38130,6724,6244,821,745,722,891,116,123,42796,42775,34981,35305,6197,5698,283,247,538,706,29,28,768,791,35696,36035,6536,6040,629,584,682,855,46,62,2630,2421,2173,1981,127,147,101,98,12,18,54,52,163,125,2315,2095,188,204,192,161,40,36,70,61 -050,01,083,Alabama,Limestone County,7,1,5356,2612,2744,2118,2161,286,387,9,7,48,47,10,5,141,137,2249,2296,376,477,39,30,76,71,17,8,2298,2439,1851,1919,259,343,8,3,47,44,6,3,127,127,1973,2044,343,427,30,23,73,67,9,6,314,305,267,242,27,44,1,4,1,3,4,2,14,10,276,252,33,50,9,7,3,4,8,2 -050,01,083,Alabama,Limestone County,7,2,5954,3059,2895,2488,2299,334,375,32,17,48,66,18,14,139,124,2621,2415,421,452,64,49,77,86,21,19,2721,2551,2213,2025,326,349,10,6,47,63,3,2,122,106,2329,2126,408,416,35,28,72,81,4,6,338,344,275,274,8,26,22,11,1,3,15,12,17,18,292,289,13,36,29,21,5,5,17,13 -050,01,083,Alabama,Limestone County,7,3,6226,3161,3065,2551,2453,398,386,34,36,67,68,8,15,103,107,2649,2550,457,448,67,68,86,93,8,18,2890,2755,2330,2207,377,372,23,22,66,66,4,3,90,85,2416,2284,431,424,49,43,83,86,4,6,271,310,221,246,21,14,11,14,1,2,4,12,13,22,233,266,26,24,18,25,3,7,4,12 -050,01,083,Alabama,Limestone County,7,4,5623,2930,2693,2362,2146,412,380,29,32,31,35,8,5,88,95,2445,2237,456,429,64,68,47,50,11,7,2695,2494,2169,1983,403,370,18,20,30,34,3,3,72,84,2238,2063,443,412,43,50,42,49,5,5,235,199,193,163,9,10,11,12,1,1,5,2,16,11,207,174,13,17,21,18,5,1,6,2 -050,01,083,Alabama,Limestone County,7,5,5282,2706,2576,2057,2109,510,341,20,31,17,17,4,2,98,76,2149,2177,544,376,66,60,40,31,9,10,2501,2385,1905,1955,503,335,16,22,17,16,1,2,59,55,1961,2003,525,359,40,42,34,28,4,8,205,191,152,154,7,6,4,9,0,1,3,0,39,21,188,174,19,17,26,18,6,3,5,2 -050,01,083,Alabama,Limestone County,7,6,5734,2951,2783,2311,2293,520,363,32,29,26,33,7,10,55,55,2359,2342,542,383,61,49,38,48,7,17,2710,2580,2107,2125,513,353,23,18,26,31,1,2,40,51,2143,2171,527,371,45,36,35,45,1,8,241,203,204,168,7,10,9,11,0,2,6,8,15,4,216,171,15,12,16,13,3,3,6,9 -050,01,083,Alabama,Limestone County,7,7,6225,3221,3004,2551,2383,553,454,31,25,35,81,10,11,41,50,2586,2429,567,472,56,50,43,92,11,13,2969,2791,2345,2208,541,444,16,15,34,78,3,4,30,42,2370,2246,550,460,34,35,41,89,4,5,252,213,206,175,12,10,15,10,1,3,7,7,11,8,216,183,17,12,22,15,2,3,7,8 -050,01,083,Alabama,Limestone County,7,8,6019,3147,2872,2475,2348,540,363,32,23,65,89,6,7,29,42,2500,2384,549,373,52,47,70,102,7,9,2925,2680,2287,2179,533,356,22,16,62,89,1,3,20,37,2304,2210,537,364,36,39,67,100,1,4,222,192,188,169,7,7,10,7,3,0,5,4,9,5,196,174,12,9,16,8,3,2,6,5 -050,01,083,Alabama,Limestone County,7,9,6567,3381,3186,2685,2580,563,447,24,26,55,83,3,4,51,46,2728,2620,576,457,62,59,64,91,4,6,3208,3035,2538,2457,549,440,22,20,53,81,3,2,43,35,2576,2486,557,448,54,45,61,88,3,4,173,151,147,123,14,7,2,6,2,2,0,2,8,11,152,134,19,9,8,14,3,3,1,2 -050,01,083,Alabama,Limestone County,7,10,6785,3447,3338,2729,2747,574,480,31,31,63,50,3,5,47,25,2772,2771,580,486,67,46,69,54,6,7,3308,3231,2611,2660,570,474,24,23,63,50,0,3,40,21,2648,2681,575,477,55,37,68,54,2,4,139,107,118,87,4,6,7,8,0,0,3,2,7,4,124,90,5,9,12,9,1,0,4,3 -050,01,083,Alabama,Limestone County,7,11,7072,3673,3399,3066,2782,503,506,28,32,33,33,3,0,40,46,3101,2822,507,513,58,65,41,43,8,4,3580,3326,2987,2723,500,504,22,28,33,32,2,0,36,39,3018,2759,503,509,50,58,39,38,6,2,93,73,79,59,3,2,6,4,0,1,1,0,4,7,83,63,4,4,8,7,2,5,2,2 -050,01,083,Alabama,Limestone County,7,12,6189,3125,3064,2643,2543,403,413,27,19,21,51,1,1,30,37,2671,2578,407,417,49,48,27,55,4,3,3083,3021,2612,2509,400,409,26,17,20,51,1,1,24,34,2635,2541,403,413,44,43,25,55,1,3,42,43,31,34,3,4,1,2,1,0,0,0,6,3,36,37,4,4,5,5,2,0,3,0 -050,01,083,Alabama,Limestone County,7,13,5033,2449,2584,2128,2224,269,301,15,8,17,33,1,0,19,18,2145,2240,274,304,31,23,18,34,1,1,2396,2556,2081,2196,266,301,15,8,16,33,1,0,17,18,2096,2212,270,304,31,23,16,34,1,1,53,28,47,28,3,0,0,0,1,0,0,0,2,0,49,28,4,0,0,0,2,0,0,0 -050,01,083,Alabama,Limestone County,7,14,4469,2114,2355,1870,2074,190,231,18,15,12,16,1,0,23,19,1892,2092,194,232,39,32,12,18,2,0,2088,2331,1849,2051,189,231,16,15,12,16,0,0,22,18,1870,2068,192,232,37,31,12,18,1,0,26,24,21,23,1,0,2,0,0,0,1,0,1,1,22,24,2,0,2,1,0,0,1,0 -050,01,083,Alabama,Limestone County,7,15,3193,1484,1709,1331,1525,127,155,11,5,6,7,0,1,9,16,1339,1538,128,158,19,20,8,8,0,1,1473,1693,1321,1510,126,155,11,5,6,7,0,0,9,16,1329,1523,127,158,19,20,8,8,0,0,11,16,10,15,1,0,0,0,0,0,0,1,0,0,10,15,1,0,0,0,0,0,0,1 -050,01,083,Alabama,Limestone County,7,16,2250,1024,1226,946,1106,61,101,6,4,2,5,0,0,9,10,954,1116,63,101,14,14,2,5,0,0,1014,1215,937,1095,61,101,6,4,2,5,0,0,8,10,944,1105,62,101,14,14,2,5,0,0,10,11,9,11,0,0,0,0,0,0,0,0,1,0,10,11,1,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,7,17,1420,560,860,512,768,37,77,4,2,3,5,0,0,4,8,516,773,38,80,7,10,3,5,0,0,557,853,509,762,37,76,4,2,3,5,0,0,4,8,513,767,38,79,7,10,3,5,0,0,3,7,3,6,0,1,0,0,0,0,0,0,0,0,3,6,0,1,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,7,18,1225,382,843,331,745,44,85,1,3,1,5,0,0,5,5,335,750,45,86,6,7,1,5,0,0,380,839,329,741,44,85,1,3,1,5,0,0,5,5,333,746,45,86,6,7,1,5,0,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,8,0,91596,45885,45711,37512,37676,6372,5901,373,350,587,744,84,82,957,958,38410,38564,6801,6328,799,777,763,934,109,108,43165,43202,35266,35611,6241,5744,270,250,569,724,32,28,787,845,36006,36399,6600,6125,607,611,716,897,49,51,2720,2509,2246,2065,131,157,103,100,18,20,52,54,170,113,2404,2165,201,203,192,166,47,37,60,57 -050,01,083,Alabama,Limestone County,8,1,5253,2607,2646,2118,2116,269,345,13,1,52,41,5,5,150,138,2262,2244,373,442,41,28,82,65,8,8,2297,2341,1861,1877,241,299,11,0,47,38,5,2,132,125,1990,1996,335,389,30,20,74,60,7,3,310,305,257,239,28,46,2,1,5,3,0,3,18,13,272,248,38,53,11,8,8,5,1,5 -050,01,083,Alabama,Limestone County,8,2,5986,2979,3007,2418,2386,327,384,27,22,48,64,19,13,140,138,2553,2515,417,470,59,55,74,91,21,17,2647,2657,2148,2105,318,355,8,10,47,61,2,2,124,124,2267,2222,401,435,34,35,70,85,4,6,332,350,270,281,9,29,19,12,1,3,17,11,16,14,286,293,16,35,25,20,4,6,17,11 -050,01,083,Alabama,Limestone County,8,3,6192,3151,3041,2513,2433,400,389,30,27,76,69,9,15,123,108,2630,2536,471,449,67,58,101,95,10,17,2848,2743,2262,2194,383,375,18,15,75,68,3,2,107,89,2364,2279,448,426,46,36,98,91,4,4,303,298,251,239,17,14,12,12,1,1,6,13,16,19,266,257,23,23,21,22,3,4,6,13 -050,01,083,Alabama,Limestone County,8,4,5797,3034,2763,2456,2213,413,378,36,31,35,37,10,6,84,98,2538,2305,454,432,70,64,47,56,11,8,2775,2530,2242,2019,399,368,22,18,34,36,6,4,72,85,2312,2099,436,417,48,45,45,53,7,5,259,233,214,194,14,10,14,13,1,1,4,2,12,13,226,206,18,15,22,19,2,3,4,3 -050,01,083,Alabama,Limestone County,8,5,5203,2654,2549,2022,2084,497,333,20,35,18,19,8,2,89,76,2107,2155,537,371,63,65,33,34,11,4,2446,2356,1870,1927,490,326,15,25,16,16,5,1,50,61,1917,1984,511,357,35,47,27,29,8,3,208,193,152,157,7,7,5,10,2,3,3,1,39,15,190,171,26,14,28,18,6,5,3,1 -050,01,083,Alabama,Limestone County,8,6,5708,2973,2735,2362,2241,515,360,18,26,24,37,5,9,49,62,2403,2300,535,384,40,51,38,53,9,12,2748,2553,2167,2095,509,348,13,15,24,35,1,3,34,57,2196,2149,522,369,29,37,33,51,2,6,225,182,195,146,6,12,5,11,0,2,4,6,15,5,207,151,13,15,11,14,5,2,7,6 -050,01,083,Alabama,Limestone County,8,7,6323,3302,3021,2601,2410,574,436,36,28,30,80,7,11,54,56,2649,2464,588,452,66,55,45,97,8,13,3048,2804,2397,2231,563,424,19,16,29,77,1,3,39,53,2432,2282,574,440,40,41,40,93,1,5,254,217,204,179,11,12,17,12,1,3,6,8,15,3,217,182,14,12,26,14,5,4,7,8 -050,01,083,Alabama,Limestone County,8,8,6149,3195,2954,2509,2388,563,405,20,28,61,87,8,11,34,35,2538,2420,574,412,44,51,66,97,9,12,2961,2744,2312,2199,555,398,10,21,58,86,2,6,24,34,2332,2230,561,405,27,43,63,96,2,7,234,210,197,189,8,7,10,7,3,1,6,5,10,1,206,190,13,7,17,8,3,1,7,5 -050,01,083,Alabama,Limestone County,8,9,6428,3291,3137,2594,2529,544,432,36,21,64,101,3,3,50,51,2639,2574,553,444,67,57,77,112,5,5,3108,2954,2440,2376,530,425,31,15,62,99,2,2,43,37,2478,2408,536,433,61,41,73,109,3,4,183,183,154,153,14,7,5,6,2,2,1,1,7,14,161,166,17,11,6,16,4,3,2,1 -050,01,083,Alabama,Limestone County,8,10,6764,3484,3280,2784,2697,552,470,31,27,75,56,2,5,40,25,2822,2721,558,476,59,44,81,59,4,5,3344,3170,2665,2606,547,466,24,18,75,56,0,2,33,22,2696,2627,552,470,49,34,79,59,1,2,140,110,119,91,5,4,7,9,0,0,2,3,7,3,126,94,6,6,10,10,2,0,3,3 -050,01,083,Alabama,Limestone County,8,11,7168,3666,3502,3035,2868,529,521,24,35,35,31,5,0,38,47,3073,2908,533,528,54,72,39,40,7,2,3563,3425,2946,2805,525,516,21,32,35,31,3,0,33,41,2979,2841,528,522,47,65,39,37,5,2,103,77,89,63,4,5,3,3,0,0,2,0,5,6,94,67,5,6,7,7,0,3,2,0 -050,01,083,Alabama,Limestone County,8,12,6390,3224,3166,2745,2630,400,426,25,23,21,48,1,1,32,38,2772,2663,407,434,50,54,26,53,3,1,3168,3113,2698,2589,397,424,23,20,21,47,1,1,28,32,2722,2617,402,430,46,46,25,52,3,1,56,53,47,41,3,2,2,3,0,1,0,0,4,6,50,46,5,4,4,8,1,1,0,0 -050,01,083,Alabama,Limestone County,8,13,5153,2516,2637,2154,2239,299,332,18,11,22,29,1,0,22,26,2175,2261,303,338,34,33,25,31,1,1,2467,2606,2113,2209,296,331,18,11,20,29,1,0,19,26,2131,2231,299,337,33,33,22,31,1,1,49,31,41,30,3,1,0,0,2,0,0,0,3,0,44,30,4,1,1,0,3,0,0,0 -050,01,083,Alabama,Limestone County,8,14,4657,2203,2454,1955,2145,203,247,15,18,10,23,1,0,19,21,1973,2165,206,248,32,38,11,26,1,0,2170,2432,1926,2124,202,247,14,17,10,23,0,0,18,21,1943,2144,205,248,30,37,11,26,0,0,33,22,29,21,1,0,1,1,0,0,1,0,1,0,30,21,1,0,2,1,0,0,1,0 -050,01,083,Alabama,Limestone County,8,15,3337,1561,1776,1395,1587,133,162,13,5,9,8,0,1,11,13,1406,1598,134,165,23,17,9,10,0,2,1548,1758,1385,1571,132,162,12,5,9,8,0,0,10,12,1395,1581,132,165,22,16,9,10,0,1,13,18,10,16,1,0,1,0,0,0,0,1,1,1,11,17,2,0,1,1,0,0,0,1 -050,01,083,Alabama,Limestone County,8,16,2334,1046,1288,953,1156,73,111,6,6,3,3,0,0,11,12,962,1168,74,111,15,18,5,3,1,0,1035,1274,943,1142,73,111,6,6,3,3,0,0,10,12,951,1154,74,111,15,18,4,3,1,0,11,14,10,14,0,0,0,0,0,0,0,0,1,0,11,14,0,0,0,0,1,0,0,0 -050,01,083,Alabama,Limestone County,8,17,1462,591,871,544,777,37,79,4,2,2,6,0,0,4,7,548,784,38,80,7,7,2,7,0,0,588,864,541,770,37,79,4,2,2,6,0,0,4,7,545,777,38,80,7,7,2,7,0,0,3,7,3,7,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,8,18,1292,408,884,354,777,44,91,1,4,2,5,0,0,7,7,360,783,46,92,8,10,2,5,0,1,404,878,350,772,44,90,1,4,2,5,0,0,7,7,356,778,46,91,8,10,2,5,0,1,4,6,4,5,0,1,0,0,0,0,0,0,0,0,4,5,0,1,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,9,0,92896,46505,46391,37876,38117,6566,6032,376,349,610,788,79,84,998,1021,38802,39061,7009,6499,821,784,794,988,123,120,43732,43787,35584,35970,6430,5878,272,243,591,764,34,29,821,903,36350,36807,6800,6298,622,619,745,947,63,57,2773,2604,2292,2147,136,154,104,106,19,24,45,55,177,118,2452,2254,209,201,199,165,49,41,60,63 -050,01,083,Alabama,Limestone County,9,1,5226,2594,2632,2139,2124,261,319,13,3,46,42,4,9,131,135,2263,2252,349,411,37,25,70,68,9,14,2296,2311,1883,1862,242,293,11,1,40,35,4,3,116,117,1992,1974,321,376,29,17,63,58,9,6,298,321,256,262,19,26,2,2,6,7,0,6,15,18,271,278,28,35,8,8,7,10,0,8 -050,01,083,Alabama,Limestone County,9,2,5987,2962,3025,2394,2386,337,385,23,21,45,59,11,11,152,163,2537,2542,439,491,56,57,73,90,17,15,2613,2663,2106,2099,318,346,11,10,44,56,2,2,132,150,2232,2244,409,446,36,40,68,85,5,5,349,362,288,287,19,39,12,11,1,3,9,9,20,13,305,298,30,45,20,17,5,5,12,10 -050,01,083,Alabama,Limestone County,9,3,6123,3129,2994,2519,2369,382,391,26,25,75,70,7,15,120,124,2633,2482,452,465,59,61,99,97,12,19,2798,2685,2242,2117,365,378,10,12,74,70,3,2,104,106,2342,2214,427,445,37,38,94,94,6,6,331,309,277,252,17,13,16,13,1,0,4,13,16,18,291,268,25,20,22,23,5,3,6,13 -050,01,083,Alabama,Limestone County,9,4,6050,3130,2920,2493,2329,446,405,39,30,45,45,11,7,96,104,2583,2427,495,462,71,64,65,65,14,11,2876,2647,2282,2102,432,390,27,20,44,43,6,3,85,89,2362,2185,478,441,52,47,63,61,7,6,254,273,211,227,14,15,12,10,1,2,5,4,11,15,221,242,17,21,19,17,2,4,7,5 -050,01,083,Alabama,Limestone County,9,5,5109,2639,2470,2009,1984,497,339,18,37,19,29,12,3,84,78,2085,2055,534,377,56,70,35,48,17,4,2456,2296,1872,1841,490,334,11,23,18,26,7,2,58,70,1925,1906,517,368,35,50,30,45,10,3,183,174,137,143,7,5,7,14,1,3,5,1,26,8,160,149,17,9,21,20,5,3,7,1 -050,01,083,Alabama,Limestone County,9,6,5838,3035,2803,2351,2299,569,358,16,23,28,46,6,7,65,70,2410,2364,596,388,48,46,46,65,8,12,2806,2617,2162,2150,562,346,10,15,28,44,2,3,42,59,2200,2204,579,371,28,35,40,62,3,6,229,186,189,149,7,12,6,8,0,2,4,4,23,11,210,160,17,17,20,11,6,3,5,6 -050,01,083,Alabama,Limestone County,9,7,6338,3235,3103,2532,2487,561,441,42,31,34,82,5,8,61,54,2590,2538,576,457,78,59,47,98,8,9,2988,2880,2341,2301,549,428,27,18,33,80,0,2,38,51,2377,2349,558,443,50,44,43,96,1,3,247,223,191,186,12,13,15,13,1,2,5,6,23,3,213,189,18,14,28,15,4,2,7,6 -050,01,083,Alabama,Limestone County,9,8,6278,3278,3000,2571,2417,581,425,23,25,51,85,9,13,43,35,2608,2450,595,431,48,46,59,94,12,14,3032,2803,2365,2245,574,417,11,17,49,83,3,6,30,35,2391,2278,582,423,29,38,55,92,5,7,246,197,206,172,7,8,12,8,2,2,6,7,13,0,217,172,13,8,19,8,4,2,7,7 -050,01,083,Alabama,Limestone County,9,9,6297,3239,3058,2539,2440,554,447,28,22,74,103,3,3,41,43,2577,2478,561,455,57,49,80,112,6,7,3061,2867,2391,2280,543,439,22,14,69,101,1,2,35,31,2424,2308,546,444,47,34,75,108,4,4,178,191,148,160,11,8,6,8,5,2,2,1,6,12,153,170,15,11,10,15,5,4,2,3 -050,01,083,Alabama,Limestone County,9,10,6844,3548,3296,2836,2703,555,467,33,25,77,62,2,6,45,33,2879,2731,561,477,69,47,84,67,5,7,3399,3184,2710,2611,546,463,25,18,77,62,1,3,40,27,2749,2633,551,470,56,38,82,66,3,4,149,112,126,92,9,4,8,7,0,0,1,3,5,6,130,98,10,7,13,9,2,1,2,3 -050,01,083,Alabama,Limestone County,9,11,7193,3684,3509,3002,2874,563,524,26,31,44,37,6,0,43,43,3041,2912,568,532,63,64,49,44,8,2,3574,3429,2905,2808,560,517,25,28,44,37,3,0,37,39,2938,2843,565,524,56,58,49,43,5,2,110,80,97,66,3,7,1,3,0,0,3,0,6,4,103,69,3,8,7,6,0,1,3,0 -050,01,083,Alabama,Limestone County,9,12,6698,3382,3316,2866,2744,427,458,26,27,26,45,1,1,36,41,2896,2782,435,462,53,61,32,51,3,2,3314,3252,2812,2694,421,458,23,22,26,44,1,1,31,33,2838,2724,427,461,47,50,31,48,3,2,68,64,54,50,6,0,3,5,0,1,0,0,5,8,58,58,8,1,6,11,1,3,0,0 -050,01,083,Alabama,Limestone County,9,13,5313,2587,2726,2194,2293,323,355,22,13,21,34,0,0,27,31,2221,2321,326,361,42,40,25,35,1,1,2538,2685,2154,2259,321,352,21,10,20,34,0,0,22,30,2176,2286,323,358,39,36,23,35,0,1,49,41,40,34,2,3,1,3,1,0,0,0,5,1,45,35,3,3,3,4,2,0,1,0 -050,01,083,Alabama,Limestone County,9,14,4842,2309,2533,2055,2207,214,255,11,19,9,28,2,0,18,24,2070,2229,219,259,25,41,11,31,2,0,2265,2510,2016,2185,212,255,10,18,9,28,1,0,17,24,2030,2207,216,259,24,40,11,31,1,0,44,23,39,22,2,0,1,1,0,0,1,0,1,0,40,22,3,0,1,1,0,0,1,0 -050,01,083,Alabama,Limestone County,9,15,3446,1625,1821,1444,1618,143,174,16,9,9,6,0,1,13,13,1457,1629,145,177,26,19,10,7,1,2,1607,1805,1428,1604,143,174,15,9,9,6,0,0,12,12,1440,1614,144,176,25,19,10,7,1,1,18,16,16,14,0,0,1,0,0,0,0,1,1,1,17,15,1,1,1,0,0,0,0,1 -050,01,083,Alabama,Limestone County,9,16,2391,1047,1344,953,1209,73,114,7,5,4,2,0,0,10,14,962,1219,74,118,17,18,4,3,0,0,1037,1324,944,1189,72,114,7,5,4,2,0,0,10,14,953,1199,73,118,17,18,4,3,0,0,10,20,9,20,1,0,0,0,0,0,0,0,0,0,9,20,1,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,9,17,1574,659,915,612,817,35,80,5,2,2,8,0,0,5,8,617,825,36,80,8,10,3,8,0,0,653,909,608,811,35,80,4,2,2,8,0,0,4,8,612,819,36,80,7,10,2,8,0,0,6,6,4,6,0,0,1,0,0,0,0,0,1,0,5,6,0,0,1,0,1,0,0,0 -050,01,083,Alabama,Limestone County,9,18,1349,423,926,367,817,45,95,2,1,1,5,0,0,8,8,373,825,48,96,8,7,2,5,0,1,419,920,363,812,45,94,2,1,1,5,0,0,8,8,369,820,48,95,8,7,2,5,0,1,4,6,4,5,0,1,0,0,0,0,0,0,0,0,4,5,0,1,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,10,0,94144,47114,47030,38291,38537,6615,6141,399,356,646,830,90,96,1073,1070,39293,39535,7090,6633,847,811,861,1025,139,136,44246,44264,35923,36255,6470,5969,286,251,626,803,41,37,900,949,36771,37146,6884,6413,644,642,804,977,69,68,2868,2766,2368,2282,145,172,113,105,20,27,49,59,173,121,2522,2389,206,220,203,169,57,48,70,68 -050,01,083,Alabama,Limestone County,10,1,5282,2651,2631,2144,2103,287,324,20,4,48,46,7,9,145,145,2281,2240,385,426,47,31,76,71,12,13,2340,2307,1880,1841,269,295,10,2,42,39,7,3,132,127,2006,1962,362,388,32,22,66,61,11,6,311,324,264,262,18,29,10,2,6,7,0,6,13,18,275,278,23,38,15,9,10,10,1,7 -050,01,083,Alabama,Limestone County,10,2,5913,2929,2984,2355,2381,318,357,21,16,44,61,16,13,175,156,2523,2531,432,460,57,50,78,88,20,17,2575,2602,2063,2078,302,315,12,7,42,54,4,4,152,144,2210,2219,405,409,40,37,71,78,6,8,354,382,292,303,16,42,9,9,2,7,12,9,23,12,313,312,27,51,17,13,7,10,14,9 -050,01,083,Alabama,Limestone County,10,3,6248,3154,3094,2517,2429,376,404,27,26,74,71,11,14,149,150,2656,2570,462,491,61,64,110,102,22,21,2802,2772,2223,2166,359,388,9,13,73,71,4,2,134,132,2351,2291,439,467,38,42,105,101,11,7,352,322,294,263,17,16,18,13,1,0,7,12,15,18,305,279,23,24,23,22,5,1,11,14 -050,01,083,Alabama,Limestone County,10,4,5987,3137,2850,2516,2269,429,384,41,31,46,48,11,14,94,104,2605,2367,475,444,74,67,67,63,14,18,2862,2533,2289,2006,413,371,27,19,45,46,6,6,82,85,2368,2087,456,422,51,45,63,59,8,7,275,317,227,263,16,13,14,12,1,2,5,8,12,19,237,280,19,22,23,22,4,4,6,11 -050,01,083,Alabama,Limestone County,10,5,5095,2688,2407,2048,1936,502,328,22,35,25,29,6,4,85,75,2125,2004,542,365,57,63,40,45,11,8,2510,2227,1908,1784,494,317,14,27,24,27,4,2,66,70,1967,1849,526,352,39,51,38,42,7,6,178,180,140,152,8,11,8,8,1,2,2,2,19,5,158,155,16,13,18,12,2,3,4,2 -050,01,083,Alabama,Limestone County,10,6,5941,3047,2894,2355,2367,563,383,20,21,32,43,7,4,70,76,2418,2439,588,413,55,52,48,61,9,7,2835,2698,2186,2212,556,371,13,12,32,41,3,2,45,60,2227,2268,573,396,32,37,45,55,3,4,212,196,169,155,7,12,7,9,0,2,4,2,25,16,191,171,15,17,23,15,3,6,6,3 -050,01,083,Alabama,Limestone County,10,7,6330,3216,3114,2488,2504,586,430,38,34,39,74,7,9,58,63,2543,2564,599,450,68,64,57,90,9,12,2957,2892,2281,2317,569,418,27,22,38,73,1,2,41,60,2320,2374,577,438,47,50,52,88,2,5,259,222,207,187,17,12,11,12,1,1,6,7,17,3,223,190,22,12,21,14,5,2,7,7 -050,01,083,Alabama,Limestone County,10,8,6445,3343,3102,2652,2479,564,444,25,26,47,98,7,15,48,40,2698,2516,576,453,55,49,58,109,9,16,3075,2892,2427,2297,556,436,12,16,46,96,3,7,31,40,2457,2334,560,445,33,39,53,107,3,8,268,210,225,182,8,8,13,10,1,2,4,8,17,0,241,182,16,8,22,10,5,2,6,8 -050,01,083,Alabama,Limestone County,10,9,6230,3217,3013,2502,2391,574,442,30,26,77,101,6,5,28,48,2529,2433,580,454,49,59,82,112,7,9,3057,2799,2373,2213,562,431,23,17,75,99,2,3,22,36,2394,2246,566,440,40,40,78,107,3,5,160,214,129,178,12,11,7,9,2,2,4,2,6,12,135,187,14,14,9,19,4,5,4,4 -050,01,083,Alabama,Limestone County,10,10,6962,3562,3400,2875,2767,525,506,27,21,77,72,3,6,55,28,2925,2794,535,510,61,40,89,76,10,8,3400,3280,2742,2663,513,501,22,18,73,71,2,3,48,24,2788,2686,520,505,52,34,84,74,4,5,162,120,133,104,12,5,5,3,4,1,1,3,7,4,137,108,15,5,9,6,5,2,6,3 -050,01,083,Alabama,Limestone County,10,11,7085,3592,3493,2900,2862,566,514,30,33,53,43,6,1,37,40,2935,2896,570,522,59,67,59,47,6,3,3472,3402,2793,2789,565,507,27,26,53,43,3,1,31,36,2822,2819,569,514,52,58,57,46,3,3,120,91,107,73,1,7,3,7,0,0,3,0,6,4,113,77,1,8,7,9,2,1,3,0 -050,01,083,Alabama,Limestone County,10,12,6837,3477,3360,2952,2784,430,464,30,33,28,37,0,1,37,41,2985,2819,436,472,57,65,34,44,2,2,3396,3286,2884,2727,424,462,26,26,28,36,0,1,34,34,2914,2755,429,468,51,54,34,42,2,2,81,74,68,57,6,2,4,7,0,1,0,0,3,7,71,64,7,4,6,11,0,2,0,0 -050,01,083,Alabama,Limestone County,10,13,5682,2763,2919,2332,2431,353,398,22,10,26,46,1,0,29,34,2361,2463,356,402,46,38,31,51,3,0,2722,2874,2302,2394,351,395,21,7,25,46,1,0,22,32,2324,2424,354,399,41,33,26,51,2,0,41,45,30,37,2,3,1,3,1,0,0,0,7,2,37,39,2,3,5,5,5,0,1,0 -050,01,083,Alabama,Limestone County,10,14,4796,2348,2448,2073,2120,231,254,12,19,11,34,2,1,19,20,2090,2139,235,257,28,36,11,36,3,1,2294,2430,2025,2103,227,254,12,18,11,34,1,1,18,20,2041,2122,231,257,27,35,11,36,2,1,54,18,48,17,4,0,0,1,0,0,1,0,1,0,49,17,4,0,1,1,0,0,1,0 -050,01,083,Alabama,Limestone County,10,15,3795,1751,2044,1564,1797,143,207,18,10,10,11,0,0,16,19,1579,1814,144,209,33,27,10,12,1,1,1735,2029,1551,1783,143,207,16,10,10,11,0,0,15,18,1565,1799,144,209,30,26,10,12,1,1,16,15,13,14,0,0,2,0,0,0,0,0,1,1,14,15,0,0,3,1,0,0,0,0 -050,01,083,Alabama,Limestone County,10,16,2500,1101,1399,990,1258,85,120,9,5,5,3,0,0,12,13,1001,1269,86,123,21,17,5,3,0,0,1086,1377,976,1236,84,120,9,5,5,3,0,0,12,13,987,1247,85,123,21,17,5,3,0,0,15,22,14,22,1,0,0,0,0,0,0,0,0,0,14,22,1,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,10,17,1627,689,938,637,829,38,88,4,3,2,7,0,0,8,11,643,840,42,88,9,13,2,8,1,0,683,931,633,822,38,88,3,3,2,7,0,0,7,11,638,833,41,88,8,13,2,8,1,0,6,7,4,7,0,0,1,0,0,0,0,0,1,0,5,7,1,0,1,0,0,0,0,0 -050,01,083,Alabama,Limestone County,10,18,1389,449,940,391,830,45,94,3,3,2,6,0,0,8,7,396,837,47,94,10,9,4,7,0,0,445,933,387,824,45,93,3,3,2,6,0,0,8,7,392,831,47,93,10,9,4,7,0,0,4,7,4,6,0,1,0,0,0,0,0,0,0,0,4,6,0,1,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,11,0,96199,48110,48089,38927,39216,6882,6423,412,357,668,871,86,99,1135,1123,39973,40248,7403,6952,871,821,904,1085,133,141,45116,45245,36452,36880,6728,6248,298,245,644,840,39,37,955,995,37339,37805,7178,6718,670,646,840,1032,68,68,2994,2844,2475,2336,154,175,114,112,24,31,47,62,180,128,2634,2443,225,234,201,175,64,53,65,73 -050,01,083,Alabama,Limestone County,11,1,5379,2740,2639,2169,2112,328,324,20,9,45,44,7,9,171,141,2328,2247,442,419,50,30,78,71,17,14,2399,2311,1883,1842,310,301,10,3,37,34,7,3,152,128,2026,1967,417,389,32,20,67,57,13,6,341,328,286,270,18,23,10,6,8,10,0,6,19,13,302,280,25,30,18,10,11,14,4,8 -050,01,083,Alabama,Limestone County,11,2,5950,2953,2997,2366,2353,336,381,16,16,55,71,11,10,169,166,2527,2507,445,490,47,58,88,99,19,12,2602,2634,2068,2074,316,336,12,9,53,64,3,4,150,147,2210,2213,417,433,38,41,82,90,9,6,351,363,298,279,20,45,4,7,2,7,8,6,19,19,317,294,28,57,9,17,6,9,10,6 -050,01,083,Alabama,Limestone County,11,3,6388,3239,3149,2577,2452,384,430,27,23,69,62,14,19,168,163,2735,2607,480,530,73,63,103,96,19,25,2890,2791,2292,2164,370,410,7,11,68,60,6,1,147,145,2431,2303,460,500,43,44,98,90,8,6,349,358,285,288,14,20,20,12,1,2,8,18,21,18,304,304,20,30,30,19,5,6,11,19 -050,01,083,Alabama,Limestone County,11,4,6077,3125,2952,2488,2338,432,400,36,30,58,61,7,11,104,112,2583,2442,486,461,67,69,85,80,9,14,2838,2619,2251,2060,415,385,22,18,57,59,1,4,92,93,2337,2147,466,439,46,48,79,74,3,6,287,333,237,278,17,15,14,12,1,2,6,7,12,19,246,295,20,22,21,21,6,6,6,8 -050,01,083,Alabama,Limestone County,11,5,5175,2688,2487,2046,1971,497,352,24,38,27,34,9,6,85,86,2126,2048,537,395,59,70,47,53,10,9,2487,2304,1881,1819,489,342,14,25,25,33,7,6,71,79,1948,1891,521,383,42,52,43,51,8,8,201,183,165,152,8,10,10,13,2,1,2,0,14,7,178,157,16,12,17,18,4,2,2,1 -050,01,083,Alabama,Limestone County,11,6,6204,3209,2995,2466,2445,599,405,27,27,31,42,7,3,79,73,2541,2511,629,436,62,53,52,63,12,8,2968,2786,2278,2272,587,398,21,17,31,40,4,2,47,57,2322,2326,605,421,39,37,45,57,5,5,241,209,188,173,12,7,6,10,0,2,3,1,32,16,219,185,24,15,23,16,7,6,7,3 -050,01,083,Alabama,Limestone County,11,7,6356,3233,3123,2517,2509,585,438,34,30,36,69,9,7,52,70,2560,2576,602,464,63,62,51,87,9,9,2984,2910,2310,2335,574,422,23,20,36,67,2,0,39,66,2345,2398,584,447,44,49,48,85,2,2,249,213,207,174,11,16,11,10,0,2,7,7,13,4,215,178,18,17,19,13,3,2,7,7 -050,01,083,Alabama,Limestone County,11,8,6634,3445,3189,2725,2518,590,500,29,20,45,99,6,15,50,37,2770,2553,604,508,60,42,56,110,9,15,3178,2983,2509,2340,573,493,17,9,45,98,2,6,32,37,2537,2375,580,501,38,31,52,109,4,6,267,206,216,178,17,7,12,11,0,1,4,9,18,0,233,178,24,7,22,11,4,1,5,9 -050,01,083,Alabama,Limestone County,11,9,6410,3309,3101,2578,2479,589,432,33,27,78,102,5,8,26,53,2601,2523,598,447,48,61,84,113,7,12,3113,2890,2418,2299,578,422,22,19,73,102,1,5,21,43,2437,2334,584,433,35,47,77,113,2,8,196,211,160,180,11,10,11,8,5,0,4,3,5,10,164,189,14,14,13,14,7,0,5,4 -050,01,083,Alabama,Limestone County,11,10,6965,3525,3440,2823,2765,546,527,29,24,71,84,2,7,54,33,2869,2791,556,537,65,46,85,92,4,10,3366,3306,2694,2654,531,520,25,20,67,81,2,3,47,28,2737,2677,538,527,57,39,78,88,3,4,159,134,129,111,15,7,4,4,4,3,0,4,7,5,132,114,18,10,8,7,7,4,1,6 -050,01,083,Alabama,Limestone County,11,11,7140,3606,3534,2887,2889,574,533,36,29,59,49,6,2,44,32,2927,2915,580,540,71,54,66,53,6,5,3474,3429,2772,2806,572,525,32,21,59,49,2,1,37,27,2805,2828,577,531,63,43,64,51,2,4,132,105,115,83,2,8,4,8,0,0,4,1,7,5,122,87,3,9,8,11,2,2,4,1 -050,01,083,Alabama,Limestone County,11,12,7031,3599,3432,3025,2834,480,484,28,34,29,38,1,0,36,42,3058,2873,485,490,55,67,34,43,6,1,3506,3348,2942,2767,477,481,24,28,29,37,1,0,33,35,2972,2799,480,485,50,56,34,42,5,1,93,84,83,67,3,3,4,6,0,1,0,0,3,7,86,74,5,5,5,11,0,1,1,0 -050,01,083,Alabama,Limestone County,11,13,5875,2864,3011,2438,2491,344,416,23,10,27,50,1,1,31,43,2468,2529,350,425,43,45,32,52,2,3,2832,2966,2417,2455,342,413,22,8,26,50,1,1,24,39,2440,2489,344,420,41,41,30,52,1,3,32,45,21,36,2,3,1,2,1,0,0,0,7,4,28,40,6,5,2,4,2,0,1,0 -050,01,083,Alabama,Limestone County,11,14,4839,2352,2487,2058,2144,246,273,13,17,15,34,0,1,20,18,2076,2159,249,277,30,32,16,36,1,2,2301,2467,2011,2127,243,273,13,14,15,34,0,1,19,18,2028,2142,246,277,29,29,16,36,1,2,51,20,47,17,3,0,0,3,0,0,0,0,1,0,48,17,3,0,1,3,0,0,0,0 -050,01,083,Alabama,Limestone County,11,15,3983,1827,2156,1613,1884,166,223,17,13,11,15,1,0,19,21,1629,1904,169,224,35,30,12,18,2,1,1806,2139,1596,1868,166,223,15,13,11,15,0,0,18,20,1611,1887,169,224,32,30,12,18,1,0,21,17,17,16,0,0,2,0,0,0,1,0,1,1,18,17,0,0,3,0,0,0,1,1 -050,01,083,Alabama,Limestone County,11,16,2643,1180,1463,1060,1313,91,127,12,4,7,4,0,0,10,15,1069,1328,92,128,21,17,8,5,0,0,1166,1449,1047,1299,90,127,12,4,7,4,0,0,10,15,1056,1314,91,128,21,17,8,5,0,0,14,14,13,14,1,0,0,0,0,0,0,0,0,0,13,14,1,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,11,17,1727,747,980,691,877,43,83,4,3,2,5,0,0,7,12,696,888,45,85,10,13,2,6,1,1,741,968,686,865,43,83,4,3,2,5,0,0,6,12,690,876,45,85,9,13,2,6,1,1,6,12,5,12,0,0,0,0,0,0,0,0,1,0,6,12,0,0,1,0,0,0,0,0 -050,01,083,Alabama,Limestone County,11,18,1423,469,954,400,842,52,95,4,3,3,8,0,0,10,6,410,847,54,96,12,9,5,8,0,0,465,945,397,834,52,94,3,3,3,8,0,0,10,6,407,839,54,95,11,9,5,8,0,0,4,9,3,8,0,1,1,0,0,0,0,0,0,0,3,8,0,1,1,0,0,0,0,0 -050,01,083,Alabama,Limestone County,12,0,99136,49558,49578,39988,40314,7174,6645,427,396,726,942,87,99,1156,1182,41070,41401,7712,7220,907,873,943,1181,115,135,46470,46648,37410,37895,7009,6464,308,280,703,913,45,39,995,1057,38346,38873,7474,6981,705,693,901,1128,69,70,3088,2930,2578,2419,165,181,119,116,23,29,42,60,161,125,2724,2528,238,239,202,180,42,53,46,65 -050,01,083,Alabama,Limestone County,12,1,5452,2793,2659,2198,2099,352,339,27,18,41,41,8,11,167,151,2356,2240,466,446,56,42,73,72,12,15,2443,2336,1908,1840,333,315,11,8,32,33,7,4,152,136,2054,1968,438,412,34,26,62,62,10,8,350,323,290,259,19,24,16,10,9,8,1,7,15,15,302,272,28,34,22,16,11,10,2,7 -050,01,083,Alabama,Limestone County,12,2,5987,2952,3035,2350,2382,330,385,15,13,65,74,12,6,180,175,2522,2550,448,499,51,51,99,104,16,12,2607,2726,2057,2136,303,354,12,9,63,67,6,3,166,157,2215,2290,414,457,43,38,96,96,9,7,345,309,293,246,27,31,3,4,2,7,6,3,14,18,307,260,34,42,8,13,3,8,7,5 -050,01,083,Alabama,Limestone County,12,3,6582,3320,3262,2660,2550,390,425,30,21,66,75,13,18,161,173,2810,2713,486,532,73,70,95,108,19,22,2963,2868,2365,2231,378,396,8,10,65,72,5,3,142,156,2500,2378,466,497,39,48,92,103,10,6,357,394,295,319,12,29,22,11,1,3,8,15,19,17,310,335,20,35,34,22,3,5,9,16 -050,01,083,Alabama,Limestone County,12,4,6191,3172,3019,2508,2371,439,413,34,34,69,65,6,15,116,121,2621,2480,500,483,70,71,93,93,9,20,2865,2651,2255,2063,420,396,19,19,68,63,2,6,101,104,2354,2157,477,457,47,47,89,87,4,10,307,368,253,308,19,17,15,15,1,2,4,9,15,17,267,323,23,26,23,24,4,6,5,10 -050,01,083,Alabama,Limestone County,12,5,5401,2827,2574,2169,2017,515,389,27,37,24,34,10,5,82,92,2245,2105,554,436,61,64,42,60,11,8,2615,2396,1991,1868,506,382,18,24,23,33,7,4,70,85,2056,1949,539,424,46,50,40,57,8,7,212,178,178,149,9,7,9,13,1,1,3,1,12,7,189,156,15,12,15,14,2,3,3,1 -050,01,083,Alabama,Limestone County,12,6,6469,3340,3129,2553,2552,632,415,27,36,31,46,8,3,89,77,2636,2622,670,448,71,64,50,64,8,8,3089,2914,2360,2369,620,406,20,27,30,45,5,3,54,64,2410,2427,640,433,45,49,46,61,5,8,251,215,193,183,12,9,7,9,1,1,3,0,35,13,226,195,30,15,26,15,4,3,3,0 -050,01,083,Alabama,Limestone County,12,7,6513,3348,3165,2624,2564,600,427,26,27,40,70,7,9,51,68,2673,2626,616,454,51,60,52,90,8,10,3091,2949,2394,2390,591,408,20,18,40,68,3,1,43,64,2436,2449,602,433,42,49,51,87,4,2,257,216,230,174,9,19,6,9,0,2,4,8,8,4,237,177,14,21,9,11,1,3,4,8 -050,01,083,Alabama,Limestone County,12,8,6868,3558,3310,2781,2609,636,522,38,29,50,97,5,11,48,42,2826,2646,650,533,65,55,59,107,6,13,3320,3112,2589,2441,620,514,23,16,50,96,1,4,37,41,2623,2477,629,525,46,41,57,106,2,6,238,198,192,168,16,8,15,13,0,1,4,7,11,1,203,169,21,8,19,14,2,1,4,7 -050,01,083,Alabama,Limestone County,12,9,6622,3408,3214,2626,2580,622,432,33,28,92,116,6,10,29,48,2651,2625,630,443,55,60,96,126,6,10,3201,2977,2454,2368,611,425,23,20,87,116,2,5,24,43,2475,2409,616,434,42,49,91,125,2,5,207,237,172,212,11,7,10,8,5,0,4,5,5,5,176,216,14,9,13,11,5,1,4,5 -050,01,083,Alabama,Limestone County,12,10,7071,3615,3456,2880,2751,582,525,26,27,73,105,4,5,50,43,2928,2789,588,536,64,52,80,118,5,6,3434,3296,2726,2624,566,514,24,21,71,102,3,2,44,33,2768,2655,572,522,56,42,78,109,4,2,181,160,154,127,16,11,2,6,2,3,1,3,6,10,160,134,16,14,8,10,2,9,1,4 -050,01,083,Alabama,Limestone County,12,11,7223,3650,3573,2925,2891,573,562,36,35,67,53,2,4,47,28,2969,2917,578,567,70,57,77,56,3,4,3510,3473,2806,2813,568,554,29,27,67,53,0,2,40,24,2844,2835,571,558,59,46,75,56,1,2,140,100,119,78,5,8,7,8,0,0,2,2,7,4,125,82,7,9,11,11,2,0,2,2 -050,01,083,Alabama,Limestone County,12,12,7242,3668,3574,3061,2929,509,525,26,35,33,43,4,0,35,42,3093,2967,515,531,53,68,38,48,5,2,3569,3473,2975,2845,505,521,22,29,33,42,3,0,31,36,3003,2877,509,526,47,58,38,46,4,2,99,101,86,84,4,4,4,6,0,1,1,0,4,6,90,90,6,5,6,10,0,2,1,0 -050,01,083,Alabama,Limestone County,12,13,6226,3051,3175,2610,2640,359,423,25,16,26,50,1,1,30,45,2637,2678,363,433,47,53,32,55,2,3,3011,3131,2580,2609,357,418,24,14,25,50,1,1,24,39,2601,2641,358,427,44,47,30,54,2,3,40,44,30,31,2,5,1,2,1,0,0,0,6,6,36,37,5,6,3,6,2,1,0,0 -050,01,083,Alabama,Limestone County,12,14,4950,2368,2582,2053,2202,255,312,18,10,21,35,0,1,21,22,2071,2219,257,319,36,28,23,36,2,2,2314,2554,2003,2175,253,311,18,10,21,35,0,1,19,22,2019,2192,255,318,34,28,23,36,2,2,54,28,50,27,2,1,0,0,0,0,0,0,2,0,52,27,2,1,2,0,0,0,0,0 -050,01,083,Alabama,Limestone County,12,15,4241,1948,2293,1718,1997,177,234,17,19,13,21,1,0,22,22,1738,2014,180,239,39,38,13,24,1,0,1924,2270,1699,1977,176,234,15,18,13,21,0,0,21,20,1718,1993,179,238,36,36,13,23,0,0,24,23,19,20,1,0,2,1,0,0,1,0,1,2,20,21,1,1,3,2,0,1,1,0 -050,01,083,Alabama,Limestone County,12,16,2819,1269,1550,1135,1392,104,135,11,4,9,5,0,0,10,14,1144,1404,106,138,21,17,9,5,0,0,1255,1539,1122,1381,103,135,11,4,9,5,0,0,10,14,1131,1393,105,138,21,17,9,5,0,0,14,11,13,11,1,0,0,0,0,0,0,0,0,0,13,11,1,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,12,17,1770,749,1021,689,919,44,82,6,3,2,5,0,0,8,12,694,930,47,83,12,13,4,7,0,0,742,1008,683,906,44,82,6,3,2,5,0,0,7,12,688,917,46,83,12,13,3,7,0,0,7,13,6,13,0,0,0,0,0,0,0,0,1,0,6,13,1,0,0,0,1,0,0,0 -050,01,083,Alabama,Limestone County,12,18,1509,522,987,448,869,55,100,5,4,4,7,0,0,10,7,456,876,58,100,12,10,8,8,2,0,517,975,443,859,55,99,5,3,4,7,0,0,10,7,451,866,58,99,12,9,8,8,2,0,5,12,5,10,0,1,0,1,0,0,0,0,0,0,5,10,0,1,0,1,0,0,0,0 -050,01,083,Alabama,Limestone County,13,0,102228,51059,51169,41132,41498,7372,6855,437,417,809,1028,88,99,1221,1272,42270,42679,7953,7465,927,927,1049,1282,131,145,47793,48097,38389,38954,7211,6672,316,298,785,997,44,39,1048,1137,39374,40016,7717,7218,725,743,996,1227,71,73,3266,3072,2743,2544,161,183,121,119,24,31,44,60,173,135,2896,2663,236,247,202,184,53,55,60,72 -050,01,083,Alabama,Limestone County,13,1,5587,2847,2740,2221,2155,368,317,35,23,52,50,9,17,162,178,2377,2328,476,441,58,52,88,84,16,19,2484,2389,1924,1875,353,299,12,10,44,41,6,4,145,160,2063,2030,454,415,31,33,77,71,10,6,363,351,297,280,15,18,23,13,8,9,3,13,17,18,314,298,22,26,27,19,11,13,6,13 -050,01,083,Alabama,Limestone County,13,2,6187,3085,3102,2469,2404,352,424,13,13,69,74,7,8,175,179,2635,2573,467,542,48,54,105,106,12,14,2712,2793,2152,2155,324,395,9,10,66,68,6,3,155,162,2302,2310,430,502,34,42,97,97,10,7,373,309,317,249,28,29,4,3,3,6,1,5,20,17,333,263,37,40,14,12,8,9,2,7 -050,01,083,Alabama,Limestone County,13,3,6675,3337,3338,2659,2610,398,426,29,27,65,75,16,16,170,184,2821,2786,502,542,68,76,100,112,20,23,2956,2948,2340,2293,384,393,10,14,64,72,5,4,153,172,2485,2457,480,501,45,57,95,106,7,10,381,390,319,317,14,33,19,13,1,3,11,12,17,12,336,329,22,41,23,19,5,6,13,13 -050,01,083,Alabama,Limestone County,13,4,6226,3179,3047,2503,2377,433,431,28,32,72,68,8,12,135,127,2627,2497,507,500,69,69,102,94,12,16,2840,2675,2217,2064,417,413,15,19,71,67,1,6,119,106,2328,2165,487,474,46,46,97,89,3,9,339,372,286,313,16,18,13,13,1,1,7,6,16,21,299,332,20,26,23,23,5,5,9,7 -050,01,083,Alabama,Limestone County,13,5,5647,2947,2700,2268,2123,517,404,31,34,34,38,7,6,90,95,2353,2213,556,451,66,66,56,60,11,8,2706,2480,2067,1939,503,397,21,20,33,37,4,4,78,83,2141,2017,538,439,48,46,55,57,6,6,241,220,201,184,14,7,10,14,1,1,3,2,12,12,212,196,18,12,18,20,1,3,5,2 -050,01,083,Alabama,Limestone County,13,6,6592,3420,3172,2606,2574,648,423,25,43,34,49,6,1,101,82,2699,2650,697,458,68,77,54,70,8,3,3191,2956,2431,2392,641,415,19,34,33,47,3,1,64,67,2491,2455,669,445,48,60,48,65,4,2,229,216,175,182,7,8,6,9,1,2,3,0,37,15,208,195,28,13,20,17,6,5,4,1 -050,01,083,Alabama,Limestone County,13,7,6790,3500,3290,2754,2661,606,434,23,24,53,81,8,8,56,82,2806,2736,620,465,53,57,68,105,9,10,3244,3080,2521,2495,600,414,20,12,52,80,5,2,46,77,2565,2565,611,441,43,44,66,104,5,4,256,210,233,166,6,20,3,12,1,1,3,6,10,5,241,171,9,24,10,13,2,1,4,6 -050,01,083,Alabama,Limestone County,13,8,7115,3668,3447,2860,2742,645,517,49,24,52,105,6,6,56,53,2908,2790,659,533,84,53,63,118,11,9,3414,3230,2653,2559,628,502,33,13,52,103,3,2,45,51,2693,2605,639,516,62,42,60,116,6,5,254,217,207,183,17,15,16,11,0,2,3,4,11,2,215,185,20,17,22,11,3,2,5,4 -050,01,083,Alabama,Limestone County,13,9,6890,3528,3362,2708,2674,658,473,25,35,96,128,7,13,34,39,2740,2708,667,484,46,62,103,137,7,14,3292,3107,2507,2440,646,467,17,28,91,128,3,6,28,38,2533,2473,652,477,35,55,97,137,3,7,236,255,201,234,12,6,8,7,5,0,4,7,6,1,207,235,15,7,11,7,6,0,4,7 -050,01,083,Alabama,Limestone County,13,10,7062,3577,3485,2832,2755,569,534,38,25,85,120,4,3,49,48,2878,2793,579,546,70,54,93,132,6,11,3400,3324,2686,2626,552,525,33,20,83,116,2,2,44,35,2728,2654,560,533,62,42,90,126,4,6,177,161,146,129,17,9,5,5,2,4,2,1,5,13,150,139,19,13,8,12,3,6,2,5 -050,01,083,Alabama,Limestone County,13,11,7311,3731,3580,3012,2905,571,544,29,39,74,60,4,7,41,25,3048,2929,579,547,63,55,79,66,4,8,3591,3454,2891,2804,567,537,22,28,74,60,3,3,34,22,2920,2825,574,539,50,42,79,66,3,4,140,126,121,101,4,7,7,11,0,0,1,4,7,3,128,104,5,8,13,13,0,0,1,4 -050,01,083,Alabama,Limestone County,13,12,7439,3740,3699,3099,3031,532,544,25,39,40,42,4,0,40,43,3135,3069,545,552,56,74,43,47,7,2,3626,3615,3000,2960,527,538,22,37,40,42,2,0,35,38,3032,2994,537,544,49,68,43,46,4,2,114,84,99,71,5,6,3,2,0,0,2,0,5,5,103,75,8,8,7,6,0,1,3,0 -050,01,083,Alabama,Limestone County,13,13,6619,3275,3344,2785,2773,402,458,27,18,26,51,1,1,34,43,2818,2808,408,467,53,53,29,54,2,5,3220,3277,2739,2725,400,453,25,14,26,50,1,1,29,34,2767,2754,404,458,50,45,28,52,1,2,55,67,46,48,2,5,2,4,0,1,0,0,5,9,51,54,4,9,3,8,1,2,1,3 -050,01,083,Alabama,Limestone County,13,14,5189,2455,2734,2114,2297,267,352,21,10,27,40,0,0,26,35,2134,2330,276,356,42,41,30,43,1,0,2402,2701,2067,2266,265,351,21,10,26,39,0,0,23,35,2085,2299,271,355,41,41,28,42,1,0,53,33,47,31,2,1,0,0,1,1,0,0,3,0,49,31,5,1,1,0,2,1,0,0 -050,01,083,Alabama,Limestone County,13,15,4460,2051,2409,1814,2100,192,238,14,19,10,28,1,1,20,23,1832,2120,196,241,30,41,13,30,2,2,2024,2387,1791,2079,191,238,13,18,10,28,0,1,19,23,1808,2099,194,241,29,40,13,30,1,2,27,22,23,21,1,0,1,1,0,0,1,0,1,0,24,21,2,0,1,1,0,0,1,0 -050,01,083,Alabama,Limestone County,13,16,3008,1378,1630,1232,1452,111,150,13,5,11,8,0,0,11,15,1242,1463,112,154,23,17,11,11,1,0,1362,1617,1218,1441,110,150,12,5,11,8,0,0,11,13,1228,1452,111,153,22,15,11,10,1,0,16,13,14,11,1,0,1,0,0,0,0,0,0,2,14,11,1,1,1,2,0,1,0,0 -050,01,083,Alabama,Limestone County,13,17,1860,776,1084,700,969,55,95,6,4,5,3,0,0,10,13,710,982,57,95,15,16,6,4,1,0,769,1068,694,953,55,95,6,4,5,3,0,0,9,13,703,966,56,95,15,16,6,4,1,0,7,16,6,16,0,0,0,0,0,0,0,0,1,0,7,16,1,0,0,0,0,0,0,0 -050,01,083,Alabama,Limestone County,13,18,1571,565,1006,496,896,48,91,6,3,4,8,0,0,11,8,507,904,50,91,15,10,6,9,1,1,560,996,491,888,48,90,6,2,4,8,0,0,11,8,502,896,50,90,15,9,6,9,1,1,5,10,5,8,0,1,0,1,0,0,0,0,0,0,5,8,0,1,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,0,11299,5289,6010,1451,1417,3788,4536,13,12,10,15,0,0,27,30,1470,1433,3805,4558,24,28,19,27,1,0,5248,5964,1436,1408,3772,4513,13,12,5,9,0,0,22,22,1454,1424,3786,4528,22,22,10,13,0,0,41,46,15,9,16,23,0,0,5,6,0,0,5,8,16,9,19,30,2,6,9,14,1,0 -050,01,085,Alabama,Lowndes County,1,1,746,359,387,86,56,268,326,0,1,1,1,0,0,4,3,90,57,272,329,0,1,1,3,0,0,354,386,82,56,268,326,0,1,0,0,0,0,4,3,86,57,272,329,0,1,0,2,0,0,5,1,4,0,0,0,0,0,1,1,0,0,0,0,4,0,0,0,0,0,1,1,0,0 -050,01,085,Alabama,Lowndes County,1,2,705,359,346,76,63,276,278,1,1,2,0,0,0,4,4,80,67,278,280,2,3,3,0,0,0,353,341,73,61,275,275,1,1,1,0,0,0,3,4,76,65,277,277,2,3,1,0,0,0,6,5,3,2,1,3,0,0,1,0,0,0,1,0,4,2,1,3,0,0,2,0,0,0 -050,01,085,Alabama,Lowndes County,1,3,771,390,381,77,71,309,307,3,1,0,0,0,0,1,2,78,71,310,309,3,3,0,2,0,0,385,377,77,71,304,305,3,1,0,0,0,0,1,0,78,71,305,305,3,1,0,0,0,0,5,4,0,0,5,2,0,0,0,0,0,0,0,2,0,0,5,4,0,2,0,2,0,0 -050,01,085,Alabama,Lowndes County,1,4,860,433,427,93,73,336,352,0,0,2,1,0,0,2,1,93,73,337,353,1,0,4,2,0,0,429,421,92,71,335,350,0,0,1,0,0,0,1,0,92,71,336,350,0,0,2,0,0,0,4,6,1,2,1,2,0,0,1,1,0,0,1,1,1,2,1,3,1,0,2,2,0,0 -050,01,085,Alabama,Lowndes County,1,5,699,330,369,47,37,280,329,1,1,1,2,0,0,1,0,48,37,281,329,1,1,1,2,0,0,327,366,47,37,277,328,1,1,1,0,0,0,1,0,48,37,278,328,1,1,1,0,0,0,3,3,0,0,3,1,0,0,0,2,0,0,0,0,0,0,3,1,0,0,0,2,0,0 -050,01,085,Alabama,Lowndes County,1,6,575,270,305,37,48,227,254,2,1,3,1,0,0,1,1,37,49,228,255,3,1,4,1,0,0,267,303,37,48,227,253,2,1,1,0,0,0,0,1,37,49,227,254,2,1,1,0,0,0,3,2,0,0,0,1,0,0,2,1,0,0,1,0,0,0,1,1,1,0,3,1,0,0 -050,01,085,Alabama,Lowndes County,1,7,602,272,330,73,69,198,259,1,0,0,0,0,0,0,2,73,71,198,260,1,1,0,0,0,0,270,325,71,68,198,255,1,0,0,0,0,0,0,2,71,70,198,256,1,1,0,0,0,0,2,5,2,1,0,4,0,0,0,0,0,0,0,0,2,1,0,4,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,8,606,290,316,64,77,222,237,2,1,0,1,0,0,2,0,65,77,223,237,2,1,2,1,0,0,288,315,64,77,220,236,2,1,0,1,0,0,2,0,65,77,221,236,2,1,2,1,0,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,9,708,304,404,77,117,225,281,1,1,0,1,0,0,1,4,77,119,226,285,1,3,1,3,0,0,301,400,76,116,224,280,1,1,0,1,0,0,0,2,76,118,224,282,1,1,0,1,0,0,3,4,1,1,1,1,0,0,0,0,0,0,1,2,1,1,2,3,0,2,1,2,0,0 -050,01,085,Alabama,Lowndes County,1,10,945,438,507,128,107,309,397,1,1,0,1,0,0,0,1,128,108,309,397,1,2,0,1,0,0,436,504,126,107,309,395,1,1,0,0,0,0,0,1,126,108,309,395,1,2,0,0,0,0,2,3,2,0,0,2,0,0,0,1,0,0,0,0,2,0,0,2,0,0,0,1,0,0 -050,01,085,Alabama,Lowndes County,1,11,918,423,495,120,135,303,354,0,1,0,2,0,0,0,3,120,135,303,357,0,3,0,4,0,0,422,492,120,135,302,353,0,1,0,2,0,0,0,1,120,135,302,354,0,2,0,2,0,0,1,3,0,0,1,1,0,0,0,0,0,0,0,2,0,0,1,3,0,1,0,2,0,0 -050,01,085,Alabama,Lowndes County,1,12,830,407,423,132,112,272,304,0,2,0,1,0,0,3,4,133,114,275,307,0,4,1,3,1,0,404,421,131,112,271,302,0,2,0,1,0,0,2,4,132,114,273,305,0,4,1,3,0,0,3,2,1,0,1,2,0,0,0,0,0,0,1,0,1,0,2,2,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,1,13,679,306,373,132,115,170,255,0,1,1,0,0,0,3,2,134,117,170,256,3,2,2,0,0,0,305,370,131,114,170,253,0,1,1,0,0,0,3,2,133,116,170,254,3,2,2,0,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,14,543,255,288,105,108,148,178,0,0,0,0,0,0,2,2,107,109,148,179,2,2,0,0,0,0,254,287,105,108,147,177,0,0,0,0,0,0,2,2,107,109,147,178,2,2,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,15,443,221,222,94,97,123,123,1,0,0,1,0,0,3,1,97,97,125,123,4,1,0,2,0,0,221,221,94,97,123,123,1,0,0,1,0,0,3,0,97,97,125,123,4,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0 -050,01,085,Alabama,Lowndes County,1,16,296,112,184,55,60,57,124,0,0,0,0,0,0,0,0,55,60,57,124,0,0,0,0,0,0,112,183,55,59,57,124,0,0,0,0,0,0,0,0,55,59,57,124,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,17,186,68,118,32,34,36,81,0,0,0,3,0,0,0,0,32,34,36,81,0,0,0,3,0,0,68,118,32,34,36,81,0,0,0,3,0,0,0,0,32,34,36,81,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,1,18,187,52,135,23,38,29,97,0,0,0,0,0,0,0,0,23,38,29,97,0,0,0,0,0,0,52,134,23,37,29,97,0,0,0,0,0,0,0,0,23,37,29,97,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,0,11302,5291,6011,1451,1418,3790,4536,13,12,10,15,0,0,27,30,1470,1434,3807,4558,24,28,19,27,1,0,5248,5963,1436,1409,3772,4511,13,12,5,9,0,0,22,22,1454,1425,3786,4526,22,22,10,13,0,0,43,48,15,9,18,25,0,0,5,6,0,0,5,8,16,9,21,32,2,6,9,14,1,0 -050,01,085,Alabama,Lowndes County,2,1,748,360,388,86,56,269,327,0,1,1,1,0,0,4,3,90,57,273,330,0,1,1,3,0,0,354,386,82,56,268,326,0,1,0,0,0,0,4,3,86,57,272,329,0,1,0,2,0,0,6,2,4,0,1,1,0,0,1,1,0,0,0,0,4,0,1,1,0,0,1,1,0,0 -050,01,085,Alabama,Lowndes County,2,2,706,359,347,76,64,276,278,1,1,2,0,0,0,4,4,80,68,278,280,2,3,3,0,0,0,353,342,73,62,275,275,1,1,1,0,0,0,3,4,76,66,277,277,2,3,1,0,0,0,6,5,3,2,1,3,0,0,1,0,0,0,1,0,4,2,1,3,0,0,2,0,0,0 -050,01,085,Alabama,Lowndes County,2,3,770,390,380,77,70,309,307,3,1,0,0,0,0,1,2,78,70,310,309,3,3,0,2,0,0,385,376,77,70,304,305,3,1,0,0,0,0,1,0,78,70,305,305,3,1,0,0,0,0,5,4,0,0,5,2,0,0,0,0,0,0,0,2,0,0,5,4,0,2,0,2,0,0 -050,01,085,Alabama,Lowndes County,2,4,860,431,429,91,75,336,352,0,0,2,1,0,0,2,1,91,75,337,353,1,0,4,2,0,0,427,423,90,73,335,350,0,0,1,0,0,0,1,0,90,73,336,350,0,0,2,0,0,0,4,6,1,2,1,2,0,0,1,1,0,0,1,1,1,2,1,3,1,0,2,2,0,0 -050,01,085,Alabama,Lowndes County,2,5,700,331,369,47,37,281,329,1,1,1,2,0,0,1,0,48,37,282,329,1,1,1,2,0,0,327,365,47,37,277,327,1,1,1,0,0,0,1,0,48,37,278,327,1,1,1,0,0,0,4,4,0,0,4,2,0,0,0,2,0,0,0,0,0,0,4,2,0,0,0,2,0,0 -050,01,085,Alabama,Lowndes County,2,6,574,270,304,37,48,227,253,2,1,3,1,0,0,1,1,37,49,228,254,3,1,4,1,0,0,267,302,37,48,227,252,2,1,1,0,0,0,0,1,37,49,227,253,2,1,1,0,0,0,3,2,0,0,0,1,0,0,2,1,0,0,1,0,0,0,1,1,1,0,3,1,0,0 -050,01,085,Alabama,Lowndes County,2,7,602,272,330,73,69,198,259,1,0,0,0,0,0,0,2,73,71,198,260,1,1,0,0,0,0,270,325,71,68,198,255,1,0,0,0,0,0,0,2,71,70,198,256,1,1,0,0,0,0,2,5,2,1,0,4,0,0,0,0,0,0,0,0,2,1,0,4,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,8,607,291,316,65,77,222,237,2,1,0,1,0,0,2,0,66,77,223,237,2,1,2,1,0,0,289,315,65,77,220,236,2,1,0,1,0,0,2,0,66,77,221,236,2,1,2,1,0,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,9,711,305,406,78,118,225,282,1,1,0,1,0,0,1,4,78,120,226,286,1,3,1,3,0,0,302,402,77,117,224,281,1,1,0,1,0,0,0,2,77,119,224,283,1,1,0,1,0,0,3,4,1,1,1,1,0,0,0,0,0,0,1,2,1,1,2,3,0,2,1,2,0,0 -050,01,085,Alabama,Lowndes County,2,10,946,439,507,129,107,309,397,1,1,0,1,0,0,0,1,129,108,309,397,1,2,0,1,0,0,437,504,127,107,309,395,1,1,0,0,0,0,0,1,127,108,309,395,1,2,0,0,0,0,2,3,2,0,0,2,0,0,0,1,0,0,0,0,2,0,0,2,0,0,0,1,0,0 -050,01,085,Alabama,Lowndes County,2,11,916,422,494,119,134,303,354,0,1,0,2,0,0,0,3,119,134,303,357,0,3,0,4,0,0,421,491,119,134,302,353,0,1,0,2,0,0,0,1,119,134,302,354,0,2,0,2,0,0,1,3,0,0,1,1,0,0,0,0,0,0,0,2,0,0,1,3,0,1,0,2,0,0 -050,01,085,Alabama,Lowndes County,2,12,829,407,422,132,112,272,303,0,2,0,1,0,0,3,4,133,114,275,306,0,4,1,3,1,0,404,420,131,112,271,301,0,2,0,1,0,0,2,4,132,114,273,304,0,4,1,3,0,0,3,2,1,0,1,2,0,0,0,0,0,0,1,0,1,0,2,2,0,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,2,13,679,306,373,132,115,170,255,0,1,1,0,0,0,3,2,134,117,170,256,3,2,2,0,0,0,305,370,131,114,170,253,0,1,1,0,0,0,3,2,133,116,170,254,3,2,2,0,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,14,542,255,287,105,107,148,178,0,0,0,0,0,0,2,2,107,108,148,179,2,2,0,0,0,0,254,286,105,107,147,177,0,0,0,0,0,0,2,2,107,108,147,178,2,2,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,15,443,221,222,94,97,123,123,1,0,0,1,0,0,3,1,97,97,125,123,4,1,0,2,0,0,221,221,94,97,123,123,1,0,0,1,0,0,3,0,97,97,125,123,4,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0 -050,01,085,Alabama,Lowndes County,2,16,296,112,184,55,60,57,124,0,0,0,0,0,0,0,0,55,60,57,124,0,0,0,0,0,0,112,183,55,59,57,124,0,0,0,0,0,0,0,0,55,59,57,124,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,17,186,68,118,32,34,36,81,0,0,0,3,0,0,0,0,32,34,36,81,0,0,0,3,0,0,68,118,32,34,36,81,0,0,0,3,0,0,0,0,32,34,36,81,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,2,18,187,52,135,23,38,29,97,0,0,0,0,0,0,0,0,23,38,29,97,0,0,0,0,0,0,52,134,23,37,29,97,0,0,0,0,0,0,0,0,23,37,29,97,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,0,11294,5298,5996,1453,1423,3793,4516,14,12,10,15,0,0,28,30,1479,1450,3803,4531,31,27,12,18,1,0,5255,5944,1438,1413,3775,4489,14,12,5,9,0,0,23,21,1459,1431,3784,4502,28,21,6,11,1,0,43,52,15,10,18,27,0,0,5,6,0,0,5,9,20,19,19,29,3,6,6,7,0,0 -050,01,085,Alabama,Lowndes County,3,1,742,358,384,83,56,270,324,0,1,1,1,0,0,4,2,87,58,273,325,1,2,1,1,0,0,353,382,80,56,269,323,0,1,0,0,0,0,4,2,84,58,272,324,1,2,0,0,0,0,5,2,3,0,1,1,0,0,1,1,0,0,0,0,3,0,1,1,0,0,1,1,0,0 -050,01,085,Alabama,Lowndes County,3,2,704,356,348,76,63,273,280,1,1,2,0,0,0,4,4,80,66,275,283,2,2,2,1,1,0,350,343,73,61,272,277,1,1,1,0,0,0,3,4,76,64,273,280,2,2,1,1,1,0,6,5,3,2,1,3,0,0,1,0,0,0,1,0,4,2,2,3,0,0,1,0,0,0 -050,01,085,Alabama,Lowndes County,3,3,767,393,374,78,71,310,300,4,1,0,0,0,0,1,2,79,73,310,300,4,3,1,0,0,0,388,369,78,71,305,297,4,1,0,0,0,0,1,0,79,71,305,297,4,1,1,0,0,0,5,5,0,0,5,3,0,0,0,0,0,0,0,2,0,2,5,3,0,2,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,4,838,418,420,91,77,323,341,0,0,2,1,0,0,2,1,93,78,324,342,1,0,2,1,0,0,414,413,90,74,322,339,0,0,1,0,0,0,1,0,91,74,323,339,0,0,1,0,0,0,4,7,1,3,1,2,0,0,1,1,0,0,1,1,2,4,1,3,1,0,1,1,0,0 -050,01,085,Alabama,Lowndes County,3,5,717,341,376,49,41,289,332,1,1,1,2,0,0,1,0,50,41,290,332,1,1,1,2,0,0,338,372,49,41,286,330,1,1,1,0,0,0,1,0,50,41,287,330,1,1,1,0,0,0,3,4,0,0,3,2,0,0,0,2,0,0,0,0,0,0,3,2,0,0,0,2,0,0 -050,01,085,Alabama,Lowndes County,3,6,579,273,306,38,50,229,253,2,1,3,1,0,0,1,1,39,51,229,254,3,1,3,1,0,0,269,304,38,50,228,252,2,1,1,0,0,0,0,1,38,51,228,253,2,1,1,0,0,0,4,2,0,0,1,1,0,0,2,1,0,0,1,0,1,0,1,1,1,0,2,1,0,0 -050,01,085,Alabama,Lowndes County,3,7,615,277,338,72,69,204,267,1,0,0,0,0,0,0,2,72,71,204,269,1,0,0,0,0,0,275,332,70,68,204,262,1,0,0,0,0,0,0,2,70,70,204,264,1,0,0,0,0,0,2,6,2,1,0,5,0,0,0,0,0,0,0,0,2,1,0,5,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,8,595,284,311,65,74,215,235,2,1,0,1,0,0,2,0,67,74,215,235,4,1,0,1,0,0,282,310,65,74,213,234,2,1,0,1,0,0,2,0,67,74,213,234,4,1,0,1,0,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,9,712,308,404,79,119,227,279,1,1,0,1,0,0,1,4,80,123,227,281,2,3,0,1,0,0,304,400,77,118,226,278,1,1,0,1,0,0,0,2,77,120,226,279,1,2,0,1,0,0,4,4,2,1,1,1,0,0,0,0,0,0,1,2,3,3,1,2,1,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,10,938,438,500,127,106,310,391,1,1,0,1,0,0,0,1,127,107,310,391,1,2,0,1,0,0,436,497,125,106,310,389,1,1,0,0,0,0,0,1,125,107,310,389,1,2,0,0,0,0,2,3,2,0,0,2,0,0,0,1,0,0,0,0,2,0,0,2,0,0,0,1,0,0 -050,01,085,Alabama,Lowndes County,3,11,915,418,497,123,135,295,355,0,1,0,2,0,0,0,4,123,139,295,355,0,4,0,3,0,0,417,493,123,135,294,354,0,1,0,2,0,0,0,1,123,136,294,354,0,2,0,2,0,0,1,4,0,0,1,1,0,0,0,0,0,0,0,3,0,3,1,1,0,2,0,1,0,0 -050,01,085,Alabama,Lowndes County,3,12,835,412,423,132,112,277,304,0,2,0,1,0,0,3,4,135,115,277,306,2,5,1,1,0,0,409,421,131,112,276,302,0,2,0,1,0,0,2,4,133,115,276,304,2,5,0,1,0,0,3,2,1,0,1,2,0,0,0,0,0,0,1,0,2,0,1,2,0,0,1,0,0,0 -050,01,085,Alabama,Lowndes County,3,13,672,306,366,126,112,176,251,0,1,1,0,0,0,3,2,128,114,178,252,2,1,1,1,0,0,305,363,125,111,176,249,0,1,1,0,0,0,3,2,127,113,178,250,2,1,1,1,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,14,542,257,285,106,107,149,176,0,0,0,0,0,0,2,2,107,108,150,178,2,1,0,0,0,0,256,284,106,107,148,175,0,0,0,0,0,0,2,2,107,108,149,177,2,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,15,446,222,224,93,97,124,125,1,0,0,1,0,0,4,1,97,98,124,125,5,1,0,1,0,0,222,223,93,97,124,125,1,0,0,1,0,0,4,0,97,97,124,125,5,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,16,301,117,184,59,61,58,123,0,0,0,0,0,0,0,0,59,61,58,123,0,0,0,0,0,0,117,183,59,60,58,123,0,0,0,0,0,0,0,0,59,60,58,123,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,17,192,69,123,33,36,36,84,0,0,0,3,0,0,0,0,33,36,36,84,0,0,0,3,0,0,69,123,33,36,36,84,0,0,0,3,0,0,0,0,33,36,36,84,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,3,18,184,51,133,23,37,28,96,0,0,0,0,0,0,0,0,23,37,28,96,0,0,0,0,0,0,51,132,23,36,28,96,0,0,0,0,0,0,0,0,23,36,28,96,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,0,11144,5254,5890,1401,1382,3791,4445,15,14,14,17,0,0,33,32,1432,1411,3805,4459,32,28,17,20,1,4,5193,5830,1376,1364,3765,4418,15,14,9,11,0,0,28,23,1402,1385,3777,4428,29,25,12,13,1,2,61,60,25,18,26,27,0,0,5,6,0,0,5,9,30,26,28,31,3,3,5,7,0,2 -050,01,085,Alabama,Lowndes County,4,1,720,369,351,74,50,290,297,0,1,1,2,0,0,4,1,77,51,294,297,1,2,1,2,0,0,364,349,72,50,288,296,0,1,0,1,0,0,4,1,75,51,292,296,1,2,0,1,0,0,5,2,2,0,2,1,0,0,1,1,0,0,0,0,2,0,2,1,0,0,1,1,0,0 -050,01,085,Alabama,Lowndes County,4,2,681,338,343,72,56,258,281,1,0,2,0,0,0,5,6,77,62,261,285,1,2,3,0,1,0,331,340,67,53,258,281,1,0,1,0,0,0,4,6,71,59,260,285,1,2,2,0,1,0,7,3,5,3,0,0,0,0,1,0,0,0,1,0,6,3,1,0,0,0,1,0,0,0 -050,01,085,Alabama,Lowndes County,4,3,770,401,369,83,74,314,291,3,1,0,0,0,0,1,3,84,76,315,293,3,2,0,1,0,0,394,363,82,73,308,288,3,1,0,0,0,0,1,1,83,74,309,288,3,1,0,1,0,0,7,6,1,1,6,3,0,0,0,0,0,0,0,2,1,2,6,5,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,4,770,373,397,81,68,286,325,1,1,1,2,0,0,4,1,85,69,289,325,2,2,1,2,0,0,371,389,81,65,285,322,1,1,1,1,0,0,3,0,84,65,288,322,1,1,1,1,0,0,2,8,0,3,1,3,0,0,0,1,0,0,1,1,1,4,1,3,1,1,0,1,0,0 -050,01,085,Alabama,Lowndes County,4,5,847,416,431,65,51,345,377,1,0,4,2,0,0,1,1,66,52,346,378,1,0,4,2,0,0,408,422,63,47,340,374,1,0,3,0,0,0,1,1,64,48,341,375,1,0,3,0,0,0,8,9,2,4,5,3,0,0,1,2,0,0,0,0,2,4,5,3,0,0,1,2,0,0 -050,01,085,Alabama,Lowndes County,4,6,576,293,283,38,48,247,231,3,2,4,1,0,0,1,1,39,49,247,231,4,3,4,1,0,0,284,280,35,47,243,230,3,2,2,0,0,0,1,1,36,48,243,230,4,3,2,0,0,0,9,3,3,1,4,1,0,0,2,1,0,0,0,0,3,1,4,1,0,0,2,1,0,0 -050,01,085,Alabama,Lowndes County,4,7,650,297,353,62,57,232,295,1,0,0,0,0,0,2,1,64,58,232,296,3,0,0,0,0,0,292,348,58,56,232,291,1,0,0,0,0,0,1,1,59,57,232,292,2,0,0,0,0,0,5,5,4,1,0,4,0,0,0,0,0,0,1,0,5,1,0,4,1,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,8,545,259,286,64,71,191,213,2,1,0,0,0,0,2,1,66,72,191,213,4,1,0,1,0,0,254,282,63,70,187,210,2,1,0,0,0,0,2,1,65,71,187,210,4,1,0,1,0,0,5,4,1,1,4,3,0,0,0,0,0,0,0,0,1,1,4,3,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,9,681,294,387,72,114,221,268,1,1,0,2,0,0,0,2,72,116,221,269,1,2,0,2,0,0,290,384,69,113,220,267,1,1,0,2,0,0,0,1,69,114,220,267,1,2,0,2,0,0,4,3,3,1,1,1,0,0,0,0,0,0,0,1,3,2,1,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,10,843,385,458,105,100,278,353,0,2,1,1,0,0,1,2,106,102,278,354,1,3,1,1,0,0,382,455,103,100,278,352,0,2,1,0,0,0,0,1,103,101,278,352,0,3,1,0,0,0,3,3,2,0,0,1,0,0,0,1,0,0,1,1,3,1,0,2,1,0,0,1,0,0 -050,01,085,Alabama,Lowndes County,4,11,902,405,497,119,127,285,364,1,2,0,1,0,0,0,3,119,130,285,364,1,3,0,1,0,2,405,494,119,127,285,363,1,2,0,1,0,0,0,1,119,128,285,363,1,2,0,1,0,1,0,3,0,0,0,1,0,0,0,0,0,0,0,2,0,2,0,1,0,1,0,0,0,1 -050,01,085,Alabama,Lowndes County,4,12,840,421,419,140,115,279,296,0,2,0,2,0,0,2,4,142,118,279,298,2,4,0,3,0,0,419,415,140,115,277,293,0,2,0,2,0,0,2,3,142,117,277,295,2,4,0,2,0,0,2,4,0,0,2,3,0,0,0,0,0,0,0,1,0,1,2,3,0,0,0,1,0,0 -050,01,085,Alabama,Lowndes County,4,13,653,294,359,116,106,173,251,0,0,1,0,0,0,4,2,120,108,174,251,2,2,2,0,0,0,291,356,114,105,173,249,0,0,1,0,0,0,3,2,117,107,173,249,2,2,2,0,0,0,3,3,2,1,0,2,0,0,0,0,0,0,1,0,3,1,1,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,14,532,250,282,106,107,143,171,0,1,0,0,0,0,1,3,107,109,143,173,0,2,1,0,0,1,249,281,106,107,142,170,0,1,0,0,0,0,1,3,107,109,142,172,0,2,1,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,15,455,215,240,89,104,120,134,1,0,0,1,0,0,5,1,93,105,121,134,6,0,0,1,0,1,215,239,89,104,120,134,1,0,0,1,0,0,5,0,93,104,121,134,6,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1 -050,01,085,Alabama,Lowndes County,4,16,308,125,183,61,61,64,122,0,0,0,0,0,0,0,0,61,61,64,122,0,0,0,0,0,0,125,183,61,61,64,122,0,0,0,0,0,0,0,0,61,61,64,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,17,197,69,128,33,39,36,87,0,0,0,2,0,0,0,0,33,39,36,87,0,0,0,2,0,0,69,127,33,38,36,87,0,0,0,2,0,0,0,0,33,38,36,87,0,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,4,18,174,50,124,21,34,29,89,0,0,0,1,0,0,0,0,21,34,29,89,0,0,0,1,0,0,50,123,21,33,29,89,0,0,0,1,0,0,0,0,21,33,29,89,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,0,10857,5150,5707,1362,1332,3728,4308,17,12,10,21,1,0,32,34,1389,1364,3743,4325,32,28,15,24,3,0,5085,5640,1337,1313,3702,4276,13,12,5,15,1,0,27,24,1360,1336,3715,4287,25,24,9,17,3,0,65,67,25,19,26,32,4,0,5,6,0,0,5,10,29,28,28,38,7,4,6,7,0,0 -050,01,085,Alabama,Lowndes County,5,1,710,360,350,67,51,284,294,4,0,1,4,0,0,4,1,71,52,286,295,6,0,1,4,0,0,352,344,65,48,283,292,0,0,0,3,0,0,4,1,69,49,285,293,2,0,0,3,0,0,8,6,2,3,1,2,4,0,1,1,0,0,0,0,2,3,1,2,4,0,1,1,0,0 -050,01,085,Alabama,Lowndes County,5,2,646,320,326,68,53,246,268,0,0,1,0,0,0,5,5,73,58,250,272,1,1,1,0,0,0,313,322,65,50,244,267,0,0,0,0,0,0,4,5,69,55,247,271,1,1,0,0,0,0,7,4,3,3,2,1,0,0,1,0,0,0,1,0,4,3,3,1,0,0,1,0,0,0 -050,01,085,Alabama,Lowndes County,5,3,729,380,349,77,68,300,276,2,1,0,0,0,0,1,4,78,72,300,278,2,3,1,0,0,0,375,344,76,66,296,275,2,1,0,0,0,0,1,2,77,68,296,275,2,3,1,0,0,0,5,5,1,2,4,1,0,0,0,0,0,0,0,2,1,4,4,3,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,4,726,367,359,70,65,293,291,2,1,1,0,0,0,1,2,70,67,293,293,3,1,2,0,0,0,362,350,69,63,290,285,2,1,1,0,0,0,0,1,69,64,290,286,2,1,1,0,0,0,5,9,1,2,3,6,0,0,0,0,0,0,1,1,1,3,3,7,1,0,1,0,0,0 -050,01,085,Alabama,Lowndes County,5,5,828,386,442,72,56,310,380,1,0,1,4,0,0,2,2,73,58,312,381,2,1,1,4,0,0,382,433,71,54,308,377,1,0,0,1,0,0,2,1,72,55,310,378,2,0,0,1,0,0,4,9,1,2,2,3,0,0,1,3,0,0,0,1,1,3,2,3,0,1,1,3,0,0 -050,01,085,Alabama,Lowndes County,5,6,580,301,279,33,53,259,224,2,1,4,1,1,0,2,0,35,53,260,224,3,1,4,1,1,0,293,276,33,53,253,221,2,1,2,1,1,0,2,0,35,53,254,221,3,1,2,1,1,0,8,3,0,0,6,3,0,0,2,0,0,0,0,0,0,0,6,3,0,0,2,0,0,0 -050,01,085,Alabama,Lowndes County,5,7,612,290,322,60,46,225,270,1,1,0,3,0,0,4,2,64,48,226,271,2,2,2,3,0,0,285,318,56,45,225,268,1,1,0,2,0,0,3,2,59,47,226,269,1,2,2,2,0,0,5,4,4,1,0,2,0,0,0,1,0,0,1,0,5,1,0,2,1,0,0,1,0,0 -050,01,085,Alabama,Lowndes County,5,8,543,272,271,66,67,203,203,1,0,1,0,0,0,1,1,67,68,203,203,1,1,2,0,0,0,266,264,64,65,199,198,1,0,1,0,0,0,1,1,65,66,199,198,1,1,2,0,0,0,6,7,2,2,4,5,0,0,0,0,0,0,0,0,2,2,4,5,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,9,646,285,361,81,103,201,253,2,1,0,2,0,0,1,2,82,105,201,253,3,3,0,2,0,0,281,359,78,102,200,253,2,1,0,2,0,0,1,1,79,103,200,253,3,2,0,2,0,0,4,2,3,1,1,0,0,0,0,0,0,0,0,1,3,2,1,0,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,10,784,372,412,98,90,273,316,0,3,0,1,0,0,1,2,99,92,274,317,0,3,0,2,0,0,368,408,95,90,273,314,0,3,0,0,0,0,0,1,95,91,273,314,0,3,0,1,0,0,4,4,3,0,0,2,0,0,0,1,0,0,1,1,4,1,1,3,0,0,0,1,0,0 -050,01,085,Alabama,Lowndes County,5,11,861,362,499,105,115,256,381,1,1,0,1,0,0,0,1,105,116,256,381,1,2,0,1,0,0,362,498,105,115,256,380,1,1,0,1,0,0,0,1,105,116,256,380,1,2,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,12,832,433,399,137,112,295,279,0,2,0,2,0,0,1,4,138,114,295,281,1,5,0,3,0,0,429,394,135,112,293,277,0,2,0,2,0,0,1,1,136,112,293,278,1,3,0,2,0,0,4,5,2,0,2,2,0,0,0,0,0,0,0,3,2,2,2,3,0,2,0,1,0,0 -050,01,085,Alabama,Lowndes County,5,13,647,290,357,108,105,176,248,0,0,1,0,0,0,5,4,112,109,178,250,3,2,1,0,1,0,287,354,106,104,176,246,0,0,1,0,0,0,4,4,109,108,178,248,2,2,1,0,1,0,3,3,2,1,0,2,0,0,0,0,0,0,1,0,3,1,0,2,1,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,14,549,257,292,105,105,152,183,0,1,0,0,0,0,0,3,105,108,152,183,0,3,0,1,0,0,256,291,105,105,151,182,0,1,0,0,0,0,0,3,105,108,151,182,0,3,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,15,466,215,251,93,105,117,145,1,0,0,0,0,0,4,1,95,106,119,146,4,0,0,0,1,0,215,249,93,105,117,144,1,0,0,0,0,0,4,0,95,105,119,144,4,0,0,0,1,0,0,2,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,16,316,141,175,65,63,76,112,0,0,0,0,0,0,0,0,65,63,76,112,0,0,0,0,0,0,141,175,65,63,76,112,0,0,0,0,0,0,0,0,65,63,76,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,17,200,66,134,30,42,36,92,0,0,0,0,0,0,0,0,30,42,36,92,0,0,0,0,0,0,66,133,30,41,36,92,0,0,0,0,0,0,0,0,30,41,36,92,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,5,18,182,53,129,27,33,26,93,0,0,0,3,0,0,0,0,27,33,26,93,0,0,0,3,0,0,52,128,26,32,26,93,0,0,0,3,0,0,0,0,26,32,26,93,0,0,0,3,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,0,10666,5059,5607,1334,1301,3663,4231,16,13,9,20,1,0,36,42,1365,1337,3680,4252,37,30,13,31,1,1,4993,5535,1308,1277,3637,4203,13,12,4,13,1,0,30,30,1333,1303,3652,4217,30,22,8,23,1,0,66,72,26,24,26,28,3,1,5,7,0,0,6,12,32,34,28,35,7,8,5,8,0,1 -050,01,085,Alabama,Lowndes County,6,1,699,350,349,69,54,274,289,3,0,1,3,0,0,3,3,72,57,275,290,4,1,2,4,0,0,346,345,69,51,274,289,0,0,0,2,0,0,3,3,72,54,275,290,1,1,1,3,0,0,4,4,0,3,0,0,3,0,1,1,0,0,0,0,0,3,0,0,3,0,1,1,0,0 -050,01,085,Alabama,Lowndes County,6,2,668,329,339,74,60,251,272,0,0,0,1,0,0,4,6,78,66,253,276,0,1,2,2,0,0,321,332,68,55,249,271,0,0,0,0,0,0,4,6,72,61,251,275,0,1,2,1,0,0,8,7,6,5,2,1,0,0,0,1,0,0,0,0,6,5,2,1,0,0,0,1,0,0 -050,01,085,Alabama,Lowndes County,6,3,692,365,327,70,60,290,262,0,1,2,0,0,0,3,4,72,64,293,264,1,3,2,0,0,0,359,322,68,58,288,261,0,1,1,0,0,0,2,2,69,60,290,263,1,1,1,0,0,0,6,5,2,2,2,1,0,0,1,0,0,0,1,2,3,4,3,1,0,2,1,0,0,0 -050,01,085,Alabama,Lowndes County,6,4,677,346,331,59,62,278,262,4,2,1,1,0,0,4,4,63,66,280,264,6,4,2,1,0,0,337,320,57,61,273,256,4,1,1,1,0,0,2,1,59,62,274,256,5,2,2,1,0,0,9,11,2,1,5,6,0,1,0,0,0,0,2,3,4,4,6,8,1,2,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,5,816,386,430,68,67,313,356,1,0,1,3,0,0,3,4,71,69,315,356,2,2,1,6,0,1,383,422,67,63,312,355,1,0,0,1,0,0,3,3,70,65,314,355,2,2,0,3,0,0,3,8,1,4,1,1,0,0,1,2,0,0,0,1,1,4,1,1,0,0,1,3,0,1 -050,01,085,Alabama,Lowndes County,6,6,620,312,308,39,48,268,258,2,1,2,1,1,0,0,0,39,48,268,258,2,1,2,1,1,0,302,305,39,48,260,256,2,1,0,0,1,0,0,0,39,48,260,256,2,1,0,0,1,0,10,3,0,0,8,2,0,0,2,1,0,0,0,0,0,0,8,2,0,0,2,1,0,0 -050,01,085,Alabama,Lowndes County,6,7,591,281,310,60,47,214,258,1,1,1,2,0,0,5,2,63,49,217,259,5,1,1,3,0,0,276,307,56,46,214,257,1,1,1,1,0,0,4,2,58,48,217,258,4,1,1,2,0,0,5,3,4,1,0,1,0,0,0,1,0,0,1,0,5,1,0,1,1,0,0,1,0,0 -050,01,085,Alabama,Lowndes County,6,8,532,258,274,65,54,190,218,1,0,0,0,0,0,2,2,67,56,191,219,2,0,0,1,0,0,253,268,63,54,187,212,1,0,0,0,0,0,2,2,65,56,188,213,2,0,0,1,0,0,5,6,2,0,3,6,0,0,0,0,0,0,0,0,2,0,3,6,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,9,608,272,336,77,97,193,236,1,1,0,2,0,0,1,0,78,97,193,236,2,1,0,2,0,0,267,333,74,94,191,236,1,1,0,2,0,0,1,0,75,94,191,236,2,1,0,2,0,0,5,3,3,3,2,0,0,0,0,0,0,0,0,0,3,3,2,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,10,737,343,394,86,95,255,293,1,1,0,1,0,0,1,4,87,99,255,295,2,3,0,2,0,0,339,389,83,94,255,292,1,1,0,0,0,0,0,2,83,96,255,293,1,1,0,1,0,0,4,5,3,1,0,1,0,0,0,1,0,0,1,2,4,3,0,2,1,2,0,1,0,0 -050,01,085,Alabama,Lowndes County,6,11,822,353,469,112,102,240,363,1,3,0,0,0,0,0,1,112,102,240,364,1,4,0,0,0,0,353,466,112,101,240,361,1,3,0,0,0,0,0,1,112,101,240,362,1,4,0,0,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,12,820,417,403,120,109,297,288,0,1,0,2,0,0,0,3,120,112,297,291,0,2,0,2,0,0,414,398,119,109,295,286,0,1,0,2,0,0,0,0,119,109,295,286,0,1,0,2,0,0,3,5,1,0,2,2,0,0,0,0,0,0,0,3,1,3,2,5,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,13,641,309,332,109,97,194,228,0,1,1,1,0,0,5,5,113,101,196,230,4,3,1,3,0,0,307,329,108,96,194,226,0,1,1,1,0,0,4,5,111,100,196,228,3,3,1,3,0,0,2,3,1,1,0,2,0,0,0,0,0,0,1,0,2,1,0,2,1,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,14,556,249,307,105,100,143,203,0,1,0,0,0,0,1,3,105,102,144,204,1,3,0,1,0,0,248,305,104,100,143,201,0,1,0,0,0,0,1,3,104,102,144,202,1,3,0,1,0,0,1,2,1,0,0,2,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,15,477,222,255,95,105,122,150,1,0,0,0,0,0,4,0,99,105,122,150,5,0,0,0,0,0,221,254,95,105,121,149,1,0,0,0,0,0,4,0,99,105,121,149,5,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,16,323,150,173,69,64,81,108,0,0,0,0,0,0,0,1,69,64,81,109,0,1,0,0,0,0,150,172,69,64,81,108,0,0,0,0,0,0,0,0,69,64,81,108,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,17,204,64,140,31,46,33,94,0,0,0,0,0,0,0,0,31,46,33,94,0,0,0,0,0,0,64,139,31,45,33,94,0,0,0,0,0,0,0,0,31,45,33,94,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,6,18,183,53,130,26,34,27,93,0,0,0,3,0,0,0,0,26,34,27,93,0,0,0,3,0,0,53,129,26,33,27,93,0,0,0,3,0,0,0,0,26,33,27,93,0,0,0,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,0,10497,4995,5502,1305,1273,3626,4153,15,14,8,18,4,0,37,44,1338,1313,3645,4171,28,33,16,28,5,1,4924,5422,1281,1249,3593,4118,12,13,3,12,4,0,31,30,1309,1276,3608,4131,24,26,9,19,5,0,71,80,24,24,33,35,3,1,5,6,0,0,6,14,29,37,37,40,4,7,7,9,0,1 -050,01,085,Alabama,Lowndes County,7,1,661,335,326,65,51,262,269,3,0,1,2,0,0,4,4,68,55,265,271,4,2,2,2,0,0,326,322,65,49,257,268,0,0,0,1,0,0,4,4,68,53,260,270,1,2,1,1,0,0,9,4,0,2,5,1,3,0,1,1,0,0,0,0,0,2,5,1,3,0,1,1,0,0 -050,01,085,Alabama,Lowndes County,7,2,668,326,342,71,56,250,276,0,0,0,2,0,0,5,8,76,64,252,280,0,4,3,2,0,0,318,336,65,54,248,274,0,0,0,1,0,0,5,7,70,61,250,278,0,3,3,1,0,0,8,6,6,2,2,2,0,0,0,1,0,0,0,1,6,3,2,2,0,1,0,1,0,0 -050,01,085,Alabama,Lowndes County,7,3,683,358,325,58,57,294,262,0,1,2,0,0,0,4,5,61,62,296,264,2,3,3,1,0,0,353,318,56,53,293,261,0,1,1,0,0,0,3,3,58,56,295,262,2,2,1,1,0,0,5,7,2,4,1,1,0,0,1,0,0,0,1,2,3,6,1,2,0,1,2,0,0,0 -050,01,085,Alabama,Lowndes County,7,4,640,318,322,51,57,259,261,4,2,0,0,2,0,2,2,53,59,260,263,5,2,0,0,2,0,311,314,50,57,254,256,4,1,0,0,2,0,1,0,51,57,255,256,4,1,0,0,2,0,7,8,1,0,5,5,0,1,0,0,0,0,1,2,2,2,5,7,1,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,5,738,380,358,73,63,301,289,1,0,2,2,0,0,3,4,76,66,303,290,2,2,2,4,0,0,375,347,72,59,299,286,1,0,1,1,0,0,2,1,74,59,300,287,2,0,1,2,0,0,5,11,1,4,2,3,0,0,1,1,0,0,1,3,2,7,3,3,0,2,1,2,0,0 -050,01,085,Alabama,Lowndes County,7,6,671,331,340,44,53,284,285,1,1,1,1,0,0,1,0,45,53,284,285,2,1,1,1,0,0,324,333,44,51,278,281,1,1,0,0,0,0,1,0,45,51,278,281,2,1,0,0,0,0,7,7,0,2,6,4,0,0,1,1,0,0,0,0,0,2,6,4,0,0,1,1,0,0 -050,01,085,Alabama,Lowndes County,7,7,579,281,298,52,46,224,249,0,1,1,1,1,0,3,1,55,47,226,249,1,1,1,2,1,0,274,292,49,43,222,247,0,1,0,0,1,0,2,1,51,44,223,247,1,1,0,1,1,0,7,6,3,3,2,2,0,0,1,1,0,0,1,0,4,3,3,2,0,0,1,1,0,0 -050,01,085,Alabama,Lowndes County,7,8,514,245,269,62,56,180,210,1,0,0,1,0,0,2,2,64,58,181,211,2,1,0,1,0,0,239,263,59,56,177,204,1,0,0,1,0,0,2,2,61,58,178,205,2,1,0,1,0,0,6,6,3,0,3,6,0,0,0,0,0,0,0,0,3,0,3,6,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,9,593,274,319,74,76,194,239,2,1,0,2,1,0,3,1,76,77,195,240,4,1,1,2,1,0,273,315,74,73,193,238,2,1,0,2,1,0,3,1,76,74,194,239,4,1,1,2,1,0,1,4,0,3,1,1,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,10,674,296,378,72,101,222,272,1,1,0,1,0,0,1,3,72,103,223,274,1,2,1,1,0,1,288,374,67,101,220,271,1,1,0,0,0,0,0,1,67,102,220,271,1,2,0,0,0,0,8,4,5,0,2,1,0,0,0,1,0,0,1,2,5,1,3,3,0,0,1,1,0,1 -050,01,085,Alabama,Lowndes County,7,11,816,371,445,120,98,250,343,1,2,0,0,0,0,0,2,120,100,250,343,1,3,0,1,0,0,370,442,120,97,249,341,1,2,0,0,0,0,0,2,120,99,249,341,1,3,0,1,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,12,812,390,422,108,115,282,300,0,2,0,2,0,0,0,3,108,118,282,300,0,4,0,3,0,0,387,417,107,115,280,298,0,2,0,2,0,0,0,0,107,115,280,298,0,2,0,2,0,0,3,5,1,0,2,2,0,0,0,0,0,0,0,3,1,3,2,2,0,2,0,1,0,0 -050,01,085,Alabama,Lowndes County,7,13,647,330,317,114,94,211,216,0,2,1,1,0,0,4,4,118,97,214,218,1,4,1,2,0,0,328,314,113,93,211,214,0,2,1,1,0,0,3,4,116,96,213,216,1,4,1,2,0,0,2,3,1,1,0,2,0,0,0,0,0,0,1,0,2,1,1,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,14,583,254,329,114,102,138,223,0,1,0,0,0,0,2,3,116,104,139,224,0,3,0,1,1,0,253,327,113,102,138,221,0,1,0,0,0,0,2,3,115,104,139,222,0,3,0,1,1,0,1,2,1,0,0,2,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,15,478,218,260,95,100,119,159,1,0,0,0,0,0,3,1,98,101,119,159,3,0,1,1,0,0,217,259,95,100,118,158,1,0,0,0,0,0,3,1,98,101,118,158,3,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,16,335,156,179,70,75,86,103,0,0,0,0,0,0,0,1,70,76,86,103,0,0,0,1,0,0,156,178,70,75,86,103,0,0,0,0,0,0,0,0,70,75,86,103,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0 -050,01,085,Alabama,Lowndes County,7,17,219,77,142,36,42,41,100,0,0,0,0,0,0,0,0,36,42,41,100,0,0,0,0,0,0,77,141,36,41,41,100,0,0,0,0,0,0,0,0,36,41,41,100,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,7,18,186,55,131,26,31,29,97,0,0,0,3,0,0,0,0,26,31,29,97,0,0,0,3,0,0,55,130,26,30,29,97,0,0,0,3,0,0,0,0,26,30,29,97,0,0,0,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,0,10350,4912,5438,1292,1263,3553,4098,16,14,11,20,4,0,36,43,1324,1304,3576,4114,32,36,14,26,5,2,4839,5351,1263,1235,3525,4060,13,13,4,14,4,0,30,29,1289,1264,3545,4071,27,27,6,18,5,0,73,87,29,28,28,38,3,1,7,6,0,0,6,14,35,40,31,43,5,9,8,8,0,2 -050,01,085,Alabama,Lowndes County,8,1,643,324,319,64,55,253,259,3,0,0,1,0,0,4,4,68,59,257,262,4,1,0,1,0,0,318,313,61,52,253,256,0,0,0,1,0,0,4,4,65,56,257,259,1,1,0,1,0,0,6,6,3,3,0,3,3,0,0,0,0,0,0,0,3,3,0,3,3,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,2,683,331,352,80,60,245,284,0,0,1,3,0,0,5,5,85,64,249,288,1,1,1,4,0,0,324,347,76,60,243,282,0,0,0,1,0,0,5,4,81,64,247,285,1,0,0,2,0,0,7,5,4,0,2,2,0,0,1,2,0,0,0,1,4,0,2,3,0,1,1,2,0,0 -050,01,085,Alabama,Lowndes County,8,3,658,342,316,57,57,279,253,0,1,1,0,0,0,5,5,61,62,283,253,2,5,1,1,0,0,335,309,53,52,278,252,0,1,0,0,0,0,4,4,56,56,282,252,1,4,0,1,0,0,7,7,4,5,1,1,0,0,1,0,0,0,1,1,5,6,1,1,1,1,1,0,0,0 -050,01,085,Alabama,Lowndes County,8,4,609,305,304,55,57,244,241,4,2,0,0,2,0,0,4,55,61,244,243,4,3,0,0,2,1,299,297,54,57,239,238,4,1,0,0,2,0,0,1,54,58,239,239,4,1,0,0,2,0,6,7,1,0,5,3,0,1,0,0,0,0,0,3,1,3,5,4,0,2,0,0,0,1 -050,01,085,Alabama,Lowndes County,8,5,676,340,336,60,58,276,272,0,0,2,2,0,0,2,4,62,62,278,273,0,2,2,3,0,0,335,326,59,54,274,269,0,0,1,2,0,0,1,1,60,55,275,270,0,0,1,2,0,0,5,10,1,4,2,3,0,0,1,0,0,0,1,3,2,7,3,3,0,2,1,1,0,0 -050,01,085,Alabama,Lowndes County,8,6,699,340,359,51,51,285,304,1,1,0,2,0,0,3,1,52,52,287,305,3,1,0,2,1,0,335,347,49,48,282,297,1,1,0,0,0,0,3,1,50,49,284,298,3,1,0,0,1,0,5,12,2,3,3,7,0,0,0,2,0,0,0,0,2,3,3,7,0,0,0,2,0,0 -050,01,085,Alabama,Lowndes County,8,7,563,282,281,52,55,223,223,2,1,2,1,1,0,2,1,54,56,223,223,3,1,3,2,1,0,272,278,50,55,218,221,2,1,0,0,1,0,1,1,51,56,218,221,3,1,0,1,1,0,10,3,2,0,5,2,0,0,2,1,0,0,1,0,3,0,5,2,0,0,3,1,0,0 -050,01,085,Alabama,Lowndes County,8,8,558,260,298,64,59,191,236,1,0,2,1,0,0,2,2,66,61,192,236,2,1,2,2,0,0,252,289,60,56,189,230,1,0,0,1,0,0,2,2,62,58,190,230,2,1,0,2,0,0,8,9,4,3,2,6,0,0,2,0,0,0,0,0,4,3,2,6,0,0,2,0,0,0 -050,01,085,Alabama,Lowndes County,8,9,555,265,290,66,77,192,211,2,1,1,1,1,0,3,0,68,77,193,211,3,1,3,1,1,0,263,284,66,72,190,210,2,1,1,1,1,0,3,0,68,72,191,210,3,1,3,1,1,0,2,6,0,5,2,1,0,0,0,0,0,0,0,0,0,5,2,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,10,641,269,372,73,97,194,269,1,1,0,2,0,0,1,3,74,100,194,271,2,2,0,2,0,0,262,368,68,96,193,268,1,1,0,2,0,0,0,1,68,97,193,269,1,1,0,2,0,0,7,4,5,1,1,1,0,0,0,0,0,0,1,2,6,3,1,2,1,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,11,809,384,425,121,99,262,321,1,2,0,2,0,0,0,1,121,100,262,321,1,3,0,2,0,0,382,421,121,98,260,319,1,2,0,1,0,0,0,1,121,99,260,319,1,3,0,1,0,0,2,4,0,1,2,2,0,0,0,1,0,0,0,0,0,1,2,2,0,0,0,1,0,0 -050,01,085,Alabama,Lowndes County,8,12,771,356,415,103,102,253,306,0,2,0,1,0,0,0,4,103,106,253,308,0,5,0,1,0,0,354,409,102,101,252,304,0,2,0,1,0,0,0,1,102,102,252,304,0,3,0,1,0,0,2,6,1,1,1,2,0,0,0,0,0,0,0,3,1,4,1,4,0,2,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,13,698,353,345,110,96,238,242,0,2,1,1,0,0,4,4,114,100,241,243,1,5,1,1,0,0,349,343,109,96,237,240,0,2,1,1,0,0,2,4,111,100,238,241,1,5,1,1,0,0,4,2,1,0,1,2,0,0,0,0,0,0,2,0,3,0,3,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,14,565,257,308,105,90,149,216,0,1,1,0,0,0,2,1,107,91,150,216,2,2,1,0,0,0,256,305,104,89,149,214,0,1,1,0,0,0,2,1,106,90,150,214,2,2,1,0,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,15,465,207,258,93,100,113,156,0,0,0,0,0,0,1,2,94,102,113,156,1,2,0,0,0,0,206,257,93,100,112,155,0,0,0,0,0,0,1,2,94,102,112,155,1,2,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,16,346,161,185,75,77,83,106,1,0,0,0,0,0,2,2,77,78,84,106,3,1,0,1,0,1,161,184,75,77,83,106,1,0,0,0,0,0,2,1,77,78,84,106,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1 -050,01,085,Alabama,Lowndes County,8,17,235,85,150,37,43,48,107,0,0,0,0,0,0,0,0,37,43,48,107,0,0,0,0,0,0,85,149,37,42,48,107,0,0,0,0,0,0,0,0,37,42,48,107,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,8,18,176,51,125,26,30,25,92,0,0,0,3,0,0,0,0,26,30,25,92,0,0,0,3,0,0,51,125,26,30,25,92,0,0,0,3,0,0,0,0,26,30,25,92,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,0,10245,4853,5392,1290,1256,3490,4061,16,15,16,22,4,0,37,38,1322,1285,3505,4080,36,38,23,28,5,0,4776,5300,1256,1219,3463,4023,13,15,9,16,4,0,31,27,1284,1240,3477,4037,29,32,14,19,4,0,77,92,34,37,27,38,3,0,7,6,0,0,6,11,38,45,28,43,7,6,9,9,1,0 -050,01,085,Alabama,Lowndes County,9,1,615,305,310,74,61,226,245,3,0,0,1,0,0,2,3,76,63,227,248,3,0,1,2,0,0,299,301,71,56,226,241,0,0,0,1,0,0,2,3,73,58,227,244,0,0,1,2,0,0,6,9,3,5,0,4,3,0,0,0,0,0,0,0,3,5,0,4,3,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,2,673,324,349,55,59,262,283,0,0,1,3,0,0,6,4,60,62,267,287,2,1,1,3,0,0,318,343,52,57,260,281,0,0,0,2,0,0,6,3,57,59,265,284,2,1,0,2,0,0,6,6,3,2,2,2,0,0,1,1,0,0,0,1,3,3,2,3,0,0,1,1,0,0 -050,01,085,Alabama,Lowndes County,9,3,620,314,306,62,55,246,245,0,0,1,1,0,0,5,5,67,57,247,248,3,2,2,4,0,0,306,301,56,52,246,245,0,0,0,0,0,0,4,4,60,54,247,247,3,2,0,2,0,0,8,5,6,3,0,0,0,0,1,1,0,0,1,1,7,3,0,1,0,0,2,2,0,0 -050,01,085,Alabama,Lowndes County,9,4,625,320,305,62,55,253,245,3,1,0,0,1,0,1,4,63,59,254,247,3,3,0,0,1,0,313,295,61,51,247,242,3,1,0,0,1,0,1,1,62,52,248,243,3,1,0,0,1,0,7,10,1,4,6,3,0,0,0,0,0,0,0,3,1,7,6,4,0,2,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,5,597,297,300,56,51,236,245,1,2,1,2,1,0,2,0,57,51,237,245,2,2,2,2,1,0,294,292,55,46,235,242,1,2,1,2,1,0,1,0,56,46,235,242,1,2,2,2,1,0,3,8,1,5,1,3,0,0,0,0,0,0,1,0,1,5,2,3,1,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,6,724,356,368,51,60,300,303,1,0,1,3,0,0,3,2,53,62,302,305,2,0,2,3,0,0,351,355,50,56,297,296,1,0,0,1,0,0,3,2,52,58,299,298,2,0,1,1,0,0,5,13,1,4,3,7,0,0,1,2,0,0,0,0,1,4,3,7,0,0,1,2,0,0 -050,01,085,Alabama,Lowndes County,9,7,552,277,275,49,54,222,217,2,2,2,1,1,0,1,1,50,55,223,217,2,3,2,1,1,0,265,272,45,54,216,215,2,2,0,0,1,0,1,1,46,55,217,215,2,3,0,0,1,0,12,3,4,0,6,2,0,0,2,1,0,0,0,0,4,0,6,2,0,0,2,1,0,0 -050,01,085,Alabama,Lowndes County,9,8,583,268,315,57,53,204,261,1,0,3,0,0,0,3,1,60,54,205,261,3,1,3,0,0,0,261,308,53,50,204,257,1,0,1,0,0,0,2,1,55,51,205,257,2,1,1,0,0,0,7,7,4,3,0,4,0,0,2,0,0,0,1,0,5,3,0,4,1,0,2,0,0,0 -050,01,085,Alabama,Lowndes County,9,9,526,247,279,67,75,172,202,2,1,1,0,1,0,4,1,71,76,173,202,5,2,2,0,1,0,244,272,67,71,169,199,2,1,1,0,1,0,4,1,71,72,170,199,5,2,2,0,1,0,3,7,0,4,3,3,0,0,0,0,0,0,0,0,0,4,3,3,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,10,622,276,346,83,93,188,247,1,1,4,3,0,0,0,2,83,95,188,248,1,2,4,3,0,0,271,342,79,91,187,246,1,1,4,3,0,0,0,1,79,92,187,246,1,2,4,3,0,0,5,4,4,2,1,1,0,0,0,0,0,0,0,1,4,3,1,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,11,786,380,406,109,95,270,304,0,3,0,2,0,0,1,2,110,96,270,305,1,4,0,3,0,0,374,401,106,93,268,303,0,3,0,1,0,0,0,1,106,94,268,303,0,4,0,1,0,0,6,5,3,2,2,1,0,0,0,1,0,0,1,1,4,2,2,2,1,0,0,2,0,0 -050,01,085,Alabama,Lowndes County,9,12,781,348,433,110,104,237,323,1,1,0,2,0,0,0,3,110,106,237,323,1,4,0,3,0,0,346,427,108,102,237,321,1,1,0,2,0,0,0,1,108,103,237,321,1,2,0,2,0,0,2,6,2,2,0,2,0,0,0,0,0,0,0,2,2,3,0,2,0,2,0,1,0,0 -050,01,085,Alabama,Lowndes County,9,13,708,350,358,110,95,236,255,0,3,1,1,0,0,3,4,113,99,236,255,1,7,3,1,0,0,347,354,110,95,234,252,0,3,1,1,0,0,2,3,112,98,234,252,1,6,2,1,0,0,3,4,0,0,2,3,0,0,0,0,0,0,1,1,1,1,2,3,0,1,1,0,0,0 -050,01,085,Alabama,Lowndes County,9,14,575,268,307,99,88,165,218,0,0,1,0,0,0,3,1,101,89,165,219,3,1,1,0,1,0,265,304,97,87,165,216,0,0,1,0,0,0,2,1,99,88,165,217,2,1,1,0,0,0,3,3,2,1,0,2,0,0,0,0,0,0,1,0,2,1,0,2,1,0,0,0,1,0 -050,01,085,Alabama,Lowndes County,9,15,464,209,255,94,100,115,151,0,1,0,0,0,0,0,3,94,101,115,153,0,4,0,0,0,0,208,254,94,100,114,150,0,1,0,0,0,0,0,3,94,101,114,152,0,4,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,16,360,157,203,77,84,76,117,1,0,0,0,0,0,3,2,79,86,77,117,4,2,0,0,0,0,157,202,77,84,76,117,1,0,0,0,0,0,3,1,79,85,77,117,4,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,17,245,99,146,46,45,53,101,0,0,0,0,0,0,0,0,46,45,53,101,0,0,0,0,0,0,99,146,46,45,53,101,0,0,0,0,0,0,0,0,46,45,53,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,9,18,189,58,131,29,29,29,99,0,0,0,3,0,0,0,0,29,29,29,99,0,0,0,3,0,0,58,131,29,29,29,99,0,0,0,3,0,0,0,0,29,29,29,99,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,0,10100,4779,5321,1297,1280,3406,3965,18,15,17,19,4,0,37,42,1328,1317,3425,3988,36,34,23,25,4,0,4701,5227,1258,1239,3382,3930,16,14,10,14,4,0,31,30,1285,1265,3398,3945,30,28,15,19,4,0,78,94,39,41,24,35,2,1,7,5,0,0,6,12,43,52,27,43,6,6,8,6,0,0 -050,01,085,Alabama,Lowndes County,10,1,616,315,301,82,68,232,229,1,0,0,0,0,0,0,4,82,71,232,232,1,1,0,1,0,0,309,291,76,60,232,228,1,0,0,0,0,0,0,3,76,62,232,230,1,1,0,1,0,0,6,10,6,8,0,1,0,0,0,0,0,0,0,1,6,9,0,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,2,656,305,351,61,67,232,276,3,0,1,4,0,0,8,4,69,70,238,279,4,2,2,4,0,0,299,341,58,65,232,270,1,0,0,3,0,0,8,3,66,68,238,272,2,1,1,3,0,0,6,10,3,2,0,6,2,0,1,1,0,0,0,1,3,2,0,7,2,1,1,1,0,0 -050,01,085,Alabama,Lowndes County,10,3,589,295,294,64,55,225,235,0,0,1,1,0,0,5,3,67,58,229,237,1,1,3,1,0,0,284,290,57,52,223,235,0,0,0,0,0,0,4,3,60,55,226,237,0,1,2,0,0,0,11,4,7,3,2,0,0,0,1,1,0,0,1,0,7,3,3,0,1,0,1,1,0,0 -050,01,085,Alabama,Lowndes County,10,4,618,318,300,66,57,249,235,2,1,0,0,0,0,1,7,67,64,250,241,2,2,0,0,0,0,313,291,64,52,246,234,2,1,0,0,0,0,1,4,65,56,247,237,2,2,0,0,0,0,5,9,2,5,3,1,0,0,0,0,0,0,0,3,2,8,3,4,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,5,573,299,274,48,48,245,224,2,1,1,0,2,0,1,1,48,49,246,225,3,2,1,0,2,0,297,265,48,45,244,219,2,1,1,0,2,0,0,0,48,45,244,219,2,1,1,0,2,0,2,9,0,3,1,5,0,0,0,0,0,0,1,1,0,4,2,6,1,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,6,724,341,383,65,66,270,313,1,0,1,3,0,0,4,1,68,67,274,313,1,1,2,3,0,0,337,370,65,61,267,306,1,0,0,2,0,0,4,1,68,62,271,306,1,1,1,2,0,0,4,13,0,5,3,7,0,0,1,1,0,0,0,0,0,5,3,7,0,0,1,1,0,0 -050,01,085,Alabama,Lowndes County,10,7,524,266,258,47,57,212,200,3,1,2,0,1,0,1,0,48,57,212,200,4,1,2,0,1,0,254,254,43,55,206,198,3,1,0,0,1,0,1,0,44,55,206,198,4,1,0,0,1,0,12,4,4,2,6,2,0,0,2,0,0,0,0,0,4,2,6,2,0,0,2,0,0,0 -050,01,085,Alabama,Lowndes County,10,8,571,263,308,59,58,197,245,1,1,3,1,0,0,3,3,62,60,197,247,3,1,4,3,0,0,256,302,55,55,197,243,1,1,1,0,0,0,2,3,57,57,197,245,3,1,1,2,0,0,7,6,4,3,0,2,0,0,2,1,0,0,1,0,5,3,0,2,0,0,3,1,0,0 -050,01,085,Alabama,Lowndes County,10,9,525,253,272,65,68,181,202,1,0,2,1,1,0,3,1,68,69,181,202,3,0,3,2,1,0,248,267,63,64,178,201,1,0,2,1,1,0,3,1,66,65,178,201,3,0,3,2,1,0,5,5,2,4,3,1,0,0,0,0,0,0,0,0,2,4,3,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,10,590,265,325,80,92,180,229,2,1,2,1,0,0,1,2,81,94,180,230,3,1,2,2,0,0,261,323,77,91,179,229,2,1,2,1,0,0,1,1,78,92,179,230,3,1,2,1,0,0,4,2,3,1,1,0,0,0,0,0,0,0,0,1,3,2,1,0,0,0,0,1,0,0 -050,01,085,Alabama,Lowndes County,10,11,742,359,383,102,86,254,289,0,4,2,2,0,0,1,2,103,88,254,290,1,5,2,2,0,0,353,378,98,85,253,287,0,4,2,1,0,0,0,1,98,86,253,287,0,5,2,1,0,0,6,5,4,1,1,2,0,0,0,1,0,0,1,1,5,2,1,3,1,0,0,1,0,0 -050,01,085,Alabama,Lowndes County,10,12,788,346,442,105,102,240,336,1,1,0,2,0,0,0,1,105,102,240,337,1,2,0,2,0,0,345,438,105,99,239,335,1,1,0,2,0,0,0,1,105,99,239,336,1,2,0,2,0,0,1,4,0,3,1,1,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,13,749,371,378,118,107,251,262,0,4,1,1,0,0,1,4,119,111,251,262,1,7,1,2,0,0,367,371,116,107,249,259,0,3,1,1,0,0,1,1,117,108,249,259,1,3,1,2,0,0,4,7,2,0,2,3,0,1,0,0,0,0,0,3,2,3,2,3,0,4,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,14,556,246,310,88,95,152,212,0,0,1,0,0,0,5,3,92,98,154,213,4,2,1,0,0,0,242,307,86,94,152,210,0,0,1,0,0,0,3,3,88,97,153,211,3,2,1,0,0,0,4,3,2,1,0,2,0,0,0,0,0,0,2,0,4,1,1,2,1,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,15,470,216,254,92,92,124,157,0,1,0,0,0,0,0,4,92,95,124,158,0,5,0,0,0,0,215,253,92,92,123,156,0,1,0,0,0,0,0,4,92,95,123,157,0,5,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,16,367,158,209,75,85,79,122,1,0,0,0,0,0,3,2,77,87,80,123,4,1,0,0,0,0,158,207,75,85,79,121,1,0,0,0,0,0,3,1,77,86,80,121,4,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,17,241,105,136,48,44,57,92,0,0,0,0,0,0,0,0,48,44,57,92,0,0,0,0,0,0,105,136,48,44,57,92,0,0,0,0,0,0,0,0,48,44,57,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,10,18,201,58,143,32,33,26,107,0,0,0,3,0,0,0,0,32,33,26,107,0,0,0,3,0,0,58,143,32,33,26,107,0,0,0,3,0,0,0,0,32,33,26,107,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,0,9969,4696,5273,1283,1280,3334,3917,18,20,22,22,4,0,35,34,1315,1314,3351,3932,33,36,27,26,5,0,4620,5177,1246,1240,3310,3882,16,15,15,17,4,0,29,23,1272,1263,3323,3890,29,28,20,20,5,0,76,96,37,40,24,35,2,5,7,5,0,0,6,11,43,51,28,42,4,8,7,6,0,0 -050,01,085,Alabama,Lowndes County,11,1,613,328,285,80,66,246,213,1,3,0,0,0,0,1,3,81,69,246,213,1,5,1,1,0,0,325,275,77,60,246,213,1,0,0,0,0,0,1,2,78,62,246,213,1,1,1,1,0,0,3,10,3,6,0,0,0,3,0,0,0,0,0,1,3,7,0,0,0,4,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,2,658,314,344,58,71,247,264,3,0,2,4,0,0,4,5,62,76,249,268,4,1,3,4,0,0,308,332,55,66,247,259,1,0,1,3,0,0,4,4,59,70,249,262,2,1,2,3,0,0,6,12,3,5,0,5,2,0,1,1,0,0,0,1,3,6,0,6,2,0,1,1,0,0 -050,01,085,Alabama,Lowndes County,11,3,605,288,317,69,62,213,251,0,0,1,1,0,0,5,3,74,65,215,253,1,1,3,2,0,0,280,312,63,59,211,250,0,0,1,0,0,0,5,3,68,62,213,252,1,1,3,1,0,0,8,5,6,3,2,1,0,0,0,1,0,0,0,0,6,3,2,1,0,0,0,1,0,0 -050,01,085,Alabama,Lowndes County,11,4,561,296,265,54,49,237,211,0,2,1,0,0,0,4,3,58,52,238,214,3,2,1,0,0,0,291,259,52,46,236,210,0,2,0,0,0,0,3,1,55,47,237,211,2,2,0,0,0,0,5,6,2,3,1,1,0,0,1,0,0,0,1,2,3,5,1,3,1,0,1,0,0,0 -050,01,085,Alabama,Lowndes County,11,5,573,284,289,51,53,225,232,4,2,1,1,2,0,1,1,52,54,226,233,4,2,1,1,2,0,280,280,51,51,222,227,4,1,1,1,2,0,0,0,51,51,222,227,4,1,1,1,2,0,4,9,0,2,3,5,0,1,0,0,0,0,1,1,1,3,4,6,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,6,707,325,382,65,81,253,298,1,0,1,3,0,0,5,0,70,81,256,298,2,0,2,3,0,0,321,367,63,73,252,292,1,0,0,2,0,0,5,0,68,73,255,292,2,0,1,2,0,0,4,15,2,8,1,6,0,0,1,1,0,0,0,0,2,8,1,6,0,0,1,1,0,0 -050,01,085,Alabama,Lowndes County,11,7,537,264,273,52,45,205,227,3,1,2,0,1,0,1,0,53,45,206,227,3,1,2,0,1,0,250,270,48,45,197,224,3,1,0,0,1,0,1,0,49,45,198,224,3,1,0,0,1,0,14,3,4,0,8,3,0,0,2,0,0,0,0,0,4,0,8,3,0,0,2,0,0,0 -050,01,085,Alabama,Lowndes County,11,8,559,262,297,60,61,194,233,1,1,4,2,0,0,3,0,63,61,196,233,2,1,4,2,0,0,255,292,56,58,194,232,1,1,2,1,0,0,2,0,58,58,195,232,2,1,2,1,0,0,7,5,4,3,0,1,0,0,2,1,0,0,1,0,5,3,1,1,0,0,2,1,0,0 -050,01,085,Alabama,Lowndes County,11,9,503,244,259,66,60,173,197,1,0,3,1,1,0,0,1,66,61,173,198,1,0,3,1,1,0,240,255,64,58,171,195,1,0,3,1,1,0,0,1,64,59,171,196,1,0,3,1,1,0,4,4,2,2,2,2,0,0,0,0,0,0,0,0,2,2,2,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,10,576,264,312,76,92,185,218,1,1,1,1,0,0,1,0,77,92,185,218,2,1,1,1,0,0,259,308,73,89,183,217,1,1,1,1,0,0,1,0,74,89,183,217,2,1,1,1,0,0,5,4,3,3,2,1,0,0,0,0,0,0,0,0,3,3,2,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,11,687,320,367,93,90,222,269,1,2,3,2,0,0,1,4,94,94,223,269,1,5,3,3,0,0,315,362,90,89,221,268,1,2,3,1,0,0,0,2,90,91,221,268,1,4,3,1,0,0,5,5,3,1,1,1,0,0,0,1,0,0,1,2,4,3,2,1,0,1,0,2,0,0 -050,01,085,Alabama,Lowndes County,11,12,771,343,428,108,98,234,326,1,3,0,0,0,0,0,1,108,99,234,326,1,4,0,0,0,0,341,423,107,95,233,324,1,3,0,0,0,0,0,1,107,96,233,324,1,4,0,0,0,0,2,5,1,3,1,2,0,0,0,0,0,0,0,0,1,3,1,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,13,734,357,377,110,104,246,264,0,3,1,3,0,0,0,3,110,107,246,266,0,4,1,3,0,0,353,371,108,104,244,262,0,2,1,3,0,0,0,0,108,104,244,262,0,2,1,3,0,0,4,6,2,0,2,2,0,1,0,0,0,0,0,3,2,3,2,4,0,2,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,14,559,251,308,84,89,160,213,0,1,2,1,0,0,5,4,87,93,163,214,3,4,2,1,1,0,248,305,83,88,160,211,0,1,2,1,0,0,3,4,84,92,162,212,2,4,2,1,1,0,3,3,1,1,0,2,0,0,0,0,0,0,2,0,3,1,1,2,1,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,15,496,214,282,96,98,117,179,0,1,0,0,0,0,1,4,96,102,118,179,1,4,0,1,0,0,213,280,95,98,117,177,0,1,0,0,0,0,1,4,95,102,118,177,1,4,0,1,0,0,1,2,1,0,0,2,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,16,378,177,201,79,77,94,123,1,0,0,0,0,0,3,1,82,78,94,123,4,1,0,0,0,0,176,200,79,77,93,122,1,0,0,0,0,0,3,1,82,78,93,122,4,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,17,242,102,140,51,51,51,88,0,0,0,0,0,0,0,1,51,52,51,89,0,0,0,0,0,0,102,139,51,51,51,88,0,0,0,0,0,0,0,0,51,51,51,88,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,11,18,210,63,147,31,33,32,111,0,0,0,3,0,0,0,0,31,33,32,111,0,0,0,3,0,0,63,147,31,33,32,111,0,0,0,3,0,0,0,0,31,33,32,111,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,0,9726,4581,5145,1269,1243,3232,3827,16,17,24,23,4,0,36,35,1302,1271,3248,3844,36,35,26,30,5,1,4495,5046,1225,1201,3205,3789,14,15,17,18,4,0,30,23,1253,1218,3218,3802,30,25,19,23,5,1,86,99,44,42,27,38,2,2,7,5,0,0,6,12,49,53,30,42,6,10,7,7,0,0 -050,01,085,Alabama,Lowndes County,12,1,592,323,269,80,54,241,211,0,2,0,0,0,0,2,2,82,56,242,212,1,2,0,1,0,0,315,260,75,49,238,210,0,0,0,0,0,0,2,1,77,50,239,210,1,0,0,1,0,0,8,9,5,5,3,1,0,2,0,0,0,0,0,1,5,6,3,2,0,2,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,2,624,303,321,60,76,235,238,3,0,1,3,0,0,4,4,64,80,237,241,5,0,1,4,0,0,297,308,57,69,235,233,1,0,0,2,0,0,4,4,61,73,237,236,3,0,0,3,0,0,6,13,3,7,0,5,2,0,1,1,0,0,0,0,3,7,0,5,2,0,1,1,0,0 -050,01,085,Alabama,Lowndes County,12,3,597,286,311,68,61,212,244,0,0,0,2,0,0,6,4,74,63,217,246,1,1,0,4,0,1,275,306,59,60,210,242,0,0,0,1,0,0,6,3,65,61,215,244,1,0,0,3,0,1,11,5,9,1,2,2,0,0,0,1,0,0,0,1,9,2,2,2,0,1,0,1,0,0 -050,01,085,Alabama,Lowndes County,12,4,540,281,259,49,46,226,206,0,2,2,1,0,0,4,4,53,49,226,208,3,5,3,2,0,0,277,251,47,41,226,205,0,2,1,1,0,0,3,2,50,43,226,205,2,4,2,1,0,0,4,8,2,5,0,1,0,0,1,0,0,0,1,2,3,6,0,3,1,1,1,1,0,0 -050,01,085,Alabama,Lowndes County,12,5,530,258,272,44,43,207,226,4,1,1,0,2,0,0,2,44,45,207,226,4,2,1,1,2,0,255,265,44,42,204,222,4,1,1,0,2,0,0,0,44,42,204,222,4,1,1,0,2,0,3,7,0,1,3,4,0,0,0,0,0,0,0,2,0,3,3,4,0,1,0,1,0,0 -050,01,085,Alabama,Lowndes County,12,6,637,314,323,72,72,236,249,1,0,2,2,0,0,3,0,75,72,237,249,2,0,3,2,0,0,309,311,71,65,234,245,1,0,1,1,0,0,2,0,73,65,234,245,2,0,2,1,0,0,5,12,1,7,2,4,0,0,1,1,0,0,1,0,2,7,3,4,0,0,1,1,0,0 -050,01,085,Alabama,Lowndes County,12,7,589,285,304,59,53,221,248,2,1,1,1,0,0,2,1,61,54,222,248,3,2,1,1,0,0,272,296,53,50,215,243,2,1,0,1,0,0,2,1,55,51,216,243,3,2,0,1,0,0,13,8,6,3,6,5,0,0,1,0,0,0,0,0,6,3,6,5,0,0,1,0,0,0 -050,01,085,Alabama,Lowndes County,12,8,537,262,275,54,57,200,215,0,1,4,2,1,0,3,0,57,57,203,215,0,1,4,2,1,0,253,269,51,54,198,213,0,1,1,1,1,0,2,0,53,54,200,213,0,1,1,1,1,0,9,6,3,3,2,2,0,0,3,1,0,0,1,0,4,3,3,2,0,0,3,1,0,0 -050,01,085,Alabama,Lowndes County,12,9,473,216,257,62,63,149,193,1,0,3,0,0,0,1,1,63,64,149,194,2,0,3,0,0,0,211,255,59,63,147,191,1,0,3,0,0,0,1,1,60,64,147,192,2,0,3,0,0,0,5,2,3,0,2,2,0,0,0,0,0,0,0,0,3,0,2,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,10,553,255,298,69,73,181,223,2,1,1,1,1,0,1,0,70,73,181,223,3,1,1,1,1,0,254,291,69,68,180,221,2,1,1,1,1,0,1,0,70,68,180,221,3,1,1,1,1,0,1,7,0,5,1,2,0,0,0,0,0,0,0,0,0,5,1,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,11,654,294,360,84,99,203,254,1,1,5,3,0,0,1,3,85,102,203,256,2,2,5,3,0,0,286,355,79,98,201,253,1,1,5,2,0,0,0,1,79,99,201,254,1,1,5,2,0,0,8,5,5,1,2,1,0,0,0,1,0,0,1,2,6,3,2,2,1,1,0,1,0,0 -050,01,085,Alabama,Lowndes County,12,12,766,356,410,124,92,230,312,1,3,1,1,0,0,0,2,124,94,230,313,1,3,1,2,0,0,353,406,122,90,229,310,1,3,1,1,0,0,0,2,122,92,229,311,1,3,1,2,0,0,3,4,2,2,1,2,0,0,0,0,0,0,0,0,2,2,1,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,13,726,331,395,105,111,226,276,0,2,0,3,0,0,0,3,105,114,226,276,0,5,0,3,0,0,326,389,102,110,224,274,0,2,0,3,0,0,0,0,102,110,224,274,0,2,0,3,0,0,5,6,3,1,2,2,0,0,0,0,0,0,0,3,3,4,2,2,0,3,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,14,563,263,300,85,84,171,210,0,2,3,1,0,0,4,3,87,85,173,213,4,4,3,1,0,0,260,297,84,83,171,208,0,2,3,1,0,0,2,3,85,84,172,211,2,4,3,1,0,0,3,3,1,1,0,2,0,0,0,0,0,0,2,0,2,1,1,2,2,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,15,512,216,296,100,96,114,196,0,1,0,0,0,0,2,3,101,98,115,197,1,4,0,0,1,0,215,294,99,96,114,194,0,1,0,0,0,0,2,3,100,98,115,195,1,4,0,0,1,0,1,2,1,0,0,2,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,16,367,167,200,71,69,92,129,1,0,0,0,0,0,3,2,74,70,92,130,4,2,0,0,0,0,166,199,71,69,91,128,1,0,0,0,0,0,3,2,74,70,91,129,4,2,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,17,244,99,145,47,61,52,83,0,0,0,0,0,0,0,1,47,62,52,83,0,1,0,0,0,0,99,144,47,61,52,83,0,0,0,0,0,0,0,0,47,61,52,83,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0 -050,01,085,Alabama,Lowndes County,12,18,222,72,150,36,33,36,114,0,0,0,3,0,0,0,0,36,33,36,114,0,0,0,3,0,0,72,150,36,33,36,114,0,0,0,3,0,0,0,0,36,33,36,114,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,0,9641,4496,5145,1230,1230,3186,3841,16,18,23,22,4,0,37,34,1264,1260,3206,3852,32,40,28,27,4,3,4405,5041,1186,1182,3154,3804,14,16,16,17,4,0,31,22,1214,1202,3171,3810,27,32,20,18,4,1,91,104,44,48,32,37,2,2,7,5,0,0,6,12,50,58,35,42,5,8,8,9,0,2 -050,01,085,Alabama,Lowndes County,13,1,591,315,276,68,51,245,221,0,2,0,0,0,0,2,2,70,53,246,223,0,2,1,0,0,0,302,264,60,45,240,218,0,0,0,0,0,0,2,1,62,46,241,219,0,0,1,0,0,0,13,12,8,6,5,3,0,2,0,0,0,0,0,1,8,7,5,4,0,2,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,2,590,300,290,67,63,227,222,3,0,0,2,0,0,3,3,70,66,229,223,4,2,0,2,0,0,296,277,65,54,227,218,1,0,0,2,0,0,3,3,68,57,229,219,2,2,0,2,0,0,4,13,2,9,0,4,2,0,0,0,0,0,0,0,2,9,0,4,2,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,3,617,295,322,69,59,219,256,0,0,1,3,0,0,6,4,75,61,223,258,1,2,2,4,0,1,283,316,60,58,217,254,0,0,0,1,0,0,6,3,66,59,221,255,1,2,1,2,0,1,12,6,9,1,2,2,0,0,1,2,0,0,0,1,9,2,2,3,0,0,1,2,0,0 -050,01,085,Alabama,Lowndes County,13,4,525,263,262,46,47,211,210,0,1,2,1,0,0,4,3,50,50,213,212,1,2,3,1,0,0,258,255,44,42,210,209,0,1,1,1,0,0,3,2,47,44,212,210,0,2,2,1,0,0,5,7,2,5,1,1,0,0,1,0,0,0,1,1,3,6,1,2,1,0,1,0,0,0 -050,01,085,Alabama,Lowndes County,13,5,549,266,283,47,50,211,227,4,3,0,0,2,0,2,3,48,53,212,227,6,5,0,1,2,0,263,273,47,48,208,222,4,3,0,0,2,0,2,0,48,48,209,222,6,3,0,0,2,0,3,10,0,2,3,5,0,0,0,0,0,0,0,3,0,5,3,5,0,2,0,1,0,0 -050,01,085,Alabama,Lowndes County,13,6,617,302,315,64,67,232,247,0,0,3,1,0,0,3,0,67,67,234,247,1,0,3,1,0,0,295,306,63,60,228,245,0,0,2,1,0,0,2,0,65,60,229,245,1,0,2,1,0,0,7,9,1,7,4,2,0,0,1,0,0,0,1,0,2,7,5,2,0,0,1,0,0,0 -050,01,085,Alabama,Lowndes County,13,7,603,267,336,56,55,207,277,2,1,0,2,0,0,2,1,58,56,208,277,3,2,0,2,0,0,259,328,51,52,204,273,2,1,0,1,0,0,2,1,53,53,205,273,3,2,0,1,0,0,8,8,5,3,3,4,0,0,0,1,0,0,0,0,5,3,3,4,0,0,0,1,0,0 -050,01,085,Alabama,Lowndes County,13,8,499,254,245,44,52,203,190,1,1,3,2,1,0,2,0,46,52,203,190,3,1,3,2,1,0,244,242,42,52,198,188,1,1,1,1,1,0,1,0,43,52,198,188,2,1,1,1,1,0,10,3,2,0,5,2,0,0,2,1,0,0,1,0,3,0,5,2,1,0,2,1,0,0 -050,01,085,Alabama,Lowndes County,13,9,512,227,285,60,60,160,224,1,0,4,0,0,0,2,1,62,61,162,224,1,1,4,0,0,0,220,278,56,55,159,222,1,0,2,0,0,0,2,1,58,56,161,222,1,1,2,0,0,0,7,7,4,5,1,2,0,0,2,0,0,0,0,0,4,5,1,2,0,0,2,0,0,0 -050,01,085,Alabama,Lowndes County,13,10,502,229,273,63,71,160,200,2,1,2,1,1,0,1,0,64,71,160,200,3,1,2,1,1,0,227,266,63,66,158,198,2,1,2,1,1,0,1,0,64,66,158,198,3,1,2,1,1,0,2,7,0,5,2,2,0,0,0,0,0,0,0,0,0,5,2,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,11,619,283,336,85,98,191,233,1,1,5,1,0,0,1,3,86,101,192,234,1,3,5,1,0,0,276,332,80,97,190,232,1,1,5,1,0,0,0,1,80,98,190,233,1,1,5,1,0,0,7,4,5,1,1,1,0,0,0,0,0,0,1,2,6,3,2,1,0,2,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,12,763,359,404,122,100,236,298,1,3,0,2,0,0,0,1,122,101,236,298,1,4,0,2,0,0,356,400,121,99,234,296,1,3,0,1,0,0,0,1,121,100,234,296,1,4,0,1,0,0,3,4,1,1,2,2,0,0,0,1,0,0,0,0,1,1,2,2,0,0,0,1,0,0 -050,01,085,Alabama,Lowndes County,13,13,697,300,397,98,98,202,290,0,2,0,3,0,0,0,4,98,100,202,291,0,4,0,5,0,1,296,390,95,96,201,288,0,2,0,3,0,0,0,1,95,97,201,288,0,3,0,3,0,0,4,7,3,2,1,2,0,0,0,0,0,0,0,3,3,3,1,3,0,1,0,2,0,1 -050,01,085,Alabama,Lowndes County,13,14,617,295,322,98,87,191,229,0,2,2,1,0,0,4,3,101,90,193,229,2,5,4,1,0,0,291,320,97,87,190,227,0,2,2,1,0,0,2,3,98,90,191,227,1,5,3,1,0,0,4,2,1,0,1,2,0,0,0,0,0,0,2,0,3,0,2,2,1,0,1,0,0,0 -050,01,085,Alabama,Lowndes County,13,15,485,210,275,87,86,120,186,0,1,1,0,0,0,2,2,88,88,122,186,1,3,1,0,0,0,209,272,86,85,120,184,0,1,1,0,0,0,2,2,87,87,122,184,1,3,1,0,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,16,361,149,212,65,80,83,130,0,0,0,0,0,0,1,2,66,82,83,131,1,1,0,0,0,0,148,211,65,80,82,129,0,0,0,0,0,0,1,2,66,82,82,130,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,085,Alabama,Lowndes County,13,17,258,104,154,51,65,50,87,1,0,0,0,0,0,2,2,53,67,50,88,3,2,0,1,0,1,104,153,51,65,50,87,1,0,0,0,0,0,2,1,53,66,50,87,3,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1 -050,01,085,Alabama,Lowndes County,13,18,236,78,158,40,41,38,114,0,0,0,3,0,0,0,0,40,41,38,114,0,0,0,3,0,0,78,158,40,41,38,114,0,0,0,3,0,0,0,0,40,41,38,114,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,0,21452,9826,11626,1683,1658,7989,9784,13,16,41,35,2,1,98,132,1744,1752,8066,9898,61,70,64,56,9,12,9697,11523,1638,1637,7923,9718,12,16,41,35,1,1,82,116,1687,1726,7991,9816,54,66,54,47,7,6,129,103,45,21,66,66,1,0,0,0,1,0,16,16,57,26,75,82,7,4,10,9,2,6 -050,01,087,Alabama,Macon County,1,1,1169,588,581,81,87,489,473,0,0,2,1,0,0,16,20,94,102,501,490,7,4,3,5,1,2,582,572,79,86,485,468,0,0,2,1,0,0,16,17,92,100,497,482,7,4,3,3,1,1,6,9,2,1,4,5,0,0,0,0,0,0,0,3,2,2,4,8,0,0,0,2,0,1 -050,01,087,Alabama,Macon County,1,2,1068,526,542,69,73,449,460,0,1,3,2,0,0,5,6,72,76,454,466,2,2,4,4,1,1,521,535,68,71,445,456,0,1,3,2,0,0,5,5,71,74,450,461,2,2,4,3,1,0,5,7,1,2,4,4,0,0,0,0,0,0,0,1,1,2,4,5,0,0,0,1,0,1 -050,01,087,Alabama,Macon County,1,3,1249,607,642,67,85,535,551,0,0,2,1,0,0,3,5,70,90,537,556,0,1,3,1,0,0,603,640,66,84,532,550,0,0,2,1,0,0,3,5,69,89,534,555,0,1,3,1,0,0,4,2,1,1,3,1,0,0,0,0,0,0,0,0,1,1,3,1,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,4,2289,1086,1203,111,92,958,1090,0,3,0,0,0,0,17,18,122,105,974,1107,8,9,3,3,1,2,1066,1186,109,90,942,1075,0,3,0,0,0,0,15,18,119,103,956,1092,7,9,2,3,1,2,20,17,2,2,16,15,0,0,0,0,0,0,2,0,3,2,18,15,1,0,1,0,0,0 -050,01,087,Alabama,Macon County,1,5,2450,1041,1409,87,88,939,1302,1,1,2,3,0,0,12,15,91,97,950,1316,8,6,4,7,1,1,1017,1393,80,84,924,1292,1,1,2,3,0,0,10,13,83,93,933,1304,6,5,4,6,1,0,24,16,7,4,15,10,0,0,0,0,0,0,2,2,8,4,17,12,2,1,0,1,0,1 -050,01,087,Alabama,Macon County,1,6,1256,559,697,104,111,433,561,1,0,14,8,0,1,7,16,108,123,439,576,5,5,17,12,0,4,545,684,100,108,426,556,0,0,14,8,0,1,5,11,102,118,431,566,3,3,16,9,0,1,14,13,4,3,7,5,1,0,0,0,0,0,2,5,6,5,8,10,2,2,1,3,0,3 -050,01,087,Alabama,Macon County,1,7,971,488,483,88,77,389,394,0,0,6,4,0,0,5,8,89,84,394,398,1,6,9,4,2,0,478,481,84,77,384,392,0,0,6,4,0,0,4,8,85,84,388,396,1,6,8,4,1,0,10,2,4,0,5,2,0,0,0,0,0,0,1,0,4,0,6,2,0,0,1,0,1,0 -050,01,087,Alabama,Macon County,1,8,1127,511,616,99,98,406,506,0,1,3,3,0,0,3,8,100,106,409,513,2,5,4,3,0,0,504,611,95,97,404,502,0,1,3,3,0,0,2,8,96,105,406,509,2,5,3,3,0,0,7,5,4,1,2,4,0,0,0,0,0,0,1,0,4,1,3,4,0,0,1,0,0,0 -050,01,087,Alabama,Macon County,1,9,1128,509,619,122,102,384,511,0,1,2,3,1,0,0,2,122,102,384,513,0,3,2,3,1,0,503,612,118,99,383,507,0,1,2,3,0,0,0,2,118,99,383,509,0,3,2,3,0,0,6,7,4,3,1,4,0,0,0,0,1,0,0,0,4,3,1,4,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,1,10,1367,629,738,121,144,502,585,2,1,1,1,1,0,2,7,122,150,504,589,3,5,1,2,1,1,626,734,120,144,500,582,2,1,1,1,1,0,2,6,121,150,502,585,3,5,1,1,1,1,3,4,1,0,2,3,0,0,0,0,0,0,0,1,1,0,2,4,0,0,0,1,0,0 -050,01,087,Alabama,Macon County,1,11,1473,713,760,164,117,536,627,4,2,1,4,0,0,8,10,171,124,537,634,8,6,5,6,0,0,708,755,163,116,534,624,4,2,1,4,0,0,6,9,168,123,535,630,8,5,3,6,0,0,5,5,1,1,2,3,0,0,0,0,0,0,2,1,3,1,2,4,0,1,2,0,0,0 -050,01,087,Alabama,Macon County,1,12,1550,707,843,128,141,563,691,1,2,3,2,0,0,12,7,135,147,571,697,9,8,5,2,1,1,699,838,127,139,560,688,1,2,3,2,0,0,8,7,130,145,566,694,7,8,3,2,1,1,8,5,1,2,3,3,0,0,0,0,0,0,4,0,5,2,5,3,2,0,2,0,0,0 -050,01,087,Alabama,Macon County,1,13,1324,637,687,133,134,501,550,1,2,0,0,0,0,2,1,135,134,501,551,1,3,2,0,0,0,634,683,132,134,501,546,1,2,0,0,0,0,0,1,132,134,501,547,1,3,0,0,0,0,3,4,1,0,0,4,0,0,0,0,0,0,2,0,3,0,0,4,0,0,2,0,0,0 -050,01,087,Alabama,Macon County,1,14,978,439,539,126,105,307,430,2,1,0,2,0,0,4,1,128,105,311,431,4,2,0,2,0,0,438,537,126,104,306,429,2,1,0,2,0,0,4,1,128,104,310,430,4,2,0,2,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,15,682,282,400,60,63,220,335,1,1,0,0,0,0,1,1,61,63,221,336,2,2,0,0,0,0,279,400,57,63,220,335,1,1,0,0,0,0,1,1,58,63,221,336,2,2,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,16,545,223,322,66,45,156,273,0,0,1,0,0,0,0,4,66,47,156,277,0,2,1,0,0,0,220,320,63,45,156,273,0,0,1,0,0,0,0,2,63,45,156,275,0,2,1,0,0,0,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,2,0,2,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,17,428,158,270,33,57,124,212,0,0,1,0,0,0,0,1,33,57,124,213,0,1,1,0,0,0,154,269,29,57,124,211,0,0,1,0,0,0,0,1,29,57,124,212,0,1,1,0,0,0,4,1,4,0,0,1,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,1,18,398,123,275,24,39,98,233,0,0,0,1,0,0,1,2,25,40,99,235,1,0,0,2,0,0,120,273,22,39,97,232,0,0,0,1,0,0,1,1,23,40,98,233,1,0,0,1,0,0,3,2,2,0,1,1,0,0,0,0,0,0,0,1,2,0,1,2,0,0,0,1,0,0 -050,01,087,Alabama,Macon County,2,0,21459,9829,11630,1687,1663,7988,9783,13,16,41,35,2,1,98,132,1748,1757,8065,9897,61,70,64,56,9,12,9699,11527,1641,1642,7922,9717,12,16,41,35,1,1,82,116,1690,1731,7990,9815,54,66,54,47,7,6,130,103,46,21,66,66,1,0,0,0,1,0,16,16,58,26,75,82,7,4,10,9,2,6 -050,01,087,Alabama,Macon County,2,1,1170,589,581,81,87,490,473,0,0,2,1,0,0,16,20,94,102,502,490,7,4,3,5,1,2,583,572,79,86,486,468,0,0,2,1,0,0,16,17,92,100,498,482,7,4,3,3,1,1,6,9,2,1,4,5,0,0,0,0,0,0,0,3,2,2,4,8,0,0,0,2,0,1 -050,01,087,Alabama,Macon County,2,2,1071,527,544,70,75,449,460,0,1,3,2,0,0,5,6,73,78,454,466,2,2,4,4,1,1,522,537,69,73,445,456,0,1,3,2,0,0,5,5,72,76,450,461,2,2,4,3,1,0,5,7,1,2,4,4,0,0,0,0,0,0,0,1,1,2,4,5,0,0,0,1,0,1 -050,01,087,Alabama,Macon County,2,3,1251,608,643,68,86,535,551,0,0,2,1,0,0,3,5,71,91,537,556,0,1,3,1,0,0,604,641,67,85,532,550,0,0,2,1,0,0,3,5,70,90,534,555,0,1,3,1,0,0,4,2,1,1,3,1,0,0,0,0,0,0,0,0,1,1,3,1,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,4,2289,1086,1203,111,92,958,1090,0,3,0,0,0,0,17,18,122,105,974,1107,8,9,3,3,1,2,1066,1186,109,90,942,1075,0,3,0,0,0,0,15,18,119,103,956,1092,7,9,2,3,1,2,20,17,2,2,16,15,0,0,0,0,0,0,2,0,3,2,18,15,1,0,1,0,0,0 -050,01,087,Alabama,Macon County,2,5,2450,1041,1409,87,88,939,1302,1,1,2,3,0,0,12,15,91,97,950,1316,8,6,4,7,1,1,1017,1393,80,84,924,1292,1,1,2,3,0,0,10,13,83,93,933,1304,6,5,4,6,1,0,24,16,7,4,15,10,0,0,0,0,0,0,2,2,8,4,17,12,2,1,0,1,0,1 -050,01,087,Alabama,Macon County,2,6,1255,559,696,104,111,433,560,1,0,14,8,0,1,7,16,108,123,439,575,5,5,17,12,0,4,545,683,100,108,426,555,0,0,14,8,0,1,5,11,102,118,431,565,3,3,16,9,0,1,14,13,4,3,7,5,1,0,0,0,0,0,2,5,6,5,8,10,2,2,1,3,0,3 -050,01,087,Alabama,Macon County,2,7,972,488,484,88,78,389,394,0,0,6,4,0,0,5,8,89,85,394,398,1,6,9,4,2,0,478,482,84,78,384,392,0,0,6,4,0,0,4,8,85,85,388,396,1,6,8,4,1,0,10,2,4,0,5,2,0,0,0,0,0,0,1,0,4,0,6,2,0,0,1,0,1,0 -050,01,087,Alabama,Macon County,2,8,1130,513,617,101,98,406,507,0,1,3,3,0,0,3,8,102,106,409,514,2,5,4,3,0,0,505,612,96,97,404,503,0,1,3,3,0,0,2,8,97,105,406,510,2,5,3,3,0,0,8,5,5,1,2,4,0,0,0,0,0,0,1,0,5,1,3,4,0,0,1,0,0,0 -050,01,087,Alabama,Macon County,2,9,1127,508,619,122,102,383,511,0,1,2,3,1,0,0,2,122,102,383,513,0,3,2,3,1,0,502,612,118,99,382,507,0,1,2,3,0,0,0,2,118,99,382,509,0,3,2,3,0,0,6,7,4,3,1,4,0,0,0,0,1,0,0,0,4,3,1,4,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,2,10,1367,629,738,121,144,502,585,2,1,1,1,1,0,2,7,122,150,504,589,3,5,1,2,1,1,626,734,120,144,500,582,2,1,1,1,1,0,2,6,121,150,502,585,3,5,1,1,1,1,3,4,1,0,2,3,0,0,0,0,0,0,0,1,1,0,2,4,0,0,0,1,0,0 -050,01,087,Alabama,Macon County,2,11,1472,712,760,164,117,535,627,4,2,1,4,0,0,8,10,171,124,536,634,8,6,5,6,0,0,707,755,163,116,533,624,4,2,1,4,0,0,6,9,168,123,534,630,8,5,3,6,0,0,5,5,1,1,2,3,0,0,0,0,0,0,2,1,3,1,2,4,0,1,2,0,0,0 -050,01,087,Alabama,Macon County,2,12,1550,707,843,128,142,563,690,1,2,3,2,0,0,12,7,135,148,571,696,9,8,5,2,1,1,699,838,127,140,560,687,1,2,3,2,0,0,8,7,130,146,566,693,7,8,3,2,1,1,8,5,1,2,3,3,0,0,0,0,0,0,4,0,5,2,5,3,2,0,2,0,0,0 -050,01,087,Alabama,Macon County,2,13,1324,637,687,133,134,501,550,1,2,0,0,0,0,2,1,135,134,501,551,1,3,2,0,0,0,634,683,132,134,501,546,1,2,0,0,0,0,0,1,132,134,501,547,1,3,0,0,0,0,3,4,1,0,0,4,0,0,0,0,0,0,2,0,3,0,0,4,0,0,2,0,0,0 -050,01,087,Alabama,Macon County,2,14,978,439,539,126,105,307,430,2,1,0,2,0,0,4,1,128,105,311,431,4,2,0,2,0,0,438,537,126,104,306,429,2,1,0,2,0,0,4,1,128,104,310,430,4,2,0,2,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,15,682,282,400,60,63,220,335,1,1,0,0,0,0,1,1,61,63,221,336,2,2,0,0,0,0,279,400,57,63,220,335,1,1,0,0,0,0,1,1,58,63,221,336,2,2,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,16,545,223,322,66,45,156,273,0,0,1,0,0,0,0,4,66,47,156,277,0,2,1,0,0,0,220,320,63,45,156,273,0,0,1,0,0,0,0,2,63,45,156,275,0,2,1,0,0,0,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,2,0,2,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,17,428,158,270,33,57,124,212,0,0,1,0,0,0,0,1,33,57,124,213,0,1,1,0,0,0,154,269,29,57,124,211,0,0,1,0,0,0,0,1,29,57,124,212,0,1,1,0,0,0,4,1,4,0,0,1,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,2,18,398,123,275,24,39,98,233,0,0,0,1,0,0,1,2,25,40,99,235,1,0,0,2,0,0,120,273,22,39,97,232,0,0,0,1,0,0,1,1,23,40,98,233,1,0,0,1,0,0,3,2,2,0,1,1,0,0,0,0,0,0,0,1,2,0,1,2,0,0,0,1,0,0 -050,01,087,Alabama,Macon County,3,0,21515,9851,11664,1705,1686,7982,9785,13,16,45,35,2,1,104,141,1791,1789,8037,9865,65,78,62,68,6,11,9720,11549,1653,1659,7920,9715,12,16,45,35,1,1,89,123,1727,1748,7970,9785,55,70,58,64,4,9,131,115,52,27,62,70,1,0,0,0,1,0,15,18,64,41,67,80,10,8,4,4,2,2 -050,01,087,Alabama,Macon County,3,1,1176,597,579,86,86,490,470,0,0,3,1,0,0,18,22,104,106,502,484,4,9,4,2,1,0,590,567,83,85,486,463,0,0,3,1,0,0,18,18,101,101,498,475,4,7,4,2,1,0,7,12,3,1,4,7,0,0,0,0,0,0,0,4,3,5,4,9,0,2,0,0,0,0 -050,01,087,Alabama,Macon County,3,2,1062,517,545,70,75,439,460,0,1,3,3,0,0,5,6,75,79,440,463,1,4,5,5,1,0,513,537,69,72,436,456,0,1,3,3,0,0,5,5,74,76,437,459,1,3,5,4,1,0,4,8,1,3,3,4,0,0,0,0,0,0,0,1,1,3,3,4,0,1,0,1,0,0 -050,01,087,Alabama,Macon County,3,3,1241,602,639,67,90,529,541,0,0,2,1,0,0,4,7,71,97,531,546,2,2,2,1,0,0,598,636,66,88,526,540,0,0,2,1,0,0,4,7,70,95,528,545,2,2,2,1,0,0,4,3,1,2,3,1,0,0,0,0,0,0,0,0,1,2,3,1,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,4,2300,1087,1213,111,94,957,1098,0,3,2,0,0,0,17,18,124,107,967,1109,9,7,6,6,0,2,1067,1193,108,90,941,1082,0,3,2,0,0,0,16,18,120,103,951,1093,8,7,6,6,0,2,20,20,3,4,16,16,0,0,0,0,0,0,1,0,4,4,16,16,1,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,5,2496,1074,1422,95,93,963,1310,1,1,2,2,0,0,13,16,102,103,973,1323,7,9,4,4,1,1,1051,1405,88,88,949,1300,1,1,2,2,0,0,11,14,95,97,958,1311,6,8,3,4,0,1,23,17,7,5,14,10,0,0,0,0,0,0,2,2,7,6,15,12,1,1,1,0,1,0 -050,01,087,Alabama,Macon County,3,6,1261,554,707,103,115,427,567,1,0,15,8,0,1,8,16,110,127,431,572,6,6,16,14,1,5,541,693,99,111,420,562,0,0,15,8,0,1,7,11,105,119,424,566,4,4,16,12,1,3,13,14,4,4,7,5,1,0,0,0,0,0,1,5,5,8,7,6,2,2,0,2,0,2 -050,01,087,Alabama,Macon County,3,7,974,487,487,92,81,385,394,0,0,6,4,0,0,4,8,96,88,386,399,3,2,6,6,0,1,477,485,88,81,380,392,0,0,6,4,0,0,3,8,91,88,380,397,3,2,6,6,0,1,10,2,4,0,5,2,0,0,0,0,0,0,1,0,5,0,6,2,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,8,1114,502,612,99,97,397,502,0,1,3,3,0,0,3,9,102,102,397,508,3,6,3,6,0,0,493,606,93,96,395,497,0,1,3,3,0,0,2,9,95,101,395,503,2,6,3,6,0,0,9,6,6,1,2,5,0,0,0,0,0,0,1,0,7,1,2,5,1,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,9,1126,513,613,125,103,385,504,0,1,2,3,1,0,0,2,125,104,385,505,0,3,2,3,1,0,506,606,120,100,384,500,0,1,2,3,0,0,0,2,120,101,384,501,0,3,2,3,0,0,7,7,5,3,1,4,0,0,0,0,1,0,0,0,5,3,1,4,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,3,10,1348,616,732,119,141,492,582,2,1,1,1,1,0,1,7,120,146,492,584,3,6,1,3,1,1,613,728,117,141,491,579,2,1,1,1,1,0,1,6,118,145,491,580,3,5,1,3,1,1,3,4,2,0,1,3,0,0,0,0,0,0,0,1,2,1,1,4,0,1,0,0,0,0 -050,01,087,Alabama,Macon County,3,11,1478,713,765,160,121,539,627,4,2,1,4,0,0,9,11,168,128,543,631,10,10,2,7,0,0,708,760,159,120,537,624,4,2,1,4,0,0,7,10,165,126,541,628,8,9,2,7,0,0,5,5,1,1,2,3,0,0,0,0,0,0,2,1,3,2,2,3,2,1,0,0,0,0 -050,01,087,Alabama,Macon County,3,12,1543,707,836,131,142,559,683,1,2,3,2,0,0,13,7,141,145,564,688,9,5,7,4,0,1,699,831,130,140,557,680,1,2,3,2,0,0,8,7,136,143,560,685,6,5,5,4,0,1,8,5,1,2,2,3,0,0,0,0,0,0,5,0,5,2,4,3,3,0,2,0,0,0 -050,01,087,Alabama,Macon County,3,13,1356,652,704,136,135,512,565,1,2,0,0,0,0,3,2,139,137,514,565,1,3,1,1,0,0,648,700,134,135,512,561,1,2,0,0,0,0,1,2,135,137,513,561,1,3,0,1,0,0,4,4,2,0,0,4,0,0,0,0,0,0,2,0,4,0,1,4,0,0,1,0,0,0 -050,01,087,Alabama,Macon County,3,14,981,440,541,126,108,309,429,2,1,0,2,0,0,3,1,127,109,312,429,3,2,1,2,0,0,439,539,126,107,308,428,2,1,0,2,0,0,3,1,127,108,311,428,3,2,1,2,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,15,683,282,401,61,62,218,337,1,1,0,0,0,0,2,1,62,62,219,338,3,2,0,0,0,0,279,401,58,62,218,337,1,1,0,0,0,0,2,1,59,62,219,338,3,2,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,16,556,228,328,67,49,160,274,0,0,1,0,0,0,0,5,67,53,160,277,0,1,1,2,0,0,225,325,64,49,160,274,0,0,1,0,0,0,0,2,64,51,160,274,0,1,1,1,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,2,0,3,0,0,0,1,0,0 -050,01,087,Alabama,Macon County,3,17,424,156,268,33,56,122,211,0,0,1,0,0,0,0,1,33,57,122,211,0,0,1,1,0,0,152,267,29,56,122,210,0,0,1,0,0,0,0,1,29,57,122,210,0,0,1,1,0,0,4,1,4,0,0,1,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,3,18,396,124,272,24,38,99,231,0,0,0,1,0,0,1,2,25,39,99,233,1,1,0,1,0,0,121,270,22,38,98,230,0,0,0,1,0,0,1,1,23,38,98,231,1,1,0,1,0,0,3,2,2,0,1,1,0,0,0,0,0,0,0,1,2,1,1,2,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,0,21299,9800,11499,1715,1684,7930,9615,18,17,32,37,2,3,103,143,1796,1790,7992,9702,65,76,55,70,7,12,9634,11349,1643,1635,7857,9536,15,16,32,37,1,1,86,124,1712,1728,7913,9612,54,66,49,65,3,9,166,150,72,49,73,79,3,1,0,0,1,2,17,19,84,62,79,90,11,10,6,5,4,3 -050,01,087,Alabama,Macon County,4,1,1096,566,530,94,83,456,424,0,1,2,1,0,0,14,21,107,102,467,437,5,7,4,4,0,1,551,519,87,82,449,417,0,1,2,1,0,0,13,18,99,99,460,429,4,4,4,4,0,1,15,11,7,1,7,7,0,0,0,0,0,0,1,3,8,3,7,8,1,3,0,0,0,0 -050,01,087,Alabama,Macon County,4,2,1053,519,534,69,70,438,451,1,1,2,3,0,0,9,9,78,78,445,456,1,6,3,3,1,0,511,520,64,63,435,446,1,1,2,3,0,0,9,7,73,69,442,451,1,4,3,3,1,0,8,14,5,7,3,5,0,0,0,0,0,0,0,2,5,9,3,5,0,2,0,0,0,0 -050,01,087,Alabama,Macon County,4,3,1181,577,604,65,87,506,507,0,0,2,1,0,0,4,9,69,96,510,512,1,1,2,2,0,2,572,602,63,87,503,505,0,0,2,1,0,0,4,9,67,96,507,510,1,1,2,2,0,2,5,2,2,0,3,2,0,0,0,0,0,0,0,0,2,0,3,2,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,4,2266,1055,1211,108,108,926,1080,0,2,3,2,0,1,18,18,121,119,938,1096,11,4,6,7,0,4,1026,1177,102,93,905,1062,0,2,3,2,0,0,16,18,114,104,915,1078,10,4,6,7,0,3,29,34,6,15,21,18,0,0,0,0,0,1,2,0,7,15,23,18,1,0,0,0,0,1 -050,01,087,Alabama,Macon County,4,5,2723,1225,1498,119,111,1086,1364,5,2,1,4,0,1,14,16,126,124,1098,1374,11,10,4,8,0,1,1197,1473,107,101,1074,1352,3,2,1,4,0,0,12,14,113,113,1085,1360,8,9,3,8,0,0,28,25,12,10,12,12,2,0,0,0,0,1,2,2,13,11,13,14,3,1,1,0,0,1 -050,01,087,Alabama,Macon County,4,6,1186,518,668,82,95,421,552,0,0,7,7,0,1,8,13,89,104,424,560,4,6,9,11,0,1,502,656,77,93,411,547,0,0,7,7,0,1,7,8,83,97,414,552,3,4,9,10,0,1,16,12,5,2,10,5,0,0,0,0,0,0,1,5,6,7,10,8,1,2,0,1,0,0 -050,01,087,Alabama,Macon County,4,7,999,483,516,92,90,384,412,1,0,4,5,0,0,2,9,94,98,384,417,1,4,6,8,0,0,473,510,89,89,379,408,0,0,4,5,0,0,1,8,90,96,379,412,0,4,5,8,0,0,10,6,3,1,5,4,1,0,0,0,0,0,1,1,4,2,5,5,1,0,1,0,0,0 -050,01,087,Alabama,Macon County,4,8,1016,464,552,91,81,367,460,0,1,2,2,0,0,4,8,95,86,368,465,2,4,3,5,0,0,458,540,88,77,365,452,0,1,2,2,0,0,3,8,91,82,366,457,1,4,3,5,0,0,6,12,3,4,2,8,0,0,0,0,0,0,1,0,4,4,2,8,1,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,9,1110,516,594,123,104,389,485,1,0,2,1,1,0,0,4,123,106,389,487,1,3,2,2,1,0,504,585,115,99,386,481,1,0,2,1,0,0,0,4,115,101,386,483,1,3,2,2,0,0,12,9,8,5,3,4,0,0,0,0,1,0,0,0,8,5,3,4,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,4,10,1291,572,719,116,137,454,573,1,2,0,2,1,0,0,5,116,139,454,575,1,6,0,3,1,1,568,715,113,137,453,570,1,2,0,2,1,0,0,4,113,139,453,572,1,6,0,2,1,0,4,4,3,0,1,3,0,0,0,0,0,0,0,1,3,0,1,3,0,0,0,1,0,1 -050,01,087,Alabama,Macon County,4,11,1444,685,759,155,132,514,611,4,2,2,3,0,0,10,11,161,140,520,615,10,7,3,7,2,1,678,756,153,132,511,609,4,2,2,3,0,0,8,10,158,139,516,613,9,6,3,7,1,1,7,3,2,0,3,2,0,0,0,0,0,0,2,1,3,1,4,2,1,1,0,0,1,0 -050,01,087,Alabama,Macon County,4,12,1500,700,800,141,136,546,654,2,3,3,3,0,0,8,4,147,139,548,656,6,6,6,3,2,0,692,793,139,133,544,651,2,2,3,3,0,0,4,4,143,136,544,653,5,5,4,3,0,0,8,7,2,3,2,3,0,1,0,0,0,0,4,0,4,3,4,3,1,1,2,0,2,0 -050,01,087,Alabama,Macon County,4,13,1399,673,726,144,135,523,585,1,1,0,0,0,0,5,5,147,139,525,586,2,5,4,1,0,0,669,724,142,135,523,583,1,1,0,0,0,0,3,5,143,139,525,584,2,5,2,1,0,0,4,2,2,0,0,2,0,0,0,0,0,0,2,0,4,0,0,2,0,0,2,0,0,0 -050,01,087,Alabama,Macon County,4,14,976,442,534,123,113,317,415,0,2,0,2,0,0,2,2,125,114,317,417,2,4,0,2,0,0,440,531,123,112,316,413,0,2,0,2,0,0,1,2,124,113,316,415,1,4,0,2,0,0,2,3,0,1,1,2,0,0,0,0,0,0,1,0,1,1,1,2,1,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,15,687,292,395,67,58,219,337,2,0,0,0,0,0,4,0,71,58,221,337,6,0,1,0,0,0,289,395,64,58,219,337,2,0,0,0,0,0,4,0,68,58,221,337,6,0,1,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,16,567,236,331,65,54,170,272,0,0,1,0,0,0,0,5,65,55,170,276,0,2,1,2,0,1,233,329,62,54,170,272,0,0,1,0,0,0,0,3,62,55,170,274,0,2,1,0,0,1,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,2,0,0,0,2,0,0 -050,01,087,Alabama,Macon County,4,17,415,152,263,38,52,113,209,0,0,1,0,0,0,0,2,38,54,113,210,0,1,1,0,0,0,148,261,34,52,113,208,0,0,1,0,0,0,0,1,34,53,113,208,0,1,1,0,0,0,4,2,4,0,0,1,0,0,0,0,0,0,0,1,4,1,0,2,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,4,18,390,125,265,23,38,101,224,0,0,0,1,0,0,1,2,24,39,101,226,1,0,0,2,0,0,123,263,21,38,101,223,0,0,0,1,0,0,1,1,22,39,101,224,1,0,0,1,0,0,2,2,2,0,0,1,0,0,0,0,0,0,0,1,2,0,0,2,0,0,0,1,0,0 -050,01,087,Alabama,Macon County,5,0,20625,9547,11078,1732,1651,7643,9216,14,20,37,36,2,1,119,154,1821,1778,7714,9302,67,78,60,66,10,14,9381,10916,1651,1584,7575,9145,13,18,37,35,1,1,104,133,1728,1694,7641,9216,56,67,57,64,8,13,166,162,81,67,68,71,1,2,0,1,1,0,15,21,93,84,73,86,11,11,3,2,2,1 -050,01,087,Alabama,Macon County,5,1,1057,537,520,89,92,430,404,0,2,3,1,0,0,15,21,104,113,438,420,4,7,5,2,1,0,522,504,80,81,425,400,0,2,3,1,0,0,14,20,94,101,433,415,3,7,5,2,1,0,15,16,9,11,5,4,0,0,0,0,0,0,1,1,10,12,5,5,1,0,0,0,0,0 -050,01,087,Alabama,Macon County,5,2,1001,506,495,70,60,424,416,0,1,3,3,0,0,9,15,78,75,432,427,1,3,4,5,0,0,497,480,66,55,419,410,0,1,3,3,0,0,9,11,74,66,427,418,1,2,4,5,0,0,9,15,4,5,5,6,0,0,0,0,0,0,0,4,4,9,5,9,0,1,0,0,0,0 -050,01,087,Alabama,Macon County,5,3,1085,543,542,67,70,466,464,0,0,1,1,0,0,9,7,74,75,473,467,2,4,3,2,0,1,535,537,62,68,463,461,0,0,1,1,0,0,9,7,69,73,470,464,2,4,3,2,0,1,8,5,5,2,3,3,0,0,0,0,0,0,0,0,5,2,3,3,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,5,4,2047,961,1086,97,96,841,967,1,3,5,2,0,0,17,18,110,110,852,979,10,6,8,6,1,3,938,1056,91,85,824,952,1,2,5,1,0,0,17,16,104,97,835,962,10,5,8,5,1,3,23,30,6,11,17,15,0,1,0,1,0,0,0,2,6,13,17,17,0,1,0,1,0,0 -050,01,087,Alabama,Macon County,5,5,2660,1202,1458,144,142,1033,1292,0,1,5,5,0,0,20,18,152,155,1048,1303,11,9,9,9,2,2,1177,1427,133,125,1022,1279,0,1,5,5,0,0,17,17,139,138,1036,1289,9,8,8,9,2,2,25,31,11,17,11,13,0,0,0,0,0,0,3,1,13,17,12,14,2,1,1,0,0,0 -050,01,087,Alabama,Macon County,5,6,1148,520,628,84,83,417,528,1,1,7,5,0,1,11,10,93,92,424,533,5,3,10,7,0,3,503,618,80,78,405,525,1,1,7,5,0,1,10,8,88,85,411,529,5,2,10,7,0,3,17,10,4,5,12,3,0,0,0,0,0,0,1,2,5,7,13,4,0,1,0,0,0,0 -050,01,087,Alabama,Macon County,5,7,940,451,489,83,83,365,393,1,0,1,2,0,0,1,11,84,92,365,399,2,4,1,5,0,1,441,477,79,80,360,389,0,0,1,2,0,0,1,6,80,85,360,391,1,2,1,5,0,0,10,12,4,3,5,4,1,0,0,0,0,0,0,5,4,7,5,8,1,2,0,0,0,1 -050,01,087,Alabama,Macon County,5,8,938,445,493,93,64,344,415,0,1,2,4,0,0,6,9,98,70,346,417,1,6,5,7,1,2,435,483,86,62,343,407,0,1,2,4,0,0,4,9,90,68,344,409,1,6,4,7,0,2,10,10,7,2,1,8,0,0,0,0,0,0,2,0,8,2,2,8,0,0,1,0,1,0 -050,01,087,Alabama,Macon County,5,9,1098,504,594,108,106,394,482,0,0,1,0,1,0,0,6,108,111,394,484,0,2,1,2,1,1,494,589,101,102,392,481,0,0,1,0,0,0,0,6,101,107,392,483,0,2,1,2,0,1,10,5,7,4,2,1,0,0,0,0,1,0,0,0,7,4,2,1,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,5,10,1226,562,664,113,120,445,535,0,2,2,2,1,0,1,5,114,125,445,537,1,3,2,3,1,1,558,658,110,118,444,532,0,2,2,2,1,0,1,4,111,122,444,534,1,2,2,3,1,1,4,6,3,2,1,3,0,0,0,0,0,0,0,1,3,3,1,3,0,1,0,0,0,0 -050,01,087,Alabama,Macon County,5,11,1401,658,743,164,141,478,588,6,1,2,4,0,0,8,9,171,148,481,591,11,6,3,7,1,0,650,740,160,140,475,586,6,1,2,4,0,0,7,9,166,147,478,589,10,6,3,7,1,0,8,3,4,1,3,2,0,0,0,0,0,0,1,0,5,1,3,2,1,0,0,0,0,0 -050,01,087,Alabama,Macon County,5,12,1460,681,779,148,126,522,639,2,5,1,4,0,0,8,5,153,128,526,642,8,9,2,5,1,0,675,771,146,124,521,635,2,4,1,4,0,0,5,4,149,125,523,638,5,7,2,5,1,0,6,8,2,2,1,4,0,1,0,0,0,0,3,1,4,3,3,4,3,2,0,0,0,0 -050,01,087,Alabama,Macon County,5,13,1420,657,763,125,139,522,616,1,1,2,0,0,0,7,7,131,144,524,621,5,5,4,1,0,0,651,761,123,138,521,615,1,1,2,0,0,0,4,7,126,143,523,620,3,5,3,1,0,0,6,2,2,1,1,1,0,0,0,0,0,0,3,0,5,1,1,1,2,0,1,0,0,0 -050,01,087,Alabama,Macon County,5,14,1046,485,561,136,120,347,438,0,2,0,1,0,0,2,0,138,120,347,438,2,2,0,1,0,0,482,558,135,119,346,436,0,2,0,1,0,0,1,0,136,119,346,436,1,2,0,1,0,0,3,3,1,1,1,2,0,0,0,0,0,0,1,0,2,1,1,2,1,0,0,0,0,0 -050,01,087,Alabama,Macon County,5,15,740,325,415,82,69,237,342,2,0,0,1,0,0,4,3,83,72,240,343,4,3,1,1,1,0,322,415,79,69,237,342,2,0,0,1,0,0,4,3,80,72,240,343,4,3,1,1,1,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,5,16,554,230,324,60,53,169,268,0,0,1,0,0,0,0,3,60,56,169,268,0,2,1,1,0,0,227,324,57,53,169,268,0,0,1,0,0,0,0,3,57,56,169,268,0,2,1,1,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,5,17,411,157,254,45,46,111,204,0,0,1,0,0,0,0,4,45,48,111,207,0,2,1,1,0,0,153,251,41,46,111,204,0,0,1,0,0,0,0,1,41,47,111,204,0,1,1,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,1,0,3,0,1,0,1,0,0 -050,01,087,Alabama,Macon County,5,18,393,123,270,24,41,98,225,0,0,0,1,0,0,1,3,25,44,99,226,0,2,0,1,0,0,121,267,22,41,98,223,0,0,0,1,0,0,1,2,23,43,99,224,0,1,0,1,0,0,2,3,2,0,0,2,0,0,0,0,0,0,0,1,2,1,0,2,0,1,0,0,0,0 -050,01,087,Alabama,Macon County,6,0,20043,9232,10811,1627,1540,7437,9078,14,21,44,27,2,1,108,144,1710,1653,7499,9161,69,74,66,59,6,17,9078,10682,1557,1495,7371,9017,13,18,44,27,1,1,92,124,1627,1593,7428,9087,59,61,61,55,3,15,154,129,70,45,66,61,1,3,0,0,1,0,16,20,83,60,71,74,10,13,5,4,3,2 -050,01,087,Alabama,Macon County,6,1,981,505,476,79,74,410,382,0,1,5,0,0,0,11,19,89,92,418,393,2,3,7,5,1,2,492,466,70,71,406,376,0,1,5,0,0,0,11,18,80,88,414,387,2,2,7,5,1,2,13,10,9,3,4,6,0,0,0,0,0,0,0,1,9,4,4,6,0,1,0,0,0,0 -050,01,087,Alabama,Macon County,6,2,971,483,488,73,61,395,410,0,2,3,4,0,0,12,11,84,70,401,417,2,4,7,7,1,1,471,474,67,56,392,404,0,2,3,4,0,0,9,8,75,64,398,409,1,3,6,6,0,0,12,14,6,5,3,6,0,0,0,0,0,0,3,3,9,6,3,8,1,1,1,1,1,1 -050,01,087,Alabama,Macon County,6,3,1020,498,522,60,68,428,445,0,0,2,1,0,0,8,8,67,76,434,450,3,3,3,1,0,0,491,516,56,64,425,444,0,0,2,1,0,0,8,7,63,71,431,449,3,2,3,1,0,0,7,6,4,4,3,1,0,0,0,0,0,0,0,1,4,5,3,1,0,1,0,0,0,0 -050,01,087,Alabama,Macon County,6,4,1939,905,1034,77,70,809,946,0,2,8,0,0,0,11,16,86,81,815,958,5,7,12,2,0,2,889,1020,74,69,796,934,0,2,8,0,0,0,11,15,83,79,802,945,5,7,12,2,0,2,16,14,3,1,13,12,0,0,0,0,0,0,0,1,3,2,13,13,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,6,5,2652,1214,1438,118,117,1075,1304,1,0,5,3,0,0,15,14,127,126,1087,1312,7,7,8,7,0,2,1192,1416,112,104,1061,1296,1,0,5,3,0,0,13,13,120,113,1072,1303,6,6,7,7,0,2,22,22,6,13,14,8,0,0,0,0,0,0,2,1,7,13,15,9,1,1,1,0,0,0 -050,01,087,Alabama,Macon County,6,6,1058,482,576,78,59,383,502,1,1,6,1,0,0,14,13,87,72,391,510,11,4,8,3,1,2,464,570,74,55,370,501,1,1,6,1,0,0,13,12,82,67,378,508,10,4,8,3,1,2,18,6,4,4,13,1,0,0,0,0,0,0,1,1,5,5,13,2,1,0,0,0,0,0 -050,01,087,Alabama,Macon County,6,7,941,447,494,75,85,365,399,1,2,3,0,0,1,3,7,77,91,367,404,3,3,3,2,0,1,435,477,70,80,359,394,0,0,3,0,0,1,3,2,72,81,361,396,2,0,3,1,0,1,12,17,5,5,6,5,1,2,0,0,0,0,0,5,5,10,6,8,1,3,0,1,0,0 -050,01,087,Alabama,Macon County,6,8,881,429,452,90,59,331,382,0,0,2,4,0,0,6,7,96,64,333,386,4,6,3,4,0,0,422,446,86,59,330,376,0,0,2,4,0,0,4,7,90,64,332,380,2,6,2,4,0,0,7,6,4,0,1,6,0,0,0,0,0,0,2,0,6,0,1,6,2,0,1,0,0,0 -050,01,087,Alabama,Macon County,6,9,1028,465,563,94,104,369,450,0,1,1,1,1,0,0,7,94,111,369,453,0,2,1,2,1,2,456,557,89,100,366,448,0,1,1,1,0,0,0,7,89,107,366,451,0,2,1,2,0,2,9,6,5,4,3,2,0,0,0,0,1,0,0,0,5,4,3,2,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,6,10,1170,545,625,113,107,429,507,0,1,2,2,1,0,0,8,113,113,429,510,0,5,2,5,1,1,541,618,109,105,429,504,0,1,2,2,1,0,0,6,109,110,429,505,0,3,2,5,1,1,4,7,4,2,0,3,0,0,0,0,0,0,0,2,4,3,0,5,0,2,0,0,0,0 -050,01,087,Alabama,Macon County,6,11,1341,598,743,137,147,453,584,4,1,1,4,0,0,3,7,139,149,454,589,7,4,1,6,0,2,592,742,135,147,450,583,4,1,1,4,0,0,2,7,136,149,451,588,6,4,1,6,0,2,6,1,2,0,3,1,0,0,0,0,0,0,1,0,3,0,3,1,1,0,0,0,0,0 -050,01,087,Alabama,Macon County,6,12,1394,650,744,150,119,489,610,2,6,2,4,0,0,7,5,156,122,492,613,6,8,5,6,0,0,647,737,149,118,489,606,2,5,2,4,0,0,5,4,154,120,491,608,5,7,4,6,0,0,3,7,1,1,0,4,0,1,0,0,0,0,2,1,2,2,1,5,1,1,1,0,0,0 -050,01,087,Alabama,Macon County,6,13,1414,645,769,113,135,517,624,3,1,2,0,0,0,10,9,119,140,522,629,11,7,3,2,1,0,637,765,111,133,515,622,3,1,2,0,0,0,6,9,114,138,518,627,9,7,2,2,0,0,8,4,2,2,2,2,0,0,0,0,0,0,4,0,5,2,4,2,2,0,1,0,1,0 -050,01,087,Alabama,Macon County,6,14,1090,495,595,133,113,358,478,1,3,0,1,0,0,3,0,135,113,360,478,3,3,0,1,0,0,492,594,131,113,358,477,1,3,0,1,0,0,2,0,132,113,359,477,3,3,0,1,0,0,3,1,2,0,0,1,0,0,0,0,0,0,1,0,3,0,1,1,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,6,15,801,362,439,104,81,253,354,1,0,0,1,0,0,4,3,107,84,254,355,4,1,1,2,0,0,357,437,100,80,252,353,1,0,0,1,0,0,4,3,103,83,253,354,4,1,1,2,0,0,5,2,4,1,1,1,0,0,0,0,0,0,0,0,4,1,1,1,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,6,16,548,219,329,57,54,161,272,0,0,1,0,0,0,0,3,57,57,161,272,0,2,1,1,0,0,216,329,54,54,161,272,0,0,1,0,0,0,0,3,54,57,161,272,0,2,1,1,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,6,17,427,168,259,49,43,119,213,0,0,0,0,0,0,0,3,49,46,119,214,0,3,0,1,0,1,164,256,45,43,119,213,0,0,0,0,0,0,0,0,45,43,119,213,0,0,0,0,0,0,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,3,0,1,0,3,0,1,0,1 -050,01,087,Alabama,Macon County,6,18,387,122,265,27,44,93,216,0,0,1,1,0,0,1,4,28,46,93,218,1,2,1,2,0,1,120,262,25,44,93,214,0,0,1,1,0,0,1,3,26,46,93,215,1,2,1,1,0,1,2,3,2,0,0,2,0,0,0,0,0,0,0,1,2,0,0,3,0,0,0,1,0,0 -050,01,087,Alabama,Macon County,7,0,19670,9031,10639,1601,1549,7248,8893,15,24,51,20,2,1,114,152,1692,1675,7314,8968,70,91,67,57,10,13,8867,10502,1535,1505,7173,8826,12,19,51,20,1,1,95,131,1610,1613,7231,8890,58,74,66,52,3,10,164,137,66,44,75,67,3,5,0,0,1,0,19,21,82,62,83,78,12,17,1,5,7,3 -050,01,087,Alabama,Macon County,7,1,967,482,485,80,78,384,388,0,1,5,1,0,0,13,17,92,95,393,398,5,5,5,4,0,0,468,469,76,68,375,382,0,1,5,1,0,0,12,17,87,85,384,392,4,5,5,4,0,0,14,16,4,10,9,6,0,0,0,0,0,0,1,0,5,10,9,6,1,0,0,0,0,0 -050,01,087,Alabama,Macon County,7,2,963,481,482,79,67,387,397,0,0,2,3,0,0,13,15,90,80,396,405,3,7,6,4,0,1,466,468,70,63,383,391,0,0,2,3,0,0,11,11,79,74,390,397,2,4,6,4,0,0,15,14,9,4,4,6,0,0,0,0,0,0,2,4,11,6,6,8,1,3,0,0,0,1 -050,01,087,Alabama,Macon County,7,3,937,466,471,54,65,403,396,0,1,3,1,0,0,6,8,58,72,406,401,5,3,3,3,0,0,459,467,51,63,400,395,0,1,3,1,0,0,5,7,54,69,403,400,4,3,3,2,0,0,7,4,3,2,3,1,0,0,0,0,0,0,1,1,4,3,3,1,1,0,0,1,0,0 -050,01,087,Alabama,Macon County,7,4,1851,852,999,67,74,761,902,0,2,11,1,0,0,13,20,76,90,772,913,8,6,13,7,0,3,834,986,64,73,746,890,0,2,11,1,0,0,13,20,73,89,757,901,8,6,13,7,0,3,18,13,3,1,15,12,0,0,0,0,0,0,0,0,3,1,15,12,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,7,5,2588,1185,1403,114,115,1044,1271,2,2,7,0,0,0,18,15,127,122,1054,1281,8,12,11,3,3,3,1165,1379,111,103,1032,1263,0,0,7,0,0,0,15,13,122,109,1041,1272,5,8,10,3,2,3,20,24,3,12,12,8,2,2,0,0,0,0,3,2,5,13,13,9,3,4,1,0,1,0 -050,01,087,Alabama,Macon County,7,6,1150,535,615,91,79,424,523,1,1,7,1,0,0,12,11,100,88,431,528,9,4,8,4,0,3,512,606,84,77,410,518,1,1,7,1,0,0,10,9,92,84,416,521,7,3,8,4,0,3,23,9,7,2,14,5,0,0,0,0,0,0,2,2,8,4,15,7,2,1,0,0,0,0 -050,01,087,Alabama,Macon County,7,7,885,406,479,79,75,319,393,1,2,2,0,0,1,5,8,83,83,322,398,4,5,2,1,0,1,394,463,75,72,312,387,0,0,2,0,0,1,5,3,79,75,315,389,3,1,2,0,0,1,12,16,4,3,7,6,1,2,0,0,0,0,0,5,4,8,7,9,1,4,0,1,0,0 -050,01,087,Alabama,Macon County,7,8,835,412,423,70,67,335,348,0,0,3,1,0,0,4,7,74,74,335,353,2,3,4,3,1,0,404,418,65,65,333,345,0,0,3,1,0,0,3,7,68,72,333,350,2,3,4,3,0,0,8,5,5,2,2,3,0,0,0,0,0,0,1,0,6,2,2,3,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,7,9,1024,470,554,91,86,374,458,0,1,2,1,1,0,2,8,93,92,374,461,0,7,3,2,2,0,462,545,88,82,371,453,0,1,2,1,0,0,1,8,89,88,371,456,0,7,3,2,0,0,8,9,3,4,3,5,0,0,0,0,1,0,1,0,4,4,3,5,0,0,0,0,2,0 -050,01,087,Alabama,Macon County,7,10,1071,504,567,118,100,382,457,2,1,2,2,0,0,0,7,118,107,382,458,2,4,2,5,0,0,499,560,113,98,382,454,2,1,2,2,0,0,0,5,113,103,382,455,2,3,2,4,0,0,5,7,5,2,0,3,0,0,0,0,0,0,0,2,5,4,0,3,0,1,0,1,0,0 -050,01,087,Alabama,Macon County,7,11,1286,567,719,125,142,436,566,1,3,1,1,1,0,3,7,128,147,437,568,2,6,1,5,2,0,563,717,124,142,434,564,1,3,1,1,1,0,2,7,126,147,435,566,2,6,1,5,1,0,4,2,1,0,2,2,0,0,0,0,0,0,1,0,2,0,2,2,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,7,12,1365,654,711,154,126,490,570,3,4,1,5,0,0,6,6,159,131,493,571,5,8,3,7,1,0,648,705,151,125,489,566,3,4,1,5,0,0,4,5,155,129,490,567,4,7,3,7,0,0,6,6,3,1,1,4,0,0,0,0,0,0,2,1,4,2,3,4,1,1,0,0,1,0 -050,01,087,Alabama,Macon County,7,13,1421,621,800,110,129,494,660,3,3,3,0,0,0,11,8,119,134,501,664,8,9,4,1,1,0,613,796,108,128,492,658,3,2,3,0,0,0,7,8,113,133,497,662,7,8,4,1,0,0,8,4,2,1,2,2,0,1,0,0,0,0,4,0,6,1,4,2,1,1,0,0,1,0 -050,01,087,Alabama,Macon County,7,14,1126,521,605,126,112,392,488,1,3,0,0,0,0,2,2,128,114,392,488,3,4,0,1,0,0,519,604,125,112,392,487,1,3,0,0,0,0,1,2,126,114,392,487,2,4,0,1,0,0,2,1,1,0,0,1,0,0,0,0,0,0,1,0,2,0,0,1,1,0,0,0,0,0 -050,01,087,Alabama,Macon County,7,15,845,378,467,112,98,260,364,1,0,0,2,0,0,5,3,115,101,263,364,5,2,0,3,0,0,373,466,108,98,259,363,1,0,0,2,0,0,5,3,111,101,262,363,5,2,0,3,0,0,5,1,4,0,1,1,0,0,0,0,0,0,0,0,4,0,1,1,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,7,16,531,205,326,50,48,155,277,0,0,0,0,0,0,0,1,50,49,155,277,0,1,0,0,0,0,202,326,47,48,155,277,0,0,0,0,0,0,0,1,47,49,155,277,0,1,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,7,17,430,178,252,57,42,120,205,0,0,1,0,0,0,0,5,57,47,120,209,0,2,1,2,0,2,175,249,54,42,120,205,0,0,1,0,0,0,0,2,54,44,120,206,0,1,1,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,3,0,3,0,1,0,2,0,2 -050,01,087,Alabama,Macon County,7,18,395,114,281,24,46,88,230,0,0,1,1,0,0,1,4,25,49,88,231,1,3,1,2,0,0,111,278,21,46,88,228,0,0,1,1,0,0,1,3,22,48,88,229,1,2,1,2,0,0,3,3,3,0,0,2,0,0,0,0,0,0,0,1,3,1,0,2,0,1,0,0,0,0 -050,01,087,Alabama,Macon County,8,0,19331,8894,10437,1570,1541,7122,8679,16,25,64,25,2,1,120,166,1666,1673,7188,8782,70,91,90,55,7,18,8712,10283,1489,1483,7047,8615,12,20,61,24,1,1,102,140,1573,1593,7104,8702,56,73,82,49,5,16,182,154,81,58,75,64,4,5,3,1,1,0,18,26,93,80,84,80,14,18,8,6,2,2 -050,01,087,Alabama,Macon County,8,1,931,442,489,67,84,358,379,0,2,5,1,0,0,12,23,79,106,367,395,2,7,7,3,0,2,430,471,61,73,353,375,0,2,5,1,0,0,11,20,72,92,362,389,2,5,6,3,0,2,12,18,6,11,5,4,0,0,0,0,0,0,1,3,7,14,5,6,0,2,1,0,0,0 -050,01,087,Alabama,Macon County,8,2,937,481,456,82,64,380,375,1,1,1,1,0,0,17,15,97,78,392,384,5,4,3,4,2,2,457,435,67,56,374,367,0,0,1,1,0,0,15,11,80,67,386,375,3,1,2,3,2,1,24,21,15,8,6,8,1,1,0,0,0,0,2,4,17,11,6,9,2,3,1,1,0,1 -050,01,087,Alabama,Macon County,8,3,905,463,442,62,63,392,365,0,1,4,3,0,0,5,10,66,72,397,371,2,5,4,4,0,0,453,435,56,59,389,363,0,1,4,3,0,0,4,9,60,67,393,368,1,5,4,4,0,0,10,7,6,4,3,2,0,0,0,0,0,0,1,1,6,5,4,3,1,0,0,0,0,0 -050,01,087,Alabama,Macon County,8,4,1800,839,961,67,71,747,870,0,2,12,2,0,0,13,16,78,82,755,883,6,5,15,6,0,2,821,949,64,69,733,860,0,2,11,2,0,0,13,16,75,80,741,873,6,5,14,6,0,2,18,12,3,2,14,10,0,0,1,0,0,0,0,0,3,2,14,10,0,0,1,0,0,0 -050,01,087,Alabama,Macon County,8,5,2491,1157,1334,113,117,1007,1198,2,0,17,0,0,0,18,19,125,132,1016,1212,13,9,21,2,1,1,1134,1315,110,109,992,1189,0,0,16,0,0,0,16,17,121,123,1000,1202,9,7,20,2,1,1,23,19,3,8,15,9,2,0,1,0,0,0,2,2,4,9,16,10,4,2,1,0,0,0 -050,01,087,Alabama,Macon County,8,6,1147,538,609,90,84,432,512,1,2,7,1,0,0,8,10,95,93,437,517,4,6,9,3,1,1,515,596,83,77,417,509,1,1,6,1,0,0,8,8,88,84,422,513,4,4,8,3,1,1,23,13,7,7,15,3,0,1,1,0,0,0,0,2,7,9,15,4,0,2,1,0,0,0 -050,01,087,Alabama,Macon County,8,7,929,425,504,84,86,327,404,1,2,3,0,0,1,10,11,92,97,331,411,7,6,5,1,1,2,413,487,79,81,323,399,0,0,3,0,0,1,8,6,86,87,326,402,4,2,5,1,0,2,12,17,5,5,4,5,1,2,0,0,0,0,2,5,6,10,5,9,3,4,0,0,1,0 -050,01,087,Alabama,Macon County,8,8,793,382,411,64,60,312,340,0,0,3,1,0,0,3,10,67,68,314,346,1,6,3,4,0,1,374,403,59,58,310,336,0,0,3,1,0,0,2,8,61,64,311,341,1,4,3,3,0,1,8,8,5,2,2,4,0,0,0,0,0,0,1,2,6,4,3,5,0,2,0,1,0,0 -050,01,087,Alabama,Macon County,8,9,997,458,539,83,86,371,443,0,1,1,2,0,0,3,7,85,88,372,447,1,3,3,6,0,2,449,534,78,84,368,440,0,1,1,2,0,0,2,7,80,86,368,444,1,3,2,6,0,2,9,5,5,2,3,3,0,0,0,0,0,0,1,0,5,2,4,3,0,0,1,0,0,0 -050,01,087,Alabama,Macon County,8,10,1010,459,551,124,107,329,434,2,1,3,5,1,0,0,4,124,111,329,437,2,2,3,5,1,0,453,542,119,102,329,431,2,1,3,4,0,0,0,4,119,106,329,434,2,2,3,4,0,0,6,9,5,5,0,3,0,0,0,1,1,0,0,0,5,5,0,3,0,0,0,1,1,0 -050,01,087,Alabama,Macon County,8,11,1243,545,698,113,142,427,547,0,1,2,0,1,0,2,8,115,147,427,550,2,6,2,3,1,0,541,691,111,140,425,544,0,1,2,0,1,0,2,6,113,144,425,546,2,5,2,2,1,0,4,7,2,2,2,3,0,0,0,0,0,0,0,2,2,3,2,4,0,1,0,1,0,0 -050,01,087,Alabama,Macon County,8,12,1347,656,691,154,119,489,552,4,6,1,4,0,0,8,10,161,126,490,557,8,12,5,6,0,1,649,686,151,118,487,549,4,6,1,4,0,0,6,9,156,124,488,553,7,11,4,6,0,1,7,5,3,1,2,3,0,0,0,0,0,0,2,1,5,2,2,4,1,1,1,0,0,0 -050,01,087,Alabama,Macon County,8,13,1385,609,776,108,130,485,634,3,3,3,2,0,0,10,7,115,135,492,638,8,9,4,2,0,0,600,772,106,129,482,632,3,2,3,2,0,0,6,7,110,134,486,636,6,8,4,2,0,0,9,4,2,1,3,2,0,1,0,0,0,0,4,0,5,1,6,2,2,1,0,0,0,0 -050,01,087,Alabama,Macon County,8,14,1206,568,638,119,107,445,526,1,2,0,0,0,0,3,3,120,110,447,526,3,5,1,0,0,0,565,636,118,107,445,524,1,2,0,0,0,0,1,3,118,110,446,524,2,5,0,0,0,0,3,2,1,0,0,2,0,0,0,0,0,0,2,0,2,0,1,2,1,0,1,0,0,0 -050,01,087,Alabama,Macon County,8,15,858,368,490,108,97,255,387,0,1,0,2,0,0,5,3,113,97,255,390,3,3,2,2,0,1,364,489,105,97,254,386,0,1,0,2,0,0,5,3,110,97,254,389,3,3,2,2,0,1,4,1,3,0,1,1,0,0,0,0,0,0,0,0,3,0,1,1,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,8,16,546,214,332,53,55,158,276,1,0,0,0,0,0,2,1,54,56,159,276,2,1,1,0,0,0,211,332,50,55,158,276,1,0,0,0,0,0,2,1,51,56,159,276,2,1,1,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,8,17,425,180,245,54,29,125,211,0,0,1,0,0,0,0,5,54,34,125,213,0,0,1,2,0,2,176,242,50,29,125,211,0,0,1,0,0,0,0,2,50,31,125,211,0,0,1,1,0,1,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,3,0,2,0,0,0,1,0,1 -050,01,087,Alabama,Macon County,8,18,381,110,271,25,40,83,226,0,0,1,1,0,0,1,4,26,41,83,229,1,2,1,2,0,1,107,268,22,40,83,224,0,0,1,1,0,0,1,3,23,41,83,226,1,2,1,1,0,1,3,3,3,0,0,2,0,0,0,0,0,0,0,1,3,0,0,3,0,0,0,1,0,0 -050,01,087,Alabama,Macon County,9,0,19077,8725,10352,1571,1556,6942,8580,21,28,73,28,2,1,116,159,1655,1677,7013,8667,72,85,97,74,10,17,8548,10198,1484,1496,6882,8517,17,24,66,27,1,1,98,133,1555,1596,6946,8591,60,69,86,67,5,15,177,154,87,60,60,63,4,4,7,1,1,0,18,26,100,81,67,76,12,16,11,7,5,2 -050,01,087,Alabama,Macon County,9,1,880,434,446,73,78,339,347,2,1,6,1,0,0,14,19,85,94,350,362,3,5,10,4,0,0,418,427,65,67,335,342,2,1,3,1,0,0,13,16,76,81,345,356,3,3,7,3,0,0,16,19,8,11,4,5,0,0,3,0,0,0,1,3,9,13,5,6,0,2,3,1,0,0 -050,01,087,Alabama,Macon County,9,2,934,467,467,76,68,371,381,1,2,4,1,0,0,15,15,91,82,380,392,4,6,5,2,3,0,448,449,62,60,369,375,0,1,4,1,0,0,13,12,75,71,378,385,3,3,4,2,2,0,19,18,14,8,2,6,1,1,0,0,0,0,2,3,16,11,2,7,1,3,1,0,1,0 -050,01,087,Alabama,Macon County,9,3,891,429,462,66,63,353,384,1,1,3,3,0,0,6,11,72,70,355,393,4,3,4,5,0,2,417,455,59,61,349,381,1,1,3,3,0,0,5,9,64,67,351,388,4,2,3,5,0,2,12,7,7,2,4,3,0,0,0,0,0,0,1,2,8,3,4,5,0,1,1,0,0,0 -050,01,087,Alabama,Macon County,9,4,1758,811,947,62,70,732,857,0,3,8,3,0,0,9,14,68,79,739,869,5,3,10,7,0,3,792,931,57,65,719,846,0,3,7,3,0,0,9,14,63,74,726,858,5,3,9,7,0,3,19,16,5,5,13,11,0,0,1,0,0,0,0,0,5,5,13,11,0,0,1,0,0,0 -050,01,087,Alabama,Macon County,9,5,2383,1120,1263,104,103,975,1144,2,0,23,1,0,0,16,15,113,114,985,1153,10,7,28,7,0,0,1101,1245,101,94,964,1137,0,0,22,1,0,0,14,13,109,104,973,1144,6,6,27,7,0,0,19,18,3,9,11,7,2,0,1,0,0,0,2,2,4,10,12,9,4,1,1,0,0,0 -050,01,087,Alabama,Macon County,9,6,1240,583,657,107,111,456,531,1,2,10,1,0,0,9,12,112,120,462,538,4,5,14,5,0,1,565,645,99,103,447,528,1,2,9,1,0,0,9,11,104,111,453,534,4,5,13,5,0,1,18,12,8,8,9,3,0,0,1,0,0,0,0,1,8,9,9,4,0,0,1,0,0,0 -050,01,087,Alabama,Macon County,9,7,858,371,487,66,66,293,406,0,2,3,0,0,1,9,12,72,76,299,412,6,6,4,4,0,1,362,477,63,66,289,403,0,0,3,0,0,1,7,7,67,71,294,406,5,2,4,4,0,1,9,10,3,0,4,3,0,2,0,0,0,0,2,5,5,5,5,6,1,4,0,0,0,0 -050,01,087,Alabama,Macon County,9,8,833,394,439,74,84,313,347,1,0,2,1,0,0,4,7,77,89,315,348,3,3,3,4,1,2,384,427,67,79,312,341,0,0,2,1,0,0,3,6,69,83,314,342,1,2,3,4,1,2,10,12,7,5,1,6,1,0,0,0,0,0,1,1,8,6,1,6,2,1,0,0,0,0 -050,01,087,Alabama,Macon County,9,9,927,434,493,88,73,340,407,0,1,2,2,0,0,4,10,91,79,342,412,2,5,3,7,0,0,428,487,85,72,338,404,0,1,2,2,0,0,3,8,88,76,339,408,1,4,3,7,0,0,6,6,3,1,2,3,0,0,0,0,0,0,1,2,3,3,3,4,1,1,0,0,0,0 -050,01,087,Alabama,Macon County,9,10,1000,467,533,115,106,345,418,4,0,2,5,1,0,0,4,115,109,345,419,4,2,2,7,1,0,456,524,107,101,343,415,4,0,2,4,0,0,0,4,107,104,343,416,4,2,2,6,0,0,11,9,8,5,2,3,0,0,0,1,1,0,0,0,8,5,2,3,0,0,0,1,1,0 -050,01,087,Alabama,Macon County,9,11,1215,524,691,111,134,408,546,0,4,2,1,1,0,2,6,112,140,409,547,2,8,2,2,1,1,521,682,109,130,407,543,0,4,2,1,1,0,2,4,110,134,408,544,2,7,2,1,1,1,3,9,2,4,1,3,0,0,0,0,0,0,0,2,2,6,1,3,0,1,0,1,0,0 -050,01,087,Alabama,Macon County,9,12,1317,630,687,154,124,463,542,3,6,3,3,0,0,7,12,159,132,467,546,7,14,4,6,0,1,622,683,152,124,460,539,3,6,2,3,0,0,5,11,156,131,462,543,7,13,2,6,0,1,8,4,2,0,3,3,0,0,1,0,0,0,2,1,3,1,5,3,0,1,2,0,0,0 -050,01,087,Alabama,Macon County,9,13,1341,605,736,121,129,470,597,4,3,3,3,0,0,7,4,126,133,472,597,8,5,4,4,2,1,596,731,118,127,467,595,4,2,3,3,0,0,4,4,121,131,469,595,6,4,4,4,0,1,9,5,3,2,3,2,0,1,0,0,0,0,3,0,5,2,3,2,2,1,0,0,2,0 -050,01,087,Alabama,Macon County,9,14,1256,564,692,112,115,446,570,1,1,0,0,0,0,5,6,114,120,448,571,3,6,2,2,2,2,561,691,111,115,446,569,1,1,0,0,0,0,3,6,112,120,448,570,2,6,1,2,1,2,3,1,1,0,0,1,0,0,0,0,0,0,2,0,2,0,0,1,1,0,1,0,1,0 -050,01,087,Alabama,Macon County,9,15,866,375,491,108,100,263,385,0,2,0,2,0,0,4,2,111,101,266,386,2,4,0,2,0,0,370,489,105,100,262,383,0,2,0,2,0,0,3,2,107,101,264,384,2,4,0,2,0,0,5,2,3,0,1,2,0,0,0,0,0,0,1,0,4,0,2,2,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,9,16,572,231,341,60,51,166,289,1,0,0,0,0,0,4,1,62,51,169,290,5,1,0,0,0,0,228,341,57,51,166,289,1,0,0,0,0,0,4,1,59,51,169,290,5,1,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,9,17,426,179,247,47,35,131,207,0,0,1,0,0,0,0,5,47,40,131,207,0,2,1,3,0,2,175,245,43,35,131,207,0,0,1,0,0,0,0,3,43,38,131,207,0,2,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,2,0,0,0,0,0,2,0,2 -050,01,087,Alabama,Macon County,9,18,380,107,273,27,46,78,222,0,0,1,1,0,0,1,4,28,48,79,225,0,0,1,3,0,1,104,269,24,46,78,220,0,0,1,1,0,0,1,2,25,48,79,221,0,0,1,1,0,1,3,4,3,0,0,2,0,0,0,0,0,0,0,2,3,0,0,4,0,0,0,2,0,0 -050,01,087,Alabama,Macon County,10,0,18828,8633,10195,1579,1530,6838,8444,19,27,73,35,2,1,122,158,1682,1648,6908,8534,76,90,90,71,9,15,8447,10043,1484,1476,6778,8378,15,23,66,34,1,1,103,131,1571,1575,6838,8454,61,71,82,64,6,14,186,152,95,54,60,66,4,4,7,1,1,0,19,27,111,73,70,80,15,19,8,7,3,1 -050,01,087,Alabama,Macon County,10,1,879,449,430,81,70,350,343,0,1,2,2,0,0,16,14,96,82,360,353,5,3,2,4,2,2,434,418,74,66,347,338,0,1,0,2,0,0,13,11,87,75,356,347,3,2,0,3,1,2,15,12,7,4,3,5,0,0,2,0,0,0,3,3,9,7,4,6,2,1,2,1,1,0 -050,01,087,Alabama,Macon County,10,2,918,482,436,87,70,372,343,1,2,5,1,0,0,17,20,104,87,385,358,4,7,8,4,0,0,459,416,72,60,368,337,0,1,4,1,0,0,15,17,87,75,380,351,2,4,7,3,0,0,23,20,15,10,4,6,1,1,1,0,0,0,2,3,17,12,5,7,2,3,1,1,0,0 -050,01,087,Alabama,Macon County,10,3,848,411,437,65,62,336,363,0,1,3,3,0,0,7,8,71,68,341,368,1,3,5,6,1,0,402,427,60,59,333,358,0,1,3,3,0,0,6,6,65,63,337,362,0,2,5,6,1,0,9,10,5,3,3,5,0,0,0,0,0,0,1,2,6,5,4,6,1,1,0,0,0,0 -050,01,087,Alabama,Macon County,10,4,1704,787,917,63,61,705,834,1,3,7,4,0,0,11,15,71,72,713,847,7,5,9,6,0,2,769,903,59,58,692,823,1,3,6,4,0,0,11,15,67,69,700,836,7,5,8,6,0,2,18,14,4,3,13,11,0,0,1,0,0,0,0,0,4,3,13,11,0,0,1,0,0,0 -050,01,087,Alabama,Macon County,10,5,2300,1043,1257,92,96,915,1146,2,0,19,1,0,0,15,14,99,105,927,1156,10,7,22,4,0,1,1023,1240,86,88,905,1139,0,0,18,1,0,0,14,12,93,96,916,1148,7,5,21,4,0,1,20,17,6,8,10,7,2,0,1,0,0,0,1,2,6,9,11,8,3,2,1,0,0,0 -050,01,087,Alabama,Macon County,10,6,1278,610,668,116,111,470,544,0,0,15,2,0,0,9,11,124,120,475,549,4,5,17,3,0,2,590,656,104,103,463,541,0,0,14,2,0,0,9,10,112,111,468,546,4,4,16,3,0,2,20,12,12,8,7,3,0,0,1,0,0,0,0,1,12,9,7,3,0,1,1,0,0,0 -050,01,087,Alabama,Macon County,10,7,857,395,462,72,67,312,381,1,3,2,1,0,1,8,9,79,74,315,386,5,8,4,3,0,2,383,456,68,67,306,378,1,1,2,1,0,1,6,8,73,74,308,382,4,5,4,3,0,2,12,6,4,0,6,3,0,2,0,0,0,0,2,1,6,0,7,4,1,3,0,0,0,0 -050,01,087,Alabama,Macon County,10,8,835,401,434,68,81,327,342,1,0,2,2,0,0,3,9,71,89,328,345,3,5,2,5,0,0,391,419,61,76,325,337,0,0,2,2,0,0,3,4,64,80,326,337,2,2,2,4,0,0,10,15,7,5,2,5,1,0,0,0,0,0,0,5,7,9,2,8,1,3,0,1,0,0 -050,01,087,Alabama,Macon County,10,9,860,398,462,89,64,300,382,0,1,3,3,0,0,6,12,95,72,303,388,3,4,3,7,0,3,392,454,86,63,299,377,0,1,3,3,0,0,4,10,90,69,300,383,3,3,3,7,0,2,6,8,3,1,1,5,0,0,0,0,0,0,2,2,5,3,3,5,0,1,0,0,0,1 -050,01,087,Alabama,Macon County,10,10,991,453,538,103,108,344,420,2,0,3,3,1,0,0,7,103,114,344,423,2,3,3,4,1,1,439,531,93,103,341,418,2,0,3,3,0,0,0,7,93,109,341,421,2,3,3,4,0,1,14,7,10,5,3,2,0,0,0,0,1,0,0,0,10,5,3,2,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,10,11,1171,518,653,113,124,396,515,2,4,4,4,1,0,2,6,115,127,396,518,4,9,4,5,1,0,515,643,111,120,395,512,2,4,4,3,1,0,2,4,113,123,395,513,4,8,4,3,1,0,3,10,2,4,1,3,0,0,0,1,0,0,0,2,2,4,1,5,0,1,0,2,0,0 -050,01,087,Alabama,Macon County,10,12,1273,596,677,145,129,440,535,3,3,3,2,0,0,5,8,150,133,442,538,5,9,4,5,1,0,590,673,144,128,437,532,3,3,2,2,0,0,4,8,148,132,438,535,4,9,3,5,1,0,6,4,1,1,3,3,0,0,1,0,0,0,1,0,2,1,4,3,1,0,1,0,0,0 -050,01,087,Alabama,Macon County,10,13,1299,576,723,117,115,446,591,4,6,1,4,0,0,8,7,125,120,448,594,8,9,3,7,2,0,568,715,114,113,444,588,4,5,1,4,0,0,5,5,119,116,446,590,7,7,2,7,1,0,8,8,3,2,2,3,0,1,0,0,0,0,3,2,6,4,2,4,1,2,1,0,1,0 -050,01,087,Alabama,Macon County,10,14,1255,554,701,108,125,436,567,1,1,2,0,0,0,7,8,113,131,438,568,7,6,2,2,1,2,549,700,107,125,435,566,1,1,2,0,0,0,4,8,110,131,436,567,4,6,2,2,1,2,5,1,1,0,1,1,0,0,0,0,0,0,3,0,3,0,2,1,3,0,0,0,0,0 -050,01,087,Alabama,Macon County,10,15,926,400,526,116,105,281,418,0,2,0,1,0,0,3,0,119,105,282,418,2,2,0,1,0,0,393,524,111,105,280,416,0,2,0,1,0,0,2,0,113,105,280,416,2,2,0,1,0,0,7,2,5,0,1,2,0,0,0,0,0,0,1,0,6,0,2,2,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,10,16,629,270,359,69,61,196,294,1,0,0,1,0,0,4,3,71,63,199,296,5,1,0,2,0,0,267,359,66,61,196,294,1,0,0,1,0,0,4,3,68,63,199,296,5,1,0,2,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,10,17,415,176,239,42,34,133,202,0,0,1,0,0,0,0,3,42,37,133,202,0,3,1,0,0,0,172,239,38,34,133,202,0,0,1,0,0,0,0,3,38,37,133,202,0,3,1,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,10,18,390,114,276,33,47,79,224,0,0,1,1,0,0,1,4,34,49,79,227,1,1,1,3,0,0,111,270,30,47,79,222,0,0,1,1,0,0,1,0,31,47,79,222,1,0,1,1,0,0,3,6,3,0,0,2,0,0,0,0,0,0,0,4,3,2,0,5,0,1,0,2,0,0 -050,01,087,Alabama,Macon County,11,0,18320,8367,9953,1605,1529,6569,8205,19,29,70,37,2,1,102,152,1683,1644,6626,8289,68,98,93,72,6,12,8182,9796,1508,1477,6508,8128,15,25,64,36,1,1,86,129,1572,1574,6556,8200,53,81,85,68,5,10,185,157,97,52,61,77,4,4,6,1,1,0,16,23,111,70,70,89,15,17,8,4,1,2 -050,01,087,Alabama,Macon County,11,1,855,441,414,91,68,339,328,0,1,1,2,0,0,10,15,101,83,345,338,2,1,3,6,0,1,425,402,85,65,332,320,0,1,1,2,0,0,7,14,92,79,336,330,1,1,3,5,0,1,16,12,6,3,7,8,0,0,0,0,0,0,3,1,9,4,9,8,1,0,0,1,0,0 -050,01,087,Alabama,Macon County,11,2,840,425,415,78,80,334,315,0,1,7,1,0,0,6,18,84,94,337,328,2,7,8,3,0,1,399,393,59,68,330,308,0,1,4,1,0,0,6,15,65,81,333,319,2,5,5,3,0,0,26,22,19,12,4,7,0,0,3,0,0,0,0,3,19,13,4,9,0,2,3,0,0,1 -050,01,087,Alabama,Macon County,11,3,841,417,424,80,60,328,351,1,2,3,4,0,0,5,7,85,67,331,354,2,5,4,6,0,0,405,408,73,54,324,343,0,1,3,4,0,0,5,6,78,60,327,345,1,4,4,6,0,0,12,16,7,6,4,8,1,1,0,0,0,0,0,1,7,7,4,9,1,1,0,0,0,0 -050,01,087,Alabama,Macon County,11,4,1622,753,869,74,61,663,786,1,2,7,4,0,0,8,16,80,73,670,797,5,6,8,6,0,3,735,855,68,59,651,775,1,2,7,4,0,0,8,15,74,70,658,786,5,5,8,6,0,3,18,14,6,2,12,11,0,0,0,0,0,0,0,1,6,3,12,11,0,1,0,0,0,0 -050,01,087,Alabama,Macon County,11,5,2152,953,1199,87,90,839,1092,0,1,15,1,0,0,12,15,94,97,846,1103,6,8,19,8,0,0,941,1182,85,85,831,1082,0,1,14,1,0,0,11,13,92,91,837,1092,5,6,18,8,0,0,12,17,2,5,8,10,0,0,1,0,0,0,1,2,2,6,9,11,1,2,1,0,0,0 -050,01,087,Alabama,Macon County,11,6,1252,609,643,105,103,476,530,2,0,14,1,0,0,12,9,112,110,485,533,8,4,17,5,0,1,596,634,99,97,472,527,0,0,13,1,0,0,12,9,106,104,481,530,6,4,16,5,0,1,13,9,6,6,4,3,2,0,1,0,0,0,0,0,6,6,4,3,2,0,1,0,0,0 -050,01,087,Alabama,Macon County,11,7,832,373,459,77,78,286,372,1,1,1,1,0,0,8,7,83,83,291,375,5,3,3,4,0,1,356,453,69,76,279,369,1,1,1,1,0,0,6,6,73,80,283,372,3,2,3,4,0,1,17,6,8,2,7,3,0,0,0,0,0,0,2,1,10,3,8,3,2,1,0,0,0,0 -050,01,087,Alabama,Macon County,11,8,838,412,426,73,77,332,336,1,2,2,2,0,1,4,8,74,85,333,339,4,8,4,2,1,1,399,411,64,74,329,331,0,0,2,2,0,1,4,3,65,77,330,331,3,3,4,2,1,1,13,15,9,3,3,5,1,2,0,0,0,0,0,5,9,8,3,8,1,5,0,0,0,0 -050,01,087,Alabama,Macon County,11,9,829,388,441,86,72,292,357,0,0,3,2,0,0,7,10,93,80,296,363,2,6,5,3,0,2,382,431,83,69,291,352,0,0,3,2,0,0,5,8,88,75,294,357,0,4,5,3,0,2,6,10,3,3,1,5,0,0,0,0,0,0,2,2,5,5,2,6,2,2,0,0,0,0 -050,01,087,Alabama,Macon County,11,10,962,429,533,95,111,328,410,2,1,3,3,1,0,0,8,95,114,328,414,2,6,3,7,1,0,418,527,88,108,325,407,2,1,3,3,0,0,0,8,88,111,325,411,2,6,3,7,0,0,11,6,7,3,3,3,0,0,0,0,1,0,0,0,7,3,3,3,0,0,0,0,1,0 -050,01,087,Alabama,Macon County,11,11,1104,494,610,116,109,369,485,2,3,5,6,1,0,1,7,117,115,369,487,3,8,5,6,1,1,489,600,111,105,369,482,2,3,5,5,1,0,1,5,112,109,369,483,3,7,5,5,1,1,5,10,5,4,0,3,0,0,0,1,0,0,0,2,5,6,0,4,0,1,0,1,0,0 -050,01,087,Alabama,Macon County,11,12,1248,551,697,138,140,405,543,2,5,2,3,0,0,4,6,141,145,406,545,5,9,3,4,0,0,544,694,137,139,401,541,2,5,1,3,0,0,3,6,139,144,402,543,4,9,2,4,0,0,7,3,1,1,4,2,0,0,1,0,0,0,1,0,2,1,4,2,1,0,1,0,0,0 -050,01,087,Alabama,Macon County,11,13,1228,566,662,128,113,427,532,2,6,2,4,0,0,7,7,135,117,430,536,5,10,3,5,0,1,561,655,126,112,426,529,2,5,2,4,0,0,5,5,131,115,428,532,5,9,2,4,0,0,5,7,2,1,1,3,0,1,0,0,0,0,2,2,4,2,2,4,0,1,1,1,0,1 -050,01,087,Alabama,Macon County,11,14,1292,573,719,103,124,455,585,3,1,2,0,0,0,10,9,110,131,460,589,10,7,3,3,2,0,565,716,101,123,453,583,3,1,2,0,0,0,6,9,104,130,456,587,6,7,3,3,2,0,8,3,2,1,2,2,0,0,0,0,0,0,4,0,6,1,4,2,4,0,0,0,0,0 -050,01,087,Alabama,Macon County,11,15,956,411,545,115,98,291,442,1,3,1,1,0,0,3,1,116,99,293,442,3,4,2,1,0,0,405,544,110,98,291,441,1,3,1,1,0,0,2,1,111,99,292,441,3,4,1,1,0,0,6,1,5,0,0,1,0,0,0,0,0,0,1,0,5,0,1,1,0,0,1,0,0,0 -050,01,087,Alabama,Macon County,11,16,671,292,379,86,70,201,305,1,0,0,1,0,0,4,3,89,72,202,306,4,3,0,1,1,0,288,378,83,70,200,304,1,0,0,1,0,0,4,3,86,72,201,305,4,3,0,1,1,0,4,1,3,0,1,1,0,0,0,0,0,0,0,0,3,0,1,1,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,11,17,410,162,248,38,39,123,206,0,0,1,0,0,0,0,3,38,41,123,208,0,2,1,0,0,0,159,248,35,39,123,206,0,0,1,0,0,0,0,3,35,41,123,208,0,2,1,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,11,18,388,118,270,35,36,81,230,0,0,1,1,0,0,1,3,36,38,81,232,0,1,2,2,0,0,115,265,32,36,81,228,0,0,1,1,0,0,1,0,33,36,81,228,0,0,2,1,0,0,3,5,3,0,0,2,0,0,0,0,0,0,0,3,3,2,0,4,0,1,0,1,0,0 -050,01,087,Alabama,Macon County,12,0,18065,8229,9836,1597,1526,6438,8094,19,30,69,37,2,1,104,148,1682,1633,6495,8187,74,84,85,77,5,9,8038,9679,1498,1471,6375,8021,15,26,63,36,1,1,86,124,1569,1562,6423,8100,60,71,77,68,3,7,191,157,99,55,63,73,4,4,6,1,1,0,18,24,113,71,72,87,14,13,8,9,2,2 -050,01,087,Alabama,Macon County,12,1,881,472,409,94,76,370,315,0,1,1,0,0,0,7,17,101,90,375,327,2,4,1,5,0,0,457,399,85,72,364,310,0,1,1,0,0,0,7,16,92,85,369,322,2,3,1,5,0,0,15,10,9,4,6,5,0,0,0,0,0,0,0,1,9,5,6,5,0,1,0,0,0,0 -050,01,087,Alabama,Macon County,12,2,829,401,428,72,75,315,337,0,1,7,2,0,0,7,13,78,88,319,347,1,1,8,5,2,0,373,412,57,66,308,332,0,1,4,2,0,0,4,11,61,77,310,341,0,1,5,4,1,0,28,16,15,9,7,5,0,0,3,0,0,0,3,2,17,11,9,6,1,0,3,1,1,0 -050,01,087,Alabama,Macon County,12,3,855,435,420,90,60,334,346,1,1,2,3,0,0,8,10,97,68,341,353,3,5,2,4,0,0,415,402,76,52,330,339,0,0,2,3,0,0,7,8,82,58,337,346,1,2,2,4,0,0,20,18,14,8,4,7,1,1,0,0,0,0,1,2,15,10,4,7,2,3,0,0,0,0 -050,01,087,Alabama,Macon County,12,4,1554,732,822,78,57,636,746,1,3,8,2,0,0,9,14,85,66,643,757,6,6,9,6,0,2,712,807,71,53,623,736,1,3,8,2,0,0,9,13,78,61,630,746,6,6,9,6,0,2,20,15,7,4,13,10,0,0,0,0,0,0,0,1,7,5,13,11,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,12,5,2091,917,1174,90,91,799,1066,0,1,17,4,0,0,11,12,95,100,807,1073,7,6,19,11,0,0,905,1158,89,86,791,1056,0,1,16,4,0,0,9,11,93,95,797,1062,6,5,18,11,0,0,12,16,1,5,8,10,0,0,1,0,0,0,2,1,2,5,10,11,1,1,1,0,0,0 -050,01,087,Alabama,Macon County,12,6,1210,578,632,96,105,455,517,2,0,11,1,0,0,14,9,109,112,462,523,12,3,13,2,0,1,569,620,91,100,454,511,0,0,10,1,0,0,14,8,104,106,461,517,10,2,12,2,0,1,9,12,5,5,1,6,2,0,1,0,0,0,0,1,5,6,1,6,2,1,1,0,0,0 -050,01,087,Alabama,Macon County,12,7,872,392,480,77,85,309,386,1,2,1,1,0,0,4,6,81,91,312,388,2,4,1,2,0,1,376,474,71,82,301,384,1,2,1,1,0,0,2,5,73,87,303,385,1,4,1,2,0,1,16,6,6,3,8,2,0,0,0,0,0,0,2,1,8,4,9,3,1,0,0,0,0,0 -050,01,087,Alabama,Macon County,12,8,789,372,417,79,74,286,330,1,2,1,1,0,1,5,9,82,80,290,334,4,7,1,4,0,2,359,403,71,73,282,324,0,0,1,1,0,1,5,4,74,76,286,325,3,4,1,1,0,1,13,14,8,1,4,6,1,2,0,0,0,0,0,5,8,4,4,9,1,3,0,3,0,1 -050,01,087,Alabama,Macon County,12,9,789,380,409,65,74,306,325,0,0,4,1,0,0,5,9,70,80,307,330,4,3,4,5,0,0,374,400,61,69,305,323,0,0,4,1,0,0,4,7,65,74,306,326,3,3,4,4,0,0,6,9,4,5,1,2,0,0,0,0,0,0,1,2,5,6,1,4,1,0,0,1,0,0 -050,01,087,Alabama,Macon County,12,10,955,424,531,103,88,315,428,0,1,3,4,1,0,2,10,105,95,316,434,1,4,3,8,1,0,415,524,99,87,312,423,0,1,3,4,0,0,1,9,100,94,313,428,0,3,3,8,0,0,9,7,4,1,3,5,0,0,0,0,1,0,1,1,5,1,3,6,1,1,0,0,1,0 -050,01,087,Alabama,Macon County,12,11,1044,471,573,125,115,336,445,4,1,5,6,0,0,1,6,126,119,336,448,4,4,6,7,0,1,464,562,118,110,336,442,4,1,5,5,0,0,1,4,119,113,336,445,4,3,6,5,0,0,7,11,7,5,0,3,0,0,0,1,0,0,0,2,7,6,0,3,0,1,0,2,0,1 -050,01,087,Alabama,Macon County,12,12,1213,529,684,124,138,396,530,1,7,2,3,1,0,5,6,129,144,398,532,4,9,3,4,1,1,523,678,123,135,393,527,1,7,1,3,1,0,4,6,127,141,394,529,4,9,2,4,1,1,6,6,1,3,3,3,0,0,1,0,0,0,1,0,2,3,4,3,0,0,1,0,0,0 -050,01,087,Alabama,Macon County,12,13,1220,574,646,132,114,431,514,3,4,1,6,0,0,7,8,138,118,431,519,5,11,6,6,1,0,568,640,129,113,430,511,3,4,1,6,0,0,5,6,133,115,430,515,4,10,5,6,1,0,6,6,3,1,1,3,0,0,0,0,0,0,2,2,5,3,1,4,1,1,1,0,0,0 -050,01,087,Alabama,Macon County,12,14,1268,530,738,94,119,419,608,3,3,3,0,0,0,11,8,102,121,425,614,10,8,5,2,0,1,521,734,92,118,416,606,3,2,3,0,0,0,7,8,98,120,419,612,8,7,4,2,0,1,9,4,2,1,3,2,0,1,0,0,0,0,4,0,4,1,6,2,2,1,1,0,0,0 -050,01,087,Alabama,Macon County,12,15,971,433,538,107,96,322,437,1,3,1,0,0,0,2,2,109,96,322,439,3,5,1,0,0,0,427,537,102,96,322,436,1,3,1,0,0,0,1,2,103,96,322,438,2,5,1,0,0,0,6,1,5,0,0,1,0,0,0,0,0,0,1,0,6,0,0,1,1,0,0,0,0,0 -050,01,087,Alabama,Macon County,12,16,706,302,404,95,86,201,313,1,0,0,2,0,0,5,3,99,88,202,315,5,2,1,2,0,0,298,403,92,86,200,312,1,0,0,2,0,0,5,3,96,88,201,314,5,2,1,2,0,0,4,1,3,0,1,1,0,0,0,0,0,0,0,0,3,0,1,1,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,12,17,418,158,260,40,39,118,220,0,0,0,0,0,0,0,1,40,40,118,220,0,1,0,0,0,0,155,260,37,39,118,220,0,0,0,0,0,0,0,1,37,40,118,220,0,1,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,12,18,400,129,271,36,34,90,231,0,0,2,1,0,0,1,5,36,37,91,234,1,1,2,4,0,0,127,266,34,34,90,229,0,0,2,1,0,0,1,2,34,36,91,229,1,1,2,2,0,0,2,5,2,0,0,2,0,0,0,0,0,0,0,3,2,1,0,5,0,0,0,2,0,0 -050,01,087,Alabama,Macon County,13,0,17895,8109,9786,1612,1553,6309,8010,19,31,56,37,2,1,111,154,1697,1669,6373,8105,73,96,79,76,9,11,7898,9612,1495,1477,6244,7940,15,27,50,36,1,1,93,131,1567,1575,6299,8020,57,82,69,69,7,9,211,174,117,76,65,70,4,4,6,1,1,0,18,23,130,94,74,85,16,14,10,7,2,2 -050,01,087,Alabama,Macon County,13,1,888,475,413,81,77,380,321,0,0,1,0,0,0,13,15,93,90,388,332,2,3,4,3,1,0,459,394,73,62,374,317,0,0,1,0,0,0,11,15,83,75,381,328,1,3,4,3,1,0,16,19,8,15,6,4,0,0,0,0,0,0,2,0,10,15,7,4,1,0,0,0,0,0 -050,01,087,Alabama,Macon County,13,2,843,417,426,78,83,324,323,0,2,6,3,0,0,9,15,85,96,331,335,3,7,8,5,0,0,390,406,63,70,318,319,0,2,3,3,0,0,6,12,68,80,323,328,1,6,4,5,0,0,27,20,15,13,6,4,0,0,3,0,0,0,3,3,17,16,8,7,2,1,4,0,0,0 -050,01,087,Alabama,Macon County,13,3,865,444,421,97,70,340,336,1,1,2,2,0,0,4,12,101,79,343,346,1,6,3,3,0,0,419,404,79,62,334,330,0,0,2,2,0,0,4,10,83,69,337,338,0,4,3,3,0,0,25,17,18,8,6,6,1,1,0,0,0,0,0,2,18,10,6,8,1,2,0,0,0,0 -050,01,087,Alabama,Macon County,13,4,1515,715,800,93,48,607,733,0,3,7,2,0,0,8,14,99,58,613,744,5,5,8,6,0,2,691,785,81,44,595,723,0,3,7,2,0,0,8,13,87,53,601,734,5,5,8,5,0,2,24,15,12,4,12,10,0,0,0,0,0,0,0,1,12,5,12,10,0,0,0,1,0,0 -050,01,087,Alabama,Macon County,13,5,2079,907,1172,88,100,799,1052,0,1,12,5,0,0,8,14,91,110,805,1061,5,6,14,10,0,1,892,1158,84,96,790,1043,0,1,11,5,0,0,7,13,87,106,795,1051,4,5,13,10,0,1,15,14,4,4,9,9,0,0,1,0,0,0,1,1,4,4,10,10,1,1,1,0,0,0 -050,01,087,Alabama,Macon County,13,6,1128,532,596,98,100,410,484,3,1,6,0,0,0,15,11,112,110,419,489,10,5,9,3,2,1,520,584,90,94,408,479,1,1,6,0,0,0,15,10,104,103,417,484,8,5,9,2,2,1,12,12,8,6,2,5,2,0,0,0,0,0,0,1,8,7,2,5,2,0,0,1,0,0 -050,01,087,Alabama,Macon County,13,7,925,423,502,84,84,333,408,1,2,2,2,0,0,3,6,87,90,335,411,2,3,2,4,0,0,407,494,77,80,325,405,1,2,1,2,0,0,3,5,80,85,327,407,2,3,1,4,0,0,16,8,7,4,8,3,0,0,1,0,0,0,0,1,7,5,8,4,0,0,1,0,0,0 -050,01,087,Alabama,Macon County,13,8,814,362,452,87,81,265,356,1,2,1,1,0,1,8,11,93,89,269,361,7,8,2,4,1,3,346,439,78,80,261,351,0,0,1,1,0,1,6,6,83,84,264,353,4,2,2,4,0,3,16,13,9,1,4,5,1,2,0,0,0,0,2,5,10,5,5,8,3,6,0,0,1,0 -050,01,087,Alabama,Macon County,13,9,750,345,405,61,73,276,322,0,0,4,1,0,0,4,9,64,79,278,328,2,5,5,4,0,0,337,395,55,68,275,319,0,0,4,1,0,0,3,7,57,72,277,324,1,5,5,3,0,0,8,10,6,5,1,3,0,0,0,0,0,0,1,2,7,7,1,4,1,0,0,1,0,0 -050,01,087,Alabama,Macon County,13,10,917,404,513,97,96,301,405,0,1,2,4,0,0,4,7,101,99,302,410,2,5,3,6,0,1,396,508,93,95,298,401,0,1,2,4,0,0,3,7,96,98,299,406,1,5,3,6,0,1,8,5,4,1,3,4,0,0,0,0,0,0,1,0,5,1,3,4,1,0,0,0,0,0 -050,01,087,Alabama,Macon County,13,11,993,448,545,127,111,310,427,4,1,4,3,1,0,2,3,127,114,311,429,5,2,5,3,2,0,440,533,120,104,310,423,4,1,4,2,0,0,2,3,120,107,311,425,5,2,5,2,1,0,8,12,7,7,0,4,0,0,0,1,1,0,0,0,7,7,0,4,0,0,0,1,1,0 -050,01,087,Alabama,Macon County,13,12,1182,508,674,110,130,391,528,0,5,1,3,1,0,5,8,114,134,394,533,3,10,1,5,1,1,505,665,109,127,389,524,0,5,1,3,1,0,5,6,113,130,392,528,3,9,1,4,1,0,3,9,1,3,2,4,0,0,0,0,0,0,0,2,1,4,2,5,0,1,0,1,0,1 -050,01,087,Alabama,Macon County,13,13,1193,568,625,139,118,416,487,4,6,2,5,0,0,7,9,146,123,417,491,7,12,5,7,0,1,560,619,136,115,414,485,4,6,1,5,0,0,5,8,141,120,415,489,6,12,3,6,0,0,8,6,3,3,2,2,0,0,1,0,0,0,2,1,5,3,2,2,1,0,2,1,0,1 -050,01,087,Alabama,Macon County,13,14,1216,503,713,96,127,391,573,3,3,3,2,0,0,10,8,100,134,398,576,10,9,6,4,0,1,494,707,94,125,388,571,3,2,3,2,0,0,6,7,96,131,392,573,8,7,4,4,0,1,9,6,2,2,3,2,0,1,0,0,0,0,4,1,4,3,6,3,2,2,2,0,0,0 -050,01,087,Alabama,Macon County,13,15,1034,470,564,106,90,360,468,1,2,0,1,0,0,3,3,109,92,361,469,2,5,1,1,0,0,463,562,101,90,360,466,1,2,0,1,0,0,1,3,102,92,360,467,1,5,1,1,0,0,7,2,5,0,0,2,0,0,0,0,0,0,2,0,7,0,1,2,1,0,0,0,0,0 -050,01,087,Alabama,Macon County,13,16,713,294,419,92,80,196,333,0,1,1,2,0,0,5,3,95,83,198,333,3,2,1,4,2,0,291,418,90,80,195,332,0,1,1,2,0,0,5,3,93,83,197,332,3,2,1,4,2,0,3,1,2,0,1,1,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,13,17,425,161,264,41,51,117,212,1,0,0,0,0,0,2,1,42,52,118,212,3,1,0,0,0,0,158,264,38,51,117,212,1,0,0,0,0,0,2,1,39,52,118,212,3,1,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,087,Alabama,Macon County,13,18,415,133,282,37,34,93,242,0,0,2,1,0,0,1,5,38,37,93,245,1,2,2,4,0,0,130,277,34,34,93,240,0,0,2,1,0,0,1,2,35,35,93,241,1,1,2,3,0,0,3,5,3,0,0,2,0,0,0,0,0,0,0,3,3,2,0,4,0,1,0,1,0,0 -050,01,089,Alabama,Madison County,1,0,334811,164320,170491,116962,117305,38182,43144,1456,1428,3854,4579,233,208,3633,3827,120208,120619,39778,44921,2936,3059,4934,5662,377,390,155764,163643,109971,111826,37350,42370,1152,1197,3774,4507,160,173,3357,3570,112994,114936,38777,44003,2512,2703,4801,5531,273,332,8556,6848,6991,5479,832,774,304,231,80,72,73,35,276,257,7214,5683,1001,918,424,356,133,131,104,58 -050,01,089,Alabama,Madison County,1,1,20869,10595,10274,6781,6431,2850,2876,108,88,253,270,14,16,589,593,7326,6968,3228,3257,211,206,440,442,38,35,9587,9306,5978,5665,2751,2759,67,56,242,260,10,15,539,551,6482,6168,3093,3117,153,160,416,418,29,30,1008,968,803,766,99,117,41,32,11,10,4,1,50,42,844,800,135,140,58,46,24,24,9,5 -050,01,089,Alabama,Madison County,1,2,21285,10942,10343,7204,6753,2840,2668,116,131,287,308,20,18,475,465,7643,7172,3114,2929,226,251,438,452,33,41,10195,9708,6611,6251,2770,2599,86,97,277,304,16,17,435,440,7015,6652,3015,2844,183,209,423,442,26,36,747,635,593,502,70,69,30,34,10,4,4,1,40,25,628,520,99,85,43,42,15,10,7,5 -050,01,089,Alabama,Madison County,1,3,22834,11675,11159,7699,7369,3103,2932,112,105,274,291,27,25,460,437,8120,7760,3360,3150,246,249,403,426,39,46,11055,10599,7204,6955,3035,2866,90,77,269,283,19,22,438,396,7606,7312,3281,3057,215,199,392,414,30,41,620,560,495,414,68,66,22,28,5,8,8,3,22,41,514,448,79,93,31,50,11,12,9,5 -050,01,089,Alabama,Madison County,1,4,24777,12829,11948,8033,7130,4062,4064,108,107,250,250,17,18,359,379,8362,7458,4227,4248,245,256,339,364,38,38,12101,11358,7466,6669,3962,3988,92,91,243,244,8,14,330,352,7770,6978,4115,4159,212,225,326,349,26,32,728,590,567,461,100,76,16,16,7,6,9,4,29,27,592,480,112,89,33,31,13,15,12,6 -050,01,089,Alabama,Madison County,1,5,24321,12417,11904,7456,6385,4244,4832,119,115,297,225,27,17,274,330,7679,6653,4374,5028,229,244,385,325,47,34,11300,11198,6576,5862,4106,4706,73,92,289,219,15,12,241,307,6776,6110,4216,4887,169,209,369,315,27,28,1117,706,880,523,138,126,46,23,8,6,12,5,33,23,903,543,158,141,60,35,16,10,20,6 -050,01,089,Alabama,Madison County,1,6,23246,11826,11420,7902,7199,3188,3535,145,103,332,315,25,17,234,251,8100,7418,3275,3654,239,197,425,396,38,29,10772,10708,7041,6622,3083,3456,104,80,325,309,15,12,204,229,7216,6823,3153,3563,184,166,412,385,24,22,1054,712,861,577,105,79,41,23,7,6,10,5,30,22,884,595,122,91,55,31,13,11,14,7 -050,01,089,Alabama,Madison County,1,7,20712,10245,10467,7045,6617,2494,3051,135,136,319,377,23,12,229,274,7240,6854,2577,3162,244,262,398,469,30,22,9373,9880,6323,6159,2410,2982,105,111,309,370,11,9,215,249,6508,6374,2484,3079,206,228,387,457,17,18,872,587,722,458,84,69,30,25,10,7,12,3,14,25,732,480,93,83,38,34,11,12,13,4 -050,01,089,Alabama,Madison County,1,8,21103,10134,10969,7147,7309,2368,2943,101,112,318,382,15,27,185,196,7314,7474,2413,3012,208,222,371,440,23,37,9525,10463,6638,6886,2323,2897,71,96,311,377,9,23,173,184,6795,7040,2360,2960,173,199,363,433,17,32,609,506,509,423,45,46,30,16,7,5,6,4,12,12,519,434,53,52,35,23,8,7,6,5 -050,01,089,Alabama,Madison County,1,9,23254,11307,11947,8321,8431,2388,2866,92,96,312,383,16,11,178,160,8472,8561,2431,2906,211,205,359,419,21,26,10796,11596,7891,8128,2349,2840,71,87,308,379,12,9,165,153,8032,8253,2387,2878,183,190,353,414,15,24,511,351,430,303,39,26,21,9,4,4,4,2,13,7,440,308,44,28,28,15,6,5,6,2 -050,01,089,Alabama,Madison County,1,10,28126,13708,14418,10519,10552,2567,3141,102,116,317,399,13,17,190,193,10696,10713,2597,3195,227,233,372,454,20,30,13315,14042,10177,10231,2543,3116,92,103,313,398,11,17,179,177,10345,10381,2566,3163,211,209,368,449,17,27,393,376,342,321,24,25,10,13,4,1,2,0,11,16,351,332,31,32,16,24,4,5,3,3 -050,01,089,Alabama,Madison County,1,11,25690,12837,12853,9821,9398,2458,2835,105,90,275,369,11,6,167,155,9971,9535,2494,2873,216,196,322,405,16,10,12509,12545,9535,9129,2435,2809,97,86,273,364,10,5,159,152,9678,9264,2464,2845,204,190,318,400,15,9,328,308,286,269,23,26,8,4,2,5,1,1,8,3,293,271,30,28,12,6,4,5,1,1 -050,01,089,Alabama,Madison County,1,12,20576,10015,10561,7744,7701,1868,2281,87,94,193,321,5,12,118,152,7846,7822,1897,2324,168,213,226,347,9,19,9784,10370,7540,7545,1855,2261,82,90,192,320,5,9,110,145,7636,7660,1879,2300,158,204,224,343,7,15,231,191,204,156,13,20,5,4,1,1,0,3,8,7,210,162,18,24,10,9,2,4,2,4 -050,01,089,Alabama,Madison County,1,13,17145,8220,8925,6483,6693,1436,1808,63,61,165,278,7,4,66,81,6540,6756,1451,1836,113,126,177,287,10,9,8081,8796,6359,6583,1428,1796,61,60,163,275,6,3,64,79,6414,6645,1442,1822,111,123,175,284,8,7,139,129,124,110,8,12,2,1,2,3,1,1,2,2,126,111,9,14,2,3,2,3,2,2 -050,01,089,Alabama,Madison County,1,14,12792,5859,6933,4748,5510,927,1155,29,42,109,168,5,4,41,54,4783,5558,938,1165,64,87,112,175,7,6,5767,6855,4667,5446,919,1149,28,40,109,165,5,2,39,53,4700,5494,930,1159,62,84,111,171,7,4,92,78,81,64,8,6,1,2,0,3,0,2,2,1,83,64,8,6,2,3,1,4,0,2 -050,01,089,Alabama,Madison County,1,15,10359,4640,5719,3911,4763,602,800,16,16,77,102,6,4,28,34,3936,4790,605,810,41,41,81,110,6,5,4602,5655,3879,4706,598,797,15,15,76,101,6,4,28,32,3904,4731,601,806,40,39,80,108,6,5,38,64,32,57,4,3,1,1,1,1,0,0,0,2,32,59,4,4,1,2,1,2,0,0 -050,01,089,Alabama,Madison County,1,16,8034,3523,4511,3060,3860,392,545,10,4,38,72,0,0,23,30,3079,3886,396,548,31,29,40,77,0,1,3490,4472,3030,3825,389,542,10,4,38,71,0,0,23,30,3049,3851,393,545,31,29,40,76,0,1,33,39,30,35,3,3,0,0,0,1,0,0,0,0,30,35,3,3,0,0,0,1,0,0 -050,01,089,Alabama,Madison County,1,17,5250,2102,3148,1836,2680,229,384,3,7,27,45,1,0,6,32,1842,2708,230,393,6,28,30,50,1,1,2082,3122,1816,2656,229,382,3,7,27,45,1,0,6,32,1822,2684,230,391,6,28,30,50,1,1,20,26,20,24,0,2,0,0,0,0,0,0,0,0,20,24,0,2,0,0,0,0,0,0 -050,01,089,Alabama,Madison County,1,18,4438,1446,2992,1252,2524,166,428,5,5,11,24,1,0,11,11,1259,2533,171,431,11,14,16,24,1,1,1430,2970,1240,2508,165,425,5,5,10,23,1,0,9,9,1246,2516,168,428,11,12,14,23,1,0,16,22,12,16,1,3,0,0,1,1,0,0,2,2,13,17,3,3,0,2,2,1,0,1 -050,01,089,Alabama,Madison County,2,0,334812,164321,170491,116965,117307,38180,43142,1456,1428,3854,4579,233,208,3633,3827,120211,120621,39776,44919,2936,3059,4934,5662,377,390,155765,163643,109974,111828,37348,42368,1152,1197,3774,4507,160,173,3357,3570,112997,114938,38775,44001,2512,2703,4801,5531,273,332,8556,6848,6991,5479,832,774,304,231,80,72,73,35,276,257,7214,5683,1001,918,424,356,133,131,104,58 -050,01,089,Alabama,Madison County,2,1,20868,10594,10274,6781,6431,2849,2876,108,88,253,270,14,16,589,593,7326,6968,3227,3257,211,206,440,442,38,35,9586,9306,5978,5665,2750,2759,67,56,242,260,10,15,539,551,6482,6168,3092,3117,153,160,416,418,29,30,1008,968,803,766,99,117,41,32,11,10,4,1,50,42,844,800,135,140,58,46,24,24,9,5 -050,01,089,Alabama,Madison County,2,2,21284,10942,10342,7204,6753,2840,2667,116,131,287,308,20,18,475,465,7643,7172,3114,2928,226,251,438,452,33,41,10195,9707,6611,6251,2770,2598,86,97,277,304,16,17,435,440,7015,6652,3015,2843,183,209,423,442,26,36,747,635,593,502,70,69,30,34,10,4,4,1,40,25,628,520,99,85,43,42,15,10,7,5 -050,01,089,Alabama,Madison County,2,3,22834,11675,11159,7699,7369,3103,2932,112,105,274,291,27,25,460,437,8120,7760,3360,3150,246,249,403,426,39,46,11055,10599,7204,6955,3035,2866,90,77,269,283,19,22,438,396,7606,7312,3281,3057,215,199,392,414,30,41,620,560,495,414,68,66,22,28,5,8,8,3,22,41,514,448,79,93,31,50,11,12,9,5 -050,01,089,Alabama,Madison County,2,4,24776,12829,11947,8033,7129,4062,4064,108,107,250,250,17,18,359,379,8362,7457,4227,4248,245,256,339,364,38,38,12101,11357,7466,6668,3962,3988,92,91,243,244,8,14,330,352,7770,6977,4115,4159,212,225,326,349,26,32,728,590,567,461,100,76,16,16,7,6,9,4,29,27,592,480,112,89,33,31,13,15,12,6 -050,01,089,Alabama,Madison County,2,5,24322,12417,11905,7456,6386,4244,4832,119,115,297,225,27,17,274,330,7679,6654,4374,5028,229,244,385,325,47,34,11300,11199,6576,5863,4106,4706,73,92,289,219,15,12,241,307,6776,6111,4216,4887,169,209,369,315,27,28,1117,706,880,523,138,126,46,23,8,6,12,5,33,23,903,543,158,141,60,35,16,10,20,6 -050,01,089,Alabama,Madison County,2,6,23246,11826,11420,7903,7199,3187,3535,145,103,332,315,25,17,234,251,8101,7418,3274,3654,239,197,425,396,38,29,10772,10708,7042,6622,3082,3456,104,80,325,309,15,12,204,229,7217,6823,3152,3563,184,166,412,385,24,22,1054,712,861,577,105,79,41,23,7,6,10,5,30,22,884,595,122,91,55,31,13,11,14,7 -050,01,089,Alabama,Madison County,2,7,20711,10245,10466,7045,6617,2494,3050,135,136,319,377,23,12,229,274,7240,6854,2577,3161,244,262,398,469,30,22,9373,9879,6323,6159,2410,2981,105,111,309,370,11,9,215,249,6508,6374,2484,3078,206,228,387,457,17,18,872,587,722,458,84,69,30,25,10,7,12,3,14,25,732,480,93,83,38,34,11,12,13,4 -050,01,089,Alabama,Madison County,2,8,21102,10134,10968,7147,7308,2368,2943,101,112,318,382,15,27,185,196,7314,7473,2413,3012,208,222,371,440,23,37,9525,10462,6638,6885,2323,2897,71,96,311,377,9,23,173,184,6795,7039,2360,2960,173,199,363,433,17,32,609,506,509,423,45,46,30,16,7,5,6,4,12,12,519,434,53,52,35,23,8,7,6,5 -050,01,089,Alabama,Madison County,2,9,23253,11306,11947,8320,8431,2388,2866,92,96,312,383,16,11,178,160,8471,8561,2431,2906,211,205,359,419,21,26,10795,11596,7890,8128,2349,2840,71,87,308,379,12,9,165,153,8031,8253,2387,2878,183,190,353,414,15,24,511,351,430,303,39,26,21,9,4,4,4,2,13,7,440,308,44,28,28,15,6,5,6,2 -050,01,089,Alabama,Madison County,2,10,28128,13710,14418,10521,10552,2567,3141,102,116,317,399,13,17,190,193,10698,10713,2597,3195,227,233,372,454,20,30,13317,14042,10179,10231,2543,3116,92,103,313,398,11,17,179,177,10347,10381,2566,3163,211,209,368,449,17,27,393,376,342,321,24,25,10,13,4,1,2,0,11,16,351,332,31,32,16,24,4,5,3,3 -050,01,089,Alabama,Madison County,2,11,25693,12838,12855,9822,9400,2458,2835,105,90,275,369,11,6,167,155,9972,9537,2494,2873,216,196,322,405,16,10,12510,12547,9536,9131,2435,2809,97,86,273,364,10,5,159,152,9679,9266,2464,2845,204,190,318,400,15,9,328,308,286,269,23,26,8,4,2,5,1,1,8,3,293,271,30,28,12,6,4,5,1,1 -050,01,089,Alabama,Madison County,2,12,20577,10015,10562,7744,7702,1868,2281,87,94,193,321,5,12,118,152,7846,7823,1897,2324,168,213,226,347,9,19,9784,10371,7540,7546,1855,2261,82,90,192,320,5,9,110,145,7636,7661,1879,2300,158,204,224,343,7,15,231,191,204,156,13,20,5,4,1,1,0,3,8,7,210,162,18,24,10,9,2,4,2,4 -050,01,089,Alabama,Madison County,2,13,17145,8220,8925,6483,6693,1436,1808,63,61,165,278,7,4,66,81,6540,6756,1451,1836,113,126,177,287,10,9,8081,8796,6359,6583,1428,1796,61,60,163,275,6,3,64,79,6414,6645,1442,1822,111,123,175,284,8,7,139,129,124,110,8,12,2,1,2,3,1,1,2,2,126,111,9,14,2,3,2,3,2,2 -050,01,089,Alabama,Madison County,2,14,12792,5859,6933,4748,5510,927,1155,29,42,109,168,5,4,41,54,4783,5558,938,1165,64,87,112,175,7,6,5767,6855,4667,5446,919,1149,28,40,109,165,5,2,39,53,4700,5494,930,1159,62,84,111,171,7,4,92,78,81,64,8,6,1,2,0,3,0,2,2,1,83,64,8,6,2,3,1,4,0,2 -050,01,089,Alabama,Madison County,2,15,10359,4640,5719,3911,4763,602,800,16,16,77,102,6,4,28,34,3936,4790,605,810,41,41,81,110,6,5,4602,5655,3879,4706,598,797,15,15,76,101,6,4,28,32,3904,4731,601,806,40,39,80,108,6,5,38,64,32,57,4,3,1,1,1,1,0,0,0,2,32,59,4,4,1,2,1,2,0,0 -050,01,089,Alabama,Madison County,2,16,8034,3523,4511,3060,3860,392,545,10,4,38,72,0,0,23,30,3079,3886,396,548,31,29,40,77,0,1,3490,4472,3030,3825,389,542,10,4,38,71,0,0,23,30,3049,3851,393,545,31,29,40,76,0,1,33,39,30,35,3,3,0,0,0,1,0,0,0,0,30,35,3,3,0,0,0,1,0,0 -050,01,089,Alabama,Madison County,2,17,5250,2102,3148,1836,2680,229,384,3,7,27,45,1,0,6,32,1842,2708,230,393,6,28,30,50,1,1,2082,3122,1816,2656,229,382,3,7,27,45,1,0,6,32,1822,2684,230,391,6,28,30,50,1,1,20,26,20,24,0,2,0,0,0,0,0,0,0,0,20,24,0,2,0,0,0,0,0,0 -050,01,089,Alabama,Madison County,2,18,4438,1446,2992,1252,2524,166,428,5,5,11,24,1,0,11,11,1259,2533,171,431,11,14,16,24,1,1,1430,2970,1240,2508,165,425,5,5,10,23,1,0,9,9,1246,2516,168,428,11,12,14,23,1,0,16,22,12,16,1,3,0,0,1,1,0,0,2,2,13,17,3,3,0,2,2,1,0,1 -050,01,089,Alabama,Madison County,3,0,336114,164918,171196,117375,117786,38289,43293,1452,1428,3888,4611,240,221,3674,3857,120621,121147,39907,45113,2984,3053,4984,5742,394,378,156333,164280,110369,112262,37453,42517,1152,1195,3801,4529,167,181,3391,3596,113376,115410,38957,44217,2537,2687,4829,5592,289,306,8585,6916,7006,5524,836,776,300,233,87,82,73,40,283,261,7245,5737,950,896,447,366,155,150,105,72 -050,01,089,Alabama,Madison County,3,1,20861,10601,10260,6766,6420,2851,2872,102,85,261,266,14,16,607,601,7326,6976,3238,3270,211,182,440,435,38,33,9587,9293,5955,5650,2755,2757,65,54,250,257,9,16,553,559,6467,6168,3114,3137,150,139,418,413,27,28,1014,967,811,770,96,115,37,31,11,9,5,0,54,42,859,808,124,133,61,43,22,22,11,5 -050,01,089,Alabama,Madison County,3,2,21309,10937,10372,7209,6786,2829,2663,119,129,286,308,20,18,474,468,7648,7210,3122,2955,220,240,427,435,34,38,10166,9717,6596,6267,2758,2595,85,94,274,302,16,17,437,442,7002,6673,3033,2873,168,191,405,424,27,32,771,655,613,519,71,68,34,35,12,6,4,1,37,26,646,537,89,82,52,49,22,11,7,6 -050,01,089,Alabama,Madison County,3,3,22868,11691,11177,7701,7354,3110,2956,113,107,278,293,26,25,463,442,8124,7752,3367,3202,242,241,415,423,41,42,11058,10611,7201,6936,3040,2890,89,78,272,284,19,22,437,401,7601,7297,3289,3119,207,189,402,404,31,35,633,566,500,418,70,66,24,29,6,9,7,3,26,41,523,455,78,83,35,52,13,19,10,7 -050,01,089,Alabama,Madison County,3,4,24801,12835,11966,8034,7153,4055,4042,111,109,255,258,14,20,366,384,8361,7484,4242,4260,255,254,359,371,23,34,12120,11374,7479,6697,3953,3963,95,93,249,250,7,15,337,356,7779,7007,4130,4165,220,224,344,356,15,27,715,592,555,456,102,79,16,16,6,8,7,5,29,28,582,477,112,95,35,30,15,15,8,7 -050,01,089,Alabama,Madison County,3,5,24295,12376,11919,7438,6425,4231,4807,117,112,288,230,28,19,274,326,7664,6697,4359,4963,232,242,382,350,39,35,11292,11232,6578,5916,4100,4684,73,91,280,224,17,14,244,303,6781,6170,4211,4828,170,209,371,338,26,28,1084,687,860,509,131,123,44,21,8,6,11,5,30,23,883,527,148,135,62,33,11,12,13,7 -050,01,089,Alabama,Madison County,3,6,23414,11918,11496,7981,7259,3193,3547,144,101,337,316,26,17,237,256,8180,7480,3271,3651,245,212,428,410,43,30,10874,10782,7133,6678,3085,3466,104,80,329,310,16,12,207,236,7307,6883,3155,3561,193,178,411,400,27,23,1044,714,848,581,108,81,40,21,8,6,10,5,30,20,873,597,116,90,52,34,17,10,16,7 -050,01,089,Alabama,Madison County,3,7,20941,10374,10567,7135,6701,2532,3073,134,137,316,374,26,12,231,270,7326,6934,2599,3176,244,259,412,480,33,21,9497,9962,6412,6225,2445,3005,107,112,306,366,12,9,215,245,6591,6436,2507,3096,208,219,397,469,18,17,877,605,723,476,87,68,27,25,10,8,14,3,16,25,735,498,92,80,36,40,15,11,15,4 -050,01,089,Alabama,Madison County,3,8,21025,10086,10939,7106,7252,2367,2964,100,115,316,378,17,30,180,200,7262,7422,2408,3027,203,227,382,446,29,39,9466,10432,6587,6834,2319,2917,71,98,308,373,11,23,170,187,6734,6992,2358,2977,167,204,372,437,22,30,620,507,519,418,48,47,29,17,8,5,6,7,10,13,528,430,50,50,36,23,10,9,7,9 -050,01,089,Alabama,Madison County,3,9,23235,11288,11947,8302,8426,2384,2864,91,98,315,388,14,10,182,161,8455,8560,2424,2907,215,203,361,434,23,19,10775,11575,7870,8105,2349,2835,68,87,310,384,9,9,169,155,8013,8234,2386,2876,184,188,354,428,15,16,513,372,432,321,35,29,23,11,5,4,5,1,13,6,442,326,38,31,31,15,7,6,8,3 -050,01,089,Alabama,Madison County,3,10,28117,13704,14413,10517,10545,2563,3148,100,111,321,399,13,18,190,192,10684,10707,2599,3202,236,242,369,446,23,28,13303,14039,10169,10229,2536,3123,91,98,317,396,12,17,178,176,10329,10379,2567,3170,220,220,362,437,19,25,401,374,348,316,27,25,9,13,4,3,1,1,12,16,355,328,32,32,16,22,7,9,4,3 -050,01,089,Alabama,Madison County,3,11,25983,12982,13001,9928,9509,2490,2864,102,90,281,371,12,9,169,158,10081,9643,2525,2902,228,204,321,409,23,13,12647,12687,9639,9236,2467,2838,94,87,277,365,10,7,160,154,9783,9367,2499,2875,214,198,316,402,20,11,335,314,289,273,23,26,8,3,4,6,2,2,9,4,298,276,26,27,14,6,5,7,3,2 -050,01,089,Alabama,Madison County,3,12,20816,10139,10677,7836,7790,1887,2306,92,94,195,322,5,14,124,151,7935,7918,1919,2349,180,209,225,352,11,19,9905,10478,7631,7630,1874,2285,86,89,194,321,5,10,115,143,7724,7752,1902,2323,169,200,221,348,9,14,234,199,205,160,13,21,6,5,1,1,0,4,9,8,211,166,17,26,11,9,4,4,2,5 -050,01,089,Alabama,Madison County,3,13,17302,8296,9006,6533,6723,1453,1842,63,63,169,290,9,4,69,84,6596,6793,1465,1864,120,128,180,303,11,11,8151,8877,6405,6614,1445,1832,61,61,167,286,8,3,65,81,6464,6683,1457,1852,116,125,176,298,10,7,145,129,128,109,8,10,2,2,2,4,1,1,4,3,132,110,8,12,4,3,4,5,1,4 -050,01,089,Alabama,Madison County,3,14,12878,5902,6976,4775,5536,938,1168,29,43,114,171,7,4,39,54,4808,5581,948,1177,61,87,119,182,10,7,5812,6895,4695,5470,931,1161,28,40,114,169,7,2,37,53,4726,5515,940,1170,59,83,119,179,10,5,90,81,80,66,7,7,1,3,0,2,0,2,2,1,82,66,8,7,2,4,0,3,0,2 -050,01,089,Alabama,Madison County,3,15,10385,4635,5750,3896,4777,611,810,17,16,77,105,6,5,28,37,3922,4804,613,823,39,45,82,112,8,6,4596,5683,3863,4720,606,807,17,15,76,102,6,5,28,34,3889,4744,608,819,39,43,81,108,8,5,39,67,33,57,5,3,0,1,1,3,0,0,0,3,33,60,5,4,0,2,1,4,0,1 -050,01,089,Alabama,Madison County,3,16,8091,3556,4535,3086,3873,395,554,10,5,40,72,0,0,25,31,3104,3897,402,561,33,30,41,77,1,1,3523,4497,3057,3839,391,551,10,5,40,71,0,0,25,31,3075,3863,398,558,33,30,41,76,1,1,33,38,29,34,4,3,0,0,0,1,0,0,0,0,29,34,4,3,0,0,0,1,0,0 -050,01,089,Alabama,Madison County,3,17,5306,2139,3167,1869,2703,232,383,3,7,27,44,2,0,6,30,1874,2726,233,389,9,31,27,49,2,2,2118,3141,1848,2679,232,381,3,7,27,44,2,0,6,30,1853,2702,233,387,9,31,27,49,2,2,21,26,21,24,0,2,0,0,0,0,0,0,0,0,21,24,0,2,0,0,0,0,0,0 -050,01,089,Alabama,Madison County,3,18,4487,1459,3028,1263,2554,168,430,5,6,12,26,1,0,10,12,1271,2563,173,435,11,17,14,28,2,0,1443,3005,1251,2537,167,427,5,6,11,25,1,0,8,10,1258,2545,170,431,11,16,12,26,2,0,16,23,12,17,1,3,0,0,1,1,0,0,2,2,13,18,3,4,0,1,2,2,0,0 -050,01,089,Alabama,Madison County,4,0,339623,166441,173182,118624,119111,38540,43785,1438,1414,3800,4653,223,196,3816,4023,121996,122610,40273,45697,2995,3056,4941,5852,373,355,157867,166028,111528,113322,37772,43022,1166,1184,3723,4584,159,157,3519,3759,114659,116610,39362,44809,2571,2693,4795,5708,272,288,8574,7154,7096,5789,768,763,272,230,77,69,64,39,297,264,7337,6000,911,888,424,363,146,144,101,67 -050,01,089,Alabama,Madison County,4,1,20924,10694,10230,6776,6439,2896,2855,89,73,274,237,18,11,641,615,7378,7014,3309,3256,205,177,468,412,46,26,9736,9227,5993,5618,2818,2751,61,48,268,230,11,11,585,569,6545,6154,3200,3132,154,133,448,389,34,23,958,1003,783,821,78,104,28,25,6,7,7,0,56,46,833,860,109,124,51,44,20,23,12,3 -050,01,089,Alabama,Madison County,4,2,21311,10847,10464,7196,6858,2746,2684,114,125,266,291,14,15,511,491,7666,7310,3067,2984,223,237,419,430,26,30,10023,9757,6540,6284,2673,2622,76,86,257,287,10,15,467,463,6976,6712,2970,2910,166,184,400,420,17,29,824,707,656,574,73,62,38,39,9,4,4,0,44,28,690,598,97,74,57,53,19,10,9,1 -050,01,089,Alabama,Madison County,4,3,22883,11648,11235,7675,7358,3090,2973,117,108,276,296,23,22,467,478,8097,7786,3347,3247,245,242,413,443,44,39,10976,10645,7140,6915,3026,2902,87,76,270,290,17,19,436,443,7538,7313,3270,3158,202,193,402,425,31,35,672,590,535,443,64,71,30,32,6,6,6,3,31,35,559,473,77,89,43,49,11,18,13,4 -050,01,089,Alabama,Madison County,4,4,24348,12606,11742,7994,7136,3857,3809,111,108,242,268,13,16,389,405,8336,7488,4057,4045,258,252,353,385,27,27,11933,11169,7457,6693,3770,3735,100,92,237,260,8,11,361,378,7775,7026,3959,3957,230,221,337,369,21,19,673,573,537,443,87,74,11,16,5,8,5,5,28,27,561,462,98,88,28,31,16,16,6,8 -050,01,089,Alabama,Madison County,4,5,24144,12228,11916,7398,6489,4156,4710,105,100,256,279,21,15,292,323,7636,6762,4300,4861,217,224,356,395,31,33,11230,11269,6584,6004,4050,4593,74,80,249,279,13,11,260,302,6796,6261,4178,4732,170,192,343,392,21,26,998,647,814,485,106,117,31,20,7,0,8,4,32,21,840,501,122,129,47,32,13,3,10,7 -050,01,089,Alabama,Madison County,4,6,23878,12139,11739,8201,7386,3214,3651,141,93,327,322,22,10,234,277,8400,7624,3301,3766,249,211,416,423,30,23,11109,11019,7351,6797,3109,3567,108,85,318,314,14,6,209,250,7528,7013,3184,3669,200,188,401,410,18,15,1030,720,850,589,105,84,33,8,9,8,8,4,25,27,872,611,117,97,49,23,15,13,12,8 -050,01,089,Alabama,Madison County,4,7,21786,10807,10979,7431,7054,2684,3174,141,133,285,337,20,13,246,268,7640,7285,2758,3273,262,251,384,444,28,21,9948,10343,6724,6539,2602,3110,114,107,276,333,8,8,224,246,6915,6751,2668,3199,221,214,371,437,13,15,859,636,707,515,82,64,27,26,9,4,12,5,22,22,725,534,90,74,41,37,13,7,15,6 -050,01,089,Alabama,Madison County,4,8,20381,9748,10633,6818,6940,2342,2969,106,118,301,361,18,25,163,220,6962,7119,2383,3041,195,232,361,439,26,37,9110,10128,6291,6529,2279,2921,79,96,293,357,13,20,155,205,6429,6695,2318,2988,162,203,352,432,20,30,638,505,527,411,63,48,27,22,8,4,5,5,8,15,533,424,65,53,33,29,9,7,6,7 -050,01,089,Alabama,Madison County,4,9,23234,11259,11975,8252,8372,2413,2894,89,108,309,400,14,17,182,184,8406,8522,2461,2948,208,221,358,457,18,25,10731,11534,7790,7996,2390,2858,68,96,303,395,10,13,170,176,7937,8140,2431,2908,180,205,349,450,13,21,528,441,462,376,23,36,21,12,6,5,4,4,12,8,469,382,30,40,28,16,9,7,5,4 -050,01,089,Alabama,Madison County,4,10,27636,13407,14229,10259,10326,2534,3203,96,104,316,393,15,14,187,189,10420,10476,2569,3265,228,230,361,444,24,27,12987,13854,9894,10010,2505,3180,86,92,314,388,13,13,175,171,10047,10150,2536,3230,211,209,357,429,19,21,420,375,365,316,29,23,10,12,2,5,2,1,12,18,373,326,33,35,17,21,4,15,5,6 -050,01,089,Alabama,Madison County,4,11,27055,13581,13474,10409,9860,2614,2979,92,97,274,366,11,12,181,160,10568,9992,2656,3018,222,209,314,405,18,19,13226,13135,10091,9564,2597,2950,87,93,270,361,9,10,172,157,10242,9693,2634,2989,212,203,309,399,15,17,355,339,318,296,17,29,5,4,4,5,2,2,9,3,326,299,22,29,10,6,5,6,3,2 -050,01,089,Alabama,Madison County,4,12,21726,10608,11118,8174,8139,1971,2388,102,100,211,331,9,12,141,148,8294,8265,2006,2430,206,215,244,358,15,15,10362,10894,7963,7956,1953,2366,95,92,210,328,9,9,132,143,8076,8077,1982,2407,192,202,240,354,13,11,246,224,211,183,18,22,7,8,1,3,0,3,9,5,218,188,24,23,14,13,4,4,2,4 -050,01,089,Alabama,Madison County,4,13,18160,8682,9478,6793,6979,1563,2007,67,64,176,327,7,5,76,96,6856,7059,1577,2031,124,141,192,341,11,11,8519,9343,6645,6861,1558,1999,65,61,173,324,6,4,72,94,6704,6939,1571,2023,122,137,188,338,8,9,163,135,148,118,5,8,2,3,3,3,1,1,4,2,152,120,6,8,2,4,4,3,3,2 -050,01,089,Alabama,Madison County,4,14,13129,6051,7078,4877,5574,983,1222,25,42,123,181,7,4,36,55,4905,5618,991,1235,53,84,129,191,11,9,5952,6983,4791,5496,975,1212,23,40,123,180,7,2,33,53,4817,5539,982,1224,49,82,128,188,11,6,99,95,86,78,8,10,2,2,0,1,0,2,3,2,88,79,9,11,4,2,1,3,0,3 -050,01,089,Alabama,Madison County,4,15,10508,4642,5866,3871,4820,632,875,23,17,78,109,8,4,30,41,3899,4852,637,885,49,48,81,117,13,9,4597,5793,3832,4759,627,871,23,16,77,105,8,4,30,38,3860,4789,632,880,49,46,80,112,13,8,45,73,39,61,5,4,0,1,1,4,0,0,0,3,39,63,5,5,0,2,1,5,0,1 -050,01,089,Alabama,Madison County,4,16,8372,3704,4668,3201,3964,421,587,11,10,48,77,0,1,23,29,3221,3987,425,594,30,34,50,81,1,2,3677,4630,3178,3929,417,585,11,10,48,76,0,1,23,29,3198,3952,421,592,30,34,50,80,1,2,27,38,23,35,4,2,0,0,0,1,0,0,0,0,23,35,4,2,0,0,0,1,0,0 -050,01,089,Alabama,Madison County,4,17,5512,2275,3237,1979,2772,258,380,3,6,25,50,2,0,8,29,1986,2796,260,387,9,29,26,55,3,1,2251,3208,1955,2746,258,377,3,6,25,50,2,0,8,29,1962,2770,260,384,9,29,26,55,3,1,24,29,24,26,0,3,0,0,0,0,0,0,0,0,24,26,0,3,0,0,0,0,0,0 -050,01,089,Alabama,Madison County,4,18,4636,1515,3121,1320,2645,166,425,6,8,13,28,1,0,9,15,1326,2655,169,431,12,19,16,32,1,1,1500,3097,1309,2626,165,423,6,8,12,27,1,0,7,13,1314,2636,166,427,12,18,14,29,1,0,15,24,11,19,1,2,0,0,1,1,0,0,2,2,12,19,3,4,0,1,2,3,0,1 -050,01,089,Alabama,Madison County,5,0,342823,167815,175008,119276,119836,39090,44618,1437,1406,3891,4834,219,207,3902,4107,122715,123417,40868,46571,2992,3058,5059,6038,369,378,159301,167808,112194,113989,38339,43854,1167,1195,3840,4782,159,164,3602,3824,115396,117352,39975,45667,2568,2705,4935,5916,276,302,8514,7200,7082,5847,751,764,270,211,51,52,60,43,300,283,7319,6065,893,904,424,353,124,122,93,76 -050,01,089,Alabama,Madison County,5,1,20616,10458,10158,6596,6358,2868,2880,67,56,267,222,13,14,647,628,7194,6945,3286,3291,177,162,460,400,36,31,9529,9193,5824,5567,2799,2780,43,38,263,216,9,12,591,580,6375,6114,3187,3171,132,127,441,377,27,24,929,965,772,791,69,100,24,18,4,6,4,2,56,48,819,831,99,120,45,35,19,23,9,7 -050,01,089,Alabama,Madison County,5,2,21454,10909,10545,7142,6867,2821,2754,116,110,261,305,17,15,552,494,7653,7323,3164,3065,227,217,419,442,36,28,10047,9754,6462,6230,2744,2678,78,71,256,301,11,15,496,459,6925,6655,3059,2969,167,164,402,431,24,26,862,791,680,637,77,76,38,39,5,4,6,0,56,35,728,668,105,96,60,53,17,11,12,2 -050,01,089,Alabama,Madison County,5,3,22635,11569,11066,7629,7232,3065,2908,121,122,265,298,23,21,466,485,8045,7667,3329,3188,248,257,401,448,36,43,10894,10495,7084,6795,3009,2844,89,92,262,295,17,18,433,451,7476,7207,3258,3105,200,209,390,436,26,35,675,571,545,437,56,64,32,30,3,3,6,3,33,34,569,460,71,83,48,48,11,12,10,8 -050,01,089,Alabama,Madison County,5,4,24089,12436,11653,7873,7069,3791,3769,108,100,246,290,14,16,404,409,8232,7420,4004,4006,252,235,361,410,27,34,11770,11109,7345,6660,3699,3687,94,86,244,283,11,13,377,380,7683,6992,3900,3903,223,210,351,393,20,27,666,544,528,409,92,82,14,14,2,7,3,3,27,29,549,428,104,103,29,25,10,17,7,7 -050,01,089,Alabama,Madison County,5,5,24589,12349,12240,7481,6720,4162,4739,104,86,289,346,17,18,296,331,7724,6996,4303,4901,220,213,394,464,31,33,11458,11625,6753,6247,4066,4640,79,73,286,344,10,12,264,309,6973,6506,4193,4789,178,187,383,458,21,27,891,615,728,473,96,99,25,13,3,2,7,6,32,22,751,490,110,112,42,26,11,6,10,6 -050,01,089,Alabama,Madison County,5,6,24023,12167,11856,8147,7339,3304,3756,136,106,331,357,19,12,230,286,8339,7578,3389,3875,238,213,423,463,28,30,11141,11121,7304,6738,3200,3665,98,96,322,354,11,8,206,260,7479,6956,3274,3773,183,191,408,455,18,21,1026,735,843,601,104,91,38,10,9,3,8,4,24,26,860,622,115,102,55,22,15,8,10,9 -050,01,089,Alabama,Madison County,5,7,22137,11015,11122,7583,7185,2724,3215,145,126,295,332,22,8,246,256,7793,7403,2798,3308,260,241,396,435,30,13,10227,10507,6924,6679,2650,3159,121,109,290,328,13,3,229,229,7119,6875,2718,3240,224,209,388,426,19,6,788,615,659,506,74,56,24,17,5,4,9,5,17,27,674,528,80,68,36,32,8,9,11,7 -050,01,089,Alabama,Madison County,5,8,20233,9725,10508,6792,6811,2314,2962,113,117,313,351,20,25,173,242,6944,7013,2359,3045,203,248,379,431,30,37,9062,10002,6238,6396,2245,2918,90,91,307,350,13,21,169,226,6386,6588,2287,2991,179,210,372,429,23,31,663,506,554,415,69,44,23,26,6,1,7,4,4,16,558,425,72,54,24,38,7,2,7,6 -050,01,089,Alabama,Madison County,5,9,23126,11195,11931,8136,8226,2466,2964,91,112,313,420,12,22,177,187,8288,8385,2512,3019,202,230,362,474,20,29,10672,11495,7686,7858,2437,2925,65,101,310,415,9,17,165,179,7829,8010,2477,2979,169,213,357,467,16,24,523,436,450,368,29,39,26,11,3,5,3,5,12,8,459,375,35,40,33,17,5,7,4,5 -050,01,089,Alabama,Madison County,5,10,26789,12993,13796,9865,9908,2522,3194,90,106,320,395,14,12,182,181,10023,10059,2556,3251,219,221,363,441,24,25,12572,13388,9491,9567,2499,3163,82,95,317,391,11,9,172,163,9643,9704,2529,3211,205,202,357,431,19,17,421,408,374,341,23,31,8,11,3,4,3,3,10,18,380,355,27,40,14,19,6,10,5,8 -050,01,089,Alabama,Madison County,5,11,27810,13878,13932,10646,10196,2659,3096,94,106,283,356,13,13,183,165,10808,10333,2694,3136,230,219,322,395,21,22,13492,13586,10300,9889,2643,3073,88,98,279,354,10,12,172,160,10453,10022,2674,3112,216,207,317,392,17,21,386,346,346,307,16,23,6,8,4,2,3,1,11,5,355,311,20,24,14,12,5,3,4,1 -050,01,089,Alabama,Madison County,5,12,22943,11233,11710,8644,8574,2116,2519,96,97,216,352,8,13,153,155,8769,8702,2153,2561,207,214,257,384,14,18,10958,11453,8408,8363,2095,2489,89,92,214,348,8,9,144,152,8525,8489,2128,2531,193,206,251,379,12,14,275,257,236,211,21,30,7,5,2,4,0,4,9,3,244,213,25,30,14,8,6,5,2,4 -050,01,089,Alabama,Madison County,5,13,18328,8757,9571,6775,6947,1642,2110,76,63,177,330,7,8,80,113,6845,7040,1656,2140,139,151,192,347,9,13,8586,9429,6615,6825,1638,2102,73,58,176,329,7,7,77,108,6682,6914,1651,2131,134,142,191,346,9,10,171,142,160,122,4,8,3,5,1,1,0,1,3,5,163,126,5,9,5,9,1,1,0,3 -050,01,089,Alabama,Madison County,5,14,14248,6638,7610,5334,5952,1079,1359,32,52,138,191,7,4,48,52,5375,5998,1089,1368,70,93,145,199,10,6,6527,7510,5238,5868,1070,1351,31,49,138,188,6,3,44,51,5277,5913,1078,1360,67,90,144,195,8,5,111,100,96,84,9,8,1,3,0,3,1,1,4,1,98,85,11,8,3,3,1,4,2,1 -050,01,089,Alabama,Madison County,5,15,10797,4776,6021,3951,4889,681,936,26,20,83,124,9,5,26,47,3972,4930,687,944,48,57,87,131,9,9,4724,5946,3907,4827,674,930,25,19,83,122,9,4,26,44,3928,4865,680,938,47,53,87,129,9,8,52,75,44,62,7,6,1,1,0,2,0,1,0,3,44,65,7,6,1,4,0,2,0,1 -050,01,089,Alabama,Madison County,5,16,8475,3702,4773,3193,4051,421,604,14,12,54,78,1,1,19,27,3207,4075,427,608,30,34,55,81,3,3,3671,4732,3165,4013,418,602,14,12,54,78,1,1,19,26,3179,4037,424,605,30,33,55,81,3,3,31,41,28,38,3,2,0,0,0,0,0,0,0,1,28,38,3,3,0,1,0,0,0,0 -050,01,089,Alabama,Madison County,5,17,5701,2418,3283,2096,2788,278,406,2,6,26,53,2,0,14,30,2107,2812,282,413,13,30,27,56,3,2,2393,3258,2073,2766,277,404,2,6,26,52,2,0,13,30,2083,2790,280,411,13,30,27,55,3,2,25,25,23,22,1,2,0,0,0,1,0,0,1,0,24,22,2,2,0,0,0,1,0,0 -050,01,089,Alabama,Madison County,5,18,4830,1597,3233,1393,2724,177,447,6,9,14,34,1,0,6,19,1397,2738,180,452,9,23,16,37,2,2,1578,3205,1377,2701,176,444,6,9,13,34,1,0,5,17,1381,2715,178,448,8,22,14,36,2,1,19,28,16,23,1,3,0,0,1,0,0,0,1,2,16,23,2,4,1,1,2,1,0,1 -050,01,089,Alabama,Madison County,6,0,346764,169604,177160,120333,120999,39614,45266,1415,1430,3953,4972,214,198,4075,4295,123948,124748,41490,47336,3033,3115,5195,6252,354,377,161095,169761,113221,114958,38880,44494,1162,1210,3908,4931,165,160,3759,4008,116572,118478,40606,46419,2627,2762,5074,6137,275,305,8509,7399,7112,6041,734,772,253,220,45,41,49,38,316,287,7376,6270,884,917,406,353,121,115,79,72 -050,01,089,Alabama,Madison County,6,1,20419,10365,10054,6543,6295,2869,2861,45,32,241,213,11,15,656,638,7155,6885,3291,3285,162,131,439,399,36,31,9507,9135,5803,5514,2818,2782,34,23,239,208,11,13,602,595,6368,6068,3211,3183,127,109,424,378,32,27,858,919,740,781,51,79,11,9,2,5,0,2,54,43,787,817,80,102,35,22,15,21,4,4 -050,01,089,Alabama,Madison County,6,2,21651,11015,10636,7174,6858,2867,2817,113,108,255,283,17,11,589,559,7714,7372,3236,3167,237,221,431,441,35,35,10079,9755,6426,6146,2792,2734,77,66,252,278,11,11,521,520,6910,6627,3124,3066,171,162,412,426,24,30,936,881,748,712,75,83,36,42,3,5,6,0,68,39,804,745,112,101,66,59,19,15,11,5 -050,01,089,Alabama,Madison County,6,3,22466,11466,11000,7604,7220,2990,2840,125,129,252,309,15,22,480,480,8044,7657,3259,3117,251,257,403,451,32,43,10762,10400,7027,6759,2933,2770,93,93,249,308,13,19,447,451,7438,7172,3188,3034,206,207,392,444,26,36,704,600,577,461,57,70,32,36,3,1,2,3,33,29,606,485,71,83,45,50,11,7,6,7 -050,01,089,Alabama,Madison County,6,4,24104,12304,11800,7732,7148,3743,3776,110,100,260,321,21,14,438,441,8124,7533,3975,4030,268,250,388,446,36,31,11635,11239,7217,6731,3653,3694,90,83,258,315,16,11,401,405,7575,7088,3870,3925,228,216,375,431,28,24,669,561,515,417,90,82,20,17,2,6,5,3,37,36,549,445,105,105,40,34,13,15,8,7 -050,01,089,Alabama,Madison County,6,5,24924,12554,12370,7633,6788,4177,4703,102,94,326,415,10,16,306,354,7893,7083,4325,4879,216,226,432,543,17,34,11794,11766,7011,6320,4090,4608,82,79,324,414,5,12,282,333,7250,6598,4225,4772,185,200,426,538,11,28,760,604,622,468,87,95,20,15,2,1,5,4,24,21,643,485,100,107,31,26,6,5,6,6 -050,01,089,Alabama,Madison County,6,6,24442,12417,12025,8300,7438,3381,3812,129,115,330,338,21,16,256,306,8512,7700,3478,3943,237,237,431,455,34,28,11408,11356,7462,6903,3279,3724,95,99,324,337,16,14,232,279,7656,7144,3367,3839,190,208,418,447,26,23,1009,669,838,535,102,88,34,16,6,1,5,2,24,27,856,556,111,104,47,29,13,8,8,5 -050,01,089,Alabama,Madison County,6,7,22871,11384,11487,7804,7424,2869,3358,134,108,309,339,23,6,245,252,8014,7640,2947,3454,248,216,408,438,29,15,10589,10824,7121,6853,2808,3301,111,100,304,336,17,3,228,231,7316,7051,2879,3388,215,195,401,433,22,11,795,663,683,571,61,57,23,8,5,3,6,3,17,21,698,589,68,66,33,21,7,5,7,4 -050,01,089,Alabama,Madison County,6,8,20483,9855,10628,6827,6836,2372,3004,135,135,313,380,21,20,187,253,6994,7051,2417,3086,241,267,381,471,28,34,9176,10122,6284,6434,2282,2957,110,106,306,378,11,14,183,233,6448,6637,2326,3030,212,229,374,462,18,24,679,506,543,402,90,47,25,29,7,2,10,6,4,20,546,414,91,56,29,38,7,9,10,10 -050,01,089,Alabama,Madison County,6,9,22635,10936,11699,7937,8021,2426,2959,82,110,294,387,13,23,184,199,8100,8189,2477,3023,200,229,344,447,16,29,10428,11245,7493,7632,2399,2920,59,97,291,386,10,19,176,191,7648,7793,2446,2981,174,213,338,443,13,25,508,454,444,389,27,39,23,13,3,1,3,4,8,8,452,396,31,42,26,16,6,4,3,4 -050,01,089,Alabama,Madison County,6,10,25792,12537,13255,9417,9419,2519,3137,89,97,319,412,13,14,180,176,9573,9566,2558,3190,216,207,365,461,17,30,12094,12849,9036,9075,2492,3103,77,90,315,409,9,10,165,162,9181,9212,2526,3149,196,194,355,453,12,20,443,406,381,344,27,34,12,7,4,3,4,4,15,14,392,354,32,41,20,13,10,8,5,10 -050,01,089,Alabama,Madison County,6,11,28414,14042,14372,10785,10518,2664,3199,86,120,303,352,12,9,192,174,10948,10662,2705,3246,224,242,348,394,19,13,13635,13994,10419,10200,2648,3168,81,106,299,350,10,9,178,161,10572,10333,2685,3211,210,219,342,390,14,13,407,378,366,318,16,31,5,14,4,2,2,0,14,13,376,329,20,35,14,23,6,4,5,0 -050,01,089,Alabama,Madison County,6,12,23987,11830,12157,9125,8939,2225,2601,96,90,219,362,10,12,155,153,9250,9066,2267,2643,202,201,259,395,19,16,11528,11857,8862,8686,2205,2569,90,86,217,359,10,9,144,148,8980,8808,2238,2608,191,195,255,391,16,13,302,300,263,253,20,32,6,4,2,3,0,3,11,5,270,258,29,35,11,6,4,4,3,3 -050,01,089,Alabama,Madison County,6,13,18666,8916,9750,6869,7041,1688,2175,80,78,184,325,6,7,89,124,6946,7140,1704,2209,150,172,200,347,8,14,8726,9593,6695,6910,1679,2161,76,73,183,324,6,5,87,120,6770,7006,1694,2193,145,164,199,346,8,11,190,157,174,131,9,14,4,5,1,1,0,2,2,4,176,134,10,16,5,8,1,1,0,3 -050,01,089,Alabama,Madison County,6,14,14966,6955,8011,5529,6160,1167,1514,41,54,156,225,8,5,54,53,5571,6204,1182,1523,84,97,164,233,13,8,6842,7895,5431,6059,1157,1507,40,51,156,221,7,5,51,52,5471,6102,1172,1516,81,93,163,229,10,8,113,116,98,101,10,7,1,3,0,4,1,0,3,1,100,102,10,7,3,4,1,4,3,0 -050,01,089,Alabama,Madison County,6,15,11230,5002,6228,4127,5033,731,975,26,28,84,133,8,6,26,53,4151,5078,734,985,47,68,88,141,8,10,4938,6154,4071,4973,725,968,25,27,84,131,8,4,25,51,4094,5016,727,977,46,67,88,139,8,7,64,74,56,60,6,7,1,1,0,2,0,2,1,2,57,62,7,8,1,1,0,2,0,3 -050,01,089,Alabama,Madison County,6,16,8777,3773,5004,3236,4227,439,651,13,14,62,83,2,2,21,27,3255,4251,443,656,30,35,63,87,4,2,3738,4953,3205,4182,435,648,13,13,62,83,2,2,21,25,3224,4205,439,652,30,33,63,86,4,2,35,51,31,45,4,3,0,1,0,0,0,0,0,2,31,46,4,4,0,2,0,1,0,0 -050,01,089,Alabama,Madison County,6,17,5913,2548,3365,2201,2840,299,432,5,7,29,55,2,0,12,31,2211,2861,302,442,13,31,32,60,2,2,2528,3336,2183,2813,298,431,5,7,29,54,2,0,11,31,2193,2834,300,441,13,31,31,59,2,2,20,29,18,27,1,1,0,0,0,1,0,0,1,0,18,27,2,1,0,0,1,1,0,0 -050,01,089,Alabama,Madison County,6,18,5024,1705,3319,1490,2794,188,452,4,11,17,40,1,0,5,22,1493,2810,190,458,7,28,19,43,1,2,1688,3288,1475,2768,187,449,4,11,16,40,1,0,5,20,1478,2784,189,454,7,27,18,42,1,1,17,31,15,26,1,3,0,0,1,0,0,0,0,2,15,26,1,4,0,1,1,1,0,1 -050,01,089,Alabama,Madison County,7,0,349973,170973,179000,121186,121952,39982,45841,1407,1448,4078,5095,214,203,4106,4461,124821,125850,41879,47982,3003,3170,5357,6454,376,391,162491,171411,114090,115745,39237,45038,1165,1238,4037,5051,165,166,3797,4173,117475,119409,40987,47040,2612,2829,5230,6327,289,323,8482,7589,7096,6207,745,803,242,210,41,44,49,37,309,288,7346,6441,892,942,391,341,127,127,87,68 -050,01,089,Alabama,Madison County,7,1,20495,10375,10120,6557,6379,2886,2868,35,22,230,204,7,18,660,629,7168,6967,3312,3281,150,122,430,384,34,34,9521,9245,5825,5622,2826,2798,27,14,229,199,6,17,608,595,6392,6180,3223,3193,118,102,416,369,28,32,854,875,732,757,60,70,8,8,1,5,1,1,52,34,776,787,89,88,32,20,14,15,6,2 -050,01,089,Alabama,Madison County,7,2,21654,10995,10659,7185,6814,2867,2854,100,99,252,278,13,14,578,600,7723,7368,3228,3233,214,223,429,449,30,32,10031,9729,6410,6076,2779,2754,68,63,250,276,8,13,516,547,6893,6588,3110,3102,160,164,410,436,18,26,964,930,775,738,88,100,32,36,2,2,5,1,62,53,830,780,118,131,54,59,19,13,12,6 -050,01,089,Alabama,Madison County,7,3,22301,11378,10923,7547,7197,2924,2766,120,137,269,315,21,13,497,495,7998,7636,3201,3058,244,257,429,476,35,30,10662,10253,6963,6671,2866,2694,93,93,265,311,18,12,457,472,7381,7095,3127,2973,204,203,412,462,27,28,716,670,584,526,58,72,27,44,4,4,3,1,40,23,617,541,74,85,40,54,17,14,8,2 -050,01,089,Alabama,Madison County,7,4,23950,12205,11745,7678,7096,3671,3758,115,92,283,317,20,26,438,456,8065,7500,3906,4022,262,240,411,453,37,39,11528,11170,7158,6674,3579,3672,89,77,280,311,15,21,407,415,7522,7041,3803,3914,217,207,397,434,28,32,677,575,520,422,92,86,26,15,3,6,5,5,31,41,543,459,103,108,45,33,14,19,9,7 -050,01,089,Alabama,Madison County,7,5,25072,12630,12442,7658,6887,4220,4597,84,106,349,468,8,12,311,372,7921,7203,4373,4786,202,241,458,603,21,29,11900,11854,7061,6419,4121,4511,75,98,349,464,4,11,290,351,7307,6718,4263,4688,181,224,455,594,15,26,730,588,597,468,99,86,9,8,0,4,4,1,21,21,614,485,110,98,21,17,3,9,6,3 -050,01,089,Alabama,Madison County,7,6,24636,12389,12247,8293,7482,3389,4002,125,121,307,299,21,15,254,328,8508,7757,3485,4141,232,238,408,426,33,36,11469,11595,7524,6978,3304,3902,92,98,301,298,18,12,230,307,7719,7234,3388,4032,186,206,396,417,28,30,920,652,769,504,85,100,33,23,6,1,3,3,24,21,789,523,97,109,46,32,12,9,5,6 -050,01,089,Alabama,Madison County,7,7,23264,11611,11653,7990,7549,2899,3376,137,98,346,356,19,11,220,263,8177,7770,2970,3472,236,206,440,459,26,24,10802,10969,7293,6969,2841,3311,108,91,342,353,10,8,208,237,7471,7170,2906,3396,201,186,432,450,16,18,809,684,697,580,58,65,29,7,4,3,9,3,12,26,706,600,64,76,35,20,8,9,10,6 -050,01,089,Alabama,Madison County,7,8,20821,10061,10760,6984,6938,2427,3045,135,122,288,383,18,13,209,259,7163,7161,2484,3126,243,255,363,478,29,27,9441,10234,6483,6503,2350,2993,110,104,284,382,12,9,202,243,6656,6713,2401,3068,214,231,359,472,23,19,620,526,501,435,77,52,25,18,4,1,6,4,7,16,507,448,83,58,29,24,4,6,6,8 -050,01,089,Alabama,Madison County,7,9,22167,10621,11546,7640,7811,2376,2988,91,115,299,399,27,21,188,212,7799,7989,2424,3056,206,246,359,462,34,31,10099,11064,7195,7404,2340,2947,73,103,295,396,18,14,178,200,7347,7571,2385,3012,183,225,350,459,21,23,522,482,445,407,36,41,18,12,4,3,9,7,10,12,452,418,39,44,23,21,9,3,13,8 -050,01,089,Alabama,Madison County,7,10,24706,12059,12647,8977,8903,2465,3051,96,100,328,409,12,12,181,172,9130,9044,2507,3099,220,207,372,460,20,21,11596,12259,8578,8571,2437,3015,82,92,322,407,10,11,167,163,8723,8706,2474,3061,195,193,364,453,15,19,463,388,399,332,28,36,14,8,6,2,2,1,14,9,407,338,33,38,25,14,8,7,5,2 -050,01,089,Alabama,Madison County,7,11,28883,14193,14690,10861,10703,2742,3291,89,127,299,375,7,16,195,178,11029,10853,2784,3334,230,244,350,421,19,26,13801,14275,10509,10353,2727,3264,82,112,295,372,6,13,182,161,10668,10488,2763,3302,215,220,342,414,15,22,392,415,352,350,15,27,7,15,4,3,1,3,13,17,361,365,21,32,15,24,8,7,4,4 -050,01,089,Alabama,Madison County,7,12,24925,12382,12543,9507,9226,2361,2696,95,93,248,372,14,12,157,144,9645,9349,2398,2735,208,197,291,404,19,19,12040,12243,9200,8967,2345,2668,89,89,246,370,14,9,146,140,9329,9086,2376,2705,193,190,286,401,18,15,342,300,307,259,16,28,6,4,2,2,0,3,11,4,316,263,22,30,15,7,5,3,1,4 -050,01,089,Alabama,Madison County,7,13,19361,9282,10079,7145,7252,1751,2245,80,88,200,331,4,7,102,156,7231,7375,1773,2289,157,209,224,357,8,18,9087,9902,6972,7101,1739,2230,76,83,200,330,4,6,96,152,7053,7223,1759,2271,152,202,220,355,7,14,195,177,173,151,12,15,4,5,0,1,0,1,6,4,178,152,14,18,5,7,4,2,1,4 -050,01,089,Alabama,Madison County,7,14,15735,7336,8399,5816,6354,1260,1671,51,56,144,252,9,6,56,60,5863,6406,1273,1684,96,105,152,261,14,9,7207,8266,5701,6243,1251,1660,49,51,144,248,8,5,54,59,5747,6294,1263,1673,93,99,151,257,13,8,129,133,115,111,9,11,2,5,0,4,1,1,2,1,116,112,10,11,3,6,1,4,1,1 -050,01,089,Alabama,Madison County,7,15,11510,5108,6402,4177,5148,764,1018,27,35,106,142,7,4,27,55,4201,5193,772,1029,50,77,109,154,9,9,5028,6327,4106,5086,759,1011,26,34,106,141,7,2,24,53,4127,5130,765,1021,48,76,109,152,9,6,80,75,71,62,5,7,1,1,0,1,0,2,3,2,74,63,7,8,2,1,0,2,0,3 -050,01,089,Alabama,Madison County,7,16,9070,3908,5162,3323,4341,473,675,16,17,75,97,4,3,17,29,3337,4367,478,680,32,40,75,103,4,5,3879,5112,3300,4297,468,673,15,16,75,96,4,3,17,27,3314,4321,473,678,31,39,75,100,4,4,29,50,23,44,5,2,1,1,0,1,0,0,0,2,23,46,5,2,1,1,0,3,0,1 -050,01,089,Alabama,Madison County,7,17,6158,2610,3548,2259,2989,299,474,7,7,32,50,1,0,12,28,2271,3010,302,485,14,30,34,53,1,0,2587,3516,2239,2960,297,472,7,7,32,49,1,0,11,28,2250,2981,299,483,14,30,34,52,1,0,23,32,20,29,2,2,0,0,0,1,0,0,1,0,21,29,3,2,0,0,0,1,0,0 -050,01,089,Alabama,Madison County,7,18,5265,1830,3435,1589,2883,208,466,4,13,23,48,2,0,4,25,1592,2902,209,472,7,33,23,51,3,2,1813,3398,1573,2851,208,463,4,13,22,48,2,0,4,23,1576,2870,209,468,7,32,22,50,3,1,17,37,16,32,0,3,0,0,1,0,0,0,0,2,16,32,0,4,0,1,1,1,0,1 -050,01,089,Alabama,Madison County,8,0,353194,172609,180585,121902,122662,40679,46514,1440,1440,4152,5162,204,207,4232,4600,125686,126703,42629,48745,3047,3203,5476,6564,367,398,163926,172674,114618,116145,39914,45697,1200,1244,4113,5117,160,173,3921,4298,118142,119935,41715,47782,2666,2871,5351,6434,291,318,8683,7911,7284,6517,765,817,240,196,39,45,44,34,311,302,7544,6768,914,963,381,332,125,130,76,80 -050,01,089,Alabama,Madison County,8,1,20808,10628,10180,6750,6441,2930,2851,20,38,251,208,11,22,666,620,7376,7015,3360,3272,133,135,460,381,36,36,9737,9321,5980,5703,2867,2791,16,21,247,202,10,22,617,582,6563,6242,3268,3191,107,104,443,364,29,34,891,859,770,738,63,60,4,17,4,6,1,0,49,38,813,773,92,81,26,31,17,17,7,2 -050,01,089,Alabama,Madison County,8,2,21583,10946,10637,7081,6795,2908,2868,100,80,244,259,11,13,602,622,7636,7366,3288,3261,222,208,420,434,25,39,9979,9655,6300,6007,2819,2764,71,48,241,258,7,12,541,566,6804,6531,3165,3126,169,152,403,418,17,29,967,982,781,788,89,104,29,32,3,1,4,1,61,56,832,835,123,135,53,56,17,16,8,10 -050,01,089,Alabama,Madison County,8,3,22284,11418,10866,7625,7163,2891,2712,118,133,267,336,16,9,501,513,8084,7629,3175,3006,237,260,422,505,36,28,10604,10149,6964,6587,2819,2641,89,98,264,331,13,9,455,483,7385,7026,3082,2920,189,213,408,493,28,25,814,717,661,576,72,71,29,35,3,5,3,0,46,30,699,603,93,86,48,47,14,12,8,3 -050,01,089,Alabama,Madison County,8,4,23985,12182,11803,7564,7093,3756,3816,111,88,286,307,17,22,448,477,7973,7512,3998,4097,255,241,419,450,29,38,11492,11164,7024,6599,3666,3733,88,73,284,301,12,19,418,439,7404,6990,3897,3993,216,208,406,433,23,30,690,639,540,494,90,83,23,15,2,6,5,3,30,38,569,522,101,104,39,33,13,17,6,8 -050,01,089,Alabama,Madison County,8,5,24791,12544,12247,7595,6768,4146,4489,94,95,377,484,5,11,327,400,7877,7110,4305,4695,215,235,489,627,17,25,11853,11684,7024,6313,4059,4415,83,89,376,477,1,10,310,380,7290,6638,4211,4611,197,221,485,614,11,23,691,563,571,455,87,74,11,6,1,7,4,1,17,20,587,472,94,84,18,14,4,13,6,2 -050,01,089,Alabama,Madison County,8,6,25060,12535,12525,8255,7607,3575,4153,123,113,295,288,17,21,270,343,8481,7900,3682,4302,231,236,409,419,27,44,11716,11875,7576,7112,3488,4042,98,97,292,288,16,18,246,318,7782,7384,3582,4177,193,209,398,410,24,33,819,650,679,495,87,111,25,16,3,0,1,3,24,25,699,516,100,125,38,27,11,9,3,11 -050,01,089,Alabama,Madison County,8,7,23602,11749,11853,8088,7650,2913,3446,153,105,357,371,17,15,221,266,8281,7889,2979,3542,250,210,456,477,27,27,10930,11139,7391,7048,2847,3374,118,94,356,369,11,12,207,242,7572,7264,2909,3462,208,187,449,472,19,22,819,714,697,602,66,72,35,11,1,2,6,3,14,24,709,625,70,80,42,23,7,5,8,5 -050,01,089,Alabama,Madison County,8,8,21258,10360,10898,7235,7046,2481,3098,135,125,272,363,20,8,217,258,7426,7260,2537,3186,247,256,351,455,36,23,9702,10322,6676,6559,2422,3039,117,115,266,362,14,4,207,243,6860,6761,2471,3123,226,240,343,450,28,15,658,576,559,487,59,59,18,10,6,1,6,4,10,15,566,499,66,63,21,16,8,5,8,8 -050,01,089,Alabama,Madison County,8,9,21553,10287,11266,7346,7481,2345,3034,95,120,289,384,24,25,188,222,7510,7671,2394,3106,210,249,346,455,31,34,9726,10794,6880,7090,2292,2982,74,107,285,382,16,19,179,214,7036,7275,2338,3049,184,231,340,452,23,28,561,472,466,391,53,52,21,13,4,2,8,6,9,8,474,396,56,57,26,18,6,3,8,6 -050,01,089,Alabama,Madison County,8,10,23885,11613,12272,8520,8633,2459,2967,93,96,340,404,15,8,186,164,8678,8771,2504,3016,210,197,390,454,23,12,11138,11853,8113,8269,2433,2934,76,86,335,402,11,6,170,156,8261,8399,2470,2980,185,182,382,449,16,10,475,419,407,364,26,33,17,10,5,2,4,2,16,8,417,372,34,36,25,15,8,5,7,2 -050,01,089,Alabama,Madison County,8,11,28819,14060,14759,10760,10708,2718,3333,98,120,283,393,9,18,192,187,10924,10862,2760,3384,231,244,330,445,18,29,13639,14329,10393,10350,2692,3302,85,105,279,390,9,14,181,168,10551,10491,2730,3346,210,220,323,434,16,20,421,430,367,358,26,31,13,15,4,3,0,4,11,19,373,371,30,38,21,24,7,11,2,9 -050,01,089,Alabama,Madison County,8,12,26085,13055,13030,9965,9514,2522,2861,102,98,279,394,13,11,174,152,10112,9642,2564,2902,223,210,327,427,19,15,12681,12702,9626,9226,2506,2832,98,95,277,392,12,9,162,148,9764,9350,2543,2872,214,204,321,424,17,13,374,328,339,288,16,29,4,3,2,2,1,2,12,4,348,292,21,30,9,6,6,3,2,2 -050,01,089,Alabama,Madison County,8,13,20041,9627,10414,7404,7586,1806,2265,88,88,199,306,5,11,125,158,7515,7720,1827,2310,179,210,230,331,13,19,9423,10202,7226,7410,1794,2248,82,80,199,305,5,9,117,150,7329,7537,1815,2290,170,198,225,329,11,14,204,212,178,176,12,17,6,8,0,1,0,2,8,8,186,183,12,20,9,12,5,2,2,5 -050,01,089,Alabama,Madison County,8,14,16576,7730,8846,6069,6557,1381,1849,53,58,162,300,8,6,57,76,6120,6626,1394,1863,102,118,167,313,10,9,7597,8705,5948,6432,1374,1842,50,56,162,296,7,5,56,74,5998,6499,1387,1856,98,114,167,308,9,8,133,141,121,125,7,7,3,2,0,4,1,1,1,2,122,127,7,7,4,4,0,5,1,1 -050,01,089,Alabama,Madison County,8,15,11816,5253,6563,4259,5218,822,1088,27,45,109,152,7,3,29,57,4286,5264,827,1100,50,92,114,161,7,7,5165,6491,4179,5159,817,1081,26,43,109,151,7,1,27,56,4205,5204,820,1093,49,90,113,160,7,4,88,72,80,59,5,7,1,2,0,1,0,2,2,1,81,60,7,7,1,2,1,1,0,3 -050,01,089,Alabama,Madison County,8,16,9218,3971,5247,3363,4373,493,724,18,16,78,101,6,4,13,29,3372,4395,496,728,27,38,81,107,8,8,3935,5183,3332,4316,488,722,18,15,78,100,6,4,13,26,3341,4337,491,725,27,36,81,104,8,7,36,64,31,57,5,2,0,1,0,1,0,0,0,3,31,58,5,3,0,2,0,3,0,1 -050,01,089,Alabama,Madison County,8,17,6412,2703,3709,2344,3127,301,492,9,5,35,56,0,0,14,29,2354,3151,306,497,21,25,36,63,2,2,2681,3675,2325,3097,299,489,8,5,35,55,0,0,14,29,2335,3121,304,494,20,25,36,62,2,2,22,34,19,30,2,3,1,0,0,1,0,0,0,0,19,30,2,3,1,0,0,1,0,0 -050,01,089,Alabama,Madison County,8,18,5418,1948,3470,1679,2902,232,468,3,17,29,56,3,0,2,27,1681,2920,233,478,4,39,29,60,3,3,1928,3431,1661,2868,232,466,3,17,28,56,3,0,1,24,1662,2886,232,474,4,37,28,58,3,1,20,39,18,34,0,2,0,0,1,0,0,0,1,3,19,34,1,4,0,2,1,2,0,2 -050,01,089,Alabama,Madison County,9,0,356985,174271,182714,122754,123900,41256,47220,1434,1422,4279,5274,216,211,4332,4687,126623,127997,43270,49506,3075,3206,5641,6735,378,412,165426,174455,115321,117051,40464,46395,1202,1224,4244,5230,174,179,4021,4376,118924,120904,42333,48522,2688,2856,5525,6603,300,350,8845,8259,7433,6849,792,825,232,198,35,44,42,32,311,311,7699,7093,937,984,387,350,116,132,78,62 -050,01,089,Alabama,Madison County,9,1,20868,10607,10261,6736,6482,2952,2876,27,31,253,235,14,15,625,622,7324,7053,3356,3296,136,127,441,415,32,31,9749,9422,6011,5770,2883,2811,18,16,247,231,13,15,577,579,6554,6307,3259,3207,105,98,425,397,30,27,858,839,725,712,69,65,9,15,6,4,1,0,48,43,770,746,97,89,31,29,16,18,2,4 -050,01,089,Alabama,Madison County,9,2,21746,11091,10655,7128,6813,2943,2873,84,72,275,249,11,19,650,629,7730,7397,3356,3275,210,201,472,422,29,41,10117,9623,6317,5962,2861,2772,63,48,272,247,9,18,595,576,6875,6501,3246,3146,166,152,453,410,19,34,974,1032,811,851,82,101,21,24,3,2,2,1,55,53,855,896,110,129,44,49,19,12,10,7 -050,01,089,Alabama,Madison County,9,3,22214,11308,10906,7534,7212,2851,2735,110,115,260,332,19,9,534,503,8019,7669,3154,3027,239,237,429,499,43,31,10447,10105,6845,6570,2764,2649,85,82,257,327,14,9,482,468,7284,6998,3040,2923,195,187,412,484,28,29,861,801,689,642,87,86,25,33,3,5,5,0,52,35,735,671,114,104,44,50,17,15,15,2 -050,01,089,Alabama,Madison County,9,4,23995,12226,11769,7603,7021,3774,3822,111,98,280,305,15,24,443,499,8001,7461,4013,4116,250,248,417,456,33,45,11521,11062,7040,6464,3690,3743,88,74,280,296,12,21,411,464,7410,6877,3917,4017,210,208,406,435,26,40,705,707,563,557,84,79,23,24,0,9,3,3,32,35,591,584,96,99,40,40,11,21,7,5 -050,01,089,Alabama,Madison County,9,5,24439,12415,12024,7531,6730,4031,4346,102,93,382,459,5,10,364,386,7842,7062,4219,4547,232,226,509,605,15,24,11732,11445,6981,6254,3931,4280,94,86,379,451,3,9,344,365,7279,6569,4107,4469,213,208,501,592,12,21,683,579,550,476,100,66,8,7,3,8,2,1,20,21,563,493,112,78,19,18,8,13,3,3 -050,01,089,Alabama,Madison County,9,6,25526,12660,12866,8238,7748,3677,4301,120,112,326,324,24,18,275,363,8470,8057,3788,4465,227,240,437,467,33,34,11879,12244,7584,7272,3603,4197,92,95,326,324,19,15,255,341,7798,7564,3705,4348,189,214,432,460,27,29,781,622,654,476,74,104,28,17,0,0,5,3,20,22,672,493,83,117,38,26,5,7,6,5 -050,01,089,Alabama,Madison County,9,7,24129,12082,12047,8356,7759,2996,3509,141,104,350,381,21,15,218,279,8544,7996,3064,3619,238,220,445,496,26,28,11226,11337,7639,7172,2915,3430,105,93,349,381,15,14,203,247,7815,7383,2978,3526,193,191,440,489,20,25,856,710,717,587,81,79,36,11,1,0,6,1,15,32,729,613,86,93,45,29,5,7,6,3 -050,01,089,Alabama,Madison County,9,8,22071,10811,11260,7493,7340,2652,3162,141,125,274,362,14,12,237,259,7702,7561,2717,3248,265,255,360,456,30,30,10112,10632,6887,6807,2600,3102,122,116,270,360,11,7,222,240,7083,7011,2659,3179,236,237,353,449,24,23,699,628,606,533,52,60,19,9,4,2,3,5,15,19,619,550,58,69,29,18,7,7,6,7 -050,01,089,Alabama,Madison County,9,9,20834,9892,10942,7009,7183,2305,3002,95,116,279,378,25,19,179,244,7167,7385,2353,3081,201,255,334,456,33,30,9301,10452,6516,6771,2243,2954,79,100,275,376,16,17,172,234,6668,6965,2286,3030,180,232,330,453,23,27,591,490,493,412,62,48,16,16,4,2,9,2,7,10,499,420,67,51,21,23,4,3,10,3 -050,01,089,Alabama,Madison County,9,10,23805,11516,12289,8456,8640,2436,2946,85,111,343,404,16,16,180,172,8613,8777,2479,3000,199,216,396,454,21,24,11039,11820,8030,8232,2415,2909,70,98,339,403,13,11,172,167,8181,8367,2455,2960,179,200,390,451,17,19,477,469,426,408,21,37,15,13,4,1,3,5,8,5,432,410,24,40,20,16,6,3,4,5 -050,01,089,Alabama,Madison County,9,11,28158,13673,14485,10405,10426,2665,3344,106,104,300,412,10,16,187,183,10572,10581,2702,3390,236,225,347,467,19,30,13240,14065,10039,10069,2634,3319,90,91,297,409,9,12,171,165,10190,10212,2669,3359,211,199,339,455,16,24,433,420,366,357,31,25,16,13,3,3,1,4,16,18,382,369,33,31,25,26,8,12,3,6 -050,01,089,Alabama,Madison County,9,12,26979,13484,13495,10315,9820,2627,3009,87,101,270,398,8,12,177,155,10463,9952,2669,3049,211,213,321,435,15,15,13104,13145,9967,9513,2613,2977,83,97,267,396,7,10,167,152,10106,9642,2653,3017,201,207,314,432,13,13,380,350,348,307,14,32,4,4,3,2,1,2,10,3,357,310,16,32,10,6,7,3,2,2 -050,01,089,Alabama,Madison County,9,13,20947,10097,10850,7726,7933,1911,2355,102,93,215,308,11,10,132,151,7840,8055,1939,2399,200,207,244,336,18,17,9870,10623,7528,7746,1894,2331,96,87,215,307,11,8,126,144,7638,7865,1919,2371,190,197,243,334,16,12,227,227,198,187,17,24,6,6,0,1,0,2,6,7,202,190,20,28,10,10,1,2,2,5 -050,01,089,Alabama,Madison County,9,14,17383,8129,9254,6319,6768,1488,2001,56,60,192,324,6,6,68,95,6377,6849,1504,2020,113,133,202,343,8,14,7985,9104,6189,6631,1482,1996,53,57,192,321,5,5,64,94,6243,6711,1496,2015,107,129,201,340,7,13,144,150,130,137,6,5,3,3,0,3,1,1,4,1,134,138,8,5,6,4,1,3,1,1 -050,01,089,Alabama,Madison County,9,15,12162,5382,6780,4328,5345,865,1156,29,46,124,172,7,4,29,57,4354,5391,867,1169,53,91,128,182,9,7,5292,6693,4247,5271,860,1149,27,44,124,171,7,2,27,56,4271,5316,862,1161,49,88,128,181,9,5,90,87,81,74,5,7,2,2,0,1,0,2,2,1,83,75,5,8,4,3,0,1,0,2 -050,01,089,Alabama,Madison County,9,16,9383,3992,5391,3345,4436,523,792,24,16,76,108,7,5,17,34,3358,4462,526,801,39,42,77,113,9,7,3952,5324,3310,4377,519,789,24,15,76,107,7,5,16,31,3323,4401,521,796,39,41,77,110,8,7,40,67,35,59,4,3,0,1,0,1,0,0,1,3,35,61,5,5,0,1,0,3,1,0 -050,01,089,Alabama,Madison County,9,17,6603,2818,3785,2445,3197,300,492,10,9,47,60,0,1,16,26,2459,3220,303,495,22,31,49,64,2,1,2797,3747,2428,3160,297,491,9,9,47,60,0,1,16,26,2442,3183,300,494,21,31,49,64,2,1,21,38,17,37,3,1,1,0,0,0,0,0,0,0,17,37,3,1,1,0,0,0,0,0 -050,01,089,Alabama,Madison County,9,18,5743,2088,3655,1787,3047,260,499,4,16,33,63,3,0,1,30,1788,3069,261,509,4,39,33,69,3,3,2063,3612,1763,3010,260,496,4,16,32,63,3,0,1,27,1764,3032,261,504,4,37,32,67,3,1,25,43,24,37,0,3,0,0,1,0,0,0,0,3,24,37,0,5,0,2,1,2,0,2 -050,01,089,Alabama,Madison County,10,0,362061,176808,185253,124055,125042,42204,48300,1420,1453,4418,5383,210,213,4501,4862,128080,129302,44303,50666,3084,3288,5839,6892,373,426,167667,176742,116372,117989,41379,47439,1198,1260,4373,5333,170,179,4175,4542,120123,121991,43332,49646,2698,2955,5703,6740,296,354,9141,8511,7683,7053,825,861,222,193,45,50,40,34,326,320,7957,7311,971,1020,386,333,136,152,77,72 -050,01,089,Alabama,Madison County,10,1,21274,10902,10372,6908,6486,3064,2963,34,37,262,249,14,15,620,622,7486,7063,3465,3382,133,132,452,428,39,35,9970,9506,6123,5768,2980,2891,22,19,254,239,13,13,578,576,6665,6307,3359,3287,105,101,431,403,31,29,932,866,785,718,84,72,12,18,8,10,1,2,42,46,821,756,106,95,28,31,21,25,8,6 -050,01,089,Alabama,Madison County,10,2,21741,10997,10744,7081,6839,2897,2939,64,60,279,245,12,19,664,642,7700,7429,3318,3351,185,185,478,424,28,47,10055,9755,6294,6010,2821,2849,42,41,276,242,12,16,610,597,6867,6563,3215,3234,142,148,460,409,24,36,942,989,787,829,76,90,22,19,3,3,0,3,54,45,833,866,103,117,43,37,18,15,4,11 -050,01,089,Alabama,Madison County,10,3,22646,11571,11075,7598,7329,2993,2782,106,103,276,322,19,12,579,527,8129,7810,3328,3087,242,224,469,493,48,36,10648,10186,6860,6607,2891,2701,87,68,275,316,14,11,521,483,7339,7048,3197,2987,199,170,449,477,33,30,923,889,738,722,102,81,19,35,1,6,5,1,58,44,790,762,131,100,43,54,20,16,15,6 -050,01,089,Alabama,Madison County,10,4,24145,12266,11879,7565,7029,3817,3872,115,116,287,313,14,19,468,530,7989,7504,4073,4184,259,270,426,475,27,37,11541,11108,6996,6419,3728,3782,91,88,281,306,10,17,435,496,7390,6863,3970,4076,214,227,411,455,22,31,725,771,569,610,89,90,24,28,6,7,4,2,33,34,599,641,103,108,45,43,15,20,5,6 -050,01,089,Alabama,Madison County,10,5,24492,12454,12038,7560,6671,4051,4436,98,93,348,436,6,12,391,390,7897,7004,4252,4637,234,223,482,578,15,37,11750,11446,7005,6201,3949,4362,85,82,346,428,4,11,361,362,7319,6513,4134,4550,206,197,475,561,11,30,704,592,555,470,102,74,13,11,2,8,2,1,30,28,578,491,118,87,28,26,7,17,4,7 -050,01,089,Alabama,Madison County,10,6,26009,13007,13002,8355,7855,3854,4294,107,99,374,367,18,16,299,371,8607,8169,3973,4461,223,230,499,511,29,34,12249,12398,7731,7376,3770,4200,87,88,370,365,14,14,277,355,7966,7679,3879,4357,192,214,487,503,23,31,758,604,624,479,84,94,20,11,4,2,4,2,22,16,641,490,94,104,31,16,12,8,6,3 -050,01,089,Alabama,Madison County,10,7,24379,12157,12222,8439,7827,3030,3588,116,115,344,379,11,15,217,298,8624,8085,3099,3705,207,238,439,505,21,27,11317,11492,7721,7230,2968,3494,86,103,343,377,7,15,192,273,7887,7468,3028,3597,160,213,432,497,13,26,840,730,718,597,62,94,30,12,1,2,4,0,25,25,737,617,71,108,47,25,7,8,8,1 -050,01,089,Alabama,Madison County,10,8,22915,11350,11565,7897,7538,2754,3254,154,130,282,356,19,11,244,276,8115,7775,2819,3344,273,265,373,458,33,23,10574,10961,7224,7033,2692,3189,134,125,278,354,15,6,231,254,7431,7251,2751,3269,247,252,364,447,27,18,776,604,673,505,62,65,20,5,4,2,4,5,13,22,684,524,68,75,26,13,9,11,6,5 -050,01,089,Alabama,Madison County,10,9,20788,9885,10903,6918,7119,2350,3036,100,106,305,377,26,20,186,245,7079,7328,2403,3116,204,241,364,456,32,36,9247,10367,6382,6654,2285,2991,86,92,298,376,16,18,180,236,6538,6857,2336,3067,189,221,354,453,21,33,638,536,536,465,65,45,14,14,7,1,10,2,6,9,541,471,67,49,15,20,10,3,11,3 -050,01,089,Alabama,Madison County,10,10,23639,11394,12245,8291,8493,2468,2979,99,120,350,444,16,18,170,191,8438,8646,2505,3037,203,230,404,508,22,28,10910,11782,7858,8095,2448,2938,77,110,348,444,14,13,165,182,8003,8243,2484,2990,177,215,400,504,19,21,484,463,433,398,20,41,22,10,2,0,2,5,5,9,435,403,21,47,26,15,4,4,3,7 -050,01,089,Alabama,Madison County,10,11,27160,13179,13981,9972,9975,2599,3300,97,105,308,415,10,14,193,172,10143,10116,2639,3348,229,224,355,461,18,19,12752,13559,9598,9617,2576,3268,88,97,303,412,8,10,179,155,9758,9746,2610,3311,210,205,349,452,14,13,427,422,374,358,23,32,9,8,5,3,2,4,14,17,385,370,29,37,19,19,6,9,4,6 -050,01,089,Alabama,Madison County,10,12,27745,13778,13967,10568,10130,2656,3148,84,112,281,389,10,12,179,176,10718,10278,2695,3198,207,240,332,431,18,19,13390,13593,10213,9805,2642,3120,79,102,279,388,9,11,168,167,10353,9945,2679,3169,194,225,327,426,16,18,388,374,355,325,14,28,5,10,2,1,1,1,11,9,365,333,16,29,13,15,5,5,2,1 -050,01,089,Alabama,Madison County,10,13,22064,10666,11398,8148,8330,2055,2465,98,91,209,340,10,13,146,159,8278,8460,2083,2508,208,212,240,372,14,18,10420,11131,7936,8116,2032,2428,93,87,209,339,10,10,140,151,8060,8240,2059,2467,199,204,239,370,14,13,246,267,212,214,23,37,5,4,0,1,0,3,6,8,218,220,24,41,9,8,1,2,0,5 -050,01,089,Alabama,Madison County,10,14,17405,8074,9331,6195,6747,1523,2093,66,58,207,318,7,6,76,109,6261,6842,1539,2115,132,142,215,334,10,12,7916,9182,6049,6610,1518,2088,62,54,207,317,7,5,73,108,6112,6704,1534,2110,125,138,215,332,10,11,158,149,146,137,5,5,4,4,0,1,0,1,3,1,149,138,5,5,7,4,0,2,0,1 -050,01,089,Alabama,Madison County,10,15,13304,5985,7319,4798,5738,963,1279,37,56,138,187,7,4,42,55,4835,5784,973,1292,76,101,141,195,7,6,5886,7221,4709,5654,958,1272,36,53,138,185,6,3,39,54,4743,5699,967,1285,73,97,141,193,6,5,99,98,89,84,5,7,1,3,0,2,1,1,3,1,92,85,6,7,3,4,0,2,1,1 -050,01,089,Alabama,Madison County,10,16,9661,4100,5561,3415,4516,556,847,27,25,83,123,7,6,12,44,3424,4547,559,860,39,60,84,131,7,9,4050,5485,3373,4450,550,842,26,24,83,122,7,5,11,42,3382,4481,553,853,37,59,83,128,7,7,50,76,42,66,6,5,1,1,0,1,0,1,1,2,42,66,6,7,2,1,1,3,0,2 -050,01,089,Alabama,Madison County,10,17,6722,2815,3907,2433,3304,306,506,13,11,51,62,1,1,11,23,2441,3323,310,512,22,30,51,65,2,1,2792,3867,2413,3266,304,505,12,11,51,62,1,1,11,22,2421,3284,308,510,21,30,51,65,2,1,23,40,20,38,2,1,1,0,0,0,0,0,0,1,20,39,2,2,1,0,0,0,0,0 -050,01,089,Alabama,Madison County,10,18,5972,2228,3744,1914,3116,268,519,5,16,34,61,3,0,4,32,1916,3139,270,529,8,41,35,67,3,2,2200,3703,1887,3078,267,519,5,16,34,61,3,0,4,29,1889,3100,269,527,8,39,35,65,3,1,28,41,27,38,1,0,0,0,0,0,0,0,0,3,27,39,1,2,0,2,0,2,0,1 -050,01,089,Alabama,Madison County,11,0,367386,179486,187900,125907,126630,42763,49148,1450,1456,4455,5416,221,214,4690,5036,130105,131044,44993,51633,3122,3306,5949,6981,395,424,170037,178987,117916,119235,41947,48243,1222,1258,4412,5366,182,184,4358,4701,121826,123377,44019,50554,2748,2959,5824,6844,322,356,9449,8913,7991,7395,816,905,228,198,43,50,39,30,332,335,8279,7667,974,1079,374,347,125,137,73,68 -050,01,089,Alabama,Madison County,11,1,21701,11045,10656,7020,6682,3026,3041,42,42,251,240,15,13,691,638,7664,7270,3478,3464,153,143,463,425,43,31,10055,9703,6202,5909,2931,2948,26,16,246,231,14,11,636,588,6795,6455,3353,3347,114,97,445,399,37,22,990,953,818,773,95,93,16,26,5,9,1,2,55,50,869,815,125,117,39,46,18,26,6,9 -050,01,089,Alabama,Madison County,11,2,21747,11107,10640,7137,6753,2952,2928,48,45,298,242,11,14,661,658,7754,7357,3372,3357,168,175,493,425,29,33,10169,9693,6351,5940,2870,2851,30,28,294,236,10,13,614,625,6926,6519,3266,3255,136,142,479,413,22,30,938,947,786,813,82,77,18,17,4,6,1,1,47,33,828,838,106,102,32,33,14,12,7,3 -050,01,089,Alabama,Madison County,11,3,22878,11670,11208,7689,7311,2988,2888,109,104,276,318,16,12,592,575,8231,7836,3329,3234,244,232,465,503,32,34,10690,10229,6877,6507,2903,2808,84,64,274,316,11,12,541,522,7374,6986,3222,3124,198,168,448,489,24,31,980,979,812,804,85,80,25,40,2,2,5,0,51,53,857,850,107,110,46,64,17,14,8,3 -050,01,089,Alabama,Madison County,11,4,24159,12267,11892,7516,7065,3844,3844,120,116,283,301,15,22,489,544,7951,7542,4118,4166,258,271,435,467,34,40,11506,11076,6922,6414,3735,3749,97,89,279,295,14,20,459,509,7335,6862,3998,4052,219,229,421,449,27,36,761,816,594,651,109,95,23,27,4,6,1,2,30,35,616,680,120,114,39,42,14,18,7,4 -050,01,089,Alabama,Madison County,11,5,24890,12536,12354,7629,6875,4050,4523,87,92,346,438,8,15,416,411,7995,7226,4266,4743,222,223,489,585,21,36,11813,11686,7057,6350,3959,4438,72,79,340,430,5,13,380,376,7388,6673,4157,4638,194,196,477,571,16,29,723,668,572,525,91,85,15,13,6,8,3,2,36,35,607,553,109,105,28,27,12,14,5,7 -050,01,089,Alabama,Madison County,11,6,26449,13455,12994,8715,7885,3921,4231,124,99,382,384,15,12,298,383,8973,8212,4044,4406,238,228,505,529,24,33,12736,12400,8120,7414,3851,4135,106,92,378,383,12,10,269,366,8355,7728,3958,4300,208,216,494,525,19,28,719,594,595,471,70,96,18,7,4,1,3,2,29,17,618,484,86,106,30,12,11,4,5,5 -050,01,089,Alabama,Madison County,11,7,24954,12456,12498,8640,8032,3106,3645,123,125,319,366,19,17,249,313,8851,8303,3188,3771,227,241,428,497,28,32,11591,11785,7909,7459,3032,3557,94,110,319,364,11,15,226,280,8100,7702,3105,3668,183,211,423,488,17,28,865,713,731,573,74,88,29,15,0,2,8,2,23,33,751,601,83,103,44,30,5,9,11,4 -050,01,089,Alabama,Madison County,11,8,23477,11621,11856,8150,7788,2773,3332,143,123,297,342,21,10,237,261,8359,8015,2838,3415,259,253,388,437,38,22,10841,11183,7448,7222,2731,3253,119,119,296,338,18,9,229,242,7651,7432,2791,3329,230,240,385,430,34,18,780,673,702,566,42,79,24,4,1,4,3,1,8,19,708,583,47,86,29,13,3,7,4,4 -050,01,089,Alabama,Madison County,11,9,21125,10096,11029,7054,7231,2402,3035,119,104,300,389,22,20,199,250,7227,7441,2459,3119,231,242,362,469,29,35,9428,10468,6497,6744,2328,2990,105,93,292,387,14,15,192,239,6665,6946,2383,3069,213,225,352,466,20,28,668,561,557,487,74,45,14,11,8,2,8,5,7,11,562,495,76,50,18,17,10,3,9,7 -050,01,089,Alabama,Madison County,11,10,23278,11151,12127,8153,8354,2383,3011,89,110,326,426,20,20,180,206,8311,8529,2424,3077,198,228,387,496,29,32,10629,11668,7674,7947,2368,2978,70,102,323,424,18,17,176,200,7830,8117,2408,3042,177,217,383,492,25,28,522,459,479,407,15,33,19,8,3,2,2,3,4,6,481,412,16,35,21,11,4,4,4,4 -050,01,089,Alabama,Madison County,11,11,26170,12722,13448,9463,9488,2638,3212,102,102,328,459,10,14,181,173,9623,9633,2678,3258,226,214,374,510,19,24,12286,13027,9081,9131,2610,3173,93,98,326,456,8,10,168,159,9229,9267,2645,3215,208,202,369,499,17,18,436,421,382,357,28,39,9,4,2,3,2,4,13,14,394,366,33,43,18,12,5,11,2,6 -050,01,089,Alabama,Madison County,11,12,28388,13981,14407,10721,10416,2678,3294,85,127,292,373,12,12,193,185,10876,10571,2733,3351,215,253,345,417,22,17,13571,14012,10350,10080,2664,3263,79,113,288,372,11,12,179,172,10494,10223,2713,3313,200,232,336,412,19,16,410,395,371,336,14,31,6,14,4,1,1,0,14,13,382,348,20,38,15,21,9,5,3,1 -050,01,089,Alabama,Madison County,11,13,23116,11214,11902,8594,8697,2164,2578,100,86,208,364,11,17,137,160,8718,8827,2193,2620,193,205,237,396,14,28,10936,11616,8343,8463,2150,2541,95,82,208,364,11,14,129,152,8459,8589,2174,2580,187,199,236,392,13,20,278,286,251,234,14,37,5,4,0,0,0,3,8,8,259,238,19,40,6,6,1,4,1,8 -050,01,089,Alabama,Madison County,11,14,17723,8270,9453,6299,6787,1593,2170,72,71,215,298,7,6,84,121,6372,6892,1610,2196,139,166,231,322,11,9,8116,9293,6160,6644,1583,2158,68,68,215,298,7,5,83,120,6232,6748,1600,2184,135,162,230,322,11,8,154,160,139,143,10,12,4,3,0,0,0,1,1,1,140,144,10,12,4,4,1,0,0,1 -050,01,089,Alabama,Madison County,11,15,14011,6295,7716,5002,5952,1044,1427,41,54,147,221,8,2,53,60,5049,5999,1056,1440,82,101,156,232,9,6,6182,7593,4901,5842,1038,1421,40,51,147,218,7,2,49,59,4944,5889,1047,1434,80,97,156,228,8,6,113,123,101,110,6,6,1,3,0,3,1,0,4,1,105,110,9,6,2,4,0,4,1,0 -050,01,089,Alabama,Madison County,11,16,10095,4354,5741,3615,4643,603,894,26,30,87,124,6,7,17,43,3631,4675,605,905,39,63,89,132,7,10,4292,5670,3560,4583,599,888,25,29,87,123,6,5,15,42,3575,4614,600,899,37,61,88,131,7,8,62,71,55,60,4,6,1,1,0,1,0,2,2,1,56,61,5,6,2,2,1,1,0,2 -050,01,089,Alabama,Madison County,11,17,7030,2894,4136,2501,3488,308,550,12,11,60,65,2,1,11,21,2509,3507,311,555,21,27,61,67,3,1,2868,4087,2478,3445,306,547,11,10,60,65,2,1,11,19,2486,3462,309,551,20,25,61,67,3,1,26,49,23,43,2,3,1,1,0,0,0,0,0,2,23,45,2,4,1,2,0,0,0,0 -050,01,089,Alabama,Madison County,11,18,6195,2352,3843,2009,3183,290,545,8,15,40,66,3,0,2,34,2011,3209,291,556,9,41,41,72,3,1,2328,3798,1986,3141,289,545,8,15,40,66,3,0,2,31,1988,3165,290,554,9,40,41,71,3,1,24,45,23,42,1,0,0,0,0,0,0,0,0,3,23,44,1,2,0,1,0,1,0,0 -050,01,089,Alabama,Madison County,12,0,372547,182204,190343,128069,128467,43072,49489,1457,1478,4511,5542,204,201,4891,5166,132463,133010,45387,52033,3194,3358,6076,7187,391,407,172444,181071,119795,120766,42233,48574,1238,1271,4469,5487,162,168,4547,4805,123889,125013,44384,50935,2814,2982,5954,7023,317,340,9760,9272,8274,7701,839,915,219,207,42,55,42,33,344,361,8574,7997,1003,1098,380,376,122,164,74,67 -050,01,089,Alabama,Madison County,12,1,21920,11198,10722,7016,6662,3099,3079,49,51,263,257,16,10,755,663,7726,7275,3588,3524,177,146,488,457,44,25,10180,9732,6196,5859,2991,2987,31,20,255,242,14,6,693,618,6850,6436,3448,3408,129,100,468,426,35,19,1018,990,820,803,108,92,18,31,8,15,2,4,62,45,876,839,140,116,48,46,20,31,9,6 -050,01,089,Alabama,Madison County,12,2,22093,11251,10842,7247,6913,3014,2975,41,34,279,254,7,14,663,652,7868,7518,3434,3386,161,154,477,444,24,36,10314,9945,6464,6135,2929,2902,25,23,273,248,6,14,617,623,7042,6716,3324,3300,129,130,460,431,19,33,937,897,783,778,85,73,16,11,6,6,1,0,46,29,826,802,110,86,32,24,17,13,5,3 -050,01,089,Alabama,Madison County,12,3,23004,11741,11263,7791,7315,2980,2925,95,99,257,303,15,11,603,610,8341,7874,3332,3284,227,240,448,503,41,36,10695,10223,6930,6464,2881,2842,71,67,254,301,11,9,548,540,7436,6957,3209,3168,179,176,428,480,30,29,1046,1040,861,851,99,83,24,32,3,2,4,2,55,70,905,917,123,116,48,64,20,23,11,7 -050,01,089,Alabama,Madison County,12,4,23735,12115,11620,7505,7013,3651,3635,119,120,304,306,16,15,520,531,7976,7483,3940,3951,265,267,467,474,36,40,11326,10758,6884,6317,3549,3545,98,87,298,298,13,14,484,497,7324,6762,3824,3839,226,218,449,457,29,34,789,862,621,696,102,90,21,33,6,8,3,1,36,34,652,721,116,112,39,49,18,17,7,6 -050,01,089,Alabama,Madison County,12,5,24717,12402,12315,7691,7059,3837,4301,97,92,347,424,9,15,421,424,8060,7429,4058,4526,235,227,497,578,17,36,11690,11583,7128,6484,3750,4216,73,72,344,417,5,14,390,380,7469,6819,3954,4414,197,186,489,559,13,30,712,732,563,575,87,85,24,20,3,7,4,1,31,44,591,610,104,112,38,41,8,19,4,6 -050,01,089,Alabama,Madison County,12,6,27285,14084,13201,9246,8081,4002,4184,115,116,372,414,6,8,343,398,9538,8419,4146,4372,244,246,510,568,23,27,13347,12598,8613,7593,3928,4103,108,106,371,413,6,4,321,379,8888,7916,4059,4280,225,228,505,560,23,23,737,603,633,488,74,81,7,10,1,1,0,4,22,19,650,503,87,92,19,18,5,8,0,4 -050,01,089,Alabama,Madison County,12,7,25661,12762,12899,8841,8286,3209,3818,119,113,315,346,14,17,264,319,9069,8562,3293,3946,223,239,429,475,26,29,11935,12221,8134,7759,3149,3722,98,99,313,344,9,15,232,282,8333,8004,3221,3834,185,204,422,465,16,25,827,678,707,527,60,96,21,14,2,2,5,2,32,37,736,558,72,112,38,35,7,10,10,4 -050,01,089,Alabama,Madison County,12,8,24127,11995,12132,8426,8037,2852,3367,145,107,333,349,20,11,219,261,8621,8265,2910,3454,253,233,418,445,30,25,11181,11398,7703,7415,2802,3278,120,105,332,346,13,10,211,244,7892,7628,2856,3356,223,225,416,437,23,21,814,734,723,622,50,89,25,2,1,3,7,1,8,17,729,637,54,98,30,8,2,8,7,4 -050,01,089,Alabama,Madison County,12,9,21518,10360,11158,7276,7326,2461,3041,122,117,271,387,18,15,212,272,7462,7557,2517,3125,246,268,335,475,25,29,9707,10591,6716,6834,2393,2990,109,108,268,386,16,11,205,262,6895,7058,2446,3072,229,251,332,471,23,25,653,567,560,492,68,51,13,9,3,1,2,4,7,10,567,499,71,53,17,17,3,4,2,4 -050,01,089,Alabama,Madison County,12,10,23033,10995,12038,7995,8235,2373,3049,97,108,318,420,24,20,188,206,8163,8404,2415,3119,206,215,377,496,29,28,10394,11535,7446,7797,2351,3013,84,97,314,417,14,16,185,195,7611,7960,2392,3077,191,200,373,486,19,23,601,503,549,438,22,36,13,11,4,3,10,4,3,11,552,444,23,42,15,15,4,10,10,5 -050,01,089,Alabama,Madison County,12,11,25135,12183,12952,9062,9082,2496,3123,97,102,337,458,10,10,181,177,9214,9231,2539,3174,213,215,388,510,19,13,11724,12533,8653,8720,2475,3084,84,97,335,457,8,9,169,166,8795,8859,2513,3132,195,202,381,506,16,12,459,419,409,362,21,39,13,5,2,1,2,1,12,11,419,372,26,42,18,13,7,4,3,1 -050,01,089,Alabama,Madison County,12,12,28844,14131,14713,10804,10623,2729,3366,96,123,296,394,9,20,197,187,10974,10778,2777,3420,231,250,356,441,16,24,13725,14286,10439,10268,2712,3332,86,105,293,392,8,17,187,172,10600,10409,2753,3380,216,224,351,435,15,21,406,427,365,355,17,34,10,18,3,2,1,3,10,15,374,369,24,40,15,26,5,6,1,3 -050,01,089,Alabama,Madison County,12,13,24215,11759,12456,8980,9073,2285,2725,94,92,247,394,14,19,139,153,9103,9195,2309,2772,194,206,283,424,22,28,11419,12143,8672,8806,2268,2693,88,88,247,394,14,16,130,146,8786,8924,2290,2734,185,198,279,423,20,22,340,313,308,267,17,32,6,4,0,0,0,3,9,7,317,271,19,38,9,8,4,1,2,6 -050,01,089,Alabama,Madison County,12,14,18375,8675,9700,6601,6953,1673,2212,76,84,224,304,5,5,96,142,6684,7075,1696,2247,152,194,239,334,9,8,8509,9507,6459,6783,1658,2195,72,82,224,304,5,5,91,138,6539,6902,1679,2229,144,191,238,331,8,8,166,193,142,170,15,17,4,2,0,0,0,0,5,4,145,173,17,18,8,3,1,3,1,0 -050,01,089,Alabama,Madison County,12,15,14777,6655,8122,5267,6152,1141,1602,48,53,136,246,9,3,54,66,5313,6207,1151,1616,91,104,144,259,12,8,6533,7987,5155,6034,1137,1594,46,50,136,243,8,2,51,64,5198,6087,1145,1608,88,101,144,256,11,5,122,135,112,118,4,8,2,3,0,3,1,1,3,2,115,120,6,8,3,3,0,3,1,3 -050,01,089,Alabama,Madison County,12,16,10347,4445,5902,3638,4741,650,935,24,39,107,137,5,5,21,45,3656,4774,655,948,42,78,109,141,8,8,4364,5830,3565,4679,646,929,23,38,107,137,5,3,18,44,3581,4712,650,941,40,77,108,140,7,6,81,72,73,62,4,6,1,1,0,0,0,2,3,1,75,62,5,7,2,1,1,1,1,2 -050,01,089,Alabama,Madison County,12,17,7293,3016,4277,2586,3579,337,575,16,14,62,80,4,3,11,26,2595,3600,341,582,24,35,65,87,6,4,2988,4219,2563,3527,333,573,15,13,62,79,4,3,11,24,2572,3546,337,579,23,32,65,85,6,3,28,58,23,52,4,2,1,1,0,1,0,0,0,2,23,54,4,3,1,3,0,2,0,1 -050,01,089,Alabama,Madison County,12,18,6468,2437,4031,2097,3337,283,577,7,14,43,69,3,0,4,34,2100,3364,286,587,10,41,46,76,4,3,2413,3982,2075,3292,281,576,7,14,43,69,3,0,4,31,2078,3318,284,584,10,39,46,75,4,1,24,49,22,45,2,1,0,0,0,0,0,0,0,3,22,46,2,3,0,2,0,1,0,2 -050,01,089,Alabama,Madison County,13,0,379453,185694,193759,130449,130721,43910,50374,1468,1486,4534,5575,197,200,5136,5403,135026,135498,46389,53063,3255,3416,6194,7293,400,416,175549,183993,121867,122625,43041,49395,1237,1278,4499,5526,153,164,4752,5005,126131,127059,45333,51884,2842,3022,6058,7134,315,342,10145,9766,8582,8096,869,979,231,208,35,49,44,36,384,398,8895,8439,1056,1179,413,394,136,159,85,74 -050,01,089,Alabama,Madison County,13,1,22074,11266,10808,6969,6613,3184,3176,58,67,249,261,14,14,792,677,7701,7243,3705,3627,184,167,496,454,45,35,10250,9760,6182,5786,3058,3064,36,36,240,251,11,9,723,614,6859,6361,3540,3485,134,112,469,426,35,24,1016,1048,787,827,126,112,22,31,9,10,3,5,69,63,842,882,165,142,50,55,27,28,10,11 -050,01,089,Alabama,Madison County,13,2,22598,11524,11074,7503,7103,3018,2969,44,40,284,251,10,9,665,702,8122,7751,3446,3418,163,171,484,450,26,34,10566,10169,6683,6312,2941,2907,32,25,281,246,9,7,620,672,7267,6933,3343,3339,131,144,471,440,22,29,958,905,820,791,77,62,12,15,3,5,1,2,45,30,855,818,103,79,32,27,13,10,4,5 -050,01,089,Alabama,Madison County,13,3,23196,11742,11454,7755,7410,2965,2992,86,84,260,283,11,8,665,677,8364,8035,3359,3397,227,233,470,509,34,38,10688,10348,6889,6504,2870,2889,62,55,259,282,7,8,601,610,7442,7065,3231,3256,181,174,450,488,23,31,1054,1106,866,906,95,103,24,29,1,1,4,0,64,67,922,970,128,141,46,59,20,21,11,7 -050,01,089,Alabama,Madison County,13,4,23779,12158,11621,7590,7039,3625,3623,109,117,295,300,14,12,525,530,8058,7509,3917,3938,253,257,462,469,34,28,11294,10742,6918,6331,3512,3533,85,88,289,294,12,8,478,488,7346,6767,3783,3826,204,210,441,449,27,20,864,879,672,708,113,90,24,29,6,6,2,4,47,42,712,742,134,112,49,47,21,20,7,8 -050,01,089,Alabama,Madison County,13,5,25248,12718,12530,7864,7312,3954,4233,100,94,350,404,12,21,438,466,8244,7719,4186,4483,233,237,509,575,28,38,11973,11753,7269,6688,3862,4148,76,76,349,398,8,21,409,422,7626,7058,4079,4375,195,197,501,556,21,35,745,777,595,624,92,85,24,18,1,6,4,0,29,44,618,661,107,108,38,40,8,19,7,3 -050,01,089,Alabama,Madison County,13,6,27760,14362,13398,9526,8298,3981,4171,124,105,366,429,2,10,363,385,9836,8626,4137,4359,255,239,507,581,20,20,13610,12740,8887,7758,3903,4094,112,94,365,427,1,6,342,361,9180,8070,4050,4269,234,216,501,570,16,16,752,658,639,540,78,77,12,11,1,2,1,4,21,24,656,556,87,90,21,23,6,11,4,4 -050,01,089,Alabama,Madison County,13,7,26742,13362,13380,9231,8605,3405,3980,123,115,301,327,14,19,288,334,9475,8891,3504,4119,239,236,425,461,21,34,12587,12667,8562,8057,3358,3869,103,102,299,326,11,17,254,296,8780,8309,3442,3988,197,204,416,455,16,30,775,713,669,548,47,111,20,13,2,1,3,2,34,38,695,582,62,131,42,32,9,6,5,4 -050,01,089,Alabama,Madison County,13,8,24962,12413,12549,8685,8301,2974,3470,150,108,344,395,19,8,241,267,8900,8532,3038,3562,267,235,440,494,35,20,11561,11782,7940,7652,2914,3383,126,100,343,390,10,7,228,250,8144,7869,2975,3467,234,219,436,486,24,18,852,767,745,649,60,87,24,8,1,5,9,1,13,17,756,663,63,95,33,16,4,8,11,2 -050,01,089,Alabama,Madison County,13,9,22401,10845,11556,7695,7637,2517,3128,119,124,282,363,14,10,218,294,7882,7890,2586,3225,240,284,349,458,20,27,10128,10911,7053,7074,2471,3074,107,119,279,360,13,7,205,277,7229,7311,2532,3165,222,270,343,453,19,23,717,645,642,563,46,54,12,5,3,3,1,3,13,17,653,579,54,60,18,14,6,5,1,4 -050,01,089,Alabama,Madison County,13,10,22674,10847,11827,7862,7934,2358,3119,104,109,289,415,27,24,207,226,8042,8121,2410,3196,219,232,356,497,38,38,10191,11334,7285,7512,2317,3077,87,98,285,413,17,19,200,215,7461,7691,2364,3151,200,216,351,489,26,29,656,493,577,422,41,42,17,11,4,2,10,5,7,11,581,430,46,45,19,16,5,8,12,9 -050,01,089,Alabama,Madison County,13,11,24582,11889,12693,8767,8941,2483,3026,84,95,354,456,14,7,187,168,8928,9083,2533,3072,204,190,405,513,26,15,11380,12261,8315,8563,2459,2989,68,88,353,454,10,7,175,160,8467,8699,2503,3031,180,179,403,508,21,15,509,432,452,378,24,37,16,7,1,2,4,0,12,8,461,384,30,41,24,11,2,5,5,0 -050,01,089,Alabama,Madison County,13,12,28910,14070,14840,10757,10697,2734,3395,102,115,291,414,9,23,177,196,10907,10862,2779,3455,226,247,340,461,17,29,13660,14400,10388,10336,2713,3355,92,100,288,413,9,19,170,177,10532,10484,2757,3407,211,220,335,456,15,24,410,440,369,361,21,40,10,15,3,1,0,4,7,19,375,378,22,48,15,27,5,5,2,5 -050,01,089,Alabama,Madison County,13,13,25289,12447,12842,9499,9311,2418,2871,89,100,266,395,13,14,162,151,9642,9438,2450,2916,204,214,306,423,21,19,12083,12514,9168,9031,2400,2835,85,95,266,394,12,12,152,147,9302,9156,2431,2877,196,206,301,422,17,16,364,328,331,280,18,36,4,5,0,1,1,2,10,4,340,282,19,39,8,8,5,1,4,3 -050,01,089,Alabama,Madison County,13,14,19062,8972,10090,6825,7300,1726,2244,79,88,229,300,4,12,109,146,6917,7427,1753,2276,163,200,254,333,9,18,8784,9864,6666,7112,1709,2221,73,81,229,300,4,11,103,139,6752,7232,1733,2251,153,190,252,326,8,15,188,226,159,188,17,23,6,7,0,0,0,1,6,7,165,195,20,25,10,10,2,7,1,3 -050,01,089,Alabama,Madison County,13,15,15462,6953,8509,5463,6323,1218,1773,48,54,157,278,7,3,60,78,5518,6391,1226,1789,97,117,168,293,9,8,6818,8365,5338,6193,1214,1766,46,53,157,275,6,2,57,76,5391,6259,1221,1781,93,115,167,290,8,7,135,144,125,130,4,7,2,1,0,3,1,1,3,2,127,132,5,8,4,2,1,3,1,1 -050,01,089,Alabama,Madison County,13,16,10567,4537,6030,3678,4805,706,995,23,42,99,142,6,4,25,42,3697,4835,712,1007,43,77,103,147,8,8,4449,5949,3597,4737,703,986,22,40,99,142,6,2,22,42,3614,4767,709,998,40,75,101,147,8,6,88,81,81,68,3,9,1,2,0,0,0,2,3,0,83,68,3,9,3,2,2,0,0,2 -050,01,089,Alabama,Madison County,13,17,7433,3081,4352,2614,3609,369,615,17,15,66,85,5,2,10,26,2623,3633,372,619,26,34,67,91,6,5,3044,4281,2583,3546,364,612,17,14,66,84,5,2,9,23,2591,3567,366,614,26,31,67,89,6,3,37,71,31,63,5,3,0,1,0,1,0,0,1,3,32,66,6,5,0,3,0,2,0,2 -050,01,089,Alabama,Madison County,13,18,6714,2508,4206,2166,3483,275,594,9,14,52,77,2,0,4,38,2170,3512,276,605,12,46,53,84,3,2,2483,4153,2144,3433,273,593,8,14,52,77,2,0,4,36,2148,3461,274,604,11,44,53,84,3,1,25,53,22,50,2,1,1,0,0,0,0,0,0,2,22,51,2,1,1,2,0,0,0,1 -050,01,091,Alabama,Marengo County,1,0,21027,9913,11114,4811,5045,4972,5928,18,21,22,31,22,15,68,74,4864,5105,5015,5977,41,53,38,39,28,17,9740,10935,4685,4923,4949,5892,16,16,22,31,5,4,63,69,4734,4978,4989,5936,38,46,35,38,11,6,173,179,126,122,23,36,2,5,0,0,17,11,5,5,130,127,26,41,3,7,3,1,17,11 -050,01,091,Alabama,Marengo County,1,1,1307,640,667,269,264,355,379,2,2,1,3,3,2,10,17,279,279,363,394,2,4,3,6,3,2,621,641,255,247,353,375,2,1,1,3,0,0,10,15,265,260,361,388,2,2,3,6,0,0,19,26,14,17,2,4,0,1,0,0,3,2,0,2,14,19,2,6,0,2,0,0,3,2 -050,01,091,Alabama,Marengo County,1,2,1369,712,657,324,271,371,371,2,3,1,4,3,3,11,5,333,276,382,374,2,5,2,4,5,3,698,640,314,259,369,369,2,2,1,4,1,1,11,5,323,264,380,372,2,4,2,4,3,1,14,17,10,12,2,2,0,1,0,0,2,2,0,0,10,12,2,2,0,1,0,0,2,2 -050,01,091,Alabama,Marengo County,1,3,1484,759,725,302,290,442,420,0,4,2,0,3,3,10,8,311,298,448,427,3,5,4,0,3,3,748,707,294,279,441,415,0,4,2,0,2,1,9,8,302,287,447,422,3,5,3,0,2,1,11,18,8,11,1,5,0,0,0,0,1,2,1,0,9,11,1,5,0,0,1,0,1,2 -050,01,091,Alabama,Marengo County,1,4,1644,830,814,294,289,528,516,3,0,0,1,1,1,4,7,298,294,530,520,4,4,1,2,1,1,822,804,289,282,526,514,3,0,0,1,1,0,3,7,292,287,528,518,4,4,0,2,1,0,8,10,5,7,2,2,0,0,0,0,0,1,1,0,6,7,2,2,0,0,1,0,0,1 -050,01,091,Alabama,Marengo County,1,5,1161,594,567,232,227,354,334,1,0,2,3,2,0,3,3,235,230,356,337,2,0,2,3,2,0,571,554,215,216,351,333,1,0,2,3,0,0,2,2,217,218,352,335,2,0,2,3,0,0,23,13,17,11,3,1,0,0,0,0,2,0,1,1,18,12,4,2,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,1,6,1078,465,613,233,260,225,345,1,1,2,1,1,2,3,4,234,264,228,346,4,4,2,2,1,2,439,595,212,247,223,343,0,0,2,1,0,1,2,3,212,250,225,343,2,2,2,2,0,1,26,18,21,13,2,2,1,1,0,0,1,1,1,1,22,14,3,3,2,2,0,0,1,1 -050,01,091,Alabama,Marengo County,1,7,1093,502,591,238,260,258,322,1,4,2,1,1,1,2,3,240,262,259,324,1,5,3,2,1,1,489,571,226,244,258,319,1,4,2,1,0,0,2,3,228,246,259,321,1,5,3,2,0,0,13,20,12,16,0,3,0,0,0,0,1,1,0,0,12,16,0,3,0,0,0,0,1,1 -050,01,091,Alabama,Marengo County,1,8,1269,540,729,291,293,245,424,0,1,3,5,1,2,0,4,291,296,245,426,0,3,3,6,1,3,526,714,280,283,243,422,0,1,3,5,0,0,0,3,280,285,243,423,0,3,3,5,0,1,14,15,11,10,2,2,0,0,0,0,1,2,0,1,11,11,2,3,0,0,0,1,1,2 -050,01,091,Alabama,Marengo County,1,9,1352,625,727,292,310,322,409,2,1,1,3,2,0,6,4,294,314,325,410,5,4,4,3,3,0,617,719,287,305,321,406,2,1,1,3,0,0,6,4,289,309,324,407,5,4,4,3,1,0,8,8,5,5,1,3,0,0,0,0,2,0,0,0,5,5,1,3,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,1,10,1472,697,775,360,374,329,395,0,1,3,4,2,0,3,1,362,375,330,395,2,2,4,4,2,0,689,770,356,370,327,394,0,1,3,4,0,0,3,1,358,371,328,394,2,2,4,4,0,0,8,5,4,4,2,1,0,0,0,0,2,0,0,0,4,4,2,1,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,1,11,1580,751,829,362,328,382,495,0,1,2,3,1,0,4,2,366,330,382,495,2,3,4,3,1,0,744,821,357,323,381,493,0,0,2,3,0,0,4,2,361,325,381,493,2,2,4,3,0,0,7,8,5,5,1,2,0,1,0,0,1,0,0,0,5,5,1,2,0,1,0,0,1,0 -050,01,091,Alabama,Marengo County,1,12,1461,718,743,358,338,355,397,1,0,1,1,1,1,2,6,359,341,356,401,2,5,1,1,2,1,709,742,353,338,353,396,0,0,1,1,0,1,2,6,354,341,354,400,1,5,1,1,1,1,9,1,5,0,2,1,1,0,0,0,1,0,0,0,5,0,2,1,1,0,0,0,1,0 -050,01,091,Alabama,Marengo County,1,13,1333,624,709,345,362,272,344,3,1,0,0,1,0,3,2,347,363,273,345,6,2,0,1,1,0,620,703,342,359,271,341,3,1,0,0,1,0,3,2,344,360,272,342,6,2,0,1,1,0,4,6,3,3,1,3,0,0,0,0,0,0,0,0,3,3,1,3,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,1,14,1004,481,523,265,303,210,218,1,0,1,1,0,0,4,1,266,303,214,219,3,0,3,1,1,1,476,520,262,303,209,215,1,0,1,1,0,0,3,1,263,303,212,216,3,0,2,1,1,1,5,3,3,0,1,3,0,0,0,0,0,0,1,0,3,0,2,3,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,1,15,818,367,451,233,287,132,158,0,2,0,1,0,0,2,3,235,289,132,160,2,4,1,1,0,0,366,447,233,284,131,158,0,1,0,1,0,0,2,3,235,286,131,160,2,3,1,1,0,0,1,4,0,3,1,0,0,1,0,0,0,0,0,0,0,3,1,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,1,16,660,285,375,197,238,85,135,1,0,1,0,0,0,1,2,198,239,85,137,1,1,1,0,1,0,284,373,196,236,85,135,1,0,1,0,0,0,1,2,197,237,85,137,1,1,1,0,1,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,1,17,476,194,282,128,166,66,116,0,0,0,0,0,0,0,0,128,166,66,116,0,0,0,0,0,0,193,279,127,164,66,115,0,0,0,0,0,0,0,0,127,164,66,115,0,0,0,0,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,1,18,466,129,337,88,185,41,150,0,0,0,0,0,0,0,2,88,186,41,151,0,2,0,0,0,0,128,335,87,184,41,149,0,0,0,0,0,0,0,2,87,185,41,150,0,2,0,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,2,0,21047,9924,11123,4814,5049,4980,5933,18,21,22,31,22,15,68,74,4867,5109,5023,5982,41,53,38,39,28,17,9751,10944,4688,4927,4957,5897,16,16,22,31,5,4,63,69,4737,4982,4997,5941,38,46,35,38,11,6,173,179,126,122,23,36,2,5,0,0,17,11,5,5,130,127,26,41,3,7,3,1,17,11 -050,01,091,Alabama,Marengo County,2,1,1307,640,667,269,264,355,379,2,2,1,3,3,2,10,17,279,279,363,394,2,4,3,6,3,2,621,641,255,247,353,375,2,1,1,3,0,0,10,15,265,260,361,388,2,2,3,6,0,0,19,26,14,17,2,4,0,1,0,0,3,2,0,2,14,19,2,6,0,2,0,0,3,2 -050,01,091,Alabama,Marengo County,2,2,1370,713,657,324,271,372,371,2,3,1,4,3,3,11,5,333,276,383,374,2,5,2,4,5,3,699,640,314,259,370,369,2,2,1,4,1,1,11,5,323,264,381,372,2,4,2,4,3,1,14,17,10,12,2,2,0,1,0,0,2,2,0,0,10,12,2,2,0,1,0,0,2,2 -050,01,091,Alabama,Marengo County,2,3,1487,760,727,302,291,443,421,0,4,2,0,3,3,10,8,311,299,449,428,3,5,4,0,3,3,749,709,294,280,442,416,0,4,2,0,2,1,9,8,302,288,448,423,3,5,3,0,2,1,11,18,8,11,1,5,0,0,0,0,1,2,1,0,9,11,1,5,0,0,1,0,1,2 -050,01,091,Alabama,Marengo County,2,4,1647,831,816,294,290,529,517,3,0,0,1,1,1,4,7,298,295,531,521,4,4,1,2,1,1,823,806,289,283,527,515,3,0,0,1,1,0,3,7,292,288,529,519,4,4,0,2,1,0,8,10,5,7,2,2,0,0,0,0,0,1,1,0,6,7,2,2,0,0,1,0,0,1 -050,01,091,Alabama,Marengo County,2,5,1161,594,567,232,227,354,334,1,0,2,3,2,0,3,3,235,230,356,337,2,0,2,3,2,0,571,554,215,216,351,333,1,0,2,3,0,0,2,2,217,218,352,335,2,0,2,3,0,0,23,13,17,11,3,1,0,0,0,0,2,0,1,1,18,12,4,2,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,2,6,1078,465,613,233,260,225,345,1,1,2,1,1,2,3,4,234,264,228,346,4,4,2,2,1,2,439,595,212,247,223,343,0,0,2,1,0,1,2,3,212,250,225,343,2,2,2,2,0,1,26,18,21,13,2,2,1,1,0,0,1,1,1,1,22,14,3,3,2,2,0,0,1,1 -050,01,091,Alabama,Marengo County,2,7,1093,502,591,238,260,258,322,1,4,2,1,1,1,2,3,240,262,259,324,1,5,3,2,1,1,489,571,226,244,258,319,1,4,2,1,0,0,2,3,228,246,259,321,1,5,3,2,0,0,13,20,12,16,0,3,0,0,0,0,1,1,0,0,12,16,0,3,0,0,0,0,1,1 -050,01,091,Alabama,Marengo County,2,8,1272,541,731,291,293,246,426,0,1,3,5,1,2,0,4,291,296,246,428,0,3,3,6,1,3,527,716,280,283,244,424,0,1,3,5,0,0,0,3,280,285,244,425,0,3,3,5,0,1,14,15,11,10,2,2,0,0,0,0,1,2,0,1,11,11,2,3,0,0,0,1,1,2 -050,01,091,Alabama,Marengo County,2,9,1354,627,727,292,310,324,409,2,1,1,3,2,0,6,4,294,314,327,410,5,4,4,3,3,0,619,719,287,305,323,406,2,1,1,3,0,0,6,4,289,309,326,407,5,4,4,3,1,0,8,8,5,5,1,3,0,0,0,0,2,0,0,0,5,5,1,3,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,2,10,1472,697,775,360,374,329,395,0,1,3,4,2,0,3,1,362,375,330,395,2,2,4,4,2,0,689,770,356,370,327,394,0,1,3,4,0,0,3,1,358,371,328,394,2,2,4,4,0,0,8,5,4,4,2,1,0,0,0,0,2,0,0,0,4,4,2,1,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,2,11,1580,751,829,363,328,381,495,0,1,2,3,1,0,4,2,367,330,381,495,2,3,4,3,1,0,744,821,358,323,380,493,0,0,2,3,0,0,4,2,362,325,380,493,2,2,4,3,0,0,7,8,5,5,1,2,0,1,0,0,1,0,0,0,5,5,1,2,0,1,0,0,1,0 -050,01,091,Alabama,Marengo County,2,12,1466,721,745,358,340,358,397,1,0,1,1,1,1,2,6,359,343,359,401,2,5,1,1,2,1,712,744,353,340,356,396,0,0,1,1,0,1,2,6,354,343,357,400,1,5,1,1,1,1,9,1,5,0,2,1,1,0,0,0,1,0,0,0,5,0,2,1,1,0,0,0,1,0 -050,01,091,Alabama,Marengo County,2,13,1334,625,709,346,362,272,344,3,1,0,0,1,0,3,2,348,363,273,345,6,2,0,1,1,0,621,703,343,359,271,341,3,1,0,0,1,0,3,2,345,360,272,342,6,2,0,1,1,0,4,6,3,3,1,3,0,0,0,0,0,0,0,0,3,3,1,3,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,2,14,1003,481,522,266,303,209,217,1,0,1,1,0,0,4,1,267,303,213,218,3,0,3,1,1,1,476,519,263,303,208,214,1,0,1,1,0,0,3,1,264,303,211,215,3,0,2,1,1,1,5,3,3,0,1,3,0,0,0,0,0,0,1,0,3,0,2,3,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,2,15,819,367,452,233,287,132,159,0,2,0,1,0,0,2,3,235,289,132,161,2,4,1,1,0,0,366,448,233,284,131,159,0,1,0,1,0,0,2,3,235,286,131,161,2,3,1,1,0,0,1,4,0,3,1,0,0,1,0,0,0,0,0,0,0,3,1,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,2,16,662,286,376,197,238,86,136,1,0,1,0,0,0,1,2,198,239,86,138,1,1,1,0,1,0,285,374,196,236,86,136,1,0,1,0,0,0,1,2,197,237,86,138,1,1,1,0,1,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,2,17,476,194,282,128,166,66,116,0,0,0,0,0,0,0,0,128,166,66,116,0,0,0,0,0,0,193,279,127,164,66,115,0,0,0,0,0,0,0,0,127,164,66,115,0,0,0,0,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,2,18,466,129,337,88,185,41,150,0,0,0,0,0,0,0,2,88,186,41,151,0,2,0,0,0,0,128,335,87,184,41,149,0,0,0,0,0,0,0,2,87,185,41,150,0,2,0,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,3,0,20955,9871,11084,4798,5036,4948,5907,18,21,21,31,21,15,65,74,4855,5102,4978,5946,44,56,30,40,29,15,9699,10902,4672,4911,4925,5870,16,16,21,31,5,4,60,70,4725,4973,4953,5908,39,48,29,40,13,4,172,182,126,125,23,37,2,5,0,0,16,11,5,4,130,129,25,38,5,8,1,0,16,11 -050,01,091,Alabama,Marengo County,3,1,1286,625,661,264,263,347,374,2,2,1,3,3,2,8,17,272,280,353,386,3,7,2,3,3,2,604,636,248,246,345,370,2,1,1,3,0,0,8,16,256,262,351,382,3,5,2,3,0,0,21,25,16,17,2,4,0,1,0,0,3,2,0,1,16,18,2,4,0,2,0,0,3,2 -050,01,091,Alabama,Marengo County,3,2,1356,701,655,320,269,366,371,2,3,1,4,2,3,10,5,329,273,372,373,3,6,3,5,4,3,688,636,310,255,364,369,2,2,1,4,1,1,10,5,319,259,370,371,3,5,3,5,3,1,13,19,10,14,2,2,0,1,0,0,1,2,0,0,10,14,2,2,0,1,0,0,1,2 -050,01,091,Alabama,Marengo County,3,3,1477,755,722,302,290,437,415,0,4,2,0,3,3,11,10,313,299,441,421,4,7,5,2,3,3,744,704,294,279,436,410,0,4,2,0,2,1,10,10,304,288,440,416,3,7,5,2,2,1,11,18,8,11,1,5,0,0,0,0,1,2,1,0,9,11,1,5,1,0,0,0,1,2 -050,01,091,Alabama,Marengo County,3,4,1641,830,811,300,289,522,515,3,0,0,1,1,1,4,5,304,294,525,517,4,3,0,1,1,1,821,801,295,282,519,513,3,0,0,1,1,0,3,5,298,287,522,515,3,3,0,1,1,0,9,10,5,7,3,2,0,0,0,0,0,1,1,0,6,7,3,2,1,0,0,0,0,1 -050,01,091,Alabama,Marengo County,3,5,1180,601,579,233,228,361,343,1,0,1,4,2,0,3,4,236,231,363,347,1,1,2,4,2,0,578,566,216,217,358,342,1,0,1,4,0,0,2,3,218,219,359,345,1,1,2,4,0,0,23,13,17,11,3,1,0,0,0,0,2,0,1,1,18,12,4,2,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,3,6,1079,467,612,229,261,231,343,1,1,2,1,1,2,3,4,230,265,232,344,3,2,3,3,2,2,445,594,212,248,229,341,0,0,2,1,0,1,2,3,212,251,230,342,1,0,3,3,1,1,22,18,17,13,2,2,1,1,0,0,1,1,1,1,18,14,2,2,2,2,0,0,1,1 -050,01,091,Alabama,Marengo County,3,7,1097,503,594,239,260,258,325,1,4,2,1,1,1,2,3,241,263,259,327,2,5,2,1,1,1,488,575,225,245,258,322,1,4,2,1,0,0,2,3,227,248,259,324,2,5,2,1,0,0,15,19,14,15,0,3,0,0,0,0,1,1,0,0,14,15,0,3,0,0,0,0,1,1 -050,01,091,Alabama,Marengo County,3,8,1258,542,716,290,294,248,411,0,1,3,4,1,2,0,4,290,297,248,412,0,5,3,4,1,2,528,699,279,282,246,409,0,1,3,4,0,0,0,3,279,284,246,410,0,4,3,4,0,0,14,17,11,12,2,2,0,0,0,0,1,2,0,1,11,13,2,2,0,1,0,0,1,2 -050,01,091,Alabama,Marengo County,3,9,1344,615,729,290,310,315,411,2,1,1,3,2,0,5,4,294,314,316,413,6,2,1,4,3,0,606,721,284,305,314,408,2,1,1,3,0,0,5,4,288,309,315,410,6,2,1,4,1,0,9,8,6,5,1,3,0,0,0,0,2,0,0,0,6,5,1,3,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,3,10,1461,693,768,358,369,328,393,0,1,3,4,2,0,2,1,359,370,329,393,2,2,3,4,2,0,685,762,354,364,326,392,0,1,3,4,0,0,2,1,355,365,327,392,2,2,3,4,0,0,8,6,4,5,2,1,0,0,0,0,2,0,0,0,4,5,2,1,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,3,11,1557,737,820,362,330,368,485,0,1,2,3,1,0,4,1,365,331,370,485,2,2,2,3,2,0,730,813,357,326,367,483,0,0,2,3,0,0,4,1,360,327,369,483,2,1,2,3,1,0,7,7,5,4,1,2,0,1,0,0,1,0,0,0,5,4,1,2,0,1,0,0,1,0 -050,01,091,Alabama,Marengo County,3,12,1464,714,750,355,338,354,404,1,0,1,1,1,1,2,6,356,343,355,406,2,4,1,2,2,1,706,749,350,338,353,403,0,0,1,1,0,1,2,6,351,343,354,405,1,4,1,2,1,1,8,1,5,0,1,1,1,0,0,0,1,0,0,0,5,0,1,1,1,0,0,0,1,0 -050,01,091,Alabama,Marengo County,3,13,1350,637,713,352,364,278,346,3,1,0,0,1,0,3,2,355,366,279,347,5,2,0,0,1,0,633,706,349,361,277,342,3,1,0,0,1,0,3,2,352,363,278,343,5,2,0,0,1,0,4,7,3,3,1,4,0,0,0,0,0,0,0,0,3,3,1,4,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,3,14,988,473,515,261,298,206,215,1,0,1,1,0,0,4,1,264,299,207,215,2,1,2,1,2,0,468,512,258,298,205,212,1,0,1,1,0,0,3,1,261,299,205,212,2,1,1,1,2,0,5,3,3,0,1,3,0,0,0,0,0,0,1,0,3,0,2,3,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,3,15,820,371,449,230,286,138,158,0,2,0,1,0,0,3,2,233,286,138,160,3,4,0,1,0,0,370,446,230,284,137,158,0,1,0,1,0,0,3,2,233,284,137,160,3,3,0,1,0,0,1,3,0,2,1,0,0,1,0,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,3,16,654,280,374,193,234,84,137,1,0,1,0,0,0,1,3,194,237,84,137,2,1,1,2,0,0,279,371,192,231,84,137,1,0,1,0,0,0,1,3,193,234,84,137,2,1,1,2,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,3,17,480,198,282,133,168,65,114,0,0,0,0,0,0,0,0,133,168,65,114,0,0,0,0,0,0,197,279,132,166,65,113,0,0,0,0,0,0,0,0,132,166,65,113,0,0,0,0,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,3,18,463,129,334,87,185,42,147,0,0,0,0,0,0,0,2,87,186,42,149,0,2,0,0,0,0,129,332,87,184,42,146,0,0,0,0,0,0,0,2,87,185,42,148,0,2,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,4,0,20663,9720,10943,4743,4976,4841,5825,21,18,23,30,21,15,71,79,4805,5046,4882,5878,53,47,29,39,24,15,9546,10744,4620,4828,4812,5790,20,17,23,30,5,4,66,75,4677,4894,4849,5841,51,44,29,39,8,4,174,199,123,148,29,35,1,1,0,0,16,11,5,4,128,152,33,37,2,3,0,0,16,11 -050,01,091,Alabama,Marengo County,4,1,1240,598,642,258,267,324,352,4,1,0,2,1,2,11,18,268,284,333,365,9,4,0,5,1,2,576,611,240,242,321,349,4,1,0,2,0,0,11,17,250,258,330,362,9,3,0,5,0,0,22,31,18,25,3,3,0,0,0,0,1,2,0,1,18,26,3,3,0,1,0,0,1,2 -050,01,091,Alabama,Marengo County,4,2,1331,671,660,300,269,353,377,2,3,2,4,3,2,11,5,311,274,361,380,3,5,3,4,4,2,652,640,287,251,350,376,2,3,2,4,0,1,11,5,298,256,358,379,3,5,3,4,1,1,19,20,13,18,3,1,0,0,0,0,3,1,0,0,13,18,3,1,0,0,0,0,3,1 -050,01,091,Alabama,Marengo County,4,3,1434,738,696,309,281,415,397,0,4,2,0,3,4,9,10,317,290,421,405,4,6,2,1,3,4,725,674,301,268,411,391,0,4,2,0,3,1,8,10,308,277,416,399,4,6,2,1,3,1,13,22,8,13,4,6,0,0,0,0,0,3,1,0,9,13,5,6,0,0,0,0,0,3 -050,01,091,Alabama,Marengo County,4,4,1561,787,774,299,280,479,486,2,0,0,1,2,1,5,6,304,286,481,492,4,0,1,1,2,1,779,764,295,272,477,485,2,0,0,1,1,0,4,6,299,278,479,491,3,0,1,1,1,0,8,10,4,8,2,1,0,0,0,0,1,1,1,0,5,8,2,1,1,0,0,0,1,1 -050,01,091,Alabama,Marengo County,4,5,1203,613,590,228,224,376,358,3,0,0,3,1,0,5,5,231,229,381,361,4,2,1,3,1,0,600,577,219,213,374,357,3,0,0,3,0,0,4,4,221,217,378,359,4,2,1,3,0,0,13,13,9,11,2,1,0,0,0,0,1,0,1,1,10,12,3,2,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,4,6,1092,479,613,231,266,239,339,2,0,3,3,1,2,3,3,233,268,241,342,4,0,3,4,1,2,455,590,213,247,236,337,1,0,3,3,0,1,2,2,214,248,237,339,3,0,3,4,0,1,24,23,18,19,3,2,1,0,0,0,1,1,1,1,19,20,4,3,1,0,0,0,1,1 -050,01,091,Alabama,Marengo County,4,7,1080,491,589,247,247,236,332,1,4,3,1,2,1,2,4,249,250,236,335,3,6,3,1,2,1,470,565,229,228,235,328,1,4,3,1,0,0,2,4,231,231,235,331,3,6,3,1,0,0,21,24,18,19,1,4,0,0,0,0,2,1,0,0,18,19,1,4,0,0,0,0,2,1 -050,01,091,Alabama,Marengo County,4,8,1189,530,659,276,282,250,370,0,0,4,3,0,2,0,2,276,283,250,372,0,1,4,3,0,2,517,644,265,271,248,368,0,0,4,3,0,0,0,2,265,272,248,370,0,1,4,3,0,0,13,15,11,11,2,2,0,0,0,0,0,2,0,0,11,11,2,2,0,0,0,0,0,2 -050,01,091,Alabama,Marengo County,4,9,1318,592,726,290,305,293,409,1,2,1,4,3,0,4,6,293,309,295,413,3,6,1,5,4,0,580,717,282,299,292,407,1,2,1,4,0,0,4,5,285,302,294,411,3,5,1,5,1,0,12,9,8,6,1,2,0,0,0,0,3,0,0,1,8,7,1,2,0,1,0,0,3,0 -050,01,091,Alabama,Marengo County,4,10,1397,678,719,349,341,320,372,1,1,2,3,2,0,4,2,352,343,322,372,3,2,3,4,2,0,672,715,347,337,318,372,1,1,2,3,0,0,4,2,350,339,320,372,3,2,3,4,0,0,6,4,2,4,2,0,0,0,0,0,2,0,0,0,2,4,2,0,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,4,11,1536,709,827,352,350,351,473,0,0,2,3,1,0,3,1,355,351,352,473,1,1,3,3,1,0,704,820,348,346,351,470,0,0,2,3,0,0,3,1,351,347,352,470,1,1,3,3,0,0,5,7,4,4,0,3,0,0,0,0,1,0,0,0,4,4,0,3,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,4,12,1477,706,771,345,332,355,432,0,0,2,1,1,1,3,5,347,337,357,434,1,4,2,2,2,1,698,770,341,332,352,431,0,0,2,1,0,1,3,5,343,337,354,433,1,4,2,2,1,1,8,1,4,0,3,1,0,0,0,0,1,0,0,0,4,0,3,1,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,4,13,1380,661,719,362,368,294,349,2,0,0,0,0,0,3,2,365,370,294,350,4,1,1,0,0,0,659,712,361,365,293,345,2,0,0,0,0,0,3,2,364,367,293,346,4,1,1,0,0,0,2,7,1,3,1,4,0,0,0,0,0,0,0,0,1,3,1,4,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,4,14,983,460,523,250,295,203,224,1,1,1,1,1,0,4,2,253,296,205,225,4,3,1,1,1,0,456,520,248,295,202,221,1,1,1,1,1,0,3,2,250,296,203,222,4,3,1,1,1,0,4,3,2,0,1,3,0,0,0,0,0,0,1,0,3,0,2,3,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,4,15,829,386,443,223,275,159,165,1,1,0,1,0,0,3,1,226,276,159,165,4,2,0,1,0,0,384,443,222,275,158,165,1,1,0,1,0,0,3,1,225,276,158,165,4,2,0,1,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,4,16,646,273,373,191,230,79,139,1,1,1,0,0,0,1,3,192,232,79,141,2,3,1,0,0,0,272,368,190,226,79,139,1,0,1,0,0,0,1,3,191,228,79,141,2,2,1,0,0,0,1,5,1,4,0,0,0,1,0,0,0,0,0,0,1,4,0,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,4,17,506,206,300,143,188,63,110,0,0,0,0,0,0,0,2,143,190,63,111,0,1,0,0,0,0,205,296,142,185,63,109,0,0,0,0,0,0,0,2,142,187,63,110,0,1,0,0,0,0,1,4,1,3,0,1,0,0,0,0,0,0,0,0,1,3,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,4,18,461,142,319,90,176,52,141,0,0,0,0,0,0,0,2,90,178,52,142,0,0,0,1,0,0,142,318,90,176,52,140,0,0,0,0,0,0,0,2,90,178,52,141,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,5,0,20378,9570,10808,4679,4968,4761,5693,20,23,21,29,20,15,69,80,4740,5044,4798,5741,53,50,27,37,22,17,9362,10580,4521,4784,4734,5666,19,22,21,29,4,4,63,75,4577,4855,4767,5712,49,46,26,37,6,6,208,228,158,184,27,27,1,1,0,0,16,11,6,5,163,189,31,29,4,4,1,0,16,11 -050,01,091,Alabama,Marengo County,5,1,1246,582,664,254,303,313,341,3,0,1,2,0,2,11,16,265,319,321,354,5,2,2,3,0,2,551,620,226,263,310,341,3,0,1,2,0,0,11,14,237,277,318,353,5,1,2,3,0,0,31,44,28,40,3,0,0,0,0,0,0,2,0,2,28,42,3,1,0,1,0,0,0,2 -050,01,091,Alabama,Marengo County,5,2,1280,641,639,276,253,348,369,3,5,1,3,3,2,10,7,286,260,356,376,4,5,2,3,3,2,617,617,257,234,347,367,3,5,1,3,0,1,9,7,266,241,354,374,4,5,2,3,0,1,24,22,19,19,1,2,0,0,0,0,3,1,1,0,20,19,2,2,0,0,0,0,3,1 -050,01,091,Alabama,Marengo County,5,3,1401,712,689,300,291,401,379,0,5,3,1,3,4,5,9,305,299,403,384,3,9,3,2,3,4,698,669,291,275,397,378,0,5,3,1,2,1,5,9,296,283,399,383,3,9,3,2,2,1,14,20,9,16,4,1,0,0,0,0,1,3,0,0,9,16,4,1,0,0,0,0,1,3 -050,01,091,Alabama,Marengo County,5,4,1470,740,730,303,273,428,448,0,1,0,0,1,0,8,8,311,281,433,451,3,4,1,1,1,1,728,716,296,261,426,446,0,1,0,0,0,0,6,8,302,269,429,449,2,4,1,1,0,1,12,14,7,12,2,2,0,0,0,0,1,0,2,0,9,12,4,2,1,0,0,0,1,0 -050,01,091,Alabama,Marengo County,5,5,1237,634,603,233,235,392,360,4,0,0,4,2,1,3,3,234,238,395,362,5,1,1,4,2,1,623,586,225,221,390,359,4,0,0,4,1,0,3,2,226,223,393,361,5,0,1,4,1,0,11,17,8,14,2,1,0,0,0,0,1,1,0,1,8,15,2,1,0,1,0,0,1,1 -050,01,091,Alabama,Marengo County,5,6,1093,492,601,233,260,251,335,2,0,1,2,1,0,4,4,235,263,254,338,4,1,2,3,1,0,469,581,217,243,248,333,1,0,1,2,0,0,2,3,218,245,250,335,2,1,1,3,0,0,23,20,16,17,3,2,1,0,0,0,1,0,2,1,17,18,4,3,2,0,1,0,1,0 -050,01,091,Alabama,Marengo County,5,7,1052,469,583,232,239,230,334,1,3,2,0,2,3,2,4,234,243,230,336,2,5,3,0,2,3,445,558,211,218,229,332,1,3,2,0,0,1,2,4,213,222,229,334,2,5,3,0,0,1,24,25,21,21,1,2,0,0,0,0,2,2,0,0,21,21,1,2,0,0,0,0,2,2 -050,01,091,Alabama,Marengo County,5,8,1136,507,629,265,275,240,345,0,3,2,2,0,2,0,2,265,276,240,346,0,5,2,2,0,2,486,610,246,261,238,342,0,3,2,2,0,0,0,2,246,262,238,343,0,5,2,2,0,0,21,19,19,14,2,3,0,0,0,0,0,2,0,0,19,14,2,3,0,0,0,0,0,2 -050,01,091,Alabama,Marengo County,5,9,1298,581,717,285,288,287,416,1,2,3,5,2,0,3,6,287,294,288,420,3,5,3,5,3,0,566,703,273,277,286,414,1,2,3,5,0,0,3,5,275,282,287,418,3,4,3,5,1,0,15,14,12,11,1,2,0,0,0,0,2,0,0,1,12,12,1,2,0,1,0,0,2,0 -050,01,091,Alabama,Marengo County,5,10,1353,662,691,343,328,309,356,1,0,1,4,3,0,5,3,347,331,311,359,5,0,1,4,3,0,653,690,339,327,307,356,1,0,1,4,0,0,5,3,343,330,309,359,5,0,1,4,0,0,9,1,4,1,2,0,0,0,0,0,3,0,0,0,4,1,2,0,0,0,0,0,3,0 -050,01,091,Alabama,Marengo County,5,11,1480,697,783,349,351,341,430,0,1,3,1,1,0,3,0,352,351,342,430,2,1,3,1,1,0,692,774,345,344,341,428,0,1,3,1,0,0,3,0,348,344,342,428,2,1,3,1,0,0,5,9,4,7,0,2,0,0,0,0,1,0,0,0,4,7,0,2,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,5,12,1488,699,789,344,328,349,453,0,0,2,2,1,1,3,5,346,333,350,453,2,3,2,4,2,1,689,785,338,326,346,451,0,0,2,2,0,1,3,5,340,331,347,451,2,3,2,4,1,1,10,4,6,2,3,2,0,0,0,0,1,0,0,0,6,2,3,2,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,5,13,1292,627,665,341,335,282,326,1,0,0,1,0,0,3,3,344,338,283,327,3,2,0,1,0,0,626,659,340,332,282,323,1,0,0,1,0,0,3,3,343,335,283,324,3,2,0,1,0,0,1,6,1,3,0,3,0,0,0,0,0,0,0,0,1,3,0,3,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,5,14,1078,503,575,275,315,220,256,2,1,1,1,1,0,4,2,279,317,220,257,6,2,1,1,1,0,499,572,274,315,218,253,2,1,1,1,1,0,3,2,277,317,218,254,5,2,1,1,1,0,4,3,1,0,2,3,0,0,0,0,0,0,1,0,2,0,2,3,1,0,0,0,0,0 -050,01,091,Alabama,Marengo County,5,15,841,392,449,218,283,169,164,1,0,0,1,0,0,4,1,221,284,171,164,4,0,0,2,0,0,390,448,217,283,168,163,1,0,0,1,0,0,4,1,220,284,170,163,4,0,0,2,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,5,16,661,287,374,203,234,81,135,1,2,1,0,0,0,1,3,204,236,81,137,2,4,1,0,0,0,286,369,202,230,81,135,1,1,1,0,0,0,1,3,203,232,81,137,2,3,1,0,0,0,1,5,1,4,0,0,0,1,0,0,0,0,0,0,1,4,0,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,5,17,486,187,299,122,193,65,104,0,0,0,0,0,0,0,2,122,195,65,104,0,0,0,1,0,1,187,296,122,190,65,104,0,0,0,0,0,0,0,2,122,192,65,104,0,0,0,1,0,1,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,5,18,486,158,328,103,184,55,142,0,0,0,0,0,0,0,2,103,186,55,143,0,1,0,0,0,0,157,327,102,184,55,141,0,0,0,0,0,0,0,2,102,186,55,142,0,1,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,6,0,20123,9458,10665,4608,4906,4709,5603,22,23,24,36,20,15,75,82,4673,4985,4745,5650,56,46,36,51,23,15,9231,10423,4437,4717,4679,5572,21,22,21,31,4,4,69,77,4496,4791,4715,5617,50,42,32,46,7,4,227,242,171,189,30,31,1,1,3,5,16,11,6,5,177,194,30,33,6,4,4,5,16,11 -050,01,091,Alabama,Marengo County,6,1,1197,555,642,235,301,301,321,3,0,2,2,0,1,14,17,249,318,311,333,5,1,3,6,1,1,529,597,212,261,299,319,3,0,1,2,0,0,14,15,226,276,309,330,5,0,2,6,1,0,26,45,23,40,2,2,0,0,1,0,0,1,0,2,23,42,2,3,0,1,1,0,0,1 -050,01,091,Alabama,Marengo County,6,2,1259,642,617,273,242,352,357,3,3,3,5,3,2,8,8,279,249,357,363,4,4,7,7,3,2,613,595,252,224,350,356,3,3,1,3,0,1,7,8,257,231,355,362,3,4,5,5,0,1,29,22,21,18,2,1,0,0,2,2,3,1,1,0,22,18,2,1,1,0,2,2,3,1 -050,01,091,Alabama,Marengo County,6,3,1354,687,667,305,292,369,359,0,5,2,1,2,4,9,6,313,298,375,364,3,6,3,1,2,4,671,646,294,276,365,357,0,5,2,1,1,1,9,6,302,282,371,362,3,6,3,1,1,1,16,21,11,16,4,2,0,0,0,0,1,3,0,0,11,16,4,2,0,0,0,0,1,3 -050,01,091,Alabama,Marengo County,6,4,1391,704,687,295,276,398,396,0,3,1,2,2,1,8,9,303,284,400,402,4,6,3,3,2,1,686,663,281,256,397,394,0,3,1,1,1,0,6,9,287,264,399,400,2,6,3,2,1,0,18,24,14,20,1,2,0,0,0,1,1,1,2,0,16,20,1,2,2,0,0,1,1,1 -050,01,091,Alabama,Marengo County,6,5,1312,664,648,237,228,415,410,5,0,0,4,2,1,5,5,242,233,417,412,7,3,1,4,2,1,653,629,230,214,412,407,5,0,0,4,1,0,5,4,235,218,414,409,7,2,1,4,1,0,11,19,7,14,3,3,0,0,0,0,1,1,0,1,7,15,3,3,0,1,0,0,1,1 -050,01,091,Alabama,Marengo County,6,6,1078,503,575,221,245,276,327,1,0,1,0,1,0,3,3,223,248,277,329,4,1,1,0,1,0,481,555,205,227,273,325,0,0,1,0,0,0,2,3,206,230,274,327,2,1,1,0,0,0,22,20,16,18,3,2,1,0,0,0,1,0,1,0,17,18,3,2,2,0,0,0,1,0 -050,01,091,Alabama,Marengo County,6,7,1063,479,584,239,233,233,339,2,2,1,2,2,3,2,5,241,238,234,342,2,2,2,4,2,3,454,565,217,219,233,338,2,2,1,1,0,1,1,4,218,223,234,340,2,2,1,3,0,1,25,19,22,14,0,1,0,0,0,1,2,2,1,1,23,15,0,2,0,0,1,1,2,2 -050,01,091,Alabama,Marengo County,6,8,1124,530,594,279,281,248,303,0,4,2,2,0,1,1,3,280,283,248,305,1,6,2,2,0,1,498,570,253,262,242,300,0,4,2,1,0,0,1,3,254,264,242,302,1,6,2,1,0,0,32,24,26,19,6,3,0,0,0,1,0,1,0,0,26,19,6,3,0,0,0,1,0,1 -050,01,091,Alabama,Marengo County,6,9,1259,555,704,274,270,273,418,1,2,3,7,2,1,2,6,275,276,275,422,1,3,3,8,3,1,543,691,265,261,272,416,1,2,3,7,0,0,2,5,266,266,274,420,1,2,3,8,1,0,12,13,9,9,1,2,0,0,0,0,2,1,0,1,9,10,1,2,0,1,0,0,2,1 -050,01,091,Alabama,Marengo County,6,10,1302,613,689,313,314,290,370,2,0,1,3,2,0,5,2,317,316,293,370,5,0,1,5,2,0,605,687,308,313,289,369,2,0,1,3,0,0,5,2,312,315,292,369,5,0,1,5,0,0,8,2,5,1,1,1,0,0,0,0,2,0,0,0,5,1,1,1,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,6,11,1419,655,764,341,354,307,405,0,1,2,3,2,0,3,1,343,355,308,406,2,1,3,3,2,0,647,753,336,345,306,403,0,1,2,3,0,0,3,1,338,346,307,404,2,1,3,3,0,0,8,11,5,9,1,2,0,0,0,0,2,0,0,0,5,9,1,2,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,6,12,1489,713,776,354,311,352,458,0,0,3,2,1,0,3,5,355,316,354,459,2,3,3,3,2,0,704,774,348,310,350,457,0,0,3,2,0,0,3,5,349,315,352,458,2,3,3,3,1,0,9,2,6,1,2,1,0,0,0,0,1,0,0,0,6,1,2,1,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,6,13,1281,624,657,323,331,297,322,0,0,1,1,0,1,3,2,325,333,298,323,3,0,1,2,0,1,621,651,321,328,296,319,0,0,1,1,0,1,3,2,323,330,297,320,3,0,1,2,0,1,3,6,2,3,1,3,0,0,0,0,0,0,0,0,2,3,1,3,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,6,14,1110,514,596,276,322,232,271,3,1,0,0,1,0,2,2,278,324,232,271,4,3,1,0,1,0,510,592,275,322,230,267,3,1,0,0,1,0,1,2,276,324,230,267,3,3,1,0,1,0,4,4,1,0,2,4,0,0,0,0,0,0,1,0,2,0,2,4,1,0,0,0,0,0 -050,01,091,Alabama,Marengo County,6,15,853,394,459,219,286,167,169,1,0,1,2,0,0,6,2,225,288,167,169,7,1,1,3,0,0,392,458,218,286,166,168,1,0,1,2,0,0,6,2,224,288,166,168,7,1,1,3,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,6,16,657,283,374,197,234,84,135,1,2,1,0,0,0,0,3,197,237,84,136,1,4,1,0,0,0,283,369,197,230,84,135,1,1,1,0,0,0,0,3,197,233,84,136,1,3,1,0,0,0,0,5,0,4,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,6,17,503,195,308,131,201,63,105,0,0,0,0,0,0,1,2,132,203,63,106,1,1,0,0,0,0,194,306,130,199,63,105,0,0,0,0,0,0,1,2,131,201,63,106,1,1,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,6,18,472,148,324,96,185,52,138,0,0,0,0,0,0,0,1,96,186,52,138,0,1,0,0,0,0,147,322,95,184,52,137,0,0,0,0,0,0,0,1,95,185,52,137,0,1,0,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,7,0,19990,9377,10613,4600,4835,4619,5614,25,26,25,33,20,15,88,90,4677,4917,4665,5661,61,66,36,45,27,20,9146,10382,4427,4658,4586,5582,23,25,24,31,4,4,82,82,4498,4734,4630,5624,57,61,33,41,11,7,231,231,173,177,33,32,2,1,1,2,16,11,6,8,179,183,35,37,4,5,3,4,16,13 -050,01,091,Alabama,Marengo County,7,1,1184,557,627,238,285,298,323,3,0,1,2,0,0,17,17,253,300,311,336,5,4,2,4,3,0,532,592,215,256,296,320,3,0,1,2,0,0,17,14,230,270,309,330,5,3,2,3,3,0,25,35,23,29,2,3,0,0,0,0,0,0,0,3,23,30,2,6,0,1,0,1,0,0 -050,01,091,Alabama,Marengo County,7,2,1262,629,633,270,247,343,362,3,4,2,4,3,3,8,13,278,260,346,370,4,8,6,5,3,3,603,602,253,221,340,361,2,4,1,3,0,1,7,12,260,233,343,369,3,7,4,4,0,1,26,31,17,26,3,1,1,0,1,1,3,2,1,1,18,27,3,1,1,1,2,1,3,2 -050,01,091,Alabama,Marengo County,7,3,1328,665,663,299,275,352,375,2,4,1,2,2,2,9,5,306,280,359,378,6,5,1,3,2,2,648,642,286,258,349,373,2,4,1,2,1,0,9,5,293,263,356,376,6,5,1,3,1,0,17,21,13,17,3,2,0,0,0,0,1,2,0,0,13,17,3,2,0,0,0,0,1,2 -050,01,091,Alabama,Marengo County,7,4,1298,659,639,286,255,363,371,0,3,1,0,2,3,7,7,292,262,368,374,2,6,2,1,2,3,642,623,273,242,361,370,0,3,1,0,1,1,6,7,278,249,366,373,2,6,1,1,1,1,17,16,13,13,2,1,0,0,0,0,1,2,1,0,14,13,2,1,0,0,1,0,1,2 -050,01,091,Alabama,Marengo County,7,5,1329,662,667,250,248,398,410,4,0,0,3,2,1,8,5,257,252,402,414,6,4,2,3,3,1,646,649,239,233,395,408,4,0,0,3,1,0,7,5,245,237,398,412,6,4,2,3,2,0,16,18,11,15,3,2,0,0,0,0,1,1,1,0,12,15,4,2,0,0,0,0,1,1 -050,01,091,Alabama,Marengo County,7,6,1148,540,608,242,263,286,337,1,0,5,2,1,0,5,6,246,267,290,341,4,4,5,3,1,2,522,591,229,250,283,334,1,0,5,2,0,0,4,5,232,253,286,337,4,3,5,2,0,1,18,17,13,13,3,3,0,0,0,0,1,0,1,1,14,14,4,4,0,1,0,1,1,1 -050,01,091,Alabama,Marengo County,7,7,1014,471,543,245,226,219,307,3,2,0,1,1,2,3,5,248,231,220,310,5,3,0,2,1,2,438,523,215,210,219,305,2,2,0,1,0,1,2,4,217,214,220,308,3,2,0,2,0,1,33,20,30,16,0,2,1,0,0,0,1,1,1,1,31,17,0,2,2,1,0,0,1,1 -050,01,091,Alabama,Marengo County,7,8,1135,542,593,274,266,263,316,0,3,2,2,1,2,2,4,276,269,264,318,0,5,3,3,1,2,518,572,254,252,260,313,0,3,2,1,0,0,2,3,256,254,261,314,0,5,3,2,0,0,24,21,20,14,3,3,0,0,0,1,1,2,0,1,20,15,3,4,0,0,0,1,1,2 -050,01,091,Alabama,Marengo County,7,9,1248,542,706,274,272,255,419,2,3,5,5,2,1,4,6,277,278,256,421,4,5,6,5,3,3,521,691,259,260,251,418,2,3,5,5,0,0,4,5,262,265,252,420,4,5,6,5,1,1,21,15,15,12,4,1,0,0,0,0,2,1,0,1,15,13,4,1,0,0,0,0,2,2 -050,01,091,Alabama,Marengo County,7,10,1253,588,665,292,294,285,363,2,1,0,4,2,0,7,3,299,297,286,364,7,1,1,6,2,0,582,661,288,292,285,361,2,1,0,4,0,0,7,3,295,295,286,362,7,1,1,6,0,0,6,4,4,2,0,2,0,0,0,0,2,0,0,0,4,2,0,2,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,7,11,1370,620,750,335,350,279,393,0,3,2,3,2,0,2,1,337,351,279,393,2,4,2,3,2,0,611,741,330,343,277,391,0,3,2,3,0,0,2,1,332,344,277,391,2,4,2,3,0,0,9,9,5,7,2,2,0,0,0,0,2,0,0,0,5,7,2,2,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,7,12,1498,715,783,347,317,360,461,0,0,3,2,1,0,4,3,350,320,362,462,2,2,3,2,2,0,707,779,344,314,356,460,0,0,3,2,0,0,4,3,347,317,358,461,2,2,3,2,1,0,8,4,3,3,4,1,0,0,0,0,1,0,0,0,3,3,4,1,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,7,13,1280,627,653,326,314,297,333,0,0,1,1,0,1,3,4,329,317,298,334,1,2,1,2,1,2,623,649,323,312,296,331,0,0,1,1,0,1,3,4,326,315,297,332,1,2,1,2,1,2,4,4,3,2,1,2,0,0,0,0,0,0,0,0,3,2,1,2,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,7,14,1142,519,623,270,328,243,292,3,1,0,0,1,0,2,2,272,330,243,292,5,3,0,0,1,0,516,618,270,327,241,288,3,1,0,0,1,0,1,2,271,329,241,288,4,3,0,0,1,0,3,5,0,1,2,4,0,0,0,0,0,0,1,0,1,1,2,4,1,0,0,0,0,0 -050,01,091,Alabama,Marengo County,7,15,879,421,458,235,278,179,177,1,0,1,1,0,0,5,2,238,279,182,178,5,2,1,1,0,0,419,456,234,278,178,175,1,0,1,1,0,0,5,2,237,279,181,176,5,2,1,1,0,0,2,2,1,0,1,2,0,0,0,0,0,0,0,0,1,0,1,2,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,7,16,648,279,369,191,234,85,129,1,2,1,1,0,0,1,3,192,237,85,129,2,5,1,1,0,0,279,364,191,230,85,129,1,1,1,1,0,0,1,3,192,233,85,129,2,4,1,1,0,0,0,5,0,4,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,7,17,499,191,308,129,202,61,103,0,0,0,0,0,0,1,3,130,205,61,104,1,2,0,1,0,0,190,307,128,201,61,103,0,0,0,0,0,0,1,3,129,204,61,104,1,2,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,7,18,475,150,325,97,181,53,143,0,0,0,0,0,0,0,1,97,182,53,143,0,1,0,0,0,0,149,322,96,179,53,142,0,0,0,0,0,0,0,1,96,180,53,142,0,1,0,0,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,8,0,19772,9345,10427,4533,4732,4656,5527,24,24,24,38,20,14,88,92,4612,4813,4699,5580,62,58,36,52,24,18,9122,10213,4363,4572,4628,5495,22,23,23,35,4,4,82,84,4436,4645,4669,5544,56,53,35,48,8,8,223,214,170,160,28,32,2,1,1,3,16,10,6,8,176,168,30,36,6,5,1,4,16,10 -050,01,091,Alabama,Marengo County,8,1,1211,599,612,247,278,334,310,1,0,1,5,0,0,16,19,262,297,348,323,3,1,2,8,0,2,578,588,227,258,333,309,1,0,1,5,0,0,16,16,242,274,347,321,3,0,2,7,0,2,21,24,20,20,1,1,0,0,0,0,0,0,0,3,20,23,1,2,0,1,0,1,0,0 -050,01,091,Alabama,Marengo County,8,2,1258,607,651,257,266,334,368,3,2,3,2,3,2,7,11,264,277,339,375,4,4,3,4,4,3,577,615,235,235,332,366,2,2,2,2,0,0,6,10,241,245,336,372,3,3,2,4,1,1,30,36,22,31,2,2,1,0,1,0,3,2,1,1,23,32,3,3,1,1,1,0,3,2 -050,01,091,Alabama,Marengo County,8,3,1285,668,617,302,250,354,352,2,3,0,4,2,3,8,5,310,254,359,354,3,7,2,4,2,3,656,600,292,238,353,350,2,3,0,3,1,1,8,5,300,242,358,352,3,7,2,3,1,1,12,17,10,12,1,2,0,0,0,1,1,2,0,0,10,12,1,2,0,0,0,1,1,2 -050,01,091,Alabama,Marengo County,8,4,1251,643,608,277,240,352,354,1,4,1,2,2,2,10,6,287,246,358,357,4,5,2,4,2,2,631,593,268,227,351,354,1,4,1,1,1,1,9,6,277,233,357,357,3,5,2,3,1,1,12,15,9,13,1,0,0,0,0,1,1,1,1,0,10,13,1,0,1,0,0,1,1,1 -050,01,091,Alabama,Marengo County,8,5,1306,640,666,241,236,388,419,4,2,0,1,1,1,6,7,247,242,389,424,7,5,2,1,1,1,625,655,229,230,386,415,4,2,0,1,1,0,5,7,234,236,387,420,6,5,2,1,1,0,15,11,12,6,2,4,0,0,0,0,0,1,1,0,13,6,2,4,1,0,0,0,0,1 -050,01,091,Alabama,Marengo County,8,6,1166,569,597,237,267,318,320,1,0,4,4,2,0,7,6,241,273,323,324,5,2,5,4,2,0,552,580,227,254,314,317,1,0,4,4,0,0,6,5,230,259,319,320,4,2,5,4,0,0,17,17,10,13,4,3,0,0,0,0,2,0,1,1,11,14,4,4,1,0,0,0,2,0 -050,01,091,Alabama,Marengo County,8,7,1011,472,539,243,229,223,301,2,0,1,2,1,2,2,5,245,234,223,303,3,1,1,4,2,2,442,518,216,212,223,299,1,0,1,2,0,1,1,4,217,216,223,301,1,0,1,4,1,1,30,21,27,17,0,2,1,0,0,0,1,1,1,1,28,18,0,2,2,1,0,0,1,1 -050,01,091,Alabama,Marengo County,8,8,1113,540,573,264,249,269,315,1,3,2,0,1,1,3,5,267,252,270,318,3,6,2,1,1,1,514,554,239,236,269,311,1,3,2,0,0,0,3,4,242,238,270,314,3,5,2,1,0,0,26,19,25,13,0,4,0,0,0,0,1,1,0,1,25,14,0,4,0,1,0,0,1,1 -050,01,091,Alabama,Marengo County,8,9,1184,527,657,272,250,246,394,1,3,3,5,1,2,4,3,274,253,247,396,3,3,5,6,2,2,507,644,259,242,240,393,1,3,3,4,0,0,4,2,261,244,241,394,3,3,5,5,1,0,20,13,13,8,6,1,0,0,0,1,1,2,0,1,13,9,6,2,0,0,0,1,1,2 -050,01,091,Alabama,Marengo County,8,10,1220,552,668,258,291,281,367,3,1,3,4,2,0,5,5,263,296,282,369,6,3,4,5,2,0,542,659,251,284,280,365,3,1,3,4,0,0,5,5,256,289,281,367,6,3,4,5,0,0,10,9,7,7,1,2,0,0,0,0,2,0,0,0,7,7,1,2,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,8,11,1343,629,714,343,336,279,371,0,1,2,4,2,0,3,2,346,337,279,372,2,3,3,4,2,0,619,708,337,331,277,370,0,1,2,4,0,0,3,2,340,332,277,371,2,3,3,4,0,0,10,6,6,5,2,1,0,0,0,0,2,0,0,0,6,5,2,1,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,8,12,1435,669,766,338,321,324,440,0,2,1,2,1,0,5,1,341,322,326,441,4,2,1,2,2,0,661,759,335,316,320,438,0,2,1,2,0,0,5,1,338,317,322,439,4,2,1,2,1,0,8,7,3,5,4,2,0,0,0,0,1,0,0,0,3,5,4,2,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,8,13,1293,631,662,314,300,314,354,0,0,1,1,1,1,1,6,315,304,314,358,1,4,1,1,1,1,626,662,311,300,313,354,0,0,1,1,0,1,1,6,312,304,313,358,1,4,1,1,0,1,5,0,3,0,1,0,0,0,0,0,1,0,0,0,3,0,1,0,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,8,14,1178,544,634,291,328,246,303,3,1,0,0,1,0,3,2,293,329,247,304,6,3,0,0,1,0,543,627,291,325,245,299,3,1,0,0,1,0,3,2,293,326,246,300,6,3,0,0,1,0,1,7,0,3,1,4,0,0,0,0,0,0,0,0,0,3,1,4,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,8,15,858,406,452,221,268,179,181,1,0,1,1,0,0,4,2,225,269,180,182,4,2,1,1,0,0,403,449,220,268,178,178,1,0,1,1,0,0,3,2,223,269,178,179,4,2,1,1,0,0,3,3,1,0,1,3,0,0,0,0,0,0,1,0,2,0,2,3,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,8,16,679,293,386,191,251,99,130,0,2,0,1,0,0,3,2,194,253,99,130,2,4,1,1,0,0,292,383,191,249,98,130,0,1,0,1,0,0,3,2,194,251,98,130,2,3,1,1,0,0,1,3,0,2,1,0,0,1,0,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,8,17,476,186,290,128,187,55,99,1,0,1,0,0,0,1,4,129,190,55,100,2,2,1,2,0,1,185,287,127,184,55,99,1,0,1,0,0,0,1,4,128,187,55,100,2,2,1,2,0,1,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,8,18,505,170,335,109,185,61,149,0,0,0,0,0,0,0,1,109,185,61,150,0,1,0,0,0,0,169,332,108,183,61,148,0,0,0,0,0,0,0,1,108,183,61,149,0,1,0,0,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,9,0,19536,9235,10301,4449,4654,4621,5484,26,22,27,35,19,15,93,91,4529,4731,4670,5541,68,55,39,51,24,16,9002,10081,4278,4486,4588,5452,23,21,24,35,3,4,86,83,4352,4556,4634,5504,61,50,36,51,6,5,233,220,171,168,33,32,3,1,3,0,16,11,7,8,177,175,36,37,7,5,3,0,18,11 -050,01,091,Alabama,Marengo County,9,1,1179,589,590,238,279,333,290,1,0,4,4,0,0,13,17,250,296,342,306,3,1,7,4,0,0,565,566,220,256,331,290,1,0,1,4,0,0,12,16,231,272,340,305,2,1,4,4,0,0,24,24,18,23,2,0,0,0,3,0,0,0,1,1,19,24,2,1,1,0,3,0,0,0 -050,01,091,Alabama,Marengo County,9,2,1243,599,644,249,264,334,364,3,0,0,3,1,2,12,11,258,273,344,372,7,5,1,4,1,2,567,606,224,233,330,362,2,0,0,3,0,0,11,8,233,240,339,369,5,2,1,4,0,0,32,38,25,31,4,2,1,0,0,0,1,2,1,3,25,33,5,3,2,3,0,0,1,2 -050,01,091,Alabama,Marengo County,9,3,1225,622,603,270,235,334,352,5,5,1,3,3,2,9,6,279,240,340,356,9,8,1,4,3,2,598,587,252,221,332,351,4,5,1,3,0,1,9,6,261,226,338,355,8,8,1,4,0,1,24,16,18,14,2,1,1,0,0,0,3,1,0,0,18,14,2,1,1,0,0,0,3,1 -050,01,091,Alabama,Marengo County,9,4,1225,639,586,267,239,359,333,0,4,3,0,2,3,8,7,274,245,364,337,3,4,3,3,3,4,628,572,259,228,357,332,0,4,3,0,2,1,7,7,265,234,362,336,3,4,3,3,2,2,11,14,8,11,2,1,0,0,0,0,0,2,1,0,9,11,2,1,0,0,0,0,1,2 -050,01,091,Alabama,Marengo County,9,5,1222,602,620,233,225,357,387,3,3,0,0,2,1,7,4,240,228,361,390,6,5,1,0,2,1,591,606,225,215,356,384,3,3,0,0,1,0,6,4,231,218,359,387,5,5,1,0,1,0,11,14,8,10,1,3,0,0,0,0,1,1,1,0,9,10,2,3,1,0,0,0,1,1 -050,01,091,Alabama,Marengo County,9,6,1220,605,615,248,260,341,343,3,0,4,4,1,1,8,7,253,265,344,350,6,0,8,6,2,1,591,600,239,250,338,340,3,0,4,4,0,0,7,6,243,254,341,346,5,0,8,6,1,0,14,15,9,10,3,3,0,0,0,0,1,1,1,1,10,11,3,4,1,0,0,0,1,1 -050,01,091,Alabama,Marengo County,9,7,982,438,544,219,234,214,302,1,0,1,1,1,2,2,5,221,239,215,304,1,1,1,3,2,2,410,522,196,216,212,300,0,0,1,1,0,1,1,4,197,220,213,301,0,1,1,3,0,1,28,22,23,18,2,2,1,0,0,0,1,1,1,1,24,19,2,3,1,0,0,0,2,1 -050,01,091,Alabama,Marengo County,9,8,1090,524,566,257,228,260,328,1,4,1,0,2,1,3,5,260,232,261,329,2,6,2,3,2,1,499,551,234,220,260,322,1,4,1,0,0,0,3,5,237,224,261,323,2,6,2,3,0,0,25,15,23,8,0,6,0,0,0,0,2,1,0,0,23,8,0,6,0,0,0,0,2,1 -050,01,091,Alabama,Marengo County,9,9,1128,527,601,264,247,253,348,1,0,4,2,0,2,5,2,267,249,255,350,4,0,5,2,1,2,504,582,247,232,247,347,1,0,4,2,0,0,5,1,250,233,249,348,4,0,5,2,1,0,23,19,17,15,6,1,0,0,0,0,0,2,0,1,17,16,6,2,0,0,0,0,0,2 -050,01,091,Alabama,Marengo County,9,10,1208,536,672,260,280,267,376,2,2,1,8,3,0,3,6,263,285,268,377,4,5,1,11,3,0,527,661,255,272,266,374,2,2,1,8,0,0,3,5,258,276,267,375,4,4,1,11,0,0,9,11,5,8,1,2,0,0,0,0,3,0,0,1,5,9,1,2,0,1,0,0,3,0 -050,01,091,Alabama,Marengo County,9,11,1318,638,680,342,322,284,351,1,1,3,3,2,0,6,3,348,325,286,352,5,3,3,3,2,0,626,676,334,318,282,351,1,1,3,3,0,0,6,3,340,321,284,352,5,3,3,3,0,0,12,4,8,4,2,0,0,0,0,0,2,0,0,0,8,4,2,0,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,9,12,1421,645,776,331,329,307,443,0,0,2,3,1,0,4,1,333,329,309,444,3,1,2,3,2,0,640,767,329,323,305,440,0,0,2,3,0,0,4,1,331,323,307,441,3,1,2,3,1,0,5,9,2,6,2,3,0,0,0,0,1,0,0,0,2,6,2,3,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,9,13,1326,637,689,314,301,319,381,0,0,1,1,1,1,2,5,316,304,319,384,2,3,1,2,1,1,629,689,310,301,316,381,0,0,1,1,0,1,2,5,312,304,316,384,2,3,1,2,0,1,8,0,4,0,3,0,0,0,0,0,1,0,0,0,4,0,3,0,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,9,14,1208,581,627,319,325,257,300,2,0,0,0,0,0,3,2,322,327,257,301,5,1,0,0,0,0,580,620,319,322,256,296,2,0,0,0,0,0,3,2,322,324,256,297,5,1,0,0,0,0,1,7,0,3,1,4,0,0,0,0,0,0,0,0,0,3,1,4,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,9,15,868,395,473,211,269,178,199,1,1,1,1,0,0,4,3,215,271,179,200,3,4,2,1,0,0,393,470,211,269,177,196,1,1,1,1,0,0,3,3,214,271,177,197,3,4,2,1,0,0,2,3,0,0,1,3,0,0,0,0,0,0,1,0,1,0,2,3,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,9,16,674,300,374,180,245,116,126,1,1,0,1,0,0,3,1,182,246,117,126,4,2,0,1,0,0,298,374,179,245,115,126,1,1,0,1,0,0,3,1,181,246,116,126,4,2,0,1,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,9,17,473,187,286,134,173,50,108,1,1,1,1,0,0,1,3,135,176,51,108,1,4,1,1,0,0,186,281,133,169,50,108,1,0,1,1,0,0,1,3,134,172,51,108,1,3,1,1,0,0,1,5,1,4,0,0,0,1,0,0,0,0,0,0,1,4,0,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,9,18,526,171,355,113,199,58,153,0,0,0,0,0,0,0,3,113,201,58,155,0,2,0,0,0,0,170,351,112,196,58,152,0,0,0,0,0,0,0,3,112,198,58,154,0,2,0,0,0,0,1,4,1,3,0,1,0,0,0,0,0,0,0,0,1,3,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,10,0,19411,9149,10262,4435,4681,4545,5419,28,22,25,32,19,15,97,93,4518,4764,4606,5469,64,59,37,45,23,19,8906,10028,4253,4497,4514,5391,23,21,22,30,3,4,91,85,4331,4573,4573,5436,57,54,31,42,6,8,243,234,182,184,31,28,5,1,3,2,16,11,6,8,187,191,33,33,7,5,6,3,17,11 -050,01,091,Alabama,Marengo County,10,1,1226,611,615,245,281,351,315,0,0,3,5,0,0,12,14,256,293,362,328,1,0,4,7,0,1,582,587,222,255,349,315,0,0,0,3,0,0,11,14,232,267,360,328,1,0,0,5,0,1,29,28,23,26,2,0,0,0,3,2,0,0,1,0,24,26,2,0,0,0,4,2,0,0 -050,01,091,Alabama,Marengo County,10,2,1177,549,628,247,288,285,320,3,0,2,1,0,2,12,17,259,303,296,333,3,4,3,3,0,3,518,585,221,252,281,319,2,0,2,1,0,0,12,13,233,263,292,330,2,2,3,2,0,1,31,43,26,36,4,1,1,0,0,0,0,2,0,4,26,40,4,3,1,2,0,1,0,2 -050,01,091,Alabama,Marengo County,10,3,1217,624,593,275,233,331,346,6,4,1,3,3,2,8,5,282,238,337,348,6,5,3,5,4,2,596,576,254,219,328,344,5,4,1,3,0,1,8,5,261,224,334,346,5,5,3,5,1,1,28,17,21,14,3,2,1,0,0,0,3,1,0,0,21,14,3,2,1,0,0,0,3,1 -050,01,091,Alabama,Marengo County,10,4,1222,635,587,271,238,354,333,0,5,0,1,3,3,7,7,278,245,359,339,2,6,0,1,3,3,626,571,264,225,353,332,0,5,0,1,2,1,7,7,271,232,358,338,2,6,0,1,2,1,9,16,7,13,1,1,0,0,0,0,1,2,0,0,7,13,1,1,0,0,0,0,1,2 -050,01,091,Alabama,Marengo County,10,5,1185,601,584,241,211,346,367,1,2,1,0,1,0,11,4,250,215,354,371,5,2,2,0,2,0,591,576,235,204,345,366,1,2,1,0,0,0,9,4,242,208,352,370,4,2,2,0,0,0,10,8,6,7,1,1,0,0,0,0,1,0,2,0,8,7,2,1,1,0,0,0,2,0 -050,01,091,Alabama,Marengo County,10,6,1201,584,617,243,254,326,349,5,1,2,4,2,2,6,7,246,260,330,351,8,5,4,5,2,3,568,600,231,242,323,347,5,1,2,4,1,0,6,6,234,247,327,349,8,4,4,5,1,1,16,17,12,12,3,2,0,0,0,0,1,2,0,1,12,13,3,2,0,1,0,0,1,2 -050,01,091,Alabama,Marengo County,10,7,1083,484,599,233,267,241,327,1,0,3,0,1,0,5,5,238,271,243,329,3,3,4,0,1,1,461,578,216,249,239,325,0,0,3,0,0,0,3,4,219,252,241,326,1,3,3,0,0,1,23,21,17,18,2,2,1,0,0,0,1,0,2,1,19,19,2,3,2,0,1,0,1,0 -050,01,091,Alabama,Marengo County,10,8,1040,490,550,247,215,237,323,1,4,0,1,2,3,3,4,250,218,238,324,3,7,0,2,2,3,463,538,222,207,237,321,1,4,0,1,0,1,3,4,225,210,238,322,3,7,0,2,0,1,27,12,25,8,0,2,0,0,0,0,2,2,0,0,25,8,0,2,0,0,0,0,2,2 -050,01,091,Alabama,Marengo County,10,9,1093,507,586,254,263,247,318,3,0,2,1,0,2,1,2,254,264,248,320,3,1,2,1,1,2,481,558,236,242,241,314,1,0,2,1,0,0,1,1,236,243,242,315,1,0,2,1,1,0,26,28,18,21,6,4,2,0,0,0,0,2,0,1,18,21,6,5,2,1,0,0,0,2 -050,01,091,Alabama,Marengo County,10,10,1190,535,655,256,262,266,378,2,2,4,6,2,0,5,7,261,269,268,380,5,6,5,7,2,0,522,644,246,254,265,376,2,2,4,6,0,0,5,6,251,260,267,377,5,6,5,7,0,0,13,11,10,8,1,2,0,0,0,0,2,0,0,1,10,9,1,3,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,10,11,1301,629,672,338,324,277,341,1,0,2,4,3,0,8,3,344,327,281,341,6,3,3,4,3,0,619,670,333,322,275,341,1,0,2,4,0,0,8,3,339,325,279,341,6,3,3,4,0,0,10,2,5,2,2,0,0,0,0,0,3,0,0,0,5,2,2,0,0,0,0,0,3,0 -050,01,091,Alabama,Marengo County,10,12,1359,613,746,312,324,293,420,0,1,2,1,1,0,5,0,315,324,296,420,3,1,2,1,2,0,608,736,308,316,293,418,0,1,2,1,0,0,5,0,311,316,296,418,3,1,2,1,1,0,5,10,4,8,0,2,0,0,0,0,1,0,0,0,4,8,0,2,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,10,13,1371,659,712,330,311,325,393,0,0,1,2,1,1,2,5,332,316,326,394,1,2,1,4,1,1,651,710,326,310,322,392,0,0,1,2,0,1,2,5,328,315,323,393,1,2,1,4,0,1,8,2,4,1,3,1,0,0,0,0,1,0,0,0,4,1,3,1,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,10,14,1158,565,593,308,297,253,292,1,0,0,1,0,0,3,3,310,300,254,292,4,2,0,2,0,0,564,587,307,294,253,289,1,0,0,1,0,0,3,3,309,297,254,289,4,2,0,2,0,0,1,6,1,3,0,3,0,0,0,0,0,0,0,0,1,3,0,3,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,10,15,928,413,515,220,284,186,226,2,1,1,1,0,0,4,3,223,286,187,227,4,4,3,1,0,0,410,512,220,284,184,223,2,1,1,1,0,0,3,3,223,286,184,224,4,4,2,1,0,0,3,3,0,0,2,3,0,0,0,0,0,0,1,0,0,0,3,3,0,0,1,0,0,0 -050,01,091,Alabama,Marengo County,10,16,670,298,372,168,248,125,123,1,0,0,0,0,0,4,1,172,248,125,124,5,1,0,0,0,0,296,371,167,248,124,122,1,0,0,0,0,0,4,1,171,248,124,123,5,1,0,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,10,17,484,186,298,131,182,52,111,1,2,1,0,0,0,1,3,132,185,52,111,2,5,1,0,0,0,185,293,130,178,52,111,1,1,1,0,0,0,1,3,131,181,52,111,2,4,1,0,0,0,1,5,1,4,0,0,0,1,0,0,0,0,0,0,1,4,0,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,10,18,506,166,340,116,199,50,137,0,0,0,1,0,0,0,3,116,202,50,137,0,2,0,2,0,0,165,336,115,196,50,136,0,0,0,1,0,0,0,3,115,199,50,136,0,2,0,2,0,0,1,4,1,3,0,1,0,0,0,0,0,0,0,0,1,3,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,11,0,19093,9012,10081,4386,4587,4460,5325,25,21,29,33,19,16,93,99,4470,4676,4509,5383,57,62,47,43,23,19,8760,9844,4198,4401,4427,5299,21,17,24,31,3,5,87,91,4277,4483,4472,5351,51,55,41,41,7,7,252,237,188,186,33,26,4,4,5,2,16,11,6,8,193,193,37,32,6,7,6,2,16,12 -050,01,091,Alabama,Marengo County,11,1,1195,595,600,239,251,337,328,0,2,6,4,0,0,13,15,252,266,345,339,2,3,8,7,1,0,572,575,225,230,334,328,0,0,1,2,0,0,12,15,237,245,342,339,1,1,3,5,1,0,23,25,14,21,3,0,0,2,5,2,0,0,1,0,15,21,3,0,1,2,5,2,0,0 -050,01,091,Alabama,Marengo County,11,2,1147,548,599,233,276,296,302,3,1,2,1,0,1,14,18,246,294,306,316,5,3,5,3,0,2,523,562,212,245,293,302,2,0,2,1,0,0,14,14,225,259,303,312,4,1,5,3,0,1,25,37,21,31,3,0,1,1,0,0,0,1,0,4,21,35,3,4,1,2,0,0,0,1 -050,01,091,Alabama,Marengo County,11,3,1233,625,608,271,240,343,353,3,2,1,3,3,2,4,8,275,248,345,356,4,5,2,5,3,2,591,589,244,223,339,352,3,2,1,3,0,1,4,8,248,231,341,355,4,5,2,5,0,1,34,19,27,17,4,1,0,0,0,0,3,1,0,0,27,17,4,1,0,0,0,0,3,1 -050,01,091,Alabama,Marengo County,11,4,1152,589,563,263,230,318,317,0,4,0,1,2,3,6,8,269,237,322,323,1,6,1,1,2,4,575,545,250,216,318,315,0,4,0,1,1,1,6,8,256,223,322,321,1,6,1,1,1,2,14,18,13,14,0,2,0,0,0,0,1,2,0,0,13,14,0,2,0,0,0,0,1,2 -050,01,091,Alabama,Marengo County,11,5,1108,566,542,230,214,324,320,0,3,1,1,2,1,9,3,239,216,330,322,1,5,3,1,2,1,553,531,221,204,323,320,0,3,1,1,1,0,7,3,228,206,327,322,1,5,3,1,1,0,13,11,9,10,1,0,0,0,0,0,1,1,2,0,11,10,3,0,0,0,0,0,1,1 -050,01,091,Alabama,Marengo County,11,6,1234,606,628,241,261,350,354,6,1,1,3,2,2,6,7,246,267,354,357,8,4,2,5,2,2,592,612,233,250,345,352,6,1,1,3,1,0,6,6,238,255,349,354,8,4,2,5,1,0,14,16,8,11,5,2,0,0,0,0,1,2,0,1,8,12,5,3,0,0,0,0,1,2 -050,01,091,Alabama,Marengo County,11,7,1079,496,583,245,259,243,320,1,0,2,0,1,0,4,4,248,263,247,324,1,0,3,0,1,0,475,564,229,242,241,318,0,0,2,0,0,0,3,4,232,246,244,322,0,0,2,0,0,0,21,19,16,17,2,2,1,0,0,0,1,0,1,0,16,17,3,2,1,0,1,0,1,0 -050,01,091,Alabama,Marengo County,11,8,1007,465,542,227,207,232,324,1,1,0,1,2,3,3,6,230,212,234,326,2,6,0,1,2,3,435,526,200,195,232,323,1,1,0,1,0,1,2,5,202,199,233,324,2,6,0,1,0,1,30,16,27,12,0,1,0,0,0,0,2,2,1,1,28,13,1,2,0,0,0,0,2,2 -050,01,091,Alabama,Marengo County,11,9,1070,498,572,261,269,229,297,3,1,3,1,0,2,2,2,262,271,231,298,3,3,3,1,1,2,468,544,239,248,223,292,1,1,3,1,0,1,2,1,240,249,225,293,1,2,3,1,1,1,30,28,22,21,6,5,2,0,0,0,0,1,0,1,22,22,6,5,2,1,0,0,0,1 -050,01,091,Alabama,Marengo County,11,10,1184,536,648,267,238,256,393,1,2,5,7,2,1,5,7,271,242,258,396,4,9,7,7,2,2,521,634,255,227,255,392,1,2,5,7,0,0,5,6,259,231,257,395,4,8,7,7,0,0,15,14,12,11,1,1,0,0,0,0,2,1,0,1,12,11,1,1,0,1,0,0,2,2 -050,01,091,Alabama,Marengo County,11,11,1239,591,648,319,306,258,336,2,0,2,4,2,0,8,2,326,308,259,337,9,1,3,4,2,0,581,645,312,304,257,335,2,0,2,4,0,0,8,2,319,306,258,336,9,1,3,4,0,0,10,3,7,2,1,1,0,0,0,0,2,0,0,0,7,2,1,1,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,11,12,1316,580,736,313,337,257,395,0,1,3,2,2,0,5,1,316,338,259,395,3,1,4,3,3,0,574,726,310,329,256,393,0,1,3,2,0,0,5,1,313,330,258,393,3,1,4,3,1,0,6,10,3,8,1,2,0,0,0,0,2,0,0,0,3,8,1,2,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,11,13,1359,655,704,322,293,330,404,0,0,0,2,1,0,2,5,324,298,331,406,1,3,0,2,1,0,648,702,318,292,328,403,0,0,0,2,0,0,2,5,320,297,329,405,1,3,0,2,0,0,7,2,4,1,2,1,0,0,0,0,1,0,0,0,4,1,2,1,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,11,14,1161,571,590,299,301,268,285,0,0,1,1,0,1,3,2,301,303,268,286,2,1,2,1,1,1,568,585,297,298,267,283,0,0,1,1,0,1,3,2,299,300,267,284,2,1,2,1,1,1,3,5,2,3,1,2,0,0,0,0,0,0,0,0,2,3,1,2,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,11,15,943,427,516,229,283,193,229,3,1,0,0,0,0,2,3,231,285,193,230,4,4,1,0,0,0,424,512,229,283,191,225,3,1,0,0,0,0,1,3,230,285,191,226,3,4,1,0,0,0,3,4,0,0,2,4,0,0,0,0,0,0,1,0,1,0,2,4,1,0,0,0,0,0 -050,01,091,Alabama,Marengo County,11,16,689,311,378,173,245,130,130,1,0,1,1,0,0,6,2,179,246,131,132,6,1,1,1,0,0,309,377,172,245,129,129,1,0,1,1,0,0,6,2,178,246,130,131,6,1,1,1,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,11,17,476,189,287,139,180,48,102,1,2,1,0,0,0,0,3,139,183,48,103,1,4,1,0,0,0,189,282,139,176,48,102,1,1,1,0,0,0,0,3,139,179,48,103,1,3,1,0,0,0,0,5,0,4,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,11,18,501,164,337,115,197,48,136,0,0,0,1,0,0,1,3,116,199,48,137,0,3,1,1,0,0,162,333,113,194,48,135,0,0,0,1,0,0,1,3,114,196,48,136,0,3,1,1,0,0,2,4,2,3,0,1,0,0,0,0,0,0,0,0,2,3,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,12,0,18919,8920,9999,4321,4506,4435,5327,25,22,28,32,19,16,92,96,4399,4588,4481,5379,63,65,43,47,28,18,8639,9751,4108,4316,4400,5298,20,17,22,29,3,5,86,86,4180,4389,4444,5343,54,56,37,43,12,7,281,248,213,190,35,29,5,5,6,3,16,11,6,10,219,199,37,36,9,9,6,4,16,11 -050,01,091,Alabama,Marengo County,12,1,1160,587,573,227,235,345,318,0,2,6,5,0,0,9,13,235,248,353,328,1,2,7,8,0,0,556,548,203,218,344,316,0,0,1,2,0,0,8,12,210,230,352,325,0,0,2,5,0,0,31,25,24,17,1,2,0,2,5,3,0,0,1,1,25,18,1,3,1,2,5,3,0,0 -050,01,091,Alabama,Marengo County,12,2,1102,534,568,228,255,289,299,1,1,2,0,0,0,14,13,241,267,300,310,4,2,2,2,1,0,506,537,205,230,284,299,1,0,2,0,0,0,14,8,218,238,295,306,4,0,2,1,1,0,28,31,23,25,5,0,0,1,0,0,0,0,0,5,23,29,5,4,0,2,0,1,0,0 -050,01,091,Alabama,Marengo County,12,3,1249,626,623,271,249,345,353,3,2,1,4,3,3,3,12,274,259,348,361,3,8,1,4,3,4,593,591,246,222,341,351,2,2,1,4,0,1,3,11,249,231,344,359,2,7,1,4,0,2,33,32,25,27,4,2,1,0,0,0,3,2,0,1,25,28,4,2,1,1,0,0,3,2 -050,01,091,Alabama,Marengo County,12,4,1160,596,564,266,218,317,335,3,3,0,1,2,2,8,5,273,222,322,338,6,6,0,1,3,2,581,546,255,204,315,333,2,3,0,1,1,0,8,5,262,208,320,336,5,6,0,1,2,0,15,18,11,14,2,2,1,0,0,0,1,2,0,0,11,14,2,2,1,0,0,0,1,2 -050,01,091,Alabama,Marengo County,12,5,1072,544,528,223,200,310,315,0,3,1,2,2,2,8,6,229,205,313,318,5,4,3,5,2,2,532,518,213,191,310,315,0,3,1,2,1,1,7,6,218,196,313,318,4,4,3,5,1,1,12,10,10,9,0,0,0,0,0,0,1,1,1,0,11,9,0,0,1,0,0,0,1,1 -050,01,091,Alabama,Marengo County,12,6,1227,603,624,242,246,344,368,5,2,2,2,2,2,8,4,248,249,349,371,10,3,3,3,2,2,583,608,231,233,338,367,5,2,1,2,1,0,7,4,236,236,342,370,10,3,2,3,1,0,20,16,11,13,6,1,0,0,1,0,1,2,1,0,12,13,7,1,0,0,1,0,1,2 -050,01,091,Alabama,Marengo County,12,7,1105,521,584,243,255,271,321,0,0,3,2,1,0,3,6,246,260,273,325,1,3,3,2,1,0,501,565,227,239,269,319,0,0,3,2,0,0,2,5,229,243,270,323,1,2,3,2,0,0,20,19,16,16,2,2,0,0,0,0,1,0,1,1,17,17,3,2,0,1,0,0,1,0 -050,01,091,Alabama,Marengo County,12,8,987,451,536,225,222,220,304,2,1,0,1,1,2,3,6,227,227,222,306,4,6,0,1,1,2,421,515,198,205,220,302,1,1,0,1,0,1,2,5,199,209,222,303,2,6,0,1,0,1,30,21,27,17,0,2,1,0,0,0,1,1,1,1,28,18,0,3,2,0,0,0,1,1 -050,01,091,Alabama,Marengo County,12,9,1064,504,560,248,248,248,305,2,1,2,1,1,3,3,2,250,250,249,305,3,3,3,1,2,3,475,538,225,233,245,300,0,1,2,1,0,1,3,2,227,235,246,300,1,3,3,1,1,1,29,22,23,15,3,5,2,0,0,0,1,2,0,0,23,15,3,5,2,0,0,0,1,2 -050,01,091,Alabama,Marengo County,12,10,1169,519,650,265,245,240,396,2,1,5,1,2,1,5,6,270,250,241,397,5,3,6,5,2,2,495,633,247,230,236,396,2,1,5,1,0,0,5,5,252,234,237,396,5,2,6,5,0,1,24,17,18,15,4,0,0,0,0,0,2,1,0,1,18,16,4,1,0,1,0,0,2,1 -050,01,091,Alabama,Marengo County,12,11,1198,567,631,299,281,255,340,2,1,1,5,2,0,8,4,305,285,257,341,7,4,2,5,4,0,557,627,291,279,255,338,2,1,1,5,0,0,8,4,297,283,257,339,7,4,2,5,2,0,10,4,8,2,0,2,0,0,0,0,2,0,0,0,8,2,0,2,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,12,12,1253,553,700,307,338,237,356,0,2,2,3,2,0,5,1,311,339,239,356,1,3,4,3,3,0,542,690,300,331,235,354,0,1,2,3,0,0,5,1,304,332,237,354,1,2,4,3,1,0,11,10,7,7,2,2,0,1,0,0,2,0,0,0,7,7,2,2,0,1,0,0,2,0 -050,01,091,Alabama,Marengo County,12,13,1355,644,711,321,292,319,414,0,0,0,2,1,0,3,3,324,295,319,414,1,2,2,3,1,0,638,707,318,289,317,413,0,0,0,2,0,0,3,3,321,292,317,413,1,2,2,3,0,0,6,4,3,3,2,1,0,0,0,0,1,0,0,0,3,3,2,1,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,12,14,1155,563,592,297,301,262,285,0,0,1,1,0,1,3,4,300,303,262,288,2,3,2,1,0,1,559,589,294,299,261,284,0,0,1,1,0,1,3,4,297,301,261,287,2,3,2,1,0,1,4,3,3,2,1,1,0,0,0,0,0,0,0,0,3,2,1,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,12,15,993,442,551,235,295,202,253,3,1,0,0,0,0,2,2,237,297,202,253,5,3,0,0,0,0,439,546,235,294,200,249,3,1,0,0,0,0,1,2,236,296,200,249,4,3,0,0,0,0,3,5,0,1,2,4,0,0,0,0,0,0,1,0,1,1,2,4,1,0,0,0,0,0 -050,01,091,Alabama,Marengo County,12,16,705,324,381,188,238,129,140,1,0,1,1,0,0,5,2,192,239,129,141,4,2,3,1,1,0,321,379,186,238,128,138,1,0,1,1,0,0,5,2,190,239,128,139,4,2,3,1,1,0,3,2,2,0,1,2,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,12,17,462,179,283,123,184,53,94,1,2,1,0,0,0,1,3,123,186,54,95,1,5,1,0,1,0,179,278,123,180,53,94,1,1,1,0,0,0,1,3,123,182,54,95,1,4,1,0,1,0,0,5,0,4,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,12,18,503,163,340,113,204,49,131,0,0,0,1,0,0,1,4,114,207,49,132,0,3,1,2,1,0,161,336,111,201,49,130,0,0,0,1,0,0,1,4,112,204,49,131,0,3,1,2,1,0,2,4,2,3,0,1,0,0,0,0,0,0,0,0,2,3,0,1,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,13,0,18733,8794,9939,4246,4453,4378,5314,25,22,29,35,19,15,97,100,4329,4536,4432,5368,71,68,38,52,24,19,8498,9708,4020,4281,4341,5285,20,17,24,32,3,5,90,88,4098,4354,4393,5330,60,59,33,48,7,7,296,231,226,172,37,29,5,5,5,3,16,10,7,12,231,182,39,38,11,9,5,4,17,12 -050,01,091,Alabama,Marengo County,13,1,1101,557,544,223,223,316,301,0,2,6,4,0,0,12,14,234,235,324,312,3,5,9,5,0,1,524,527,197,216,315,299,0,0,1,1,0,0,11,11,208,227,322,307,2,2,4,2,0,0,33,17,26,7,1,2,0,2,5,3,0,0,1,3,26,8,2,5,1,3,5,3,0,1 -050,01,091,Alabama,Marengo County,13,2,1121,570,551,235,241,319,295,1,1,2,1,0,0,13,13,248,254,330,302,2,6,3,2,0,2,546,524,215,220,315,295,1,0,2,1,0,0,13,8,228,228,326,299,2,3,3,1,0,1,24,27,20,21,4,0,0,1,0,0,0,0,0,5,20,26,4,3,0,3,0,1,0,1 -050,01,091,Alabama,Marengo County,13,3,1220,588,632,253,259,320,356,3,1,1,3,3,2,8,11,260,268,326,364,6,6,1,4,3,2,554,597,227,229,316,354,2,1,1,3,0,0,8,10,234,237,322,361,5,6,1,4,0,0,34,35,26,30,4,2,1,0,0,0,3,2,0,1,26,31,4,3,1,0,0,0,3,2 -050,01,091,Alabama,Marengo County,13,4,1128,583,545,259,212,314,318,2,2,0,3,2,3,6,7,265,219,317,325,5,3,0,3,2,3,567,529,247,200,311,316,2,2,0,3,1,1,6,7,253,207,314,323,5,3,0,3,1,1,16,16,12,12,3,2,0,0,0,0,1,2,0,0,12,12,3,2,0,0,0,0,1,2 -050,01,091,Alabama,Marengo County,13,5,1042,528,514,223,200,292,299,1,4,0,2,2,2,10,7,232,207,297,303,6,6,2,3,2,2,511,500,210,187,292,299,0,4,0,2,1,1,8,7,217,194,297,303,3,6,2,3,1,1,17,14,13,13,0,0,1,0,0,0,1,1,2,0,15,13,0,0,3,0,0,0,1,1 -050,01,091,Alabama,Marengo County,13,6,1226,578,648,242,244,320,394,5,3,3,3,1,1,7,3,246,247,324,395,9,4,4,4,2,1,560,637,230,235,315,393,5,3,3,3,1,0,6,3,233,238,318,394,9,4,4,4,2,0,18,11,12,9,5,1,0,0,0,0,0,1,1,0,13,9,6,1,0,0,0,0,0,1 -050,01,091,Alabama,Marengo County,13,7,1091,533,558,237,242,284,307,0,0,3,3,2,0,7,6,244,246,287,311,4,2,3,5,2,0,511,541,221,228,281,305,0,0,3,3,0,0,6,5,227,231,284,308,3,2,3,5,0,0,22,17,16,14,3,2,0,0,0,0,2,0,1,1,17,15,3,3,1,0,0,0,2,0 -050,01,091,Alabama,Marengo County,13,8,987,451,536,223,231,223,296,1,0,1,1,1,2,2,6,224,235,224,298,2,2,1,4,2,3,421,517,196,216,223,294,0,0,1,1,0,1,1,5,197,219,224,295,0,2,1,4,0,2,30,19,27,15,0,2,1,0,0,0,1,1,1,1,27,16,0,3,2,0,0,0,2,1 -050,01,091,Alabama,Marengo County,13,9,1054,500,554,247,242,244,306,3,2,2,0,1,1,3,3,249,244,246,307,4,5,2,0,2,1,467,536,217,230,244,301,1,2,2,0,0,0,3,3,219,232,246,302,2,5,2,0,1,0,33,18,30,12,0,5,2,0,0,0,1,1,0,0,30,12,0,5,2,0,0,0,1,1 -050,01,091,Alabama,Marengo County,13,10,1149,515,634,263,239,245,385,1,1,5,2,1,3,0,4,263,241,245,387,1,4,5,3,1,3,491,619,246,227,239,385,1,1,5,2,0,1,0,3,246,228,239,387,1,3,5,3,0,1,24,15,17,12,6,0,0,0,0,0,1,2,0,1,17,13,6,0,0,1,0,0,1,2 -050,01,091,Alabama,Marengo County,13,11,1188,533,655,263,294,258,351,3,1,1,4,2,0,6,5,267,299,262,352,7,2,1,7,2,0,520,646,253,287,257,349,3,1,1,4,0,0,6,5,257,292,261,350,7,2,1,7,0,0,13,9,10,7,1,2,0,0,0,0,2,0,0,0,10,7,1,2,0,0,0,0,2,0 -050,01,091,Alabama,Marengo County,13,12,1261,570,691,319,329,240,354,0,2,2,4,2,0,7,2,324,330,244,355,3,3,3,5,3,0,559,684,312,324,238,353,0,1,2,4,0,0,7,2,317,325,242,354,3,2,3,5,1,0,11,7,7,5,2,1,0,1,0,0,2,0,0,0,7,5,2,1,0,1,0,0,2,0 -050,01,091,Alabama,Marengo County,13,13,1299,593,706,299,293,289,410,0,0,0,2,1,0,4,1,303,294,289,410,4,1,0,2,1,0,586,699,297,288,285,408,0,0,0,2,0,0,4,1,301,289,285,408,4,1,0,2,0,0,7,7,2,5,4,2,0,0,0,0,1,0,0,0,2,5,4,2,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,13,14,1182,577,605,302,293,272,303,0,0,1,1,1,1,1,7,302,300,273,303,1,5,1,3,1,1,571,605,298,293,271,303,0,0,1,1,0,1,1,7,298,300,272,303,1,5,1,3,0,1,6,0,4,0,1,0,0,0,0,0,1,0,0,0,4,0,1,0,0,0,0,0,1,0 -050,01,091,Alabama,Marengo County,13,15,1030,466,564,257,292,203,269,3,1,0,0,0,0,3,2,260,293,203,270,5,3,1,0,0,0,465,557,257,289,202,265,3,1,0,0,0,0,3,2,260,290,202,266,5,3,1,0,0,0,1,7,0,3,1,4,0,0,0,0,0,0,0,0,0,3,1,4,0,0,0,0,0,0 -050,01,091,Alabama,Marengo County,13,16,683,300,383,170,228,124,152,1,0,1,1,0,0,4,2,174,229,124,153,5,2,1,1,0,0,297,380,169,228,123,149,1,0,1,1,0,0,3,2,172,229,123,150,4,2,1,1,0,0,3,3,1,0,1,3,0,0,0,0,0,0,1,0,2,0,1,3,1,0,0,0,0,0 -050,01,091,Alabama,Marengo County,13,17,470,188,282,121,190,64,88,0,2,0,0,0,0,3,2,123,191,66,89,2,4,0,0,1,0,186,279,120,188,63,88,0,1,0,0,0,0,3,2,122,189,65,89,2,3,0,0,1,0,2,3,1,2,1,0,0,1,0,0,0,0,0,0,1,2,1,0,0,1,0,0,0,0 -050,01,091,Alabama,Marengo County,13,18,501,164,337,110,201,51,130,1,0,1,1,0,0,1,5,111,204,51,132,2,5,1,1,0,0,162,331,108,196,51,129,1,0,1,1,0,0,1,5,109,199,51,131,2,5,1,1,0,0,2,6,2,5,0,1,0,0,0,0,0,0,0,0,2,5,0,1,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,1,0,30776,15293,15483,14339,14768,728,466,54,49,19,38,7,10,146,152,14483,14916,780,524,137,130,32,52,14,19,14949,15195,14021,14515,721,462,50,44,17,36,3,4,137,134,14156,14646,772,515,131,118,27,44,4,8,344,288,318,253,7,4,4,5,2,2,4,6,9,18,327,270,8,9,6,12,5,8,10,11 -050,01,093,Alabama,Marion County,1,1,1712,903,809,839,754,38,23,1,0,1,0,1,2,23,30,862,782,57,46,4,6,3,2,2,4,861,770,802,723,37,23,1,0,0,0,0,0,21,24,823,746,56,44,3,2,1,1,0,1,42,39,37,31,1,0,0,0,1,0,1,2,2,6,39,36,1,2,1,4,2,1,2,3 -050,01,093,Alabama,Marion County,1,2,1818,977,841,934,783,28,33,0,3,0,2,0,1,15,19,949,802,37,48,5,5,0,3,1,2,932,801,892,750,28,31,0,3,0,2,0,1,12,14,904,764,36,45,4,3,0,2,0,1,45,40,42,33,0,2,0,0,0,0,0,0,3,5,45,38,1,3,1,2,0,1,1,1 -050,01,093,Alabama,Marion County,1,3,1947,1040,907,962,862,51,28,3,5,2,1,1,2,21,9,983,871,61,35,12,6,2,2,3,2,1001,866,926,823,51,28,2,4,2,1,1,2,19,8,945,831,61,35,11,5,2,1,1,2,39,41,36,39,0,0,1,1,0,0,0,0,2,1,38,40,0,0,1,1,0,1,2,0 -050,01,093,Alabama,Marion County,1,4,1917,984,933,942,885,26,35,4,5,1,0,0,0,11,8,953,893,29,40,11,8,2,0,0,0,966,911,924,865,26,35,4,3,1,0,0,0,11,8,935,873,29,40,11,6,2,0,0,0,18,22,18,20,0,0,0,2,0,0,0,0,0,0,18,20,0,0,0,2,0,0,0,0 -050,01,093,Alabama,Marion County,1,5,1626,780,846,717,802,43,31,8,5,1,1,0,1,11,6,728,808,46,34,16,7,2,2,0,2,765,824,703,784,43,31,7,5,1,0,0,0,11,4,714,788,46,33,15,7,2,0,0,0,15,22,14,18,0,0,1,0,0,1,0,1,0,2,14,20,0,1,1,0,0,2,0,2 -050,01,093,Alabama,Marion County,1,6,1590,811,779,734,745,65,22,2,0,4,6,2,1,4,5,738,749,68,23,3,4,4,6,2,2,771,760,696,729,65,21,2,0,3,5,1,0,4,5,700,733,68,22,3,4,3,5,1,1,40,19,38,16,0,1,0,0,1,1,1,1,0,0,38,16,0,1,0,0,1,1,1,1 -050,01,093,Alabama,Marion County,1,7,1656,834,822,763,780,68,32,2,3,0,2,0,1,1,4,764,784,68,33,3,5,0,3,0,1,796,794,731,754,63,31,1,3,0,2,0,1,1,3,732,757,63,31,2,5,0,3,0,1,38,28,32,26,5,1,1,0,0,0,0,0,0,1,32,27,5,2,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,1,8,2008,1030,978,953,930,69,35,0,0,2,4,1,1,5,8,958,938,70,36,3,6,3,5,1,2,1000,960,923,914,69,35,0,0,2,4,1,0,5,7,928,921,70,36,3,6,3,4,1,0,30,18,30,16,0,0,0,0,0,0,0,1,0,1,30,17,0,0,0,0,0,1,0,2 -050,01,093,Alabama,Marion County,1,9,2125,1063,1062,980,1008,68,37,5,4,3,4,0,0,7,9,987,1017,68,37,11,11,4,5,0,1,1045,1051,962,998,68,37,5,3,3,4,0,0,7,9,969,1007,68,37,11,10,4,5,0,1,18,11,18,10,0,0,0,1,0,0,0,0,0,0,18,10,0,0,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,1,10,2285,1196,1089,1106,1043,71,29,5,4,2,4,0,0,12,9,1118,1052,71,29,16,13,3,4,0,0,1178,1076,1089,1030,71,29,4,4,2,4,0,0,12,9,1101,1039,71,29,15,13,3,4,0,0,18,13,17,13,0,0,1,0,0,0,0,0,0,0,17,13,0,0,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,1,11,2237,1112,1125,1041,1067,60,37,2,6,2,6,1,0,6,9,1046,1076,61,37,8,14,2,8,1,0,1101,1112,1031,1054,60,37,2,6,2,6,0,0,6,9,1036,1063,61,37,8,14,2,8,0,0,11,13,10,13,0,0,0,0,0,0,1,0,0,0,10,13,0,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,1,12,2072,1047,1025,988,988,45,29,7,1,1,2,0,0,6,5,993,992,46,31,11,5,3,3,0,0,1038,1017,980,980,44,29,7,1,1,2,0,0,6,5,985,984,45,31,11,5,3,3,0,0,9,8,8,8,1,0,0,0,0,0,0,0,0,0,8,8,1,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,1,13,2138,1058,1080,1021,1038,30,28,2,3,0,3,0,0,5,8,1026,1046,32,28,7,10,0,4,0,1,1051,1077,1014,1037,30,28,2,3,0,3,0,0,5,6,1019,1043,32,28,7,9,0,3,0,0,7,3,7,1,0,0,0,0,0,0,0,0,0,2,7,3,0,0,0,1,0,1,0,1 -050,01,093,Alabama,Marion County,1,14,1796,869,927,826,891,26,20,6,7,0,1,0,1,11,7,837,898,26,20,12,14,4,1,3,1,861,921,820,887,26,20,6,6,0,1,0,0,9,7,829,894,26,20,12,13,2,1,1,0,8,6,6,4,0,0,0,1,0,0,0,1,2,0,8,4,0,0,0,1,2,0,2,1 -050,01,093,Alabama,Marion County,1,15,1493,692,801,668,771,14,19,5,3,0,2,1,0,4,6,672,777,14,19,9,8,0,2,1,1,688,801,665,771,14,19,5,3,0,2,0,0,4,6,669,777,14,19,9,8,0,2,0,1,4,0,3,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,1,16,972,423,549,408,535,12,10,0,0,0,0,0,0,3,4,411,539,12,10,3,4,0,0,0,0,423,545,408,531,12,10,0,0,0,0,0,0,3,4,411,535,12,10,3,4,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,1,17,745,292,453,284,444,7,6,1,0,0,0,0,0,0,3,284,447,7,6,1,1,0,2,0,0,291,452,283,443,7,6,1,0,0,0,0,0,0,3,283,446,7,6,1,1,0,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,1,18,639,182,457,173,442,7,12,1,0,0,0,0,0,1,3,174,445,7,12,2,3,0,0,0,0,181,457,172,442,7,12,1,0,0,0,0,0,1,3,173,445,7,12,2,3,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,2,0,30780,15295,15485,14341,14770,728,466,54,49,19,38,7,10,146,152,14485,14918,780,524,137,130,32,52,14,19,14951,15197,14023,14517,721,462,50,44,17,36,3,4,137,134,14158,14648,772,515,131,118,27,44,4,8,344,288,318,253,7,4,4,5,2,2,4,6,9,18,327,270,8,9,6,12,5,8,10,11 -050,01,093,Alabama,Marion County,2,1,1712,903,809,839,754,38,23,1,0,1,0,1,2,23,30,862,782,57,46,4,6,3,2,2,4,861,770,802,723,37,23,1,0,0,0,0,0,21,24,823,746,56,44,3,2,1,1,0,1,42,39,37,31,1,0,0,0,1,0,1,2,2,6,39,36,1,2,1,4,2,1,2,3 -050,01,093,Alabama,Marion County,2,2,1819,978,841,935,783,28,33,0,3,0,2,0,1,15,19,950,802,37,48,5,5,0,3,1,2,933,801,893,750,28,31,0,3,0,2,0,1,12,14,905,764,36,45,4,3,0,2,0,1,45,40,42,33,0,2,0,0,0,0,0,0,3,5,45,38,1,3,1,2,0,1,1,1 -050,01,093,Alabama,Marion County,2,3,1947,1040,907,962,862,51,28,3,5,2,1,1,2,21,9,983,871,61,35,12,6,2,2,3,2,1001,866,926,823,51,28,2,4,2,1,1,2,19,8,945,831,61,35,11,5,2,1,1,2,39,41,36,39,0,0,1,1,0,0,0,0,2,1,38,40,0,0,1,1,0,1,2,0 -050,01,093,Alabama,Marion County,2,4,1917,984,933,942,885,26,35,4,5,1,0,0,0,11,8,953,893,29,40,11,8,2,0,0,0,966,911,924,865,26,35,4,3,1,0,0,0,11,8,935,873,29,40,11,6,2,0,0,0,18,22,18,20,0,0,0,2,0,0,0,0,0,0,18,20,0,0,0,2,0,0,0,0 -050,01,093,Alabama,Marion County,2,5,1626,780,846,717,802,43,31,8,5,1,1,0,1,11,6,728,808,46,34,16,7,2,2,0,2,765,824,703,784,43,31,7,5,1,0,0,0,11,4,714,788,46,33,15,7,2,0,0,0,15,22,14,18,0,0,1,0,0,1,0,1,0,2,14,20,0,1,1,0,0,2,0,2 -050,01,093,Alabama,Marion County,2,6,1589,810,779,733,745,65,22,2,0,4,6,2,1,4,5,737,749,68,23,3,4,4,6,2,2,770,760,695,729,65,21,2,0,3,5,1,0,4,5,699,733,68,22,3,4,3,5,1,1,40,19,38,16,0,1,0,0,1,1,1,1,0,0,38,16,0,1,0,0,1,1,1,1 -050,01,093,Alabama,Marion County,2,7,1657,834,823,763,781,68,32,2,3,0,2,0,1,1,4,764,785,68,33,3,5,0,3,0,1,796,795,731,755,63,31,1,3,0,2,0,1,1,3,732,758,63,31,2,5,0,3,0,1,38,28,32,26,5,1,1,0,0,0,0,0,0,1,32,27,5,2,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,2,8,2008,1030,978,953,930,69,35,0,0,2,4,1,1,5,8,958,938,70,36,3,6,3,5,1,2,1000,960,923,914,69,35,0,0,2,4,1,0,5,7,928,921,70,36,3,6,3,4,1,0,30,18,30,16,0,0,0,0,0,0,0,1,0,1,30,17,0,0,0,0,0,1,0,2 -050,01,093,Alabama,Marion County,2,9,2125,1063,1062,980,1008,68,37,5,4,3,4,0,0,7,9,987,1017,68,37,11,11,4,5,0,1,1045,1051,962,998,68,37,5,3,3,4,0,0,7,9,969,1007,68,37,11,10,4,5,0,1,18,11,18,10,0,0,0,1,0,0,0,0,0,0,18,10,0,0,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,2,10,2285,1196,1089,1106,1043,71,29,5,4,2,4,0,0,12,9,1118,1052,71,29,16,13,3,4,0,0,1178,1076,1089,1030,71,29,4,4,2,4,0,0,12,9,1101,1039,71,29,15,13,3,4,0,0,18,13,17,13,0,0,1,0,0,0,0,0,0,0,17,13,0,0,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,2,11,2238,1112,1126,1041,1068,60,37,2,6,2,6,1,0,6,9,1046,1077,61,37,8,14,2,8,1,0,1101,1113,1031,1055,60,37,2,6,2,6,0,0,6,9,1036,1064,61,37,8,14,2,8,0,0,11,13,10,13,0,0,0,0,0,0,1,0,0,0,10,13,0,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,2,12,2074,1049,1025,990,988,45,29,7,1,1,2,0,0,6,5,995,992,46,31,11,5,3,3,0,0,1040,1017,982,980,44,29,7,1,1,2,0,0,6,5,987,984,45,31,11,5,3,3,0,0,9,8,8,8,1,0,0,0,0,0,0,0,0,0,8,8,1,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,2,13,2138,1058,1080,1021,1038,30,28,2,3,0,3,0,0,5,8,1026,1046,32,28,7,10,0,4,0,1,1051,1077,1014,1037,30,28,2,3,0,3,0,0,5,6,1019,1043,32,28,7,9,0,3,0,0,7,3,7,1,0,0,0,0,0,0,0,0,0,2,7,3,0,0,0,1,0,1,0,1 -050,01,093,Alabama,Marion County,2,14,1796,869,927,826,891,26,20,6,7,0,1,0,1,11,7,837,898,26,20,12,14,4,1,3,1,861,921,820,887,26,20,6,6,0,1,0,0,9,7,829,894,26,20,12,13,2,1,1,0,8,6,6,4,0,0,0,1,0,0,0,1,2,0,8,4,0,0,0,1,2,0,2,1 -050,01,093,Alabama,Marion County,2,15,1493,692,801,668,771,14,19,5,3,0,2,1,0,4,6,672,777,14,19,9,8,0,2,1,1,688,801,665,771,14,19,5,3,0,2,0,0,4,6,669,777,14,19,9,8,0,2,0,1,4,0,3,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,2,16,972,423,549,408,535,12,10,0,0,0,0,0,0,3,4,411,539,12,10,3,4,0,0,0,0,423,545,408,531,12,10,0,0,0,0,0,0,3,4,411,535,12,10,3,4,0,0,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,2,17,745,292,453,284,444,7,6,1,0,0,0,0,0,0,3,284,447,7,6,1,1,0,2,0,0,291,452,283,443,7,6,1,0,0,0,0,0,0,3,283,446,7,6,1,1,0,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,2,18,639,182,457,173,442,7,12,1,0,0,0,0,0,1,3,174,445,7,12,2,3,0,0,0,0,181,457,172,442,7,12,1,0,0,0,0,0,1,3,173,445,7,12,2,3,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,3,0,30822,15300,15522,14351,14796,727,467,51,53,20,39,7,10,144,157,14487,14938,785,535,128,140,33,53,14,13,14956,15226,14033,14537,720,463,47,47,18,37,3,4,135,138,14161,14662,774,521,119,126,30,48,10,7,344,296,318,259,7,4,4,6,2,2,4,6,9,19,326,276,11,14,9,14,3,5,4,6 -050,01,093,Alabama,Marion County,3,1,1711,903,808,840,751,36,23,1,0,1,0,1,2,24,32,863,781,53,46,6,9,3,1,2,3,862,768,804,719,35,23,1,0,0,0,0,0,22,26,825,743,51,44,5,6,2,0,1,1,41,40,36,32,1,0,0,0,1,0,1,2,2,6,38,38,2,2,1,3,1,1,1,2 -050,01,093,Alabama,Marion County,3,2,1812,968,844,928,786,25,32,0,4,0,2,0,1,15,19,942,803,33,44,4,11,3,3,1,2,924,804,887,753,25,30,0,4,0,2,0,1,12,14,898,766,32,39,2,9,3,2,1,2,44,40,41,33,0,2,0,0,0,0,0,0,3,5,44,37,1,5,2,2,0,1,0,0 -050,01,093,Alabama,Marion County,3,3,1953,1040,913,963,867,51,27,3,6,2,1,1,2,20,10,983,877,61,32,12,11,3,1,2,2,1002,870,928,827,51,27,2,5,2,1,1,2,18,8,946,835,61,32,9,8,3,1,2,2,38,43,35,40,0,0,1,1,0,0,0,0,2,2,37,42,0,0,3,3,0,0,0,0 -050,01,093,Alabama,Marion County,3,4,1897,978,919,934,869,30,36,4,7,1,0,0,0,9,7,942,876,34,37,9,10,2,3,0,0,959,896,915,849,30,36,4,4,1,0,0,0,9,7,923,856,34,37,9,7,2,3,0,0,19,23,19,20,0,0,0,3,0,0,0,0,0,0,19,20,0,0,0,3,0,0,0,0 -050,01,093,Alabama,Marion County,3,5,1660,799,861,735,817,43,29,7,5,1,1,0,1,13,8,748,823,48,36,12,7,3,2,1,1,784,840,721,800,43,29,6,5,1,0,0,0,13,6,734,804,48,35,11,7,3,0,1,0,15,21,14,17,0,0,1,0,0,1,0,1,0,2,14,19,0,1,1,0,0,2,0,1 -050,01,093,Alabama,Marion County,3,6,1580,806,774,730,740,64,22,2,0,4,6,2,1,4,5,734,745,66,24,5,2,4,7,2,1,766,756,692,725,64,21,2,0,3,5,1,0,4,5,696,730,66,23,5,2,3,6,1,0,40,18,38,15,0,1,0,0,1,1,1,1,0,0,38,15,0,1,0,0,1,1,1,1 -050,01,093,Alabama,Marion County,3,7,1672,841,831,769,789,69,32,2,3,0,2,0,1,1,4,770,793,69,35,2,4,1,2,0,1,802,802,736,762,64,31,1,3,0,2,0,1,1,3,737,765,64,33,1,4,1,2,0,1,39,29,33,27,5,1,1,0,0,0,0,0,0,1,33,28,5,2,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,3,8,1982,1008,974,932,926,68,35,0,0,2,4,1,1,5,8,937,933,68,38,4,5,3,5,1,1,978,953,902,907,68,35,0,0,2,4,1,0,5,7,907,913,68,37,4,5,3,5,1,0,30,21,30,19,0,0,0,0,0,0,0,1,0,1,30,20,0,1,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,3,9,2122,1067,1055,984,1002,69,37,5,4,3,4,0,0,6,8,990,1009,69,39,11,10,3,5,0,0,1049,1043,966,991,69,37,5,3,3,4,0,0,6,8,972,998,69,39,11,9,3,5,0,0,18,12,18,11,0,0,0,1,0,0,0,0,0,0,18,11,0,0,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,3,10,2300,1200,1100,1110,1052,71,30,4,4,3,5,0,0,12,9,1121,1060,73,31,14,13,4,5,0,0,1183,1087,1094,1039,71,30,3,4,3,5,0,0,12,9,1105,1047,73,31,13,13,4,5,0,0,17,13,16,13,0,0,1,0,0,0,0,0,0,0,16,13,0,0,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,3,11,2247,1114,1133,1044,1075,58,38,3,5,2,6,1,0,6,9,1050,1084,60,38,7,14,2,6,1,0,1103,1120,1034,1062,58,38,3,5,2,6,0,0,6,9,1040,1071,60,38,7,14,2,6,0,0,11,13,10,13,0,0,0,0,0,0,1,0,0,0,10,13,0,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,3,12,2073,1052,1021,995,985,44,28,7,2,1,2,0,0,5,4,999,988,45,29,12,6,1,2,0,0,1042,1013,986,977,43,28,7,2,1,2,0,0,5,4,990,980,44,29,12,6,1,2,0,0,10,8,9,8,1,0,0,0,0,0,0,0,0,0,9,8,1,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,3,13,2147,1058,1089,1020,1044,30,29,2,3,0,3,0,0,6,10,1026,1053,31,31,7,10,0,5,0,0,1051,1086,1013,1043,30,29,2,3,0,3,0,0,6,8,1019,1051,31,29,7,9,0,5,0,0,7,3,7,1,0,0,0,0,0,0,0,0,0,2,7,2,0,2,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,3,14,1792,865,927,823,890,27,21,4,7,0,1,0,1,11,7,831,897,33,23,11,12,1,1,1,1,857,920,817,885,27,21,4,6,0,1,0,0,9,7,824,892,31,23,11,11,0,1,1,0,8,7,6,5,0,0,0,1,0,0,0,1,2,0,7,5,2,0,0,1,1,0,0,1 -050,01,093,Alabama,Marion County,3,15,1490,688,802,666,775,14,18,4,2,0,2,1,0,3,5,669,777,14,21,7,7,0,2,1,0,683,802,662,775,14,18,4,2,0,2,0,0,3,5,665,777,14,21,7,7,0,2,0,0,5,0,4,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,3,16,996,436,560,418,542,14,11,1,1,0,0,0,0,3,6,421,547,14,12,2,5,0,2,2,0,436,556,418,538,14,11,1,1,0,0,0,0,3,6,421,543,14,12,2,5,0,2,2,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,3,17,739,289,450,281,440,7,7,1,0,0,0,0,0,0,3,281,443,7,7,1,2,0,1,0,0,288,449,280,439,7,7,1,0,0,0,0,0,0,3,280,442,7,7,1,2,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,3,18,649,188,461,179,446,7,12,1,0,0,0,0,0,1,3,180,449,7,12,2,2,0,0,0,1,187,461,178,446,7,12,1,0,0,0,0,0,1,3,179,449,7,12,2,2,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,4,0,30661,15243,15418,14278,14681,723,476,56,55,25,40,7,11,154,155,14418,14823,800,545,134,136,41,59,10,13,14875,15103,13943,14404,711,471,52,50,23,38,3,4,143,136,14074,14530,782,531,125,118,38,55,5,6,368,315,335,277,12,5,4,5,2,2,4,7,11,19,344,293,18,14,9,18,3,4,5,7 -050,01,093,Alabama,Marion County,4,1,1664,877,787,810,731,35,25,1,0,1,0,1,2,29,29,837,758,59,45,10,6,3,4,1,4,826,748,765,700,32,24,1,0,0,0,0,0,28,24,791,723,56,41,9,3,2,3,0,2,51,39,45,31,3,1,0,0,1,0,1,2,1,5,46,35,3,4,1,3,1,1,1,2 -050,01,093,Alabama,Marion County,4,2,1777,951,826,913,774,22,29,0,3,0,0,0,0,16,20,926,793,34,40,3,13,2,1,2,0,899,786,867,740,19,27,0,3,0,0,0,0,13,16,879,755,29,38,1,9,2,1,1,0,52,40,46,34,3,2,0,0,0,0,0,0,3,4,47,38,5,2,2,4,0,0,1,0 -050,01,093,Alabama,Marion County,4,3,1978,1067,911,994,856,47,31,3,6,1,3,1,2,21,13,1014,868,60,39,11,10,3,5,1,2,1025,864,955,814,47,31,2,5,1,3,1,2,19,9,973,822,58,38,10,7,3,4,1,2,42,47,39,42,0,0,1,1,0,0,0,0,2,4,41,46,2,1,1,3,0,1,0,0 -050,01,093,Alabama,Marion County,4,4,1825,954,871,903,817,37,38,5,8,2,0,0,1,7,7,909,823,40,44,8,10,4,0,0,1,932,842,882,791,37,38,5,5,2,0,0,1,6,7,887,797,40,44,8,7,3,0,0,1,22,29,21,26,0,0,0,3,0,0,0,0,1,0,22,26,0,0,0,3,1,0,0,0 -050,01,093,Alabama,Marion County,4,5,1719,837,882,778,835,38,31,6,4,1,2,0,1,14,9,791,844,46,36,12,6,2,4,0,1,820,856,762,813,38,31,5,4,1,1,0,0,14,7,775,820,46,34,11,6,2,3,0,0,17,26,16,22,0,0,1,0,0,1,0,1,0,2,16,24,0,2,1,0,0,1,0,1 -050,01,093,Alabama,Marion County,4,6,1541,770,771,687,732,64,24,6,2,6,5,1,2,6,6,693,738,66,25,9,7,7,5,1,2,740,751,659,716,64,23,6,2,5,4,0,0,6,6,665,722,66,24,9,7,6,4,0,0,30,20,28,16,0,1,0,0,1,1,1,2,0,0,28,16,0,1,0,0,1,1,1,2 -050,01,093,Alabama,Marion County,4,7,1695,866,829,793,785,67,32,2,2,0,4,1,1,3,5,796,789,68,34,4,5,0,5,1,1,826,802,760,760,63,31,1,2,0,4,1,1,1,4,761,764,63,32,2,4,0,5,1,1,40,27,33,25,4,1,1,0,0,0,0,0,2,1,35,25,5,2,2,1,0,0,0,0 -050,01,093,Alabama,Marion County,4,8,1860,932,928,862,881,64,36,0,1,1,2,1,1,4,7,866,887,65,38,2,5,2,4,1,1,898,904,829,859,63,36,0,1,1,2,1,0,4,6,833,865,64,37,2,4,2,4,1,0,34,24,33,22,1,0,0,0,0,0,0,1,0,1,33,22,1,1,0,1,0,0,0,1 -050,01,093,Alabama,Marion County,4,9,2091,1060,1031,977,977,70,36,4,4,2,5,0,0,7,9,984,984,71,39,9,9,3,8,0,0,1043,1016,960,963,70,36,4,3,2,5,0,0,7,9,967,970,71,39,9,8,3,8,0,0,17,15,17,14,0,0,0,1,0,0,0,0,0,0,17,14,0,0,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,4,10,2312,1200,1112,1106,1067,74,30,3,5,6,5,0,0,11,5,1116,1071,76,31,12,10,7,5,0,0,1184,1102,1091,1057,74,30,2,5,6,5,0,0,11,5,1101,1061,76,31,11,10,7,5,0,0,16,10,15,10,0,0,1,0,0,0,0,0,0,0,15,10,0,0,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,4,11,2264,1125,1139,1044,1081,64,38,4,3,4,7,1,0,8,10,1052,1091,67,39,8,10,5,9,1,0,1112,1126,1032,1068,64,38,4,3,4,7,0,0,8,10,1040,1078,67,39,8,10,5,9,0,0,13,13,12,13,0,0,0,0,0,0,1,0,0,0,12,13,0,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,4,12,2074,1066,1008,1007,973,47,26,8,4,1,2,0,0,3,3,1009,976,48,27,11,6,1,2,0,0,1056,997,998,962,46,26,8,4,1,2,0,0,3,3,1000,965,47,27,11,6,1,2,0,0,10,11,9,11,1,0,0,0,0,0,0,0,0,0,9,11,1,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,4,13,2168,1062,1106,1023,1062,30,31,2,3,0,1,0,0,7,9,1029,1071,31,32,8,10,1,2,0,0,1054,1104,1015,1061,30,31,2,3,0,1,0,0,7,8,1021,1069,31,32,8,9,1,2,0,0,8,2,8,1,0,0,0,0,0,0,0,0,0,1,8,2,0,0,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,4,14,1775,858,917,817,881,27,22,5,6,0,2,0,1,9,5,824,884,29,26,14,9,0,3,0,1,851,910,811,876,27,22,5,6,0,2,0,0,8,4,817,878,29,25,13,8,0,3,0,0,7,7,6,5,0,0,0,0,0,0,0,1,1,1,7,6,0,1,1,1,0,0,0,1 -050,01,093,Alabama,Marion County,4,15,1485,677,808,656,785,13,15,2,2,0,1,1,0,5,5,660,789,16,16,6,7,0,1,1,0,670,808,651,785,13,15,2,2,0,1,0,0,4,5,654,789,15,16,6,7,0,1,0,0,7,0,5,0,0,0,0,0,0,0,1,0,1,0,6,0,1,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,4,16,1059,459,600,442,575,11,14,3,2,0,1,0,0,3,8,445,583,11,15,4,9,1,1,1,0,459,597,442,572,11,14,3,2,0,1,0,0,3,8,445,580,11,15,4,9,1,1,1,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,4,17,707,275,432,267,423,7,6,1,0,0,0,0,0,0,3,267,426,7,6,1,3,0,0,0,0,275,430,267,421,7,6,1,0,0,0,0,0,0,3,267,424,7,6,1,3,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,4,18,667,207,460,199,446,6,12,1,0,0,0,0,0,1,2,200,448,6,13,2,1,0,0,0,0,205,460,197,446,6,12,1,0,0,0,0,0,1,2,198,448,6,13,2,1,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,5,0,30495,15137,15358,14160,14602,725,459,56,64,30,50,8,12,158,171,14302,14767,806,532,131,151,45,63,11,16,14758,15048,13817,14334,712,453,50,59,28,48,3,4,148,150,13951,14479,787,516,121,138,41,58,6,7,379,310,343,268,13,6,6,5,2,2,5,8,10,21,351,288,19,16,10,13,4,5,5,9 -050,01,093,Alabama,Marion County,5,1,1669,876,793,813,725,29,28,2,3,1,2,1,2,30,33,841,757,53,51,7,12,4,4,1,2,817,756,761,694,26,27,1,3,0,2,0,0,29,30,788,723,49,50,6,10,3,3,0,0,59,37,52,31,3,1,1,0,1,0,1,2,1,3,53,34,4,1,1,2,1,1,1,2 -050,01,093,Alabama,Marion County,5,2,1782,940,842,894,794,27,20,1,1,2,1,0,1,16,25,908,819,38,39,4,6,5,2,1,1,890,803,851,762,23,19,0,1,2,1,0,0,14,20,863,782,34,34,2,5,4,2,1,0,50,39,43,32,4,1,1,0,0,0,0,1,2,5,45,37,4,5,2,1,1,0,0,1 -050,01,093,Alabama,Marion County,5,3,1947,1057,890,994,833,34,35,3,8,1,4,2,1,23,9,1016,841,47,39,11,13,4,4,2,2,1013,854,954,803,34,34,2,7,1,4,1,1,21,5,974,808,46,36,9,10,4,4,1,1,44,36,40,30,0,1,1,1,0,0,1,0,2,4,42,33,1,3,2,3,0,0,1,1 -050,01,093,Alabama,Marion County,5,4,1781,935,846,874,795,48,27,4,9,1,1,0,2,8,12,882,807,52,31,6,15,2,2,1,3,911,812,852,764,48,27,4,7,1,1,0,2,6,11,858,775,51,30,5,13,2,2,1,3,24,34,22,31,0,0,0,2,0,0,0,0,2,1,24,32,1,1,1,2,0,0,0,0 -050,01,093,Alabama,Marion County,5,5,1745,864,881,798,829,41,33,6,6,2,3,0,1,17,9,809,838,52,38,16,10,4,3,0,1,851,856,786,810,41,33,5,5,2,2,0,0,17,6,797,816,52,36,15,8,4,2,0,0,13,25,12,19,0,0,1,1,0,1,0,1,0,3,12,22,0,2,1,2,0,1,0,1 -050,01,093,Alabama,Marion County,5,6,1530,750,780,676,740,60,23,6,3,4,5,1,1,3,8,679,748,62,25,7,8,4,6,1,1,723,757,651,721,60,22,6,3,3,4,0,0,3,7,654,728,62,23,7,8,3,5,0,0,27,23,25,19,0,1,0,0,1,1,1,1,0,1,25,20,0,2,0,0,1,1,1,1 -050,01,093,Alabama,Marion County,5,7,1719,874,845,794,801,71,30,3,0,1,4,1,2,4,8,796,809,73,32,5,5,3,5,1,2,836,814,762,774,68,28,2,0,1,4,1,1,2,7,764,781,68,30,3,4,2,5,1,1,38,31,32,27,3,2,1,0,0,0,0,1,2,1,32,28,5,2,2,1,1,0,0,1 -050,01,093,Alabama,Marion County,5,8,1755,855,900,789,854,59,33,1,3,2,4,1,1,3,5,792,859,60,33,2,6,3,5,1,2,824,875,760,831,57,33,1,3,2,4,1,0,3,4,763,835,58,33,2,6,3,4,1,1,31,25,29,23,2,0,0,0,0,0,0,1,0,1,29,24,2,0,0,0,0,1,0,1 -050,01,093,Alabama,Marion County,5,9,2068,1057,1011,978,962,69,30,2,5,3,5,0,0,5,9,983,971,69,33,7,11,3,5,0,0,1035,998,956,950,69,30,2,4,3,5,0,0,5,9,961,959,69,33,7,10,3,5,0,0,22,13,22,12,0,0,0,1,0,0,0,0,0,0,22,12,0,0,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,5,10,2246,1149,1097,1063,1048,68,34,3,4,4,5,0,0,11,6,1074,1054,69,36,13,8,4,5,0,0,1132,1088,1046,1039,68,34,3,4,4,5,0,0,11,6,1057,1045,69,36,13,8,4,5,0,0,17,9,17,9,0,0,0,0,0,0,0,0,0,0,17,9,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,5,11,2262,1138,1124,1046,1069,73,32,3,4,6,8,1,0,9,11,1055,1079,75,34,10,14,6,8,1,0,1119,1109,1029,1054,73,32,2,4,6,8,0,0,9,11,1038,1064,75,34,9,14,6,8,0,0,19,15,17,15,0,0,1,0,0,0,1,0,0,0,17,15,0,0,1,0,0,0,1,0 -050,01,093,Alabama,Marion County,5,12,2076,1076,1000,1018,962,43,31,8,3,3,2,0,0,4,2,1022,964,45,31,10,5,3,2,0,0,1068,993,1011,955,42,31,8,3,3,2,0,0,4,2,1015,957,44,31,10,5,3,2,0,0,8,7,7,7,1,0,0,0,0,0,0,0,0,0,7,7,1,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,5,13,2090,1015,1075,968,1030,38,30,3,3,0,2,0,0,6,10,974,1039,41,33,6,10,0,3,0,0,1004,1071,957,1027,38,30,3,3,0,2,0,0,6,9,963,1035,41,33,6,9,0,3,0,0,11,4,11,3,0,0,0,0,0,0,0,0,0,1,11,4,0,0,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,5,14,1855,894,961,859,925,22,22,3,6,0,2,0,1,10,5,869,930,22,23,12,8,0,4,1,1,888,955,853,921,22,22,3,6,0,2,0,0,10,4,863,925,22,23,12,8,0,3,1,0,6,6,6,4,0,0,0,0,0,0,0,1,0,1,6,5,0,0,0,0,0,1,0,1 -050,01,093,Alabama,Marion County,5,15,1502,691,811,667,784,16,18,3,4,0,0,1,0,4,5,669,789,19,18,6,7,0,1,1,1,684,810,662,783,16,18,3,4,0,0,0,0,3,5,663,788,18,18,6,7,0,1,0,1,7,1,5,1,0,0,0,0,0,0,1,0,1,0,6,1,1,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,5,16,1091,474,617,456,591,12,15,3,2,0,2,0,0,3,7,458,597,13,17,6,7,0,3,0,0,473,615,455,589,12,15,3,2,0,2,0,0,3,7,457,595,13,17,6,7,0,3,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,5,17,717,273,444,263,434,8,6,1,0,0,0,0,0,1,4,264,437,8,7,2,3,0,1,0,0,273,441,263,431,8,6,1,0,0,0,0,0,1,4,264,434,8,7,2,3,0,1,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,5,18,660,219,441,210,426,7,12,1,0,0,0,0,0,1,3,211,429,8,12,1,3,0,0,0,0,217,441,208,426,7,12,1,0,0,0,0,0,1,3,209,429,8,12,1,3,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,6,0,30236,15036,15200,14057,14438,729,463,53,63,30,57,7,13,160,166,14203,14598,804,541,135,137,46,77,10,15,14636,14873,13701,14156,710,456,47,58,27,53,3,4,148,146,13836,14297,780,524,122,121,41,72,6,6,400,327,356,282,19,7,6,5,3,4,4,9,12,20,367,301,24,17,13,16,5,5,4,9 -050,01,093,Alabama,Marion County,6,1,1615,846,769,785,698,28,36,1,3,1,2,1,2,30,28,814,725,49,57,5,7,4,5,4,3,791,728,737,664,25,33,0,3,0,2,0,0,29,26,765,689,45,53,4,6,3,5,3,1,55,41,48,34,3,3,1,0,1,0,1,2,1,2,49,36,4,4,1,1,1,0,1,2 -050,01,093,Alabama,Marion County,6,2,1730,925,805,880,759,29,19,2,2,2,0,0,2,12,23,889,782,38,34,8,9,3,2,0,2,873,760,835,721,25,18,1,2,2,0,0,0,10,19,842,740,33,30,6,7,3,2,0,0,52,45,45,38,4,1,1,0,0,0,0,2,2,4,47,42,5,4,2,2,0,0,0,2 -050,01,093,Alabama,Marion County,6,3,1952,1051,901,986,841,36,35,2,5,2,3,1,1,24,16,1008,856,51,45,12,11,3,4,1,1,999,866,940,812,34,34,1,5,1,3,1,1,22,11,960,822,49,43,10,7,1,4,1,1,52,35,46,29,2,1,1,0,1,0,0,0,2,5,48,34,2,2,2,4,2,0,0,0 -050,01,093,Alabama,Marion County,6,4,1735,913,822,853,768,44,31,4,9,1,2,0,2,11,10,864,778,48,36,9,12,3,4,0,2,887,781,829,730,44,31,4,7,1,2,0,2,9,9,838,739,47,36,8,9,3,4,0,2,26,41,24,38,0,0,0,2,0,0,0,0,2,1,26,39,1,0,1,3,0,0,0,0 -050,01,093,Alabama,Marion County,6,5,1711,850,861,790,809,37,32,6,6,2,7,0,1,15,6,805,815,42,36,14,8,4,7,0,1,833,843,774,797,37,32,5,4,2,6,0,0,15,4,789,801,42,34,13,6,4,6,0,0,17,18,16,12,0,0,1,2,0,1,0,1,0,2,16,14,0,2,1,2,0,1,0,1 -050,01,093,Alabama,Marion County,6,6,1560,755,805,680,767,62,22,4,3,3,4,1,0,5,9,685,776,64,24,6,8,4,6,1,0,737,779,663,743,62,22,4,3,3,3,0,0,5,8,668,751,64,24,6,7,4,5,0,0,18,26,17,24,0,0,0,0,0,1,1,0,0,1,17,25,0,0,0,1,0,1,1,0 -050,01,093,Alabama,Marion County,6,7,1693,843,850,754,807,77,25,4,0,2,6,1,3,5,9,758,816,80,30,8,3,2,7,1,3,806,821,724,783,74,24,3,0,1,6,1,1,3,7,726,790,76,27,5,3,1,7,1,1,37,29,30,24,3,1,1,0,1,0,0,2,2,2,32,26,4,3,3,0,1,0,0,2 -050,01,093,Alabama,Marion County,6,8,1701,840,861,772,819,60,32,2,4,3,4,1,1,2,1,774,820,61,32,3,5,3,4,1,1,801,836,737,796,56,31,2,4,3,4,1,0,2,1,739,797,57,31,3,5,3,4,1,0,39,25,35,23,4,1,0,0,0,0,0,1,0,0,35,23,4,1,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,6,9,2042,1068,974,987,924,69,32,1,4,3,4,0,0,8,10,995,934,72,38,5,8,4,4,0,0,1039,959,962,911,67,32,1,3,3,4,0,0,6,9,968,920,70,37,3,7,4,4,0,0,29,15,25,13,2,0,0,1,0,0,0,0,2,1,27,14,2,1,2,1,0,0,0,0 -050,01,093,Alabama,Marion County,6,10,2158,1124,1034,1037,985,70,39,4,2,5,2,0,0,8,6,1044,991,74,40,9,5,5,4,0,0,1105,1023,1018,974,70,39,4,2,5,2,0,0,8,6,1025,980,74,40,9,5,5,4,0,0,19,11,19,11,0,0,0,0,0,0,0,0,0,0,19,11,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,6,11,2274,1141,1133,1055,1077,66,27,3,5,5,13,1,0,11,11,1065,1087,67,30,12,13,7,14,1,0,1122,1116,1038,1062,66,27,2,5,5,11,0,0,11,11,1048,1072,67,30,11,13,7,12,0,0,19,17,17,15,0,0,1,0,0,2,1,0,0,0,17,15,0,0,1,0,0,2,1,0 -050,01,093,Alabama,Marion County,6,12,2076,1053,1023,997,977,44,33,6,5,1,4,0,0,5,4,1001,980,47,34,9,9,1,4,0,0,1043,1015,988,969,43,33,6,5,1,4,0,0,5,4,992,972,46,34,9,9,1,4,0,0,10,8,9,8,1,0,0,0,0,0,0,0,0,0,9,8,1,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,6,13,2022,997,1025,949,983,40,29,3,3,0,2,0,0,5,8,953,990,41,30,8,8,0,4,0,1,990,1020,942,979,40,29,3,3,0,2,0,0,5,7,946,986,41,30,8,7,0,3,0,1,7,5,7,4,0,0,0,0,0,0,0,0,0,1,7,4,0,0,0,1,0,1,0,0 -050,01,093,Alabama,Marion County,6,14,1855,887,968,856,938,22,19,3,4,0,1,0,0,6,6,861,944,23,19,8,9,1,2,0,0,880,964,849,935,22,19,3,4,0,1,0,0,6,5,854,940,23,19,8,8,1,2,0,0,7,4,7,3,0,0,0,0,0,0,0,0,0,1,7,4,0,0,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,6,15,1559,732,827,701,797,19,18,3,5,0,1,1,1,8,5,708,802,20,19,10,8,1,2,1,1,723,824,694,795,19,18,3,5,0,1,0,0,7,5,701,800,19,19,10,8,0,2,0,0,9,3,7,2,0,0,0,0,0,0,1,1,1,0,7,2,1,0,0,0,1,0,1,1 -050,01,093,Alabama,Marion County,6,16,1152,505,647,490,621,9,15,3,3,0,2,0,0,3,6,492,627,10,16,6,7,0,3,0,0,503,646,488,620,9,15,3,3,0,2,0,0,3,6,490,626,10,16,6,7,0,3,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,6,17,718,277,441,267,429,9,7,0,0,0,0,0,0,1,5,268,433,9,9,1,4,0,1,0,0,277,439,267,427,9,7,0,0,0,0,0,0,1,5,268,431,9,9,1,4,0,1,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,6,18,683,229,454,218,439,8,12,2,0,0,0,0,0,1,3,219,442,8,12,2,3,1,0,0,0,227,453,216,438,8,12,2,0,0,0,0,0,1,3,217,441,8,12,2,3,1,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,7,0,30215,14949,15266,13977,14510,708,459,54,60,39,56,7,12,164,169,14130,14668,782,525,133,149,55,75,13,20,14553,14960,13625,14247,689,452,48,56,36,52,3,4,152,149,13767,14387,758,509,120,135,51,68,9,11,396,306,352,263,19,7,6,4,3,4,4,8,12,20,363,281,24,16,13,14,4,7,4,9 -050,01,093,Alabama,Marion County,7,1,1594,790,804,732,732,24,36,1,3,7,2,1,1,25,30,755,760,42,58,5,8,10,6,3,2,742,764,689,698,22,33,0,3,6,2,0,0,25,28,712,725,40,53,4,7,9,6,2,1,48,40,43,34,2,3,1,0,1,0,1,1,0,2,43,35,2,5,1,1,1,0,1,1 -050,01,093,Alabama,Marion County,7,2,1679,880,799,826,757,29,17,2,2,2,1,0,2,21,20,845,777,40,29,8,8,6,3,2,2,821,765,776,728,24,17,1,2,2,1,0,0,18,17,792,745,35,27,5,7,5,3,2,0,59,34,50,29,5,0,1,0,0,0,0,2,3,3,53,32,5,2,3,1,1,0,0,2 -050,01,093,Alabama,Marion County,7,3,1935,1018,917,975,860,23,29,2,5,1,1,0,1,17,21,990,879,35,40,8,13,2,5,0,1,970,873,932,824,21,27,1,5,1,1,0,1,15,15,945,837,31,37,7,10,2,3,0,1,48,44,43,36,2,2,1,0,0,0,0,0,2,6,45,42,4,3,1,3,0,2,0,0 -050,01,093,Alabama,Marion County,7,4,1788,951,837,879,785,47,29,4,7,3,3,1,2,17,11,893,795,58,34,12,12,4,5,1,2,920,811,851,761,47,29,4,6,2,3,1,2,15,10,864,770,57,33,10,11,3,5,1,2,31,26,28,24,0,0,0,1,1,0,0,0,2,1,29,25,1,1,2,1,1,0,0,0 -050,01,093,Alabama,Marion County,7,5,1710,858,852,792,802,47,35,6,5,2,5,0,0,11,5,802,807,52,38,11,8,3,5,1,0,841,831,776,785,47,35,5,3,2,5,0,0,11,3,786,788,52,37,10,5,3,5,1,0,17,21,16,17,0,0,1,2,0,0,0,0,0,2,16,19,0,1,1,3,0,0,0,0 -050,01,093,Alabama,Marion County,7,6,1604,800,804,724,768,59,23,5,3,5,2,0,1,7,7,731,773,61,26,9,6,6,3,0,3,783,783,707,750,59,23,5,3,5,1,0,0,7,6,714,754,61,26,9,5,6,2,0,2,17,21,17,18,0,0,0,0,0,1,0,1,0,1,17,19,0,0,0,1,0,1,0,1 -050,01,093,Alabama,Marion County,7,7,1680,829,851,751,810,64,21,4,2,3,8,2,2,5,8,756,818,67,25,6,4,3,9,2,3,782,826,711,791,62,20,3,2,2,7,1,0,3,6,714,797,64,23,4,3,2,8,1,1,47,25,40,19,2,1,1,0,1,1,1,2,2,2,42,21,3,2,2,1,1,1,1,2 -050,01,093,Alabama,Marion County,7,8,1650,832,818,759,780,66,27,1,4,3,5,1,1,2,1,761,781,67,27,2,5,3,5,1,1,797,794,729,757,61,26,1,4,3,5,1,1,2,1,731,758,62,26,2,5,3,5,1,1,35,24,30,23,5,1,0,0,0,0,0,0,0,0,30,23,5,1,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,7,9,2033,1049,984,968,928,68,39,2,3,3,3,0,1,8,10,976,938,71,40,6,10,4,4,0,2,1025,968,948,915,66,39,2,2,3,3,0,0,6,9,954,924,68,40,5,8,4,4,0,1,24,16,20,13,2,0,0,1,0,0,0,1,2,1,22,14,3,0,1,2,0,0,0,1 -050,01,093,Alabama,Marion County,7,10,2124,1092,1032,1003,983,73,38,4,1,4,3,0,0,8,7,1011,990,74,38,9,6,6,4,0,1,1075,1021,986,972,73,38,4,1,4,3,0,0,8,7,994,979,74,38,9,6,6,4,0,1,17,11,17,11,0,0,0,0,0,0,0,0,0,0,17,11,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,7,11,2242,1137,1105,1057,1056,61,26,3,5,4,10,0,0,12,8,1069,1064,62,26,14,12,4,10,0,1,1121,1089,1042,1042,61,26,2,5,4,8,0,0,12,8,1054,1050,62,26,13,12,4,8,0,1,16,16,15,14,0,0,1,0,0,2,0,0,0,0,15,14,0,0,1,0,0,2,0,0 -050,01,093,Alabama,Marion County,7,12,2104,1056,1048,1001,993,41,36,5,5,2,6,1,0,6,8,1007,1001,43,37,8,12,3,6,1,0,1047,1037,994,982,40,36,5,5,2,6,0,0,6,8,1000,990,42,37,8,12,3,6,0,0,9,11,7,11,1,0,0,0,0,0,1,0,0,0,7,11,1,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,7,13,1992,970,1022,925,980,37,30,3,3,0,3,0,0,5,6,930,985,38,31,6,7,0,5,1,1,963,1016,918,975,37,30,3,3,0,3,0,0,5,5,923,980,38,30,6,7,0,4,1,0,7,6,7,5,0,0,0,0,0,0,0,0,0,1,7,5,0,1,0,0,0,1,0,1 -050,01,093,Alabama,Marion County,7,14,1900,912,988,882,955,22,20,3,3,0,1,0,0,5,9,887,963,24,21,6,11,0,2,0,0,905,985,875,953,22,20,3,3,0,1,0,0,5,8,880,960,24,21,6,10,0,2,0,0,7,3,7,2,0,0,0,0,0,0,0,0,0,1,7,3,0,0,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,7,15,1527,713,814,680,785,20,17,3,6,0,1,1,1,9,4,689,789,20,17,12,10,0,1,1,1,704,809,673,781,20,17,3,6,0,1,0,0,8,4,681,785,20,17,11,10,0,1,0,0,9,5,7,4,0,0,0,0,0,0,1,1,1,0,8,4,0,0,1,0,0,0,1,1 -050,01,093,Alabama,Marion County,7,16,1240,554,686,537,660,9,16,4,3,0,2,0,0,4,5,540,665,10,16,8,8,0,2,0,0,551,685,534,659,9,16,4,3,0,2,0,0,4,5,537,664,10,16,8,8,0,2,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,7,17,705,275,430,263,416,11,8,0,0,0,0,0,0,1,6,264,420,11,10,0,6,1,0,0,0,275,428,263,414,11,8,0,0,0,0,0,0,1,6,264,418,11,10,0,6,1,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,7,18,708,233,475,223,460,7,12,2,0,0,0,0,0,1,3,224,463,7,12,3,3,0,0,0,0,231,475,221,460,7,12,2,0,0,0,0,0,1,3,222,463,7,12,3,3,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,8,0,30137,14965,15172,13962,14417,713,456,59,65,43,54,7,12,181,168,14133,14570,793,536,150,147,66,75,13,19,14554,14852,13602,14149,691,444,53,60,40,48,3,4,165,147,13757,14285,763,511,134,131,60,63,8,9,411,320,360,268,22,12,6,5,3,6,4,8,16,21,376,285,30,25,16,16,6,12,5,10 -050,01,093,Alabama,Marion County,8,1,1606,814,792,748,724,27,36,1,3,6,3,0,0,32,26,778,747,49,57,8,7,13,5,0,2,765,754,706,694,22,31,1,3,6,1,0,0,30,25,734,716,43,51,7,7,12,3,0,2,49,38,42,30,5,5,0,0,0,2,0,0,2,1,44,31,6,6,1,0,1,2,0,0 -050,01,093,Alabama,Marion County,8,2,1674,871,803,817,757,28,15,4,2,2,1,1,3,19,25,835,780,42,34,8,8,3,4,2,4,815,761,771,725,24,14,2,1,1,1,0,0,17,20,787,744,37,29,5,4,2,3,1,1,56,42,46,32,4,1,2,1,1,0,1,3,2,5,48,36,5,5,3,4,1,1,1,3 -050,01,093,Alabama,Marion County,8,3,1851,996,855,957,802,23,30,0,5,3,1,0,1,13,16,970,817,31,39,5,13,4,2,0,1,949,812,915,766,21,28,0,5,3,1,0,1,10,11,925,776,28,34,3,10,4,2,0,1,47,43,42,36,2,2,0,0,0,0,0,0,3,5,45,41,3,5,2,3,0,0,0,0 -050,01,093,Alabama,Marion County,8,4,1819,980,839,902,790,47,29,5,6,3,2,1,2,22,10,924,799,59,34,13,10,5,4,2,2,943,806,870,761,46,28,4,5,2,2,1,2,20,8,890,769,56,31,11,8,4,4,2,2,37,33,32,29,1,1,1,1,1,0,0,0,2,2,34,30,3,3,2,2,1,0,0,0 -050,01,093,Alabama,Marion County,8,5,1674,857,817,792,760,45,37,5,6,2,8,0,0,13,6,805,766,48,40,12,9,4,8,1,0,839,801,774,746,45,37,5,4,2,8,0,0,13,6,787,752,48,40,12,7,4,8,1,0,18,16,18,14,0,0,0,2,0,0,0,0,0,0,18,14,0,0,0,2,0,0,0,0 -050,01,093,Alabama,Marion County,8,6,1713,867,846,783,810,60,21,8,5,6,2,0,1,10,7,790,816,65,24,13,8,9,4,0,1,843,820,760,789,60,21,7,5,6,1,0,0,10,4,767,793,65,23,12,7,9,1,0,0,24,26,23,21,0,0,1,0,0,1,0,1,0,3,23,23,0,1,1,1,0,3,0,1 -050,01,093,Alabama,Marion County,8,7,1607,786,821,715,784,61,18,3,1,3,8,2,2,2,8,717,791,61,21,4,3,3,11,3,3,747,795,679,764,60,16,3,1,2,7,1,0,2,7,681,770,60,19,4,2,2,10,2,1,39,26,36,20,1,2,0,0,1,1,1,2,0,1,36,21,1,2,0,1,1,1,1,2 -050,01,093,Alabama,Marion County,8,8,1640,834,806,749,764,73,28,2,5,4,4,0,1,6,4,755,767,75,29,6,8,5,5,0,1,797,781,723,741,67,27,1,5,4,4,0,1,2,3,725,743,67,28,3,7,4,5,0,1,37,25,26,23,6,1,1,0,0,0,0,0,4,1,30,24,8,1,3,1,1,0,0,0 -050,01,093,Alabama,Marion County,8,9,1961,1017,944,936,893,67,40,1,0,4,3,1,1,8,7,944,899,68,43,6,3,6,5,1,1,989,928,912,879,65,40,1,0,4,3,1,0,6,6,918,884,66,43,4,3,6,4,1,0,28,16,24,14,2,0,0,0,0,0,0,1,2,1,26,15,2,0,2,0,0,1,0,1 -050,01,093,Alabama,Marion County,8,10,2101,1065,1036,980,981,70,36,5,5,3,4,0,0,7,10,987,991,72,39,9,11,4,5,0,0,1041,1024,956,970,70,36,5,4,3,4,0,0,7,10,963,980,72,39,9,10,4,5,0,0,24,12,24,11,0,0,0,1,0,0,0,0,0,0,24,11,0,0,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,8,11,2239,1137,1102,1056,1057,61,28,4,5,4,4,0,0,12,8,1068,1064,64,29,13,13,4,4,0,0,1127,1088,1047,1045,61,28,3,5,4,2,0,0,12,8,1059,1052,64,29,12,13,4,2,0,0,10,14,9,12,0,0,1,0,0,2,0,0,0,0,9,12,0,0,1,0,0,2,0,0 -050,01,093,Alabama,Marion County,8,12,2132,1054,1078,996,1022,44,36,3,4,3,6,1,0,7,10,1002,1032,45,38,9,11,4,7,1,0,1043,1066,986,1010,44,36,3,4,3,6,0,0,7,10,992,1020,45,38,9,11,4,7,0,0,11,12,10,12,0,0,0,0,0,0,1,0,0,0,10,12,0,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,8,13,1951,978,973,925,940,40,24,6,2,0,4,0,0,7,3,932,943,41,26,11,3,0,4,1,0,968,967,916,934,39,24,6,2,0,4,0,0,7,3,923,937,40,26,11,3,0,4,1,0,10,6,9,6,1,0,0,0,0,0,0,0,0,0,9,6,1,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,8,14,1937,914,1023,887,979,19,28,2,4,0,1,0,0,6,11,892,989,21,30,6,13,1,3,0,3,907,1021,880,979,19,28,2,4,0,1,0,0,6,9,885,988,21,28,6,12,1,1,0,1,7,2,7,0,0,0,0,0,0,0,0,0,0,2,7,1,0,2,0,1,0,2,0,2 -050,01,093,Alabama,Marion County,8,15,1537,714,823,679,793,22,17,3,8,0,1,0,1,10,3,689,796,23,18,13,10,1,1,1,1,707,817,673,788,22,17,3,8,0,1,0,0,9,3,682,791,22,18,12,10,0,1,0,0,7,6,6,5,0,0,0,0,0,0,0,1,1,0,7,5,1,0,1,0,1,0,1,1 -050,01,093,Alabama,Marion County,8,16,1229,542,687,527,664,7,13,4,3,0,2,1,0,3,5,529,668,8,14,7,8,0,2,1,0,537,687,523,664,7,13,4,3,0,2,0,0,3,5,525,668,8,14,7,8,0,2,0,0,5,0,4,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,8,17,753,298,455,282,440,12,10,1,1,0,0,0,0,3,4,284,444,14,10,4,4,0,1,0,0,298,452,282,437,12,10,1,1,0,0,0,0,3,4,284,441,14,10,4,4,0,1,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,8,18,713,241,472,231,457,7,10,2,0,0,0,0,0,1,5,232,461,7,11,3,5,0,0,0,0,239,472,229,457,7,10,2,0,0,0,0,0,1,5,230,461,7,11,3,5,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,9,0,29958,14827,15131,13856,14368,687,461,60,59,41,54,6,12,177,177,14019,14533,772,543,149,140,55,79,10,19,14414,14779,13489,14071,665,449,52,53,39,46,3,4,166,156,13643,14217,746,524,134,122,52,66,6,10,413,352,367,297,22,12,8,6,2,8,3,8,11,21,376,316,26,19,15,18,3,13,4,9 -050,01,093,Alabama,Marion County,9,1,1578,784,794,725,725,27,34,1,1,6,4,0,0,25,30,748,754,44,57,7,6,9,6,1,1,744,750,689,690,24,30,1,1,6,0,0,0,24,29,711,718,41,53,6,5,9,2,1,1,40,44,36,35,3,4,0,0,0,4,0,0,1,1,37,36,3,4,1,1,0,4,0,0 -050,01,093,Alabama,Marion County,9,2,1694,868,826,809,768,30,26,2,4,1,2,1,3,25,23,830,790,49,42,8,9,4,5,2,4,810,780,759,733,26,24,1,2,0,2,0,0,24,19,780,751,44,39,7,6,3,3,0,1,58,46,50,35,4,2,1,2,1,0,1,3,1,4,50,39,5,3,1,3,1,2,2,3 -050,01,093,Alabama,Marion County,9,3,1814,951,863,907,809,23,28,1,6,4,0,0,0,16,20,923,829,32,41,6,12,5,3,1,1,909,817,873,770,19,25,0,6,4,0,0,0,13,16,886,786,27,36,4,10,4,2,1,1,42,46,34,39,4,3,1,0,0,0,0,0,3,4,37,43,5,5,2,2,1,1,0,0 -050,01,093,Alabama,Marion County,9,4,1841,1003,838,925,780,48,35,4,6,1,3,1,2,24,12,946,792,64,39,14,11,2,5,1,3,962,805,888,752,47,35,3,5,1,3,1,2,22,8,908,760,62,39,11,6,2,5,1,3,41,33,37,28,1,0,1,1,0,0,0,0,2,4,38,32,2,0,3,5,0,0,0,0 -050,01,093,Alabama,Marion County,9,5,1633,860,773,798,723,48,32,5,5,2,7,0,1,7,5,804,727,51,35,10,8,2,7,0,1,835,757,774,709,48,32,5,3,2,7,0,1,6,5,779,713,51,35,9,6,2,7,0,1,25,16,24,14,0,0,0,2,0,0,0,0,1,0,25,14,0,0,1,2,0,0,0,0 -050,01,093,Alabama,Marion County,9,6,1771,899,872,825,831,50,26,7,3,6,3,0,1,11,8,835,836,54,31,13,6,8,5,0,2,878,847,805,811,50,26,6,3,6,2,0,0,11,5,815,815,54,30,12,4,8,3,0,0,21,25,20,20,0,0,1,0,0,1,0,1,0,3,20,21,0,1,1,2,0,2,0,2 -050,01,093,Alabama,Marion County,9,7,1539,766,773,695,738,58,16,5,1,4,7,1,2,3,9,698,747,59,18,5,5,5,10,2,2,730,743,662,714,57,14,5,1,3,6,0,0,3,8,665,722,58,15,5,5,4,9,1,0,36,30,33,24,1,2,0,0,1,1,1,2,0,1,33,25,1,3,0,0,1,1,1,2 -050,01,093,Alabama,Marion County,9,8,1686,840,846,758,807,74,28,2,3,4,3,1,1,1,4,759,811,75,28,2,5,4,4,1,2,807,825,731,788,69,27,1,3,4,3,1,1,1,3,732,791,70,27,1,4,4,4,1,2,33,21,27,19,5,1,1,0,0,0,0,0,0,1,27,20,5,1,1,1,0,0,0,0 -050,01,093,Alabama,Marion County,9,9,1782,897,885,832,839,55,35,1,1,2,3,1,1,6,6,838,844,57,38,5,4,2,4,1,1,865,864,805,820,52,35,1,1,2,3,1,0,4,5,809,824,53,37,4,4,2,4,1,0,32,21,27,19,3,0,0,0,0,0,0,1,2,1,29,20,4,1,1,0,0,0,0,1 -050,01,093,Alabama,Marion County,9,10,2089,1088,1001,1002,946,71,38,4,3,3,4,0,0,8,10,1010,955,72,39,10,10,4,7,0,0,1062,975,976,921,71,38,4,2,3,4,0,0,8,10,984,930,72,39,10,9,4,7,0,0,26,26,26,25,0,0,0,1,0,0,0,0,0,0,26,25,0,0,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,9,11,2199,1106,1093,1029,1054,55,23,7,4,4,5,0,0,11,7,1040,1061,57,25,15,8,5,5,0,1,1096,1082,1022,1045,55,23,4,4,4,3,0,0,11,7,1033,1052,57,25,12,8,5,3,0,1,10,11,7,9,0,0,3,0,0,2,0,0,0,0,7,9,0,0,3,0,0,2,0,0 -050,01,093,Alabama,Marion County,9,12,2144,1050,1094,986,1041,49,35,2,2,4,5,1,0,8,11,993,1051,52,36,8,12,4,6,1,0,1035,1081,972,1028,49,35,2,2,4,5,0,0,8,11,979,1038,52,36,8,12,4,6,0,0,15,13,14,13,0,0,0,0,0,0,1,0,0,0,14,13,0,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,9,13,1934,971,963,921,930,38,21,6,4,0,4,0,0,6,4,927,934,40,22,9,6,1,5,0,0,961,955,912,922,37,21,6,4,0,4,0,0,6,4,918,926,39,22,9,6,1,5,0,0,10,8,9,8,1,0,0,0,0,0,0,0,0,0,9,8,1,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,9,14,1995,943,1052,918,1011,15,30,2,3,0,0,0,0,8,8,926,1019,16,31,10,10,0,1,0,0,933,1050,908,1010,15,30,2,3,0,0,0,0,8,7,916,1017,16,31,10,10,0,0,0,0,10,2,10,1,0,0,0,0,0,0,0,0,0,1,10,2,0,0,0,0,0,1,0,0 -050,01,093,Alabama,Marion County,9,15,1532,705,827,671,793,21,19,4,8,0,2,0,1,9,4,679,796,23,21,12,12,0,2,0,1,699,820,665,788,21,19,4,8,0,2,0,0,9,3,673,790,23,20,12,11,0,2,0,0,6,7,6,5,0,0,0,0,0,0,0,1,0,1,6,6,0,1,0,1,0,0,0,1 -050,01,093,Alabama,Marion County,9,16,1210,530,680,517,659,6,12,2,3,0,1,0,0,5,5,521,662,7,15,7,6,0,2,0,0,524,680,512,659,6,12,2,3,0,1,0,0,4,5,515,662,7,15,6,6,0,2,0,0,6,0,5,0,0,0,0,0,0,0,0,0,1,0,6,0,0,0,1,0,0,0,0,0 -050,01,093,Alabama,Marion County,9,17,803,328,475,309,453,13,13,3,2,0,1,0,0,3,6,312,459,13,14,6,6,0,2,0,0,328,473,309,451,13,13,3,2,0,1,0,0,3,6,312,457,13,14,6,6,0,2,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,9,18,714,238,476,229,461,6,10,2,0,0,0,0,0,1,5,230,466,7,11,2,4,0,0,0,0,236,475,227,460,6,10,2,0,0,0,0,0,1,5,228,465,7,11,2,4,0,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,10,0,29825,14757,15068,13788,14287,670,461,63,55,42,52,6,13,188,200,13963,14473,755,559,150,145,63,76,14,16,14336,14717,13415,13986,648,449,56,51,40,45,3,4,174,182,13579,14158,728,538,137,132,57,65,9,7,421,351,373,301,22,12,7,4,2,7,3,9,14,18,384,315,27,21,13,13,6,11,5,9 -050,01,093,Alabama,Marion County,10,1,1534,781,753,719,675,35,36,1,0,4,4,0,0,22,38,741,710,50,68,6,5,5,8,1,1,746,712,687,643,34,32,1,0,4,0,0,0,20,37,707,677,49,63,5,5,4,4,1,1,35,41,32,32,1,4,0,0,0,4,0,0,2,1,34,33,1,5,1,0,1,4,0,0 -050,01,093,Alabama,Marion County,10,2,1681,855,826,789,760,27,32,2,5,4,2,1,3,32,24,821,784,49,50,8,10,7,3,2,3,794,778,738,719,22,30,1,3,3,2,0,0,30,24,768,743,44,48,5,8,6,3,1,0,61,48,51,41,5,2,1,2,1,0,1,3,2,0,53,41,5,2,3,2,1,0,1,3 -050,01,093,Alabama,Marion County,10,3,1814,967,847,919,796,23,23,1,3,4,0,0,1,20,24,937,819,36,36,5,11,6,4,3,1,919,807,879,763,18,21,0,3,4,0,0,0,18,20,896,782,29,33,4,8,6,4,2,0,48,40,40,33,5,2,1,0,0,0,0,1,2,4,41,37,7,3,1,3,0,0,1,1 -050,01,093,Alabama,Marion County,10,4,1811,981,830,917,772,40,35,4,7,0,2,1,1,19,13,936,784,50,47,11,8,2,3,1,1,949,798,888,743,39,34,3,7,0,2,1,1,18,11,906,753,49,44,10,8,1,3,1,1,32,32,29,29,1,1,1,0,0,0,0,0,1,2,30,31,1,3,1,0,1,0,0,0 -050,01,093,Alabama,Marion County,10,5,1588,829,759,758,716,54,24,5,5,1,2,0,2,11,10,766,726,60,29,8,9,6,3,0,2,801,733,732,693,54,24,5,4,1,2,0,2,9,8,739,701,58,29,8,6,5,3,0,2,28,26,26,23,0,0,0,1,0,0,0,0,2,2,27,25,2,0,0,3,1,0,0,0 -050,01,093,Alabama,Marion County,10,6,1776,903,873,833,826,47,30,7,4,4,4,0,1,12,8,843,832,52,34,13,6,6,7,1,2,886,852,817,809,47,30,6,4,4,4,0,0,12,5,827,814,52,32,12,5,6,5,1,1,17,21,16,17,0,0,1,0,0,0,0,1,0,3,16,18,0,2,1,1,0,2,0,1 -050,01,093,Alabama,Marion County,10,7,1511,733,778,658,744,58,16,5,1,6,6,1,1,5,10,663,753,59,18,8,8,7,7,1,2,695,753,625,724,57,15,5,1,5,5,0,0,3,8,628,731,58,16,7,7,5,6,0,1,38,25,33,20,1,1,0,0,1,1,1,1,2,2,35,22,1,2,1,1,2,1,1,1 -050,01,093,Alabama,Marion County,10,8,1724,872,852,792,812,69,28,5,0,3,4,1,2,2,6,794,817,70,30,6,3,3,6,1,2,830,827,755,791,65,26,4,0,3,4,1,1,2,5,757,796,66,27,5,3,3,5,1,1,42,25,37,21,4,2,1,0,0,0,0,1,0,1,37,21,4,3,1,0,0,1,0,1 -050,01,093,Alabama,Marion County,10,9,1703,839,864,779,820,51,31,1,3,3,4,1,1,4,5,783,825,51,32,5,6,3,5,1,1,810,840,756,798,47,31,1,3,3,4,1,0,2,4,758,802,47,32,3,5,3,5,1,0,29,24,23,22,4,0,0,0,0,0,0,1,2,1,25,23,4,0,2,1,0,0,0,1 -050,01,093,Alabama,Marion County,10,10,2060,1081,979,1004,935,65,28,2,3,3,3,0,0,7,10,1011,945,67,30,6,10,4,4,0,0,1056,957,979,914,65,28,2,2,3,3,0,0,7,10,986,924,67,30,6,9,4,4,0,0,25,22,25,21,0,0,0,1,0,0,0,0,0,0,25,21,0,0,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,10,11,2169,1088,1081,1007,1033,60,34,7,2,3,5,0,0,11,7,1017,1040,63,34,16,9,3,5,0,0,1074,1071,995,1025,60,34,5,2,3,3,0,0,11,7,1005,1032,63,34,14,9,3,3,0,0,14,10,12,8,0,0,2,0,0,2,0,0,0,0,12,8,0,0,2,0,0,2,0,0 -050,01,093,Alabama,Marion County,10,12,2149,1043,1106,981,1048,42,33,4,6,6,7,1,0,9,12,989,1060,43,34,11,15,8,9,1,0,1026,1091,965,1033,42,33,4,6,6,7,0,0,9,12,973,1045,43,34,11,15,8,9,0,0,17,15,16,15,0,0,0,0,0,0,1,0,0,0,16,15,0,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,10,13,1972,992,980,943,943,35,27,6,3,1,4,0,0,7,3,950,946,36,27,12,5,1,5,0,0,986,973,938,936,34,27,6,3,1,4,0,0,7,3,945,939,35,27,12,5,1,5,0,0,6,7,5,7,1,0,0,0,0,0,0,0,0,0,5,7,1,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,10,14,1896,894,1002,866,959,18,30,3,3,0,1,0,0,7,9,873,967,19,32,8,9,0,3,1,0,880,997,852,955,18,30,3,3,0,1,0,0,7,8,859,963,19,31,8,9,0,2,1,0,14,5,14,4,0,0,0,0,0,0,0,0,0,1,14,4,0,1,0,0,0,1,0,0 -050,01,093,Alabama,Marion County,10,15,1618,751,867,721,839,16,16,3,4,0,2,0,1,11,5,731,843,17,17,13,9,1,2,0,1,745,861,715,835,16,16,3,4,0,2,0,0,11,4,725,838,17,17,13,8,1,2,0,0,6,6,6,4,0,0,0,0,0,0,0,1,0,1,6,5,0,0,0,1,0,0,0,1 -050,01,093,Alabama,Marion County,10,16,1247,556,691,540,667,10,16,2,4,0,0,0,0,4,4,542,668,12,19,5,8,0,0,1,0,550,690,535,666,10,16,2,4,0,0,0,0,3,4,537,667,11,19,5,8,0,0,0,0,6,1,5,1,0,0,0,0,0,0,0,0,1,0,5,1,1,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,10,17,843,346,497,329,475,12,12,3,2,0,2,0,0,2,6,330,481,13,12,4,8,1,2,0,0,345,495,328,473,12,12,3,2,0,2,0,0,2,6,329,479,13,12,4,8,1,2,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,10,18,729,246,483,233,467,8,10,2,0,0,0,0,0,3,6,236,473,8,10,5,6,0,0,0,0,244,482,231,466,8,10,2,0,0,0,0,0,3,6,234,472,8,10,5,6,0,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,11,0,29776,14725,15051,13744,14269,675,479,63,62,39,51,7,13,197,177,13929,14429,769,558,155,149,65,75,11,18,14310,14692,13383,13970,652,466,57,52,36,42,3,4,179,158,13552,14114,737,535,137,132,59,62,5,7,415,359,361,299,23,13,6,10,3,9,4,9,18,19,377,315,32,23,18,17,6,13,6,11 -050,01,093,Alabama,Marion County,11,1,1576,822,754,745,683,43,40,1,0,2,6,1,0,30,25,772,707,64,58,11,2,4,11,1,1,787,712,716,651,41,38,1,0,2,0,0,0,27,23,740,673,62,55,8,2,4,4,0,1,35,42,29,32,2,2,0,0,0,6,1,0,3,2,32,34,2,3,3,0,0,7,1,0 -050,01,093,Alabama,Marion County,11,2,1649,851,798,781,735,31,34,3,5,6,2,1,2,29,20,807,752,53,48,8,11,10,5,2,2,785,745,726,692,26,29,1,3,5,2,0,0,27,19,750,708,46,43,6,8,9,5,1,0,66,53,55,43,5,5,2,2,1,0,1,2,2,1,57,44,7,5,2,3,1,0,1,2 -050,01,093,Alabama,Marion County,11,3,1802,966,836,917,788,24,22,2,5,3,1,0,2,20,18,937,806,35,32,9,10,5,4,0,2,913,795,873,757,20,20,1,3,2,0,0,0,17,15,890,772,30,28,6,8,4,2,0,0,53,41,44,31,4,2,1,2,1,1,0,2,3,3,47,34,5,4,3,2,1,2,0,2 -050,01,093,Alabama,Marion County,11,4,1791,953,838,894,780,37,38,3,5,0,1,1,1,18,13,910,791,47,47,10,10,1,1,3,2,917,811,862,756,35,37,2,5,0,1,1,1,17,11,878,766,45,44,8,9,1,1,2,2,36,27,32,24,2,1,1,0,0,0,0,0,1,2,32,25,2,3,2,1,0,0,1,0 -050,01,093,Alabama,Marion County,11,5,1576,829,747,758,695,53,31,5,9,1,2,0,2,12,8,770,702,60,36,9,11,2,4,0,2,813,712,744,664,53,31,5,7,1,2,0,2,10,6,754,669,58,35,9,8,2,4,0,2,16,35,14,31,0,0,0,2,0,0,0,0,2,2,16,33,2,1,0,3,0,0,0,0 -050,01,093,Alabama,Marion County,11,6,1818,911,907,839,862,52,30,6,2,3,3,0,1,11,9,849,870,57,34,10,5,6,5,0,3,883,887,812,846,52,30,5,1,3,3,0,0,11,7,822,853,57,32,9,3,6,5,0,1,28,20,27,16,0,0,1,1,0,0,0,1,0,2,27,17,0,2,1,2,0,0,0,2 -050,01,093,Alabama,Marion County,11,7,1590,783,807,706,768,57,21,4,4,6,5,1,0,9,9,715,777,61,25,8,8,9,6,1,0,752,781,681,748,56,20,4,2,6,4,0,0,5,7,686,755,58,24,5,4,8,5,0,0,31,26,25,20,1,1,0,2,0,1,1,0,4,2,29,22,3,1,3,4,1,1,1,0 -050,01,093,Alabama,Marion County,11,8,1677,818,859,740,817,68,25,5,0,3,6,1,3,1,8,741,825,69,28,5,5,3,6,1,3,781,834,707,797,66,24,4,0,2,6,1,1,1,6,708,803,67,25,4,5,2,6,1,1,37,25,33,20,2,1,1,0,1,0,0,2,0,2,33,22,2,3,1,0,1,0,0,2 -050,01,093,Alabama,Marion County,11,9,1665,817,848,758,805,50,31,3,3,1,4,1,1,4,4,762,808,53,33,3,6,2,4,1,1,796,830,741,789,46,30,3,3,1,4,1,0,4,4,745,792,49,32,3,6,2,4,1,0,21,18,17,16,4,1,0,0,0,0,0,1,0,0,17,16,4,1,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,11,10,2054,1059,995,985,950,62,29,1,3,3,2,0,0,8,11,993,959,64,31,6,11,7,5,1,0,1032,971,962,928,60,29,1,2,3,2,0,0,6,10,968,936,60,31,4,10,6,4,0,0,27,24,23,22,2,0,0,1,0,0,0,0,2,1,25,23,4,0,2,1,1,1,1,0 -050,01,093,Alabama,Marion County,11,11,2079,1060,1019,980,968,61,36,6,4,4,3,0,0,9,8,989,975,61,38,15,11,4,3,0,0,1048,1008,968,957,61,36,6,4,4,3,0,0,9,8,977,964,61,38,15,11,4,3,0,0,12,11,12,11,0,0,0,0,0,0,0,0,0,0,12,11,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,11,12,2172,1061,1111,1000,1060,39,30,4,4,4,6,1,0,13,11,1012,1071,40,31,14,13,7,7,1,0,1044,1098,984,1048,39,30,4,4,4,5,0,0,13,11,996,1059,40,31,14,13,7,6,0,0,17,13,16,12,0,0,0,0,0,1,1,0,0,0,16,12,0,0,0,0,0,1,1,0 -050,01,093,Alabama,Marion County,11,13,1987,986,1001,938,955,32,31,6,5,2,5,0,0,8,5,946,959,35,32,11,10,2,5,0,0,978,993,931,947,31,31,6,5,2,5,0,0,8,5,939,951,34,32,11,10,2,5,0,0,8,8,7,8,1,0,0,0,0,0,0,0,0,0,7,8,1,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,11,14,1825,874,951,847,911,18,29,3,3,0,1,0,0,6,7,853,918,19,29,8,7,0,4,0,0,864,945,837,906,18,29,3,3,0,1,0,0,6,6,843,912,19,29,8,6,0,4,0,0,10,6,10,5,0,0,0,0,0,0,0,0,0,1,10,6,0,0,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,11,15,1624,745,879,718,854,17,15,4,4,1,1,0,0,5,5,722,857,18,16,9,8,1,2,0,1,738,875,711,851,17,15,4,4,1,1,0,0,5,4,715,854,18,16,9,8,1,1,0,0,7,4,7,3,0,0,0,0,0,0,0,0,0,1,7,3,0,0,0,0,0,1,0,1 -050,01,093,Alabama,Marion County,11,16,1265,566,699,545,674,11,16,2,3,0,1,0,1,8,4,552,677,12,17,9,7,1,1,0,1,559,696,539,672,11,16,2,3,0,1,0,0,7,4,546,675,12,17,8,7,0,1,0,0,7,3,6,2,0,0,0,0,0,0,0,1,1,0,6,2,0,0,1,0,1,0,0,1 -050,01,093,Alabama,Marion County,11,17,883,370,513,353,491,11,12,3,3,0,2,0,0,3,5,356,496,12,13,6,7,0,2,0,0,368,512,351,490,11,12,3,3,0,2,0,0,3,5,354,495,12,13,6,7,0,2,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,11,18,743,254,489,240,473,9,9,2,0,0,0,0,0,3,7,243,479,9,10,4,7,1,0,0,0,252,487,238,471,9,9,2,0,0,0,0,0,3,7,241,477,9,10,4,7,1,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,12,0,29826,14757,15069,13745,14264,703,490,64,59,38,55,8,14,199,187,13932,14436,792,576,164,155,57,74,14,20,14351,14719,13392,13976,680,477,58,51,36,46,4,5,181,164,13562,14126,761,553,150,135,53,62,9,8,406,350,353,288,23,13,6,8,2,9,4,9,18,23,370,310,31,23,14,20,4,12,5,12 -050,01,093,Alabama,Marion County,12,1,1584,851,733,771,659,46,42,1,0,1,9,1,0,31,23,800,679,70,61,10,2,2,13,1,1,819,693,745,630,44,40,1,0,1,3,0,0,28,20,771,647,67,57,8,1,2,7,0,1,32,40,26,29,2,2,0,0,0,6,1,0,3,3,29,32,3,4,2,1,0,6,1,0 -050,01,093,Alabama,Marion County,12,2,1681,829,852,764,783,26,39,3,5,9,1,2,1,25,23,788,806,45,55,8,10,10,3,3,1,777,803,721,743,22,34,1,3,8,1,1,0,24,22,744,765,40,50,6,7,9,3,2,0,52,49,43,40,4,5,2,2,1,0,1,1,1,1,44,41,5,5,2,3,1,0,1,1 -050,01,093,Alabama,Marion County,12,3,1786,946,840,886,791,29,20,2,4,2,2,0,2,27,21,911,809,46,35,10,12,6,3,0,2,887,801,838,760,24,20,1,2,1,1,0,0,23,18,860,775,40,34,6,8,4,2,0,0,59,39,48,31,5,0,1,2,1,1,0,2,4,3,51,34,6,1,4,4,2,1,0,2 -050,01,093,Alabama,Marion County,12,4,1765,926,839,876,781,33,34,2,6,1,1,0,3,14,14,889,793,41,44,8,11,2,3,1,3,891,807,845,755,31,31,1,6,1,1,0,2,13,12,857,765,38,40,7,11,2,2,1,2,35,32,31,26,2,3,1,0,0,0,0,1,1,2,32,28,3,4,1,0,0,1,0,1 -050,01,093,Alabama,Marion County,12,5,1593,851,742,779,694,54,32,3,5,1,1,1,2,13,8,790,702,60,34,10,7,3,4,1,3,828,716,758,670,54,32,3,5,1,1,1,2,11,6,767,676,59,34,10,6,2,3,1,3,23,26,21,24,0,0,0,0,0,0,0,0,2,2,23,26,1,0,0,1,1,1,0,0 -050,01,093,Alabama,Marion County,12,6,1778,888,890,812,844,62,32,7,3,1,4,0,0,6,7,818,850,64,37,10,5,2,6,0,0,861,869,786,826,62,32,6,2,1,4,0,0,6,5,792,830,64,36,9,2,2,6,0,0,27,21,26,18,0,0,1,1,0,0,0,0,0,2,26,20,0,1,1,3,0,0,0,0 -050,01,093,Alabama,Marion County,12,7,1672,843,829,763,790,59,26,4,1,5,1,0,1,12,10,775,800,62,31,12,6,5,1,1,1,818,807,743,773,58,25,4,1,5,1,0,0,8,7,751,780,59,28,11,5,5,1,0,0,25,22,20,17,1,1,0,0,0,0,0,1,4,3,24,20,3,3,1,1,0,0,1,1 -050,01,093,Alabama,Marion County,12,8,1652,796,856,721,810,64,22,5,3,2,9,2,2,2,10,722,820,65,23,7,10,2,9,2,4,758,828,686,790,63,21,4,1,2,8,1,0,2,8,687,798,64,21,6,8,2,8,1,1,38,28,35,20,1,1,1,2,0,1,1,2,0,2,35,22,1,2,1,2,0,1,1,3 -050,01,093,Alabama,Marion County,12,9,1658,826,832,762,790,57,29,2,3,1,4,1,1,3,5,765,795,58,30,3,7,2,4,1,1,801,816,742,775,52,28,2,3,1,4,1,1,3,5,745,780,53,29,3,7,2,4,1,1,25,16,20,15,5,1,0,0,0,0,0,0,0,0,20,15,5,1,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,12,10,2025,1051,974,976,921,62,36,2,3,4,3,0,1,7,10,983,930,64,39,7,10,4,5,0,1,1028,947,957,897,60,36,2,2,4,3,0,0,5,9,962,905,61,38,6,8,4,5,0,0,23,27,19,24,2,0,0,1,0,0,0,1,2,1,21,25,3,1,1,2,0,0,0,1 -050,01,093,Alabama,Marion County,12,11,2092,1055,1037,975,989,59,34,6,3,4,3,0,0,11,8,984,997,61,36,15,9,5,3,1,0,1036,1023,956,975,59,34,6,3,4,3,0,0,11,8,965,983,61,36,15,9,5,3,1,0,19,14,19,14,0,0,0,0,0,0,0,0,0,0,19,14,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,12,12,2144,1086,1058,1021,1011,43,28,4,5,4,5,0,0,14,9,1035,1020,45,30,13,11,7,6,0,0,1070,1048,1005,1002,43,28,4,5,4,4,0,0,14,9,1019,1011,45,30,13,11,7,5,0,0,16,10,16,9,0,0,0,0,0,1,0,0,0,0,16,9,0,0,0,0,0,1,0,0 -050,01,093,Alabama,Marion County,12,13,1995,973,1022,917,970,38,33,7,5,2,6,1,0,8,8,925,977,38,34,14,13,3,6,1,0,964,1013,910,961,37,33,7,5,2,6,0,0,8,8,918,968,37,34,14,13,3,6,0,0,9,9,7,9,1,0,0,0,0,0,1,0,0,0,7,9,1,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,12,14,1791,853,938,823,895,20,32,4,3,0,2,0,0,6,6,829,899,21,34,9,9,0,3,0,1,849,931,819,891,20,32,4,3,0,2,0,0,6,3,825,893,21,33,9,6,0,2,0,0,4,7,4,4,0,0,0,0,0,0,0,0,0,3,4,6,0,1,0,3,0,1,0,1 -050,01,093,Alabama,Marion County,12,15,1667,761,906,734,876,19,16,4,4,1,1,0,0,3,9,737,884,19,17,7,12,1,1,0,1,754,903,727,874,19,16,4,4,1,1,0,0,3,8,730,881,19,17,7,12,1,1,0,0,7,3,7,2,0,0,0,0,0,0,0,0,0,1,7,3,0,0,0,0,0,0,0,1 -050,01,093,Alabama,Marion County,12,16,1259,559,700,536,679,12,12,2,3,0,1,0,1,9,4,545,683,12,12,11,7,0,1,0,1,552,696,530,676,12,12,2,3,0,1,0,0,8,4,538,680,12,12,10,7,0,1,0,0,7,4,6,3,0,0,0,0,0,0,0,1,1,0,7,3,0,0,1,0,0,0,0,1 -050,01,093,Alabama,Marion County,12,17,934,393,541,375,517,10,15,4,3,0,2,0,0,4,4,378,520,11,16,6,7,1,2,1,0,390,540,372,516,10,15,4,3,0,2,0,0,4,4,375,519,11,16,6,7,1,2,1,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,12,18,750,270,480,254,464,10,8,2,0,0,0,0,0,4,8,258,472,10,8,4,7,2,1,1,0,268,478,252,462,10,8,2,0,0,0,0,0,4,8,256,470,10,8,4,7,2,1,1,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,13,0,29703,14707,14996,13678,14193,705,465,68,67,42,60,8,14,206,197,13868,14374,804,555,170,162,64,86,15,17,14313,14627,13342,13888,682,453,62,59,40,49,4,5,183,173,13510,14045,773,534,150,144,58,70,10,8,394,369,336,305,23,12,6,8,2,11,4,9,23,24,358,329,31,21,20,18,6,16,5,9 -050,01,093,Alabama,Marion County,13,1,1579,835,744,761,667,35,40,2,2,2,7,1,0,34,28,793,694,59,60,8,8,8,10,3,0,801,698,733,629,34,39,2,2,2,3,0,0,30,25,762,653,55,58,6,6,8,6,2,0,34,46,28,38,1,1,0,0,0,4,1,0,4,3,31,41,4,2,2,2,0,4,1,0 -050,01,093,Alabama,Marion County,13,2,1688,838,850,784,781,23,37,2,4,8,6,0,0,21,22,804,800,40,52,7,11,8,7,0,2,794,806,745,746,18,32,2,3,8,4,0,0,21,21,765,764,35,46,7,10,8,5,0,2,44,44,39,35,5,5,0,1,0,2,0,0,0,1,39,36,5,6,0,1,0,2,0,0 -050,01,093,Alabama,Marion County,13,3,1756,926,830,862,778,30,20,4,4,3,2,2,3,25,23,884,799,46,36,12,10,7,6,2,3,858,782,808,742,26,19,1,1,1,1,1,0,21,19,826,759,40,34,8,6,4,3,1,0,68,48,54,36,4,1,3,3,2,1,1,3,4,4,58,40,6,2,4,4,3,3,1,3 -050,01,093,Alabama,Marion County,13,4,1699,891,808,850,752,24,30,0,6,2,2,0,3,15,15,863,767,33,40,6,8,4,5,0,3,860,778,823,727,22,28,0,6,2,1,0,2,13,14,834,741,31,38,4,8,4,3,0,2,31,30,27,25,2,2,0,0,0,1,0,1,2,1,29,26,2,2,2,0,0,2,0,1 -050,01,093,Alabama,Marion County,13,5,1582,868,714,777,683,61,14,6,5,1,0,1,2,22,10,797,692,72,20,16,6,4,3,2,3,842,682,755,653,60,14,5,5,1,0,1,2,20,8,773,660,71,19,13,6,4,2,2,3,26,32,22,30,1,0,1,0,0,0,0,0,2,2,24,32,1,1,3,0,0,1,0,0 -050,01,093,Alabama,Marion County,13,6,1744,887,857,814,806,59,33,6,4,1,5,0,0,7,9,818,814,62,36,8,8,4,8,2,0,867,840,794,791,59,33,6,3,1,5,0,0,7,8,798,798,62,36,8,6,4,8,2,0,20,17,20,15,0,0,0,1,0,0,0,0,0,1,20,16,0,0,0,2,0,0,0,0 -050,01,093,Alabama,Marion County,13,7,1722,862,860,781,821,62,23,3,3,4,3,0,1,12,9,793,830,66,26,12,8,4,4,0,1,843,833,770,800,61,23,2,3,4,2,0,0,6,5,776,805,63,24,6,6,4,3,0,0,19,27,11,21,1,0,1,0,0,1,0,1,6,4,17,25,3,2,6,2,0,1,0,1 -050,01,093,Alabama,Marion County,13,8,1600,779,821,705,782,62,17,4,3,4,8,2,2,2,9,707,790,63,20,5,9,4,9,2,2,750,795,677,765,62,15,4,1,4,7,1,0,2,7,679,771,63,18,5,5,4,8,1,0,29,26,28,17,0,2,0,2,0,1,1,2,0,2,28,19,0,2,0,4,0,1,1,2 -050,01,093,Alabama,Marion County,13,9,1688,832,856,752,813,71,29,3,3,2,3,0,1,4,7,756,820,73,30,4,8,3,4,0,1,804,841,733,800,65,28,2,3,2,3,0,1,2,6,735,806,66,28,3,8,2,4,0,1,28,15,19,13,6,1,1,0,0,0,0,0,2,1,21,14,7,2,1,0,1,0,0,0 -050,01,093,Alabama,Marion County,13,10,1960,1019,941,939,892,64,37,4,0,4,3,1,1,7,8,946,899,65,39,10,6,5,4,2,1,992,916,916,869,62,37,4,0,4,3,1,0,5,7,921,875,63,38,8,6,4,4,1,0,27,25,23,23,2,0,0,0,0,0,0,1,2,1,25,24,2,1,2,0,1,0,1,1 -050,01,093,Alabama,Marion County,13,11,2067,1026,1041,951,987,57,34,5,6,3,4,0,0,10,10,961,996,60,36,12,12,3,7,0,0,1004,1023,929,970,57,34,5,5,3,4,0,0,10,10,939,979,60,36,12,11,3,7,0,0,22,18,22,17,0,0,0,1,0,0,0,0,0,0,22,17,0,0,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,13,12,2165,1109,1056,1038,1015,49,25,5,3,3,6,0,0,14,7,1051,1021,53,27,15,8,3,7,1,0,1099,1044,1028,1004,49,25,5,3,3,5,0,0,14,7,1041,1010,53,27,15,8,3,6,1,0,10,12,10,11,0,0,0,0,0,1,0,0,0,0,10,11,0,0,0,0,0,1,0,0 -050,01,093,Alabama,Marion County,13,13,2029,975,1054,924,991,35,39,5,9,4,5,1,0,6,10,930,1000,35,42,11,17,4,5,1,0,964,1045,914,982,35,39,5,9,4,5,0,0,6,10,920,991,35,42,11,17,4,5,0,0,11,9,10,9,0,0,0,0,0,0,1,0,0,0,10,9,0,0,0,0,0,0,1,0 -050,01,093,Alabama,Marion County,13,14,1779,873,906,836,872,25,25,7,2,0,3,0,0,5,4,840,876,26,25,12,5,0,4,0,0,866,898,830,866,24,25,7,2,0,3,0,0,5,2,834,868,25,25,12,4,0,3,0,0,7,8,6,6,1,0,0,0,0,0,0,0,0,2,6,8,1,0,0,1,0,1,0,0 -050,01,093,Alabama,Marion County,13,15,1716,781,935,758,895,15,26,3,4,1,1,0,0,4,9,762,904,15,27,6,12,2,1,0,0,774,932,751,894,15,26,3,4,1,1,0,0,4,7,755,901,15,26,6,11,2,1,0,0,7,3,7,1,0,0,0,0,0,0,0,0,0,2,7,3,0,1,0,1,0,0,0,0 -050,01,093,Alabama,Marion County,13,16,1251,544,707,518,683,14,13,2,5,0,0,0,1,10,5,527,687,16,14,11,10,1,0,0,1,538,701,513,678,14,13,2,5,0,0,0,0,9,5,521,682,16,14,11,10,0,0,0,0,6,6,5,5,0,0,0,0,0,0,0,1,1,0,6,5,0,0,0,0,1,0,0,1 -050,01,093,Alabama,Marion County,13,17,906,383,523,367,500,9,13,4,3,0,2,0,0,3,5,370,504,9,14,7,8,0,2,0,0,380,523,364,500,9,13,4,3,0,2,0,0,3,5,367,504,9,14,7,8,0,2,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0 -050,01,093,Alabama,Marion County,13,18,772,279,493,261,475,10,10,3,1,0,0,0,0,5,7,266,481,11,11,8,8,0,0,0,0,277,490,259,472,10,10,3,1,0,0,0,0,5,7,264,478,11,11,8,8,0,0,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,1,0,93019,45843,47176,43189,44804,948,820,605,510,261,257,120,105,720,680,43886,45452,1254,1075,971,876,351,342,162,141,39639,42142,37769,40365,734,664,289,281,238,239,38,25,571,568,38325,40914,932,855,609,604,298,301,58,44,6204,5034,5420,4439,214,156,316,229,23,18,82,80,149,112,5561,4538,322,220,362,272,53,41,104,97 -050,01,095,Alabama,Marshall County,1,1,6546,3333,3213,3052,2932,76,79,47,65,19,15,19,19,120,103,3171,3026,161,153,75,87,30,26,27,27,2393,2283,2218,2117,52,53,10,16,15,12,4,2,94,83,2311,2196,117,115,31,33,22,18,9,4,940,930,834,815,24,26,37,49,4,3,15,17,26,20,860,830,44,38,44,54,8,8,18,23 -050,01,095,Alabama,Marshall County,1,2,6362,3206,3156,2968,2916,72,63,45,40,18,27,15,14,88,96,3052,3006,129,121,75,68,24,41,18,19,2517,2490,2372,2338,43,42,12,12,14,21,6,4,70,73,2439,2406,91,83,34,34,17,33,7,7,689,666,596,578,29,21,33,28,4,6,9,10,18,23,613,600,38,38,41,34,7,8,11,12 -050,01,095,Alabama,Marshall County,1,3,6341,3318,3023,3078,2828,67,67,53,36,24,14,10,11,86,67,3162,2890,116,100,81,67,33,24,12,12,2817,2579,2652,2440,45,51,24,17,24,13,4,0,68,58,2718,2494,80,81,49,42,32,23,6,0,501,444,426,388,22,16,29,19,0,1,6,11,18,9,444,396,36,19,32,25,1,1,6,12 -050,01,095,Alabama,Marshall County,1,4,6568,3473,3095,3229,2899,92,81,41,31,24,8,14,10,73,66,3300,2963,127,119,73,47,33,17,16,15,2985,2720,2798,2558,82,73,20,17,20,7,2,5,63,60,2859,2617,112,107,48,32,27,14,4,10,488,375,431,341,10,8,21,14,4,1,12,5,10,6,441,346,15,12,25,15,6,3,12,5 -050,01,095,Alabama,Marshall County,1,5,5584,2907,2677,2673,2515,107,62,59,36,18,16,16,12,34,36,2706,2550,122,73,77,58,21,22,17,13,2152,2192,2010,2083,78,46,20,17,17,15,4,1,23,30,2033,2113,83,55,36,36,19,19,4,1,755,485,663,432,29,16,39,19,1,1,12,11,11,6,673,437,39,18,41,22,2,3,13,12 -050,01,095,Alabama,Marshall County,1,6,5805,2962,2843,2749,2694,82,52,59,48,18,13,15,11,39,25,2785,2717,102,60,79,66,26,18,21,15,2115,2239,2008,2155,54,34,14,19,18,12,4,4,17,15,2023,2169,56,35,28,32,20,13,6,5,847,604,741,539,28,18,45,29,0,1,11,7,22,10,762,548,46,25,51,34,6,5,15,10 -050,01,095,Alabama,Marshall County,1,7,5559,2814,2745,2633,2589,57,43,51,46,20,20,14,8,39,39,2671,2627,68,54,75,72,25,25,15,9,2199,2296,2090,2197,38,29,21,22,17,18,8,2,25,28,2114,2224,40,34,40,43,21,21,9,2,615,449,543,392,19,14,30,24,3,2,6,6,14,11,557,403,28,20,35,29,4,4,6,7 -050,01,095,Alabama,Marshall County,1,8,6211,3067,3144,2851,2951,79,68,59,42,33,34,5,7,40,42,2891,2991,89,78,86,70,44,40,10,10,2601,2760,2463,2626,61,51,19,20,30,33,0,2,28,28,2491,2652,62,53,39,43,37,37,1,3,466,384,388,325,18,17,40,22,3,1,5,5,12,14,400,339,27,25,47,27,7,3,9,7 -050,01,095,Alabama,Marshall County,1,9,5968,3031,2937,2846,2773,84,65,35,40,27,17,3,7,36,35,2880,2808,94,70,58,66,31,20,9,8,2698,2721,2561,2587,69,57,15,29,25,16,2,3,26,29,2587,2616,70,59,37,52,26,19,4,4,333,216,285,186,15,8,20,11,2,1,1,4,10,6,293,192,24,11,21,14,5,1,5,4 -050,01,095,Alabama,Marshall County,1,10,6606,3283,3323,3133,3195,62,47,34,29,21,22,4,3,29,27,3161,3221,64,48,59,51,26,24,6,6,3069,3158,2943,3039,52,44,22,25,21,22,3,1,28,27,2970,3065,53,45,46,47,25,24,4,4,214,165,190,156,10,3,12,4,0,0,1,2,1,0,191,156,11,3,13,4,1,0,2,2 -050,01,095,Alabama,Marshall County,1,11,6402,3206,3196,3072,3073,41,41,32,31,12,18,4,3,45,30,3114,3102,45,42,68,56,19,22,5,5,3086,3085,2966,2974,38,40,28,25,11,17,1,1,42,28,3005,3002,41,40,62,49,18,20,2,2,120,111,106,99,3,1,4,6,1,1,3,2,3,2,109,100,4,2,6,7,1,2,3,3 -050,01,095,Alabama,Marshall County,1,12,5786,2765,3021,2642,2908,54,48,35,17,7,15,0,0,27,33,2667,2940,58,48,58,49,10,17,3,0,2660,2946,2543,2843,51,42,34,15,7,15,0,0,25,31,2568,2874,53,42,57,46,8,15,1,0,105,75,99,65,3,6,1,2,0,0,0,0,2,2,99,66,5,6,1,3,2,2,2,0 -050,01,095,Alabama,Marshall County,1,13,5419,2547,2872,2475,2774,22,34,20,16,5,20,1,0,24,28,2499,2801,23,37,42,38,7,23,1,1,2486,2827,2419,2732,22,33,16,15,5,20,0,0,24,27,2443,2759,23,35,38,36,7,23,0,1,61,45,56,42,0,1,4,1,0,0,1,0,0,1,56,42,0,2,4,2,0,0,1,0 -050,01,095,Alabama,Marshall County,1,14,4523,2138,2385,2081,2336,25,19,15,11,6,4,0,0,11,15,2092,2351,25,19,23,24,9,7,0,0,2101,2353,2050,2305,22,19,14,11,5,4,0,0,10,14,2060,2319,22,19,22,24,7,6,0,0,37,32,31,31,3,0,1,0,1,0,0,0,1,1,32,32,3,0,1,0,2,1,0,0 -050,01,095,Alabama,Marshall County,1,15,3490,1585,1905,1547,1865,15,16,7,9,2,4,0,0,14,11,1561,1876,15,16,18,19,4,4,1,1,1570,1887,1533,1848,14,16,7,8,2,4,0,0,14,11,1547,1859,14,16,18,18,4,4,1,1,15,18,14,17,1,0,0,1,0,0,0,0,0,0,14,17,1,0,0,1,0,0,0,0 -050,01,095,Alabama,Marshall County,1,16,2675,1116,1559,1097,1508,4,21,8,8,3,9,0,0,4,13,1101,1521,4,21,12,20,3,10,0,0,1106,1544,1087,1494,4,21,8,8,3,9,0,0,4,12,1091,1506,4,21,12,19,3,10,0,0,10,15,10,14,0,0,0,0,0,0,0,0,0,1,10,15,0,0,0,1,0,0,0,0 -050,01,095,Alabama,Marshall County,1,17,1781,702,1079,687,1061,4,6,3,4,2,1,0,0,6,7,692,1068,6,7,6,11,4,2,1,0,698,1068,684,1050,4,6,3,4,2,1,0,0,5,7,689,1057,5,7,6,11,3,2,0,0,4,11,3,11,0,0,0,0,0,0,0,0,1,0,3,11,1,0,0,0,1,0,1,0 -050,01,095,Alabama,Marshall County,1,18,1393,390,1003,376,987,5,8,2,1,2,0,0,0,5,7,381,994,6,9,6,7,2,0,0,0,386,994,372,979,5,7,2,1,2,0,0,0,5,7,377,986,6,8,6,7,2,0,0,0,4,9,4,8,0,1,0,0,0,0,0,0,0,0,4,8,0,1,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,2,0,93017,45843,47174,43189,44802,948,820,605,510,261,257,120,105,720,680,43886,45450,1254,1075,971,876,351,342,162,141,39639,42140,37769,40363,734,664,289,281,238,239,38,25,571,568,38325,40912,932,855,609,604,298,301,58,44,6204,5034,5420,4439,214,156,316,229,23,18,82,80,149,112,5561,4538,322,220,362,272,53,41,104,97 -050,01,095,Alabama,Marshall County,2,1,6545,3333,3212,3052,2931,76,79,47,65,19,15,19,19,120,103,3171,3025,161,153,75,87,30,26,27,27,2393,2282,2218,2116,52,53,10,16,15,12,4,2,94,83,2311,2195,117,115,31,33,22,18,9,4,940,930,834,815,24,26,37,49,4,3,15,17,26,20,860,830,44,38,44,54,8,8,18,23 -050,01,095,Alabama,Marshall County,2,2,6362,3206,3156,2968,2916,72,63,45,40,18,27,15,14,88,96,3052,3006,129,121,75,68,24,41,18,19,2517,2490,2372,2338,43,42,12,12,14,21,6,4,70,73,2439,2406,91,83,34,34,17,33,7,7,689,666,596,578,29,21,33,28,4,6,9,10,18,23,613,600,38,38,41,34,7,8,11,12 -050,01,095,Alabama,Marshall County,2,3,6341,3318,3023,3078,2828,67,67,53,36,24,14,10,11,86,67,3162,2890,116,100,81,67,33,24,12,12,2817,2579,2652,2440,45,51,24,17,24,13,4,0,68,58,2718,2494,80,81,49,42,32,23,6,0,501,444,426,388,22,16,29,19,0,1,6,11,18,9,444,396,36,19,32,25,1,1,6,12 -050,01,095,Alabama,Marshall County,2,4,6566,3472,3094,3228,2898,92,81,41,31,24,8,14,10,73,66,3299,2962,127,119,73,47,33,17,16,15,2984,2719,2797,2557,82,73,20,17,20,7,2,5,63,60,2858,2616,112,107,48,32,27,14,4,10,488,375,431,341,10,8,21,14,4,1,12,5,10,6,441,346,15,12,25,15,6,3,12,5 -050,01,095,Alabama,Marshall County,2,5,5583,2906,2677,2672,2515,107,62,59,36,18,16,16,12,34,36,2705,2550,122,73,77,58,21,22,17,13,2151,2192,2009,2083,78,46,20,17,17,15,4,1,23,30,2032,2113,83,55,36,36,19,19,4,1,755,485,663,432,29,16,39,19,1,1,12,11,11,6,673,437,39,18,41,22,2,3,13,12 -050,01,095,Alabama,Marshall County,2,6,5805,2962,2843,2749,2694,82,52,59,48,18,13,15,11,39,25,2785,2717,102,60,79,66,26,18,21,15,2115,2239,2008,2155,54,34,14,19,18,12,4,4,17,15,2023,2169,56,35,28,32,20,13,6,5,847,604,741,539,28,18,45,29,0,1,11,7,22,10,762,548,46,25,51,34,6,5,15,10 -050,01,095,Alabama,Marshall County,2,7,5560,2815,2745,2634,2589,57,43,51,46,20,20,14,8,39,39,2672,2627,68,54,75,72,25,25,15,9,2200,2296,2091,2197,38,29,21,22,17,18,8,2,25,28,2115,2224,40,34,40,43,21,21,9,2,615,449,543,392,19,14,30,24,3,2,6,6,14,11,557,403,28,20,35,29,4,4,6,7 -050,01,095,Alabama,Marshall County,2,8,6208,3065,3143,2849,2950,79,68,59,42,33,34,5,7,40,42,2889,2990,89,78,86,70,44,40,10,10,2599,2759,2461,2625,61,51,19,20,30,33,0,2,28,28,2489,2651,62,53,39,43,37,37,1,3,466,384,388,325,18,17,40,22,3,1,5,5,12,14,400,339,27,25,47,27,7,3,9,7 -050,01,095,Alabama,Marshall County,2,9,5969,3032,2937,2847,2773,84,65,35,40,27,17,3,7,36,35,2881,2808,94,70,58,66,31,20,9,8,2699,2721,2562,2587,69,57,15,29,25,16,2,3,26,29,2588,2616,70,59,37,52,26,19,4,4,333,216,285,186,15,8,20,11,2,1,1,4,10,6,293,192,24,11,21,14,5,1,5,4 -050,01,095,Alabama,Marshall County,2,10,6606,3283,3323,3133,3195,62,47,34,29,21,22,4,3,29,27,3161,3221,64,48,59,51,26,24,6,6,3069,3158,2943,3039,52,44,22,25,21,22,3,1,28,27,2970,3065,53,45,46,47,25,24,4,4,214,165,190,156,10,3,12,4,0,0,1,2,1,0,191,156,11,3,13,4,1,0,2,2 -050,01,095,Alabama,Marshall County,2,11,6403,3207,3196,3073,3073,41,41,32,31,12,18,4,3,45,30,3115,3102,45,42,68,56,19,22,5,5,3087,3085,2967,2974,38,40,28,25,11,17,1,1,42,28,3006,3002,41,40,62,49,18,20,2,2,120,111,106,99,3,1,4,6,1,1,3,2,3,2,109,100,4,2,6,7,1,2,3,3 -050,01,095,Alabama,Marshall County,2,12,5786,2765,3021,2642,2908,54,48,35,17,7,15,0,0,27,33,2667,2940,58,48,58,49,10,17,3,0,2660,2946,2543,2843,51,42,34,15,7,15,0,0,25,31,2568,2874,53,42,57,46,8,15,1,0,105,75,99,65,3,6,1,2,0,0,0,0,2,2,99,66,5,6,1,3,2,2,2,0 -050,01,095,Alabama,Marshall County,2,13,5420,2547,2873,2475,2775,22,34,20,16,5,20,1,0,24,28,2499,2802,23,37,42,38,7,23,1,1,2486,2828,2419,2733,22,33,16,15,5,20,0,0,24,27,2443,2760,23,35,38,36,7,23,0,1,61,45,56,42,0,1,4,1,0,0,1,0,0,1,56,42,0,2,4,2,0,0,1,0 -050,01,095,Alabama,Marshall County,2,14,4523,2138,2385,2081,2336,25,19,15,11,6,4,0,0,11,15,2092,2351,25,19,23,24,9,7,0,0,2101,2353,2050,2305,22,19,14,11,5,4,0,0,10,14,2060,2319,22,19,22,24,7,6,0,0,37,32,31,31,3,0,1,0,1,0,0,0,1,1,32,32,3,0,1,0,2,1,0,0 -050,01,095,Alabama,Marshall County,2,15,3490,1585,1905,1547,1865,15,16,7,9,2,4,0,0,14,11,1561,1876,15,16,18,19,4,4,1,1,1570,1887,1533,1848,14,16,7,8,2,4,0,0,14,11,1547,1859,14,16,18,18,4,4,1,1,15,18,14,17,1,0,0,1,0,0,0,0,0,0,14,17,1,0,0,1,0,0,0,0 -050,01,095,Alabama,Marshall County,2,16,2676,1117,1559,1098,1508,4,21,8,8,3,9,0,0,4,13,1102,1521,4,21,12,20,3,10,0,0,1107,1544,1088,1494,4,21,8,8,3,9,0,0,4,12,1092,1506,4,21,12,19,3,10,0,0,10,15,10,14,0,0,0,0,0,0,0,0,0,1,10,15,0,0,0,1,0,0,0,0 -050,01,095,Alabama,Marshall County,2,17,1781,702,1079,687,1061,4,6,3,4,2,1,0,0,6,7,692,1068,6,7,6,11,4,2,1,0,698,1068,684,1050,4,6,3,4,2,1,0,0,5,7,689,1057,5,7,6,11,3,2,0,0,4,11,3,11,0,0,0,0,0,0,0,0,1,0,3,11,1,0,0,0,1,0,1,0 -050,01,095,Alabama,Marshall County,2,18,1393,390,1003,376,987,5,8,2,1,2,0,0,0,5,7,381,994,6,9,6,7,2,0,0,0,386,994,372,979,5,7,2,1,2,0,0,0,5,7,377,986,6,8,6,7,2,0,0,0,4,9,4,8,0,1,0,0,0,0,0,0,0,0,4,8,0,1,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,3,0,93119,45871,47248,43224,44875,947,814,598,503,259,268,119,107,724,681,43905,45506,1234,1090,995,879,335,343,152,128,39658,42162,37780,40378,737,660,292,281,236,250,39,26,574,567,38331,40906,963,896,600,593,288,302,54,38,6213,5086,5444,4497,210,154,306,222,23,18,80,81,150,114,5574,4600,271,194,395,286,47,41,98,90 -050,01,095,Alabama,Marshall County,3,1,6511,3315,3196,3034,2924,78,78,47,60,18,17,19,16,119,101,3150,3021,161,148,76,80,30,28,21,20,2378,2264,2200,2101,55,51,11,16,14,14,5,2,93,80,2291,2177,123,114,28,29,23,21,6,3,937,932,834,823,23,27,36,44,4,3,14,14,26,21,859,844,38,34,48,51,7,7,15,17 -050,01,095,Alabama,Marshall County,3,2,6385,3218,3167,2974,2922,73,64,47,41,20,29,15,15,89,96,3062,3010,129,127,70,71,29,40,18,17,2513,2483,2363,2327,45,42,13,13,16,23,7,4,69,74,2431,2396,91,93,27,32,25,30,8,6,705,684,611,595,28,22,34,28,4,6,8,11,20,22,631,614,38,34,43,39,4,10,10,11 -050,01,095,Alabama,Marshall County,3,3,6334,3295,3039,3067,2843,62,66,47,37,23,16,10,11,86,66,3149,2906,108,100,80,63,32,25,13,11,2791,2579,2630,2440,42,50,23,18,23,15,4,0,69,56,2698,2494,82,83,46,37,30,21,5,0,504,460,437,403,20,16,24,19,0,1,6,11,17,10,451,412,26,17,34,26,2,4,8,11 -050,01,095,Alabama,Marshall County,3,4,6494,3435,3059,3189,2857,92,83,41,32,24,9,14,11,75,67,3258,2919,127,116,76,63,35,16,17,13,2956,2685,2770,2521,81,73,19,18,20,8,2,5,64,60,2830,2577,113,105,47,42,27,15,4,7,479,374,419,336,11,10,22,14,4,1,12,6,11,7,428,342,14,11,29,21,8,1,13,6 -050,01,095,Alabama,Marshall County,3,5,5647,2946,2701,2719,2546,106,58,55,33,17,16,15,12,34,36,2753,2576,119,78,73,53,21,18,15,14,2215,2223,2073,2117,79,45,19,15,16,15,3,1,25,30,2098,2143,88,61,32,32,19,16,3,2,731,478,646,429,27,13,36,18,1,1,12,11,9,6,655,433,31,17,41,21,2,2,12,12 -050,01,095,Alabama,Marshall County,3,6,5801,2959,2842,2742,2688,85,52,60,47,17,15,15,13,40,27,2777,2712,97,63,85,62,23,20,21,15,2118,2246,2008,2156,57,34,15,20,17,14,4,5,17,17,2025,2172,63,40,25,30,18,16,5,5,841,596,734,532,28,18,45,27,0,1,11,8,23,10,752,540,34,23,60,32,5,4,16,10 -050,01,095,Alabama,Marshall County,3,7,5599,2838,2761,2655,2604,61,42,48,47,20,20,14,8,40,40,2691,2643,71,57,75,71,25,25,17,8,2210,2304,2097,2205,41,29,21,21,17,18,8,2,26,29,2121,2233,46,40,39,38,21,21,9,2,628,457,558,399,20,13,27,26,3,2,6,6,14,11,570,410,25,17,36,33,4,4,8,6 -050,01,095,Alabama,Marshall County,3,8,6121,3014,3107,2806,2919,76,64,57,42,33,34,5,7,37,41,2839,2953,84,74,89,73,41,40,7,10,2553,2718,2419,2588,59,48,19,20,30,33,0,2,26,27,2443,2610,62,55,42,43,33,36,0,3,461,389,387,331,17,16,38,22,3,1,5,5,11,14,396,343,22,19,47,30,8,4,7,7 -050,01,095,Alabama,Marshall County,3,9,6033,3063,2970,2871,2803,85,66,39,39,28,18,3,8,37,36,2901,2835,91,72,71,65,31,24,6,11,2720,2745,2579,2609,69,58,17,28,26,17,2,3,27,30,2603,2635,72,63,41,50,28,22,3,6,343,225,292,194,16,8,22,11,2,1,1,5,10,6,298,200,19,9,30,15,3,2,3,5 -050,01,095,Alabama,Marshall County,3,10,6598,3276,3322,3124,3195,64,49,34,28,21,22,4,3,29,25,3151,3217,68,51,57,52,24,23,5,4,3058,3153,2930,3035,54,46,22,24,21,22,3,1,28,25,2956,3057,57,48,45,48,24,23,4,2,218,169,194,160,10,3,12,4,0,0,1,2,1,0,195,160,11,3,12,4,0,0,1,2 -050,01,095,Alabama,Marshall County,3,11,6436,3221,3215,3087,3090,40,41,32,32,13,18,4,3,45,31,3130,3119,44,43,69,60,17,21,6,3,3096,3103,2976,2990,37,40,28,26,12,17,1,1,42,29,3016,3017,41,42,63,52,15,20,3,1,125,112,111,100,3,1,4,6,1,1,3,2,3,2,114,102,3,1,6,8,2,1,3,2 -050,01,095,Alabama,Marshall County,3,12,5809,2792,3017,2672,2906,52,44,34,17,6,16,0,0,28,34,2698,2939,55,48,60,47,6,19,1,1,2685,2940,2572,2838,49,39,33,15,6,16,0,0,25,32,2595,2869,51,42,57,43,6,18,1,0,107,77,100,68,3,5,1,2,0,0,0,0,3,2,103,70,4,6,3,4,0,1,0,1 -050,01,095,Alabama,Marshall County,3,13,5467,2560,2907,2485,2809,24,35,21,16,5,19,1,0,24,28,2509,2837,25,36,44,41,5,21,1,0,2497,2859,2426,2764,24,34,18,15,5,19,0,0,24,27,2450,2791,25,34,41,40,5,21,0,0,63,48,59,45,0,1,3,1,0,0,1,0,0,1,59,46,0,2,3,1,0,0,1,0 -050,01,095,Alabama,Marshall County,3,14,4515,2128,2387,2073,2335,22,20,16,11,6,5,0,0,11,16,2083,2351,25,22,23,24,7,6,2,0,2090,2355,2042,2304,19,20,14,11,5,5,0,0,10,15,2051,2319,21,22,20,24,6,5,2,0,38,32,31,31,3,0,2,0,1,0,0,0,1,1,32,32,4,0,3,0,1,1,0,0 -050,01,095,Alabama,Marshall County,3,15,3502,1596,1906,1557,1868,16,15,7,8,1,3,0,0,15,12,1572,1878,17,17,21,20,1,3,0,0,1581,1888,1543,1850,15,15,7,8,1,3,0,0,15,12,1558,1860,16,17,21,20,1,3,0,0,15,18,14,18,1,0,0,0,0,0,0,0,0,0,14,18,1,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,3,16,2677,1120,1557,1101,1506,4,22,8,8,3,10,0,0,4,11,1105,1516,4,23,11,18,3,11,1,0,1111,1542,1092,1492,4,22,8,8,3,10,0,0,4,10,1096,1501,4,23,11,17,3,11,1,0,9,15,9,14,0,0,0,0,0,0,0,0,0,1,9,15,0,0,0,1,0,0,0,0 -050,01,095,Alabama,Marshall County,3,17,1790,701,1089,688,1071,2,7,3,4,2,1,0,0,6,6,693,1077,3,7,8,8,3,3,1,0,696,1078,684,1060,2,7,3,4,2,1,0,0,5,6,689,1066,2,7,8,8,2,3,0,0,5,11,4,11,0,0,0,0,0,0,0,0,1,0,4,11,1,0,0,0,1,0,1,0 -050,01,095,Alabama,Marshall County,3,18,1400,394,1006,380,989,5,8,2,1,2,0,0,0,5,8,384,997,6,8,7,8,2,0,0,1,390,997,376,981,5,7,2,1,2,0,0,0,5,8,380,989,6,7,7,8,2,0,0,1,4,9,4,8,0,1,0,0,0,0,0,0,0,0,4,8,0,1,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,4,0,93899,46286,47613,43506,45136,1066,865,582,496,276,318,128,118,728,680,44182,45777,1366,1143,986,849,359,400,153,138,39877,42370,37922,40479,784,714,295,277,252,298,47,37,577,565,38468,41017,1022,949,607,564,309,361,56,51,6409,5243,5584,4657,282,151,287,219,24,20,81,81,151,115,5714,4760,344,194,379,285,50,39,97,87 -050,01,095,Alabama,Marshall County,4,1,6428,3258,3170,3005,2914,79,71,34,46,17,26,18,14,105,99,3106,3010,152,137,63,67,25,40,22,18,2289,2263,2121,2093,60,54,8,14,13,23,6,3,81,76,2200,2167,123,112,25,25,18,31,7,4,969,907,884,821,19,17,26,32,4,3,12,11,24,23,906,843,29,25,38,42,7,9,15,14 -050,01,095,Alabama,Marshall County,4,2,6579,3344,3235,3079,2962,82,83,49,42,23,35,16,18,95,95,3169,3056,145,140,75,73,34,44,19,18,2559,2485,2389,2306,53,56,13,10,21,29,9,7,74,77,2461,2383,105,107,28,31,30,35,9,7,785,750,690,656,29,27,36,32,2,6,7,11,21,18,708,673,40,33,47,42,4,9,10,11 -050,01,095,Alabama,Marshall County,4,3,6482,3368,3114,3087,2910,116,65,47,35,22,22,12,14,84,68,3167,2975,162,106,80,56,30,30,14,16,2753,2597,2607,2452,32,50,22,16,20,20,4,3,68,56,2673,2505,71,86,45,31,27,26,5,5,615,517,480,458,84,15,25,19,2,2,8,11,16,12,494,470,91,20,35,25,3,4,9,11 -050,01,095,Alabama,Marshall County,4,4,6256,3330,2926,3067,2711,103,80,44,35,27,13,14,11,75,76,3137,2783,142,121,82,64,35,22,14,13,2876,2569,2689,2398,82,67,20,20,22,12,2,4,61,68,2747,2463,115,105,47,44,27,19,2,6,454,357,378,313,21,13,24,15,5,1,12,7,14,8,390,320,27,16,35,20,8,3,12,7 -050,01,095,Alabama,Marshall County,4,5,5976,3148,2828,2921,2661,103,69,53,36,15,17,17,11,39,34,2954,2694,125,83,73,51,19,22,17,12,2471,2377,2315,2255,83,59,20,16,13,15,7,3,33,29,2342,2284,103,70,36,28,16,20,7,4,677,451,606,406,20,10,33,20,2,2,10,8,6,5,612,410,22,13,37,23,3,2,10,8 -050,01,095,Alabama,Marshall County,4,6,5850,2946,2904,2708,2735,108,63,50,44,21,18,17,17,42,27,2746,2757,124,73,74,60,32,24,20,18,2150,2303,2010,2201,74,44,19,17,21,17,5,7,21,17,2029,2214,81,50,30,27,26,21,5,8,796,601,698,534,34,19,31,27,0,1,12,10,21,10,717,543,43,23,44,33,6,3,15,10 -050,01,095,Alabama,Marshall County,4,7,5682,2890,2792,2700,2625,74,45,42,51,16,18,16,10,42,43,2738,2664,83,58,73,79,21,24,18,12,2228,2303,2112,2197,53,32,17,23,13,17,8,3,25,31,2135,2226,56,42,36,42,16,22,10,4,662,489,588,428,21,13,25,28,3,1,8,7,17,12,603,438,27,16,37,37,5,2,8,8 -050,01,095,Alabama,Marshall County,4,8,5748,2822,2926,2633,2760,66,54,51,38,32,37,3,6,37,31,2665,2785,73,64,78,58,39,41,5,9,2382,2528,2254,2412,51,41,19,20,31,35,0,2,27,18,2277,2427,56,45,38,32,37,38,1,4,440,398,379,348,15,13,32,18,1,2,3,4,10,13,388,358,17,19,40,26,2,3,4,5 -050,01,095,Alabama,Marshall County,4,9,6291,3169,3122,2958,2927,81,83,49,40,36,27,5,8,40,37,2991,2958,86,92,78,67,46,34,9,10,2796,2876,2649,2718,64,73,21,27,33,26,1,1,28,31,2676,2744,66,80,43,49,38,33,1,2,373,246,309,209,17,10,28,13,3,1,4,7,12,6,315,214,20,12,35,18,8,1,8,8 -050,01,095,Alabama,Marshall County,4,10,6472,3220,3252,3048,3118,81,54,33,26,23,31,4,5,31,18,3079,3135,83,57,59,41,27,33,4,5,2988,3073,2843,2952,70,49,19,21,23,31,4,3,29,17,2872,2968,71,51,44,36,27,33,4,3,232,179,205,166,11,5,14,5,0,0,0,2,2,1,207,167,12,6,15,5,0,0,0,2 -050,01,095,Alabama,Marshall County,4,11,6549,3256,3293,3111,3167,48,39,35,36,17,14,3,4,42,33,3153,3199,53,42,70,63,20,17,4,5,3111,3174,2982,3061,45,38,28,30,17,13,0,1,39,31,3021,3091,48,40,61,56,20,16,1,2,145,119,129,106,3,1,7,6,0,1,3,3,3,2,132,108,5,2,9,7,0,1,3,3 -050,01,095,Alabama,Marshall County,4,12,5900,2888,3012,2767,2902,49,39,36,17,7,20,2,0,27,34,2791,2936,54,41,60,47,7,22,4,1,2769,2925,2657,2824,46,35,34,14,6,20,1,0,25,32,2680,2856,49,37,57,42,6,22,2,1,119,87,110,78,3,4,2,3,1,0,1,0,2,2,111,80,5,4,3,5,1,0,2,0 -050,01,095,Alabama,Marshall County,4,13,5671,2634,3037,2548,2930,32,46,22,18,6,17,1,0,25,26,2572,2955,33,48,44,40,9,20,1,0,2565,2980,2484,2878,31,43,20,17,6,17,0,0,24,25,2507,2902,32,45,42,39,8,19,0,0,69,57,64,52,1,3,2,1,0,0,1,0,1,1,65,53,1,3,2,1,1,1,1,0 -050,01,095,Alabama,Marshall County,4,14,4506,2117,2389,2065,2327,21,24,13,11,6,7,0,0,12,20,2075,2346,23,26,24,28,7,9,0,1,2083,2357,2037,2296,18,24,12,11,5,7,0,0,11,19,2046,2314,20,26,23,27,5,9,0,1,34,32,28,31,3,0,1,0,1,0,0,0,1,1,29,32,3,0,1,1,2,0,0,0 -050,01,095,Alabama,Marshall County,4,15,3521,1609,1912,1570,1876,13,10,9,7,1,5,0,0,16,14,1585,1889,16,11,25,21,1,5,0,0,1591,1893,1554,1857,12,10,8,7,1,5,0,0,16,14,1569,1870,15,11,24,21,1,5,0,0,18,19,16,19,1,0,1,0,0,0,0,0,0,0,16,19,1,0,1,0,0,0,0,0 -050,01,095,Alabama,Marshall County,4,16,2743,1155,1588,1135,1540,5,21,9,9,2,9,0,0,4,9,1138,1548,6,23,12,16,2,10,1,0,1147,1573,1127,1526,5,21,9,9,2,9,0,0,4,8,1130,1534,6,22,12,16,2,9,1,0,8,15,8,14,0,0,0,0,0,0,0,0,0,1,8,14,0,1,0,0,0,1,0,0 -050,01,095,Alabama,Marshall County,4,17,1805,710,1095,695,1073,2,10,4,5,3,2,0,0,6,5,701,1078,3,11,9,9,3,2,0,0,702,1087,688,1065,2,10,4,5,3,2,0,0,5,5,693,1070,2,11,9,9,3,2,0,0,8,8,7,8,0,0,0,0,0,0,0,0,1,0,8,8,1,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,4,18,1440,422,1018,409,998,3,9,2,0,2,0,0,0,6,11,415,1009,3,10,7,9,2,1,1,0,417,1007,404,988,3,8,2,0,2,0,0,0,6,11,410,999,3,9,7,9,2,1,1,0,5,11,5,10,0,1,0,0,0,0,0,0,0,0,5,10,0,1,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,5,0,94264,46454,47810,43496,45292,1216,862,559,469,285,345,126,125,772,717,44204,45962,1549,1167,976,848,374,427,151,142,39909,42537,37861,40600,837,710,282,262,263,325,52,45,614,595,38437,41166,1101,960,605,569,323,385,62,55,6545,5273,5635,4692,379,152,277,207,22,20,74,80,158,122,5767,4796,448,207,371,279,51,42,89,87 -050,01,095,Alabama,Marshall County,5,1,6354,3258,3096,3015,2854,73,70,29,36,20,25,12,15,109,96,3119,2946,152,137,55,59,33,36,13,17,2323,2233,2142,2070,62,53,8,10,17,22,6,6,88,72,2226,2141,129,108,24,22,27,28,6,6,935,863,873,784,11,17,21,26,3,3,6,9,21,24,893,805,23,29,31,37,6,8,7,11 -050,01,095,Alabama,Marshall County,5,2,6713,3401,3312,3133,3027,81,86,42,46,21,34,18,16,106,103,3230,3128,152,155,70,72,33,45,22,16,2573,2516,2396,2324,54,61,13,9,19,28,10,7,81,87,2474,2410,112,122,29,28,28,37,11,7,828,796,737,703,27,25,29,37,2,6,8,9,25,16,756,718,40,33,41,44,5,8,11,9 -050,01,095,Alabama,Marshall County,5,3,6529,3377,3152,3041,2939,170,51,43,33,22,29,11,16,90,84,3127,3018,219,103,75,65,33,38,14,17,2695,2607,2536,2456,45,39,16,14,21,27,3,3,74,68,2608,2521,89,81,40,37,29,34,4,3,682,545,505,483,125,12,27,19,1,2,8,13,16,16,519,497,130,22,35,28,4,4,10,14 -050,01,095,Alabama,Marshall County,5,4,6189,3270,2919,2967,2701,157,84,39,31,24,16,13,12,70,75,3032,2771,196,122,74,62,30,25,16,14,2782,2560,2621,2390,71,67,13,18,20,16,2,5,55,64,2674,2451,102,101,36,43,23,22,3,7,488,359,346,311,86,17,26,13,4,0,11,7,15,11,358,320,94,21,38,19,7,3,13,7 -050,01,095,Alabama,Marshall County,5,5,5967,3139,2828,2898,2665,102,70,50,28,20,18,16,11,53,36,2940,2698,129,87,77,45,28,21,18,13,2521,2429,2347,2306,84,60,21,11,16,15,7,3,46,34,2386,2337,107,76,44,27,22,18,8,5,618,399,551,359,18,10,29,17,4,3,9,8,7,2,554,361,22,11,33,18,6,3,10,8 -050,01,095,Alabama,Marshall County,5,6,5859,2973,2886,2748,2714,105,69,46,32,17,22,18,17,39,32,2782,2744,118,81,72,49,24,30,20,18,2205,2309,2068,2193,76,51,17,14,17,21,7,7,20,23,2087,2214,82,59,29,26,19,26,8,7,768,577,680,521,29,18,29,18,0,1,11,10,19,9,695,530,36,22,43,23,5,4,12,11 -050,01,095,Alabama,Marshall County,5,7,5759,2905,2854,2681,2679,102,52,43,52,17,19,16,14,46,38,2720,2710,116,65,76,76,26,25,17,16,2213,2333,2075,2220,74,39,16,23,14,18,8,6,26,27,2096,2243,81,49,34,39,21,23,8,6,692,521,606,459,28,13,27,29,3,1,8,8,20,11,624,467,35,16,42,37,5,2,9,10 -050,01,095,Alabama,Marshall County,5,8,5595,2766,2829,2576,2680,71,38,46,40,26,33,6,5,41,33,2613,2706,82,47,74,65,31,40,7,7,2314,2443,2179,2344,57,26,17,19,25,31,3,3,33,20,2208,2361,65,28,41,35,29,34,4,5,452,386,397,336,14,12,29,21,1,2,3,2,8,13,405,345,17,19,33,30,2,6,3,2 -050,01,095,Alabama,Marshall County,5,9,6366,3169,3197,2947,2975,81,89,50,40,42,40,6,10,43,43,2986,3014,90,98,82,77,48,42,8,10,2786,2925,2631,2750,65,75,20,27,40,39,1,1,29,33,2658,2781,68,82,44,55,44,40,1,1,383,272,316,225,16,14,30,13,2,1,5,9,14,10,328,233,22,16,38,22,4,2,7,9 -050,01,095,Alabama,Marshall County,5,10,6336,3191,3145,2999,3015,94,53,36,22,26,29,3,4,33,22,3031,3037,97,58,63,38,30,30,3,5,2937,2963,2776,2845,81,47,22,19,26,29,3,3,29,20,2804,2865,83,50,48,34,28,30,3,4,254,182,223,170,13,6,14,3,0,0,0,1,4,2,227,172,14,8,15,4,2,0,0,1 -050,01,095,Alabama,Marshall County,5,11,6540,3229,3311,3094,3186,42,39,32,35,20,15,3,4,38,32,3130,3215,46,43,64,61,22,19,6,5,3066,3180,2948,3065,39,39,23,31,20,15,1,0,35,30,2982,3093,42,42,53,56,21,18,3,1,163,131,146,121,3,0,9,4,0,0,2,4,3,2,148,122,4,1,11,5,1,1,3,4 -050,01,095,Alabama,Marshall County,5,12,6044,2972,3072,2841,2950,56,45,35,22,8,23,3,1,29,31,2869,2979,59,47,60,49,10,27,3,1,2857,2976,2736,2868,52,41,33,16,7,22,1,1,28,28,2763,2894,55,43,57,40,9,26,1,1,115,96,105,82,4,4,2,6,1,1,2,0,1,3,106,85,4,4,3,9,1,1,2,0 -050,01,095,Alabama,Marshall County,5,13,5476,2569,2907,2469,2805,37,47,30,16,5,13,1,0,27,26,2495,2830,41,51,52,38,7,14,2,0,2485,2853,2393,2755,36,44,27,16,5,13,0,0,24,25,2417,2779,39,47,48,38,5,14,0,0,84,54,76,50,1,3,3,0,0,0,1,0,3,1,78,51,2,4,4,0,2,0,2,0 -050,01,095,Alabama,Marshall County,5,14,4817,2244,2573,2190,2505,19,23,12,12,7,12,0,0,16,21,2206,2526,20,25,27,30,7,13,1,0,2205,2534,2157,2468,16,23,11,11,6,12,0,0,15,20,2172,2488,16,25,25,28,6,13,1,0,39,39,33,37,3,0,1,1,1,0,0,0,1,1,34,38,4,0,2,2,1,0,0,0 -050,01,095,Alabama,Marshall County,5,15,3662,1671,1991,1632,1950,14,11,10,8,3,6,0,0,12,16,1641,1965,17,12,22,21,3,8,0,1,1649,1974,1612,1933,13,11,9,8,3,6,0,0,12,16,1621,1948,16,12,21,21,3,8,0,1,22,17,20,17,1,0,1,0,0,0,0,0,0,0,20,17,1,0,1,0,0,0,0,0 -050,01,095,Alabama,Marshall County,5,16,2739,1148,1591,1123,1550,7,14,9,7,1,8,0,0,8,12,1130,1562,9,14,15,18,1,9,1,0,1140,1578,1115,1537,7,14,9,7,1,8,0,0,8,12,1122,1549,9,14,15,18,1,9,1,0,8,13,8,13,0,0,0,0,0,0,0,0,0,0,8,13,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,5,17,1821,722,1099,707,1074,2,11,4,7,4,2,0,0,5,5,712,1079,2,11,8,11,5,3,0,1,713,1089,699,1065,2,11,4,7,4,2,0,0,4,4,703,1069,2,11,7,10,5,3,0,0,9,10,8,9,0,0,0,0,0,0,0,0,1,1,9,10,0,0,1,1,0,0,0,1 -050,01,095,Alabama,Marshall County,5,18,1498,450,1048,435,1023,3,10,3,2,2,1,0,0,7,12,441,1034,4,11,10,12,3,2,0,1,445,1035,430,1011,3,9,3,2,2,1,0,0,7,12,436,1022,4,10,10,12,3,2,0,1,5,13,5,12,0,1,0,0,0,0,0,0,0,0,5,12,0,1,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,6,0,94358,46482,47876,43440,45288,1324,907,545,466,277,365,124,123,772,727,44153,45972,1648,1222,966,830,367,446,148,146,39868,42494,37737,40467,919,761,286,273,259,347,53,49,614,597,38318,41037,1183,1016,608,569,316,407,63,64,6614,5382,5703,4821,405,146,259,193,18,18,71,74,158,130,5835,4935,465,206,358,261,51,39,85,82 -050,01,095,Alabama,Marshall County,6,1,6287,3223,3064,2992,2821,68,75,28,27,19,19,9,11,107,111,3095,2927,140,152,54,52,30,32,13,14,2297,2180,2123,2003,62,60,6,10,16,19,6,5,84,83,2205,2083,124,123,20,23,24,28,9,6,926,884,869,818,6,15,22,17,3,0,3,6,23,28,890,844,16,29,34,29,6,4,4,8 -050,01,095,Alabama,Marshall County,6,2,6772,3475,3297,3198,3010,90,83,41,52,21,33,16,19,109,100,3298,3108,163,148,74,80,31,44,19,22,2594,2493,2407,2297,66,61,12,13,20,29,6,10,83,83,2485,2379,127,117,30,31,29,38,7,11,881,804,791,713,24,22,29,39,1,4,10,9,26,17,813,729,36,31,44,49,2,6,12,11 -050,01,095,Alabama,Marshall County,6,3,6454,3294,3160,2984,2919,149,67,39,32,23,35,13,16,86,91,3064,3008,200,118,67,62,35,45,15,18,2591,2561,2439,2393,42,49,11,11,22,31,5,6,72,71,2506,2463,89,93,32,31,31,37,6,8,703,599,545,526,107,18,28,21,1,4,8,10,14,20,558,545,111,25,35,31,4,8,9,10 -050,01,095,Alabama,Marshall County,6,4,6112,3237,2875,2876,2669,207,79,42,31,28,23,9,14,75,59,2946,2725,241,112,76,56,38,28,13,15,2693,2499,2527,2338,63,65,17,19,27,23,2,4,57,50,2583,2386,92,94,39,37,33,27,4,5,544,376,349,331,144,14,25,12,1,0,7,10,18,9,363,339,149,18,37,19,5,1,9,10 -050,01,095,Alabama,Marshall County,6,5,5981,3146,2835,2906,2673,108,70,49,23,18,18,14,9,51,42,2953,2714,133,89,73,41,24,24,14,10,2589,2466,2410,2332,95,62,23,15,13,15,3,2,45,40,2453,2371,117,80,44,33,17,20,3,3,557,369,496,341,13,8,26,8,5,3,11,7,6,2,500,343,16,9,29,8,7,4,11,7 -050,01,095,Alabama,Marshall County,6,6,5860,2936,2924,2710,2755,113,72,44,31,14,19,21,10,34,37,2740,2788,126,87,68,48,22,26,22,13,2240,2357,2095,2238,86,54,17,15,14,19,10,4,18,27,2112,2265,92,61,28,30,16,22,10,6,696,567,615,517,27,18,27,16,0,0,11,6,16,10,628,523,34,26,40,18,6,4,12,7 -050,01,095,Alabama,Marshall County,6,7,5749,2878,2871,2675,2710,103,53,29,49,16,21,13,16,42,22,2713,2730,115,62,57,60,22,23,15,18,2213,2339,2067,2242,88,37,12,21,14,18,6,8,26,13,2091,2254,96,42,27,27,18,20,7,9,665,532,608,468,15,16,17,28,2,3,7,8,16,9,622,476,19,20,30,33,4,3,8,9 -050,01,095,Alabama,Marshall County,6,8,5519,2771,2748,2558,2593,95,44,44,36,16,31,10,6,48,38,2603,2626,107,54,82,61,21,38,11,8,2272,2374,2121,2270,76,33,19,16,15,29,7,2,34,24,2153,2292,83,37,48,33,17,33,7,3,499,374,437,323,19,11,25,20,1,2,3,4,14,14,450,334,24,17,34,28,4,5,4,5 -050,01,095,Alabama,Marshall County,6,9,6280,3124,3156,2909,2928,88,81,49,45,32,49,7,11,39,42,2943,2967,98,94,79,72,36,53,10,12,2726,2859,2577,2677,71,70,20,29,30,49,1,3,27,31,2603,2706,76,78,43,50,30,53,1,3,398,297,332,251,17,11,29,16,2,0,6,8,12,11,340,261,22,16,36,22,6,0,9,9 -050,01,095,Alabama,Marshall County,6,10,6194,3138,3056,2929,2916,98,61,36,26,36,26,5,5,34,22,2959,2936,106,64,63,43,39,29,6,6,2860,2878,2690,2752,82,56,19,22,36,25,5,3,28,20,2715,2771,88,58,42,37,38,28,5,4,278,178,239,164,16,5,17,4,0,1,0,2,6,2,244,165,18,6,21,6,1,1,1,2 -050,01,095,Alabama,Marshall County,6,11,6560,3239,3321,3092,3189,55,48,33,29,20,22,3,3,36,30,3123,3215,60,53,65,54,24,25,3,4,3070,3180,2944,3056,47,48,23,25,20,22,1,0,35,29,2974,3081,52,53,54,49,24,25,1,1,169,141,148,133,8,0,10,4,0,0,2,3,1,1,149,134,8,0,11,5,0,0,2,3 -050,01,095,Alabama,Marshall County,6,12,6202,3035,3167,2905,3027,58,53,30,29,8,23,3,2,31,33,2936,3057,61,56,56,56,11,27,5,4,2916,3066,2794,2941,55,49,29,22,7,22,1,1,30,31,2824,2969,57,52,54,48,9,25,2,3,119,101,111,86,3,4,1,7,1,1,2,1,1,2,112,88,4,4,2,8,2,2,3,1 -050,01,095,Alabama,Marshall County,6,13,5478,2580,2898,2462,2795,45,47,39,14,8,14,0,0,26,28,2487,2820,46,52,63,40,10,15,0,0,2490,2834,2377,2737,43,44,39,14,8,14,0,0,23,25,2400,2759,43,49,61,37,9,15,0,0,90,64,85,58,2,3,0,0,0,0,0,0,3,3,87,61,3,3,2,3,1,0,0,0 -050,01,095,Alabama,Marshall County,6,14,4894,2274,2620,2212,2539,19,26,15,15,7,15,1,0,20,25,2230,2562,21,29,33,36,9,18,1,0,2237,2583,2181,2504,18,26,13,14,6,15,0,0,19,24,2198,2526,20,29,31,35,7,17,0,0,37,37,31,35,1,0,2,1,1,0,1,0,1,1,32,36,1,0,2,1,2,1,1,0 -050,01,095,Alabama,Marshall County,6,15,3876,1763,2113,1724,2067,16,16,10,9,4,5,0,0,9,16,1733,2083,16,17,19,23,4,6,0,0,1736,2094,1701,2048,13,16,9,9,4,5,0,0,9,16,1710,2064,13,17,18,23,4,6,0,0,27,19,23,19,3,0,1,0,0,0,0,0,0,0,23,19,3,0,1,0,0,0,0,0 -050,01,095,Alabama,Marshall County,6,16,2758,1174,1584,1146,1544,7,13,9,7,0,6,0,0,12,14,1158,1558,7,14,20,19,0,7,1,0,1165,1570,1137,1530,7,13,9,7,0,6,0,0,12,14,1149,1544,7,14,20,19,0,7,1,0,9,14,9,14,0,0,0,0,0,0,0,0,0,0,9,14,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,6,17,1853,728,1125,713,1092,3,12,4,9,4,5,0,0,4,7,716,1097,4,14,6,16,6,5,0,0,717,1115,703,1083,3,12,4,9,4,5,0,0,3,6,706,1088,3,13,6,15,5,5,0,0,11,10,10,9,0,0,0,0,0,0,0,0,1,1,10,9,1,1,0,1,1,0,0,0 -050,01,095,Alabama,Marshall County,6,18,1529,467,1062,449,1041,2,7,4,2,3,1,0,1,9,10,456,1051,4,7,11,11,5,1,0,2,462,1046,444,1026,2,6,4,2,3,1,0,1,9,10,451,1036,4,6,11,11,5,1,0,2,5,16,5,15,0,1,0,0,0,0,0,0,0,0,5,15,0,1,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,7,0,94262,46402,47860,43240,45157,1411,999,539,461,275,382,124,123,813,738,43984,45841,1769,1323,969,849,365,466,155,152,39769,42429,37558,40302,994,846,280,267,252,355,46,44,639,615,38160,40881,1274,1114,610,584,310,416,57,59,6633,5431,5682,4855,417,153,259,194,23,27,78,79,174,123,5824,4960,495,209,359,265,55,50,98,93 -050,01,095,Alabama,Marshall County,7,1,6243,3233,3010,2980,2755,76,87,20,17,24,29,9,12,124,110,3096,2859,161,162,52,43,38,44,14,15,2307,2152,2131,1971,66,68,2,7,18,19,3,6,87,81,2215,2050,130,128,16,19,27,29,6,8,926,858,849,784,10,19,18,10,6,10,6,6,37,29,881,809,31,34,36,24,11,15,8,7 -050,01,095,Alabama,Marshall County,7,2,6653,3433,3220,3128,2917,95,103,48,55,28,32,19,16,115,97,3236,3006,170,167,76,84,40,42,26,19,2543,2411,2335,2208,74,78,12,14,25,30,6,5,91,76,2422,2280,139,131,29,32,35,37,9,7,890,809,793,709,21,25,36,41,3,2,13,11,24,21,814,726,31,36,47,52,5,5,17,12 -050,01,095,Alabama,Marshall County,7,3,6426,3254,3172,3006,2915,96,75,35,34,17,39,14,18,86,91,3086,2999,149,130,63,65,28,50,15,21,2577,2527,2425,2348,51,53,9,9,16,34,6,6,70,77,2492,2419,96,103,30,31,24,44,6,8,677,645,581,567,45,22,26,25,1,5,8,12,16,14,594,580,53,27,33,34,4,6,9,13 -050,01,095,Alabama,Marshall County,7,4,6129,3270,2859,2827,2657,290,76,42,32,24,23,8,13,79,58,2896,2711,336,111,78,52,32,29,11,14,2604,2458,2436,2299,66,62,17,20,23,22,2,4,60,51,2492,2346,104,93,40,37,27,28,2,5,666,401,391,358,224,14,25,12,1,1,6,9,19,7,404,365,232,18,38,15,5,1,9,9 -050,01,095,Alabama,Marshall County,7,5,6017,3125,2892,2863,2699,111,93,46,20,23,13,18,11,64,56,2923,2752,139,124,76,46,32,19,21,11,2632,2538,2435,2372,100,84,20,11,18,12,4,5,55,54,2488,2423,123,114,46,36,25,18,5,5,493,354,428,327,11,9,26,9,5,1,14,6,9,2,435,329,16,10,30,10,7,1,16,6 -050,01,095,Alabama,Marshall County,7,6,5847,2929,2918,2711,2751,123,72,38,29,16,20,11,11,30,35,2738,2782,134,86,57,47,21,28,13,15,2319,2414,2161,2292,104,59,14,14,15,18,5,3,20,28,2180,2317,110,70,26,28,17,22,6,5,610,504,550,459,19,13,24,15,1,2,6,8,10,7,558,465,24,16,31,19,4,6,7,10 -050,01,095,Alabama,Marshall County,7,7,5667,2852,2815,2626,2653,114,62,40,47,15,20,12,9,45,24,2668,2675,130,72,69,59,19,23,13,11,2175,2281,2024,2177,94,46,14,21,14,19,5,2,24,16,2046,2192,101,53,30,27,16,22,6,3,677,534,602,476,20,16,26,26,1,1,7,7,21,8,622,483,29,19,39,32,3,1,7,8 -050,01,095,Alabama,Marshall County,7,8,5491,2722,2769,2526,2620,89,45,33,36,13,23,12,9,49,36,2568,2654,102,54,68,61,22,28,14,12,2211,2385,2065,2280,75,37,16,17,12,21,7,5,36,25,2097,2305,82,41,43,36,17,24,8,5,511,384,461,340,14,8,17,19,1,2,5,4,13,11,471,349,20,13,25,25,5,4,6,7 -050,01,095,Alabama,Marshall County,7,9,6184,3043,3141,2830,2909,91,73,40,49,35,60,9,11,38,39,2861,2943,97,83,71,79,40,64,12,14,2670,2817,2515,2635,73,62,18,30,34,60,2,3,28,27,2540,2660,78,67,41,52,37,61,2,4,373,324,315,274,18,11,22,19,1,0,7,8,10,12,321,283,19,16,30,27,3,3,10,10 -050,01,095,Alabama,Marshall County,7,10,5989,3054,2935,2851,2786,100,68,38,27,30,20,2,7,33,27,2879,2809,107,74,65,47,36,25,4,9,2744,2746,2585,2619,84,61,19,21,29,19,2,3,25,23,2608,2639,87,66,41,39,31,22,2,4,310,189,266,167,16,7,19,6,1,1,0,4,8,4,271,170,20,8,24,8,5,3,2,5 -050,01,095,Alabama,Marshall County,7,11,6626,3254,3372,3094,3221,75,59,33,30,18,30,5,3,29,29,3122,3248,78,61,60,55,19,32,6,5,3075,3220,2938,3078,65,58,22,26,18,29,4,0,28,29,2965,3105,67,60,48,51,19,31,5,2,179,152,156,143,10,1,11,4,0,1,1,3,1,0,157,143,11,1,12,4,0,1,1,3 -050,01,095,Alabama,Marshall County,7,12,6175,3011,3164,2875,3035,51,55,33,26,11,19,4,2,37,27,2909,3061,56,59,63,51,16,20,5,3,2886,3054,2761,2938,48,52,31,20,10,18,0,1,36,25,2794,2962,53,55,61,43,14,18,0,1,125,110,114,97,3,3,2,6,1,1,4,1,1,2,115,99,3,4,2,8,2,2,5,2 -050,01,095,Alabama,Marshall County,7,13,5569,2622,2947,2508,2824,48,54,39,17,2,17,0,0,25,35,2532,2857,50,58,63,50,2,18,0,0,2529,2878,2422,2763,46,50,37,16,2,17,0,0,22,32,2443,2794,48,53,58,46,2,18,0,0,93,69,86,61,2,4,2,1,0,0,0,0,3,3,89,63,2,5,5,4,0,0,0,0 -050,01,095,Alabama,Marshall County,7,14,5041,2327,2714,2250,2625,24,25,23,17,7,22,1,0,22,25,2271,2648,27,27,43,38,7,25,1,1,2284,2675,2214,2589,23,25,20,16,6,22,0,0,21,23,2234,2610,26,27,39,36,6,24,0,1,43,39,36,36,1,0,3,1,1,0,1,0,1,2,37,38,1,0,4,2,1,1,1,0 -050,01,095,Alabama,Marshall County,7,15,3948,1838,2110,1798,2064,13,19,12,7,4,5,0,0,11,15,1809,2078,14,20,22,21,4,6,0,0,1809,2088,1772,2042,11,19,11,7,4,5,0,0,11,15,1783,2056,12,20,21,21,4,6,0,0,29,22,26,22,2,0,1,0,0,0,0,0,0,0,26,22,2,0,1,0,0,0,0,0 -050,01,095,Alabama,Marshall County,7,16,2794,1189,1605,1156,1569,12,14,8,6,1,3,0,0,12,13,1167,1582,14,14,19,19,1,3,0,0,1176,1588,1145,1552,11,14,7,6,1,3,0,0,12,13,1156,1565,13,14,18,19,1,3,0,0,13,17,11,17,1,0,1,0,0,0,0,0,0,0,11,17,1,0,1,0,0,0,0,0 -050,01,095,Alabama,Marshall County,7,17,1924,772,1152,756,1116,2,11,7,8,3,7,0,0,4,10,760,1125,3,13,10,18,3,9,0,1,761,1144,746,1109,2,11,7,8,3,7,0,0,3,9,749,1117,3,12,9,17,3,8,0,0,11,8,10,7,0,0,0,0,0,0,0,0,1,1,11,8,0,1,1,1,0,1,0,1 -050,01,095,Alabama,Marshall County,7,18,1539,474,1065,455,1041,1,8,4,4,4,0,0,1,10,11,463,1052,2,8,14,14,5,1,0,1,467,1053,448,1030,1,7,4,4,4,0,0,1,10,11,456,1041,2,7,14,14,5,1,0,1,7,12,7,11,0,1,0,0,0,0,0,0,0,0,7,11,0,1,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,8,0,94588,46565,48023,43271,45212,1495,1057,559,449,278,391,119,120,843,794,44057,45946,1858,1427,989,842,381,484,148,140,39791,42463,37440,40246,1095,900,287,268,251,354,43,39,675,656,38082,40860,1386,1201,626,589,325,424,56,52,6774,5560,5831,4966,400,157,272,181,27,37,76,81,168,138,5975,5086,472,226,363,253,56,60,92,88 -050,01,095,Alabama,Marshall County,8,1,6379,3238,3141,2977,2864,90,85,30,14,27,36,7,12,107,130,3080,2988,164,177,55,44,41,49,7,17,2320,2236,2138,2054,76,60,2,6,18,17,3,4,83,95,2218,2146,138,133,16,20,29,26,3,6,918,905,839,810,14,25,28,8,9,19,4,8,24,35,862,842,26,44,39,24,12,23,4,11 -050,01,095,Alabama,Marshall County,8,2,6572,3370,3202,3059,2888,92,109,52,52,31,29,19,14,117,110,3171,2994,171,185,82,80,42,41,22,16,2442,2353,2233,2134,76,88,9,12,27,27,5,3,92,89,2322,2221,144,151,28,32,35,35,6,4,928,849,826,754,16,21,43,40,4,2,14,11,25,21,849,773,27,34,54,48,7,6,16,12 -050,01,095,Alabama,Marshall County,8,3,6514,3315,3199,3054,2935,100,92,37,35,13,39,13,16,98,82,3148,3011,156,142,69,63,25,50,17,16,2629,2523,2447,2337,75,71,12,12,12,33,7,5,76,65,2523,2398,123,113,31,30,22,42,7,5,686,676,607,598,25,21,25,23,1,6,6,11,22,17,625,613,33,29,38,33,3,8,10,11 -050,01,095,Alabama,Marshall County,8,4,6133,3267,2866,2813,2658,294,78,42,33,21,23,7,14,90,60,2900,2715,343,113,79,52,32,32,9,14,2572,2428,2388,2272,69,62,20,17,20,22,2,3,73,52,2459,2322,111,93,45,33,28,29,3,3,695,438,425,386,225,16,22,16,1,1,5,11,17,8,441,393,232,20,34,19,4,3,6,11 -050,01,095,Alabama,Marshall County,8,5,5861,3055,2806,2788,2605,118,96,40,25,23,9,15,8,71,63,2857,2666,145,129,77,51,32,15,17,10,2597,2469,2386,2293,112,88,19,17,19,8,3,4,58,59,2443,2350,136,119,47,40,26,14,5,6,458,337,402,312,6,8,21,8,4,1,12,4,13,4,414,316,9,10,30,11,6,1,12,4 -050,01,095,Alabama,Marshall County,8,6,5901,2980,2921,2735,2752,119,68,49,22,18,25,16,11,43,43,2772,2792,140,85,72,43,25,33,17,12,2387,2479,2212,2347,102,58,17,9,15,23,6,3,35,39,2242,2385,118,73,35,28,21,29,7,4,593,442,523,405,17,10,32,13,3,2,10,8,8,4,530,407,22,12,37,15,4,4,10,8 -050,01,095,Alabama,Marshall County,8,7,5632,2835,2797,2607,2621,127,81,34,37,13,23,9,9,45,26,2646,2645,139,89,63,49,18,30,15,10,2157,2287,2002,2160,99,61,15,23,13,23,4,2,24,18,2023,2176,104,67,30,31,16,28,8,3,678,510,605,461,28,20,19,14,0,0,5,7,21,8,623,469,35,22,33,18,2,2,7,7 -050,01,095,Alabama,Marshall County,8,8,5510,2740,2770,2553,2606,100,55,28,38,16,18,9,11,34,42,2583,2636,111,67,51,66,21,29,12,15,2208,2373,2061,2258,88,47,13,17,15,16,4,6,27,29,2085,2280,94,54,33,37,18,23,5,8,532,397,492,348,12,8,15,21,1,2,5,5,7,13,498,356,17,13,18,29,3,6,7,7 -050,01,095,Alabama,Marshall County,8,9,6020,2945,3075,2750,2859,76,73,39,38,27,62,9,9,44,34,2788,2887,85,87,72,63,36,66,9,12,2542,2727,2408,2560,59,63,17,20,25,61,2,2,31,21,2435,2578,62,70,43,35,31,63,2,4,403,348,342,299,17,10,22,18,2,1,7,7,13,13,353,309,23,17,29,28,5,3,7,8 -050,01,095,Alabama,Marshall County,8,10,6073,3099,2974,2868,2800,112,75,45,36,36,17,4,8,34,38,2895,2835,119,84,69,65,42,20,8,8,2752,2771,2575,2624,95,69,20,28,35,16,2,3,25,31,2599,2652,98,75,40,54,38,18,2,3,347,203,293,176,17,6,25,8,1,1,2,5,9,7,296,183,21,9,29,11,4,2,6,5 -050,01,095,Alabama,Marshall County,8,11,6518,3224,3294,3037,3158,98,56,35,24,19,30,6,3,29,23,3066,3180,101,58,57,43,22,32,7,4,3026,3137,2865,3009,85,53,24,22,19,29,5,1,28,23,2893,3031,88,55,46,41,21,31,6,2,198,157,172,149,13,3,11,2,0,1,1,2,1,0,173,149,13,3,11,2,1,1,1,2 -050,01,095,Alabama,Marshall County,8,12,6325,3098,3227,2962,3090,54,56,30,29,11,21,4,4,37,27,2995,3114,59,62,64,52,14,22,5,4,2971,3110,2846,2986,51,55,28,22,11,20,0,2,35,25,2878,3008,55,60,62,44,13,21,0,2,127,117,116,104,3,1,2,7,0,1,4,2,2,2,117,106,4,2,2,8,1,1,5,2 -050,01,095,Alabama,Marshall County,8,13,5596,2657,2939,2530,2816,56,49,39,21,2,19,0,0,30,34,2559,2848,60,54,63,53,5,19,0,0,2550,2867,2431,2754,53,44,37,19,2,19,0,0,27,31,2457,2783,55,48,61,49,4,19,0,0,107,72,99,62,3,5,2,2,0,0,0,0,3,3,102,65,5,6,2,4,1,0,0,0 -050,01,095,Alabama,Marshall County,8,14,5189,2396,2793,2313,2692,26,35,22,15,7,23,1,0,27,28,2339,2718,28,37,46,39,9,26,1,1,2355,2750,2275,2653,26,33,21,14,7,23,0,0,26,27,2300,2678,28,35,44,37,9,26,0,1,41,43,38,39,0,2,1,1,0,0,1,0,1,1,39,40,0,2,2,2,0,0,1,0 -050,01,095,Alabama,Marshall County,8,15,4005,1830,2175,1782,2123,17,20,18,10,5,5,0,0,8,17,1790,2139,17,23,26,26,5,5,0,0,1801,2145,1760,2094,14,20,15,10,4,5,0,0,8,16,1768,2109,14,22,23,25,4,5,0,0,29,30,22,29,3,0,3,0,1,0,0,0,0,1,22,30,3,1,3,1,1,0,0,0 -050,01,095,Alabama,Marshall County,8,16,2824,1207,1617,1173,1581,12,11,6,7,2,5,0,0,14,13,1186,1593,13,12,18,20,4,5,0,0,1191,1599,1160,1563,11,11,5,7,2,5,0,0,13,13,1172,1575,12,12,17,20,3,5,0,0,16,18,13,18,1,0,1,0,0,0,0,0,1,0,14,18,1,0,1,0,1,0,0,0 -050,01,095,Alabama,Marshall County,8,17,1917,783,1134,765,1094,3,12,8,8,3,7,0,0,4,13,768,1106,4,14,11,18,3,9,1,0,774,1127,756,1088,3,12,8,8,3,7,0,0,4,12,759,1099,4,13,11,18,3,9,1,0,9,7,9,6,0,0,0,0,0,0,0,0,0,1,9,7,0,1,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,8,18,1619,526,1093,505,1070,1,6,5,5,4,0,0,1,11,11,514,1079,3,9,15,15,5,1,1,1,517,1082,497,1060,1,5,5,5,4,0,0,1,10,11,506,1069,2,8,14,15,4,1,1,1,9,11,8,10,0,1,0,0,0,0,0,0,1,0,8,10,1,1,1,0,1,0,0,0 -050,01,095,Alabama,Marshall County,9,0,95123,46895,48228,43494,45295,1559,1109,551,456,278,403,128,122,885,843,44309,46076,1958,1498,984,858,386,504,159,159,39890,42464,37433,40158,1181,954,284,275,246,353,43,38,703,686,38096,40803,1502,1273,628,591,320,432,55,57,7005,5764,6061,5137,378,155,267,181,32,50,85,84,182,157,6213,5273,456,225,356,267,66,72,104,102 -050,01,095,Alabama,Marshall County,9,1,6510,3331,3179,3037,2849,96,105,32,14,23,45,11,15,132,151,3162,2989,185,216,62,49,41,59,15,24,2398,2264,2210,2055,77,84,3,4,10,13,2,4,96,104,2302,2154,148,167,19,19,22,21,3,7,933,915,827,794,19,21,29,10,13,32,9,11,36,47,860,835,37,49,43,30,19,38,12,17 -050,01,095,Alabama,Marshall County,9,2,6508,3353,3155,3019,2856,104,108,51,40,28,24,21,13,130,114,3139,2964,193,186,83,71,43,31,26,17,2383,2300,2149,2086,91,86,9,10,24,23,7,4,103,91,2247,2174,166,153,31,29,34,29,9,6,970,855,870,770,13,22,42,30,4,1,14,9,27,23,892,790,27,33,52,42,9,2,17,11 -050,01,095,Alabama,Marshall County,9,3,6601,3360,3241,3088,2971,107,87,35,42,17,40,12,15,101,86,3184,3051,169,139,68,72,27,52,15,17,2596,2491,2402,2303,82,66,9,15,17,34,6,5,80,68,2481,2367,132,112,32,34,24,43,7,6,764,750,686,668,25,21,26,27,0,6,6,10,21,18,703,684,37,27,36,38,3,9,8,11 -050,01,095,Alabama,Marshall County,9,4,6201,3258,2943,2839,2730,275,73,32,32,19,29,10,14,83,65,2917,2792,319,109,66,55,28,38,12,16,2532,2411,2361,2247,73,63,13,17,16,26,4,3,65,55,2423,2300,112,96,36,33,21,33,5,5,726,532,478,483,202,10,19,15,3,3,6,11,18,10,494,492,207,13,30,22,7,5,7,11 -050,01,095,Alabama,Marshall County,9,5,5693,3011,2682,2731,2467,129,99,39,33,22,9,12,8,78,66,2801,2528,168,133,76,57,34,21,15,10,2556,2372,2337,2191,117,88,18,20,18,9,2,3,64,61,2398,2247,149,119,47,42,27,20,3,5,455,310,394,276,12,11,21,13,4,0,10,5,14,5,403,281,19,14,29,15,7,1,12,5 -050,01,095,Alabama,Marshall County,9,6,6140,3120,3020,2870,2854,126,76,47,21,15,14,18,10,44,45,2909,2896,143,96,68,38,24,23,20,12,2560,2621,2372,2484,116,68,16,10,12,12,5,4,39,43,2407,2524,131,88,33,26,21,21,7,5,560,399,498,370,10,8,31,11,3,2,13,6,5,2,502,372,12,8,35,12,3,2,13,7 -050,01,095,Alabama,Marshall County,9,7,5617,2829,2788,2604,2598,126,89,34,34,18,21,6,12,41,34,2637,2631,138,99,59,55,26,24,10,14,2174,2293,2017,2152,99,69,17,23,18,21,3,2,20,26,2033,2178,105,76,31,39,21,24,4,3,655,495,587,446,27,20,17,11,0,0,3,10,21,8,604,453,33,23,28,16,5,0,6,11 -050,01,095,Alabama,Marshall County,9,8,5633,2839,2794,2650,2623,101,53,24,42,16,23,15,13,33,40,2680,2660,107,63,44,65,24,33,18,17,2238,2348,2097,2231,85,42,10,19,15,22,6,7,25,27,2120,2256,90,46,26,35,20,29,8,9,601,446,553,392,16,11,14,23,1,1,9,6,8,13,560,404,17,17,18,30,4,4,10,8 -050,01,095,Alabama,Marshall County,9,9,5664,2750,2914,2575,2717,66,64,37,36,23,55,7,7,42,35,2615,2747,73,75,70,60,27,59,9,9,2359,2553,2234,2405,56,54,15,19,22,53,2,2,30,20,2264,2423,59,59,40,34,25,56,2,2,391,361,341,312,10,10,22,17,1,2,5,5,12,15,351,324,14,16,30,26,2,3,7,7 -050,01,095,Alabama,Marshall County,9,10,6236,3185,3051,2925,2854,122,88,51,37,40,29,5,8,42,35,2962,2883,130,95,84,64,45,35,6,12,2800,2827,2601,2665,104,79,25,26,38,28,1,1,31,28,2629,2690,109,83,52,48,40,31,1,3,385,224,324,189,18,9,26,11,2,1,4,7,11,7,333,193,21,12,32,16,5,4,5,9 -050,01,095,Alabama,Marshall County,9,11,6349,3108,3241,2899,3105,119,64,34,21,19,29,5,1,32,21,2928,3126,124,65,60,38,23,32,5,1,2902,3082,2718,2955,106,61,24,18,19,28,5,0,30,20,2745,2975,111,62,49,34,22,31,5,0,206,159,181,150,13,3,10,3,0,1,0,1,2,1,183,151,13,3,11,4,1,1,0,1 -050,01,095,Alabama,Marshall County,9,12,6392,3141,3251,2997,3108,60,49,31,35,14,20,4,5,35,34,3029,3138,68,53,60,65,15,22,5,7,3008,3137,2878,3006,55,49,28,29,14,19,0,2,33,32,2908,3034,61,53,57,57,15,21,1,4,133,114,119,102,5,0,3,6,0,1,4,3,2,2,121,104,7,0,3,8,0,1,4,3 -050,01,095,Alabama,Marshall County,9,13,5716,2747,2969,2616,2831,58,59,39,19,3,24,1,0,30,36,2644,2862,62,64,63,52,6,27,2,0,2637,2881,2514,2753,55,55,37,16,3,24,0,0,28,33,2541,2782,58,60,60,46,6,26,0,0,110,88,102,78,3,4,2,3,0,0,1,0,2,3,103,80,4,4,3,6,0,1,2,0 -050,01,095,Alabama,Marshall County,9,14,5371,2468,2903,2369,2797,37,45,26,18,7,19,1,0,28,24,2397,2821,39,47,53,38,7,21,1,0,2415,2855,2321,2755,36,41,25,17,7,19,0,0,26,23,2347,2778,36,43,51,36,7,21,0,0,53,48,48,42,1,4,1,1,0,0,1,0,2,1,50,43,3,4,2,2,0,0,1,0 -050,01,095,Alabama,Marshall County,9,15,4023,1832,2191,1786,2131,16,22,16,11,5,9,0,0,9,18,1794,2149,18,24,22,26,7,10,0,0,1806,2161,1766,2102,13,22,14,11,4,9,0,0,9,17,1774,2119,15,23,20,26,6,10,0,0,26,30,20,29,3,0,2,0,1,0,0,0,0,1,20,30,3,1,2,0,1,0,0,0 -050,01,095,Alabama,Marshall County,9,16,2906,1246,1660,1213,1621,12,10,8,7,2,6,0,0,11,16,1224,1635,12,13,19,20,2,7,0,1,1229,1642,1199,1603,11,10,6,7,2,6,0,0,11,16,1210,1617,11,13,17,20,2,7,0,1,17,18,14,18,1,0,2,0,0,0,0,0,0,0,14,18,1,0,2,0,0,0,0,0 -050,01,095,Alabama,Marshall County,9,17,1938,780,1158,761,1122,3,12,9,8,2,7,0,0,5,9,764,1131,5,12,14,15,2,9,0,1,772,1149,753,1114,3,12,9,8,2,7,0,0,5,8,756,1122,5,12,14,15,2,8,0,0,8,9,8,8,0,0,0,0,0,0,0,0,0,1,8,9,0,0,0,0,0,1,0,1 -050,01,095,Alabama,Marshall County,9,18,1625,537,1088,515,1061,2,6,6,6,5,0,0,1,9,14,523,1073,5,9,13,18,5,1,0,1,525,1077,504,1051,2,5,6,6,5,0,0,1,8,14,511,1063,4,8,13,18,5,1,0,1,12,11,11,10,0,1,0,0,0,0,0,0,1,0,12,10,1,1,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,10,0,95589,47099,48490,43628,45477,1576,1157,569,471,281,390,139,130,906,865,44476,46272,1997,1569,1010,876,378,494,165,172,39930,42555,37434,40190,1213,993,284,277,241,348,45,40,713,707,38115,40856,1542,1326,623,606,312,418,55,63,7169,5935,6194,5287,363,164,285,194,40,42,94,90,193,158,6361,5416,455,243,387,270,66,76,110,109 -050,01,095,Alabama,Marshall County,10,1,6587,3352,3235,3037,2906,97,108,42,17,32,36,19,16,125,152,3152,3047,183,217,74,50,43,60,25,23,2352,2305,2183,2103,74,81,1,5,7,10,3,4,84,102,2264,2199,138,163,17,18,13,24,4,5,1000,930,854,803,23,27,41,12,25,26,16,12,41,50,888,848,45,54,57,32,30,36,21,18 -050,01,095,Alabama,Marshall County,10,2,6581,3399,3182,3062,2886,101,102,49,34,29,23,12,14,146,123,3206,3004,199,189,83,63,45,36,15,18,2451,2317,2201,2099,92,85,10,9,25,20,4,5,119,99,2319,2196,178,157,31,28,37,28,7,7,948,865,861,787,9,17,39,25,4,3,8,9,27,24,887,808,21,32,52,35,8,8,8,11 -050,01,095,Alabama,Marshall County,10,3,6726,3441,3285,3146,2996,106,111,33,42,19,33,18,15,119,88,3259,3080,181,164,70,71,30,43,23,17,2577,2481,2369,2279,82,86,8,12,19,29,7,5,92,70,2458,2345,143,132,31,30,29,38,9,7,864,804,777,717,24,25,25,30,0,4,11,10,27,18,801,735,38,32,39,41,1,5,14,10 -050,01,095,Alabama,Marshall County,10,4,6203,3214,2989,2829,2762,246,75,33,31,16,34,10,15,80,72,2907,2832,289,119,65,58,26,40,10,15,2474,2419,2304,2245,80,65,9,14,15,32,3,2,63,61,2367,2304,115,103,30,35,22,38,3,2,740,570,525,517,166,10,24,17,1,2,7,13,17,11,540,528,174,16,35,23,4,2,7,13 -050,01,095,Alabama,Marshall County,10,5,5448,2839,2609,2575,2408,129,84,36,33,19,14,12,7,68,63,2640,2467,163,116,66,56,27,23,13,10,2417,2275,2228,2107,99,71,15,22,17,14,3,2,55,59,2281,2164,125,103,38,43,25,21,3,3,422,334,347,301,30,13,21,11,2,0,9,5,13,4,359,303,38,13,28,13,2,2,10,7 -050,01,095,Alabama,Marshall County,10,6,6234,3194,3040,2930,2855,136,82,46,28,13,14,15,13,54,48,2978,2898,158,105,73,49,23,20,17,16,2660,2665,2454,2515,124,73,19,13,10,13,6,5,47,46,2497,2557,142,94,41,33,19,19,8,8,534,375,476,340,12,9,27,15,3,1,9,8,7,2,481,341,16,11,32,16,4,1,9,8 -050,01,095,Alabama,Marshall County,10,7,5717,2907,2810,2671,2619,134,92,34,34,18,22,8,11,42,32,2710,2648,147,102,62,53,23,25,9,14,2268,2327,2097,2184,111,76,17,15,18,22,2,3,23,27,2118,2210,117,84,32,30,22,24,2,6,639,483,574,435,23,16,17,19,0,0,6,8,19,5,592,438,30,18,30,23,1,1,7,8 -050,01,095,Alabama,Marshall County,10,8,5635,2832,2803,2622,2628,109,61,33,46,19,20,16,13,33,35,2653,2656,117,72,55,65,24,29,19,18,2224,2330,2075,2211,92,48,12,23,18,19,6,5,21,24,2095,2230,97,54,28,37,19,25,6,8,608,473,547,417,17,13,21,23,1,1,10,8,12,11,558,426,20,18,27,28,5,4,13,10 -050,01,095,Alabama,Marshall County,10,9,5568,2733,2835,2564,2665,67,52,38,30,21,43,7,8,36,37,2594,2697,78,60,64,54,26,48,8,13,2328,2483,2204,2357,56,42,18,14,20,41,2,4,28,25,2229,2380,62,48,40,31,23,43,2,6,405,352,360,308,11,10,20,16,1,2,5,4,8,12,365,317,16,12,24,23,3,5,6,7 -050,01,095,Alabama,Marshall County,10,10,6201,3099,3102,2868,2871,100,104,49,38,34,38,7,11,41,40,2902,2903,111,117,79,65,41,44,8,16,2717,2852,2549,2664,80,94,25,26,32,37,2,2,29,29,2575,2692,85,99,48,49,36,38,2,3,382,250,319,207,20,10,24,12,2,1,5,9,12,11,327,211,26,18,31,16,5,6,6,13 -050,01,095,Alabama,Marshall County,10,11,6260,3115,3145,2865,3004,154,63,35,23,21,29,8,1,32,25,2895,3027,158,66,62,43,23,30,9,4,2880,2989,2663,2861,140,58,22,19,21,28,6,0,28,23,2689,2882,143,60,46,38,23,29,7,3,235,156,202,143,14,5,13,4,0,1,2,1,4,2,206,145,15,6,16,5,0,1,2,1 -050,01,095,Alabama,Marshall County,10,12,6449,3172,3277,3024,3131,59,58,32,35,17,19,3,3,37,31,3058,3160,65,61,66,62,19,23,3,3,3021,3154,2887,3016,54,58,26,32,17,19,1,0,36,29,2920,3044,59,61,59,57,19,22,1,0,151,123,137,115,5,0,6,3,0,0,2,3,1,2,138,116,6,0,7,5,0,1,2,3 -050,01,095,Alabama,Marshall County,10,13,5876,2835,3041,2705,2897,64,65,34,24,4,22,3,2,25,31,2730,2925,66,70,55,52,6,24,3,2,2723,2949,2603,2819,60,61,32,18,4,21,0,2,24,28,2627,2845,62,63,53,44,5,23,0,2,112,92,102,78,4,4,2,6,0,1,3,0,1,3,103,80,4,7,2,8,1,1,3,0 -050,01,095,Alabama,Marshall County,10,14,5133,2351,2782,2240,2673,43,52,34,15,5,15,1,0,28,27,2267,2698,44,55,59,39,6,17,3,1,2288,2733,2183,2629,42,48,33,15,5,15,0,0,25,26,2208,2654,43,51,56,38,5,16,1,1,63,49,57,44,1,4,1,0,0,0,1,0,3,1,59,44,1,4,3,1,1,1,2,0 -050,01,095,Alabama,Marshall County,10,15,4314,1977,2337,1930,2269,14,20,15,16,4,15,0,0,14,17,1943,2284,16,23,28,30,4,16,0,1,1950,2297,1910,2231,11,20,13,15,3,15,0,0,13,16,1922,2245,12,23,26,29,3,15,0,1,27,40,20,38,3,0,2,1,1,0,0,0,1,1,21,39,4,0,2,1,1,1,0,0 -050,01,095,Alabama,Marshall County,10,16,3014,1300,1714,1268,1670,11,11,9,9,3,6,0,0,9,18,1276,1686,12,13,18,26,3,7,0,0,1281,1697,1252,1653,10,11,7,9,3,6,0,0,9,18,1260,1669,11,13,16,26,3,7,0,0,19,17,16,17,1,0,2,0,0,0,0,0,0,0,16,17,1,0,2,0,0,0,0,0 -050,01,095,Alabama,Marshall County,10,17,1954,778,1176,754,1143,4,9,9,7,2,6,0,0,9,11,762,1154,6,9,16,18,3,6,0,0,772,1169,748,1136,4,9,9,7,2,6,0,0,9,11,756,1147,6,9,16,18,3,6,0,0,6,7,6,7,0,0,0,0,0,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,10,18,1689,561,1128,538,1094,2,8,8,9,5,1,0,1,8,15,544,1106,4,11,15,22,6,3,0,1,547,1113,524,1081,2,7,8,9,5,1,0,1,8,14,530,1093,4,9,15,22,6,2,0,1,14,15,14,13,0,1,0,0,0,0,0,0,0,1,14,13,0,2,0,0,0,1,0,0 -050,01,095,Alabama,Marshall County,11,0,96230,47491,48739,43933,45626,1639,1193,550,475,316,415,149,140,904,890,44778,46446,2053,1622,984,901,429,521,187,171,40086,42547,37533,40151,1275,1017,274,267,260,355,43,43,701,714,38195,40821,1603,1355,603,605,342,432,54,56,7405,6192,6400,5475,364,176,276,208,56,60,106,97,203,176,6583,5625,450,267,381,296,87,89,133,115 -050,01,095,Alabama,Marshall County,11,1,6815,3475,3340,3133,2943,111,116,39,26,49,54,33,26,110,175,3237,3108,182,234,74,71,63,77,39,34,2393,2346,2231,2137,87,83,2,3,9,9,4,3,60,111,2288,2245,133,167,13,19,15,22,4,4,1082,994,902,806,24,33,37,23,40,45,29,23,50,64,949,863,49,67,61,52,48,55,35,30 -050,01,095,Alabama,Marshall County,11,2,6424,3317,3107,3005,2836,99,92,38,29,29,20,11,12,135,118,3134,2944,191,178,68,59,44,35,15,14,2400,2240,2163,2045,92,77,6,3,25,17,4,6,110,92,2267,2134,173,144,26,21,38,27,6,7,917,867,842,791,7,15,32,26,4,3,7,6,25,26,867,810,18,34,42,38,6,8,9,7 -050,01,095,Alabama,Marshall County,11,3,6863,3556,3307,3228,3014,119,111,39,44,23,34,19,12,128,92,3354,3101,196,170,75,74,40,43,23,13,2642,2484,2408,2277,95,88,10,11,21,31,6,4,102,73,2509,2348,161,136,34,31,34,39,7,4,914,823,820,737,24,23,29,33,2,3,13,8,26,19,845,753,35,34,41,43,6,4,16,9 -050,01,095,Alabama,Marshall County,11,4,6169,3181,2988,2872,2738,164,86,36,29,15,38,9,16,85,81,2951,2813,208,137,65,58,28,45,16,18,2436,2356,2260,2172,76,69,14,10,14,33,2,3,70,69,2328,2236,117,113,36,33,22,39,4,4,745,632,612,566,88,17,22,19,1,5,7,13,15,12,623,577,91,24,29,25,6,6,12,14 -050,01,095,Alabama,Marshall County,11,5,5463,2856,2607,2532,2399,206,89,26,31,18,23,8,11,66,54,2595,2449,240,120,53,52,25,29,9,11,2365,2239,2181,2073,98,73,12,18,18,23,3,4,53,48,2231,2118,125,100,33,36,25,29,4,4,491,368,351,326,108,16,14,13,0,0,5,7,13,6,364,331,115,20,20,16,0,0,5,7 -050,01,095,Alabama,Marshall County,11,6,6320,3261,3059,2972,2870,148,85,45,28,23,16,14,12,59,48,3025,2915,171,105,73,49,35,24,17,14,2737,2679,2509,2517,137,79,17,15,19,16,3,4,52,48,2556,2562,158,99,40,36,31,24,5,6,524,380,463,353,11,6,28,13,4,0,11,8,7,0,469,353,13,6,33,13,4,0,12,8 -050,01,095,Alabama,Marshall County,11,7,5696,2883,2813,2646,2628,132,89,39,24,15,20,10,10,41,42,2682,2667,147,104,64,46,22,27,11,12,2317,2340,2144,2196,112,73,18,11,15,20,3,4,25,36,2165,2229,121,88,32,29,21,25,3,6,566,473,502,432,20,16,21,13,0,0,7,6,16,6,517,438,26,16,32,17,1,2,8,6 -050,01,095,Alabama,Marshall County,11,8,5706,2848,2858,2639,2698,113,58,25,44,22,21,14,12,35,25,2669,2721,125,62,52,61,27,25,17,14,2212,2377,2058,2266,98,47,9,22,22,21,5,4,20,17,2075,2283,104,48,25,35,24,24,5,4,636,481,581,432,15,11,16,22,0,0,9,8,15,8,594,438,21,14,27,26,3,1,12,10 -050,01,095,Alabama,Marshall County,11,9,5532,2756,2776,2555,2606,89,63,46,34,19,30,8,9,39,34,2592,2636,100,74,71,61,23,34,10,10,2297,2420,2158,2297,71,53,19,18,18,28,4,3,27,21,2185,2316,77,59,37,35,20,31,5,4,459,356,397,309,18,10,27,16,1,2,4,6,12,13,407,320,23,15,34,26,3,3,5,6 -050,01,095,Alabama,Marshall County,11,10,6208,3086,3122,2877,2885,91,98,41,40,30,43,8,12,39,44,2908,2921,100,108,70,69,37,54,11,18,2717,2837,2559,2646,76,86,23,26,28,43,2,4,29,32,2585,2673,82,93,45,49,32,49,3,6,369,285,318,239,15,12,18,14,2,0,6,8,10,12,323,248,18,15,25,20,5,5,8,12 -050,01,095,Alabama,Marshall County,11,11,6089,3088,3001,2831,2865,156,67,36,24,28,25,6,1,31,19,2860,2882,161,70,61,40,30,27,8,1,2811,2838,2594,2719,140,60,20,18,27,24,6,0,24,17,2617,2734,141,63,42,33,28,25,7,0,277,163,237,146,16,7,16,6,1,1,0,1,7,2,243,148,20,7,19,7,2,2,1,1 -050,01,095,Alabama,Marshall County,11,12,6476,3149,3327,2985,3177,77,60,34,32,18,23,5,2,30,33,3011,3207,82,65,60,59,22,27,5,2,2981,3197,2838,3053,69,60,27,29,18,23,1,0,28,32,2862,3082,73,64,51,56,22,27,1,0,168,130,147,124,8,0,7,3,0,0,4,2,2,1,149,125,9,1,9,3,0,0,4,2 -050,01,095,Alabama,Marshall County,11,13,6034,2927,3107,2802,2950,54,71,27,32,7,21,3,3,34,30,2834,2977,60,76,57,59,7,21,4,4,2814,3008,2699,2865,51,67,24,26,7,20,0,2,33,28,2730,2890,57,70,54,53,7,20,0,3,113,99,103,85,3,4,3,6,0,1,3,1,1,2,104,87,3,6,3,6,0,1,4,1 -050,01,095,Alabama,Marshall County,11,14,5084,2338,2746,2224,2638,45,53,38,13,4,15,0,0,27,27,2251,2662,49,58,60,35,7,20,1,2,2267,2687,2159,2587,42,48,38,13,4,15,0,0,24,24,2183,2608,45,52,60,32,5,18,0,1,71,59,65,51,3,5,0,0,0,0,0,0,3,3,68,54,4,6,0,3,2,2,1,1 -050,01,095,Alabama,Marshall County,11,15,4389,1990,2399,1934,2320,16,22,17,19,4,18,1,0,18,20,1951,2339,18,23,33,37,5,18,1,2,1963,2361,1914,2284,15,22,14,18,3,18,0,0,17,19,1930,2302,16,23,30,36,4,18,0,1,27,38,20,36,1,0,3,1,1,0,1,0,1,1,21,37,2,0,3,1,1,0,1,1 -050,01,095,Alabama,Marshall County,11,16,3253,1419,1834,1387,1786,13,15,9,9,4,5,0,1,6,18,1393,1803,14,17,14,26,4,5,0,1,1395,1814,1369,1766,10,15,6,9,4,5,0,1,6,18,1375,1783,11,17,11,26,4,5,0,1,24,20,18,20,3,0,3,0,0,0,0,0,0,0,18,20,3,0,3,0,0,0,0,0 -050,01,095,Alabama,Marshall County,11,17,1965,787,1178,763,1143,2,11,9,6,1,5,0,0,12,13,775,1156,3,11,20,19,2,5,0,0,780,1168,756,1133,2,11,9,6,1,5,0,0,12,13,768,1146,3,11,20,19,2,5,0,0,7,10,7,10,0,0,0,0,0,0,0,0,0,0,7,10,0,0,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,11,18,1744,574,1170,548,1130,4,7,6,11,7,4,0,1,9,17,556,1145,6,10,14,26,8,5,0,1,559,1156,533,1118,4,6,6,11,7,4,0,1,9,16,541,1132,6,8,14,26,8,5,0,1,15,14,15,12,0,1,0,0,0,0,0,0,0,1,15,13,0,2,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,12,0,96751,47664,49087,44027,45815,1692,1300,555,480,318,419,162,157,910,916,44867,46658,2109,1749,1005,905,425,536,195,189,40095,42666,37450,40134,1340,1116,282,269,267,362,52,52,704,733,38113,40823,1663,1478,620,607,344,442,68,64,7569,6421,6577,5681,352,184,273,211,51,57,110,105,206,183,6754,5835,446,271,385,298,81,94,127,125 -050,01,095,Alabama,Marshall County,12,1,6918,3477,3441,3099,3012,127,144,39,36,46,52,36,28,130,169,3218,3169,214,263,79,75,61,76,43,33,2365,2377,2168,2141,100,107,3,7,12,12,7,4,75,106,2241,2243,158,189,15,21,20,25,7,6,1112,1064,931,871,27,37,36,29,34,40,29,24,55,63,977,926,56,74,64,54,41,51,36,27 -050,01,095,Alabama,Marshall County,12,2,6480,3383,3097,3103,2807,92,101,35,22,29,20,10,13,114,134,3213,2937,167,192,65,55,40,35,12,13,2432,2263,2225,2042,87,85,6,5,24,16,3,8,87,107,2308,2146,150,162,23,26,33,28,5,8,951,834,878,765,5,16,29,17,5,4,7,5,27,27,905,791,17,30,42,29,7,7,7,5 -050,01,095,Alabama,Marshall County,12,3,6847,3523,3324,3190,3010,117,114,44,50,26,34,22,16,124,100,3307,3102,195,179,81,85,41,43,25,18,2590,2456,2352,2242,99,93,9,9,23,32,6,3,101,77,2450,2313,168,149,33,31,33,38,7,4,933,868,838,768,18,21,35,41,3,2,16,13,23,23,857,789,27,30,48,54,8,5,18,14 -050,01,095,Alabama,Marshall County,12,4,6159,3115,3044,2855,2778,116,99,33,28,13,39,14,20,84,80,2932,2851,163,151,67,54,22,48,19,24,2399,2334,2222,2140,83,78,10,9,12,35,6,5,66,67,2284,2201,126,124,32,29,17,42,9,7,716,710,633,638,33,21,23,19,1,4,8,15,18,13,648,650,37,27,35,25,5,6,10,17 -050,01,095,Alabama,Marshall County,12,5,5516,2935,2581,2537,2376,273,85,32,26,16,29,6,12,71,53,2601,2421,312,112,60,43,25,42,8,16,2327,2184,2126,2016,110,75,17,15,16,28,2,4,56,46,2176,2057,140,100,40,30,23,37,4,6,608,397,411,360,163,10,15,11,0,1,4,8,15,7,425,364,172,12,20,13,2,5,4,10 -050,01,095,Alabama,Marshall County,12,6,6341,3246,3095,2959,2880,148,104,35,29,22,16,17,10,65,56,3021,2932,175,134,68,53,32,25,17,11,2763,2718,2526,2534,138,93,17,16,20,15,3,4,59,56,2582,2586,161,123,47,40,30,24,3,5,483,377,433,346,10,11,18,13,2,1,14,6,6,0,439,346,14,11,21,13,2,1,14,6 -050,01,095,Alabama,Marshall County,12,7,5731,2895,2836,2658,2652,137,83,41,25,14,19,8,13,37,44,2693,2692,146,100,65,49,20,23,8,16,2373,2410,2181,2264,129,70,20,14,14,19,2,5,27,38,2207,2300,135,85,37,34,19,23,2,6,522,426,477,388,8,13,21,11,0,0,6,8,10,6,486,392,11,15,28,15,1,0,6,10 -050,01,095,Alabama,Marshall County,12,8,5772,2896,2876,2656,2711,127,69,32,42,22,21,15,11,44,22,2689,2731,143,72,62,55,31,25,20,15,2252,2389,2079,2273,107,58,14,20,22,20,7,4,23,14,2097,2287,111,59,31,30,27,22,9,5,644,487,577,438,20,11,18,22,0,1,8,7,21,8,592,444,32,13,31,25,4,3,11,10 -050,01,095,Alabama,Marshall County,12,9,5403,2668,2735,2481,2560,88,77,39,33,19,23,7,9,34,33,2512,2588,98,84,62,60,22,30,9,11,2212,2369,2073,2238,71,68,19,16,18,21,4,5,27,21,2099,2258,76,71,39,33,20,25,5,5,456,366,408,322,17,9,20,17,1,2,3,4,7,12,413,330,22,13,23,27,2,5,4,6 -050,01,095,Alabama,Marshall County,12,10,6203,3055,3148,2845,2919,89,87,41,39,34,51,12,12,34,40,2877,2952,94,99,66,62,38,64,14,17,2696,2836,2536,2654,76,75,21,24,32,51,5,4,26,28,2561,2680,79,80,41,44,34,56,7,4,359,312,309,265,13,12,20,15,2,0,7,8,8,12,316,272,15,19,25,18,4,8,7,13 -050,01,095,Alabama,Marshall County,12,11,6031,3084,2947,2822,2795,152,80,41,25,29,18,4,4,36,25,2852,2819,160,84,68,42,33,23,8,4,2754,2766,2540,2637,135,71,20,20,27,17,4,0,28,21,2564,2657,140,74,42,34,30,22,6,0,330,181,282,158,17,9,21,5,2,1,0,4,8,4,288,162,20,10,26,8,3,1,2,4 -050,01,095,Alabama,Marshall County,12,12,6521,3180,3341,3007,3190,94,61,30,30,17,31,6,2,26,27,3032,3216,98,65,50,52,20,32,6,3,3008,3206,2859,3063,83,59,23,26,17,31,3,0,23,27,2881,3089,87,63,41,48,19,32,3,1,172,135,148,127,11,2,7,4,0,0,3,2,3,0,151,127,11,2,9,4,1,0,3,2 -050,01,095,Alabama,Marshall County,12,13,6056,2938,3118,2804,2949,47,82,37,34,8,18,4,5,38,30,2839,2973,49,88,72,63,13,19,4,6,2820,3008,2696,2853,44,77,35,29,8,17,0,4,37,28,2730,2876,46,82,69,56,13,18,0,5,118,110,108,96,3,5,2,5,0,1,4,1,1,2,109,97,3,6,3,7,0,1,4,1 -050,01,095,Alabama,Marshall County,12,14,5233,2411,2822,2304,2702,44,55,33,15,5,17,0,0,25,33,2329,2733,47,61,55,44,5,19,0,0,2330,2759,2231,2649,41,49,31,14,5,17,0,0,22,30,2253,2677,43,55,51,41,5,18,0,0,81,63,73,53,3,6,2,1,0,0,0,0,3,3,76,56,4,6,4,3,0,1,0,0 -050,01,095,Alabama,Marshall County,12,15,4456,2019,2437,1955,2352,21,25,17,20,5,18,1,0,20,22,1973,2373,24,27,34,42,6,18,2,0,1987,2401,1930,2319,20,25,14,19,4,18,0,0,19,20,1947,2338,22,26,31,39,5,18,1,0,32,36,25,33,1,0,3,1,1,0,1,0,1,2,26,35,2,1,3,3,1,0,1,0 -050,01,095,Alabama,Marshall County,12,16,3274,1446,1828,1414,1784,12,15,9,7,4,4,0,1,7,17,1421,1801,13,15,16,24,4,4,0,1,1423,1804,1394,1760,10,15,8,7,4,4,0,1,7,17,1401,1777,11,15,15,24,4,4,0,1,23,24,20,24,2,0,1,0,0,0,0,0,0,0,20,24,2,0,1,0,0,0,0,0 -050,01,095,Alabama,Marshall County,12,17,2022,811,1211,783,1179,5,11,9,6,2,3,0,0,12,12,795,1191,6,13,20,17,3,3,0,0,799,1197,774,1165,4,11,7,6,2,3,0,0,12,12,786,1177,5,13,18,17,3,3,0,0,12,14,9,14,1,0,2,0,0,0,0,0,0,0,9,14,1,0,2,0,0,0,0,0 -050,01,095,Alabama,Marshall County,12,18,1788,582,1206,555,1159,3,8,8,13,7,6,0,1,9,19,563,1177,5,10,15,30,9,7,0,1,565,1189,538,1144,3,7,8,13,7,6,0,1,9,18,546,1161,5,8,15,30,9,7,0,1,17,17,17,15,0,1,0,0,0,0,0,0,0,1,17,16,0,2,0,0,0,0,0,0 -050,01,095,Alabama,Marshall County,13,0,96990,47771,49219,44035,45838,1685,1345,585,509,337,420,177,168,952,939,44912,46711,2138,1799,1036,935,458,533,220,203,39950,42523,37245,39959,1340,1144,289,267,282,355,57,52,737,746,37944,40659,1691,1508,627,600,369,439,72,71,7821,6696,6790,5879,345,201,296,242,55,65,120,116,215,193,6968,6052,447,291,409,335,89,94,148,132 -050,01,095,Alabama,Marshall County,13,1,6889,3508,3381,3097,2961,137,144,47,41,45,49,44,31,138,155,3224,3108,226,250,85,81,64,66,57,38,2317,2293,2113,2064,100,107,4,5,13,10,8,5,79,102,2191,2163,158,187,13,20,26,20,10,6,1191,1088,984,897,37,37,43,36,32,39,36,26,59,53,1033,945,68,63,72,61,38,46,47,32 -050,01,095,Alabama,Marshall County,13,2,6604,3392,3212,3086,2892,105,112,37,23,26,28,9,12,129,145,3206,3031,196,210,67,62,41,41,13,17,2451,2322,2231,2097,91,88,5,5,19,17,4,5,101,110,2331,2204,166,167,22,28,31,27,4,7,941,890,855,795,14,24,32,18,7,11,5,7,28,35,875,827,30,43,45,34,10,14,9,10 -050,01,095,Alabama,Marshall County,13,3,6745,3451,3294,3119,2942,106,126,54,58,26,34,21,20,125,114,3236,3050,186,203,88,90,44,48,23,22,2475,2380,2245,2141,91,106,13,8,23,32,4,5,99,88,2338,2223,158,168,38,28,35,43,5,7,976,914,874,801,15,20,41,50,3,2,17,15,26,26,898,827,28,35,50,62,9,5,18,15 -050,01,095,Alabama,Marshall County,13,4,6297,3195,3102,2926,2830,110,102,33,34,20,38,17,21,89,77,3007,2905,161,145,66,57,31,47,19,26,2432,2330,2245,2139,83,82,10,10,17,34,8,5,69,60,2309,2199,126,119,32,24,25,41,9,8,763,772,681,691,27,20,23,24,3,4,9,16,20,17,698,706,35,26,34,33,6,6,10,18 -050,01,095,Alabama,Marshall County,13,5,5471,2882,2589,2515,2381,236,86,36,23,16,27,6,14,73,58,2583,2435,273,118,67,43,27,35,6,16,2245,2152,2059,1989,90,71,18,11,16,26,2,3,60,52,2114,2038,122,100,42,29,26,33,2,4,637,437,456,392,146,15,18,12,0,1,4,11,13,6,469,397,151,18,25,14,1,2,4,12 -050,01,095,Alabama,Marshall County,13,6,6160,3161,2999,2880,2778,127,107,32,33,26,15,16,8,80,58,2955,2832,161,134,69,57,41,26,18,9,2704,2644,2466,2459,123,95,14,16,24,14,4,4,73,56,2535,2511,153,122,47,39,37,24,6,5,457,355,414,319,4,12,18,17,2,1,12,4,7,2,420,321,8,12,22,18,4,2,12,4 -050,01,095,Alabama,Marshall County,13,7,5849,2963,2886,2701,2701,156,84,44,24,17,16,12,12,33,49,2731,2745,169,102,66,48,19,25,13,15,2482,2494,2274,2342,146,74,20,14,15,16,2,4,25,44,2298,2382,154,89,36,36,16,25,3,6,481,392,427,359,10,10,24,10,2,0,10,8,8,5,433,363,15,13,30,12,3,0,10,9 -050,01,095,Alabama,Marshall County,13,8,5699,2845,2854,2604,2687,135,75,25,38,23,24,12,10,46,20,2642,2705,150,81,56,50,33,27,20,12,2238,2367,2061,2250,111,59,12,19,23,22,6,3,25,14,2083,2262,117,64,29,28,28,24,8,4,607,487,543,437,24,16,13,19,0,2,6,7,21,6,559,443,33,17,27,22,5,3,12,8 -050,01,095,Alabama,Marshall County,13,9,5486,2744,2742,2553,2556,96,79,37,37,21,21,8,13,29,36,2580,2588,104,90,57,63,24,25,8,14,2241,2357,2091,2221,82,70,20,16,21,19,5,7,22,24,2111,2242,88,75,36,35,23,22,5,8,503,385,462,335,14,9,17,21,0,2,3,6,7,12,469,346,16,15,21,28,1,3,3,6 -050,01,095,Alabama,Marshall County,13,10,6002,2933,3069,2744,2855,75,77,38,39,30,52,13,11,33,35,2773,2882,81,87,63,63,35,59,15,14,2538,2735,2404,2571,62,65,16,23,27,51,4,3,25,22,2427,2588,65,70,36,42,31,53,4,4,395,334,340,284,13,12,22,16,3,1,9,8,8,13,346,294,16,17,27,21,4,6,11,10 -050,01,095,Alabama,Marshall County,13,11,6120,3138,2982,2862,2815,149,74,51,34,30,20,6,7,40,32,2900,2844,159,82,82,55,33,26,8,8,2775,2775,2555,2638,132,65,24,26,29,19,4,2,31,25,2586,2661,139,70,50,44,29,23,4,3,363,207,307,177,17,9,27,8,1,1,2,5,9,7,314,183,20,12,32,11,4,3,4,5 -050,01,095,Alabama,Marshall County,13,12,6459,3153,3306,2962,3160,105,67,31,28,22,24,9,2,24,25,2983,3182,112,71,49,49,24,26,10,3,2967,3163,2804,3026,92,63,23,27,21,24,6,0,21,23,2823,3046,98,67,39,46,22,26,7,1,186,143,158,134,13,4,8,1,1,0,3,2,3,2,160,136,14,4,10,3,2,0,3,2 -050,01,095,Alabama,Marshall County,13,13,6287,3064,3223,2920,3051,56,83,42,35,11,18,4,5,31,31,2949,3080,61,87,69,63,13,19,5,5,2930,3106,2797,2947,53,82,40,28,11,17,0,4,29,28,2825,2974,56,85,67,53,12,18,0,4,134,117,123,104,3,1,2,7,0,1,4,1,2,3,124,106,5,2,2,10,1,1,5,1 -050,01,095,Alabama,Marshall County,13,14,5299,2438,2861,2329,2737,45,60,32,14,3,20,0,0,29,30,2355,2765,47,62,58,38,5,25,2,1,2346,2789,2245,2678,42,52,30,12,3,20,0,0,26,27,2268,2704,44,53,53,35,5,23,2,1,92,72,84,59,3,8,2,2,0,0,0,0,3,3,87,61,3,9,5,3,0,2,0,0 -050,01,095,Alabama,Marshall County,13,15,4521,2072,2449,2000,2360,21,30,18,18,8,17,0,0,25,24,2025,2383,22,33,40,38,9,18,1,1,2036,2406,1967,2321,20,28,17,17,8,17,0,0,24,23,1991,2343,21,30,38,37,9,18,1,1,36,43,33,39,1,2,1,1,0,0,0,0,1,1,34,40,1,3,2,1,0,0,0,0 -050,01,095,Alabama,Marshall County,13,16,3268,1418,1850,1378,1797,15,20,13,10,5,5,0,1,7,17,1384,1811,17,22,20,27,5,6,0,1,1387,1819,1354,1768,12,19,10,10,4,5,0,1,7,16,1360,1782,14,21,17,26,4,5,0,1,31,31,24,29,3,1,3,0,1,0,0,0,0,1,24,29,3,1,3,1,1,1,0,0 -050,01,095,Alabama,Marshall County,13,17,2070,831,1239,802,1203,8,7,7,9,2,6,0,0,12,14,813,1216,9,8,17,22,3,7,2,0,817,1225,791,1189,7,7,5,9,2,6,0,0,12,14,802,1202,8,8,15,22,3,7,2,0,14,14,11,14,1,0,2,0,0,0,0,0,0,0,11,14,1,0,2,0,0,0,0,0 -050,01,095,Alabama,Marshall County,13,18,1764,583,1181,557,1132,3,12,8,11,6,6,0,1,9,19,566,1149,4,14,17,29,7,7,0,1,569,1166,543,1119,3,11,8,11,6,6,0,1,9,18,552,1135,4,13,17,28,7,7,0,1,14,15,14,13,0,1,0,0,0,0,0,0,0,1,14,14,0,1,0,1,0,0,0,0 -050,01,097,Alabama,Mobile County,1,0,412992,198374,214618,123644,128461,66057,77507,1943,1980,3917,3815,151,103,2662,2752,125911,130764,67378,78908,3167,3231,4509,4442,268,240,192866,210190,119296,124981,65522,76980,1717,1847,3838,3772,81,77,2412,2533,121361,127111,66726,78268,2795,2984,4390,4347,171,184,5508,4428,4348,3480,535,527,226,133,79,43,70,26,250,219,4550,3653,652,640,372,247,119,95,97,56 -050,01,097,Alabama,Mobile County,1,1,28159,14316,13843,7491,7270,5953,5687,141,155,275,270,10,14,446,447,7893,7669,6251,5993,232,256,384,368,25,33,13801,13331,7087,6880,5901,5626,129,137,258,268,3,10,423,410,7468,7247,6192,5912,209,219,364,358,13,26,515,512,404,390,52,61,12,18,17,2,7,4,23,37,425,422,59,81,23,37,20,10,12,7 -050,01,097,Alabama,Mobile County,1,2,27943,14208,13735,7661,7283,5779,5676,135,138,249,285,9,6,375,347,8005,7598,6028,5893,240,243,317,355,18,19,13754,13314,7323,6954,5717,5623,124,127,243,283,7,4,340,323,7636,7248,5949,5830,212,217,305,348,15,13,454,421,338,329,62,53,11,11,6,2,2,2,35,24,369,350,79,63,28,26,12,7,3,6 -050,01,097,Alabama,Mobile County,1,3,28824,14753,14071,7784,7370,6211,5985,168,162,292,260,9,7,289,287,8036,7615,6380,6168,270,254,355,318,20,15,14412,13726,7524,7110,6173,5936,155,148,289,256,6,4,265,272,7756,7343,6328,6112,247,233,350,309,13,12,341,345,260,260,38,49,13,14,3,4,3,3,24,15,280,272,52,56,23,21,5,9,7,3 -050,01,097,Alabama,Mobile County,1,4,30802,15613,15189,8388,8012,6488,6461,180,140,311,297,7,3,239,276,8586,8243,6619,6617,288,251,367,362,12,13,15184,14856,8038,7753,6452,6422,159,129,310,295,6,1,219,256,8219,7967,6575,6567,258,231,359,358,10,10,429,333,350,259,36,39,21,11,1,2,1,2,20,20,367,276,44,50,30,20,8,4,2,3 -050,01,097,Alabama,Mobile County,1,5,29130,14055,15075,8323,8535,4881,5818,120,169,484,339,29,21,218,193,8513,8692,4988,5916,215,239,539,403,36,34,13425,14667,7821,8210,4841,5767,95,153,475,336,11,19,182,182,7981,8359,4936,5858,164,220,527,398,15,30,630,408,502,325,40,51,25,16,9,3,18,2,36,11,532,333,52,58,51,19,12,5,21,4 -050,01,097,Alabama,Mobile County,1,6,27657,13248,14409,8277,8106,4253,5597,167,141,378,383,14,9,159,173,8406,8254,4319,5663,244,229,425,437,23,20,12689,14025,7830,7811,4218,5549,132,130,370,378,5,7,134,150,7941,7939,4271,5605,192,202,414,429,12,15,559,384,447,295,35,48,35,11,8,5,9,2,25,23,465,315,48,58,52,27,11,8,11,5 -050,01,097,Alabama,Mobile County,1,7,25974,12587,13387,7854,7577,4126,5239,139,126,321,294,17,9,130,142,7960,7703,4183,5301,200,195,361,331,27,15,12010,13031,7388,7306,4074,5195,114,111,316,290,9,6,109,123,7475,7413,4119,5249,163,170,354,325,16,10,577,356,466,271,52,44,25,15,5,4,8,3,21,19,485,290,64,52,37,25,7,6,11,5 -050,01,097,Alabama,Mobile County,1,8,25565,12388,13177,8128,7836,3623,4737,135,141,362,323,18,7,122,133,8228,7935,3659,4787,204,216,398,361,28,20,11925,12863,7773,7591,3583,4699,108,131,352,319,7,4,102,119,7857,7680,3610,4742,161,199,386,354,16,14,463,314,355,245,40,38,27,10,10,4,11,3,20,14,371,255,49,45,43,17,12,7,12,6 -050,01,097,Alabama,Mobile County,1,9,25852,12386,13466,8064,8250,3742,4657,137,142,308,298,5,4,130,115,8164,8338,3792,4704,228,216,332,327,10,8,12010,13173,7774,8003,3695,4627,117,136,300,294,2,4,122,109,7867,8087,3742,4672,201,207,324,321,7,7,376,293,290,247,47,30,20,6,8,4,3,0,8,6,297,251,50,32,27,9,8,6,3,1 -050,01,097,Alabama,Mobile County,1,10,29546,14161,15385,9317,9427,4365,5445,146,152,212,217,11,2,110,142,9406,9531,4399,5500,229,251,231,246,15,8,13841,15131,9072,9226,4325,5419,127,146,207,215,8,1,102,124,9157,9318,4353,5464,206,234,223,238,11,4,320,254,245,201,40,26,19,6,5,2,3,1,8,18,249,213,46,36,23,17,8,8,4,4 -050,01,097,Alabama,Mobile County,1,11,30429,14648,15781,9541,9688,4633,5596,154,154,199,217,7,4,114,122,9632,9785,4660,5640,240,236,224,239,18,11,14370,15557,9323,9509,4596,5567,143,150,197,213,6,3,105,115,9409,9600,4617,5606,225,230,219,234,15,9,278,224,218,179,37,29,11,4,2,4,1,1,9,7,223,185,43,34,15,6,5,5,3,2 -050,01,097,Alabama,Mobile County,1,12,26672,12925,13747,8604,8709,3917,4600,105,116,184,231,4,6,111,85,8696,8778,3946,4626,191,178,201,247,11,9,12744,13602,8451,8586,3900,4590,102,111,183,227,1,6,107,82,8539,8653,3928,4614,185,170,199,243,7,9,181,145,153,123,17,10,3,5,1,4,3,0,4,3,157,125,18,12,6,8,2,4,4,0 -050,01,097,Alabama,Mobile County,1,13,23118,10959,12159,7779,8207,2868,3606,98,101,134,148,5,6,75,91,7840,8283,2891,3632,156,176,147,157,8,13,10806,12042,7650,8116,2851,3589,96,98,130,146,5,5,74,88,7711,8191,2873,3612,153,171,143,155,8,12,153,117,129,91,17,17,2,3,4,2,0,1,1,3,129,92,18,20,3,5,4,2,0,1 -050,01,097,Alabama,Mobile County,1,14,17066,7812,9254,5755,6530,1839,2471,61,61,88,105,4,3,65,84,5809,6602,1858,2492,114,126,94,120,7,10,7716,9159,5675,6457,1831,2460,60,59,88,105,3,1,59,77,5723,6523,1848,2478,108,119,94,116,6,6,96,95,80,73,8,11,1,2,0,0,1,2,6,7,86,79,10,14,6,7,0,4,1,4 -050,01,097,Alabama,Mobile County,1,15,12919,5710,7209,4105,5004,1476,2046,29,40,65,73,2,1,33,45,4134,5034,1483,2062,54,70,70,84,5,6,5653,7122,4062,4934,1466,2040,28,40,65,72,2,1,30,35,4089,4961,1472,2050,51,69,69,76,5,2,57,87,43,70,10,6,1,0,0,1,0,0,3,10,45,73,11,12,3,1,1,8,0,4 -050,01,097,Alabama,Mobile County,1,16,9605,4016,5589,3015,3959,918,1559,15,7,42,39,0,0,26,25,3029,3976,930,1568,34,25,47,44,5,3,3973,5529,2982,3908,915,1550,15,7,42,39,0,0,19,25,2994,3925,922,1559,32,25,43,44,2,3,43,60,33,51,3,9,0,0,0,0,0,0,7,0,35,51,8,9,2,0,4,0,3,0 -050,01,097,Alabama,Mobile County,1,17,7355,2671,4684,2073,3433,569,1172,8,22,9,25,0,0,12,32,2081,3456,574,1183,19,46,10,30,0,1,2650,4650,2053,3403,568,1169,8,21,9,25,0,0,12,32,2061,3426,573,1180,19,45,10,30,0,1,21,34,20,30,1,3,0,1,0,0,0,0,0,0,20,30,1,3,0,1,0,0,0,0 -050,01,097,Alabama,Mobile County,1,18,6376,1918,4458,1485,3265,416,1155,5,13,4,11,0,1,8,13,1493,3272,418,1163,9,24,7,13,0,2,1903,4412,1470,3224,416,1152,5,13,4,11,0,1,8,11,1478,3231,418,1158,9,23,7,11,0,1,15,46,15,41,0,3,0,0,0,0,0,0,0,2,15,41,0,5,0,1,0,2,0,1 -050,01,097,Alabama,Mobile County,2,0,413139,198433,214706,123687,128531,66073,77525,1944,1982,3917,3815,151,103,2661,2750,125953,130832,67394,78926,3167,3231,4509,4442,268,240,192923,210277,119337,125050,65538,76998,1718,1849,3838,3772,81,77,2411,2531,121401,127178,66742,78286,2795,2984,4390,4347,171,184,5510,4429,4350,3481,535,527,226,133,79,43,70,26,250,219,4552,3654,652,640,372,247,119,95,97,56 -050,01,097,Alabama,Mobile County,2,1,28160,14317,13843,7491,7270,5954,5687,141,156,275,270,10,14,446,446,7893,7668,6252,5993,232,256,384,368,25,33,13802,13331,7087,6880,5902,5626,129,138,258,268,3,10,423,409,7468,7246,6193,5912,209,219,364,358,13,26,515,512,404,390,52,61,12,18,17,2,7,4,23,37,425,422,59,81,23,37,20,10,12,7 -050,01,097,Alabama,Mobile County,2,2,27944,14209,13735,7661,7283,5780,5676,135,138,249,285,9,6,375,347,8005,7598,6029,5893,240,243,317,355,18,19,13755,13314,7323,6954,5718,5623,124,127,243,283,7,4,340,323,7636,7248,5950,5830,212,217,305,348,15,13,454,421,338,329,62,53,11,11,6,2,2,2,35,24,369,350,79,63,28,26,12,7,3,6 -050,01,097,Alabama,Mobile County,2,3,28825,14754,14071,7784,7370,6211,5985,169,162,292,260,9,7,289,287,8036,7615,6380,6168,271,254,355,318,20,15,14413,13726,7524,7110,6173,5936,156,148,289,256,6,4,265,272,7756,7343,6328,6112,248,233,350,309,13,12,341,345,260,260,38,49,13,14,3,4,3,3,24,15,280,272,52,56,23,21,5,9,7,3 -050,01,097,Alabama,Mobile County,2,4,30802,15613,15189,8388,8012,6488,6461,180,140,311,297,7,3,239,276,8586,8243,6619,6617,288,251,367,362,12,13,15184,14856,8038,7753,6452,6422,159,129,310,295,6,1,219,256,8219,7967,6575,6567,258,231,359,358,10,10,429,333,350,259,36,39,21,11,1,2,1,2,20,20,367,276,44,50,30,20,8,4,2,3 -050,01,097,Alabama,Mobile County,2,5,29129,14054,15075,8322,8535,4881,5819,120,169,484,339,29,21,218,192,8512,8691,4988,5917,215,238,539,403,36,34,13424,14667,7820,8210,4841,5768,95,153,475,336,11,19,182,181,7980,8358,4936,5859,164,219,527,398,15,30,630,408,502,325,40,51,25,16,9,3,18,2,36,11,532,333,52,58,51,19,12,5,21,4 -050,01,097,Alabama,Mobile County,2,6,27658,13247,14411,8277,8106,4253,5598,167,142,378,383,14,9,158,173,8405,8254,4319,5664,243,230,425,437,23,20,12688,14027,7830,7811,4218,5550,132,131,370,378,5,7,133,150,7940,7939,4271,5606,191,203,414,429,12,15,559,384,447,295,35,48,35,11,8,5,9,2,25,23,465,315,48,58,52,27,11,8,11,5 -050,01,097,Alabama,Mobile County,2,7,25975,12588,13387,7854,7577,4127,5239,139,126,321,294,17,9,130,142,7960,7703,4184,5301,200,195,361,331,27,15,12011,13031,7388,7306,4075,5195,114,111,316,290,9,6,109,123,7475,7413,4120,5249,163,170,354,325,16,10,577,356,466,271,52,44,25,15,5,4,8,3,21,19,485,290,64,52,37,25,7,6,11,5 -050,01,097,Alabama,Mobile County,2,8,25565,12388,13177,8128,7836,3623,4737,135,141,362,323,18,7,122,133,8228,7935,3659,4787,204,216,398,361,28,20,11925,12863,7773,7591,3583,4699,108,131,352,319,7,4,102,119,7857,7680,3610,4742,161,199,386,354,16,14,463,314,355,245,40,38,27,10,10,4,11,3,20,14,371,255,49,45,43,17,12,7,12,6 -050,01,097,Alabama,Mobile County,2,9,25853,12387,13466,8065,8250,3742,4657,137,142,308,298,5,4,130,115,8165,8338,3792,4704,228,216,332,327,10,8,12011,13173,7775,8003,3695,4627,117,136,300,294,2,4,122,109,7868,8087,3742,4672,201,207,324,321,7,7,376,293,290,247,47,30,20,6,8,4,3,0,8,6,297,251,50,32,27,9,8,6,3,1 -050,01,097,Alabama,Mobile County,2,10,29555,14165,15390,9320,9430,4366,5447,146,152,212,217,11,2,110,142,9409,9534,4400,5502,229,251,231,246,15,8,13845,15136,9075,9229,4326,5421,127,146,207,215,8,1,102,124,9160,9321,4354,5466,206,234,223,238,11,4,320,254,245,201,40,26,19,6,5,2,3,1,8,18,249,213,46,36,23,17,8,8,4,4 -050,01,097,Alabama,Mobile County,2,11,30438,14654,15784,9545,9691,4635,5596,154,154,199,217,7,4,114,122,9636,9788,4662,5640,240,236,224,239,18,11,14376,15560,9327,9512,4598,5567,143,150,197,213,6,3,105,115,9413,9603,4619,5606,225,230,219,234,15,9,278,224,218,179,37,29,11,4,2,4,1,1,9,7,223,185,43,34,15,6,5,5,3,2 -050,01,097,Alabama,Mobile County,2,12,26685,12928,13757,8607,8716,3917,4603,105,116,184,231,4,6,111,85,8699,8785,3946,4629,191,178,201,247,11,9,12746,13612,8453,8593,3900,4593,102,111,183,227,1,6,107,82,8541,8660,3928,4617,185,170,199,243,7,9,182,145,154,123,17,10,3,5,1,4,3,0,4,3,158,125,18,12,6,8,2,4,4,0 -050,01,097,Alabama,Mobile County,2,13,23131,10964,12167,7782,8214,2870,3607,98,101,134,148,5,6,75,91,7843,8290,2893,3633,156,176,147,157,8,13,10811,12050,7653,8123,2853,3590,96,98,130,146,5,5,74,88,7714,8198,2875,3613,153,171,143,155,8,12,153,117,129,91,17,17,2,3,4,2,0,1,1,3,129,92,18,20,3,5,4,2,0,1 -050,01,097,Alabama,Mobile County,2,14,17074,7816,9258,5759,6534,1839,2471,61,61,88,105,4,3,65,84,5813,6606,1858,2492,114,126,94,120,7,10,7720,9163,5679,6461,1831,2460,60,59,88,105,3,1,59,77,5727,6527,1848,2478,108,119,94,116,6,6,96,95,80,73,8,11,1,2,0,0,1,2,6,7,86,79,10,14,6,7,0,4,1,4 -050,01,097,Alabama,Mobile County,2,15,12936,5714,7222,4108,5011,1477,2052,29,40,65,73,2,1,33,45,4137,5041,1484,2068,54,70,70,84,5,6,5657,7135,4065,4941,1467,2046,28,40,65,72,2,1,30,35,4092,4968,1473,2056,51,69,69,76,5,2,57,87,43,70,10,6,1,0,0,1,0,0,3,10,45,73,11,12,3,1,1,8,0,4 -050,01,097,Alabama,Mobile County,2,16,9629,4031,5598,3025,3967,923,1560,15,7,42,39,0,0,26,25,3039,3984,935,1569,34,25,47,44,5,3,3987,5537,2991,3915,920,1551,15,7,42,39,0,0,19,25,3003,3932,927,1560,32,25,43,44,2,3,44,61,34,52,3,9,0,0,0,0,0,0,7,0,36,52,8,9,2,0,4,0,3,0 -050,01,097,Alabama,Mobile County,2,17,7376,2681,4695,2082,3443,570,1173,8,22,9,25,0,0,12,32,2090,3466,575,1184,19,46,10,30,0,1,2660,4661,2062,3413,569,1170,8,21,9,25,0,0,12,32,2070,3436,574,1181,19,45,10,30,0,1,21,34,20,30,1,3,0,1,0,0,0,0,0,0,20,30,1,3,0,1,0,0,0,0 -050,01,097,Alabama,Mobile County,2,18,6404,1923,4481,1489,3286,417,1157,5,13,4,11,0,1,8,13,1497,3293,419,1165,9,24,7,13,0,2,1908,4435,1474,3245,417,1154,5,13,4,11,0,1,8,11,1482,3252,419,1160,9,23,7,11,0,1,15,46,15,41,0,3,0,0,0,0,0,0,0,2,15,41,0,5,0,1,0,2,0,1 -050,01,097,Alabama,Mobile County,3,0,413328,198505,214823,123614,128507,66156,77653,1943,1979,3935,3813,164,104,2693,2767,125910,130826,67489,79082,3194,3251,4554,4440,286,231,192959,210335,119257,124980,65620,77122,1712,1841,3848,3773,87,81,2435,2538,121348,127125,66826,78442,2815,2994,4404,4342,177,175,5546,4488,4357,3527,536,531,231,138,87,40,77,23,258,229,4562,3701,663,640,379,257,150,98,109,56 -050,01,097,Alabama,Mobile County,3,1,28113,14313,13800,7483,7248,5946,5678,138,151,271,263,11,13,464,447,7909,7654,6273,5999,224,232,375,356,28,25,13797,13284,7077,6851,5895,5618,127,132,257,261,2,10,439,412,7479,7227,6206,5923,204,200,355,345,17,19,516,516,406,397,51,60,11,19,14,2,9,3,25,35,430,427,67,76,20,32,20,11,11,6 -050,01,097,Alabama,Mobile County,3,2,27849,14156,13693,7635,7253,5748,5655,137,140,250,287,12,4,374,354,7969,7565,6003,5900,228,233,332,363,23,13,13692,13266,7292,6925,5686,5603,123,126,242,286,8,2,341,324,7599,7216,5922,5828,196,204,318,355,16,8,464,427,343,328,62,52,14,14,8,1,4,2,33,30,370,349,81,72,32,29,14,8,7,5 -050,01,097,Alabama,Mobile County,3,3,28835,14747,14088,7772,7390,6216,5976,166,164,292,258,8,6,293,294,8031,7645,6393,6155,261,256,363,327,21,19,14399,13731,7507,7119,6178,5927,152,150,289,255,5,3,268,277,7747,7360,6343,6099,234,232,353,321,14,14,348,357,265,271,38,49,14,14,3,3,3,3,25,17,284,285,50,56,27,24,10,6,7,5 -050,01,097,Alabama,Mobile County,3,4,30506,15490,15016,8285,7893,6457,6425,178,137,316,286,10,3,244,272,8492,8125,6590,6577,283,246,374,354,22,13,15057,14680,7939,7631,6414,6386,158,126,314,284,9,1,223,252,8132,7848,6538,6529,248,223,364,348,18,10,433,336,346,262,43,39,20,11,2,2,1,2,21,20,360,277,52,48,35,23,10,6,4,3 -050,01,097,Alabama,Mobile County,3,5,29273,14117,15156,8341,8582,4935,5855,121,170,469,334,29,23,222,192,8531,8743,5043,5955,227,246,527,389,35,35,13499,14748,7853,8256,4895,5807,96,152,457,332,12,21,186,180,8011,8408,4983,5899,182,226,508,384,17,31,618,408,488,326,40,48,25,18,12,2,17,2,36,12,520,335,60,56,45,20,19,5,18,4 -050,01,097,Alabama,Mobile County,3,6,27709,13266,14443,8265,8130,4264,5596,168,142,393,387,18,9,158,179,8387,8272,4334,5681,251,227,439,439,28,22,12700,14051,7816,7827,4231,5547,133,131,384,383,6,8,130,155,7916,7952,4287,5620,198,202,424,432,13,16,566,392,449,303,33,49,35,11,9,4,12,1,28,24,471,320,47,61,53,25,15,7,15,6 -050,01,097,Alabama,Mobile County,3,7,26091,12640,13451,7875,7593,4149,5285,138,130,327,294,16,9,135,140,7980,7712,4194,5343,212,199,370,338,25,14,12062,13091,7412,7320,4097,5240,113,114,319,288,9,7,112,122,7499,7423,4134,5291,171,171,358,329,14,11,578,360,463,273,52,45,25,16,8,6,7,2,23,18,481,289,60,52,41,28,12,9,11,3 -050,01,097,Alabama,Mobile County,3,8,25454,12324,13130,8064,7771,3632,4761,134,137,356,321,20,6,118,134,8162,7878,3667,4812,209,222,390,358,29,15,11859,12814,7706,7525,3590,4722,108,129,347,317,9,4,99,117,7788,7618,3618,4766,170,205,378,350,16,10,465,316,358,246,42,39,26,8,9,4,11,2,19,17,374,260,49,46,39,17,12,8,13,5 -050,01,097,Alabama,Mobile County,3,9,25856,12390,13466,8092,8250,3701,4644,141,140,318,310,7,5,131,117,8196,8346,3740,4683,239,223,345,335,10,13,12008,13165,7797,7998,3657,4614,120,135,309,304,2,4,123,110,7897,8089,3693,4652,212,213,335,327,3,11,382,301,295,252,44,30,21,5,9,6,5,1,8,7,299,257,47,31,27,10,10,8,7,2 -050,01,097,Alabama,Mobile County,3,10,29383,14101,15282,9254,9358,4371,5415,143,149,214,222,8,1,111,137,9348,9463,4402,5460,221,252,240,251,13,12,13783,15028,9007,9157,4333,5387,124,143,210,220,7,0,102,121,9093,9251,4357,5426,198,235,233,244,11,7,318,254,247,201,38,28,19,6,4,2,1,1,9,16,255,212,45,34,23,17,7,7,2,5 -050,01,097,Alabama,Mobile County,3,11,30424,14626,15798,9539,9692,4613,5609,154,154,200,217,7,5,113,121,9634,9788,4642,5644,241,245,218,242,15,8,14352,15578,9325,9514,4578,5581,143,150,197,214,6,4,103,115,9413,9606,4603,5613,224,238,212,236,12,7,274,220,214,178,35,28,11,4,3,3,1,1,10,6,221,182,39,31,17,7,6,6,3,1 -050,01,097,Alabama,Mobile County,3,12,26888,13005,13883,8656,8786,3948,4656,106,115,185,233,6,6,104,87,8735,8855,3975,4685,190,187,207,243,9,8,12813,13732,8497,8659,3930,4644,100,110,183,229,2,6,101,84,8574,8726,3956,4671,183,179,203,238,5,7,192,151,159,127,18,12,6,5,2,4,4,0,3,3,161,129,19,14,7,8,4,5,4,1 -050,01,097,Alabama,Mobile County,3,13,23305,11060,12245,7828,8255,2917,3642,97,101,135,149,5,6,78,92,7891,8328,2938,3669,163,174,146,163,8,11,10910,12126,7702,8162,2901,3626,94,97,131,148,4,5,78,88,7765,8231,2922,3651,160,169,142,161,7,9,150,119,126,93,16,16,3,4,4,1,1,1,0,4,126,97,16,18,3,5,4,2,1,2 -050,01,097,Alabama,Mobile County,3,14,17206,7875,9331,5796,6570,1858,2503,63,62,89,107,4,5,65,84,5847,6640,1875,2524,118,128,96,119,11,10,7777,9233,5713,6496,1849,2491,63,60,89,107,3,3,60,76,5760,6559,1864,2510,115,121,95,115,8,7,98,98,83,74,9,12,0,2,0,0,1,2,5,8,87,81,11,14,3,7,1,4,3,3 -050,01,097,Alabama,Mobile County,3,15,13004,5731,7273,4129,5054,1469,2060,30,42,65,70,3,2,35,45,4161,5083,1477,2078,59,75,69,78,4,6,5673,7182,4085,4981,1460,2052,29,42,65,70,3,2,31,35,4113,5005,1467,2064,55,73,69,73,4,3,58,91,44,73,9,8,1,0,0,0,0,0,4,10,48,78,10,14,4,2,0,5,0,3 -050,01,097,Alabama,Mobile County,3,16,9629,4043,5586,3019,3948,939,1564,15,8,42,40,0,0,28,26,3039,3964,945,1574,35,29,49,44,5,2,3996,5526,2985,3897,935,1555,15,8,42,40,0,0,19,26,3001,3913,937,1565,32,29,43,44,2,2,47,60,34,51,4,9,0,0,0,0,0,0,9,0,38,51,8,9,3,0,6,0,3,0 -050,01,097,Alabama,Mobile County,3,17,7338,2678,4660,2082,3412,568,1170,8,23,9,23,0,0,11,32,2092,3434,570,1180,18,50,9,28,0,1,2657,4624,2062,3380,567,1167,8,22,9,23,0,0,11,32,2072,3402,569,1177,18,49,9,28,0,1,21,36,20,32,1,3,0,1,0,0,0,0,0,0,20,32,1,3,0,1,0,0,0,0 -050,01,097,Alabama,Mobile County,3,18,6465,1943,4522,1499,3322,425,1159,6,14,4,12,0,1,9,14,1506,3331,428,1163,15,27,5,13,0,4,1925,4476,1482,3282,424,1155,6,14,4,12,0,1,9,12,1489,3291,427,1158,15,25,5,12,0,2,18,46,17,40,1,4,0,0,0,0,0,0,0,2,17,40,1,5,0,2,0,1,0,2 -050,01,097,Alabama,Mobile County,4,0,413126,198146,214980,123128,128155,66234,78022,1905,1986,3966,3946,153,100,2760,2771,125503,130504,67610,79458,3160,3244,4609,4591,278,222,192495,210291,118583,124401,65711,77498,1695,1856,3894,3910,86,77,2526,2549,120774,126576,66971,78826,2827,2997,4471,4493,179,170,5651,4689,4545,3754,523,524,210,130,72,36,67,23,234,222,4729,3928,639,632,333,247,138,98,99,52 -050,01,097,Alabama,Mobile County,4,1,27957,14193,13764,7407,7195,5886,5711,121,126,260,265,9,9,510,458,7877,7614,6245,6035,223,203,377,373,27,28,13672,13219,6977,6751,5841,5659,118,110,253,262,2,6,481,431,7421,7148,6183,5972,207,178,362,358,16,19,521,545,430,444,45,52,3,16,7,3,7,3,29,27,456,466,62,63,16,25,15,15,11,9 -050,01,097,Alabama,Mobile County,4,2,27554,14059,13495,7598,7142,5685,5569,129,134,258,304,15,6,374,340,7940,7443,5938,5797,217,224,346,373,24,18,13562,13071,7235,6811,5617,5525,115,122,246,304,8,3,341,306,7547,7087,5851,5734,189,195,324,365,13,14,497,424,363,331,68,44,14,12,12,0,7,3,33,34,393,356,87,63,28,29,22,8,11,4 -050,01,097,Alabama,Mobile County,4,3,28758,14649,14109,7749,7450,6151,5899,151,178,280,265,8,8,310,309,8019,7719,6342,6094,253,270,350,339,19,18,14304,13719,7481,7145,6115,5847,136,165,279,262,5,4,288,296,7739,7402,6295,6036,226,250,342,334,12,13,345,390,268,305,36,52,15,13,1,3,3,4,22,13,280,317,47,58,27,20,8,5,7,5 -050,01,097,Alabama,Mobile County,4,4,29249,14914,14335,7942,7478,6256,6207,159,130,300,262,6,2,251,256,8160,7703,6395,6360,260,224,363,322,18,11,14500,14000,7602,7198,6215,6178,152,122,298,260,6,1,227,241,7800,7411,6342,6324,238,210,353,316,16,8,414,335,340,280,41,29,7,8,2,2,0,1,24,15,360,292,53,36,22,14,10,6,2,3 -050,01,097,Alabama,Mobile County,4,5,29978,14500,15478,8487,8686,5212,6033,130,167,424,385,25,15,222,192,8667,8850,5327,6131,229,244,485,437,34,27,13891,15052,7989,8353,5173,5980,105,147,418,385,12,14,194,173,8147,8502,5272,6066,191,213,473,436,18,24,609,426,498,333,39,53,25,20,6,0,13,1,28,19,520,348,55,65,38,31,12,1,16,3 -050,01,097,Alabama,Mobile County,4,6,27657,13129,14528,8097,8176,4290,5621,149,142,429,392,16,14,148,183,8215,8326,4352,5708,224,229,473,451,24,23,12538,14105,7607,7843,4255,5564,119,132,423,390,7,12,127,164,7707,7978,4307,5640,182,208,462,444,14,19,591,423,490,333,35,57,30,10,6,2,9,2,21,19,508,348,45,68,42,21,11,7,10,4 -050,01,097,Alabama,Mobile County,4,7,26301,12742,13559,7888,7596,4227,5383,135,129,346,300,15,13,131,138,7996,7713,4272,5444,207,202,386,344,20,16,12180,13217,7423,7334,4177,5340,113,114,341,296,9,11,117,122,7520,7437,4216,5395,176,176,378,336,13,14,562,342,465,262,50,43,22,15,5,4,6,2,14,16,476,276,56,49,31,26,8,8,7,2 -050,01,097,Alabama,Mobile County,4,8,24782,11968,12814,7743,7509,3621,4734,140,132,344,308,12,5,108,126,7840,7605,3648,4786,206,205,377,345,22,14,11517,12493,7383,7257,3584,4697,113,125,337,302,5,4,95,108,7469,7338,3607,4738,171,188,368,334,14,11,451,321,360,252,37,37,27,7,7,6,7,1,13,18,371,267,41,48,35,17,9,11,8,3 -050,01,097,Alabama,Mobile County,4,9,25804,12376,13428,8200,8234,3548,4593,136,148,342,331,14,6,136,116,8311,8324,3586,4635,235,231,371,361,21,13,11975,13117,7881,7972,3510,4564,119,142,329,326,7,3,129,110,7988,8056,3546,4604,213,220,356,356,12,10,401,311,319,262,38,29,17,6,13,5,7,3,7,6,323,268,40,31,22,11,15,5,9,3 -050,01,097,Alabama,Mobile County,4,10,28461,13679,14782,8879,8992,4307,5280,150,142,224,237,5,0,114,131,8971,9093,4334,5330,233,233,248,270,12,11,13350,14499,8627,8765,4269,5248,123,137,223,235,4,0,104,114,8714,8854,4292,5287,201,221,244,260,8,7,329,283,252,227,38,32,27,5,1,2,1,0,10,17,257,239,42,43,32,12,4,10,4,4 -050,01,097,Alabama,Mobile County,4,11,30258,14418,15840,9479,9709,4461,5620,160,161,200,211,8,4,110,135,9571,9817,4489,5662,244,266,219,233,13,8,14139,15614,9264,9530,4424,5592,148,158,194,208,7,4,102,122,9350,9628,4448,5629,227,254,210,228,10,7,279,226,215,179,37,28,12,3,6,3,1,0,8,13,221,189,41,33,17,12,9,5,3,1 -050,01,097,Alabama,Mobile County,4,12,27487,13202,14285,8746,8965,4052,4865,102,122,196,242,6,6,100,85,8826,9033,4080,4889,183,189,215,255,10,8,12988,14114,8569,8823,4031,4849,96,117,194,238,3,5,95,82,8645,8888,4056,4873,174,181,212,251,6,7,214,171,177,142,21,16,6,5,2,4,3,1,5,3,181,145,24,16,9,8,3,4,4,1 -050,01,097,Alabama,Mobile County,4,13,24295,11557,12738,8066,8488,3148,3868,101,112,140,163,5,5,97,102,8141,8568,3173,3898,181,197,153,175,11,7,11403,12608,7934,8381,3136,3856,98,105,137,161,3,4,95,101,8007,8460,3161,3886,176,190,150,172,9,6,154,130,132,107,12,12,3,7,3,2,2,1,2,1,134,108,12,12,5,7,3,3,2,1 -050,01,097,Alabama,Mobile County,4,14,17763,8118,9645,5935,6739,1940,2628,77,67,97,120,6,5,63,86,5988,6811,1954,2652,133,138,107,135,8,9,8008,9526,5843,6646,1929,2614,76,65,96,120,5,4,59,77,5892,6711,1943,2635,130,131,104,129,7,6,110,119,92,93,11,14,1,2,1,0,1,1,4,9,96,100,11,17,3,7,3,6,1,3 -050,01,097,Alabama,Mobile County,4,15,13281,5829,7452,4229,5215,1457,2083,30,43,69,71,3,1,41,39,4266,5244,1467,2093,65,71,74,77,9,7,5753,7358,4166,5139,1449,2072,29,43,69,71,3,1,37,32,4199,5163,1456,2080,62,69,73,76,8,2,76,94,63,76,8,11,1,0,0,0,0,0,4,7,67,81,11,13,3,2,1,1,1,5 -050,01,097,Alabama,Mobile County,4,16,9754,4148,5606,3049,3916,1015,1593,20,15,41,49,0,0,23,33,3065,3942,1021,1599,34,43,47,55,5,0,4089,5545,3005,3864,1009,1587,20,15,41,49,0,0,14,30,3017,3890,1011,1592,31,40,42,53,2,0,59,61,44,52,6,6,0,0,0,0,0,0,9,3,48,52,10,7,3,3,5,2,3,0 -050,01,097,Alabama,Mobile County,4,17,7148,2626,4522,2064,3296,532,1156,8,20,13,26,0,0,9,24,2071,3318,535,1159,15,42,13,28,1,1,2608,4477,2047,3257,532,1151,8,19,13,26,0,0,8,24,2053,3279,534,1154,15,41,13,28,1,1,18,45,17,39,0,5,0,1,0,0,0,0,1,0,18,39,1,5,0,1,0,0,0,0 -050,01,097,Alabama,Mobile County,4,18,6639,2039,4600,1570,3369,446,1179,7,18,3,15,0,1,13,18,1579,3381,452,1186,18,33,5,18,0,3,2018,4557,1550,3332,445,1175,7,18,3,15,0,1,13,16,1559,3344,451,1181,18,32,5,17,0,2,21,43,20,37,1,4,0,0,0,0,0,0,0,2,20,37,1,5,0,1,0,1,0,1 -050,01,097,Alabama,Mobile County,5,0,413893,198370,215523,122427,127838,66980,78623,1946,1999,3967,4036,130,95,2920,2932,124930,130333,68489,80160,3203,3299,4670,4712,263,210,192862,210733,117962,123969,66486,78102,1735,1877,3913,4006,80,73,2686,2706,120285,126283,67863,79527,2882,3050,4546,4623,176,158,5508,4790,4465,3869,494,521,211,122,54,30,50,22,234,226,4645,4050,626,633,321,249,124,89,87,52 -050,01,097,Alabama,Mobile County,5,1,27682,14030,13652,7229,7125,5844,5628,104,109,255,271,6,7,592,512,7776,7595,6263,6002,211,203,389,377,25,20,13553,13142,6823,6706,5806,5583,102,96,254,267,3,5,565,485,7346,7152,6212,5941,198,177,381,367,20,15,477,510,406,419,38,45,2,13,1,4,3,2,27,27,430,443,51,61,13,26,8,10,5,5 -050,01,097,Alabama,Mobile County,5,2,27590,14077,13513,7529,7093,5732,5588,134,135,275,329,9,4,398,364,7887,7424,6004,5836,225,224,370,404,20,12,13598,13080,7177,6745,5675,5547,122,123,264,329,4,1,356,335,7503,7051,5921,5779,195,200,347,400,10,5,479,433,352,348,57,41,12,12,11,0,5,3,42,29,384,373,83,57,30,24,23,4,10,7 -050,01,097,Alabama,Mobile County,5,3,28438,14379,14059,7579,7407,6065,5864,141,186,262,268,12,7,320,327,7858,7697,6264,6070,238,290,339,344,23,15,14033,13627,7317,7074,6022,5805,127,172,262,265,7,3,298,308,7579,7347,6209,6001,214,264,334,336,15,9,346,432,262,333,43,59,14,14,0,3,5,4,22,19,279,350,55,69,24,26,5,8,8,6 -050,01,097,Alabama,Mobile County,5,4,28389,14559,13830,7746,7190,6111,6033,160,124,291,237,3,3,248,243,7961,7400,6253,6174,255,207,351,296,13,15,14174,13497,7429,6899,6066,6011,157,114,290,235,3,2,229,236,7630,7103,6200,6149,240,194,342,293,11,13,385,333,317,291,45,22,3,10,1,2,0,1,19,7,331,297,53,25,15,13,9,3,2,2 -050,01,097,Alabama,Mobile County,5,5,30234,14620,15614,8285,8602,5526,6220,168,166,377,383,17,10,247,233,8488,8796,5651,6345,280,264,447,448,28,20,14094,15205,7871,8285,5489,6166,136,151,371,383,10,9,217,211,8052,8464,5596,6278,233,237,435,443,15,17,526,409,414,317,37,54,32,15,6,0,7,1,30,22,436,332,55,67,47,27,12,5,13,3 -050,01,097,Alabama,Mobile County,5,6,28048,13280,14768,8121,8343,4430,5653,142,163,426,415,14,17,147,177,8237,8484,4500,5737,216,240,471,469,22,24,12691,14319,7624,7989,4396,5599,116,142,422,412,6,16,127,161,7724,8116,4452,5675,177,210,461,464,11,22,589,449,497,354,34,54,26,21,4,3,8,1,20,16,513,368,48,62,39,30,10,5,11,2 -050,01,097,Alabama,Mobile County,5,7,26618,12895,13723,7967,7615,4241,5499,147,117,387,329,11,13,142,150,8086,7738,4289,5566,226,192,436,379,18,17,12365,13384,7514,7351,4211,5451,119,109,383,326,7,12,131,135,7624,7461,4254,5510,190,176,431,373,13,15,530,339,453,264,30,48,28,8,4,3,4,1,11,15,462,277,35,56,36,16,5,6,5,2 -050,01,097,Alabama,Mobile County,5,8,24592,11869,12723,7558,7331,3720,4837,151,135,316,295,11,6,113,119,7650,7431,3752,4884,213,209,353,331,21,14,11404,12399,7190,7073,3678,4801,121,130,312,290,6,5,97,100,7267,7157,3705,4835,176,192,343,320,14,10,465,324,368,258,42,36,30,5,4,5,5,1,16,19,383,274,47,49,37,17,10,11,7,4 -050,01,097,Alabama,Mobile County,5,9,25671,12291,13380,8108,8174,3564,4602,140,145,344,328,11,6,124,125,8210,8274,3604,4647,222,231,374,357,18,11,11900,13091,7780,7926,3542,4576,121,143,333,326,8,3,116,117,7876,8021,3576,4617,202,222,359,353,13,7,391,289,328,248,22,26,19,2,11,2,3,3,8,8,334,253,28,30,20,9,15,4,5,4 -050,01,097,Alabama,Mobile County,5,10,27443,13169,14274,8500,8631,4167,5114,133,136,245,255,7,2,117,136,8597,8736,4197,5164,220,227,266,289,15,17,12860,13974,8262,8394,4124,5084,116,132,243,254,4,0,111,110,8355,8482,4150,5121,200,207,263,277,11,7,309,300,238,237,43,30,17,4,2,1,3,2,6,26,242,254,47,43,20,20,3,12,4,10 -050,01,097,Alabama,Mobile County,5,11,30027,14259,15768,9359,9685,4432,5572,150,161,200,204,9,2,109,144,9450,9800,4457,5614,231,267,222,232,16,8,13973,15537,9143,9502,4391,5542,136,158,194,202,8,2,101,131,9229,9606,4410,5582,214,254,212,227,13,8,286,231,216,183,41,30,14,3,6,2,1,0,8,13,221,194,47,32,17,13,10,5,3,0 -050,01,097,Alabama,Mobile County,5,12,28150,13470,14680,8851,9093,4211,5127,110,127,199,235,5,4,94,94,8922,9166,4238,5155,184,202,219,251,8,7,13255,14487,8674,8935,4186,5103,103,123,197,231,3,3,92,92,8744,9006,4211,5131,175,196,216,247,5,6,215,193,177,158,25,24,7,4,2,4,2,1,2,2,178,160,27,24,9,6,3,4,3,1 -050,01,097,Alabama,Mobile County,5,13,24196,11562,12634,7909,8264,3286,3977,108,111,140,177,6,5,113,100,7999,8342,3318,4006,198,192,158,192,14,9,11397,12503,7765,8152,3276,3969,104,104,140,176,3,5,109,97,7853,8228,3305,3996,193,183,156,191,9,9,165,131,144,112,10,8,4,7,0,1,3,0,4,3,146,114,13,10,5,9,2,1,5,0 -050,01,097,Alabama,Mobile County,5,14,19316,8882,10434,6517,7302,2100,2834,86,82,109,129,6,6,64,81,6567,7370,2120,2852,141,148,115,142,8,8,8754,10280,6409,7176,2089,2818,85,79,107,129,5,5,59,73,6455,7238,2107,2835,137,141,112,137,7,7,128,154,108,126,11,16,1,3,2,0,1,1,5,8,112,132,13,17,4,7,3,5,1,1 -050,01,097,Alabama,Mobile County,5,15,13629,6013,7616,4367,5344,1493,2098,34,45,71,76,3,2,45,51,4406,5385,1504,2110,74,87,78,81,5,7,5912,7520,4280,5267,1484,2086,32,45,71,76,3,1,42,45,4316,5303,1494,2097,70,84,78,81,5,3,101,96,87,77,9,12,2,0,0,0,0,1,3,6,90,82,10,13,4,3,0,0,0,4 -050,01,097,Alabama,Mobile County,5,16,9987,4251,5736,3111,4003,1047,1617,20,22,50,58,0,0,23,36,3127,4031,1056,1625,34,49,56,67,5,1,4179,5667,3053,3943,1042,1612,20,22,50,58,0,0,14,32,3065,3968,1045,1620,33,48,50,63,1,1,72,69,58,60,5,5,0,0,0,0,0,0,9,4,62,63,11,5,1,1,6,4,4,0 -050,01,097,Alabama,Mobile County,5,17,7092,2675,4417,2070,3193,572,1162,7,16,17,25,0,0,9,21,2077,3209,575,1168,12,33,18,28,2,1,2653,4372,2051,3154,571,1156,7,16,17,25,0,0,7,21,2056,3170,573,1162,12,33,18,28,1,1,22,45,19,39,1,6,0,0,0,0,0,0,2,0,21,39,2,6,0,0,0,0,1,0 -050,01,097,Alabama,Mobile County,5,18,6791,2089,4702,1621,3443,439,1198,11,19,3,22,0,1,15,19,1632,3455,444,1205,23,34,8,25,2,4,2067,4649,1600,3398,438,1193,11,18,3,22,0,1,15,17,1611,3410,443,1198,23,32,8,23,2,3,22,53,21,45,1,5,0,1,0,0,0,0,0,2,21,45,1,7,0,2,0,2,0,1 -050,01,097,Alabama,Mobile County,6,0,414025,198310,215715,121930,127444,67430,79016,1936,2029,3917,4079,123,102,2974,3045,124500,130027,68950,80649,3254,3346,4616,4787,226,252,192602,210621,117275,123303,66888,78469,1758,1899,3866,4056,81,80,2734,2814,119652,125714,68294,79981,2948,3092,4506,4705,148,186,5708,5094,4655,4141,542,547,178,130,51,23,42,22,240,231,4848,4313,656,668,306,254,110,82,78,66 -050,01,097,Alabama,Mobile County,6,1,27186,13691,13495,7122,6978,5657,5623,90,97,225,267,6,7,591,523,7665,7457,6071,6004,201,190,360,382,27,20,13204,12992,6704,6557,5626,5583,86,85,223,264,3,5,562,498,7223,7016,6025,5950,184,167,353,375,20,16,487,503,418,421,31,40,4,12,2,3,3,2,29,25,442,441,46,54,17,23,7,7,7,4 -050,01,097,Alabama,Mobile County,6,2,27550,14098,13452,7420,7061,5859,5539,137,145,273,300,6,8,403,399,7783,7422,6134,5811,237,238,369,379,19,24,13557,12980,7028,6696,5777,5489,129,127,264,299,2,3,357,366,7354,7029,6029,5742,206,205,349,372,8,15,541,472,392,365,82,50,8,18,9,1,4,5,46,33,429,393,105,69,31,33,20,7,11,9 -050,01,097,Alabama,Mobile County,6,3,28159,14326,13833,7591,7274,5989,5718,151,186,257,307,12,5,326,343,7879,7580,6194,5935,249,283,335,389,18,23,13933,13384,7319,6923,5907,5658,140,170,257,306,8,1,302,326,7588,7216,6100,5867,228,258,329,383,11,16,393,449,272,351,82,60,11,16,0,1,4,4,24,17,291,364,94,68,21,25,6,6,7,7 -050,01,097,Alabama,Mobile County,6,4,27899,14190,13709,7547,7166,5936,5911,162,134,281,235,2,4,262,259,7781,7394,6084,6062,264,228,340,294,15,11,13815,13334,7234,6845,5903,5885,156,122,278,232,2,2,242,248,7452,7064,6042,6031,245,209,331,290,12,9,375,375,313,321,33,26,6,12,3,3,0,2,20,11,329,330,42,31,19,19,9,4,3,2 -050,01,097,Alabama,Mobile County,6,5,30185,14706,15479,8146,8420,5803,6297,163,162,348,343,13,7,233,250,8344,8632,5919,6437,269,260,410,416,20,17,14226,15059,7755,8086,5766,6242,146,153,344,343,10,4,205,231,7927,8281,5868,6368,237,243,403,412,14,13,480,420,391,334,37,55,17,9,4,0,3,3,28,19,417,351,51,69,32,17,7,4,6,4 -050,01,097,Alabama,Mobile County,6,6,28708,13631,15077,8337,8506,4585,5799,130,167,395,402,14,15,170,188,8474,8660,4660,5892,215,254,448,457,24,23,13029,14600,7826,8124,4550,5745,112,144,389,400,5,15,147,172,7946,8264,4614,5828,181,224,435,452,10,21,602,477,511,382,35,54,18,23,6,2,9,0,23,16,528,396,46,64,34,30,13,5,14,2 -050,01,097,Alabama,Mobile County,6,7,26664,12850,13814,7898,7644,4253,5510,156,118,386,366,8,17,149,159,8017,7778,4309,5577,236,197,435,415,13,23,12323,13436,7446,7332,4218,5465,133,115,382,363,7,16,137,145,7557,7454,4268,5527,205,185,429,412,10,19,527,378,452,312,35,45,23,3,4,3,1,1,12,14,460,324,41,50,31,12,6,3,3,4 -050,01,097,Alabama,Mobile County,6,8,24583,11847,12736,7448,7301,3808,4902,139,130,311,278,14,11,127,114,7560,7393,3848,4948,215,203,348,308,22,24,11387,12423,7062,7048,3774,4867,114,126,311,276,9,11,117,95,7165,7126,3808,4905,185,186,345,302,14,18,460,313,386,253,34,35,25,4,0,2,5,0,10,19,395,267,40,43,30,17,3,6,8,6 -050,01,097,Alabama,Mobile County,6,9,25462,12161,13301,8019,8092,3531,4600,141,158,353,327,10,4,107,120,8110,8187,3566,4644,214,235,374,357,12,11,11759,13003,7675,7838,3511,4572,120,151,343,327,7,2,103,113,7762,7927,3545,4612,192,225,363,357,8,8,402,298,344,254,20,28,21,7,10,0,3,2,4,7,348,260,21,32,22,10,11,0,4,3 -050,01,097,Alabama,Mobile County,6,10,26469,12698,13771,8147,8282,4027,4950,127,136,262,260,8,3,127,140,8253,8383,4061,5008,221,228,288,300,12,20,12374,13408,7896,7997,3982,4906,112,132,260,259,5,3,119,111,7996,8082,4013,4945,202,209,283,285,8,9,324,363,251,285,45,44,15,4,2,1,3,0,8,29,257,301,48,63,19,19,5,15,4,11 -050,01,097,Alabama,Mobile County,6,11,29602,14007,15595,9193,9531,4347,5544,154,159,209,212,8,2,96,147,9268,9648,4375,5592,229,270,228,243,11,9,13708,15348,8962,9336,4314,5514,136,156,202,210,7,2,87,130,9030,9442,4337,5556,206,255,219,235,8,7,299,247,231,195,33,30,18,3,7,2,1,0,9,17,238,206,38,36,23,15,9,8,3,2 -050,01,097,Alabama,Mobile County,6,12,28597,13670,14927,8878,9176,4370,5284,117,131,192,226,7,4,106,106,8959,9258,4401,5319,202,212,213,243,9,9,13435,14731,8690,9010,4336,5265,111,126,190,223,6,3,102,104,8769,9090,4364,5299,194,206,209,240,8,8,235,196,188,166,34,19,6,5,2,3,1,1,4,2,190,168,37,20,8,6,4,3,1,1 -050,01,097,Alabama,Mobile County,6,13,24393,11596,12797,7901,8243,3335,4157,93,111,152,190,4,6,111,90,7992,8309,3356,4186,187,186,169,204,7,8,11435,12660,7761,8129,3325,4144,90,104,152,189,0,6,107,88,7849,8193,3346,4173,182,177,167,203,2,8,161,137,140,114,10,13,3,7,0,1,4,0,4,2,143,116,10,13,5,9,2,1,5,0 -050,01,097,Alabama,Mobile County,6,14,20035,9252,10783,6708,7483,2258,2964,95,85,117,164,6,5,68,82,6762,7547,2273,2986,155,151,128,179,8,12,9096,10589,6575,7323,2242,2945,94,80,115,163,6,4,64,74,6625,7384,2257,2963,150,140,125,172,8,8,156,194,133,160,16,19,1,5,2,1,0,1,4,8,137,163,16,23,5,11,3,7,0,4 -050,01,097,Alabama,Mobile County,6,15,14325,6367,7958,4671,5593,1528,2178,42,45,75,86,4,2,47,54,4714,5635,1537,2191,80,88,82,90,6,8,6237,7864,4553,5514,1522,2168,40,45,75,86,3,1,44,50,4594,5553,1529,2179,77,86,81,90,5,6,130,94,118,79,6,10,2,0,0,0,1,1,3,4,120,82,8,12,3,2,1,0,1,2 -050,01,097,Alabama,Mobile County,6,16,10281,4363,5918,3169,4143,1092,1649,21,31,55,60,1,1,25,34,3187,4167,1098,1656,40,56,60,69,3,5,4283,5840,3105,4076,1084,1645,21,30,55,60,1,1,17,28,3118,4098,1088,1651,36,53,56,64,2,2,80,78,64,67,8,4,0,1,0,0,0,0,8,6,69,69,10,5,4,3,4,5,1,3 -050,01,097,Alabama,Mobile County,6,17,7112,2746,4366,2105,3126,597,1180,8,14,23,32,0,0,13,14,2114,3136,603,1183,19,27,23,36,0,1,2710,4320,2074,3089,596,1171,8,14,23,32,0,0,9,14,2079,3099,600,1174,17,27,23,36,0,1,36,46,31,37,1,9,0,0,0,0,0,0,4,0,35,37,3,9,2,0,0,0,0,0 -050,01,097,Alabama,Mobile County,6,18,6815,2111,4704,1630,3425,455,1211,10,20,3,24,0,1,13,23,1638,3441,461,1218,21,40,6,26,0,4,2091,4650,1610,3380,455,1205,10,19,3,24,0,1,13,21,1618,3396,461,1211,21,37,6,25,0,2,20,54,20,45,0,6,0,1,0,0,0,0,0,2,20,45,0,7,0,3,0,1,0,2 -050,01,097,Alabama,Mobile County,7,0,414298,198153,216145,121605,127394,67522,79282,1912,2012,3974,4234,123,103,3017,3120,124215,130051,69072,80951,3183,3339,4692,4975,246,247,192278,210830,116799,123027,66941,78732,1751,1888,3928,4213,82,76,2777,2894,119206,125513,68378,80286,2893,3093,4588,4891,170,180,5875,5315,4806,4367,581,550,161,124,46,21,41,27,240,226,5009,4538,694,665,290,246,104,84,76,67 -050,01,097,Alabama,Mobile County,7,1,27214,13714,13500,7232,6978,5568,5573,86,89,244,291,5,7,579,562,7763,7498,5976,5975,193,185,374,413,26,21,13219,13002,6812,6556,5531,5537,81,77,240,286,4,4,551,542,7317,7059,5924,5931,172,163,365,405,22,14,495,498,420,422,37,36,5,12,4,5,1,3,28,20,446,439,52,44,21,22,9,8,4,7 -050,01,097,Alabama,Mobile County,7,2,27448,13966,13482,7293,7090,5825,5555,132,136,265,275,6,6,445,420,7700,7470,6124,5844,229,236,364,366,24,21,13385,12964,6870,6669,5726,5510,126,127,262,275,0,2,401,381,7240,7018,6005,5776,205,207,351,357,9,11,581,518,423,421,99,45,6,9,3,0,6,4,44,39,460,452,119,68,24,29,13,9,15,10 -050,01,097,Alabama,Mobile County,7,3,27753,14107,13646,7498,7188,5864,5618,147,157,262,339,12,5,324,339,7789,7482,6063,5833,241,252,343,425,22,22,13644,13195,7181,6823,5764,5567,138,145,258,339,10,1,293,320,7446,7104,5947,5771,218,229,333,422,16,17,463,451,317,365,100,51,9,12,4,0,2,4,31,19,343,378,116,62,23,23,10,3,6,5 -050,01,097,Alabama,Mobile County,7,4,27310,13850,13460,7412,7083,5742,5710,152,153,266,241,4,5,274,268,7654,7321,5905,5870,254,242,329,304,13,17,13498,13076,7127,6771,5704,5677,145,133,265,237,2,1,255,257,7353,7000,5858,5829,234,219,322,299,9,11,352,384,285,312,38,33,7,20,1,4,2,4,19,11,301,321,47,41,20,23,7,5,4,6 -050,01,097,Alabama,Mobile County,7,5,29884,14619,15265,7988,8191,5897,6331,159,140,340,324,15,6,220,273,8172,8418,6012,6485,250,251,400,406,22,19,14152,14836,7596,7845,5862,6280,147,135,335,324,12,3,200,249,7761,8052,5966,6418,228,235,392,400,19,16,467,429,392,346,35,51,12,5,5,0,3,3,20,24,411,366,46,67,22,16,8,6,3,3 -050,01,097,Alabama,Mobile County,7,6,29272,13933,15339,8571,8639,4680,5936,124,173,367,404,17,13,174,174,8708,8780,4764,6022,207,249,419,459,26,22,13337,14821,8047,8212,4650,5882,113,150,362,403,9,11,156,163,8169,8342,4723,5964,185,220,411,455,15,18,596,518,524,427,30,54,11,23,5,1,8,2,18,11,539,438,41,58,22,29,8,4,11,4 -050,01,097,Alabama,Mobile County,7,7,26792,12799,13993,7890,7820,4223,5469,146,137,393,396,4,15,143,156,8006,7947,4274,5536,221,210,444,447,9,22,12271,13582,7422,7486,4195,5419,133,130,390,393,2,14,129,140,7524,7602,4241,5479,199,194,437,439,6,20,528,411,468,334,28,50,13,7,3,3,2,1,14,16,482,345,33,57,22,16,7,8,3,2 -050,01,097,Alabama,Mobile County,7,8,24790,11894,12896,7362,7297,3922,5046,136,122,323,292,15,15,136,124,7474,7400,3966,5092,213,199,365,329,27,26,11405,12558,6956,7011,3884,5018,112,117,323,290,12,14,118,108,7053,7101,3918,5056,178,184,360,320,21,20,489,338,406,286,38,28,24,5,0,2,3,1,18,16,421,299,48,36,35,15,5,9,6,6 -050,01,097,Alabama,Mobile County,7,9,25140,12076,13064,7880,7864,3573,4623,140,144,362,321,11,4,110,108,7967,7949,3607,4664,211,215,389,344,15,9,11661,12755,7528,7599,3556,4591,110,140,358,321,5,2,104,102,7611,7680,3588,4629,178,207,384,343,7,6,415,309,352,265,17,32,30,4,4,0,6,2,6,6,356,269,19,35,33,8,5,1,8,3 -050,01,097,Alabama,Mobile County,7,10,25445,12101,13344,7797,8049,3753,4705,131,143,287,292,6,3,127,152,7900,8162,3787,4762,222,241,315,334,12,22,11769,12962,7529,7762,3716,4647,117,135,280,292,4,3,123,123,7630,7856,3749,4690,204,217,308,320,8,11,332,382,268,287,37,58,14,8,7,0,2,0,4,29,270,306,38,72,18,24,7,14,4,11 -050,01,097,Alabama,Mobile County,7,11,29279,13857,15422,9041,9387,4344,5506,154,162,215,219,5,5,98,143,9122,9499,4367,5551,232,271,234,247,10,10,13572,15175,8833,9187,4300,5476,137,160,210,217,4,5,88,130,8908,9290,4319,5516,208,261,226,241,7,8,285,247,208,200,44,30,17,2,5,2,1,0,10,13,214,209,48,35,24,10,8,6,3,2 -050,01,097,Alabama,Mobile County,7,12,28898,13805,15093,8915,9257,4450,5361,127,140,193,225,9,4,111,106,9004,9345,4481,5391,209,222,216,243,13,6,13550,14892,8709,9088,4415,5337,120,136,191,224,8,3,107,104,8794,9174,4445,5367,199,216,212,242,11,5,255,201,206,169,35,24,7,4,2,1,1,1,4,2,210,171,36,24,10,6,4,1,2,1 -050,01,097,Alabama,Mobile County,7,13,24806,11809,12997,7975,8273,3476,4325,89,105,164,209,3,5,102,80,8058,8333,3498,4349,175,174,180,219,6,10,11628,12852,7815,8149,3464,4314,86,98,163,207,0,5,100,79,7896,8209,3486,4337,171,166,178,217,3,9,181,145,160,124,12,11,3,7,1,2,3,0,2,1,162,124,12,12,4,8,2,2,3,1 -050,01,097,Alabama,Mobile County,7,14,20766,9576,11190,6868,7626,2410,3217,102,92,117,163,5,5,74,87,6931,7695,2430,3238,167,169,125,177,7,8,9412,10998,6731,7464,2393,3199,100,87,115,162,5,4,68,82,6790,7530,2411,3219,162,160,120,174,6,6,164,192,137,162,17,18,2,5,2,1,0,1,6,5,141,165,19,19,5,9,5,3,1,2 -050,01,097,Alabama,Mobile County,7,15,14865,6595,8270,4869,5842,1551,2208,43,49,82,112,3,3,47,56,4909,5889,1561,2220,80,96,87,119,6,6,6471,8168,4754,5755,1547,2198,43,49,82,112,2,2,43,52,4790,5798,1555,2209,78,93,87,119,5,4,124,102,115,87,4,10,0,0,0,0,1,1,4,4,119,91,6,11,2,3,0,0,1,2 -050,01,097,Alabama,Mobile County,7,16,10630,4528,6102,3240,4286,1172,1680,23,34,62,68,3,1,28,33,3261,4311,1178,1689,42,59,69,74,6,3,4451,6020,3178,4215,1164,1677,22,34,62,68,3,1,22,25,3195,4235,1169,1682,39,56,65,70,5,2,77,82,62,71,8,3,1,0,0,0,0,0,6,8,66,76,9,7,3,3,4,4,1,1 -050,01,097,Alabama,Mobile County,7,17,7144,2801,4343,2125,3079,628,1203,11,9,24,38,0,0,13,14,2137,3089,631,1207,17,20,29,41,1,1,2747,4294,2079,3040,626,1193,11,9,24,38,0,0,7,14,2086,3050,626,1197,15,20,27,41,0,1,54,49,46,39,2,10,0,0,0,0,0,0,6,0,51,39,5,10,2,0,2,0,1,0 -050,01,097,Alabama,Mobile County,7,18,6862,2123,4739,1649,3445,444,1216,10,27,8,25,0,1,12,25,1660,3463,448,1223,20,48,10,28,1,2,2106,4680,1632,3395,444,1210,10,26,8,25,0,1,12,23,1643,3413,448,1216,20,46,10,27,1,1,17,59,17,50,0,6,0,1,0,0,0,0,0,2,17,50,0,7,0,2,0,1,0,1 -050,01,097,Alabama,Mobile County,8,0,414654,198111,216543,121087,127044,67903,79809,1890,1985,4036,4366,115,110,3080,3229,123781,129801,69497,81574,3161,3328,4794,5136,253,253,192083,211111,116186,122582,67271,79236,1732,1875,3987,4343,77,88,2830,2987,118679,125152,68734,80874,2885,3096,4677,5043,184,199,6028,5432,4901,4462,632,573,158,110,49,23,38,22,250,242,5102,4649,763,700,276,232,117,93,69,54 -050,01,097,Alabama,Mobile County,8,1,27222,13642,13580,7181,6993,5547,5626,72,83,275,321,8,4,559,553,7698,7498,5938,6031,173,174,411,438,28,18,13108,13086,6737,6575,5502,5588,60,70,266,312,7,4,536,537,7234,7065,5881,5985,152,154,397,423,25,18,534,494,444,418,45,38,12,13,9,9,1,0,23,16,464,433,57,46,21,20,14,15,3,0 -050,01,097,Alabama,Mobile County,8,2,27475,14018,13457,7257,7031,5893,5568,143,134,253,269,8,4,464,451,7679,7440,6212,5882,244,232,357,368,21,25,13396,12882,6808,6558,5790,5519,131,120,250,269,1,3,416,413,7190,6934,6082,5809,213,201,342,359,10,20,622,575,449,473,103,49,12,14,3,0,7,1,48,38,489,506,130,73,31,31,15,9,11,5 -050,01,097,Alabama,Mobile County,8,3,27114,13856,13258,7409,6928,5716,5509,137,133,248,340,7,6,339,342,7713,7230,5926,5722,228,230,336,429,24,16,13323,12845,7058,6604,5574,5460,129,123,245,340,6,2,311,316,7340,6884,5771,5660,208,207,323,422,17,11,533,413,351,324,142,49,8,10,3,0,1,4,28,26,373,346,155,62,20,23,13,7,7,5 -050,01,097,Alabama,Mobile County,8,4,27236,13813,13423,7405,7097,5710,5605,154,167,259,252,5,8,280,294,7660,7356,5871,5782,246,267,327,323,17,18,13452,13002,7120,6752,5663,5565,147,154,259,249,3,3,260,279,7357,7001,5816,5731,231,248,321,317,13,12,361,421,285,345,47,40,7,13,0,3,2,5,20,15,303,355,55,51,15,19,6,6,4,6 -050,01,097,Alabama,Mobile County,8,5,29009,14290,14719,7727,7761,5832,6228,149,123,351,298,7,11,224,298,7920,8013,5948,6396,244,241,410,382,11,25,13859,14324,7356,7441,5799,6181,142,122,347,298,6,8,209,274,7535,7674,5908,6334,229,228,404,377,10,21,431,395,371,320,33,47,7,1,4,0,1,3,15,24,385,339,40,62,15,13,6,5,1,4 -050,01,097,Alabama,Mobile County,8,6,30103,14348,15755,8699,8889,4981,6099,126,174,332,408,17,11,193,174,8854,9027,5066,6187,212,245,399,462,29,22,13784,15254,8196,8468,4956,6048,119,154,327,407,9,11,177,166,8339,8600,5034,6131,198,221,390,460,18,21,564,501,503,421,25,51,7,20,5,1,8,0,16,8,515,427,32,56,14,24,9,2,11,1 -050,01,097,Alabama,Mobile County,8,7,26815,12656,14159,7832,7874,4143,5513,151,143,383,434,3,13,144,182,7953,8032,4196,5592,226,228,432,492,13,19,12115,13728,7362,7537,4115,5459,131,136,382,433,1,9,124,154,7467,7670,4159,5527,191,207,428,487,8,13,541,431,470,337,28,54,20,7,1,1,2,4,20,28,486,362,37,65,35,21,4,5,5,6 -050,01,097,Alabama,Mobile County,8,8,25042,12050,12992,7298,7300,4124,5154,132,116,329,284,14,18,153,120,7428,7392,4177,5201,227,187,368,323,27,30,11571,12610,6913,6975,4080,5118,117,114,327,280,12,17,122,106,7019,7059,4116,5158,192,175,362,313,21,25,479,382,385,325,44,36,15,2,2,4,2,1,31,14,409,333,61,43,35,12,6,10,6,5 -050,01,097,Alabama,Mobile County,8,9,24516,11740,12776,7593,7549,3518,4651,141,130,377,317,12,7,99,122,7673,7643,3553,4698,206,207,404,347,17,16,11299,12458,7218,7280,3499,4617,110,129,373,317,8,6,91,109,7293,7366,3529,4660,170,197,397,345,11,12,441,318,375,269,19,34,31,1,4,0,4,1,8,13,380,277,24,38,36,10,7,2,6,4 -050,01,097,Alabama,Mobile County,8,10,25063,11804,13259,7681,8013,3561,4627,122,155,316,333,6,3,118,128,7781,8118,3594,4676,201,239,342,363,11,12,11462,12879,7397,7740,3534,4551,107,148,308,333,2,3,114,104,7493,7826,3564,4589,184,220,332,354,7,5,342,380,284,273,27,76,15,7,8,0,4,0,4,24,288,292,30,87,17,19,10,9,4,7 -050,01,097,Alabama,Mobile County,8,11,28730,13677,15053,8846,9144,4370,5382,128,156,217,221,4,4,112,146,8940,9258,4400,5429,207,263,240,251,11,10,13414,14784,8645,8919,4329,5351,120,152,213,220,4,4,103,138,8731,9028,4355,5395,196,254,231,247,10,8,263,269,201,225,41,31,8,4,4,1,0,0,9,8,209,230,45,34,11,9,9,4,1,2 -050,01,097,Alabama,Mobile County,8,12,28985,13739,15246,8910,9282,4363,5486,144,148,197,207,8,4,117,119,9006,9376,4396,5527,237,241,225,229,11,9,13451,15027,8672,9102,4331,5461,135,143,196,207,7,3,110,111,8763,9190,4359,5498,222,230,222,226,10,8,288,219,238,180,32,25,9,5,1,0,1,1,7,8,243,186,37,29,15,11,3,3,1,1 -050,01,097,Alabama,Mobile County,8,13,25398,12088,13310,8051,8425,3672,4467,90,106,174,226,4,5,97,81,8131,8488,3695,4495,166,179,190,234,9,7,11913,13176,7904,8309,3656,4460,85,100,172,223,1,5,95,79,7982,8370,3678,4488,161,171,188,231,5,7,175,134,147,116,16,7,5,6,2,3,3,0,2,2,149,118,17,7,5,8,2,3,4,0 -050,01,097,Alabama,Mobile County,8,14,21551,9955,11596,7058,7799,2588,3430,96,97,128,178,5,6,80,86,7127,7874,2607,3451,161,169,138,191,9,11,9803,11412,6926,7638,2575,3416,95,92,126,177,4,5,77,84,6993,7713,2592,3435,160,164,134,188,8,8,152,184,132,161,13,14,1,5,2,1,1,1,3,2,134,161,15,16,1,5,4,3,1,3 -050,01,097,Alabama,Mobile County,8,15,15246,6746,8500,4970,5969,1577,2266,56,51,89,144,4,4,50,66,5012,6020,1590,2285,97,106,95,153,5,7,6619,8376,4855,5864,1571,2256,56,50,88,144,3,3,46,59,4894,5910,1580,2271,97,101,93,151,4,5,127,124,115,105,6,10,0,1,1,0,1,1,4,7,118,110,10,14,0,5,2,2,1,2 -050,01,097,Alabama,Mobile County,8,16,10908,4623,6285,3327,4397,1177,1755,27,37,62,67,3,1,27,28,3346,4417,1185,1763,50,56,66,76,4,5,4536,6196,3254,4320,1168,1750,26,37,62,67,3,1,23,21,3271,4336,1175,1755,47,56,63,70,4,3,87,89,73,77,9,5,1,0,0,0,0,0,4,7,75,81,10,8,3,0,3,6,0,2 -050,01,097,Alabama,Mobile County,8,17,7267,2902,4365,2181,3105,660,1197,12,6,34,40,0,0,15,17,2191,3117,668,1202,18,19,41,44,6,1,2834,4314,2123,3061,658,1190,12,6,34,40,0,0,7,17,2129,3073,660,1195,16,19,37,44,3,1,68,51,58,44,2,7,0,0,0,0,0,0,8,0,62,44,8,7,2,0,4,0,3,0 -050,01,097,Alabama,Mobile County,8,18,6974,2164,4810,1662,3488,471,1246,10,26,12,27,0,1,9,22,1669,3502,475,1255,18,45,13,31,0,2,2144,4758,1642,3439,471,1246,10,25,12,27,0,1,9,20,1649,3453,475,1253,18,43,13,29,0,1,20,52,20,49,0,0,0,1,0,0,0,0,0,2,20,49,0,2,0,2,0,2,0,1 -050,01,097,Alabama,Mobile County,9,0,415169,198289,216880,120754,126626,68226,80376,1890,2015,4104,4464,95,103,3220,3296,123541,129451,69925,82190,3206,3331,4871,5267,227,245,192139,211324,115742,122052,67584,79790,1741,1909,4055,4439,65,76,2952,3058,118312,124686,69143,81476,2928,3106,4754,5179,161,189,6150,5556,5012,4574,642,586,149,106,49,25,30,27,268,238,5229,4765,782,714,278,225,117,88,66,56 -050,01,097,Alabama,Mobile County,9,1,27257,13681,13576,7130,6956,5607,5638,82,83,294,339,5,2,563,558,7648,7469,6012,6051,182,170,422,462,20,13,13149,13087,6678,6536,5572,5601,67,74,285,328,5,2,542,546,7177,7039,5963,6006,159,156,409,447,19,13,532,489,452,420,35,37,15,9,9,11,0,0,21,12,471,430,49,45,23,14,13,15,1,0 -050,01,097,Alabama,Mobile County,9,2,27337,13893,13444,7228,7001,5784,5577,121,121,235,272,7,2,518,471,7699,7430,6142,5912,233,227,351,365,24,17,13282,12849,6756,6496,5709,5530,113,113,233,271,2,0,469,439,7189,6899,6040,5841,207,202,335,360,10,11,611,595,472,505,75,47,8,8,2,1,5,2,49,32,510,531,102,71,26,25,16,5,14,6 -050,01,097,Alabama,Mobile County,9,3,26865,13721,13144,7313,6849,5649,5445,131,136,263,362,8,4,357,348,7626,7160,5871,5664,225,235,351,455,23,23,13127,12713,6946,6519,5471,5401,122,124,259,362,4,0,325,307,7235,6796,5674,5600,205,201,337,444,14,12,594,431,367,330,178,44,9,12,4,0,4,4,32,41,391,364,197,64,20,34,14,11,9,11 -050,01,097,Alabama,Mobile County,9,4,27197,13817,13380,7400,7087,5720,5535,153,175,254,261,2,10,288,312,7656,7365,5892,5725,248,271,324,341,10,24,13431,12935,7100,6727,5656,5484,146,163,254,258,1,4,274,299,7346,6993,5821,5668,233,252,318,335,9,17,386,445,300,360,64,51,7,12,0,3,1,6,14,13,310,372,71,57,15,19,6,6,1,7 -050,01,097,Alabama,Mobile County,9,5,28073,13854,14219,7445,7440,5659,6103,142,127,360,262,6,8,242,279,7649,7677,5788,6260,242,229,427,346,17,17,13444,13844,7100,7136,5623,6053,138,124,353,262,6,7,224,262,7293,7359,5743,6198,227,219,416,342,13,16,410,375,345,304,36,50,4,3,7,0,0,1,18,17,356,318,45,62,15,10,11,4,4,1 -050,01,097,Alabama,Mobile County,9,6,30961,14911,16050,8872,8925,5318,6332,148,164,344,422,11,16,218,191,9044,9081,5420,6431,246,239,416,485,22,25,14335,15539,8366,8500,5290,6282,137,145,337,422,7,13,198,177,8521,8647,5382,6371,223,214,404,481,16,20,576,511,506,425,28,50,11,19,7,0,4,3,20,14,523,434,38,60,23,25,12,4,6,5 -050,01,097,Alabama,Mobile County,9,7,26792,12558,14234,7727,7917,4189,5522,152,161,359,440,2,10,129,184,7836,8074,4233,5601,217,248,404,497,9,17,12023,13770,7253,7541,4160,5468,133,154,358,439,0,6,119,162,7353,7678,4199,5537,191,228,401,494,5,13,535,464,474,376,29,54,19,7,1,1,2,4,10,22,483,396,34,64,26,20,3,3,4,4 -050,01,097,Alabama,Mobile County,9,8,25368,12209,13159,7404,7358,4152,5247,128,118,353,297,11,17,161,122,7541,7460,4212,5295,220,186,398,336,23,26,11701,12777,6996,7040,4109,5209,120,115,352,292,10,14,114,107,7093,7127,4147,5251,183,175,386,326,16,21,508,382,408,318,43,38,8,3,1,5,1,3,47,15,448,333,65,44,37,11,12,10,7,5 -050,01,097,Alabama,Mobile County,9,9,23969,11417,12552,7329,7293,3494,4727,133,120,344,289,9,1,108,122,7417,7388,3528,4771,201,198,372,320,17,10,10969,12242,6952,7037,3472,4690,104,118,341,289,5,1,95,107,7030,7121,3500,4728,166,186,365,319,10,8,448,310,377,256,22,37,29,2,3,0,4,0,13,15,387,267,28,43,35,12,7,1,7,2 -050,01,097,Alabama,Mobile County,9,10,24992,11820,13172,7761,7948,3463,4580,126,158,340,352,9,10,121,124,7862,8042,3494,4629,212,232,367,386,15,20,11485,12805,7469,7679,3445,4509,111,151,334,352,6,9,120,105,7569,7760,3476,4549,196,219,361,376,12,14,335,367,292,269,18,71,15,7,6,0,3,1,1,19,293,282,18,80,16,13,6,10,3,6 -050,01,097,Alabama,Mobile County,9,11,27793,13221,14572,8434,8814,4316,5231,122,143,224,239,3,3,122,142,8538,8926,4348,5278,212,241,245,268,9,10,12941,14283,8214,8573,4280,5200,113,139,222,238,2,3,110,130,8307,8675,4308,5241,196,231,242,264,6,8,280,289,220,241,36,31,9,4,2,1,1,0,12,12,231,251,40,37,16,10,3,4,3,2 -050,01,097,Alabama,Mobile County,9,12,28903,13604,15299,8866,9280,4282,5516,145,156,196,210,7,3,108,134,8955,9387,4310,5559,230,262,218,235,10,8,13332,15071,8647,9093,4252,5489,136,152,193,210,6,3,98,124,8726,9190,4277,5530,214,251,213,232,9,8,272,228,219,187,30,27,9,4,3,0,1,0,10,10,229,197,33,29,16,11,5,3,1,0 -050,01,097,Alabama,Mobile County,9,13,25957,12265,13692,8114,8612,3770,4660,94,113,193,225,4,5,90,77,8182,8667,3794,4688,167,176,209,236,7,7,12060,13541,7940,8485,3747,4646,90,107,192,223,3,4,88,76,8007,8539,3769,4674,162,169,208,234,6,6,205,151,174,127,23,14,4,6,1,2,1,1,2,1,175,128,25,14,5,7,1,2,1,1 -050,01,097,Alabama,Mobile County,9,14,22357,10374,11983,7246,7966,2805,3636,97,105,130,181,4,6,92,89,7323,8041,2826,3660,178,177,139,191,9,9,10221,11827,7109,7829,2796,3626,96,98,128,180,2,5,90,89,7184,7904,2817,3650,176,170,136,190,7,8,153,156,137,137,9,10,1,7,2,1,2,1,2,0,139,137,9,10,2,7,3,1,2,1 -050,01,097,Alabama,Mobile County,9,15,15846,7024,8822,5148,6111,1654,2415,71,60,98,162,4,4,49,70,5190,6161,1669,2436,109,115,104,175,6,10,6903,8668,5040,5977,1648,2404,71,58,97,162,3,3,44,64,5077,6024,1659,2423,108,110,103,172,5,7,121,154,108,134,6,11,0,2,1,0,1,1,5,6,113,137,10,13,1,5,1,3,1,3 -050,01,097,Alabama,Mobile County,9,16,11155,4741,6414,3415,4506,1205,1765,23,35,64,74,3,1,31,33,3437,4528,1214,1774,49,56,67,83,5,7,4645,6318,3329,4425,1199,1756,22,35,64,74,3,1,28,27,3349,4445,1206,1760,48,55,66,80,4,5,96,96,86,81,6,9,1,0,0,0,0,0,3,6,88,83,8,14,1,1,1,3,1,2 -050,01,097,Alabama,Mobile County,9,17,7355,2934,4421,2193,3109,676,1231,14,15,37,41,0,0,14,25,2202,3131,685,1234,20,32,40,48,1,1,2863,4368,2135,3063,672,1226,14,15,37,41,0,0,5,23,2137,3084,675,1228,19,32,37,46,0,1,71,53,58,46,4,5,0,0,0,0,0,0,9,2,65,47,10,6,1,0,3,2,1,0 -050,01,097,Alabama,Mobile County,9,18,6992,2245,4747,1729,3454,483,1216,8,25,16,36,0,1,9,15,1736,3464,487,1222,15,37,17,38,0,1,2228,4687,1712,3396,483,1216,8,24,16,36,0,1,9,14,1719,3406,487,1221,15,36,17,37,0,1,17,60,17,58,0,0,0,1,0,0,0,0,0,1,17,58,0,1,0,1,0,1,0,0 -050,01,097,Alabama,Mobile County,10,0,414209,197625,216584,120008,125947,68215,80680,1894,2023,4114,4476,80,94,3314,3364,122898,128833,69969,82531,3210,3353,4921,5287,209,250,191492,210953,114962,121299,67608,80106,1751,1921,4070,4438,51,68,3050,3121,117643,123991,69230,81833,2933,3131,4811,5185,146,189,6133,5631,5046,4648,607,574,143,102,44,38,29,26,264,243,5255,4842,739,698,277,222,110,102,63,61 -050,01,097,Alabama,Mobile County,10,1,27255,13728,13527,7199,6872,5549,5646,99,83,283,342,1,5,597,579,7744,7403,5972,6071,202,178,421,473,19,20,13177,13029,6738,6455,5516,5605,80,77,267,329,1,3,575,560,7265,6971,5925,6020,174,163,400,454,18,16,551,498,461,417,33,41,19,6,16,13,0,2,22,19,479,432,47,51,28,15,21,19,1,4 -050,01,097,Alabama,Mobile County,10,2,26862,13644,13218,7108,6854,5664,5527,102,99,242,268,5,2,523,468,7586,7276,6023,5857,211,197,361,367,20,17,13080,12648,6641,6366,5618,5483,95,91,242,263,1,0,483,445,7087,6770,5956,5797,186,179,352,356,12,11,564,570,467,488,46,44,7,8,0,5,4,2,40,23,499,506,67,60,25,18,9,11,8,6 -050,01,097,Alabama,Mobile County,10,3,26886,13719,13167,7298,6894,5644,5422,131,130,271,361,6,4,369,356,7632,7214,5876,5648,226,223,365,458,17,20,13134,12713,6910,6525,5498,5380,127,122,266,360,2,0,331,326,7212,6818,5711,5588,207,200,349,450,7,14,585,454,388,369,146,42,4,8,5,1,4,4,38,30,420,396,165,60,19,23,16,8,10,6 -050,01,097,Alabama,Mobile County,10,4,26772,13578,13194,7273,6957,5621,5459,136,178,255,277,2,7,291,316,7533,7241,5792,5648,225,277,328,357,16,19,13143,12732,6960,6595,5519,5408,130,165,255,276,1,3,278,285,7211,6851,5684,5581,212,251,324,349,13,11,435,462,313,362,102,51,6,13,0,1,1,4,13,31,322,390,108,67,13,26,4,8,3,8 -050,01,097,Alabama,Mobile County,10,5,27166,13480,13686,7274,7143,5470,5900,138,121,338,245,3,8,257,269,7496,7373,5610,6052,240,215,410,324,7,24,13102,13303,6955,6836,5438,5857,134,112,334,237,3,6,238,255,7162,7056,5567,6001,227,199,402,312,5,18,378,383,319,307,32,43,4,9,4,8,0,2,19,14,334,317,43,51,13,16,8,12,2,6 -050,01,097,Alabama,Mobile County,10,6,31033,14887,16146,8674,8822,5474,6489,171,178,333,408,7,10,228,239,8854,9012,5587,6613,275,272,408,483,15,25,14386,15646,8245,8416,5444,6435,159,163,328,406,6,7,204,219,8406,8593,5543,6549,249,247,394,475,12,20,501,500,429,406,30,54,12,15,5,2,1,3,24,20,448,419,44,64,26,25,14,8,3,5 -050,01,097,Alabama,Mobile County,10,7,26919,12595,14324,7672,8040,4276,5527,141,171,360,403,5,12,141,171,7791,8191,4327,5600,204,251,410,456,12,18,12036,13847,7177,7643,4248,5481,125,157,357,402,1,11,128,153,7283,7776,4294,5545,183,227,405,453,7,17,559,477,495,397,28,46,16,14,3,1,4,1,13,18,508,415,33,55,21,24,5,3,5,1 -050,01,097,Alabama,Mobile County,10,8,25544,12223,13321,7457,7418,4124,5310,130,113,350,330,7,11,155,139,7589,7529,4181,5367,218,190,389,371,19,20,11727,12899,7047,7068,4091,5262,119,111,349,327,5,6,116,125,7149,7168,4127,5312,186,181,382,366,13,12,496,422,410,350,33,48,11,2,1,3,2,5,39,14,440,361,54,55,32,9,7,5,6,8 -050,01,097,Alabama,Mobile County,10,9,23860,11370,12490,7208,7188,3586,4778,134,130,318,279,9,4,115,111,7295,7276,3628,4821,207,197,346,304,18,14,10882,12169,6799,6923,3554,4740,106,128,317,279,5,4,101,95,6878,6999,3588,4777,170,186,343,301,9,12,488,321,409,265,32,38,28,2,1,0,4,0,14,16,417,277,40,44,37,11,3,3,9,2 -050,01,097,Alabama,Mobile County,10,10,24858,11762,13096,7744,7876,3415,4581,126,153,358,351,11,6,108,129,7836,7974,3445,4627,197,234,384,387,16,17,11425,12787,7435,7637,3407,4529,112,148,355,351,9,5,107,117,7526,7728,3437,4570,182,223,381,382,14,11,337,309,309,239,8,52,14,5,3,0,2,1,1,12,310,246,8,57,15,11,3,5,2,6 -050,01,097,Alabama,Mobile County,10,11,26678,12672,14006,8044,8385,4124,5073,117,138,253,270,3,7,131,133,8155,8492,4156,5120,213,234,277,296,12,15,12398,13689,7828,8127,4088,5036,111,135,250,269,1,7,120,115,7933,8220,4115,5075,199,220,273,290,8,12,274,317,216,258,36,37,6,3,3,1,2,0,11,18,222,272,41,45,14,14,4,6,4,3 -050,01,097,Alabama,Mobile County,10,12,28533,13377,15156,8686,9249,4246,5435,138,146,192,189,6,2,109,135,8772,9361,4278,5478,218,247,217,212,13,8,13119,14939,8483,9069,4212,5411,130,145,190,189,5,2,99,123,8561,9169,4242,5450,204,238,212,209,10,7,258,217,203,180,34,24,8,1,2,0,1,0,10,12,211,192,36,28,14,9,5,3,3,1 -050,01,097,Alabama,Mobile County,10,13,26410,12403,14007,8134,8657,3881,4909,104,127,199,227,3,3,82,84,8207,8716,3897,4939,170,192,212,242,4,6,12179,13832,7941,8513,3857,4888,99,121,198,225,3,2,81,83,8013,8572,3873,4917,164,186,211,240,4,4,224,175,193,144,24,21,5,6,1,2,0,1,1,1,194,144,24,22,6,6,1,2,0,2 -050,01,097,Alabama,Mobile County,10,14,22196,10372,11824,7129,7709,2900,3725,98,101,136,193,5,7,104,89,7215,7782,2928,3751,189,173,148,202,9,13,10213,11699,6985,7598,2892,3718,96,95,136,192,2,7,102,89,7069,7671,2920,3744,185,167,146,201,6,13,159,125,144,111,8,7,2,6,0,1,3,0,2,0,146,111,8,7,4,6,2,1,3,0 -050,01,097,Alabama,Mobile County,10,15,17201,7628,9573,5611,6643,1789,2607,77,72,99,177,4,4,48,70,5650,6698,1805,2624,120,130,106,187,6,7,7510,9396,5502,6490,1786,2594,77,69,99,177,3,3,43,63,5538,6541,1798,2609,117,124,102,184,3,4,118,177,109,153,3,13,0,3,0,0,1,1,5,7,112,157,7,15,3,6,4,3,3,3 -050,01,097,Alabama,Mobile County,10,16,11406,4836,6570,3479,4607,1227,1806,27,39,65,76,3,1,35,41,3508,4635,1234,1821,56,69,71,84,5,4,4727,6471,3381,4522,1219,1797,26,39,65,76,3,1,33,36,3408,4547,1225,1809,54,68,70,81,5,4,109,99,98,85,8,9,1,0,0,0,0,0,2,5,100,88,9,12,2,1,1,3,0,0 -050,01,097,Alabama,Mobile County,10,17,7468,3010,4458,2226,3126,717,1248,13,18,43,44,0,0,11,22,2236,3145,718,1251,19,37,47,46,1,2,2939,4408,2168,3082,713,1244,13,18,43,44,0,0,2,20,2169,3099,714,1247,14,36,44,45,0,2,71,50,58,44,4,4,0,0,0,0,0,0,9,2,67,46,4,4,5,1,3,1,1,0 -050,01,097,Alabama,Mobile County,10,18,7162,2341,4821,1792,3507,508,1238,12,26,19,36,0,1,10,13,1799,3515,512,1243,20,37,21,38,0,1,2315,4746,1767,3434,508,1238,12,25,19,36,0,1,9,12,1773,3442,511,1242,20,36,21,37,0,1,26,75,25,73,0,0,0,1,0,0,0,0,1,1,26,73,1,1,0,1,0,1,0,0 -050,01,097,Alabama,Mobile County,11,0,414275,197355,216920,119458,125741,68530,81094,1864,1993,4077,4525,80,93,3346,3474,122368,128699,70337,83042,3179,3344,4898,5376,209,255,191119,211156,114316,120988,67937,80515,1725,1903,4034,4472,44,63,3063,3215,116993,123749,69595,82316,2900,3123,4795,5261,143,186,6236,5764,5142,4753,593,579,139,90,43,53,36,30,283,259,5375,4950,742,726,279,221,103,115,66,69 -050,01,097,Alabama,Mobile County,11,1,27364,13803,13561,7174,6895,5653,5613,111,80,261,367,2,6,602,600,7731,7443,6077,6053,216,177,404,497,23,22,13256,13060,6717,6473,5619,5580,92,72,250,353,1,4,577,578,7249,7002,6032,6005,186,160,388,480,20,18,547,501,457,422,34,33,19,8,11,14,1,2,25,22,482,441,45,48,30,17,16,17,3,4 -050,01,097,Alabama,Mobile County,11,2,26388,13298,13090,6943,6740,5515,5526,80,85,238,256,5,5,517,478,7412,7171,5871,5859,188,188,358,363,18,26,12714,12532,6472,6260,5465,5481,71,79,229,252,0,1,477,459,6909,6679,5798,5801,161,171,341,353,11,18,584,558,471,480,50,45,9,6,9,4,5,4,40,19,503,492,73,58,27,17,17,10,7,8 -050,01,097,Alabama,Mobile County,11,3,26864,13706,13158,7221,6913,5687,5401,139,121,275,332,5,6,379,385,7564,7257,5928,5652,235,218,369,432,17,22,13103,12669,6790,6522,5570,5350,133,116,271,332,1,0,338,349,7094,6834,5791,5578,213,196,356,423,10,13,603,489,431,391,117,51,6,5,4,0,4,6,41,36,470,423,137,74,22,22,13,9,7,9 -050,01,097,Alabama,Mobile County,11,4,26700,13527,13173,7284,6972,5550,5391,138,173,257,303,4,5,294,329,7549,7261,5725,5592,233,270,334,391,14,17,13041,12702,6948,6591,5425,5341,130,164,257,302,3,2,278,302,7200,6856,5594,5526,214,250,326,384,12,11,486,471,336,381,125,50,8,9,0,1,1,3,16,27,349,405,131,66,19,20,8,7,2,6 -050,01,097,Alabama,Mobile County,11,5,26855,13232,13623,7200,7209,5316,5767,129,114,322,260,2,7,263,266,7427,7436,5470,5921,225,207,389,337,9,20,12867,13219,6889,6889,5288,5732,126,107,321,236,1,7,242,248,7097,7104,5428,5875,214,192,387,309,7,18,365,404,311,320,28,35,3,7,1,24,1,0,21,18,330,332,42,46,11,15,2,28,2,2 -050,01,097,Alabama,Mobile County,11,6,30619,14824,15795,8456,8459,5642,6513,161,175,338,384,5,7,222,257,8632,8667,5752,6646,261,281,410,464,15,17,14371,15321,8059,8072,5615,6463,155,164,331,384,5,2,206,236,8223,8266,5714,6584,246,258,400,459,13,10,453,474,397,387,27,50,6,11,7,0,0,5,16,21,409,401,38,62,15,23,10,5,2,7 -050,01,097,Alabama,Mobile County,11,7,27312,12738,14574,7738,8152,4397,5673,135,161,326,387,7,8,135,193,7851,8315,4452,5763,196,246,375,448,10,14,12208,14082,7266,7755,4379,5616,114,147,324,386,0,8,125,170,7370,7898,4428,5695,170,220,372,444,2,12,530,492,472,397,18,57,21,14,2,1,7,0,10,23,481,417,24,68,26,26,3,4,8,2 -050,01,097,Alabama,Mobile County,11,8,25687,12237,13450,7469,7430,4103,5375,130,117,353,363,6,10,176,155,7615,7558,4169,5435,231,200,394,408,19,21,11696,12985,7020,7042,4070,5327,123,116,353,361,3,6,127,133,7127,7152,4112,5377,195,190,388,400,11,13,541,465,449,388,33,48,7,1,0,2,3,4,49,22,488,406,57,58,36,10,6,8,8,8 -050,01,097,Alabama,Mobile County,11,9,23812,11292,12520,7074,7121,3655,4874,126,128,302,281,7,6,128,110,7180,7210,3699,4917,201,200,333,312,15,19,10815,12204,6675,6864,3625,4839,104,124,302,278,3,5,106,94,6765,6941,3658,4876,166,183,329,306,8,15,477,316,399,257,30,35,22,4,0,3,4,1,22,16,415,269,41,41,35,17,4,6,7,4 -050,01,097,Alabama,Mobile County,11,10,24726,11697,13029,7669,7857,3436,4552,123,150,359,350,11,6,99,114,7754,7945,3465,4596,189,219,384,384,14,15,11334,12756,7339,7631,3427,4516,107,147,355,350,8,5,98,107,7423,7716,3455,4554,172,213,380,381,11,11,363,273,330,226,9,36,16,3,4,0,3,1,1,7,331,229,10,42,17,6,4,3,3,4 -050,01,097,Alabama,Mobile County,11,11,25712,12247,13465,7784,8044,3945,4882,114,135,272,267,3,4,129,133,7892,8150,3977,4929,209,229,302,294,10,13,11967,13125,7553,7776,3911,4829,107,134,272,266,1,4,123,116,7657,7871,3940,4866,198,217,299,290,7,10,280,340,231,268,34,53,7,1,0,1,2,0,6,17,235,279,37,63,11,12,3,4,3,3 -050,01,097,Alabama,Mobile County,11,12,28113,13152,14961,8537,9079,4182,5391,125,152,205,199,5,4,98,136,8607,9188,4218,5440,198,253,227,224,12,7,12889,14719,8341,8885,4140,5358,118,151,201,199,4,4,85,122,8403,8981,4168,5401,183,243,220,221,8,7,263,242,196,194,42,33,7,1,4,0,1,0,13,14,204,207,50,39,15,10,7,3,4,0 -050,01,097,Alabama,Mobile County,11,13,26859,12607,14252,8172,8702,4032,5101,116,129,188,226,6,5,93,89,8246,8768,4057,5133,188,203,204,236,11,7,12373,14066,7971,8548,4009,5079,112,124,187,225,6,2,88,88,8041,8614,4033,5110,183,197,200,235,9,4,234,186,201,154,23,22,4,5,1,1,0,3,5,1,205,154,24,23,5,6,4,1,2,3 -050,01,097,Alabama,Mobile County,11,14,22430,10376,12054,7112,7778,2935,3897,88,101,144,194,3,8,94,76,7192,7833,2960,3923,169,162,157,205,6,12,10224,11931,6973,7671,2929,3891,86,93,144,193,0,8,92,75,7051,7725,2953,3917,166,153,157,204,3,12,152,123,139,107,6,6,2,8,0,1,3,0,2,1,141,108,7,6,3,9,0,1,3,0 -050,01,097,Alabama,Mobile County,11,15,17744,7956,9788,5770,6714,1940,2722,86,79,97,195,5,3,58,75,5819,6768,1954,2741,136,135,104,207,5,14,7816,9612,5643,6566,1933,2708,85,74,97,194,5,2,53,68,5687,6616,1946,2726,131,129,104,204,5,7,140,176,127,148,7,14,1,5,0,1,0,1,5,7,132,152,8,15,5,6,0,3,0,7 -050,01,097,Alabama,Mobile County,11,16,12015,5108,6907,3725,4873,1240,1866,36,45,69,74,3,1,35,48,3751,4905,1250,1881,66,83,74,82,4,5,4990,6805,3616,4784,1235,1858,35,44,69,74,2,1,33,44,3642,4816,1243,1870,65,82,72,78,2,4,118,102,109,89,5,8,1,1,0,0,1,0,2,4,109,89,7,11,1,1,2,4,2,1 -050,01,097,Alabama,Mobile County,11,17,7740,3140,4600,2287,3244,775,1270,14,23,48,44,1,1,15,18,2296,3258,782,1276,19,38,55,48,6,2,3077,4543,2237,3192,770,1269,14,23,48,44,1,1,7,14,2242,3204,772,1272,18,35,51,46,3,1,63,57,50,52,5,1,0,0,0,0,0,0,8,4,54,54,10,4,1,3,4,2,3,1 -050,01,097,Alabama,Mobile County,11,18,7335,2415,4920,1843,3559,527,1280,13,25,23,43,0,1,9,12,1850,3566,531,1285,19,35,25,44,1,2,2378,4825,1807,3467,527,1278,13,24,23,43,0,1,8,12,1813,3474,530,1283,19,34,25,44,1,2,37,95,36,92,0,2,0,1,0,0,0,0,1,0,37,92,1,2,0,1,0,0,0,0 -050,01,097,Alabama,Mobile County,12,0,413516,196704,216812,118464,125166,68806,81429,1820,1987,4080,4600,88,84,3446,3546,121465,128215,70667,83421,3146,3357,4925,5484,228,222,190495,210889,113325,120249,68225,80849,1688,1901,4040,4542,51,55,3166,3293,116095,123096,69946,82700,2880,3150,4818,5358,153,164,6209,5923,5139,4917,581,580,132,86,40,58,37,29,280,253,5370,5119,721,721,266,207,107,126,75,58 -050,01,097,Alabama,Mobile County,12,1,27161,13847,13314,7072,6697,5808,5585,104,80,259,378,4,8,600,566,7627,7218,6234,6005,204,169,400,512,24,18,13310,12812,6626,6280,5769,5546,88,73,249,363,3,5,575,545,7160,6784,6182,5951,176,154,385,488,20,14,537,502,446,417,39,39,16,7,10,15,1,3,25,21,467,434,52,54,28,15,15,24,4,4 -050,01,097,Alabama,Mobile County,12,2,26306,13154,13152,6877,6775,5431,5508,72,70,239,289,1,5,534,505,7367,7234,5797,5860,177,171,359,398,14,19,12594,12572,6407,6272,5383,5463,69,64,230,283,0,1,505,489,6872,6718,5736,5805,164,160,344,389,9,13,560,580,470,503,48,45,3,6,9,6,1,4,29,16,495,516,61,55,13,11,15,9,5,6 -050,01,097,Alabama,Mobile County,12,3,26823,13600,13223,7073,6906,5698,5489,137,120,268,292,8,5,416,411,7447,7273,5969,5760,237,224,381,399,26,23,13000,12691,6629,6474,5604,5437,131,116,266,292,0,0,370,372,6962,6806,5849,5689,213,203,362,388,13,13,600,532,444,432,94,52,6,4,2,0,8,5,46,39,485,467,120,71,24,21,19,11,13,10 -050,01,097,Alabama,Mobile County,12,4,26230,13280,12950,7158,6872,5431,5250,130,152,263,337,3,3,295,336,7423,7176,5609,5457,226,249,338,427,12,19,12770,12486,6808,6488,5308,5205,121,147,262,334,2,1,269,311,7051,6768,5476,5396,200,234,329,419,10,13,510,464,350,384,123,45,9,5,1,3,1,2,26,25,372,408,133,61,26,15,9,8,2,6 -050,01,097,Alabama,Mobile County,12,5,26375,12898,13477,7048,7200,5132,5614,132,136,299,251,5,6,282,270,7291,7433,5295,5771,237,224,374,337,12,17,12542,13043,6757,6844,5098,5585,127,124,298,229,4,6,258,255,6979,7065,5248,5732,222,208,370,310,9,16,356,434,291,356,34,29,5,12,1,22,1,0,24,15,312,368,47,39,15,16,4,27,3,1 -050,01,097,Alabama,Mobile County,12,6,30267,14712,15555,8167,8194,5857,6553,146,164,317,364,8,3,217,277,8341,8420,5964,6701,241,272,385,447,14,17,14275,15076,7784,7805,5821,6502,143,156,313,364,8,0,206,249,7949,8011,5921,6634,233,251,380,441,13,12,437,479,383,389,36,51,3,8,4,0,0,3,11,28,392,409,43,67,8,21,5,6,1,5 -050,01,097,Alabama,Mobile County,12,7,27652,13021,14631,7854,8097,4542,5817,131,161,328,379,8,7,158,170,7984,8238,4600,5895,200,234,382,434,15,13,12531,14162,7410,7708,4525,5760,119,149,327,378,0,5,150,162,7533,7842,4580,5835,184,217,380,432,6,10,490,469,444,389,17,57,12,12,1,1,8,2,8,8,451,396,20,60,16,17,2,2,9,3 -050,01,097,Alabama,Mobile County,12,8,25714,12115,13599,7389,7531,4036,5346,142,133,368,400,2,8,178,181,7536,7681,4101,5421,241,236,420,448,21,17,11625,13123,6978,7150,4018,5296,123,130,368,398,0,4,138,145,7095,7270,4061,5351,196,214,413,438,13,9,490,476,411,381,18,50,19,3,0,2,2,4,40,36,441,411,40,70,45,22,7,10,8,8 -050,01,097,Alabama,Mobile County,12,9,23997,11312,12685,6993,7103,3764,5056,120,115,290,286,10,5,135,120,7102,7199,3814,5102,202,191,320,318,23,13,10828,12336,6584,6814,3729,5020,111,111,290,281,7,4,107,106,6672,6901,3766,5058,178,178,315,308,12,10,484,349,409,289,35,36,9,4,0,5,3,1,28,14,430,298,48,44,24,13,5,10,11,3 -050,01,097,Alabama,Mobile County,12,10,24460,11585,12875,7521,7676,3455,4604,127,146,369,330,10,8,103,111,7605,7763,3485,4648,193,209,396,364,12,13,11199,12608,7179,7446,3447,4575,101,144,368,330,5,7,99,106,7261,7531,3474,4615,166,205,394,361,6,11,386,267,342,230,8,29,26,2,1,0,5,1,4,5,344,232,11,33,27,4,2,3,6,2 -050,01,097,Alabama,Mobile County,12,11,24724,11706,13018,7502,7839,3672,4612,118,128,287,297,6,3,121,139,7599,7947,3705,4658,206,222,311,335,13,7,11407,12656,7254,7565,3641,4545,108,126,283,297,4,3,117,120,7347,7663,3672,4582,194,209,307,328,11,6,299,362,248,274,31,67,10,2,4,0,2,0,4,19,252,284,33,76,12,13,4,7,2,1 -050,01,097,Alabama,Mobile County,12,12,27828,13023,14805,8431,8968,4164,5337,113,147,215,205,6,4,94,144,8505,9083,4190,5385,183,257,234,232,8,8,12779,14581,8247,8778,4123,5318,107,146,210,204,5,4,87,131,8316,8881,4146,5362,172,245,228,229,7,7,244,224,184,190,41,19,6,1,5,1,1,0,7,13,189,202,44,23,11,12,6,3,1,1 -050,01,097,Alabama,Mobile County,12,13,27028,12686,14342,8179,8723,4099,5179,118,136,183,213,5,4,102,87,8267,8787,4125,5210,195,209,204,225,10,9,12424,14139,7957,8556,4072,5151,114,131,183,212,5,3,93,86,8037,8619,4096,5182,189,203,199,224,8,8,262,203,222,167,27,28,4,5,0,1,0,1,9,1,230,168,29,28,6,6,5,1,2,1 -050,01,097,Alabama,Mobile County,12,14,22744,10542,12202,7169,7775,3058,4030,78,110,151,210,3,8,83,69,7235,7830,3081,4053,147,167,160,218,6,10,10369,12076,7014,7664,3047,4026,76,103,150,209,0,6,82,68,7080,7718,3069,4049,145,160,158,216,3,8,173,126,155,111,11,4,2,7,1,1,3,2,1,1,155,112,12,4,2,7,2,2,3,2 -050,01,097,Alabama,Mobile County,12,15,18386,8198,10188,5904,6889,2038,2950,87,87,97,183,4,3,68,76,5963,6949,2056,2969,144,151,105,194,9,9,8054,10009,5777,6738,2030,2932,86,81,96,182,4,2,61,74,5829,6796,2044,2951,139,145,103,193,8,6,144,179,127,151,8,18,1,6,1,1,0,1,7,2,134,153,12,18,5,6,2,1,1,3 -050,01,097,Alabama,Mobile County,12,16,12425,5336,7089,3946,5020,1257,1877,36,48,65,90,2,2,30,52,3969,5055,1266,1895,64,93,66,94,3,5,5213,6992,3830,4934,1253,1870,36,47,65,90,1,2,28,49,3852,4968,1261,1885,64,90,65,94,1,5,123,97,116,86,4,7,0,1,0,0,1,0,2,3,117,87,5,10,0,3,1,0,2,0 -050,01,097,Alabama,Mobile County,12,17,7953,3201,4752,2283,3334,825,1317,16,29,56,51,3,1,18,20,2297,3353,831,1322,29,43,59,56,5,4,3138,4680,2232,3271,820,1315,15,29,56,51,3,1,12,13,2241,3284,824,1316,26,39,57,54,4,2,63,72,51,63,5,2,1,0,0,0,0,0,6,7,56,69,7,6,3,4,2,2,1,2 -050,01,097,Alabama,Mobile County,12,18,7443,2488,4955,1898,3567,539,1305,13,25,26,45,0,1,12,12,1907,3576,545,1309,20,36,31,46,1,1,2437,4847,1852,3462,537,1303,13,24,26,45,0,1,9,12,1859,3471,541,1307,19,35,29,46,0,1,51,108,46,105,2,2,0,1,0,0,0,0,3,0,48,105,4,2,1,1,2,0,1,0 -050,01,097,Alabama,Mobile County,13,0,412716,196061,216655,117815,124719,68831,81586,1801,2000,4050,4654,94,91,3470,3605,120830,127825,70723,83610,3119,3363,4932,5567,236,238,189804,210545,112626,119649,68243,80975,1668,1928,4018,4591,56,62,3193,3340,115426,122537,69978,82865,2844,3160,4833,5429,158,181,6257,6110,5189,5070,588,611,133,72,32,63,38,29,277,265,5404,5288,745,745,275,203,99,138,78,57 -050,01,097,Alabama,Mobile County,13,1,26945,13758,13187,7075,6590,5746,5586,101,93,260,372,5,12,571,534,7599,7085,6151,5977,193,180,401,492,28,23,13238,12654,6649,6161,5701,5535,89,86,252,363,3,6,544,503,7152,6625,6089,5909,168,158,389,473,22,16,520,533,426,429,45,51,12,7,8,9,2,6,27,31,447,460,62,68,25,22,12,19,6,7 -050,01,097,Alabama,Mobile County,13,2,26368,13143,13225,6846,6825,5449,5508,68,56,260,312,1,1,519,523,7324,7298,5813,5873,170,161,380,427,16,19,12561,12637,6352,6304,5400,5466,61,52,252,301,0,0,496,514,6812,6769,5749,5827,151,152,370,414,11,17,582,588,494,521,49,42,7,4,8,11,1,1,23,9,512,529,64,46,19,9,10,13,5,2 -050,01,097,Alabama,Mobile County,13,3,26743,13549,13194,6985,6897,5698,5446,142,127,254,281,7,2,463,441,7397,7293,5998,5737,257,234,368,397,22,18,12933,12625,6522,6430,5613,5388,132,121,252,281,0,0,414,405,6893,6793,5885,5655,227,211,353,389,9,15,616,569,463,467,85,58,10,6,2,0,7,2,49,36,504,500,113,82,30,23,15,8,13,3 -050,01,097,Alabama,Mobile County,13,4,25534,12919,12615,7046,6679,5201,5137,130,135,244,329,3,3,295,332,7307,6980,5380,5342,214,226,321,413,15,17,12405,12193,6682,6331,5079,5098,123,132,244,326,2,0,275,306,6927,6609,5250,5289,196,213,314,406,13,8,514,422,364,348,122,39,7,3,0,3,1,3,20,26,380,371,130,53,18,13,7,7,2,9 -050,01,097,Alabama,Mobile County,13,5,26254,12896,13358,7031,7210,5150,5452,135,147,296,267,6,9,278,273,7274,7449,5311,5618,231,233,373,346,13,20,12521,12884,6726,6831,5111,5406,129,141,296,246,4,8,255,252,6947,7051,5257,5558,214,220,369,320,11,18,375,474,305,379,39,46,6,6,0,21,2,1,23,21,327,398,54,60,17,13,4,26,2,2 -050,01,097,Alabama,Mobile County,13,6,29610,14420,15190,7963,7917,5760,6460,144,151,317,353,11,4,225,305,8145,8169,5874,6626,239,267,389,452,19,14,14023,14712,7618,7524,5723,6415,143,144,316,347,11,2,212,280,7788,7759,5831,6568,233,249,384,437,17,10,397,478,345,393,37,45,1,7,1,6,0,2,13,25,357,410,43,58,6,18,5,15,2,4 -050,01,097,Alabama,Mobile County,13,7,28436,13432,15004,7938,8262,4877,6001,135,187,297,371,11,6,174,177,8079,8409,4947,6077,213,259,360,429,14,19,12942,14497,7501,7843,4850,5949,125,171,294,370,3,4,169,160,7639,7976,4917,6018,200,235,355,425,6,15,490,507,437,419,27,52,10,16,3,1,8,2,5,17,440,433,30,59,13,24,5,4,8,4 -050,01,097,Alabama,Mobile County,13,8,25600,11918,13682,7342,7583,3890,5345,149,131,366,427,2,6,169,190,7485,7738,3953,5422,245,235,420,487,19,17,11412,13210,6910,7205,3878,5297,126,129,366,424,0,2,132,153,7026,7332,3919,5358,198,216,412,473,10,7,506,472,432,378,12,48,23,2,0,3,2,4,37,37,459,406,34,64,47,19,8,14,9,10 -050,01,097,Alabama,Mobile County,13,9,24086,11379,12707,6925,7088,3912,5091,106,122,284,273,9,10,143,123,7037,7187,3969,5142,188,196,322,307,18,16,10947,12342,6558,6788,3876,5047,106,120,284,268,7,7,116,112,6654,6878,3916,5092,175,188,315,298,10,11,432,365,367,300,36,44,0,2,0,5,2,3,27,11,383,309,53,50,13,8,7,9,8,5 -050,01,097,Alabama,Mobile County,13,10,23932,11325,12607,7281,7362,3443,4663,128,133,361,325,5,8,107,116,7370,7454,3477,4707,194,201,389,358,11,15,10905,12336,6919,7131,3433,4633,96,132,361,325,1,8,95,107,6999,7217,3461,4673,155,196,386,355,4,14,420,271,362,231,10,30,32,1,0,0,4,0,12,9,371,237,16,34,39,5,3,3,7,1 -050,01,097,Alabama,Mobile County,13,11,24330,11410,12920,7403,7806,3470,4518,108,151,307,318,11,4,111,123,7494,7899,3504,4564,187,230,328,355,16,11,11073,12559,7120,7533,3441,4451,97,148,303,318,7,4,105,105,7207,7616,3472,4489,171,215,324,346,12,10,337,361,283,273,29,67,11,3,4,0,4,0,6,18,287,283,32,75,16,15,4,9,4,1 -050,01,097,Alabama,Mobile County,13,12,27317,12852,14465,8269,8758,4172,5215,102,131,203,217,3,5,103,139,8354,8867,4205,5262,183,236,225,248,7,10,12631,14219,8094,8546,4140,5189,100,131,199,216,3,5,95,132,8172,8650,4169,5236,174,229,219,245,5,10,221,246,175,212,32,26,2,0,4,1,0,0,8,7,182,217,36,26,9,7,6,3,2,0 -050,01,097,Alabama,Mobile County,13,13,27035,12578,14457,8158,8768,4004,5255,124,133,183,194,8,6,101,101,8242,8847,4024,5289,204,216,201,206,16,9,12286,14233,7913,8583,3974,5226,118,132,183,194,7,4,91,94,7990,8657,3991,5258,192,209,199,206,12,6,292,224,245,185,30,29,6,1,0,0,1,2,10,7,252,190,33,31,12,7,2,0,4,3 -050,01,097,Alabama,Mobile County,13,14,23198,10762,12436,7182,7879,3256,4161,76,107,167,219,2,6,79,64,7246,7932,3274,4176,141,161,183,228,6,9,10590,12305,7033,7761,3241,4158,72,101,166,217,0,4,78,64,7096,7814,3259,4173,137,155,181,226,4,7,172,131,149,118,15,3,4,6,1,2,2,2,1,0,150,118,15,3,4,6,2,2,2,2 -050,01,097,Alabama,Mobile County,13,15,18928,8420,10508,6027,7028,2146,3131,77,91,99,178,4,5,67,75,6083,7089,2163,3149,133,150,108,190,5,10,8290,10346,5910,6892,2139,3114,76,86,98,177,3,4,64,73,5964,6951,2153,3131,132,144,106,189,4,9,130,162,117,136,7,17,1,5,1,1,1,1,3,2,119,138,10,18,1,6,2,1,1,1 -050,01,097,Alabama,Mobile County,13,16,12747,5495,7252,4064,5099,1275,1937,45,46,72,113,3,2,36,55,4093,5135,1283,1957,76,91,77,120,5,6,5357,7139,3936,4999,1270,1928,45,44,72,113,2,2,32,53,3962,5033,1277,1948,74,89,75,118,3,6,138,113,128,100,5,9,0,2,0,0,1,0,4,2,131,102,6,9,2,2,2,2,2,0 -050,01,097,Alabama,Mobile County,13,17,8201,3268,4933,2367,3443,817,1378,19,33,47,57,3,1,15,21,2377,3460,824,1385,29,49,50,63,4,4,3205,4863,2316,3383,810,1375,18,33,47,57,3,1,11,14,2323,3394,815,1378,27,44,48,60,4,1,63,70,51,60,7,3,1,0,0,0,0,0,4,7,54,66,9,7,2,5,2,3,0,3 -050,01,097,Alabama,Mobile County,13,18,7452,2537,4915,1913,3525,565,1302,12,26,33,48,0,1,14,13,1924,3534,573,1307,22,38,37,49,2,1,2485,4791,1867,3404,564,1300,12,25,33,48,0,1,9,13,1875,3413,568,1305,20,37,34,49,1,1,52,124,46,121,1,2,0,1,0,0,0,0,5,0,49,121,5,2,2,1,3,0,1,0 -050,01,099,Alabama,Monroe County,1,0,23068,11109,11959,6263,6515,4529,5099,132,131,34,36,6,3,145,175,6394,6669,4598,5182,210,227,46,53,8,7,10998,11850,6192,6437,4505,5078,129,128,32,35,2,2,138,170,6318,6586,4569,5160,204,220,43,52,4,6,111,109,71,78,24,21,3,3,2,1,4,1,7,5,76,83,29,22,6,7,3,1,4,1 -050,01,099,Alabama,Monroe County,1,1,1382,718,664,357,308,335,331,4,6,1,1,1,0,20,18,377,326,346,345,9,10,5,1,1,0,701,652,345,298,333,329,4,6,0,1,0,0,19,18,364,316,343,343,9,10,4,1,0,0,17,12,12,10,2,2,0,0,1,0,1,0,1,0,13,10,3,2,0,0,1,0,1,0 -050,01,099,Alabama,Monroe County,1,2,1532,774,758,387,381,362,334,7,8,1,4,0,0,17,31,402,409,374,358,13,16,2,6,0,0,763,749,378,376,361,332,6,7,1,3,0,0,17,31,393,404,373,356,12,15,2,5,0,0,11,9,9,5,1,2,1,1,0,1,0,0,0,0,9,5,1,2,1,1,0,1,0,0 -050,01,099,Alabama,Monroe County,1,3,1782,918,864,452,421,418,403,17,10,4,2,0,0,27,28,478,443,437,418,26,24,6,6,0,1,907,853,447,414,416,403,16,9,3,2,0,0,25,25,471,433,434,417,24,21,5,6,0,1,11,11,5,7,2,0,1,1,1,0,0,0,2,3,7,10,3,1,2,3,1,0,0,0 -050,01,099,Alabama,Monroe County,1,4,1821,979,842,461,380,490,431,10,16,2,1,3,1,13,13,473,391,498,438,14,24,3,2,4,1,970,834,460,375,484,428,10,16,2,1,1,1,13,13,472,386,492,435,14,24,3,2,2,1,9,8,1,5,6,3,0,0,0,0,2,0,0,0,1,5,6,3,0,0,0,0,2,0 -050,01,099,Alabama,Monroe County,1,5,1172,609,563,292,272,300,276,6,6,4,1,2,0,5,8,297,280,303,279,8,9,4,3,2,0,600,561,286,270,298,276,6,6,4,1,1,0,5,8,291,278,301,279,8,9,4,3,1,0,9,2,6,2,2,0,0,0,0,0,1,0,0,0,6,2,2,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,1,6,1190,556,634,308,299,237,315,3,8,0,1,0,0,8,11,313,308,242,320,8,15,1,2,0,0,547,628,302,294,236,315,3,7,0,1,0,0,6,11,307,303,239,320,7,14,0,2,0,0,9,6,6,5,1,0,0,1,0,0,0,0,2,0,6,5,3,0,1,1,1,0,0,0 -050,01,099,Alabama,Monroe County,1,7,1228,591,637,299,320,271,305,10,4,5,4,0,1,6,3,304,321,273,307,15,7,5,4,0,1,585,630,295,314,270,305,9,4,5,4,0,0,6,3,300,315,272,307,14,7,5,4,0,0,6,7,4,6,1,0,1,0,0,0,0,1,0,0,4,6,1,0,1,0,0,0,0,1 -050,01,099,Alabama,Monroe County,1,8,1407,636,771,378,401,245,351,10,12,0,1,0,1,3,5,381,405,246,351,11,16,0,2,1,2,629,764,373,396,244,349,10,12,0,1,0,1,2,5,375,400,244,349,11,16,0,2,1,2,7,7,5,5,1,2,0,0,0,0,0,0,1,0,6,5,2,2,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,9,1466,663,803,374,432,274,355,8,8,2,5,0,0,5,3,379,435,274,355,13,11,2,5,0,0,656,795,369,428,272,353,8,8,2,5,0,0,5,1,374,429,272,353,13,9,2,5,0,0,7,8,5,4,2,2,0,0,0,0,0,0,0,2,5,6,2,2,0,2,0,0,0,0 -050,01,099,Alabama,Monroe County,1,10,1680,847,833,504,475,317,337,13,5,3,1,0,0,10,15,514,489,318,341,21,16,4,3,0,1,843,828,502,471,315,336,13,5,3,1,0,0,10,15,512,485,316,340,21,16,4,3,0,1,4,5,2,4,2,1,0,0,0,0,0,0,0,0,2,4,2,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,11,1711,843,868,497,471,321,370,13,8,2,6,0,0,10,13,506,484,323,372,21,17,3,8,0,0,837,863,493,470,320,366,13,8,2,6,0,0,9,13,501,483,322,368,20,17,3,8,0,0,6,5,4,1,1,4,0,0,0,0,0,0,1,0,5,1,1,4,1,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,12,1686,759,927,437,499,305,408,8,11,5,3,0,0,4,6,439,503,306,411,12,16,6,3,0,0,755,921,433,496,305,405,8,11,5,3,0,0,4,6,435,500,306,408,12,16,6,3,0,0,4,6,4,3,0,3,0,0,0,0,0,0,0,0,4,3,0,3,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,13,1393,706,687,462,451,230,225,9,9,1,2,0,0,4,0,466,451,230,225,13,9,1,2,0,0,701,682,459,446,228,225,9,9,1,2,0,0,4,0,463,446,228,225,13,9,1,2,0,0,5,5,3,5,2,0,0,0,0,0,0,0,0,0,3,5,2,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,14,1156,556,600,378,408,166,178,6,8,2,0,0,0,4,6,381,414,167,178,10,13,2,0,0,1,556,593,378,402,166,177,6,8,2,0,0,0,4,6,381,408,167,177,10,13,2,0,0,1,0,7,0,6,0,1,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,15,828,349,479,236,318,105,148,4,4,0,0,0,0,4,9,239,325,106,150,8,11,0,2,0,0,348,473,235,312,105,148,4,4,0,0,0,0,4,9,238,319,106,150,8,11,0,2,0,0,1,6,1,6,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,16,719,307,412,211,273,87,131,4,3,0,1,0,0,5,4,215,277,89,133,8,6,0,1,0,0,302,408,207,269,86,131,4,3,0,1,0,0,5,4,211,273,88,133,8,6,0,1,0,0,5,4,4,4,1,0,0,0,0,0,0,0,0,0,4,4,1,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,17,467,173,294,135,199,37,91,0,1,1,2,0,0,0,1,135,200,37,91,0,2,1,2,0,0,173,293,135,199,37,90,0,1,1,2,0,0,0,1,135,200,37,90,0,2,1,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,1,18,448,125,323,95,207,29,110,0,4,1,1,0,0,0,1,95,208,29,110,0,5,1,1,0,0,125,323,95,207,29,110,0,4,1,1,0,0,0,1,95,208,29,110,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,0,23066,11108,11958,6262,6514,4529,5099,132,131,34,36,6,3,145,175,6393,6668,4598,5182,210,227,46,53,8,7,10997,11849,6191,6436,4505,5078,129,128,32,35,2,2,138,170,6317,6585,4569,5160,204,220,43,52,4,6,111,109,71,78,24,21,3,3,2,1,4,1,7,5,76,83,29,22,6,7,3,1,4,1 -050,01,099,Alabama,Monroe County,2,1,1380,717,663,356,307,335,331,4,6,1,1,1,0,20,18,376,325,346,345,9,10,5,1,1,0,700,651,344,297,333,329,4,6,0,1,0,0,19,18,363,315,343,343,9,10,4,1,0,0,17,12,12,10,2,2,0,0,1,0,1,0,1,0,13,10,3,2,0,0,1,0,1,0 -050,01,099,Alabama,Monroe County,2,2,1532,774,758,387,381,362,334,7,8,1,4,0,0,17,31,402,409,374,358,13,16,2,6,0,0,763,749,378,376,361,332,6,7,1,3,0,0,17,31,393,404,373,356,12,15,2,5,0,0,11,9,9,5,1,2,1,1,0,1,0,0,0,0,9,5,1,2,1,1,0,1,0,0 -050,01,099,Alabama,Monroe County,2,3,1782,918,864,452,421,418,403,17,10,4,2,0,0,27,28,478,443,437,418,26,24,6,6,0,1,907,853,447,414,416,403,16,9,3,2,0,0,25,25,471,433,434,417,24,21,5,6,0,1,11,11,5,7,2,0,1,1,1,0,0,0,2,3,7,10,3,1,2,3,1,0,0,0 -050,01,099,Alabama,Monroe County,2,4,1821,979,842,461,380,490,431,10,16,2,1,3,1,13,13,473,391,498,438,14,24,3,2,4,1,970,834,460,375,484,428,10,16,2,1,1,1,13,13,472,386,492,435,14,24,3,2,2,1,9,8,1,5,6,3,0,0,0,0,2,0,0,0,1,5,6,3,0,0,0,0,2,0 -050,01,099,Alabama,Monroe County,2,5,1172,609,563,292,272,300,276,6,6,4,1,2,0,5,8,297,280,303,279,8,9,4,3,2,0,600,561,286,270,298,276,6,6,4,1,1,0,5,8,291,278,301,279,8,9,4,3,1,0,9,2,6,2,2,0,0,0,0,0,1,0,0,0,6,2,2,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,2,6,1190,556,634,308,299,237,315,3,8,0,1,0,0,8,11,313,308,242,320,8,15,1,2,0,0,547,628,302,294,236,315,3,7,0,1,0,0,6,11,307,303,239,320,7,14,0,2,0,0,9,6,6,5,1,0,0,1,0,0,0,0,2,0,6,5,3,0,1,1,1,0,0,0 -050,01,099,Alabama,Monroe County,2,7,1227,591,636,299,319,271,305,10,4,5,4,0,1,6,3,304,320,273,307,15,7,5,4,0,1,585,629,295,313,270,305,9,4,5,4,0,0,6,3,300,314,272,307,14,7,5,4,0,0,6,7,4,6,1,0,1,0,0,0,0,1,0,0,4,6,1,0,1,0,0,0,0,1 -050,01,099,Alabama,Monroe County,2,8,1406,635,771,377,401,245,351,10,12,0,1,0,1,3,5,380,405,246,351,11,16,0,2,1,2,628,764,372,396,244,349,10,12,0,1,0,1,2,5,374,400,244,349,11,16,0,2,1,2,7,7,5,5,1,2,0,0,0,0,0,0,1,0,6,5,2,2,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,9,1466,663,803,374,432,274,355,8,8,2,5,0,0,5,3,379,435,274,355,13,11,2,5,0,0,656,795,369,428,272,353,8,8,2,5,0,0,5,1,374,429,272,353,13,9,2,5,0,0,7,8,5,4,2,2,0,0,0,0,0,0,0,2,5,6,2,2,0,2,0,0,0,0 -050,01,099,Alabama,Monroe County,2,10,1680,847,833,504,475,317,337,13,5,3,1,0,0,10,15,514,489,318,341,21,16,4,3,0,1,843,828,502,471,315,336,13,5,3,1,0,0,10,15,512,485,316,340,21,16,4,3,0,1,4,5,2,4,2,1,0,0,0,0,0,0,0,0,2,4,2,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,11,1711,843,868,497,471,321,370,13,8,2,6,0,0,10,13,506,484,323,372,21,17,3,8,0,0,837,863,493,470,320,366,13,8,2,6,0,0,9,13,501,483,322,368,20,17,3,8,0,0,6,5,4,1,1,4,0,0,0,0,0,0,1,0,5,1,1,4,1,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,12,1687,759,928,437,500,305,408,8,11,5,3,0,0,4,6,439,504,306,411,12,16,6,3,0,0,755,922,433,497,305,405,8,11,5,3,0,0,4,6,435,501,306,408,12,16,6,3,0,0,4,6,4,3,0,3,0,0,0,0,0,0,0,0,4,3,0,3,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,13,1394,707,687,463,451,230,225,9,9,1,2,0,0,4,0,467,451,230,225,13,9,1,2,0,0,702,682,460,446,228,225,9,9,1,2,0,0,4,0,464,446,228,225,13,9,1,2,0,0,5,5,3,5,2,0,0,0,0,0,0,0,0,0,3,5,2,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,14,1156,556,600,378,408,166,178,6,8,2,0,0,0,4,6,381,414,167,178,10,13,2,0,0,1,556,593,378,402,166,177,6,8,2,0,0,0,4,6,381,408,167,177,10,13,2,0,0,1,0,7,0,6,0,1,0,0,0,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,15,828,349,479,236,318,105,148,4,4,0,0,0,0,4,9,239,325,106,150,8,11,0,2,0,0,348,473,235,312,105,148,4,4,0,0,0,0,4,9,238,319,106,150,8,11,0,2,0,0,1,6,1,6,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,16,719,307,412,211,273,87,131,4,3,0,1,0,0,5,4,215,277,89,133,8,6,0,1,0,0,302,408,207,269,86,131,4,3,0,1,0,0,5,4,211,273,88,133,8,6,0,1,0,0,5,4,4,4,1,0,0,0,0,0,0,0,0,0,4,4,1,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,17,467,173,294,135,199,37,91,0,1,1,2,0,0,0,1,135,200,37,91,0,2,1,2,0,0,173,293,135,199,37,90,0,1,1,2,0,0,0,1,135,200,37,90,0,2,1,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,2,18,448,125,323,95,207,29,110,0,4,1,1,0,0,0,1,95,208,29,110,0,5,1,1,0,0,125,323,95,207,29,110,0,4,1,1,0,0,0,1,95,208,29,110,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,0,23004,11089,11915,6253,6490,4521,5083,129,131,32,37,6,3,148,171,6385,6637,4585,5167,203,215,54,60,12,10,10976,11812,6178,6415,4499,5065,126,128,30,36,2,2,141,166,6305,6558,4560,5147,196,208,50,59,8,9,113,103,75,75,22,18,3,3,2,1,4,1,7,5,80,79,25,20,7,7,4,1,4,1 -050,01,099,Alabama,Monroe County,3,1,1361,703,658,349,305,329,327,4,5,1,1,1,0,19,20,367,323,343,343,8,9,4,2,1,1,687,646,338,295,327,325,4,5,0,1,0,0,18,20,355,313,341,341,7,9,3,2,0,1,16,12,11,10,2,2,0,0,1,0,1,0,1,0,12,10,2,2,1,0,1,0,1,0 -050,01,099,Alabama,Monroe County,3,2,1511,768,743,382,380,360,323,7,8,1,4,0,0,18,28,397,403,374,344,10,17,3,8,2,0,757,734,373,375,359,321,6,7,1,3,0,0,18,28,388,398,373,342,9,16,3,7,2,0,11,9,9,5,1,2,1,1,0,1,0,0,0,0,9,5,1,2,1,1,0,1,0,0 -050,01,099,Alabama,Monroe County,3,3,1760,912,848,450,411,414,399,17,10,4,2,0,0,27,26,475,435,430,415,26,18,7,5,1,1,901,838,444,405,413,399,16,9,3,2,0,0,25,23,467,426,428,414,24,15,6,5,1,1,11,10,6,6,1,0,1,1,1,0,0,0,2,3,8,9,2,1,2,3,1,0,0,0 -050,01,099,Alabama,Monroe County,3,4,1799,970,829,456,376,486,420,10,16,2,1,3,1,13,15,467,391,493,426,16,20,4,5,4,2,963,823,455,372,482,418,10,16,2,1,1,1,13,15,466,387,489,424,16,20,4,5,2,2,7,6,1,4,4,2,0,0,0,0,2,0,0,0,1,4,4,2,0,0,0,0,2,0 -050,01,099,Alabama,Monroe County,3,5,1204,625,579,302,276,304,287,7,7,4,1,2,0,6,8,308,283,307,292,10,10,4,2,2,0,615,575,296,272,301,287,7,7,4,1,1,0,6,8,302,279,304,292,10,10,4,2,1,0,10,4,6,4,3,0,0,0,0,0,1,0,0,0,6,4,3,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,3,6,1175,548,627,304,296,235,312,2,8,0,1,0,0,7,10,309,303,238,317,7,14,1,2,0,1,538,621,297,291,234,312,2,7,0,1,0,0,5,10,301,298,236,317,6,13,0,2,0,1,10,6,7,5,1,0,0,1,0,0,0,0,2,0,8,5,2,0,1,1,1,0,0,0 -050,01,099,Alabama,Monroe County,3,7,1234,587,647,298,324,270,311,9,4,4,4,0,1,6,3,304,327,271,313,12,5,6,4,0,1,580,641,293,319,269,311,8,4,4,4,0,0,6,3,299,322,270,313,11,5,6,4,0,0,7,6,5,5,1,0,1,0,0,0,0,1,0,0,5,5,1,0,1,0,0,0,0,1 -050,01,099,Alabama,Monroe County,3,8,1391,633,758,375,391,245,348,10,12,0,1,0,1,3,5,378,395,245,349,12,15,1,2,0,2,625,752,369,386,244,347,10,12,0,1,0,1,2,5,371,390,244,348,11,15,1,2,0,2,8,6,6,5,1,1,0,0,0,0,0,0,1,0,7,5,1,1,1,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,9,1462,664,798,375,430,276,353,6,7,2,5,0,0,5,3,380,432,276,354,10,9,3,6,0,0,657,792,370,427,274,352,6,7,2,5,0,0,5,1,375,428,274,352,10,7,3,6,0,0,7,6,5,3,2,1,0,0,0,0,0,0,0,2,5,4,2,2,0,2,0,0,0,0 -050,01,099,Alabama,Monroe County,3,10,1674,846,828,501,471,318,337,13,5,3,1,0,0,11,14,511,482,319,340,21,18,6,2,0,1,842,823,499,467,316,336,13,5,3,1,0,0,11,14,509,478,317,339,21,18,6,2,0,1,4,5,2,4,2,1,0,0,0,0,0,0,0,0,2,4,2,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,11,1708,838,870,492,472,319,367,14,9,2,7,0,0,11,15,502,486,321,369,21,21,4,10,1,0,832,865,488,471,318,363,14,9,2,7,0,0,10,15,498,485,319,365,21,21,3,10,1,0,6,5,4,1,1,4,0,0,0,0,0,0,1,0,4,1,2,4,0,0,1,0,0,0 -050,01,099,Alabama,Monroe County,3,12,1685,759,926,441,497,302,411,8,10,4,3,0,0,4,5,444,502,302,412,11,14,5,3,1,0,755,920,437,494,302,408,8,10,4,3,0,0,4,5,440,499,302,409,11,14,5,3,1,0,4,6,4,3,0,3,0,0,0,0,0,0,0,0,4,3,0,3,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,13,1402,715,687,465,451,237,226,8,8,1,2,0,0,4,0,468,451,238,226,11,8,2,2,0,0,709,682,461,446,235,226,8,8,1,2,0,0,4,0,464,446,236,226,11,8,2,2,0,0,6,5,4,5,2,0,0,0,0,0,0,0,0,0,4,5,2,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,14,1168,558,610,379,413,167,183,6,9,2,0,0,0,4,5,381,418,169,183,10,12,2,1,0,1,558,604,379,408,167,182,6,9,2,0,0,0,4,5,381,413,169,182,10,12,2,1,0,1,0,6,0,5,0,1,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,15,830,351,479,239,320,103,146,4,5,0,0,0,0,5,8,244,326,103,148,9,12,0,1,0,0,350,473,238,314,103,146,4,5,0,0,0,0,5,8,243,320,103,148,9,12,0,1,0,0,1,6,1,6,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,16,716,306,410,209,272,88,130,4,3,0,1,0,0,5,4,214,273,88,133,9,7,0,1,0,0,301,406,205,268,87,130,4,3,0,1,0,0,5,4,210,269,87,133,9,7,0,1,0,0,5,4,4,4,1,0,0,0,0,0,0,0,0,0,4,4,1,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,17,480,180,300,139,203,40,93,0,1,1,2,0,0,0,1,139,204,40,93,0,1,1,3,0,0,180,299,139,203,40,92,0,1,1,2,0,0,0,1,139,204,40,92,0,1,1,3,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,3,18,444,126,318,97,202,28,110,0,4,1,1,0,0,0,1,97,203,28,110,0,5,1,1,0,0,126,318,97,202,28,110,0,4,1,1,0,0,0,1,97,203,28,110,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,0,22799,10971,11828,6194,6449,4435,5024,134,136,41,40,6,3,161,176,6336,6610,4515,5112,206,220,64,57,11,8,10860,11712,6120,6365,4415,5002,131,133,39,39,2,2,153,171,6255,6521,4490,5089,200,213,61,56,7,7,111,116,74,84,20,22,3,3,2,1,4,1,8,5,81,89,25,23,6,7,3,1,4,1 -050,01,099,Alabama,Monroe County,4,1,1339,692,647,340,300,325,317,4,7,2,2,1,0,20,21,358,319,341,334,8,11,3,5,2,0,680,636,332,291,323,315,4,7,2,2,0,0,19,21,349,310,338,332,8,11,3,5,1,0,12,11,8,9,2,2,0,0,0,0,1,0,1,0,9,9,3,2,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,4,2,1502,762,740,382,384,350,317,6,9,4,4,0,0,20,26,400,409,366,335,10,17,6,5,0,0,748,730,370,378,349,315,6,8,3,3,0,0,20,26,388,403,365,333,10,16,5,4,0,0,14,10,12,6,1,2,0,1,1,1,0,0,0,0,12,6,1,2,0,1,1,1,0,0 -050,01,099,Alabama,Monroe County,4,3,1729,902,827,452,413,401,377,16,7,3,3,0,0,30,27,477,437,421,395,24,14,8,5,2,3,890,814,446,404,400,376,15,6,2,3,0,0,27,25,468,426,418,393,23,12,6,5,2,3,12,13,6,9,1,1,1,1,1,0,0,0,3,2,9,11,3,2,1,2,2,0,0,0 -050,01,099,Alabama,Monroe County,4,4,1699,900,799,425,367,440,395,10,16,4,1,3,1,18,19,442,384,449,408,16,23,7,2,4,1,894,788,424,361,438,391,9,16,4,1,1,1,18,18,441,377,447,404,15,22,7,2,2,1,6,11,1,6,2,4,1,0,0,0,2,0,0,1,1,7,2,4,1,1,0,0,2,0 -050,01,099,Alabama,Monroe County,4,5,1265,658,607,332,280,302,309,12,8,3,1,2,0,7,9,338,289,307,311,14,10,4,5,2,1,652,601,329,274,300,309,12,8,3,1,1,0,7,9,335,283,305,311,14,10,4,5,1,1,6,6,3,6,2,0,0,0,0,0,1,0,0,0,3,6,2,0,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,4,6,1130,519,611,285,297,223,294,4,8,1,2,0,0,6,10,291,305,225,299,6,14,3,4,0,0,507,603,276,289,221,294,4,8,1,2,0,0,5,10,281,297,222,299,6,14,3,4,0,0,12,8,9,8,2,0,0,0,0,0,0,0,1,0,10,8,3,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,7,1224,564,660,289,331,257,314,8,6,4,3,0,1,6,5,295,336,259,317,11,8,5,3,0,1,557,655,285,328,256,314,7,5,4,3,0,0,5,5,290,333,258,317,9,7,5,3,0,0,7,5,4,3,1,0,1,1,0,0,0,1,1,0,5,3,1,0,2,1,0,0,0,1 -050,01,099,Alabama,Monroe County,4,8,1335,620,715,353,353,252,343,9,12,1,2,0,1,5,4,358,356,253,345,11,14,3,3,0,1,613,710,347,348,252,343,9,12,1,2,0,1,4,4,351,351,253,345,10,14,3,3,0,1,7,5,6,5,0,0,0,0,0,0,0,0,1,0,7,5,0,0,1,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,9,1440,660,780,385,424,263,342,6,8,3,5,0,0,3,1,388,425,264,342,7,9,4,5,0,0,651,774,380,420,259,341,6,8,3,5,0,0,3,0,383,420,260,341,7,8,4,5,0,0,9,6,5,4,4,1,0,0,0,0,0,0,0,1,5,5,4,1,0,1,0,0,0,0 -050,01,099,Alabama,Monroe County,4,10,1622,804,818,480,466,299,334,11,4,4,3,0,0,10,11,489,476,300,336,20,14,5,4,0,0,799,812,477,463,297,332,11,4,4,3,0,0,10,10,486,472,298,334,20,13,5,4,0,0,5,6,3,3,2,2,0,0,0,0,0,0,0,1,3,4,2,2,0,1,0,0,0,0 -050,01,099,Alabama,Monroe County,4,11,1695,829,866,482,486,315,351,15,9,4,4,0,0,13,16,494,500,317,354,26,22,5,5,0,1,823,859,478,484,314,346,15,9,4,4,0,0,12,16,490,498,315,349,25,22,5,5,0,1,6,7,4,2,1,5,0,0,0,0,0,0,1,0,4,2,2,5,1,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,12,1718,799,919,455,485,325,412,10,11,4,3,0,0,5,8,459,492,327,415,14,17,4,3,0,0,794,913,450,482,325,409,10,11,4,3,0,0,5,8,454,489,327,412,14,17,4,3,0,0,5,6,5,3,0,3,0,0,0,0,0,0,0,0,5,3,0,3,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,13,1424,712,712,454,455,247,248,7,7,1,2,0,0,3,0,456,455,248,248,9,7,2,2,0,0,708,707,451,450,246,248,7,7,1,2,0,0,3,0,453,450,247,248,9,7,2,2,0,0,4,5,3,5,1,0,0,0,0,0,0,0,0,0,3,5,1,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,14,1189,562,627,388,414,164,200,5,9,2,0,0,0,3,4,390,418,164,200,8,12,3,1,0,0,561,621,388,409,163,199,5,9,2,0,0,0,3,4,390,413,163,199,8,12,3,1,0,0,1,6,0,5,1,1,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,15,833,364,469,249,319,102,135,7,7,0,0,0,0,6,8,254,327,103,135,13,15,0,0,0,0,363,464,248,314,102,135,7,7,0,0,0,0,6,8,253,322,103,135,13,15,0,0,0,0,1,5,1,5,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,16,708,303,405,208,268,87,128,3,3,0,1,0,0,5,5,211,273,88,129,7,7,1,1,1,0,299,401,204,264,87,128,3,3,0,1,0,0,5,5,207,269,88,129,7,7,1,1,1,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,17,514,198,316,143,217,52,96,1,1,1,1,0,0,1,1,144,218,52,96,2,2,1,1,0,0,198,314,143,216,52,95,1,1,1,1,0,0,1,1,144,217,52,95,2,2,1,1,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,4,18,433,123,310,92,190,31,112,0,4,0,3,0,0,0,1,92,191,31,113,0,4,0,3,0,0,123,310,92,190,31,112,0,4,0,3,0,0,0,1,92,191,31,113,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,0,22582,10826,11756,6120,6413,4379,4989,135,139,40,40,6,3,146,172,6254,6568,4448,5072,204,219,57,61,10,8,10709,11632,6037,6319,4361,4967,131,136,38,39,2,2,140,169,6165,6473,4427,5049,197,214,55,59,6,6,117,124,83,94,18,22,4,3,2,1,4,1,6,3,89,95,21,23,7,5,2,2,4,2 -050,01,099,Alabama,Monroe County,5,1,1288,655,633,316,297,322,308,5,8,1,3,1,0,10,17,325,314,331,322,6,10,2,4,1,0,647,625,310,291,321,306,5,8,1,3,0,0,10,17,319,308,330,320,6,10,2,4,0,0,8,8,6,6,1,2,0,0,0,0,1,0,0,0,6,6,1,2,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,5,2,1474,772,702,398,366,344,298,6,8,3,3,0,0,21,27,419,391,360,319,9,13,6,5,0,1,753,687,384,355,342,296,5,7,2,2,0,0,20,27,404,380,357,317,8,12,5,4,0,1,19,15,14,11,2,2,1,1,1,1,0,0,1,0,15,11,3,2,1,1,1,1,0,0 -050,01,099,Alabama,Monroe County,5,3,1670,873,797,431,408,394,357,19,7,4,3,0,0,25,22,452,429,410,370,28,15,7,5,1,0,860,786,422,399,394,356,18,6,3,3,0,0,23,22,441,420,409,369,26,14,6,5,1,0,13,11,9,9,0,1,1,1,1,0,0,0,2,0,11,9,1,1,2,1,1,0,0,0 -050,01,099,Alabama,Monroe County,5,4,1650,854,796,410,359,413,400,9,14,4,0,2,0,16,23,426,380,421,412,16,23,5,3,2,1,849,788,409,354,411,398,8,14,4,0,1,0,16,22,425,374,419,410,15,22,5,3,1,1,5,8,1,5,2,2,1,0,0,0,1,0,0,1,1,6,2,2,1,1,0,0,1,0 -050,01,099,Alabama,Monroe County,5,5,1307,677,630,333,276,320,330,10,12,3,2,3,1,8,9,339,283,326,334,12,18,5,3,3,1,671,624,331,272,318,328,10,12,3,2,1,1,8,9,337,279,324,332,12,18,5,3,1,1,6,6,2,4,2,2,0,0,0,0,2,0,0,0,2,4,2,2,0,0,0,0,2,0 -050,01,099,Alabama,Monroe County,5,6,1145,522,623,280,322,231,284,3,7,1,2,0,0,7,8,286,329,236,286,5,11,1,5,1,0,509,610,269,309,230,284,3,7,1,2,0,0,6,8,274,316,234,286,5,11,1,5,1,0,13,13,11,13,1,0,0,0,0,0,0,0,1,0,12,13,2,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,7,1203,546,657,302,326,229,313,8,8,2,3,0,0,5,7,306,331,229,317,12,11,3,5,1,0,538,648,297,318,228,313,7,7,2,3,0,0,4,7,300,323,228,317,10,10,3,5,1,0,8,9,5,8,1,0,1,1,0,0,0,0,1,0,6,8,1,0,2,1,0,0,0,0 -050,01,099,Alabama,Monroe County,5,8,1249,565,684,310,333,241,332,8,11,3,2,0,2,3,4,313,337,242,333,10,14,3,2,0,2,559,680,304,330,241,332,8,11,3,2,0,1,3,4,307,334,242,333,10,14,3,2,0,1,6,4,6,3,0,0,0,0,0,0,0,1,0,0,6,3,0,0,0,0,0,0,0,1 -050,01,099,Alabama,Monroe County,5,9,1431,683,748,394,397,275,340,7,7,3,3,0,0,4,1,397,398,275,341,11,7,4,3,0,0,673,741,388,391,272,339,7,7,3,3,0,0,3,1,390,392,272,340,10,7,4,3,0,0,10,7,6,6,3,1,0,0,0,0,0,0,1,0,7,6,3,1,1,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,10,1561,758,803,451,447,285,336,10,6,4,5,0,0,8,9,459,454,286,338,16,12,5,7,0,1,751,798,446,446,283,334,10,6,4,5,0,0,8,7,454,453,284,335,16,11,5,6,0,0,7,5,5,1,2,2,0,0,0,0,0,0,0,2,5,1,2,3,0,1,0,1,0,1 -050,01,099,Alabama,Monroe County,5,11,1714,825,889,478,500,315,361,14,8,4,4,0,0,14,16,492,514,317,364,26,21,4,5,0,1,821,879,476,496,313,355,14,8,4,4,0,0,14,16,490,510,315,358,26,21,4,5,0,1,4,10,2,4,2,6,0,0,0,0,0,0,0,0,2,4,2,6,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,12,1681,811,870,466,478,322,370,12,11,4,1,0,0,7,10,473,487,324,372,16,19,5,2,0,0,804,866,459,475,322,369,12,11,4,1,0,0,7,10,466,484,324,371,16,19,5,2,0,0,7,4,7,3,0,1,0,0,0,0,0,0,0,0,7,3,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,13,1431,678,753,420,452,248,291,6,6,1,4,0,0,3,0,423,452,250,291,7,6,1,4,0,0,675,748,417,448,248,290,6,6,1,4,0,0,3,0,420,448,250,290,7,6,1,4,0,0,3,5,3,4,0,1,0,0,0,0,0,0,0,0,3,4,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,14,1206,577,629,407,424,161,191,6,11,1,0,0,0,2,3,409,427,161,191,7,13,2,0,0,1,574,622,406,418,159,190,6,11,1,0,0,0,2,3,408,421,159,190,7,13,2,0,0,1,3,7,1,6,2,1,0,0,0,0,0,0,0,0,1,6,2,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,15,888,396,492,268,337,114,141,7,7,1,0,0,0,6,7,273,343,115,143,13,11,1,2,0,0,395,488,267,333,114,141,7,7,1,0,0,0,6,7,272,339,115,143,13,11,1,2,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,16,703,296,407,206,262,81,135,3,3,0,1,0,0,6,6,211,267,81,137,8,8,1,1,1,0,293,402,203,257,81,135,3,3,0,1,0,0,6,6,208,262,81,137,8,8,1,1,1,0,3,5,3,5,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,17,542,213,329,156,229,53,95,2,2,1,1,0,0,1,2,157,231,53,95,2,3,2,2,0,0,212,326,155,227,53,94,2,2,1,1,0,0,1,2,156,229,53,94,2,3,2,2,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,5,18,439,125,314,94,200,31,107,0,3,0,3,0,0,0,1,94,201,31,107,0,4,0,3,0,0,125,314,94,200,31,107,0,3,0,3,0,0,0,1,94,201,31,107,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,0,22174,10611,11563,6019,6259,4254,4947,132,140,40,37,6,2,160,178,6168,6420,4327,5038,209,227,57,53,11,8,10476,11435,5923,6170,4230,4920,129,135,38,36,2,2,154,172,6067,6325,4302,5007,202,218,54,52,6,8,135,128,96,89,24,27,3,5,2,1,4,0,6,6,101,95,25,31,7,9,3,1,5,0 -050,01,099,Alabama,Monroe County,6,1,1244,631,613,302,289,308,293,6,10,1,3,1,0,13,18,315,303,318,309,7,13,2,6,2,0,623,601,297,281,306,290,6,9,1,3,0,0,13,18,310,295,316,306,7,12,2,6,1,0,8,12,5,8,2,3,0,1,0,0,1,0,0,0,5,8,2,3,0,1,0,0,1,0 -050,01,099,Alabama,Monroe County,6,2,1418,750,668,412,331,311,307,5,5,2,3,0,0,20,22,429,352,325,321,11,12,5,5,0,0,730,655,395,321,310,306,5,4,1,2,0,0,19,22,411,342,324,320,10,11,4,4,0,0,20,13,17,10,1,1,0,1,1,1,0,0,1,0,18,10,1,1,1,1,1,1,0,0 -050,01,099,Alabama,Monroe County,6,3,1586,805,781,392,402,373,343,14,5,4,2,0,0,22,29,411,429,388,363,19,14,8,3,1,2,792,766,382,392,373,340,13,5,3,2,0,0,21,27,400,417,388,359,17,12,7,3,1,2,13,15,10,10,0,3,1,0,1,0,0,0,1,2,11,12,0,4,2,2,1,0,0,0 -050,01,099,Alabama,Monroe County,6,4,1604,845,759,413,351,392,371,12,13,4,1,1,0,23,23,435,374,404,384,23,20,5,3,2,1,833,750,407,346,388,369,11,12,4,1,1,0,22,22,428,368,400,381,22,19,5,3,1,1,12,9,6,5,4,2,1,1,0,0,0,0,1,1,7,6,4,3,1,1,0,0,1,0 -050,01,099,Alabama,Monroe County,6,5,1381,708,673,336,290,346,357,8,13,4,2,4,1,10,10,346,298,352,361,11,20,4,3,5,1,700,666,333,286,344,354,8,13,4,2,1,1,10,10,343,294,350,358,11,20,4,3,2,1,8,7,3,4,2,3,0,0,0,0,3,0,0,0,3,4,2,3,0,0,0,0,3,0 -050,01,099,Alabama,Monroe County,6,6,1037,484,553,262,271,207,264,5,7,2,2,0,0,8,9,270,279,209,268,9,13,4,2,0,0,470,549,252,268,203,264,5,6,2,2,0,0,8,9,260,276,205,268,9,12,4,2,0,0,14,4,10,3,4,0,0,1,0,0,0,0,0,0,10,3,4,0,0,1,0,0,0,0 -050,01,099,Alabama,Monroe County,6,7,1181,541,640,304,319,222,300,5,8,3,3,0,0,7,10,309,329,225,305,10,10,4,6,0,0,533,631,299,312,221,300,5,7,3,3,0,0,5,9,303,321,223,304,9,9,3,6,0,0,8,9,5,7,1,0,0,1,0,0,0,0,2,1,6,8,2,1,1,1,1,0,0,0 -050,01,099,Alabama,Monroe County,6,8,1178,535,643,291,318,228,311,9,9,3,2,0,0,4,3,295,321,229,311,12,11,3,2,0,1,526,634,283,310,228,310,8,9,3,2,0,0,4,3,287,313,229,310,11,11,3,2,0,1,9,9,8,8,0,1,1,0,0,0,0,0,0,0,8,8,0,1,1,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,9,1403,671,732,399,389,262,331,7,9,0,1,0,1,3,1,402,390,263,332,9,9,0,1,0,1,661,727,391,385,261,330,7,9,0,1,0,1,2,1,393,386,262,331,8,9,0,1,0,1,10,5,8,4,1,1,0,0,0,0,0,0,1,0,9,4,1,1,1,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,10,1497,696,801,409,426,265,356,12,9,4,5,0,0,6,5,414,431,269,357,14,13,5,6,0,0,685,797,402,426,261,354,12,9,4,5,0,0,6,3,407,429,265,354,14,11,5,6,0,0,11,4,7,0,4,2,0,0,0,0,0,0,0,2,7,2,4,3,0,2,0,0,0,0 -050,01,099,Alabama,Monroe County,6,11,1638,787,851,470,471,285,357,13,5,5,2,0,0,14,16,484,484,285,361,24,17,8,4,0,1,783,842,468,467,283,352,13,5,5,2,0,0,14,16,482,480,283,356,24,17,8,4,0,1,4,9,2,4,2,5,0,0,0,0,0,0,0,0,2,4,2,5,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,12,1680,826,854,471,480,332,349,11,12,3,2,0,0,9,11,480,490,334,352,18,22,3,2,0,0,819,850,465,478,331,347,11,12,3,2,0,0,9,11,474,488,333,350,18,22,3,2,0,0,7,4,6,2,1,2,0,0,0,0,0,0,0,0,6,2,1,2,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,13,1465,669,796,400,450,259,334,6,7,1,3,0,0,3,2,403,451,259,335,9,9,1,3,0,0,668,789,399,445,259,332,6,7,1,3,0,0,3,2,402,446,259,333,9,9,1,3,0,0,1,7,1,5,0,2,0,0,0,0,0,0,0,0,1,5,0,2,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,14,1215,604,611,416,416,175,182,7,11,2,1,0,0,4,1,419,417,176,182,10,12,3,1,0,0,599,606,413,412,173,181,7,11,2,1,0,0,4,1,416,413,174,181,10,12,3,1,0,0,5,5,3,4,2,1,0,0,0,0,0,0,0,0,3,4,2,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,15,961,417,544,285,366,119,163,7,7,1,0,0,0,5,8,290,373,120,164,11,15,1,0,0,0,417,536,285,358,119,163,7,7,1,0,0,0,5,8,290,365,120,164,11,15,1,0,0,0,0,8,0,8,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,16,676,297,379,206,250,80,120,3,2,0,0,0,0,8,7,214,257,81,123,9,7,0,0,1,0,295,375,204,246,80,120,3,2,0,0,0,0,8,7,212,253,81,123,9,7,0,0,1,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,17,552,211,341,149,230,59,102,2,5,0,2,0,0,1,2,150,231,59,103,3,6,0,3,0,1,208,337,146,227,59,101,2,5,0,2,0,0,1,2,147,228,59,102,3,6,0,3,0,1,3,4,3,3,0,1,0,0,0,0,0,0,0,0,3,3,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,6,18,458,134,324,102,210,31,107,0,3,1,3,0,0,0,1,102,211,31,107,0,4,1,3,0,0,134,324,102,210,31,107,0,3,1,3,0,0,0,1,102,211,31,107,0,4,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,0,21927,10486,11441,5967,6176,4168,4914,141,137,39,39,6,2,165,173,6122,6336,4251,4996,218,225,53,60,9,5,10342,11300,5864,6075,4144,4886,136,132,37,38,2,2,159,167,6013,6230,4225,4967,209,216,50,58,5,4,144,141,103,101,24,28,5,5,2,1,4,0,6,6,109,106,26,29,9,9,3,2,4,1 -050,01,099,Alabama,Monroe County,7,1,1192,627,565,295,272,309,275,9,5,1,0,0,0,13,13,307,284,321,284,11,6,1,4,0,0,620,553,290,264,307,272,9,4,1,0,0,0,13,13,302,276,319,281,11,5,1,4,0,0,7,12,5,8,2,3,0,1,0,0,0,0,0,0,5,8,2,3,0,1,0,0,0,0 -050,01,099,Alabama,Monroe County,7,2,1370,714,656,394,313,294,314,4,6,3,2,1,0,18,21,411,334,307,327,7,12,6,4,1,0,691,643,377,303,291,312,4,5,2,2,0,0,17,21,393,324,304,325,7,11,4,4,0,0,23,13,17,10,3,2,0,1,1,0,1,0,1,0,18,10,3,2,0,1,2,0,1,0 -050,01,099,Alabama,Monroe County,7,3,1515,769,746,397,391,338,321,10,6,3,3,0,0,21,25,417,413,352,339,16,14,5,6,0,1,754,731,385,381,337,318,9,6,3,2,0,0,20,24,404,403,350,336,15,14,5,4,0,0,15,15,12,10,1,3,1,0,0,1,0,0,1,1,13,10,2,3,1,0,0,2,0,1 -050,01,099,Alabama,Monroe County,7,4,1561,813,748,399,361,369,354,15,12,5,1,0,0,25,20,422,378,386,366,25,22,6,2,0,1,805,736,396,353,367,353,14,11,4,1,0,0,24,18,418,368,384,365,23,19,5,2,0,1,8,12,3,8,2,1,1,1,1,0,0,0,1,2,4,10,2,1,2,3,1,0,0,0 -050,01,099,Alabama,Monroe County,7,5,1415,718,697,334,295,353,368,10,14,3,3,3,1,15,16,347,311,361,376,15,22,5,5,5,2,711,688,333,290,351,364,8,14,3,3,1,1,15,16,346,306,359,372,13,22,5,5,3,2,7,9,1,5,2,4,2,0,0,0,2,0,0,0,1,5,2,4,2,0,0,0,2,0 -050,01,099,Alabama,Monroe County,7,6,1043,484,559,269,276,197,271,6,4,3,1,2,0,7,7,275,282,202,276,9,8,3,2,2,0,467,551,257,269,193,271,6,3,3,1,1,0,7,7,263,275,198,276,9,7,3,2,1,0,17,8,12,7,4,0,0,1,0,0,1,0,0,0,12,7,4,0,0,1,0,0,1,0 -050,01,099,Alabama,Monroe County,7,7,1150,524,626,302,312,210,290,4,7,2,4,0,0,6,13,308,323,212,297,9,11,2,8,0,0,517,617,298,305,209,290,4,6,2,4,0,0,4,12,302,315,210,297,7,9,2,8,0,0,7,9,4,7,1,0,0,1,0,0,0,0,2,1,6,8,2,0,2,2,0,0,0,0 -050,01,099,Alabama,Monroe County,7,8,1169,537,632,283,318,238,302,9,6,1,3,0,0,6,3,288,321,240,302,13,9,2,3,0,0,528,621,275,308,238,301,8,6,1,3,0,0,6,3,280,311,240,301,12,9,2,3,0,0,9,11,8,10,0,1,1,0,0,0,0,0,0,0,8,10,0,1,1,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,9,1395,659,736,395,376,250,337,10,15,1,4,0,1,3,3,398,379,252,340,11,15,1,4,0,1,643,730,381,371,249,336,10,15,1,4,0,1,2,3,383,374,251,339,10,15,1,4,0,1,16,6,14,5,1,1,0,0,0,0,0,0,1,0,15,5,1,1,1,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,10,1420,652,768,370,404,262,348,12,9,3,5,0,0,5,2,375,406,264,349,14,10,4,5,0,0,640,764,361,403,259,347,12,9,3,5,0,0,5,0,366,403,261,347,14,9,4,5,0,0,12,4,9,1,3,1,0,0,0,0,0,0,0,2,9,3,3,2,0,1,0,0,0,0 -050,01,099,Alabama,Monroe County,7,11,1591,781,810,459,454,292,333,13,5,4,2,0,0,13,16,472,468,293,335,25,20,4,3,0,0,776,803,456,450,290,330,13,5,4,2,0,0,13,16,469,464,291,332,25,20,4,3,0,0,5,7,3,4,2,3,0,0,0,0,0,0,0,0,3,4,2,3,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,12,1654,804,850,470,468,308,355,13,14,3,2,0,0,10,11,480,478,310,358,19,22,5,3,0,0,798,844,465,466,307,351,13,14,3,2,0,0,10,11,475,476,309,354,19,22,5,3,0,0,6,6,5,2,1,4,0,0,0,0,0,0,0,0,5,2,1,4,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,13,1502,688,814,410,450,267,350,5,7,3,3,0,0,3,4,412,454,268,351,8,10,3,3,0,0,685,806,407,445,267,347,5,7,3,3,0,0,3,4,409,449,268,348,8,10,3,3,0,0,3,8,3,5,0,3,0,0,0,0,0,0,0,0,3,5,0,3,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,14,1231,608,623,403,422,191,190,8,10,1,1,0,0,5,0,408,422,192,190,11,10,2,1,0,0,604,619,401,418,189,190,8,10,1,1,0,0,5,0,406,418,190,190,11,10,2,1,0,0,4,4,2,4,2,0,0,0,0,0,0,0,0,0,2,4,2,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,15,998,439,559,309,369,116,176,7,7,2,0,0,0,5,7,314,376,117,176,11,13,2,1,0,0,439,551,309,362,116,175,7,7,2,0,0,0,5,7,314,369,117,175,11,13,2,1,0,0,0,8,0,7,0,1,0,0,0,0,0,0,0,0,0,7,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,16,685,299,386,209,261,80,113,3,4,0,0,0,0,7,8,216,269,80,113,8,12,1,0,1,0,298,382,208,257,80,113,3,4,0,0,0,0,7,8,215,265,80,113,8,12,1,0,1,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,17,550,221,329,154,212,61,110,3,2,0,2,0,0,3,3,157,215,61,110,6,4,0,3,0,0,217,324,150,208,61,109,3,2,0,2,0,0,3,3,153,211,61,109,6,4,0,3,0,0,4,5,4,4,0,1,0,0,0,0,0,0,0,0,4,4,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,7,18,486,149,337,115,222,33,107,0,4,1,3,0,0,0,1,115,223,33,107,0,5,1,3,0,0,149,337,115,222,33,107,0,4,1,3,0,0,0,1,115,223,33,107,0,5,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,0,21720,10381,11339,5897,6146,4134,4833,136,138,48,46,6,2,160,174,6047,6296,4210,4922,208,217,67,71,11,8,10245,11189,5803,6041,4109,4804,131,129,46,45,2,2,154,168,5948,6187,4183,4890,200,204,64,69,6,8,136,150,94,105,25,29,5,9,2,1,4,0,6,6,99,109,27,32,8,13,3,2,5,0 -050,01,099,Alabama,Monroe County,8,1,1165,590,575,284,282,274,264,11,8,5,3,0,0,16,18,300,297,286,279,14,9,6,7,0,1,585,558,280,272,273,262,11,3,5,3,0,0,16,18,296,287,285,277,14,4,6,7,0,1,5,17,4,10,1,2,0,5,0,0,0,0,0,0,4,10,1,2,0,5,0,0,0,0 -050,01,099,Alabama,Monroe County,8,2,1327,701,626,370,286,306,318,3,6,4,1,1,0,17,15,385,300,319,328,8,9,5,3,1,1,680,614,355,276,303,316,3,6,3,1,0,0,16,15,369,290,316,326,8,9,3,3,0,1,21,12,15,10,3,2,0,0,1,0,1,0,1,0,16,10,3,2,0,0,2,0,1,0 -050,01,099,Alabama,Monroe County,8,3,1479,762,717,402,398,336,281,4,7,2,5,0,0,18,26,420,421,347,299,7,14,6,8,0,1,746,704,390,390,333,278,3,6,2,4,0,0,18,26,408,413,344,296,6,13,6,7,0,1,16,13,12,8,3,3,1,1,0,1,0,0,0,0,12,8,3,3,1,1,0,1,0,0 -050,01,099,Alabama,Monroe County,8,4,1561,809,752,412,360,347,356,16,8,6,2,0,0,28,26,440,382,363,371,24,18,9,5,1,2,799,736,407,350,346,354,15,7,5,2,0,0,26,23,433,371,361,368,22,14,8,4,1,2,10,16,5,10,1,2,1,1,1,0,0,0,2,3,7,11,2,3,2,4,1,1,0,0 -050,01,099,Alabama,Monroe County,8,5,1413,715,698,327,311,359,359,9,14,3,2,3,1,14,11,340,322,364,366,16,19,5,2,4,1,706,689,325,305,356,356,7,14,3,2,1,1,14,11,338,316,361,363,14,19,5,2,2,1,9,9,2,6,3,3,2,0,0,0,2,0,0,0,2,6,3,3,2,0,0,0,2,0 -050,01,099,Alabama,Monroe County,8,6,1058,513,545,280,258,216,267,7,7,4,4,2,0,4,9,282,266,219,270,8,11,6,6,2,1,502,538,274,253,212,266,7,6,4,4,1,0,4,9,276,261,215,269,8,10,6,6,1,1,11,7,6,5,4,1,0,1,0,0,1,0,0,0,6,5,4,1,0,1,0,0,1,0 -050,01,099,Alabama,Monroe County,8,7,1091,487,604,283,312,196,268,2,8,1,3,0,0,5,13,286,322,199,274,5,14,1,7,1,0,478,592,276,302,196,268,2,7,1,3,0,0,3,12,278,311,199,274,3,12,1,7,0,0,9,12,7,10,0,0,0,1,0,0,0,0,2,1,8,11,0,0,2,2,0,0,1,0 -050,01,099,Alabama,Monroe County,8,8,1193,529,664,275,337,234,317,10,3,4,5,0,0,6,2,281,339,235,317,15,3,4,7,0,0,523,655,271,330,233,315,9,3,4,5,0,0,6,2,277,332,234,315,14,3,4,7,0,0,6,9,4,7,1,2,1,0,0,0,0,0,0,0,4,7,1,2,1,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,9,1333,624,709,380,352,230,334,10,15,2,3,0,1,2,4,382,356,231,335,10,16,3,5,0,1,612,700,370,344,229,333,10,15,2,3,0,1,1,4,371,348,229,334,10,16,3,5,0,1,12,9,10,8,1,1,0,0,0,0,0,0,1,0,11,8,2,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,10,1380,634,746,358,410,259,321,9,8,3,5,0,0,5,2,363,412,261,323,10,8,5,5,0,0,621,742,348,409,256,320,9,8,3,5,0,0,5,0,353,409,258,320,10,8,5,5,0,0,13,4,10,1,3,1,0,0,0,0,0,0,0,2,10,3,3,3,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,11,1549,775,774,456,442,292,315,12,6,4,0,0,0,11,11,467,453,295,316,20,15,4,1,0,0,770,767,453,437,290,313,12,6,4,0,0,0,11,11,464,448,293,314,20,15,4,1,0,0,5,7,3,5,2,2,0,0,0,0,0,0,0,0,3,5,2,2,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,12,1634,785,849,459,465,301,355,14,11,2,4,0,0,9,14,468,476,302,360,21,22,3,5,0,0,780,842,455,463,300,350,14,11,2,4,0,0,9,14,464,474,301,355,21,22,3,5,0,0,5,7,4,2,1,5,0,0,0,0,0,0,0,0,4,2,1,5,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,13,1558,714,844,411,461,289,367,7,10,4,2,0,0,3,4,414,464,290,368,9,14,4,2,0,0,709,838,406,458,289,364,7,10,4,2,0,0,3,4,409,461,290,365,9,14,4,2,0,0,5,6,5,3,0,3,0,0,0,0,0,0,0,0,5,3,0,3,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,14,1244,614,630,415,412,185,208,8,8,1,2,0,0,5,0,419,412,186,208,11,8,2,2,1,0,610,625,413,407,183,208,8,8,1,2,0,0,5,0,417,407,184,208,11,8,2,2,1,0,4,5,2,5,2,0,0,0,0,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,15,1029,477,552,330,371,133,168,7,9,2,0,0,0,5,4,334,374,134,169,12,13,2,0,0,0,477,546,330,366,133,167,7,9,2,0,0,0,5,4,334,369,134,168,12,13,2,0,0,0,0,6,0,5,0,1,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,16,684,285,399,194,266,80,119,4,5,0,0,0,0,7,9,200,274,82,120,11,14,0,0,0,0,284,393,193,260,80,119,4,5,0,0,0,0,7,9,199,268,82,120,11,14,0,0,0,0,1,6,1,6,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,17,533,220,313,150,200,62,106,3,2,0,1,0,0,5,4,155,202,62,108,7,5,1,2,1,0,216,309,146,196,62,106,3,2,0,1,0,0,5,4,151,198,62,108,7,5,1,2,1,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,8,18,489,147,342,111,223,35,110,0,3,1,4,0,0,0,2,111,224,35,111,0,5,1,4,0,0,147,341,111,223,35,109,0,3,1,4,0,0,0,2,111,224,35,110,0,5,1,4,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,0,21553,10315,11238,5892,6058,4065,4815,132,133,47,48,6,2,173,182,6052,6216,4152,4912,218,211,64,74,8,11,10174,11090,5792,5954,4041,4786,127,125,45,47,2,2,167,176,5947,6106,4126,4881,209,200,60,72,4,11,141,148,100,104,24,29,5,8,2,1,4,0,6,6,105,110,26,31,9,11,4,2,4,0 -050,01,099,Alabama,Monroe County,9,1,1136,577,559,290,261,257,270,7,8,5,2,0,0,18,18,306,276,272,287,10,9,7,4,0,1,572,545,286,253,256,268,7,4,5,2,0,0,18,18,302,268,271,285,10,5,7,4,0,1,5,14,4,8,1,2,0,4,0,0,0,0,0,0,4,8,1,2,0,4,0,0,0,0 -050,01,099,Alabama,Monroe County,9,2,1323,692,631,359,305,308,304,4,4,4,2,1,0,16,16,373,320,320,317,8,8,6,2,1,0,675,619,348,295,304,303,4,3,4,2,0,0,15,16,361,310,316,316,8,7,5,2,0,0,17,12,11,10,4,1,0,1,0,0,1,0,1,0,12,10,4,1,0,1,1,0,1,0 -050,01,099,Alabama,Monroe County,9,3,1439,750,689,391,377,334,275,2,8,3,4,0,0,20,25,411,399,348,293,8,16,3,6,1,2,729,674,375,368,330,271,2,7,2,3,0,0,20,25,395,390,344,289,8,15,2,5,1,2,21,15,16,9,4,4,0,1,1,1,0,0,0,0,16,9,4,4,0,1,1,1,0,0 -050,01,099,Alabama,Monroe County,9,4,1501,789,712,396,344,349,332,13,8,4,3,0,0,27,25,421,366,365,349,24,13,6,7,0,2,776,697,387,335,349,329,12,7,3,3,0,0,25,23,411,355,364,345,22,11,4,7,0,2,13,15,9,9,0,3,1,1,1,0,0,0,2,2,10,11,1,4,2,2,2,0,0,0 -050,01,099,Alabama,Monroe County,9,5,1351,698,653,334,294,325,330,12,11,3,1,3,1,21,16,354,306,335,340,22,17,6,5,3,1,689,646,333,289,322,329,9,11,3,1,1,1,21,15,353,300,332,339,19,16,6,5,1,1,9,7,1,5,3,1,3,0,0,0,2,0,0,1,1,6,3,1,3,1,0,0,2,0 -050,01,099,Alabama,Monroe County,9,6,1164,565,599,319,277,226,299,7,7,5,6,2,0,6,10,324,286,230,304,8,9,7,9,3,1,557,590,313,269,225,298,7,7,5,6,1,0,6,10,318,278,229,303,8,9,7,9,2,1,8,9,6,8,1,1,0,0,0,0,1,0,0,0,6,8,1,1,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,9,7,1068,471,597,277,310,186,265,2,5,1,4,0,0,5,13,282,320,188,270,5,13,2,6,0,1,459,587,267,303,185,263,2,5,1,4,0,0,4,12,271,312,186,267,4,13,2,6,0,1,12,10,10,7,1,2,0,0,0,0,0,0,1,1,11,8,2,3,1,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,8,1201,530,671,286,339,225,321,11,4,2,3,0,0,6,4,292,343,226,321,15,5,3,6,0,0,522,663,281,333,224,320,10,3,2,3,0,0,5,4,286,337,225,320,13,4,3,6,0,0,8,8,5,6,1,1,1,1,0,0,0,0,1,0,6,6,1,1,2,1,0,0,0,0 -050,01,099,Alabama,Monroe County,9,9,1276,606,670,349,323,240,323,9,15,4,3,0,1,4,5,353,328,240,325,13,18,4,4,0,1,597,660,341,313,240,323,9,15,4,3,0,1,3,5,344,318,240,325,12,18,4,4,0,1,9,10,8,10,0,0,0,0,0,0,0,0,1,0,9,10,0,0,1,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,10,1345,620,725,366,399,242,313,7,7,1,5,0,0,4,1,370,400,243,313,10,7,1,6,0,0,609,721,359,397,238,312,7,7,1,5,0,0,4,0,363,397,239,312,10,7,1,5,0,0,11,4,7,2,4,1,0,0,0,0,0,0,0,1,7,3,4,1,0,0,0,1,0,0 -050,01,099,Alabama,Monroe County,9,11,1510,748,762,450,437,273,308,13,7,4,2,0,0,8,8,458,445,275,309,18,13,5,3,0,0,739,756,443,434,271,306,13,7,4,2,0,0,8,7,451,441,273,307,18,12,5,3,0,0,9,6,7,3,2,2,0,0,0,0,0,0,0,1,7,4,2,2,0,1,0,0,0,0 -050,01,099,Alabama,Monroe County,9,12,1608,763,845,443,460,291,354,14,11,3,4,0,0,12,16,455,471,293,359,24,24,5,5,0,2,758,836,439,457,290,348,14,11,3,4,0,0,12,16,451,468,292,353,24,24,5,5,0,2,5,9,4,3,1,6,0,0,0,0,0,0,0,0,4,3,1,6,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,13,1600,744,856,428,466,299,369,9,10,4,2,0,0,4,9,431,474,302,371,11,19,4,2,0,0,739,849,423,462,299,366,9,10,4,2,0,0,4,9,426,470,302,368,11,19,4,2,0,0,5,7,5,4,0,3,0,0,0,0,0,0,0,0,5,4,0,3,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,14,1273,619,654,406,409,202,236,6,7,1,2,0,0,4,0,410,409,202,236,10,7,1,2,0,0,616,649,404,404,201,236,6,7,1,2,0,0,4,0,408,404,201,236,10,7,1,2,0,0,3,5,2,5,1,0,0,0,0,0,0,0,0,0,2,5,1,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,15,1031,465,566,332,369,122,183,7,10,1,0,0,0,3,4,334,373,124,183,8,13,2,1,0,0,464,561,332,365,121,182,7,10,1,0,0,0,3,4,334,369,123,182,8,13,2,1,0,0,1,5,0,4,1,1,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,16,685,305,380,201,257,87,110,7,7,1,0,0,0,9,6,209,263,88,111,16,12,1,0,0,0,304,374,200,251,87,110,7,7,1,0,0,0,9,6,208,257,88,111,16,12,1,0,0,0,1,6,1,6,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,17,533,211,322,147,204,58,111,1,1,0,1,0,0,5,5,150,209,60,111,6,5,0,2,0,0,207,318,143,200,58,111,1,1,0,1,0,0,5,5,146,205,60,111,6,5,0,2,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,9,18,509,162,347,118,227,41,112,1,3,1,4,0,0,1,1,119,228,41,113,2,3,1,4,0,0,162,345,118,226,41,111,1,3,1,4,0,0,1,1,119,227,41,112,2,3,1,4,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,10,0,21294,10162,11132,5795,5976,4004,4796,132,133,50,41,6,2,175,184,5957,6144,4094,4889,209,211,71,68,10,6,10010,10974,5680,5864,3982,4768,129,124,48,40,2,2,169,176,5839,6025,4070,4858,202,199,67,65,5,5,152,158,115,112,22,28,3,9,2,1,4,0,6,8,118,119,24,31,7,12,4,3,5,1 -050,01,099,Alabama,Monroe County,10,1,1098,553,545,264,258,256,254,6,9,3,2,0,0,24,22,287,278,275,273,11,12,3,4,1,0,546,533,259,252,254,253,6,4,3,2,0,0,24,22,282,272,273,272,11,7,3,4,1,0,7,12,5,6,2,1,0,5,0,0,0,0,0,0,5,6,2,1,0,5,0,0,0,0 -050,01,099,Alabama,Monroe County,10,2,1262,649,613,333,301,290,297,5,5,5,2,1,0,15,8,347,309,302,302,6,6,8,3,1,1,634,599,322,292,287,295,5,4,5,2,0,0,15,6,336,298,299,300,6,4,8,3,0,0,15,14,11,9,3,2,0,1,0,0,1,0,0,2,11,11,3,2,0,2,0,0,1,1 -050,01,099,Alabama,Monroe County,10,3,1385,714,671,380,359,309,275,1,6,4,4,0,0,20,27,399,384,322,292,5,12,7,10,1,0,695,651,364,345,308,271,1,5,3,3,0,0,19,27,382,370,321,288,4,11,6,9,1,0,19,20,16,14,1,4,0,1,1,1,0,0,1,0,17,14,1,4,1,1,1,1,0,0 -050,01,099,Alabama,Monroe County,10,4,1458,765,693,382,352,341,309,13,4,4,4,0,0,25,24,405,375,357,326,22,11,7,6,0,0,748,677,370,342,340,306,12,3,3,4,0,0,23,22,392,363,355,322,19,9,6,6,0,0,17,16,12,10,1,3,1,1,1,0,0,0,2,2,13,12,2,4,3,2,1,0,0,0 -050,01,099,Alabama,Monroe County,10,5,1294,652,642,332,273,291,333,10,12,3,0,2,0,14,24,345,295,298,349,16,20,6,2,2,0,644,635,329,268,288,332,9,12,3,0,1,0,14,23,342,290,295,347,15,20,6,1,1,0,8,7,3,5,3,1,1,0,0,0,1,0,0,1,3,5,3,2,1,0,0,1,1,0 -050,01,099,Alabama,Monroe County,10,6,1175,584,591,313,276,246,294,7,8,6,3,3,1,9,9,321,282,253,300,11,11,6,5,3,2,570,585,302,271,245,293,7,8,6,3,1,1,9,9,310,277,252,299,11,11,6,5,1,2,14,6,11,5,1,1,0,0,0,0,2,0,0,0,11,5,1,1,0,0,0,0,2,0 -050,01,099,Alabama,Monroe County,10,7,1063,480,583,269,302,199,264,3,4,2,4,0,0,7,9,276,310,201,269,5,8,5,5,0,0,469,573,260,294,198,263,3,4,2,4,0,0,6,8,266,301,200,267,5,8,4,5,0,0,11,10,9,8,1,1,0,0,0,0,0,0,1,1,10,9,1,2,0,0,1,0,0,0 -050,01,099,Alabama,Monroe County,10,8,1158,511,647,290,327,201,303,11,5,2,5,0,0,7,7,296,333,202,304,17,7,2,9,1,1,502,638,284,319,200,303,10,4,2,5,0,0,6,7,290,325,201,304,15,6,2,9,0,1,9,9,6,8,1,0,1,1,0,0,0,0,1,0,6,8,1,0,2,1,0,0,1,0 -050,01,099,Alabama,Monroe County,10,9,1235,559,676,312,340,232,316,8,12,5,3,0,1,2,4,314,344,233,317,8,14,6,4,0,1,551,663,304,328,232,315,8,12,5,3,0,1,2,4,306,332,233,316,8,14,6,4,0,1,8,13,8,12,0,1,0,0,0,0,0,0,0,0,8,12,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,10,10,1343,650,693,385,359,249,323,10,8,1,2,0,0,5,1,389,360,251,323,11,9,4,2,0,0,637,688,376,355,246,322,10,8,1,2,0,0,4,1,380,356,247,322,11,9,3,2,0,0,13,5,9,4,3,1,0,0,0,0,0,0,1,0,9,4,4,1,0,0,1,0,0,0 -050,01,099,Alabama,Monroe County,10,11,1480,712,768,421,431,269,316,11,10,4,3,0,0,7,8,427,439,271,316,16,15,5,5,0,1,703,762,414,429,267,314,11,10,4,3,0,0,7,6,420,435,269,314,16,14,5,4,0,1,9,6,7,2,2,2,0,0,0,0,0,0,0,2,7,4,2,2,0,1,0,1,0,0 -050,01,099,Alabama,Monroe County,10,12,1642,770,872,459,477,282,370,13,8,4,2,0,0,12,15,470,492,285,372,24,20,4,4,0,0,764,862,455,473,280,364,13,8,4,2,0,0,12,15,466,488,283,366,24,20,4,4,0,0,6,10,4,4,2,6,0,0,0,0,0,0,0,0,4,4,2,6,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,10,13,1573,753,820,430,455,303,343,11,12,3,0,0,0,6,10,436,464,305,344,15,21,3,1,0,0,747,815,424,451,303,342,11,12,3,0,0,0,6,10,430,460,305,343,15,21,3,1,0,0,6,5,6,4,0,1,0,0,0,0,0,0,0,0,6,4,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,10,14,1290,609,681,384,399,214,274,7,6,1,2,0,0,3,0,387,399,215,274,8,6,1,2,1,0,606,675,381,395,214,272,7,6,1,2,0,0,3,0,384,395,215,272,8,6,1,2,1,0,3,6,3,4,0,2,0,0,0,0,0,0,0,0,3,4,0,2,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,10,15,1036,481,555,347,372,125,168,6,12,0,0,0,0,3,3,350,374,125,169,9,15,0,0,0,0,479,549,347,367,123,167,6,12,0,0,0,0,3,3,350,369,123,168,9,15,0,0,0,0,2,6,0,5,2,1,0,0,0,0,0,0,0,0,0,5,2,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,10,16,748,338,410,224,267,95,129,8,7,2,0,0,0,9,7,232,272,96,131,17,13,2,1,0,0,337,405,223,262,95,129,8,7,2,0,0,0,9,7,231,267,96,131,17,13,2,1,0,0,1,5,1,5,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,10,17,520,208,312,145,198,55,108,2,1,0,1,0,0,6,4,150,202,56,108,7,5,1,1,0,0,205,307,142,193,55,108,2,1,0,1,0,0,6,4,147,197,56,108,7,5,1,1,0,0,3,5,3,5,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,10,18,534,174,360,125,230,47,120,0,4,1,4,0,0,1,2,126,232,47,120,1,6,1,4,0,0,173,357,124,228,47,119,0,4,1,4,0,0,1,2,125,230,47,119,1,6,1,4,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,11,0,21035,10005,11030,5672,5910,3967,4749,133,133,50,48,6,3,177,187,5832,6079,4062,4844,200,221,78,67,12,9,9838,10858,5546,5790,3940,4719,130,124,48,47,2,2,172,176,5702,5949,4033,4806,195,208,75,65,7,8,167,172,126,120,27,30,3,9,2,1,4,1,5,11,130,130,29,38,5,13,3,2,5,1 -050,01,099,Alabama,Monroe County,11,1,1103,569,534,275,236,261,257,6,9,1,2,0,0,26,30,299,264,283,280,11,11,2,8,1,2,551,524,262,234,256,256,6,4,1,2,0,0,26,28,286,260,278,278,11,5,2,7,1,2,18,10,13,2,5,1,0,5,0,0,0,0,0,2,13,4,5,2,0,6,0,1,0,0 -050,01,099,Alabama,Monroe County,11,2,1197,625,572,309,294,280,260,5,5,8,5,1,0,22,8,329,302,298,265,7,6,12,6,1,1,606,554,295,281,276,258,5,4,8,5,0,0,22,6,315,287,294,261,7,5,12,6,0,1,19,18,14,13,4,2,0,1,0,0,1,0,0,2,14,15,4,4,0,1,0,0,1,0 -050,01,099,Alabama,Monroe County,11,3,1390,713,677,374,353,311,291,1,5,6,4,0,0,21,24,392,377,325,305,6,13,11,5,0,1,698,656,363,338,309,287,1,4,5,3,0,0,20,24,380,362,323,301,5,12,10,4,0,1,15,21,11,15,2,4,0,1,1,1,0,0,1,0,12,15,2,4,1,1,1,1,0,0 -050,01,099,Alabama,Monroe County,11,4,1384,713,671,353,344,328,297,11,4,3,2,0,0,18,24,370,366,336,313,16,12,8,4,1,0,692,654,336,332,327,294,10,4,2,2,0,0,17,22,352,352,335,309,15,11,6,4,1,0,21,17,17,12,1,3,1,0,1,0,0,0,1,2,18,14,1,4,1,1,2,0,0,0 -050,01,099,Alabama,Monroe County,11,5,1242,640,602,315,277,292,296,11,10,3,2,1,0,18,17,330,291,304,307,17,17,4,4,3,0,635,592,313,272,290,294,10,9,3,2,1,0,18,15,328,284,302,304,16,15,4,4,3,0,5,10,2,5,2,2,1,1,0,0,0,0,0,2,2,7,2,3,1,2,0,0,0,0 -050,01,099,Alabama,Monroe County,11,6,1255,622,633,327,287,273,320,7,9,4,5,4,1,7,11,333,297,277,326,9,14,6,7,4,1,608,627,318,281,271,320,7,9,4,5,1,1,7,11,324,291,275,326,9,14,6,7,1,1,14,6,9,6,2,0,0,0,0,0,3,0,0,0,9,6,2,0,0,0,0,0,3,0 -050,01,099,Alabama,Monroe County,11,7,1009,452,557,257,275,183,265,5,3,3,5,0,0,4,9,261,283,186,270,5,7,4,5,0,1,442,548,248,268,182,263,5,3,3,5,0,0,4,9,252,276,185,268,5,7,4,5,0,1,10,9,9,7,1,2,0,0,0,0,0,0,0,0,9,7,1,2,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,11,8,1128,508,620,289,323,204,277,7,8,3,4,0,0,5,8,294,331,206,279,10,13,3,5,0,0,499,609,283,315,203,276,7,7,3,4,0,0,3,7,286,322,203,277,10,12,3,5,0,0,9,11,6,8,1,1,0,1,0,0,0,0,2,1,8,9,3,2,0,1,0,0,0,0 -050,01,099,Alabama,Monroe County,11,9,1171,520,651,285,319,218,314,9,10,4,4,0,1,4,3,289,321,221,315,10,13,4,4,0,1,509,640,275,310,218,313,8,10,4,4,0,0,4,3,279,312,221,314,9,13,4,4,0,0,11,11,10,9,0,1,1,0,0,0,0,1,0,0,10,9,0,1,1,0,0,0,0,1 -050,01,099,Alabama,Monroe County,11,10,1322,644,678,383,353,247,312,9,9,1,1,0,1,4,2,386,355,248,312,11,10,2,2,1,1,634,671,375,347,246,311,9,9,1,1,0,1,3,2,378,349,247,311,10,10,2,2,0,1,10,7,8,6,1,1,0,0,0,0,0,0,1,0,8,6,1,1,1,0,0,0,1,0 -050,01,099,Alabama,Monroe County,11,11,1451,672,779,404,418,242,342,15,11,4,4,0,0,7,4,411,421,242,344,22,14,4,4,0,0,659,771,395,414,238,340,15,11,4,4,0,0,7,2,402,416,238,340,22,13,4,4,0,0,13,8,9,4,4,2,0,0,0,0,0,0,0,2,9,5,4,4,0,1,0,0,0,0 -050,01,099,Alabama,Monroe County,11,12,1584,732,852,443,477,259,352,13,6,5,2,0,0,12,15,452,488,261,356,23,18,8,5,0,0,729,842,441,472,258,347,13,6,5,2,0,0,12,15,450,483,260,351,23,18,8,5,0,0,3,10,2,5,1,5,0,0,0,0,0,0,0,0,2,5,1,5,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,11,13,1563,760,803,440,454,301,320,10,14,2,1,0,0,7,14,447,467,304,323,14,26,2,1,0,1,750,798,431,451,300,318,10,14,2,1,0,0,7,14,438,464,303,321,14,26,2,1,0,1,10,5,9,3,1,2,0,0,0,0,0,0,0,0,9,3,1,2,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,11,14,1323,596,727,368,408,218,310,6,6,1,1,0,0,3,2,370,410,220,310,8,8,1,1,0,0,595,720,367,403,218,308,6,6,1,1,0,0,3,2,369,405,220,308,8,8,1,1,0,0,1,7,1,5,0,2,0,0,0,0,0,0,0,0,1,5,0,2,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,11,15,1051,513,538,358,364,143,162,7,10,1,1,0,0,4,1,362,364,143,163,10,11,2,1,0,0,509,533,356,360,141,161,7,10,1,1,0,0,4,1,360,360,141,162,10,11,2,1,0,0,4,5,2,4,2,1,0,0,0,0,0,0,0,0,2,4,2,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,11,16,818,348,470,231,305,101,149,8,8,1,0,0,0,7,8,238,312,101,151,14,15,2,0,0,0,348,462,231,297,101,149,8,8,1,0,0,0,7,8,238,304,101,151,14,15,2,0,0,0,0,8,0,8,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,11,17,490,205,285,140,182,55,96,3,2,0,0,0,0,7,5,147,187,56,96,7,7,2,0,1,0,204,280,139,177,55,96,3,2,0,0,0,0,7,5,146,182,56,96,7,7,2,0,1,0,1,5,1,5,0,0,0,0,0,0,0,0,0,0,1,5,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,11,18,554,173,381,121,241,51,129,0,4,0,5,0,0,1,2,122,243,51,129,0,6,1,5,0,0,170,377,118,238,51,128,0,4,0,5,0,0,1,2,119,240,51,128,0,6,1,5,0,0,3,4,3,3,0,1,0,0,0,0,0,0,0,0,3,3,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,0,20689,9841,10848,5602,5862,3873,4623,131,126,49,46,6,2,180,189,5762,6030,3974,4728,212,210,64,69,11,6,9664,10672,5469,5733,3844,4593,127,121,47,45,2,2,175,178,5624,5892,3943,4693,206,199,61,67,7,5,177,176,133,129,29,30,4,5,2,1,4,0,5,11,138,138,31,35,6,11,3,2,4,1 -050,01,099,Alabama,Monroe County,12,1,1048,562,486,253,225,274,229,6,6,2,0,0,0,27,26,278,248,297,251,11,7,4,6,0,2,542,477,241,220,267,228,5,5,2,0,0,0,27,24,266,243,290,248,10,6,4,5,0,1,20,9,12,5,7,1,1,1,0,0,0,0,0,2,12,5,7,3,1,1,0,1,0,1 -050,01,099,Alabama,Monroe County,12,2,1156,600,556,299,287,269,242,3,4,5,4,0,0,24,19,321,305,289,257,7,6,6,7,1,0,580,536,283,274,265,238,3,3,5,4,0,0,24,17,305,290,285,252,7,4,6,7,1,0,20,20,16,13,4,4,0,1,0,0,0,0,0,2,16,15,4,5,0,2,0,0,0,0 -050,01,099,Alabama,Monroe County,12,3,1337,695,642,378,333,289,282,3,6,5,3,1,0,19,18,396,348,302,297,7,11,7,4,2,0,676,627,366,321,285,280,3,5,4,3,0,0,18,18,383,336,298,295,7,10,5,4,1,0,19,15,12,12,4,2,0,1,1,0,1,0,1,0,13,12,4,2,0,1,2,0,1,0 -050,01,099,Alabama,Monroe County,12,4,1321,679,642,341,336,306,277,9,5,4,4,0,0,19,20,358,354,319,290,16,11,4,8,1,0,661,624,326,323,305,274,8,5,4,3,0,0,18,19,342,340,318,287,14,10,4,7,1,0,18,18,15,13,1,3,1,0,0,1,0,0,1,1,16,14,1,3,2,1,0,1,0,0 -050,01,099,Alabama,Monroe County,12,5,1212,620,592,307,296,281,269,11,8,4,2,0,0,17,17,320,310,292,278,19,15,5,5,1,1,611,574,302,283,279,267,10,7,3,2,0,0,17,15,315,295,290,275,18,13,4,5,1,1,9,18,5,13,2,2,1,1,1,0,0,0,0,2,5,15,2,3,1,2,1,0,0,0 -050,01,099,Alabama,Monroe County,12,6,1248,615,633,322,281,274,317,6,11,1,4,3,1,9,19,330,298,277,328,10,17,4,8,3,2,607,624,318,274,272,316,6,11,1,4,1,1,9,18,326,290,275,327,10,16,4,8,1,2,8,9,4,7,2,1,0,0,0,0,2,0,0,1,4,8,2,1,0,1,0,0,2,0 -050,01,099,Alabama,Monroe County,12,7,1000,452,548,268,267,167,269,5,3,5,2,2,0,5,7,273,274,168,272,9,7,5,2,2,0,434,539,252,260,166,267,5,3,5,2,1,0,5,7,257,267,167,270,9,7,5,2,1,0,18,9,16,7,1,2,0,0,0,0,1,0,0,0,16,7,1,2,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,12,8,1096,497,599,291,316,191,258,5,8,3,6,0,0,7,11,297,327,193,260,9,16,4,7,1,0,488,590,285,309,190,258,5,7,3,6,0,0,5,10,289,319,191,259,8,15,4,7,1,0,9,9,6,7,1,0,0,1,0,0,0,0,2,1,8,8,2,1,1,1,0,0,0,0 -050,01,099,Alabama,Monroe County,12,9,1155,522,633,276,327,232,295,9,4,3,4,0,0,2,3,278,330,233,295,10,7,3,4,0,0,512,619,267,314,232,294,8,4,3,4,0,0,2,3,269,317,233,294,9,7,3,4,0,0,10,14,9,13,0,1,1,0,0,0,0,0,0,0,9,13,0,1,1,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,10,1330,625,705,378,361,232,323,9,15,2,2,0,1,4,3,382,364,234,325,10,15,3,3,0,1,612,700,367,357,231,322,9,15,2,2,0,1,3,3,370,360,232,324,10,15,3,3,0,1,13,5,11,4,1,1,0,0,0,0,0,0,1,0,12,4,2,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,11,1349,615,734,366,388,227,330,13,10,3,4,0,0,6,2,369,390,230,330,19,12,3,4,0,0,606,727,358,384,226,329,13,10,3,4,0,0,6,0,361,384,229,329,19,10,3,4,0,0,9,7,8,4,1,1,0,0,0,0,0,0,0,2,8,6,1,1,0,2,0,0,0,0 -050,01,099,Alabama,Monroe County,12,12,1520,729,791,437,447,261,321,15,6,4,2,0,0,12,15,449,460,264,325,23,19,5,2,0,0,725,784,435,442,259,319,15,6,4,2,0,0,12,15,447,455,262,323,23,19,5,2,0,0,4,7,2,5,2,2,0,0,0,0,0,0,0,0,2,5,2,2,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,13,1571,745,826,445,469,278,332,12,13,3,1,0,0,7,11,451,476,279,337,19,24,3,1,0,0,736,819,437,466,277,328,12,13,3,1,0,0,7,11,443,473,278,333,19,24,3,1,0,0,9,7,8,3,1,4,0,0,0,0,0,0,0,0,8,3,1,4,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,14,1386,630,756,380,418,239,329,5,6,3,1,0,0,3,2,383,420,240,330,7,7,3,1,0,0,627,748,377,413,239,326,5,6,3,1,0,0,3,2,380,415,240,327,7,7,3,1,0,0,3,8,3,5,0,3,0,0,0,0,0,0,0,0,3,5,0,3,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,15,1070,518,552,347,375,157,168,8,7,1,2,0,0,5,0,350,375,159,168,13,7,1,2,0,0,514,548,345,371,155,168,8,7,1,2,0,0,5,0,348,371,157,168,13,7,1,2,0,0,4,4,2,4,2,0,0,0,0,0,0,0,0,0,2,4,2,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,16,832,358,474,252,303,92,158,8,6,1,0,0,0,5,7,257,310,92,158,13,13,1,0,0,0,358,468,252,298,92,157,8,6,1,0,0,0,5,7,257,305,92,157,13,13,1,0,0,0,0,6,0,5,0,1,0,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,17,501,203,298,139,196,55,92,3,4,0,0,0,0,6,6,145,201,56,95,8,9,1,0,0,0,202,292,138,190,55,92,3,4,0,0,0,0,6,6,144,195,56,95,8,9,1,0,0,0,1,6,1,6,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,12,18,557,176,381,123,237,49,132,1,4,0,5,0,0,3,3,125,240,50,132,2,7,2,5,0,0,173,376,120,234,49,130,1,4,0,5,0,0,3,3,122,237,50,130,2,7,2,5,0,0,3,5,3,3,0,2,0,0,0,0,0,0,0,0,3,3,0,2,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,0,20459,9700,10759,5502,5777,3839,4610,130,132,47,43,6,2,176,195,5661,5951,3930,4709,205,219,72,71,12,8,9528,10591,5375,5660,3812,4585,125,121,45,42,2,2,169,181,5528,5822,3899,4677,197,201,69,67,7,8,172,168,127,117,27,25,5,11,2,1,4,0,7,14,133,129,31,32,8,18,3,4,5,0 -050,01,099,Alabama,Monroe County,13,1,1011,538,473,243,228,269,210,5,8,2,0,0,0,19,27,262,254,283,231,7,14,6,3,1,0,520,465,231,221,264,210,4,7,2,0,0,0,19,27,250,247,278,231,6,13,6,3,1,0,18,8,12,7,5,0,1,1,0,0,0,0,0,0,12,7,5,0,1,1,0,0,0,0 -050,01,099,Alabama,Monroe County,13,2,1143,585,558,305,277,251,252,5,6,2,2,0,0,22,21,326,295,268,266,8,13,4,3,1,2,560,533,285,263,248,251,5,2,2,2,0,0,20,15,305,275,264,262,7,6,4,3,0,2,25,25,20,14,3,1,0,4,0,0,0,0,2,6,21,20,4,4,1,7,0,0,1,0 -050,01,099,Alabama,Monroe County,13,3,1258,658,600,340,299,292,283,3,5,4,2,1,0,18,11,356,310,303,291,9,7,7,3,1,0,634,591,324,292,287,281,3,5,3,2,0,0,17,11,339,303,297,289,9,7,6,3,0,0,24,9,16,7,5,2,0,0,1,0,1,0,1,0,17,7,6,2,0,0,1,0,1,0 -050,01,099,Alabama,Monroe County,13,4,1268,654,614,330,335,295,244,6,7,7,2,0,0,16,26,344,360,306,262,11,13,9,4,0,1,641,596,321,323,293,241,4,5,7,1,0,0,16,26,335,348,304,259,9,11,9,3,0,1,13,18,9,12,2,3,2,2,0,1,0,0,0,0,9,12,2,3,2,2,0,1,0,0 -050,01,099,Alabama,Monroe County,13,5,1264,627,637,319,311,273,295,10,9,5,3,0,0,20,19,334,329,286,308,17,16,9,4,1,0,619,620,314,302,273,292,9,8,4,3,0,0,19,15,328,316,286,301,15,14,8,4,1,0,8,17,5,9,0,3,1,1,1,0,0,0,1,4,6,13,0,7,2,2,1,0,0,0 -050,01,099,Alabama,Monroe County,13,6,1226,601,625,306,296,275,305,4,6,2,2,3,1,11,15,315,310,282,311,8,9,3,7,4,3,594,614,304,287,272,304,4,6,2,2,1,1,11,14,313,300,279,310,8,9,3,6,2,3,7,11,2,9,3,1,0,0,0,0,2,0,0,1,2,10,3,1,0,0,0,1,2,0 -050,01,099,Alabama,Monroe County,13,7,995,480,515,277,239,186,258,7,5,3,3,2,0,5,10,282,246,188,260,9,11,4,7,2,1,470,512,269,238,185,256,7,5,3,3,1,0,5,10,274,245,187,258,9,11,4,7,1,1,10,3,8,1,1,2,0,0,0,0,1,0,0,0,8,1,1,2,0,0,0,0,1,0 -050,01,099,Alabama,Monroe County,13,8,1076,486,590,286,309,188,257,3,8,1,4,0,0,8,12,293,321,191,259,6,14,4,8,1,0,475,582,277,303,188,257,3,7,1,4,0,0,6,11,282,314,190,259,5,12,3,8,1,0,11,8,9,6,0,0,0,1,0,0,0,0,2,1,11,7,1,0,1,2,1,0,0,0 -050,01,099,Alabama,Monroe County,13,9,1130,501,629,267,312,214,302,11,5,5,8,0,0,4,2,271,314,215,302,13,7,6,8,0,0,491,617,259,303,213,301,10,3,5,8,0,0,4,2,263,305,214,301,12,5,6,8,0,0,10,12,8,9,1,1,1,2,0,0,0,0,0,0,8,9,1,1,1,2,0,0,0,0 -050,01,099,Alabama,Monroe County,13,10,1300,594,706,365,361,214,322,9,15,2,2,0,1,4,5,369,366,215,322,12,20,2,2,0,1,585,696,358,352,213,321,9,15,2,2,0,1,3,5,361,357,213,321,12,20,2,2,0,1,9,10,7,9,1,1,0,0,0,0,0,0,1,0,8,9,2,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,11,1278,583,695,342,371,222,307,10,10,3,4,0,0,6,3,347,372,224,308,15,12,3,6,0,0,575,690,335,369,221,306,10,10,3,4,0,0,6,1,340,370,223,307,15,10,3,4,0,0,8,5,7,2,1,1,0,0,0,0,0,0,0,2,7,2,1,1,0,2,0,2,0,0 -050,01,099,Alabama,Monroe County,13,12,1501,743,758,443,428,271,313,16,6,3,0,0,0,10,11,453,436,275,318,22,14,3,2,0,0,735,749,437,420,269,312,16,6,3,0,0,0,10,11,447,428,273,317,22,14,3,2,0,0,8,9,6,8,2,1,0,0,0,0,0,0,0,0,6,8,2,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,13,1561,734,827,434,457,272,343,14,10,3,3,0,0,11,14,445,468,272,348,25,20,3,5,0,0,726,820,427,455,271,338,14,10,3,3,0,0,11,14,438,466,271,343,25,20,3,5,0,0,8,7,7,2,1,5,0,0,0,0,0,0,0,0,7,2,1,5,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,14,1427,632,795,367,431,253,352,6,9,3,0,0,0,3,3,370,434,253,352,7,12,5,0,0,0,627,788,362,427,253,349,6,9,3,0,0,0,3,3,365,430,253,349,7,12,5,0,0,0,5,7,5,4,0,3,0,0,0,0,0,0,0,0,5,4,0,3,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,15,1113,533,580,359,378,161,191,7,8,1,3,0,0,5,0,363,378,163,191,10,8,2,3,0,0,529,575,357,373,159,191,7,8,1,3,0,0,5,0,361,373,161,191,10,8,2,3,0,0,4,5,2,5,2,0,0,0,0,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,16,854,382,472,271,311,98,151,8,6,1,0,0,0,4,4,274,314,99,152,12,10,1,0,0,0,382,467,271,307,98,150,8,6,1,0,0,0,4,4,274,310,99,151,12,10,1,0,0,0,0,5,0,4,0,1,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,17,516,200,316,131,209,58,95,4,5,0,0,0,0,7,7,137,215,59,97,9,10,1,1,1,0,199,309,130,202,58,95,4,5,0,0,0,0,7,7,136,208,59,97,9,10,1,1,1,0,1,7,1,7,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,0,0,0,0,0 -050,01,099,Alabama,Monroe County,13,18,538,169,369,117,225,47,130,2,4,0,5,0,0,3,5,120,229,48,131,5,9,0,5,0,0,166,367,114,223,47,130,2,4,0,5,0,0,3,5,117,227,48,131,5,9,0,5,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,1,0,229363,109167,120196,46658,48048,58315,67690,414,360,2408,2527,162,114,1210,1457,47578,49129,59068,68656,810,852,2790,2969,227,207,104447,116602,42970,45256,57786,67257,268,256,2342,2481,42,44,1039,1308,43782,46227,58413,68116,609,702,2668,2876,96,118,4720,3594,3688,2792,529,433,146,104,66,46,120,70,171,149,3796,2902,655,540,201,150,122,93,131,89 -050,01,101,Alabama,Montgomery County,1,1,15872,8144,7728,2656,2475,4994,4753,47,44,207,192,17,22,223,242,2847,2683,5156,4930,85,73,275,274,28,30,7525,7152,2173,2023,4927,4698,20,22,203,185,2,7,200,217,2347,2210,5072,4854,53,46,262,260,11,13,619,576,483,452,67,55,27,22,4,7,15,15,23,25,500,473,84,76,32,27,13,14,17,17 -050,01,101,Alabama,Montgomery County,1,2,15413,7815,7598,2567,2492,4832,4677,31,32,203,217,10,8,172,172,2702,2628,4951,4801,69,72,265,269,17,17,7413,7168,2261,2161,4783,4626,16,18,201,211,1,1,151,151,2380,2284,4886,4734,47,49,258,257,7,10,402,430,306,331,49,51,15,14,2,6,9,7,21,21,322,344,65,67,22,23,7,12,10,7 -050,01,101,Alabama,Montgomery County,1,3,15424,7772,7652,2484,2331,4904,4949,24,20,204,180,7,4,149,168,2596,2458,5002,5076,64,60,258,229,18,19,7504,7427,2290,2155,4870,4927,15,11,202,178,2,1,125,155,2386,2273,4952,5044,45,44,247,224,11,14,268,225,194,176,34,22,9,9,2,2,5,3,24,13,210,185,50,32,19,16,11,5,7,5 -050,01,101,Alabama,Montgomery County,1,4,16751,8507,8244,2540,2460,5681,5481,27,24,140,138,12,8,107,133,2626,2567,5755,5577,49,52,172,174,19,19,8189,7970,2299,2260,5633,5443,19,15,137,135,2,2,99,115,2379,2352,5702,5526,41,39,165,167,8,11,318,274,241,200,48,38,8,9,3,3,10,6,8,18,247,215,53,51,8,13,7,7,11,8 -050,01,101,Alabama,Montgomery County,1,5,18836,9206,9630,3353,2839,5535,6542,43,28,110,83,39,17,126,121,3442,2927,5619,6631,84,62,145,121,44,25,8494,9214,2799,2509,5476,6501,21,19,94,79,12,5,92,101,2869,2581,5533,6575,54,48,117,111,15,10,712,416,554,330,59,41,22,9,16,4,27,12,34,20,573,346,86,56,30,14,28,10,29,15 -050,01,101,Alabama,Montgomery County,1,6,17272,8420,8852,3528,2966,4542,5542,58,28,171,200,25,17,96,99,3596,3035,4599,5610,86,50,210,246,32,20,7709,8433,2942,2631,4491,5490,36,19,156,194,7,9,77,90,2998,2694,4534,5553,59,39,188,233,14,11,711,419,586,335,51,52,22,9,15,6,18,8,19,9,598,341,65,57,27,11,22,13,18,9 -050,01,101,Alabama,Montgomery County,1,7,15481,7433,8048,3029,2734,4057,4904,30,24,243,271,15,10,59,105,3074,2810,4084,4959,51,70,270,310,15,17,6929,7696,2615,2450,4009,4873,21,13,233,263,4,2,47,95,2653,2520,4027,4922,38,54,255,298,4,8,504,352,414,284,48,31,9,11,10,8,11,8,12,10,421,290,57,37,13,16,15,12,11,9 -050,01,101,Alabama,Montgomery County,1,8,15191,7256,7935,3047,2775,3821,4771,21,23,294,273,15,5,58,88,3087,2836,3849,4821,53,59,309,303,19,16,6908,7668,2767,2570,3782,4735,10,16,291,270,6,3,52,74,2805,2620,3804,4777,38,51,306,292,10,11,348,267,280,205,39,36,11,7,3,3,9,2,6,14,282,216,45,44,15,8,3,11,9,5 -050,01,101,Alabama,Montgomery County,1,9,14343,6946,7397,3018,2783,3558,4270,29,28,272,253,8,8,61,55,3057,2812,3588,4307,62,55,292,270,13,12,6651,7242,2806,2665,3509,4246,19,21,267,252,2,5,48,53,2840,2692,3529,4282,46,48,284,268,5,9,295,155,212,118,49,24,10,7,5,1,6,3,13,2,217,120,59,25,16,7,8,2,8,3 -050,01,101,Alabama,Montgomery County,1,10,15752,7347,8405,3420,3455,3676,4673,24,28,187,188,6,8,34,53,3442,3493,3695,4696,45,57,195,202,7,14,7147,8277,3263,3359,3649,4651,19,27,186,187,1,5,29,48,3281,3394,3665,4671,37,53,194,201,2,10,200,128,157,96,27,22,5,1,1,1,5,3,5,5,161,99,30,25,8,4,1,1,5,4 -050,01,101,Alabama,Montgomery County,1,11,15813,7359,8454,3511,3656,3654,4568,22,31,124,133,3,1,45,65,3543,3695,3671,4606,52,82,134,144,5,5,7234,8327,3418,3553,3631,4554,19,29,123,131,1,0,42,60,3449,3588,3647,4590,47,76,131,142,2,3,125,127,93,103,23,14,3,2,1,2,2,1,3,5,94,107,24,16,5,6,3,2,3,2 -050,01,101,Alabama,Montgomery County,1,12,14143,6389,7754,3294,3683,2973,3846,17,17,82,156,3,4,20,48,3308,3715,2983,3870,31,53,84,163,5,6,6316,7677,3238,3635,2962,3824,15,16,80,155,2,2,19,45,3251,3664,2971,3845,29,52,82,162,4,4,73,77,56,48,11,22,2,1,2,1,1,2,1,3,57,51,12,25,2,1,2,1,1,2 -050,01,101,Alabama,Montgomery County,1,13,11651,5465,6186,3090,3391,2275,2652,15,16,66,95,0,1,19,31,3106,3414,2283,2666,27,37,67,102,1,2,5408,6136,3048,3353,2266,2644,13,15,64,94,0,1,17,29,3062,3375,2273,2656,24,36,65,101,1,1,57,50,42,38,9,8,2,1,2,1,0,0,2,2,44,39,10,10,3,1,2,1,0,1 -050,01,101,Alabama,Montgomery County,1,14,8433,3835,4598,2329,2685,1434,1824,11,8,50,66,0,0,11,15,2339,2693,1437,1836,17,18,54,67,0,2,3800,4563,2302,2657,1426,1821,11,7,50,65,0,0,11,13,2312,2665,1429,1831,17,16,54,65,0,0,35,35,27,28,8,3,0,1,0,1,0,0,0,2,27,28,8,5,0,2,0,2,0,2 -050,01,101,Alabama,Montgomery County,1,15,6335,2670,3665,1626,2145,999,1458,6,4,28,36,0,0,11,22,1631,2162,1006,1466,14,19,30,41,0,0,2647,3647,1609,2135,993,1451,6,3,28,36,0,0,11,22,1614,2152,1000,1459,14,18,30,41,0,0,23,18,17,10,6,7,0,1,0,0,0,0,0,0,17,10,6,7,0,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,1,16,5278,2167,3111,1428,1903,712,1159,6,2,12,29,2,0,7,18,1433,1913,714,1170,10,16,13,31,4,1,2154,3090,1417,1885,712,1156,6,2,12,29,0,0,7,18,1422,1895,714,1167,10,16,13,31,2,1,13,21,11,18,0,3,0,0,0,0,2,0,0,0,11,18,0,3,0,0,0,0,2,0 -050,01,101,Alabama,Montgomery County,1,17,3811,1387,2424,982,1595,387,802,3,0,9,15,0,1,6,11,987,1602,390,806,6,8,10,18,0,2,1377,2412,974,1585,386,800,2,0,9,15,0,1,6,11,979,1592,389,804,5,8,10,18,0,2,10,12,8,10,1,2,1,0,0,0,0,0,0,0,8,10,1,2,1,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,1,18,3564,1049,2515,756,1680,281,819,0,3,6,2,0,0,6,11,762,1686,286,828,5,9,7,5,0,0,1042,2503,749,1670,281,817,0,3,6,2,0,0,6,11,755,1676,286,826,5,9,7,5,0,0,7,12,7,10,0,2,0,0,0,0,0,0,0,0,7,10,0,2,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,2,0,229365,109169,120196,46662,48049,58314,67689,414,360,2408,2527,162,114,1209,1457,47581,49130,59067,68655,809,852,2790,2969,227,207,104451,116604,42974,45257,57787,67258,268,256,2342,2481,42,44,1038,1308,43785,46228,58414,68117,608,702,2668,2876,96,118,4718,3592,3688,2792,527,431,146,104,66,46,120,70,171,149,3796,2902,653,538,201,150,122,93,131,89 -050,01,101,Alabama,Montgomery County,2,1,15870,8144,7726,2657,2475,4993,4751,47,44,207,192,17,22,223,242,2848,2683,5155,4928,85,73,275,274,28,30,7526,7151,2174,2023,4927,4697,20,22,203,185,2,7,200,217,2348,2210,5072,4853,53,46,262,260,11,13,618,575,483,452,66,54,27,22,4,7,15,15,23,25,500,473,83,75,32,27,13,14,17,17 -050,01,101,Alabama,Montgomery County,2,2,15410,7815,7595,2567,2491,4832,4675,31,32,203,217,10,8,172,172,2702,2627,4951,4799,69,72,265,269,17,17,7413,7165,2261,2160,4783,4624,16,18,201,211,1,1,151,151,2380,2283,4886,4732,47,49,258,257,7,10,402,430,306,331,49,51,15,14,2,6,9,7,21,21,322,344,65,67,22,23,7,12,10,7 -050,01,101,Alabama,Montgomery County,2,3,15425,7772,7653,2484,2332,4904,4949,24,20,204,180,7,4,149,168,2596,2459,5002,5076,64,60,258,229,18,19,7504,7428,2290,2156,4870,4927,15,11,202,178,2,1,125,155,2386,2274,4952,5044,45,44,247,224,11,14,268,225,194,176,34,22,9,9,2,2,5,3,24,13,210,185,50,32,19,16,11,5,7,5 -050,01,101,Alabama,Montgomery County,2,4,16751,8509,8242,2542,2458,5681,5481,27,24,140,138,12,8,107,133,2628,2565,5755,5577,49,52,172,174,19,19,8191,7968,2301,2258,5633,5443,19,15,137,135,2,2,99,115,2381,2350,5702,5526,41,39,165,167,8,11,318,274,241,200,48,38,8,9,3,3,10,6,8,18,247,215,53,51,8,13,7,7,11,8 -050,01,101,Alabama,Montgomery County,2,5,18837,9206,9631,3353,2840,5535,6542,43,28,110,83,39,17,126,121,3442,2928,5619,6631,84,62,145,121,44,25,8495,9216,2799,2510,5477,6502,21,19,94,79,12,5,92,101,2869,2582,5534,6576,54,48,117,111,15,10,711,415,554,330,58,40,22,9,16,4,27,12,34,20,573,346,85,55,30,14,28,10,29,15 -050,01,101,Alabama,Montgomery County,2,6,17274,8421,8853,3529,2966,4542,5543,58,28,171,200,25,17,96,99,3597,3035,4599,5611,86,50,210,246,32,20,7710,8434,2943,2631,4491,5491,36,19,156,194,7,9,77,90,2999,2694,4534,5554,59,39,188,233,14,11,711,419,586,335,51,52,22,9,15,6,18,8,19,9,598,341,65,57,27,11,22,13,18,9 -050,01,101,Alabama,Montgomery County,2,7,15481,7433,8048,3029,2734,4057,4904,30,24,243,271,15,10,59,105,3074,2810,4084,4959,51,70,270,310,15,17,6929,7696,2615,2450,4009,4873,21,13,233,263,4,2,47,95,2653,2520,4027,4922,38,54,255,298,4,8,504,352,414,284,48,31,9,11,10,8,11,8,12,10,421,290,57,37,13,16,15,12,11,9 -050,01,101,Alabama,Montgomery County,2,8,15188,7254,7934,3046,2775,3820,4770,21,23,294,273,15,5,58,88,3086,2836,3848,4820,53,59,309,303,19,16,6906,7667,2766,2570,3781,4734,10,16,291,270,6,3,52,74,2804,2620,3803,4776,38,51,306,292,10,11,348,267,280,205,39,36,11,7,3,3,9,2,6,14,282,216,45,44,15,8,3,11,9,5 -050,01,101,Alabama,Montgomery County,2,9,14340,6945,7395,3017,2782,3558,4269,29,28,272,253,8,8,61,55,3056,2811,3588,4306,62,55,292,270,13,12,6650,7240,2805,2664,3509,4245,19,21,267,252,2,5,48,53,2839,2691,3529,4281,46,48,284,268,5,9,295,155,212,118,49,24,10,7,5,1,6,3,13,2,217,120,59,25,16,7,8,2,8,3 -050,01,101,Alabama,Montgomery County,2,10,15750,7345,8405,3419,3455,3676,4673,24,28,187,188,6,8,33,53,3440,3493,3695,4696,44,57,195,202,7,14,7145,8277,3262,3359,3649,4651,19,27,186,187,1,5,28,48,3279,3394,3665,4671,36,53,194,201,2,10,200,128,157,96,27,22,5,1,1,1,5,3,5,5,161,99,30,25,8,4,1,1,5,4 -050,01,101,Alabama,Montgomery County,2,11,15815,7360,8455,3512,3657,3654,4568,22,31,124,133,3,1,45,65,3544,3696,3671,4606,52,82,134,144,5,5,7235,8328,3419,3554,3631,4554,19,29,123,131,1,0,42,60,3450,3589,3647,4590,47,76,131,142,2,3,125,127,93,103,23,14,3,2,1,2,2,1,3,5,94,107,24,16,5,6,3,2,3,2 -050,01,101,Alabama,Montgomery County,2,12,14147,6391,7756,3295,3683,2974,3848,17,17,82,156,3,4,20,48,3309,3715,2984,3872,31,53,84,163,5,6,6318,7679,3239,3635,2963,3826,15,16,80,155,2,2,19,45,3252,3664,2972,3847,29,52,82,162,4,4,73,77,56,48,11,22,2,1,2,1,1,2,1,3,57,51,12,25,2,1,2,1,1,2 -050,01,101,Alabama,Montgomery County,2,13,11651,5465,6186,3090,3391,2275,2652,15,16,66,95,0,1,19,31,3106,3414,2283,2666,27,37,67,102,1,2,5408,6136,3048,3353,2266,2644,13,15,64,94,0,1,17,29,3062,3375,2273,2656,24,36,65,101,1,1,57,50,42,38,9,8,2,1,2,1,0,0,2,2,44,39,10,10,3,1,2,1,0,1 -050,01,101,Alabama,Montgomery County,2,14,8434,3834,4600,2329,2687,1433,1824,11,8,50,66,0,0,11,15,2339,2695,1436,1836,17,18,54,67,0,2,3799,4565,2302,2659,1425,1821,11,7,50,65,0,0,11,13,2312,2667,1428,1831,17,16,54,65,0,0,35,35,27,28,8,3,0,1,0,1,0,0,0,2,27,28,8,5,0,2,0,2,0,2 -050,01,101,Alabama,Montgomery County,2,15,6336,2671,3665,1627,2145,999,1458,6,4,28,36,0,0,11,22,1632,2162,1006,1466,14,19,30,41,0,0,2648,3647,1610,2135,993,1451,6,3,28,36,0,0,11,22,1615,2152,1000,1459,14,18,30,41,0,0,23,18,17,10,6,7,0,1,0,0,0,0,0,0,17,10,6,7,0,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,2,16,5279,2167,3112,1428,1903,712,1160,6,2,12,29,2,0,7,18,1433,1913,714,1171,10,16,13,31,4,1,2154,3091,1417,1885,712,1157,6,2,12,29,0,0,7,18,1422,1895,714,1168,10,16,13,31,2,1,13,21,11,18,0,3,0,0,0,0,2,0,0,0,11,18,0,3,0,0,0,0,2,0 -050,01,101,Alabama,Montgomery County,2,17,3813,1388,2425,982,1595,388,803,3,0,9,15,0,1,6,11,987,1602,391,807,6,8,10,18,0,2,1378,2413,974,1585,387,801,2,0,9,15,0,1,6,11,979,1592,390,805,5,8,10,18,0,2,10,12,8,10,1,2,1,0,0,0,0,0,0,0,8,10,1,2,1,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,2,18,3564,1049,2515,756,1680,281,819,0,3,6,2,0,0,6,11,762,1686,286,828,5,9,7,5,0,0,1042,2503,749,1670,281,817,0,3,6,2,0,0,6,11,755,1676,286,826,5,9,7,5,0,0,7,12,7,10,0,2,0,0,0,0,0,0,0,0,7,10,0,2,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,3,0,229498,109324,120174,46485,47842,58620,67851,423,357,2428,2536,155,115,1213,1473,47446,48944,59350,68776,868,906,2813,2998,230,217,104657,116605,42859,45075,58087,67421,274,253,2358,2490,39,49,1040,1317,43678,46061,58718,68260,626,725,2690,2904,92,125,4667,3569,3626,2767,533,430,149,104,70,46,116,66,173,156,3768,2883,632,516,242,181,123,94,138,92 -050,01,101,Alabama,Montgomery County,3,1,15734,8077,7657,2618,2441,4964,4724,44,42,213,190,16,20,222,240,2816,2643,5126,4906,80,77,282,257,22,27,7467,7094,2138,1995,4900,4673,20,22,209,183,2,7,198,214,2312,2177,5048,4842,46,47,270,241,7,11,610,563,480,446,64,51,24,20,4,7,14,13,24,26,504,466,78,64,34,30,12,16,15,16 -050,01,101,Alabama,Montgomery County,3,2,15338,7781,7557,2544,2468,4814,4658,31,32,204,215,10,7,178,177,2694,2611,4947,4793,65,69,253,265,16,16,7376,7125,2240,2134,4763,4608,16,18,201,209,0,1,156,155,2373,2263,4880,4727,40,48,247,252,4,5,405,432,304,334,51,50,15,14,3,6,10,6,22,22,321,348,67,66,25,21,6,13,12,11 -050,01,101,Alabama,Montgomery County,3,3,15432,7785,7647,2477,2326,4924,4947,24,21,203,181,6,4,151,168,2602,2458,5025,5062,65,60,246,230,15,16,7516,7413,2281,2144,4892,4923,15,12,200,178,2,1,126,155,2386,2267,4980,5033,45,43,236,224,5,11,269,234,196,182,32,24,9,9,3,3,4,3,25,13,216,191,45,29,20,17,10,6,10,5 -050,01,101,Alabama,Montgomery County,3,4,16694,8493,8201,2533,2449,5672,5443,29,26,142,140,10,7,107,136,2621,2554,5738,5534,67,66,175,179,17,15,8188,7931,2305,2252,5625,5406,20,17,139,137,1,2,98,117,2385,2342,5687,5488,51,46,167,172,8,7,305,270,228,197,47,37,9,9,3,3,9,5,9,19,236,212,51,46,16,20,8,7,9,8 -050,01,101,Alabama,Montgomery County,3,5,18833,9220,9613,3309,2802,5601,6558,42,28,108,84,36,17,124,124,3403,2896,5672,6639,90,72,151,128,45,28,8547,9218,2785,2490,5545,6521,21,19,92,80,11,6,93,102,2856,2565,5599,6586,53,51,125,115,16,12,673,395,524,312,56,37,21,9,16,4,25,11,31,22,547,331,73,53,37,21,26,13,29,16 -050,01,101,Alabama,Montgomery County,3,6,17298,8422,8876,3504,2955,4564,5564,60,34,171,202,25,18,98,103,3573,3026,4621,5630,102,77,211,239,32,23,7718,8457,2929,2625,4510,5512,37,19,156,197,7,9,79,95,2983,2690,4555,5574,68,57,187,234,10,13,704,419,575,330,54,52,23,15,15,5,18,9,19,8,590,336,66,56,34,20,24,5,22,10 -050,01,101,Alabama,Montgomery County,3,7,15637,7545,8092,3056,2732,4134,4951,34,24,245,270,18,12,58,103,3096,2808,4161,5008,60,60,270,313,22,17,7026,7744,2636,2455,4082,4918,23,13,234,262,5,3,46,93,2666,2525,4103,4970,40,45,256,301,8,7,519,348,420,277,52,33,11,11,11,8,13,9,12,10,430,283,58,38,20,15,14,12,14,10 -050,01,101,Alabama,Montgomery County,3,8,15110,7225,7885,3006,2730,3834,4769,22,19,290,274,14,6,59,87,3049,2791,3857,4815,53,66,313,307,21,12,6893,7620,2741,2526,3795,4733,10,14,288,271,6,4,53,72,2779,2575,3818,4770,36,54,310,299,12,7,332,265,265,204,39,36,12,5,2,3,8,2,6,15,270,216,39,45,17,12,3,8,9,5 -050,01,101,Alabama,Montgomery County,3,9,14366,6956,7410,3014,2785,3568,4279,30,27,280,254,8,7,56,58,3053,2826,3592,4305,68,59,298,274,14,16,6661,7251,2803,2663,3517,4256,19,20,275,253,2,4,45,55,2833,2702,3533,4281,49,50,292,273,7,12,295,159,211,122,51,23,11,7,5,1,6,3,11,3,220,124,59,24,19,9,6,1,7,4 -050,01,101,Alabama,Montgomery County,3,10,15690,7327,8363,3386,3412,3687,4672,26,27,186,193,6,8,36,51,3414,3444,3703,4695,47,60,197,214,10,14,7126,8236,3231,3315,3660,4650,20,26,184,192,1,6,30,47,3253,3345,3672,4671,38,57,194,210,5,12,201,127,155,97,27,22,6,1,2,1,5,2,6,4,161,99,31,24,9,3,3,4,5,2 -050,01,101,Alabama,Montgomery County,3,11,15805,7355,8450,3492,3654,3668,4568,23,27,126,132,2,3,44,66,3523,3700,3684,4595,52,69,141,155,7,10,7223,8323,3394,3553,3643,4552,20,27,126,130,1,1,39,60,3422,3594,3656,4577,46,65,138,151,5,8,132,127,98,101,25,16,3,0,0,2,1,2,5,6,101,106,28,18,6,4,3,4,2,2 -050,01,101,Alabama,Montgomery County,3,12,14278,6453,7825,3312,3689,3019,3913,17,17,83,154,2,4,20,48,3325,3721,3027,3933,32,53,87,164,3,8,6379,7747,3256,3640,3008,3891,15,16,80,153,1,3,19,44,3268,3668,3015,3910,30,49,84,162,2,7,74,78,56,49,11,22,2,1,3,1,1,1,1,4,57,53,12,23,2,4,3,2,1,1 -050,01,101,Alabama,Montgomery County,3,13,11779,5526,6253,3100,3403,2324,2705,13,16,70,95,0,1,19,33,3114,3425,2332,2720,27,40,78,102,2,4,5469,6199,3059,3362,2315,2696,11,15,67,94,0,1,17,31,3072,3383,2322,2709,25,39,73,101,1,3,57,54,41,41,9,9,2,1,3,1,0,0,2,2,42,42,10,11,2,1,5,1,1,1 -050,01,101,Alabama,Montgomery County,3,14,8458,3846,4612,2330,2689,1445,1834,11,7,49,67,0,0,11,15,2337,2700,1451,1839,19,16,50,72,2,2,3810,4577,2302,2662,1437,1830,11,6,49,66,0,0,11,13,2309,2672,1443,1834,19,13,50,70,2,1,36,35,28,27,8,4,0,1,0,1,0,0,0,2,28,28,8,5,0,3,0,2,0,1 -050,01,101,Alabama,Montgomery County,3,15,6357,2694,3663,1639,2140,1007,1458,8,5,30,37,0,0,10,23,1647,2154,1010,1470,15,25,32,40,0,1,2670,3645,1621,2129,1001,1452,8,4,30,37,0,0,10,23,1629,2143,1004,1464,15,24,32,40,0,1,24,18,18,11,6,6,0,1,0,0,0,0,0,0,18,11,6,6,0,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,3,16,5273,2155,3118,1411,1896,715,1172,6,2,13,30,2,0,8,18,1416,1902,718,1182,13,14,14,36,2,4,2142,3098,1400,1880,715,1168,6,2,13,30,0,0,8,18,1405,1886,718,1178,13,14,14,36,0,4,13,20,11,16,0,4,0,0,0,0,2,0,0,0,11,16,0,4,0,0,0,0,2,0 -050,01,101,Alabama,Montgomery County,3,17,3828,1398,2430,989,1590,391,812,3,0,9,15,0,1,6,12,994,1596,393,820,8,10,9,18,0,2,1388,2418,981,1580,390,810,2,0,9,15,0,1,6,12,986,1586,392,818,7,10,9,18,0,2,10,12,8,10,1,2,1,0,0,0,0,0,0,0,8,10,1,2,1,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,3,18,3588,1066,2522,765,1681,289,824,0,3,6,3,0,0,6,11,769,1689,293,830,5,13,6,5,0,2,1058,2509,757,1670,289,822,0,3,6,3,0,0,6,11,761,1678,293,828,5,13,6,5,0,2,8,13,8,11,0,2,0,0,0,0,0,0,0,0,8,11,0,2,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,4,0,229218,108907,120311,45557,47037,59042,68711,407,351,2511,2593,145,107,1245,1512,46549,48209,59792,69655,852,909,2906,3066,213,196,104551,116834,42195,44354,58530,68274,254,240,2444,2548,40,48,1088,1370,43061,45414,59194,69143,617,725,2788,2977,89,116,4356,3477,3362,2683,512,437,153,111,67,45,105,59,157,142,3488,2795,598,512,235,184,118,89,124,80 -050,01,101,Alabama,Montgomery County,4,1,15660,8013,7647,2583,2458,4939,4688,37,38,220,201,15,17,219,245,2774,2670,5101,4876,75,79,280,271,21,24,7384,7064,2072,1987,4880,4637,14,20,216,192,4,8,198,220,2245,2179,5032,4809,42,53,271,251,9,12,629,583,511,471,59,51,23,18,4,9,11,9,21,25,529,491,69,67,33,26,9,20,12,12 -050,01,101,Alabama,Montgomery County,4,2,15051,7635,7416,2438,2373,4765,4617,31,30,201,202,15,10,185,184,2596,2527,4901,4752,60,70,259,248,22,21,7214,6975,2124,2036,4709,4562,17,14,196,197,3,2,165,164,2265,2176,4833,4686,41,42,245,238,7,11,421,441,314,337,56,55,14,16,5,5,12,8,20,20,331,351,68,66,19,28,14,10,15,10 -050,01,101,Alabama,Montgomery County,4,3,15381,7783,7598,2422,2277,4945,4933,24,25,214,190,8,3,170,170,2559,2413,5060,5048,71,62,264,245,16,13,7505,7328,2218,2067,4914,4902,14,15,212,185,3,1,144,158,2337,2194,5015,5012,47,47,253,236,7,9,278,270,204,210,31,31,10,10,2,5,5,2,26,12,222,219,45,36,24,15,11,9,9,4 -050,01,101,Alabama,Montgomery County,4,4,16387,8320,8067,2488,2382,5542,5359,23,19,143,150,7,5,117,152,2586,2505,5619,5465,60,63,178,195,10,14,8060,7837,2295,2212,5500,5329,17,12,141,147,1,1,106,136,2383,2324,5569,5426,49,46,172,188,3,7,260,230,193,170,42,30,6,7,2,3,6,4,11,16,203,181,50,39,11,17,6,7,7,7 -050,01,101,Alabama,Montgomery County,4,5,19019,9271,9748,3171,2759,5801,6738,46,24,123,90,25,13,105,124,3246,2858,5871,6811,83,62,159,134,28,24,8738,9411,2770,2502,5739,6694,24,15,109,87,7,4,89,109,2833,2588,5799,6757,53,44,140,127,9,12,533,337,401,257,62,44,22,9,14,3,18,9,16,15,413,270,72,54,30,18,19,7,19,12 -050,01,101,Alabama,Montgomery County,4,6,17173,8221,8952,3293,2938,4579,5655,52,39,173,193,26,20,98,107,3366,3016,4632,5721,90,82,215,235,32,25,7631,8586,2829,2664,4525,5608,28,19,161,190,10,9,78,96,2885,2733,4565,5668,56,57,195,230,15,13,590,366,464,274,54,47,24,20,12,3,16,11,20,11,481,283,67,53,34,25,20,5,17,12 -050,01,101,Alabama,Montgomery County,4,7,16002,7806,8196,3154,2669,4290,5142,38,21,238,253,21,11,65,100,3203,2746,4321,5198,68,63,263,294,24,15,7303,7864,2747,2395,4252,5115,23,13,226,247,5,4,50,90,2783,2463,4275,5166,43,47,248,283,7,8,503,332,407,274,38,27,15,8,12,6,16,7,15,10,420,283,46,32,25,16,15,11,17,7 -050,01,101,Alabama,Montgomery County,4,8,14544,6871,7673,2768,2536,3718,4722,22,26,285,297,7,4,71,88,2826,2599,3743,4768,59,68,316,332,18,10,6567,7411,2524,2337,3685,4684,10,16,282,294,2,3,64,77,2576,2390,3708,4726,41,52,311,326,11,8,304,262,244,199,33,38,12,10,3,3,5,1,7,11,250,209,35,42,18,16,5,6,7,2 -050,01,101,Alabama,Montgomery County,4,9,14514,6993,7521,2974,2792,3632,4364,21,24,307,263,8,6,51,72,3010,2842,3652,4400,57,66,322,286,12,11,6722,7353,2776,2662,3587,4343,13,18,303,261,2,3,41,66,2805,2707,3603,4377,43,56,315,284,2,7,271,168,198,130,45,21,8,6,4,2,6,3,10,6,205,135,49,23,14,10,7,2,10,4 -050,01,101,Alabama,Montgomery County,4,10,15114,7065,8049,3178,3179,3633,4596,29,28,184,198,6,6,35,42,3201,3206,3644,4614,53,52,195,215,11,13,6876,7923,3038,3087,3604,4571,19,25,181,197,1,6,33,37,3059,3110,3614,4587,41,46,192,213,6,11,189,126,140,92,29,25,10,3,3,1,5,0,2,5,142,96,30,27,12,6,3,2,5,2 -050,01,101,Alabama,Montgomery County,4,11,15569,7217,8352,3413,3598,3597,4534,23,24,143,132,2,7,39,57,3441,3639,3610,4560,48,62,153,149,6,13,7075,8232,3309,3507,3570,4515,19,24,143,130,1,3,33,53,3333,3545,3580,4539,40,62,152,145,5,7,142,120,104,91,27,19,4,0,0,2,1,4,6,4,108,94,30,21,8,0,1,4,1,6 -050,01,101,Alabama,Montgomery County,4,12,14565,6582,7983,3320,3652,3131,4111,16,20,86,149,2,3,27,48,3339,3684,3141,4133,34,52,96,161,4,4,6502,7903,3257,3595,3120,4093,15,19,83,148,0,3,27,45,3276,3624,3130,4114,33,50,93,159,2,4,80,80,63,57,11,18,1,1,3,1,2,0,0,3,63,60,11,19,1,2,3,2,2,0 -050,01,101,Alabama,Montgomery County,4,13,12378,5757,6621,3135,3481,2509,2979,15,14,78,109,1,1,19,37,3148,3503,2518,2997,30,42,82,117,3,2,5701,6555,3098,3432,2498,2966,13,13,75,109,1,0,16,35,3109,3453,2506,2983,26,40,77,116,2,1,56,66,37,49,11,13,2,1,3,0,0,1,3,2,39,50,12,14,4,2,5,1,1,1 -050,01,101,Alabama,Montgomery County,4,14,8589,3931,4658,2366,2661,1490,1901,11,5,50,74,0,0,14,17,2377,2674,1495,1908,22,18,54,78,1,2,3889,4623,2332,2634,1483,1897,10,4,50,72,0,0,14,16,2343,2646,1488,1904,21,16,54,76,1,2,42,35,34,27,7,4,1,1,0,2,0,0,0,1,34,28,7,4,1,2,0,2,0,0 -050,01,101,Alabama,Montgomery County,4,15,6428,2750,3678,1675,2137,1021,1471,12,8,33,38,0,0,9,24,1684,2154,1025,1481,19,27,33,42,1,2,2727,3656,1657,2123,1016,1465,12,7,33,38,0,0,9,23,1666,2140,1020,1474,19,26,33,41,1,1,23,22,18,14,5,6,0,1,0,0,0,0,0,1,18,14,5,7,0,1,0,1,0,1 -050,01,101,Alabama,Montgomery County,4,16,5337,2175,3162,1393,1895,750,1216,3,3,18,29,2,0,9,19,1399,1907,754,1225,10,17,20,33,3,0,2161,3145,1382,1881,749,1213,3,3,18,29,0,0,9,19,1388,1893,753,1222,10,17,20,33,1,0,14,17,11,14,1,3,0,0,0,0,2,0,0,0,11,14,1,3,0,0,0,0,2,0 -050,01,101,Alabama,Montgomery County,4,17,3909,1450,2459,1026,1580,405,843,4,0,9,21,0,1,6,14,1031,1589,406,848,9,10,10,25,1,2,1439,2447,1017,1570,404,841,3,0,9,21,0,1,6,14,1022,1579,405,846,8,10,10,25,1,2,11,12,9,10,1,2,1,0,0,0,0,0,0,0,9,10,1,2,1,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,4,18,3598,1067,2531,760,1670,295,842,0,3,6,4,0,0,6,12,763,1677,299,850,4,14,7,6,0,1,1057,2521,750,1663,295,839,0,3,6,4,0,0,6,12,753,1670,299,847,4,14,7,6,0,1,10,10,10,7,0,3,0,0,0,0,0,0,0,0,10,7,0,3,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,5,0,228923,108692,120231,44853,46296,59311,69131,386,372,2694,2795,137,107,1311,1530,45892,47463,60119,70090,834,922,3108,3267,227,199,104468,116792,41605,43666,58786,68685,237,241,2637,2756,40,52,1163,1392,42529,44720,59509,69575,605,721,3011,3189,99,123,4224,3439,3248,2630,525,446,149,131,57,39,97,55,148,138,3363,2743,610,515,229,201,97,78,128,76 -050,01,101,Alabama,Montgomery County,5,1,15495,7911,7584,2538,2406,4842,4666,24,32,243,238,15,13,249,229,2754,2606,5030,4839,61,70,315,297,26,25,7299,6996,2027,1920,4790,4617,8,16,238,232,5,7,231,204,2228,2098,4967,4779,38,43,306,283,12,14,612,588,511,486,52,49,16,16,5,6,10,6,18,25,526,508,63,60,23,27,9,14,14,11 -050,01,101,Alabama,Montgomery County,5,2,15110,7710,7400,2455,2345,4821,4584,32,37,189,216,14,11,199,207,2623,2522,4971,4740,69,73,245,275,25,17,7254,6935,2114,1985,4757,4530,16,17,185,210,2,5,180,188,2271,2147,4893,4673,44,46,235,264,9,10,456,465,341,360,64,54,16,20,4,6,12,6,19,19,352,375,78,67,25,27,10,11,16,7 -050,01,101,Alabama,Montgomery County,5,3,15207,7674,7533,2339,2205,4900,4898,24,27,242,212,7,6,162,185,2466,2361,5009,5029,64,73,289,269,19,14,7382,7240,2127,1989,4859,4860,15,16,240,207,2,1,139,167,2237,2128,4957,4979,43,53,282,260,8,6,292,293,212,216,41,38,9,11,2,5,5,5,23,18,229,233,52,50,21,20,7,9,11,8 -050,01,101,Alabama,Montgomery County,5,4,15837,8124,7713,2425,2233,5408,5176,26,19,141,149,7,5,117,131,2521,2337,5486,5265,66,55,174,185,14,13,7870,7532,2232,2098,5373,5148,17,15,140,146,2,1,106,124,2319,2195,5444,5235,48,47,170,180,6,9,254,181,193,135,35,28,9,4,1,3,5,4,11,7,202,142,42,30,18,8,4,5,8,4 -050,01,101,Alabama,Montgomery County,5,5,19071,9373,9698,3014,2698,6007,6752,52,23,154,99,21,10,125,116,3108,2784,6088,6823,95,64,198,136,28,20,8945,9414,2720,2486,5944,6706,16,17,146,98,8,4,111,103,2802,2562,6016,6771,53,50,186,132,13,11,428,284,294,212,63,46,36,6,8,1,13,6,14,13,306,222,72,52,42,14,12,4,15,9 -050,01,101,Alabama,Montgomery County,5,6,17058,8183,8875,3269,2868,4583,5608,41,55,181,213,27,21,82,110,3325,2945,4632,5672,70,93,218,256,32,25,7647,8512,2847,2622,4530,5560,22,15,170,210,10,8,68,97,2894,2689,4569,5617,43,48,201,249,14,12,536,363,422,246,53,48,19,40,11,3,17,13,14,13,431,256,63,55,27,45,17,7,18,13 -050,01,101,Alabama,Montgomery County,5,7,16197,7802,8395,3046,2711,4396,5282,29,24,241,266,18,9,72,103,3100,2788,4429,5340,62,62,275,311,25,13,7313,8071,2651,2448,4354,5250,20,17,229,260,4,4,55,92,2689,2515,4379,5303,42,49,257,303,8,7,489,324,395,263,42,32,9,7,12,6,14,5,17,11,411,273,50,37,20,13,18,8,17,6 -050,01,101,Alabama,Montgomery County,5,8,14297,6700,7597,2727,2471,3580,4702,26,22,302,302,9,4,56,96,2766,2537,3602,4753,47,69,327,337,16,15,6389,7322,2466,2256,3550,4674,18,8,300,299,3,2,52,83,2502,2313,3571,4717,37,48,324,330,9,9,311,275,261,215,30,28,8,14,2,3,6,2,4,13,264,224,31,36,10,21,3,7,7,6 -050,01,101,Alabama,Montgomery County,5,9,14667,7068,7599,2952,2745,3696,4472,19,23,331,279,7,7,63,73,2996,2793,3725,4505,54,64,353,306,12,12,6836,7439,2786,2625,3657,4447,13,17,328,279,1,4,51,67,2821,2671,3679,4479,42,54,348,303,3,7,232,160,166,120,39,25,6,6,3,0,6,3,12,6,175,122,46,26,12,10,5,3,9,5 -050,01,101,Alabama,Montgomery County,5,10,14612,6849,7763,3035,2957,3520,4515,30,26,209,223,5,6,50,36,3073,2982,3537,4533,64,46,223,235,10,11,6640,7640,2889,2862,3482,4492,21,24,204,222,0,6,44,34,2922,2885,3497,4509,52,43,217,233,4,10,209,123,146,95,38,23,9,2,5,1,5,0,6,2,151,97,40,24,12,3,6,2,6,1 -050,01,101,Alabama,Montgomery County,5,11,15353,7073,8280,3291,3487,3552,4550,26,29,162,145,2,9,40,60,3325,3525,3565,4576,51,65,173,165,10,15,6922,8152,3181,3390,3525,4529,19,28,162,144,1,5,34,56,3209,3424,3534,4555,41,62,171,162,6,11,151,128,110,97,27,21,7,1,0,1,1,4,6,4,116,101,31,21,10,3,2,3,4,4 -050,01,101,Alabama,Montgomery County,5,12,14766,6694,8072,3310,3618,3244,4221,14,23,92,151,2,4,32,55,3333,3651,3256,4248,37,60,99,168,5,7,6610,7988,3245,3557,3230,4201,13,23,90,149,1,4,31,54,3267,3589,3242,4228,35,59,97,166,4,7,84,84,65,61,14,20,1,0,2,2,1,0,1,1,66,62,14,20,2,1,2,2,1,0 -050,01,101,Alabama,Montgomery County,5,13,12567,5711,6856,2986,3440,2613,3245,13,13,79,120,1,1,19,37,3001,3463,2620,3264,28,41,81,127,1,4,5646,6785,2941,3389,2600,3230,11,12,77,120,1,0,16,34,2954,3410,2606,3247,23,37,79,127,1,2,65,71,45,51,13,15,2,1,2,0,0,1,3,3,47,53,14,17,5,4,2,0,0,2 -050,01,101,Alabama,Montgomery County,5,14,9183,4226,4957,2553,2842,1591,2008,14,6,56,79,0,0,12,22,2561,2858,1596,2016,24,23,59,82,0,4,4184,4920,2518,2815,1585,2003,13,4,56,77,0,0,12,21,2526,2830,1590,2011,23,20,59,80,0,4,42,37,35,27,6,5,1,2,0,2,0,0,0,1,35,28,6,5,1,3,0,2,0,0 -050,01,101,Alabama,Montgomery County,5,15,6580,2844,3736,1736,2160,1059,1496,9,7,30,49,0,0,10,24,1744,2175,1063,1508,17,23,32,56,1,0,2820,3711,1716,2143,1055,1491,9,6,30,49,0,0,10,22,1724,2157,1059,1502,17,21,32,55,1,0,24,25,20,17,4,5,0,1,0,0,0,0,0,2,20,18,4,6,0,2,0,1,0,0 -050,01,101,Alabama,Montgomery County,5,16,5314,2150,3164,1345,1882,767,1233,2,2,26,28,2,0,8,19,1352,1892,771,1242,9,16,26,31,2,2,2132,3149,1332,1870,764,1230,2,2,26,28,0,0,8,19,1339,1880,768,1239,9,16,26,31,0,2,18,15,13,12,3,3,0,0,0,0,2,0,0,0,13,12,3,3,0,0,0,0,2,0 -050,01,101,Alabama,Montgomery County,5,17,3920,1499,2421,1047,1529,430,857,5,1,9,20,0,0,8,14,1053,1539,433,864,11,12,11,23,0,0,1490,2407,1040,1518,429,854,4,1,9,20,0,0,8,14,1046,1528,432,861,10,12,11,23,0,0,9,14,7,11,1,3,1,0,0,0,0,0,0,0,7,11,1,3,1,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,5,18,3689,1101,2588,785,1699,302,866,0,3,7,6,0,1,7,13,791,1705,306,873,5,13,10,8,1,2,1089,2579,773,1693,302,863,0,3,7,6,0,1,7,13,779,1699,306,870,5,13,10,8,1,2,12,9,12,6,0,3,0,0,0,0,0,0,0,0,12,6,0,3,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,6,0,228261,108065,120196,43537,45312,59796,69832,393,381,2868,2976,131,99,1340,1596,44611,46526,60627,70866,857,938,3281,3475,208,207,104061,116765,40499,42694,59274,69382,247,244,2817,2938,39,47,1185,1460,41445,43813,60013,70327,627,735,3186,3395,93,125,4004,3431,3038,2618,522,450,146,137,51,38,92,52,155,136,3166,2713,614,539,230,203,95,80,115,82 -050,01,101,Alabama,Montgomery County,6,1,15432,7797,7635,2484,2433,4771,4648,21,29,242,265,14,7,265,253,2717,2651,4973,4846,64,67,317,336,25,18,7205,7014,1979,1922,4732,4591,11,10,238,258,6,6,239,227,2188,2119,4917,4771,42,37,306,322,14,13,592,621,505,511,39,57,10,19,4,7,8,1,26,26,529,532,56,75,22,30,11,14,11,5 -050,01,101,Alabama,Montgomery County,6,2,15171,7727,7444,2373,2287,4905,4651,38,42,207,233,14,13,190,218,2535,2474,5048,4814,78,83,259,289,21,27,7223,6943,2003,1900,4833,4601,17,18,201,227,1,4,168,193,2148,2068,4960,4746,45,48,249,278,6,13,504,501,370,387,72,50,21,24,6,6,13,9,22,25,387,406,88,68,33,35,10,11,15,14 -050,01,101,Alabama,Montgomery County,6,3,15075,7611,7464,2293,2172,4886,4826,28,30,251,245,8,7,145,184,2410,2322,4990,4961,59,70,295,302,16,18,7340,7138,2089,1931,4851,4778,15,18,250,243,1,1,134,167,2198,2070,4948,4899,42,49,292,294,6,11,271,326,204,241,35,48,13,12,1,2,7,6,11,17,212,252,42,62,17,21,3,8,10,7 -050,01,101,Alabama,Montgomery County,6,4,15614,7887,7727,2283,2163,5300,5249,22,16,142,156,8,4,132,139,2395,2272,5380,5346,66,52,179,193,14,11,7659,7560,2110,2033,5272,5228,16,12,141,153,3,0,117,134,2211,2138,5347,5323,51,45,171,189,7,6,228,167,173,130,28,21,6,4,1,3,5,4,15,5,184,134,33,23,15,7,8,4,7,5 -050,01,101,Alabama,Montgomery County,6,5,18733,9249,9484,2849,2565,6039,6650,51,30,171,116,15,8,124,115,2937,2649,6120,6728,90,69,210,157,22,13,8881,9235,2629,2387,5958,6603,16,20,166,116,4,2,108,107,2706,2465,6030,6674,47,54,202,155,8,6,368,249,220,178,81,47,35,10,5,0,11,6,16,8,231,184,90,54,43,15,8,2,14,7 -050,01,101,Alabama,Montgomery County,6,6,16975,8134,8841,3110,2724,4698,5748,33,52,176,181,26,16,91,120,3175,2807,4751,5821,67,96,216,227,34,26,7695,8510,2769,2496,4651,5707,22,18,165,177,12,7,76,105,2821,2571,4694,5769,46,54,198,219,17,12,439,331,341,228,47,41,11,34,11,4,14,9,15,15,354,236,57,52,21,42,18,8,17,14 -050,01,101,Alabama,Montgomery County,6,7,16089,7733,8356,2911,2609,4444,5316,32,18,252,294,14,11,80,108,2969,2688,4487,5378,68,57,284,341,21,19,7279,8057,2556,2371,4393,5283,25,16,243,288,3,5,59,94,2596,2440,4423,5336,48,48,269,330,6,8,454,299,355,238,51,33,7,2,9,6,11,6,21,14,373,248,64,42,20,9,15,11,15,11 -050,01,101,Alabama,Montgomery County,6,8,14061,6587,7474,2567,2418,3588,4635,21,23,347,299,12,6,52,93,2609,2486,3608,4684,45,65,367,335,17,17,6299,7221,2324,2221,3564,4609,12,9,345,296,4,2,50,84,2364,2283,3582,4654,36,48,365,328,9,8,288,253,243,197,24,26,9,14,2,3,8,4,2,9,245,203,26,30,9,17,2,7,8,9 -050,01,101,Alabama,Montgomery County,6,9,14705,7018,7687,2854,2682,3721,4598,23,20,351,309,7,6,62,72,2898,2731,3749,4635,58,58,373,337,12,13,6792,7534,2688,2570,3689,4570,12,15,347,308,2,4,54,67,2726,2617,3713,4605,44,49,364,334,4,9,226,153,166,112,32,28,11,5,4,1,5,2,8,5,172,114,36,30,14,9,9,3,8,4 -050,01,101,Alabama,Montgomery County,6,10,13979,6620,7359,2873,2713,3440,4363,24,25,224,220,5,4,54,34,2915,2734,3463,4381,59,47,240,231,8,9,6399,7237,2721,2617,3399,4343,13,20,219,219,0,4,47,34,2756,2638,3418,4361,42,42,235,230,3,9,221,122,152,96,41,20,11,5,5,1,5,0,7,0,159,96,45,20,17,5,5,1,5,0 -050,01,101,Alabama,Montgomery County,6,11,15388,7072,8316,3215,3414,3605,4627,29,35,179,173,3,10,41,57,3246,3452,3620,4652,55,71,194,192,7,16,6914,8183,3097,3318,3580,4603,22,31,179,173,1,6,35,52,3122,3352,3592,4627,45,64,193,190,5,12,158,133,118,96,25,24,7,4,0,0,2,4,6,5,124,100,28,25,10,7,1,2,2,4 -050,01,101,Alabama,Montgomery County,6,12,14792,6687,8105,3228,3507,3280,4344,25,26,115,157,2,4,37,67,3254,3551,3295,4377,53,69,124,178,3,6,6606,8010,3171,3433,3263,4327,24,26,113,155,1,4,34,65,3194,3475,3277,4359,50,69,121,175,2,6,81,95,57,74,17,17,1,0,2,2,1,0,3,2,60,76,18,18,3,0,3,3,1,0 -050,01,101,Alabama,Montgomery County,6,13,12811,5770,7041,2966,3401,2696,3468,15,10,74,123,1,2,18,37,2980,3420,2701,3491,29,37,78,132,2,5,5699,6962,2915,3345,2681,3450,14,9,73,122,1,1,15,35,2927,3363,2685,3472,26,35,76,130,2,4,71,79,51,56,15,18,1,1,1,1,0,1,3,2,53,57,16,19,3,2,2,2,0,1 -050,01,101,Alabama,Montgomery County,6,14,9588,4397,5191,2559,2926,1753,2135,13,11,59,93,0,0,13,26,2569,2947,1758,2144,22,33,62,97,2,2,4362,5155,2531,2900,1748,2130,11,9,59,91,0,0,13,25,2541,2920,1753,2139,20,30,62,95,2,2,35,36,28,26,5,5,2,2,0,2,0,0,0,1,28,27,5,5,2,3,0,2,0,0 -050,01,101,Alabama,Montgomery County,6,15,6903,3024,3879,1847,2225,1122,1569,8,7,35,54,0,0,12,24,1858,2238,1126,1579,16,23,37,60,0,3,2999,3853,1827,2205,1117,1566,8,6,35,54,0,0,12,22,1838,2218,1121,1575,16,22,37,58,0,2,25,26,20,20,5,3,0,1,0,0,0,0,0,2,20,20,5,4,0,1,0,2,0,1 -050,01,101,Alabama,Montgomery County,6,16,5342,2136,3206,1326,1911,770,1242,4,1,27,31,2,0,7,21,1333,1924,773,1254,10,15,27,35,2,0,2116,3193,1312,1902,766,1238,4,1,27,31,0,0,7,21,1319,1915,769,1250,10,15,27,35,0,0,20,13,14,9,4,4,0,0,0,0,2,0,0,0,14,9,4,4,0,0,0,0,2,0 -050,01,101,Alabama,Montgomery County,6,17,3904,1510,2394,1012,1484,476,875,6,3,7,19,0,0,9,13,1020,1493,477,880,13,12,8,23,1,2,1500,2377,1004,1472,475,870,5,3,7,19,0,0,9,13,1012,1481,476,875,12,12,8,23,1,2,10,17,8,12,1,5,1,0,0,0,0,0,0,0,8,12,1,5,1,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,6,18,3699,1106,2593,787,1678,302,888,0,3,9,8,0,1,8,15,791,1687,308,895,5,14,11,10,1,2,1093,2583,774,1671,302,885,0,3,9,8,0,1,8,15,778,1680,308,892,5,14,11,10,1,2,13,10,13,7,0,3,0,0,0,0,0,0,0,0,13,7,0,3,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,7,0,227647,107735,119912,42823,44412,60020,70192,360,381,3017,3165,129,102,1386,1660,43931,45695,60876,71235,820,978,3466,3700,212,192,103831,116430,39846,41775,59519,69711,228,260,2974,3127,41,48,1223,1509,40820,42935,60277,70672,607,786,3373,3609,94,118,3904,3482,2977,2637,501,481,132,121,43,38,88,54,163,151,3111,2760,599,563,213,192,93,91,118,74 -050,01,101,Alabama,Montgomery County,7,1,15392,7817,7575,2469,2407,4779,4636,13,26,257,232,10,6,289,268,2719,2639,5000,4837,57,65,344,309,25,16,7205,6946,1956,1898,4732,4571,9,8,250,229,7,4,251,236,2174,2104,4926,4754,37,35,323,295,17,9,612,629,513,509,47,65,4,18,7,3,3,2,38,32,545,535,74,83,20,30,21,14,8,7 -050,01,101,Alabama,Montgomery County,7,2,15154,7692,7462,2359,2214,4883,4669,39,46,196,281,20,17,195,235,2523,2415,5023,4843,74,87,252,347,33,25,7175,6948,1965,1816,4820,4615,20,21,194,273,3,7,173,216,2116,2003,4948,4778,48,53,242,334,7,12,517,514,394,398,63,54,19,25,2,8,17,10,22,19,407,412,75,65,26,34,10,13,26,13 -050,01,101,Alabama,Montgomery County,7,3,14876,7533,7343,2252,2095,4817,4765,30,33,271,275,8,5,155,170,2384,2234,4921,4883,64,75,321,334,14,19,7213,6967,2015,1819,4776,4712,11,18,268,271,2,0,141,147,2135,1938,4871,4817,41,49,313,322,7,9,320,376,237,276,41,53,19,15,3,4,6,5,14,23,249,296,50,66,23,26,8,12,7,10 -050,01,101,Alabama,Montgomery County,7,4,15190,7684,7506,2216,2102,5160,5070,20,21,152,161,10,5,126,147,2323,2224,5242,5168,58,56,190,210,13,13,7470,7333,2057,1965,5133,5054,16,15,151,160,3,1,110,138,2149,2079,5208,5150,47,47,182,203,6,9,214,173,159,137,27,16,4,6,1,1,7,4,16,9,174,145,34,18,11,9,8,7,7,4 -050,01,101,Alabama,Montgomery County,7,5,18262,9071,9191,2785,2472,5955,6429,29,28,173,138,12,8,117,116,2874,2564,6031,6504,66,68,210,178,17,11,8755,8962,2573,2314,5886,6381,11,22,172,137,3,2,110,106,2655,2396,5958,6451,45,56,208,176,7,5,316,229,212,158,69,48,18,6,1,1,9,6,7,10,219,168,73,53,21,12,2,2,10,6 -050,01,101,Alabama,Montgomery County,7,6,17108,8272,8836,3001,2600,4927,5896,38,30,183,177,26,15,97,118,3073,2681,4982,5969,76,70,221,226,32,22,7895,8562,2728,2403,4881,5854,19,18,178,175,11,5,78,107,2783,2476,4922,5919,46,52,211,220,15,11,377,274,273,197,46,42,19,12,5,2,15,10,19,11,290,205,60,50,30,18,10,6,17,11 -050,01,101,Alabama,Montgomery County,7,7,16013,7580,8433,2850,2628,4347,5365,30,28,243,285,15,13,95,114,2918,2711,4395,5434,71,68,286,330,22,17,7169,8112,2522,2384,4307,5323,25,16,233,280,3,8,79,101,2576,2457,4348,5384,55,48,272,322,6,12,411,321,328,244,40,42,5,12,10,5,12,5,16,13,342,254,47,50,16,20,14,8,16,5 -050,01,101,Alabama,Montgomery County,7,8,14176,6713,7463,2589,2338,3696,4681,19,26,357,316,10,7,42,95,2618,2409,3713,4733,37,78,377,355,16,14,6418,7227,2338,2161,3674,4656,8,13,355,313,4,2,39,82,2365,2222,3690,4698,23,59,374,345,8,5,295,236,251,177,22,25,11,13,2,3,6,5,3,13,253,187,23,35,14,19,3,10,8,9 -050,01,101,Alabama,Montgomery County,7,9,14474,6842,7632,2637,2507,3740,4686,15,16,376,342,6,5,68,76,2686,2560,3771,4726,53,57,401,366,10,9,6646,7464,2496,2385,3707,4656,10,14,373,337,1,4,59,68,2538,2433,3732,4691,40,52,398,359,4,7,196,168,141,122,33,30,5,2,3,5,5,1,9,8,148,127,39,35,13,5,3,7,6,2 -050,01,101,Alabama,Montgomery County,7,10,13582,6430,7152,2768,2578,3339,4250,24,27,246,244,5,4,48,49,2804,2607,3360,4273,56,52,261,263,8,12,6215,7023,2620,2480,3298,4228,13,21,240,243,1,3,43,48,2652,2508,3315,4251,42,46,255,261,3,11,215,129,148,98,41,22,11,6,6,1,4,1,5,1,152,99,45,22,14,6,6,2,5,1 -050,01,101,Alabama,Montgomery County,7,11,15207,6976,8231,3138,3303,3561,4642,28,28,204,190,2,12,43,56,3171,3343,3578,4664,58,67,217,207,6,16,6813,8096,3014,3202,3540,4618,19,26,203,190,1,8,36,52,3043,3238,3552,4639,46,63,213,205,3,12,163,135,124,101,21,24,9,2,1,0,1,4,7,4,128,105,26,25,12,4,4,2,3,4 -050,01,101,Alabama,Montgomery County,7,12,14803,6725,8078,3147,3417,3378,4414,27,29,131,152,1,2,41,64,3175,3460,3395,4445,52,72,145,171,4,5,6636,7969,3084,3334,3360,4393,24,29,129,150,1,2,38,61,3109,3374,3376,4423,47,70,141,168,2,5,89,109,63,83,18,21,3,0,2,2,0,0,3,3,66,86,19,22,5,2,4,3,2,0 -050,01,101,Alabama,Montgomery County,7,13,13046,5781,7265,2939,3387,2728,3668,18,17,74,146,2,2,20,45,2951,3416,2736,3691,34,53,78,155,3,6,5710,7189,2889,3333,2713,3651,16,16,74,145,1,1,17,43,2898,3360,2720,3674,30,51,78,153,2,5,71,76,50,54,15,17,2,1,0,1,1,1,3,2,53,56,16,17,4,2,0,2,1,1 -050,01,101,Alabama,Montgomery County,7,14,10089,4612,5477,2606,2992,1917,2346,10,13,64,92,0,0,15,34,2618,3014,1923,2361,20,41,67,100,2,3,4575,5438,2578,2963,1911,2340,8,12,64,90,0,0,14,33,2589,2984,1917,2355,17,39,67,98,2,3,37,39,28,29,6,6,2,1,0,2,0,0,1,1,29,30,6,6,3,2,0,2,0,0 -050,01,101,Alabama,Montgomery County,7,15,7245,3173,4072,1943,2345,1168,1634,9,7,42,66,0,0,11,20,1951,2360,1173,1638,16,20,43,72,1,2,3148,4042,1923,2321,1163,1632,9,5,42,66,0,0,11,18,1931,2335,1168,1636,16,17,43,71,1,1,25,30,20,24,5,2,0,2,0,0,0,0,0,2,20,25,5,2,0,3,0,1,0,1 -050,01,101,Alabama,Montgomery County,7,16,5345,2133,3212,1306,1901,787,1250,5,2,29,36,0,0,6,23,1311,1914,788,1261,9,20,30,40,1,1,2112,3199,1291,1894,781,1244,5,2,29,36,0,0,6,23,1296,1907,782,1255,9,20,30,40,1,1,21,13,15,7,6,6,0,0,0,0,0,0,0,0,15,7,6,6,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,7,17,3960,1551,2409,1013,1460,515,916,3,1,8,19,2,0,10,13,1020,1468,518,922,11,13,10,21,3,0,1538,2389,1003,1445,514,911,3,1,8,19,0,0,10,13,1010,1453,517,917,11,13,10,21,1,0,13,20,10,15,1,5,0,0,0,0,2,0,0,0,10,15,1,5,0,0,0,0,2,0 -050,01,101,Alabama,Montgomery County,7,18,3725,1150,2575,805,1666,323,875,3,3,11,13,0,1,8,17,812,1676,327,883,8,16,13,16,2,1,1138,2564,794,1658,323,872,2,3,11,13,0,1,8,17,801,1668,327,880,7,16,13,16,2,1,12,11,11,8,0,3,1,0,0,0,0,0,0,0,11,8,0,3,1,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,8,0,227420,107741,119679,42199,43731,60510,70510,358,381,3166,3329,121,101,1387,1627,43323,44971,61355,71564,818,936,3611,3838,205,193,103803,116130,39181,41041,59984,70014,238,255,3128,3293,41,44,1231,1483,40183,42174,60741,70985,628,746,3522,3759,99,114,3938,3549,3018,2690,526,496,120,126,38,36,80,57,156,144,3140,2797,614,579,190,190,89,79,106,79 -050,01,101,Alabama,Montgomery County,8,1,15353,7826,7527,2509,2378,4775,4614,12,37,261,238,7,9,262,251,2742,2592,4971,4807,58,69,335,304,16,19,7204,6890,1974,1863,4729,4555,7,9,258,229,6,5,230,229,2181,2058,4903,4735,38,34,325,289,12,12,622,637,535,515,46,59,5,28,3,9,1,4,32,22,561,534,68,72,20,35,10,15,4,7 -050,01,101,Alabama,Montgomery County,8,2,15171,7655,7516,2291,2236,4903,4670,33,43,218,306,17,14,193,247,2456,2449,5045,4858,63,81,270,377,29,24,7079,6956,1839,1794,4842,4609,12,18,213,303,3,6,170,226,1986,1989,4970,4784,37,49,258,367,10,12,576,560,452,442,61,61,21,25,5,3,14,8,23,21,470,460,75,74,26,32,12,10,19,12 -050,01,101,Alabama,Montgomery County,8,3,14473,7349,7124,2166,2047,4721,4586,33,34,257,298,15,9,157,150,2302,2170,4825,4690,64,65,308,347,21,16,7014,6738,1925,1757,4668,4538,16,19,254,295,5,0,146,129,2052,1862,4769,4629,40,41,301,338,10,7,335,386,241,290,53,48,17,15,3,3,10,9,11,21,250,308,56,61,24,24,7,9,11,9 -050,01,101,Alabama,Montgomery County,8,4,15144,7749,7395,2254,2042,5166,5005,21,21,155,169,8,5,145,153,2375,2169,5258,5114,63,62,202,212,16,13,7512,7216,2070,1906,5142,4983,18,14,153,168,3,1,126,144,2177,2025,5227,5086,52,52,188,208,8,7,237,179,184,136,24,22,3,7,2,1,5,4,19,9,198,144,31,28,11,10,14,4,8,6 -050,01,101,Alabama,Montgomery County,8,5,17528,8687,8841,2643,2388,5708,6160,24,27,186,139,10,8,116,119,2734,2482,5777,6238,64,65,225,177,14,14,8416,8629,2459,2235,5643,6125,18,20,186,138,3,2,107,109,2544,2322,5708,6197,52,52,223,174,6,7,271,212,184,153,65,35,6,7,0,1,7,6,9,10,190,160,69,41,12,13,2,3,8,7 -050,01,101,Alabama,Montgomery County,8,6,17503,8496,9007,2898,2537,5244,6146,28,27,199,179,22,7,105,111,2975,2611,5305,6212,69,66,243,227,30,13,8154,8734,2658,2338,5195,6098,15,19,195,177,6,2,85,100,2718,2405,5242,6157,45,51,234,223,11,7,342,273,240,199,49,48,13,8,4,2,16,5,20,11,257,206,63,55,24,15,9,4,19,6 -050,01,101,Alabama,Montgomery County,8,7,15757,7506,8251,2874,2519,4240,5310,34,25,251,287,13,14,94,96,2945,2593,4286,5364,73,57,295,329,17,19,7094,7985,2530,2327,4202,5270,24,13,250,284,7,7,81,84,2590,2392,4241,5317,55,40,290,323,10,11,412,266,344,192,38,40,10,12,1,3,6,7,13,12,355,201,45,47,18,17,5,6,7,8 -050,01,101,Alabama,Montgomery County,8,8,14413,6826,7587,2560,2312,3839,4837,20,21,346,309,11,9,50,99,2602,2378,3862,4889,46,65,363,350,17,21,6550,7351,2340,2141,3809,4803,12,14,342,306,3,3,44,84,2377,2199,3828,4848,35,52,359,340,8,10,276,236,220,171,30,34,8,7,4,3,8,6,6,15,225,179,34,41,11,13,4,10,9,11 -050,01,101,Alabama,Montgomery County,8,9,14133,6696,7437,2505,2394,3734,4597,16,11,376,358,5,6,60,71,2544,2440,3765,4637,47,48,398,385,10,12,6492,7223,2357,2236,3701,4563,8,8,372,352,1,4,53,60,2393,2278,3727,4596,37,37,391,376,5,8,204,214,148,158,33,34,8,3,4,6,4,2,7,11,151,162,38,41,10,11,7,9,5,4 -050,01,101,Alabama,Montgomery County,8,10,13477,6352,7125,2619,2544,3348,4231,29,29,296,264,7,3,53,54,2655,2581,3369,4259,61,57,315,283,13,6,6151,6995,2491,2447,3301,4206,21,23,289,264,1,2,48,53,2523,2483,3319,4234,50,50,306,283,5,5,201,130,128,97,47,25,8,6,7,0,6,1,5,1,132,98,50,25,11,7,9,0,8,1 -050,01,101,Alabama,Montgomery County,8,11,15015,6926,8089,3108,3145,3529,4635,25,28,224,220,2,11,38,50,3137,3177,3546,4660,48,58,232,235,6,14,6740,7966,2973,3060,3500,4607,13,24,221,219,1,8,32,48,2997,3090,3514,4631,34,54,227,233,4,11,186,123,135,85,29,28,12,4,3,1,1,3,6,2,140,87,32,29,14,4,5,2,2,3 -050,01,101,Alabama,Montgomery County,8,12,14850,6735,8115,3038,3380,3473,4482,33,31,144,152,1,2,46,68,3071,3425,3490,4517,63,79,161,170,5,5,6646,7991,2976,3282,3453,4462,29,31,144,151,1,1,43,64,3007,3324,3469,4495,59,76,158,168,2,3,89,124,62,98,20,20,4,0,0,1,0,1,3,4,64,101,21,22,4,3,3,2,3,2 -050,01,101,Alabama,Montgomery County,8,13,13416,5925,7491,3005,3397,2796,3854,16,19,89,167,1,3,18,51,3018,3426,2801,3884,28,61,95,174,3,5,5859,7407,2953,3335,2787,3837,14,18,87,166,1,2,17,49,2965,3363,2792,3867,26,58,93,172,2,4,66,84,52,62,9,17,2,1,2,1,0,1,1,2,53,63,9,17,2,3,2,2,1,1 -050,01,101,Alabama,Montgomery County,8,14,10614,4847,5767,2644,3063,2107,2557,14,12,67,97,0,0,15,38,2657,3090,2111,2573,24,40,68,108,4,3,4796,5723,2608,3030,2095,2549,12,11,67,96,0,0,14,37,2620,3056,2098,2565,22,39,68,106,4,3,51,44,36,33,12,8,2,1,0,1,0,0,1,1,37,34,13,8,2,1,0,2,0,0 -050,01,101,Alabama,Montgomery County,8,15,7478,3295,4183,1988,2373,1245,1718,7,6,46,73,0,0,9,13,1996,2381,1248,1725,13,14,48,74,0,2,3272,4153,1969,2350,1241,1715,7,5,46,72,0,0,9,11,1977,2357,1244,1721,13,13,48,73,0,0,23,30,19,23,4,3,0,1,0,1,0,0,0,2,19,24,4,4,0,1,0,1,0,2 -050,01,101,Alabama,Montgomery County,8,16,5318,2146,3172,1290,1862,814,1246,7,5,27,36,0,0,8,23,1295,1875,818,1257,14,21,27,40,0,4,2124,3153,1274,1850,808,1240,7,4,27,36,0,0,8,23,1279,1863,812,1251,14,20,27,40,0,4,22,19,16,12,6,6,0,1,0,0,0,0,0,0,16,12,6,6,0,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,8,17,4082,1555,2527,1000,1515,528,969,2,2,14,23,2,0,9,18,1005,1525,532,978,10,14,15,29,3,2,1542,2507,989,1499,528,965,2,2,14,23,0,0,9,18,994,1509,532,974,10,14,15,29,1,2,13,20,11,16,0,4,0,0,0,0,2,0,0,0,11,16,0,4,0,0,0,0,2,0 -050,01,101,Alabama,Montgomery County,8,18,3695,1170,2525,807,1599,340,893,4,3,10,14,0,1,9,15,814,1607,346,902,10,14,11,17,1,1,1158,2513,796,1591,340,889,3,3,10,14,0,1,9,15,803,1599,346,898,9,14,11,17,1,1,12,12,11,8,0,4,1,0,0,0,0,0,0,0,11,8,0,4,1,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,9,0,227398,107578,119820,41466,43104,60783,71002,381,391,3390,3535,114,108,1444,1680,42613,44393,61696,72090,849,954,3851,4074,195,233,103534,116183,38346,40385,60282,70504,255,253,3345,3502,36,45,1270,1494,39360,41528,61090,71484,637,734,3751,3981,93,134,4044,3637,3120,2719,501,498,126,138,45,33,78,63,174,186,3253,2865,606,606,212,220,100,93,102,99 -050,01,101,Alabama,Montgomery County,9,1,15405,7855,7550,2518,2359,4780,4642,14,38,290,247,9,12,244,252,2726,2576,4968,4837,52,69,357,320,17,25,7184,6915,1932,1852,4739,4588,7,8,280,241,7,5,219,221,2120,2044,4913,4764,35,30,341,301,13,14,671,635,586,507,41,54,7,30,10,6,2,7,25,31,606,532,55,73,17,39,16,19,4,11 -050,01,101,Alabama,Montgomery County,9,2,15168,7607,7561,2281,2237,4829,4680,34,40,239,337,13,15,211,252,2463,2455,4989,4869,71,82,301,404,27,32,7006,6990,1799,1805,4774,4617,13,15,233,331,4,6,183,216,1959,1992,4913,4784,41,44,285,389,10,14,601,571,482,432,55,63,21,25,6,6,9,9,28,36,504,463,76,85,30,38,16,15,17,18 -050,01,101,Alabama,Montgomery County,9,3,14345,7268,7077,2126,2026,4676,4522,27,36,244,305,15,11,180,177,2276,2177,4802,4643,59,75,300,367,24,27,6902,6651,1855,1706,4624,4470,14,17,240,303,2,0,167,155,1996,1837,4741,4581,43,46,290,357,8,10,366,426,271,320,52,52,13,19,4,2,13,11,13,22,280,340,61,62,16,29,10,10,16,17 -050,01,101,Alabama,Montgomery County,9,4,15163,7825,7338,2229,2006,5221,4979,24,28,182,173,9,4,160,148,2365,2127,5324,5084,77,61,234,218,16,13,7553,7114,2027,1838,5197,4948,16,20,179,171,3,1,131,136,2138,1948,5285,5048,49,48,219,213,8,10,272,224,202,168,24,31,8,8,3,2,6,3,29,12,227,179,39,36,28,13,15,5,8,3 -050,01,101,Alabama,Montgomery County,9,5,17043,8402,8641,2561,2351,5491,5979,24,25,197,154,7,7,122,125,2655,2450,5567,6064,63,58,244,198,13,16,8165,8429,2393,2195,5445,5948,21,18,197,152,2,2,107,114,2476,2284,5512,6024,52,46,237,193,4,9,237,212,168,156,46,31,3,7,0,2,5,5,15,11,179,166,55,40,11,12,7,5,9,7 -050,01,101,Alabama,Montgomery County,9,6,17553,8508,9045,2740,2426,5405,6261,37,28,200,196,18,11,108,123,2816,2514,5468,6340,78,72,243,246,23,18,8183,8784,2518,2242,5350,6221,24,21,196,194,3,4,92,102,2583,2320,5404,6286,55,54,234,238,7,6,325,261,222,184,55,40,13,7,4,2,15,7,16,21,233,194,64,54,23,18,9,8,16,12 -050,01,101,Alabama,Montgomery County,9,7,15511,7348,8163,2751,2447,4192,5292,37,30,254,285,15,15,99,94,2824,2517,4243,5344,74,63,295,323,19,20,6983,7931,2458,2283,4155,5259,27,14,254,284,7,7,82,84,2518,2345,4196,5306,55,42,291,320,11,12,365,232,293,164,37,33,10,16,0,1,8,8,17,10,306,172,47,38,19,21,4,3,8,8 -050,01,101,Alabama,Montgomery County,9,8,14839,7042,7797,2628,2375,3958,4959,26,15,358,339,11,11,61,98,2675,2442,3986,5013,54,59,381,379,20,21,6767,7546,2404,2188,3933,4924,17,10,354,336,3,5,56,83,2447,2244,3958,4969,41,48,377,372,12,11,275,251,224,187,25,35,9,5,4,3,8,6,5,15,228,198,28,44,13,11,4,7,8,10 -050,01,101,Alabama,Montgomery County,9,9,13653,6427,7226,2357,2215,3597,4542,16,20,396,374,5,2,56,73,2395,2267,3623,4579,44,59,415,403,9,12,6206,7008,2192,2061,3561,4505,8,11,394,370,1,1,50,60,2227,2104,3583,4534,34,40,411,394,4,8,221,218,165,154,36,37,8,9,2,4,4,1,6,13,168,163,40,45,10,19,4,9,5,4 -050,01,101,Alabama,Montgomery County,9,10,13580,6373,7207,2600,2526,3374,4323,24,26,325,269,5,3,45,60,2633,2565,3393,4353,52,56,338,292,10,11,6164,7081,2461,2435,3328,4299,15,22,319,268,1,2,40,55,2490,2471,3345,4326,40,50,332,288,5,8,209,126,139,91,46,24,9,4,6,1,4,1,5,5,143,94,48,27,12,6,6,4,5,3 -050,01,101,Alabama,Montgomery County,9,11,14568,6759,7809,2911,2942,3540,4538,26,29,239,245,3,7,40,48,2942,2970,3554,4559,47,57,251,261,8,13,6581,7686,2787,2856,3510,4509,13,25,235,244,1,6,35,46,2813,2882,3522,4530,32,52,246,259,6,12,178,123,124,86,30,29,13,4,4,1,2,1,5,2,129,88,32,29,15,5,5,2,2,1 -050,01,101,Alabama,Montgomery County,9,12,14793,6713,8080,3007,3343,3449,4472,33,24,179,173,1,6,44,62,3035,3378,3469,4507,62,68,194,191,3,11,6597,7950,2927,3245,3428,4447,26,24,179,172,1,3,36,59,2950,3277,3443,4481,51,65,192,189,1,7,116,130,80,98,21,25,7,0,0,1,0,3,8,3,85,101,26,26,11,3,2,2,2,4 -050,01,101,Alabama,Montgomery County,9,13,13705,6039,7666,2966,3399,2933,4024,19,22,97,165,0,2,24,54,2984,3430,2946,4054,38,61,101,178,1,6,5969,7580,2909,3334,2923,4008,18,21,95,164,0,2,24,51,2927,3363,2936,4036,37,59,99,176,1,6,70,86,57,65,10,16,1,1,2,1,0,0,0,3,57,67,10,18,1,2,2,2,0,0 -050,01,101,Alabama,Montgomery County,9,14,11218,5055,6163,2659,3149,2289,2847,16,13,77,114,1,1,13,39,2668,3177,2294,2863,26,39,79,123,2,5,4999,6107,2620,3106,2276,2836,14,12,77,114,1,0,11,39,2628,3134,2279,2852,22,38,79,123,2,4,56,56,39,43,13,11,2,1,0,0,0,1,2,0,40,43,15,11,4,1,0,0,0,1 -050,01,101,Alabama,Montgomery County,9,15,7581,3353,4228,1993,2368,1294,1761,7,5,47,79,0,0,12,15,2001,2379,1302,1769,15,17,48,81,1,0,3322,4197,1967,2344,1290,1757,6,4,47,78,0,0,12,14,1975,2354,1298,1764,14,16,48,80,1,0,31,31,26,24,4,4,1,1,0,1,0,0,0,1,26,25,4,5,1,1,0,1,0,0 -050,01,101,Alabama,Montgomery County,9,16,5418,2247,3171,1349,1838,849,1264,11,6,30,38,0,0,8,25,1354,1853,853,1277,19,26,30,41,0,2,2227,3148,1334,1823,844,1258,11,5,30,38,0,0,8,24,1339,1838,848,1271,19,24,30,40,0,2,20,23,15,15,5,6,0,1,0,0,0,0,0,1,15,15,5,6,0,2,0,1,0,0 -050,01,101,Alabama,Montgomery County,9,17,4108,1553,2555,973,1519,549,990,1,3,20,25,2,0,8,18,978,1529,552,998,7,17,22,29,2,0,1539,2536,962,1502,548,988,1,3,20,25,0,0,8,18,967,1512,551,996,7,17,22,29,0,0,14,19,11,17,1,2,0,0,0,0,2,0,0,0,11,17,1,2,0,0,0,0,2,0 -050,01,101,Alabama,Montgomery County,9,18,3747,1204,2543,817,1578,357,927,5,3,16,17,0,1,9,17,823,1587,363,937,11,15,18,20,0,1,1187,2530,801,1570,357,922,4,3,16,17,0,1,9,17,807,1579,363,932,10,15,18,20,0,1,17,13,16,8,0,5,1,0,0,0,0,0,0,0,16,8,0,5,1,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,10,0,227514,107394,120120,40739,42258,61153,71940,361,389,3531,3672,127,113,1483,1748,41942,43612,62059,73060,818,970,4018,4214,207,218,103261,116391,37564,39480,60635,71451,239,247,3484,3636,48,49,1291,1528,38609,40658,61435,72441,606,730,3913,4112,102,124,4133,3729,3175,2778,518,489,122,142,47,36,79,64,192,220,3333,2954,624,619,212,240,105,102,105,94 -050,01,101,Alabama,Montgomery County,10,1,15435,7867,7568,2486,2278,4835,4734,15,37,285,243,8,12,238,264,2690,2505,5017,4938,51,75,348,320,15,19,7208,6931,1914,1764,4791,4689,8,8,273,234,6,5,216,231,2099,1963,4959,4873,36,33,332,299,10,10,659,637,572,514,44,45,7,29,12,9,2,7,22,33,591,542,58,65,15,42,16,21,5,9 -050,01,101,Alabama,Montgomery County,10,2,15042,7557,7485,2264,2153,4736,4709,28,36,280,327,17,9,232,251,2464,2366,4905,4901,70,88,347,392,26,24,6924,6907,1754,1716,4681,4651,11,11,272,323,6,3,200,203,1930,1889,4831,4808,37,41,331,376,11,10,633,578,510,437,55,58,17,25,8,4,11,6,32,48,534,477,74,93,33,47,16,16,15,14 -050,01,101,Alabama,Montgomery County,10,3,14379,7281,7098,2081,2018,4747,4523,25,40,223,298,17,17,188,202,2242,2183,4878,4666,60,79,281,366,26,26,6861,6641,1766,1678,4695,4467,7,20,220,295,5,4,168,177,1908,1822,4814,4597,35,49,274,356,12,11,420,457,315,340,52,56,18,20,3,3,12,13,20,25,334,361,64,69,25,30,7,10,14,15 -050,01,101,Alabama,Montgomery County,10,4,14941,7717,7224,2112,1948,5200,4912,25,30,211,187,12,7,157,140,2249,2065,5299,5006,67,58,263,232,20,15,7440,6965,1923,1751,5164,4879,15,20,208,185,5,1,125,129,2032,1859,5248,4967,40,46,247,226,10,8,277,259,189,197,36,33,10,10,3,2,7,6,32,11,217,206,51,39,27,12,16,6,10,7 -050,01,101,Alabama,Montgomery County,10,5,16532,8036,8496,2499,2252,5212,5929,18,22,166,160,8,9,133,124,2601,2355,5300,6012,59,55,214,198,13,15,7772,8298,2299,2106,5182,5902,15,16,165,158,5,3,106,113,2382,2198,5252,5979,46,43,203,195,6,7,264,198,200,146,30,27,3,6,1,2,3,6,27,11,219,157,48,33,13,12,11,3,7,8 -050,01,101,Alabama,Montgomery County,10,6,17770,8552,9218,2587,2395,5547,6419,38,30,246,218,14,8,120,148,2671,2503,5618,6512,81,77,297,273,21,22,8261,8946,2402,2215,5483,6379,22,19,245,216,3,3,106,114,2474,2296,5548,6451,58,51,290,260,6,12,291,272,185,180,64,40,16,11,1,2,11,5,14,34,197,207,70,61,23,26,7,13,15,10 -050,01,101,Alabama,Montgomery County,10,7,15327,7297,8030,2659,2298,4257,5292,29,32,261,296,18,15,73,97,2714,2375,4292,5341,55,66,295,337,24,21,6963,7785,2403,2126,4213,5257,22,15,259,295,7,6,59,86,2444,2195,4241,5301,40,43,290,332,11,11,334,245,256,172,44,35,7,17,2,1,11,9,14,11,270,180,51,40,15,23,5,5,13,10 -050,01,101,Alabama,Montgomery County,10,8,15149,7171,7978,2652,2406,4063,5107,34,18,335,350,13,10,74,87,2710,2469,4098,5153,62,56,364,380,18,20,6872,7743,2410,2233,4035,5074,26,13,329,346,4,5,68,72,2464,2287,4065,5111,53,45,356,373,9,11,299,235,242,173,28,33,8,5,6,4,9,5,6,15,246,182,33,42,9,11,8,7,9,9 -050,01,101,Alabama,Montgomery County,10,9,13375,6221,7154,2266,2138,3528,4529,13,14,362,379,8,5,44,89,2294,2196,3547,4579,34,54,380,410,13,13,5999,6925,2089,1975,3494,4492,8,7,361,375,3,4,44,72,2117,2023,3513,4531,29,40,379,399,8,9,222,229,177,163,34,37,5,7,1,4,5,1,0,17,177,173,34,48,5,14,1,11,5,4 -050,01,101,Alabama,Montgomery County,10,10,13851,6483,7368,2591,2510,3446,4476,18,21,370,293,4,4,54,64,2630,2554,3468,4508,50,56,391,315,11,8,6276,7239,2450,2418,3404,4448,10,18,366,292,1,3,45,60,2482,2458,3422,4478,35,51,384,313,5,5,207,129,141,92,42,28,8,3,4,1,3,1,9,4,148,96,46,30,15,5,7,2,6,3 -050,01,101,Alabama,Montgomery County,10,11,14057,6588,7469,2766,2716,3500,4421,19,28,253,258,3,6,47,40,2803,2743,3516,4437,47,52,267,271,9,11,6419,7345,2650,2628,3469,4393,10,24,248,257,0,5,42,38,2684,2654,3482,4409,35,46,261,269,6,10,169,124,116,88,31,28,9,4,5,1,3,1,5,2,119,89,34,28,12,6,6,2,3,1 -050,01,101,Alabama,Montgomery County,10,12,14610,6600,8010,2934,3216,3381,4505,34,26,208,197,1,7,42,59,2963,3258,3395,4532,63,62,221,212,4,10,6480,7892,2851,3129,3357,4481,27,25,208,197,1,4,36,56,2876,3168,3369,4507,52,59,220,212,3,7,120,118,83,87,24,24,7,1,0,0,0,3,6,3,87,90,26,25,11,3,1,0,1,3 -050,01,101,Alabama,Montgomery County,10,13,13938,6158,7780,2944,3347,3042,4177,21,23,120,167,1,2,30,64,2970,3386,3051,4209,38,68,128,182,2,5,6073,7695,2877,3281,3031,4161,18,23,119,165,1,2,27,63,2900,3319,3039,4193,34,67,126,180,2,5,85,85,67,66,11,16,3,0,1,2,0,0,3,1,70,67,12,16,4,1,2,2,0,0 -050,01,101,Alabama,Montgomery County,10,14,11456,5059,6397,2542,3101,2405,3120,15,14,86,123,1,1,10,38,2552,3128,2406,3135,22,45,89,132,2,4,4993,6327,2493,3048,2392,3108,13,13,86,123,1,0,8,35,2501,3072,2393,3122,19,41,87,131,2,3,66,70,49,53,13,12,2,1,0,0,0,1,2,3,51,56,13,13,3,4,2,1,0,1 -050,01,101,Alabama,Montgomery County,10,15,8079,3597,4482,2131,2536,1391,1832,11,7,50,87,0,0,14,20,2143,2549,1395,1841,21,23,54,90,0,1,3569,4450,2107,2511,1388,1828,10,5,50,86,0,0,14,20,2119,2524,1392,1837,20,21,54,89,0,1,28,32,24,25,3,4,1,2,0,1,0,0,0,0,24,25,3,4,1,2,0,1,0,0 -050,01,101,Alabama,Montgomery County,10,16,5587,2335,3252,1410,1862,877,1315,9,8,29,44,0,0,10,23,1419,1871,880,1329,17,23,30,50,0,2,2314,3224,1393,1843,873,1309,9,7,29,44,0,0,10,21,1402,1851,876,1323,17,21,30,48,0,2,21,28,17,19,4,6,0,1,0,0,0,0,0,2,17,20,4,6,0,2,0,2,0,0 -050,01,101,Alabama,Montgomery County,10,17,4129,1573,2556,954,1504,584,1005,2,2,25,27,2,0,6,18,959,1515,586,1014,7,16,26,32,2,1,1553,2536,939,1487,581,1002,2,2,25,27,0,0,6,18,944,1498,583,1011,7,16,26,32,0,1,20,20,15,17,3,3,0,0,0,0,2,0,0,0,15,17,3,3,0,0,0,0,2,0 -050,01,101,Alabama,Montgomery County,10,18,3857,1302,2555,861,1580,402,935,7,1,21,18,0,1,11,20,868,1591,408,947,14,17,23,22,1,1,1284,2542,844,1571,402,931,6,1,21,18,0,1,11,20,851,1582,408,943,13,17,23,22,1,1,18,13,17,9,0,4,1,0,0,0,0,0,0,0,17,9,0,4,1,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,11,0,226631,106889,119742,39930,41421,61432,72388,347,376,3574,3711,108,100,1498,1746,41121,42776,62378,73516,812,974,4068,4262,191,201,102753,115953,36729,38575,60922,71889,227,247,3531,3678,42,46,1302,1518,37762,39743,61753,72870,598,748,3964,4156,99,117,4136,3789,3201,2846,510,499,120,129,43,33,66,54,196,228,3359,3033,625,646,214,226,104,106,92,84 -050,01,101,Alabama,Montgomery County,11,1,15430,7900,7530,2400,2217,4951,4740,16,30,286,260,9,9,238,274,2611,2455,5132,4952,49,72,356,335,20,19,7209,6890,1807,1693,4899,4702,9,6,271,246,7,6,216,237,1997,1897,5066,4889,32,33,335,309,15,11,691,640,593,524,52,38,7,24,15,14,2,3,22,37,614,558,66,63,17,39,21,26,5,8 -050,01,101,Alabama,Montgomery County,11,2,14564,7359,7205,2226,2055,4624,4607,22,30,260,292,2,8,225,213,2415,2240,4791,4769,58,71,325,348,11,26,6782,6651,1745,1626,4575,4555,7,10,253,288,1,2,201,170,1916,1773,4729,4684,33,33,311,333,8,11,577,554,481,429,49,52,15,20,7,4,1,6,24,43,499,467,62,85,25,38,14,15,3,15 -050,01,101,Alabama,Montgomery County,11,3,14417,7261,7156,2026,1970,4768,4639,22,42,239,299,17,12,189,194,2186,2133,4898,4772,58,83,299,362,24,24,6793,6692,1671,1616,4708,4588,7,20,237,296,3,2,167,170,1811,1759,4826,4705,36,51,291,350,8,12,468,464,355,354,60,51,15,22,2,3,14,10,22,24,375,374,72,67,22,32,8,12,16,12 -050,01,101,Alabama,Montgomery County,11,4,15016,7762,7254,2122,1968,5222,4885,25,27,222,212,9,9,162,153,2257,2094,5334,4993,76,58,275,264,15,16,7466,6969,1919,1758,5190,4840,10,18,220,210,3,2,124,141,2023,1873,5277,4942,41,46,256,258,6,7,296,285,203,210,32,45,15,9,2,2,6,7,38,12,234,221,57,51,35,12,19,6,9,9 -050,01,101,Alabama,Montgomery County,11,5,16197,7809,8388,2451,2290,5021,5778,19,21,154,158,10,5,154,136,2573,2399,5119,5870,66,58,202,203,20,10,7518,8182,2232,2124,4993,5756,15,15,152,158,6,2,120,127,2326,2225,5074,5843,48,48,194,201,11,7,291,206,219,166,28,22,4,6,2,0,4,3,34,9,247,174,45,27,18,10,8,2,9,3 -050,01,101,Alabama,Montgomery County,11,6,17492,8502,8990,2519,2232,5585,6352,36,28,243,219,8,8,111,151,2596,2342,5653,6451,75,78,291,277,18,17,8229,8726,2346,2073,5520,6305,20,16,243,219,4,3,96,110,2412,2155,5578,6375,50,50,284,265,11,7,273,264,173,159,65,47,16,12,0,0,4,5,15,41,184,187,75,76,25,28,7,12,7,10 -050,01,101,Alabama,Montgomery County,11,7,15496,7358,8138,2600,2272,4384,5430,25,40,256,289,18,13,75,94,2653,2341,4422,5487,51,73,294,327,23,16,7060,7876,2373,2086,4347,5389,18,25,255,288,5,7,62,81,2416,2147,4378,5437,36,52,287,320,8,9,298,262,227,186,37,41,7,15,1,1,13,6,13,13,237,194,44,50,15,21,7,7,15,7 -050,01,101,Alabama,Montgomery County,11,8,14911,7007,7904,2525,2325,4028,5123,31,13,340,346,13,9,70,88,2577,2392,4058,5167,61,50,370,382,19,15,6737,7671,2303,2146,3998,5091,28,12,336,344,7,4,65,74,2351,2200,4025,5129,56,45,365,373,13,7,270,233,222,179,30,32,3,1,4,2,6,5,5,14,226,192,33,38,5,5,5,9,6,8 -050,01,101,Alabama,Montgomery County,11,9,13161,6101,7060,2178,2073,3492,4503,22,18,355,375,9,6,45,85,2209,2134,3512,4548,43,64,372,404,12,13,5877,6855,1988,1935,3474,4468,16,10,353,371,1,3,45,68,2019,1983,3494,4503,37,44,370,397,4,10,224,205,190,138,18,35,6,8,2,4,8,3,0,17,190,151,18,45,6,20,2,7,8,3 -050,01,101,Alabama,Montgomery County,11,10,13839,6408,7431,2490,2435,3470,4598,16,16,374,307,4,4,54,71,2528,2481,3498,4634,48,50,391,337,7,12,6213,7296,2359,2344,3426,4563,9,15,371,307,2,3,46,64,2393,2385,3448,4594,34,47,387,334,3,9,195,135,131,91,44,35,7,1,3,0,2,1,8,7,135,96,50,40,14,3,4,3,4,3 -050,01,101,Alabama,Montgomery County,11,11,13504,6348,7156,2610,2557,3404,4265,12,24,266,265,4,5,52,40,2647,2585,3425,4286,43,48,281,279,10,7,6166,7022,2482,2454,3369,4241,5,19,262,264,0,4,48,40,2516,2482,3388,4262,34,43,277,278,5,6,182,134,128,103,35,24,7,5,4,1,4,1,4,0,131,103,37,24,9,5,4,1,5,1 -050,01,101,Alabama,Montgomery County,11,12,14583,6614,7969,2893,3102,3411,4554,35,30,227,213,1,8,47,62,2926,3140,3431,4584,68,72,242,232,2,9,6489,7844,2807,3016,3388,4525,25,28,227,213,1,5,41,57,2834,3050,3406,4553,54,66,240,231,2,6,125,125,86,86,23,29,10,2,0,0,0,3,6,5,92,90,25,31,14,6,2,1,0,3 -050,01,101,Alabama,Montgomery County,11,13,13929,6196,7733,2881,3245,3121,4231,21,23,137,165,1,2,35,67,2901,3286,3138,4265,43,73,147,180,6,7,6112,7641,2820,3166,3107,4218,16,23,136,165,1,2,32,67,2839,3207,3122,4252,38,73,144,180,3,7,84,92,61,79,14,13,5,0,1,0,0,0,3,0,62,79,16,13,5,0,3,0,3,0 -050,01,101,Alabama,Montgomery County,11,14,11742,5118,6624,2542,3100,2466,3354,16,12,83,124,1,1,10,33,2550,3122,2472,3369,24,36,83,129,1,4,5043,6544,2482,3042,2454,3338,15,11,83,123,1,0,8,30,2489,3061,2458,3353,22,33,83,127,1,3,75,80,60,58,12,16,1,1,0,1,0,1,2,3,61,61,14,16,2,3,0,2,0,1 -050,01,101,Alabama,Montgomery County,11,15,8489,3785,4704,2169,2625,1540,1948,9,11,54,95,0,0,13,25,2181,2640,1543,1958,17,29,58,101,0,2,3759,4669,2148,2598,1536,1944,8,9,54,94,0,0,13,24,2160,2612,1539,1954,16,26,58,100,0,2,26,35,21,27,4,4,1,2,0,1,0,0,0,1,21,28,4,4,1,3,0,1,0,0 -050,01,101,Alabama,Montgomery County,11,16,5846,2459,3387,1489,1914,918,1395,9,8,32,47,0,0,11,23,1496,1929,922,1407,17,26,35,51,0,1,2437,3354,1470,1888,915,1391,9,7,32,47,0,0,11,21,1477,1902,919,1402,17,25,35,49,0,0,22,33,19,26,3,4,0,1,0,0,0,0,0,2,19,27,3,5,0,1,0,2,0,1 -050,01,101,Alabama,Montgomery County,11,17,4094,1528,2566,922,1494,571,1024,4,1,23,27,2,0,6,20,927,1507,573,1032,8,17,24,30,3,1,1506,2544,906,1477,567,1019,4,1,23,27,0,0,6,20,911,1490,569,1027,8,17,24,30,1,1,22,22,16,17,4,5,0,0,0,0,2,0,0,0,16,17,4,5,0,0,0,0,2,0 -050,01,101,Alabama,Montgomery County,11,18,3921,1374,2547,887,1547,456,962,7,2,23,18,0,1,1,17,888,1556,457,972,7,16,23,21,0,2,1357,2527,871,1533,456,956,6,2,23,18,0,1,1,17,872,1542,457,966,6,16,23,21,0,2,17,20,16,14,0,6,1,0,0,0,0,0,0,0,16,14,0,6,1,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,12,0,226074,106307,119767,39261,40855,61394,72810,360,367,3691,3863,108,97,1493,1775,40459,42229,62322,73945,820,962,4156,4446,206,204,102070,115819,35985,37882,60870,72267,232,240,3642,3825,44,47,1297,1558,37026,39085,61686,73267,605,741,4054,4340,115,118,4237,3948,3276,2973,524,543,128,127,49,38,64,50,196,217,3433,3144,636,678,215,221,102,106,91,86 -050,01,101,Alabama,Montgomery County,12,1,15378,7796,7582,2273,2153,4965,4816,19,26,273,289,12,10,254,288,2498,2405,5155,5036,59,69,350,378,26,22,7091,6927,1702,1626,4894,4761,6,3,255,272,8,8,226,257,1903,1854,5066,4964,35,33,323,348,16,13,705,655,571,527,71,55,13,23,18,17,4,2,28,31,595,551,89,72,24,36,27,30,10,9 -050,01,101,Alabama,Montgomery County,12,2,14700,7439,7261,2247,2107,4663,4641,23,22,291,274,3,7,212,210,2429,2288,4819,4791,53,60,349,333,16,19,6827,6676,1734,1654,4607,4583,12,4,284,268,2,2,188,165,1895,1796,4750,4702,35,25,336,318,10,10,612,585,513,453,56,58,11,18,7,6,1,5,24,45,534,492,69,89,18,35,13,15,6,9 -050,01,101,Alabama,Montgomery County,12,3,14453,7265,7188,2021,1950,4804,4692,25,40,221,313,12,12,182,181,2171,2100,4931,4822,59,77,279,370,24,26,6753,6701,1616,1573,4751,4640,7,21,219,308,1,1,159,158,1749,1702,4864,4757,32,49,270,356,10,11,512,487,405,377,53,52,18,19,2,5,11,11,23,23,422,398,67,65,27,28,9,14,14,15 -050,01,101,Alabama,Montgomery County,12,4,14625,7522,7103,2071,1948,5015,4742,28,30,228,224,11,5,169,154,2209,2079,5131,4851,78,67,276,271,19,11,7196,6775,1853,1702,4975,4693,11,18,223,222,3,0,131,140,1963,1820,5069,4793,40,49,259,264,8,4,326,328,218,246,40,49,17,12,5,2,8,5,38,14,246,259,62,58,38,18,17,7,11,7 -050,01,101,Alabama,Montgomery County,12,5,15666,7561,8105,2426,2154,4784,5604,14,28,185,156,11,4,141,159,2537,2281,4881,5711,56,70,230,216,15,11,7266,7886,2196,1974,4756,5583,11,22,181,156,7,1,115,150,2284,2093,4837,5683,41,59,220,214,11,6,295,219,230,180,28,21,3,6,4,0,4,3,26,9,253,188,44,28,15,11,10,2,4,5 -050,01,101,Alabama,Montgomery County,12,6,16972,8226,8746,2360,2176,5480,6161,30,20,238,225,4,5,114,159,2437,2291,5549,6264,66,68,285,283,11,16,7946,8489,2161,2022,5418,6108,24,12,238,225,2,2,103,120,2231,2112,5480,6183,56,48,281,271,9,7,280,257,199,154,62,53,6,8,0,0,2,3,11,39,206,179,69,81,10,20,4,12,2,9 -050,01,101,Alabama,Montgomery County,12,7,15751,7477,8274,2535,2226,4546,5595,31,33,265,316,17,15,83,89,2600,2293,4584,5646,61,61,297,353,26,19,7189,8026,2321,2042,4519,5556,16,24,263,315,6,8,64,81,2371,2101,4545,5601,38,48,291,351,11,12,288,248,214,184,27,39,15,9,2,1,11,7,19,8,229,192,39,45,23,13,6,2,15,7 -050,01,101,Alabama,Montgomery County,12,8,14920,6975,7945,2508,2303,3996,5163,31,27,353,349,17,11,70,92,2563,2373,4024,5210,63,74,379,383,26,15,6723,7680,2306,2107,3968,5119,27,14,350,349,8,7,64,84,2357,2170,3994,5162,56,56,375,380,15,9,252,265,202,196,28,44,4,13,3,0,9,4,6,8,206,203,30,48,7,18,4,3,11,6 -050,01,101,Alabama,Montgomery County,12,9,13259,6155,7104,2172,2065,3558,4559,21,15,355,381,8,7,41,77,2197,2116,3573,4594,44,54,370,406,12,14,5944,6920,1998,1938,3536,4530,13,9,354,379,2,3,41,61,2023,1980,3551,4558,36,39,369,400,6,7,211,184,174,127,22,29,8,6,1,2,6,4,0,16,174,136,22,36,8,15,1,6,6,7 -050,01,101,Alabama,Montgomery County,12,10,13643,6284,7359,2356,2343,3482,4613,17,11,376,318,5,3,48,71,2391,2389,3500,4651,41,43,393,352,7,11,6093,7208,2224,2241,3441,4579,11,10,374,315,1,2,42,61,2254,2280,3457,4611,33,38,389,344,2,6,191,151,132,102,41,34,6,1,2,3,4,1,6,10,137,109,43,40,8,5,4,8,5,5 -050,01,101,Alabama,Montgomery County,12,11,13106,6157,6949,2506,2417,3313,4159,21,28,274,287,4,4,39,54,2534,2452,3330,4185,49,59,285,307,9,7,5973,6817,2374,2322,3279,4132,13,22,271,287,1,3,35,51,2399,2354,3294,4156,38,50,281,307,4,6,184,132,132,95,34,27,8,6,3,0,3,1,4,3,135,98,36,29,11,9,4,0,5,1 -050,01,101,Alabama,Montgomery County,12,12,14514,6589,7925,2854,3022,3403,4589,33,28,247,222,1,10,51,54,2891,3056,3425,4616,64,65,260,238,4,13,6463,7793,2769,2934,3380,4554,21,26,246,222,1,7,46,50,2802,2965,3400,4580,49,59,258,236,4,9,126,132,85,88,23,35,12,2,1,0,0,3,5,4,89,91,25,36,15,6,2,2,0,4 -050,01,101,Alabama,Montgomery County,12,13,13935,6215,7720,2809,3168,3193,4295,20,24,151,170,1,2,41,61,2839,3203,3209,4331,49,71,162,185,3,5,6131,7611,2748,3073,3178,4282,16,24,150,170,1,2,38,60,2775,3107,3194,4318,43,70,161,185,2,5,84,109,61,95,15,13,4,0,1,0,0,0,3,1,64,96,15,13,6,1,1,0,1,0 -050,01,101,Alabama,Montgomery County,12,14,11998,5139,6859,2533,3120,2479,3538,19,16,93,146,1,1,14,38,2544,3145,2486,3557,30,40,93,157,2,4,5059,6783,2469,3064,2467,3523,17,15,93,145,1,0,12,36,2478,3089,2473,3540,26,39,93,154,2,3,80,76,64,56,12,15,2,1,0,1,0,1,2,2,66,56,13,17,4,1,0,3,0,1 -050,01,101,Alabama,Montgomery County,12,15,8927,3996,4931,2228,2647,1688,2155,9,9,58,88,0,0,13,32,2239,2670,1692,2167,16,33,60,95,2,2,3962,4891,2200,2617,1684,2149,8,8,58,87,0,0,12,30,2210,2638,1687,2160,15,31,60,94,2,2,34,40,28,30,4,6,1,1,0,1,0,0,1,2,29,32,5,7,1,2,0,1,0,0 -050,01,101,Alabama,Montgomery County,12,16,6114,2547,3567,1547,2031,944,1453,9,6,36,59,0,0,11,18,1557,2042,948,1460,17,19,37,62,1,4,2524,3532,1527,2001,941,1452,9,4,36,59,0,0,11,16,1537,2011,945,1458,17,16,37,61,1,3,23,35,20,30,3,1,0,2,0,0,0,0,0,2,20,31,3,2,0,3,0,1,0,1 -050,01,101,Alabama,Montgomery County,12,17,4105,1565,2540,932,1466,600,1024,5,2,22,25,0,0,6,23,937,1478,601,1035,9,19,24,32,2,3,1546,2517,918,1450,595,1017,5,2,22,25,0,0,6,23,923,1462,596,1028,9,19,24,32,2,3,19,23,14,16,5,7,0,0,0,0,0,0,0,0,14,16,5,7,0,0,0,0,0,0 -050,01,101,Alabama,Montgomery County,12,18,4008,1399,2609,883,1559,481,1011,5,2,25,21,1,1,4,15,886,1568,484,1018,6,13,27,25,1,2,1384,2587,869,1542,481,1006,5,2,25,21,0,1,4,15,872,1551,484,1013,6,13,27,25,0,2,15,22,14,17,0,5,0,0,0,0,1,0,0,0,14,17,0,5,0,0,0,0,1,0 -050,01,101,Alabama,Montgomery County,13,0,224639,105575,119064,38227,39772,61629,73094,355,362,3700,3868,117,100,1547,1868,39486,41212,62609,74302,819,956,4206,4491,213,201,101269,115030,34923,36747,61107,72562,224,240,3649,3829,50,49,1316,1603,35994,37979,61933,73606,583,721,4089,4361,116,113,4306,4034,3304,3025,522,532,131,122,51,39,67,51,231,265,3492,3233,676,696,236,235,117,130,97,88 -050,01,101,Alabama,Montgomery County,13,1,15187,7637,7550,2132,2077,4940,4871,21,19,264,269,16,11,264,303,2361,2341,5140,5102,66,65,342,361,26,21,6935,6878,1604,1559,4853,4796,5,5,246,254,9,6,218,258,1797,1783,5018,4999,30,34,313,326,15,10,702,672,528,518,87,75,16,14,18,15,7,5,46,45,564,558,122,103,36,31,29,35,11,11 -050,01,101,Alabama,Montgomery County,13,2,14667,7534,7133,2221,2042,4762,4555,19,28,290,255,5,6,237,247,2429,2250,4941,4738,59,79,357,325,13,17,6920,6570,1705,1606,4711,4512,8,5,282,248,5,3,209,196,1888,1774,4869,4659,36,37,341,305,10,7,614,563,516,436,51,43,11,23,8,7,0,3,28,51,541,476,72,79,23,42,16,20,3,10 -050,01,101,Alabama,Montgomery County,13,3,14414,7228,7186,1950,1920,4834,4695,30,41,219,322,9,12,186,196,2106,2082,4965,4836,66,80,276,391,18,20,6695,6686,1524,1532,4776,4644,9,21,218,317,1,2,167,170,1664,1671,4895,4767,39,50,269,375,6,8,533,500,426,388,58,51,21,20,1,5,8,10,19,26,442,411,70,69,27,30,7,16,12,12 -050,01,101,Alabama,Montgomery County,13,4,14362,7429,6933,2032,1886,4952,4617,29,35,232,225,15,8,169,162,2172,2021,5063,4729,73,70,283,275,22,16,7070,6578,1789,1624,4912,4568,11,22,228,223,2,0,128,141,1896,1742,4999,4669,35,48,266,267,7,5,359,355,243,262,40,49,18,13,4,2,13,8,41,21,276,279,64,60,38,22,17,8,15,11 -050,01,101,Alabama,Montgomery County,13,5,15550,7575,7975,2428,2101,4782,5534,11,21,190,150,8,5,156,164,2547,2235,4890,5648,54,63,247,202,20,11,7274,7739,2192,1909,4758,5518,10,14,187,150,5,2,122,146,2286,2026,4845,5619,39,46,231,200,10,6,301,236,236,192,24,16,1,7,3,0,3,3,34,18,261,209,45,29,15,17,16,2,10,5 -050,01,101,Alabama,Montgomery County,13,6,16235,7876,8359,2255,2037,5247,5911,26,20,228,227,6,4,114,160,2339,2156,5315,6013,57,70,273,286,16,15,7640,8096,2095,1882,5194,5858,20,13,228,226,3,1,100,116,2167,1970,5251,5932,46,47,270,270,11,5,236,263,160,155,53,53,6,7,0,1,3,3,14,44,172,186,64,81,11,23,3,16,5,10 -050,01,101,Alabama,Montgomery County,13,7,16016,7607,8409,2436,2158,4789,5835,28,22,266,291,16,10,72,93,2490,2225,4825,5889,56,51,298,331,21,18,7322,8163,2227,1968,4754,5794,17,17,263,291,5,7,56,86,2267,2028,4781,5844,35,42,291,330,9,15,285,246,209,190,35,41,11,5,3,0,11,3,16,7,223,197,44,45,21,9,7,1,12,3 -050,01,101,Alabama,Montgomery County,13,8,14691,6842,7849,2473,2279,3899,5089,30,32,344,345,18,12,78,92,2534,2348,3934,5133,66,72,380,383,29,17,6556,7599,2238,2096,3875,5054,23,18,341,343,13,7,66,81,2290,2156,3902,5095,51,52,373,378,20,11,286,250,235,183,24,35,7,14,3,2,5,5,12,11,244,192,32,38,15,20,7,5,9,6 -050,01,101,Alabama,Montgomery County,13,9,13329,6167,7162,2153,1998,3604,4698,20,14,337,363,10,8,43,81,2184,2048,3624,4745,40,54,353,395,13,12,5982,6987,2003,1878,3588,4668,14,10,333,361,2,4,42,66,2033,1920,3608,4705,33,42,349,386,5,6,185,175,150,120,16,30,6,4,4,2,8,4,1,15,151,128,16,40,7,12,4,9,8,6 -050,01,101,Alabama,Montgomery County,13,10,13320,6107,7213,2207,2217,3457,4574,20,9,372,334,5,6,46,73,2245,2264,3475,4608,45,43,391,368,7,17,5918,7022,2059,2078,3431,4543,13,7,372,331,1,4,42,59,2093,2117,3447,4570,37,32,390,357,2,11,189,191,148,139,26,31,7,2,0,3,4,2,4,14,152,147,28,38,8,11,1,11,5,6 -050,01,101,Alabama,Montgomery County,13,11,12999,6069,6930,2410,2353,3281,4204,17,30,311,291,6,3,44,49,2444,2387,3302,4228,44,53,323,310,11,7,5875,6809,2277,2258,3241,4184,10,27,306,291,1,2,40,47,2307,2290,3259,4208,35,49,317,309,5,6,194,121,133,95,40,20,7,3,5,0,5,1,4,2,137,97,43,20,9,4,6,1,6,1 -050,01,101,Alabama,Montgomery County,13,12,14117,6429,7688,2755,2850,3361,4505,28,27,243,248,1,10,41,48,2784,2880,3380,4532,53,56,254,263,3,14,6284,7567,2653,2772,3336,4472,17,21,242,248,1,8,35,46,2677,2800,3351,4498,39,49,252,263,3,12,145,121,102,78,25,33,11,6,1,0,0,2,6,2,107,80,29,34,14,7,2,0,0,2 -050,01,101,Alabama,Montgomery County,13,13,13805,6142,7663,2635,3067,3270,4332,26,26,164,176,1,1,46,61,2669,3101,3285,4364,56,69,179,190,5,4,6048,7548,2567,2969,3254,4319,20,26,164,176,1,0,42,58,2599,3002,3266,4350,48,67,178,190,4,0,94,115,68,98,16,13,6,0,0,0,0,1,4,3,70,99,19,14,8,2,1,0,1,4 -050,01,101,Alabama,Montgomery County,13,14,12139,5197,6942,2550,3052,2509,3659,19,16,100,164,1,3,18,48,2564,3086,2518,3678,32,50,102,176,2,7,5118,6856,2482,2988,2502,3642,17,15,99,163,1,2,17,46,2495,3020,2511,3661,29,48,101,174,2,6,79,86,68,64,7,17,2,1,1,1,0,1,1,2,69,66,7,17,3,2,1,2,0,1 -050,01,101,Alabama,Montgomery County,13,15,9382,4163,5219,2224,2695,1861,2386,13,9,56,93,0,0,9,36,2233,2718,1863,2400,19,30,59,106,1,2,4114,5170,2188,2658,1850,2378,12,8,56,92,0,0,8,34,2196,2681,1851,2390,18,29,59,103,1,2,49,49,36,37,11,8,1,1,0,1,0,0,1,2,37,37,12,10,1,1,0,3,0,0 -050,01,101,Alabama,Montgomery County,13,16,6276,2595,3681,1551,2065,989,1532,7,6,38,65,0,0,10,13,1559,2073,991,1540,13,14,40,67,3,0,2572,3643,1532,2033,985,1529,7,5,38,65,0,0,10,11,1540,2040,987,1535,13,13,40,66,3,0,23,38,19,32,4,3,0,1,0,0,0,0,0,2,19,33,4,5,0,1,0,1,0,0 -050,01,101,Alabama,Montgomery County,13,17,4074,1575,2499,935,1418,606,1025,7,5,18,29,0,0,9,22,941,1430,609,1035,14,20,20,37,1,2,1552,2467,917,1395,601,1017,7,4,18,29,0,0,9,22,923,1407,604,1027,14,19,20,37,1,2,23,32,18,23,5,8,0,1,0,0,0,0,0,0,18,23,5,8,0,1,0,0,0,0 -050,01,101,Alabama,Montgomery County,13,18,4076,1403,2673,880,1557,486,1072,4,2,28,21,0,1,5,20,885,1567,489,1084,6,17,29,25,2,1,1394,2652,871,1542,486,1066,4,2,28,21,0,1,5,20,876,1552,489,1078,6,17,29,25,2,1,9,21,9,15,0,6,0,0,0,0,0,0,0,0,9,15,0,6,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,1,0,119490,58886,60604,49828,50900,6946,7547,693,624,338,395,88,66,993,1072,50775,51921,7326,8001,1222,1193,474,514,114,87,53734,56600,45308,47366,6705,7393,478,456,306,371,43,28,894,986,46170,48310,7044,7815,955,976,428,474,54,40,5152,4004,4520,3534,241,154,215,168,32,24,45,38,99,86,4605,3611,282,186,267,217,46,40,60,47 -050,01,103,Alabama,Morgan County,1,1,7487,3801,3686,3010,2881,517,550,61,43,28,30,13,11,172,171,3178,3045,642,676,90,79,52,51,16,12,3111,3044,2405,2319,493,529,27,13,23,24,9,6,154,153,2557,2467,609,647,49,41,44,40,9,6,690,642,605,562,24,21,34,30,5,6,4,5,18,18,621,578,33,29,41,38,8,11,7,6 -050,01,103,Alabama,Morgan County,1,2,7928,4033,3895,3258,3096,557,566,45,52,30,24,17,7,126,150,3377,3240,637,665,73,92,56,43,19,8,3477,3382,2766,2646,538,548,28,26,26,20,8,3,111,139,2873,2779,613,642,46,61,49,39,8,3,556,513,492,450,19,18,17,26,4,4,9,4,15,11,504,461,24,23,27,31,7,4,11,5 -050,01,103,Alabama,Morgan County,1,3,8177,4146,4031,3344,3201,591,613,63,51,29,24,4,11,115,131,3455,3330,661,689,96,95,47,36,8,16,3743,3658,2989,2879,580,593,41,39,23,23,1,5,109,119,3095,2996,648,665,71,77,40,33,2,7,403,373,355,322,11,20,22,12,6,1,3,6,6,12,360,334,13,24,25,18,7,3,6,9 -050,01,103,Alabama,Morgan County,1,4,8091,4129,3962,3304,3139,626,649,57,55,25,16,9,5,108,98,3407,3233,664,701,118,94,39,28,11,7,3731,3636,2970,2855,604,635,40,42,19,16,2,0,96,88,3063,2941,635,685,95,74,32,27,3,0,398,326,334,284,22,14,17,13,6,0,7,5,12,10,344,292,29,16,23,20,7,1,8,7 -050,01,103,Alabama,Morgan County,1,5,6944,3618,3326,2918,2682,564,524,47,34,22,18,9,6,58,62,2974,2740,577,546,86,69,30,27,10,9,3058,2960,2426,2356,539,508,25,20,20,17,3,2,45,57,2469,2409,547,530,59,51,25,25,4,5,560,366,492,326,25,16,22,14,2,1,6,4,13,5,505,331,30,16,27,18,5,2,6,4 -050,01,103,Alabama,Morgan County,1,6,7501,3848,3653,3180,2993,528,525,62,48,31,31,15,6,32,50,3210,3040,537,543,82,73,36,42,17,8,3170,3201,2585,2594,495,510,31,26,27,30,7,1,25,40,2608,2634,500,522,49,47,31,38,8,2,678,452,595,399,33,15,31,22,4,1,8,5,7,10,602,406,37,21,33,26,5,4,9,6 -050,01,103,Alabama,Morgan County,1,7,7560,3816,3744,3163,3036,536,569,46,48,25,37,4,6,42,48,3202,3080,544,582,77,81,30,43,5,7,3233,3333,2638,2667,507,556,30,29,24,35,4,1,30,45,2666,2708,511,568,53,59,29,41,4,2,583,411,525,369,29,13,16,19,1,2,0,5,12,3,536,372,33,14,24,22,1,2,1,5 -050,01,103,Alabama,Morgan County,1,8,7799,4034,3765,3361,3064,537,569,49,39,27,36,10,9,50,48,3406,3109,544,579,86,75,36,45,15,11,3600,3476,2980,2811,516,553,31,30,26,34,5,6,42,42,3021,2850,520,561,62,61,34,42,7,7,434,289,381,253,21,16,18,9,1,2,5,3,8,6,385,259,24,18,24,14,2,3,8,4 -050,01,103,Alabama,Morgan County,1,9,8276,4088,4188,3472,3522,496,549,46,49,19,30,4,3,51,35,3519,3557,501,554,90,79,26,31,5,3,3793,3994,3219,3347,473,543,32,40,17,28,3,3,49,33,3264,3380,478,546,75,69,23,29,4,3,295,194,253,175,23,6,14,9,2,2,1,0,2,2,255,177,23,8,15,10,3,2,1,0 -050,01,103,Alabama,Morgan County,1,10,9200,4622,4578,3971,3870,511,552,60,55,24,36,0,0,56,65,4025,3928,519,564,107,113,29,40,1,1,4413,4439,3790,3748,495,545,51,52,24,33,0,0,53,61,3841,3803,501,556,97,107,29,36,1,1,209,139,181,122,16,7,9,3,0,3,0,0,3,4,184,125,18,8,10,6,0,4,0,0 -050,01,103,Alabama,Morgan County,1,11,8785,4366,4419,3801,3806,442,492,45,40,23,33,1,1,54,47,3852,3851,448,496,96,82,26,38,1,2,4251,4320,3701,3718,432,490,42,35,22,32,0,0,54,45,3752,3762,438,493,93,76,25,36,0,1,115,99,100,88,10,2,3,5,1,1,1,1,0,2,100,89,10,3,3,6,1,2,1,1 -050,01,103,Alabama,Morgan County,1,12,7829,3815,4014,3316,3490,401,426,45,33,16,23,1,1,36,41,3352,3529,403,429,77,71,19,26,1,2,3719,3930,3231,3412,397,423,39,31,16,23,0,1,36,40,3267,3450,399,426,71,68,19,26,0,2,96,84,85,78,4,3,6,2,0,0,1,0,0,1,85,79,4,3,6,3,0,0,1,0 -050,01,103,Alabama,Morgan County,1,13,7042,3274,3768,2946,3353,246,314,28,30,21,27,1,0,32,44,2975,3394,247,319,54,68,27,32,3,0,3222,3727,2899,3315,243,313,27,29,21,27,1,0,31,43,2928,3355,244,318,52,67,27,31,2,0,52,41,47,38,3,1,1,1,0,0,0,0,1,1,47,39,3,1,2,1,0,1,1,0 -050,01,103,Alabama,Morgan County,1,14,5503,2617,2886,2423,2625,153,200,16,25,8,9,0,0,17,27,2439,2652,155,201,30,49,10,10,0,1,2587,2863,2396,2605,153,199,14,23,8,9,0,0,16,27,2411,2632,155,200,27,47,10,10,0,1,30,23,27,20,0,1,2,2,0,0,0,0,1,0,28,20,0,1,3,2,0,0,0,0 -050,01,103,Alabama,Morgan County,1,15,4172,1871,2301,1743,2113,94,161,6,4,6,8,0,0,22,15,1764,2127,99,163,23,19,7,8,1,0,1846,2276,1719,2090,94,160,6,4,6,8,0,0,21,14,1739,2103,99,162,22,18,7,8,1,0,25,25,24,23,0,1,0,0,0,0,0,0,1,1,25,24,0,1,1,1,0,0,0,0 -050,01,103,Alabama,Morgan County,1,16,3173,1373,1800,1275,1649,75,120,8,7,2,8,0,0,13,16,1288,1663,75,123,20,21,2,9,1,0,1355,1790,1260,1640,74,120,6,7,2,7,0,0,13,16,1273,1654,74,123,18,21,2,8,1,0,18,10,15,9,1,0,2,0,0,1,0,0,0,0,15,9,1,0,2,0,0,1,0,0 -050,01,103,Alabama,Morgan County,1,17,2254,908,1346,867,1244,32,81,3,6,1,3,0,0,5,12,872,1256,32,81,8,18,1,3,0,0,901,1337,860,1235,32,81,3,6,1,3,0,0,5,12,865,1247,32,81,8,18,1,3,0,0,7,9,7,9,0,0,0,0,0,0,0,0,0,0,7,9,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,1,18,1769,527,1242,476,1136,40,87,6,5,1,2,0,0,4,12,480,1147,41,90,9,15,1,2,0,0,524,1234,474,1129,40,87,5,4,1,2,0,0,4,12,478,1140,41,90,8,14,1,2,0,0,3,8,2,7,0,0,1,1,0,0,0,0,0,0,2,7,0,0,1,1,0,0,0,0 -050,01,103,Alabama,Morgan County,2,0,119519,58903,60616,49842,50911,6948,7548,693,624,339,395,88,66,993,1072,50789,51932,7328,8002,1222,1193,475,514,114,87,53751,56612,45322,47377,6707,7394,478,456,307,371,43,28,894,986,46184,48321,7046,7816,955,976,429,474,54,40,5152,4004,4520,3534,241,154,215,168,32,24,45,38,99,86,4605,3611,282,186,267,217,46,40,60,47 -050,01,103,Alabama,Morgan County,2,1,7487,3802,3685,3011,2880,517,550,61,43,28,30,13,11,172,171,3179,3044,642,676,90,79,52,51,16,12,3112,3043,2406,2318,493,529,27,13,23,24,9,6,154,153,2558,2466,609,647,49,41,44,40,9,6,690,642,605,562,24,21,34,30,5,6,4,5,18,18,621,578,33,29,41,38,8,11,7,6 -050,01,103,Alabama,Morgan County,2,2,7929,4034,3895,3259,3096,557,566,45,52,30,24,17,7,126,150,3378,3240,637,665,73,92,56,43,19,8,3478,3382,2767,2646,538,548,28,26,26,20,8,3,111,139,2874,2779,613,642,46,61,49,39,8,3,556,513,492,450,19,18,17,26,4,4,9,4,15,11,504,461,24,23,27,31,7,4,11,5 -050,01,103,Alabama,Morgan County,2,3,8177,4146,4031,3344,3201,591,613,63,51,29,24,4,11,115,131,3455,3330,661,689,96,95,47,36,8,16,3743,3658,2989,2879,580,593,41,39,23,23,1,5,109,119,3095,2996,648,665,71,77,40,33,2,7,403,373,355,322,11,20,22,12,6,1,3,6,6,12,360,334,13,24,25,18,7,3,6,9 -050,01,103,Alabama,Morgan County,2,4,8093,4129,3964,3304,3140,626,650,57,55,25,16,9,5,108,98,3407,3234,664,702,118,94,39,28,11,7,3731,3638,2970,2856,604,636,40,42,19,16,2,0,96,88,3063,2942,635,686,95,74,32,27,3,0,398,326,334,284,22,14,17,13,6,0,7,5,12,10,344,292,29,16,23,20,7,1,8,7 -050,01,103,Alabama,Morgan County,2,5,6949,3622,3327,2919,2683,566,524,47,34,23,18,9,6,58,62,2975,2741,579,546,86,69,31,27,10,9,3062,2961,2427,2357,541,508,25,20,21,17,3,2,45,57,2470,2410,549,530,59,51,26,25,4,5,560,366,492,326,25,16,22,14,2,1,6,4,13,5,505,331,30,16,27,18,5,2,6,4 -050,01,103,Alabama,Morgan County,2,6,7503,3850,3653,3182,2993,528,525,62,48,31,31,15,6,32,50,3212,3040,537,543,82,73,36,42,17,8,3172,3201,2587,2594,495,510,31,26,27,30,7,1,25,40,2610,2634,500,522,49,47,31,38,8,2,678,452,595,399,33,15,31,22,4,1,8,5,7,10,602,406,37,21,33,26,5,4,9,6 -050,01,103,Alabama,Morgan County,2,7,7560,3816,3744,3163,3036,536,569,46,48,25,37,4,6,42,48,3202,3080,544,582,77,81,30,43,5,7,3233,3333,2638,2667,507,556,30,29,24,35,4,1,30,45,2666,2708,511,568,53,59,29,41,4,2,583,411,525,369,29,13,16,19,1,2,0,5,12,3,536,372,33,14,24,22,1,2,1,5 -050,01,103,Alabama,Morgan County,2,8,7799,4034,3765,3361,3064,537,569,49,39,27,36,10,9,50,48,3406,3109,544,579,86,75,36,45,15,11,3600,3476,2980,2811,516,553,31,30,26,34,5,6,42,42,3021,2850,520,561,62,61,34,42,7,7,434,289,381,253,21,16,18,9,1,2,5,3,8,6,385,259,24,18,24,14,2,3,8,4 -050,01,103,Alabama,Morgan County,2,9,8276,4088,4188,3472,3522,496,549,46,49,19,30,4,3,51,35,3519,3557,501,554,90,79,26,31,5,3,3793,3994,3219,3347,473,543,32,40,17,28,3,3,49,33,3264,3380,478,546,75,69,23,29,4,3,295,194,253,175,23,6,14,9,2,2,1,0,2,2,255,177,23,8,15,10,3,2,1,0 -050,01,103,Alabama,Morgan County,2,10,9202,4621,4581,3970,3873,511,552,60,55,24,36,0,0,56,65,4024,3931,519,564,107,113,29,40,1,1,4412,4442,3789,3751,495,545,51,52,24,33,0,0,53,61,3840,3806,501,556,97,107,29,36,1,1,209,139,181,122,16,7,9,3,0,3,0,0,3,4,184,125,18,8,10,6,0,4,0,0 -050,01,103,Alabama,Morgan County,2,11,8792,4370,4422,3805,3809,442,492,45,40,23,33,1,1,54,47,3856,3854,448,496,96,82,26,38,1,2,4255,4323,3705,3721,432,490,42,35,22,32,0,0,54,45,3756,3765,438,493,93,76,25,36,0,1,115,99,100,88,10,2,3,5,1,1,1,1,0,2,100,89,10,3,3,6,1,2,1,1 -050,01,103,Alabama,Morgan County,2,12,7831,3817,4014,3318,3490,401,426,45,33,16,23,1,1,36,41,3354,3529,403,429,77,71,19,26,1,2,3721,3930,3233,3412,397,423,39,31,16,23,0,1,36,40,3269,3450,399,426,71,68,19,26,0,2,96,84,85,78,4,3,6,2,0,0,1,0,0,1,85,79,4,3,6,3,0,0,1,0 -050,01,103,Alabama,Morgan County,2,13,7044,3275,3769,2947,3354,246,314,28,30,21,27,1,0,32,44,2976,3395,247,319,54,68,27,32,3,0,3223,3728,2900,3316,243,313,27,29,21,27,1,0,31,43,2929,3356,244,318,52,67,27,31,2,0,52,41,47,38,3,1,1,1,0,0,0,0,1,1,47,39,3,1,2,1,0,1,1,0 -050,01,103,Alabama,Morgan County,2,14,5505,2618,2887,2424,2626,153,200,16,25,8,9,0,0,17,27,2440,2653,155,201,30,49,10,10,0,1,2588,2864,2397,2606,153,199,14,23,8,9,0,0,16,27,2412,2633,155,200,27,47,10,10,0,1,30,23,27,20,0,1,2,2,0,0,0,0,1,0,28,20,0,1,3,2,0,0,0,0 -050,01,103,Alabama,Morgan County,2,15,4174,1871,2303,1743,2115,94,161,6,4,6,8,0,0,22,15,1764,2129,99,163,23,19,7,8,1,0,1846,2278,1719,2092,94,160,6,4,6,8,0,0,21,14,1739,2105,99,162,22,18,7,8,1,0,25,25,24,23,0,1,0,0,0,0,0,0,1,1,25,24,0,1,1,1,0,0,0,0 -050,01,103,Alabama,Morgan County,2,16,3174,1374,1800,1276,1649,75,120,8,7,2,8,0,0,13,16,1289,1663,75,123,20,21,2,9,1,0,1356,1790,1261,1640,74,120,6,7,2,7,0,0,13,16,1274,1654,74,123,18,21,2,8,1,0,18,10,15,9,1,0,2,0,0,1,0,0,0,0,15,9,1,0,2,0,0,1,0,0 -050,01,103,Alabama,Morgan County,2,17,2256,909,1347,868,1245,32,81,3,6,1,3,0,0,5,12,873,1257,32,81,8,18,1,3,0,0,902,1338,861,1236,32,81,3,6,1,3,0,0,5,12,866,1248,32,81,8,18,1,3,0,0,7,9,7,9,0,0,0,0,0,0,0,0,0,0,7,9,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,2,18,1768,527,1241,476,1135,40,87,6,5,1,2,0,0,4,12,480,1146,41,90,9,15,1,2,0,0,524,1233,474,1128,40,87,5,4,1,2,0,0,4,12,478,1139,41,90,8,14,1,2,0,0,3,8,2,7,0,0,1,1,0,0,0,0,0,0,2,7,0,0,1,1,0,0,0,0 -050,01,103,Alabama,Morgan County,3,0,119642,58947,60695,49875,50971,6943,7565,696,620,351,403,90,70,992,1066,50815,51964,7345,8021,1234,1187,473,534,113,100,53815,56662,45368,47406,6709,7413,483,455,320,381,41,29,894,978,46220,48324,7071,7833,961,966,425,497,58,52,5132,4033,4507,3565,234,152,213,165,31,22,49,41,98,88,4595,3640,274,188,273,221,48,37,55,48 -050,01,103,Alabama,Morgan County,3,1,7481,3795,3686,3012,2888,512,550,57,40,31,31,11,10,172,167,3183,3048,630,670,93,72,53,53,13,16,3107,3045,2403,2322,491,531,25,11,26,26,7,5,155,150,2557,2467,600,643,54,34,46,46,9,8,688,641,609,566,21,19,32,29,5,5,4,5,17,17,626,581,30,27,39,38,7,7,4,8 -050,01,103,Alabama,Morgan County,3,2,7925,4036,3889,3254,3091,559,562,46,52,29,25,18,8,130,151,3376,3232,646,663,81,98,46,43,21,9,3473,3364,2756,2630,539,543,29,27,26,21,9,3,114,140,2864,2762,618,638,55,66,41,38,12,4,563,525,498,461,20,19,17,25,3,4,9,5,16,11,512,470,28,25,26,32,5,5,9,5 -050,01,103,Alabama,Morgan County,3,3,8193,4152,4041,3350,3208,592,614,61,51,31,26,6,13,112,129,3456,3330,655,685,101,99,46,45,7,16,3742,3663,2992,2881,580,595,39,38,24,25,1,6,106,118,3093,2993,642,664,75,77,38,41,1,9,410,378,358,327,12,19,22,13,7,1,5,7,6,11,363,337,13,21,26,22,8,4,6,7 -050,01,103,Alabama,Morgan County,3,4,8033,4098,3935,3267,3112,629,644,57,55,27,17,10,5,108,102,3366,3205,682,696,107,99,42,31,14,8,3710,3612,2939,2831,609,630,42,43,21,17,2,0,97,91,3031,2914,658,679,86,78,32,30,5,3,388,323,328,281,20,14,15,12,6,0,8,5,11,11,335,291,24,17,21,21,10,1,9,5 -050,01,103,Alabama,Morgan County,3,5,7014,3653,3361,2949,2719,566,521,47,37,24,18,8,7,59,59,3007,2775,588,550,80,63,33,27,9,9,3103,2994,2466,2392,542,507,25,21,22,17,2,2,46,55,2512,2444,558,533,49,46,29,25,3,4,550,367,483,327,24,14,22,16,2,1,6,5,13,4,495,331,30,17,31,17,4,2,6,5 -050,01,103,Alabama,Morgan County,3,6,7476,3825,3651,3166,2993,523,529,61,45,28,31,14,5,33,48,3197,3031,533,550,84,75,32,39,15,7,3168,3202,2590,2596,490,513,31,25,25,30,7,1,25,37,2613,2627,497,528,47,47,28,37,8,2,657,449,576,397,33,16,30,20,3,1,7,4,8,11,584,404,36,22,37,28,4,2,7,5 -050,01,103,Alabama,Morgan County,3,7,7589,3833,3756,3175,3043,535,570,52,50,25,36,5,7,41,50,3213,3091,541,584,80,80,34,45,7,8,3248,3335,2651,2670,507,556,32,29,24,34,4,1,30,45,2679,2713,511,570,51,55,32,42,5,2,585,421,524,373,28,14,20,21,1,2,1,6,11,5,534,378,30,14,29,25,2,3,2,6 -050,01,103,Alabama,Morgan County,3,8,7770,4017,3753,3357,3055,522,566,49,39,29,37,11,9,49,47,3404,3098,531,577,89,76,38,42,12,11,3579,3465,2971,2802,502,551,32,30,28,35,5,6,41,41,3010,2839,508,559,66,63,35,40,5,8,438,288,386,253,20,15,17,9,1,2,6,3,8,6,394,259,23,18,23,13,3,2,7,3 -050,01,103,Alabama,Morgan County,3,9,8241,4079,4162,3460,3496,499,550,45,49,21,30,4,3,50,34,3504,3528,506,555,89,76,24,33,6,4,3787,3961,3207,3315,478,543,32,40,19,28,3,3,48,32,3249,3345,484,547,75,66,22,31,5,4,292,201,253,181,21,7,13,9,2,2,1,0,2,2,255,183,22,8,14,10,2,2,1,0 -050,01,103,Alabama,Morgan County,3,10,9199,4612,4587,3960,3879,513,557,59,51,25,35,0,1,55,64,4012,3939,519,569,105,107,32,41,3,4,4400,4445,3776,3753,497,550,50,48,25,33,0,1,52,60,3825,3809,501,560,94,102,32,38,3,3,212,142,184,126,16,7,9,3,0,2,0,0,3,4,187,130,18,9,11,5,0,3,0,1 -050,01,103,Alabama,Morgan County,3,11,8815,4384,4431,3820,3812,441,495,46,43,23,32,1,1,53,48,3869,3856,445,499,92,83,29,39,2,4,4262,4329,3715,3722,430,493,42,38,22,31,0,0,53,45,3764,3764,434,497,88,76,28,36,1,3,122,102,105,90,11,2,4,5,1,1,1,1,0,3,105,92,11,2,4,7,1,3,1,1 -050,01,103,Alabama,Morgan County,3,12,7893,3844,4049,3341,3519,404,433,46,32,17,24,1,1,35,40,3374,3556,408,436,78,68,20,27,1,3,3750,3965,3258,3440,400,430,40,31,17,24,0,1,35,39,3291,3477,404,432,72,67,20,26,0,2,94,84,83,79,4,3,6,1,0,0,1,0,0,1,83,79,4,4,6,1,0,1,1,1 -050,01,103,Alabama,Morgan County,3,13,7067,3292,3775,2953,3356,255,317,28,30,21,27,1,0,34,45,2986,3399,259,321,60,71,21,30,2,0,3241,3734,2907,3317,252,316,27,30,21,27,1,0,33,44,2939,3359,256,319,59,71,21,30,1,0,51,41,46,39,3,1,1,0,0,0,0,0,1,1,47,40,3,2,1,0,0,0,1,0 -050,01,103,Alabama,Morgan County,3,14,5519,2614,2905,2416,2638,153,205,18,24,10,10,0,0,17,28,2431,2665,157,207,32,49,11,12,1,0,2585,2885,2390,2621,153,204,16,22,10,10,0,0,16,28,2404,2648,157,206,30,47,10,12,0,0,29,20,26,17,0,1,2,2,0,0,0,0,1,0,27,17,0,1,2,2,1,0,1,0 -050,01,103,Alabama,Morgan County,3,15,4196,1889,2307,1763,2115,93,163,6,5,6,8,0,0,21,16,1783,2129,95,165,25,19,7,9,0,1,1864,2283,1739,2093,93,162,6,5,6,8,0,0,20,15,1759,2107,94,164,25,19,6,8,0,0,25,24,24,22,0,1,0,0,0,0,0,0,1,1,24,22,1,1,0,0,1,1,0,1 -050,01,103,Alabama,Morgan County,3,16,3187,1382,1805,1283,1654,75,121,8,6,2,9,0,0,14,15,1297,1666,75,124,21,20,3,10,0,0,1364,1795,1268,1645,74,121,6,6,2,8,0,0,14,15,1282,1657,74,124,19,20,3,9,0,0,18,10,15,9,1,0,2,0,0,1,0,0,0,0,15,9,1,0,2,0,0,1,0,0 -050,01,103,Alabama,Morgan County,3,17,2266,912,1354,870,1251,32,81,4,6,1,5,0,0,5,11,875,1262,33,82,8,17,1,5,0,0,905,1345,863,1242,32,81,4,6,1,5,0,0,5,11,868,1253,33,82,8,17,1,5,0,0,7,9,7,9,0,0,0,0,0,0,0,0,0,0,7,9,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,3,18,1778,530,1248,479,1142,40,87,6,5,1,2,0,0,4,12,482,1154,42,88,9,15,1,3,0,0,527,1240,477,1134,40,87,5,5,1,2,0,0,4,12,480,1146,42,88,8,15,1,3,0,0,3,8,2,8,0,0,1,0,0,0,0,0,0,0,2,8,0,0,1,0,0,0,0,0 -050,01,103,Alabama,Morgan County,4,0,120058,59175,60883,50017,51055,7000,7638,684,614,361,421,97,72,1016,1083,50976,52073,7425,8111,1233,1175,488,557,115,110,53998,56752,45456,47413,6760,7468,481,446,330,397,42,29,929,999,46337,48361,7151,7898,973,959,443,516,54,57,5177,4131,4561,3642,240,170,203,168,31,24,55,43,87,84,4639,3712,274,213,260,216,45,41,61,53 -050,01,103,Alabama,Morgan County,4,1,7587,3914,3673,3113,2900,531,533,45,32,31,29,6,10,188,169,3293,3063,662,658,87,65,57,52,10,13,3224,3018,2500,2313,506,509,18,11,25,25,3,5,172,155,2665,2463,631,625,51,39,48,44,6,7,690,655,613,587,25,24,27,21,6,4,3,5,16,14,628,600,31,33,36,26,9,8,4,6 -050,01,103,Alabama,Morgan County,4,2,7838,4008,3830,3222,3050,547,539,51,47,29,32,20,7,139,155,3356,3198,637,639,87,90,52,47,21,13,3431,3299,2707,2590,528,515,32,21,27,25,12,2,125,146,2827,2731,613,611,61,58,46,39,12,7,577,531,515,460,19,24,19,26,2,7,8,5,14,9,529,467,24,28,26,32,6,8,9,6 -050,01,103,Alabama,Morgan County,4,3,8203,4188,4015,3378,3182,608,617,54,52,33,27,13,14,102,123,3473,3296,666,690,93,93,46,45,14,19,3754,3616,3007,2835,592,600,33,34,26,26,2,7,94,114,3096,2941,646,668,66,70,38,43,3,12,434,399,371,347,16,17,21,18,7,1,11,7,8,9,377,355,20,22,27,23,8,2,11,7 -050,01,103,Alabama,Morgan County,4,4,7770,3954,3816,3143,3014,612,623,57,50,29,17,9,4,104,108,3242,3117,662,680,102,96,46,31,11,9,3596,3504,2836,2741,593,609,43,42,24,17,1,0,99,95,2932,2833,640,661,86,79,39,29,2,2,358,312,307,273,19,14,14,8,5,0,8,4,5,13,310,284,22,19,16,17,7,2,9,7 -050,01,103,Alabama,Morgan County,4,5,7308,3780,3528,3027,2854,595,532,50,40,33,36,9,9,66,57,3086,2910,627,553,86,64,42,48,10,12,3284,3134,2593,2506,571,517,29,23,30,35,4,1,57,52,2644,2557,599,535,59,45,38,46,4,3,496,394,434,348,24,15,21,17,3,1,5,8,9,5,442,353,28,18,27,19,4,2,6,9 -050,01,103,Alabama,Morgan County,4,6,7455,3836,3619,3180,2947,533,547,47,45,28,22,12,4,36,54,3213,2997,545,570,71,77,32,33,13,7,3176,3190,2590,2573,502,527,25,24,26,21,6,2,27,43,2616,2615,510,543,42,49,29,29,7,4,660,429,590,374,31,20,22,21,2,1,6,2,9,11,597,382,35,27,29,28,3,4,6,3 -050,01,103,Alabama,Morgan County,4,7,7619,3841,3778,3180,3054,536,579,60,55,20,35,9,7,36,48,3214,3098,545,592,87,85,23,45,10,7,3250,3339,2663,2668,509,564,30,30,18,33,4,0,26,44,2687,2709,514,575,49,57,21,42,5,0,591,439,517,386,27,15,30,25,2,2,5,7,10,4,527,389,31,17,38,28,2,3,5,7 -050,01,103,Alabama,Morgan County,4,8,7591,3916,3675,3266,2992,505,556,52,38,32,33,11,8,50,48,3315,3035,513,569,86,70,42,42,12,11,3444,3390,2848,2741,482,544,36,28,31,31,6,5,41,41,2888,2777,489,554,63,56,39,40,6,8,472,285,418,251,23,12,16,10,1,2,5,3,9,7,427,258,24,15,23,14,3,2,6,3 -050,01,103,Alabama,Morgan County,4,9,8133,4047,4086,3437,3406,498,557,38,52,20,33,4,4,50,34,3482,3435,505,566,83,80,24,39,4,5,3747,3869,3168,3214,479,545,30,43,19,32,2,3,49,32,3212,3242,485,553,75,69,23,37,2,4,300,217,269,192,19,12,8,9,1,1,2,1,1,2,270,193,20,13,8,11,1,2,2,1 -050,01,103,Alabama,Morgan County,4,10,9074,4484,4590,3851,3885,501,564,54,41,27,34,1,3,50,63,3896,3941,508,576,100,92,32,41,2,7,4270,4439,3665,3749,485,558,46,37,26,31,1,3,47,61,3707,3803,491,569,89,87,31,38,2,7,214,151,186,136,16,6,8,4,1,3,0,0,3,2,189,138,17,7,11,5,1,3,0,0 -050,01,103,Alabama,Morgan County,4,11,8856,4402,4454,3834,3814,439,503,52,51,22,34,0,1,55,51,3887,3859,443,515,102,96,26,38,1,2,4258,4349,3709,3724,427,500,46,46,21,33,0,0,55,46,3762,3766,431,509,96,88,25,35,1,0,144,105,125,90,12,3,6,5,1,1,0,1,0,5,125,93,12,6,6,8,1,3,0,2 -050,01,103,Alabama,Morgan County,4,12,8073,3926,4147,3419,3595,404,457,49,28,15,24,2,1,37,42,3454,3635,408,463,81,65,19,25,3,2,3829,4061,3334,3514,398,455,45,26,15,24,0,1,37,41,3369,3553,402,461,77,62,19,25,1,2,97,86,85,81,6,2,4,2,0,0,2,0,0,1,85,82,6,2,4,3,0,0,2,0 -050,01,103,Alabama,Morgan County,4,13,7270,3400,3870,3037,3418,281,352,29,32,18,27,1,0,34,41,3067,3457,287,355,61,68,19,31,2,1,3344,3814,2986,3367,278,348,27,32,18,27,1,0,34,40,3016,3406,284,351,59,68,19,30,2,0,56,56,51,51,3,4,2,0,0,0,0,0,0,1,51,51,3,4,2,0,0,1,0,1 -050,01,103,Alabama,Morgan County,4,14,5603,2620,2983,2409,2695,157,219,20,24,15,12,0,0,19,33,2427,2727,159,221,36,54,17,14,2,1,2585,2965,2377,2679,157,218,18,23,15,12,0,0,18,33,2395,2711,159,220,33,53,17,14,1,1,35,18,32,16,0,1,2,1,0,0,0,0,1,0,32,16,0,1,3,1,0,0,1,0 -050,01,103,Alabama,Morgan County,4,15,4320,1968,2352,1824,2150,107,166,8,10,6,9,0,0,23,17,1847,2167,109,167,28,25,7,9,0,1,1943,2328,1801,2129,107,165,8,9,6,9,0,0,21,16,1822,2145,108,166,27,24,7,9,0,0,25,24,23,21,0,1,0,1,0,0,0,0,2,1,25,22,1,1,1,1,0,0,0,1 -050,01,103,Alabama,Morgan County,4,16,3224,1405,1819,1305,1667,76,123,6,5,2,8,0,0,16,16,1321,1683,78,123,21,21,3,8,0,0,1388,1807,1290,1656,76,123,4,5,2,7,0,0,16,16,1306,1672,78,123,19,21,3,7,0,0,17,12,15,11,0,0,2,0,0,1,0,0,0,0,15,11,0,0,2,0,0,1,0,0 -050,01,103,Alabama,Morgan County,4,17,2295,922,1373,882,1266,27,84,5,6,1,6,0,0,7,11,889,1277,27,84,12,17,1,6,0,0,913,1365,873,1258,27,84,5,6,1,6,0,0,7,11,880,1269,27,84,12,17,1,6,0,0,9,8,9,8,0,0,0,0,0,0,0,0,0,0,9,8,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,4,18,1839,564,1275,510,1166,43,87,7,6,0,3,0,0,4,13,514,1178,44,90,10,17,0,3,0,0,562,1265,509,1156,43,87,6,6,0,3,0,0,4,13,513,1168,44,90,9,17,0,3,0,0,2,10,1,10,0,0,1,0,0,0,0,0,0,0,1,10,0,0,1,0,0,0,0,0 -050,01,103,Alabama,Morgan County,5,0,120148,59190,60958,49886,51055,7053,7662,677,602,379,443,98,72,1097,1124,50923,52121,7547,8148,1237,1168,501,582,130,102,54115,56865,45402,47434,6819,7494,496,446,347,422,42,30,1009,1039,46363,48427,7268,7941,998,961,465,542,64,51,5075,4093,4484,3621,234,168,181,156,32,21,56,42,88,85,4560,3694,279,207,239,207,36,40,66,51 -050,01,103,Alabama,Morgan County,5,1,7462,3846,3616,3049,2874,516,509,35,22,35,34,4,9,207,168,3248,3036,668,632,82,58,58,50,8,13,3197,3002,2457,2314,497,489,19,9,30,30,2,5,192,155,2642,2465,640,605,57,38,53,44,6,7,649,614,592,560,19,20,16,13,5,4,2,4,15,13,606,571,28,27,25,20,5,6,2,6 -050,01,103,Alabama,Morgan County,5,2,7757,3925,3832,3141,3050,532,543,41,43,29,27,17,10,165,159,3300,3204,641,648,84,80,49,47,20,13,3341,3311,2622,2589,508,524,25,23,25,22,11,3,150,150,2770,2734,608,626,58,57,44,40,13,5,584,521,519,461,24,19,16,20,4,5,6,7,15,9,530,470,33,22,26,23,5,7,7,8 -050,01,103,Alabama,Morgan County,5,3,8206,4212,3994,3390,3176,615,591,56,47,29,30,19,12,103,138,3483,3309,677,673,91,97,43,46,25,14,3745,3563,2989,2797,598,574,38,28,23,29,4,6,93,129,3075,2922,656,650,67,71,36,44,7,7,467,431,401,379,17,17,18,19,6,1,15,6,10,9,408,387,21,23,24,26,7,2,18,7 -050,01,103,Alabama,Morgan County,5,4,7562,3873,3689,3080,2923,588,593,60,51,25,17,8,5,112,100,3187,3018,648,643,108,90,40,30,10,9,3524,3397,2774,2663,574,583,46,44,22,17,1,1,107,89,2876,2749,631,630,90,77,36,27,3,3,349,292,306,260,14,10,14,7,3,0,7,4,5,11,311,269,17,13,18,13,4,3,7,6 -050,01,103,Alabama,Morgan County,5,5,7486,3844,3642,3035,2912,630,554,55,44,35,51,8,8,81,73,3113,2979,666,588,94,81,47,61,12,9,3411,3265,2656,2582,611,540,37,28,31,50,2,1,74,64,2727,2642,643,570,71,58,43,59,5,2,433,377,379,330,19,14,18,16,4,1,6,7,7,9,386,337,23,18,23,23,4,2,7,7 -050,01,103,Alabama,Morgan County,5,6,7202,3687,3515,3030,2847,523,548,40,41,36,19,12,5,46,55,3073,2898,541,568,65,66,43,32,14,6,3123,3112,2528,2505,498,520,22,21,33,18,6,2,36,46,2561,2548,509,535,42,43,40,29,7,3,564,403,502,342,25,28,18,20,3,1,6,3,10,9,512,350,32,33,23,23,3,3,7,3 -050,01,103,Alabama,Morgan County,5,7,7678,3905,3773,3220,3059,557,583,60,51,31,34,10,5,27,41,3245,3099,565,597,81,76,34,41,12,5,3281,3343,2668,2678,529,567,33,27,28,33,5,0,18,38,2685,2715,533,579,47,49,31,40,6,0,624,430,552,381,28,16,27,24,3,1,5,5,9,3,560,384,32,18,34,27,3,1,6,5 -050,01,103,Alabama,Morgan County,5,8,7503,3843,3660,3180,2976,523,547,49,37,29,32,10,6,52,62,3227,3034,535,563,87,81,35,45,12,10,3384,3354,2780,2710,493,534,35,22,28,31,6,3,42,54,2818,2761,502,545,66,61,34,41,7,5,459,306,400,266,30,13,14,15,1,1,4,3,10,8,409,273,33,18,21,20,1,4,5,5 -050,01,103,Alabama,Morgan County,5,9,8066,4036,4030,3409,3318,504,574,43,61,20,36,6,7,54,34,3458,3347,512,581,88,88,27,40,6,8,3728,3809,3136,3127,485,560,32,53,19,34,3,5,53,30,3184,3153,493,566,77,76,25,38,3,6,308,221,273,191,19,14,11,8,1,2,3,2,1,4,274,194,19,15,11,12,2,2,3,2 -050,01,103,Alabama,Morgan County,5,10,8950,4386,4564,3765,3861,486,567,53,35,31,36,1,4,50,61,3810,3919,491,576,98,82,35,43,3,6,4155,4397,3564,3707,470,563,43,31,30,33,1,3,47,60,3608,3764,475,572,85,77,34,40,1,5,231,167,201,154,16,4,10,4,1,3,0,1,3,1,202,155,16,4,13,5,1,3,2,1 -050,01,103,Alabama,Morgan County,5,11,8882,4451,4431,3867,3780,457,518,55,50,22,29,0,0,50,54,3916,3830,460,525,98,92,25,35,2,4,4306,4334,3739,3697,446,514,49,45,22,29,0,0,50,49,3788,3742,449,520,92,84,25,33,2,4,145,97,128,83,11,4,6,5,0,0,0,0,0,5,128,88,11,5,6,8,0,2,0,0 -050,01,103,Alabama,Morgan County,5,12,8224,3969,4255,3459,3696,409,464,48,30,13,25,1,1,39,39,3497,3732,414,468,81,62,15,30,2,3,3869,4163,3373,3612,400,462,45,27,12,24,0,1,39,37,3411,3647,405,465,78,57,14,28,1,3,100,92,86,84,9,2,3,3,1,1,1,0,0,2,86,85,9,3,3,5,1,2,1,0 -050,01,103,Alabama,Morgan County,5,13,7201,3402,3799,3029,3319,290,374,34,33,15,29,1,0,33,44,3061,3361,293,377,64,72,16,33,1,1,3334,3732,2969,3258,287,369,30,33,15,29,0,0,33,43,3001,3299,290,372,60,72,16,32,0,0,68,67,60,61,3,5,4,0,0,0,1,0,0,1,60,62,3,5,4,0,0,1,1,1 -050,01,103,Alabama,Morgan County,5,14,6006,2776,3230,2543,2918,168,239,20,24,18,17,1,0,26,32,2566,2950,173,243,43,54,20,18,1,0,2743,3214,2513,2902,168,239,18,24,18,17,1,0,25,32,2535,2934,172,243,40,54,20,18,1,0,33,16,30,16,0,0,2,0,0,0,0,0,1,0,31,16,1,0,3,0,0,0,0,0 -050,01,103,Alabama,Morgan County,5,15,4499,2056,2443,1907,2228,108,168,11,16,8,9,0,0,22,22,1928,2248,111,171,29,35,10,11,1,0,2027,2418,1881,2208,108,166,10,14,8,9,0,0,20,21,1900,2228,110,168,27,33,10,10,1,0,29,25,26,20,0,2,1,2,0,0,0,0,2,1,28,20,1,3,2,2,0,1,0,0 -050,01,103,Alabama,Morgan County,5,16,3249,1438,1811,1340,1680,76,107,5,3,2,7,0,0,15,14,1355,1693,78,108,19,17,2,7,1,0,1420,1794,1324,1664,76,107,3,3,2,6,0,0,15,14,1339,1677,78,108,17,17,2,6,1,0,18,17,16,16,0,0,2,0,0,1,0,0,0,0,16,16,0,0,2,0,0,1,0,0 -050,01,103,Alabama,Morgan County,5,17,2331,941,1390,898,1264,29,100,3,6,0,8,0,0,11,12,908,1275,30,102,13,15,1,10,0,0,931,1386,888,1260,29,100,3,6,0,8,0,0,11,12,898,1271,30,102,13,15,1,10,0,0,10,4,10,4,0,0,0,0,0,0,0,0,0,0,10,4,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,5,18,1884,600,1284,544,1174,42,83,9,8,1,3,0,0,4,16,548,1189,44,85,12,22,1,3,0,1,596,1271,541,1161,42,83,8,8,1,3,0,0,4,16,545,1176,44,85,11,22,1,3,0,1,4,13,3,13,0,0,1,0,0,0,0,0,0,0,3,13,0,0,1,0,0,0,0,0 -050,01,103,Alabama,Morgan County,6,0,119625,58869,60756,49551,50792,7083,7684,656,593,357,451,96,71,1126,1165,50610,51885,7571,8207,1228,1184,490,600,122,108,53859,56668,45109,47170,6863,7516,481,440,325,430,37,32,1044,1080,46099,48193,7317,8001,1002,979,444,558,57,57,5010,4088,4442,3622,220,168,175,153,32,21,59,39,82,85,4511,3692,254,206,226,205,46,42,65,51 -050,01,103,Alabama,Morgan County,6,1,7180,3720,3460,2933,2750,513,474,34,16,32,37,5,6,203,177,3127,2917,656,608,76,53,58,59,11,10,3112,2885,2376,2218,500,457,18,6,28,35,1,4,189,165,2558,2374,638,585,53,36,52,56,5,7,608,575,557,532,13,17,16,10,4,2,4,2,14,12,569,543,18,23,23,17,6,3,6,3 -050,01,103,Alabama,Morgan County,6,2,7622,3876,3746,3099,2982,535,537,43,36,27,31,12,12,160,148,3250,3126,641,634,86,72,47,48,15,15,3287,3209,2576,2501,511,520,23,19,22,24,7,5,148,140,2718,2638,612,613,57,51,39,41,9,7,589,537,523,481,24,17,20,17,5,7,5,7,12,8,532,488,29,21,29,21,8,7,6,8 -050,01,103,Alabama,Morgan County,6,3,8131,4177,3954,3379,3130,579,589,44,54,27,25,22,8,126,148,3499,3274,651,679,85,103,47,46,23,13,3683,3512,2950,2746,562,570,30,29,24,24,4,4,113,139,3058,2882,630,654,64,73,41,42,5,7,494,442,429,384,17,19,14,25,3,1,18,4,13,9,441,392,21,25,21,30,6,4,18,6 -050,01,103,Alabama,Morgan County,6,4,7481,3839,3642,3051,2882,597,573,57,44,22,20,5,9,107,114,3156,2989,650,634,102,88,34,36,6,14,3502,3337,2757,2614,581,560,43,37,18,20,0,3,103,103,2858,2712,633,617,86,74,29,33,1,7,337,305,294,268,16,13,14,7,4,0,5,6,4,11,298,277,17,17,16,14,5,3,5,7 -050,01,103,Alabama,Morgan County,6,5,7570,3871,3699,3048,2936,646,578,52,49,22,50,11,6,92,80,3133,3007,683,616,99,87,35,65,13,8,3458,3358,2682,2637,627,569,42,32,17,50,3,0,87,70,2763,2699,662,603,85,64,30,62,5,1,413,341,366,299,19,9,10,17,5,0,8,6,5,10,370,308,21,13,14,23,5,3,8,7 -050,01,103,Alabama,Morgan County,6,6,7099,3634,3465,2964,2782,529,568,39,30,38,27,10,6,54,52,3013,2827,549,589,69,61,49,35,11,10,3104,3082,2496,2452,506,533,18,24,34,25,5,3,45,45,2538,2493,520,549,43,50,43,30,5,5,530,383,468,330,23,35,21,6,4,2,5,3,9,7,475,334,29,40,26,11,6,5,6,5 -050,01,103,Alabama,Morgan County,6,7,7504,3781,3723,3145,3034,517,551,60,55,29,33,10,5,20,45,3163,3076,523,567,74,78,33,42,11,5,3180,3303,2608,2664,495,540,29,27,26,32,6,0,16,40,2622,2703,500,553,39,47,29,40,6,0,601,420,537,370,22,11,31,28,3,1,4,5,4,5,541,373,23,14,35,31,4,2,5,5 -050,01,103,Alabama,Morgan County,6,8,7349,3727,3622,3109,2954,489,537,46,36,24,31,7,5,52,59,3157,3011,502,548,83,75,29,41,10,9,3275,3295,2707,2670,463,524,36,18,24,30,5,1,40,52,2744,2721,469,532,66,53,29,39,8,3,452,327,402,284,26,13,10,18,0,1,2,4,12,7,413,290,33,16,17,22,0,2,2,6 -050,01,103,Alabama,Morgan County,6,9,8007,3999,4008,3339,3294,527,574,47,57,30,33,9,9,47,41,3381,3333,536,586,86,86,34,38,9,9,3688,3777,3065,3095,510,559,35,48,28,32,4,7,46,36,3107,3130,518,568,73,73,32,37,4,7,311,231,274,199,17,15,12,9,2,1,5,2,1,5,274,203,18,18,13,13,2,1,5,2 -050,01,103,Alabama,Morgan County,6,10,8694,4262,4432,3644,3748,483,559,46,37,32,33,2,4,55,51,3693,3793,493,567,91,76,37,41,4,8,4015,4249,3432,3581,465,554,35,31,31,30,1,4,51,49,3478,3625,474,562,77,70,35,36,3,7,247,183,212,167,18,5,11,6,1,3,1,0,4,2,215,168,19,5,14,6,2,5,1,1 -050,01,103,Alabama,Morgan County,6,11,8865,4421,4444,3832,3748,469,556,57,47,20,30,0,0,43,63,3872,3807,472,567,95,101,25,36,2,1,4269,4348,3698,3665,456,552,52,44,20,29,0,0,43,58,3738,3719,459,563,90,95,25,33,2,0,152,96,134,83,13,4,5,3,0,1,0,0,0,5,134,88,13,4,5,6,0,3,0,1 -050,01,103,Alabama,Morgan County,6,12,8354,4085,4269,3542,3702,428,458,50,38,14,25,1,1,50,45,3590,3746,435,465,94,78,17,30,1,2,3979,4172,3450,3617,420,455,46,32,13,24,0,1,50,43,3498,3659,427,462,90,70,16,29,0,2,106,97,92,85,8,3,4,6,1,1,1,0,0,2,92,87,8,3,4,8,1,1,1,0 -050,01,103,Alabama,Morgan County,6,13,7269,3437,3832,3037,3323,322,408,30,33,12,28,1,0,35,40,3070,3360,323,413,62,69,14,30,3,2,3368,3766,2974,3259,319,406,29,33,12,28,0,0,34,40,3006,3296,320,411,61,69,14,30,1,2,69,66,63,64,3,2,1,0,0,0,1,0,1,0,64,64,3,2,1,0,0,0,2,0 -050,01,103,Alabama,Morgan County,6,14,6119,2791,3328,2540,3001,181,248,22,24,16,23,1,0,31,32,2568,3030,184,251,51,54,18,25,2,2,2755,3302,2509,2979,180,245,19,24,16,23,1,0,30,31,2536,3007,183,248,47,53,18,24,2,2,36,26,31,22,1,3,3,0,0,0,0,0,1,1,32,23,1,3,4,1,0,1,0,0 -050,01,103,Alabama,Morgan County,6,15,4696,2150,2546,2001,2310,113,184,12,19,8,8,0,0,16,25,2016,2332,116,187,25,43,9,9,0,0,2121,2526,1974,2293,113,182,11,18,8,8,0,0,15,25,1989,2315,115,185,24,42,8,9,0,0,29,20,27,17,0,2,1,1,0,0,0,0,1,0,27,17,1,2,1,1,1,0,0,0 -050,01,103,Alabama,Morgan County,6,16,3374,1483,1891,1382,1763,76,103,4,3,2,7,0,0,19,15,1401,1776,76,105,23,17,2,8,0,0,1463,1870,1364,1744,76,103,3,3,2,6,0,0,18,14,1382,1757,76,105,21,16,2,6,0,0,20,21,18,19,0,0,1,0,0,1,0,0,1,1,19,19,0,0,2,1,0,2,0,0 -050,01,103,Alabama,Morgan County,6,17,2346,945,1401,890,1267,39,106,3,6,1,8,0,0,12,14,902,1281,39,107,14,20,1,8,1,0,934,1396,879,1262,39,106,3,6,1,8,0,0,12,14,891,1276,39,107,14,20,1,8,1,0,11,5,11,5,0,0,0,0,0,0,0,0,0,0,11,5,0,0,0,0,0,0,0,0 -050,01,103,Alabama,Morgan County,6,18,1965,671,1294,616,1186,40,81,10,9,1,2,0,0,4,16,619,1200,42,84,13,23,1,3,0,0,666,1281,612,1173,40,81,9,9,1,2,0,0,4,16,615,1187,42,84,12,23,1,3,0,0,5,13,4,13,0,0,1,0,0,0,0,0,0,0,4,13,0,0,1,0,0,0,0,0 -050,01,103,Alabama,Morgan County,7,0,119496,58824,60672,49378,50658,7184,7691,652,575,352,452,91,70,1167,1226,50484,51819,7714,8241,1223,1192,499,619,123,95,53783,56505,44892,46956,6963,7520,482,434,325,434,37,31,1084,1130,45931,48030,7452,8021,1009,996,455,583,55,49,5041,4167,4486,3702,221,171,170,141,27,18,54,39,83,96,4553,3789,262,220,214,196,44,36,68,46 -050,01,103,Alabama,Morgan County,7,1,7176,3675,3501,2902,2798,530,451,18,14,30,39,1,4,194,195,3092,2988,666,593,56,52,59,65,7,8,3120,2912,2374,2247,521,438,13,10,29,38,0,3,183,176,2554,2419,655,568,45,38,53,63,4,6,555,589,528,551,9,13,5,4,1,1,1,1,11,19,538,569,11,25,11,14,6,2,3,2 -050,01,103,Alabama,Morgan County,7,2,7668,3918,3750,3119,2943,539,567,53,41,23,28,13,11,171,160,3280,3096,654,675,90,82,47,51,22,14,3292,3183,2563,2441,518,548,28,20,18,22,8,5,157,147,2716,2583,625,650,59,55,39,42,12,6,626,567,556,502,21,19,25,21,5,6,5,6,14,13,564,513,29,25,31,27,8,9,10,8 -050,01,103,Alabama,Morgan County,7,3,8026,4120,3906,3319,3107,578,578,43,41,27,23,18,10,135,147,3450,3250,656,668,86,88,47,45,22,13,3600,3454,2868,2705,556,562,29,22,25,22,3,5,119,138,2985,2839,626,646,65,63,42,43,4,8,520,452,451,402,22,16,14,19,2,1,15,5,16,9,465,411,30,22,21,25,5,2,18,5 -050,01,103,Alabama,Morgan County,7,4,7380,3813,3567,3057,2822,560,552,51,41,18,24,6,9,121,119,3173,2937,628,615,100,88,31,40,6,12,3451,3246,2736,2542,548,534,34,33,15,23,1,4,117,110,2848,2648,613,594,81,75,27,38,1,7,362,321,321,280,12,18,17,8,3,1,5,5,4,9,325,289,15,21,19,13,4,2,5,5 -050,01,103,Alabama,Morgan County,7,5,7459,3820,3639,3020,2873,627,584,51,41,24,48,9,7,89,86,3104,2954,665,628,93,81,38,59,12,9,3452,3329,2698,2597,607,576,42,31,19,48,2,0,84,77,2777,2669,642,615,81,65,33,59,4,2,368,310,322,276,20,8,9,10,5,0,7,7,5,9,327,285,23,13,12,16,5,0,8,7 -050,01,103,Alabama,Morgan County,7,6,7169,3662,3507,2936,2808,575,577,37,37,35,24,10,6,69,55,2999,2857,602,600,73,63,48,37,12,8,3152,3142,2485,2501,548,539,20,28,33,24,5,2,61,48,2541,2545,570,558,51,51,46,34,6,3,510,365,451,307,27,38,17,9,2,0,5,4,8,7,458,312,32,42,22,12,2,3,6,5 -050,01,103,Alabama,Morgan County,7,7,7446,3766,3680,3130,3031,513,524,55,46,31,30,10,5,27,44,3156,3070,523,541,76,68,33,42,10,6,3177,3260,2602,2654,492,514,30,25,26,29,6,1,21,37,2622,2687,499,527,47,42,28,39,6,2,589,420,528,377,21,10,25,21,5,1,4,4,6,7,534,383,24,14,29,26,5,3,4,4 -050,01,103,Alabama,Morgan County,7,8,7332,3693,3639,3060,2965,507,532,50,43,20,39,5,6,51,54,3105,3017,517,544,88,83,28,48,7,8,3231,3306,2650,2680,482,519,36,21,20,38,4,1,39,47,2687,2725,488,528,66,56,25,45,5,1,462,333,410,285,25,13,14,22,0,1,1,5,12,7,418,292,29,16,22,27,3,3,2,7 -050,01,103,Alabama,Morgan County,7,9,7754,3898,3856,3227,3143,535,567,46,52,32,34,11,9,47,51,3271,3191,544,580,82,89,38,39,12,9,3580,3615,2947,2934,519,551,33,43,30,33,5,7,46,47,2990,2978,527,562,68,78,36,38,6,7,318,241,280,209,16,16,13,9,2,1,6,2,1,4,281,213,17,18,14,11,2,1,6,2 -050,01,103,Alabama,Morgan County,7,10,8417,4125,4292,3504,3617,483,566,46,37,36,26,5,2,51,44,3552,3653,493,575,91,69,40,34,6,5,3865,4099,3282,3440,464,562,33,30,35,24,2,2,49,41,3328,3474,472,570,78,61,38,31,3,4,260,193,222,177,19,4,13,7,1,2,3,0,2,3,224,179,21,5,13,8,2,3,3,1 -050,01,103,Alabama,Morgan County,7,11,8973,4520,4453,3884,3764,514,537,61,46,21,33,0,0,40,73,3924,3833,518,547,97,109,23,42,1,1,4344,4342,3731,3667,498,531,55,44,21,31,0,0,39,69,3770,3732,502,540,90,104,23,39,1,1,176,111,153,97,16,6,6,2,0,2,0,0,1,4,154,101,16,7,7,5,0,3,0,0 -050,01,103,Alabama,Morgan County,7,12,8356,4066,4290,3534,3698,415,473,49,40,15,28,1,0,52,51,3583,3744,422,479,91,86,22,34,1,0,3959,4192,3439,3612,407,471,47,34,14,27,0,0,52,48,3488,3657,414,475,89,78,21,31,0,0,107,98,95,86,8,2,2,6,1,1,1,0,0,3,95,87,8,4,2,8,1,3,1,0 -050,01,103,Alabama,Morgan County,7,13,7362,3476,3886,3062,3371,329,423,41,27,10,28,1,1,33,36,3089,3403,335,429,73,61,11,29,1,1,3395,3821,2991,3309,325,420,36,27,10,28,0,1,33,36,3018,3341,331,426,68,61,11,29,0,1,81,65,71,62,4,3,5,0,0,0,1,0,0,0,71,62,4,3,5,0,0,0,1,0 -050,01,103,Alabama,Morgan County,7,14,6278,2867,3411,2585,3055,210,269,20,25,17,25,1,0,34,37,2616,3090,215,273,50,60,20,27,1,1,2833,3374,2555,3022,209,266,18,25,17,25,1,0,33,36,2586,3056,213,270,48,59,19,27,1,1,34,37,30,33,1,3,2,0,0,0,0,0,1,1,30,34,2,3,2,1,1,0,0,0 -050,01,103,Alabama,Morgan County,7,15,4824,2213,2611,2060,2368,121,189,12,23,6,5,0,0,14,26,2074,2394,123,189,24,48,6,6,0,0,2182,2589,2031,2350,121,188,11,20,6,5,0,0,13,26,2044,2376,123,188,22,45,6,6,0,0,31,22,29,18,0,1,1,3,0,0,0,0,1,0,30,18,0,1,2,3,0,0,0,0 -050,01,103,Alabama,Morgan County,7,16,3449,1505,1944,1406,1802,68,113,5,5,5,8,0,0,21,16,1425,1818,71,114,23,20,5,9,3,0,1483,1924,1386,1784,68,112,4,5,5,8,0,0,20,15,1405,1799,70,113,22,20,5,8,2,0,22,20,20,18,0,1,1,0,0,0,0,0,1,1,20,19,1,1,1,0,0,1,1,0 -050,01,103,Alabama,Morgan County,7,17,2360,964,1396,907,1264,40,101,4,7,1,8,0,0,12,16,919,1280,40,101,15,22,2,9,0,0,951,1388,894,1257,40,101,4,7,1,7,0,0,12,16,906,1273,40,101,15,22,2,8,0,0,13,8,13,7,0,0,0,0,0,1,0,0,0,0,13,7,0,0,0,0,0,1,0,0 -050,01,103,Alabama,Morgan County,7,18,2067,723,1344,666,1229,40,88,10,9,1,2,0,0,6,16,672,1244,42,90,15,23,1,3,0,0,716,1329,660,1214,40,88,9,9,1,2,0,0,6,16,666,1229,42,90,14,23,1,3,0,0,7,15,6,15,0,0,1,0,0,0,0,0,0,0,6,15,0,0,1,0,0,0,0,0 -050,01,103,Alabama,Morgan County,8,0,119316,58794,60522,49247,50383,7272,7762,674,606,344,462,93,71,1164,1238,50358,51541,7796,8328,1237,1207,504,633,116,108,53710,56289,44713,46657,7054,7577,499,444,315,442,44,34,1085,1135,45754,47723,7540,8094,1019,989,459,588,59,60,5084,4233,4534,3726,218,185,175,162,29,20,49,37,79,103,4604,3818,256,234,218,218,45,45,57,48 -050,01,103,Alabama,Morgan County,8,1,7049,3573,3476,2824,2762,521,476,11,31,28,23,5,4,184,180,3006,2931,650,612,50,61,55,48,5,10,3042,2889,2322,2219,509,466,10,13,26,23,1,2,174,166,2494,2375,634,594,44,37,51,44,1,6,531,587,502,543,12,10,1,18,2,0,4,2,10,14,512,556,16,18,6,24,4,4,4,4 -050,01,103,Alabama,Morgan County,8,2,7595,3946,3649,3131,2862,550,536,57,33,26,40,10,10,172,168,3294,3023,670,653,91,74,49,61,18,12,3309,3076,2564,2362,529,513,30,11,20,34,6,5,160,151,2718,2507,642,620,61,45,41,53,11,6,637,573,567,500,21,23,27,22,6,6,4,5,12,17,576,516,28,33,30,29,8,8,7,6 -050,01,103,Alabama,Morgan County,8,3,7872,4030,3842,3269,3066,553,552,43,40,19,26,16,10,130,148,3396,3206,628,640,84,81,41,50,17,16,3500,3351,2796,2632,535,532,26,20,17,24,7,5,119,138,2914,2763,607,617,60,56,36,45,7,11,530,491,473,434,18,20,17,20,2,2,9,5,11,10,482,443,21,23,24,25,5,5,10,5 -050,01,103,Alabama,Morgan County,8,4,7502,3902,3600,3111,2836,578,552,56,52,23,29,9,12,125,119,3234,2950,644,620,104,98,41,43,12,15,3508,3245,2772,2531,563,533,36,39,19,27,1,6,117,109,2887,2635,626,596,79,78,33,39,3,8,394,355,339,305,15,19,20,13,4,2,8,6,8,10,347,315,18,24,25,20,8,4,9,7 -050,01,103,Alabama,Morgan County,8,5,7182,3649,3533,2849,2737,621,617,52,38,22,49,13,5,92,87,2937,2820,659,661,97,74,37,63,13,8,3308,3235,2551,2473,601,607,45,29,17,49,5,1,89,76,2637,2546,638,645,87,60,32,61,5,3,341,298,298,264,20,10,7,9,5,0,8,4,3,11,300,274,21,16,10,14,5,2,8,5 -050,01,103,Alabama,Morgan County,8,6,7309,3728,3581,2976,2885,596,565,41,37,35,25,6,8,74,61,3046,2939,625,592,78,65,51,39,9,9,3233,3214,2535,2572,574,531,25,29,32,25,3,3,64,54,2596,2620,596,554,58,54,46,37,6,4,495,367,441,313,22,34,16,8,3,0,3,5,10,7,450,319,29,38,20,11,5,2,3,5 -050,01,103,Alabama,Morgan County,8,7,7280,3733,3547,3091,2918,526,516,55,46,21,22,10,4,30,41,3118,2956,536,529,72,69,27,30,10,6,3198,3177,2611,2595,504,499,31,27,18,22,8,1,26,33,2634,2626,513,511,45,44,24,28,8,2,535,370,480,323,22,17,24,19,3,0,2,3,4,8,484,330,23,18,27,25,3,2,2,4 -050,01,103,Alabama,Morgan County,8,8,7510,3786,3724,3133,3026,532,544,51,51,20,44,6,6,44,53,3174,3072,542,558,84,83,26,58,9,9,3281,3368,2680,2720,510,530,33,28,19,43,4,1,35,46,2712,2760,516,540,61,57,23,55,5,3,505,356,453,306,22,14,18,23,1,1,2,5,9,7,462,312,26,18,23,26,3,3,4,6 -050,01,103,Alabama,Morgan County,8,9,7601,3880,3721,3230,3011,510,566,54,44,31,36,9,8,46,56,3269,3062,523,578,91,84,36,46,10,12,3525,3480,2919,2807,493,551,38,32,31,34,5,6,39,50,2952,2854,503,562,70,66,35,42,6,8,355,241,311,204,17,15,16,12,0,2,4,2,7,6,317,208,20,16,21,18,1,4,4,4 -050,01,103,Alabama,Morgan County,8,10,8130,3946,4184,3332,3514,479,561,41,42,36,23,6,3,52,41,3380,3552,488,569,85,75,42,27,7,3,3686,3994,3108,3341,459,555,31,35,34,21,3,3,51,39,3155,3377,467,562,74,66,40,25,4,3,260,190,224,173,20,6,10,7,2,2,3,0,1,2,225,175,21,7,11,9,2,2,3,0 -050,01,103,Alabama,Morgan County,8,11,8940,4469,4471,3797,3763,542,548,61,48,24,36,0,0,45,76,3840,3832,548,561,98,109,27,46,2,1,4294,4342,3643,3650,528,541,56,46,24,33,0,0,43,72,3685,3716,532,552,92,104,27,42,1,1,175,129,154,113,14,7,5,2,0,3,0,0,2,4,155,116,16,9,6,5,0,4,1,0 -050,01,103,Alabama,Morgan County,8,12,8458,4183,4275,3668,3656,404,494,47,42,18,28,1,0,45,55,3712,3706,409,504,85,92,23,32,1,3,4062,4182,3563,3573,394,492,43,38,17,27,0,0,45,52,3607,3620,399,500,81,86,22,30,0,2,121,93,105,83,10,2,4,4,1,1,1,0,0,3,105,86,10,4,4,6,1,2,1,1 -050,01,103,Alabama,Morgan County,8,13,7467,3548,3919,3099,3398,358,425,47,28,9,28,1,1,34,39,3131,3435,360,429,78,66,12,28,1,1,3459,3843,3019,3328,355,422,42,26,9,28,0,1,34,38,3051,3364,357,426,73,63,12,28,0,1,89,76,80,70,3,3,5,2,0,0,1,0,0,1,80,71,3,3,5,3,0,0,1,0 -050,01,103,Alabama,Morgan County,8,14,6447,2916,3531,2617,3145,222,299,23,26,18,24,1,0,35,37,2648,3180,226,302,54,58,21,29,2,1,2873,3491,2578,3109,220,296,22,26,18,24,1,0,34,36,2608,3144,223,298,53,58,21,28,2,1,43,40,39,36,2,3,1,0,0,0,0,0,1,1,40,36,3,4,1,0,0,1,0,0 -050,01,103,Alabama,Morgan County,8,15,4925,2269,2656,2100,2413,131,181,15,25,6,9,0,0,17,28,2116,2441,133,183,31,52,6,9,0,0,2241,2637,2074,2398,131,180,13,22,6,9,0,0,17,28,2090,2426,133,182,29,49,6,9,0,0,28,19,26,15,0,1,2,3,0,0,0,0,0,0,26,15,0,1,2,3,0,0,0,0 -050,01,103,Alabama,Morgan County,8,16,3514,1505,2009,1408,1845,68,135,6,6,5,8,0,0,18,15,1425,1859,71,136,22,19,6,10,0,1,1482,1987,1387,1825,68,134,5,6,5,8,0,0,17,14,1403,1838,70,135,20,19,6,9,0,0,23,22,21,20,0,1,1,0,0,0,0,0,1,1,22,21,1,1,2,0,0,1,0,1 -050,01,103,Alabama,Morgan County,8,17,2425,981,1444,914,1313,46,99,5,6,2,9,0,0,14,17,927,1329,47,101,18,23,3,9,0,0,967,1435,900,1305,46,99,5,6,2,8,0,0,14,17,913,1321,47,101,18,23,3,8,0,0,14,9,14,8,0,0,0,0,0,1,0,0,0,0,14,8,0,0,0,0,0,1,0,0 -050,01,103,Alabama,Morgan County,8,18,2110,750,1360,698,1233,35,96,9,11,1,3,0,0,7,17,705,1248,37,100,15,24,1,5,0,1,742,1343,691,1217,35,96,8,11,1,3,0,0,7,16,698,1231,37,99,14,24,1,5,0,1,8,17,7,16,0,0,1,0,0,0,0,0,0,1,7,17,0,1,1,0,0,0,0,0 -050,01,103,Alabama,Morgan County,9,0,119090,58635,60455,48952,50165,7363,7871,672,606,357,469,101,77,1190,1267,50075,51345,7914,8457,1246,1219,513,641,126,116,53354,56077,44239,46308,7139,7686,495,444,327,445,46,35,1108,1159,45292,47393,7656,8223,1018,997,468,595,66,65,5281,4378,4713,3857,224,185,177,162,30,24,55,42,82,108,4783,3952,258,234,228,222,45,46,60,51 -050,01,103,Alabama,Morgan County,9,1,6983,3541,3442,2780,2701,533,496,11,31,27,36,12,6,178,172,2950,2866,663,623,49,61,48,59,13,10,2963,2853,2246,2167,519,482,10,15,22,31,2,2,164,156,2404,2317,641,600,42,39,41,50,3,5,578,589,534,534,14,14,1,16,5,5,10,4,14,16,546,549,22,23,7,22,7,9,10,5 -050,01,103,Alabama,Morgan County,9,2,7668,3947,3721,3111,2923,552,544,47,25,30,34,10,10,197,185,3301,3100,690,670,93,71,60,56,11,14,3298,3122,2525,2383,533,528,25,8,25,30,5,5,185,168,2704,2545,664,646,66,44,51,50,6,7,649,599,586,540,19,16,22,17,5,4,5,5,12,17,597,555,26,24,27,27,9,6,5,7 -050,01,103,Alabama,Morgan County,9,3,7884,4090,3794,3284,3032,581,537,47,45,26,25,20,7,132,148,3410,3173,661,627,87,90,44,49,22,13,3515,3269,2762,2568,568,514,26,24,23,21,12,4,124,138,2884,2701,644,601,62,61,38,43,13,9,575,525,522,464,13,23,21,21,3,4,8,3,8,10,526,472,17,26,25,29,6,6,9,4 -050,01,103,Alabama,Morgan County,9,4,7518,3882,3636,3120,2857,557,571,53,54,21,27,10,15,121,112,3236,2964,620,635,101,90,37,45,12,18,3446,3226,2740,2504,540,552,35,34,18,25,1,7,112,104,2848,2603,602,613,76,66,31,42,2,10,436,410,380,353,17,19,18,20,3,2,9,8,9,8,388,361,18,22,25,24,6,3,10,8 -050,01,103,Alabama,Morgan County,9,5,6889,3475,3414,2691,2649,612,601,46,33,20,27,7,2,99,102,2787,2742,655,652,91,71,39,45,9,6,3133,3119,2396,2387,587,589,39,28,16,27,0,0,95,88,2488,2468,629,633,81,60,34,43,2,3,342,295,295,262,25,12,7,5,4,0,7,2,4,14,299,274,26,19,10,11,5,2,7,3 -050,01,103,Alabama,Morgan County,9,6,7399,3805,3594,3038,2869,596,565,54,41,33,43,9,10,75,66,3108,2932,625,593,93,72,49,57,14,13,3330,3247,2612,2570,579,542,37,30,30,43,3,3,69,59,2676,2627,605,566,72,56,45,54,7,4,475,347,426,299,17,23,17,11,3,0,6,7,6,7,432,305,20,27,21,16,4,3,7,9 -050,01,103,Alabama,Morgan County,9,7,7162,3650,3512,3013,2840,526,542,48,44,23,32,9,6,31,48,3039,2883,536,560,68,73,28,40,11,6,3145,3158,2562,2541,504,515,26,29,21,32,8,2,24,39,2582,2576,513,529,40,52,26,39,8,2,505,354,451,299,22,27,22,15,2,0,1,4,7,9,457,307,23,31,28,21,2,1,3,4 -050,01,103,Alabama,Morgan County,9,8,7519,3786,3733,3137,3022,531,566,52,50,24,36,7,7,35,52,3168,3067,539,581,76,86,32,45,8,11,3264,3342,2679,2683,501,551,30,27,22,35,5,1,27,45,2704,2722,507,562,47,59,29,42,6,4,522,391,458,339,30,15,22,23,2,1,2,6,8,7,464,345,32,19,29,27,3,3,2,7 -050,01,103,Alabama,Morgan County,9,9,7269,3698,3571,3083,2895,482,542,49,41,26,36,8,7,50,50,3130,2942,492,554,86,77,31,44,10,10,3320,3335,2745,2691,466,531,37,30,26,34,5,5,41,44,2783,2732,472,541,68,62,31,41,7,8,378,236,338,204,16,11,12,11,0,2,3,2,9,6,347,210,20,13,18,15,0,3,3,2 -050,01,103,Alabama,Morgan County,9,10,8033,3945,4088,3313,3410,507,548,42,54,30,31,4,4,49,41,3360,3445,513,556,83,86,35,37,7,6,3674,3882,3072,3226,489,540,34,44,29,30,2,3,48,39,3118,3260,495,548,74,75,34,34,5,5,271,206,241,184,18,8,8,10,1,1,2,1,1,2,242,185,18,8,9,11,1,3,2,1 -050,01,103,Alabama,Morgan County,9,11,8839,4389,4450,3676,3741,578,563,51,39,36,29,2,2,46,76,3719,3811,585,576,89,98,40,38,3,4,4190,4308,3505,3613,563,557,41,37,35,26,2,2,44,73,3546,3680,568,568,79,95,39,35,3,4,199,142,171,128,15,6,10,2,1,3,0,0,2,3,173,131,17,8,10,3,1,3,0,0 -050,01,103,Alabama,Morgan County,9,12,8500,4203,4297,3675,3669,411,494,59,46,14,31,0,0,44,57,3714,3720,418,506,96,99,18,35,1,1,4069,4200,3557,3587,401,490,54,41,13,30,0,0,44,52,3596,3633,408,501,91,90,17,34,1,1,134,97,118,82,10,4,5,5,1,1,0,0,0,5,118,87,10,5,5,9,1,1,0,0 -050,01,103,Alabama,Morgan County,9,13,7598,3608,3990,3136,3435,370,463,52,27,12,28,2,1,36,36,3170,3465,375,468,85,61,13,30,2,3,3513,3913,3056,3364,364,461,45,24,12,28,0,1,36,35,3090,3394,369,466,78,57,13,30,0,2,95,77,80,71,6,2,7,3,0,0,2,0,0,1,80,71,6,2,7,4,0,0,2,1 -050,01,103,Alabama,Morgan County,9,14,6625,3014,3611,2697,3198,240,322,24,29,17,23,1,0,35,39,2730,3234,243,328,56,62,19,25,1,1,2970,3563,2657,3154,238,319,23,29,17,23,1,0,34,38,2690,3189,240,325,54,62,19,24,1,1,44,48,40,44,2,3,1,0,0,0,0,0,1,1,40,45,3,3,2,0,0,1,0,0 -050,01,103,Alabama,Morgan County,9,15,4978,2278,2700,2102,2452,133,182,14,23,9,12,0,0,20,31,2120,2480,138,186,32,52,9,14,0,0,2250,2683,2076,2438,133,181,12,21,9,12,0,0,20,31,2094,2466,138,185,30,50,9,14,0,0,28,17,26,14,0,1,2,2,0,0,0,0,0,0,26,14,0,1,2,2,0,0,0,0 -050,01,103,Alabama,Morgan County,9,16,3617,1570,2047,1460,1873,75,143,9,8,6,7,0,0,20,16,1479,1889,77,146,28,22,6,7,1,0,1544,2025,1436,1854,75,142,8,7,6,7,0,0,19,15,1454,1869,77,144,26,21,6,7,1,0,26,22,24,19,0,1,1,1,0,0,0,0,1,1,25,20,0,2,2,1,0,0,0,0 -050,01,103,Alabama,Morgan County,9,17,2448,998,1450,932,1328,47,91,3,4,2,9,0,0,14,18,944,1346,49,91,16,21,3,10,1,0,986,1439,920,1318,47,91,3,4,2,8,0,0,14,18,932,1336,49,91,16,21,3,9,1,0,12,11,12,10,0,0,0,0,0,1,0,0,0,0,12,10,0,0,0,0,0,1,0,0 -050,01,103,Alabama,Morgan County,9,18,2161,756,1405,704,1271,32,101,11,12,1,3,0,0,8,18,710,1286,35,105,17,27,2,5,0,0,744,1393,693,1260,32,101,10,12,1,3,0,0,8,17,699,1275,35,104,16,27,2,4,0,0,12,12,11,11,0,0,1,0,0,0,0,0,0,1,11,11,0,1,1,0,0,1,0,0 -050,01,103,Alabama,Morgan County,10,0,118940,58506,60434,48744,50070,7386,7938,675,593,349,464,96,69,1256,1300,49936,51295,7977,8538,1253,1207,518,633,120,114,53166,55939,44000,46110,7148,7739,491,434,319,439,45,33,1163,1184,45108,47233,7696,8287,1013,986,476,587,63,64,5340,4495,4744,3960,238,199,184,159,30,25,51,36,93,116,4828,4062,281,251,240,221,42,46,57,50 -050,01,103,Alabama,Morgan County,10,1,7078,3610,3468,2794,2686,564,537,12,33,30,35,11,6,199,171,2983,2850,709,665,53,66,55,59,14,6,3038,2857,2284,2137,542,519,9,16,22,29,1,1,180,155,2455,2287,676,639,41,40,45,49,3,1,572,611,510,549,22,18,3,17,8,6,10,5,19,16,528,563,33,26,12,26,10,10,11,5 -050,01,103,Alabama,Morgan County,10,2,7531,3885,3646,3067,2877,537,530,44,25,34,31,8,5,195,178,3256,3046,669,652,89,67,59,53,12,13,3218,3039,2461,2332,515,510,24,8,29,28,6,2,183,159,2641,2485,642,621,61,40,53,46,8,6,667,607,606,545,22,20,20,17,5,3,2,3,12,19,615,561,27,31,28,27,6,7,4,7 -050,01,103,Alabama,Morgan County,10,3,7846,4024,3822,3209,3044,588,547,44,33,22,26,15,8,146,164,3347,3200,681,647,84,76,45,54,17,11,3437,3276,2677,2560,569,525,23,14,19,21,11,3,138,153,2808,2706,659,621,58,51,40,48,13,5,587,546,532,484,19,22,21,19,3,5,4,5,8,11,539,494,22,26,26,25,5,6,4,6 -050,01,103,Alabama,Morgan County,10,4,7468,3879,3589,3131,2823,535,560,52,49,23,23,16,11,122,123,3252,2942,605,631,93,87,40,40,17,14,3408,3158,2719,2440,518,540,34,34,21,22,4,7,112,115,2830,2552,583,606,70,70,36,38,5,9,471,431,412,383,17,20,18,15,2,1,12,4,10,8,422,390,22,25,23,17,4,2,12,5 -050,01,103,Alabama,Morgan County,10,5,6738,3422,3316,2671,2562,578,587,50,42,11,15,6,4,106,106,2773,2663,626,642,96,87,28,27,9,8,3089,3029,2383,2311,560,574,39,36,8,15,0,1,99,92,2479,2400,605,622,80,72,24,27,2,3,333,287,288,251,18,13,11,6,3,0,6,3,7,14,294,263,21,20,16,15,4,0,7,5 -050,01,103,Alabama,Morgan County,10,6,7590,3826,3764,3023,3014,619,580,62,33,34,51,9,9,79,77,3098,3086,651,614,102,68,49,62,9,14,3389,3415,2635,2705,601,562,46,27,31,51,3,4,73,66,2704,2767,629,591,83,57,45,61,3,7,437,349,388,309,18,18,16,6,3,0,6,5,6,11,394,319,22,23,19,11,4,1,6,7 -050,01,103,Alabama,Morgan County,10,7,7004,3564,3440,2910,2759,531,551,42,45,21,29,8,5,52,51,2957,2809,545,569,71,75,33,36,10,7,3093,3098,2487,2478,512,514,23,31,20,29,6,3,45,43,2527,2520,523,528,48,56,32,34,8,5,471,342,423,281,19,37,19,14,1,0,2,2,7,8,430,289,22,41,23,19,1,2,2,2 -050,01,103,Alabama,Morgan County,10,8,7432,3733,3699,3095,3005,521,554,58,50,26,37,5,6,28,47,3120,3048,529,566,78,82,28,47,6,10,3201,3301,2628,2655,492,544,34,24,23,36,3,1,21,41,2648,2692,497,554,49,52,25,45,3,5,532,398,467,350,29,10,24,26,3,1,2,5,7,6,472,356,32,12,29,30,3,2,3,5 -050,01,103,Alabama,Morgan County,10,9,7200,3645,3555,3029,2897,479,522,52,40,23,32,8,6,54,58,3078,2950,493,537,92,80,31,38,10,8,3259,3290,2692,2669,457,511,40,27,23,30,5,3,42,50,2730,2715,465,524,72,62,30,35,6,4,386,265,337,228,22,11,12,13,0,2,3,3,12,8,348,235,28,13,20,18,1,3,4,4 -050,01,103,Alabama,Morgan County,10,10,7888,3920,3968,3285,3281,510,552,46,58,28,34,5,6,46,37,3327,3315,518,559,82,87,34,40,6,9,3629,3767,3026,3108,493,539,35,49,27,32,3,5,45,34,3067,3139,501,546,70,77,33,36,4,6,291,201,259,173,17,13,11,9,1,2,2,1,1,3,260,176,17,13,12,10,1,4,2,3 -050,01,103,Alabama,Morgan County,10,11,8659,4255,4404,3582,3733,548,544,47,34,31,31,1,2,46,60,3627,3788,552,553,87,82,35,36,2,5,4031,4246,3388,3588,533,540,35,30,30,28,1,2,44,58,3431,3641,537,548,73,77,34,33,2,5,224,158,194,145,15,4,12,4,1,3,0,0,2,2,196,147,15,5,14,5,1,3,0,0 -050,01,103,Alabama,Morgan County,10,12,8470,4210,4260,3655,3614,431,500,63,51,15,33,1,0,45,62,3693,3673,440,507,100,103,21,41,2,3,4074,4166,3535,3536,422,495,56,45,15,33,1,0,45,57,3573,3591,431,502,93,93,21,39,2,3,136,94,120,78,9,5,7,6,0,0,0,0,0,5,120,82,9,5,7,10,0,2,0,0 -050,01,103,Alabama,Morgan County,10,13,7726,3680,4046,3186,3470,391,488,47,24,17,26,1,1,38,37,3222,3505,396,491,81,55,19,30,1,3,3585,3960,3105,3393,382,486,43,20,17,25,0,1,38,35,3141,3426,387,488,77,51,19,29,0,2,95,86,81,77,9,2,4,4,0,1,1,0,0,2,81,79,9,3,4,4,0,1,1,1 -050,01,103,Alabama,Morgan County,10,14,6597,3041,3556,2716,3113,254,349,26,27,12,27,1,0,32,40,2748,3149,256,355,55,64,15,30,2,1,2985,3504,2666,3066,252,345,24,27,12,27,0,0,31,39,2697,3101,254,351,52,63,14,30,1,1,56,52,50,47,2,4,2,0,0,0,1,0,1,1,51,48,2,4,3,1,1,0,1,0 -050,01,103,Alabama,Morgan County,10,15,5288,2383,2905,2188,2635,139,201,16,23,14,15,1,0,25,31,2213,2664,140,204,40,51,14,17,1,1,2357,2887,2164,2618,139,201,14,22,14,15,1,0,25,31,2189,2647,140,204,38,50,14,17,1,1,26,18,24,17,0,0,2,1,0,0,0,0,0,0,24,17,0,0,2,1,0,0,0,0 -050,01,103,Alabama,Morgan County,10,16,3775,1658,2117,1548,1931,76,145,10,13,5,6,0,0,19,22,1566,1949,78,149,26,32,7,8,0,1,1630,2092,1522,1911,76,143,9,11,5,6,0,0,18,21,1539,1929,78,146,25,30,6,7,0,1,28,25,26,20,0,2,1,2,0,0,0,0,1,1,27,20,0,3,1,2,1,1,0,0 -050,01,103,Alabama,Morgan County,10,17,2464,1011,1453,944,1341,49,85,3,3,2,8,0,0,13,16,955,1356,51,87,14,18,4,8,1,0,997,1439,930,1328,49,85,3,3,2,7,0,0,13,16,941,1343,51,87,14,18,4,7,1,0,14,14,14,13,0,0,0,0,0,1,0,0,0,0,14,13,0,0,0,0,0,1,0,0 -050,01,103,Alabama,Morgan County,10,18,2186,760,1426,711,1285,36,106,1,10,1,5,0,0,11,20,721,1302,38,110,10,27,1,7,1,0,746,1415,698,1275,36,106,0,10,1,5,0,0,11,19,708,1292,38,109,9,27,1,6,1,0,14,11,13,10,0,0,1,0,0,0,0,0,0,1,13,10,0,1,1,0,0,1,0,0 -050,01,103,Alabama,Morgan County,11,0,119216,58661,60555,48729,50045,7463,8042,687,603,364,470,112,81,1306,1314,49964,51284,8091,8660,1275,1238,549,639,141,116,53213,55937,43898,45971,7220,7845,504,451,330,447,55,35,1206,1188,45045,47094,7803,8398,1038,1013,498,600,78,63,5448,4618,4831,4074,243,197,183,152,34,23,57,46,100,126,4919,4190,288,262,237,225,51,39,63,53 -050,01,103,Alabama,Morgan County,11,1,7175,3628,3547,2767,2729,585,575,10,29,37,38,17,11,212,165,2973,2886,734,697,51,62,69,57,21,15,3063,2939,2268,2202,567,550,10,14,23,30,4,0,191,143,2455,2337,705,659,41,35,52,48,7,4,565,608,499,527,18,25,0,15,14,8,13,11,21,22,518,549,29,38,10,27,17,9,14,11 -050,01,103,Alabama,Morgan County,11,2,7434,3840,3594,2995,2857,557,498,45,24,39,33,10,5,194,177,3183,3031,691,617,87,66,68,54,12,11,3217,2978,2439,2287,532,483,25,11,35,32,8,3,178,162,2611,2446,658,593,60,45,61,52,10,8,623,616,556,570,25,15,20,13,4,1,2,2,16,15,572,585,33,24,27,21,7,2,2,3 -050,01,103,Alabama,Morgan County,11,3,7938,4068,3870,3226,3074,608,567,46,35,26,26,12,7,150,161,3370,3228,702,667,86,86,49,47,15,10,3433,3278,2650,2546,586,549,26,15,22,21,9,2,140,145,2784,2686,676,640,62,56,44,41,11,5,635,592,576,528,22,18,20,20,4,5,3,5,10,16,586,542,26,27,24,30,5,6,4,5 -050,01,103,Alabama,Morgan County,11,4,7431,3835,3596,3123,2824,504,559,46,45,21,23,20,13,121,132,3240,2949,575,637,89,87,38,44,21,15,3316,3121,2659,2407,488,535,30,28,20,22,5,7,114,122,2769,2523,557,610,69,65,34,41,6,8,519,475,464,417,16,24,16,17,1,1,15,6,7,10,471,426,18,27,20,22,4,3,15,7 -050,01,103,Alabama,Morgan County,11,5,6802,3487,3315,2714,2552,586,578,58,53,8,17,5,7,116,108,2825,2656,644,636,103,93,25,33,9,9,3152,3009,2419,2289,576,562,41,44,6,17,0,1,110,96,2525,2381,630,613,84,78,23,33,3,3,335,306,295,263,10,16,17,9,2,0,5,6,6,12,300,275,14,23,19,15,2,0,6,6 -050,01,103,Alabama,Morgan County,11,6,7569,3825,3744,3020,2968,616,610,54,36,35,45,8,8,92,77,3105,3038,652,647,100,71,55,61,12,10,3402,3426,2647,2690,589,596,45,27,31,44,3,4,87,65,2728,2750,624,625,86,57,50,57,6,4,423,318,373,278,27,14,9,9,4,1,5,4,5,12,377,288,28,22,14,14,5,4,6,6 -050,01,103,Alabama,Morgan County,11,7,6985,3558,3427,2874,2740,549,557,42,41,22,29,11,7,60,53,2928,2790,564,579,73,70,39,36,14,8,3084,3100,2451,2462,532,523,23,34,21,29,8,4,49,48,2495,2507,545,543,47,59,36,36,10,5,474,327,423,278,17,34,19,7,1,0,3,3,11,5,433,283,19,36,26,11,3,0,4,3 -050,01,103,Alabama,Morgan County,11,8,7335,3708,3627,3087,2952,510,523,60,52,20,40,6,6,25,54,3110,3001,516,536,78,86,22,52,7,9,3189,3245,2637,2623,481,512,29,25,18,40,5,2,19,43,2655,2662,484,521,43,52,20,49,6,4,519,382,450,329,29,11,31,27,2,0,1,4,6,11,455,339,32,15,35,34,2,3,1,5 -050,01,103,Alabama,Morgan County,11,9,7124,3605,3519,3001,2870,468,525,48,36,25,30,10,6,53,52,3048,2917,483,539,86,75,32,35,13,8,3205,3215,2648,2600,444,514,42,26,25,29,6,2,40,44,2685,2640,453,526,70,59,31,34,9,3,400,304,353,270,24,11,6,10,0,1,4,4,13,8,363,277,30,13,16,16,1,1,4,5 -050,01,103,Alabama,Morgan County,11,10,7854,3933,3921,3274,3224,532,559,52,54,29,37,7,8,39,39,3310,3259,539,569,82,84,35,42,7,10,3625,3727,2997,3053,518,547,40,48,28,36,4,7,38,36,3033,3085,525,555,69,76,33,40,4,9,308,194,277,171,14,12,12,6,1,1,3,1,1,3,277,174,14,14,13,8,2,2,3,1 -050,01,103,Alabama,Morgan County,11,11,8417,4138,4279,3484,3615,519,527,49,40,30,33,2,2,54,62,3534,3674,527,540,94,90,36,40,3,4,3885,4098,3266,3453,502,522,35,33,29,29,1,2,52,59,3315,3509,508,533,80,81,34,36,2,4,253,181,218,162,17,5,14,7,1,4,1,0,2,3,219,165,19,7,14,9,2,4,1,0 -050,01,103,Alabama,Morgan County,11,12,8475,4204,4271,3637,3606,444,534,63,44,18,28,1,0,41,59,3674,3658,451,544,100,95,22,36,1,2,4050,4173,3502,3520,431,530,57,40,18,28,1,0,41,55,3539,3568,438,539,94,88,22,34,1,1,154,98,135,86,13,4,6,4,0,0,0,0,0,4,135,90,13,5,6,7,0,2,0,1 -050,01,103,Alabama,Morgan County,11,13,7851,3764,4087,3253,3491,393,487,50,32,20,30,1,1,47,46,3296,3532,403,494,93,76,20,33,1,3,3674,3996,3176,3412,385,484,46,26,20,29,0,1,47,44,3219,3453,395,490,89,68,20,31,0,3,90,91,77,79,8,3,4,6,0,1,1,0,0,2,77,79,8,4,4,8,0,2,1,0 -050,01,103,Alabama,Morgan County,11,14,6690,3073,3617,2720,3151,280,379,28,27,12,26,1,0,32,34,2751,3183,285,382,55,57,13,27,1,2,3009,3565,2664,3100,278,378,24,27,12,26,0,0,31,34,2694,3132,282,381,51,57,13,27,0,2,64,52,56,51,2,1,4,0,0,0,1,0,1,0,57,51,3,1,4,0,0,0,1,0 -050,01,103,Alabama,Morgan County,11,15,5406,2409,2997,2205,2707,145,216,19,23,13,18,1,0,26,33,2231,2737,148,220,42,52,14,21,1,0,2378,2973,2178,2686,144,214,16,23,13,18,1,0,26,32,2204,2715,147,218,39,51,14,21,1,0,31,24,27,21,1,2,3,0,0,0,0,0,0,1,27,22,1,2,3,1,0,0,0,0 -050,01,103,Alabama,Morgan County,11,16,3967,1750,2217,1640,2015,79,155,12,18,7,5,0,0,12,24,1650,2038,81,157,24,40,7,7,0,0,1725,2191,1616,1993,79,153,11,16,7,5,0,0,12,24,1626,2016,81,155,23,38,7,7,0,0,25,26,24,22,0,2,1,2,0,0,0,0,0,0,24,22,0,2,1,2,0,0,0,0 -050,01,103,Alabama,Morgan County,11,17,2564,1066,1498,996,1383,46,88,3,3,1,7,0,0,20,17,1013,1399,50,90,21,18,2,8,1,0,1051,1486,982,1372,46,88,3,3,1,7,0,0,19,16,999,1388,49,89,21,18,1,7,0,0,15,12,14,11,0,0,0,0,0,0,0,0,1,1,14,11,1,1,0,0,1,1,1,0 -050,01,103,Alabama,Morgan County,11,18,2199,770,1429,713,1287,42,105,2,11,1,5,0,0,12,21,723,1308,46,109,11,30,3,6,2,0,755,1417,699,1276,42,105,1,11,1,5,0,0,12,20,709,1296,46,108,10,30,3,6,2,0,15,12,14,11,0,0,1,0,0,0,0,0,0,1,14,12,0,1,1,0,0,0,0,0 -050,01,103,Alabama,Morgan County,12,0,119630,58797,60833,48879,50198,7476,8130,696,599,355,469,108,85,1283,1352,50095,51464,8092,8778,1273,1233,523,658,148,122,53218,56134,43923,46049,7233,7931,508,447,318,436,48,37,1188,1234,45057,47211,7803,8518,1037,1019,470,604,79,61,5579,4699,4956,4149,243,199,188,152,37,33,60,48,95,118,5038,4253,289,260,236,214,53,54,69,61 -050,01,103,Alabama,Morgan County,12,1,7242,3634,3608,2785,2762,580,585,19,30,38,48,18,13,194,170,2977,2928,716,709,56,62,65,73,22,18,3026,3001,2253,2243,554,555,12,14,25,38,3,1,179,150,2430,2391,683,670,43,37,49,59,6,1,608,607,532,519,26,30,7,16,13,10,15,12,15,20,547,537,33,39,13,25,16,14,16,17 -050,01,103,Alabama,Morgan County,12,2,7390,3797,3593,2980,2856,546,491,33,23,33,35,6,5,199,183,3167,3034,686,616,79,62,57,58,10,9,3202,2979,2438,2282,530,479,22,16,28,31,5,4,179,167,2608,2444,659,596,57,49,51,53,8,7,595,614,542,574,16,12,11,7,5,4,1,1,20,16,559,590,27,20,22,13,6,5,2,2 -050,01,103,Alabama,Morgan County,12,3,7972,4129,3843,3228,3013,636,597,59,35,26,20,11,8,169,170,3392,3171,742,708,102,82,53,47,18,14,3454,3245,2623,2483,616,579,32,13,22,14,6,2,155,154,2773,2627,715,682,70,52,45,36,11,7,675,598,605,530,20,18,27,22,4,6,5,6,14,16,619,544,27,26,32,30,8,11,7,7 -050,01,103,Alabama,Morgan County,12,4,7383,3801,3582,3107,2853,502,517,39,43,23,22,18,13,112,134,3210,2981,573,595,77,86,36,43,22,17,3250,3093,2615,2418,479,499,25,24,20,20,4,6,107,126,2715,2539,548,573,58,62,33,40,7,9,551,489,492,435,23,18,14,19,3,2,14,7,5,8,495,442,25,22,19,24,3,3,15,8 -050,01,103,Alabama,Morgan County,12,5,6752,3456,3296,2727,2546,558,561,47,47,9,17,7,8,108,117,2829,2657,615,626,91,92,25,40,10,9,3094,2988,2405,2280,549,544,29,38,7,16,2,3,102,107,2501,2381,602,603,71,76,23,37,5,3,362,308,322,266,9,17,18,9,2,1,5,5,6,10,328,276,13,23,20,16,2,3,5,6 -050,01,103,Alabama,Morgan County,12,6,7551,3805,3746,3023,2930,601,652,57,35,34,45,7,6,83,78,3102,3003,634,689,97,69,49,58,9,11,3424,3436,2690,2661,575,637,48,29,30,43,2,1,79,65,2766,2722,604,667,87,57,45,53,4,5,381,310,333,269,26,15,9,6,4,2,5,5,4,13,336,281,30,22,10,12,4,5,5,6 -050,01,103,Alabama,Morgan County,12,7,7125,3606,3519,2908,2804,551,579,55,42,21,33,8,8,63,53,2968,2854,564,602,91,70,35,42,11,9,3109,3184,2463,2523,531,542,33,34,20,33,5,5,57,47,2518,2567,543,561,64,58,33,42,8,6,497,335,445,281,20,37,22,8,1,0,3,3,6,6,450,287,21,41,27,12,2,0,3,3 -050,01,103,Alabama,Morgan County,12,8,7308,3697,3611,3088,2962,497,516,55,54,19,31,10,5,28,43,3111,2998,506,527,71,84,28,38,12,7,3206,3243,2652,2635,475,507,32,29,19,31,8,2,20,39,2669,2669,480,516,46,57,23,37,9,3,491,368,436,327,22,9,23,25,0,0,2,3,8,4,442,329,26,11,25,27,5,1,3,4 -050,01,103,Alabama,Morgan County,12,9,7111,3543,3568,2936,2894,484,536,52,39,18,34,5,8,48,57,2977,2946,494,548,88,79,24,43,9,11,3122,3248,2566,2615,461,525,39,25,18,32,2,3,36,48,2597,2661,467,534,68,58,22,39,4,5,421,320,370,279,23,11,13,14,0,2,3,5,12,9,380,285,27,14,20,21,2,4,5,6 -050,01,103,Alabama,Morgan County,12,10,7665,3868,3797,3224,3106,530,555,44,52,26,33,9,8,35,43,3256,3141,538,567,71,80,30,44,9,11,3549,3581,2934,2917,518,541,34,45,23,32,5,7,35,39,2966,2950,526,550,61,70,27,42,5,9,319,216,290,189,12,14,10,7,3,1,4,1,0,4,290,191,12,17,10,10,3,2,4,2 -050,01,103,Alabama,Morgan County,12,11,8195,3994,4201,3362,3549,495,541,54,37,31,25,3,2,49,47,3407,3591,504,551,99,76,33,31,4,2,3738,4016,3147,3379,473,537,39,31,30,23,2,2,47,44,3192,3418,481,546,82,69,32,28,2,2,256,185,215,170,22,4,15,6,1,2,1,0,2,3,215,173,23,5,17,7,1,3,2,0 -050,01,103,Alabama,Morgan County,12,12,8595,4301,4294,3704,3626,477,522,57,45,21,30,3,0,39,71,3742,3692,482,536,87,105,24,35,5,1,4139,4174,3561,3522,465,516,52,40,20,28,3,0,38,68,3598,3585,470,528,81,99,23,33,5,1,162,120,143,104,12,6,5,5,1,2,0,0,1,3,144,107,12,8,6,6,1,2,0,0 -050,01,103,Alabama,Morgan County,12,13,7933,3812,4121,3316,3511,378,493,47,36,18,29,1,0,52,52,3366,3557,382,503,95,84,22,32,2,1,3716,4032,3231,3434,370,491,45,30,18,28,0,0,52,49,3281,3477,374,500,93,76,22,31,1,1,96,89,85,77,8,2,2,6,0,1,1,0,0,3,85,80,8,3,2,8,0,1,1,0 -050,01,103,Alabama,Morgan County,12,14,6813,3116,3697,2735,3210,301,401,38,24,13,28,1,1,28,33,2762,3240,305,407,62,53,13,29,2,1,3044,3638,2674,3153,298,399,31,24,13,28,0,1,28,33,2701,3183,302,405,55,53,13,29,1,1,72,59,61,57,3,2,7,0,0,0,1,0,0,0,61,57,3,2,7,0,0,0,1,0 -050,01,103,Alabama,Morgan County,12,15,5630,2517,3113,2280,2798,172,236,18,24,15,21,1,0,31,34,2311,2830,176,239,47,54,16,24,1,0,2485,3084,2252,2772,171,234,16,24,15,21,1,0,30,33,2282,2803,174,236,45,54,16,24,1,0,32,29,28,26,1,2,2,0,0,0,0,0,1,1,29,27,2,3,2,0,0,0,0,0 -050,01,103,Alabama,Morgan County,12,16,4093,1826,2267,1712,2066,84,150,14,20,5,4,0,0,11,27,1723,2092,85,151,23,47,5,4,1,0,1800,2242,1687,2044,84,149,13,18,5,4,0,0,11,27,1698,2070,85,150,22,45,5,4,1,0,26,25,25,22,0,1,1,2,0,0,0,0,0,0,25,22,0,1,1,2,0,0,0,0 -050,01,103,Alabama,Morgan County,12,17,2619,1076,1543,1010,1419,37,95,4,4,4,7,0,0,21,18,1029,1435,39,97,24,20,5,9,1,1,1060,1529,996,1407,37,94,3,4,4,7,0,0,20,17,1014,1423,39,95,22,19,5,9,1,1,16,14,14,12,0,1,1,0,0,0,0,0,1,1,15,12,0,2,2,1,0,0,0,0 -050,01,103,Alabama,Morgan County,12,18,2253,819,1434,754,1293,47,103,4,9,1,7,0,0,13,22,766,1314,51,107,13,28,3,8,0,0,800,1421,736,1281,47,103,3,9,1,7,0,0,13,21,748,1301,51,106,12,28,3,8,0,0,19,13,18,12,0,0,1,0,0,0,0,0,0,1,18,13,0,1,1,0,0,0,0,0 -050,01,103,Alabama,Morgan County,13,0,119883,58904,60979,48839,50227,7557,8178,701,631,363,458,108,86,1336,1399,50109,51540,8227,8842,1267,1263,558,667,141,128,53284,56138,43870,45954,7309,7970,508,468,319,431,46,36,1232,1279,45046,47161,7922,8579,1024,1037,498,613,68,62,5620,4841,4969,4273,248,208,193,163,44,27,62,50,104,120,5063,4379,305,263,243,226,60,54,73,66 -050,01,103,Alabama,Morgan County,13,1,7281,3696,3585,2788,2730,615,601,27,30,41,34,19,14,206,176,2990,2901,762,730,64,58,71,60,23,20,3066,2979,2249,2216,588,555,12,17,25,29,4,2,188,160,2434,2372,725,676,41,39,53,51,7,5,630,606,539,514,27,46,15,13,16,5,15,12,18,16,556,529,37,54,23,19,18,9,16,15 -050,01,103,Alabama,Morgan County,13,2,7337,3743,3594,2937,2834,541,504,24,38,29,32,7,4,205,182,3135,3009,688,626,67,86,54,54,9,7,3183,2985,2429,2274,525,495,17,22,22,26,3,2,187,166,2611,2433,659,610,50,61,47,47,5,4,560,609,508,560,16,9,7,16,7,6,4,2,18,16,524,576,29,16,17,25,7,7,4,3 -050,01,103,Alabama,Morgan County,13,3,7961,4140,3821,3212,3007,644,559,60,37,30,25,10,9,184,184,3386,3180,766,677,109,86,56,54,17,14,3454,3209,2601,2462,622,543,35,14,24,22,6,3,166,165,2760,2617,731,650,77,54,46,47,10,6,686,612,611,545,22,16,25,23,6,3,4,6,18,19,626,563,35,27,32,32,10,7,7,8 -050,01,103,Alabama,Morgan County,13,4,7376,3793,3583,3083,2871,518,509,42,36,23,18,13,9,114,140,3193,3005,582,594,81,77,42,42,13,12,3207,3057,2560,2397,497,489,23,17,18,17,4,4,105,133,2662,2524,559,572,57,55,34,38,4,5,586,526,523,474,21,20,19,19,5,1,9,5,9,7,531,481,23,22,24,22,8,4,9,7 -050,01,103,Alabama,Morgan County,13,5,6760,3448,3312,2724,2550,546,559,44,53,13,19,10,14,111,117,2830,2661,606,625,89,93,31,37,11,16,3069,2965,2392,2252,532,542,27,41,11,16,2,7,105,107,2492,2353,590,600,68,77,29,34,3,9,379,347,332,298,14,17,17,12,2,3,8,7,6,10,338,308,16,25,21,16,2,3,8,7 -050,01,103,Alabama,Morgan County,13,6,7407,3720,3687,2921,2851,607,659,65,44,30,46,9,5,88,82,3005,2928,645,699,101,81,50,58,13,9,3376,3380,2627,2580,582,647,53,38,28,45,2,1,84,69,2707,2646,617,680,88,66,45,56,5,4,344,307,294,271,25,12,12,6,2,1,7,4,4,13,298,282,28,19,13,15,5,2,8,5 -050,01,103,Alabama,Morgan County,13,7,7182,3609,3573,2908,2866,548,569,49,40,23,28,7,8,74,62,2977,2924,571,592,87,72,41,41,10,9,3150,3248,2493,2586,530,541,33,34,22,27,4,4,68,56,2556,2639,551,562,68,63,39,38,6,5,459,325,415,280,18,28,16,6,1,1,3,4,6,6,421,285,20,30,19,9,2,3,4,4 -050,01,103,Alabama,Morgan County,13,8,7295,3665,3630,3061,2967,502,533,50,48,17,27,8,4,27,51,3085,3012,508,546,65,81,25,39,11,6,3225,3274,2671,2656,481,516,28,29,17,27,7,1,21,45,2690,2697,485,527,40,58,24,37,9,3,440,356,390,311,21,17,22,19,0,0,1,3,6,6,395,315,23,19,25,23,1,2,2,3 -050,01,103,Alabama,Morgan County,13,9,7309,3631,3678,2997,2985,514,551,49,52,19,35,6,7,46,48,3037,3028,528,564,80,86,24,42,9,8,3188,3329,2603,2683,492,539,34,29,19,34,2,2,38,42,2636,2721,503,550,61,60,24,39,3,3,443,349,394,302,22,12,15,23,0,1,4,5,8,6,401,307,25,14,19,26,0,3,6,5 -050,01,103,Alabama,Morgan County,13,10,7492,3834,3658,3208,2977,508,546,48,43,24,37,9,8,37,47,3241,3020,517,557,74,77,31,46,10,11,3463,3417,2874,2764,494,534,35,38,22,36,5,6,33,39,2904,2801,502,540,59,66,28,43,5,8,371,241,334,213,14,12,13,5,2,1,4,2,4,8,337,219,15,17,15,11,3,3,5,3 -050,01,103,Alabama,Morgan County,13,11,7867,3782,4085,3207,3444,447,530,51,40,31,24,4,3,42,44,3247,3482,454,540,85,72,35,32,5,5,3544,3902,3003,3275,427,527,41,33,29,22,3,3,41,42,3042,3312,433,537,74,64,33,29,4,4,238,183,204,169,20,3,10,7,2,2,1,0,1,2,205,170,21,3,11,8,2,3,1,1 -050,01,103,Alabama,Morgan County,13,12,8666,4330,4336,3691,3662,509,518,55,48,23,35,3,0,49,73,3736,3727,521,532,95,108,26,44,5,2,4145,4198,3526,3541,498,511,49,43,22,33,3,0,47,70,3569,3603,508,525,88,100,24,42,4,2,185,138,165,121,11,7,6,5,1,2,0,0,2,3,167,124,13,7,7,8,2,2,1,0 -050,01,103,Alabama,Morgan County,13,13,8053,3942,4111,3458,3492,371,499,48,34,16,29,1,0,48,57,3505,3543,377,507,90,83,20,34,1,3,3827,4021,3362,3414,359,497,44,29,16,28,0,0,46,53,3407,3463,363,505,86,77,20,31,0,0,115,90,96,78,12,2,4,5,0,1,1,0,2,4,98,80,14,2,4,6,0,3,1,3 -050,01,103,Alabama,Morgan County,13,14,6928,3178,3750,2766,3243,325,416,43,28,14,26,1,1,29,36,2793,3277,330,418,67,58,16,31,1,3,3096,3682,2694,3181,323,413,36,26,14,26,0,1,29,35,2721,3214,328,415,60,56,16,30,0,3,82,68,72,62,2,3,7,2,0,0,1,0,0,1,72,63,2,3,7,2,0,1,1,0 -050,01,103,Alabama,Morgan County,13,15,5793,2544,3249,2290,2909,186,260,18,25,17,20,1,0,32,35,2321,2943,189,261,45,54,20,25,1,1,2509,3216,2259,2879,184,258,17,25,17,20,1,0,31,34,2289,2913,186,259,44,54,20,24,1,0,35,33,31,30,2,2,1,0,0,0,0,0,1,1,32,30,3,2,1,0,0,1,0,1 -050,01,103,Alabama,Morgan County,13,16,4200,1900,2300,1765,2089,96,152,18,21,7,10,0,0,14,28,1778,2115,97,155,31,45,7,12,1,1,1876,2277,1744,2069,95,151,16,19,7,10,0,0,14,28,1757,2095,96,154,29,43,7,12,1,1,24,23,21,20,1,1,2,2,0,0,0,0,0,0,21,20,1,1,2,2,0,0,0,0 -050,01,103,Alabama,Morgan County,13,17,2717,1118,1599,1057,1462,34,110,5,5,4,5,0,0,18,17,1073,1479,36,113,22,19,5,7,0,1,1095,1583,1036,1448,34,109,4,5,4,5,0,0,17,16,1051,1464,36,111,20,18,5,6,0,0,23,16,21,14,0,1,1,0,0,0,0,0,1,1,22,15,0,2,2,1,0,1,0,1 -050,01,103,Alabama,Morgan County,13,18,2259,831,1428,766,1288,46,103,5,9,2,8,0,0,12,20,777,1306,50,106,15,27,4,9,1,0,811,1416,747,1277,46,103,4,9,2,8,0,0,12,19,758,1294,50,106,14,26,4,9,1,0,20,12,19,11,0,0,1,0,0,0,0,0,0,1,19,12,0,0,1,1,0,0,0,0 -050,01,105,Alabama,Perry County,1,0,10591,4980,5611,1595,1622,3333,3949,12,5,19,11,3,2,18,22,1608,1633,3350,3968,16,11,21,20,4,4,4921,5556,1550,1595,3320,3927,12,5,19,11,3,2,17,16,1563,1603,3336,3941,16,11,20,16,3,2,59,55,45,27,13,22,0,0,0,0,0,0,1,6,45,30,14,27,0,0,1,4,1,2 -050,01,105,Alabama,Perry County,1,1,674,354,320,61,46,288,267,0,0,2,1,1,2,2,4,63,48,290,271,0,1,2,2,1,2,349,310,57,40,287,264,0,0,2,1,1,2,2,3,59,41,289,267,0,1,2,2,1,2,5,10,4,6,1,3,0,0,0,0,0,0,0,1,4,7,1,4,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,2,706,339,367,65,47,266,317,2,0,3,1,0,0,3,2,68,48,269,318,2,0,3,3,0,0,335,364,62,46,265,315,2,0,3,1,0,0,3,2,65,47,268,316,2,0,3,3,0,0,4,3,3,1,1,2,0,0,0,0,0,0,0,0,3,1,1,2,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,3,708,370,338,66,60,303,275,0,0,0,1,0,0,1,2,67,61,304,277,0,1,0,1,0,0,367,336,64,58,302,275,0,0,0,1,0,0,1,2,65,59,303,277,0,1,0,1,0,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,4,1048,571,477,213,159,345,318,4,0,6,0,0,0,3,0,215,159,348,318,5,0,6,0,0,0,551,471,193,153,345,318,4,0,6,0,0,0,3,0,195,153,348,318,5,0,6,0,0,0,20,6,20,6,0,0,0,0,0,0,0,0,0,0,20,6,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,5,812,363,449,117,169,241,280,2,0,2,0,1,0,0,0,117,169,241,280,2,0,2,0,1,0,353,443,108,163,240,280,2,0,2,0,1,0,0,0,108,163,240,280,2,0,2,0,1,0,10,6,9,6,1,0,0,0,0,0,0,0,0,0,9,6,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,6,554,260,294,57,67,202,225,0,0,0,0,0,0,1,2,58,67,203,227,0,0,0,2,0,2,258,290,55,65,202,225,0,0,0,0,0,0,1,0,56,65,203,225,0,0,0,0,0,0,2,4,2,2,0,0,0,0,0,0,0,0,0,2,2,2,0,2,0,0,0,2,0,2 -050,01,105,Alabama,Perry County,1,7,557,246,311,53,63,193,245,0,0,0,2,0,0,0,1,53,63,193,246,0,0,0,3,0,0,245,309,52,62,193,244,0,0,0,2,0,0,0,1,52,62,193,245,0,0,0,3,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,8,544,239,305,63,68,173,235,0,0,2,1,1,0,0,1,63,69,173,236,0,0,2,1,1,0,239,301,63,67,173,233,0,0,2,1,1,0,0,0,63,67,173,233,0,0,2,1,1,0,0,4,0,1,0,2,0,0,0,0,0,0,0,1,0,2,0,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,9,557,267,290,97,72,165,215,0,0,1,1,0,0,4,2,99,73,168,216,1,1,3,2,1,0,265,289,97,72,164,215,0,0,1,1,0,0,3,1,99,73,166,215,1,1,2,1,0,0,2,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,2,1,0,0,1,1,1,0 -050,01,105,Alabama,Perry County,1,10,632,288,344,84,76,201,264,0,1,1,1,0,0,2,2,85,77,203,266,1,2,1,1,0,0,285,343,83,76,199,263,0,1,1,1,0,0,2,2,84,77,201,265,1,2,1,1,0,0,3,1,1,0,2,1,0,0,0,0,0,0,0,0,1,0,2,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,11,759,354,405,116,107,238,297,0,0,0,0,0,0,0,1,116,108,238,298,0,1,0,0,0,0,350,398,116,105,234,292,0,0,0,0,0,0,0,1,116,106,234,293,0,1,0,0,0,0,4,7,0,2,4,5,0,0,0,0,0,0,0,0,0,2,4,5,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,12,673,304,369,118,107,185,260,0,0,1,1,0,0,0,1,118,108,185,260,0,0,1,2,0,0,303,367,118,107,184,259,0,0,1,1,0,0,0,0,118,107,184,259,0,0,1,1,0,0,1,2,0,0,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0 -050,01,105,Alabama,Perry County,1,13,598,297,301,120,121,176,177,0,2,1,1,0,0,0,0,120,121,176,177,0,2,1,1,0,0,295,300,119,121,175,176,0,2,1,1,0,0,0,0,119,121,175,176,0,2,1,1,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,14,528,227,301,115,129,110,168,2,2,0,1,0,0,0,1,115,130,110,169,2,2,0,1,0,0,227,299,115,129,110,166,2,2,0,1,0,0,0,1,115,130,110,167,2,2,0,1,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,15,435,200,235,90,103,106,131,2,0,0,0,0,0,2,1,91,103,108,132,3,0,0,1,0,0,199,234,89,103,106,130,2,0,0,0,0,0,2,1,90,103,108,131,3,0,0,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,16,322,144,178,80,92,64,85,0,0,0,0,0,0,0,1,80,93,64,86,0,0,0,0,0,0,144,175,80,92,64,82,0,0,0,0,0,0,0,1,80,93,64,83,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,17,253,92,161,44,66,48,95,0,0,0,0,0,0,0,0,44,66,48,95,0,0,0,0,0,0,91,161,43,66,48,95,0,0,0,0,0,0,0,0,43,66,48,95,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,1,18,231,65,166,36,70,29,95,0,0,0,0,0,0,0,1,36,70,29,96,0,1,0,0,0,0,65,166,36,70,29,95,0,0,0,0,0,0,0,1,36,70,29,96,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,0,10577,4973,5604,1595,1619,3326,3945,12,5,19,11,3,2,18,22,1608,1630,3343,3964,16,11,21,20,4,4,4914,5549,1550,1592,3313,3923,12,5,19,11,3,2,17,16,1563,1600,3329,3937,16,11,20,16,3,2,59,55,45,27,13,22,0,0,0,0,0,0,1,6,45,30,14,27,0,0,1,4,1,2 -050,01,105,Alabama,Perry County,2,1,672,354,318,61,44,288,267,0,0,2,1,1,2,2,4,63,46,290,271,0,1,2,2,1,2,349,308,57,38,287,264,0,0,2,1,1,2,2,3,59,39,289,267,0,1,2,2,1,2,5,10,4,6,1,3,0,0,0,0,0,0,0,1,4,7,1,4,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,2,705,339,366,65,46,266,317,2,0,3,1,0,0,3,2,68,47,269,318,2,0,3,3,0,0,335,363,62,45,265,315,2,0,3,1,0,0,3,2,65,46,268,316,2,0,3,3,0,0,4,3,3,1,1,2,0,0,0,0,0,0,0,0,3,1,1,2,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,3,708,370,338,66,60,303,275,0,0,0,1,0,0,1,2,67,61,304,277,0,1,0,1,0,0,367,336,64,58,302,275,0,0,0,1,0,0,1,2,65,59,303,277,0,1,0,1,0,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,4,1046,570,476,213,159,344,317,4,0,6,0,0,0,3,0,215,159,347,317,5,0,6,0,0,0,550,470,193,153,344,317,4,0,6,0,0,0,3,0,195,153,347,317,5,0,6,0,0,0,20,6,20,6,0,0,0,0,0,0,0,0,0,0,20,6,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,5,811,363,448,117,168,241,280,2,0,2,0,1,0,0,0,117,168,241,280,2,0,2,0,1,0,353,442,108,162,240,280,2,0,2,0,1,0,0,0,108,162,240,280,2,0,2,0,1,0,10,6,9,6,1,0,0,0,0,0,0,0,0,0,9,6,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,6,553,259,294,56,67,202,225,0,0,0,0,0,0,1,2,57,67,203,227,0,0,0,2,0,2,257,290,54,65,202,225,0,0,0,0,0,0,1,0,55,65,203,225,0,0,0,0,0,0,2,4,2,2,0,0,0,0,0,0,0,0,0,2,2,2,0,2,0,0,0,2,0,2 -050,01,105,Alabama,Perry County,2,7,557,246,311,53,63,193,245,0,0,0,2,0,0,0,1,53,63,193,246,0,0,0,3,0,0,245,309,52,62,193,244,0,0,0,2,0,0,0,1,52,62,193,245,0,0,0,3,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,8,543,239,304,63,68,173,234,0,0,2,1,1,0,0,1,63,69,173,235,0,0,2,1,1,0,239,300,63,67,173,232,0,0,2,1,1,0,0,0,63,67,173,232,0,0,2,1,1,0,0,4,0,1,0,2,0,0,0,0,0,0,0,1,0,2,0,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,9,556,266,290,97,72,164,215,0,0,1,1,0,0,4,2,99,73,167,216,1,1,3,2,1,0,264,289,97,72,163,215,0,0,1,1,0,0,3,1,99,73,165,215,1,1,2,1,0,0,2,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,2,1,0,0,1,1,1,0 -050,01,105,Alabama,Perry County,2,10,632,288,344,84,76,201,264,0,1,1,1,0,0,2,2,85,77,203,266,1,2,1,1,0,0,285,343,83,76,199,263,0,1,1,1,0,0,2,2,84,77,201,265,1,2,1,1,0,0,3,1,1,0,2,1,0,0,0,0,0,0,0,0,1,0,2,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,11,759,354,405,116,107,238,297,0,0,0,0,0,0,0,1,116,108,238,298,0,1,0,0,0,0,350,398,116,105,234,292,0,0,0,0,0,0,0,1,116,106,234,293,0,1,0,0,0,0,4,7,0,2,4,5,0,0,0,0,0,0,0,0,0,2,4,5,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,12,670,301,369,118,107,182,260,0,0,1,1,0,0,0,1,118,108,182,260,0,0,1,2,0,0,300,367,118,107,181,259,0,0,1,1,0,0,0,0,118,107,181,259,0,0,1,1,0,0,1,2,0,0,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0 -050,01,105,Alabama,Perry County,2,13,599,298,301,121,121,176,177,0,2,1,1,0,0,0,0,121,121,176,177,0,2,1,1,0,0,296,300,120,121,175,176,0,2,1,1,0,0,0,0,120,121,175,176,0,2,1,1,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,14,527,227,300,115,129,110,167,2,2,0,1,0,0,0,1,115,130,110,168,2,2,0,1,0,0,227,298,115,129,110,165,2,2,0,1,0,0,0,1,115,130,110,166,2,2,0,1,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,15,435,199,236,90,104,105,131,2,0,0,0,0,0,2,1,91,104,107,132,3,0,0,1,0,0,198,235,89,104,105,130,2,0,0,0,0,0,2,1,90,104,107,131,3,0,0,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,16,320,143,177,80,92,63,84,0,0,0,0,0,0,0,1,80,93,63,85,0,0,0,0,0,0,143,174,80,92,63,81,0,0,0,0,0,0,0,1,80,93,63,82,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,17,253,92,161,44,66,48,95,0,0,0,0,0,0,0,0,44,66,48,95,0,0,0,0,0,0,91,161,43,66,48,95,0,0,0,0,0,0,0,0,43,66,48,95,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,2,18,231,65,166,36,70,29,95,0,0,0,0,0,0,0,1,36,70,29,96,0,1,0,0,0,0,65,166,36,70,29,95,0,0,0,0,0,0,0,1,36,70,29,96,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,0,10564,4971,5593,1594,1606,3322,3945,14,7,20,11,3,2,18,22,1610,1625,3328,3954,24,19,24,16,5,3,4910,5535,1547,1577,3309,3921,14,7,20,11,3,2,17,17,1562,1591,3315,3928,23,15,24,16,5,3,61,58,47,29,13,24,0,0,0,0,0,0,1,5,48,34,13,26,1,4,0,0,0,0 -050,01,105,Alabama,Perry County,3,1,665,350,315,60,40,284,268,0,0,3,1,1,2,2,4,62,43,284,271,1,1,4,2,1,2,344,305,55,34,283,265,0,0,3,1,1,2,2,3,57,36,283,268,1,0,4,2,1,2,6,10,5,6,1,3,0,0,0,0,0,0,0,1,5,7,1,3,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,3,2,701,340,361,64,46,268,312,2,0,3,1,0,0,3,2,67,47,270,313,4,0,3,3,0,0,336,356,61,44,267,309,2,0,3,1,0,0,3,2,64,45,269,310,4,0,3,3,0,0,4,5,3,2,1,3,0,0,0,0,0,0,0,0,3,2,1,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,3,702,364,338,63,60,300,275,0,0,0,1,0,0,1,2,64,62,300,275,0,1,1,2,0,0,361,336,61,58,299,275,0,0,0,1,0,0,1,2,62,60,299,275,0,1,1,2,0,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,4,1046,571,475,216,159,342,316,4,0,6,0,0,0,3,0,219,159,343,316,5,0,6,0,1,0,551,469,196,153,342,316,4,0,6,0,0,0,3,0,199,153,343,316,5,0,6,0,1,0,20,6,20,6,0,0,0,0,0,0,0,0,0,0,20,6,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,5,818,368,450,117,167,246,283,2,0,2,0,1,0,0,0,117,167,246,283,2,0,2,0,1,0,357,444,107,161,245,283,2,0,2,0,1,0,0,0,107,161,245,283,2,0,2,0,1,0,11,6,10,6,1,0,0,0,0,0,0,0,0,0,10,6,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,6,546,259,287,57,63,201,223,0,0,0,0,0,0,1,1,58,64,202,224,0,1,0,0,0,0,257,284,55,61,201,223,0,0,0,0,0,0,1,0,56,61,202,223,0,0,0,0,0,0,2,3,2,2,0,0,0,0,0,0,0,0,0,1,2,3,0,1,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,3,7,555,245,310,51,64,194,243,0,0,0,2,0,0,0,1,51,65,194,243,0,1,0,2,0,0,244,308,50,63,194,242,0,0,0,2,0,0,0,1,50,64,194,242,0,1,0,2,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,8,551,242,309,61,67,178,240,0,0,2,1,1,0,0,1,61,68,178,240,0,1,2,1,1,0,242,305,61,66,178,238,0,0,2,1,1,0,0,0,61,66,178,238,0,0,2,1,1,0,0,4,0,1,0,2,0,0,0,0,0,0,0,1,0,2,0,2,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,3,9,547,264,283,98,73,161,207,0,0,1,1,0,0,4,2,101,75,161,208,2,1,3,1,1,0,262,282,98,73,160,207,0,0,1,1,0,0,3,1,100,74,160,207,1,1,3,1,1,0,2,1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,10,628,285,343,84,76,198,262,0,1,1,1,0,0,2,3,85,78,200,264,2,4,1,1,0,0,282,342,83,76,196,261,0,1,1,1,0,0,2,3,84,78,198,263,2,4,1,1,0,0,3,1,1,0,2,1,0,0,0,0,0,0,0,0,1,0,2,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,11,755,353,402,116,106,237,295,0,0,0,0,0,0,0,1,116,107,237,295,0,0,0,1,0,0,350,394,116,103,234,290,0,0,0,0,0,0,0,1,116,104,234,290,0,0,0,1,0,0,3,8,0,3,3,5,0,0,0,0,0,0,0,0,0,3,3,5,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,12,673,300,373,116,108,183,263,0,0,1,1,0,0,0,1,116,109,183,263,0,1,1,1,0,0,298,371,116,108,181,262,0,0,1,1,0,0,0,0,116,108,181,262,0,0,1,1,0,0,2,2,0,0,2,1,0,0,0,0,0,0,0,1,0,1,2,1,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,3,13,603,299,304,121,118,177,182,0,3,1,1,0,0,0,0,121,118,177,182,0,3,1,1,0,0,297,303,120,118,176,181,0,3,1,1,0,0,0,0,120,118,176,181,0,3,1,1,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,14,529,227,302,116,129,108,168,3,3,0,1,0,0,0,1,116,130,108,168,3,3,0,1,0,1,227,300,116,129,108,166,3,3,0,1,0,0,0,1,116,130,108,166,3,3,0,1,0,1,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,15,434,201,233,91,103,105,129,3,0,0,0,0,0,2,1,93,104,105,130,5,0,0,0,0,0,200,232,90,103,105,128,3,0,0,0,0,0,2,1,92,104,105,129,5,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,16,317,141,176,80,90,61,85,0,0,0,0,0,0,0,1,80,91,61,85,0,1,0,0,0,0,141,172,80,90,61,81,0,0,0,0,0,0,0,1,80,91,61,81,0,1,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,17,260,94,166,45,67,49,99,0,0,0,0,0,0,0,0,45,67,49,99,0,0,0,0,0,0,93,166,44,67,49,99,0,0,0,0,0,0,0,0,44,67,49,99,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,3,18,234,68,166,38,70,30,95,0,0,0,0,0,0,0,1,38,71,30,95,0,1,0,0,0,0,68,166,38,70,30,95,0,0,0,0,0,0,0,1,38,71,30,95,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,0,10452,4913,5539,1570,1600,3282,3880,14,7,22,16,3,2,22,34,1586,1632,3292,3900,25,20,28,21,4,6,4843,5476,1515,1566,3269,3857,14,7,22,16,3,2,20,28,1530,1592,3278,3874,24,17,27,19,4,4,70,63,55,34,13,23,0,0,0,0,0,0,2,6,56,40,14,26,1,3,1,2,0,2 -050,01,105,Alabama,Perry County,4,1,662,338,324,63,42,269,278,0,0,3,1,0,1,3,2,66,44,271,278,1,1,3,2,0,1,331,319,56,38,269,277,0,0,3,1,0,1,3,2,59,40,271,277,1,1,3,2,0,1,7,5,7,4,0,1,0,0,0,0,0,0,0,0,7,4,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,2,694,339,355,56,49,277,297,2,0,3,2,1,1,0,6,56,55,277,300,2,3,3,2,1,1,334,345,54,44,274,293,2,0,3,2,1,1,0,5,54,49,274,296,2,2,3,2,1,1,5,10,2,5,3,4,0,0,0,0,0,0,0,1,2,6,3,4,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,4,3,686,348,338,56,65,290,269,0,0,0,1,0,0,2,3,58,68,290,271,2,0,0,1,0,1,345,336,53,63,290,269,0,0,0,1,0,0,2,3,55,66,290,271,2,0,0,1,0,1,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,4,1045,581,464,224,155,342,305,4,0,6,1,0,0,5,3,228,158,345,308,5,0,8,1,0,0,559,457,202,148,342,305,4,0,6,1,0,0,5,3,206,151,345,308,5,0,8,1,0,0,22,7,22,7,0,0,0,0,0,0,0,0,0,0,22,7,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,5,844,370,474,120,179,245,292,2,0,2,0,1,0,0,3,120,182,245,293,2,1,2,1,1,0,357,467,108,172,244,292,2,0,2,0,1,0,0,3,108,175,244,293,2,1,2,1,1,0,13,7,12,7,1,0,0,0,0,0,0,0,0,0,12,7,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,6,518,252,266,65,58,185,207,0,0,0,0,0,0,2,1,67,59,185,207,1,1,1,0,0,0,251,264,64,57,185,207,0,0,0,0,0,0,2,0,66,57,185,207,1,0,1,0,0,0,1,2,1,1,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,4,7,561,246,315,47,65,199,248,0,0,0,2,0,0,0,0,47,65,199,248,0,0,0,2,0,0,244,313,45,64,199,247,0,0,0,2,0,0,0,0,45,64,199,247,0,0,0,2,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,8,547,241,306,52,67,186,235,0,0,2,2,1,0,0,2,52,69,186,237,0,1,2,2,1,0,241,303,52,66,186,234,0,0,2,2,1,0,0,1,52,67,186,235,0,1,2,2,1,0,0,3,0,1,0,1,0,0,0,0,0,0,0,1,0,2,0,2,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,9,521,253,268,96,70,152,194,0,0,2,1,0,0,3,3,98,73,153,197,2,2,3,2,0,1,250,265,96,69,151,193,0,0,2,1,0,0,1,2,97,71,151,195,1,1,2,1,0,0,3,3,0,1,1,1,0,0,0,0,0,0,2,1,1,2,2,2,1,1,1,1,0,1 -050,01,105,Alabama,Perry County,4,10,598,269,329,81,78,182,244,0,1,1,1,0,0,5,5,82,81,186,247,3,3,2,2,1,2,265,327,79,78,180,243,0,1,1,1,0,0,5,4,80,80,184,246,3,3,2,1,1,1,4,2,2,0,2,1,0,0,0,0,0,0,0,1,2,1,2,1,0,0,0,1,0,1 -050,01,105,Alabama,Perry County,4,11,733,341,392,112,100,229,291,0,0,0,0,0,0,0,1,112,101,229,292,0,0,0,0,0,0,338,385,111,97,227,287,0,0,0,0,0,0,0,1,111,98,227,288,0,0,0,0,0,0,3,7,1,3,2,4,0,0,0,0,0,0,0,0,1,3,2,4,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,12,674,303,371,111,112,190,256,0,0,2,2,0,0,0,1,111,113,190,257,0,0,2,2,0,0,300,366,111,110,187,254,0,0,2,2,0,0,0,0,111,110,187,254,0,0,2,2,0,0,3,5,0,2,3,2,0,0,0,0,0,0,0,1,0,3,3,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,13,612,300,312,116,110,183,198,0,3,1,1,0,0,0,0,116,110,183,198,0,3,1,1,0,0,299,311,115,110,183,197,0,3,1,1,0,0,0,0,115,110,183,197,0,3,1,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,14,513,221,292,109,122,109,164,3,3,0,2,0,0,0,1,109,123,109,164,3,3,0,3,0,0,220,291,109,122,108,163,3,3,0,2,0,0,0,1,109,123,108,163,3,3,0,3,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,15,434,206,228,91,106,110,122,3,0,0,0,0,0,2,0,93,106,110,122,4,0,1,0,0,0,205,226,90,106,110,120,3,0,0,0,0,0,2,0,92,106,110,120,4,0,1,0,0,0,1,2,1,0,0,2,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,16,303,133,170,81,83,52,85,0,0,0,0,0,0,0,2,81,85,52,85,0,2,0,0,0,0,133,166,81,83,52,81,0,0,0,0,0,0,0,2,81,85,52,81,0,2,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,17,274,97,177,47,72,50,105,0,0,0,0,0,0,0,0,47,72,50,105,0,0,0,0,0,0,96,177,46,72,50,105,0,0,0,0,0,0,0,0,46,72,50,105,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,4,18,233,75,158,43,67,32,90,0,0,0,0,0,0,0,1,43,68,32,91,0,0,0,0,0,0,75,158,43,67,32,90,0,0,0,0,0,0,0,1,43,68,32,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,0,10166,4737,5429,1513,1562,3165,3807,15,7,24,16,3,2,17,35,1529,1596,3171,3825,22,22,28,19,5,2,4669,5364,1460,1527,3150,3783,15,7,24,16,3,2,17,29,1476,1555,3156,3800,22,18,28,18,5,2,68,65,53,35,15,24,0,0,0,0,0,0,0,6,53,41,15,25,0,4,0,1,0,0 -050,01,105,Alabama,Perry County,5,1,625,312,313,56,39,250,270,0,0,3,1,0,0,3,3,59,42,251,273,1,0,3,1,1,0,307,308,52,34,249,270,0,0,3,1,0,0,3,3,55,37,250,273,1,0,3,1,1,0,5,5,4,5,1,0,0,0,0,0,0,0,0,0,4,5,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,2,660,315,345,55,39,255,296,1,0,2,2,1,2,1,6,56,45,256,301,1,0,2,3,1,2,308,337,51,37,252,291,1,0,2,2,1,2,1,5,52,42,253,296,1,0,2,2,1,2,7,8,4,2,3,5,0,0,0,0,0,0,0,1,4,3,3,5,0,0,0,1,0,0 -050,01,105,Alabama,Perry County,5,3,682,344,338,57,57,283,279,1,0,1,1,0,0,2,1,59,58,284,280,2,0,2,1,0,0,340,334,54,54,282,278,1,0,1,1,0,0,2,1,56,55,283,279,2,0,2,1,0,0,4,4,3,3,1,1,0,0,0,0,0,0,0,0,3,3,1,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,4,1024,570,454,224,154,331,297,4,0,7,1,0,0,4,2,228,156,333,298,6,1,7,1,0,0,547,446,201,146,331,297,4,0,7,1,0,0,4,2,205,148,333,298,6,1,7,1,0,0,23,8,23,8,0,0,0,0,0,0,0,0,0,0,23,8,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,5,849,371,478,118,185,248,289,2,0,2,0,1,0,0,4,118,189,248,291,2,2,2,0,1,0,362,471,110,178,247,289,2,0,2,0,1,0,0,4,110,182,247,291,2,2,2,0,1,0,9,7,8,7,1,0,0,0,0,0,0,0,0,0,8,7,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,6,523,255,268,65,60,189,207,1,0,0,0,0,0,0,1,65,60,189,208,1,1,0,0,0,0,252,267,62,59,189,207,1,0,0,0,0,0,0,1,62,59,189,208,1,1,0,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,7,526,239,287,44,55,191,230,0,0,1,1,0,0,3,1,46,56,191,230,1,1,3,1,1,0,237,284,42,54,191,229,0,0,1,1,0,0,3,0,44,54,191,229,1,0,3,1,1,0,2,3,2,1,0,1,0,0,0,0,0,0,0,1,2,2,0,1,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,5,8,515,222,293,46,65,174,224,0,0,2,3,0,0,0,1,46,66,174,224,0,0,2,4,0,0,222,292,46,64,174,224,0,0,2,3,0,0,0,1,46,65,174,224,0,0,2,4,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,9,507,240,267,80,69,158,194,0,0,1,1,1,0,0,3,80,72,158,194,0,3,1,1,1,0,239,262,80,68,157,192,0,0,1,1,1,0,0,1,80,69,157,192,0,1,1,1,1,0,1,5,0,1,1,2,0,0,0,0,0,0,0,2,0,3,1,2,0,2,0,0,0,0 -050,01,105,Alabama,Perry County,5,10,566,252,314,81,73,167,234,0,1,1,1,0,0,3,5,84,78,168,238,1,1,2,2,0,0,249,313,80,73,165,234,0,1,1,1,0,0,3,4,83,77,166,237,1,1,2,2,0,0,3,1,1,0,2,0,0,0,0,0,0,0,0,1,1,1,2,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,11,668,302,366,101,98,200,266,0,0,1,0,0,0,0,2,101,100,200,266,0,2,1,0,0,0,299,359,100,96,198,261,0,0,1,0,0,0,0,2,100,98,198,261,0,2,1,0,0,0,3,7,1,2,2,5,0,0,0,0,0,0,0,0,1,2,2,5,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,12,684,303,381,111,111,191,267,0,0,1,2,0,0,0,1,111,112,191,267,0,1,1,2,0,0,300,374,110,107,189,265,0,0,1,2,0,0,0,0,110,107,189,265,0,0,1,2,0,0,3,7,1,4,2,2,0,0,0,0,0,0,0,1,1,5,2,2,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,5,13,575,265,310,104,114,159,192,0,3,2,1,0,0,0,0,104,114,159,192,0,3,2,1,0,0,263,309,103,114,158,191,0,3,2,1,0,0,0,0,103,114,158,191,0,3,2,1,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,14,516,238,278,115,110,120,162,3,3,0,2,0,0,0,1,115,111,120,162,3,4,0,2,0,0,237,278,115,110,119,162,3,3,0,2,0,0,0,1,115,111,119,162,3,4,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,15,441,205,236,91,108,110,127,3,0,0,0,0,0,1,1,92,109,110,128,4,0,0,0,0,0,204,233,90,108,110,124,3,0,0,0,0,0,1,1,91,109,110,125,4,0,0,0,0,0,1,3,1,0,0,3,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,16,315,137,178,80,85,57,91,0,0,0,0,0,0,0,2,80,87,57,91,0,2,0,0,0,0,137,175,80,85,57,88,0,0,0,0,0,0,0,2,80,87,57,88,0,2,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,17,257,93,164,45,72,48,92,0,0,0,0,0,0,0,0,45,72,48,92,0,0,0,0,0,0,92,163,44,72,48,91,0,0,0,0,0,0,0,0,44,72,48,91,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,5,18,233,74,159,40,68,34,90,0,0,0,0,0,0,0,1,40,69,34,90,0,1,0,0,0,0,74,159,40,68,34,90,0,0,0,0,0,0,0,1,40,69,34,90,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,0,10005,4701,5304,1503,1525,3137,3710,15,7,27,18,3,2,16,42,1519,1557,3143,3735,21,27,31,23,4,6,4626,5232,1446,1484,3120,3686,15,7,27,18,3,2,15,35,1461,1511,3126,3708,20,23,31,23,4,4,75,72,57,41,17,24,0,0,0,0,0,0,1,7,58,46,17,27,1,4,0,0,0,2 -050,01,105,Alabama,Perry County,6,1,610,306,304,61,50,240,247,0,0,3,1,0,0,2,6,63,53,240,253,0,2,5,2,0,0,300,295,56,41,239,247,0,0,3,1,0,0,2,6,58,44,239,253,0,2,5,2,0,0,6,9,5,9,1,0,0,0,0,0,0,0,0,0,5,9,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,2,614,312,302,57,42,250,250,1,0,1,2,1,2,2,6,59,48,250,254,3,1,1,3,1,2,304,296,52,41,247,246,1,0,1,2,1,2,2,5,54,46,247,249,3,1,1,3,1,2,8,6,5,1,3,4,0,0,0,0,0,0,0,1,5,2,3,5,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,3,661,318,343,53,48,261,293,1,0,2,1,0,0,1,1,54,48,261,294,2,0,2,2,0,0,316,337,51,44,261,291,1,0,2,1,0,0,1,1,52,44,261,292,2,0,2,2,0,0,2,6,2,4,0,2,0,0,0,0,0,0,0,0,2,4,0,2,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,4,1006,566,440,229,157,320,279,4,0,8,1,0,0,5,3,234,159,322,282,7,1,8,1,0,0,540,433,206,150,318,279,4,0,8,1,0,0,4,3,210,152,320,282,6,1,8,1,0,0,26,7,23,7,2,0,0,0,0,0,0,0,1,0,24,7,2,0,1,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,5,863,400,463,131,176,262,282,2,0,4,0,1,0,0,5,131,181,262,283,2,4,4,0,1,0,389,456,122,169,260,282,2,0,4,0,1,0,0,5,122,174,260,283,2,4,4,0,1,0,11,7,9,7,2,0,0,0,0,0,0,0,0,0,9,7,2,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,6,523,249,274,60,64,189,209,0,0,0,0,0,0,0,1,60,65,189,209,0,1,0,0,0,0,246,273,57,63,189,209,0,0,0,0,0,0,0,1,57,64,189,209,0,1,0,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,7,511,240,271,49,54,191,213,0,0,0,2,0,0,0,2,49,55,191,215,0,1,0,2,0,0,238,264,47,50,191,212,0,0,0,2,0,0,0,0,47,50,191,212,0,0,0,2,0,0,2,7,2,4,0,1,0,0,0,0,0,0,0,2,2,5,0,3,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,6,8,493,225,268,46,59,178,206,0,0,1,2,0,0,0,1,46,60,178,207,0,0,1,2,0,0,225,267,46,58,178,206,0,0,1,2,0,0,0,1,46,59,178,207,0,0,1,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,9,547,252,295,74,67,174,223,1,0,2,2,1,0,0,3,74,69,174,224,1,2,2,2,1,1,250,290,72,66,174,221,1,0,2,2,1,0,0,1,72,67,174,222,1,0,2,2,1,0,2,5,2,1,0,2,0,0,0,0,0,0,0,2,2,2,0,2,0,2,0,0,0,1 -050,01,105,Alabama,Perry County,6,10,525,238,287,85,75,147,207,0,1,1,1,0,0,5,3,90,76,150,209,0,2,3,2,1,1,236,287,85,75,145,207,0,1,1,1,0,0,5,3,90,76,148,209,0,2,3,2,1,1,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,11,618,287,331,85,80,201,246,0,0,1,0,0,0,0,5,85,85,201,248,0,3,1,0,0,0,283,324,84,78,198,242,0,0,1,0,0,0,0,4,84,82,198,244,0,2,1,0,0,0,4,7,1,2,3,4,0,0,0,0,0,0,0,1,1,3,3,4,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,6,12,714,319,395,112,113,205,280,0,0,2,2,0,0,0,0,112,113,205,280,0,0,2,2,0,0,315,388,110,109,203,277,0,0,2,2,0,0,0,0,110,109,203,277,0,0,2,2,0,0,4,7,2,4,2,3,0,0,0,0,0,0,0,0,2,4,2,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,13,570,254,316,104,103,149,207,0,3,1,2,0,0,0,1,104,104,149,207,0,3,1,2,0,1,252,314,103,103,148,206,0,3,1,2,0,0,0,0,103,103,148,206,0,3,1,2,0,0,2,2,1,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1 -050,01,105,Alabama,Perry County,6,14,518,236,282,106,114,127,163,2,3,1,1,0,0,0,1,106,115,127,164,2,4,1,1,0,0,235,282,106,114,126,163,2,3,1,1,0,0,0,1,106,115,126,164,2,4,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,15,439,202,237,93,103,104,132,4,0,0,1,0,0,1,1,94,104,105,132,4,1,0,1,0,0,201,234,92,103,104,129,4,0,0,1,0,0,1,1,93,104,105,129,4,1,0,1,0,0,1,3,1,0,0,3,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,16,322,145,177,77,84,68,92,0,0,0,0,0,0,0,1,77,85,68,92,0,1,0,0,0,0,145,176,77,84,68,91,0,0,0,0,0,0,0,1,77,85,68,91,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,17,233,87,146,45,67,42,78,0,0,0,0,0,0,0,1,45,67,42,79,0,0,0,1,0,1,86,143,44,67,42,75,0,0,0,0,0,0,0,1,44,67,42,76,0,0,0,1,0,1,1,3,1,0,0,3,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,6,18,238,65,173,36,69,29,103,0,0,0,0,0,0,0,1,36,70,29,103,0,1,0,0,0,0,65,173,36,69,29,103,0,0,0,0,0,0,0,1,36,70,29,103,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,0,9809,4600,5209,1464,1525,3071,3616,14,8,31,18,3,2,17,40,1477,1562,3082,3636,20,24,34,25,4,2,4531,5144,1413,1488,3054,3594,14,7,31,18,3,2,16,35,1425,1521,3064,3612,20,21,34,23,4,2,69,65,51,37,17,22,0,1,0,0,0,0,1,5,52,41,18,24,0,3,0,2,0,0 -050,01,105,Alabama,Perry County,7,1,571,288,283,59,60,224,214,0,1,2,1,0,0,3,7,61,67,227,218,0,2,3,3,0,0,287,276,58,55,224,213,0,0,2,1,0,0,3,7,60,62,227,217,0,1,3,3,0,0,1,7,1,5,0,1,0,1,0,0,0,0,0,0,1,5,0,1,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,7,2,581,301,280,50,45,246,230,1,0,2,1,1,2,1,2,51,47,246,232,1,0,3,1,1,2,296,279,48,45,243,229,1,0,2,1,1,2,1,2,49,47,243,231,1,0,3,1,1,2,5,1,2,0,3,1,0,0,0,0,0,0,0,0,2,0,3,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,3,653,313,340,60,48,249,288,1,0,2,2,0,0,1,2,61,50,250,289,1,0,2,3,0,0,308,332,55,44,249,284,1,0,2,2,0,0,1,2,56,46,250,285,1,0,2,3,0,0,5,8,5,4,0,4,0,0,0,0,0,0,0,0,5,4,0,4,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,4,979,553,426,229,162,308,259,4,0,10,1,0,0,2,4,231,166,310,261,4,2,10,1,0,0,529,419,206,155,307,259,4,0,10,1,0,0,2,4,208,159,309,261,4,2,10,1,0,0,24,7,23,7,1,0,0,0,0,0,0,0,0,0,23,7,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,5,859,399,460,130,176,258,279,2,0,6,0,1,0,2,5,131,180,260,282,2,2,6,1,2,0,389,452,122,168,256,279,2,0,6,0,1,0,2,5,123,172,258,282,2,2,6,1,2,0,10,8,8,8,2,0,0,0,0,0,0,0,0,0,8,8,2,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,6,508,247,261,66,59,181,200,0,0,0,0,0,0,0,2,66,61,181,202,0,0,0,0,0,0,245,260,64,58,181,200,0,0,0,0,0,0,0,2,64,60,181,202,0,0,0,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,7,497,223,274,47,54,175,218,0,0,0,1,0,0,1,1,47,54,176,219,1,0,0,2,0,0,218,269,44,50,173,218,0,0,0,1,0,0,1,0,44,50,174,218,1,0,0,1,0,0,5,5,3,4,2,0,0,0,0,0,0,0,0,1,3,4,2,1,0,0,0,1,0,0 -050,01,105,Alabama,Perry County,7,8,489,225,264,46,58,178,202,0,0,1,3,0,0,0,1,46,59,178,202,0,1,1,3,0,0,225,262,46,57,178,201,0,0,1,3,0,0,0,1,46,58,178,201,0,1,1,3,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,9,526,240,286,61,67,177,216,0,0,1,1,1,0,0,2,61,69,177,217,0,1,1,1,1,0,240,283,61,66,177,215,0,0,1,1,1,0,0,1,61,67,177,216,0,0,1,1,1,0,0,3,0,1,0,1,0,0,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,7,10,514,234,280,86,74,141,198,0,1,2,2,0,0,5,5,90,79,143,200,3,2,3,4,0,0,230,279,84,74,140,198,0,1,2,2,0,0,4,4,87,78,141,200,3,2,3,3,0,0,4,1,2,0,1,0,0,0,0,0,0,0,1,1,3,1,2,0,0,0,0,1,0,0 -050,01,105,Alabama,Perry County,7,11,595,274,321,73,76,199,242,0,0,1,0,0,0,1,3,74,79,199,243,1,2,1,0,0,0,270,317,72,75,196,240,0,0,1,0,0,0,1,2,73,77,196,240,1,2,1,0,0,0,4,4,1,1,3,2,0,0,0,0,0,0,0,1,1,2,3,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,12,708,327,381,119,105,207,274,0,0,1,2,0,0,0,0,119,105,207,274,0,0,1,2,0,0,323,371,118,100,204,269,0,0,1,2,0,0,0,0,118,100,204,269,0,0,1,2,0,0,4,10,1,5,3,5,0,0,0,0,0,0,0,0,1,5,3,5,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,13,575,250,325,98,92,150,228,0,2,2,2,0,0,0,1,98,93,150,228,0,3,2,2,0,0,248,323,97,92,149,227,0,2,2,2,0,0,0,0,97,92,149,227,0,2,2,2,0,0,2,2,1,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,7,14,520,242,278,100,112,141,161,0,3,1,1,0,0,0,1,100,112,141,162,0,4,1,1,0,0,241,278,100,112,140,161,0,3,1,1,0,0,0,1,100,112,140,162,0,4,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,15,439,190,249,92,107,93,139,5,1,0,1,0,0,0,1,92,108,93,139,5,2,0,1,0,0,189,247,91,107,93,137,5,1,0,1,0,0,0,1,91,108,93,137,5,2,0,1,0,0,1,2,1,0,0,2,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,16,331,147,184,68,87,77,96,1,0,0,0,0,0,1,1,69,88,77,96,2,1,0,0,0,0,147,184,68,87,77,96,1,0,0,0,0,0,1,1,69,88,77,96,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,17,224,85,139,50,68,35,70,0,0,0,0,0,0,0,1,50,69,35,70,0,1,0,0,0,0,85,135,50,68,35,66,0,0,0,0,0,0,0,1,50,69,35,66,0,1,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,7,18,240,62,178,30,75,32,102,0,0,0,0,0,0,0,1,30,76,32,102,0,1,0,0,0,0,61,178,29,75,32,102,0,0,0,0,0,0,0,1,29,76,32,102,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,0,9650,4552,5098,1443,1480,3039,3543,14,8,39,22,3,2,14,43,1455,1521,3047,3562,22,24,40,31,3,3,4481,5021,1390,1434,3022,3519,14,7,39,22,3,2,13,37,1401,1470,3029,3536,21,21,40,28,3,3,71,77,53,46,17,24,0,1,0,0,0,0,1,6,54,51,18,26,1,3,0,3,0,0 -050,01,105,Alabama,Perry County,8,1,537,280,257,60,52,216,194,0,1,0,1,0,0,4,9,64,61,218,200,2,1,0,3,0,1,279,247,59,44,216,193,0,0,0,1,0,0,4,9,63,53,218,199,2,0,0,3,0,1,1,10,1,8,0,1,0,1,0,0,0,0,0,0,1,8,0,1,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,8,2,589,314,275,51,47,258,223,0,0,3,1,1,2,1,2,52,49,259,224,0,1,3,1,1,2,310,271,49,45,256,221,0,0,3,1,1,2,1,2,50,47,257,222,0,1,3,1,1,2,4,4,2,2,2,2,0,0,0,0,0,0,0,0,2,2,2,2,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,3,627,302,325,56,42,239,277,2,0,4,2,0,0,1,4,57,46,240,279,2,0,4,4,0,0,295,318,51,39,237,274,2,0,4,2,0,0,1,3,52,42,238,276,2,0,4,3,0,0,7,7,5,3,2,3,0,0,0,0,0,0,0,1,5,4,2,3,0,0,0,1,0,0 -050,01,105,Alabama,Perry County,8,4,953,533,420,229,167,285,248,4,0,14,2,0,0,1,3,229,170,286,249,5,1,14,3,0,0,510,410,206,158,285,247,4,0,14,2,0,0,1,3,206,161,286,248,5,1,14,3,0,0,23,10,23,9,0,1,0,0,0,0,0,0,0,0,23,9,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,5,875,431,444,136,164,283,275,2,0,8,1,1,0,1,4,137,168,283,278,3,1,8,1,1,0,419,435,126,155,281,275,2,0,8,1,1,0,1,4,127,159,281,278,3,1,8,1,1,0,12,9,10,9,2,0,0,0,0,0,0,0,0,0,10,9,2,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,6,499,228,271,57,62,171,205,0,0,0,1,0,0,0,3,57,65,171,206,0,1,0,2,0,0,228,269,57,61,171,204,0,0,0,1,0,0,0,3,57,64,171,205,0,1,0,2,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,7,477,234,243,59,49,175,192,0,0,0,1,0,0,0,1,59,50,175,192,0,1,0,1,0,0,228,236,55,43,173,192,0,0,0,1,0,0,0,0,55,43,173,192,0,0,0,1,0,0,6,7,4,6,2,0,0,0,0,0,0,0,0,1,4,7,2,0,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,8,8,507,224,283,45,58,179,222,0,0,0,2,0,0,0,1,45,59,179,222,0,1,0,2,0,0,223,281,44,57,179,221,0,0,0,2,0,0,0,1,44,58,179,221,0,1,0,2,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,9,506,228,278,51,70,173,204,0,0,3,2,1,0,0,2,51,71,173,206,0,0,3,3,1,0,228,274,51,69,173,202,0,0,3,2,1,0,0,1,51,70,173,203,0,0,3,2,1,0,0,4,0,1,0,2,0,0,0,0,0,0,0,1,0,1,0,3,0,0,0,1,0,0 -050,01,105,Alabama,Perry County,8,10,506,248,258,87,64,156,187,0,1,2,1,0,0,3,5,89,69,158,188,2,4,3,2,0,0,244,257,85,64,155,187,0,1,2,1,0,0,2,4,86,68,156,188,1,3,3,2,0,0,4,1,2,0,1,0,0,0,0,0,0,0,1,1,3,1,2,0,1,1,0,0,0,0 -050,01,105,Alabama,Perry County,8,11,551,236,315,67,67,166,244,0,0,1,2,0,0,2,2,69,69,167,245,1,1,1,2,0,0,233,312,66,66,164,243,0,0,1,2,0,0,2,1,68,67,165,243,1,1,1,2,0,0,3,3,1,1,2,1,0,0,0,0,0,0,0,1,1,2,2,2,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,12,677,318,359,114,101,203,257,0,0,1,0,0,0,0,1,114,102,203,257,0,1,1,0,0,0,314,350,113,97,200,252,0,0,1,0,0,0,0,1,113,98,200,252,0,1,1,0,0,0,4,9,1,4,3,5,0,0,0,0,0,0,0,0,1,4,3,5,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,13,586,248,338,94,101,152,233,0,0,2,3,0,0,0,1,94,102,152,233,0,0,2,4,0,0,246,335,94,100,150,232,0,0,2,3,0,0,0,0,94,100,150,232,0,0,2,3,0,0,2,3,0,1,2,1,0,0,0,0,0,0,0,1,0,2,2,1,0,0,0,1,0,0 -050,01,105,Alabama,Perry County,8,14,523,248,275,100,102,147,167,0,3,1,2,0,0,0,1,100,103,147,167,0,4,1,2,0,0,246,274,99,102,146,166,0,3,1,2,0,0,0,1,99,103,146,166,0,4,1,2,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,15,430,173,257,90,106,80,146,3,3,0,1,0,0,0,1,90,107,80,146,3,4,0,1,0,0,173,256,90,106,80,145,3,3,0,1,0,0,0,1,90,107,80,145,3,4,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,16,348,160,188,70,89,86,98,3,0,0,0,0,0,1,1,71,90,86,98,4,1,0,0,0,0,159,188,69,89,86,98,3,0,0,0,0,0,1,1,70,90,86,98,4,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,17,216,85,131,50,67,35,63,0,0,0,0,0,0,0,1,50,68,35,63,0,1,0,0,0,0,85,127,50,67,35,59,0,0,0,0,0,0,0,1,50,68,35,59,0,1,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,8,18,243,62,181,27,72,35,108,0,0,0,0,0,0,0,1,27,72,35,109,0,1,0,0,0,0,61,181,26,72,35,108,0,0,0,0,0,0,0,1,26,72,35,109,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,0,9538,4493,5045,1434,1480,2990,3495,14,9,36,16,3,2,16,43,1449,1519,2995,3521,24,21,38,25,3,4,4421,4966,1378,1430,2976,3472,14,8,36,16,3,2,14,38,1391,1465,2981,3495,22,17,38,24,3,3,72,79,56,50,14,23,0,1,0,0,0,0,2,5,58,54,14,26,2,4,0,1,0,1 -050,01,105,Alabama,Perry County,9,1,547,289,258,67,60,218,188,0,0,0,0,0,0,4,10,70,69,220,197,2,0,1,1,0,1,285,252,63,54,218,188,0,0,0,0,0,0,4,10,66,63,220,197,2,0,1,1,0,1,4,6,4,6,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,2,580,308,272,51,37,252,230,0,1,3,1,0,1,2,2,53,39,252,232,1,1,4,1,0,1,305,264,49,33,251,227,0,0,3,1,0,1,2,2,51,35,251,229,1,0,4,1,0,1,3,8,2,4,1,3,0,1,0,0,0,0,0,0,2,4,1,3,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,9,3,607,300,307,56,46,238,256,2,0,3,1,1,1,0,3,56,48,238,259,2,1,3,1,1,1,293,300,51,42,236,253,2,0,3,1,1,1,0,3,51,44,236,256,2,1,3,1,1,1,7,7,5,4,2,3,0,0,0,0,0,0,0,0,5,4,2,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,4,921,508,413,224,160,266,250,4,1,12,0,0,0,2,2,226,162,266,251,6,1,12,1,0,0,482,403,199,151,266,249,4,1,12,0,0,0,1,2,200,153,266,250,5,1,12,1,0,0,26,10,25,9,0,1,0,0,0,0,0,0,1,0,26,9,0,1,1,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,5,857,425,432,134,164,278,261,2,0,8,2,1,0,2,5,136,169,279,264,3,0,8,4,1,0,416,424,126,156,277,261,2,0,8,2,1,0,2,5,128,161,278,264,3,0,8,4,1,0,9,8,8,8,1,0,0,0,0,0,0,0,0,0,8,8,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,6,514,244,270,59,62,184,206,0,0,1,0,0,0,0,2,59,64,184,208,0,0,1,0,0,0,241,268,57,61,183,205,0,0,1,0,0,0,0,2,57,63,183,207,0,0,1,0,0,0,3,2,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,7,473,228,245,61,58,167,185,0,0,0,0,0,0,0,2,61,60,167,186,0,1,0,0,0,0,227,235,60,49,167,185,0,0,0,0,0,0,0,1,60,50,167,185,0,1,0,0,0,0,1,10,1,9,0,0,0,0,0,0,0,0,0,1,1,10,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,8,515,221,294,48,65,173,227,0,0,0,2,0,0,0,0,48,65,173,227,0,0,0,2,0,0,219,292,46,64,173,226,0,0,0,2,0,0,0,0,46,64,173,226,0,0,0,2,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,9,495,225,270,43,58,179,207,0,0,2,2,1,0,0,3,43,61,179,209,0,1,2,2,1,0,225,267,43,57,179,206,0,0,2,2,1,0,0,2,43,59,179,207,0,1,2,2,1,0,0,3,0,1,0,1,0,0,0,0,0,0,0,1,0,2,0,2,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,10,498,236,262,82,76,151,180,0,1,2,1,0,0,1,4,83,79,151,182,1,3,2,3,0,1,232,259,80,75,150,179,0,1,2,1,0,0,0,3,80,78,150,180,0,2,2,2,0,0,4,3,2,1,1,1,0,0,0,0,0,0,1,1,3,1,1,2,1,1,0,1,0,1 -050,01,105,Alabama,Perry County,9,11,513,223,290,71,64,147,222,0,0,1,1,0,0,4,3,75,67,149,222,2,2,1,2,0,0,220,288,70,64,145,221,0,0,1,1,0,0,4,2,74,66,147,221,2,1,1,2,0,0,3,2,1,0,2,1,0,0,0,0,0,0,0,1,1,1,2,1,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,9,12,650,296,354,103,96,192,257,0,0,1,0,0,0,0,1,103,97,192,257,0,1,1,0,0,0,293,346,102,92,190,253,0,0,1,0,0,0,0,1,102,93,190,253,0,1,1,0,0,0,3,8,1,4,2,4,0,0,0,0,0,0,0,0,1,4,2,4,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,13,604,268,336,101,105,165,227,0,0,2,3,0,0,0,1,101,106,165,227,0,1,2,3,0,0,265,331,101,103,162,225,0,0,2,3,0,0,0,0,101,103,162,225,0,0,2,3,0,0,3,5,0,2,3,2,0,0,0,0,0,0,0,1,0,3,3,2,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,9,14,524,235,289,98,105,136,179,0,3,1,1,0,0,0,1,98,106,136,179,0,3,1,2,0,0,234,288,97,105,136,178,0,3,1,1,0,0,0,1,97,106,136,178,0,3,1,2,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,15,426,175,251,82,101,90,144,3,3,0,2,0,0,0,1,82,101,90,145,3,4,0,2,0,0,174,250,82,101,89,143,3,3,0,2,0,0,0,1,82,101,89,144,3,4,0,2,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,16,359,172,187,82,90,86,97,3,0,0,0,0,0,1,0,83,90,86,97,4,0,0,0,0,0,171,187,81,90,86,97,3,0,0,0,0,0,1,0,82,90,86,97,4,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,17,205,75,130,42,62,33,66,0,0,0,0,0,0,0,2,42,64,33,66,0,1,0,1,0,0,75,127,42,62,33,63,0,0,0,0,0,0,0,2,42,64,33,63,0,1,0,1,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,9,18,250,65,185,30,71,35,113,0,0,0,0,0,0,0,1,30,72,35,113,0,1,0,0,0,0,64,185,29,71,35,113,0,0,0,0,0,0,0,1,29,72,35,113,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,0,9304,4325,4979,1403,1494,2849,3414,14,9,38,15,3,1,18,46,1420,1537,2859,3437,19,30,41,21,4,2,4257,4893,1349,1440,2837,3391,14,8,38,15,3,1,16,38,1364,1475,2846,3412,18,24,41,19,4,1,68,86,54,54,12,23,0,1,0,0,0,0,2,8,56,62,13,25,1,6,0,2,0,1 -050,01,105,Alabama,Perry County,10,1,522,272,250,60,59,208,183,0,0,0,0,0,0,4,8,63,67,212,189,1,1,0,1,0,0,269,246,57,55,208,183,0,0,0,0,0,0,4,8,60,63,212,189,1,1,0,1,0,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,2,561,289,272,56,46,228,218,0,1,3,1,0,0,2,6,58,52,229,223,0,1,4,2,0,0,285,262,53,39,227,216,0,0,3,1,0,0,2,6,55,45,228,221,0,0,4,2,0,0,4,10,3,7,1,2,0,1,0,0,0,0,0,0,3,7,1,2,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,10,3,569,284,285,56,41,224,239,1,0,2,1,1,1,0,3,56,44,224,240,1,1,2,2,1,1,278,279,50,39,224,235,1,0,2,1,1,1,0,3,50,42,224,236,1,1,2,2,1,1,6,6,6,2,0,4,0,0,0,0,0,0,0,0,6,2,0,4,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,4,904,495,409,219,164,257,243,5,0,12,0,0,0,2,2,221,166,259,244,5,1,12,0,0,0,472,395,197,153,257,242,5,0,12,0,0,0,1,0,198,153,258,242,5,0,12,0,0,0,23,14,22,11,0,1,0,0,0,0,0,0,1,2,23,13,1,2,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,10,5,855,420,435,141,171,262,257,2,1,11,1,1,0,3,5,144,176,264,260,3,3,11,1,1,0,411,425,133,162,261,257,2,1,11,1,1,0,3,4,136,166,263,260,3,2,11,1,1,0,9,10,8,9,1,0,0,0,0,0,0,0,0,1,8,10,1,0,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,10,6,507,232,275,51,54,179,217,0,0,1,1,0,0,1,3,52,57,180,218,0,1,1,2,0,0,231,273,51,53,178,216,0,0,1,1,0,0,1,3,52,56,179,217,0,1,1,2,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,7,457,230,227,66,62,164,164,0,0,0,0,0,0,0,1,66,63,164,165,0,0,0,0,0,0,227,218,63,53,164,164,0,0,0,0,0,0,0,1,63,54,164,165,0,0,0,0,0,0,3,9,3,9,0,0,0,0,0,0,0,0,0,0,3,9,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,8,475,199,276,46,58,153,216,0,0,0,1,0,0,0,1,46,59,153,216,0,1,0,1,0,0,197,273,44,57,153,215,0,0,0,1,0,0,0,0,44,57,153,215,0,0,0,1,0,0,2,3,2,1,0,1,0,0,0,0,0,0,0,1,2,2,0,1,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,10,9,485,211,274,37,64,172,206,0,0,2,3,0,0,0,1,37,65,172,207,0,0,2,3,0,0,211,272,37,63,172,205,0,0,2,3,0,0,0,1,37,64,172,206,0,0,2,3,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,10,499,240,259,82,73,155,180,0,1,1,1,1,0,1,4,83,77,155,180,1,3,1,3,1,1,236,255,80,72,154,179,0,1,1,1,1,0,0,2,80,74,154,179,0,3,1,1,1,0,4,4,2,1,1,1,0,0,0,0,0,0,1,2,3,3,1,1,1,0,0,2,0,1 -050,01,105,Alabama,Perry County,10,11,490,216,274,74,69,137,200,0,0,1,1,0,0,4,4,78,72,137,201,1,4,3,1,1,0,213,272,73,68,135,200,0,0,1,1,0,0,4,3,77,70,135,201,1,3,3,1,1,0,3,2,1,1,2,0,0,0,0,0,0,0,0,1,1,2,2,0,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,10,12,597,263,334,95,90,167,242,0,0,1,0,0,0,0,2,95,92,167,242,0,2,1,0,0,0,260,327,94,88,165,237,0,0,1,0,0,0,0,2,94,90,165,237,0,2,1,0,0,0,3,7,1,2,2,5,0,0,0,0,0,0,0,0,1,2,2,5,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,13,621,271,350,94,108,175,239,0,0,2,2,0,0,0,1,94,109,175,240,0,1,2,2,0,0,269,343,94,104,173,237,0,0,2,2,0,0,0,0,94,104,173,237,0,0,2,2,0,0,2,7,0,4,2,2,0,0,0,0,0,0,0,1,0,5,2,3,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,10,14,497,209,288,84,107,123,176,0,3,2,2,0,0,0,0,84,107,123,176,0,3,2,2,0,0,207,286,83,106,122,175,0,3,2,2,0,0,0,0,83,106,122,175,0,3,2,2,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,15,432,178,254,86,100,89,149,3,3,0,1,0,0,0,1,86,101,89,149,3,4,0,1,0,0,177,254,86,100,88,149,3,3,0,1,0,0,0,1,86,101,88,149,3,4,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,16,353,163,190,77,89,82,100,3,0,0,0,0,0,1,1,78,89,82,101,4,1,0,0,0,0,162,189,76,89,82,99,3,0,0,0,0,0,1,1,77,89,82,100,4,1,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,17,228,83,145,47,70,36,73,0,0,0,0,0,0,0,2,47,71,36,74,0,2,0,0,0,0,83,142,47,70,36,70,0,0,0,0,0,0,0,2,47,71,36,71,0,2,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,10,18,252,70,182,32,69,38,112,0,0,0,0,0,0,0,1,32,70,38,112,0,1,0,0,0,0,69,182,31,69,38,112,0,0,0,0,0,0,0,1,31,70,38,112,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,0,9049,4212,4837,1317,1405,2818,3361,16,9,39,15,3,1,19,46,1334,1448,2828,3385,25,26,42,25,3,2,4148,4773,1268,1369,2806,3340,16,8,38,15,3,1,17,40,1283,1407,2815,3360,23,22,41,24,3,1,64,64,49,36,12,21,0,1,1,0,0,0,2,6,51,41,13,25,2,4,1,1,0,1 -050,01,105,Alabama,Perry County,11,1,491,271,220,62,43,204,170,0,0,0,1,0,0,5,6,67,49,207,174,1,0,1,3,0,0,268,219,59,42,204,170,0,0,0,1,0,0,5,6,64,48,207,174,1,0,1,3,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,2,527,263,264,44,46,213,207,0,1,4,1,0,0,2,9,46,55,214,213,1,2,4,3,0,0,259,258,42,42,212,206,0,0,3,1,0,0,2,9,44,51,213,212,1,1,3,3,0,0,4,6,2,4,1,1,0,1,1,0,0,0,0,0,2,4,1,1,0,1,1,0,0,0 -050,01,105,Alabama,Perry County,11,3,549,286,263,50,37,232,221,1,0,1,1,1,1,1,3,51,40,232,222,1,2,2,1,1,1,281,260,45,37,232,218,1,0,1,1,1,1,1,3,46,40,232,219,1,2,2,1,1,1,5,3,5,0,0,3,0,0,0,0,0,0,0,0,5,0,0,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,4,856,458,398,195,144,245,253,5,0,11,0,0,0,2,1,197,145,246,254,6,1,11,0,0,0,437,389,174,138,245,251,5,0,11,0,0,0,2,0,176,138,246,251,6,0,11,0,0,0,21,9,21,6,0,2,0,0,0,0,0,0,0,1,21,7,0,3,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,11,5,803,400,403,135,156,249,241,2,1,11,1,1,0,2,4,137,160,250,244,3,1,11,2,1,0,390,396,127,150,248,241,2,1,11,1,1,0,1,3,128,153,249,243,2,1,11,2,1,0,10,7,8,6,1,0,0,0,0,0,0,0,1,1,9,7,1,1,1,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,6,520,242,278,49,54,188,219,0,0,4,1,0,0,1,4,50,58,189,220,0,2,4,2,0,0,241,275,49,52,187,218,0,0,4,1,0,0,1,4,50,56,188,219,0,2,4,2,0,0,1,3,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,7,443,215,228,54,53,161,174,0,0,0,0,0,0,0,1,54,54,161,175,0,0,0,0,0,0,214,227,53,52,161,174,0,0,0,0,0,0,0,1,53,53,161,175,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,8,458,201,257,42,51,159,204,0,0,0,1,0,0,0,1,42,51,159,204,0,0,0,2,0,1,199,249,40,45,159,203,0,0,0,1,0,0,0,0,40,45,159,203,0,0,0,1,0,0,2,8,2,6,0,1,0,0,0,0,0,0,0,1,2,6,0,1,0,0,0,1,0,1 -050,01,105,Alabama,Perry County,11,9,462,192,270,38,61,153,206,0,0,1,2,0,0,0,1,38,62,153,207,0,0,1,2,0,0,192,269,38,60,153,206,0,0,1,2,0,0,0,1,38,61,153,207,0,0,1,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,10,505,232,273,66,73,161,193,2,1,1,2,1,0,1,4,67,77,162,195,3,3,1,3,1,0,229,269,64,72,161,192,2,1,1,2,1,0,0,2,64,74,161,192,2,2,1,3,1,0,3,4,2,1,0,1,0,0,0,0,0,0,1,2,3,3,1,3,1,1,0,0,0,0 -050,01,105,Alabama,Perry County,11,11,488,230,258,80,66,145,188,0,0,1,1,0,0,4,3,83,69,146,190,3,1,2,2,0,0,228,258,80,66,143,188,0,0,1,1,0,0,4,3,83,69,144,190,3,1,2,2,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,12,555,240,315,81,82,158,229,0,0,1,0,0,0,0,4,81,86,158,229,0,3,1,1,0,0,236,308,80,80,155,225,0,0,1,0,0,0,0,3,80,83,155,225,0,2,1,1,0,0,4,7,1,2,3,4,0,0,0,0,0,0,0,1,1,3,3,4,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,11,13,632,282,350,97,110,183,238,0,0,2,2,0,0,0,0,97,110,183,238,0,0,2,2,0,0,279,343,96,106,181,235,0,0,2,2,0,0,0,0,96,106,181,235,0,0,2,2,0,0,3,7,1,4,2,3,0,0,0,0,0,0,0,0,1,4,2,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,14,491,201,290,82,95,118,191,0,3,1,1,0,0,0,0,82,95,118,191,0,3,1,1,0,0,199,288,81,94,117,190,0,3,1,1,0,0,0,0,81,94,117,190,0,3,1,1,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,15,436,188,248,86,104,99,140,2,3,1,0,0,0,0,1,86,104,99,141,2,4,1,0,0,0,187,247,86,103,98,140,2,3,1,0,0,0,0,1,86,103,98,141,2,4,1,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,16,346,149,197,70,89,74,106,4,0,0,1,0,0,1,1,70,90,75,106,5,1,0,1,0,0,148,196,69,89,74,105,4,0,0,1,0,0,1,1,69,90,75,105,5,1,0,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,17,237,92,145,50,69,42,75,0,0,0,0,0,0,0,1,50,70,42,75,0,1,0,0,0,0,92,144,50,69,42,74,0,0,0,0,0,0,0,1,50,70,42,74,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,11,18,250,70,180,36,72,34,106,0,0,0,0,0,0,0,2,36,73,34,107,0,2,0,0,0,0,69,178,35,72,34,104,0,0,0,0,0,0,0,2,35,73,34,105,0,2,0,0,0,0,1,2,1,0,0,2,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,0,8940,4162,4778,1317,1403,2762,3294,18,13,40,13,3,3,22,52,1335,1448,2776,3326,29,31,41,23,4,3,4092,4705,1264,1362,2749,3273,16,8,40,13,3,3,20,46,1281,1402,2763,3301,25,23,41,22,3,3,70,73,53,41,13,21,2,5,0,0,0,0,2,6,54,46,13,25,4,8,0,1,1,0 -050,01,105,Alabama,Perry County,12,1,496,264,232,54,54,203,166,2,4,0,1,0,0,5,7,59,61,207,171,4,4,0,3,0,0,257,225,49,51,203,166,0,0,0,1,0,0,5,7,54,58,207,171,2,0,0,3,0,0,7,7,5,3,0,0,2,4,0,0,0,0,0,0,5,3,0,0,2,4,0,0,0,0 -050,01,105,Alabama,Perry County,12,2,497,246,251,56,45,185,195,0,1,2,1,0,0,3,9,58,53,188,203,1,2,2,2,0,0,241,244,52,40,184,194,0,0,2,1,0,0,3,9,54,48,187,202,1,1,2,2,0,0,5,7,4,5,1,1,0,1,0,0,0,0,0,0,4,5,1,1,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,12,3,517,269,248,42,40,220,203,1,0,2,0,1,2,3,3,44,43,223,206,2,0,2,0,1,2,267,247,40,40,220,202,1,0,2,0,1,2,3,3,42,43,223,205,2,0,2,0,1,2,2,1,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,4,852,456,396,201,137,238,253,5,0,11,1,0,1,1,4,202,141,239,255,5,1,11,2,0,1,433,385,178,131,238,249,5,0,11,1,0,1,1,3,179,134,239,250,5,1,11,2,0,1,23,11,23,6,0,4,0,0,0,0,0,0,0,1,23,7,0,5,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,5,768,378,390,127,169,233,217,2,1,13,0,1,0,2,3,129,171,233,219,4,2,13,1,1,0,366,383,118,163,231,217,2,1,13,0,1,0,1,2,119,164,231,218,3,2,13,1,1,0,12,7,9,6,2,0,0,0,0,0,0,0,1,1,10,7,2,1,1,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,6,542,253,289,50,49,197,233,0,0,4,1,0,0,2,6,52,54,198,236,0,2,5,3,0,0,252,287,50,47,196,233,0,0,4,1,0,0,2,6,52,52,197,236,0,2,5,3,0,0,1,2,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,7,430,207,223,56,52,151,170,0,0,0,0,0,0,0,1,56,53,151,171,0,0,0,0,0,0,207,221,56,51,151,169,0,0,0,0,0,0,0,1,56,52,151,170,0,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,8,458,194,264,39,56,155,206,0,0,0,0,0,0,0,2,39,57,155,207,0,1,0,1,0,0,191,257,36,50,155,206,0,0,0,0,0,0,0,1,36,51,155,206,0,1,0,0,0,0,3,7,3,6,0,0,0,0,0,0,0,0,0,1,3,6,0,1,0,0,0,1,0,0 -050,01,105,Alabama,Perry County,12,9,437,187,250,38,53,148,193,0,0,1,3,0,0,0,1,38,54,148,194,0,0,1,3,0,0,187,246,38,50,148,192,0,0,1,3,0,0,0,1,38,51,148,193,0,0,1,3,0,0,0,4,0,3,0,1,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,10,509,237,272,64,70,169,198,2,1,1,1,1,0,0,2,64,72,169,199,2,2,1,2,1,0,237,269,64,69,169,197,2,1,1,1,1,0,0,1,64,70,169,197,2,1,1,2,1,0,0,3,0,1,0,1,0,0,0,0,0,0,0,1,0,2,0,2,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,12,11,477,229,248,78,62,146,179,0,0,1,2,0,0,4,5,80,66,147,181,4,3,1,3,1,0,225,247,76,62,145,179,0,0,1,2,0,0,3,4,78,65,146,181,3,2,1,3,0,0,4,1,2,0,1,0,0,0,0,0,0,0,1,1,2,1,1,0,1,1,0,0,1,0 -050,01,105,Alabama,Perry County,12,12,551,241,310,77,84,162,223,0,0,1,0,0,0,1,3,78,87,163,224,0,2,1,0,0,0,237,306,76,83,159,221,0,0,1,0,0,0,1,2,77,85,160,222,0,1,1,0,0,0,4,4,1,1,3,2,0,0,0,0,0,0,0,1,1,2,3,2,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,12,13,611,279,332,104,101,174,229,0,0,1,1,0,0,0,1,104,101,174,230,0,1,1,1,0,0,275,322,103,96,171,224,0,0,1,1,0,0,0,1,103,96,171,225,0,1,1,1,0,0,4,10,1,5,3,5,0,0,0,0,0,0,0,0,1,5,3,5,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,14,510,213,297,89,91,122,203,0,2,2,1,0,0,0,0,89,91,122,203,0,2,2,1,0,0,211,295,88,90,121,202,0,2,2,1,0,0,0,0,88,90,121,202,0,2,2,1,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,15,427,187,240,78,99,108,137,0,3,1,0,0,0,0,1,78,100,108,137,0,4,1,0,0,0,186,239,78,98,107,137,0,3,1,0,0,0,0,1,78,99,107,137,0,4,1,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,16,363,147,216,74,95,68,118,5,1,0,1,0,0,0,1,74,96,68,118,5,2,0,1,0,0,146,215,73,95,68,117,5,1,0,1,0,0,0,1,73,96,68,117,5,2,0,1,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,17,258,105,153,51,74,52,78,1,0,0,0,0,0,1,1,52,75,52,78,2,1,0,0,0,0,105,153,51,74,52,78,1,0,0,0,0,0,1,1,52,75,52,78,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,12,18,237,70,167,39,72,31,93,0,0,0,0,0,0,0,2,39,73,31,94,0,2,0,0,0,0,69,164,38,72,31,90,0,0,0,0,0,0,0,2,38,73,31,91,0,2,0,0,0,0,1,3,1,0,0,3,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,0,8687,4031,4656,1291,1373,2651,3199,18,14,41,13,3,3,27,54,1315,1422,2668,3231,27,29,45,25,5,4,3963,4576,1241,1324,2638,3180,16,8,41,13,3,3,24,48,1262,1367,2653,3211,23,18,45,24,5,4,68,80,50,49,13,19,2,6,0,0,0,0,3,6,53,55,15,20,4,11,0,1,0,0 -050,01,105,Alabama,Perry County,13,1,460,239,221,51,55,175,155,2,4,0,1,0,0,11,6,61,61,183,158,5,6,1,2,1,0,235,212,49,50,175,155,0,0,0,1,0,0,11,6,59,56,183,158,3,2,1,2,1,0,4,9,2,5,0,0,2,4,0,0,0,0,0,0,2,5,0,0,2,4,0,0,0,0 -050,01,105,Alabama,Perry County,13,2,477,240,237,51,50,186,175,0,1,0,1,0,0,3,10,54,59,189,181,0,4,0,3,0,0,236,227,47,41,186,175,0,0,0,1,0,0,3,10,50,50,189,181,0,3,0,3,0,0,4,10,4,9,0,0,0,1,0,0,0,0,0,0,4,9,0,0,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,13,3,506,260,246,40,36,213,205,0,1,3,0,1,2,3,2,42,38,215,207,2,1,3,0,1,2,256,242,38,34,212,204,0,0,3,0,1,2,2,2,39,36,213,206,2,0,3,0,1,2,4,4,2,2,1,1,0,1,0,0,0,0,1,0,3,2,2,1,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,13,4,818,443,375,203,135,219,233,6,0,13,1,0,1,2,5,205,140,219,238,7,1,14,1,0,1,419,365,179,129,219,230,6,0,13,1,0,1,2,4,181,133,219,234,7,0,14,1,0,1,24,10,24,6,0,3,0,0,0,0,0,0,0,1,24,7,0,4,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,13,5,723,346,377,120,162,210,211,2,1,11,0,1,0,2,3,122,164,210,213,3,1,12,2,1,0,335,369,112,156,208,210,2,1,11,0,1,0,1,2,113,157,208,212,2,1,12,1,1,0,11,8,8,6,2,1,0,0,0,0,0,0,1,1,9,7,2,1,1,0,0,1,0,0 -050,01,105,Alabama,Perry County,13,6,527,252,275,52,54,196,213,0,0,4,1,0,0,0,7,52,60,196,218,0,1,4,2,0,1,251,273,52,52,195,213,0,0,4,1,0,0,0,7,52,58,195,218,0,1,4,2,0,1,1,2,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,7,417,196,221,47,48,148,172,0,0,1,0,0,0,0,1,47,49,148,172,0,0,1,1,0,0,196,220,47,47,148,172,0,0,1,0,0,0,0,1,47,48,148,172,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,8,419,191,228,45,45,146,181,0,0,0,0,0,0,0,2,45,47,146,182,0,1,0,0,0,0,189,221,43,39,146,181,0,0,0,0,0,0,0,1,43,40,146,182,0,0,0,0,0,0,2,7,2,6,0,0,0,0,0,0,0,0,0,1,2,7,0,0,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,13,9,458,181,277,40,59,141,215,0,0,0,2,0,0,0,1,40,60,141,216,0,0,0,2,0,0,180,273,39,56,141,214,0,0,0,2,0,0,0,1,39,57,141,215,0,0,0,2,0,0,1,4,1,3,0,1,0,0,0,0,0,0,0,0,1,3,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,10,469,208,261,52,63,152,193,0,1,3,2,1,0,0,2,52,65,152,194,0,2,3,2,1,0,208,258,52,62,152,192,0,1,3,2,1,0,0,1,52,63,152,193,0,1,3,2,1,0,0,3,0,1,0,1,0,0,0,0,0,0,0,1,0,2,0,1,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,13,11,467,235,232,80,59,149,167,2,0,1,1,0,0,3,5,82,64,151,168,3,1,2,4,1,0,231,231,78,59,148,167,2,0,1,1,0,0,2,4,79,63,149,168,2,0,2,4,1,0,4,1,2,0,1,0,0,0,0,0,0,0,1,1,3,1,2,0,1,1,0,0,0,0 -050,01,105,Alabama,Perry County,13,12,531,228,303,77,80,148,220,0,0,1,1,0,0,2,2,79,82,150,221,0,1,1,1,0,0,225,300,76,79,146,219,0,0,1,1,0,0,2,1,78,80,148,220,0,0,1,1,0,0,3,3,1,1,2,1,0,0,0,0,0,0,0,1,1,2,2,1,0,1,0,0,0,0 -050,01,105,Alabama,Perry County,13,13,601,283,318,99,100,183,216,0,0,1,0,0,0,0,2,99,102,183,217,0,1,1,0,0,0,279,308,98,95,180,211,0,0,1,0,0,0,0,2,98,97,180,212,0,1,1,0,0,0,4,10,1,5,3,5,0,0,0,0,0,0,0,0,1,5,3,5,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,14,532,222,310,87,95,133,213,0,0,2,1,0,0,0,1,87,96,133,213,0,0,2,2,0,0,220,307,87,93,131,212,0,0,2,1,0,0,0,1,87,94,131,212,0,0,2,2,0,0,2,3,0,2,2,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,15,434,192,242,79,90,112,147,0,3,1,1,0,0,0,1,79,91,112,147,0,4,1,1,0,0,190,241,78,90,111,146,0,3,1,1,0,0,0,1,78,91,111,146,0,4,1,1,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,16,357,133,224,75,99,55,120,3,3,0,1,0,0,0,1,75,99,55,121,3,3,0,2,0,0,133,223,75,99,55,119,3,3,0,1,0,0,0,1,75,99,55,120,3,3,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,17,270,114,156,56,76,54,79,3,0,0,0,0,0,1,1,57,77,54,80,4,0,0,0,0,0,113,156,55,76,54,79,3,0,0,0,0,0,1,1,56,77,54,80,4,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,105,Alabama,Perry County,13,18,221,68,153,37,67,31,84,0,0,0,0,0,0,0,2,37,68,31,85,0,2,0,0,0,0,67,150,36,67,31,81,0,0,0,0,0,0,0,2,36,68,31,82,0,2,0,0,0,0,1,3,1,0,0,3,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,0,19746,9428,10318,5552,5679,3716,4507,13,15,16,20,48,23,83,74,5618,5746,3777,4560,36,40,32,24,50,24,9237,10196,5436,5607,3693,4481,13,15,13,19,0,1,82,73,5501,5673,3754,4534,36,40,28,22,2,2,191,122,116,72,23,26,0,0,3,1,48,22,1,1,117,73,23,26,0,0,4,2,48,22 -050,01,107,Alabama,Pickens County,1,1,1191,593,598,285,292,280,282,1,0,3,1,5,5,19,18,304,310,299,298,2,2,3,1,5,5,577,585,275,284,279,282,1,0,3,1,0,0,19,18,294,302,298,298,2,2,3,1,0,0,16,13,10,8,1,0,0,0,0,0,5,5,0,0,10,8,1,0,0,0,0,0,5,5 -050,01,107,Alabama,Pickens County,1,2,1244,636,608,314,310,306,285,1,0,1,3,2,2,12,8,325,318,318,293,2,1,1,3,2,2,627,598,309,303,304,284,1,0,1,3,0,0,12,8,320,311,316,292,2,1,1,3,0,0,9,10,5,7,2,1,0,0,0,0,2,2,0,0,5,7,2,1,0,0,0,0,2,2 -050,01,107,Alabama,Pickens County,1,3,1336,701,635,352,298,337,326,0,0,0,1,0,0,12,10,364,308,346,335,3,1,0,1,0,0,694,630,345,295,337,324,0,0,0,1,0,0,12,10,357,305,346,333,3,1,0,1,0,0,7,5,7,3,0,2,0,0,0,0,0,0,0,0,7,3,0,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,4,1376,700,676,321,318,373,348,0,0,2,2,1,1,3,7,323,325,376,353,0,1,3,3,1,1,690,667,315,314,370,346,0,0,2,1,0,0,3,6,317,320,373,351,0,1,3,1,0,0,10,9,6,4,3,2,0,0,0,1,1,1,0,1,6,5,3,2,0,0,0,2,1,1 -050,01,107,Alabama,Pickens County,1,5,1147,562,585,276,282,255,294,1,3,2,0,17,3,11,3,282,285,262,296,3,4,9,0,17,3,528,575,262,276,254,293,1,3,1,0,0,0,10,3,267,279,261,295,3,4,7,0,0,0,34,10,14,6,1,1,0,0,1,0,17,3,1,0,15,6,1,1,0,0,2,0,17,3 -050,01,107,Alabama,Pickens County,1,6,1059,502,557,270,250,209,293,1,1,2,3,18,7,2,3,271,253,211,295,1,2,3,3,18,7,466,542,253,243,208,292,1,1,2,3,0,0,2,3,254,246,210,294,1,2,3,3,0,0,36,15,17,7,1,1,0,0,0,0,18,7,0,0,17,7,1,1,0,0,0,0,18,7 -050,01,107,Alabama,Pickens County,1,7,1035,481,554,281,264,194,280,1,2,0,1,3,3,2,4,283,267,195,282,3,5,0,1,3,3,459,541,262,254,194,280,1,2,0,1,0,0,2,4,264,257,195,282,3,5,0,1,0,0,22,13,19,10,0,0,0,0,0,0,3,3,0,0,19,10,0,0,0,0,0,0,3,3 -050,01,107,Alabama,Pickens County,1,8,1069,489,580,311,316,174,260,1,1,2,0,1,0,0,3,311,318,174,263,1,3,2,0,1,0,477,574,301,311,173,259,1,1,2,0,0,0,0,3,301,313,173,262,1,3,2,0,0,0,12,6,10,5,1,1,0,0,0,0,1,0,0,0,10,5,1,1,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,1,9,1240,581,659,369,359,210,295,0,0,1,2,0,0,1,3,370,361,210,296,0,2,1,3,1,0,570,653,362,354,206,294,0,0,1,2,0,0,1,3,363,356,206,295,0,2,1,3,1,0,11,6,7,5,4,1,0,0,0,0,0,0,0,0,7,5,4,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,10,1511,707,804,448,448,252,350,1,2,3,1,0,0,3,3,449,451,254,350,3,5,3,1,1,0,690,794,438,442,247,346,1,2,1,1,0,0,3,3,439,445,249,346,3,5,1,1,1,0,17,10,10,6,5,4,0,0,2,0,0,0,0,0,10,6,5,4,0,0,2,0,0,0 -050,01,107,Alabama,Pickens County,1,11,1509,751,758,466,409,279,346,3,0,0,1,0,0,3,2,467,411,281,346,4,2,2,1,0,0,746,752,461,405,279,344,3,0,0,1,0,0,3,2,462,407,281,344,4,2,2,1,0,0,5,6,5,4,0,2,0,0,0,0,0,0,0,0,5,4,0,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,12,1469,732,737,440,422,283,312,1,2,0,0,0,0,8,1,446,423,284,313,6,2,4,0,0,0,726,729,435,419,282,307,1,2,0,0,0,0,8,1,441,420,283,308,6,2,4,0,0,0,6,8,5,3,1,5,0,0,0,0,0,0,0,0,5,3,1,5,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,13,1224,589,635,407,398,179,231,0,1,0,2,0,0,3,3,409,399,180,233,2,3,1,2,0,1,586,629,406,396,177,227,0,1,0,2,0,0,3,3,408,397,178,229,2,3,1,2,0,1,3,6,1,2,2,4,0,0,0,0,0,0,0,0,1,2,2,4,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,14,990,451,539,321,366,128,166,0,2,0,2,1,1,1,2,322,367,128,167,1,3,0,3,1,1,449,539,321,366,127,166,0,2,0,2,0,1,1,2,322,367,127,167,1,3,0,3,0,1,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,1,15,846,363,483,262,343,98,137,2,1,0,0,0,1,1,1,262,344,99,137,3,2,0,0,0,1,363,480,262,342,98,136,2,1,0,0,0,0,1,1,262,343,99,136,3,2,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,1,16,640,267,373,190,258,77,113,0,0,0,0,0,0,0,2,190,260,77,113,0,2,0,0,0,0,266,372,190,258,76,112,0,0,0,0,0,0,0,2,190,260,76,112,0,2,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,17,480,202,278,160,198,41,79,0,0,0,1,0,0,1,0,161,198,41,79,1,0,0,1,0,0,202,278,160,198,41,79,0,0,0,1,0,0,1,0,161,198,41,79,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,1,18,380,121,259,79,148,41,110,0,0,0,0,0,0,1,1,79,148,42,111,1,0,0,1,0,0,121,258,79,147,41,110,0,0,0,0,0,0,1,1,79,147,42,111,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,0,19746,9428,10318,5552,5679,3716,4507,13,15,16,20,48,23,83,74,5618,5746,3777,4560,36,40,32,24,50,24,9237,10196,5436,5607,3693,4481,13,15,13,19,0,1,82,73,5501,5673,3754,4534,36,40,28,22,2,2,191,122,116,72,23,26,0,0,3,1,48,22,1,1,117,73,23,26,0,0,4,2,48,22 -050,01,107,Alabama,Pickens County,2,1,1191,593,598,285,292,280,282,1,0,3,1,5,5,19,18,304,310,299,298,2,2,3,1,5,5,577,585,275,284,279,282,1,0,3,1,0,0,19,18,294,302,298,298,2,2,3,1,0,0,16,13,10,8,1,0,0,0,0,0,5,5,0,0,10,8,1,0,0,0,0,0,5,5 -050,01,107,Alabama,Pickens County,2,2,1244,636,608,314,310,306,285,1,0,1,3,2,2,12,8,325,318,318,293,2,1,1,3,2,2,627,598,309,303,304,284,1,0,1,3,0,0,12,8,320,311,316,292,2,1,1,3,0,0,9,10,5,7,2,1,0,0,0,0,2,2,0,0,5,7,2,1,0,0,0,0,2,2 -050,01,107,Alabama,Pickens County,2,3,1336,701,635,352,298,337,326,0,0,0,1,0,0,12,10,364,308,346,335,3,1,0,1,0,0,694,630,345,295,337,324,0,0,0,1,0,0,12,10,357,305,346,333,3,1,0,1,0,0,7,5,7,3,0,2,0,0,0,0,0,0,0,0,7,3,0,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,4,1376,700,676,321,318,373,348,0,0,2,2,1,1,3,7,323,325,376,353,0,1,3,3,1,1,690,667,315,314,370,346,0,0,2,1,0,0,3,6,317,320,373,351,0,1,3,1,0,0,10,9,6,4,3,2,0,0,0,1,1,1,0,1,6,5,3,2,0,0,0,2,1,1 -050,01,107,Alabama,Pickens County,2,5,1147,562,585,276,282,255,294,1,3,2,0,17,3,11,3,282,285,262,296,3,4,9,0,17,3,528,575,262,276,254,293,1,3,1,0,0,0,10,3,267,279,261,295,3,4,7,0,0,0,34,10,14,6,1,1,0,0,1,0,17,3,1,0,15,6,1,1,0,0,2,0,17,3 -050,01,107,Alabama,Pickens County,2,6,1059,502,557,270,250,209,293,1,1,2,3,18,7,2,3,271,253,211,295,1,2,3,3,18,7,466,542,253,243,208,292,1,1,2,3,0,0,2,3,254,246,210,294,1,2,3,3,0,0,36,15,17,7,1,1,0,0,0,0,18,7,0,0,17,7,1,1,0,0,0,0,18,7 -050,01,107,Alabama,Pickens County,2,7,1035,481,554,281,264,194,280,1,2,0,1,3,3,2,4,283,267,195,282,3,5,0,1,3,3,459,541,262,254,194,280,1,2,0,1,0,0,2,4,264,257,195,282,3,5,0,1,0,0,22,13,19,10,0,0,0,0,0,0,3,3,0,0,19,10,0,0,0,0,0,0,3,3 -050,01,107,Alabama,Pickens County,2,8,1069,489,580,311,316,174,260,1,1,2,0,1,0,0,3,311,318,174,263,1,3,2,0,1,0,477,574,301,311,173,259,1,1,2,0,0,0,0,3,301,313,173,262,1,3,2,0,0,0,12,6,10,5,1,1,0,0,0,0,1,0,0,0,10,5,1,1,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,2,9,1240,581,659,369,359,210,295,0,0,1,2,0,0,1,3,370,361,210,296,0,2,1,3,1,0,570,653,362,354,206,294,0,0,1,2,0,0,1,3,363,356,206,295,0,2,1,3,1,0,11,6,7,5,4,1,0,0,0,0,0,0,0,0,7,5,4,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,10,1511,707,804,448,448,252,350,1,2,3,1,0,0,3,3,449,451,254,350,3,5,3,1,1,0,690,794,438,442,247,346,1,2,1,1,0,0,3,3,439,445,249,346,3,5,1,1,1,0,17,10,10,6,5,4,0,0,2,0,0,0,0,0,10,6,5,4,0,0,2,0,0,0 -050,01,107,Alabama,Pickens County,2,11,1509,751,758,466,409,279,346,3,0,0,1,0,0,3,2,467,411,281,346,4,2,2,1,0,0,746,752,461,405,279,344,3,0,0,1,0,0,3,2,462,407,281,344,4,2,2,1,0,0,5,6,5,4,0,2,0,0,0,0,0,0,0,0,5,4,0,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,12,1469,732,737,440,422,283,312,1,2,0,0,0,0,8,1,446,423,284,313,6,2,4,0,0,0,726,729,435,419,282,307,1,2,0,0,0,0,8,1,441,420,283,308,6,2,4,0,0,0,6,8,5,3,1,5,0,0,0,0,0,0,0,0,5,3,1,5,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,13,1224,589,635,407,398,179,231,0,1,0,2,0,0,3,3,409,399,180,233,2,3,1,2,0,1,586,629,406,396,177,227,0,1,0,2,0,0,3,3,408,397,178,229,2,3,1,2,0,1,3,6,1,2,2,4,0,0,0,0,0,0,0,0,1,2,2,4,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,14,990,451,539,321,366,128,166,0,2,0,2,1,1,1,2,322,367,128,167,1,3,0,3,1,1,449,539,321,366,127,166,0,2,0,2,0,1,1,2,322,367,127,167,1,3,0,3,0,1,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,2,15,846,363,483,262,343,98,137,2,1,0,0,0,1,1,1,262,344,99,137,3,2,0,0,0,1,363,480,262,342,98,136,2,1,0,0,0,0,1,1,262,343,99,136,3,2,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,2,16,640,267,373,190,258,77,113,0,0,0,0,0,0,0,2,190,260,77,113,0,2,0,0,0,0,266,372,190,258,76,112,0,0,0,0,0,0,0,2,190,260,76,112,0,2,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,17,480,202,278,160,198,41,79,0,0,0,1,0,0,1,0,161,198,41,79,1,0,0,1,0,0,202,278,160,198,41,79,0,0,0,1,0,0,1,0,161,198,41,79,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,2,18,380,121,259,79,148,41,110,0,0,0,0,0,0,1,1,79,148,42,111,1,0,0,1,0,0,121,258,79,147,41,110,0,0,0,0,0,0,1,1,79,147,42,111,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,3,0,19749,9445,10304,5562,5667,3720,4505,13,17,17,20,48,23,85,72,5640,5731,3771,4547,42,44,26,32,52,23,9252,10180,5444,5593,3697,4479,13,17,14,19,0,1,84,71,5521,5656,3747,4521,42,43,23,31,4,1,193,124,118,74,23,26,0,0,3,1,48,22,1,1,119,75,24,26,0,1,3,1,48,22 -050,01,107,Alabama,Pickens County,3,1,1189,595,594,286,292,281,279,1,0,3,1,5,5,19,17,305,308,297,295,3,0,4,3,5,5,578,579,275,282,280,279,1,0,3,1,0,0,19,17,294,298,296,295,3,0,4,3,0,0,17,15,11,10,1,0,0,0,0,0,5,5,0,0,11,10,1,0,0,0,0,0,5,5 -050,01,107,Alabama,Pickens County,3,2,1239,638,601,315,304,306,285,1,0,1,3,2,2,13,7,328,310,317,289,4,3,1,4,2,2,628,592,309,298,304,284,1,0,1,3,0,0,13,7,322,304,315,288,4,3,1,4,0,0,10,9,6,6,2,1,0,0,0,0,2,2,0,0,6,6,2,1,0,0,0,0,2,2 -050,01,107,Alabama,Pickens County,3,3,1338,700,638,356,301,332,327,0,0,0,1,0,0,12,9,366,309,342,332,1,3,3,3,0,0,693,634,349,299,332,325,0,0,0,1,0,0,12,9,359,307,342,330,1,3,3,3,0,0,7,4,7,2,0,2,0,0,0,0,0,0,0,0,7,2,0,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,3,4,1362,694,668,318,314,370,344,0,0,2,2,1,1,3,7,320,320,371,349,0,2,2,3,4,1,684,659,312,310,367,342,0,0,2,1,0,0,3,6,314,315,368,347,0,1,2,2,3,0,10,9,6,4,3,2,0,0,0,1,1,1,0,1,6,5,3,2,0,1,0,1,1,1 -050,01,107,Alabama,Pickens County,3,5,1161,575,586,280,282,266,296,1,3,2,0,16,2,10,3,290,285,272,298,4,3,3,1,16,2,542,577,266,276,265,295,1,3,1,0,0,0,9,3,275,279,270,297,4,3,2,1,0,0,33,9,14,6,1,1,0,0,1,0,16,2,1,0,15,6,2,1,0,0,1,0,16,2 -050,01,107,Alabama,Pickens County,3,6,1059,498,561,269,253,206,293,1,1,2,3,18,8,2,3,271,254,207,295,2,4,2,3,18,8,462,545,252,246,205,292,1,1,2,3,0,0,2,3,254,247,206,294,2,4,2,3,0,0,36,16,17,7,1,1,0,0,0,0,18,8,0,0,17,7,1,1,0,0,0,0,18,8 -050,01,107,Alabama,Pickens County,3,7,1033,480,553,281,262,192,281,1,2,0,1,4,3,2,4,283,266,193,284,1,2,1,2,4,3,457,540,262,252,192,281,1,2,0,1,0,0,2,4,264,256,193,284,1,2,1,2,0,0,23,13,19,10,0,0,0,0,0,0,4,3,0,0,19,10,0,0,0,0,0,0,4,3 -050,01,107,Alabama,Pickens County,3,8,1066,492,574,312,312,175,258,1,1,3,0,1,0,0,3,312,314,175,259,1,4,3,0,1,0,479,567,301,306,174,257,1,1,3,0,0,0,0,3,301,308,174,258,1,4,3,0,0,0,13,7,11,6,1,1,0,0,0,0,1,0,0,0,11,6,1,1,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,3,9,1228,572,656,362,362,208,288,0,1,1,2,0,0,1,3,363,365,208,289,1,2,1,3,0,0,561,649,355,356,204,287,0,1,1,2,0,0,1,3,356,359,204,288,1,2,1,3,0,0,11,7,7,6,4,1,0,0,0,0,0,0,0,0,7,6,4,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,3,10,1504,703,801,450,440,246,354,1,2,3,1,0,0,3,4,453,444,247,355,1,6,4,1,1,0,687,791,440,434,242,350,1,2,1,1,0,0,3,4,443,438,243,351,1,6,2,1,1,0,16,10,10,6,4,4,0,0,2,0,0,0,0,0,10,6,4,4,0,0,2,0,0,0 -050,01,107,Alabama,Pickens County,3,11,1513,757,756,469,409,283,343,2,1,0,1,0,0,3,2,472,411,283,343,4,1,1,3,0,0,753,750,465,405,283,341,2,1,0,1,0,0,3,2,468,407,283,341,4,1,1,3,0,0,4,6,4,4,0,2,0,0,0,0,0,0,0,0,4,4,0,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,3,12,1468,727,741,435,424,280,314,2,2,0,0,0,0,10,1,443,425,282,314,11,3,1,0,0,0,721,734,430,421,279,310,2,2,0,0,0,0,10,1,438,422,281,310,11,3,1,0,0,0,6,7,5,3,1,4,0,0,0,0,0,0,0,0,5,3,1,4,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,3,13,1234,597,637,408,396,186,235,0,1,0,2,0,0,3,3,410,398,187,236,3,4,0,2,0,0,593,630,407,394,183,230,0,1,0,2,0,0,3,3,409,396,184,231,3,4,0,2,0,0,4,7,1,2,3,5,0,0,0,0,0,0,0,0,1,2,3,5,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,3,14,997,451,546,321,368,128,171,0,2,0,2,1,1,1,2,322,370,128,171,1,3,0,3,1,1,449,546,321,368,127,171,0,2,0,2,0,1,1,2,322,370,127,171,1,3,0,3,0,1,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,3,15,842,370,472,267,334,100,135,2,1,0,0,0,1,1,1,268,335,100,136,3,1,0,0,0,1,370,469,267,333,100,134,2,1,0,0,0,0,1,1,268,334,100,135,3,1,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,3,16,641,267,374,188,261,79,111,0,0,0,0,0,0,0,2,188,263,79,111,0,2,0,0,0,0,266,373,188,261,78,110,0,0,0,0,0,0,0,2,188,263,78,110,0,2,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,3,17,490,205,285,163,202,41,82,0,0,0,1,0,0,1,0,164,202,41,82,1,0,0,1,0,0,205,285,163,202,41,82,0,0,0,1,0,0,1,0,164,202,41,82,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,3,18,385,124,261,82,151,41,109,0,0,0,0,0,0,1,1,82,152,42,109,1,1,0,0,0,0,124,260,82,150,41,109,0,0,0,0,0,0,1,1,82,151,42,109,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,0,19357,9264,10093,5453,5562,3642,4399,15,16,17,19,46,22,91,75,5538,5629,3700,4452,46,40,25,27,47,24,9065,9958,5327,5479,3620,4370,15,16,14,18,0,1,89,74,5410,5545,3678,4423,44,39,22,26,1,3,199,135,126,83,22,29,0,0,3,1,46,21,2,1,128,84,22,29,2,1,3,1,46,21 -050,01,107,Alabama,Pickens County,4,1,1145,562,583,266,274,265,285,2,0,3,1,5,5,21,18,286,291,284,301,6,1,3,2,5,6,539,561,249,258,264,284,2,0,3,1,0,0,21,18,269,275,283,300,6,1,3,2,0,1,23,22,17,16,1,1,0,0,0,0,5,5,0,0,17,16,1,1,0,0,0,0,5,5 -050,01,107,Alabama,Pickens County,4,2,1165,618,547,313,284,283,250,1,0,1,3,3,2,17,8,330,292,296,256,3,2,3,3,3,2,602,538,303,278,281,249,1,0,1,3,0,0,16,8,319,286,294,255,2,2,3,3,0,0,16,9,10,6,2,1,0,0,0,0,3,2,1,0,11,6,2,1,1,0,0,0,3,2 -050,01,107,Alabama,Pickens County,4,3,1323,674,649,343,312,317,330,0,0,0,1,0,0,14,6,357,317,325,335,4,2,2,2,0,0,671,645,340,310,317,328,0,0,0,1,0,0,14,6,354,315,325,333,4,2,2,2,0,0,3,4,3,2,0,2,0,0,0,0,0,0,0,0,3,2,0,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,4,1261,631,630,292,297,336,321,0,0,0,2,0,1,3,9,295,306,338,329,0,2,1,2,0,1,621,620,284,294,334,317,0,0,0,1,0,0,3,8,287,302,336,325,0,1,1,1,0,0,10,10,8,3,2,4,0,0,0,1,0,1,0,1,8,4,2,4,0,1,0,1,0,1 -050,01,107,Alabama,Pickens County,4,5,1180,605,575,291,281,292,287,1,1,3,0,10,1,8,5,297,286,299,288,3,3,4,2,10,1,581,567,281,275,290,286,1,1,2,0,0,0,7,5,286,280,297,287,2,3,3,2,0,0,24,8,10,6,2,1,0,0,1,0,10,1,1,0,11,6,2,1,1,0,1,0,10,1 -050,01,107,Alabama,Pickens County,4,6,1053,492,561,274,266,194,282,1,2,3,2,19,7,1,2,275,268,195,284,1,2,3,2,19,7,455,546,257,259,193,281,1,2,3,2,0,0,1,2,258,261,194,283,1,2,3,2,0,0,37,15,17,7,1,1,0,0,0,0,19,7,0,0,17,7,1,1,0,0,0,0,19,7 -050,01,107,Alabama,Pickens County,4,7,1022,481,541,279,254,191,276,1,2,0,1,7,3,3,5,281,259,194,278,2,4,0,2,7,3,454,524,259,240,191,276,1,2,0,1,0,0,3,5,261,245,194,278,2,4,0,2,0,0,27,17,20,14,0,0,0,0,0,0,7,3,0,0,20,14,0,0,0,0,0,0,7,3 -050,01,107,Alabama,Pickens County,4,8,995,468,527,293,280,171,244,1,0,2,0,1,1,0,2,293,280,171,245,1,0,2,2,1,2,456,520,282,275,171,243,1,0,2,0,0,0,0,2,282,275,171,244,1,0,2,2,0,1,12,7,11,5,0,1,0,0,0,0,1,1,0,0,11,5,0,1,0,0,0,0,1,1 -050,01,107,Alabama,Pickens County,4,9,1169,523,646,336,372,185,267,0,2,1,2,0,0,1,3,337,374,185,270,1,3,1,2,0,0,509,637,326,364,181,266,0,2,1,2,0,0,1,3,327,366,181,269,1,3,1,2,0,0,14,9,10,8,4,1,0,0,0,0,0,0,0,0,10,8,4,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,10,1459,700,759,451,410,244,344,1,0,2,1,0,0,2,4,453,413,244,346,3,3,2,2,0,0,686,751,442,405,239,341,1,0,2,1,0,0,2,4,444,408,239,343,3,3,2,2,0,0,14,8,9,5,5,3,0,0,0,0,0,0,0,0,9,5,5,3,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,11,1523,758,765,471,415,280,343,1,3,2,1,0,0,4,3,475,418,281,345,3,4,2,1,1,0,753,758,468,411,280,340,1,3,0,1,0,0,4,3,472,414,281,342,3,4,0,1,1,0,5,7,3,4,0,3,0,0,2,0,0,0,0,0,3,4,0,3,0,0,2,0,0,0 -050,01,107,Alabama,Pickens County,4,12,1422,686,736,401,422,273,311,3,2,0,0,0,0,9,1,409,422,275,312,9,3,2,0,0,0,679,730,395,419,272,308,3,2,0,0,0,0,9,1,403,419,274,309,9,3,2,0,0,0,7,6,6,3,1,3,0,0,0,0,0,0,0,0,6,3,1,3,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,13,1292,643,649,425,390,215,253,1,1,0,2,0,0,2,3,426,392,217,255,2,4,0,2,0,0,638,642,423,388,212,248,1,1,0,2,0,0,2,3,424,390,214,250,2,4,0,2,0,0,5,7,2,2,3,5,0,0,0,0,0,0,0,0,2,2,3,5,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,14,1007,447,560,319,372,126,182,0,2,0,2,0,1,2,1,321,373,126,182,2,3,0,2,0,1,446,559,319,372,125,181,0,2,0,2,0,1,2,1,321,373,125,181,2,3,0,2,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,15,826,384,442,274,314,105,125,2,1,0,0,1,0,2,2,276,316,105,126,4,2,0,0,1,0,383,441,274,314,105,124,2,1,0,0,0,0,2,2,276,316,105,125,4,2,0,0,0,0,1,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,4,16,646,265,381,182,265,83,114,0,0,0,0,0,1,0,1,182,266,83,114,0,1,0,0,0,1,265,378,182,264,83,113,0,0,0,0,0,0,0,1,182,265,83,113,0,1,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,4,17,499,202,297,157,206,44,89,0,0,0,1,0,0,1,1,158,207,44,89,1,1,0,1,0,0,202,297,157,206,44,89,0,0,0,1,0,0,1,1,158,207,44,89,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,4,18,370,125,245,86,148,38,96,0,0,0,0,0,0,1,1,87,149,38,97,1,0,0,0,0,0,125,244,86,147,38,96,0,0,0,0,0,0,1,1,87,148,38,97,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,5,0,19314,9259,10055,5436,5542,3649,4369,16,15,21,28,45,22,92,79,5523,5617,3714,4420,42,38,28,37,47,24,9064,9910,5311,5449,3628,4340,16,15,18,27,0,1,91,78,5397,5523,3692,4391,42,37,25,36,2,3,195,145,125,93,21,29,0,0,3,1,45,21,1,1,126,94,22,29,0,1,3,1,45,21 -050,01,107,Alabama,Pickens County,5,1,1121,547,574,266,290,251,263,2,0,2,0,5,4,21,17,286,307,270,279,5,1,2,0,6,4,525,546,249,267,251,262,2,0,2,0,0,0,21,17,269,284,270,278,5,1,2,0,1,0,22,28,17,23,0,1,0,0,0,0,5,4,0,0,17,23,0,1,0,0,0,0,5,4 -050,01,107,Alabama,Pickens County,5,2,1142,620,522,310,263,284,241,1,0,3,4,3,2,19,12,329,275,300,252,3,1,4,4,3,2,602,514,296,258,283,240,1,0,3,4,0,0,19,12,315,270,299,251,3,1,4,4,0,0,18,8,14,5,1,1,0,0,0,0,3,2,0,0,14,5,1,1,0,0,0,0,3,2 -050,01,107,Alabama,Pickens County,5,3,1318,669,649,343,320,314,317,1,0,1,4,0,1,10,7,353,327,321,321,3,2,3,5,0,1,664,641,339,315,313,315,1,0,1,4,0,0,10,7,349,322,320,319,3,2,3,5,0,0,5,8,4,5,1,2,0,0,0,0,0,1,0,0,4,5,1,2,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,5,4,1222,623,599,279,279,337,308,1,0,0,3,0,1,6,8,285,286,341,314,3,3,0,3,0,1,616,588,274,275,335,304,1,0,0,2,0,0,6,7,280,281,339,310,3,2,0,2,0,0,7,11,5,4,2,4,0,0,0,1,0,1,0,1,5,5,2,4,0,1,0,1,0,1 -050,01,107,Alabama,Pickens County,5,5,1224,621,603,305,294,299,303,0,0,2,1,7,1,8,4,311,298,307,305,0,1,3,1,8,2,601,594,296,287,297,302,0,0,1,1,0,0,7,4,301,291,304,304,0,1,2,1,1,1,20,9,9,7,2,1,0,0,1,0,7,1,1,0,10,7,3,1,0,0,1,0,7,1 -050,01,107,Alabama,Pickens County,5,6,1051,497,554,263,289,212,251,2,2,3,3,15,5,2,4,265,292,213,253,3,3,3,5,15,5,466,543,248,284,211,250,2,2,3,3,0,0,2,4,250,287,212,252,3,3,3,5,0,0,31,11,15,5,1,1,0,0,0,0,15,5,0,0,15,5,1,1,0,0,0,0,15,5 -050,01,107,Alabama,Pickens County,5,7,1044,493,551,276,260,201,279,0,1,1,2,13,5,2,4,278,264,201,281,2,1,1,4,13,5,457,533,253,247,201,279,0,1,1,2,0,0,2,4,255,251,201,281,2,1,1,4,0,0,36,18,23,13,0,0,0,0,0,0,13,5,0,0,23,13,0,0,0,0,0,0,13,5 -050,01,107,Alabama,Pickens County,5,8,971,452,519,283,254,165,260,2,1,1,0,1,1,0,3,283,257,165,261,2,3,1,0,1,1,440,512,272,249,165,259,2,1,1,0,0,0,0,3,272,252,165,260,2,3,1,0,0,0,12,7,11,5,0,1,0,0,0,0,1,1,0,0,11,5,0,1,0,0,0,0,1,1 -050,01,107,Alabama,Pickens County,5,9,1135,505,630,318,360,182,262,0,2,4,4,0,0,1,2,319,362,182,264,1,2,4,4,0,0,495,620,312,351,178,261,0,2,4,4,0,0,1,2,313,353,178,263,1,2,4,4,0,0,10,10,6,9,4,1,0,0,0,0,0,0,0,0,6,9,4,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,5,10,1423,673,750,440,410,230,334,1,0,1,1,0,0,1,5,441,415,231,336,1,1,1,3,0,0,661,741,432,404,226,331,1,0,1,1,0,0,1,5,433,409,227,333,1,1,1,3,0,0,12,9,8,6,4,3,0,0,0,0,0,0,0,0,8,6,4,3,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,5,11,1530,758,772,472,415,279,351,1,3,3,0,0,0,3,3,475,417,281,353,1,5,4,0,0,0,751,766,468,412,278,348,1,3,1,0,0,0,3,3,471,414,280,350,1,5,2,0,0,0,7,6,4,3,1,3,0,0,2,0,0,0,0,0,4,3,1,3,0,0,2,0,0,0 -050,01,107,Alabama,Pickens County,5,12,1417,691,726,414,416,266,308,2,1,0,1,0,0,9,0,421,416,270,308,8,1,1,1,0,0,683,721,407,412,265,307,2,1,0,1,0,0,9,0,414,412,269,307,8,1,1,1,0,0,8,5,7,4,1,1,0,0,0,0,0,0,0,0,7,4,1,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,5,13,1318,654,664,427,376,223,282,1,2,0,1,0,0,3,3,430,379,224,282,3,4,0,2,0,0,649,657,425,375,220,276,1,2,0,1,0,0,3,3,428,378,221,276,3,4,0,2,0,0,5,7,2,1,3,6,0,0,0,0,0,0,0,0,2,1,3,6,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,5,14,1041,464,577,323,385,138,186,0,2,0,2,0,0,3,2,326,387,139,186,2,4,0,3,0,1,463,574,323,384,137,184,0,2,0,2,0,0,3,2,326,386,138,184,2,4,0,3,0,1,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,5,15,846,390,456,277,329,108,122,2,1,0,1,1,1,2,2,279,331,108,122,4,3,0,1,1,1,389,456,277,329,108,122,2,1,0,1,0,1,2,2,279,331,108,122,4,3,0,1,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,5,16,632,263,369,189,256,74,112,0,0,0,0,0,1,0,0,189,256,74,112,0,0,0,0,0,1,263,366,189,255,74,111,0,0,0,0,0,0,0,0,189,255,74,111,0,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,5,17,500,198,302,148,205,50,95,0,0,0,0,0,0,0,2,148,206,50,96,0,2,0,0,0,0,198,301,148,205,50,94,0,0,0,0,0,0,0,2,148,206,50,95,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,5,18,379,141,238,103,141,36,95,0,0,0,1,0,0,2,1,105,142,37,95,1,1,1,1,0,0,141,237,103,140,36,95,0,0,0,1,0,0,2,1,105,141,37,95,1,1,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,6,0,19309,9281,10028,5459,5530,3630,4343,20,17,25,33,42,20,105,85,5558,5607,3693,4403,53,45,39,40,43,20,9029,9858,5283,5413,3605,4312,16,15,21,33,0,1,104,84,5381,5489,3668,4371,49,43,34,40,1,1,252,170,176,117,25,31,4,2,4,0,42,19,1,1,177,118,25,32,4,2,5,0,42,19 -050,01,107,Alabama,Pickens County,6,1,1094,532,562,258,270,248,272,5,0,0,1,2,2,19,17,276,284,262,289,7,2,4,2,2,2,510,537,240,248,248,271,3,0,0,1,0,0,19,17,258,262,262,288,5,2,4,2,0,0,22,25,18,22,0,1,2,0,0,0,2,2,0,0,18,22,0,1,2,0,0,0,2,2 -050,01,107,Alabama,Pickens County,6,2,1107,576,531,284,262,259,250,0,0,4,2,5,2,24,15,306,277,280,262,3,2,6,3,5,2,555,520,269,254,258,249,0,0,4,2,0,0,24,15,291,269,279,261,3,2,6,3,0,0,21,11,15,8,1,1,0,0,0,0,5,2,0,0,15,8,1,1,0,0,0,0,5,2 -050,01,107,Alabama,Pickens County,6,3,1290,657,633,335,320,307,297,1,0,1,5,2,1,11,10,346,329,314,306,4,1,2,6,2,1,648,626,330,315,305,296,1,0,1,5,0,0,11,10,341,324,312,305,4,1,2,6,0,0,9,7,5,5,2,1,0,0,0,0,2,1,0,0,5,5,2,1,0,0,0,0,2,1 -050,01,107,Alabama,Pickens County,6,4,1201,627,574,289,265,325,299,0,0,1,3,0,1,12,6,301,270,333,304,4,1,1,4,0,1,619,564,282,260,324,295,0,0,1,3,0,0,12,6,294,265,332,300,4,1,1,4,0,0,8,10,7,5,1,4,0,0,0,0,0,1,0,0,7,5,1,4,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,6,5,1266,640,626,316,317,310,302,0,0,2,3,6,1,6,3,322,320,314,304,1,1,3,3,6,1,611,612,297,308,307,299,0,0,1,3,0,0,6,2,303,310,311,300,1,1,2,3,0,0,29,14,19,9,3,3,0,0,1,0,6,1,0,1,19,10,3,4,0,0,1,0,6,1 -050,01,107,Alabama,Pickens County,6,6,1076,516,560,283,291,210,259,2,2,3,1,12,3,6,4,289,295,212,261,4,4,5,1,12,3,478,545,260,281,209,257,2,2,2,1,0,0,5,4,265,285,211,259,4,4,3,1,0,0,38,15,23,10,1,2,0,0,1,0,12,3,1,0,24,10,1,2,0,0,2,0,12,3 -050,01,107,Alabama,Pickens County,6,7,1062,510,552,282,261,209,275,2,1,3,3,12,7,2,5,284,266,211,279,2,2,3,3,12,7,468,532,254,248,209,275,0,1,3,3,0,0,2,5,256,253,211,279,0,2,3,3,0,0,42,20,28,13,0,0,2,0,0,0,12,7,0,0,28,13,0,0,2,0,0,0,12,7 -050,01,107,Alabama,Pickens County,6,8,966,453,513,282,256,165,247,3,3,2,3,1,1,0,3,282,259,165,248,3,4,2,4,1,1,434,502,264,248,165,247,3,1,2,3,0,0,0,3,264,251,165,248,3,2,2,4,0,0,19,11,18,8,0,0,0,2,0,0,1,1,0,0,18,8,0,0,0,2,0,0,1,1 -050,01,107,Alabama,Pickens County,6,9,1126,512,614,331,344,174,263,0,2,4,3,1,0,2,2,333,346,175,264,1,2,4,4,1,0,496,599,320,331,170,261,0,2,4,3,0,0,2,2,322,333,171,262,1,2,4,4,0,0,16,15,11,13,4,2,0,0,0,0,1,0,0,0,11,13,4,2,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,6,10,1408,665,743,427,417,235,319,1,0,1,1,0,0,1,6,428,422,236,322,1,4,1,2,0,0,647,730,415,406,229,317,1,0,1,1,0,0,1,6,416,411,230,320,1,4,1,2,0,0,18,13,12,11,6,2,0,0,0,0,0,0,0,0,12,11,6,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,6,11,1494,735,759,472,418,255,334,1,3,4,1,0,0,3,3,475,421,255,334,3,6,5,1,0,0,725,751,466,413,253,331,1,3,2,1,0,0,3,3,469,416,253,331,3,6,3,1,0,0,10,8,6,5,2,3,0,0,2,0,0,0,0,0,6,5,2,3,0,0,2,0,0,0 -050,01,107,Alabama,Pickens County,6,12,1439,709,730,430,425,271,301,2,1,0,2,0,0,6,1,436,426,272,302,6,1,1,2,0,0,697,724,419,421,270,299,2,1,0,2,0,0,6,1,425,422,271,300,6,1,1,2,0,0,12,6,11,4,1,2,0,0,0,0,0,0,0,0,11,4,1,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,6,13,1334,666,668,420,365,239,297,1,2,0,1,0,0,6,3,426,366,239,299,6,5,0,1,1,0,661,663,418,364,236,293,1,2,0,1,0,0,6,3,424,365,236,295,6,5,0,1,1,0,5,5,2,1,3,4,0,0,0,0,0,0,0,0,2,1,3,4,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,6,14,1041,482,559,333,371,146,185,0,1,0,1,0,0,3,1,335,372,146,186,3,2,1,1,0,0,480,554,332,370,145,181,0,1,0,1,0,0,3,1,334,371,145,182,3,2,1,1,0,0,2,5,1,1,1,4,0,0,0,0,0,0,0,0,1,1,1,4,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,6,15,874,386,488,279,342,103,138,1,2,0,2,1,1,2,3,281,345,104,138,2,5,0,2,1,1,385,488,279,342,103,138,1,2,0,2,0,1,2,3,281,345,104,138,2,5,0,2,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,6,16,669,285,384,199,270,85,113,1,0,0,0,0,1,0,0,199,270,85,113,1,0,0,0,0,1,285,381,199,269,85,112,1,0,0,0,0,0,0,0,199,269,85,112,1,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,6,17,471,180,291,137,194,43,95,0,0,0,0,0,0,0,2,137,196,43,95,0,2,0,0,0,0,180,290,137,194,43,94,0,0,0,0,0,0,0,2,137,196,43,94,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,6,18,391,150,241,102,142,46,97,0,0,0,1,0,0,2,1,102,143,47,97,2,1,1,1,0,0,150,240,102,141,46,97,0,0,0,1,0,0,2,1,102,142,47,97,2,1,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,7,0,20283,10076,10207,6018,5671,3872,4385,29,18,22,27,42,20,93,86,6106,5746,3934,4438,57,50,32,38,42,23,9511,9942,5535,5464,3841,4349,25,16,18,27,0,1,92,85,5622,5538,3902,4402,53,47,28,38,0,4,565,265,483,207,31,36,4,2,4,0,42,19,1,1,484,208,32,36,4,3,4,0,42,19 -050,01,107,Alabama,Pickens County,7,1,1104,582,522,295,247,270,261,5,0,0,0,1,0,11,14,305,261,280,272,5,1,2,2,1,0,555,508,271,233,270,261,3,0,0,0,0,0,11,14,281,247,280,272,3,1,2,2,0,0,27,14,24,14,0,0,2,0,0,0,1,0,0,0,24,14,0,0,2,0,0,0,1,0 -050,01,107,Alabama,Pickens County,7,2,1102,562,540,274,271,260,249,0,0,2,0,5,3,21,17,295,288,278,262,1,3,4,1,5,3,539,522,257,258,259,247,0,0,2,0,0,0,21,17,278,275,277,260,1,3,4,1,0,0,23,18,17,13,1,2,0,0,0,0,5,3,0,0,17,13,1,2,0,0,0,0,5,3 -050,01,107,Alabama,Pickens County,7,3,1204,627,577,324,301,284,266,1,0,1,1,3,2,14,7,337,307,295,272,3,2,3,2,3,2,613,568,315,295,282,265,1,0,1,1,0,0,14,7,328,301,293,271,3,2,3,2,0,0,14,9,9,6,2,1,0,0,0,0,3,2,0,0,9,6,2,1,0,0,0,0,3,2 -050,01,107,Alabama,Pickens County,7,4,1235,674,561,322,260,343,288,0,0,0,4,0,1,9,8,331,266,352,294,0,3,0,4,0,2,653,552,301,255,343,285,0,0,0,4,0,0,9,8,310,261,352,291,0,3,0,4,0,1,21,9,21,5,0,3,0,0,0,0,0,1,0,0,21,5,0,3,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,7,5,1390,766,624,390,317,366,297,0,1,3,3,3,0,4,6,394,322,369,301,0,4,4,3,3,0,697,613,327,310,363,294,0,1,3,3,0,0,4,5,331,314,366,298,0,3,4,3,0,0,69,11,63,7,3,3,0,0,0,0,3,0,0,1,63,8,3,3,0,1,0,0,3,0 -050,01,107,Alabama,Pickens County,7,6,1245,627,618,355,329,248,280,1,1,3,1,13,3,7,4,362,332,252,281,3,3,4,3,13,4,536,580,281,302,247,272,1,1,1,1,0,0,6,4,287,305,250,273,3,3,2,3,0,1,91,38,74,27,1,8,0,0,2,0,13,3,1,0,75,27,2,8,0,0,2,0,13,3 -050,01,107,Alabama,Pickens County,7,7,1297,686,611,389,308,278,288,3,2,1,3,13,7,2,3,391,311,278,290,4,2,2,4,13,7,590,572,308,276,278,288,1,2,1,3,0,0,2,3,310,279,278,290,2,2,2,4,0,0,96,39,81,32,0,0,2,0,0,0,13,7,0,0,81,32,0,0,2,0,0,0,13,7 -050,01,107,Alabama,Pickens County,7,8,1120,566,554,370,264,182,280,11,3,1,2,2,2,0,3,370,267,182,280,11,5,1,3,2,2,513,540,319,254,182,280,11,1,1,2,0,0,0,3,319,257,182,280,11,3,1,3,0,0,53,14,51,10,0,0,0,2,0,0,2,2,0,0,51,10,0,0,0,2,0,0,2,2 -050,01,107,Alabama,Pickens County,7,9,1205,575,630,384,353,184,269,0,2,5,2,1,0,1,4,385,357,185,271,0,3,5,3,1,0,530,598,343,322,181,268,0,2,5,2,0,0,1,4,344,326,182,270,0,3,5,3,0,0,45,32,41,31,3,1,0,0,0,0,1,0,0,0,41,31,3,1,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,7,10,1472,726,746,466,434,256,304,0,0,2,3,0,0,2,5,468,437,256,307,2,2,2,4,0,1,665,713,419,403,242,302,0,0,2,3,0,0,2,5,421,406,242,305,2,2,2,4,0,1,61,33,47,31,14,2,0,0,0,0,0,0,0,0,47,31,14,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,7,11,1555,748,807,478,455,262,345,1,3,4,1,0,0,3,3,481,456,264,347,3,6,4,1,0,0,731,785,465,436,260,342,1,3,2,1,0,0,3,3,468,437,262,344,3,6,2,1,0,0,17,22,13,19,2,3,0,0,2,0,0,0,0,0,13,19,2,3,0,0,2,0,0,0 -050,01,107,Alabama,Pickens County,7,12,1472,751,721,479,403,265,314,3,0,0,2,0,0,4,2,483,405,265,314,6,2,1,2,0,0,712,712,440,397,265,311,3,0,0,2,0,0,4,2,444,399,265,311,6,2,1,2,0,0,39,9,39,6,0,3,0,0,0,0,0,0,0,0,39,6,0,3,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,7,13,1311,638,673,391,377,238,291,1,2,0,1,0,0,8,2,397,378,240,292,9,4,0,1,0,0,634,668,390,375,235,288,1,2,0,1,0,0,8,2,396,376,237,289,9,4,0,1,0,0,4,5,1,2,3,3,0,0,0,0,0,0,0,0,1,2,3,3,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,7,14,1125,541,584,381,376,156,204,1,1,0,1,0,0,3,2,383,377,157,206,4,2,0,1,0,0,538,578,379,375,155,199,1,1,0,1,0,0,3,2,381,376,156,201,4,2,0,1,0,0,3,6,2,1,1,5,0,0,0,0,0,0,0,0,2,1,1,5,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,7,15,873,380,493,274,348,103,136,1,3,0,2,1,1,1,3,275,351,103,136,2,6,0,2,1,1,378,493,274,348,102,136,1,3,0,2,0,1,1,3,275,351,102,136,2,6,0,2,0,1,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,7,16,708,306,402,207,281,97,120,1,0,0,0,0,1,1,0,208,281,97,120,2,0,0,0,0,1,306,399,207,280,97,119,1,0,0,0,0,0,1,0,208,280,97,119,2,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,7,17,433,164,269,128,174,36,93,0,0,0,0,0,0,0,2,128,176,36,93,0,1,0,1,0,0,164,268,128,174,36,92,0,0,0,0,0,0,0,2,128,176,36,92,0,1,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,7,18,432,157,275,111,173,44,100,0,0,0,1,0,0,2,1,113,174,45,100,2,1,0,1,0,0,157,273,111,171,44,100,0,0,0,1,0,0,2,1,113,172,45,100,2,1,0,1,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,0,20788,10484,10304,6300,5714,3983,4439,32,19,31,27,42,20,96,85,6389,5790,4045,4493,62,45,41,39,45,23,9773,9994,5674,5464,3947,4399,30,19,27,27,0,1,95,84,5762,5539,4009,4452,60,45,36,39,3,4,711,310,626,250,36,40,2,0,4,0,42,19,1,1,627,251,36,41,2,0,5,0,42,19 -050,01,107,Alabama,Pickens County,8,1,1080,587,493,292,218,279,262,2,0,2,0,0,0,12,13,304,229,288,274,3,0,4,3,0,0,561,474,266,199,279,262,2,0,2,0,0,0,12,13,278,210,288,274,3,0,4,3,0,0,26,19,26,19,0,0,0,0,0,0,0,0,0,0,26,19,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,2,1111,566,545,300,278,239,250,1,0,3,0,6,2,17,15,315,293,254,261,2,2,4,2,8,2,546,528,287,265,238,248,1,0,3,0,0,0,17,15,302,280,253,259,2,2,4,2,2,0,20,17,13,13,1,2,0,0,0,0,6,2,0,0,13,13,1,2,0,0,0,0,6,2 -050,01,107,Alabama,Pickens County,8,3,1196,636,560,317,282,296,267,1,0,3,2,3,3,16,6,333,288,310,270,2,2,4,3,3,3,620,552,306,279,294,265,1,0,3,2,0,0,16,6,322,285,308,268,2,2,4,3,0,0,16,8,11,3,2,2,0,0,0,0,3,3,0,0,11,3,2,2,0,0,0,0,3,3 -050,01,107,Alabama,Pickens County,8,4,1270,696,574,352,270,335,292,0,1,0,2,0,0,9,9,360,279,342,298,1,4,2,3,0,0,668,565,324,263,335,290,0,1,0,2,0,0,9,9,332,272,342,296,1,4,2,3,0,0,28,9,28,7,0,2,0,0,0,0,0,0,0,0,28,7,0,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,5,1392,817,575,402,282,405,281,0,1,4,3,1,1,5,7,407,289,409,287,1,2,4,3,1,1,734,565,322,278,403,277,0,1,4,3,0,0,5,6,327,284,407,282,1,2,4,3,0,0,83,10,80,4,2,4,0,0,0,0,1,1,0,1,80,5,2,5,0,0,0,0,1,1 -050,01,107,Alabama,Pickens County,8,6,1399,707,692,412,388,269,296,1,1,3,2,13,2,9,3,421,391,274,297,3,1,6,3,13,3,589,640,311,349,268,285,1,1,1,2,0,0,8,3,319,352,273,286,3,1,3,3,0,1,118,52,101,39,1,11,0,0,2,0,13,2,1,0,102,39,1,11,0,0,3,0,13,2 -050,01,107,Alabama,Pickens County,8,7,1417,774,643,440,330,313,298,3,1,3,3,13,7,2,4,441,332,315,300,4,3,3,4,13,8,648,595,332,289,310,298,1,1,3,3,0,0,2,4,333,291,312,300,2,3,3,4,0,1,126,48,108,41,3,0,2,0,0,0,13,7,0,0,108,41,3,0,2,0,0,0,13,7 -050,01,107,Alabama,Pickens County,8,8,1242,654,588,430,271,204,305,14,2,1,3,4,3,1,4,431,274,204,308,15,4,1,3,4,3,582,578,362,264,204,305,14,2,1,3,0,0,1,4,363,267,204,308,15,4,1,3,0,0,72,10,68,7,0,0,0,0,0,0,4,3,0,0,68,7,0,0,0,0,0,0,4,3 -050,01,107,Alabama,Pickens County,8,9,1194,589,605,395,341,188,258,0,1,5,1,1,0,0,4,395,344,188,260,0,2,5,2,1,1,532,565,340,302,187,257,0,1,5,1,0,0,0,4,340,305,187,259,0,2,5,2,0,1,57,40,55,39,1,1,0,0,0,0,1,0,0,0,55,39,1,1,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,8,10,1468,715,753,471,443,240,302,0,1,3,4,0,0,1,3,472,446,240,304,0,2,4,4,0,0,633,713,407,404,222,301,0,1,3,4,0,0,1,3,408,407,222,303,0,2,4,4,0,0,82,40,64,39,18,1,0,0,0,0,0,0,0,0,64,39,18,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,11,1556,729,827,469,474,251,344,1,4,4,1,0,0,4,4,473,477,252,347,4,6,4,1,0,0,707,796,452,447,248,340,1,4,2,1,0,0,4,4,456,450,249,343,4,6,2,1,0,0,22,31,17,27,3,4,0,0,2,0,0,0,0,0,17,27,3,4,0,0,2,0,0,0 -050,01,107,Alabama,Pickens County,8,12,1519,792,727,522,400,265,322,2,1,0,1,0,0,3,3,525,402,266,323,4,3,0,2,0,0,740,720,470,395,265,320,2,1,0,1,0,0,3,3,473,397,266,321,4,3,0,2,0,0,52,7,52,5,0,2,0,0,0,0,0,0,0,0,52,5,0,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,13,1313,634,679,380,382,240,294,4,2,0,0,0,0,10,1,388,383,242,294,14,3,0,0,0,0,632,672,379,379,239,290,4,2,0,0,0,0,10,1,387,380,241,290,14,3,0,0,0,0,2,7,1,3,1,4,0,0,0,0,0,0,0,0,1,3,1,4,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,14,1176,577,599,403,378,170,215,1,1,0,2,0,0,3,3,405,381,171,215,4,3,0,3,0,0,572,592,401,376,167,210,1,1,0,2,0,0,3,3,403,379,168,210,4,3,0,3,0,0,5,7,2,2,3,5,0,0,0,0,0,0,0,0,2,2,3,5,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,15,886,383,503,272,351,109,145,0,2,0,2,1,1,1,2,273,353,109,146,1,3,0,2,1,1,381,503,272,351,108,145,0,2,0,2,0,1,1,2,273,353,108,146,1,3,0,2,0,1,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,8,16,710,315,395,220,270,92,122,2,1,0,0,0,1,1,1,221,271,92,122,3,2,0,0,0,1,315,393,220,270,92,121,2,1,0,0,0,0,1,1,221,271,92,121,3,2,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,8,17,427,161,266,114,180,47,84,0,0,0,0,0,0,0,2,114,182,47,84,0,2,0,0,0,0,161,265,114,180,47,83,0,0,0,0,0,0,0,2,114,182,47,83,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,8,18,432,152,280,109,176,41,102,0,0,0,1,0,0,2,1,111,176,42,103,1,1,0,1,1,0,152,278,109,174,41,102,0,0,0,1,0,0,2,1,111,174,42,103,1,1,0,1,1,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,0,20337,10146,10191,6063,5661,3885,4362,30,18,34,28,42,23,92,99,6148,5749,3944,4427,66,46,40,41,42,28,9525,9872,5527,5407,3849,4321,28,18,30,28,0,1,91,97,5611,5493,3908,4384,63,46,36,41,0,6,621,319,536,254,36,41,2,0,4,0,42,22,1,2,537,256,36,43,3,0,4,0,42,22 -050,01,107,Alabama,Pickens County,9,1,1087,579,508,294,230,273,263,1,0,3,0,0,0,8,15,301,245,281,277,2,0,3,0,0,1,559,492,275,217,272,261,1,0,3,0,0,0,8,14,282,231,280,274,2,0,3,0,0,1,20,16,19,13,1,2,0,0,0,0,0,0,0,1,19,14,1,3,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,2,1099,545,554,286,281,231,250,2,0,2,0,5,3,19,20,304,300,246,266,6,2,3,2,5,4,522,531,269,262,230,249,2,0,2,0,0,0,19,20,287,281,245,265,6,2,3,2,0,1,23,23,17,19,1,1,0,0,0,0,5,3,0,0,17,19,1,1,0,0,0,0,5,3 -050,01,107,Alabama,Pickens County,9,3,1136,616,520,312,268,283,239,1,0,4,1,4,5,12,7,324,275,293,244,3,2,4,1,4,5,598,506,300,261,281,237,1,0,4,1,0,0,12,7,312,268,291,242,3,2,4,1,0,0,18,14,12,7,2,2,0,0,0,0,4,5,0,0,12,7,2,2,0,0,0,0,4,5 -050,01,107,Alabama,Pickens County,9,4,1267,672,595,347,293,312,290,0,1,1,3,0,0,12,8,359,300,321,296,1,3,3,5,0,0,646,573,322,273,311,288,0,1,1,3,0,0,12,8,334,280,320,294,1,3,3,5,0,0,26,22,25,20,1,2,0,0,0,0,0,0,0,0,25,20,1,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,5,1282,728,554,353,267,368,275,0,0,2,2,0,1,5,9,358,276,371,282,2,1,2,3,0,1,660,540,287,260,366,270,0,0,2,2,0,0,5,8,292,268,369,276,2,1,2,3,0,0,68,14,66,7,2,5,0,0,0,0,0,1,0,1,66,8,2,6,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,9,6,1399,710,689,388,381,299,297,1,1,5,3,10,1,7,6,395,386,303,301,4,2,6,5,10,1,612,642,304,345,298,287,1,1,3,3,0,0,6,6,310,350,302,291,3,2,4,5,0,0,98,47,84,36,1,10,0,0,2,0,10,1,1,0,85,36,1,10,1,0,2,0,10,1 -050,01,107,Alabama,Pickens County,9,7,1324,706,618,410,326,274,277,3,1,3,3,14,7,2,4,412,330,275,278,4,2,3,4,14,8,596,573,319,289,271,276,1,1,3,3,0,0,2,4,321,293,272,277,2,2,3,4,0,1,110,45,91,37,3,1,2,0,0,0,14,7,0,0,91,37,3,1,2,0,0,0,14,7 -050,01,107,Alabama,Pickens County,9,8,1203,625,578,406,267,198,299,12,2,0,2,7,3,2,5,407,270,199,301,14,5,0,4,7,3,562,569,350,262,198,298,12,2,0,2,0,0,2,5,351,265,199,300,14,5,0,4,0,0,63,9,56,5,0,1,0,0,0,0,7,3,0,0,56,5,0,1,0,0,0,0,7,3 -050,01,107,Alabama,Pickens County,9,9,1140,573,567,372,314,196,246,0,0,4,4,1,1,0,2,372,315,196,247,0,2,4,4,1,1,525,531,325,280,196,245,0,0,4,4,0,0,0,2,325,281,196,246,0,2,4,4,0,0,48,36,47,34,0,1,0,0,0,0,1,1,0,0,47,34,0,1,0,0,0,0,1,1 -050,01,107,Alabama,Pickens County,9,10,1384,646,738,433,444,209,284,0,2,3,4,0,0,1,4,434,447,209,286,1,3,3,5,0,1,576,700,379,407,193,283,0,2,3,4,0,0,1,4,380,410,193,285,1,3,3,5,0,1,70,38,54,37,16,1,0,0,0,0,0,0,0,0,54,37,16,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,11,1487,700,787,449,439,243,341,1,2,4,1,0,0,3,4,452,443,244,343,3,3,4,2,0,0,680,762,433,416,239,339,1,2,4,1,0,0,3,4,436,420,240,341,3,3,4,2,0,0,20,25,16,23,4,2,0,0,0,0,0,0,0,0,16,23,4,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,12,1536,798,738,519,409,271,321,1,3,3,1,0,0,4,4,522,411,272,323,4,7,4,1,0,0,753,728,476,402,271,318,1,3,1,1,0,0,4,4,479,404,272,320,4,7,2,1,0,0,45,10,43,7,0,3,0,0,2,0,0,0,0,0,43,7,0,3,0,0,2,0,0,0 -050,01,107,Alabama,Pickens County,9,13,1329,626,703,377,403,235,297,5,2,0,0,0,0,9,1,385,403,239,298,12,3,0,0,0,0,623,695,375,398,234,294,5,2,0,0,0,0,9,1,383,398,238,295,12,3,0,0,0,0,3,8,2,5,1,3,0,0,0,0,0,0,0,0,2,5,1,3,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,14,1207,599,608,409,371,187,231,1,1,0,2,0,0,2,3,411,373,187,232,3,2,0,3,0,1,593,601,406,369,184,226,1,1,0,2,0,0,2,3,408,371,184,227,3,2,0,3,0,1,6,7,3,2,3,5,0,0,0,0,0,0,0,0,3,2,3,5,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,15,885,374,511,260,348,112,158,0,2,0,1,0,1,2,1,261,349,113,158,2,3,0,1,0,1,373,510,260,348,111,157,0,2,0,1,0,1,2,1,261,349,112,157,2,3,0,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,9,16,694,320,374,220,262,95,108,2,1,0,0,1,0,2,3,222,265,95,109,3,3,1,0,1,0,318,373,219,262,95,107,2,1,0,0,0,0,2,3,221,265,95,108,3,3,1,0,0,0,2,1,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,9,17,445,177,268,119,181,58,85,0,0,0,0,0,1,0,1,119,182,58,85,0,1,0,0,0,1,177,267,119,181,58,85,0,0,0,0,0,0,0,1,119,182,58,85,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,9,18,433,152,281,109,177,41,101,0,0,0,1,0,0,2,2,110,179,42,101,2,2,0,1,0,0,152,279,109,175,41,101,0,0,0,1,0,0,2,2,110,177,42,101,2,2,0,1,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,10,0,20224,10097,10127,6039,5650,3855,4311,30,21,34,31,42,23,97,91,6127,5732,3922,4376,57,49,46,40,44,24,9493,9794,5519,5388,3820,4268,28,20,30,29,0,1,96,88,5606,5468,3887,4332,54,46,41,37,2,2,604,333,520,262,35,43,2,1,4,2,42,22,1,3,521,264,35,44,3,3,5,3,42,22 -050,01,107,Alabama,Pickens County,10,1,1059,560,499,284,229,259,254,1,1,3,0,0,0,13,15,296,244,272,265,2,3,3,2,0,0,544,483,268,217,259,252,1,1,3,0,0,0,13,13,280,230,272,263,2,2,3,1,0,0,16,16,16,12,0,2,0,0,0,0,0,0,0,2,16,14,0,2,0,1,0,1,0,0 -050,01,107,Alabama,Pickens County,10,2,1098,545,553,288,285,233,257,2,0,1,0,5,3,16,8,302,292,248,265,3,1,3,0,5,3,525,526,274,264,232,254,2,0,1,0,0,0,16,8,288,271,247,262,3,1,3,0,0,0,20,27,14,21,1,3,0,0,0,0,5,3,0,0,14,21,1,3,0,0,0,0,5,3 -050,01,107,Alabama,Pickens County,10,3,1098,590,508,300,256,269,235,1,0,4,1,3,4,13,12,313,268,280,244,2,2,4,2,4,4,571,496,285,250,268,233,1,0,4,1,0,0,13,12,298,262,279,242,2,2,4,2,1,0,19,12,15,6,1,2,0,0,0,0,3,4,0,0,15,6,1,2,0,0,0,0,3,4 -050,01,107,Alabama,Pickens County,10,4,1271,679,592,359,305,306,272,0,1,2,3,1,1,11,10,370,315,316,280,1,2,2,4,1,1,652,561,335,278,304,270,0,0,2,3,0,0,11,10,346,288,314,278,1,1,2,4,0,0,27,31,24,27,2,2,0,1,0,0,1,1,0,0,24,27,2,2,0,1,0,0,1,1 -050,01,107,Alabama,Pickens County,10,5,1270,726,544,353,270,363,259,0,1,2,4,0,1,8,9,360,278,369,267,1,2,4,5,0,1,662,525,291,260,361,254,0,1,2,2,0,0,8,8,298,268,367,261,1,1,4,3,0,0,64,19,62,10,2,5,0,0,0,2,0,1,0,1,62,10,2,6,0,1,0,2,0,1 -050,01,107,Alabama,Pickens County,10,6,1387,707,680,390,363,300,307,1,1,2,4,7,1,7,4,396,367,305,310,4,1,4,5,7,1,611,634,305,328,299,297,1,1,0,4,0,0,6,4,310,332,304,300,3,1,1,5,0,0,96,46,85,35,1,10,0,0,2,0,7,1,1,0,86,35,1,10,1,0,3,0,7,1 -050,01,107,Alabama,Pickens County,10,7,1334,709,625,407,351,281,259,4,2,3,3,11,5,3,5,410,356,282,262,5,5,4,3,11,5,606,581,320,313,278,258,2,2,3,3,0,0,3,5,323,318,279,261,3,5,4,3,0,0,103,44,87,38,3,1,2,0,0,0,11,5,0,0,87,38,3,1,2,0,0,0,11,5 -050,01,107,Alabama,Pickens County,10,8,1232,626,606,397,292,203,301,9,1,2,2,13,5,2,5,399,294,203,305,10,5,3,3,13,5,556,594,340,285,203,301,9,1,2,2,0,0,2,5,342,287,203,305,10,5,3,3,0,0,70,12,57,7,0,0,0,0,0,0,13,5,0,0,57,7,0,0,0,0,0,0,13,5 -050,01,107,Alabama,Pickens County,10,9,1081,528,553,350,286,173,259,2,1,2,3,1,1,0,3,350,289,173,262,2,1,2,3,1,1,483,518,306,253,173,258,2,1,2,3,0,0,0,3,306,256,173,261,2,1,2,3,0,0,45,35,44,33,0,1,0,0,0,0,1,1,0,0,44,33,0,1,0,0,0,0,1,1 -050,01,107,Alabama,Pickens County,10,10,1343,635,708,411,425,219,275,0,2,4,5,0,0,1,1,412,426,220,276,0,2,4,5,0,0,567,670,359,389,203,273,0,2,4,5,0,0,1,1,360,390,204,274,0,2,4,5,0,0,68,38,52,36,16,2,0,0,0,0,0,0,0,0,52,36,16,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,10,11,1451,668,783,438,450,224,325,1,2,4,1,0,0,1,5,439,454,224,326,1,6,5,2,0,0,650,758,423,427,221,323,1,2,4,1,0,0,1,5,424,431,221,324,1,6,5,2,0,0,18,25,15,23,3,2,0,0,0,0,0,0,0,0,15,23,3,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,10,12,1526,800,726,520,396,272,323,1,3,4,0,0,0,3,4,522,400,273,324,2,6,5,0,1,0,754,719,477,392,271,320,1,3,2,0,0,0,3,4,479,396,272,321,2,6,3,0,1,0,46,7,43,4,1,3,0,0,2,0,0,0,0,0,43,4,1,3,0,0,2,0,0,0 -050,01,107,Alabama,Pickens County,10,13,1336,637,699,386,417,238,280,4,1,0,1,0,0,9,0,394,417,240,280,10,1,2,1,0,0,633,692,383,411,237,279,4,1,0,1,0,0,9,0,391,411,239,279,10,1,2,1,0,0,4,7,3,6,1,1,0,0,0,0,0,0,0,0,3,6,1,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,10,14,1215,613,602,410,348,199,248,1,2,0,1,0,0,3,3,413,351,199,250,4,3,0,1,0,0,608,595,408,347,196,242,1,2,0,1,0,0,3,3,411,350,196,244,4,3,0,1,0,0,5,7,2,1,3,6,0,0,0,0,0,0,0,0,2,1,3,6,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,10,15,912,397,515,277,350,116,158,1,2,0,3,0,0,3,2,280,351,116,159,4,4,0,3,0,0,396,512,277,349,115,156,1,2,0,3,0,0,3,2,280,350,115,157,4,4,0,3,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,10,16,722,332,390,228,276,98,110,2,1,1,0,1,1,2,2,229,277,99,111,4,2,1,1,1,2,330,390,227,276,98,110,2,1,1,0,0,1,2,2,228,277,99,111,4,2,1,1,0,2,2,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,10,17,443,174,269,124,181,50,87,0,0,0,0,0,1,0,0,124,181,50,87,0,0,0,0,0,1,174,267,124,181,50,86,0,0,0,0,0,0,0,0,124,181,50,86,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,10,18,446,171,275,117,170,52,102,0,0,0,0,0,0,2,3,118,172,53,103,2,3,0,0,0,0,171,273,117,168,52,102,0,0,0,0,0,0,2,3,118,170,53,103,2,3,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,11,0,19949,9959,9990,5933,5600,3803,4227,30,19,34,34,42,23,117,87,6040,5681,3889,4277,60,47,45,50,45,24,9346,9629,5408,5311,3764,4185,28,18,30,30,0,1,116,84,5514,5389,3849,4233,58,45,41,46,3,2,613,361,525,289,39,42,2,1,4,4,42,22,1,3,526,292,40,44,2,2,4,4,42,22 -050,01,107,Alabama,Pickens County,11,1,1040,554,486,267,248,263,224,0,1,1,0,0,0,23,13,290,261,283,234,1,2,3,2,0,0,539,466,252,231,263,223,0,1,1,0,0,0,23,11,275,242,283,232,1,1,3,2,0,0,15,20,15,17,0,1,0,0,0,0,0,0,0,2,15,19,0,2,0,1,0,0,0,0 -050,01,107,Alabama,Pickens County,11,2,1054,529,525,272,257,231,254,3,0,2,1,2,3,19,10,291,267,246,261,5,2,4,2,2,3,510,499,257,237,229,251,3,0,2,1,0,0,19,10,276,247,244,258,5,2,4,2,0,0,19,26,15,20,2,3,0,0,0,0,2,3,0,0,15,20,2,3,0,0,0,0,2,3 -050,01,107,Alabama,Pickens County,11,3,1063,570,493,288,246,255,233,0,0,4,0,5,4,18,10,304,256,271,239,2,4,6,0,6,4,546,475,272,235,252,230,0,0,4,0,0,0,18,10,288,245,268,236,2,4,6,0,1,0,24,18,16,11,3,3,0,0,0,0,5,4,0,0,16,11,3,3,0,0,0,0,5,4 -050,01,107,Alabama,Pickens County,11,4,1232,657,575,347,304,295,257,1,1,2,3,2,1,10,9,356,311,304,264,2,3,3,5,2,1,628,535,322,267,293,256,1,0,2,3,0,0,10,9,331,274,302,263,2,2,3,5,0,0,29,40,25,37,2,1,0,1,0,0,2,1,0,0,25,37,2,1,0,1,0,0,2,1 -050,01,107,Alabama,Pickens County,11,5,1223,704,519,344,256,347,251,1,0,3,4,0,1,9,7,353,263,353,256,2,1,3,5,2,1,640,499,282,245,345,247,1,0,3,0,0,0,9,7,291,252,351,252,2,1,3,1,2,0,64,20,62,11,2,4,0,0,0,4,0,1,0,0,62,11,2,4,0,0,0,4,0,1 -050,01,107,Alabama,Pickens County,11,6,1398,724,674,396,373,313,292,1,0,1,5,6,1,7,3,402,376,318,294,2,1,3,5,6,1,628,621,309,332,311,282,1,0,0,5,0,0,7,2,315,334,316,283,2,1,2,5,0,0,96,53,87,41,2,10,0,0,1,0,6,1,0,1,87,42,2,11,0,0,1,0,6,1 -050,01,107,Alabama,Pickens County,11,7,1312,688,624,403,345,265,263,1,2,3,3,12,3,4,8,407,352,268,269,1,5,4,3,12,3,587,580,319,305,262,262,1,2,2,3,0,0,3,8,322,312,264,268,1,5,3,3,0,0,101,44,84,40,3,1,0,0,1,0,12,3,1,0,85,40,4,1,0,0,1,0,12,3 -050,01,107,Alabama,Pickens County,11,8,1216,616,600,385,285,203,299,11,1,2,3,12,7,3,5,388,290,205,299,12,3,2,5,12,8,544,589,327,281,203,299,9,1,2,3,0,0,3,5,330,286,205,299,10,3,2,5,0,1,72,11,58,4,0,0,2,0,0,0,12,7,0,0,58,4,0,0,2,0,0,0,12,7 -050,01,107,Alabama,Pickens County,11,9,1054,508,546,339,296,163,241,2,1,3,4,1,1,0,3,339,298,163,242,2,2,3,6,1,1,462,512,294,263,163,241,2,1,3,4,0,0,0,3,294,265,163,242,2,2,3,6,0,0,46,34,45,33,0,0,0,0,0,0,1,1,0,0,45,33,0,0,0,0,0,0,1,1 -050,01,107,Alabama,Pickens County,11,10,1310,624,686,399,392,219,287,0,2,4,4,1,0,1,1,400,393,219,287,1,2,4,5,1,0,555,647,345,357,205,283,0,2,4,4,0,0,1,1,346,358,205,283,1,2,4,5,0,0,69,39,54,35,14,4,0,0,0,0,1,0,0,0,54,35,14,4,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,11,11,1404,645,759,422,442,217,307,1,2,4,1,0,0,1,7,423,448,217,310,2,5,4,3,0,0,628,730,409,415,213,305,1,2,4,1,0,0,1,7,410,421,213,308,2,5,4,3,0,0,17,29,13,27,4,2,0,0,0,0,0,0,0,0,13,27,4,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,11,12,1495,775,720,509,398,258,315,1,3,4,1,0,0,3,3,511,401,259,315,3,5,5,2,0,0,727,717,465,397,256,313,1,3,2,1,0,0,3,3,467,400,257,313,3,5,3,2,0,0,48,3,44,1,2,2,0,0,2,0,0,0,0,0,44,1,2,2,0,0,2,0,0,0 -050,01,107,Alabama,Pickens County,11,13,1349,639,710,391,431,238,276,4,1,0,1,0,0,6,1,395,432,241,277,9,2,0,1,0,0,635,700,388,423,237,274,4,1,0,1,0,0,6,1,392,424,240,275,9,2,0,1,0,0,4,10,3,8,1,2,0,0,0,0,0,0,0,0,3,8,1,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,11,14,1226,629,597,412,342,210,250,1,2,0,1,0,0,6,2,417,344,213,251,6,3,0,2,0,0,624,592,410,341,207,246,1,2,0,1,0,0,6,2,415,343,210,247,6,3,0,2,0,0,5,5,2,1,3,4,0,0,0,0,0,0,0,0,2,1,3,4,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,11,15,932,410,522,287,346,119,172,1,1,0,2,0,0,3,1,290,346,119,173,4,2,0,2,0,0,408,517,286,345,118,168,1,1,0,2,0,0,3,1,289,345,118,169,4,2,0,2,0,0,2,5,1,1,1,4,0,0,0,0,0,0,0,0,1,1,1,4,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,11,16,720,324,396,222,274,97,116,1,2,1,1,1,1,2,2,223,276,98,116,3,3,1,2,1,1,322,396,221,274,97,116,1,2,1,1,0,1,2,2,222,276,98,116,3,3,1,2,0,1,2,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,11,17,487,197,290,136,203,60,85,1,0,0,0,0,1,0,1,136,204,60,85,1,1,0,0,0,1,197,288,136,203,60,84,1,0,0,0,0,0,0,1,136,204,60,84,1,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,11,18,434,166,268,114,162,50,105,0,0,0,0,0,0,2,1,115,163,52,105,2,1,0,0,0,0,166,266,114,160,50,105,0,0,0,0,0,0,2,1,115,161,52,105,2,1,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,12,0,19940,10009,9931,5980,5580,3797,4178,33,19,31,35,42,26,126,93,6099,5662,3884,4237,67,46,41,53,46,29,9354,9550,5412,5280,3759,4130,31,18,27,29,0,3,125,90,5530,5360,3846,4188,64,45,37,45,4,5,655,381,568,300,38,48,2,1,4,6,42,23,1,3,569,302,38,49,3,1,4,8,42,24 -050,01,107,Alabama,Pickens County,12,1,1037,551,486,260,245,256,225,1,1,1,0,1,1,32,14,291,258,285,237,4,1,3,2,1,2,536,462,247,228,255,221,1,1,1,0,0,0,32,12,278,240,284,232,4,1,3,1,0,0,15,24,13,17,1,4,0,0,0,0,1,1,0,2,13,18,1,5,0,0,0,1,1,2 -050,01,107,Alabama,Pickens County,12,2,1035,547,488,289,241,238,239,3,0,2,0,1,2,14,6,302,246,251,244,3,0,4,2,1,2,525,463,270,219,236,237,3,0,2,0,0,1,14,6,283,224,249,242,3,0,4,2,0,1,22,25,19,22,2,2,0,0,0,0,1,1,0,0,19,22,2,2,0,0,0,0,1,1 -050,01,107,Alabama,Pickens County,12,3,1077,565,512,286,267,250,227,0,0,3,1,5,4,21,13,306,277,270,240,2,1,3,2,6,5,539,493,268,256,247,223,0,0,3,1,0,0,21,13,288,266,267,236,2,1,3,2,1,1,26,19,18,11,3,4,0,0,0,0,5,4,0,0,18,11,3,4,0,0,0,0,5,4 -050,01,107,Alabama,Pickens County,12,4,1182,645,537,342,279,284,245,1,1,3,2,3,3,12,7,352,286,295,249,3,3,3,3,4,3,611,504,313,251,282,244,1,0,3,2,0,0,12,7,323,258,293,248,3,2,3,3,1,0,34,33,29,28,2,1,0,1,0,0,3,3,0,0,29,28,2,1,0,1,0,0,3,3 -050,01,107,Alabama,Pickens County,12,5,1218,700,518,356,252,335,246,1,0,1,7,0,1,7,12,363,263,339,254,2,2,2,10,1,1,629,489,286,234,334,242,1,0,1,1,0,0,7,12,293,245,338,250,2,2,2,4,1,0,71,29,70,18,1,4,0,0,0,6,0,1,0,0,70,18,1,4,0,0,0,6,0,1 -050,01,107,Alabama,Pickens County,12,6,1371,703,668,387,359,303,297,2,1,1,5,3,1,7,5,394,364,306,300,4,1,2,7,4,1,606,615,295,318,301,286,2,1,1,5,0,1,7,4,302,322,304,289,4,1,2,6,1,1,97,53,92,41,2,11,0,0,0,0,3,0,0,1,92,42,2,11,0,0,0,1,3,0 -050,01,107,Alabama,Pickens County,12,7,1322,727,595,418,343,286,239,1,0,4,2,13,3,5,8,423,350,286,243,5,5,5,3,13,4,618,547,326,299,285,238,1,0,2,2,0,0,4,8,330,306,285,242,4,5,3,3,0,1,109,48,92,44,1,1,0,0,2,0,13,3,1,0,93,44,1,1,1,0,2,0,13,3 -050,01,107,Alabama,Pickens County,12,8,1269,644,625,397,304,218,304,12,2,1,3,12,7,4,5,401,308,219,306,14,5,2,4,12,7,566,612,335,299,216,303,10,2,1,3,0,0,4,5,339,303,217,305,12,5,2,4,0,0,78,13,62,5,2,1,2,0,0,0,12,7,0,0,62,5,2,1,2,0,0,0,12,7 -050,01,107,Alabama,Pickens County,12,9,1070,512,558,350,303,157,247,2,1,1,2,2,2,0,3,350,306,157,247,2,2,1,4,2,2,465,521,305,268,157,247,2,1,1,2,0,0,0,3,305,271,157,247,2,2,1,4,0,0,47,37,45,35,0,0,0,0,0,0,2,2,0,0,45,35,0,0,0,0,0,0,2,2 -050,01,107,Alabama,Pickens County,12,10,1325,642,683,398,390,238,285,0,2,4,4,1,0,1,2,398,392,239,286,1,2,4,5,1,0,566,642,337,353,224,281,0,2,4,4,0,0,1,2,337,355,225,282,1,2,4,5,0,0,76,41,61,37,14,4,0,0,0,0,1,0,0,0,61,37,14,4,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,12,11,1304,603,701,395,411,203,279,0,2,4,3,0,0,1,6,396,416,203,282,1,5,4,5,0,0,588,671,383,383,200,277,0,2,4,3,0,0,1,6,384,388,200,280,1,5,4,5,0,0,15,30,12,28,3,2,0,0,0,0,0,0,0,0,12,28,3,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,12,12,1512,770,742,517,421,244,314,1,3,5,1,0,0,3,3,520,424,246,315,1,5,6,1,0,0,718,738,469,419,242,312,1,3,3,1,0,0,3,3,472,422,244,313,1,5,4,1,0,0,52,4,48,2,2,2,0,0,2,0,0,0,0,0,48,2,2,2,0,0,2,0,0,0 -050,01,107,Alabama,Pickens County,12,13,1329,648,681,392,406,247,272,5,0,0,1,0,0,4,2,396,406,247,274,9,2,0,1,0,0,645,671,389,399,247,269,5,0,0,1,0,0,4,2,393,399,247,271,9,2,0,1,0,0,3,10,3,7,0,3,0,0,0,0,0,0,0,0,3,7,0,3,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,12,14,1225,600,625,393,365,198,255,1,2,0,1,0,0,8,2,400,367,200,256,8,3,0,1,0,0,596,620,392,363,195,252,1,2,0,1,0,0,8,2,399,365,197,253,8,3,0,1,0,0,4,5,1,2,3,3,0,0,0,0,0,0,0,0,1,2,3,3,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,12,15,995,456,539,322,347,130,188,1,1,0,2,0,0,3,1,325,348,130,188,4,2,0,2,0,0,453,533,320,346,129,183,1,1,0,2,0,0,3,1,323,347,129,183,4,2,0,2,0,0,3,6,2,1,1,5,0,0,0,0,0,0,0,0,2,1,1,5,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,12,16,718,316,402,215,274,97,121,1,3,1,1,1,1,1,2,216,276,97,121,2,5,1,1,1,1,314,402,215,274,96,121,1,3,1,1,0,1,1,2,216,276,96,121,2,5,1,1,0,1,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,12,17,523,222,301,154,208,66,91,1,0,0,0,0,1,1,1,155,209,66,91,2,1,0,0,0,1,221,299,153,208,66,90,1,0,0,0,0,0,1,1,154,209,66,90,2,1,0,0,0,0,1,2,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,12,18,428,158,270,109,165,47,104,0,0,0,0,0,0,2,1,111,166,48,104,0,1,1,0,0,0,158,268,109,163,47,104,0,0,0,0,0,0,2,1,111,164,48,104,0,1,1,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,0,19793,9902,9891,5901,5544,3771,4167,36,20,33,38,43,25,118,97,6010,5634,3851,4234,65,44,50,50,46,28,9242,9490,5330,5225,3733,4122,34,19,28,29,0,1,117,94,5439,5312,3812,4187,62,42,45,41,3,4,660,401,571,319,38,45,2,1,5,9,43,24,1,3,571,322,39,47,3,2,5,9,43,24 -050,01,107,Alabama,Pickens County,13,1,1044,553,491,268,239,254,227,1,1,0,0,2,2,28,22,294,261,277,245,3,3,4,2,3,2,535,465,254,220,252,224,1,1,0,0,0,0,28,20,280,240,275,240,3,3,4,2,1,0,18,26,14,19,2,3,0,0,0,0,2,2,0,2,14,21,2,5,0,0,0,0,2,2 -050,01,107,Alabama,Pickens County,13,2,1004,521,483,257,231,250,242,3,0,2,0,0,1,9,9,266,240,259,250,3,0,2,1,0,1,501,451,239,202,248,240,3,0,2,0,0,0,9,9,248,211,257,248,3,0,2,1,0,0,20,32,18,29,2,2,0,0,0,0,0,1,0,0,18,29,2,2,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,13,3,1067,548,519,286,274,232,228,4,0,3,1,6,2,17,14,302,286,245,241,8,1,4,2,6,3,522,501,268,260,230,226,4,0,3,1,0,0,17,14,284,272,243,239,8,1,4,2,0,1,26,18,18,14,2,2,0,0,0,0,6,2,0,0,18,14,2,2,0,0,0,0,6,2 -050,01,107,Alabama,Pickens County,13,4,1141,658,483,328,249,306,221,1,1,5,2,3,5,15,5,342,254,318,226,5,1,6,2,3,5,619,455,295,229,303,219,1,0,5,2,0,0,15,5,309,234,315,224,5,0,6,2,0,0,39,28,33,20,3,2,0,1,0,0,3,5,0,0,33,20,3,2,0,1,0,0,3,5 -050,01,107,Alabama,Pickens County,13,5,1236,709,527,390,266,311,246,0,0,0,7,0,0,8,8,396,273,317,253,1,1,3,8,0,0,639,494,321,242,310,243,0,0,0,1,0,0,8,8,327,249,316,250,1,1,3,2,0,0,70,33,69,24,1,3,0,0,0,6,0,0,0,0,69,24,1,3,0,0,0,6,0,0 -050,01,107,Alabama,Pickens County,13,6,1293,671,622,359,327,301,280,2,2,2,7,1,1,6,5,365,332,305,282,3,4,3,8,1,1,581,565,271,286,300,269,2,2,2,4,0,0,6,4,277,290,304,271,3,3,3,5,0,0,90,57,88,41,1,11,0,0,0,3,1,1,0,1,88,42,1,11,0,1,0,3,1,1 -050,01,107,Alabama,Pickens County,13,7,1325,698,627,392,371,282,247,1,0,4,1,13,2,6,6,397,376,285,250,3,4,6,1,13,3,591,574,303,322,281,245,1,0,1,1,0,0,5,6,308,327,283,248,2,4,3,1,0,1,107,53,89,49,1,2,0,0,3,0,13,2,1,0,89,49,2,2,1,0,3,0,13,2 -050,01,107,Alabama,Pickens County,13,8,1272,660,612,415,297,214,299,12,1,2,4,13,7,4,4,418,300,215,301,12,3,5,5,14,7,579,599,352,291,211,299,10,1,2,4,0,0,4,4,355,294,212,301,10,3,5,5,1,0,81,13,63,6,3,0,2,0,0,0,13,7,0,0,63,6,3,0,2,0,0,0,13,7 -050,01,107,Alabama,Pickens County,13,9,1115,542,573,355,298,180,263,2,2,1,3,3,3,1,4,356,302,181,264,2,4,1,3,3,4,493,533,309,261,180,263,2,2,1,3,0,0,1,4,310,265,181,264,2,4,1,3,0,1,49,40,46,37,0,0,0,0,0,0,3,3,0,0,46,37,0,0,0,0,0,0,3,3 -050,01,107,Alabama,Pickens County,13,10,1278,620,658,386,372,229,280,0,1,4,3,1,0,0,2,386,374,229,280,0,3,4,3,1,0,546,617,324,335,218,276,0,1,4,3,0,0,0,2,324,337,218,276,0,3,4,3,0,0,74,41,62,37,11,4,0,0,0,0,1,0,0,0,62,37,11,4,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,13,11,1252,569,683,374,406,190,268,0,1,4,4,0,0,1,4,375,410,191,271,0,2,4,5,0,0,551,656,360,380,186,267,0,1,4,4,0,0,1,4,361,384,187,270,0,2,4,5,0,0,18,27,14,26,4,1,0,0,0,0,0,0,0,0,14,26,4,1,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,12,1477,736,741,490,434,237,298,1,4,5,1,0,0,3,4,493,437,240,301,1,5,5,2,0,0,683,733,442,429,234,295,1,4,3,1,0,0,3,4,445,432,237,298,1,5,3,2,0,0,53,8,48,5,3,3,0,0,2,0,0,0,0,0,48,5,3,3,0,0,2,0,0,0 -050,01,107,Alabama,Pickens County,13,13,1362,654,708,413,390,236,313,2,1,0,1,0,0,3,3,416,393,236,314,5,2,0,2,0,0,649,702,408,386,236,311,2,1,0,1,0,0,3,3,411,389,236,312,5,2,0,2,0,0,5,6,5,4,0,2,0,0,0,0,0,0,0,0,5,4,0,2,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,14,1230,600,630,387,378,199,249,4,2,0,0,0,0,10,1,396,379,202,249,10,2,1,1,1,0,598,623,386,375,198,245,4,2,0,0,0,0,10,1,395,376,201,245,10,2,1,1,1,0,2,7,1,3,1,4,0,0,0,0,0,0,0,0,1,3,1,4,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,15,1015,463,552,322,358,137,189,1,1,0,2,0,0,3,2,325,360,137,189,3,3,1,2,0,0,458,545,320,356,134,184,1,1,0,2,0,0,3,2,323,358,134,184,3,3,1,2,0,0,5,7,2,2,3,5,0,0,0,0,0,0,0,0,2,2,3,5,0,0,0,0,0,0 -050,01,107,Alabama,Pickens County,13,16,740,323,417,218,281,102,130,0,2,1,2,1,1,1,1,219,282,102,130,1,3,1,2,1,1,321,417,218,281,101,130,0,2,1,2,0,1,1,1,219,282,101,130,1,3,1,2,0,1,2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0 -050,01,107,Alabama,Pickens County,13,17,518,222,296,158,201,61,91,2,1,0,0,0,1,1,2,159,202,61,92,3,2,0,1,0,1,221,293,157,200,61,90,2,1,0,0,0,0,1,2,158,201,61,91,3,2,0,1,0,0,1,3,1,1,0,1,0,0,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,1 -050,01,107,Alabama,Pickens County,13,18,424,155,269,103,172,50,96,0,0,0,0,0,0,2,1,105,173,51,96,2,1,0,0,0,0,155,267,103,170,50,96,0,0,0,0,0,0,2,1,105,171,51,96,2,1,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,1,0,32899,15700,17199,9516,9928,5452,6644,98,100,366,296,19,20,249,211,9729,10100,5558,6753,236,208,416,336,23,27,15297,16872,9206,9696,5415,6588,90,95,357,291,4,3,225,199,9396,9858,5518,6694,207,194,400,327,8,10,403,327,310,232,37,56,8,5,9,5,15,17,24,12,333,242,40,59,29,14,16,9,15,17 -050,01,109,Alabama,Pike County,1,1,1846,905,941,442,490,406,416,5,2,11,6,3,4,38,23,478,511,432,431,14,7,19,11,4,4,859,896,409,454,403,411,1,2,11,6,0,0,35,23,442,475,428,426,8,7,18,11,1,0,46,45,33,36,3,5,4,0,0,0,3,4,3,0,36,36,4,5,6,0,1,0,3,4 -050,01,109,Alabama,Pike County,1,2,1754,890,864,437,449,414,378,2,7,13,5,0,0,24,25,456,472,430,393,12,13,17,11,0,0,855,827,410,423,409,368,2,7,13,5,0,0,21,24,426,445,424,383,10,12,16,11,0,0,35,37,27,26,5,10,0,0,0,0,0,0,3,1,30,27,6,10,2,1,1,0,0,0 -050,01,109,Alabama,Pike County,1,3,1928,955,973,502,481,409,459,7,8,9,5,0,4,28,16,526,494,425,469,21,14,11,8,0,4,920,944,473,460,407,456,7,8,9,5,0,0,24,15,493,472,423,466,18,13,10,8,0,0,35,29,29,21,2,3,0,0,0,0,0,4,4,1,33,22,2,3,3,1,1,0,0,4 -050,01,109,Alabama,Pike County,1,4,3308,1564,1744,843,969,656,720,19,8,23,21,1,1,22,25,863,990,666,740,31,17,28,23,1,2,1530,1713,819,942,651,717,19,7,20,21,1,1,20,25,837,963,661,737,29,16,23,23,1,2,34,31,24,27,5,3,0,1,3,0,0,0,2,0,26,27,5,3,2,1,5,0,0,0 -050,01,109,Alabama,Pike County,1,5,4833,2385,2448,1444,1395,724,883,13,10,165,137,4,1,35,22,1473,1414,738,895,28,15,178,143,5,4,2314,2408,1387,1369,720,873,12,10,162,135,0,1,33,20,1414,1386,734,885,25,13,174,141,1,4,71,40,57,26,4,10,1,0,3,2,4,0,2,2,59,28,4,10,3,2,4,2,4,0 -050,01,109,Alabama,Pike County,1,6,2275,1208,1067,691,544,401,447,4,6,85,53,4,6,23,11,710,552,407,450,15,9,95,60,5,7,1144,1025,642,516,397,442,2,5,82,53,0,0,21,9,659,523,403,444,11,7,92,59,1,1,64,42,49,28,4,5,2,1,3,0,4,6,2,2,51,29,4,6,4,2,3,1,4,6 -050,01,109,Alabama,Pike County,1,7,1694,775,919,485,482,247,407,3,4,18,13,2,1,20,12,499,493,254,414,16,12,25,16,2,1,737,885,456,459,244,403,2,2,18,13,0,0,17,8,467,467,251,409,12,7,24,13,0,0,38,34,29,23,3,4,1,2,0,0,2,1,3,4,32,26,3,5,4,5,1,3,2,1 -050,01,109,Alabama,Pike County,1,8,1768,825,943,522,493,284,414,3,3,10,23,0,1,6,9,527,499,285,417,9,11,10,24,0,1,800,929,499,481,282,413,3,3,10,23,0,0,6,9,504,487,283,416,9,11,10,24,0,0,25,14,23,12,2,1,0,0,0,0,0,1,0,0,23,12,2,1,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,1,9,1737,803,934,505,516,269,391,6,9,13,10,2,0,8,8,513,521,272,393,12,16,13,12,2,0,783,918,490,504,267,388,6,9,13,9,0,0,7,8,497,509,270,390,11,16,13,11,0,0,20,16,15,12,2,3,0,0,0,1,2,0,1,0,16,12,2,3,1,0,0,1,2,0 -050,01,109,Alabama,Pike County,1,10,1899,899,1000,533,553,340,411,9,15,6,5,0,0,11,16,543,565,341,416,20,29,6,7,0,0,888,992,524,548,338,408,9,15,6,5,0,0,11,16,534,560,339,413,20,29,6,7,0,0,11,8,9,5,2,3,0,0,0,0,0,0,0,0,9,5,2,3,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,1,11,2026,952,1074,580,624,353,434,8,2,5,6,0,0,6,8,586,627,353,438,13,7,6,9,0,2,944,1070,573,621,352,434,8,2,5,5,0,0,6,8,579,624,352,438,13,7,6,8,0,2,8,4,7,3,1,0,0,0,0,1,0,0,0,0,7,3,1,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,1,12,1866,905,961,581,595,299,344,12,10,5,1,2,0,6,11,587,604,299,348,18,20,5,1,2,0,899,954,578,590,297,343,12,10,5,1,2,0,5,10,583,598,297,347,17,19,5,1,2,0,6,7,3,5,2,1,0,0,0,0,0,0,1,1,4,6,2,1,1,1,0,0,0,0 -050,01,109,Alabama,Pike County,1,13,1754,844,910,601,613,239,282,1,4,1,4,0,0,2,7,603,619,239,286,3,10,1,4,0,0,840,905,599,611,237,281,1,3,1,4,0,0,2,6,601,616,237,284,3,9,1,4,0,0,4,5,2,2,2,1,0,1,0,0,0,0,0,1,2,3,2,2,0,1,0,0,0,0 -050,01,109,Alabama,Pike County,1,14,1365,656,709,496,515,148,179,2,3,2,3,1,1,7,8,501,522,151,181,8,10,2,3,1,1,654,704,495,514,148,176,2,3,2,2,1,1,6,8,500,521,150,178,7,10,2,2,1,1,2,5,1,1,0,3,0,0,0,1,0,0,1,0,1,1,1,3,1,0,0,1,0,0 -050,01,109,Alabama,Pike County,1,15,1071,491,580,354,392,131,180,2,1,0,3,0,0,4,4,357,396,132,180,6,5,0,3,0,0,490,579,353,392,131,179,2,1,0,3,0,0,4,4,356,396,132,179,6,5,0,3,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,1,16,751,297,454,219,317,74,127,1,6,0,1,0,0,3,3,221,319,75,129,4,8,0,1,0,0,295,449,219,313,74,126,1,6,0,1,0,0,1,3,219,315,75,128,2,8,0,1,0,0,2,5,0,4,0,1,0,0,0,0,0,0,2,0,2,4,0,1,2,0,0,0,0,0 -050,01,109,Alabama,Pike County,1,17,510,206,304,167,227,33,73,0,1,0,0,0,1,6,2,172,229,34,73,5,3,0,0,1,1,205,303,166,227,33,73,0,1,0,0,0,0,6,2,171,229,34,73,5,3,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,1,18,514,140,374,114,273,25,99,1,1,0,0,0,0,0,1,114,273,25,100,1,2,0,0,0,0,140,371,114,272,25,97,1,1,0,0,0,0,0,1,114,272,25,98,1,2,0,0,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,2,0,32902,15703,17199,9513,9926,5453,6645,98,100,371,297,19,20,249,211,9726,10098,5559,6754,236,208,421,337,23,27,15295,16871,9203,9694,5416,6589,90,95,357,291,4,3,225,199,9393,9856,5519,6695,207,194,400,327,8,10,408,328,310,232,37,56,8,5,14,6,15,17,24,12,333,242,40,59,29,14,21,10,15,17 -050,01,109,Alabama,Pike County,2,1,1847,906,941,442,490,406,416,5,2,12,6,3,4,38,23,478,511,432,431,14,7,20,11,4,4,859,896,409,454,403,411,1,2,11,6,0,0,35,23,442,475,428,426,8,7,18,11,1,0,47,45,33,36,3,5,4,0,1,0,3,4,3,0,36,36,4,5,6,0,2,0,3,4 -050,01,109,Alabama,Pike County,2,2,1753,890,863,436,448,414,378,2,7,14,5,0,0,24,25,455,471,430,393,12,13,18,11,0,0,854,826,409,422,409,368,2,7,13,5,0,0,21,24,425,444,424,383,10,12,16,11,0,0,36,37,27,26,5,10,0,0,1,0,0,0,3,1,30,27,6,10,2,1,2,0,0,0 -050,01,109,Alabama,Pike County,2,3,1930,956,974,502,482,409,459,7,8,10,5,0,4,28,16,526,495,425,469,21,14,12,8,0,4,920,945,473,461,407,456,7,8,9,5,0,0,24,15,493,473,423,466,18,13,10,8,0,0,36,29,29,21,2,3,0,0,1,0,0,4,4,1,33,22,2,3,3,1,2,0,0,4 -050,01,109,Alabama,Pike County,2,4,3307,1563,1744,842,969,656,720,19,8,23,21,1,1,22,25,862,990,666,740,31,17,28,23,1,2,1529,1713,818,942,651,717,19,7,20,21,1,1,20,25,836,963,661,737,29,16,23,23,1,2,34,31,24,27,5,3,0,1,3,0,0,0,2,0,26,27,5,3,2,1,5,0,0,0 -050,01,109,Alabama,Pike County,2,5,4834,2386,2448,1444,1395,724,883,13,10,166,137,4,1,35,22,1473,1414,738,895,28,15,179,143,5,4,2314,2408,1387,1369,720,873,12,10,162,135,0,1,33,20,1414,1386,734,885,25,13,174,141,1,4,72,40,57,26,4,10,1,0,4,2,4,0,2,2,59,28,4,10,3,2,5,2,4,0 -050,01,109,Alabama,Pike County,2,6,2274,1208,1066,691,543,401,447,4,6,85,53,4,6,23,11,710,551,407,450,15,9,95,60,5,7,1144,1024,642,515,397,442,2,5,82,53,0,0,21,9,659,522,403,444,11,7,92,59,1,1,64,42,49,28,4,5,2,1,3,0,4,6,2,2,51,29,4,6,4,2,3,1,4,6 -050,01,109,Alabama,Pike County,2,7,1694,775,919,485,482,247,407,3,4,18,13,2,1,20,12,499,493,254,414,16,12,25,16,2,1,737,885,456,459,244,403,2,2,18,13,0,0,17,8,467,467,251,409,12,7,24,13,0,0,38,34,29,23,3,4,1,2,0,0,2,1,3,4,32,26,3,5,4,5,1,3,2,1 -050,01,109,Alabama,Pike County,2,8,1770,826,944,523,494,284,414,3,3,10,23,0,1,6,9,528,500,285,417,9,11,10,24,0,1,801,930,500,482,282,413,3,3,10,23,0,0,6,9,505,488,283,416,9,11,10,24,0,0,25,14,23,12,2,1,0,0,0,0,0,1,0,0,23,12,2,1,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,2,9,1739,804,935,505,516,269,391,6,9,14,11,2,0,8,8,513,521,272,393,12,16,14,13,2,0,783,918,490,504,267,388,6,9,13,9,0,0,7,8,497,509,270,390,11,16,13,11,0,0,21,17,15,12,2,3,0,0,1,2,2,0,1,0,16,12,2,3,1,0,1,2,2,0 -050,01,109,Alabama,Pike County,2,10,1898,899,999,533,552,340,411,9,15,6,5,0,0,11,16,543,564,341,416,20,29,6,7,0,0,888,991,524,547,338,408,9,15,6,5,0,0,11,16,534,559,339,413,20,29,6,7,0,0,11,8,9,5,2,3,0,0,0,0,0,0,0,0,9,5,2,3,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,2,11,2026,952,1074,580,624,353,434,8,2,5,6,0,0,6,8,586,627,353,438,13,7,6,9,0,2,944,1070,573,621,352,434,8,2,5,5,0,0,6,8,579,624,352,438,13,7,6,8,0,2,8,4,7,3,1,0,0,0,0,1,0,0,0,0,7,3,1,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,2,12,1865,904,961,580,595,299,344,12,10,5,1,2,0,6,11,586,604,299,348,18,20,5,1,2,0,898,954,577,590,297,343,12,10,5,1,2,0,5,10,582,598,297,347,17,19,5,1,2,0,6,7,3,5,2,1,0,0,0,0,0,0,1,1,4,6,2,1,1,1,0,0,0,0 -050,01,109,Alabama,Pike County,2,13,1754,844,910,601,613,239,282,1,4,1,4,0,0,2,7,603,619,239,286,3,10,1,4,0,0,840,905,599,611,237,281,1,3,1,4,0,0,2,6,601,616,237,284,3,9,1,4,0,0,4,5,2,2,2,1,0,1,0,0,0,0,0,1,2,3,2,2,0,1,0,0,0,0 -050,01,109,Alabama,Pike County,2,14,1367,657,710,496,515,149,180,2,3,2,3,1,1,7,8,501,522,152,182,8,10,2,3,1,1,655,705,495,514,149,177,2,3,2,2,1,1,6,8,500,521,151,179,7,10,2,2,1,1,2,5,1,1,0,3,0,0,0,1,0,0,1,0,1,1,1,3,1,0,0,1,0,0 -050,01,109,Alabama,Pike County,2,15,1071,491,580,354,392,131,180,2,1,0,3,0,0,4,4,357,396,132,180,6,5,0,3,0,0,490,579,353,392,131,179,2,1,0,3,0,0,4,4,356,396,132,179,6,5,0,3,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,2,16,749,296,453,218,316,74,127,1,6,0,1,0,0,3,3,220,318,75,129,4,8,0,1,0,0,294,448,218,312,74,126,1,6,0,1,0,0,1,3,218,314,75,128,2,8,0,1,0,0,2,5,0,4,0,1,0,0,0,0,0,0,2,0,2,4,0,1,2,0,0,0,0,0 -050,01,109,Alabama,Pike County,2,17,510,206,304,167,227,33,73,0,1,0,0,0,1,6,2,172,229,34,73,5,3,0,0,1,1,205,303,166,227,33,73,0,1,0,0,0,0,6,2,171,229,34,73,5,3,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,2,18,514,140,374,114,273,25,99,1,1,0,0,0,0,0,1,114,273,25,100,1,2,0,0,0,0,140,371,114,272,25,97,1,1,0,0,0,0,0,1,114,272,25,98,1,2,0,0,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,3,0,32972,15732,17240,9515,9907,5457,6692,101,100,391,297,17,19,251,225,9730,10089,5572,6805,217,203,444,343,29,36,15317,16906,9200,9670,5418,6635,93,95,377,291,3,3,226,212,9394,9842,5522,6741,195,190,427,334,13,19,415,334,315,237,39,57,8,5,14,6,14,16,25,13,336,247,50,64,22,13,17,9,16,17 -050,01,109,Alabama,Pike County,3,1,1863,922,941,444,488,417,414,5,2,12,7,3,4,41,26,484,510,442,436,14,6,19,11,5,5,873,895,410,451,413,409,1,2,11,7,0,0,38,26,447,473,437,431,8,6,18,11,2,1,49,46,34,37,4,5,4,0,1,0,3,4,3,0,37,37,5,5,6,0,1,0,3,4 -050,01,109,Alabama,Pike County,3,2,1744,880,864,434,450,407,378,2,7,13,6,0,0,24,23,455,468,425,394,8,14,16,11,1,1,843,825,407,422,401,368,2,7,12,6,0,0,21,22,425,439,417,383,7,13,15,11,1,1,37,39,27,28,6,10,0,0,1,0,0,0,3,1,30,29,8,11,1,1,1,0,0,0 -050,01,109,Alabama,Pike County,3,3,1933,962,971,503,480,416,453,7,9,10,6,0,4,26,19,522,496,432,463,16,16,17,12,1,5,926,942,474,460,414,449,7,9,9,6,0,0,22,18,490,475,429,458,13,15,16,12,0,1,36,29,29,20,2,4,0,0,1,0,0,4,4,1,32,21,3,5,3,1,1,0,1,4 -050,01,109,Alabama,Pike County,3,4,3264,1521,1743,805,966,650,713,17,7,26,21,1,1,22,35,824,994,662,736,27,18,30,27,3,4,1489,1712,783,939,645,710,17,6,23,21,1,1,20,35,800,967,656,733,26,17,27,27,3,4,32,31,22,27,5,3,0,1,3,0,0,0,2,0,24,27,6,3,1,1,3,0,0,0 -050,01,109,Alabama,Pike County,3,5,5019,2483,2536,1506,1404,736,964,17,9,187,135,3,1,34,23,1533,1424,751,978,29,16,200,140,5,3,2401,2488,1438,1371,732,954,16,9,183,133,0,1,32,20,1463,1389,745,966,28,15,196,138,2,2,82,48,68,33,4,10,1,0,4,2,3,0,2,3,70,35,6,12,1,1,4,2,3,1 -050,01,109,Alabama,Pike County,3,6,2236,1177,1059,669,543,398,443,4,6,79,51,4,5,23,11,687,548,407,451,18,13,83,53,6,6,1119,1023,626,519,394,439,2,5,76,51,0,0,21,9,643,523,402,445,14,11,80,52,1,1,58,36,43,24,4,4,2,1,3,0,4,5,2,2,44,25,5,6,4,2,3,1,5,5 -050,01,109,Alabama,Pike County,3,7,1702,787,915,494,480,249,406,3,4,20,12,2,1,19,12,511,491,254,409,13,10,26,16,3,1,749,879,465,456,246,401,2,2,20,12,0,0,16,8,479,463,250,404,10,5,26,15,1,0,38,36,29,24,3,5,1,2,0,0,2,1,3,4,32,28,4,5,3,5,0,1,2,1 -050,01,109,Alabama,Pike County,3,8,1756,817,939,515,497,281,407,3,3,11,22,0,1,7,9,522,504,283,409,7,10,12,24,0,2,792,926,492,486,279,406,3,3,11,22,0,0,7,9,499,493,281,408,7,10,12,24,0,1,25,13,23,11,2,1,0,0,0,0,0,1,0,0,23,11,2,1,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,3,9,1733,805,928,508,506,268,393,5,9,13,12,2,0,9,8,516,512,269,396,13,12,14,14,2,2,783,912,492,495,266,390,5,9,12,10,0,0,8,8,499,501,267,393,12,12,13,12,0,2,22,16,16,11,2,3,0,0,1,2,2,0,1,0,17,11,2,3,1,0,1,2,2,0 -050,01,109,Alabama,Pike County,3,10,1875,879,996,523,551,330,409,9,15,6,5,0,0,11,16,532,562,332,413,17,28,9,7,0,2,869,987,515,545,328,406,9,15,6,5,0,0,11,16,524,556,330,410,17,28,9,7,0,2,10,9,8,6,2,3,0,0,0,0,0,0,0,0,8,6,2,3,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,3,11,2005,950,1055,577,612,352,424,9,4,6,6,0,0,6,9,583,620,354,424,13,8,6,10,0,2,941,1051,569,609,351,424,9,4,6,5,0,0,6,9,575,617,353,424,13,8,6,9,0,2,9,4,8,3,1,0,0,0,0,1,0,0,0,0,8,3,1,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,3,12,1865,900,965,579,595,298,348,12,10,4,2,1,0,6,10,584,604,299,349,17,17,5,4,1,1,894,959,576,591,296,347,12,10,4,2,1,0,5,9,580,599,297,347,17,17,4,4,1,1,6,6,3,4,2,1,0,0,0,0,0,0,1,1,4,5,2,2,0,0,1,0,0,0 -050,01,109,Alabama,Pike County,3,13,1750,852,898,605,605,241,277,2,5,1,5,0,0,3,6,608,610,243,277,4,11,1,6,0,0,848,893,603,603,239,276,2,4,1,5,0,0,3,5,606,608,241,276,4,9,1,5,0,0,4,5,2,2,2,1,0,1,0,0,0,0,0,1,2,2,2,1,0,2,0,1,0,0 -050,01,109,Alabama,Pike County,3,14,1371,655,716,495,518,148,184,2,2,3,3,1,1,6,8,499,524,151,188,6,8,3,4,2,1,653,711,494,517,148,181,2,2,3,2,1,1,5,8,498,523,150,185,5,8,3,3,2,1,2,5,1,1,0,3,0,0,0,1,0,0,1,0,1,1,1,3,1,0,0,1,0,0 -050,01,109,Alabama,Pike County,3,15,1074,492,582,354,396,132,178,2,1,0,3,0,0,4,4,358,400,132,179,6,4,0,3,0,0,491,581,353,396,132,177,2,1,0,3,0,0,4,4,357,400,132,178,6,4,0,3,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,3,16,750,302,448,219,314,78,125,1,5,0,1,0,0,4,3,222,317,79,126,2,8,3,1,0,0,299,443,219,310,78,124,1,5,0,1,0,0,1,3,220,313,78,125,1,8,1,1,0,0,3,5,0,4,0,1,0,0,0,0,0,0,3,0,2,4,1,1,1,0,2,0,0,0 -050,01,109,Alabama,Pike County,3,17,521,209,312,169,234,34,74,0,1,0,0,0,1,6,2,174,236,35,75,6,2,0,0,0,1,208,310,168,233,34,74,0,1,0,0,0,0,6,2,173,235,35,75,6,2,0,0,0,0,1,2,1,1,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,3,18,511,139,372,116,268,22,102,1,1,0,0,0,0,0,1,116,269,22,102,1,2,0,0,0,0,139,369,116,267,22,100,1,1,0,0,0,0,0,1,116,268,22,100,1,2,0,0,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,4,0,33031,15777,17254,9541,9931,5462,6710,107,99,391,266,19,18,257,230,9760,10127,5578,6829,227,212,446,316,29,30,15336,16914,9213,9690,5414,6654,99,94,378,260,4,3,228,213,9409,9870,5518,6763,203,199,428,309,12,14,441,340,328,241,48,56,8,5,13,6,15,15,29,17,351,257,60,66,24,13,18,7,17,16 -050,01,109,Alabama,Pike County,4,1,1889,945,944,471,497,419,412,5,2,11,8,2,3,37,22,504,515,445,429,14,6,18,11,3,5,890,893,430,454,413,407,1,2,11,8,0,0,35,22,461,472,438,424,9,6,18,11,1,2,55,51,41,43,6,5,4,0,0,0,2,3,2,0,43,43,7,5,5,0,0,0,2,3 -050,01,109,Alabama,Pike County,4,2,1703,860,843,422,437,398,372,1,5,14,7,1,1,24,21,444,457,413,385,7,9,19,11,1,3,813,806,386,408,393,366,1,5,12,7,0,0,21,20,405,427,407,378,5,9,17,11,0,2,47,37,36,29,5,6,0,0,2,0,1,1,3,1,39,30,6,7,2,0,2,0,1,1 -050,01,109,Alabama,Pike County,4,3,1889,940,949,473,462,423,446,6,8,12,5,0,4,26,24,496,485,435,460,17,16,18,11,0,5,902,915,442,440,420,439,6,8,12,5,0,0,22,23,462,462,429,452,15,16,18,11,0,1,38,34,31,22,3,7,0,0,0,0,0,4,4,1,34,23,6,8,2,0,0,0,0,4 -050,01,109,Alabama,Pike County,4,4,2976,1347,1629,680,920,599,649,18,8,24,16,2,1,24,35,701,948,612,674,27,26,30,28,2,4,1317,1604,661,898,594,648,18,7,22,16,1,1,21,34,679,925,606,673,25,24,28,28,1,4,30,25,19,22,5,1,0,1,2,0,1,0,3,1,22,23,6,1,2,2,2,0,1,0 -050,01,109,Alabama,Pike County,4,5,5436,2741,2695,1693,1486,799,1062,19,9,189,112,2,1,39,25,1718,1509,821,1073,36,16,201,122,7,2,2669,2642,1639,1452,793,1051,18,9,184,110,0,1,35,19,1663,1469,814,1058,32,14,195,119,3,1,72,53,54,34,6,11,1,0,5,2,2,0,4,6,55,40,7,15,4,2,6,3,4,1 -050,01,109,Alabama,Pike County,4,6,2124,1087,1037,609,553,385,424,8,5,56,39,5,4,24,12,629,562,394,431,20,12,62,41,6,4,1022,1002,560,530,380,419,6,4,52,39,1,0,23,10,579,537,388,425,18,10,58,41,2,0,65,35,49,23,5,5,2,1,4,0,4,4,1,2,50,25,6,6,2,2,4,0,4,4 -050,01,109,Alabama,Pike County,4,7,1751,833,918,521,469,262,416,3,4,28,18,3,0,16,11,534,479,269,418,12,11,31,20,3,1,790,885,491,445,258,412,2,2,28,18,0,0,11,8,500,452,263,414,8,6,30,20,0,1,43,33,30,24,4,4,1,2,0,0,3,0,5,3,34,27,6,4,4,5,1,0,3,0 -050,01,109,Alabama,Pike County,4,8,1686,780,906,482,504,270,370,2,3,15,17,0,2,11,10,493,510,272,376,7,8,18,21,1,3,758,888,463,491,268,368,2,3,15,17,0,0,10,9,473,497,270,373,6,7,18,21,1,1,22,18,19,13,2,2,0,0,0,0,0,2,1,1,20,13,2,3,1,1,0,0,0,2 -050,01,109,Alabama,Pike County,4,9,1781,824,957,524,510,270,413,5,8,13,17,2,0,10,9,533,517,273,419,13,14,13,18,2,0,796,944,503,502,266,410,5,8,13,15,0,0,9,9,511,509,268,416,13,14,13,16,0,0,28,13,21,8,4,3,0,0,0,2,2,0,1,0,22,8,5,3,0,0,0,2,2,0 -050,01,109,Alabama,Pike County,4,10,1827,853,974,521,537,308,400,8,15,6,6,0,0,10,16,530,549,309,407,16,29,7,7,1,0,842,965,512,531,306,397,8,15,6,6,0,0,10,16,521,543,307,404,16,29,7,7,1,0,11,9,9,6,2,3,0,0,0,0,0,0,0,0,9,6,2,3,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,4,11,1959,943,1016,578,590,343,404,11,7,6,4,0,0,5,11,583,599,344,407,15,15,6,5,0,1,933,1011,569,585,342,404,11,7,6,4,0,0,5,11,574,594,343,407,15,15,6,5,0,1,10,5,9,5,1,0,0,0,0,0,0,0,0,0,9,5,1,0,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,4,12,1921,921,1000,589,603,306,375,12,9,5,6,1,0,8,7,596,608,308,380,16,12,8,7,1,0,914,994,585,600,304,374,12,9,5,5,1,0,7,6,592,604,305,378,16,12,7,6,1,0,7,6,4,3,2,1,0,0,0,1,0,0,1,1,4,4,3,2,0,0,1,1,0,0 -050,01,109,Alabama,Pike County,4,13,1785,881,904,614,601,259,284,3,6,2,5,0,0,3,8,616,608,260,286,6,12,2,6,0,0,876,899,611,598,257,284,3,5,2,5,0,0,3,7,613,604,258,285,6,11,2,6,0,0,5,5,3,3,2,0,0,1,0,0,0,0,0,1,3,4,2,1,0,1,0,0,0,0 -050,01,109,Alabama,Pike County,4,14,1413,662,751,487,533,158,208,1,1,10,2,1,1,5,6,492,539,158,209,4,5,11,3,2,1,659,747,486,533,157,205,1,1,10,1,1,1,4,6,490,539,157,206,3,5,11,2,2,1,3,4,1,0,1,3,0,0,0,1,0,0,1,0,2,0,1,3,1,0,0,1,0,0 -050,01,109,Alabama,Pike County,4,15,1085,497,588,365,404,124,171,3,2,0,3,0,0,5,8,370,412,125,171,7,9,0,4,0,0,496,585,364,403,124,169,3,2,0,3,0,0,5,8,369,411,125,169,7,9,0,4,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,4,16,746,312,434,226,308,83,117,1,5,0,1,0,0,2,3,228,311,83,117,1,8,2,1,0,0,310,432,226,307,83,116,1,5,0,1,0,0,0,3,226,310,83,116,1,8,0,1,0,0,2,2,0,1,0,1,0,0,0,0,0,0,2,0,2,1,0,1,0,0,2,0,0,0 -050,01,109,Alabama,Pike County,4,17,553,206,347,166,257,34,86,0,1,0,0,0,1,6,2,172,259,34,86,6,3,0,0,0,1,204,343,165,254,34,86,0,1,0,0,0,0,5,2,170,256,34,86,5,3,0,0,0,0,2,4,1,3,0,0,0,0,0,0,0,1,1,0,2,3,0,0,1,0,0,0,0,1 -050,01,109,Alabama,Pike County,4,18,507,145,362,120,260,22,101,1,1,0,0,0,0,2,0,121,260,23,101,3,1,0,0,0,0,145,359,120,259,22,99,1,1,0,0,0,0,2,0,121,259,23,99,3,1,0,0,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,5,0,33225,15892,17333,9496,9900,5595,6793,105,103,422,279,17,14,257,244,9722,10108,5719,6919,216,207,481,328,28,26,15481,17004,9197,9683,5540,6733,95,94,411,273,4,3,234,218,9401,9869,5651,6849,193,181,469,318,15,13,411,329,299,217,55,60,10,9,11,6,13,11,23,26,321,239,68,70,23,26,12,10,13,13 -050,01,109,Alabama,Pike County,5,1,1912,971,941,490,499,425,400,5,3,14,13,2,0,35,26,520,522,453,420,12,10,20,16,3,1,924,909,460,472,415,396,2,3,14,13,0,0,33,25,488,494,442,415,8,9,20,16,1,1,47,32,30,27,10,4,3,0,0,0,2,0,2,1,32,28,11,5,4,1,0,0,2,0 -050,01,109,Alabama,Pike County,5,2,1681,829,852,393,419,397,398,5,5,13,7,1,1,20,22,413,439,410,413,9,10,15,11,2,2,799,825,373,402,394,391,2,4,12,7,0,0,18,21,391,421,406,406,5,9,14,10,1,1,30,27,20,17,3,7,3,1,1,0,1,1,2,1,22,18,4,7,4,1,1,1,1,1 -050,01,109,Alabama,Pike County,5,3,1888,937,951,465,454,426,450,5,9,10,6,0,1,31,31,493,483,444,466,16,19,16,14,2,2,906,914,444,428,421,441,5,9,9,6,0,0,27,30,468,456,437,457,13,19,15,13,2,1,31,37,21,26,5,9,0,0,1,0,0,1,4,1,25,27,7,9,3,0,1,1,0,1 -050,01,109,Alabama,Pike County,5,4,2849,1261,1588,623,884,573,643,16,5,27,15,0,3,22,38,644,915,584,670,22,18,34,21,0,5,1232,1564,602,865,568,642,16,4,26,15,0,1,20,37,621,895,579,669,21,16,32,21,0,3,29,24,21,19,5,1,0,1,1,0,0,2,2,1,23,20,5,1,1,2,2,0,0,2 -050,01,109,Alabama,Pike County,5,5,5770,2920,2850,1787,1563,927,1140,19,8,147,106,2,1,38,32,1816,1589,950,1155,30,21,159,115,6,4,2843,2791,1726,1530,921,1129,19,7,141,105,1,1,35,19,1752,1547,941,1137,30,12,153,112,5,2,77,59,61,33,6,11,0,1,6,1,1,0,3,13,64,42,9,18,0,9,6,3,1,2 -050,01,109,Alabama,Pike County,5,6,2044,1075,969,557,520,384,388,6,7,100,43,4,4,24,7,577,525,394,391,18,11,108,45,4,4,1016,943,512,506,378,383,4,6,98,42,0,0,24,6,532,510,388,386,16,9,106,44,0,0,59,26,45,14,6,5,2,1,2,1,4,4,0,1,45,15,6,5,2,2,2,1,4,4 -050,01,109,Alabama,Pike County,5,7,1838,888,950,525,497,301,419,3,4,37,18,5,0,17,12,539,507,305,423,13,9,42,22,6,1,843,915,492,471,296,414,2,3,37,18,1,0,15,9,504,478,299,418,11,5,42,22,2,1,45,35,33,26,5,5,1,1,0,0,4,0,2,3,35,29,6,5,2,4,0,0,4,0 -050,01,109,Alabama,Pike County,5,8,1599,744,855,461,462,248,359,3,6,18,17,0,2,14,9,473,470,253,364,12,10,21,18,1,2,722,829,443,446,246,356,3,3,18,17,0,0,12,7,453,452,249,360,11,6,21,18,1,0,22,26,18,16,2,3,0,3,0,0,0,2,2,2,20,18,4,4,1,4,0,0,0,2 -050,01,109,Alabama,Pike County,5,9,1819,834,985,529,512,279,439,5,5,12,19,1,0,8,10,535,520,281,444,11,11,14,21,1,0,806,972,507,503,275,437,5,5,12,17,0,0,7,10,513,511,276,442,10,11,14,19,0,0,28,13,22,9,4,2,0,0,0,2,1,0,1,0,22,9,5,2,1,0,0,2,1,0 -050,01,109,Alabama,Pike County,5,10,1780,827,953,510,527,295,388,4,13,8,8,0,0,10,17,519,541,296,392,13,23,9,12,0,2,815,940,500,518,293,385,4,13,8,8,0,0,10,16,509,531,294,389,13,22,9,12,0,2,12,13,10,9,2,3,0,0,0,0,0,0,0,1,10,10,2,3,0,1,0,0,0,0 -050,01,109,Alabama,Pike County,5,11,1923,916,1007,554,586,336,397,13,11,7,5,0,0,6,8,560,591,337,400,17,17,8,6,0,1,904,1002,544,582,335,396,12,11,7,5,0,0,6,8,550,587,336,399,16,17,8,6,0,1,12,5,10,4,1,1,1,0,0,0,0,0,0,0,10,4,1,1,1,0,0,0,0,0 -050,01,109,Alabama,Pike County,5,12,1931,940,991,596,596,319,373,9,7,7,10,1,0,8,5,604,601,322,374,13,10,9,11,1,0,932,984,592,591,316,373,9,7,7,9,1,0,7,4,599,595,318,374,12,9,9,10,1,0,8,7,4,5,3,0,0,0,0,1,0,0,1,1,5,6,4,0,1,1,0,1,0,0 -050,01,109,Alabama,Pike County,5,13,1753,841,912,579,585,249,303,6,9,3,5,0,0,4,10,583,594,250,305,9,16,3,7,0,0,838,905,578,580,247,302,6,8,3,5,0,0,4,10,582,589,248,304,9,15,3,7,0,0,3,7,1,5,2,1,0,1,0,0,0,0,0,0,1,5,2,1,0,1,0,0,0,0 -050,01,109,Alabama,Pike County,5,14,1500,706,794,517,558,166,227,1,1,18,3,1,1,3,4,519,562,167,230,3,2,19,3,1,1,704,788,516,557,166,224,1,1,18,2,1,1,2,3,517,560,167,226,2,2,19,2,1,1,2,6,1,1,0,3,0,0,0,1,0,0,1,1,2,2,0,4,1,0,0,1,0,0 -050,01,109,Alabama,Pike County,5,15,1080,509,571,382,396,118,160,2,3,1,3,0,0,6,9,388,404,118,161,7,10,2,5,0,0,507,568,381,395,117,158,2,3,1,3,0,0,6,9,387,403,117,159,7,10,2,5,0,0,2,3,1,1,1,2,0,0,0,0,0,0,0,0,1,1,1,2,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,5,16,791,340,451,244,323,93,120,2,5,0,1,0,0,1,2,245,324,94,121,3,7,0,1,1,0,340,449,244,322,93,119,2,5,0,1,0,0,1,2,245,323,94,120,3,7,0,1,1,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,5,17,565,202,363,160,268,35,92,0,0,0,0,0,1,7,2,167,270,36,93,5,1,1,0,0,1,198,359,159,265,35,92,0,0,0,0,0,0,4,2,163,267,35,93,3,1,1,0,0,0,4,4,1,3,0,0,0,0,0,0,0,1,3,0,4,3,1,0,2,0,0,0,0,1 -050,01,109,Alabama,Pike County,5,18,502,152,350,124,251,24,97,1,2,0,0,0,0,3,0,127,251,25,97,3,2,1,0,0,0,152,347,124,250,24,95,1,2,0,0,0,0,3,0,127,250,25,95,3,2,1,0,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,6,0,33728,16165,17563,9606,10045,5756,6877,110,104,408,268,16,16,269,253,9842,10262,5881,7016,223,211,463,314,32,30,15763,17222,9316,9822,5700,6813,101,94,396,262,4,4,246,227,9533,10016,5815,6938,204,190,447,301,17,15,402,341,290,223,56,64,9,10,12,6,12,12,23,26,309,246,66,78,19,21,16,13,15,15 -050,01,109,Alabama,Pike County,6,1,1879,964,915,486,482,420,390,3,1,16,17,1,0,38,25,520,500,446,412,11,6,23,22,3,1,926,889,463,460,411,387,1,1,16,17,0,0,35,24,494,477,435,408,8,6,23,22,2,1,38,26,23,22,9,3,2,0,0,0,1,0,3,1,26,23,11,4,3,0,0,0,1,0 -050,01,109,Alabama,Pike County,6,2,1719,848,871,399,425,394,408,4,3,18,6,3,2,30,27,424,448,415,425,13,9,22,12,5,4,809,831,375,398,387,398,1,3,17,6,1,0,28,26,398,421,408,414,8,8,21,12,3,2,39,40,24,27,7,10,3,0,1,0,2,2,2,1,26,27,7,11,5,1,1,0,2,2 -050,01,109,Alabama,Pike County,6,3,1869,935,934,443,459,447,428,7,7,7,6,0,0,31,34,469,491,462,449,17,19,15,13,3,0,905,901,423,436,441,419,7,7,6,6,0,0,28,33,447,467,456,440,14,18,13,13,3,0,30,33,20,23,6,9,0,0,1,0,0,0,3,1,22,24,6,9,3,1,2,0,0,0 -050,01,109,Alabama,Pike County,6,4,3067,1321,1746,671,985,593,687,15,8,22,24,0,4,20,38,690,1017,604,714,22,20,26,28,1,7,1295,1715,654,961,587,684,15,7,21,24,0,1,18,38,672,993,597,711,21,19,25,28,0,4,26,31,17,24,6,3,0,1,1,0,0,3,2,0,18,24,7,3,1,1,1,0,1,3 -050,01,109,Alabama,Pike County,6,5,6076,3096,2980,1864,1637,1037,1212,22,8,138,89,2,0,33,34,1890,1669,1055,1227,32,22,147,98,5,2,3017,2922,1798,1602,1032,1204,22,7,133,88,1,0,31,21,1822,1621,1048,1212,32,16,142,94,4,0,79,58,66,35,5,8,0,1,5,1,1,0,2,13,68,48,7,15,0,6,5,4,1,2 -050,01,109,Alabama,Pike County,6,6,1960,1022,938,533,512,363,376,6,6,88,32,2,4,30,8,557,520,374,378,21,10,97,34,3,5,982,913,505,498,359,370,4,6,85,31,0,1,29,7,529,505,370,371,18,10,94,32,0,2,40,25,28,14,4,6,2,0,3,1,2,3,1,1,28,15,4,7,3,0,3,2,3,3 -050,01,109,Alabama,Pike County,6,7,1884,951,933,552,491,334,399,4,8,40,21,5,2,16,12,567,500,338,406,10,11,46,26,6,2,899,899,511,471,331,393,3,4,40,21,0,1,14,9,524,479,334,398,9,6,45,24,1,1,52,34,41,20,3,6,1,4,0,0,5,1,2,3,43,21,4,8,1,5,1,2,5,1 -050,01,109,Alabama,Pike County,6,8,1637,741,896,463,478,243,382,1,7,19,16,0,1,15,12,477,490,248,387,8,12,22,18,1,1,714,864,442,457,240,378,1,4,18,16,0,0,13,9,454,466,243,381,8,8,21,18,1,0,27,32,21,21,3,4,0,3,1,0,0,1,2,3,23,24,5,6,0,4,1,0,0,1 -050,01,109,Alabama,Pike County,6,9,1800,845,955,532,512,292,418,5,3,8,16,1,1,7,5,538,517,294,420,9,4,10,18,1,1,823,942,515,502,289,417,5,3,8,15,0,0,6,5,521,507,290,419,9,4,9,17,0,0,22,13,17,10,3,1,0,0,0,1,1,1,1,0,17,10,4,1,0,0,1,1,1,1 -050,01,109,Alabama,Pike County,6,10,1701,798,903,517,489,257,374,5,13,14,12,0,0,5,15,522,501,259,380,7,24,15,14,0,1,780,891,502,482,254,371,5,13,14,11,0,0,5,14,507,493,256,377,7,23,15,12,0,1,18,12,15,7,3,3,0,0,0,1,0,0,0,1,15,8,3,3,0,1,0,2,0,0 -050,01,109,Alabama,Pike County,6,11,1901,888,1013,533,593,324,399,14,11,7,3,0,0,10,7,542,598,326,401,23,16,8,4,0,1,880,1006,526,588,324,397,13,11,7,3,0,0,10,7,535,593,326,399,22,16,8,4,0,1,8,7,7,5,0,2,1,0,0,0,0,0,0,0,7,5,0,2,1,0,0,0,0,0 -050,01,109,Alabama,Pike County,6,12,1967,940,1027,574,604,339,398,10,6,9,12,1,0,7,7,581,611,341,401,15,10,9,13,1,0,930,1023,568,601,336,398,10,6,9,11,1,0,6,7,574,608,338,401,14,10,9,12,1,0,10,4,6,3,3,0,0,0,0,1,0,0,1,0,7,3,3,0,1,0,0,1,0,0 -050,01,109,Alabama,Pike County,6,13,1715,838,877,566,556,257,296,7,10,2,5,0,0,6,10,572,562,257,301,13,18,2,5,0,2,834,871,564,552,255,295,7,10,2,5,0,0,6,9,570,557,255,300,13,18,2,5,0,1,4,6,2,4,2,1,0,0,0,0,0,0,0,1,2,5,2,1,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,6,14,1571,737,834,542,578,172,244,2,2,19,4,0,1,2,5,544,582,172,245,4,7,19,4,0,1,735,827,541,577,171,241,2,1,19,3,0,1,2,4,543,580,171,242,4,5,19,3,0,1,2,7,1,1,1,3,0,1,0,1,0,0,0,1,1,2,1,3,0,2,0,1,0,0 -050,01,109,Alabama,Pike County,6,15,1097,522,575,393,404,117,155,2,3,1,4,1,0,8,9,401,412,119,157,8,11,1,4,1,1,520,572,393,403,116,153,2,3,1,4,1,0,7,9,400,411,117,155,8,11,1,4,1,1,2,3,0,1,1,2,0,0,0,0,0,0,1,0,1,1,2,2,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,6,16,840,369,471,265,327,102,134,1,6,0,1,0,0,1,3,266,329,102,136,2,8,0,1,0,0,368,469,264,326,102,133,1,6,0,1,0,0,1,3,265,328,102,135,2,8,0,1,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,6,17,561,192,369,148,272,37,95,1,0,0,0,0,1,6,1,154,273,38,95,4,1,1,0,1,1,188,365,147,269,37,95,1,0,0,0,0,0,3,1,150,270,38,95,3,1,0,0,0,0,4,4,1,3,0,0,0,0,0,0,0,1,3,0,4,3,0,0,1,0,1,0,1,1 -050,01,109,Alabama,Pike County,6,18,484,158,326,125,241,28,82,1,2,0,0,0,0,4,1,128,242,31,82,4,3,0,0,1,0,158,322,125,239,28,80,1,2,0,0,0,0,4,1,128,240,31,80,4,3,0,0,1,0,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,7,0,33217,15966,17251,9485,9869,5685,6738,113,107,378,265,16,16,289,256,9745,10091,5825,6869,233,215,450,325,26,23,15577,16907,9209,9644,5632,6677,102,97,366,258,3,3,265,228,9449,9842,5755,6794,216,191,434,312,10,8,389,344,276,225,53,61,11,10,12,7,13,13,24,28,296,249,70,75,17,24,16,13,16,15 -050,01,109,Alabama,Pike County,7,1,1873,963,910,505,478,397,377,2,0,16,20,0,0,43,35,545,511,427,401,12,4,27,30,1,0,918,877,467,451,395,374,1,0,16,19,0,0,39,33,503,482,424,396,7,4,27,29,1,0,45,33,38,27,2,3,1,0,0,1,0,0,4,2,42,29,3,5,5,0,0,1,0,0 -050,01,109,Alabama,Pike County,7,2,1730,864,866,433,420,375,408,6,3,17,7,4,3,29,25,459,443,394,422,10,10,25,13,6,4,824,831,408,398,371,400,2,2,16,7,0,0,27,24,433,420,389,414,6,8,23,13,1,1,40,35,25,22,4,8,4,1,1,0,4,3,2,1,26,23,5,8,4,2,2,0,5,3 -050,01,109,Alabama,Pike County,7,3,1756,903,853,424,426,431,384,4,9,12,7,0,0,32,27,456,449,449,400,13,20,20,13,0,0,878,822,410,404,423,375,4,9,11,7,0,0,30,27,440,427,439,391,13,20,19,13,0,0,25,31,14,22,8,9,0,0,1,0,0,0,2,0,16,22,10,9,0,0,1,0,0,0 -050,01,109,Alabama,Pike County,7,4,2912,1256,1656,639,927,559,644,14,9,16,27,0,4,28,45,666,966,576,673,23,26,20,33,0,6,1225,1623,616,903,555,640,14,8,15,27,0,1,25,44,640,941,570,669,22,24,19,33,0,3,31,33,23,24,4,4,0,1,1,0,0,3,3,1,26,25,6,4,1,2,1,0,0,3 -050,01,109,Alabama,Pike County,7,5,5873,2993,2880,1787,1566,1018,1199,23,7,132,83,1,0,32,25,1812,1589,1036,1211,33,16,144,89,2,1,2929,2828,1735,1532,1012,1194,23,7,128,83,1,0,30,12,1758,1543,1028,1200,33,12,140,85,2,0,64,52,52,34,6,5,0,0,4,0,0,0,2,13,54,46,8,11,0,4,4,4,0,1 -050,01,109,Alabama,Pike County,7,6,1996,1072,924,559,514,392,362,9,8,76,30,3,2,33,8,588,518,402,368,25,10,87,34,5,2,1038,894,543,494,386,356,6,8,71,28,0,1,32,7,571,498,395,361,22,10,82,31,2,1,34,30,16,20,6,6,3,0,5,2,3,1,1,1,17,20,7,7,3,0,5,3,3,1 -050,01,109,Alabama,Pike County,7,7,1815,916,899,520,487,337,369,5,9,35,20,3,3,16,11,533,496,345,378,15,11,39,24,4,3,872,869,487,471,333,365,3,5,35,20,0,0,14,8,499,477,339,371,13,5,38,24,0,0,44,30,33,16,4,4,2,4,0,0,3,3,2,3,34,19,6,7,2,6,1,0,4,3 -050,01,109,Alabama,Pike County,7,8,1659,742,917,471,493,231,387,1,6,20,17,2,1,17,13,486,504,235,389,10,16,27,20,2,2,717,889,455,476,226,383,1,3,20,17,0,0,15,10,468,485,228,385,10,10,27,20,0,0,25,28,16,17,5,4,0,3,0,0,2,1,2,3,18,19,7,4,0,6,0,0,2,2 -050,01,109,Alabama,Pike County,7,9,1720,831,889,509,464,306,402,3,2,5,12,1,1,7,8,516,472,308,406,7,4,6,14,1,1,806,874,487,451,304,401,3,2,5,12,0,0,7,8,494,459,306,405,7,4,6,14,0,0,25,15,22,13,2,1,0,0,0,0,1,1,0,0,22,13,2,1,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,7,10,1653,750,903,492,496,232,373,8,12,11,13,0,0,7,9,499,502,234,376,12,16,12,17,0,1,727,889,474,489,228,369,8,12,11,11,0,0,6,8,480,495,229,371,12,16,12,14,0,1,23,14,18,7,4,4,0,0,0,2,0,0,1,1,19,7,5,5,0,0,0,3,0,0 -050,01,109,Alabama,Pike County,7,11,1891,880,1011,520,574,329,406,12,13,9,3,0,0,10,15,529,585,331,412,21,26,9,6,1,1,874,1001,516,568,328,403,11,13,9,3,0,0,10,14,525,578,330,408,20,25,9,6,1,1,6,10,4,6,1,3,1,0,0,0,0,0,0,1,4,7,1,4,1,1,0,0,0,0 -050,01,109,Alabama,Pike County,7,12,1979,935,1044,572,621,338,400,10,4,7,13,1,0,7,6,578,626,341,401,14,9,8,14,1,0,922,1040,563,618,335,400,10,4,7,12,1,0,6,6,569,623,337,401,14,9,7,13,1,0,13,4,9,3,3,0,0,0,0,1,0,0,1,0,9,3,4,0,0,0,1,1,0,0 -050,01,109,Alabama,Pike County,7,13,1704,821,883,549,551,257,309,8,10,1,3,0,0,6,10,554,559,258,311,12,18,3,5,0,0,817,876,547,546,255,308,8,10,1,3,0,0,6,9,552,553,256,310,12,17,3,5,0,0,4,7,2,5,2,1,0,0,0,0,0,0,0,1,2,6,2,1,0,1,0,0,0,0 -050,01,109,Alabama,Pike County,7,14,1586,746,840,539,579,183,247,3,4,20,5,0,0,1,5,540,584,183,249,4,6,20,6,0,0,744,833,538,578,182,244,3,3,20,4,0,0,1,4,539,582,182,246,4,4,20,5,0,0,2,7,1,1,1,3,0,1,0,1,0,0,0,1,1,2,1,3,0,2,0,1,0,0 -050,01,109,Alabama,Pike County,7,15,1144,550,594,419,432,120,147,1,3,1,3,1,1,8,8,426,440,122,147,8,10,1,4,1,1,547,590,418,430,119,145,1,3,1,3,1,1,7,8,424,438,120,145,8,10,1,4,1,1,3,4,1,2,1,2,0,0,0,0,0,0,1,0,2,2,2,2,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,7,16,863,379,484,273,330,101,144,2,4,0,2,0,0,3,4,276,334,102,145,5,8,0,2,0,0,378,481,272,329,101,142,2,4,0,2,0,0,3,4,275,333,102,143,5,8,0,2,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,7,17,562,201,361,148,260,48,96,1,2,0,0,0,1,4,2,151,262,49,96,3,3,1,1,1,1,197,357,147,257,48,96,1,2,0,0,0,0,1,2,148,259,48,96,2,3,0,1,0,0,4,4,1,3,0,0,0,0,0,0,0,1,3,0,3,3,1,0,1,0,1,0,1,1 -050,01,109,Alabama,Pike County,7,18,501,164,337,126,251,31,84,1,2,0,0,0,0,6,0,131,251,33,84,6,2,1,0,1,0,164,333,126,249,31,82,1,2,0,0,0,0,6,0,131,249,33,82,6,2,1,0,1,0,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,8,0,33518,16087,17431,9483,9885,5784,6851,114,113,384,297,17,14,305,271,9749,10110,5935,7005,238,220,459,350,29,32,15714,17090,9227,9665,5729,6783,102,103,372,288,3,3,281,248,9474,9871,5867,6921,218,201,439,336,13,19,373,341,256,220,55,68,12,10,12,9,14,11,24,23,275,239,68,84,20,19,20,14,16,13 -050,01,109,Alabama,Pike County,8,1,1903,978,925,489,465,426,393,2,1,21,22,0,0,40,44,526,504,452,425,11,8,31,31,1,3,938,897,460,443,419,390,1,1,21,21,0,0,37,42,494,480,444,420,9,7,30,30,1,3,40,28,29,22,7,3,1,0,0,1,0,0,3,2,32,24,8,5,2,1,1,1,0,0 -050,01,109,Alabama,Pike County,8,2,1725,871,854,416,425,390,391,6,3,17,11,3,1,39,23,451,443,417,409,11,7,25,16,7,3,834,818,394,398,384,384,3,2,16,11,0,0,37,23,428,416,409,402,8,6,24,16,3,2,37,36,22,27,6,7,3,1,1,0,3,1,2,0,23,27,8,7,3,1,1,0,4,1 -050,01,109,Alabama,Pike County,8,3,1743,922,821,448,413,422,370,6,8,15,7,1,0,30,23,477,434,439,383,15,16,21,12,1,2,887,785,427,389,413,359,5,8,14,7,0,0,28,22,454,409,430,372,12,15,20,12,0,2,35,36,21,24,9,11,1,0,1,0,1,0,2,1,23,25,9,11,3,1,1,0,1,0 -050,01,109,Alabama,Pike County,8,4,3053,1293,1760,651,967,582,695,11,11,15,33,0,4,34,50,683,1009,600,729,22,29,25,40,1,6,1268,1730,636,946,578,691,10,10,14,33,0,1,30,49,664,987,594,724,19,27,23,40,1,3,25,30,15,21,4,4,1,1,1,0,0,3,4,1,19,22,6,5,3,2,2,0,0,3 -050,01,109,Alabama,Pike County,8,5,5988,3058,2930,1806,1588,1047,1212,17,5,152,100,2,0,34,25,1834,1610,1062,1228,28,13,164,104,4,2,3000,2875,1759,1551,1043,1204,17,5,148,98,1,0,32,17,1786,1566,1057,1216,28,10,159,101,2,1,58,55,47,37,4,8,0,0,4,2,1,0,2,8,48,44,5,12,0,3,5,3,2,1 -050,01,109,Alabama,Pike County,8,6,2112,1119,993,593,515,426,430,12,10,55,28,3,1,30,9,616,520,440,435,27,14,63,32,5,1,1087,971,574,503,423,424,10,10,51,26,0,1,29,7,596,507,437,427,25,14,58,29,2,1,32,22,19,12,3,6,2,0,4,2,3,0,1,2,20,13,3,8,2,0,5,3,3,0 -050,01,109,Alabama,Pike County,8,7,1756,848,908,484,485,305,377,4,8,27,23,3,4,25,11,503,493,315,383,20,12,34,26,3,5,813,880,461,472,301,371,2,5,26,23,0,0,23,9,478,478,311,376,16,8,33,26,0,1,35,28,23,13,4,6,2,3,1,0,3,4,2,2,25,15,4,7,4,4,1,0,3,4 -050,01,109,Alabama,Pike County,8,8,1663,757,906,475,482,240,390,3,6,22,11,2,1,15,16,489,494,245,399,12,13,26,16,2,2,725,873,453,463,235,385,2,2,22,11,0,0,13,12,465,472,238,390,11,8,26,14,0,1,32,33,22,19,5,5,1,4,0,0,2,1,2,4,24,22,7,9,1,5,0,2,2,1 -050,01,109,Alabama,Pike County,8,9,1667,794,873,491,475,286,368,4,5,7,17,0,1,6,7,494,482,290,371,8,6,7,19,1,2,768,861,467,465,284,367,4,5,7,17,0,0,6,7,470,472,288,370,8,6,7,19,1,1,26,12,24,10,2,1,0,0,0,0,0,1,0,0,24,10,2,1,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,8,10,1684,770,914,498,483,243,396,7,10,14,13,1,0,7,12,504,492,245,401,12,19,16,13,1,1,752,897,485,472,240,392,7,10,14,11,0,0,6,12,490,481,241,397,11,19,16,11,0,1,18,17,13,11,3,4,0,0,0,2,1,0,1,0,14,11,4,4,1,0,0,2,1,0 -050,01,109,Alabama,Pike County,8,11,1809,848,961,511,539,308,384,12,16,7,6,0,0,10,16,520,550,312,391,18,27,8,9,0,2,840,952,506,534,306,381,11,16,7,6,0,0,10,15,515,544,310,387,17,26,8,9,0,2,8,9,5,5,2,3,1,0,0,0,0,0,0,1,5,6,2,4,1,1,0,0,0,0 -050,01,109,Alabama,Pike County,8,12,1960,938,1022,567,601,347,402,11,4,9,11,0,0,4,4,571,605,348,402,14,7,9,12,0,0,927,1016,557,596,346,402,11,4,9,10,0,0,4,4,561,600,347,402,14,7,9,11,0,0,11,6,10,5,1,0,0,0,0,1,0,0,0,0,10,5,1,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,8,13,1687,794,893,521,560,252,310,11,10,2,2,1,0,7,11,528,570,252,312,17,18,3,4,1,0,788,886,518,555,250,309,11,10,2,2,1,0,6,10,524,564,250,311,17,18,2,3,1,0,6,7,3,5,2,1,0,0,0,0,0,0,1,1,4,6,2,1,0,0,1,1,0,0 -050,01,109,Alabama,Pike County,8,14,1612,768,844,540,572,206,255,2,5,17,6,0,0,3,6,543,577,207,256,3,8,18,8,0,1,766,840,540,571,204,254,2,4,17,6,0,0,3,5,543,576,205,254,3,7,18,8,0,0,2,4,0,1,2,1,0,1,0,0,0,0,0,1,0,1,2,2,0,1,0,0,0,1 -050,01,109,Alabama,Pike County,8,15,1215,568,647,429,477,125,156,2,3,4,2,1,1,7,8,435,484,127,158,7,10,5,2,1,1,565,641,428,475,124,153,2,3,4,1,1,1,6,8,434,482,125,155,7,10,4,1,1,1,3,6,1,2,1,3,0,0,0,1,0,0,1,0,1,2,2,3,0,0,1,1,0,0 -050,01,109,Alabama,Pike County,8,16,879,383,496,277,342,100,145,2,1,0,4,0,0,4,4,281,346,101,145,5,4,0,5,0,0,381,493,275,341,100,143,2,1,0,4,0,0,4,4,279,345,101,143,5,4,0,5,0,0,2,3,2,1,0,2,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,8,17,547,210,337,155,236,51,93,1,5,0,1,0,0,3,2,156,237,54,94,1,7,2,1,0,0,207,334,155,234,51,92,1,5,0,1,0,0,0,2,155,235,51,93,1,7,0,1,0,0,3,3,0,2,0,1,0,0,0,0,0,0,3,0,1,2,3,1,0,0,2,0,0,0 -050,01,109,Alabama,Pike County,8,18,515,168,347,132,260,28,84,1,2,0,0,0,1,7,0,138,260,29,84,7,2,2,0,1,1,168,341,132,257,28,82,1,2,0,0,0,0,7,0,138,257,29,82,7,2,2,0,1,0,0,6,0,3,0,2,0,0,0,0,0,1,0,0,0,3,0,2,0,0,0,0,0,1 -050,01,109,Alabama,Pike County,9,0,33540,16138,17402,9504,9824,5785,6852,115,114,410,325,15,12,309,275,9771,10062,5936,7001,246,214,480,382,26,29,15759,17065,9237,9608,5736,6784,102,103,398,316,2,3,284,251,9482,9823,5878,6921,219,191,462,369,11,18,379,337,267,216,49,68,13,11,12,9,13,9,25,24,289,239,58,80,27,23,18,13,15,11 -050,01,109,Alabama,Pike County,9,1,1847,960,887,472,430,425,396,1,2,23,18,0,0,39,41,505,468,453,427,11,5,29,28,2,1,926,861,444,412,423,392,1,2,23,17,0,0,35,38,474,447,449,421,9,5,29,26,1,1,34,26,28,18,2,4,0,0,0,1,0,0,4,3,31,21,4,6,2,0,0,2,1,0 -050,01,109,Alabama,Pike County,9,2,1758,898,860,447,430,383,387,6,3,14,11,2,0,46,29,489,457,415,405,19,9,23,17,3,1,865,831,425,408,379,381,3,2,14,11,0,0,44,29,465,435,409,399,15,8,22,17,1,1,33,29,22,22,4,6,3,1,0,0,2,0,2,0,24,22,6,6,4,1,1,0,2,0 -050,01,109,Alabama,Pike County,9,3,1690,883,807,444,410,383,368,7,6,18,6,1,0,30,17,472,424,400,380,15,10,24,8,2,2,847,771,423,384,374,359,6,5,16,6,0,0,28,17,449,398,390,371,13,9,22,8,1,2,36,36,21,26,9,9,1,1,2,0,1,0,2,0,23,26,10,9,2,1,2,0,1,0 -050,01,109,Alabama,Pike County,9,4,3107,1347,1760,684,973,603,678,9,13,18,35,0,4,33,57,715,1020,620,718,20,27,26,47,0,8,1319,1720,666,947,596,669,9,12,18,35,0,1,30,56,694,993,613,708,17,26,26,47,0,5,28,40,18,26,7,9,0,1,0,0,0,3,3,1,21,27,7,10,3,1,0,0,0,3 -050,01,109,Alabama,Pike County,9,5,5895,2966,2929,1722,1586,1025,1191,19,4,169,118,1,0,30,30,1747,1615,1039,1207,30,14,179,126,3,1,2909,2884,1676,1555,1021,1187,18,4,166,116,0,0,28,22,1699,1576,1035,1198,28,9,175,123,2,0,57,45,46,31,4,4,1,0,3,2,1,0,2,8,48,39,4,9,2,5,4,3,1,1 -050,01,109,Alabama,Pike County,9,6,2269,1232,1037,676,527,466,468,14,12,47,23,2,1,27,6,699,533,478,470,27,15,55,24,2,1,1198,1019,655,519,464,462,12,12,42,21,0,1,25,4,676,523,475,464,24,13,50,22,0,1,34,18,21,8,2,6,2,0,5,2,2,0,2,2,23,10,3,6,3,2,5,2,2,0 -050,01,109,Alabama,Pike County,9,7,1685,807,878,452,481,301,347,7,7,16,26,4,4,27,13,472,493,310,350,21,14,26,28,5,6,768,850,426,468,296,341,5,4,14,26,1,0,26,11,445,478,304,343,19,10,24,28,2,2,39,28,26,13,5,6,2,3,2,0,3,4,1,2,27,15,6,7,2,4,2,0,3,4 -050,01,109,Alabama,Pike County,9,8,1681,786,895,482,475,252,388,5,4,32,12,3,0,12,16,491,485,257,394,10,13,37,18,3,2,754,868,460,458,250,384,2,2,32,12,0,0,10,12,468,465,254,388,6,9,36,17,0,1,32,27,22,17,2,4,3,2,0,0,3,0,2,4,23,20,3,6,4,4,1,1,3,1 -050,01,109,Alabama,Pike County,9,9,1661,789,872,486,485,277,354,3,5,11,18,0,2,12,8,497,493,280,357,12,8,11,19,1,3,762,852,462,473,275,351,3,3,11,18,0,0,11,7,472,480,278,354,11,6,11,18,1,1,27,20,24,12,2,3,0,2,0,0,0,2,1,1,25,13,2,3,1,2,0,1,0,2 -050,01,109,Alabama,Pike County,9,10,1678,777,901,492,468,250,403,7,8,20,15,1,0,7,7,499,475,252,405,12,12,20,17,1,1,756,882,477,455,246,399,7,8,20,13,0,0,6,7,483,462,248,401,11,12,20,15,0,1,21,19,15,13,4,4,0,0,0,2,1,0,1,0,16,13,4,4,1,0,0,2,1,0 -050,01,109,Alabama,Pike County,9,11,1770,809,961,498,536,283,376,10,15,9,17,0,0,9,17,507,550,283,381,17,24,10,22,1,1,799,950,490,529,281,373,10,15,9,17,0,0,9,16,499,542,281,377,17,24,10,22,1,1,10,11,8,7,2,3,0,0,0,0,0,0,0,1,8,8,2,4,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,9,12,1880,913,967,552,549,338,394,10,9,8,9,0,0,5,6,557,554,339,396,12,14,9,9,1,0,902,962,543,544,337,394,9,9,8,9,0,0,5,6,548,549,338,396,11,14,9,9,1,0,11,5,9,5,1,0,1,0,0,0,0,0,0,0,9,5,1,0,1,0,0,0,0,0 -050,01,109,Alabama,Pike County,9,13,1735,815,920,527,556,268,345,8,9,3,5,1,0,8,5,534,560,272,346,12,14,4,5,1,0,807,912,522,551,266,344,8,9,3,4,1,0,7,4,528,554,270,345,12,13,3,4,1,0,8,8,5,5,2,1,0,0,0,1,0,0,1,1,6,6,2,1,0,1,1,1,0,0 -050,01,109,Alabama,Pike County,9,14,1625,776,849,542,574,216,255,3,6,12,6,0,0,3,8,545,581,216,258,5,11,13,6,0,1,774,843,542,570,214,255,3,5,12,6,0,0,3,7,545,576,214,258,5,9,13,6,0,1,2,6,0,4,2,0,0,1,0,0,0,0,0,1,0,5,2,0,0,2,0,0,0,0 -050,01,109,Alabama,Pike County,9,15,1249,581,668,429,477,136,181,1,2,9,1,0,1,6,6,433,481,138,183,7,6,9,3,0,1,578,664,428,477,135,178,1,2,9,0,0,1,5,6,431,481,137,180,6,6,9,2,0,1,3,4,1,0,1,3,0,0,0,1,0,0,1,0,2,0,1,3,1,0,0,1,0,0 -050,01,109,Alabama,Pike County,9,16,896,397,499,302,353,86,133,3,2,1,4,0,0,5,7,306,358,87,135,7,9,2,4,0,0,396,493,301,350,86,130,3,2,1,4,0,0,5,7,305,355,87,132,7,9,2,4,0,0,1,6,1,3,0,3,0,0,0,0,0,0,0,0,1,3,0,3,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,9,17,564,237,327,170,235,64,84,1,5,0,1,0,0,2,2,172,236,64,85,1,7,1,1,1,0,235,325,170,234,64,83,1,5,0,1,0,0,0,2,170,235,64,84,1,7,0,1,0,0,2,2,0,1,0,1,0,0,0,0,0,0,2,0,2,1,0,1,0,0,1,0,1,0 -050,01,109,Alabama,Pike County,9,18,550,165,385,127,279,29,104,1,2,0,0,0,0,8,0,131,279,33,104,8,2,2,0,0,0,164,378,127,274,29,102,1,2,0,0,0,0,7,0,131,274,32,102,7,2,1,0,0,0,1,7,0,5,0,2,0,0,0,0,0,0,1,0,0,5,1,2,1,0,1,0,0,0 -050,01,109,Alabama,Pike County,10,0,33441,16140,17301,9480,9748,5791,6790,119,115,423,342,13,11,314,295,9744,10002,5949,6951,244,228,500,401,27,31,15765,16955,9218,9529,5740,6719,106,107,411,334,1,3,289,263,9460,9755,5889,6865,217,202,483,387,12,17,375,346,262,219,51,71,13,8,12,8,12,8,25,32,284,247,60,86,27,26,17,14,15,14 -050,01,109,Alabama,Pike County,10,1,1830,961,869,494,432,410,376,3,3,25,24,0,0,29,34,520,462,430,399,10,10,30,31,0,2,925,837,463,412,408,370,3,3,25,23,0,0,26,29,486,438,427,393,8,7,30,28,0,1,36,32,31,20,2,6,0,0,0,1,0,0,3,5,34,24,3,6,2,3,0,3,0,1 -050,01,109,Alabama,Pike County,10,2,1780,936,844,463,427,395,369,5,3,16,9,2,0,55,36,511,460,431,393,13,8,31,17,6,2,897,814,434,404,391,364,4,2,16,9,0,0,52,35,479,436,426,387,10,7,30,17,4,2,39,30,29,23,4,5,1,1,0,0,2,0,3,1,32,24,5,6,3,1,1,0,2,0 -050,01,109,Alabama,Pike County,10,3,1702,892,810,457,401,380,377,7,6,16,5,1,0,31,21,481,418,400,392,15,10,25,11,2,0,860,786,437,385,375,370,4,5,15,5,0,0,29,21,460,402,394,385,11,9,23,11,1,0,32,24,20,16,5,7,3,1,1,0,1,0,2,0,21,16,6,7,4,1,2,0,1,0 -050,01,109,Alabama,Pike County,10,4,3035,1324,1711,647,948,609,652,10,13,17,36,0,2,41,60,686,1001,632,691,21,31,27,47,2,3,1294,1667,633,918,599,642,10,12,16,36,0,1,36,58,668,969,620,680,20,29,25,47,0,2,30,44,14,30,10,10,0,1,1,0,0,1,5,2,18,32,12,11,1,2,2,0,2,1 -050,01,109,Alabama,Pike County,10,5,5742,2873,2869,1693,1553,972,1146,16,7,156,132,0,2,36,29,1721,1578,989,1163,31,14,168,139,2,5,2821,2823,1652,1519,966,1139,15,7,154,130,0,0,34,28,1678,1544,983,1155,28,14,166,137,2,2,52,46,41,34,6,7,1,0,2,2,0,2,2,1,43,34,6,8,3,0,2,2,0,3 -050,01,109,Alabama,Pike County,10,6,2429,1361,1068,718,544,542,479,16,11,68,16,1,1,16,17,732,559,550,491,24,17,72,22,2,3,1328,1044,696,535,542,475,14,11,62,16,0,1,14,6,708,540,549,479,21,11,65,19,1,1,33,24,22,9,0,4,2,0,6,0,1,0,2,11,24,19,1,12,3,6,7,3,1,2 -050,01,109,Alabama,Pike County,10,7,1616,791,825,455,447,289,332,7,7,12,28,3,3,25,8,474,454,297,333,20,14,22,30,3,3,752,805,431,439,281,326,5,6,10,27,0,0,25,7,450,445,289,327,18,12,20,29,0,0,39,20,24,8,8,6,2,1,2,1,3,3,0,1,24,9,8,6,2,2,2,1,3,3 -050,01,109,Alabama,Pike County,10,8,1684,768,916,454,490,254,396,5,4,36,10,4,0,15,16,468,499,258,404,14,13,39,14,4,3,745,888,442,473,252,390,2,3,36,10,0,0,13,12,454,479,255,396,10,10,39,14,0,2,23,28,12,17,2,6,3,1,0,0,4,0,2,4,14,20,3,8,4,3,0,0,4,1 -050,01,109,Alabama,Pike County,10,9,1563,740,823,456,445,254,345,4,5,12,13,0,2,14,13,467,456,259,351,13,13,15,13,0,3,712,796,432,429,252,342,4,3,12,13,0,0,12,9,441,436,256,348,12,7,15,13,0,1,28,27,24,16,2,3,0,2,0,0,0,2,2,4,26,20,3,3,1,6,0,0,0,2 -050,01,109,Alabama,Pike County,10,10,1736,806,930,515,486,262,412,9,5,14,19,1,0,5,8,519,493,264,415,12,11,14,20,2,0,784,912,499,473,258,409,9,5,14,17,0,0,4,8,502,480,260,412,11,11,14,18,1,0,22,18,16,13,4,3,0,0,0,2,1,0,1,0,17,13,4,3,1,0,0,2,1,0 -050,01,109,Alabama,Pike County,10,11,1691,770,921,478,516,262,355,5,13,16,23,0,0,9,14,487,528,262,357,11,22,17,25,2,3,756,908,466,507,260,352,5,13,16,23,0,0,9,13,475,518,260,353,11,22,17,25,2,3,14,13,12,9,2,3,0,0,0,0,0,0,0,1,12,10,2,4,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,10,12,1889,895,994,537,568,330,401,14,11,8,5,0,0,6,9,541,577,333,402,17,18,10,6,0,0,884,988,528,563,329,400,13,11,8,5,0,0,6,9,532,572,332,401,16,18,10,6,0,0,11,6,9,5,1,1,1,0,0,0,0,0,0,0,9,5,1,1,1,0,0,0,0,0 -050,01,109,Alabama,Pike County,10,13,1793,848,945,532,567,293,353,9,7,5,10,1,0,8,8,537,574,298,355,14,12,6,12,1,1,840,939,527,563,291,353,9,7,5,9,1,0,7,7,532,569,295,355,13,12,6,10,1,0,8,6,5,4,2,0,0,0,0,1,0,0,1,1,5,5,3,0,1,0,0,2,0,1 -050,01,109,Alabama,Pike County,10,14,1553,724,829,506,539,207,269,3,9,4,5,0,0,4,7,510,545,209,272,5,13,4,6,0,0,721,822,505,534,205,268,3,8,4,5,0,0,4,7,509,540,207,271,5,12,4,6,0,0,3,7,1,5,2,1,0,1,0,0,0,0,0,0,1,5,2,1,0,1,0,0,0,0 -050,01,109,Alabama,Pike County,10,15,1325,615,710,451,506,142,195,1,1,17,2,0,1,4,5,455,510,142,198,5,5,17,2,0,1,613,704,450,505,142,192,1,1,17,1,0,1,3,4,453,508,142,194,4,4,17,1,0,1,2,6,1,1,0,3,0,0,0,1,0,0,1,1,2,2,0,4,1,1,0,1,0,0 -050,01,109,Alabama,Pike County,10,16,912,410,502,312,351,89,136,2,3,1,4,0,0,6,8,317,358,90,137,8,9,1,5,0,2,408,496,311,348,88,133,2,3,1,4,0,0,6,8,316,355,89,134,8,9,1,5,0,2,2,6,1,3,1,3,0,0,0,0,0,0,0,0,1,3,1,3,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,10,17,597,255,342,185,246,66,88,2,5,0,1,0,0,2,2,186,248,68,89,3,6,0,1,0,0,255,340,185,245,66,87,2,5,0,1,0,0,2,2,186,247,68,88,3,6,0,1,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,10,18,564,171,393,127,282,35,109,1,2,0,0,0,0,8,0,132,282,37,109,8,2,2,0,1,0,170,386,127,277,35,107,1,2,0,0,0,0,7,0,131,277,37,107,8,2,1,0,0,0,1,7,0,5,0,2,0,0,0,0,0,0,1,0,1,5,0,2,0,0,1,0,1,0 -050,01,109,Alabama,Pike County,11,0,33390,16102,17288,9458,9727,5770,6853,118,111,426,303,14,14,316,280,9724,9974,5932,6998,240,227,513,356,29,32,15699,16912,9168,9479,5716,6780,107,103,414,295,2,3,292,252,9412,9702,5871,6911,215,203,496,342,15,19,403,376,290,248,54,73,11,8,12,8,12,11,24,28,312,272,61,87,25,24,17,14,14,13 -050,01,109,Alabama,Pike County,11,1,1825,957,868,491,435,413,389,3,2,19,23,0,2,31,17,519,450,435,402,9,6,26,26,0,2,921,835,462,414,409,382,3,2,19,22,0,0,28,15,487,427,430,394,7,5,26,25,0,0,36,33,29,21,4,7,0,0,0,1,0,2,3,2,32,23,5,8,2,1,0,1,0,2 -050,01,109,Alabama,Pike County,11,2,1787,913,874,467,444,375,372,3,1,19,11,1,0,48,46,510,488,406,401,12,9,31,19,3,4,874,840,434,414,373,369,3,1,19,11,0,0,45,45,474,457,404,397,10,9,30,19,2,4,39,34,33,30,2,3,0,0,0,0,1,0,3,1,36,31,2,4,2,0,1,0,1,0 -050,01,109,Alabama,Pike County,11,3,1725,907,818,452,388,396,400,7,4,15,4,2,0,35,22,480,407,418,413,18,14,25,6,3,1,875,787,434,368,391,391,3,2,14,4,0,0,33,22,461,387,412,404,12,12,24,6,1,1,32,31,18,20,5,9,4,2,1,0,2,0,2,0,19,20,6,9,6,2,1,0,2,0 -050,01,109,Alabama,Pike County,11,4,2935,1283,1652,622,921,591,632,10,8,19,32,0,1,41,58,659,973,615,671,21,23,31,44,1,3,1246,1613,600,894,581,623,10,7,18,32,0,1,37,56,634,944,603,661,19,21,29,44,1,3,37,39,22,27,10,9,0,1,1,0,0,0,4,2,25,29,12,10,2,2,2,0,0,0 -050,01,109,Alabama,Pike County,11,5,5649,2826,2823,1691,1549,960,1131,17,10,122,102,0,3,36,28,1720,1574,979,1148,27,18,133,109,4,5,2768,2763,1646,1506,951,1120,16,10,121,100,0,0,34,27,1673,1530,969,1136,25,18,132,107,4,2,58,60,45,43,9,11,1,0,1,2,0,3,2,1,47,44,10,12,2,0,1,2,0,3 -050,01,109,Alabama,Pike County,11,6,2440,1388,1052,724,529,529,488,16,9,99,13,2,1,18,12,737,540,538,494,24,15,105,16,2,2,1352,1030,699,520,529,484,14,9,93,13,1,0,16,4,710,524,538,486,21,11,98,13,1,0,36,22,25,9,0,4,2,0,6,0,1,1,2,8,27,16,0,8,3,4,7,3,1,2 -050,01,109,Alabama,Pike County,11,7,1579,764,815,440,442,273,342,8,7,14,14,2,3,27,7,464,448,282,346,19,11,28,14,4,4,732,796,420,430,269,340,6,7,11,13,0,1,26,5,443,434,278,343,17,9,25,13,1,2,32,19,20,12,4,2,2,0,3,1,2,2,1,2,21,14,4,3,2,2,3,1,3,2 -050,01,109,Alabama,Pike County,11,8,1761,841,920,477,500,308,379,4,6,34,20,5,1,13,14,487,510,311,384,13,15,37,22,6,4,800,890,449,483,303,373,3,4,34,20,0,0,11,10,457,491,305,376,11,10,37,21,1,2,41,30,28,17,5,6,1,2,0,0,5,1,2,4,30,19,6,8,2,5,0,1,5,2 -050,01,109,Alabama,Pike County,11,9,1560,706,854,437,457,239,366,1,5,15,12,0,1,14,13,448,468,245,371,8,12,19,16,1,1,679,824,415,439,236,362,1,3,15,12,0,0,12,8,424,445,242,366,7,7,18,15,1,0,27,30,22,18,3,4,0,2,0,0,0,1,2,5,24,23,3,5,1,5,1,1,0,1 -050,01,109,Alabama,Pike County,11,10,1720,813,907,513,480,273,397,11,4,9,17,1,1,6,8,519,487,275,399,15,9,11,19,1,2,792,886,497,463,270,395,11,4,9,16,0,0,5,8,502,470,271,397,14,9,11,18,0,1,21,21,16,17,3,2,0,0,0,1,1,1,1,0,17,17,4,2,1,0,0,1,1,1 -050,01,109,Alabama,Pike County,11,11,1673,766,907,494,488,241,362,4,13,21,29,0,0,6,15,500,501,241,365,9,21,22,33,0,2,750,894,481,481,238,358,4,13,21,28,0,0,6,14,487,493,238,361,9,20,22,32,0,2,16,13,13,7,3,4,0,0,0,1,0,0,0,1,13,8,3,4,0,1,0,1,0,0 -050,01,109,Alabama,Pike County,11,12,1889,869,1020,516,589,317,406,16,13,11,4,0,0,9,8,521,596,321,407,23,19,13,6,0,0,860,1010,508,581,317,404,15,13,11,4,0,0,9,8,513,588,321,405,22,19,13,6,0,0,9,10,8,8,0,2,1,0,0,0,0,0,0,0,8,8,0,2,1,0,0,0,0,0 -050,01,109,Alabama,Pike County,11,13,1845,862,983,534,565,308,394,7,6,6,9,1,0,6,9,538,573,312,396,11,14,6,10,1,0,853,978,527,561,306,394,7,6,6,8,1,0,6,9,531,569,310,396,11,14,6,9,1,0,9,5,7,4,2,0,0,0,0,1,0,0,0,0,7,4,2,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,11,14,1499,703,796,482,512,207,263,4,10,4,4,0,0,6,7,487,518,209,265,8,16,5,4,0,1,699,789,480,507,205,262,4,10,4,4,0,0,6,6,485,512,207,263,8,15,5,4,0,1,4,7,2,5,2,1,0,0,0,0,0,0,0,1,2,6,2,2,0,1,0,0,0,0 -050,01,109,Alabama,Pike County,11,15,1371,638,733,469,516,147,205,2,2,18,4,0,1,2,5,471,519,147,208,4,4,18,6,0,1,636,726,468,515,146,202,2,1,18,3,0,1,2,4,470,518,146,204,4,3,18,4,0,1,2,7,1,1,1,3,0,1,0,1,0,0,0,1,1,1,1,4,0,1,0,2,0,0 -050,01,109,Alabama,Pike County,11,16,906,405,501,312,364,82,121,2,3,1,4,0,0,8,9,319,372,83,122,9,11,1,5,1,0,403,495,312,361,81,118,2,3,1,4,0,0,7,9,318,369,82,119,8,11,1,5,1,0,2,6,0,3,1,3,0,0,0,0,0,0,1,0,1,3,1,3,1,0,0,0,0,0 -050,01,109,Alabama,Pike County,11,17,645,283,362,210,251,70,102,1,6,0,1,0,0,2,2,212,253,71,102,2,8,0,1,0,0,282,360,209,250,70,101,1,6,0,1,0,0,2,2,211,252,71,101,2,8,0,1,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,11,18,581,178,403,127,297,41,104,2,2,0,0,0,0,8,0,133,297,44,104,8,2,2,0,2,0,177,396,127,292,41,102,2,2,0,0,0,0,7,0,132,292,44,102,8,2,1,0,1,0,1,7,0,5,0,2,0,0,0,0,0,0,1,0,1,5,0,2,0,0,1,0,1,0 -050,01,109,Alabama,Pike County,12,0,33034,15884,17150,9373,9614,5723,6799,108,117,354,299,13,14,313,307,9642,9883,5883,6960,229,229,426,368,29,33,15469,16769,9075,9365,5665,6727,97,106,342,291,1,3,289,277,9326,9608,5810,6874,207,203,411,354,15,20,415,381,298,249,58,72,11,11,12,8,12,11,24,30,316,275,73,86,22,26,15,14,14,13 -050,01,109,Alabama,Pike County,12,1,1772,921,851,445,402,426,390,3,3,18,18,0,2,29,36,472,437,447,414,7,8,26,27,1,2,887,819,420,382,420,384,3,3,18,17,0,0,26,33,444,414,440,407,6,6,25,25,1,0,34,32,25,20,6,6,0,0,0,1,0,2,3,3,28,23,7,7,1,2,1,2,0,2 -050,01,109,Alabama,Pike County,12,2,1743,907,836,463,420,379,359,3,2,17,9,0,0,45,46,500,464,413,388,12,12,27,17,1,2,867,801,429,391,377,356,3,2,17,9,0,0,41,43,464,432,407,383,10,11,27,17,1,2,40,35,34,29,2,3,0,0,0,0,0,0,4,3,36,32,6,5,2,1,0,0,0,0 -050,01,109,Alabama,Pike County,12,3,1749,907,842,464,409,385,399,6,7,14,7,3,0,35,20,496,425,406,415,16,11,21,12,5,2,878,814,449,392,381,392,2,3,13,7,0,0,33,20,479,408,402,408,11,7,19,12,2,2,29,28,15,17,4,7,4,4,1,0,3,0,2,0,17,17,4,7,5,4,2,0,3,0 -050,01,109,Alabama,Pike County,12,4,2785,1254,1531,614,848,574,578,9,6,16,31,0,1,41,67,648,908,601,620,19,25,26,44,3,5,1214,1494,591,823,561,568,9,5,15,31,0,1,38,66,623,882,586,610,17,23,25,44,3,5,40,37,23,25,13,10,0,1,1,0,0,0,3,1,25,26,15,10,2,2,1,0,0,0 -050,01,109,Alabama,Pike County,12,5,5484,2693,2791,1628,1521,897,1124,16,12,114,104,0,3,38,27,1658,1544,917,1137,28,19,126,114,2,5,2634,2729,1581,1474,890,1115,15,11,113,103,0,0,35,26,1608,1496,908,1128,26,17,125,113,2,2,59,62,47,47,7,9,1,1,1,1,0,3,3,1,50,48,9,9,2,2,1,1,0,3 -050,01,109,Alabama,Pike County,12,6,2360,1318,1042,721,520,520,490,9,7,47,10,0,1,21,14,739,530,530,498,18,11,52,15,1,3,1284,1017,695,510,518,485,9,7,43,9,0,0,19,6,711,514,526,488,18,7,48,12,1,2,34,25,26,10,2,5,0,0,4,1,0,1,2,8,28,16,4,10,0,4,4,3,0,1 -050,01,109,Alabama,Pike County,12,7,1620,803,817,442,440,301,345,9,8,22,15,3,2,26,7,465,446,305,347,23,12,31,16,6,3,773,797,426,428,298,341,6,8,17,14,0,1,26,5,449,432,302,342,20,11,26,15,3,2,30,20,16,12,3,4,3,0,5,1,3,1,0,2,16,14,3,5,3,1,5,1,3,1 -050,01,109,Alabama,Pike County,12,8,1739,833,906,485,492,307,373,6,7,22,19,3,2,10,13,494,500,309,380,12,13,24,22,4,4,784,876,448,474,302,368,4,5,22,19,0,0,8,10,456,480,303,373,9,10,24,22,0,1,49,30,37,18,5,5,2,2,0,0,3,2,2,3,38,20,6,7,3,3,0,0,4,3 -050,01,109,Alabama,Pike County,12,9,1595,708,887,446,484,230,373,0,6,14,11,2,1,16,12,460,495,233,377,10,13,18,14,3,2,686,857,431,467,227,369,0,4,14,11,0,0,14,6,443,473,229,371,9,7,18,13,1,0,22,30,15,17,3,4,0,2,0,0,2,1,2,6,17,22,4,6,1,6,0,1,2,2 -050,01,109,Alabama,Pike County,12,10,1671,808,863,506,459,285,378,6,2,6,14,1,1,4,9,510,467,287,380,8,6,6,17,1,2,783,841,484,440,283,376,6,2,6,14,0,0,4,9,488,448,285,378,8,6,6,17,0,1,25,22,22,19,2,2,0,0,0,0,1,1,0,0,22,19,2,2,0,0,0,0,1,1 -050,01,109,Alabama,Pike County,12,11,1654,746,908,496,485,214,366,8,13,21,34,0,0,7,10,502,493,216,370,13,18,22,37,0,1,724,892,479,476,210,362,8,13,21,32,0,0,6,9,484,483,212,365,12,18,22,35,0,1,22,16,17,9,4,4,0,0,0,2,0,0,1,1,18,10,4,5,1,0,0,2,0,0 -050,01,109,Alabama,Pike County,12,12,1902,874,1028,504,586,335,410,14,15,12,3,0,0,9,14,512,598,339,414,19,27,13,4,0,0,866,1018,498,579,334,407,13,15,12,3,0,0,9,14,506,591,338,411,18,27,13,4,0,0,8,10,6,7,1,3,1,0,0,0,0,0,0,0,6,7,1,3,1,0,0,0,0,0 -050,01,109,Alabama,Pike County,12,13,1869,871,998,535,582,315,393,7,4,7,11,1,0,6,8,541,587,315,398,13,11,7,11,1,0,859,993,525,578,313,393,7,4,7,10,1,0,6,8,531,583,313,398,13,11,7,10,1,0,12,5,10,4,2,0,0,0,0,1,0,0,0,0,10,4,2,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,12,14,1500,694,806,477,503,202,283,5,10,4,3,0,0,6,7,483,509,203,284,10,14,4,6,0,0,690,799,475,498,200,282,5,10,4,3,0,0,6,6,481,503,201,283,10,14,4,5,0,0,4,7,2,5,2,1,0,0,0,0,0,0,0,1,2,6,2,1,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,12,15,1376,644,732,462,512,160,206,2,4,19,5,0,0,1,5,463,517,161,206,3,8,19,6,0,0,641,726,460,511,159,204,2,3,19,4,0,0,1,4,461,515,160,204,3,7,19,4,0,0,3,6,2,1,1,2,0,1,0,1,0,0,0,1,2,2,1,2,0,1,0,2,0,0 -050,01,109,Alabama,Pike County,12,16,951,433,518,335,381,88,122,1,3,1,3,0,1,8,8,342,389,91,122,6,10,1,3,1,2,431,513,335,378,87,120,1,3,1,3,0,1,7,8,342,386,89,120,6,10,1,3,0,2,2,5,0,3,1,2,0,0,0,0,0,0,1,0,0,3,2,2,0,0,0,0,1,0 -050,01,109,Alabama,Pike County,12,17,668,284,384,219,271,59,104,2,4,0,2,0,0,4,3,222,274,60,104,6,6,0,3,0,0,283,380,218,270,59,101,2,4,0,2,0,0,4,3,221,273,60,101,6,6,0,3,0,0,1,4,1,1,0,3,0,0,0,0,0,0,0,0,1,1,0,3,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,12,18,596,186,410,131,299,46,106,2,4,0,0,0,0,7,1,135,300,50,106,6,5,3,0,0,0,185,403,131,294,46,104,2,4,0,0,0,0,6,1,135,295,49,104,5,5,2,0,0,0,1,7,0,5,0,2,0,0,0,0,0,0,1,0,0,5,1,2,1,0,1,0,0,0 -050,01,109,Alabama,Pike County,13,0,32966,15777,17189,9294,9596,5718,6861,111,117,331,290,15,16,308,309,9561,9865,5875,7030,234,224,410,358,34,36,15354,16806,8992,9359,5664,6788,98,100,318,282,2,4,280,273,9233,9598,5808,6940,203,191,392,342,21,19,423,383,302,237,54,73,13,17,13,8,13,12,28,36,328,267,67,90,31,33,18,16,13,17 -050,01,109,Alabama,Pike County,13,1,1765,911,854,454,411,412,384,3,6,16,12,0,2,26,39,477,448,431,411,10,11,22,22,1,3,876,818,432,390,405,379,3,3,16,11,0,0,20,35,449,423,421,403,6,8,21,20,1,1,35,36,22,21,7,5,0,3,0,1,0,2,6,4,28,25,10,8,4,3,1,2,0,2 -050,01,109,Alabama,Pike County,13,2,1783,943,840,470,425,409,361,4,3,14,9,0,0,46,42,515,463,439,388,9,15,24,16,2,2,902,814,434,408,407,357,4,3,14,9,0,0,43,37,476,441,435,382,8,12,24,16,2,2,41,26,36,17,2,4,0,0,0,0,0,0,3,5,39,22,4,6,1,3,0,0,0,0 -050,01,109,Alabama,Pike County,13,3,1708,867,841,437,413,378,393,4,6,12,5,3,0,33,24,466,433,399,409,13,12,19,10,6,2,841,813,424,393,375,388,1,3,11,5,0,0,30,24,450,413,394,404,9,9,18,10,3,2,26,28,13,20,3,5,3,3,1,0,3,0,3,0,16,20,5,5,4,3,1,0,3,0 -050,01,109,Alabama,Pike County,13,4,2731,1227,1504,606,827,556,584,11,6,15,27,0,2,39,58,641,877,577,624,24,18,27,40,1,5,1188,1467,585,804,544,574,9,4,14,27,0,1,36,57,617,853,565,614,20,15,25,40,1,4,39,37,21,23,12,10,2,2,1,0,0,1,3,1,24,24,12,10,4,3,2,0,0,1 -050,01,109,Alabama,Pike County,13,5,5442,2637,2805,1602,1494,879,1152,17,11,98,116,0,4,41,28,1634,1519,903,1168,32,18,113,123,1,6,2570,2746,1550,1452,871,1142,15,9,97,116,0,1,37,26,1578,1475,894,1158,27,16,112,121,1,3,67,59,52,42,8,10,2,2,1,0,0,3,4,2,56,44,9,10,5,2,1,2,0,3 -050,01,109,Alabama,Pike County,13,6,2415,1345,1070,728,565,533,469,7,7,54,8,0,1,23,20,748,584,541,479,14,15,63,12,4,5,1311,1037,702,551,531,461,7,7,50,6,0,0,21,12,721,563,538,465,13,12,58,8,4,2,34,33,26,14,2,8,0,0,4,2,0,1,2,8,27,21,3,14,1,3,5,4,0,3 -050,01,109,Alabama,Pike County,13,7,1646,818,828,454,428,314,368,11,10,18,15,3,1,18,6,467,434,320,371,20,13,24,16,6,1,790,811,438,417,311,365,9,10,14,14,0,1,18,4,451,421,317,366,18,13,20,15,3,1,28,17,16,11,3,3,2,0,4,1,3,0,0,2,16,13,3,5,2,0,4,1,3,0 -050,01,109,Alabama,Pike County,13,8,1718,814,904,477,482,290,386,4,6,25,16,4,3,14,11,489,492,294,389,13,11,30,20,5,3,769,878,441,468,289,380,2,5,24,16,1,0,12,9,451,476,293,383,10,8,28,20,2,0,45,26,36,14,1,6,2,1,1,0,3,3,2,2,38,16,1,6,3,3,2,0,3,3 -050,01,109,Alabama,Pike County,13,9,1567,712,855,434,456,248,368,2,8,10,6,2,1,16,16,446,469,256,373,12,18,14,9,3,2,686,821,417,439,245,364,1,3,9,6,0,0,14,9,427,447,252,367,9,8,13,8,1,0,26,34,17,17,3,4,1,5,1,0,2,1,2,7,19,22,4,6,3,10,1,1,2,2 -050,01,109,Alabama,Pike County,13,10,1640,776,864,490,474,265,365,6,2,10,15,1,1,4,7,493,478,267,368,8,5,11,18,1,2,749,845,466,460,263,363,6,2,10,15,0,0,4,5,469,464,265,365,8,4,11,17,0,0,27,19,24,14,2,2,0,0,0,0,1,1,0,2,24,14,2,3,0,1,0,1,1,2 -050,01,109,Alabama,Pike County,13,11,1693,754,939,486,499,230,391,8,9,22,30,1,0,7,10,493,506,232,396,14,14,22,33,1,1,733,920,470,485,227,388,8,9,22,28,0,0,6,10,476,492,228,393,13,14,22,31,0,1,21,19,16,14,3,3,0,0,0,2,1,0,1,0,17,14,4,3,1,0,0,2,1,0 -050,01,109,Alabama,Pike County,13,12,1788,836,952,508,539,303,379,12,12,4,6,0,0,9,16,516,554,306,383,19,22,5,8,0,1,827,940,502,531,301,376,11,12,4,6,0,0,9,15,510,545,304,380,18,21,5,8,0,1,9,12,6,8,2,3,1,0,0,0,0,0,0,1,6,9,2,3,1,1,0,0,0,0 -050,01,109,Alabama,Pike County,13,13,1876,872,1004,533,583,318,400,8,6,9,11,0,0,4,4,537,586,318,401,12,7,9,13,0,1,860,997,522,577,317,400,8,6,9,10,0,0,4,4,526,580,317,401,12,7,9,12,0,1,12,7,11,6,1,0,0,0,0,1,0,0,0,0,11,6,1,0,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,13,14,1518,677,841,451,517,207,302,8,10,4,2,1,0,6,10,457,524,208,305,11,17,5,5,2,0,672,834,448,512,205,301,8,10,4,2,1,0,6,9,454,519,206,303,11,17,5,4,2,0,5,7,3,5,2,1,0,0,0,0,0,0,0,1,3,5,2,2,0,0,0,1,0,0 -050,01,109,Alabama,Pike County,13,15,1405,669,736,470,499,179,220,1,5,16,6,0,0,3,6,473,505,180,222,3,8,16,6,0,1,666,731,469,497,177,219,1,4,16,6,0,0,3,5,472,502,178,221,3,7,16,6,0,0,3,5,1,2,2,1,0,1,0,0,0,0,0,1,1,3,2,1,0,1,0,0,0,1 -050,01,109,Alabama,Pike County,13,16,1019,452,567,343,423,96,131,2,3,4,1,0,1,7,8,350,429,99,134,6,9,4,2,1,1,449,560,342,420,95,128,2,3,4,0,0,1,6,8,348,426,97,131,5,9,4,1,1,1,3,7,1,3,1,3,0,0,0,1,0,0,1,0,2,3,2,3,1,0,0,1,0,0 -050,01,109,Alabama,Pike County,13,17,691,295,396,223,280,64,108,2,1,0,4,0,0,6,3,228,282,65,109,8,4,0,4,0,0,294,393,222,279,64,106,2,1,0,4,0,0,6,3,227,281,65,107,8,4,0,4,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0 -050,01,109,Alabama,Pike County,13,18,561,172,389,128,281,37,100,1,6,0,1,0,0,6,1,131,282,40,100,6,7,2,1,0,0,171,381,128,276,37,97,1,6,0,1,0,0,5,1,131,277,39,97,5,7,1,1,0,0,1,8,0,5,0,3,0,0,0,0,0,0,1,0,0,5,1,3,1,0,1,0,0,0 -050,01,111,Alabama,Randolph County,1,0,22913,11104,11809,8747,9139,2152,2461,47,44,22,41,8,2,128,122,8868,9253,2214,2524,115,104,29,50,10,4,10744,11520,8425,8866,2150,2459,42,42,17,37,3,2,107,114,8526,8972,2207,2521,97,97,20,44,4,4,360,289,322,273,2,2,5,2,5,4,5,0,21,8,342,281,7,3,18,7,9,6,6,0 -050,01,111,Alabama,Randolph County,1,1,1385,703,682,511,449,170,196,2,1,1,4,1,0,18,32,529,480,182,224,7,6,2,4,1,0,656,639,466,408,169,196,2,1,1,4,0,0,18,30,484,437,181,224,7,4,2,4,0,0,47,43,45,41,1,0,0,0,0,0,1,0,0,2,45,43,1,0,0,2,0,0,1,0 -050,01,111,Alabama,Randolph County,1,2,1468,774,694,560,509,181,170,3,1,4,3,0,0,26,11,584,520,200,178,11,3,5,4,0,0,734,662,524,478,181,170,2,0,4,3,0,0,23,11,545,489,200,178,8,2,4,4,0,0,40,32,36,31,0,0,1,1,0,0,0,0,3,0,39,31,0,0,3,1,1,0,0,0 -050,01,111,Alabama,Randolph County,1,3,1604,818,786,615,610,189,160,2,2,0,0,0,0,12,14,627,624,201,168,3,6,0,2,0,0,794,736,591,562,189,159,2,2,0,0,0,0,12,13,603,575,201,167,3,5,0,2,0,0,24,50,24,48,0,1,0,0,0,0,0,0,0,1,24,49,0,1,0,1,0,0,0,0 -050,01,111,Alabama,Randolph County,1,4,1689,851,838,605,616,231,211,5,3,0,0,1,0,9,8,614,623,237,218,9,5,0,0,1,0,805,819,562,598,231,211,4,3,0,0,1,0,7,7,569,604,236,217,7,5,0,0,1,0,46,19,43,18,0,0,1,0,0,0,0,0,2,1,45,19,1,1,2,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,5,1206,575,631,431,455,137,168,2,3,1,0,0,0,4,5,435,459,140,172,4,6,1,0,0,0,538,607,395,432,136,167,2,3,1,0,0,0,4,5,399,436,139,171,4,6,1,0,0,0,37,24,36,23,1,1,0,0,0,0,0,0,0,0,36,23,1,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,6,1191,571,620,436,434,119,176,4,1,3,4,3,0,6,5,441,438,120,178,10,5,3,4,3,0,532,593,408,409,119,176,3,1,1,3,0,0,1,4,408,412,120,178,4,4,1,3,0,0,39,27,28,25,0,0,1,0,2,1,3,0,5,1,33,26,0,0,6,1,2,1,3,0 -050,01,111,Alabama,Randolph County,1,7,1229,596,633,441,464,147,155,1,3,1,8,0,1,6,2,446,466,148,155,5,5,2,8,1,1,563,607,413,441,147,155,1,3,0,6,0,1,2,1,415,442,147,155,2,4,1,6,0,1,33,26,28,23,0,0,0,0,1,2,0,0,4,1,31,24,1,0,3,1,1,2,1,0 -050,01,111,Alabama,Randolph County,1,8,1345,666,679,525,526,129,144,3,4,4,3,0,0,5,2,530,527,132,145,6,6,4,3,0,0,637,666,498,513,129,144,3,4,3,3,0,0,4,2,502,514,131,145,5,6,3,3,0,0,29,13,27,13,0,0,0,0,1,0,0,0,1,0,28,13,1,0,1,0,1,0,0,0 -050,01,111,Alabama,Randolph County,1,9,1481,720,761,586,586,124,164,3,3,3,2,1,1,3,5,589,589,124,166,6,7,3,3,1,2,704,741,571,567,124,164,3,3,3,1,0,1,3,5,574,570,124,166,6,7,3,2,0,2,16,20,15,19,0,0,0,0,0,1,1,0,0,0,15,19,0,0,0,0,0,1,1,0 -050,01,111,Alabama,Randolph County,1,10,1632,791,841,651,649,133,178,4,6,0,3,0,0,3,5,654,653,133,180,5,11,2,3,0,0,778,836,640,645,133,178,4,5,0,3,0,0,1,5,641,649,133,180,5,10,0,3,0,0,13,5,11,4,0,0,0,1,0,0,0,0,2,0,13,4,0,0,0,1,2,0,0,0 -050,01,111,Alabama,Randolph County,1,11,1684,847,837,672,671,160,148,4,6,0,4,0,0,11,8,683,679,161,148,12,12,1,6,1,0,833,829,661,664,160,148,3,6,0,4,0,0,9,7,670,671,160,148,11,12,0,5,1,0,14,8,11,7,0,0,1,0,0,0,0,0,2,1,13,8,1,0,1,0,1,1,0,0 -050,01,111,Alabama,Randolph County,1,12,1584,791,793,655,631,123,152,4,2,1,2,1,0,7,6,660,637,126,152,10,8,1,2,1,0,780,789,647,627,123,152,3,2,1,2,1,0,5,6,650,633,125,152,8,8,1,2,1,0,11,4,8,4,0,0,1,0,0,0,0,0,2,0,10,4,1,0,2,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,13,1527,734,793,620,656,95,122,6,3,2,3,1,0,10,9,630,665,95,123,16,11,2,3,1,0,729,788,616,651,95,122,6,3,1,3,1,0,10,9,626,660,95,123,16,11,1,3,1,0,5,5,4,5,0,0,0,0,1,0,0,0,0,0,4,5,0,0,0,0,1,0,0,0 -050,01,111,Alabama,Randolph County,1,14,1233,592,641,506,534,80,99,1,2,0,2,0,0,5,4,511,538,80,99,5,5,1,2,0,1,590,637,504,530,80,99,1,2,0,2,0,0,5,4,509,534,80,99,5,5,1,2,0,1,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,15,987,457,530,381,448,73,78,1,2,1,1,0,0,1,1,382,449,73,78,2,2,1,2,0,0,455,525,379,443,73,78,1,2,1,1,0,0,1,1,380,444,73,78,2,2,1,2,0,0,2,5,2,5,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,16,733,302,431,271,377,30,51,0,1,0,1,0,0,1,1,272,378,30,51,1,2,0,1,0,0,301,429,270,375,30,51,0,1,0,1,0,0,1,1,271,376,30,51,1,2,0,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,1,17,494,182,312,162,269,18,40,0,0,1,1,0,0,1,2,162,271,19,40,1,1,1,3,0,0,182,310,162,268,18,40,0,0,1,1,0,0,1,1,162,269,19,40,1,1,1,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,1,0,0 -050,01,111,Alabama,Randolph County,1,18,441,134,307,119,255,13,49,2,1,0,0,0,0,0,2,119,257,13,49,2,3,0,0,0,0,133,307,118,255,13,49,2,1,0,0,0,0,0,2,118,257,13,49,2,3,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,0,22916,11106,11810,8749,9140,2152,2461,47,44,22,41,8,2,128,122,8870,9254,2214,2524,115,104,29,50,10,4,10746,11521,8427,8867,2150,2459,42,42,17,37,3,2,107,114,8528,8973,2207,2521,97,97,20,44,4,4,360,289,322,273,2,2,5,2,5,4,5,0,21,8,342,281,7,3,18,7,9,6,6,0 -050,01,111,Alabama,Randolph County,2,1,1385,703,682,511,449,170,196,2,1,1,4,1,0,18,32,529,480,182,224,7,6,2,4,1,0,656,639,466,408,169,196,2,1,1,4,0,0,18,30,484,437,181,224,7,4,2,4,0,0,47,43,45,41,1,0,0,0,0,0,1,0,0,2,45,43,1,0,0,2,0,0,1,0 -050,01,111,Alabama,Randolph County,2,2,1468,774,694,560,509,181,170,3,1,4,3,0,0,26,11,584,520,200,178,11,3,5,4,0,0,734,662,524,478,181,170,2,0,4,3,0,0,23,11,545,489,200,178,8,2,4,4,0,0,40,32,36,31,0,0,1,1,0,0,0,0,3,0,39,31,0,0,3,1,1,0,0,0 -050,01,111,Alabama,Randolph County,2,3,1604,818,786,615,610,189,160,2,2,0,0,0,0,12,14,627,624,201,168,3,6,0,2,0,0,794,736,591,562,189,159,2,2,0,0,0,0,12,13,603,575,201,167,3,5,0,2,0,0,24,50,24,48,0,1,0,0,0,0,0,0,0,1,24,49,0,1,0,1,0,0,0,0 -050,01,111,Alabama,Randolph County,2,4,1689,851,838,605,616,231,211,5,3,0,0,1,0,9,8,614,623,237,218,9,5,0,0,1,0,805,819,562,598,231,211,4,3,0,0,1,0,7,7,569,604,236,217,7,5,0,0,1,0,46,19,43,18,0,0,1,0,0,0,0,0,2,1,45,19,1,1,2,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,5,1206,575,631,431,455,137,168,2,3,1,0,0,0,4,5,435,459,140,172,4,6,1,0,0,0,538,607,395,432,136,167,2,3,1,0,0,0,4,5,399,436,139,171,4,6,1,0,0,0,37,24,36,23,1,1,0,0,0,0,0,0,0,0,36,23,1,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,6,1191,571,620,436,434,119,176,4,1,3,4,3,0,6,5,441,438,120,178,10,5,3,4,3,0,532,593,408,409,119,176,3,1,1,3,0,0,1,4,408,412,120,178,4,4,1,3,0,0,39,27,28,25,0,0,1,0,2,1,3,0,5,1,33,26,0,0,6,1,2,1,3,0 -050,01,111,Alabama,Randolph County,2,7,1229,596,633,441,464,147,155,1,3,1,8,0,1,6,2,446,466,148,155,5,5,2,8,1,1,563,607,413,441,147,155,1,3,0,6,0,1,2,1,415,442,147,155,2,4,1,6,0,1,33,26,28,23,0,0,0,0,1,2,0,0,4,1,31,24,1,0,3,1,1,2,1,0 -050,01,111,Alabama,Randolph County,2,8,1345,666,679,525,526,129,144,3,4,4,3,0,0,5,2,530,527,132,145,6,6,4,3,0,0,637,666,498,513,129,144,3,4,3,3,0,0,4,2,502,514,131,145,5,6,3,3,0,0,29,13,27,13,0,0,0,0,1,0,0,0,1,0,28,13,1,0,1,0,1,0,0,0 -050,01,111,Alabama,Randolph County,2,9,1481,720,761,586,586,124,164,3,3,3,2,1,1,3,5,589,589,124,166,6,7,3,3,1,2,704,741,571,567,124,164,3,3,3,1,0,1,3,5,574,570,124,166,6,7,3,2,0,2,16,20,15,19,0,0,0,0,0,1,1,0,0,0,15,19,0,0,0,0,0,1,1,0 -050,01,111,Alabama,Randolph County,2,10,1632,791,841,651,649,133,178,4,6,0,3,0,0,3,5,654,653,133,180,5,11,2,3,0,0,778,836,640,645,133,178,4,5,0,3,0,0,1,5,641,649,133,180,5,10,0,3,0,0,13,5,11,4,0,0,0,1,0,0,0,0,2,0,13,4,0,0,0,1,2,0,0,0 -050,01,111,Alabama,Randolph County,2,11,1684,847,837,672,671,160,148,4,6,0,4,0,0,11,8,683,679,161,148,12,12,1,6,1,0,833,829,661,664,160,148,3,6,0,4,0,0,9,7,670,671,160,148,11,12,0,5,1,0,14,8,11,7,0,0,1,0,0,0,0,0,2,1,13,8,1,0,1,0,1,1,0,0 -050,01,111,Alabama,Randolph County,2,12,1585,791,794,655,632,123,152,4,2,1,2,1,0,7,6,660,638,126,152,10,8,1,2,1,0,780,790,647,628,123,152,3,2,1,2,1,0,5,6,650,634,125,152,8,8,1,2,1,0,11,4,8,4,0,0,1,0,0,0,0,0,2,0,10,4,1,0,2,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,13,1528,735,793,621,656,95,122,6,3,2,3,1,0,10,9,631,665,95,123,16,11,2,3,1,0,730,788,617,651,95,122,6,3,1,3,1,0,10,9,627,660,95,123,16,11,1,3,1,0,5,5,4,5,0,0,0,0,1,0,0,0,0,0,4,5,0,0,0,0,1,0,0,0 -050,01,111,Alabama,Randolph County,2,14,1234,593,641,507,534,80,99,1,2,0,2,0,0,5,4,512,538,80,99,5,5,1,2,0,1,591,637,505,530,80,99,1,2,0,2,0,0,5,4,510,534,80,99,5,5,1,2,0,1,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,15,987,457,530,381,448,73,78,1,2,1,1,0,0,1,1,382,449,73,78,2,2,1,2,0,0,455,525,379,443,73,78,1,2,1,1,0,0,1,1,380,444,73,78,2,2,1,2,0,0,2,5,2,5,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,16,733,302,431,271,377,30,51,0,1,0,1,0,0,1,1,272,378,30,51,1,2,0,1,0,0,301,429,270,375,30,51,0,1,0,1,0,0,1,1,271,376,30,51,1,2,0,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,2,17,494,182,312,162,269,18,40,0,0,1,1,0,0,1,2,162,271,19,40,1,1,1,3,0,0,182,310,162,268,18,40,0,0,1,1,0,0,1,1,162,269,19,40,1,1,1,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,1,0,0 -050,01,111,Alabama,Randolph County,2,18,441,134,307,119,255,13,49,2,1,0,0,0,0,0,2,119,257,13,49,2,3,0,0,0,0,133,307,118,255,13,49,2,1,0,0,0,0,0,2,118,257,13,49,2,3,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,0,22937,11113,11824,8762,9166,2147,2447,43,43,22,41,8,2,131,125,8882,9278,2216,2515,102,96,37,58,14,4,10755,11533,8441,8890,2145,2445,38,41,17,38,3,2,111,117,8545,8996,2206,2511,88,89,26,53,5,3,358,291,321,276,2,2,5,2,5,3,5,0,20,8,337,282,10,4,14,7,11,5,9,1 -050,01,111,Alabama,Randolph County,3,1,1352,692,660,502,437,168,188,2,1,1,4,1,0,18,30,520,464,184,213,3,6,2,6,1,1,647,620,459,399,167,188,2,1,1,4,0,0,18,28,477,425,183,213,3,4,2,6,0,0,45,40,43,38,1,0,0,0,0,0,1,0,0,2,43,39,1,0,0,2,0,0,1,1 -050,01,111,Alabama,Randolph County,3,2,1465,766,699,554,511,179,171,3,1,4,3,0,0,26,13,578,523,199,180,9,3,8,5,0,1,726,665,518,478,179,171,2,0,4,3,0,0,23,13,540,490,197,180,7,2,7,5,0,1,40,34,36,33,0,0,1,1,0,0,0,0,3,0,38,33,2,0,2,1,1,0,0,0 -050,01,111,Alabama,Randolph County,3,3,1613,824,789,622,612,188,159,2,2,0,0,0,0,12,16,633,626,197,170,4,8,2,2,0,0,800,740,598,565,188,158,2,2,0,0,0,0,12,15,609,578,197,169,4,8,2,1,0,0,24,49,24,47,0,1,0,0,0,0,0,0,0,1,24,48,0,1,0,0,0,1,0,0 -050,01,111,Alabama,Randolph County,3,4,1676,841,835,600,619,227,207,4,2,0,0,1,0,9,7,608,625,231,213,7,4,2,0,3,0,797,815,559,600,227,207,3,2,0,0,1,0,7,6,565,605,231,213,5,3,1,0,3,0,44,20,41,19,0,0,1,0,0,0,0,0,2,1,43,20,0,0,2,1,1,0,0,0 -050,01,111,Alabama,Randolph County,3,5,1221,582,639,438,462,137,168,1,3,1,0,0,0,5,6,443,467,139,172,4,3,1,3,0,0,547,616,404,440,136,167,1,3,1,0,0,0,5,6,409,445,138,171,4,3,1,3,0,0,35,23,34,22,1,1,0,0,0,0,0,0,0,0,34,22,1,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,6,1178,565,613,430,429,122,175,3,1,3,4,2,0,5,4,435,431,124,177,5,4,4,5,2,0,528,587,402,405,122,175,2,1,1,3,0,0,1,3,403,407,123,176,2,4,1,3,0,0,37,26,28,24,0,0,1,0,2,1,2,0,4,1,32,24,1,1,3,0,3,2,2,0 -050,01,111,Alabama,Randolph County,3,7,1240,601,639,444,471,148,154,1,3,1,7,1,1,6,3,448,474,151,155,5,4,1,8,2,1,566,612,415,446,148,154,1,3,0,6,0,1,2,2,416,448,150,155,2,3,0,7,0,1,35,27,29,25,0,0,0,0,1,1,1,0,4,1,32,26,1,0,3,1,1,1,2,0 -050,01,111,Alabama,Randolph County,3,8,1340,665,675,526,522,127,143,3,4,4,3,0,0,5,3,531,525,128,143,7,7,4,3,0,0,635,661,498,508,127,143,3,4,3,3,0,0,4,3,502,511,128,143,6,7,3,3,0,0,30,14,28,14,0,0,0,0,1,0,0,0,1,0,29,14,0,0,1,0,1,0,0,0 -050,01,111,Alabama,Randolph County,3,9,1475,717,758,586,586,122,162,2,2,3,2,1,1,3,5,589,591,122,163,4,4,4,4,1,1,700,738,570,567,122,162,2,2,3,1,0,1,3,5,573,572,122,163,4,4,4,3,0,1,17,20,16,19,0,0,0,0,0,1,1,0,0,0,16,19,0,0,0,0,0,1,1,0 -050,01,111,Alabama,Randolph County,3,10,1626,786,840,648,650,131,177,4,6,0,2,0,0,3,5,651,654,132,179,5,10,1,2,0,0,773,835,637,646,131,177,4,5,0,2,0,0,1,5,638,650,131,179,5,9,0,2,0,0,13,5,11,4,0,0,0,1,0,0,0,0,2,0,13,4,1,0,0,1,1,0,0,0 -050,01,111,Alabama,Randolph County,3,11,1693,851,842,676,672,159,151,4,7,0,4,0,0,12,8,687,680,163,151,12,12,2,7,2,0,837,833,665,664,159,151,3,7,0,4,0,0,10,7,675,671,161,151,11,11,0,7,0,0,14,9,11,8,0,0,1,0,0,0,0,0,2,1,12,9,2,0,1,1,2,0,2,0 -050,01,111,Alabama,Randolph County,3,12,1595,793,802,653,643,126,150,4,2,1,2,1,0,8,5,659,648,128,150,11,7,1,2,2,0,780,798,643,639,126,150,3,2,1,2,1,0,6,5,648,644,127,150,9,7,1,2,1,0,13,4,10,4,0,0,1,0,0,0,0,0,2,0,11,4,1,0,2,0,0,0,1,0 -050,01,111,Alabama,Randolph County,3,13,1556,752,804,634,661,99,127,5,3,2,4,1,0,11,9,644,669,101,129,14,12,3,4,1,0,747,799,630,656,99,127,5,3,1,4,1,0,11,9,640,664,101,129,14,12,2,4,1,0,5,5,4,5,0,0,0,0,1,0,0,0,0,0,4,5,0,0,0,0,1,0,0,0 -050,01,111,Alabama,Randolph County,3,14,1231,590,641,507,535,76,97,2,2,0,3,0,0,5,4,512,538,78,99,6,4,0,4,0,0,588,635,505,529,76,97,2,2,0,3,0,0,5,4,510,532,78,99,6,4,0,4,0,0,2,6,2,6,0,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,15,1000,464,536,387,451,74,80,1,2,1,1,0,0,1,2,388,453,74,82,2,2,1,1,0,0,462,531,385,446,74,80,1,2,1,1,0,0,1,2,386,448,74,82,2,2,1,1,0,0,2,5,2,5,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,16,735,302,433,268,379,33,51,0,1,0,1,0,0,1,1,269,380,33,51,1,2,0,1,0,0,301,431,267,377,33,51,0,1,0,1,0,0,1,1,268,378,33,51,1,2,0,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,17,499,187,312,166,269,19,40,0,0,1,1,0,0,1,2,166,271,20,41,1,1,1,1,0,0,187,310,166,268,19,40,0,0,1,1,0,0,1,1,166,269,20,40,1,1,1,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,3,18,442,135,307,121,257,12,47,2,1,0,0,0,0,0,2,121,259,12,47,2,3,0,0,0,0,134,307,120,257,12,47,2,1,0,0,0,0,0,2,120,259,12,47,2,3,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,0,22751,11040,11711,8705,9081,2120,2414,44,44,31,48,7,2,133,122,8825,9187,2190,2487,105,96,45,60,10,7,10699,11415,8400,8802,2118,2412,39,42,26,45,3,2,113,112,8504,8901,2179,2480,89,87,35,55,6,7,341,296,305,279,2,2,5,2,5,3,4,0,20,10,321,286,11,7,16,9,10,5,4,0 -050,01,111,Alabama,Randolph County,4,1,1281,667,614,487,414,157,174,1,0,2,3,1,0,19,23,504,436,174,194,5,3,2,3,1,1,619,574,441,375,156,174,1,0,2,3,0,0,19,22,458,397,173,193,5,2,2,3,0,1,48,40,46,39,1,0,0,0,0,0,1,0,0,1,46,39,1,1,0,1,0,0,1,0 -050,01,111,Alabama,Randolph County,4,2,1418,723,695,529,504,161,170,4,2,5,4,0,0,24,15,552,518,178,180,9,5,8,6,0,1,686,655,496,467,161,170,3,1,5,4,0,0,21,13,516,480,178,179,6,3,7,5,0,1,37,40,33,37,0,0,1,1,0,0,0,0,3,2,36,38,0,1,3,2,1,1,0,0 -050,01,111,Alabama,Randolph County,4,3,1636,853,783,633,600,201,161,3,1,2,3,0,0,14,18,647,616,208,176,8,4,4,6,0,1,836,740,616,559,201,160,3,1,2,3,0,0,14,17,630,574,208,174,8,4,4,6,0,1,17,43,17,41,0,1,0,0,0,0,0,0,0,1,17,42,0,2,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,4,1655,836,819,596,612,225,197,4,3,1,0,1,0,9,7,605,618,231,202,5,5,3,1,1,0,799,800,562,594,225,197,3,3,1,0,1,0,7,6,569,599,230,202,3,4,3,1,1,0,37,19,34,18,0,0,1,0,0,0,0,0,2,1,36,19,1,0,2,1,0,0,0,0 -050,01,111,Alabama,Randolph County,4,5,1286,622,664,474,485,142,171,1,3,0,0,0,0,5,5,478,489,145,173,3,6,0,1,1,0,583,642,436,464,141,170,1,3,0,0,0,0,5,5,440,468,144,172,3,6,0,1,1,0,39,22,38,21,1,1,0,0,0,0,0,0,0,0,38,21,1,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,6,1065,505,560,377,393,119,159,2,1,1,3,0,0,6,4,381,397,122,162,4,2,4,3,0,0,480,536,357,371,119,159,1,1,1,3,0,0,2,2,358,373,120,161,2,1,2,3,0,0,25,24,20,22,0,0,1,0,0,0,0,0,4,2,23,24,2,1,2,1,2,0,0,0 -050,01,111,Alabama,Randolph County,4,7,1262,595,667,447,495,135,155,2,3,4,9,2,1,5,4,451,499,139,157,3,5,5,10,2,1,560,640,419,471,135,155,2,3,2,7,0,1,2,3,421,474,137,157,2,4,2,7,0,1,35,27,28,24,0,0,0,0,2,2,2,0,3,1,30,25,2,0,1,1,3,3,2,0 -050,01,111,Alabama,Randolph County,4,8,1307,661,646,524,495,124,142,3,3,6,3,0,0,4,3,528,497,125,144,6,4,6,4,0,0,631,628,498,477,124,142,3,3,4,3,0,0,2,3,500,479,125,144,4,4,4,4,0,0,30,18,26,18,0,0,0,0,2,0,0,0,2,0,28,18,0,0,2,0,2,0,0,0 -050,01,111,Alabama,Randolph County,4,9,1448,696,752,567,586,118,157,2,2,4,3,0,1,5,3,571,588,120,160,6,3,4,3,0,1,675,728,546,563,118,157,2,2,4,2,0,1,5,3,550,565,120,160,6,3,4,2,0,1,21,24,21,23,0,0,0,0,0,1,0,0,0,0,21,23,0,0,0,0,0,1,0,0 -050,01,111,Alabama,Randolph County,4,10,1588,761,827,626,643,128,169,3,5,1,3,1,0,2,7,627,649,129,171,5,10,1,3,1,1,751,821,618,638,128,169,3,4,1,3,0,0,1,7,619,644,128,171,4,9,1,3,0,1,10,6,8,5,0,0,0,1,0,0,1,0,1,0,8,5,1,0,1,1,0,0,1,0 -050,01,111,Alabama,Randolph County,4,11,1679,847,832,677,655,154,159,4,7,0,4,0,0,12,7,688,660,155,161,14,12,1,5,1,1,832,825,666,649,154,159,3,7,0,4,0,0,9,6,675,654,154,160,11,11,0,5,1,1,15,7,11,6,0,0,1,0,0,0,0,0,3,1,13,6,1,1,3,1,1,0,0,0 -050,01,111,Alabama,Randolph County,4,12,1592,788,804,641,658,133,137,5,3,1,2,1,0,7,4,648,661,136,138,9,7,2,2,1,0,773,798,629,652,133,137,4,3,1,2,1,0,5,4,634,655,134,138,7,7,2,2,1,0,15,6,12,6,0,0,1,0,0,0,0,0,2,0,14,6,2,0,2,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,13,1607,781,826,660,663,108,144,2,4,1,5,0,0,10,10,667,671,112,147,11,13,1,6,0,0,777,824,657,661,108,144,2,4,0,5,0,0,10,10,664,669,112,147,11,13,0,6,0,0,4,2,3,2,0,0,0,0,1,0,0,0,0,0,3,2,0,0,0,0,1,0,0,0 -050,01,111,Alabama,Randolph County,4,14,1201,584,617,501,518,69,91,4,3,1,3,1,0,8,2,509,520,70,92,10,3,2,4,2,0,580,609,497,510,69,91,4,3,1,3,1,0,8,2,505,512,70,92,10,3,2,4,2,0,4,8,4,8,0,0,0,0,0,0,0,0,0,0,4,8,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,15,1036,498,538,419,450,75,84,2,1,1,0,0,0,1,3,420,453,75,84,3,4,1,0,0,0,496,533,417,445,75,84,2,1,1,0,0,0,1,3,418,448,75,84,3,4,1,0,0,0,2,5,2,5,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,16,742,299,443,257,381,41,56,0,2,0,2,0,0,1,2,258,383,41,56,1,4,0,2,0,0,298,440,256,378,41,56,0,2,0,2,0,0,1,2,257,380,41,56,1,4,0,2,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,4,17,499,187,312,165,265,20,43,0,0,1,1,0,0,1,3,166,267,20,44,1,3,1,1,0,0,187,310,165,264,20,43,0,0,1,1,0,0,1,2,166,265,20,44,1,2,1,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,1,0,0,0,0 -050,01,111,Alabama,Randolph County,4,18,449,137,312,125,264,10,45,2,1,0,0,0,0,0,2,125,265,10,46,2,3,0,0,0,0,136,312,124,264,10,45,2,1,0,0,0,0,0,2,124,265,10,46,2,3,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,0,22541,10889,11652,8598,9064,2064,2357,41,45,31,45,8,5,147,136,8737,9189,2146,2431,97,99,47,62,15,11,10551,11341,8300,8775,2058,2351,36,42,26,43,4,5,127,125,8421,8892,2127,2421,86,88,38,58,8,8,338,311,298,289,6,6,5,3,5,2,4,0,20,11,316,297,19,10,11,11,9,4,7,3 -050,01,111,Alabama,Randolph County,5,1,1212,613,599,448,424,138,146,1,0,2,3,1,0,23,26,469,448,159,167,4,5,3,4,2,1,563,554,400,381,137,146,1,0,2,3,0,0,23,24,421,403,158,167,4,4,3,3,1,1,50,45,48,43,1,0,0,0,0,0,1,0,0,2,48,45,1,0,0,1,0,1,1,0 -050,01,111,Alabama,Randolph County,5,2,1396,682,714,496,504,156,183,1,3,4,4,0,0,25,20,521,521,175,200,6,7,6,4,0,2,651,662,468,456,156,183,1,1,4,4,0,0,22,18,490,473,174,198,4,4,5,4,0,1,31,52,28,48,0,0,0,2,0,0,0,0,3,2,31,48,1,2,2,3,1,0,0,1 -050,01,111,Alabama,Randolph County,5,3,1565,843,722,629,558,193,142,3,0,2,3,0,0,16,19,645,577,202,153,7,6,5,5,1,0,818,688,606,525,192,141,2,0,2,3,0,0,16,19,622,544,201,152,6,6,5,5,1,0,25,34,23,33,1,1,1,0,0,0,0,0,0,0,23,33,1,1,1,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,4,1619,801,818,595,626,189,179,5,4,1,0,1,0,10,9,605,635,198,185,6,6,1,1,1,0,763,791,562,601,187,179,4,4,1,0,1,0,8,7,570,608,194,185,5,4,1,1,1,0,38,27,33,25,2,0,1,0,0,0,0,0,2,2,35,27,4,0,1,2,0,0,0,0 -050,01,111,Alabama,Randolph County,5,5,1295,623,672,462,506,150,158,2,2,0,0,1,0,8,6,468,512,156,160,4,3,1,2,2,1,598,652,437,486,150,158,2,2,0,0,1,0,8,6,443,492,156,160,4,3,1,2,2,1,25,20,25,20,0,0,0,0,0,0,0,0,0,0,25,20,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,6,1076,502,574,376,404,119,157,1,1,1,4,0,2,5,6,381,409,123,159,1,5,2,5,0,3,482,556,359,390,119,155,1,1,1,4,0,2,2,4,361,393,120,157,1,3,2,5,0,2,20,18,17,14,0,2,0,0,0,0,0,0,3,2,20,16,3,2,0,2,0,0,0,1 -050,01,111,Alabama,Randolph County,5,7,1212,568,644,435,472,119,161,3,3,4,3,2,2,5,3,439,475,121,162,6,3,4,5,3,2,528,618,403,447,119,161,2,3,2,2,0,2,2,3,405,450,119,162,4,3,2,4,0,2,40,26,32,25,0,0,1,0,2,1,2,0,3,0,34,25,2,0,2,0,2,1,3,0 -050,01,111,Alabama,Randolph County,5,8,1283,650,633,503,489,132,133,3,3,6,5,0,0,6,3,509,492,135,134,6,5,7,5,0,0,622,603,482,461,130,132,3,3,4,5,0,0,3,2,485,463,131,133,4,4,5,5,0,0,28,30,21,28,2,1,0,0,2,0,0,0,3,1,24,29,4,1,2,1,2,0,0,0 -050,01,111,Alabama,Randolph County,5,9,1412,672,740,547,579,114,151,2,3,4,3,0,1,5,3,552,582,114,153,5,4,6,3,0,1,650,725,525,565,114,151,2,3,4,2,0,1,5,3,530,568,114,153,5,4,6,2,0,1,22,15,22,14,0,0,0,0,0,1,0,0,0,0,22,14,0,0,0,0,0,1,0,0 -050,01,111,Alabama,Randolph County,5,10,1542,745,797,608,612,129,171,3,5,1,2,1,0,3,7,611,618,130,173,5,9,1,4,1,0,732,789,597,605,129,171,3,4,1,2,0,0,2,7,599,611,129,173,5,8,1,4,0,0,13,8,11,7,0,0,0,1,0,0,1,0,1,0,12,7,1,0,0,1,0,0,1,0 -050,01,111,Alabama,Randolph County,5,11,1664,830,834,673,647,146,170,3,6,0,4,0,0,8,7,681,652,148,172,9,11,0,6,0,0,816,828,661,643,146,169,3,6,0,4,0,0,6,6,667,648,147,170,8,10,0,6,0,0,14,6,12,4,0,1,0,0,0,0,0,0,2,1,14,4,1,2,1,1,0,0,0,0 -050,01,111,Alabama,Randolph County,5,12,1617,802,815,650,669,135,135,6,4,0,3,1,0,10,4,660,672,136,137,12,6,2,4,3,0,786,805,638,660,135,134,4,4,0,3,1,0,8,4,646,663,136,136,10,6,0,4,2,0,16,10,12,9,0,1,2,0,0,0,0,0,2,0,14,9,0,1,2,0,2,0,1,0 -050,01,111,Alabama,Randolph County,5,13,1564,767,797,639,637,116,141,2,4,2,5,0,0,8,10,646,647,118,142,8,11,3,7,1,0,759,797,633,637,116,141,2,4,1,5,0,0,7,10,640,647,117,142,8,11,1,7,0,0,8,0,6,0,0,0,0,0,1,0,0,0,1,0,6,0,1,0,0,0,2,0,1,0 -050,01,111,Alabama,Randolph County,5,14,1294,635,659,542,557,75,94,4,3,2,3,1,0,11,2,551,559,78,96,13,4,3,3,1,0,631,651,538,549,75,94,4,3,2,3,1,0,11,2,547,551,78,96,13,4,3,3,1,0,4,8,4,8,0,0,0,0,0,0,0,0,0,0,4,8,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,15,1061,513,548,434,457,76,86,1,1,0,0,0,0,2,4,436,461,76,86,3,5,0,0,0,0,512,542,433,451,76,86,1,1,0,0,0,0,2,4,435,455,76,86,3,5,0,0,0,0,1,6,1,6,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,16,774,321,453,273,386,45,62,1,1,1,2,0,0,1,2,274,388,45,62,2,3,1,2,0,0,319,450,271,383,45,62,1,1,1,2,0,0,1,2,272,385,45,62,2,3,1,2,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,5,17,494,185,309,165,264,20,41,0,1,0,1,0,0,0,2,165,265,20,43,0,2,0,2,0,1,185,306,165,262,20,41,0,1,0,1,0,0,0,1,165,262,20,42,0,2,0,1,0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,1,0,3,0,1,0,0,0,1,0,1 -050,01,111,Alabama,Randolph County,5,18,461,137,324,123,273,12,47,0,1,1,0,0,0,1,3,124,276,12,47,0,4,2,0,0,0,136,324,122,273,12,47,0,1,1,0,0,0,1,3,123,276,12,47,0,4,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,0,22558,10949,11609,8602,8970,2109,2384,45,52,35,46,8,8,150,149,8745,9104,2186,2474,107,111,53,61,13,13,10609,11290,8306,8681,2102,2375,40,45,30,44,4,8,127,137,8428,8804,2167,2458,91,100,45,58,8,12,340,319,296,289,7,9,5,7,5,2,4,0,23,12,317,300,19,16,16,11,8,3,5,1 -050,01,111,Alabama,Randolph County,6,1,1238,633,605,449,432,154,141,1,2,2,2,0,2,27,26,475,453,176,164,3,7,6,5,1,3,591,550,411,380,151,140,1,2,2,2,0,2,26,24,436,399,172,163,3,6,6,4,1,3,42,55,38,52,3,1,0,0,0,0,0,0,1,2,39,54,4,1,0,1,0,1,0,0 -050,01,111,Alabama,Randolph County,6,2,1356,671,685,496,468,152,181,1,3,2,5,1,1,19,27,514,494,165,201,5,7,3,9,3,1,634,637,462,425,152,180,1,1,2,5,0,1,17,25,479,449,164,198,4,5,3,9,1,1,37,48,34,43,0,1,0,2,0,0,1,0,2,2,35,45,1,3,1,2,0,0,2,0 -050,01,111,Alabama,Randolph County,6,3,1487,795,692,595,526,174,146,3,0,5,3,0,0,18,17,613,542,185,159,8,5,8,4,0,0,773,662,576,498,173,144,2,0,5,3,0,0,17,17,593,514,184,157,7,5,7,4,0,0,22,30,19,28,1,2,1,0,0,0,0,0,1,0,20,28,1,2,1,0,1,0,0,0 -050,01,111,Alabama,Randolph County,6,4,1607,808,799,593,609,200,176,3,3,0,0,0,0,12,11,604,617,206,185,8,5,2,2,0,1,777,759,564,570,200,176,2,3,0,0,0,0,11,10,574,577,206,185,6,4,2,2,0,1,31,40,29,39,0,0,1,0,0,0,0,0,1,1,30,40,0,0,2,1,0,0,0,0 -050,01,111,Alabama,Randolph County,6,5,1331,654,677,477,494,167,171,4,2,0,0,1,0,5,10,482,504,170,176,5,7,1,0,1,0,631,664,456,483,166,171,4,2,0,0,1,0,4,8,460,491,169,174,5,7,0,0,1,0,23,13,21,11,1,0,0,0,0,0,0,0,1,2,22,13,1,2,0,0,1,0,0,0 -050,01,111,Alabama,Randolph County,6,6,1131,547,584,405,420,133,152,2,4,1,2,1,1,5,5,410,424,137,155,3,5,1,3,1,2,520,567,379,408,133,150,2,2,1,2,1,1,4,4,383,411,136,152,3,3,1,3,1,2,27,17,26,12,0,2,0,2,0,0,0,0,1,1,27,13,1,3,0,2,0,0,0,0 -050,01,111,Alabama,Randolph County,6,7,1201,566,635,435,447,114,174,4,3,4,3,2,2,7,6,442,452,117,177,8,6,5,3,2,3,523,609,401,423,114,174,3,3,2,2,0,2,3,5,404,428,115,177,4,5,3,2,0,2,43,26,34,24,0,0,1,0,2,1,2,0,4,1,38,24,2,0,4,1,2,1,2,1 -050,01,111,Alabama,Randolph County,6,8,1234,604,630,465,475,124,141,1,4,7,7,0,1,7,2,472,477,128,143,3,4,7,7,1,1,581,600,449,449,122,140,1,2,5,7,0,1,4,1,453,450,123,141,3,2,5,7,1,1,23,30,16,26,2,1,0,2,2,0,0,0,3,1,19,27,5,2,0,2,2,0,0,0 -050,01,111,Alabama,Randolph County,6,9,1400,675,725,537,575,128,139,3,5,2,2,0,0,5,4,541,579,130,140,6,7,3,3,0,0,649,713,514,564,128,139,3,5,2,1,0,0,2,4,516,568,129,140,4,7,2,2,0,0,26,12,23,11,0,0,0,0,0,1,0,0,3,0,25,11,1,0,2,0,1,1,0,0 -050,01,111,Alabama,Randolph County,6,10,1528,748,780,605,607,135,158,2,4,3,4,1,1,2,6,607,612,135,162,3,7,4,4,1,1,730,769,588,597,135,158,2,3,3,4,0,1,2,6,590,602,135,162,3,6,4,4,0,1,18,11,17,10,0,0,0,1,0,0,1,0,0,0,17,10,0,0,0,1,0,0,1,0 -050,01,111,Alabama,Randolph County,6,11,1656,829,827,674,635,140,177,4,6,3,2,0,0,8,7,681,642,142,178,8,12,5,2,1,0,815,820,662,630,140,176,4,6,3,2,0,0,6,6,667,636,140,177,8,11,5,2,1,0,14,7,12,5,0,1,0,0,0,0,0,0,2,1,14,6,2,1,0,1,0,0,0,0 -050,01,111,Alabama,Randolph County,6,12,1641,817,824,659,677,140,136,5,4,1,4,0,0,12,3,671,680,143,137,15,5,1,5,0,0,802,816,649,670,140,135,3,4,1,4,0,0,9,3,658,673,142,136,10,5,1,5,0,0,15,8,10,7,0,1,2,0,0,0,0,0,3,0,13,7,1,1,5,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,13,1546,758,788,630,623,113,146,5,3,2,5,1,0,7,11,637,632,113,148,11,12,3,7,1,1,748,785,622,620,113,146,5,3,1,5,1,0,6,11,628,629,113,148,10,12,2,7,1,1,10,3,8,3,0,0,0,0,1,0,0,0,1,0,9,3,0,0,1,0,1,0,0,0 -050,01,111,Alabama,Randolph County,6,14,1349,659,690,565,589,77,91,5,4,1,3,1,0,10,3,574,592,79,93,14,7,2,3,1,0,655,683,561,582,77,91,5,4,1,3,1,0,10,3,570,585,79,93,14,7,2,3,1,0,4,7,4,7,0,0,0,0,0,0,0,0,0,0,4,7,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,15,1098,533,565,449,458,79,100,1,2,0,1,0,0,4,4,453,462,80,100,4,6,0,1,0,0,531,558,447,451,79,100,1,2,0,1,0,0,4,4,451,455,80,100,4,6,0,1,0,0,2,7,2,7,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,16,799,321,478,269,410,49,64,1,1,1,2,0,0,1,1,270,411,49,64,2,2,1,2,0,0,319,475,267,407,49,64,1,1,1,2,0,0,1,1,268,408,49,64,2,2,1,2,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,17,505,202,303,186,257,16,41,0,1,0,1,0,0,0,3,186,260,16,42,0,3,0,1,0,0,202,301,186,256,16,41,0,1,0,1,0,0,0,2,186,258,16,41,0,3,0,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,6,18,451,129,322,113,268,14,50,0,1,1,0,0,0,1,3,113,271,15,50,1,4,1,0,0,0,128,322,112,268,14,50,0,1,1,0,0,0,1,3,112,271,15,50,1,4,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,7,0,22362,10858,11504,8534,8905,2084,2340,43,53,28,45,8,7,161,154,8679,9044,2178,2424,106,111,52,69,14,12,10524,11200,8249,8635,2074,2330,38,46,23,41,4,7,136,141,8375,8763,2152,2410,87,99,44,60,7,10,334,304,285,270,10,10,5,7,5,4,4,0,25,13,304,281,26,14,19,12,8,9,7,2 -050,01,111,Alabama,Randolph County,7,1,1205,602,603,420,443,152,128,1,1,1,3,0,1,28,27,446,469,176,149,6,3,4,8,1,1,560,557,384,401,148,126,1,1,1,1,0,1,26,27,408,427,171,147,4,3,4,6,1,1,42,46,36,42,4,2,0,0,0,2,0,0,2,0,38,42,5,2,2,0,0,2,0,0 -050,01,111,Alabama,Randolph County,7,2,1347,671,676,501,452,147,186,1,3,2,5,1,2,19,28,519,478,160,203,4,9,5,9,3,5,636,635,470,416,146,186,1,2,2,5,0,2,17,24,487,439,158,202,2,5,5,9,1,4,35,41,31,36,1,0,0,1,0,0,1,0,2,4,32,39,2,1,2,4,0,0,2,1 -050,01,111,Alabama,Randolph County,7,3,1442,768,674,577,508,162,152,2,1,3,3,0,0,24,10,601,517,179,159,8,4,4,4,0,0,740,637,553,475,160,150,1,0,3,3,0,0,23,9,576,483,176,157,7,2,4,4,0,0,28,37,24,33,2,2,1,1,0,0,0,0,1,1,25,34,3,2,1,2,0,0,0,0 -050,01,111,Alabama,Randolph County,7,4,1561,783,778,576,586,188,171,3,3,1,0,0,0,15,18,589,603,202,184,7,9,2,0,0,1,754,733,550,543,188,170,2,3,1,0,0,0,13,17,561,559,200,182,5,9,2,0,0,1,29,45,26,43,0,1,1,0,0,0,0,0,2,1,28,44,2,2,2,0,0,0,0,0 -050,01,111,Alabama,Randolph County,7,5,1293,643,650,466,483,167,157,4,1,0,0,1,0,5,9,469,491,171,162,5,4,2,2,1,0,608,641,433,475,166,157,4,1,0,0,1,0,4,8,435,482,169,162,5,4,2,1,1,0,35,9,33,8,1,0,0,0,0,0,0,0,1,1,34,9,2,0,0,0,0,1,0,0 -050,01,111,Alabama,Randolph County,7,6,1143,557,586,416,435,133,142,0,3,2,0,1,1,5,5,420,438,136,146,1,5,4,1,1,1,540,571,400,423,133,140,0,3,2,0,1,1,4,4,404,425,135,143,1,5,3,1,1,1,17,15,16,12,0,2,0,0,0,0,0,0,1,1,16,13,1,3,0,0,1,0,0,0 -050,01,111,Alabama,Randolph County,7,7,1178,554,624,429,443,109,163,5,4,3,5,2,1,6,8,435,449,112,168,7,5,4,9,2,1,517,595,401,419,109,163,4,2,1,4,0,1,2,6,403,424,110,167,4,3,2,6,0,1,37,29,28,24,0,0,1,2,2,1,2,0,4,2,32,25,2,1,3,2,2,3,2,0 -050,01,111,Alabama,Randolph County,7,8,1201,591,610,454,459,126,140,0,5,3,1,0,1,8,4,461,463,128,140,4,8,6,2,1,1,565,586,434,439,124,139,0,3,2,1,0,1,5,3,439,442,124,139,3,5,5,2,0,1,26,24,20,20,2,1,0,2,1,0,0,0,3,1,22,21,4,1,1,3,1,0,1,0 -050,01,111,Alabama,Randolph County,7,9,1359,662,697,527,545,123,141,2,4,4,4,0,0,6,3,531,548,127,143,5,4,5,5,1,0,641,687,510,536,123,141,2,4,3,3,0,0,3,3,513,539,124,143,4,4,3,4,0,0,21,10,17,9,0,0,0,0,1,1,0,0,3,0,18,9,3,0,1,0,2,1,1,0 -050,01,111,Alabama,Randolph County,7,10,1476,717,759,577,590,131,155,3,3,3,5,1,1,2,5,579,594,132,158,3,5,4,6,1,1,704,746,565,577,131,155,3,3,3,5,0,1,2,5,567,581,132,158,3,5,4,6,0,1,13,13,12,13,0,0,0,0,0,0,1,0,0,0,12,13,0,0,0,0,0,0,1,0 -050,01,111,Alabama,Randolph County,7,11,1648,825,823,671,649,144,159,4,7,0,2,0,0,6,6,677,654,145,160,9,13,0,2,0,0,811,818,659,646,144,158,4,6,0,2,0,0,4,6,663,651,145,159,7,12,0,2,0,0,14,5,12,3,0,1,0,1,0,0,0,0,2,0,14,3,0,1,2,1,0,0,0,0 -050,01,111,Alabama,Randolph County,7,12,1657,824,833,652,673,153,145,5,5,1,4,0,0,13,6,663,678,157,147,15,9,3,5,0,0,807,825,640,667,153,144,3,5,1,4,0,0,10,5,649,671,155,146,11,9,2,4,0,0,17,8,12,6,0,1,2,0,0,0,0,0,3,1,14,7,2,1,4,0,1,1,0,0 -050,01,111,Alabama,Randolph County,7,13,1538,765,773,642,617,109,143,6,3,1,4,1,0,6,6,647,622,110,145,10,7,3,5,1,0,756,769,634,613,109,143,6,3,1,4,1,0,5,6,638,618,110,145,9,7,3,5,1,0,9,4,8,4,0,0,0,0,0,0,0,0,1,0,9,4,0,0,1,0,0,0,0,0 -050,01,111,Alabama,Randolph County,7,14,1379,670,709,573,593,78,100,5,5,2,3,1,0,11,8,582,600,81,102,14,11,3,4,1,0,666,702,570,586,78,100,5,5,1,3,1,0,11,8,579,593,81,102,14,11,2,4,1,0,4,7,3,7,0,0,0,0,1,0,0,0,0,0,3,7,0,0,0,0,1,0,0,0 -050,01,111,Alabama,Randolph County,7,15,1127,528,599,450,489,73,101,1,2,0,3,0,0,4,4,454,493,73,101,5,6,0,3,0,0,525,593,447,483,73,101,1,2,0,3,0,0,4,4,451,487,73,101,5,6,0,3,0,0,3,6,3,6,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,7,16,804,349,455,291,388,54,63,1,1,1,2,0,0,2,1,293,389,54,63,3,2,1,2,0,0,347,453,289,386,54,63,1,1,1,2,0,0,2,1,291,387,54,63,3,2,1,2,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,7,17,538,209,329,189,280,20,45,0,1,0,0,0,0,0,3,189,283,20,45,0,3,0,1,0,1,208,326,188,278,20,45,0,1,0,0,0,0,0,2,188,280,20,45,0,3,0,0,0,0,1,3,1,2,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,1,0,1 -050,01,111,Alabama,Randolph County,7,18,466,140,326,123,272,15,49,0,1,1,1,0,0,1,3,124,275,15,49,0,4,2,1,1,0,139,326,122,272,15,49,0,1,1,1,0,0,1,3,123,275,15,49,0,4,2,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,8,0,22603,10934,11669,8619,9011,2061,2382,44,50,33,55,8,7,169,164,8777,9161,2155,2475,113,110,54,77,11,12,10591,11341,8327,8721,2048,2368,38,45,29,49,4,7,145,151,8464,8859,2131,2452,96,101,42,69,5,12,343,328,292,290,13,14,6,5,4,6,4,0,24,13,313,302,24,23,17,9,12,8,6,0 -050,01,111,Alabama,Randolph County,8,1,1274,611,663,427,475,154,147,2,1,1,8,0,1,27,31,453,503,175,174,6,3,5,13,0,2,567,618,392,437,147,144,1,1,1,4,0,1,26,31,417,465,168,171,5,3,4,9,0,2,44,45,35,38,7,3,1,0,0,4,0,0,1,0,36,38,7,3,1,0,1,4,0,0 -050,01,111,Alabama,Randolph County,8,2,1332,673,659,513,452,141,173,1,2,1,3,1,2,16,27,528,476,154,194,3,7,3,7,2,2,630,612,473,409,139,173,1,2,1,3,0,2,16,23,488,430,152,191,3,6,3,6,1,2,43,47,40,43,2,0,0,0,0,0,1,0,0,4,40,46,2,3,0,1,0,1,1,0 -050,01,111,Alabama,Randolph County,8,3,1428,735,693,547,510,150,164,2,1,6,5,0,0,30,13,577,522,170,173,11,4,7,6,0,1,706,653,522,475,150,161,1,0,6,5,0,0,27,12,549,486,170,169,8,3,6,6,0,1,29,40,25,35,0,3,1,1,0,0,0,0,3,1,28,36,0,4,3,1,1,0,0,0 -050,01,111,Alabama,Randolph County,8,4,1557,789,768,585,575,185,171,2,2,1,0,0,0,16,20,599,594,196,183,6,8,4,2,0,1,767,719,565,529,184,170,2,2,1,0,0,0,15,18,578,546,194,181,6,7,4,2,0,1,22,49,20,46,1,1,0,0,0,0,0,0,1,2,21,48,2,2,0,1,0,0,0,0 -050,01,111,Alabama,Randolph County,8,5,1310,671,639,480,471,175,156,5,3,0,1,1,0,10,8,489,478,182,163,10,4,0,2,1,0,635,627,448,461,174,156,4,2,0,1,1,0,8,7,456,467,179,162,7,3,0,2,1,0,36,12,32,10,1,0,1,1,0,0,0,0,2,1,33,11,3,1,3,1,0,0,0,0 -050,01,111,Alabama,Randolph County,8,6,1205,567,638,421,485,137,143,2,2,1,0,1,2,5,6,426,490,140,146,3,4,2,2,1,2,546,617,400,466,137,141,2,2,1,0,1,2,5,6,405,471,140,144,3,4,2,2,1,2,21,21,21,19,0,2,0,0,0,0,0,0,0,0,21,19,0,2,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,8,7,1167,546,621,428,442,105,164,4,3,3,4,1,0,5,8,431,449,107,167,8,7,5,6,1,0,514,598,403,424,105,164,3,1,2,3,0,0,1,6,403,429,106,166,4,4,2,5,0,0,32,23,25,18,0,0,1,2,1,1,1,0,4,2,28,20,1,1,4,3,3,1,1,0 -050,01,111,Alabama,Randolph County,8,8,1225,599,626,456,466,133,149,1,3,2,2,1,1,6,5,462,471,136,151,1,6,5,2,1,2,566,601,431,442,131,149,1,3,1,2,0,1,2,4,433,446,131,150,1,5,3,2,0,2,33,25,25,24,2,0,0,0,1,0,1,0,4,1,29,25,5,1,0,1,2,0,1,0 -050,01,111,Alabama,Randolph County,8,9,1365,680,685,544,535,119,140,2,4,6,4,0,0,9,2,552,537,121,141,8,4,7,4,1,1,661,671,529,522,119,139,2,4,5,4,0,0,6,2,534,524,121,140,7,4,5,4,0,1,19,14,15,13,0,1,0,0,1,0,0,0,3,0,18,13,0,1,1,0,2,0,1,0 -050,01,111,Alabama,Randolph County,8,10,1448,695,753,566,586,122,153,1,3,3,5,1,1,2,5,568,590,122,155,3,7,3,5,1,1,682,738,554,572,122,153,1,3,3,4,0,1,2,5,556,576,122,155,3,7,3,4,0,1,13,15,12,14,0,0,0,0,0,1,1,0,0,0,12,14,0,0,0,0,0,1,1,0 -050,01,111,Alabama,Randolph County,8,11,1621,795,826,651,643,135,166,4,6,2,6,0,0,3,5,654,648,137,167,5,8,2,8,0,0,782,823,640,642,135,165,4,5,2,6,0,0,1,5,641,647,136,166,4,7,2,8,0,0,13,3,11,1,0,1,0,1,0,0,0,0,2,0,13,1,1,1,1,1,0,0,0,0 -050,01,111,Alabama,Randolph County,8,12,1680,840,840,676,667,146,154,4,7,2,4,0,0,12,8,687,675,150,154,14,13,3,6,1,0,826,828,665,659,146,151,3,7,2,4,0,0,10,7,675,666,148,151,11,13,2,5,0,0,14,12,11,8,0,3,1,0,0,0,0,0,2,1,12,9,2,3,3,0,1,1,1,0 -050,01,111,Alabama,Randolph County,8,13,1548,753,795,625,639,111,146,6,2,1,3,1,0,9,5,634,644,113,147,12,6,2,3,1,0,740,791,615,635,111,146,5,2,1,3,1,0,7,5,622,640,112,147,11,6,1,3,1,0,13,4,10,4,0,0,1,0,0,0,0,0,2,0,12,4,1,0,1,0,1,0,0,0 -050,01,111,Alabama,Randolph County,8,14,1460,719,741,612,615,88,109,5,4,2,4,1,0,11,9,622,624,90,109,14,12,3,5,1,0,715,736,609,610,88,109,5,4,1,4,1,0,11,9,619,619,90,109,14,12,2,5,1,0,4,5,3,5,0,0,0,0,1,0,0,0,0,0,3,5,0,0,0,0,1,0,0,0 -050,01,111,Alabama,Randolph County,8,15,1114,529,585,456,491,66,84,2,3,0,3,0,0,5,4,460,495,68,85,5,6,1,3,0,0,526,578,453,484,66,84,2,3,0,3,0,0,5,4,457,488,68,85,5,6,1,3,0,0,3,7,3,7,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,8,16,826,362,464,306,391,53,68,1,2,1,1,0,0,1,2,307,392,53,69,2,4,1,1,0,0,360,461,304,388,53,68,1,2,1,1,0,0,1,2,305,389,53,69,2,4,1,1,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,8,17,556,225,331,199,286,25,41,0,1,0,1,0,0,1,2,200,288,25,41,1,3,0,1,0,0,224,329,198,284,25,41,0,1,0,1,0,0,1,2,199,286,25,41,1,3,0,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,8,18,487,145,342,127,282,16,54,0,1,1,1,0,0,1,4,128,285,16,56,1,4,1,1,0,0,144,341,126,282,16,54,0,1,1,1,0,0,1,3,127,284,16,55,1,4,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,9,0,22515,10923,11592,8596,8947,2072,2361,42,50,42,56,10,7,161,171,8746,9101,2158,2464,114,108,56,81,13,12,10579,11281,8308,8677,2057,2346,36,44,37,50,6,7,135,157,8434,8819,2133,2444,93,94,46,72,9,11,344,311,288,270,15,15,6,6,5,6,4,0,26,14,312,282,25,20,21,14,10,9,4,1 -050,01,111,Alabama,Randolph County,9,1,1289,634,655,436,470,168,149,2,1,4,8,1,0,23,27,458,494,186,175,7,2,5,11,1,0,588,615,401,437,161,146,1,1,2,4,1,0,22,27,422,461,179,172,5,2,3,7,1,0,46,40,35,33,7,3,1,0,2,4,0,0,1,0,36,33,7,3,2,0,2,4,0,0 -050,01,111,Alabama,Randolph County,9,2,1261,623,638,481,452,125,150,1,1,2,2,1,3,13,30,493,482,135,172,5,7,2,4,2,3,575,598,438,414,122,150,1,1,2,2,0,3,12,28,449,442,131,171,4,6,2,4,1,3,48,40,43,38,3,0,0,0,0,0,1,0,1,2,44,40,4,1,1,1,0,0,1,0 -050,01,111,Alabama,Randolph County,9,3,1387,703,684,526,499,143,159,1,2,7,6,1,0,25,18,550,516,161,172,8,7,8,7,1,1,672,641,499,461,143,157,0,1,7,6,1,0,22,16,521,476,160,169,5,5,7,6,1,1,31,43,27,38,0,2,1,1,0,0,0,0,3,2,29,40,1,3,3,2,1,1,0,0 -050,01,111,Alabama,Randolph County,9,4,1561,814,747,606,555,185,170,3,2,2,1,0,0,18,19,624,572,196,183,8,7,4,5,0,0,796,712,590,524,184,169,3,1,2,1,0,0,17,17,607,539,195,181,7,5,4,5,0,0,18,35,16,31,1,1,0,1,0,0,0,0,1,2,17,33,1,2,1,2,0,0,0,0 -050,01,111,Alabama,Randolph County,9,5,1310,667,643,481,476,167,151,5,3,2,1,1,0,11,12,491,487,174,158,8,6,4,3,2,1,629,629,449,464,165,151,4,3,2,1,1,0,8,10,456,473,170,157,6,5,3,3,2,1,38,14,32,12,2,0,1,0,0,0,0,0,3,2,35,14,4,1,2,1,1,0,0,0 -050,01,111,Alabama,Randolph County,9,6,1241,603,638,451,489,142,138,2,3,0,0,1,1,7,7,457,495,147,143,5,5,1,1,1,1,583,622,431,475,142,137,2,2,0,0,1,1,7,7,437,481,147,142,5,4,1,1,1,1,20,16,20,14,0,1,0,1,0,0,0,0,0,0,20,14,0,1,0,1,0,0,0,0 -050,01,111,Alabama,Randolph County,9,7,1087,512,575,386,415,118,147,2,3,1,3,0,1,5,6,390,421,120,148,6,8,1,3,0,1,488,551,367,396,118,146,1,1,1,3,0,1,1,4,367,400,119,147,2,4,1,3,0,1,24,24,19,19,0,1,1,2,0,0,0,0,4,2,23,21,1,1,4,4,0,0,0,0 -050,01,111,Alabama,Randolph County,9,8,1271,615,656,466,482,135,163,3,3,4,2,2,1,5,5,470,485,136,165,6,4,6,5,2,2,585,623,444,451,133,163,3,3,3,1,0,1,2,4,446,454,133,165,4,4,4,3,0,1,30,33,22,31,2,0,0,0,1,1,2,0,3,1,24,31,3,0,2,0,2,2,2,1 -050,01,111,Alabama,Randolph County,9,9,1270,649,621,508,486,126,126,2,3,5,5,0,0,8,1,516,487,130,127,6,3,5,5,0,0,625,604,490,471,126,124,2,3,3,5,0,0,4,1,494,472,128,125,4,3,3,5,0,0,24,17,18,15,0,2,0,0,2,0,0,0,4,0,22,15,2,2,2,0,2,0,0,0 -050,01,111,Alabama,Randolph County,9,10,1461,697,764,570,586,116,166,1,2,6,5,0,1,4,4,574,590,117,168,4,3,6,6,0,1,686,750,559,574,116,165,1,2,6,4,0,1,4,4,563,578,117,167,4,3,6,5,0,1,11,14,11,12,0,1,0,0,0,1,0,0,0,0,11,12,0,1,0,0,0,1,0,0 -050,01,111,Alabama,Randolph County,9,11,1601,781,820,642,639,129,163,3,5,3,5,1,0,3,8,645,647,130,165,4,9,4,7,1,0,771,817,634,638,129,163,3,4,3,5,0,0,2,7,636,645,129,165,4,7,4,7,0,0,10,3,8,1,0,0,0,1,0,0,1,0,1,1,9,2,1,0,0,2,0,0,1,0 -050,01,111,Alabama,Randolph County,9,12,1671,837,834,674,656,145,159,4,7,2,5,0,0,12,7,686,662,146,161,12,13,4,5,1,0,820,827,661,651,145,158,3,7,2,5,0,0,9,6,670,656,146,160,9,12,3,5,1,0,17,7,13,5,0,1,1,0,0,0,0,0,3,1,16,6,0,1,3,1,1,0,0,0 -050,01,111,Alabama,Randolph County,9,13,1574,754,820,629,664,110,147,5,3,1,2,1,0,8,4,636,667,114,148,8,6,3,3,1,1,737,811,615,658,110,144,4,3,1,2,1,0,6,4,620,661,113,145,7,6,2,3,1,1,17,9,14,6,0,3,1,0,0,0,0,0,2,0,16,6,1,3,1,0,1,0,0,0 -050,01,111,Alabama,Randolph County,9,14,1523,747,776,637,631,100,125,2,4,0,5,0,0,8,11,645,640,100,128,10,11,0,7,0,1,745,774,635,629,100,125,2,4,0,5,0,0,8,11,643,638,100,128,10,11,0,7,0,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,9,15,1096,528,568,454,481,60,78,4,4,1,3,1,0,8,2,460,482,62,79,12,5,1,4,1,0,523,560,449,473,60,78,4,4,1,3,1,0,8,2,455,474,62,79,12,5,1,4,1,0,5,8,5,8,0,0,0,0,0,0,0,0,0,0,5,8,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,9,16,845,386,459,326,386,56,69,2,1,1,0,0,0,1,3,327,389,56,69,3,4,1,0,0,0,384,457,324,384,56,69,2,1,1,0,0,0,1,3,325,387,56,69,3,4,1,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,9,17,564,220,344,189,290,30,48,0,2,0,2,0,0,1,2,189,291,31,49,1,3,0,3,0,0,219,341,188,287,30,48,0,2,0,2,0,0,1,2,188,288,31,49,1,3,0,3,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,9,18,503,153,350,134,290,17,53,0,1,1,1,0,0,1,5,135,294,17,54,1,5,1,2,0,0,153,349,134,290,17,53,0,1,1,1,0,0,1,4,135,294,17,53,1,5,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0 -050,01,111,Alabama,Randolph County,10,0,22702,11042,11660,8670,8998,2093,2366,46,58,39,50,13,9,181,179,8836,9163,2198,2470,114,126,61,68,17,15,10704,11351,8390,8733,2076,2350,39,51,34,43,9,9,156,165,8536,8887,2169,2449,96,110,49,58,11,13,338,309,280,265,17,16,7,7,5,7,4,0,25,14,300,276,29,21,18,16,12,10,6,2 -050,01,111,Alabama,Randolph County,10,1,1328,672,656,475,481,157,140,2,2,4,8,3,1,31,24,505,505,183,161,6,3,5,9,4,2,624,621,439,455,148,136,1,2,2,3,3,1,31,24,469,479,174,157,5,3,3,4,4,2,48,35,36,26,9,4,1,0,2,5,0,0,0,0,36,26,9,4,1,0,2,5,0,0 -050,01,111,Alabama,Randolph County,10,2,1281,631,650,476,476,132,142,1,1,2,2,2,3,18,26,492,499,147,164,3,5,5,4,2,4,587,601,437,429,129,142,1,1,2,2,1,3,17,24,452,451,144,163,2,4,5,4,1,3,44,49,39,47,3,0,0,0,0,0,1,0,1,2,40,48,3,1,1,1,0,0,1,1 -050,01,111,Alabama,Randolph County,10,3,1377,686,691,507,494,155,168,1,3,4,2,0,0,19,24,524,518,171,186,5,8,4,3,1,0,664,645,488,453,155,167,1,1,4,2,0,0,16,22,503,475,169,183,4,6,4,3,0,0,22,46,19,41,0,1,0,2,0,0,0,0,3,2,21,43,2,3,1,2,0,0,1,0 -050,01,111,Alabama,Randolph County,10,4,1540,823,717,606,522,187,169,4,1,3,2,1,0,22,23,628,544,205,185,8,6,4,5,1,0,801,689,588,499,186,166,2,0,3,2,1,0,21,22,609,520,203,182,6,4,4,5,1,0,22,28,18,23,1,3,2,1,0,0,0,0,1,1,19,24,2,3,2,2,0,0,0,0 -050,01,111,Alabama,Randolph County,10,5,1347,690,657,513,490,157,149,3,3,1,1,1,0,15,14,527,503,165,157,9,7,3,4,1,0,649,634,478,469,155,149,2,3,1,1,1,0,12,12,489,481,162,157,6,5,3,3,1,0,41,23,35,21,2,0,1,0,0,0,0,0,3,2,38,22,3,0,3,2,0,1,0,0 -050,01,111,Alabama,Randolph County,10,6,1300,633,667,458,516,163,138,3,5,0,0,1,0,8,8,465,522,166,143,7,6,2,3,1,1,615,655,440,505,163,138,3,4,0,0,1,0,8,8,447,511,166,143,7,5,2,3,1,1,18,12,18,11,0,0,0,1,0,0,0,0,0,0,18,11,0,0,0,1,0,0,0,0 -050,01,111,Alabama,Randolph County,10,7,1089,504,585,378,419,116,152,1,3,2,2,0,2,7,7,385,426,118,155,2,8,5,2,1,2,495,568,372,407,116,151,1,1,2,2,0,2,4,5,376,412,117,153,2,5,4,2,0,2,9,17,6,12,0,1,0,2,0,0,0,0,3,2,9,14,1,2,0,3,1,0,1,0 -050,01,111,Alabama,Randolph County,10,8,1226,579,647,439,469,128,164,4,3,2,3,2,2,4,6,442,473,130,166,6,8,3,4,2,2,549,624,416,447,128,164,3,3,1,2,0,2,1,6,417,451,128,166,4,8,1,3,0,2,30,23,23,22,0,0,1,0,1,1,2,0,3,0,25,22,2,0,2,0,2,1,2,0 -050,01,111,Alabama,Randolph County,10,9,1255,634,621,495,488,121,125,2,3,6,2,0,0,10,3,502,491,124,127,8,4,10,2,0,0,609,595,479,464,119,124,2,3,4,2,0,0,5,2,482,466,121,126,6,3,5,2,0,0,25,26,16,24,2,1,0,0,2,0,0,0,5,1,20,25,3,1,2,1,5,0,0,0 -050,01,111,Alabama,Randolph County,10,10,1465,696,769,570,596,115,158,1,5,6,6,0,1,4,3,573,598,117,159,3,8,6,6,1,1,677,756,551,586,115,156,1,5,6,5,0,1,4,3,554,588,117,157,3,8,6,5,1,1,19,13,19,10,0,2,0,0,0,1,0,0,0,0,19,10,0,2,0,0,0,1,0,0 -050,01,111,Alabama,Randolph County,10,11,1585,777,808,635,636,133,156,3,5,2,3,1,0,3,8,638,644,133,156,6,12,2,3,1,1,768,803,628,633,133,156,3,4,2,3,0,0,2,7,630,640,133,156,5,10,2,3,0,1,9,5,7,3,0,0,0,1,0,0,1,0,1,1,8,4,0,0,1,2,0,0,1,0 -050,01,111,Alabama,Randolph County,10,12,1696,847,849,688,653,141,177,7,8,2,4,0,0,9,7,696,660,144,177,12,15,5,4,0,0,829,844,672,650,141,176,7,8,2,4,0,0,7,6,679,656,142,176,11,14,4,4,0,0,18,5,16,3,0,1,0,0,0,0,0,0,2,1,17,4,2,1,1,1,1,0,0,0 -050,01,111,Alabama,Randolph County,10,13,1621,785,836,651,682,116,141,6,4,1,4,1,0,10,5,659,687,120,141,12,7,3,5,1,1,765,825,635,675,116,138,4,4,1,4,1,0,8,4,642,679,119,138,9,7,2,4,1,1,20,11,16,7,0,3,2,0,0,0,0,0,2,1,17,8,1,3,3,0,1,1,0,0 -050,01,111,Alabama,Randolph County,10,14,1465,722,743,614,593,99,133,2,4,1,5,0,0,6,8,620,600,101,136,7,9,1,6,0,0,717,742,610,592,99,133,2,4,1,5,0,0,5,8,615,599,100,136,6,9,1,6,0,0,5,1,4,1,0,0,0,0,0,0,0,0,1,0,5,1,1,0,1,0,0,0,0,0 -050,01,111,Alabama,Randolph County,10,15,1187,578,609,491,521,70,79,4,4,1,3,1,0,11,2,502,523,70,80,15,5,1,3,1,0,573,602,486,514,70,79,4,4,1,3,1,0,11,2,497,516,70,80,15,5,1,3,1,0,5,7,5,7,0,0,0,0,0,0,0,0,0,0,5,7,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,10,16,869,401,468,342,386,56,77,1,1,0,0,0,0,2,4,344,389,56,77,3,5,0,1,0,0,400,465,341,383,56,77,1,1,0,0,0,0,2,4,343,386,56,77,3,5,0,1,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,10,17,574,233,341,199,289,31,47,1,1,1,2,0,0,1,2,200,290,32,48,1,3,1,2,0,0,231,338,197,286,31,47,1,1,1,2,0,0,1,2,198,287,32,48,1,3,1,2,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,10,18,497,151,346,133,287,16,51,0,2,1,1,0,0,1,5,134,291,16,52,1,7,1,2,0,1,151,344,133,286,16,51,0,2,1,1,0,0,1,4,134,290,16,51,1,6,1,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1 -050,01,111,Alabama,Randolph County,11,0,22742,11081,11661,8726,9001,2068,2345,49,58,38,55,17,9,183,193,8889,9181,2182,2448,118,130,60,81,24,17,10732,11356,8434,8741,2049,2330,43,51,33,47,13,9,160,178,8579,8907,2152,2426,98,116,51,71,18,17,349,305,292,260,19,15,6,7,5,8,4,0,23,15,310,274,30,22,20,14,9,10,6,0 -050,01,111,Alabama,Randolph County,11,1,1311,671,640,479,456,152,142,2,1,4,9,2,0,32,32,510,486,180,170,6,5,6,11,3,1,621,609,441,435,142,138,2,1,2,3,2,0,32,32,472,465,170,166,6,5,4,5,3,1,50,31,38,21,10,4,0,0,2,6,0,0,0,0,38,21,10,4,0,0,2,6,0,0 -050,01,111,Alabama,Randolph County,11,2,1323,662,661,494,486,137,141,1,2,4,3,4,3,22,26,514,511,155,159,3,6,7,7,5,4,625,613,460,441,134,140,1,2,4,3,4,3,22,24,480,464,152,158,3,5,7,6,5,4,37,48,34,45,3,1,0,0,0,0,0,0,0,2,34,47,3,1,0,1,0,1,0,0 -050,01,111,Alabama,Randolph County,11,3,1374,699,675,537,479,141,162,1,2,2,2,1,1,17,29,550,507,154,180,7,11,4,5,2,1,665,637,508,445,140,161,1,1,2,2,0,1,14,27,520,472,152,178,4,9,3,4,1,1,34,38,29,34,1,1,0,1,0,0,1,0,3,2,30,35,2,2,3,2,1,1,1,0 -050,01,111,Alabama,Randolph County,11,4,1489,795,694,584,506,181,163,4,2,6,2,1,0,19,21,601,525,196,178,7,7,9,6,1,0,778,662,571,481,180,159,2,0,6,2,1,0,18,20,588,499,194,173,5,5,8,6,1,0,17,32,13,25,1,4,2,2,0,0,0,0,1,1,13,26,2,5,2,2,1,0,0,0 -050,01,111,Alabama,Randolph County,11,5,1304,657,647,491,491,148,141,3,2,0,2,0,0,15,11,506,500,158,149,9,4,0,3,0,2,628,616,466,461,147,141,2,2,0,2,0,0,13,10,479,469,156,148,7,4,0,3,0,2,29,31,25,30,1,0,1,0,0,0,0,0,2,1,27,31,2,1,2,0,0,0,0,0 -050,01,111,Alabama,Randolph County,11,6,1342,649,693,477,531,160,147,4,4,1,1,1,0,6,10,483,541,163,151,6,7,2,3,1,1,623,681,454,522,159,147,4,3,1,1,1,0,4,8,458,530,162,149,5,6,1,3,1,1,26,12,23,9,1,0,0,1,0,0,0,0,2,2,25,11,1,2,1,1,1,0,0,0 -050,01,111,Alabama,Randolph County,11,7,1099,531,568,398,425,119,131,2,3,2,1,1,2,9,6,407,430,122,135,5,4,5,2,1,3,515,554,383,415,119,130,2,1,2,1,1,2,8,5,391,419,122,133,4,2,5,2,1,3,16,14,15,10,0,1,0,2,0,0,0,0,1,1,16,11,0,2,1,2,0,0,0,0 -050,01,111,Alabama,Randolph County,11,8,1210,570,640,438,451,118,170,4,3,2,5,2,1,6,10,444,461,120,170,7,9,3,7,2,3,539,616,415,429,118,170,3,3,1,4,0,1,2,9,417,438,119,170,3,8,2,6,0,3,31,24,23,22,0,0,1,0,1,1,2,0,4,1,27,23,1,0,4,1,1,1,2,0 -050,01,111,Alabama,Randolph County,11,9,1234,597,637,469,493,116,137,1,2,2,2,0,1,9,2,475,495,121,137,8,4,3,2,1,1,577,608,456,466,114,136,1,2,0,2,0,1,6,1,460,467,117,136,5,3,1,2,1,1,20,29,13,27,2,1,0,0,2,0,0,0,3,1,15,28,4,1,3,1,2,0,0,0 -050,01,111,Alabama,Randolph County,11,10,1433,679,754,545,599,128,142,1,6,2,2,0,0,3,5,548,604,128,143,3,9,3,3,1,0,659,743,525,591,128,140,1,6,2,1,0,0,3,5,528,596,128,141,3,9,3,2,1,0,20,11,20,8,0,2,0,0,0,1,0,0,0,0,20,8,0,2,0,0,0,1,0,0 -050,01,111,Alabama,Randolph County,11,11,1590,788,802,649,638,128,146,2,6,4,5,3,1,2,6,651,644,128,147,4,9,4,7,3,1,774,795,636,632,128,146,2,5,4,5,2,1,2,6,638,638,128,147,4,8,4,7,2,1,14,7,13,6,0,0,0,1,0,0,1,0,0,0,13,6,0,0,0,1,0,0,1,0 -050,01,111,Alabama,Randolph County,11,12,1665,827,838,674,640,136,179,6,8,2,3,0,0,9,8,681,648,140,179,12,14,4,5,0,0,811,832,660,637,136,178,6,8,2,3,0,0,7,6,665,643,138,178,11,12,4,5,0,0,16,6,14,3,0,1,0,0,0,0,0,0,2,2,16,5,2,1,1,2,0,0,0,0 -050,01,111,Alabama,Randolph County,11,13,1684,819,865,670,712,128,140,7,4,3,5,0,0,11,4,679,716,133,141,13,7,4,5,2,0,797,860,653,708,128,140,5,4,3,5,0,0,8,3,660,711,131,141,11,6,3,5,0,0,22,5,17,4,0,0,2,0,0,0,0,0,3,1,19,5,2,0,2,1,1,0,2,0 -050,01,111,Alabama,Randolph County,11,14,1466,723,743,615,586,97,139,3,3,1,6,1,0,6,9,621,593,99,140,6,12,2,7,1,0,715,741,609,584,97,139,3,3,1,6,1,0,4,9,613,591,98,140,5,12,2,7,1,0,8,2,6,2,0,0,0,0,0,0,0,0,2,0,8,2,1,0,1,0,0,0,0,0 -050,01,111,Alabama,Randolph County,11,15,1222,585,637,496,547,70,79,6,5,1,3,1,0,11,3,506,549,73,80,14,7,2,4,1,0,581,631,492,541,70,79,6,5,1,3,1,0,11,3,502,543,73,80,14,7,2,4,1,0,4,6,4,6,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,11,16,899,423,476,358,383,60,86,1,2,0,1,0,0,4,4,361,386,61,87,5,6,0,1,0,0,420,472,355,379,60,86,1,2,0,1,0,0,4,4,358,382,61,87,5,6,0,1,0,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,11,17,602,246,356,209,308,34,44,1,1,1,2,0,0,1,1,209,309,35,44,2,2,1,2,0,0,244,353,207,305,34,44,1,1,1,2,0,0,1,1,207,306,35,44,2,2,1,2,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,11,18,495,160,335,143,270,15,56,0,2,1,1,0,0,1,6,143,276,16,58,1,7,1,1,0,0,160,333,143,269,15,56,0,2,1,1,0,0,1,5,143,274,16,57,1,7,1,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,1,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,12,0,22781,11078,11703,8722,9063,2054,2309,51,60,45,64,17,9,189,198,8899,9243,2162,2423,127,130,65,94,22,13,10718,11384,8419,8786,2035,2295,45,51,40,56,13,9,166,187,8577,8956,2132,2405,109,113,56,85,15,12,360,319,303,277,19,14,6,9,5,8,4,0,23,11,322,287,30,18,18,17,9,9,7,1 -050,01,111,Alabama,Randolph County,12,1,1274,644,630,469,462,136,132,2,0,4,7,2,0,31,29,498,491,165,154,6,4,5,10,2,0,604,596,439,435,128,129,2,0,2,3,2,0,31,29,468,464,157,151,6,4,3,6,2,0,40,34,30,27,8,3,0,0,2,4,0,0,0,0,30,27,8,3,0,0,2,4,0,0 -050,01,111,Alabama,Randolph County,12,2,1319,659,660,474,481,156,131,0,2,4,8,3,2,22,36,495,515,174,161,4,7,5,11,3,2,612,609,431,434,152,129,0,2,4,6,3,2,22,36,452,468,170,159,4,7,5,9,3,2,47,51,43,47,4,2,0,0,0,2,0,0,0,0,43,47,4,2,0,0,0,2,0,0 -050,01,111,Alabama,Randolph County,12,3,1390,708,682,538,485,142,161,1,3,2,2,2,2,23,29,561,511,160,183,6,9,5,5,2,3,671,643,507,449,140,161,1,2,2,2,1,2,20,27,527,473,157,183,4,7,4,4,1,3,37,39,31,36,2,0,0,1,0,0,1,0,3,2,34,38,3,0,2,2,1,1,1,0 -050,01,111,Alabama,Randolph County,12,4,1439,779,660,579,486,170,157,3,3,6,2,1,0,20,12,596,498,186,164,7,5,9,5,2,0,758,622,562,454,169,155,1,0,6,2,1,0,19,11,578,465,184,161,4,2,9,5,2,0,21,38,17,32,1,2,2,3,0,0,0,0,1,1,18,33,2,3,3,3,0,0,0,0 -050,01,111,Alabama,Randolph County,12,5,1283,644,639,483,472,139,145,3,3,2,1,0,0,17,18,498,488,149,156,7,8,5,4,2,1,623,610,465,447,139,143,2,2,2,1,0,0,15,17,479,462,148,154,6,6,4,4,1,1,21,29,18,25,0,2,1,1,0,0,0,0,2,1,19,26,1,2,1,2,1,0,1,0 -050,01,111,Alabama,Randolph County,12,6,1323,659,664,479,513,166,134,4,3,2,2,1,0,7,12,486,524,169,141,8,7,2,5,1,0,626,650,450,501,164,134,4,2,2,2,1,0,5,11,455,511,166,140,7,5,2,5,1,0,33,14,29,12,2,0,0,1,0,0,0,0,2,1,31,13,3,1,1,2,0,0,0,0 -050,01,111,Alabama,Randolph County,12,7,1148,538,610,410,463,115,133,2,2,3,4,1,2,7,6,417,468,116,134,7,6,4,6,1,2,521,600,394,455,115,132,2,2,3,4,1,2,6,5,400,459,116,133,6,5,4,6,1,2,17,10,16,8,0,1,0,0,0,0,0,0,1,1,17,9,0,1,1,1,0,0,0,0 -050,01,111,Alabama,Randolph County,12,8,1190,557,633,421,451,119,162,4,4,3,6,2,1,8,9,428,458,121,166,9,8,5,8,3,2,531,604,403,426,119,162,3,2,2,5,0,1,4,8,407,432,120,165,6,6,2,7,0,2,26,29,18,25,0,0,1,2,1,1,2,0,4,1,21,26,1,1,3,2,3,1,3,0 -050,01,111,Alabama,Randolph County,12,9,1228,605,623,476,483,118,131,2,3,1,1,0,1,8,4,483,487,121,132,7,5,2,3,0,1,580,601,457,463,116,130,2,3,0,1,0,1,5,3,461,466,117,130,6,4,1,3,0,1,25,22,19,20,2,1,0,0,1,0,0,0,3,1,22,21,4,2,1,1,1,0,0,0 -050,01,111,Alabama,Randolph County,12,10,1436,696,740,562,581,127,147,2,4,4,3,0,0,1,5,563,585,127,148,3,8,4,4,0,0,672,724,539,568,127,145,2,4,3,2,0,0,1,5,540,572,127,146,3,8,3,3,0,0,24,16,23,13,0,2,0,0,1,1,0,0,0,0,23,13,0,2,0,0,1,1,0,0 -050,01,111,Alabama,Randolph County,12,11,1549,765,784,629,619,126,148,1,6,4,5,3,1,2,5,631,622,126,150,2,9,5,7,3,1,753,775,618,610,126,148,1,6,4,5,2,1,2,5,620,613,126,150,2,9,5,7,2,1,12,9,11,9,0,0,0,0,0,0,1,0,0,0,11,9,0,0,0,0,0,0,1,0 -050,01,111,Alabama,Randolph County,12,12,1732,844,888,700,704,127,167,8,7,2,3,0,0,7,7,707,711,129,168,11,13,4,3,0,0,826,882,684,701,127,166,8,6,2,3,0,0,5,6,689,707,128,167,10,11,4,3,0,0,18,6,16,3,0,1,0,1,0,0,0,0,2,1,18,4,1,1,1,2,0,0,0,0 -050,01,111,Alabama,Randolph County,12,13,1670,807,863,648,702,137,142,7,7,3,6,0,0,12,6,658,706,138,145,19,12,3,6,1,0,788,858,634,698,137,142,5,7,3,6,0,0,9,5,643,701,137,145,14,11,3,6,0,0,19,5,14,4,0,0,2,0,0,0,0,0,3,1,15,5,1,0,5,1,0,0,1,0 -050,01,111,Alabama,Randolph County,12,14,1483,738,745,633,594,92,138,4,3,2,4,1,0,6,6,639,600,93,139,8,6,4,6,1,0,728,742,624,591,92,138,4,3,2,4,1,0,5,6,629,597,92,139,8,6,4,6,1,0,10,3,9,3,0,0,0,0,0,0,0,0,1,0,10,3,1,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,12,15,1268,599,669,510,563,70,94,6,5,1,4,1,0,11,3,521,566,72,94,16,8,1,4,1,0,595,663,507,557,70,94,6,5,1,4,1,0,10,3,517,560,71,94,16,8,1,4,1,0,4,6,3,6,0,0,0,0,0,0,0,0,1,0,4,6,1,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,12,16,935,424,511,359,417,60,85,1,2,0,3,0,0,4,4,363,420,61,86,4,6,0,3,0,0,421,508,356,414,60,85,1,2,0,3,0,0,4,4,360,417,61,86,4,6,0,3,0,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,12,17,592,249,343,211,288,34,51,1,1,1,2,0,0,2,1,213,289,34,51,3,2,1,2,0,0,247,341,209,286,34,51,1,1,1,2,0,0,2,1,211,287,34,51,3,2,1,2,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,12,18,522,163,359,141,299,20,51,0,2,1,1,0,0,1,6,142,304,21,51,0,7,1,2,0,1,162,356,140,297,20,51,0,2,1,1,0,0,1,5,141,302,21,51,0,6,1,2,0,0,1,3,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,1,0,0,0,1 -050,01,111,Alabama,Randolph County,13,0,22920,11110,11810,8772,9169,2037,2310,51,62,44,65,16,8,190,196,8943,9354,2146,2426,125,127,70,85,25,18,10747,11493,8464,8895,2020,2298,45,54,39,56,12,8,167,182,8615,9066,2117,2407,109,112,60,75,17,18,363,317,308,274,17,12,6,8,5,9,4,0,23,14,328,288,29,19,16,15,10,10,8,0 -050,01,111,Alabama,Randolph County,13,1,1249,630,619,470,462,122,120,2,1,4,4,2,0,30,32,497,493,148,146,6,5,7,7,3,1,598,591,442,438,120,118,2,1,2,2,2,0,30,32,469,469,146,144,6,5,5,5,3,1,32,28,28,24,2,2,0,0,2,2,0,0,0,0,28,24,2,2,0,0,2,2,0,0 -050,01,111,Alabama,Randolph County,13,2,1358,661,697,475,499,163,147,0,2,2,12,2,2,19,35,494,533,178,174,2,10,3,14,3,2,614,655,435,467,156,144,0,2,2,7,2,2,19,33,454,499,171,170,2,9,3,9,3,2,47,42,40,32,7,3,0,0,0,5,0,0,0,2,40,34,7,4,0,1,0,5,0,0 -050,01,111,Alabama,Randolph County,13,3,1366,709,657,544,472,140,151,1,3,3,1,2,2,19,28,560,498,153,173,6,7,6,4,4,3,662,608,502,426,137,151,1,2,3,1,1,2,18,26,517,450,149,171,6,6,6,4,3,3,47,49,42,46,3,0,0,1,0,0,1,0,1,2,43,48,4,2,0,1,0,0,1,0 -050,01,111,Alabama,Randolph County,13,4,1392,727,665,528,481,165,165,3,2,6,3,1,0,24,14,549,495,182,177,10,4,10,3,2,1,702,630,508,451,165,163,1,0,6,3,1,0,21,13,527,464,181,174,7,1,9,3,1,1,25,35,20,30,0,2,2,2,0,0,0,0,3,1,22,31,1,3,3,3,1,0,1,0 -050,01,111,Alabama,Randolph County,13,5,1297,650,647,502,494,129,133,2,3,3,1,0,0,14,16,513,509,137,144,7,9,7,1,0,1,633,612,487,462,128,133,2,2,3,1,0,0,13,14,497,475,136,142,6,8,7,1,0,1,17,35,15,32,1,0,0,1,0,0,0,0,1,2,16,34,1,2,1,1,0,0,0,0 -050,01,111,Alabama,Randolph County,13,6,1349,686,663,495,507,174,142,4,3,1,2,1,0,11,9,505,516,181,145,6,5,4,3,1,3,656,651,471,497,172,142,3,2,1,2,1,0,8,8,479,505,177,145,4,4,3,2,1,3,30,12,24,10,2,0,1,1,0,0,0,0,3,1,26,11,4,0,2,1,1,1,0,0 -050,01,111,Alabama,Randolph County,13,7,1187,555,632,426,489,116,130,3,2,2,3,1,2,7,6,432,494,119,131,6,5,3,6,2,2,530,621,401,480,116,129,3,2,2,3,1,2,7,5,407,484,119,130,6,4,3,6,2,2,25,11,25,9,0,1,0,0,0,0,0,0,0,1,25,10,0,1,0,1,0,0,0,0 -050,01,111,Alabama,Randolph County,13,8,1179,557,622,428,448,113,159,3,3,4,5,1,0,8,7,436,455,117,160,7,8,6,6,2,0,541,601,419,431,113,159,2,1,3,4,0,0,4,6,423,437,114,160,4,5,4,5,0,0,16,21,9,17,0,0,1,2,1,1,1,0,4,1,13,18,3,0,3,3,2,1,2,0 -050,01,111,Alabama,Randolph County,13,9,1223,607,616,463,460,133,143,3,3,1,3,1,1,6,6,468,466,137,144,4,7,3,3,2,2,574,594,438,439,131,143,3,3,0,3,0,1,2,5,440,444,133,144,3,6,0,3,0,2,33,22,25,21,2,0,0,0,1,0,1,0,4,1,28,22,4,0,1,1,3,0,2,0 -050,01,111,Alabama,Randolph County,13,10,1421,684,737,543,588,129,139,2,4,4,2,0,0,6,4,548,592,130,140,7,6,5,3,0,0,672,719,532,573,129,136,2,4,3,2,0,0,6,4,537,577,130,137,7,6,4,3,0,0,12,18,11,15,0,3,0,0,1,0,0,0,0,0,11,15,0,3,0,0,1,0,0,0 -050,01,111,Alabama,Randolph County,13,11,1574,770,804,642,645,118,143,1,6,4,4,3,1,2,5,644,648,118,146,3,9,4,5,3,1,753,790,626,632,118,143,1,6,4,3,2,1,2,5,628,635,118,146,3,9,4,4,2,1,17,14,16,13,0,0,0,0,0,1,1,0,0,0,16,13,0,0,0,0,0,1,1,0 -050,01,111,Alabama,Randolph County,13,12,1700,826,874,684,690,127,165,10,8,1,5,0,0,4,6,688,696,128,166,12,11,1,6,1,1,812,868,672,687,127,164,10,7,1,5,0,0,2,5,674,692,128,165,11,9,1,6,0,1,14,6,12,3,0,1,0,1,0,0,0,0,2,1,14,4,0,1,1,2,0,0,1,0 -050,01,111,Alabama,Randolph County,13,13,1733,842,891,694,711,126,158,6,9,4,5,0,0,12,8,705,719,128,159,17,14,4,6,0,1,826,885,681,706,126,158,5,9,4,5,0,0,10,7,690,713,127,159,15,13,4,6,0,1,16,6,13,5,0,0,1,0,0,0,0,0,2,1,15,6,1,0,2,1,0,0,0,0 -050,01,111,Alabama,Randolph County,13,14,1492,736,756,618,611,104,133,2,2,2,4,1,0,9,6,626,617,108,133,8,6,3,6,1,0,715,753,600,608,104,133,1,2,2,4,1,0,7,6,606,614,107,133,5,6,3,6,1,0,21,3,18,3,0,0,1,0,0,0,0,0,2,0,20,3,1,0,3,0,0,0,0,0 -050,01,111,Alabama,Randolph County,13,15,1335,634,701,544,585,71,104,6,4,1,5,1,0,11,3,555,588,73,105,15,6,1,5,1,0,631,695,542,579,71,104,6,4,1,5,1,0,10,3,552,582,72,105,15,6,1,5,1,0,3,6,2,6,0,0,0,0,0,0,0,0,1,0,3,6,1,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,13,16,939,421,518,361,438,53,70,2,3,0,3,0,0,5,4,365,440,55,72,5,6,1,4,0,0,417,515,357,435,53,70,2,3,0,3,0,0,5,4,361,437,55,72,5,6,1,4,0,0,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,13,17,593,242,351,207,290,32,56,1,2,1,1,0,0,1,2,208,291,32,58,2,3,1,1,0,0,239,348,204,287,32,56,1,2,1,1,0,0,1,2,205,288,32,58,2,3,1,1,0,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,111,Alabama,Randolph County,13,18,533,173,360,148,299,22,52,0,2,1,2,0,0,2,5,150,304,22,53,2,6,1,2,0,0,172,357,147,297,22,52,0,2,1,2,0,0,2,4,149,301,22,52,2,6,1,2,0,0,1,3,1,2,0,0,0,0,0,0,0,0,0,1,1,3,0,1,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,1,0,52947,25287,27660,14272,14803,10273,12002,129,114,92,153,70,58,451,530,14660,15254,10530,12259,288,317,189,293,100,103,24253,26748,13491,14157,10111,11842,105,86,83,143,62,51,401,469,13836,14556,10343,12070,244,264,169,269,88,92,1034,912,781,646,162,160,24,28,9,10,8,7,50,61,824,698,187,189,44,53,20,24,12,11 -050,01,113,Alabama,Russell County,1,1,4005,2076,1929,1043,962,909,851,12,10,6,8,8,7,98,91,1127,1050,981,905,33,23,25,38,15,12,1905,1798,915,870,884,827,11,5,5,6,8,6,82,84,986,951,948,879,25,17,22,32,13,11,171,131,128,92,25,24,1,5,1,2,0,1,16,7,141,99,33,26,8,6,3,6,2,1 -050,01,113,Alabama,Russell County,1,2,3509,1775,1734,839,790,846,853,5,10,5,2,4,6,76,73,908,856,900,897,20,24,20,24,11,13,1680,1637,777,729,826,833,5,5,3,2,4,5,65,63,837,786,875,872,14,16,17,21,10,12,95,97,62,61,20,20,0,5,2,0,0,1,11,10,71,70,25,25,6,8,3,3,1,1 -050,01,113,Alabama,Russell County,1,3,3594,1900,1694,835,783,985,837,10,6,4,4,4,6,62,58,893,836,1023,869,23,28,21,15,7,11,1832,1588,788,715,971,816,10,1,4,4,3,6,56,46,840,756,1006,841,21,19,18,13,6,11,68,106,47,68,14,21,0,5,0,0,1,0,6,12,53,80,17,28,2,9,3,2,1,0 -050,01,113,Alabama,Russell County,1,4,3886,1967,1919,904,894,999,963,8,7,6,0,4,4,46,51,946,936,1028,996,22,22,13,10,7,8,1898,1855,856,849,987,951,5,6,6,0,3,3,41,46,894,888,1013,980,18,19,11,10,6,6,69,64,48,45,12,12,3,1,0,0,1,1,5,5,52,48,15,16,4,3,2,0,1,2 -050,01,113,Alabama,Russell County,1,5,3661,1691,1970,953,1060,683,857,8,10,9,6,8,8,30,29,978,1082,698,868,23,22,13,15,10,14,1594,1884,872,1004,674,838,5,8,7,3,8,7,28,24,895,1023,687,845,20,18,11,12,10,12,97,86,81,56,9,19,3,2,2,3,0,1,2,5,83,59,11,23,3,4,2,3,0,2 -050,01,113,Alabama,Russell County,1,6,3869,1883,1986,1166,1087,656,837,8,9,12,11,6,4,35,38,1193,1119,672,852,22,23,24,26,7,6,1754,1886,1061,1009,638,826,5,5,12,10,5,4,33,32,1086,1036,654,839,19,16,22,23,6,6,129,100,105,78,18,11,3,4,0,1,1,0,2,6,107,83,18,13,3,7,2,3,1,0 -050,01,113,Alabama,Russell County,1,7,3441,1670,1771,973,886,639,816,15,8,9,22,9,7,25,32,993,913,647,823,26,24,19,37,10,7,1551,1697,882,836,625,801,10,7,7,21,5,5,22,27,899,858,632,807,19,20,17,35,6,5,119,74,91,50,14,15,5,1,2,1,4,2,3,5,94,55,15,16,7,4,2,2,4,2 -050,01,113,Alabama,Russell County,1,8,3275,1534,1741,853,843,636,838,8,4,10,20,9,3,18,33,869,871,641,854,21,21,13,25,10,7,1467,1686,796,801,632,831,5,4,9,19,9,2,16,29,810,826,636,845,18,19,11,24,10,5,67,55,57,42,4,7,3,0,1,1,0,1,2,4,59,45,5,9,3,2,2,1,0,2 -050,01,113,Alabama,Russell County,1,9,3320,1591,1729,923,833,634,854,9,14,10,12,4,2,11,14,933,841,636,861,17,21,13,17,4,3,1543,1685,887,794,626,851,6,12,9,12,4,2,11,14,897,802,628,858,14,19,12,17,4,3,48,44,36,39,8,3,3,2,1,0,0,0,0,0,36,39,8,3,3,2,1,0,0,0 -050,01,113,Alabama,Russell County,1,10,3746,1814,1932,1056,1063,723,830,15,5,4,13,4,1,12,20,1065,1078,729,838,25,15,4,19,4,3,1767,1899,1022,1042,716,824,12,4,4,12,3,1,10,16,1029,1055,720,831,21,11,4,16,3,2,47,33,34,21,7,6,3,1,0,1,1,0,2,4,36,23,9,7,4,4,0,3,1,1 -050,01,113,Alabama,Russell County,1,11,3744,1804,1940,1076,1030,698,861,9,10,9,10,2,3,10,26,1084,1049,701,869,16,25,11,15,2,9,1764,1899,1045,1001,689,852,9,9,9,10,2,3,10,24,1053,1018,692,859,16,23,11,15,2,9,40,41,31,29,9,9,0,1,0,0,0,0,0,2,31,31,9,10,0,2,0,0,0,0 -050,01,113,Alabama,Russell County,1,12,3339,1582,1757,948,1040,613,678,7,10,3,13,3,3,8,13,952,1049,617,683,10,20,5,15,6,4,1551,1728,927,1015,603,674,7,10,3,13,3,3,8,13,931,1024,607,679,10,20,5,15,6,4,31,29,21,25,10,4,0,0,0,0,0,0,0,0,21,25,10,4,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,1,13,2838,1300,1538,849,924,433,581,5,3,1,15,5,2,7,13,855,936,435,583,10,14,2,16,5,2,1279,1520,831,907,430,580,5,3,1,15,5,2,7,13,837,919,432,582,10,14,2,16,5,2,21,18,18,17,3,1,0,0,0,0,0,0,0,0,18,17,3,1,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,1,14,2162,993,1169,683,740,296,410,6,3,2,7,0,0,6,9,688,747,296,412,11,11,3,7,1,1,981,1154,674,730,294,406,6,3,2,7,0,0,5,8,679,736,294,408,10,10,3,7,0,1,12,15,9,10,2,4,0,0,0,0,0,0,1,1,9,11,2,4,1,1,0,0,1,0 -050,01,113,Alabama,Russell County,1,15,1653,717,936,476,610,238,311,1,3,0,2,0,0,2,10,478,619,238,314,3,9,0,4,0,0,707,930,469,605,235,311,1,2,0,2,0,0,2,10,471,614,235,314,3,8,0,4,0,0,10,6,7,5,3,0,0,1,0,0,0,0,0,0,7,5,3,0,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,1,16,1231,468,763,318,513,147,229,0,1,1,6,0,1,2,13,319,521,149,236,1,11,1,7,0,1,461,758,314,510,144,227,0,1,1,6,0,1,2,13,315,518,146,234,1,11,1,7,0,1,7,5,4,3,3,2,0,0,0,0,0,0,0,0,4,3,3,2,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,1,17,895,321,574,230,375,84,194,3,0,1,2,0,1,3,2,232,376,85,195,5,2,2,2,1,1,320,568,230,371,83,193,3,0,1,1,0,1,3,2,232,372,84,194,5,2,2,1,1,1,1,6,0,4,1,1,0,0,0,1,0,0,0,0,0,4,1,1,0,0,0,1,0,0 -050,01,113,Alabama,Russell County,1,18,779,201,578,147,370,54,202,0,1,0,0,0,0,0,5,147,375,54,204,0,2,0,1,0,1,199,576,145,369,54,201,0,1,0,0,0,0,0,5,145,374,54,203,0,2,0,1,0,1,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,2,0,52966,25299,27667,14283,14807,10274,12005,129,114,92,153,70,58,451,530,14671,15258,10531,12262,288,317,189,293,100,103,24266,26758,13503,14164,10112,11845,105,86,83,143,62,51,401,469,13848,14563,10344,12073,244,264,169,269,88,92,1033,909,780,643,162,160,24,28,9,10,8,7,50,61,823,695,187,189,44,53,20,24,12,11 -050,01,113,Alabama,Russell County,2,1,4009,2079,1930,1046,963,909,851,12,10,6,8,8,7,98,91,1130,1051,981,905,33,23,25,38,15,12,1908,1799,918,871,884,827,11,5,5,6,8,6,82,84,989,952,948,879,25,17,22,32,13,11,171,131,128,92,25,24,1,5,1,2,0,1,16,7,141,99,33,26,8,6,3,6,2,1 -050,01,113,Alabama,Russell County,2,2,3510,1776,1734,840,790,846,853,5,10,5,2,4,6,76,73,909,856,900,897,20,24,20,24,11,13,1681,1637,778,729,826,833,5,5,3,2,4,5,65,63,838,786,875,872,14,16,17,21,10,12,95,97,62,61,20,20,0,5,2,0,0,1,11,10,71,70,25,25,6,8,3,3,1,1 -050,01,113,Alabama,Russell County,2,3,3595,1902,1693,837,782,985,837,10,6,4,4,4,6,62,58,895,835,1023,869,23,28,21,15,7,11,1834,1589,790,716,971,816,10,1,4,4,3,6,56,46,842,757,1006,841,21,19,18,13,6,11,68,104,47,66,14,21,0,5,0,0,1,0,6,12,53,78,17,28,2,9,3,2,1,0 -050,01,113,Alabama,Russell County,2,4,3886,1967,1919,904,894,999,963,8,7,6,0,4,4,46,51,946,936,1028,996,22,22,13,10,7,8,1898,1855,856,849,987,951,5,6,6,0,3,3,41,46,894,888,1013,980,18,19,11,10,6,6,69,64,48,45,12,12,3,1,0,0,1,1,5,5,52,48,15,16,4,3,2,0,1,2 -050,01,113,Alabama,Russell County,2,5,3664,1693,1971,955,1061,683,857,8,10,9,6,8,8,30,29,980,1083,698,868,23,22,13,15,10,14,1596,1885,874,1005,674,838,5,8,7,3,8,7,28,24,897,1024,687,845,20,18,11,12,10,12,97,86,81,56,9,19,3,2,2,3,0,1,2,5,83,59,11,23,3,4,2,3,0,2 -050,01,113,Alabama,Russell County,2,6,3870,1883,1987,1166,1087,656,838,8,9,12,11,6,4,35,38,1193,1119,672,853,22,23,24,26,7,6,1754,1887,1061,1009,638,827,5,5,12,10,5,4,33,32,1086,1036,654,840,19,16,22,23,6,6,129,100,105,78,18,11,3,4,0,1,1,0,2,6,107,83,18,13,3,7,2,3,1,0 -050,01,113,Alabama,Russell County,2,7,3445,1672,1773,975,888,639,816,15,8,9,22,9,7,25,32,995,915,647,823,26,24,19,37,10,7,1553,1699,884,838,625,801,10,7,7,21,5,5,22,27,901,860,632,807,19,20,17,35,6,5,119,74,91,50,14,15,5,1,2,1,4,2,3,5,94,55,15,16,7,4,2,2,4,2 -050,01,113,Alabama,Russell County,2,8,3272,1531,1741,852,843,634,838,8,4,10,20,9,3,18,33,868,871,639,854,21,21,13,25,10,7,1465,1686,796,801,630,831,5,4,9,19,9,2,16,29,810,826,634,845,18,19,11,24,10,5,66,55,56,42,4,7,3,0,1,1,0,1,2,4,58,45,5,9,3,2,2,1,0,2 -050,01,113,Alabama,Russell County,2,9,3322,1593,1729,923,833,636,854,9,14,10,12,4,2,11,14,933,841,638,861,17,21,13,17,4,3,1545,1685,887,794,628,851,6,12,9,12,4,2,11,14,897,802,630,858,14,19,12,17,4,3,48,44,36,39,8,3,3,2,1,0,0,0,0,0,36,39,8,3,3,2,1,0,0,0 -050,01,113,Alabama,Russell County,2,10,3748,1815,1933,1057,1064,723,830,15,5,4,13,4,1,12,20,1066,1079,729,838,25,15,4,19,4,3,1768,1900,1023,1043,716,824,12,4,4,12,3,1,10,16,1030,1056,720,831,21,11,4,16,3,2,47,33,34,21,7,6,3,1,0,1,1,0,2,4,36,23,9,7,4,4,0,3,1,1 -050,01,113,Alabama,Russell County,2,11,3745,1805,1940,1076,1030,699,861,9,10,9,10,2,3,10,26,1084,1049,702,869,16,25,11,15,2,9,1765,1899,1045,1001,690,852,9,9,9,10,2,3,10,24,1053,1018,693,859,16,23,11,15,2,9,40,41,31,29,9,9,0,1,0,0,0,0,0,2,31,31,9,10,0,2,0,0,0,0 -050,01,113,Alabama,Russell County,2,12,3339,1582,1757,948,1039,613,679,7,10,3,13,3,3,8,13,952,1048,617,684,10,20,5,15,6,4,1551,1729,927,1015,603,675,7,10,3,13,3,3,8,13,931,1024,607,680,10,20,5,15,6,4,31,28,21,24,10,4,0,0,0,0,0,0,0,0,21,24,10,4,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,2,13,2838,1300,1538,849,924,433,581,5,3,1,15,5,2,7,13,855,936,435,583,10,14,2,16,5,2,1279,1520,831,907,430,580,5,3,1,15,5,2,7,13,837,919,432,582,10,14,2,16,5,2,21,18,18,17,3,1,0,0,0,0,0,0,0,0,18,17,3,1,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,2,14,2165,994,1171,684,741,296,411,6,3,2,7,0,0,6,9,689,748,296,413,11,11,3,7,1,1,982,1156,675,731,294,407,6,3,2,7,0,0,5,8,680,737,294,409,10,10,3,7,0,1,12,15,9,10,2,4,0,0,0,0,0,0,1,1,9,11,2,4,1,1,0,0,1,0 -050,01,113,Alabama,Russell County,2,15,1653,717,936,476,610,238,311,1,3,0,2,0,0,2,10,478,619,238,314,3,9,0,4,0,0,707,930,469,605,235,311,1,2,0,2,0,0,2,10,471,614,235,314,3,8,0,4,0,0,10,6,7,5,3,0,0,1,0,0,0,0,0,0,7,5,3,0,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,2,16,1231,468,763,318,513,147,229,0,1,1,6,0,1,2,13,319,521,149,236,1,11,1,7,0,1,461,758,314,510,144,227,0,1,1,6,0,1,2,13,315,518,146,234,1,11,1,7,0,1,7,5,4,3,3,2,0,0,0,0,0,0,0,0,4,3,3,2,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,2,17,895,321,574,230,375,84,194,3,0,1,2,0,1,3,2,232,376,85,195,5,2,2,2,1,1,320,568,230,371,83,193,3,0,1,1,0,1,3,2,232,372,84,194,5,2,2,1,1,1,1,6,0,4,1,1,0,0,0,1,0,0,0,0,0,4,1,1,0,0,0,1,0,0 -050,01,113,Alabama,Russell County,2,18,779,201,578,147,370,54,202,0,1,0,0,0,0,0,5,147,375,54,204,0,2,0,1,0,1,199,576,145,369,54,201,0,1,0,0,0,0,0,5,145,374,54,203,0,2,0,1,0,1,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,3,0,53327,25525,27802,14405,14889,10367,12038,132,120,95,156,68,60,458,539,14802,15342,10613,12324,310,339,200,297,93,96,24470,26866,13601,14226,10207,11875,108,91,85,147,61,53,408,474,13959,14628,10426,12133,259,276,182,269,79,82,1055,936,804,663,160,163,24,29,10,9,7,7,50,65,843,714,187,191,51,63,18,28,14,14 -050,01,113,Alabama,Russell County,3,1,4002,2075,1927,1056,975,894,835,11,9,7,8,8,6,99,94,1147,1060,958,903,32,24,29,29,15,10,1898,1789,923,879,868,809,10,4,6,6,8,5,83,86,1003,959,923,873,23,15,26,26,12,6,177,138,133,96,26,26,1,5,1,2,0,1,16,8,144,101,35,30,9,9,3,3,3,4 -050,01,113,Alabama,Russell County,3,2,3528,1794,1734,847,796,854,844,5,10,6,2,4,8,78,74,916,863,910,895,19,27,26,18,8,11,1699,1638,786,734,832,826,5,5,4,2,4,7,68,64,846,792,881,871,16,18,22,16,6,9,95,96,61,62,22,18,0,5,2,0,0,1,10,10,70,71,29,24,3,9,4,2,2,2 -050,01,113,Alabama,Russell County,3,3,3617,1915,1702,848,788,985,839,12,7,4,5,4,5,62,58,900,836,1025,877,26,23,21,22,9,7,1844,1601,800,723,971,819,12,2,4,5,3,5,54,47,845,763,1006,851,22,13,20,18,6,7,71,101,48,65,14,20,0,5,0,0,1,0,8,11,55,73,19,26,4,10,1,4,3,0 -050,01,113,Alabama,Russell County,3,4,3842,1959,1883,895,873,999,950,10,7,5,0,4,5,46,48,933,916,1027,977,27,23,18,13,7,6,1889,1814,845,825,987,938,7,6,5,0,3,4,42,41,881,861,1013,964,22,18,16,11,6,5,70,69,50,48,12,12,3,1,0,0,1,1,4,7,52,55,14,13,5,5,2,2,1,1 -050,01,113,Alabama,Russell County,3,5,3732,1733,1999,975,1072,703,870,8,10,9,7,7,7,31,33,1002,1097,717,888,20,23,17,18,9,11,1637,1908,896,1013,694,850,5,8,6,4,7,6,29,27,922,1034,707,866,15,17,14,14,9,9,96,91,79,59,9,20,3,2,3,3,0,1,2,6,80,63,10,22,5,6,3,4,0,2 -050,01,113,Alabama,Russell County,3,6,3924,1903,2021,1187,1111,658,843,7,10,13,13,6,5,32,39,1212,1140,672,864,25,27,20,27,7,7,1769,1914,1075,1028,642,831,4,5,13,12,5,5,30,33,1099,1053,655,848,20,19,20,23,6,7,134,107,112,83,16,12,3,5,0,1,1,0,2,6,113,87,17,16,5,8,0,4,1,0 -050,01,113,Alabama,Russell County,3,7,3498,1704,1794,998,903,650,819,15,9,8,23,7,7,26,33,1018,928,660,830,28,25,17,38,9,10,1587,1718,905,851,638,805,10,8,6,22,4,5,24,27,923,872,647,814,22,19,15,34,6,7,117,76,93,52,12,14,5,1,2,1,3,2,2,6,95,56,13,16,6,6,2,4,3,3 -050,01,113,Alabama,Russell County,3,8,3312,1556,1756,857,855,650,840,9,3,12,20,8,4,20,34,877,883,654,852,21,25,18,31,8,7,1487,1699,800,812,646,832,5,3,11,19,8,3,17,30,817,837,650,842,15,24,16,29,8,5,69,57,57,43,4,8,4,0,1,1,0,1,3,4,60,46,4,10,6,1,2,2,0,2 -050,01,113,Alabama,Russell County,3,9,3336,1598,1738,924,836,638,857,9,16,10,13,5,2,12,14,934,847,640,863,19,26,12,15,6,3,1548,1692,884,796,631,853,7,14,9,13,5,2,12,14,894,807,633,859,17,24,11,15,6,3,50,46,40,40,7,4,2,2,1,0,0,0,0,0,40,40,7,4,2,2,1,0,0,0 -050,01,113,Alabama,Russell County,3,10,3759,1823,1936,1054,1056,734,843,14,5,4,11,5,1,12,20,1065,1072,738,851,23,18,5,13,5,4,1775,1901,1019,1033,727,837,11,4,4,10,4,1,10,16,1028,1045,730,844,18,15,5,11,4,4,48,35,35,23,7,6,3,1,0,1,1,0,2,4,37,27,8,7,5,3,0,2,1,0 -050,01,113,Alabama,Russell County,3,11,3772,1825,1947,1081,1039,714,856,10,12,8,10,2,3,10,27,1089,1060,717,862,19,30,8,16,2,8,1783,1906,1049,1010,704,847,10,11,8,10,2,3,10,25,1057,1029,707,853,19,28,8,15,2,8,42,41,32,29,10,9,0,1,0,0,0,0,0,2,32,31,10,9,0,2,0,1,0,0 -050,01,113,Alabama,Russell County,3,12,3373,1600,1773,963,1041,615,693,7,10,4,12,3,3,8,14,969,1054,618,695,15,22,4,14,3,3,1567,1746,939,1018,606,689,7,10,4,12,3,3,8,14,945,1031,609,691,15,22,4,14,3,3,33,27,24,23,9,4,0,0,0,0,0,0,0,0,24,23,9,4,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,3,13,2868,1312,1556,846,929,445,590,6,4,1,15,5,3,9,15,855,940,447,594,14,15,1,18,5,4,1290,1536,827,911,442,588,6,4,1,15,5,3,9,15,836,922,444,592,14,15,1,18,5,4,22,20,19,18,3,2,0,0,0,0,0,0,0,0,19,18,3,2,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,3,14,2184,1008,1176,694,745,300,414,6,3,2,7,0,0,6,7,699,751,301,415,12,9,2,9,0,0,997,1160,686,734,298,410,6,3,2,7,0,0,5,6,690,739,299,411,11,8,2,9,0,0,11,16,8,11,2,4,0,0,0,0,0,0,1,1,9,12,2,4,1,1,0,0,0,0 -050,01,113,Alabama,Russell County,3,15,1658,720,938,479,609,238,313,1,3,0,2,0,0,2,11,481,620,238,317,3,10,0,4,0,2,709,932,471,604,235,313,1,2,0,2,0,0,2,11,473,615,235,317,3,9,0,4,0,2,11,6,8,5,3,0,0,1,0,0,0,0,0,0,8,5,3,0,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,3,16,1244,473,771,318,517,152,234,0,1,1,6,0,1,2,12,320,526,152,239,2,9,1,9,0,3,467,766,315,514,149,232,0,1,1,6,0,1,2,12,317,523,149,237,2,9,1,9,0,3,6,5,3,3,3,2,0,0,0,0,0,0,0,0,3,3,3,2,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,3,17,895,321,574,231,373,84,197,2,0,1,2,0,0,3,2,233,374,85,199,5,0,1,3,0,0,320,571,231,371,83,196,2,0,1,2,0,0,3,2,233,372,84,198,5,0,1,3,0,0,1,3,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,3,18,783,206,577,152,371,54,201,0,1,0,0,0,0,0,4,152,375,54,203,0,3,0,0,0,0,204,575,150,370,54,200,0,1,0,0,0,0,0,4,150,374,54,202,0,3,0,0,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,4,0,54884,26496,28388,14827,15174,10801,12245,146,134,122,190,72,66,528,579,15283,15684,11088,12552,339,371,252,323,108,112,25291,27296,13929,14406,10615,12055,105,97,109,173,64,56,469,509,14338,14860,10871,12323,269,292,226,290,90,92,1205,1092,898,768,186,190,41,37,13,17,8,10,59,70,945,824,217,229,70,79,26,33,18,20 -050,01,113,Alabama,Russell County,4,1,4187,2158,2029,1143,1049,866,845,15,17,13,11,9,4,112,103,1242,1144,942,921,39,33,40,33,15,10,1968,1864,1002,949,836,809,12,5,11,7,9,2,98,92,1093,1035,907,877,28,17,34,25,11,8,190,165,141,100,30,36,3,12,2,4,0,2,14,11,149,109,35,44,11,16,6,8,4,2 -050,01,113,Alabama,Russell County,4,2,3605,1812,1793,868,843,844,855,2,5,8,3,4,11,86,76,947,914,902,908,19,20,32,19,8,18,1701,1686,793,768,821,837,2,3,7,2,4,9,74,67,862,832,872,883,14,13,27,15,6,15,111,107,75,75,23,18,0,2,1,1,0,2,12,9,85,82,30,25,5,7,5,4,2,3 -050,01,113,Alabama,Russell County,4,3,3710,1917,1793,854,808,972,903,8,10,3,10,3,4,77,58,922,857,1023,938,28,28,21,26,8,7,1835,1687,802,741,954,879,8,4,2,8,3,4,66,51,860,785,996,910,23,18,19,22,6,7,82,106,52,67,18,24,0,6,1,2,0,0,11,7,62,72,27,28,5,10,2,4,2,0 -050,01,113,Alabama,Russell County,4,4,3674,1956,1718,858,767,1027,879,11,7,8,4,6,8,46,53,897,812,1055,912,26,24,20,17,7,11,1879,1636,804,712,1014,864,8,6,7,3,3,6,43,45,841,750,1040,894,22,17,18,14,4,8,77,82,54,55,13,15,3,1,1,1,3,2,3,8,56,62,15,18,4,7,2,3,3,3 -050,01,113,Alabama,Russell County,4,5,3983,1877,2106,1024,1136,796,882,11,12,9,23,8,8,29,45,1046,1174,811,903,23,29,16,39,13,13,1764,2012,933,1075,783,862,6,11,7,19,8,7,27,38,953,1108,798,879,17,22,14,34,12,10,113,94,91,61,13,20,5,1,2,4,0,1,2,7,93,66,13,24,6,7,2,5,1,3 -050,01,113,Alabama,Russell County,4,6,4179,2011,2168,1260,1211,681,884,13,12,14,12,5,6,38,43,1290,1248,699,906,28,31,25,23,8,9,1853,2024,1135,1095,663,869,4,7,13,11,4,6,34,36,1161,1126,678,885,18,22,24,21,7,9,158,144,125,116,18,15,9,5,1,1,1,0,4,7,129,122,21,21,10,9,1,2,1,0 -050,01,113,Alabama,Russell County,4,7,3796,1914,1882,1109,950,737,850,20,9,8,23,6,10,34,40,1138,986,750,863,39,29,18,35,8,16,1780,1799,1002,894,728,837,11,6,7,22,4,8,28,32,1026,923,739,848,25,18,16,33,5,12,134,83,107,56,9,13,9,3,1,1,2,2,6,8,112,63,11,15,14,11,2,2,3,4 -050,01,113,Alabama,Russell County,4,8,3417,1671,1746,910,857,701,835,9,4,16,20,8,2,27,28,936,881,709,847,20,20,24,28,10,6,1590,1671,852,796,687,827,5,3,15,20,7,2,24,23,875,816,694,836,15,17,22,28,9,5,81,75,58,61,14,8,4,1,1,0,1,0,3,5,61,65,15,11,5,3,2,0,1,1 -050,01,113,Alabama,Russell County,4,9,3397,1632,1765,900,855,688,857,4,16,18,14,5,3,17,20,912,873,691,868,15,31,23,18,8,3,1577,1700,854,802,682,849,4,14,15,13,5,2,17,20,866,820,685,860,15,29,20,17,8,2,55,65,46,53,6,8,0,2,3,1,0,1,0,0,46,53,6,8,0,2,3,1,0,1 -050,01,113,Alabama,Russell County,4,10,3827,1884,1943,1060,1001,780,908,19,5,6,9,6,2,13,18,1070,1015,784,914,30,17,8,11,6,5,1826,1907,1022,975,770,903,11,4,6,8,5,2,12,15,1031,986,774,909,21,15,8,10,5,3,58,36,38,26,10,5,8,1,0,1,1,0,1,3,39,29,10,5,9,2,0,1,1,2 -050,01,113,Alabama,Russell County,4,11,3826,1852,1974,1074,1070,739,847,12,14,8,14,4,3,15,26,1088,1094,742,853,24,31,10,19,5,7,1800,1935,1035,1043,727,839,12,12,8,14,4,3,14,24,1048,1066,730,844,23,29,10,18,5,6,52,39,39,27,12,8,0,2,0,0,0,0,1,2,40,28,12,9,1,2,0,1,0,1 -050,01,113,Alabama,Russell County,4,12,3456,1660,1796,1000,1040,640,717,6,10,4,10,2,3,8,16,1008,1053,641,722,12,21,5,13,3,5,1625,1763,972,1015,633,710,6,10,4,10,2,3,8,15,980,1028,634,714,12,20,5,13,3,5,35,33,28,25,7,7,0,0,0,0,0,0,0,1,28,25,7,8,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,4,13,2985,1364,1621,854,962,485,620,5,5,1,18,6,1,13,15,863,974,491,624,15,17,2,21,8,1,1338,1594,833,940,481,616,5,5,1,18,6,1,12,14,841,951,486,620,15,16,2,21,8,1,26,27,21,22,4,4,0,0,0,0,0,0,1,1,22,23,5,4,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,4,14,2245,1045,1200,722,761,307,421,7,3,4,7,0,0,5,8,726,767,309,423,9,10,6,8,1,0,1032,1185,713,751,304,417,7,3,4,7,0,0,4,7,717,756,305,419,9,10,5,7,1,0,13,15,9,10,3,4,0,0,0,0,0,0,1,1,9,11,4,4,0,0,1,1,0,0 -050,01,113,Alabama,Russell County,4,15,1654,725,929,489,603,231,311,2,3,0,2,0,0,3,10,492,613,231,314,5,10,0,3,0,0,714,921,480,596,229,311,2,2,0,2,0,0,3,10,483,606,229,314,5,9,0,3,0,0,11,8,9,7,2,0,0,1,0,0,0,0,0,0,9,7,2,0,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,4,16,1270,500,770,327,516,170,237,0,1,1,4,0,0,2,12,328,527,171,239,2,13,1,4,0,0,495,763,324,512,168,234,0,1,1,4,0,0,2,12,325,523,169,236,2,13,1,4,0,0,5,7,3,4,2,3,0,0,0,0,0,0,0,0,3,4,2,3,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,4,17,899,315,584,231,371,79,202,2,0,1,6,0,1,2,4,233,375,79,202,4,4,1,6,0,1,313,580,231,369,77,201,2,0,1,5,0,1,2,4,233,373,77,201,4,4,1,5,0,1,2,4,0,2,2,1,0,0,0,1,0,0,0,0,0,2,2,1,0,0,0,1,0,0 -050,01,113,Alabama,Russell County,4,18,774,203,571,144,374,58,192,0,1,0,0,0,0,1,4,145,377,58,195,1,3,0,0,0,0,201,569,142,373,58,191,0,1,0,0,0,0,1,4,143,376,58,194,1,3,0,0,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,5,0,57549,28254,29295,15669,15540,11562,12648,153,155,164,254,78,74,628,624,16220,16083,11907,12984,375,378,329,422,119,123,26846,28044,14644,14686,11322,12404,113,101,149,237,64,60,554,556,15132,15173,11626,12705,300,289,298,383,93,98,1408,1251,1025,854,240,244,40,54,15,17,14,14,74,68,1088,910,281,279,75,89,31,39,26,25 -050,01,113,Alabama,Russell County,5,1,4432,2261,2171,1226,1187,858,836,15,24,20,18,11,4,131,102,1347,1280,953,907,38,46,53,40,18,8,2074,1973,1094,1080,826,781,12,8,15,12,10,0,117,92,1203,1165,912,848,30,22,45,30,15,3,187,198,132,107,32,55,3,16,5,6,1,4,14,10,144,115,41,59,8,24,8,10,3,5 -050,01,113,Alabama,Russell County,5,2,3884,2005,1879,971,880,906,872,11,10,14,8,8,12,95,97,1057,969,972,939,34,28,34,31,14,17,1853,1762,874,801,874,852,7,6,12,7,6,10,80,86,949,882,929,911,21,20,30,29,10,14,152,117,97,79,32,20,4,4,2,1,2,2,15,11,108,87,43,28,13,8,4,2,4,3 -050,01,113,Alabama,Russell County,5,3,3915,1991,1924,903,866,979,961,10,11,8,14,2,11,89,61,983,923,1032,1000,30,27,36,29,13,15,1884,1807,835,797,956,929,9,6,8,11,1,11,75,53,902,847,1004,962,23,19,31,23,7,15,107,117,68,69,23,32,1,5,0,3,1,0,14,8,81,76,28,38,7,8,5,6,6,0 -050,01,113,Alabama,Russell County,5,4,3660,1960,1700,869,726,1016,896,10,5,9,8,8,8,48,57,912,778,1047,932,23,18,23,24,9,15,1874,1599,815,662,994,874,7,1,8,7,5,6,45,49,856,706,1022,906,20,13,21,18,6,9,86,101,54,64,22,22,3,4,1,1,3,2,3,8,56,72,25,26,3,5,2,6,3,6 -050,01,113,Alabama,Russell County,5,5,4224,2100,2124,1130,1121,896,911,12,11,15,30,3,7,44,44,1166,1160,923,932,28,21,27,45,5,14,1960,2028,1022,1046,876,897,5,10,14,29,3,6,40,40,1054,1082,900,916,19,19,26,44,5,11,140,96,108,75,20,14,7,1,1,1,0,1,4,4,112,78,23,16,9,2,1,1,0,3 -050,01,113,Alabama,Russell County,5,6,4619,2245,2374,1379,1319,774,967,9,10,20,25,4,5,59,48,1428,1355,801,993,34,27,40,46,7,10,2077,2215,1246,1198,753,940,4,6,18,23,3,4,53,44,1290,1232,775,964,26,20,36,41,5,7,168,159,133,121,21,27,5,4,2,2,1,1,6,4,138,123,26,29,8,7,4,5,2,3 -050,01,113,Alabama,Russell County,5,7,4126,2134,1992,1256,1015,806,878,16,18,9,26,6,7,41,48,1291,1060,821,897,39,39,19,41,8,9,1964,1866,1119,922,792,867,8,9,9,26,4,5,32,37,1145,956,804,882,26,22,19,39,5,7,170,126,137,93,14,11,8,9,0,0,2,2,9,11,146,104,17,15,13,17,0,2,3,2 -050,01,113,Alabama,Russell County,5,8,3638,1839,1799,988,879,782,855,13,7,19,25,8,5,29,28,1011,903,792,868,28,22,30,30,11,8,1710,1709,892,817,763,834,7,4,18,25,5,5,25,24,912,837,772,844,20,17,27,30,8,8,129,90,96,62,19,21,6,3,1,0,3,0,4,4,99,66,20,24,8,5,3,0,3,0 -050,01,113,Alabama,Russell County,5,9,3625,1792,1833,965,898,768,878,9,10,22,18,8,5,20,24,980,919,773,886,23,26,28,24,8,5,1725,1768,909,845,760,870,9,9,20,17,8,3,19,24,923,866,765,878,22,25,26,23,8,3,67,65,56,53,8,8,0,1,2,1,0,2,1,0,57,53,8,8,1,1,2,1,0,2 -050,01,113,Alabama,Russell County,5,10,3865,1962,1903,1060,941,863,920,11,9,6,13,7,1,15,19,1072,954,867,927,24,19,7,21,8,6,1907,1861,1027,911,845,913,9,7,5,12,7,1,14,17,1039,924,849,919,21,16,6,18,7,5,55,42,33,30,18,7,2,2,1,1,0,0,1,2,33,30,18,8,3,3,1,3,1,1 -050,01,113,Alabama,Russell County,5,11,3910,1925,1985,1072,1073,810,859,11,13,8,13,5,2,19,25,1089,1090,813,867,24,30,12,19,6,5,1876,1953,1037,1051,799,854,10,11,8,13,4,2,18,22,1053,1066,802,861,22,26,12,18,5,5,49,32,35,22,11,5,1,2,0,0,1,0,1,3,36,24,11,6,2,4,0,1,1,0 -050,01,113,Alabama,Russell County,5,12,3610,1745,1865,1027,1044,690,773,10,10,7,14,1,5,10,19,1036,1057,692,780,15,19,9,22,3,6,1707,1828,994,1015,685,766,10,10,7,14,1,5,10,18,1003,1027,687,773,15,19,9,21,3,6,38,37,33,29,5,7,0,0,0,0,0,0,0,1,33,30,5,7,0,0,0,1,0,0 -050,01,113,Alabama,Russell County,5,13,3035,1406,1629,839,950,540,642,5,7,1,19,6,1,15,10,853,959,543,644,16,13,2,22,7,1,1381,1602,821,930,534,638,5,5,1,19,6,1,14,9,834,938,536,640,16,10,2,22,7,1,25,27,18,20,6,4,0,2,0,0,0,0,1,1,19,21,7,4,0,3,0,0,0,0 -050,01,113,Alabama,Russell County,5,14,2350,1091,1259,753,780,323,456,6,3,3,9,1,0,5,11,756,791,325,457,8,12,5,11,2,2,1076,1241,742,768,320,451,6,3,3,9,1,0,4,10,744,778,322,452,8,11,4,11,2,2,15,18,11,12,3,5,0,0,0,0,0,0,1,1,12,13,3,5,0,1,1,0,0,0 -050,01,113,Alabama,Russell County,5,15,1701,750,951,502,622,240,310,4,4,1,4,0,0,3,11,505,631,241,315,6,12,1,5,0,0,739,942,493,613,238,310,4,4,1,4,0,0,3,11,496,622,239,315,6,12,1,5,0,0,11,9,9,9,2,0,0,0,0,0,0,0,0,0,9,9,2,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,5,16,1259,514,745,337,496,174,236,0,2,1,2,0,0,2,9,339,503,174,238,2,11,1,2,0,0,510,736,335,490,172,234,0,1,1,2,0,0,2,9,337,497,172,236,2,10,1,2,0,0,4,9,2,6,2,2,0,1,0,0,0,0,0,0,2,6,2,2,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,5,17,905,324,581,239,365,82,199,1,0,1,8,0,1,1,8,240,370,82,201,2,6,1,10,0,2,321,576,238,364,80,196,1,0,1,7,0,1,1,8,239,369,80,198,2,6,1,9,0,2,3,5,1,1,2,3,0,0,0,1,0,0,0,0,1,1,2,3,0,0,0,1,0,0 -050,01,113,Alabama,Russell County,5,18,791,210,581,153,378,55,199,0,1,0,0,0,0,2,3,155,381,56,201,1,2,1,0,0,0,208,578,151,376,55,198,0,1,0,0,0,0,2,3,153,379,56,200,1,2,1,0,0,0,2,3,2,2,0,1,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,6,0,59219,29054,30165,15920,15889,12045,13067,150,152,182,301,84,84,673,672,16512,16481,12410,13436,396,402,348,466,130,123,27523,28846,14828,14990,11779,12811,116,104,164,276,67,70,569,595,15335,15521,12089,13136,309,308,304,422,97,100,1531,1319,1092,899,266,256,34,48,18,25,17,14,104,77,1177,960,321,300,87,94,44,44,33,23 -050,01,113,Alabama,Russell County,6,1,4325,2218,2107,1206,1153,826,798,13,14,18,25,11,9,144,108,1339,1254,922,881,42,34,53,47,21,14,2008,1912,1079,1035,780,758,12,4,12,14,9,5,116,96,1189,1124,862,834,27,18,41,34,15,9,210,195,127,118,46,40,1,10,6,11,2,4,28,12,150,130,60,47,15,16,12,13,6,5 -050,01,113,Alabama,Russell County,6,2,4055,2081,1974,987,934,953,898,6,17,14,8,8,11,113,106,1086,1028,1033,972,32,40,42,33,18,16,1928,1858,896,862,915,872,4,13,13,7,7,9,93,95,979,950,982,939,21,28,34,29,12,12,153,116,91,72,38,26,2,4,1,1,1,2,20,11,107,78,51,33,11,12,8,4,6,4 -050,01,113,Alabama,Russell County,6,3,3982,2030,1952,916,877,1003,967,8,13,6,6,6,16,91,73,999,943,1060,1012,32,33,32,26,13,19,1920,1834,849,803,981,941,8,7,5,4,4,16,73,63,917,862,1027,981,24,21,24,20,8,18,110,118,67,74,22,26,0,6,1,2,2,0,18,10,82,81,33,31,8,12,8,6,5,1 -050,01,113,Alabama,Russell County,6,4,3665,1932,1733,831,733,1028,918,5,5,7,17,6,5,55,55,883,780,1059,951,24,22,20,30,7,11,1847,1623,775,662,1010,893,5,3,6,15,3,5,48,45,821,702,1038,920,21,14,17,26,4,9,85,110,56,71,18,25,0,2,1,2,3,0,7,10,62,78,21,31,3,8,3,4,3,2 -050,01,113,Alabama,Russell County,6,5,4320,2185,2135,1097,1048,1012,974,15,12,17,38,6,9,38,54,1126,1093,1035,1004,28,28,27,56,8,11,2046,2045,995,992,988,953,10,8,15,38,4,6,34,48,1020,1031,1009,980,21,22,24,54,6,8,139,90,102,56,24,21,5,4,2,0,2,3,4,6,106,62,26,24,7,6,3,2,2,3 -050,01,113,Alabama,Russell County,6,6,4939,2458,2481,1465,1383,899,1010,14,11,27,24,4,7,49,46,1504,1423,923,1033,35,28,43,38,6,11,2256,2322,1305,1262,876,981,5,10,24,20,3,6,43,43,1339,1299,897,1001,21,24,40,33,4,10,202,159,160,121,23,29,9,1,3,4,1,1,6,3,165,124,26,32,14,4,3,5,2,1 -050,01,113,Alabama,Russell County,6,7,4317,2212,2105,1307,1078,807,914,22,13,16,38,6,9,54,53,1351,1125,826,940,47,34,32,53,11,11,2018,1964,1154,975,789,898,12,6,16,38,4,7,43,40,1190,1011,804,916,31,19,30,51,7,9,194,141,153,103,18,16,10,7,0,0,2,2,11,13,161,114,22,24,16,15,2,2,4,2 -050,01,113,Alabama,Russell County,6,8,3762,1904,1858,1046,907,791,879,10,10,20,26,10,6,27,30,1068,934,802,886,24,24,25,34,13,12,1774,1747,944,831,776,855,7,5,19,26,7,6,21,24,962,854,783,861,18,15,24,33,9,9,130,111,102,76,15,24,3,5,1,0,3,0,6,6,106,80,19,25,6,9,1,1,4,3 -050,01,113,Alabama,Russell County,6,9,3794,1885,1909,999,957,823,888,7,8,25,23,7,1,24,32,1021,983,828,899,23,28,30,32,8,3,1802,1840,930,903,813,878,6,7,23,20,7,0,23,32,951,929,818,889,21,27,28,29,8,2,83,69,69,54,10,10,1,1,2,3,0,1,1,0,70,54,10,10,2,1,2,3,0,1 -050,01,113,Alabama,Russell County,6,10,3830,1908,1922,1015,909,852,967,11,9,9,13,5,3,16,21,1028,927,858,975,19,21,12,19,7,4,1846,1866,975,871,833,955,10,7,8,12,5,2,15,19,987,887,839,962,17,18,11,17,7,3,62,56,40,38,19,12,1,2,1,1,0,1,1,2,41,40,19,13,2,3,1,2,0,1 -050,01,113,Alabama,Russell County,6,11,4028,1965,2063,1093,1123,827,886,9,10,8,16,7,1,21,27,1111,1148,832,893,25,28,12,22,9,2,1914,2033,1057,1101,816,881,7,8,8,16,6,1,20,26,1074,1125,820,888,23,26,12,21,8,2,51,30,36,22,11,5,2,2,0,0,1,0,1,1,37,23,12,5,2,2,0,1,1,0 -050,01,113,Alabama,Russell County,6,12,3788,1817,1971,1058,1081,724,843,14,12,8,14,1,5,12,16,1069,1095,727,848,24,23,9,17,1,5,1769,1925,1014,1045,720,837,14,11,8,13,1,5,12,14,1025,1058,723,840,24,21,9,16,1,5,48,46,44,36,4,6,0,1,0,1,0,0,0,2,44,37,4,8,0,2,0,1,0,0 -050,01,113,Alabama,Russell County,6,13,3164,1448,1716,859,1004,564,664,5,7,1,29,6,1,13,11,872,1011,566,669,16,16,3,30,6,3,1420,1684,840,980,555,658,5,5,1,29,6,1,13,11,853,987,557,663,16,14,3,30,6,3,28,32,19,24,9,6,0,2,0,0,0,0,0,0,19,24,9,6,0,2,0,0,0,0 -050,01,113,Alabama,Russell County,6,14,2477,1142,1335,766,816,361,497,4,3,3,9,1,0,7,10,772,825,362,498,9,13,5,11,2,0,1124,1314,752,800,358,492,4,3,3,9,1,0,6,10,757,809,359,493,8,13,4,11,2,0,18,21,14,16,3,5,0,0,0,0,0,0,1,0,15,16,3,5,1,0,1,0,0,0 -050,01,113,Alabama,Russell County,6,15,1770,769,1001,514,660,245,322,6,4,1,5,0,0,3,10,517,669,245,327,9,12,1,5,0,0,763,989,509,650,244,321,6,4,1,5,0,0,3,9,512,658,244,325,9,11,1,5,0,0,6,12,5,10,1,1,0,0,0,0,0,0,0,1,5,11,1,2,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,6,16,1271,546,725,362,476,180,238,0,3,1,1,0,0,3,7,365,482,180,240,3,8,1,2,0,0,539,716,358,470,177,236,0,2,1,1,0,0,3,7,361,476,177,238,3,7,1,2,0,0,7,9,4,6,3,2,0,1,0,0,0,0,0,0,4,6,3,2,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,6,17,918,337,581,240,369,94,193,1,0,1,9,0,1,1,9,241,376,94,195,2,7,1,11,0,1,334,580,239,369,92,192,1,0,1,9,0,1,1,9,240,376,92,194,2,7,1,11,0,1,3,1,1,0,2,1,0,0,0,0,0,0,0,0,1,0,2,1,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,6,18,814,217,597,159,381,56,211,0,1,0,0,0,0,2,4,160,385,58,213,2,3,0,0,0,0,215,594,157,379,56,210,0,1,0,0,0,0,2,4,158,383,58,212,2,3,0,0,0,0,2,3,2,2,0,1,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,7,0,59310,28888,30422,15568,15778,12235,13449,165,151,169,286,76,85,675,673,16173,16372,12615,13822,389,403,351,465,126,119,27298,28980,14433,14797,11965,13161,112,97,145,265,68,77,575,583,14949,15316,12288,13488,292,301,304,423,98,102,1590,1442,1135,981,270,288,53,54,24,21,8,8,100,90,1224,1056,327,334,97,102,47,42,28,17 -050,01,113,Alabama,Russell County,7,1,4428,2264,2164,1186,1172,903,829,18,20,19,23,10,7,128,113,1307,1277,992,910,39,40,52,50,20,11,2046,1952,1049,1044,855,784,8,4,12,16,10,7,112,97,1154,1134,936,856,22,17,42,41,17,9,218,212,137,128,48,45,10,16,7,7,0,0,16,16,153,143,56,54,17,23,10,9,3,2 -050,01,113,Alabama,Russell County,7,2,4098,2102,1996,997,970,958,891,5,9,12,9,4,13,126,104,1114,1066,1051,965,29,31,44,31,15,18,1935,1855,889,871,927,870,4,5,12,7,4,12,99,90,982,955,999,935,18,21,34,26,10,17,167,141,108,99,31,21,1,4,0,2,0,1,27,14,132,111,52,30,11,10,10,5,5,1 -050,01,113,Alabama,Russell County,7,3,3905,1968,1937,888,851,962,966,9,14,13,7,8,22,88,77,971,923,1014,1017,33,37,36,29,12,25,1838,1823,812,785,934,935,7,9,8,6,7,22,70,66,880,847,976,978,24,26,26,24,8,24,130,114,76,66,28,31,2,5,5,1,1,0,18,11,91,76,38,39,9,11,10,5,4,1 -050,01,113,Alabama,Russell County,7,4,3583,1887,1696,791,670,1011,946,6,6,7,14,4,4,68,56,853,720,1056,976,25,26,25,25,7,7,1780,1574,713,603,995,915,5,3,5,10,2,4,60,39,768,639,1034,937,21,14,22,18,5,5,107,122,78,67,16,31,1,3,2,4,2,0,8,17,85,81,22,39,4,12,3,7,2,2 -050,01,113,Alabama,Russell County,7,5,4253,2143,2110,1066,1005,1011,1000,7,6,12,36,5,7,42,56,1103,1050,1034,1032,19,24,25,54,6,10,2014,2015,963,937,996,982,2,4,11,36,4,4,38,52,996,980,1016,1012,13,19,24,53,5,7,129,95,103,68,15,18,5,2,1,0,1,3,4,4,107,70,18,20,6,5,1,1,1,3 -050,01,113,Alabama,Russell County,7,6,4880,2347,2533,1397,1419,862,1032,23,15,25,22,5,5,35,40,1428,1451,879,1053,35,29,36,39,5,8,2182,2362,1272,1286,842,1001,11,12,21,20,4,5,32,38,1300,1317,857,1021,22,25,32,36,4,8,165,171,125,133,20,31,12,3,4,2,1,0,3,2,128,134,22,32,13,4,4,3,1,0 -050,01,113,Alabama,Russell County,7,7,4416,2215,2201,1278,1125,835,957,21,15,17,38,5,10,59,56,1327,1177,860,984,51,39,36,59,11,11,2002,2034,1105,1000,814,936,13,6,16,38,5,8,49,46,1145,1042,836,957,36,24,34,57,7,9,213,167,173,125,21,21,8,9,1,0,0,2,10,10,182,135,24,27,15,15,2,2,4,2 -050,01,113,Alabama,Russell County,7,8,3845,1922,1923,1012,916,838,942,10,12,15,19,9,5,38,29,1039,938,851,954,30,28,27,28,17,9,1772,1803,905,839,813,914,6,6,14,18,6,5,28,21,925,857,823,923,21,18,23,24,9,6,150,120,107,77,25,28,4,6,1,1,3,0,10,8,114,81,28,31,9,10,4,4,8,3 -050,01,113,Alabama,Russell County,7,9,3654,1810,1844,939,895,813,889,10,7,16,25,7,2,25,26,962,919,820,898,25,21,22,34,8,3,1726,1764,870,833,805,877,6,6,14,22,7,1,24,25,892,856,812,886,20,19,20,31,8,2,84,80,69,62,8,12,4,1,2,3,0,1,1,1,70,63,8,12,5,2,2,3,0,1 -050,01,113,Alabama,Russell County,7,10,3736,1877,1859,966,861,880,962,8,8,10,6,5,3,8,19,973,875,882,970,14,20,11,11,5,6,1818,1814,936,831,854,951,6,6,9,6,5,2,8,18,943,845,856,959,12,17,10,11,5,4,59,45,30,30,26,11,2,2,1,0,0,1,0,1,30,30,26,11,2,3,1,0,0,2 -050,01,113,Alabama,Russell County,7,11,4022,1944,2078,1071,1111,825,918,17,6,6,20,6,1,19,22,1087,1128,830,926,29,24,11,23,8,3,1890,2034,1032,1079,816,910,13,5,6,19,6,1,17,20,1046,1094,820,918,24,21,11,22,8,3,54,44,39,32,9,8,4,1,0,1,0,0,2,2,41,34,10,8,5,3,0,1,0,0 -050,01,113,Alabama,Russell County,7,12,3792,1820,1972,1034,1028,754,893,14,14,9,13,1,3,8,21,1041,1045,756,898,19,28,11,19,1,3,1777,1924,996,992,749,885,14,13,9,13,1,3,8,18,1003,1006,751,890,19,26,11,17,1,3,43,48,38,36,5,8,0,1,0,0,0,0,0,3,38,39,5,8,0,2,0,2,0,0 -050,01,113,Alabama,Russell County,7,13,3199,1483,1716,869,984,593,684,4,7,2,26,4,2,11,13,878,995,595,687,13,15,5,29,5,4,1451,1685,847,963,583,674,4,7,2,26,4,2,11,13,856,974,585,677,13,15,5,29,5,4,32,31,22,21,10,10,0,0,0,0,0,0,0,0,22,21,10,10,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,7,14,2599,1176,1423,767,860,388,536,6,4,3,11,3,1,9,11,773,870,391,541,12,13,5,11,4,1,1157,1399,751,841,386,531,6,4,3,11,3,1,8,11,756,851,389,536,11,13,5,11,4,1,19,24,16,19,2,5,0,0,0,0,0,0,1,0,17,19,2,5,1,0,0,0,0,0 -050,01,113,Alabama,Russell County,7,15,1842,794,1048,538,679,246,353,5,3,1,6,0,0,4,7,542,686,246,355,9,7,1,7,0,0,788,1032,533,668,245,349,5,3,1,6,0,0,4,6,537,674,245,351,9,6,1,7,0,0,6,16,5,11,1,4,0,0,0,0,0,0,0,1,5,12,1,4,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,7,16,1321,579,742,376,482,198,245,1,4,1,2,0,0,3,9,379,490,198,246,3,11,1,4,1,0,571,734,370,476,196,244,1,3,1,2,0,0,3,9,373,484,196,245,3,10,1,4,1,0,8,8,6,6,2,1,0,1,0,0,0,0,0,0,6,6,2,1,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,7,17,897,323,574,221,372,100,184,0,0,1,9,0,0,1,9,222,379,100,186,1,7,1,11,0,0,319,571,220,371,97,182,0,0,1,9,0,0,1,9,221,378,97,184,1,7,1,11,0,0,4,3,1,1,3,2,0,0,0,0,0,0,0,0,1,1,3,2,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,7,18,840,234,606,172,378,58,222,1,1,0,0,0,0,3,5,174,383,60,224,3,3,2,1,1,0,232,605,170,378,58,221,1,1,0,0,0,0,3,5,172,383,60,223,3,3,2,1,1,0,2,1,2,0,0,1,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,8,0,58946,28699,30247,15151,15317,12418,13659,172,167,180,315,88,95,690,694,15770,15913,12798,14048,400,413,368,491,134,139,27033,28751,13991,14279,12104,13359,113,116,152,294,80,86,593,617,14529,14812,12436,13708,299,326,310,456,105,120,1666,1496,1160,1038,314,300,59,51,28,21,8,9,97,77,1241,1101,362,340,101,87,58,35,29,19 -050,01,113,Alabama,Russell County,8,1,4426,2245,2181,1151,1136,900,875,16,19,29,24,15,9,134,118,1277,1245,994,963,40,36,67,55,28,13,2015,1956,1008,984,856,832,7,4,19,21,15,9,110,106,1112,1083,936,913,21,18,49,48,21,12,230,225,143,152,44,43,9,15,10,3,0,0,24,12,165,162,58,50,19,18,18,7,7,1 -050,01,113,Alabama,Russell County,8,2,4137,2155,1982,1004,927,996,915,15,12,9,10,5,12,126,106,1116,1024,1083,990,37,31,44,32,16,16,1961,1834,882,821,951,887,11,9,7,7,5,11,105,99,979,912,1026,958,26,25,34,29,10,14,194,148,122,106,45,28,4,3,2,3,0,1,21,7,137,112,57,32,11,6,10,3,6,2 -050,01,113,Alabama,Russell County,8,3,3777,1935,1842,874,799,935,914,11,12,14,10,8,24,93,83,963,873,989,963,33,33,37,31,14,29,1802,1710,790,720,910,882,8,8,9,7,8,24,77,69,865,782,957,925,23,21,27,26,12,29,133,132,84,79,25,32,3,4,5,3,0,0,16,14,98,91,32,38,10,12,10,5,2,0 -050,01,113,Alabama,Russell County,8,4,3534,1832,1702,770,688,984,924,6,9,7,16,4,4,61,61,824,742,1024,961,20,28,24,32,6,8,1718,1584,690,618,961,895,5,5,4,15,2,4,56,47,740,659,998,924,18,18,19,26,4,7,114,118,80,70,23,29,1,4,3,1,2,0,5,14,84,83,26,37,2,10,5,6,2,1 -050,01,113,Alabama,Russell County,8,5,4094,2069,2025,995,914,1002,1012,9,9,14,34,6,6,43,50,1036,957,1022,1040,23,26,26,50,7,9,1946,1933,903,853,982,993,4,7,14,32,4,4,39,44,941,892,1000,1019,15,21,25,47,5,5,123,92,92,61,20,19,5,2,0,2,2,2,4,6,95,65,22,21,8,5,1,3,2,4 -050,01,113,Alabama,Russell County,8,6,4804,2309,2495,1341,1332,903,1063,9,19,16,33,3,7,37,41,1370,1363,923,1083,22,31,27,50,6,12,2150,2330,1213,1203,882,1039,3,11,14,32,3,6,35,39,1241,1232,901,1058,16,22,23,49,6,11,159,165,128,129,21,24,6,8,2,1,0,1,2,2,129,131,22,25,6,9,4,1,0,1 -050,01,113,Alabama,Russell County,8,7,4341,2198,2143,1195,1110,883,932,27,9,22,37,10,10,61,45,1247,1150,905,954,57,31,43,50,14,10,1986,1965,1047,978,852,902,9,7,20,33,9,9,49,36,1088,1010,871,917,31,24,40,46,9,9,212,178,148,132,31,30,18,2,2,4,1,1,12,9,159,140,34,37,26,7,3,4,5,1 -050,01,113,Alabama,Russell County,8,8,3826,1891,1935,979,878,843,974,8,11,13,25,10,10,38,37,1012,904,857,991,26,29,27,34,14,18,1729,1808,864,790,809,944,5,7,13,24,7,8,31,35,891,816,819,960,20,24,25,33,11,14,162,127,115,88,34,30,3,4,0,1,3,2,7,2,121,88,38,31,6,5,2,1,3,4 -050,01,113,Alabama,Russell County,8,9,3568,1754,1814,855,817,840,937,11,7,16,19,6,2,26,32,875,841,850,947,30,25,22,29,7,5,1644,1729,774,753,820,921,5,7,15,18,6,1,24,29,793,776,830,931,23,22,20,28,6,2,110,85,81,64,20,16,6,0,1,1,0,1,2,3,82,65,20,16,7,3,2,1,1,3 -050,01,113,Alabama,Russell County,8,10,3629,1767,1862,914,861,812,952,8,14,16,13,6,4,11,18,923,872,817,959,16,26,18,16,6,7,1704,1808,873,825,793,940,8,9,13,13,6,3,11,18,882,836,798,947,16,21,15,16,6,6,63,54,41,36,19,12,0,5,3,0,0,1,0,0,41,36,19,12,0,5,3,0,0,1 -050,01,113,Alabama,Russell County,8,11,4037,1997,2040,1069,1059,885,936,19,6,1,18,6,1,17,20,1084,1078,891,944,31,18,3,23,6,2,1949,1998,1035,1030,877,928,15,6,1,17,6,1,15,16,1048,1045,882,933,25,16,3,22,6,2,48,42,34,29,8,8,4,0,0,1,0,0,2,4,36,33,9,11,6,2,0,1,0,0 -050,01,113,Alabama,Russell County,8,12,3823,1850,1973,1043,1015,773,896,12,16,12,17,1,2,9,27,1052,1037,775,903,18,36,13,22,1,3,1806,1925,1004,983,768,886,12,13,12,17,1,2,9,24,1013,1002,770,892,18,32,13,21,1,3,44,48,39,32,5,10,0,3,0,0,0,0,0,3,39,35,5,11,0,4,0,1,0,0 -050,01,113,Alabama,Russell County,8,13,3328,1534,1794,874,1002,637,741,6,12,4,23,3,3,10,13,883,1011,639,746,13,22,5,24,4,4,1501,1758,852,974,627,733,6,12,4,23,3,3,9,13,860,983,629,738,13,22,5,24,3,4,33,36,22,28,10,8,0,0,0,0,0,0,1,0,23,28,10,8,0,0,0,0,1,0 -050,01,113,Alabama,Russell County,8,14,2627,1155,1472,721,878,409,559,6,4,3,18,5,1,11,12,730,890,411,561,14,13,6,20,5,1,1134,1457,703,865,406,558,6,4,3,17,5,1,11,12,712,877,408,560,14,13,6,19,5,1,21,15,18,13,3,1,0,0,0,1,0,0,0,0,18,13,3,1,0,0,0,1,0,0 -050,01,113,Alabama,Russell County,8,15,1921,864,1057,602,663,247,378,7,3,2,6,0,0,6,7,607,669,249,382,11,5,3,7,0,1,856,1038,598,652,244,371,7,3,2,6,0,0,5,6,602,658,245,375,11,5,3,6,0,0,8,19,4,11,3,7,0,0,0,0,0,0,1,1,5,11,4,7,0,0,0,1,0,1 -050,01,113,Alabama,Russell County,8,16,1316,560,756,360,495,197,248,1,3,0,3,0,0,2,7,362,501,197,251,3,8,0,4,0,0,553,748,355,489,195,247,1,2,0,3,0,0,2,7,357,495,195,250,3,7,0,4,0,0,7,8,5,6,2,1,0,1,0,0,0,0,0,0,5,6,2,1,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,8,17,904,327,577,219,378,105,179,0,1,1,7,0,0,2,12,221,387,105,182,2,11,1,9,0,1,323,573,216,376,104,177,0,1,1,7,0,0,2,12,218,385,104,180,2,11,1,9,0,1,4,4,3,2,1,2,0,0,0,0,0,0,0,0,3,2,1,2,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,8,18,854,257,597,185,365,67,224,1,1,1,2,0,0,3,5,188,369,67,228,4,4,2,3,0,0,256,597,184,365,67,224,1,1,1,2,0,0,3,5,187,369,67,228,4,4,2,3,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,9,0,58290,28233,30057,14688,15008,12412,13787,167,159,182,313,81,82,703,708,15302,15618,12808,14185,405,407,363,494,125,133,26606,28540,13550,13942,12111,13495,119,110,151,292,73,72,602,629,14077,14485,12450,13854,308,318,310,453,104,112,1627,1517,1138,1066,301,292,48,49,31,21,8,10,101,79,1225,1133,358,331,97,89,53,41,21,21 -050,01,113,Alabama,Russell County,9,1,4328,2191,2137,1069,1066,954,885,8,16,24,26,12,12,124,132,1181,1188,1041,983,37,35,50,60,15,20,1969,1892,928,906,904,835,6,3,14,21,12,11,105,116,1023,1015,982,925,24,15,38,48,13,16,222,245,141,160,50,50,2,13,10,5,0,1,19,16,158,173,59,58,13,20,12,12,2,4 -050,01,113,Alabama,Russell County,9,2,4151,2191,1960,1003,924,1003,891,21,13,15,13,6,9,143,110,1135,1025,1105,965,50,32,51,38,18,16,1992,1816,879,822,964,869,16,8,11,10,6,8,116,99,990,915,1046,936,36,23,37,34,13,13,199,144,124,102,39,22,5,5,4,3,0,1,27,11,145,110,59,29,14,9,14,4,5,3 -050,01,113,Alabama,Russell County,9,3,3695,1869,1826,825,826,937,879,7,9,13,9,6,23,81,80,896,899,987,932,25,30,33,27,12,29,1737,1692,741,735,911,856,3,4,9,6,6,23,67,68,802,798,951,902,15,19,26,21,10,28,132,134,84,91,26,23,4,5,4,3,0,0,14,12,94,101,36,30,10,11,7,6,2,1 -050,01,113,Alabama,Russell County,9,4,3508,1822,1686,786,683,937,930,9,7,11,9,3,4,76,53,856,730,980,963,29,17,30,25,8,8,1705,1572,707,607,915,899,8,5,7,9,2,4,66,48,768,649,953,930,23,14,24,24,7,7,117,114,79,76,22,31,1,2,4,0,1,0,10,5,88,81,27,33,6,3,6,1,1,1 -050,01,113,Alabama,Russell County,9,5,3844,1913,1931,878,817,961,1018,11,8,10,44,8,5,45,39,918,849,986,1041,29,19,20,56,9,10,1789,1829,790,750,938,997,4,5,10,42,5,3,42,32,827,776,962,1015,20,12,20,53,6,7,124,102,88,67,23,21,7,3,0,2,3,2,3,7,91,73,24,26,9,7,0,3,3,3 -050,01,113,Alabama,Russell County,9,6,4648,2203,2445,1233,1259,899,1087,10,16,18,25,3,4,40,54,1265,1302,919,1115,27,35,35,44,6,6,2076,2298,1131,1155,880,1054,7,12,16,24,3,3,39,50,1162,1195,900,1080,24,28,32,42,6,5,127,147,102,104,19,33,3,4,2,1,0,1,1,4,103,107,19,35,3,7,3,2,0,1 -050,01,113,Alabama,Russell County,9,7,4146,2009,2137,1122,1078,799,966,12,7,15,35,8,8,53,43,1163,1117,818,981,37,24,37,50,14,10,1831,1976,988,953,776,943,3,5,14,32,7,7,43,36,1019,985,792,956,20,18,34,45,11,9,178,161,134,125,23,23,9,2,1,3,1,1,10,7,144,132,26,25,17,6,3,5,3,1 -050,01,113,Alabama,Russell County,9,8,3853,1948,1905,1019,846,855,981,19,8,13,27,7,5,35,38,1047,875,870,996,34,28,25,41,9,9,1772,1775,885,751,830,959,12,3,13,26,5,3,27,33,906,775,840,973,23,20,24,38,6,7,176,130,134,95,25,22,7,5,0,1,2,2,8,5,141,100,30,23,11,8,1,3,3,2 -050,01,113,Alabama,Russell County,9,9,3526,1727,1799,827,832,834,911,7,10,18,16,5,2,36,28,856,854,847,924,27,27,27,21,7,5,1609,1698,747,757,811,889,1,9,15,16,4,2,31,25,771,778,823,900,19,24,23,20,5,4,118,101,80,75,23,22,6,1,3,0,1,0,5,3,85,76,24,24,8,3,4,1,2,1 -050,01,113,Alabama,Russell County,9,10,3559,1720,1839,862,839,818,944,10,13,14,15,6,4,10,24,871,857,822,951,15,28,15,21,7,8,1658,1778,814,796,807,933,10,9,11,14,6,2,10,24,823,814,811,940,15,24,12,20,7,6,62,61,48,43,11,11,0,4,3,1,0,2,0,0,48,43,11,11,0,4,3,1,0,2 -050,01,113,Alabama,Russell County,9,11,3955,1943,2012,1032,999,868,967,16,8,7,17,6,0,14,21,1044,1017,872,973,25,20,9,23,7,2,1891,1973,1001,970,852,963,12,7,7,16,6,0,13,17,1012,984,855,967,21,17,9,21,7,1,52,39,31,29,16,4,4,1,0,1,0,0,1,4,32,33,17,6,4,3,0,2,0,1 -050,01,113,Alabama,Russell County,9,12,3898,1893,2005,1031,1047,824,897,11,17,11,18,3,3,13,23,1039,1063,830,906,20,35,14,24,3,3,1842,1962,985,1017,820,889,11,14,11,18,3,3,12,21,992,1031,826,897,19,30,14,24,3,3,51,43,46,30,4,8,0,3,0,0,0,0,1,2,47,32,4,9,1,5,0,0,0,0 -050,01,113,Alabama,Russell County,9,13,3371,1566,1805,900,989,640,764,10,14,6,21,2,2,8,15,907,1000,643,769,15,27,7,24,2,4,1541,1767,882,962,633,754,10,14,6,21,2,2,8,14,889,972,636,759,15,26,7,24,2,4,25,38,18,27,7,10,0,0,0,0,0,0,0,1,18,28,7,10,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,9,14,2755,1191,1564,720,912,449,613,4,6,1,19,6,1,11,13,730,923,451,617,11,15,3,20,8,2,1171,1540,707,893,443,610,4,6,1,18,6,1,10,12,716,903,444,614,10,14,3,19,8,2,20,24,13,19,6,3,0,0,0,1,0,0,1,1,14,20,7,3,1,1,0,1,0,0 -050,01,113,Alabama,Russell County,9,15,1940,876,1064,603,652,254,393,9,3,4,6,0,0,6,10,609,661,256,398,14,9,4,6,0,1,864,1045,596,639,250,388,9,3,4,6,0,0,5,9,601,647,251,393,14,9,4,6,0,0,12,19,7,13,4,5,0,0,0,0,0,0,1,1,8,14,5,5,0,0,0,0,0,1 -050,01,113,Alabama,Russell County,9,16,1338,565,773,371,497,189,264,2,3,0,3,0,0,3,6,374,502,189,265,5,9,0,3,0,0,559,764,366,490,188,263,2,2,0,3,0,0,3,6,369,495,188,264,5,8,0,3,0,0,6,9,5,7,1,1,0,1,0,0,0,0,0,0,5,7,1,1,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,9,17,934,366,568,235,372,128,179,0,0,1,5,0,0,2,12,237,380,128,184,1,11,2,6,0,0,361,562,232,369,126,176,0,0,1,5,0,0,2,12,234,377,126,181,1,11,2,6,0,0,5,6,3,3,2,3,0,0,0,0,0,0,0,0,3,3,2,3,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,9,18,841,240,601,172,370,63,218,1,1,1,5,0,0,3,7,174,376,64,222,4,6,1,5,0,0,239,601,171,370,63,218,1,1,1,5,0,0,3,7,173,376,64,222,4,6,1,5,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,10,0,57134,27520,29614,14159,14528,12267,13852,175,161,198,307,76,80,645,686,14712,15118,12641,14228,387,402,376,482,120,134,25919,28138,13051,13504,11968,13572,117,107,165,292,68,70,550,593,13527,14020,12286,13900,287,302,314,442,95,112,1601,1476,1108,1024,299,280,58,54,33,15,8,10,95,93,1185,1098,355,328,100,100,62,40,25,22 -050,01,113,Alabama,Russell County,10,1,4003,2031,1972,959,931,917,851,13,19,27,28,13,11,102,132,1052,1056,994,946,36,41,48,61,18,16,1819,1742,840,787,867,802,4,4,16,24,13,10,79,115,910,897,928,889,15,18,33,50,15,13,212,230,119,144,50,49,9,15,11,4,0,1,23,17,142,159,66,57,21,23,15,11,3,3 -050,01,113,Alabama,Russell County,10,2,3957,2048,1909,918,914,980,875,19,17,15,15,4,8,112,80,1020,980,1057,932,37,34,48,29,12,16,1883,1748,815,802,942,853,13,8,11,13,4,7,98,65,907,858,1012,900,24,17,39,25,8,13,165,161,103,112,38,22,6,9,4,2,0,1,14,15,113,122,45,32,13,17,9,4,4,3 -050,01,113,Alabama,Russell County,10,3,3731,1898,1833,805,784,971,924,9,9,15,12,5,19,93,85,891,859,1034,978,31,26,38,36,8,22,1762,1715,724,706,939,903,5,6,11,10,5,19,78,71,797,770,993,949,20,17,31,30,5,21,136,118,81,78,32,21,4,3,4,2,0,0,15,14,94,89,41,29,11,9,7,6,3,1 -050,01,113,Alabama,Russell County,10,4,3480,1795,1685,788,668,911,943,7,8,10,9,5,10,74,47,860,709,956,975,24,19,29,21,8,12,1683,1573,710,593,892,913,6,4,7,8,4,10,64,45,773,633,932,943,20,14,23,20,7,11,112,112,78,75,19,30,1,4,3,1,1,0,10,2,87,76,24,32,4,5,6,1,1,1 -050,01,113,Alabama,Russell County,10,5,3623,1805,1818,818,777,907,948,13,7,11,32,8,7,48,47,856,818,931,971,28,26,29,44,12,13,1676,1705,725,703,886,927,4,4,11,30,5,5,45,36,760,737,909,945,19,15,27,40,8,9,129,113,93,74,21,21,9,3,0,2,3,2,3,11,96,81,22,26,9,11,2,4,4,4 -050,01,113,Alabama,Russell County,10,6,4470,2159,2311,1179,1123,918,1086,6,10,25,34,2,3,29,55,1204,1166,931,1116,18,27,35,52,4,7,2024,2208,1070,1051,898,1063,3,6,24,34,2,2,27,52,1093,1092,911,1091,14,21,33,52,4,6,135,103,109,72,20,23,3,4,1,0,0,1,2,3,111,74,20,25,4,6,2,0,0,1 -050,01,113,Alabama,Russell County,10,7,3963,1876,2087,1015,1036,790,966,14,10,16,28,4,6,37,41,1044,1075,806,979,30,27,31,42,5,9,1713,1924,903,911,757,940,6,8,14,28,3,6,30,31,926,940,769,950,19,21,28,40,3,8,163,163,112,125,33,26,8,2,2,0,1,0,7,10,118,135,37,29,11,6,3,2,2,1 -050,01,113,Alabama,Russell County,10,8,3712,1821,1891,971,844,777,972,18,11,15,22,2,2,38,40,997,875,794,992,35,28,27,36,8,10,1646,1775,830,760,763,958,11,3,13,21,2,0,27,33,850,785,774,973,23,19,21,34,6,6,175,116,141,84,14,14,7,8,2,1,0,2,11,7,147,90,20,19,12,9,6,2,2,4 -050,01,113,Alabama,Russell County,10,9,3477,1704,1773,837,798,803,919,8,10,21,14,8,4,27,28,854,819,815,932,21,26,33,22,13,7,1560,1664,735,725,778,889,3,9,18,14,5,4,21,23,749,742,785,899,14,21,26,20,7,6,144,109,102,73,25,30,5,1,3,0,3,0,6,5,105,77,30,33,7,5,7,2,6,1 -050,01,113,Alabama,Russell County,10,10,3534,1707,1827,831,838,820,938,14,7,16,22,7,4,19,18,846,853,826,944,24,18,21,28,9,9,1646,1768,782,791,812,930,12,7,14,21,7,1,19,18,797,806,818,936,22,18,19,27,9,6,61,59,49,47,8,8,2,0,2,1,0,3,0,0,49,47,8,8,2,0,2,1,0,3 -050,01,113,Alabama,Russell County,10,11,3839,1860,1979,967,932,852,996,13,9,8,14,6,1,14,27,978,954,855,1003,23,28,10,18,8,5,1814,1930,939,898,839,988,10,7,7,13,6,1,13,23,949,917,842,993,19,24,9,15,8,5,46,49,28,34,13,8,3,2,1,1,0,0,1,4,29,37,13,10,4,4,1,3,0,0 -050,01,113,Alabama,Russell County,10,12,3895,1881,2014,1017,1059,826,895,11,18,7,17,4,1,16,24,1028,1080,833,899,21,33,12,24,6,3,1828,1975,972,1029,820,890,10,17,7,17,4,1,15,21,983,1047,826,894,20,30,11,23,6,3,53,39,45,30,6,5,1,1,0,0,0,0,1,3,45,33,7,5,1,3,1,1,0,0 -050,01,113,Alabama,Russell County,10,13,3495,1637,1858,933,1003,679,806,12,11,5,18,1,4,7,16,937,1015,684,811,17,22,5,21,1,5,1611,1818,914,974,672,797,12,10,5,18,1,4,7,15,918,985,677,802,17,21,5,20,1,5,26,40,19,29,7,9,0,1,0,0,0,0,0,1,19,30,7,9,0,1,0,1,0,0 -050,01,113,Alabama,Russell County,10,14,2763,1212,1551,718,874,466,641,4,6,2,20,6,0,16,10,732,883,471,645,17,11,4,23,6,0,1193,1530,706,858,460,637,4,6,2,20,6,0,15,9,719,866,464,641,16,11,4,22,6,0,19,21,12,16,6,4,0,0,0,0,0,0,1,1,13,17,7,4,1,0,0,1,0,0 -050,01,113,Alabama,Russell County,10,15,2075,918,1157,624,705,275,428,9,4,3,8,1,0,6,12,629,715,276,432,14,13,4,9,1,0,906,1138,617,693,271,422,9,4,3,7,1,0,5,12,622,703,271,426,14,13,3,8,1,0,12,19,7,12,4,6,0,0,0,1,0,0,1,0,7,12,5,6,0,0,1,1,0,0 -050,01,113,Alabama,Russell County,10,16,1384,594,790,390,506,196,271,4,3,1,4,0,0,3,6,393,511,196,272,6,8,1,5,1,0,588,779,385,496,195,270,4,3,1,4,0,0,3,6,388,501,195,271,6,8,1,5,1,0,6,11,5,10,1,1,0,0,0,0,0,0,0,0,5,10,1,1,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,10,17,895,344,551,227,355,115,183,0,1,1,3,0,0,1,9,227,363,116,186,1,8,1,3,0,0,338,538,223,346,113,180,0,0,1,3,0,0,1,9,223,354,114,183,1,7,1,3,0,0,6,13,4,9,2,3,0,1,0,0,0,0,0,0,4,9,2,3,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,10,18,838,230,608,162,381,64,210,1,1,0,7,0,0,3,9,164,387,66,215,4,7,0,8,0,0,229,608,161,381,64,210,1,1,0,7,0,0,3,9,163,387,66,215,4,7,0,8,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,11,0,57933,27813,30120,14179,14657,12450,14132,201,168,188,304,74,84,721,775,14817,15328,12864,14572,437,427,392,510,109,137,26096,28545,12993,13562,12152,13853,124,113,157,283,65,74,605,660,13537,14136,12501,14227,306,323,328,458,89,117,1717,1575,1186,1095,298,279,77,55,31,21,9,10,116,115,1280,1192,363,345,131,104,64,52,20,20 -050,01,113,Alabama,Russell County,11,1,4028,2032,1996,932,937,931,847,17,17,24,27,4,13,124,155,1047,1082,1018,963,40,40,56,64,10,20,1806,1774,808,795,878,804,5,4,15,19,4,12,96,140,899,925,947,910,17,20,40,53,7,18,226,222,124,142,53,43,12,13,9,8,0,1,28,15,148,157,71,53,23,20,16,11,3,2 -050,01,113,Alabama,Russell County,11,2,4028,2076,1952,927,907,970,881,27,22,13,21,6,7,133,114,1050,1015,1061,955,51,43,50,47,11,15,1886,1747,808,773,937,852,14,10,10,18,6,6,111,88,912,856,1015,911,29,23,41,37,9,13,190,205,119,134,33,29,13,12,3,3,0,1,22,26,138,159,46,44,22,20,9,10,2,2 -050,01,113,Alabama,Russell County,11,3,3784,1940,1844,833,799,987,912,8,9,7,11,4,16,101,97,923,886,1051,971,31,34,39,38,11,24,1785,1723,735,721,954,890,4,8,6,10,4,16,82,78,810,793,1007,939,19,24,32,32,7,20,155,121,98,78,33,22,4,1,1,1,0,0,19,19,113,93,44,32,12,10,7,6,4,4 -050,01,113,Alabama,Russell County,11,4,3504,1818,1686,792,656,913,944,10,12,11,9,5,13,87,52,873,700,969,977,35,21,36,26,7,18,1690,1588,710,592,887,923,8,5,6,7,4,13,75,48,782,633,935,953,27,13,27,23,6,18,128,98,82,64,26,21,2,7,5,2,1,0,12,4,91,67,34,24,8,8,9,3,1,0 -050,01,113,Alabama,Russell County,11,5,3519,1705,1814,739,722,888,1005,11,11,11,20,5,4,51,52,783,769,919,1037,28,26,25,35,8,6,1604,1698,672,649,866,979,7,7,11,17,2,4,46,42,712,686,894,1006,21,18,24,29,5,6,101,116,67,73,22,26,4,4,0,3,3,0,5,10,71,83,25,31,7,8,1,6,3,0 -050,01,113,Alabama,Russell County,11,6,4769,2336,2433,1241,1199,1011,1102,13,6,19,41,7,9,45,76,1277,1259,1035,1144,30,32,32,67,8,15,2181,2294,1119,1103,992,1077,8,4,17,40,5,6,40,64,1153,1154,1013,1111,23,25,27,63,6,11,155,139,122,96,19,25,5,2,2,1,2,3,5,12,124,105,22,33,7,7,5,4,2,4 -050,01,113,Alabama,Russell County,11,7,4007,1867,2140,1016,1077,790,1001,14,9,18,24,4,3,25,26,1038,1098,799,1014,24,21,30,31,5,5,1713,1989,900,953,768,981,4,7,17,24,4,3,20,21,917,971,775,991,11,17,27,30,5,4,154,151,116,124,22,20,10,2,1,0,0,0,5,5,121,127,24,23,13,4,3,1,0,1 -050,01,113,Alabama,Russell County,11,8,3801,1838,1963,954,880,804,988,15,12,15,32,5,4,45,47,994,918,818,1007,37,33,29,48,10,10,1661,1834,812,789,789,973,8,4,15,32,5,2,32,34,841,818,799,983,24,19,26,43,8,7,177,129,142,91,15,15,7,8,0,0,0,2,13,13,153,100,19,24,13,14,3,5,2,3 -050,01,113,Alabama,Russell County,11,9,3463,1690,1773,848,775,777,948,11,7,26,13,8,4,20,26,865,797,785,955,23,20,31,21,9,7,1531,1661,732,699,751,917,5,6,19,13,5,4,19,22,748,717,759,923,16,18,24,20,6,6,159,112,116,76,26,31,6,1,7,0,3,0,1,4,117,80,26,32,7,2,7,1,3,1 -050,01,113,Alabama,Russell County,11,10,3603,1709,1894,840,870,815,972,12,9,13,21,8,3,21,19,857,885,821,978,22,19,22,27,10,5,1630,1821,771,812,810,960,9,9,11,20,8,1,21,19,788,827,816,966,19,19,20,26,10,3,79,73,69,58,5,12,3,0,2,1,0,2,0,0,69,58,5,12,3,0,2,1,0,2 -050,01,113,Alabama,Russell County,11,11,3778,1832,1946,946,915,840,985,18,10,9,10,5,3,14,23,959,933,843,991,29,25,11,16,6,5,1774,1895,914,879,822,976,12,8,8,9,5,2,13,21,926,897,825,981,22,21,10,14,6,4,58,51,32,36,18,9,6,2,1,1,0,1,1,2,33,36,18,10,7,4,1,2,0,1 -050,01,113,Alabama,Russell County,11,12,3904,1912,1992,1029,1005,840,929,12,15,7,17,5,1,19,25,1040,1021,848,938,26,32,13,25,6,2,1853,1963,985,985,832,923,7,14,7,17,5,1,17,23,995,1000,838,931,20,30,12,24,6,2,59,29,44,20,8,6,5,1,0,0,0,0,2,2,45,21,10,7,6,2,1,1,0,0 -050,01,113,Alabama,Russell County,11,13,3548,1657,1891,940,1030,688,819,14,11,7,12,1,4,7,15,945,1042,691,825,20,22,7,14,1,4,1628,1840,914,988,685,813,14,10,7,12,1,4,7,13,919,998,688,819,20,19,7,14,1,4,29,51,26,42,3,6,0,1,0,0,0,0,0,2,26,44,3,6,0,3,0,0,0,0 -050,01,113,Alabama,Russell County,11,14,2820,1240,1580,706,894,505,641,4,7,3,25,6,0,16,13,719,902,510,646,15,19,6,27,6,0,1219,1555,693,876,499,635,4,7,3,25,6,0,14,12,705,883,503,640,13,18,6,27,6,0,21,25,13,18,6,6,0,0,0,0,0,0,2,1,14,19,7,6,2,1,0,0,0,0 -050,01,113,Alabama,Russell County,11,15,2155,952,1203,638,718,299,462,6,5,3,7,1,0,5,11,643,727,300,467,10,12,3,8,1,0,937,1187,630,706,293,459,6,5,3,6,1,0,4,11,634,715,294,464,9,12,3,7,1,0,15,16,8,12,6,3,0,0,0,1,0,0,1,0,9,12,6,3,1,0,0,1,0,0 -050,01,113,Alabama,Russell County,11,16,1430,601,829,395,532,194,284,8,3,1,3,0,0,3,7,397,538,195,286,11,10,1,3,0,0,598,818,392,523,194,282,8,3,1,3,0,0,3,7,394,529,195,284,11,10,1,3,0,0,3,11,3,9,0,2,0,0,0,0,0,0,0,0,3,9,0,2,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,11,17,927,365,562,239,358,123,193,0,2,1,2,0,0,2,7,241,364,124,194,1,9,1,2,0,0,358,536,235,336,120,190,0,1,1,2,0,0,2,7,237,342,121,191,1,8,1,2,0,0,7,26,4,22,3,3,0,1,0,0,0,0,0,0,4,22,3,3,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,11,18,865,243,622,164,383,75,219,1,1,0,9,0,0,3,10,166,392,77,224,4,9,0,11,0,1,242,622,163,383,75,219,1,1,0,9,0,0,3,10,165,392,77,224,4,9,0,11,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,12,0,58098,27835,30263,14168,14771,12383,14107,215,199,202,305,78,79,789,802,14884,15469,12832,14547,460,464,417,523,119,143,26116,28587,12975,13602,12107,13840,133,135,168,283,69,68,664,659,13582,14179,12481,14205,324,336,348,464,101,109,1719,1676,1193,1169,276,267,82,64,34,22,9,11,125,143,1302,1290,351,342,136,128,69,59,18,34 -050,01,113,Alabama,Russell County,12,1,4004,1981,2023,886,953,882,854,20,24,32,30,5,11,156,151,1036,1095,992,958,46,48,73,69,14,17,1779,1775,773,801,840,813,8,9,21,19,5,9,132,124,900,918,935,905,23,22,55,48,12,10,202,248,113,152,42,41,12,15,11,11,0,2,24,27,136,177,57,53,23,26,18,21,2,7 -050,01,113,Alabama,Russell County,12,2,3940,2039,1901,918,884,928,839,26,26,18,24,6,5,143,123,1049,998,1030,919,57,52,52,48,10,14,1850,1674,805,739,896,809,15,13,13,21,6,5,115,87,912,822,978,869,34,27,41,39,9,9,189,227,113,145,32,30,11,13,5,3,0,0,28,36,137,176,52,50,23,25,11,9,1,5 -050,01,113,Alabama,Russell County,12,3,3906,2010,1896,886,843,983,911,11,13,10,13,3,12,117,104,998,938,1054,983,35,35,41,40,13,18,1831,1739,770,729,951,890,6,11,10,12,3,11,91,86,857,809,1008,948,23,24,32,36,10,17,179,157,116,114,32,21,5,2,0,1,0,1,26,18,141,129,46,35,12,11,9,4,3,1 -050,01,113,Alabama,Russell County,12,4,3452,1785,1667,761,666,903,909,12,10,13,8,7,15,89,59,839,720,966,944,30,24,37,24,11,18,1647,1567,665,597,880,891,9,4,8,7,6,15,79,53,735,645,935,923,23,16,29,22,10,18,138,100,96,69,23,18,3,6,5,1,1,0,10,6,104,75,31,21,7,8,8,2,1,0 -050,01,113,Alabama,Russell County,12,5,3364,1597,1767,706,725,821,959,8,14,9,18,4,2,49,49,746,767,850,988,25,28,24,33,7,5,1507,1644,641,640,806,938,5,10,9,15,2,2,44,39,678,673,832,961,18,20,23,28,4,5,90,123,65,85,15,21,3,4,0,3,2,0,5,10,68,94,18,27,7,8,1,5,3,0 -050,01,113,Alabama,Russell County,12,6,4661,2263,2398,1186,1186,990,1085,12,14,17,30,6,10,52,73,1228,1249,1014,1124,32,39,34,58,10,20,2137,2275,1093,1104,969,1064,6,12,16,30,5,8,48,57,1132,1154,990,1094,25,29,33,51,8,11,126,123,93,82,21,21,6,2,1,0,1,2,4,16,96,95,24,30,7,10,1,7,2,9 -050,01,113,Alabama,Russell County,12,7,4087,1963,2124,1066,1054,826,1000,18,14,18,18,8,4,27,34,1089,1077,833,1016,34,24,27,32,9,10,1800,1980,944,941,809,981,5,8,16,18,6,4,20,28,962,960,812,994,16,15,24,30,7,9,163,144,122,113,17,19,13,6,2,0,2,0,7,6,127,117,21,22,18,9,3,2,2,1 -050,01,113,Alabama,Russell County,12,8,3853,1839,2014,954,931,804,980,16,11,16,42,5,5,44,45,992,966,819,997,36,34,33,59,7,9,1649,1865,805,822,784,960,9,6,14,42,5,2,32,33,833,848,793,972,24,23,27,53,7,4,190,149,149,109,20,20,7,5,2,0,0,3,12,12,159,118,26,25,12,11,6,6,0,5 -050,01,113,Alabama,Russell County,12,9,3502,1688,1814,858,768,761,989,15,11,24,15,7,3,23,28,879,790,767,995,28,26,33,24,7,8,1546,1705,754,696,742,963,7,5,19,15,4,3,20,23,772,716,747,968,19,16,27,24,4,5,142,109,104,72,19,26,8,6,5,0,3,0,3,5,107,74,20,27,9,10,6,0,3,3 -050,01,113,Alabama,Russell County,12,10,3570,1712,1858,840,845,819,956,9,9,13,24,9,4,22,20,858,861,828,960,21,19,18,32,9,7,1620,1782,762,790,810,938,6,9,11,23,9,2,22,20,780,806,819,942,18,19,16,31,9,5,92,76,78,55,9,18,3,0,2,1,0,2,0,0,78,55,9,18,3,0,2,1,0,2 -050,01,113,Alabama,Russell County,12,11,3675,1796,1879,916,897,838,938,13,9,11,8,5,3,13,24,927,915,842,945,23,23,13,16,5,7,1734,1818,879,846,819,933,8,7,10,8,5,2,13,22,890,862,823,939,18,20,12,16,5,6,62,61,37,51,19,5,5,2,1,0,0,1,0,2,37,53,19,6,5,3,1,0,0,1 -050,01,113,Alabama,Russell County,12,12,3950,1897,2053,1005,1052,846,950,21,12,3,16,5,1,17,22,1020,1067,851,960,31,28,6,19,6,4,1838,2025,961,1032,839,945,15,11,3,15,5,1,15,21,975,1046,843,955,23,26,6,18,6,4,59,28,44,20,7,5,6,1,0,1,0,0,2,1,45,21,8,5,8,2,0,1,0,0 -050,01,113,Alabama,Russell County,12,13,3624,1733,1891,963,976,736,865,14,12,10,15,1,2,9,21,972,992,737,875,22,29,11,17,1,2,1698,1850,934,945,731,859,14,11,10,15,1,2,8,18,942,958,732,868,22,26,10,17,1,2,35,41,29,31,5,6,0,1,0,0,0,0,1,3,30,34,5,7,0,3,1,0,0,0 -050,01,113,Alabama,Russell County,12,14,2915,1297,1618,753,922,521,650,4,8,3,22,4,2,12,14,765,935,522,652,11,18,8,25,7,2,1271,1585,735,897,515,643,4,8,3,22,4,2,10,13,745,909,516,645,10,17,6,25,6,2,26,33,18,25,6,7,0,0,0,0,0,0,2,1,20,26,6,7,1,1,2,0,1,0 -050,01,113,Alabama,Russell County,12,15,2270,985,1285,635,772,331,487,7,6,3,8,3,0,6,12,641,784,332,490,13,14,3,10,3,0,971,1264,627,756,326,483,7,6,3,7,3,0,5,12,632,768,327,486,12,14,3,9,3,0,14,21,8,16,5,4,0,0,0,1,0,0,1,0,9,16,5,4,1,0,0,1,0,0 -050,01,113,Alabama,Russell County,12,16,1486,614,872,415,551,187,310,7,2,1,5,0,0,4,4,419,555,187,310,11,6,1,5,0,0,610,861,412,542,186,308,7,2,1,5,0,0,4,4,416,546,186,308,11,6,1,5,0,0,4,11,3,9,1,2,0,0,0,0,0,0,0,0,3,9,1,2,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,12,17,973,393,580,253,365,136,201,1,3,1,2,0,0,2,9,255,371,136,203,2,9,2,4,0,2,388,557,250,345,134,199,1,2,1,2,0,0,2,9,252,351,134,201,2,8,2,4,0,2,5,23,3,20,2,2,0,1,0,0,0,0,0,0,3,20,2,2,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,12,18,866,243,623,167,381,71,224,1,1,0,7,0,0,4,10,171,389,72,228,3,8,1,8,0,0,240,621,165,380,70,223,1,1,0,7,0,0,4,10,169,388,71,227,3,8,1,8,0,0,3,2,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0 -050,01,113,Alabama,Russell County,13,0,58237,27763,30474,14059,14794,12397,14296,194,199,213,307,83,87,817,791,14794,15470,12857,14761,451,452,442,510,143,146,26033,28761,12848,13564,12122,14026,120,148,184,285,74,72,685,666,13469,14143,12506,14425,311,348,380,455,113,111,1730,1713,1211,1230,275,270,74,51,29,22,9,15,132,125,1325,1327,351,336,140,104,62,55,30,35 -050,01,113,Alabama,Russell County,13,1,3963,1979,1984,875,930,896,844,16,21,31,28,5,10,156,151,1022,1070,1002,951,43,44,76,62,20,19,1780,1746,766,772,859,805,4,13,22,17,5,8,124,131,881,896,947,901,16,30,57,45,14,14,199,238,109,158,37,39,12,8,9,11,0,2,32,20,141,174,55,50,27,14,19,17,6,5 -050,01,113,Alabama,Russell County,13,2,4013,2021,1992,942,933,889,880,17,24,28,25,6,9,139,121,1073,1039,984,962,42,50,62,49,15,16,1813,1762,814,770,851,856,8,11,19,24,6,8,115,93,925,852,930,922,22,26,47,44,12,13,208,230,128,163,38,24,9,13,9,1,0,1,24,28,148,187,54,40,20,24,15,5,3,3 -050,01,113,Alabama,Russell County,13,3,3803,1951,1852,812,817,1002,898,17,11,10,14,4,10,106,102,911,910,1075,966,40,35,35,40,8,17,1803,1684,721,700,968,873,10,10,10,11,4,8,90,82,805,775,1029,929,28,26,32,31,7,13,148,168,91,117,34,25,7,1,0,3,0,2,16,20,106,135,46,37,12,9,3,9,1,4 -050,01,113,Alabama,Russell County,13,4,3360,1746,1614,725,655,906,874,9,6,11,3,7,16,88,60,809,710,957,916,31,18,36,20,10,18,1616,1521,627,590,886,855,7,4,10,3,7,16,79,53,703,639,933,893,25,13,33,17,9,16,130,93,98,65,20,19,2,2,1,0,0,0,9,7,106,71,24,23,6,5,3,3,1,2 -050,01,113,Alabama,Russell County,13,5,3428,1673,1755,762,724,839,944,4,14,10,20,4,2,54,51,808,769,875,976,20,29,28,36,7,5,1550,1654,668,654,822,925,2,12,9,19,2,2,47,42,709,694,853,950,15,25,26,33,4,3,123,101,94,70,17,19,2,2,1,1,2,0,7,9,99,75,22,26,5,4,2,3,3,2 -050,01,113,Alabama,Russell County,13,6,4682,2221,2461,1156,1188,968,1149,11,11,20,32,6,8,60,73,1208,1248,996,1191,31,34,38,54,11,13,2088,2309,1057,1079,946,1128,7,7,19,30,4,5,55,60,1105,1129,971,1164,24,24,37,48,9,9,133,152,99,109,22,21,4,4,1,2,2,3,5,13,103,119,25,27,7,10,1,6,2,4 -050,01,113,Alabama,Russell County,13,7,4227,2022,2205,1090,1094,858,1036,12,14,18,20,7,6,37,35,1115,1123,873,1051,32,27,31,33,13,11,1872,2073,972,987,849,1019,9,9,16,20,5,6,21,32,985,1013,858,1034,20,19,24,33,7,11,150,132,118,107,9,17,3,5,2,0,2,0,16,3,130,110,15,17,12,8,7,0,6,0 -050,01,113,Alabama,Russell County,13,8,3860,1852,2008,980,951,781,974,14,12,19,33,9,5,49,33,1020,977,800,988,37,28,37,44,17,8,1671,1837,844,822,759,946,5,7,17,32,9,4,37,26,876,845,772,956,20,20,31,41,14,5,181,171,136,129,22,28,9,5,2,1,0,1,12,7,144,132,28,32,17,8,6,3,3,3 -050,01,113,Alabama,Russell County,13,9,3427,1597,1830,806,767,725,988,17,13,19,24,8,6,22,32,825,792,732,999,27,30,27,34,11,10,1478,1718,717,694,709,963,10,8,19,24,5,4,18,25,733,714,713,972,18,20,26,33,7,6,119,112,89,73,16,25,7,5,0,0,3,2,4,7,92,78,19,27,9,10,1,1,4,4 -050,01,113,Alabama,Russell County,13,10,3477,1660,1817,768,802,831,968,10,7,11,18,7,2,33,20,798,815,840,977,29,15,22,27,8,7,1559,1736,689,745,818,950,3,7,10,17,7,1,32,16,718,757,826,957,21,13,21,23,8,3,101,81,79,57,13,18,7,0,1,1,0,1,1,4,80,58,14,20,8,2,1,4,0,4 -050,01,113,Alabama,Russell County,13,11,3591,1731,1860,907,887,780,919,9,15,13,15,6,6,16,18,922,899,784,927,20,25,16,21,7,8,1662,1800,860,836,764,914,6,13,10,15,6,4,16,18,875,848,768,922,17,23,13,21,7,6,69,60,47,51,16,5,3,2,3,0,0,2,0,0,47,51,16,5,3,2,3,0,0,2 -050,01,113,Alabama,Russell County,13,12,3935,1906,2029,995,1030,859,958,23,8,5,13,6,2,18,18,1009,1044,866,965,37,18,9,18,7,3,1854,1996,961,1005,851,954,15,8,5,12,6,2,16,15,973,1016,857,961,27,16,8,16,6,3,52,33,34,25,8,4,8,0,0,1,0,0,2,3,36,28,9,4,10,2,1,2,1,0 -050,01,113,Alabama,Russell County,13,13,3692,1743,1949,966,989,744,897,12,16,10,15,1,3,10,29,974,1012,745,906,22,38,11,18,1,5,1688,1903,917,958,739,888,12,14,10,15,1,2,9,26,924,978,740,896,21,34,11,18,1,4,55,46,49,31,5,9,0,2,0,0,0,1,1,3,50,34,5,10,1,4,0,0,0,1 -050,01,113,Alabama,Russell County,13,14,3051,1365,1686,781,938,561,700,7,12,2,21,2,2,12,13,791,947,566,705,15,21,3,23,2,5,1336,1646,761,908,555,692,6,11,2,21,2,2,10,12,769,917,559,696,13,20,3,22,2,4,29,40,20,30,6,8,1,1,0,0,0,0,2,1,22,30,7,9,2,1,0,1,0,1 -050,01,113,Alabama,Russell County,13,15,2285,968,1317,597,783,351,501,6,7,3,13,5,0,6,13,603,795,352,505,10,15,4,15,5,0,951,1303,585,772,346,499,6,7,3,12,5,0,6,13,591,784,347,503,10,15,4,14,5,0,17,14,12,11,5,2,0,0,0,1,0,0,0,0,12,11,5,2,0,0,0,1,0,0 -050,01,113,Alabama,Russell County,13,16,1538,658,880,452,544,190,324,8,2,2,5,0,0,6,5,457,546,192,326,11,6,3,6,1,1,652,866,450,534,187,320,8,2,2,5,0,0,5,5,454,536,189,322,10,6,3,6,1,1,6,14,2,10,3,4,0,0,0,0,0,0,1,0,3,10,3,4,1,0,0,0,0,0 -050,01,113,Alabama,Russell County,13,17,996,396,600,258,381,135,208,1,3,0,2,0,0,2,6,260,385,135,210,2,8,1,3,0,0,389,575,254,359,132,206,1,2,0,2,0,0,2,6,256,363,132,208,2,7,1,3,0,0,7,25,4,22,3,2,0,1,0,0,0,0,0,0,4,22,3,2,0,1,0,0,0,0 -050,01,113,Alabama,Russell County,13,18,909,274,635,187,381,82,234,1,3,1,6,0,0,3,11,189,389,83,240,2,11,3,7,0,0,271,632,185,379,81,233,1,3,1,6,0,0,3,11,187,387,82,239,2,11,3,7,0,0,3,3,2,2,1,1,0,0,0,0,0,0,0,0,2,2,1,1,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,1,0,83593,41904,41689,36999,37522,3956,3225,162,142,238,298,34,23,515,479,37491,37979,4171,3412,406,378,335,388,52,48,40982,40895,36183,36833,3920,3195,136,117,229,289,23,18,491,443,36655,37258,4123,3367,366,333,321,369,40,39,922,794,816,689,36,30,26,25,9,9,11,5,24,36,836,721,48,45,40,45,14,19,12,9 -050,01,115,Alabama,St. Clair County,1,1,5533,2886,2647,2530,2337,236,201,8,10,20,21,2,3,90,75,2616,2410,299,249,25,26,37,37,5,5,2777,2530,2433,2236,231,199,4,6,19,21,2,1,88,67,2517,2302,293,245,20,17,36,35,5,2,109,117,97,101,5,2,4,4,1,0,0,2,2,8,99,108,6,4,5,9,1,2,0,3 -050,01,115,Alabama,St. Clair County,1,2,5478,2833,2645,2476,2306,249,228,11,7,20,29,4,1,73,74,2543,2378,301,275,23,25,36,41,4,5,2728,2546,2386,2221,246,223,5,4,19,29,2,1,70,68,2452,2287,295,268,16,18,33,40,2,4,105,99,90,85,3,5,6,3,1,0,2,0,3,6,91,91,6,7,7,7,3,1,2,1 -050,01,115,Alabama,St. Clair County,1,3,5447,2820,2627,2478,2327,252,220,6,13,17,20,2,1,65,46,2542,2370,289,246,18,20,33,35,6,2,2731,2557,2395,2270,250,215,6,11,16,19,2,1,62,41,2456,2309,285,237,17,17,32,33,6,2,89,70,83,57,2,5,0,2,1,1,0,0,3,5,86,61,4,9,1,3,1,2,0,0 -050,01,115,Alabama,St. Clair County,1,4,5374,2836,2538,2496,2233,271,256,13,4,18,7,4,2,34,36,2530,2267,288,275,26,14,25,15,7,3,2775,2472,2443,2176,269,253,12,3,17,7,3,2,31,31,2474,2205,286,270,22,11,24,14,6,3,61,66,53,57,2,3,1,1,1,0,1,0,3,5,56,62,2,5,4,3,1,1,1,0 -050,01,115,Alabama,St. Clair County,1,5,4530,2389,2141,2062,1915,270,178,8,7,13,12,0,3,36,26,2096,1940,282,187,28,22,19,16,1,5,2305,2094,1988,1874,265,178,7,5,13,12,0,2,32,23,2018,1896,276,187,24,17,19,16,1,4,84,47,74,41,5,0,1,2,0,0,0,1,4,3,78,44,6,0,4,5,0,0,0,1 -050,01,115,Alabama,St. Clair County,1,6,5512,2680,2832,2305,2517,325,257,10,9,23,23,4,3,13,23,2318,2537,329,265,16,21,26,31,4,4,2588,2751,2227,2451,322,255,5,5,21,20,0,2,13,18,2240,2468,326,260,11,16,24,25,0,3,92,81,78,66,3,2,5,4,2,3,4,1,0,5,78,69,3,5,5,5,2,6,4,1 -050,01,115,Alabama,St. Clair County,1,7,5841,3013,2828,2521,2490,429,275,11,7,18,38,2,0,32,18,2549,2507,439,284,27,17,29,41,4,1,2909,2764,2430,2432,425,272,9,4,18,38,1,0,26,18,2454,2449,432,281,22,14,27,41,3,1,104,64,91,58,4,3,2,3,0,0,1,0,6,0,95,58,7,3,5,3,2,0,1,0 -050,01,115,Alabama,St. Clair County,1,8,5902,3017,2885,2600,2550,353,265,13,10,23,35,3,2,25,23,2623,2570,360,272,32,25,29,41,4,3,2925,2822,2519,2496,347,262,10,8,22,33,3,1,24,22,2541,2515,354,269,28,22,28,39,4,2,92,63,81,54,6,3,3,2,1,2,0,1,1,1,82,55,6,3,4,3,1,2,0,1 -050,01,115,Alabama,St. Clair County,1,9,5979,3126,2853,2707,2557,367,238,14,12,23,25,1,1,14,20,2720,2576,368,241,23,29,28,29,1,4,3074,2810,2657,2519,366,237,14,10,22,25,1,1,14,18,2670,2536,367,238,23,25,27,27,1,2,52,43,50,38,1,1,0,2,1,0,0,0,0,2,50,40,1,3,0,4,1,2,0,2 -050,01,115,Alabama,St. Clair County,1,10,6472,3296,3176,2914,2867,326,244,16,12,17,18,4,2,19,33,2933,2899,328,248,31,35,19,23,5,4,3255,3139,2877,2836,326,240,15,12,16,17,2,2,19,32,2896,2867,328,244,30,34,18,22,3,4,41,37,37,31,0,4,1,0,1,1,2,0,0,1,37,32,0,4,1,1,1,1,2,0 -050,01,115,Alabama,St. Clair County,1,11,6160,3080,3080,2735,2764,295,243,12,14,12,30,0,1,26,28,2761,2791,297,245,35,38,13,35,0,3,3050,3049,2708,2735,293,242,11,14,12,29,0,1,26,28,2734,2762,295,244,34,38,13,34,0,3,30,31,27,29,2,1,1,0,0,1,0,0,0,0,27,29,2,1,1,0,0,1,0,0 -050,01,115,Alabama,St. Clair County,1,12,5474,2636,2838,2375,2604,202,186,11,9,21,13,2,1,25,25,2400,2629,202,187,34,32,23,14,2,2,2613,2819,2355,2588,201,185,10,7,21,13,1,1,25,25,2380,2613,201,186,33,30,23,14,1,2,23,19,20,16,1,1,1,2,0,0,1,0,0,0,20,16,1,1,1,2,0,0,1,0 -050,01,115,Alabama,St. Clair County,1,13,4982,2441,2541,2253,2363,152,142,9,12,8,9,1,1,18,14,2270,2376,154,143,26,26,8,9,1,1,2428,2521,2243,2344,151,142,8,12,8,8,1,1,17,14,2259,2357,152,143,25,26,8,8,1,1,13,20,10,19,1,0,1,0,0,1,0,0,1,0,11,19,2,0,1,0,0,1,0,0 -050,01,115,Alabama,St. Clair County,1,14,3891,1846,2045,1713,1901,95,113,11,9,2,6,2,1,23,15,1735,1916,97,114,33,21,3,7,2,2,1832,2027,1700,1883,94,113,11,9,2,6,2,1,23,15,1722,1898,96,114,33,21,3,7,2,2,14,18,13,18,1,0,0,0,0,0,0,0,0,0,13,18,1,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,1,15,2791,1339,1452,1248,1360,70,73,6,4,2,4,2,1,11,10,1258,1370,72,74,16,13,3,5,4,3,1333,1442,1243,1350,70,73,6,4,2,4,2,1,10,10,1252,1360,71,74,15,13,2,5,3,3,6,10,5,10,0,0,0,0,0,0,0,0,1,0,6,10,1,0,1,0,1,0,1,0 -050,01,115,Alabama,St. Clair County,1,16,1998,901,1097,860,1038,32,48,3,1,0,5,0,0,6,5,866,1042,32,49,9,6,0,5,0,0,898,1094,857,1035,32,48,3,1,0,5,0,0,6,5,863,1039,32,49,9,6,0,5,0,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,1,17,1274,466,808,445,767,19,32,0,1,1,3,0,0,1,5,446,772,20,32,1,5,2,4,1,0,463,805,442,764,19,32,0,1,1,3,0,0,1,5,443,769,20,32,1,5,2,4,1,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,1,18,955,299,656,281,626,13,26,0,1,0,0,1,0,4,3,285,629,14,26,3,3,2,0,1,1,298,653,280,623,13,26,0,1,0,0,1,0,4,3,284,626,14,26,3,3,2,0,1,1,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,2,0,83366,41797,41569,36922,37434,3932,3196,161,142,236,296,31,22,515,479,37414,37891,4147,3383,405,378,333,386,49,47,40875,40775,36106,36745,3896,3166,135,117,227,287,20,17,491,443,36578,37170,4099,3338,365,333,319,367,37,38,922,794,816,689,36,30,26,25,9,9,11,5,24,36,836,721,48,45,40,45,14,19,12,9 -050,01,115,Alabama,St. Clair County,2,1,5514,2877,2637,2521,2328,236,200,8,10,20,21,2,3,90,75,2607,2401,299,248,25,26,37,37,5,5,2768,2520,2424,2227,231,198,4,6,19,21,2,1,88,67,2508,2293,293,244,20,17,36,35,5,2,109,117,97,101,5,2,4,4,1,0,0,2,2,8,99,108,6,4,5,9,1,2,0,3 -050,01,115,Alabama,St. Clair County,2,2,5462,2828,2634,2472,2300,248,223,11,7,20,29,4,1,73,74,2539,2372,300,270,23,25,36,41,4,5,2723,2535,2382,2215,245,218,5,4,19,29,2,1,70,68,2448,2281,294,263,16,18,33,40,2,4,105,99,90,85,3,5,6,3,1,0,2,0,3,6,91,91,6,7,7,7,3,1,2,1 -050,01,115,Alabama,St. Clair County,2,3,5437,2813,2624,2474,2327,249,217,6,13,17,20,2,1,65,46,2538,2370,286,243,18,20,33,35,6,2,2724,2554,2391,2270,247,212,6,11,16,19,2,1,62,41,2452,2309,282,234,17,17,32,33,6,2,89,70,83,57,2,5,0,2,1,1,0,0,3,5,86,61,4,9,1,3,1,2,0,0 -050,01,115,Alabama,St. Clair County,2,4,5368,2835,2533,2496,2230,270,254,13,4,18,7,4,2,34,36,2530,2264,287,273,26,14,25,15,7,3,2774,2467,2443,2173,268,251,12,3,17,7,3,2,31,31,2474,2202,285,268,22,11,24,14,6,3,61,66,53,57,2,3,1,1,1,0,1,0,3,5,56,62,2,5,4,3,1,1,1,0 -050,01,115,Alabama,St. Clair County,2,5,4524,2386,2138,2060,1913,269,177,8,7,13,12,0,3,36,26,2094,1938,281,186,28,22,19,16,1,5,2302,2091,1986,1872,264,177,7,5,13,12,0,2,32,23,2016,1894,275,186,24,17,19,16,1,4,84,47,74,41,5,0,1,2,0,0,0,1,4,3,78,44,6,0,4,5,0,0,0,1 -050,01,115,Alabama,St. Clair County,2,6,5494,2672,2822,2300,2507,322,257,10,9,23,23,4,3,13,23,2313,2527,326,265,16,21,26,31,4,4,2580,2741,2222,2441,319,255,5,5,21,20,0,2,13,18,2235,2458,323,260,11,16,24,25,0,3,92,81,78,66,3,2,5,4,2,3,4,1,0,5,78,69,3,5,5,5,2,6,4,1 -050,01,115,Alabama,St. Clair County,2,7,5826,3006,2820,2516,2483,428,274,10,7,18,38,2,0,32,18,2544,2500,438,283,26,17,29,41,4,1,2902,2756,2425,2425,424,271,8,4,18,38,1,0,26,18,2449,2442,431,280,21,14,27,41,3,1,104,64,91,58,4,3,2,3,0,0,1,0,6,0,95,58,7,3,5,3,2,0,1,0 -050,01,115,Alabama,St. Clair County,2,8,5878,3006,2872,2592,2542,351,261,13,10,23,34,2,2,25,23,2615,2562,358,268,32,25,29,40,3,3,2914,2809,2511,2488,345,258,10,8,22,32,2,1,24,22,2533,2507,352,265,28,22,28,38,3,2,92,63,81,54,6,3,3,2,1,2,0,1,1,1,82,55,6,3,4,3,1,2,0,1 -050,01,115,Alabama,St. Clair County,2,9,5961,3114,2847,2699,2553,363,236,14,12,23,25,1,1,14,20,2712,2572,364,239,23,29,28,29,1,4,3062,2804,2649,2515,362,235,14,10,22,25,1,1,14,18,2662,2532,363,236,23,25,27,27,1,2,52,43,50,38,1,1,0,2,1,0,0,0,0,2,50,40,1,3,0,4,1,2,0,2 -050,01,115,Alabama,St. Clair County,2,10,6451,3289,3162,2910,2858,325,239,16,12,16,18,3,2,19,33,2929,2890,327,243,31,35,18,23,4,4,3248,3125,2873,2827,325,235,15,12,15,17,1,2,19,32,2892,2858,327,239,30,34,17,22,2,4,41,37,37,31,0,4,1,0,1,1,2,0,0,1,37,32,0,4,1,1,1,1,2,0 -050,01,115,Alabama,St. Clair County,2,11,6142,3073,3069,2734,2756,289,240,12,14,12,30,0,1,26,28,2760,2783,291,242,35,38,13,35,0,3,3043,3038,2707,2727,287,239,11,14,12,29,0,1,26,28,2733,2754,289,241,34,38,13,34,0,3,30,31,27,29,2,1,1,0,0,1,0,0,0,0,27,29,2,1,1,0,0,1,0,0 -050,01,115,Alabama,St. Clair County,2,12,5455,2625,2830,2365,2597,201,185,11,9,21,13,2,1,25,25,2390,2622,201,186,34,32,23,14,2,2,2602,2811,2345,2581,200,184,10,7,21,13,1,1,25,25,2370,2606,200,185,33,30,23,14,1,2,23,19,20,16,1,1,1,2,0,0,1,0,0,0,20,16,1,1,1,2,0,0,1,0 -050,01,115,Alabama,St. Clair County,2,13,4964,2434,2530,2247,2353,152,142,9,12,7,8,1,1,18,14,2264,2366,154,143,26,26,7,8,1,1,2421,2510,2237,2334,151,142,8,12,7,7,1,1,17,14,2253,2347,152,143,25,26,7,7,1,1,13,20,10,19,1,0,1,0,0,1,0,0,1,0,11,19,2,0,1,0,0,1,0,0 -050,01,115,Alabama,St. Clair County,2,14,3884,1840,2044,1707,1900,95,113,11,9,2,6,2,1,23,15,1729,1915,97,114,33,21,3,7,2,2,1826,2026,1694,1882,94,113,11,9,2,6,2,1,23,15,1716,1897,96,114,33,21,3,7,2,2,14,18,13,18,1,0,0,0,0,0,0,0,0,0,13,18,1,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,2,15,2788,1338,1450,1248,1359,70,73,6,4,2,4,1,0,11,10,1258,1369,72,74,16,13,3,5,3,2,1332,1440,1243,1349,70,73,6,4,2,4,1,0,10,10,1252,1359,71,74,15,13,2,5,2,2,6,10,5,10,0,0,0,0,0,0,0,0,1,0,6,10,1,0,1,0,1,0,1,0 -050,01,115,Alabama,St. Clair County,2,16,1994,899,1095,858,1036,32,48,3,1,0,5,0,0,6,5,864,1040,32,49,9,6,0,5,0,0,896,1092,855,1033,32,48,3,1,0,5,0,0,6,5,861,1037,32,49,9,6,0,5,0,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,2,17,1269,463,806,442,766,19,31,0,1,1,3,0,0,1,5,443,771,20,31,1,5,2,4,1,0,460,803,439,763,19,31,0,1,1,3,0,0,1,5,440,768,20,31,1,5,2,4,1,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,2,18,955,299,656,281,626,13,26,0,1,0,0,1,0,4,3,285,629,14,26,3,3,2,0,1,1,298,653,280,623,13,26,0,1,0,0,1,0,4,3,284,626,14,26,3,3,2,0,1,1,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,3,0,83587,41893,41694,36995,37545,3950,3203,164,143,240,304,31,21,513,478,37471,37972,4161,3404,424,392,323,384,47,43,40977,40903,36181,36856,3915,3175,138,118,232,295,21,16,490,443,36637,37257,4117,3362,385,346,309,364,33,30,916,791,814,689,35,28,26,25,8,9,10,5,23,35,834,715,44,42,39,46,14,20,14,13 -050,01,115,Alabama,St. Clair County,3,1,5523,2875,2648,2526,2340,231,203,8,10,19,21,2,3,89,71,2614,2407,289,256,25,25,34,31,5,5,2770,2535,2432,2242,227,201,4,6,18,21,2,1,87,64,2518,2304,284,248,20,17,33,31,5,1,105,113,94,98,4,2,4,4,1,0,0,2,2,7,96,103,5,8,5,8,1,0,0,4 -050,01,115,Alabama,St. Clair County,3,2,5438,2812,2626,2457,2294,245,219,12,8,21,31,4,1,73,73,2525,2363,295,264,28,28,36,44,4,2,2709,2526,2369,2207,242,215,6,5,20,31,2,1,70,67,2434,2270,291,257,21,22,33,42,2,2,103,100,88,87,3,4,6,3,1,0,2,0,3,6,91,93,4,7,7,6,3,2,2,0 -050,01,115,Alabama,St. Clair County,3,3,5469,2835,2634,2491,2335,255,218,7,13,18,20,2,1,62,47,2548,2376,291,247,25,27,31,30,3,3,2746,2565,2407,2277,253,214,7,11,17,19,2,1,60,43,2462,2315,288,242,24,23,29,27,3,3,89,69,84,58,2,4,0,2,1,1,0,0,2,4,86,61,3,5,1,4,2,3,0,0 -050,01,115,Alabama,St. Clair County,3,4,5323,2816,2507,2476,2205,270,254,13,4,18,7,4,1,35,36,2507,2238,289,273,29,18,24,14,6,1,2754,2437,2422,2145,268,251,12,3,17,7,3,1,32,30,2450,2172,284,269,27,14,23,11,5,1,62,70,54,60,2,3,1,1,1,0,1,0,3,6,57,66,5,4,2,4,1,3,1,0 -050,01,115,Alabama,St. Clair County,3,5,4590,2419,2171,2083,1948,277,177,8,6,13,12,0,3,38,25,2118,1969,291,187,25,17,22,18,1,5,2339,2125,2012,1908,273,177,7,4,13,12,0,2,34,22,2044,1927,285,187,22,12,21,18,1,3,80,46,71,40,4,0,1,2,0,0,0,1,4,3,74,42,6,0,3,5,1,0,0,2 -050,01,115,Alabama,St. Clair County,3,6,5474,2668,2806,2306,2488,317,255,8,9,21,27,3,2,13,25,2317,2505,322,266,17,24,22,34,3,5,2578,2731,2227,2428,314,253,4,5,20,24,0,1,13,20,2238,2442,319,262,13,17,21,29,0,1,90,75,79,60,3,2,4,4,1,3,3,1,0,5,79,63,3,4,4,7,1,5,3,4 -050,01,115,Alabama,St. Clair County,3,7,5823,3003,2820,2506,2489,430,271,11,6,21,37,2,0,33,17,2532,2503,438,278,29,14,31,42,6,0,2897,2757,2414,2431,426,268,8,4,21,37,1,0,27,17,2435,2445,434,275,22,12,30,42,3,0,106,63,92,58,4,3,3,2,0,0,1,0,6,0,97,58,4,3,7,2,1,0,3,0 -050,01,115,Alabama,St. Clair County,3,8,5858,2983,2875,2569,2541,351,268,13,10,22,32,2,2,26,22,2592,2558,356,272,31,27,27,36,4,5,2893,2808,2490,2484,345,265,10,7,21,30,2,1,25,21,2513,2501,350,269,27,23,26,34,3,3,90,67,79,57,6,3,3,3,1,2,0,1,1,1,79,57,6,3,4,4,1,2,1,2 -050,01,115,Alabama,St. Clair County,3,9,5982,3120,2862,2701,2564,366,236,14,12,25,28,1,1,13,21,2714,2581,367,241,26,29,25,31,1,2,3067,2820,2651,2527,364,235,14,10,24,28,1,1,13,19,2664,2543,365,239,26,25,24,30,1,2,53,42,50,37,2,1,0,2,1,0,0,0,0,2,50,38,2,2,0,4,1,1,0,0 -050,01,115,Alabama,St. Clair County,3,10,6422,3273,3149,2899,2847,323,237,14,13,14,16,3,3,20,33,2918,2875,326,244,31,39,15,19,3,7,3231,3112,2861,2816,323,233,13,13,13,15,1,3,20,32,2880,2844,326,240,30,39,14,17,1,6,42,37,38,31,0,4,1,0,1,1,2,0,0,1,38,31,0,4,1,0,1,2,2,1 -050,01,115,Alabama,St. Clair County,3,11,6169,3093,3076,2746,2765,295,239,13,14,13,29,0,1,26,28,2771,2792,297,241,36,37,15,33,0,3,3063,3046,2719,2737,293,238,12,14,13,28,0,1,26,28,2744,2764,295,240,35,37,15,32,0,3,30,30,27,28,2,1,1,0,0,1,0,0,0,0,27,28,2,1,1,0,0,1,0,0 -050,01,115,Alabama,St. Clair County,3,12,5494,2646,2848,2383,2609,204,187,12,9,21,17,2,1,24,25,2406,2633,207,189,34,31,23,20,2,1,2622,2828,2362,2592,203,186,11,7,21,17,1,1,24,25,2385,2616,206,188,33,29,23,20,1,1,24,20,21,17,1,1,1,2,0,0,1,0,0,0,21,17,1,1,1,2,0,0,1,0 -050,01,115,Alabama,St. Clair County,3,13,5022,2458,2564,2268,2381,153,147,10,11,9,9,1,1,17,15,2284,2394,154,149,25,25,10,10,2,1,2443,2543,2256,2361,152,147,9,11,9,8,1,1,16,15,2271,2374,153,149,23,25,10,9,2,1,15,21,12,20,1,0,1,0,0,1,0,0,1,0,13,20,1,0,2,0,0,1,0,0 -050,01,115,Alabama,St. Clair County,3,14,3918,1857,2061,1720,1915,98,113,11,10,2,6,3,1,23,16,1742,1930,100,115,32,23,4,8,4,1,1843,2042,1707,1896,97,113,11,10,2,6,3,1,23,16,1729,1911,99,115,32,23,4,8,4,1,14,19,13,19,1,0,0,0,0,0,0,0,0,0,13,19,1,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,3,15,2809,1349,1460,1260,1367,68,75,7,4,2,4,1,0,11,10,1271,1377,69,76,18,12,3,5,2,1,1343,1450,1255,1357,68,75,7,4,2,4,1,0,10,10,1265,1367,68,76,17,12,2,5,1,1,6,10,5,10,0,0,0,0,0,0,0,0,1,0,6,10,1,0,1,0,1,0,1,0 -050,01,115,Alabama,St. Clair County,3,16,2015,908,1107,866,1048,34,48,3,1,0,4,0,0,5,6,871,1054,34,50,8,6,0,4,0,0,905,1104,863,1045,34,48,3,1,0,4,0,0,5,6,868,1051,34,50,8,6,0,4,0,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,3,17,1300,481,819,459,778,20,31,0,1,1,4,0,0,1,5,459,783,21,31,1,5,1,5,0,1,478,816,456,775,20,31,0,1,1,4,0,0,1,5,456,780,21,31,1,5,1,5,0,1,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,3,18,958,297,661,279,631,13,25,0,2,0,0,1,0,4,3,282,634,15,25,4,5,0,0,1,0,296,658,278,628,13,25,0,2,0,0,1,0,4,3,281,631,15,25,4,5,0,0,1,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,4,0,83992,42021,41971,37048,37701,4013,3271,145,138,246,318,31,22,538,521,37541,38185,4243,3508,408,400,327,397,54,40,41090,41156,36226,36999,3973,3239,117,110,238,310,21,16,515,482,36701,37451,4192,3453,367,349,316,375,41,29,931,815,822,702,40,32,28,28,8,8,10,6,23,39,840,734,51,55,41,51,11,22,13,11 -050,01,115,Alabama,St. Clair County,4,1,5520,2849,2671,2508,2343,226,206,5,5,17,19,2,3,91,95,2595,2435,290,275,22,21,31,34,4,3,2738,2565,2410,2252,219,204,1,2,17,19,2,1,89,87,2496,2336,281,268,17,16,31,32,4,1,111,106,98,91,7,2,4,3,0,0,0,2,2,8,99,99,9,7,5,5,0,2,0,2 -050,01,115,Alabama,St. Clair County,4,2,5477,2821,2656,2464,2307,250,231,10,11,20,31,4,1,73,75,2532,2377,298,279,27,29,34,48,5,3,2710,2537,2368,2205,246,225,5,6,19,31,2,1,70,69,2433,2271,293,269,20,20,32,44,3,2,111,119,96,102,4,6,5,5,1,0,2,0,3,6,99,106,5,10,7,9,2,4,2,1 -050,01,115,Alabama,St. Clair County,4,3,5534,2880,2654,2511,2345,275,221,7,11,19,19,2,1,66,57,2572,2399,312,255,26,31,31,29,5,1,2794,2579,2430,2280,274,217,7,8,17,18,2,1,64,55,2489,2332,309,250,26,27,29,28,5,1,86,75,81,65,1,4,0,3,2,1,0,0,2,2,83,67,3,5,0,4,2,1,0,0 -050,01,115,Alabama,St. Clair County,4,4,5094,2690,2404,2358,2106,260,245,10,5,16,9,3,0,43,39,2396,2140,287,267,28,20,22,18,3,3,2635,2326,2309,2040,257,242,9,4,15,9,3,0,42,31,2346,2068,283,260,27,13,21,14,3,2,55,78,49,66,3,3,1,1,1,0,0,0,1,8,50,72,4,7,1,7,1,4,0,1 -050,01,115,Alabama,St. Clair County,4,5,4789,2497,2292,2132,2048,308,193,5,7,13,9,1,4,38,31,2164,2073,324,208,21,21,19,19,7,6,2423,2248,2069,2012,304,193,4,5,13,9,0,3,33,26,2098,2034,317,203,17,16,19,17,5,4,74,44,63,36,4,0,1,2,0,0,1,1,5,5,66,39,7,5,4,5,0,2,2,2 -050,01,115,Alabama,St. Clair County,4,6,5355,2628,2727,2276,2428,303,227,5,6,19,37,3,2,22,27,2294,2454,310,236,18,21,25,41,4,6,2544,2663,2201,2375,301,225,3,4,18,35,0,1,21,23,2218,2397,308,231,15,16,24,38,1,4,84,64,75,53,2,2,2,2,1,2,3,1,1,4,76,57,2,5,3,5,1,3,3,2 -050,01,115,Alabama,St. Clair County,4,7,5802,2984,2818,2487,2468,438,283,8,5,24,39,2,0,25,23,2508,2489,445,290,23,16,31,44,5,2,2880,2753,2399,2410,432,281,4,3,24,38,1,0,20,21,2416,2430,438,287,15,13,30,42,3,2,104,65,88,58,6,2,4,2,0,1,1,0,5,2,92,59,7,3,8,3,1,2,2,0 -050,01,115,Alabama,St. Clair County,4,8,5723,2897,2826,2488,2491,345,283,11,10,21,22,1,2,31,18,2518,2508,351,290,29,26,28,23,2,2,2807,2763,2407,2439,340,279,9,6,21,21,1,1,29,17,2435,2455,345,286,27,21,27,22,2,1,90,63,81,52,5,4,2,4,0,1,0,1,2,1,83,53,6,4,2,5,1,1,0,1 -050,01,115,Alabama,St. Clair County,4,9,6075,3170,2905,2737,2589,380,243,15,13,25,37,2,1,11,22,2748,2609,382,250,25,32,25,38,2,2,3110,2865,2684,2557,377,241,12,9,24,36,2,1,11,21,2695,2576,379,248,22,27,24,37,2,2,60,40,53,32,3,2,3,4,1,1,0,0,0,1,53,33,3,2,3,5,1,1,0,0 -050,01,115,Alabama,St. Clair County,4,10,6179,3123,3056,2767,2754,306,245,12,11,14,15,3,3,21,28,2785,2781,308,249,30,33,16,17,5,5,3073,3012,2724,2717,306,241,9,11,12,14,1,3,21,26,2742,2742,308,245,27,32,14,16,3,4,50,44,43,37,0,4,3,0,2,1,2,0,0,2,43,39,0,4,3,1,2,1,2,1 -050,01,115,Alabama,St. Clair County,4,11,6310,3187,3123,2816,2812,310,241,14,15,17,25,0,1,30,29,2844,2840,313,246,40,41,20,26,1,2,3156,3091,2788,2782,308,240,13,15,17,24,0,1,30,29,2816,2810,311,245,39,41,20,25,1,2,31,32,28,30,2,1,1,0,0,1,0,0,0,0,28,30,2,1,1,0,0,1,0,0 -050,01,115,Alabama,St. Clair County,4,12,5563,2684,2879,2427,2629,202,191,12,9,22,27,2,2,19,21,2444,2648,205,195,29,26,23,29,2,3,2655,2856,2401,2610,201,190,11,7,22,27,1,1,19,21,2418,2629,204,194,28,24,23,29,1,2,29,23,26,19,1,1,1,2,0,0,1,1,0,0,26,19,1,1,1,2,0,0,1,1 -050,01,115,Alabama,St. Clair County,4,13,5263,2575,2688,2363,2494,168,160,8,10,13,9,1,0,22,15,2382,2507,171,162,29,24,14,10,2,0,2558,2668,2349,2474,167,160,7,10,13,9,1,0,21,15,2368,2487,170,162,27,24,14,10,1,0,17,20,14,20,1,0,1,0,0,0,0,0,1,0,14,20,1,0,2,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,4,14,4008,1897,2111,1749,1962,108,114,11,11,4,6,3,2,22,16,1771,1977,109,116,29,26,5,6,5,2,1884,2093,1737,1945,107,113,11,11,4,6,3,2,22,16,1759,1960,108,115,29,26,5,6,5,2,13,18,12,17,1,1,0,0,0,0,0,0,0,0,12,17,1,1,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,4,15,2898,1382,1516,1299,1418,60,78,9,5,1,5,0,0,13,10,1312,1427,61,79,20,14,2,6,0,0,1374,1503,1292,1405,60,78,9,5,1,5,0,0,12,10,1304,1414,61,79,19,14,2,6,0,0,8,13,7,13,0,0,0,0,0,0,0,0,1,0,8,13,0,0,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,4,16,2075,938,1137,887,1077,41,49,3,1,0,4,1,0,6,6,892,1083,43,49,8,7,0,4,1,0,934,1133,883,1073,41,49,3,1,0,4,1,0,6,6,888,1079,43,49,8,7,0,4,1,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,4,17,1324,505,819,481,779,22,31,0,0,1,4,0,0,1,5,482,783,22,32,1,5,1,4,0,0,502,815,478,775,22,31,0,0,1,4,0,0,1,5,479,779,22,32,1,5,1,4,0,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,4,18,1003,314,689,298,651,11,30,0,3,0,1,1,0,4,4,302,655,12,30,3,7,0,1,1,0,313,686,297,648,11,30,0,3,0,1,1,0,4,4,301,652,12,30,3,7,0,1,1,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,5,0,84779,42359,42420,37297,37999,4068,3395,156,136,263,346,31,25,544,519,37806,38478,4303,3617,421,382,347,436,49,53,41395,41571,36450,37272,4023,3356,127,109,255,338,21,17,519,479,36939,37721,4244,3562,378,331,337,415,34,34,964,849,847,727,45,39,29,27,8,8,10,8,25,40,867,757,59,55,43,51,10,21,15,19 -050,01,115,Alabama,St. Clair County,5,1,5431,2804,2627,2480,2301,212,203,6,4,15,21,2,2,89,96,2561,2393,277,268,23,25,29,38,4,4,2703,2521,2390,2211,206,199,3,2,15,21,2,1,87,87,2469,2296,269,260,19,17,29,34,4,2,101,106,90,90,6,4,3,2,0,0,0,1,2,9,92,97,8,8,4,8,0,4,0,2 -050,01,115,Alabama,St. Clair County,5,2,5550,2872,2678,2514,2313,248,235,10,13,20,39,3,2,77,76,2587,2386,298,284,30,31,31,52,4,4,2752,2563,2409,2214,244,232,5,6,19,39,2,1,73,71,2480,2284,292,278,21,22,30,50,2,2,120,115,105,99,4,3,5,7,1,0,1,1,4,5,107,102,6,6,9,9,1,2,2,2 -050,01,115,Alabama,St. Clair County,5,3,5637,2942,2695,2556,2378,283,232,8,8,25,21,3,2,67,54,2618,2431,322,261,28,26,38,30,6,3,2840,2616,2463,2310,281,224,7,7,23,20,2,2,64,53,2523,2362,318,253,25,24,36,29,5,3,102,79,93,68,2,8,1,1,2,1,1,0,3,1,95,69,4,8,3,2,2,1,1,0 -050,01,115,Alabama,St. Clair County,5,4,5070,2635,2435,2308,2124,259,245,9,6,11,16,3,0,45,44,2349,2162,285,270,24,24,19,25,4,3,2579,2352,2255,2056,257,242,9,3,10,16,3,0,45,35,2296,2087,283,263,24,13,18,23,4,1,56,83,53,68,2,3,0,3,1,0,0,0,0,9,53,75,2,7,0,11,1,2,0,2 -050,01,115,Alabama,St. Clair County,5,5,4864,2550,2314,2159,2071,318,193,10,7,19,10,1,3,43,30,2200,2099,338,204,28,17,26,19,3,8,2469,2271,2095,2037,310,191,7,5,19,10,0,2,38,26,2131,2062,326,201,25,14,26,18,1,5,81,43,64,34,8,2,3,2,0,0,1,1,5,4,69,37,12,3,3,3,0,1,2,3 -050,01,115,Alabama,St. Clair County,5,6,5292,2588,2704,2225,2381,309,246,9,7,21,42,2,4,22,24,2244,2399,317,255,21,18,26,51,3,7,2511,2634,2157,2323,308,244,6,6,20,40,0,1,20,20,2175,2338,315,251,18,16,24,47,0,2,77,70,68,58,1,2,3,1,1,2,2,3,2,4,69,61,2,4,3,2,2,4,3,5 -050,01,115,Alabama,St. Clair County,5,7,5832,3008,2824,2516,2471,437,286,4,6,25,31,3,1,23,29,2537,2499,441,291,19,21,29,39,5,4,2907,2757,2431,2413,428,285,2,3,25,30,1,1,20,25,2450,2437,431,290,16,14,29,37,1,4,101,67,85,58,9,1,2,3,0,1,2,0,3,4,87,62,10,1,3,7,0,2,4,0 -050,01,115,Alabama,St. Clair County,5,8,5699,2867,2832,2465,2490,340,291,12,9,19,26,0,1,31,15,2496,2504,346,297,36,20,26,26,2,1,2771,2768,2379,2437,335,285,10,5,19,25,0,1,28,15,2407,2451,340,291,31,16,25,25,2,1,96,64,86,53,5,6,2,4,0,1,0,0,3,0,89,53,6,6,5,4,1,1,0,0 -050,01,115,Alabama,St. Clair County,5,9,6170,3204,2966,2761,2618,385,276,15,13,25,35,3,2,15,22,2776,2638,385,282,27,30,28,36,3,3,3142,2916,2706,2577,382,274,13,10,24,34,3,1,14,20,2720,2596,382,279,24,26,27,35,3,1,62,50,55,41,3,2,2,3,1,1,0,1,1,2,56,42,3,3,3,4,1,1,0,2 -050,01,115,Alabama,St. Clair County,5,10,6015,3066,2949,2698,2651,321,246,12,8,15,17,2,3,18,24,2715,2672,324,250,27,25,16,21,2,6,3014,2902,2653,2610,321,243,8,8,13,16,1,3,18,22,2670,2630,324,246,23,25,14,19,1,4,52,47,45,41,0,3,4,0,2,1,1,0,0,2,45,42,0,4,4,0,2,2,1,2 -050,01,115,Alabama,St. Clair County,5,11,6287,3150,3137,2776,2825,316,244,15,17,17,22,1,1,25,28,2800,2849,318,248,37,41,19,26,1,4,3115,3110,2746,2801,314,242,13,17,17,21,0,1,25,28,2770,2825,316,246,35,41,19,25,0,4,35,27,30,24,2,2,2,0,0,1,1,0,0,0,30,24,2,2,2,0,0,1,1,0 -050,01,115,Alabama,St. Clair County,5,12,5747,2808,2939,2530,2672,220,207,9,8,28,35,2,2,19,15,2548,2686,222,209,22,18,31,38,4,3,2782,2903,2507,2640,219,205,8,7,28,35,1,1,19,15,2525,2654,221,207,21,17,31,38,3,2,26,36,23,32,1,2,1,1,0,0,1,1,0,0,23,32,1,2,1,1,0,0,1,1 -050,01,115,Alabama,St. Clair County,5,13,5192,2499,2693,2289,2478,163,180,10,9,15,10,1,0,21,16,2308,2493,166,181,29,21,16,13,1,1,2479,2676,2271,2461,162,180,9,9,15,10,1,0,21,16,2290,2476,165,181,28,21,16,13,1,1,20,17,18,17,1,0,1,0,0,0,0,0,0,0,18,17,1,0,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,5,14,4307,2017,2290,1862,2138,118,114,11,12,5,5,2,2,19,19,1879,2155,122,117,27,30,7,5,3,2,1999,2272,1846,2121,117,113,11,12,5,5,2,2,18,19,1862,2138,120,116,26,30,7,5,3,2,18,18,16,17,1,1,0,0,0,0,0,0,1,0,17,17,2,1,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,5,15,3104,1504,1600,1406,1497,68,79,12,7,2,8,1,0,15,9,1421,1505,69,80,25,16,3,8,1,0,1495,1586,1398,1483,68,79,12,7,2,8,1,0,14,9,1412,1491,69,80,24,16,3,8,1,0,9,14,8,14,0,0,0,0,0,0,0,0,1,0,9,14,0,0,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,5,16,2158,958,1200,906,1132,38,57,3,2,0,1,1,0,10,8,916,1139,39,58,13,10,0,1,2,0,953,1194,901,1126,38,57,3,2,0,1,1,0,10,8,911,1133,39,58,13,10,0,1,2,0,5,6,5,6,0,0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,5,17,1348,548,800,522,767,24,27,1,0,1,4,0,0,0,2,522,769,24,27,1,1,1,5,0,0,545,796,519,763,24,27,1,0,1,4,0,0,0,2,519,765,24,27,1,1,1,5,0,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,5,18,1076,339,737,324,692,9,34,0,0,0,3,1,0,5,8,329,699,10,35,4,8,2,3,1,0,339,734,324,689,9,34,0,0,0,3,1,0,5,8,329,696,10,35,4,8,2,3,1,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,6,0,85831,42821,43010,37568,38340,4214,3549,163,149,285,386,33,31,558,555,38103,38851,4450,3812,428,408,372,474,49,51,41822,42140,36701,37602,4157,3506,134,121,277,379,23,20,530,512,37212,38078,4380,3748,384,354,357,459,39,35,999,870,867,738,57,43,29,28,8,7,10,11,28,43,891,773,70,64,44,54,15,15,10,16 -050,01,115,Alabama,St. Clair County,6,1,5375,2769,2606,2443,2270,223,210,5,3,14,21,2,2,82,100,2522,2366,278,285,19,21,30,36,4,4,2666,2504,2351,2181,218,204,2,2,14,21,2,2,79,94,2427,2272,272,276,14,17,30,36,4,3,103,102,92,89,5,6,3,1,0,0,0,0,3,6,95,94,6,9,5,4,0,0,0,1 -050,01,115,Alabama,St. Clair County,6,2,5712,2955,2757,2578,2382,259,230,11,12,19,42,2,3,86,88,2661,2466,316,287,32,34,32,57,4,6,2835,2635,2473,2278,253,228,7,5,18,42,2,1,82,81,2553,2356,308,282,25,22,30,57,4,3,120,122,105,104,6,2,4,7,1,0,0,2,4,7,108,110,8,5,7,12,2,0,0,3 -050,01,115,Alabama,St. Clair County,6,3,5603,2918,2685,2529,2344,280,254,10,6,27,23,5,2,67,56,2595,2396,317,287,31,22,39,33,8,3,2812,2608,2438,2278,274,247,8,4,25,23,3,1,64,55,2501,2330,310,279,26,20,37,32,6,2,106,77,91,66,6,7,2,2,2,0,2,1,3,1,94,66,7,8,5,2,2,1,2,1 -050,01,115,Alabama,St. Clair County,6,4,5098,2639,2459,2285,2124,277,247,8,13,17,28,1,2,51,45,2336,2164,301,274,27,28,26,34,2,6,2572,2377,2225,2058,273,242,8,10,16,27,1,1,49,39,2274,2092,296,266,27,22,24,33,2,5,67,82,60,66,4,5,0,3,1,1,0,1,2,6,62,72,5,8,0,6,2,1,0,1 -050,01,115,Alabama,St. Clair County,6,5,4972,2621,2351,2197,2070,351,216,14,7,17,13,4,3,38,42,2231,2106,369,236,32,26,22,24,5,5,2548,2290,2139,2021,343,213,13,5,17,13,3,2,33,36,2169,2052,359,230,28,20,21,22,4,2,73,61,58,49,8,3,1,2,0,0,1,1,5,6,62,54,10,6,4,6,1,2,1,3 -050,01,115,Alabama,St. Clair County,6,6,5423,2675,2748,2288,2433,323,243,6,9,25,41,2,3,31,19,2318,2448,333,253,20,19,33,43,3,5,2582,2684,2202,2376,322,242,4,9,25,41,0,2,29,14,2230,2387,331,249,16,16,33,42,1,4,93,64,86,57,1,1,2,0,0,0,2,1,2,5,88,61,2,4,4,3,0,1,2,1 -050,01,115,Alabama,St. Clair County,6,7,5813,2971,2842,2466,2468,451,293,5,11,26,36,2,3,21,31,2484,2497,459,304,16,28,31,43,3,3,2882,2776,2393,2416,443,292,2,7,25,34,0,1,19,26,2410,2441,450,301,12,20,29,40,1,1,89,66,73,52,8,1,3,4,1,2,2,2,2,5,74,56,9,3,4,8,2,3,2,2 -050,01,115,Alabama,St. Clair County,6,8,5766,2923,2843,2504,2473,345,325,10,7,27,25,1,1,36,12,2539,2485,352,328,30,16,36,25,3,1,2820,2785,2416,2426,336,319,8,3,27,25,1,1,32,11,2447,2437,340,322,28,11,35,25,3,1,103,58,88,47,9,6,2,4,0,0,0,0,4,1,92,48,12,6,2,5,1,0,0,0 -050,01,115,Alabama,St. Clair County,6,9,6198,3161,3037,2731,2656,377,296,16,12,22,44,2,2,13,27,2744,2679,379,302,26,31,23,51,2,2,3100,2976,2677,2607,374,293,14,9,21,42,2,0,12,25,2689,2629,376,298,23,27,22,48,2,0,61,61,54,49,3,3,2,3,1,2,0,2,1,2,55,50,3,4,3,4,1,3,0,2 -050,01,115,Alabama,St. Clair County,6,10,5951,3042,2909,2653,2618,336,233,11,10,23,20,2,4,17,24,2670,2639,339,239,23,27,24,24,3,6,2987,2866,2606,2583,335,229,7,10,21,19,1,4,17,21,2623,2601,338,234,19,25,22,22,2,5,55,43,47,35,1,4,4,0,2,1,1,0,0,3,47,38,1,5,4,2,2,2,1,1 -050,01,115,Alabama,St. Clair County,6,11,6357,3183,3174,2812,2841,314,269,16,16,15,20,2,2,24,26,2834,2866,317,272,37,38,18,21,3,3,3138,3144,2774,2812,312,268,12,16,15,20,1,2,24,26,2796,2837,315,271,33,38,18,21,2,3,45,30,38,29,2,1,4,0,0,0,1,0,0,0,38,29,2,1,4,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,6,12,5903,2881,3022,2577,2733,245,216,12,8,27,39,1,2,19,24,2595,2754,248,221,29,28,28,42,1,2,2859,2982,2559,2698,243,215,11,7,27,38,0,1,19,23,2577,2719,246,219,28,27,28,40,0,1,22,40,18,35,2,1,1,1,0,1,1,1,0,1,18,35,2,2,1,1,0,2,1,1 -050,01,115,Alabama,St. Clair County,6,13,5171,2480,2691,2268,2470,161,186,9,10,18,12,2,0,22,13,2288,2481,164,189,30,21,19,14,2,1,2454,2677,2244,2459,160,184,8,9,18,12,2,0,22,13,2264,2470,163,187,29,20,19,14,2,1,26,14,24,11,1,2,1,1,0,0,0,0,0,0,24,11,1,2,1,1,0,0,0,0 -050,01,115,Alabama,St. Clair County,6,14,4435,2064,2371,1913,2208,118,122,9,14,6,6,0,2,18,19,1930,2227,122,123,24,31,8,8,0,2,2046,2351,1897,2189,117,121,9,14,6,6,0,2,17,19,1914,2208,120,122,24,31,7,8,0,2,18,20,16,19,1,1,0,0,0,0,0,0,1,0,16,19,2,1,0,0,1,0,0,0 -050,01,115,Alabama,St. Clair County,6,15,3302,1593,1709,1477,1589,83,95,15,7,0,8,3,0,15,10,1492,1599,83,96,29,16,0,10,4,2,1585,1696,1469,1576,83,95,15,7,0,8,3,0,15,10,1484,1586,83,96,29,16,0,10,4,2,8,13,8,13,0,0,0,0,0,0,0,0,0,0,8,13,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,6,16,2265,1014,1251,956,1176,41,59,3,4,1,2,1,0,12,10,968,1185,41,60,14,13,2,3,1,0,1009,1242,952,1167,41,59,3,4,1,2,1,0,11,10,963,1176,41,60,14,13,1,3,1,0,5,9,4,9,0,0,0,0,0,0,0,0,1,0,5,9,0,0,0,0,1,0,0,0 -050,01,115,Alabama,St. Clair County,6,17,1377,577,800,552,770,20,25,3,0,0,3,0,0,2,2,554,772,20,25,5,2,0,3,0,0,574,797,549,767,20,25,3,0,0,3,0,0,2,2,551,769,20,25,5,2,0,3,0,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,6,18,1110,355,755,339,715,10,30,0,0,1,3,1,0,4,7,342,721,12,31,4,7,1,3,1,0,353,750,337,710,10,30,0,0,1,3,1,0,4,7,340,716,12,31,4,7,1,3,1,0,2,5,2,5,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,7,0,86014,42972,43042,37674,38321,4265,3614,159,150,289,372,31,30,554,555,38193,38833,4523,3875,412,411,379,459,40,43,41968,42127,36798,37531,4209,3576,130,120,281,366,21,18,529,516,37294,38008,4449,3819,375,356,369,448,29,28,1004,915,876,790,56,38,29,30,8,6,10,12,25,39,899,825,74,56,37,55,10,11,11,15 -050,01,115,Alabama,St. Clair County,7,1,5262,2687,2575,2376,2241,217,207,4,3,11,14,2,2,77,108,2451,2348,271,281,18,20,24,32,3,4,2583,2469,2284,2144,213,205,0,2,11,14,1,2,74,102,2356,2245,265,276,13,17,24,32,2,3,104,106,92,97,4,2,4,1,0,0,1,0,3,6,95,103,6,5,5,3,0,0,1,1 -050,01,115,Alabama,St. Clair County,7,2,5731,3017,2714,2623,2364,260,233,9,11,22,29,3,4,100,73,2721,2432,327,282,29,27,40,43,3,7,2907,2602,2525,2268,253,229,6,5,21,29,3,1,99,70,2622,2333,319,277,26,19,39,42,3,4,110,112,98,96,7,4,3,6,1,0,0,3,1,3,99,99,8,5,3,8,1,1,0,3 -050,01,115,Alabama,St. Clair County,7,3,5511,2862,2649,2492,2296,262,251,11,7,33,34,4,2,60,59,2550,2353,296,286,31,24,42,45,5,2,2746,2552,2393,2211,255,244,8,4,32,34,2,1,56,58,2448,2267,285,278,26,21,41,45,3,1,116,97,99,85,7,7,3,3,1,0,2,1,4,1,102,86,11,8,5,3,1,0,2,1 -050,01,115,Alabama,St. Clair County,7,4,5036,2587,2449,2254,2110,254,248,5,12,19,32,1,2,54,45,2304,2154,286,273,22,29,29,38,1,2,2512,2364,2181,2041,254,243,5,9,18,31,1,1,53,39,2230,2079,285,265,22,23,28,36,1,1,75,85,73,69,0,5,0,3,1,1,0,1,1,6,74,75,1,8,0,6,1,2,0,1 -050,01,115,Alabama,St. Clair County,7,5,4967,2604,2363,2188,2047,358,247,11,10,17,12,4,2,26,45,2212,2087,372,269,22,30,20,20,4,3,2541,2289,2138,1986,352,245,10,7,16,12,3,2,22,37,2158,2020,364,262,19,22,19,20,3,2,63,74,50,61,6,2,1,3,1,0,1,0,4,8,54,67,8,7,3,8,1,0,1,1 -050,01,115,Alabama,St. Clair County,7,6,5503,2842,2661,2401,2368,372,236,9,8,22,29,1,2,37,18,2436,2381,387,244,23,18,32,34,2,3,2751,2603,2322,2316,366,235,7,7,22,29,0,0,34,16,2354,2328,378,243,21,15,32,33,1,1,91,58,79,52,6,1,2,1,0,0,1,2,3,2,82,53,9,1,2,3,0,1,1,2 -050,01,115,Alabama,St. Clair County,7,7,5830,2919,2911,2431,2532,436,291,4,9,29,45,3,3,16,31,2443,2560,444,306,11,26,34,52,3,4,2831,2841,2361,2478,427,290,1,5,28,43,0,1,14,24,2371,2499,434,301,8,16,32,49,0,2,88,70,70,54,9,1,3,4,1,2,3,2,2,7,72,61,10,5,3,10,2,3,3,2 -050,01,115,Alabama,St. Clair County,7,8,5628,2813,2815,2403,2447,345,316,11,7,26,31,1,1,27,13,2425,2458,353,319,29,18,33,32,3,1,2717,2748,2318,2391,339,310,10,3,26,31,1,1,23,12,2336,2401,344,313,26,13,33,32,3,1,96,67,85,56,6,6,1,4,0,0,0,0,4,1,89,57,9,6,3,5,0,0,0,0 -050,01,115,Alabama,St. Clair County,7,9,6026,3062,2964,2633,2593,376,300,11,8,19,35,1,2,22,26,2655,2619,381,306,26,27,22,38,1,2,2986,2900,2565,2538,372,297,9,6,18,34,1,0,21,25,2586,2563,377,303,23,24,21,37,1,0,76,64,68,55,4,3,2,2,1,1,0,2,1,1,69,56,4,3,3,3,1,1,0,2 -050,01,115,Alabama,St. Clair County,7,10,5963,3096,2867,2682,2551,359,259,15,9,24,25,1,2,15,21,2694,2569,363,264,28,24,25,29,1,5,3042,2826,2635,2515,358,258,11,8,22,25,1,2,15,18,2647,2531,362,262,24,21,23,28,1,4,54,41,47,36,1,1,4,1,2,0,0,0,0,3,47,38,1,2,4,3,2,1,0,1 -050,01,115,Alabama,St. Clair County,7,11,6348,3181,3167,2802,2860,326,248,14,15,13,19,2,3,24,22,2824,2876,329,254,33,34,17,21,3,4,3137,3130,2764,2827,324,245,11,15,13,18,1,3,24,22,2786,2843,327,251,30,34,17,20,2,4,44,37,38,33,2,3,3,0,0,1,1,0,0,0,38,33,2,3,3,0,0,1,1,0 -050,01,115,Alabama,St. Clair County,7,12,5983,2927,3056,2622,2750,251,238,15,11,21,31,0,3,18,23,2639,2769,255,242,31,31,22,34,0,3,2905,3016,2604,2715,249,237,13,10,21,30,0,2,18,22,2621,2733,253,241,29,29,22,33,0,2,22,40,18,35,2,1,2,1,0,1,0,1,0,1,18,36,2,1,2,2,0,1,0,1 -050,01,115,Alabama,St. Clair County,7,13,5190,2498,2692,2272,2463,171,184,7,11,21,15,2,0,25,19,2295,2479,173,187,30,27,23,18,3,1,2474,2678,2250,2451,170,183,7,10,21,15,1,0,25,19,2273,2467,172,186,30,26,23,18,2,1,24,14,22,12,1,1,0,1,0,0,1,0,0,0,22,12,1,1,0,1,0,0,1,0 -050,01,115,Alabama,St. Clair County,7,14,4613,2171,2442,2023,2268,111,136,10,14,10,7,1,1,16,16,2037,2284,114,139,22,26,12,8,2,1,2151,2424,2006,2250,110,136,9,14,10,7,1,1,15,16,2019,2266,113,139,21,26,11,8,2,1,20,18,17,18,1,0,1,0,0,0,0,0,1,0,18,18,1,0,1,0,1,0,0,0 -050,01,115,Alabama,St. Clair County,7,15,3470,1629,1841,1502,1708,90,105,15,8,0,7,3,1,19,12,1521,1719,91,106,33,20,1,7,3,1,1618,1828,1491,1696,90,104,15,8,0,7,3,1,19,12,1510,1707,91,105,33,20,1,7,3,1,11,13,11,12,0,1,0,0,0,0,0,0,0,0,11,12,0,1,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,7,16,2362,1073,1289,1010,1212,46,59,4,5,1,2,1,0,11,11,1020,1222,49,60,14,16,1,2,2,0,1067,1278,1005,1201,46,59,4,5,1,2,1,0,10,11,1015,1211,48,60,14,16,1,2,1,0,6,11,5,11,0,0,0,0,0,0,0,0,1,0,5,11,1,0,0,0,0,0,1,0 -050,01,115,Alabama,St. Clair County,7,17,1460,638,822,607,786,23,27,4,2,0,2,0,0,4,5,611,790,23,28,8,7,0,2,0,0,635,820,604,784,23,27,4,2,0,2,0,0,4,5,608,788,23,28,8,7,0,2,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,7,18,1131,366,765,353,725,8,29,0,0,1,3,1,0,3,8,355,733,9,29,2,7,2,4,1,0,365,759,352,719,8,29,0,0,1,3,1,0,3,8,354,727,9,29,2,7,2,4,1,0,1,6,1,6,0,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,8,0,86569,43274,43295,37912,38518,4288,3623,166,160,332,402,34,30,542,562,38423,39034,4526,3906,406,410,431,495,51,45,42218,42336,36990,37698,4229,3580,135,125,324,393,22,21,518,519,37479,38175,4456,3835,364,355,419,480,36,34,1056,959,922,820,59,43,31,35,8,9,12,9,24,43,944,859,70,71,42,55,12,15,15,11 -050,01,115,Alabama,St. Clair County,8,1,5229,2720,2509,2417,2174,198,204,4,6,18,18,2,3,81,104,2495,2275,254,278,17,23,33,37,4,4,2620,2393,2327,2067,195,202,0,3,18,16,2,3,78,102,2402,2166,250,275,12,20,33,34,3,4,100,116,90,107,3,2,4,3,0,2,0,0,3,2,93,109,4,3,5,3,0,3,1,0 -050,01,115,Alabama,St. Clair County,8,2,5674,2917,2757,2551,2395,244,231,10,11,19,30,3,4,90,86,2636,2476,305,292,24,28,37,45,6,5,2798,2645,2448,2307,235,224,6,5,18,30,2,1,89,78,2532,2380,296,279,20,20,35,45,5,2,119,112,103,88,9,7,4,6,1,0,1,3,1,8,104,96,9,13,4,8,2,0,1,3 -050,01,115,Alabama,St. Clair County,8,3,5593,2926,2667,2558,2318,252,251,11,6,42,30,4,1,59,61,2616,2378,284,287,28,23,53,42,5,3,2795,2561,2441,2226,248,243,7,2,41,30,2,1,56,59,2496,2284,280,278,21,18,52,42,3,3,131,106,117,92,4,8,4,4,1,0,2,0,3,2,120,94,4,9,7,5,1,0,2,0 -050,01,115,Alabama,St. Clair County,8,4,5071,2631,2440,2273,2098,276,244,6,13,21,41,2,2,53,42,2323,2136,306,270,23,31,32,47,5,2,2544,2367,2193,2040,272,239,6,10,20,40,2,1,51,37,2241,2073,300,261,22,25,31,45,5,1,87,73,80,58,4,5,0,3,1,1,0,1,2,5,82,63,6,9,1,6,1,2,0,1 -050,01,115,Alabama,St. Clair County,8,5,4808,2542,2266,2144,1963,336,238,11,5,15,19,4,1,32,40,2175,1998,351,260,24,22,20,26,5,4,2473,2197,2087,1906,330,236,10,4,14,19,3,1,29,31,2115,1933,344,253,21,15,19,25,4,3,69,69,57,57,6,2,1,1,1,0,1,0,3,9,60,65,7,7,3,7,1,1,1,1 -050,01,115,Alabama,St. Clair County,8,6,5592,2885,2707,2417,2409,400,232,10,11,23,28,2,6,33,21,2447,2425,415,242,23,19,32,34,2,9,2810,2630,2357,2341,391,231,9,7,23,28,0,4,30,19,2384,2355,404,239,21,14,32,34,0,7,75,77,60,68,9,1,1,4,0,0,2,2,3,2,63,70,11,3,2,5,0,0,2,2 -050,01,115,Alabama,St. Clair County,8,7,5840,2900,2940,2417,2572,432,286,6,9,28,43,3,1,14,29,2429,2597,437,298,13,24,33,51,3,1,2806,2869,2338,2515,424,285,2,5,28,41,0,1,14,22,2350,2534,429,293,9,15,33,49,0,1,94,71,79,57,8,1,4,4,0,2,3,0,0,7,79,63,8,5,4,9,0,2,3,0 -050,01,115,Alabama,St. Clair County,8,8,5735,2915,2820,2476,2461,368,296,5,7,39,40,2,0,25,16,2498,2474,374,301,19,17,48,43,4,2,2825,2757,2398,2408,364,290,4,5,39,40,1,0,19,14,2414,2419,366,294,16,13,47,43,3,2,90,63,78,53,4,6,1,2,0,0,1,0,6,2,84,55,8,7,3,4,1,0,1,0 -050,01,115,Alabama,St. Clair County,8,9,5877,2941,2936,2503,2554,378,312,8,12,23,30,1,3,28,25,2526,2575,385,320,30,29,27,34,4,3,2856,2853,2426,2484,374,308,6,7,22,29,1,1,27,24,2449,2504,381,316,28,24,25,32,3,1,85,83,77,70,4,4,2,5,1,1,0,2,1,1,77,71,4,4,2,5,2,2,1,2 -050,01,115,Alabama,St. Clair County,8,10,5942,3087,2855,2665,2527,359,264,17,11,33,31,1,2,12,20,2676,2542,361,271,28,25,35,34,1,3,3024,2811,2608,2488,357,263,15,10,31,31,1,2,12,17,2619,2502,359,268,26,24,33,32,1,2,63,44,57,39,2,1,2,1,2,0,0,0,0,3,57,40,2,3,2,1,2,2,0,1 -050,01,115,Alabama,St. Clair County,8,11,6348,3182,3166,2812,2859,315,257,15,12,14,15,2,3,24,20,2835,2878,318,264,34,27,16,17,3,3,3139,3125,2776,2824,313,253,12,12,13,14,1,3,24,19,2799,2842,316,259,31,27,15,16,2,3,43,41,36,35,2,4,3,0,1,1,1,0,0,1,36,36,2,5,3,0,1,1,1,0 -050,01,115,Alabama,St. Clair County,8,12,6026,2979,3047,2658,2726,271,253,17,14,17,28,0,2,16,24,2674,2749,273,256,30,35,18,30,0,2,2954,3009,2637,2693,270,252,14,14,17,26,0,1,16,23,2653,2715,272,254,27,35,18,28,0,1,25,38,21,33,1,1,3,0,0,2,0,1,0,1,21,34,1,2,3,0,0,2,0,1 -050,01,115,Alabama,St. Clair County,8,13,5258,2483,2775,2265,2529,163,190,8,12,25,25,2,1,20,18,2285,2546,164,192,26,29,26,25,2,1,2454,2763,2240,2520,161,189,7,10,25,25,1,1,20,18,2260,2537,162,191,25,27,26,25,1,1,29,12,25,9,2,1,1,2,0,0,1,0,0,0,25,9,2,1,1,2,0,0,1,0 -050,01,115,Alabama,St. Clair County,8,14,4839,2314,2525,2151,2343,120,143,13,14,12,10,1,1,17,14,2167,2356,121,145,28,24,14,12,1,2,2297,2509,2136,2327,120,143,12,14,12,10,1,1,16,14,2151,2340,121,145,26,24,14,12,1,2,17,16,15,16,0,0,1,0,0,0,0,0,1,0,16,16,0,0,2,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,8,15,3581,1662,1919,1527,1783,99,106,13,9,1,5,3,0,19,16,1545,1798,100,109,30,22,3,6,3,0,1647,1902,1513,1766,98,106,13,9,1,5,3,0,19,16,1531,1781,99,109,30,22,3,6,3,0,15,17,14,17,1,0,0,0,0,0,0,0,0,0,14,17,1,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,8,16,2409,1106,1303,1041,1219,45,63,7,5,1,4,1,0,11,12,1051,1230,46,65,16,15,3,5,2,0,1098,1291,1034,1207,45,63,7,5,1,4,1,0,10,12,1044,1218,45,65,16,15,2,5,1,0,8,12,7,12,0,0,0,0,0,0,0,0,1,0,7,12,1,0,0,0,1,0,1,0 -050,01,115,Alabama,St. Clair County,8,17,1572,678,894,642,855,25,29,5,3,0,2,0,0,6,5,648,859,25,30,11,8,0,2,0,0,675,892,639,853,25,29,5,3,0,2,0,0,6,5,645,857,25,30,11,8,0,2,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,8,18,1175,406,769,395,733,7,24,0,0,1,3,1,0,2,9,397,742,7,26,2,9,1,5,1,1,403,762,392,726,7,24,0,0,1,3,1,0,2,9,394,735,7,26,2,9,1,5,1,1,3,7,3,7,0,0,0,0,0,0,0,0,0,0,3,7,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,9,0,87342,43494,43848,38146,38932,4254,3758,163,161,326,396,32,28,573,573,38682,39464,4510,4035,426,417,420,487,43,45,42431,42843,37218,38073,4193,3710,136,123,317,384,20,19,547,534,37731,38569,4437,3967,383,358,408,471,26,32,1063,1005,928,859,61,48,27,38,9,12,12,9,26,39,951,895,73,68,43,59,12,16,17,13 -050,01,115,Alabama,St. Clair County,9,1,5376,2772,2604,2437,2248,226,225,3,8,15,23,1,2,90,98,2520,2340,291,299,21,21,29,41,2,4,2684,2483,2357,2145,224,219,1,1,15,20,1,2,86,96,2437,2235,287,292,16,14,29,37,1,4,88,121,80,103,2,6,2,7,0,3,0,0,4,2,83,105,4,7,5,7,0,4,1,0 -050,01,115,Alabama,St. Clair County,9,2,5627,2923,2704,2570,2359,243,234,8,8,16,16,3,5,83,82,2653,2439,296,288,28,26,30,29,5,6,2805,2597,2468,2269,234,228,4,5,16,16,2,2,81,77,2549,2345,285,279,22,21,29,29,3,2,118,107,102,90,9,6,4,3,0,0,1,3,2,5,104,94,11,9,6,5,1,0,2,4 -050,01,115,Alabama,St. Clair County,9,3,5658,2932,2726,2553,2336,242,276,10,11,46,32,5,1,76,70,2626,2404,290,317,29,32,59,43,6,2,2802,2595,2438,2224,237,269,6,4,45,31,3,1,73,66,2508,2288,282,309,24,21,58,42,4,2,130,131,115,112,5,7,4,7,1,1,2,0,3,4,118,116,8,8,5,11,1,1,2,0 -050,01,115,Alabama,St. Clair County,9,4,5172,2732,2440,2349,2126,298,218,7,9,23,40,2,2,53,45,2399,2169,325,244,25,21,34,49,3,4,2625,2365,2251,2062,293,212,7,8,21,39,2,1,51,43,2299,2103,319,236,24,20,32,48,3,3,107,75,98,64,5,6,0,1,2,1,0,1,2,2,100,66,6,8,1,1,2,1,0,1 -050,01,115,Alabama,St. Clair County,9,5,4631,2430,2201,2058,1906,308,234,8,6,16,20,3,0,37,35,2094,1937,324,253,23,19,23,24,3,3,2378,2127,2012,1847,305,230,7,4,15,19,3,0,36,27,2047,1871,321,244,21,14,22,23,3,2,52,74,46,59,3,4,1,2,1,1,0,0,1,8,47,66,3,9,2,5,1,1,0,1 -050,01,115,Alabama,St. Clair County,9,6,5796,2957,2839,2482,2519,419,254,7,11,15,17,3,5,31,33,2509,2550,432,269,22,24,23,28,3,6,2878,2766,2422,2456,408,253,6,7,15,17,0,3,27,30,2445,2484,419,266,19,18,23,26,0,3,79,73,60,63,11,1,1,4,0,0,3,2,4,3,64,66,13,3,3,6,0,2,3,3 -050,01,115,Alabama,St. Clair County,9,7,5801,2875,2926,2437,2544,389,300,5,7,21,47,3,1,20,27,2454,2568,395,306,16,24,26,54,5,2,2787,2857,2360,2485,384,299,3,5,21,46,0,1,19,21,2376,2504,389,304,13,16,26,53,2,1,88,69,77,59,5,1,2,2,0,1,3,0,1,6,78,64,6,2,3,8,0,1,3,1 -050,01,115,Alabama,St. Clair County,9,8,5707,2873,2834,2428,2459,364,306,5,8,52,38,2,0,22,23,2445,2478,369,314,17,26,60,41,4,2,2774,2771,2347,2408,355,301,2,6,52,37,1,0,17,19,2361,2423,359,309,12,21,58,39,1,2,99,63,81,51,9,5,3,2,0,1,1,0,5,4,84,55,10,5,5,5,2,2,3,0 -050,01,115,Alabama,St. Clair County,9,9,5703,2855,2848,2441,2478,355,320,8,10,19,22,1,2,31,16,2470,2494,361,325,31,20,22,24,2,2,2755,2770,2349,2412,352,316,7,4,17,22,1,1,29,15,2376,2427,358,320,29,14,20,24,1,1,100,78,92,66,3,4,1,6,2,0,0,1,2,1,94,67,3,5,2,6,2,0,1,1 -050,01,115,Alabama,St. Clair County,9,10,6080,3102,2978,2684,2623,350,273,22,10,36,47,1,3,9,22,2693,2643,352,277,28,27,37,50,1,6,3047,2919,2636,2571,347,271,19,8,35,46,1,2,9,21,2645,2590,349,274,25,24,36,49,1,5,55,59,48,52,3,2,3,2,1,1,0,1,0,1,48,53,3,3,3,3,1,1,0,1 -050,01,115,Alabama,St. Clair County,9,11,6224,3123,3101,2756,2775,310,276,12,14,18,11,2,3,25,22,2779,2795,313,283,33,29,21,14,2,3,3074,3052,2713,2733,308,272,11,14,16,10,1,3,25,20,2736,2751,311,277,32,29,19,13,1,3,49,49,43,42,2,4,1,0,2,1,1,0,0,2,43,44,2,6,1,0,2,1,1,0 -050,01,115,Alabama,St. Clair County,9,12,6144,3027,3117,2707,2811,272,245,19,15,9,23,0,1,20,22,2724,2829,276,252,35,33,12,25,0,1,3002,3084,2686,2782,271,244,16,15,9,21,0,1,20,21,2703,2799,275,250,32,33,12,23,0,1,25,33,21,29,1,1,3,0,0,2,0,0,0,1,21,30,1,2,3,0,0,2,0,0 -050,01,115,Alabama,St. Clair County,9,13,5445,2559,2886,2350,2627,160,196,10,12,20,30,2,2,17,19,2365,2643,163,199,24,31,22,30,2,2,2535,2865,2330,2610,158,195,9,10,20,30,1,1,17,19,2345,2626,161,198,23,29,22,30,1,1,24,21,20,17,2,1,1,2,0,0,1,1,0,0,20,17,2,1,1,2,0,0,1,1 -050,01,115,Alabama,St. Clair County,9,14,4974,2362,2612,2186,2404,133,167,11,12,13,16,1,0,18,13,2204,2416,133,169,27,21,14,18,2,1,2342,2595,2168,2387,133,167,10,12,13,16,1,0,17,13,2185,2399,133,169,25,21,14,18,2,1,20,17,18,17,0,0,1,0,0,0,0,0,1,0,19,17,0,0,2,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,9,15,3661,1704,1957,1563,1817,102,107,14,11,5,5,1,1,19,16,1581,1832,105,109,33,25,5,6,1,1,1692,1947,1552,1807,101,107,14,11,5,5,1,1,19,16,1570,1822,104,109,33,25,5,6,1,1,12,10,11,10,1,0,0,0,0,0,0,0,0,0,11,10,1,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,9,16,2516,1149,1367,1081,1274,45,70,9,5,1,4,0,0,13,14,1093,1288,47,70,21,19,1,4,0,0,1140,1354,1073,1261,45,70,9,5,1,4,0,0,12,14,1084,1275,47,70,20,19,1,4,0,0,9,13,8,13,0,0,0,0,0,0,0,0,1,0,9,13,0,0,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,9,17,1599,691,908,651,863,28,32,4,3,0,3,1,0,7,7,658,868,28,34,10,9,1,4,1,0,687,904,647,859,28,32,4,3,0,3,1,0,7,7,654,864,28,34,10,9,1,4,1,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,9,18,1228,428,800,413,763,10,25,1,1,1,2,1,0,2,9,415,771,10,27,3,10,1,3,1,0,424,792,409,755,10,25,1,1,1,2,1,0,2,9,411,763,10,27,3,10,1,3,1,0,4,8,4,8,0,0,0,0,0,0,0,0,0,0,4,8,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,10,0,87985,43682,44303,38237,39230,4316,3874,161,152,335,411,33,33,600,603,38802,39777,4590,4172,420,417,440,508,50,50,42594,43252,37288,38331,4256,3821,134,115,322,399,20,24,574,562,37828,38841,4520,4099,381,358,421,489,33,41,1088,1051,949,899,60,53,27,37,13,12,13,9,26,41,974,936,70,73,39,59,19,19,17,9 -050,01,115,Alabama,St. Clair County,10,1,5353,2734,2619,2396,2255,220,230,0,9,16,23,2,2,100,100,2491,2352,293,304,18,24,31,39,4,3,2630,2496,2300,2152,220,222,0,2,13,20,1,2,96,98,2391,2247,290,296,16,16,28,35,3,3,104,123,96,103,0,8,0,7,3,3,1,0,4,2,100,105,3,8,2,8,3,4,1,0 -050,01,115,Alabama,St. Clair County,10,2,5666,2968,2698,2604,2339,265,247,7,6,17,14,3,5,72,87,2672,2418,313,307,19,23,31,30,5,9,2857,2588,2510,2241,256,244,2,4,17,14,2,3,70,82,2576,2316,304,301,13,19,30,29,4,7,111,110,94,98,9,3,5,2,0,0,1,2,2,5,96,102,9,6,6,4,1,1,1,2 -050,01,115,Alabama,St. Clair County,10,3,5753,2995,2758,2593,2350,266,282,10,13,38,34,4,2,84,77,2675,2423,317,326,31,31,54,53,4,3,2866,2613,2480,2226,259,275,5,5,37,34,3,1,82,72,2560,2295,309,317,25,20,53,51,3,2,129,145,113,124,7,7,5,8,1,0,1,1,2,5,115,128,8,9,6,11,1,2,1,1 -050,01,115,Alabama,St. Clair County,10,4,5157,2712,2445,2337,2113,276,241,7,6,31,33,3,3,58,49,2394,2160,309,270,25,20,40,42,5,3,2597,2363,2233,2046,271,231,7,5,29,31,2,2,55,48,2287,2092,303,259,24,19,38,40,3,2,115,82,104,67,5,10,0,1,2,2,1,1,3,1,107,68,6,11,1,1,2,2,2,1 -050,01,115,Alabama,St. Clair County,10,5,4530,2365,2165,1976,1872,322,227,9,6,15,26,3,1,40,33,2014,1904,340,243,25,20,23,31,3,2,2300,2087,1917,1809,318,223,9,4,13,25,3,1,40,25,1955,1833,336,235,25,13,21,29,3,2,65,78,59,63,4,4,0,2,2,1,0,0,0,8,59,71,4,8,0,7,2,2,0,0 -050,01,115,Alabama,St. Clair County,10,6,5877,2979,2898,2520,2565,388,255,6,9,25,24,3,4,37,41,2554,2600,400,274,24,24,34,35,7,7,2898,2838,2457,2517,379,252,5,5,25,24,0,3,32,37,2486,2548,389,269,20,19,32,34,3,6,81,60,63,48,9,3,1,4,0,0,3,1,5,4,68,52,11,5,4,5,2,1,4,1 -050,01,115,Alabama,St. Clair County,10,7,5804,2874,2930,2420,2553,400,298,9,6,21,48,2,2,22,23,2440,2575,407,305,19,21,30,50,2,3,2789,2842,2345,2473,396,297,6,5,21,47,0,1,21,19,2364,2491,403,303,15,17,30,49,0,2,85,88,75,80,4,1,3,1,0,1,2,1,1,4,76,84,4,2,4,4,0,1,2,1 -050,01,115,Alabama,St. Clair County,10,8,5719,2885,2834,2440,2459,363,311,5,9,48,28,3,2,26,25,2462,2475,368,321,20,24,56,35,6,5,2785,2767,2357,2405,353,307,3,6,48,27,1,2,23,20,2377,2417,357,313,17,18,55,34,3,5,100,67,83,54,10,4,2,3,0,1,2,0,3,5,85,58,11,8,3,6,1,1,3,0 -050,01,115,Alabama,St. Clair County,10,9,5631,2820,2811,2410,2437,356,319,7,8,15,28,0,1,32,18,2440,2451,365,326,29,22,21,29,1,1,2721,2741,2318,2378,353,314,6,3,15,28,0,1,29,17,2345,2391,361,321,27,16,20,29,0,1,99,70,92,59,3,5,1,5,0,0,0,0,3,1,95,60,4,5,2,6,1,0,1,0 -050,01,115,Alabama,St. Clair County,10,10,6167,3088,3079,2667,2694,354,298,16,10,40,51,2,3,9,23,2675,2714,355,305,22,27,42,54,3,4,3040,3009,2628,2633,351,296,14,8,37,50,2,1,8,21,2635,2651,352,302,19,25,39,52,3,2,48,70,39,61,3,2,2,2,3,1,0,2,1,2,40,63,3,3,3,2,3,2,0,2 -050,01,115,Alabama,St. Clair County,10,11,6092,3069,3023,2689,2698,327,276,15,11,17,14,1,4,20,20,2707,2714,329,281,31,28,20,16,2,4,3019,2976,2645,2657,325,273,13,11,15,13,1,4,20,18,2663,2671,327,277,29,27,18,15,2,4,50,47,44,41,2,3,2,0,2,1,0,0,0,2,44,43,2,4,2,1,2,1,0,0 -050,01,115,Alabama,St. Clair County,10,12,6307,3082,3225,2759,2899,274,264,18,17,7,21,1,1,23,23,2780,2920,277,267,37,37,10,23,2,1,3047,3195,2730,2874,273,262,14,17,7,19,0,1,23,22,2751,2894,276,265,33,36,10,21,1,1,35,30,29,25,1,2,4,0,0,2,1,0,0,1,29,26,1,2,4,1,0,2,1,0 -050,01,115,Alabama,St. Clair County,10,13,5599,2684,2915,2453,2644,180,208,11,9,21,33,2,2,17,19,2467,2660,185,212,26,25,21,35,2,3,2669,2885,2442,2619,178,207,10,7,21,33,1,1,17,18,2456,2635,183,210,25,22,21,35,1,2,15,30,11,25,2,1,1,2,0,0,1,1,0,1,11,25,2,2,1,3,0,0,1,1 -050,01,115,Alabama,St. Clair County,10,14,4910,2269,2641,2093,2417,131,181,10,10,15,19,1,0,19,14,2112,2429,132,185,27,21,16,20,1,0,2247,2627,2072,2403,131,181,9,10,15,19,1,0,19,14,2091,2415,132,185,26,21,16,20,1,0,22,14,21,14,0,0,1,0,0,0,0,0,0,0,21,14,0,0,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,10,15,3895,1816,2079,1671,1939,107,105,15,12,7,4,0,1,16,18,1687,1956,108,107,29,28,8,5,0,2,1803,2068,1660,1928,106,105,15,12,7,4,0,1,15,18,1675,1945,106,107,29,28,8,5,0,2,13,11,11,11,1,0,0,0,0,0,0,0,1,0,12,11,2,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,10,16,2666,1252,1414,1171,1323,54,65,11,7,1,7,1,0,14,12,1185,1334,54,67,24,19,2,7,1,0,1244,1402,1164,1311,54,65,11,7,1,7,1,0,13,12,1177,1322,54,67,24,19,1,7,1,0,8,12,7,12,0,0,0,0,0,0,0,0,1,0,8,12,0,0,0,0,1,0,0,0 -050,01,115,Alabama,St. Clair County,10,17,1583,643,940,605,890,24,37,3,2,0,1,1,0,10,10,614,899,28,40,11,10,0,1,1,0,639,934,601,884,24,37,3,2,0,1,1,0,10,10,610,893,28,40,11,10,0,1,1,0,4,6,4,6,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,10,18,1276,447,829,433,783,9,30,2,2,1,3,1,0,1,11,433,793,10,32,3,13,1,3,1,0,443,821,429,775,9,30,2,2,1,3,1,0,1,11,429,785,10,32,3,13,1,3,1,0,4,8,4,8,0,0,0,0,0,0,0,0,0,0,4,8,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,11,0,88842,44092,44750,38473,39513,4416,3931,173,152,356,440,34,36,640,678,39067,40134,4731,4270,445,438,477,556,48,57,42966,43652,37498,38573,4354,3882,143,116,342,427,19,23,610,631,38067,39151,4657,4195,399,378,455,536,30,39,1126,1098,975,940,62,49,30,36,14,13,15,13,30,47,1000,983,74,75,46,60,22,20,18,18 -050,01,115,Alabama,St. Clair County,11,1,5284,2669,2615,2314,2228,215,230,6,7,17,27,4,2,113,121,2423,2344,294,320,25,24,39,47,5,3,2573,2497,2231,2127,215,225,2,0,14,24,2,2,109,119,2336,2241,292,314,19,16,34,44,3,3,96,118,83,101,0,5,4,7,3,3,2,0,4,2,87,103,2,6,6,8,5,3,2,0 -050,01,115,Alabama,St. Clair County,11,2,5603,2951,2652,2579,2280,267,241,5,5,23,15,4,4,73,107,2646,2384,319,310,19,25,37,35,5,7,2838,2545,2479,2184,261,239,2,4,23,15,2,3,71,100,2545,2281,312,305,15,21,36,34,3,6,113,107,100,96,6,2,3,1,0,0,2,1,2,7,101,103,7,5,4,4,1,1,2,1 -050,01,115,Alabama,St. Clair County,11,3,5885,3068,2817,2665,2410,270,266,8,13,34,33,1,4,90,91,2749,2496,331,323,28,38,54,49,2,5,2939,2671,2551,2287,261,259,4,5,33,33,1,1,89,86,2634,2369,321,312,24,28,53,49,2,2,129,146,114,123,9,7,4,8,1,0,0,3,1,5,115,127,10,11,4,10,1,0,0,3 -050,01,115,Alabama,St. Clair County,11,4,5119,2706,2413,2330,2085,269,236,9,6,32,37,5,2,61,47,2391,2127,304,264,27,18,43,50,6,3,2586,2326,2224,2012,263,228,8,4,30,36,3,1,58,45,2282,2052,297,254,24,16,41,49,4,2,120,87,106,73,6,8,1,2,2,1,2,1,3,2,109,75,7,10,3,2,2,1,2,1 -050,01,115,Alabama,St. Clair County,11,5,4520,2373,2147,1973,1850,329,222,9,6,18,27,0,4,44,38,2016,1885,350,242,26,21,25,35,3,6,2297,2070,1905,1790,324,217,8,4,17,25,0,2,43,32,1947,1820,345,234,24,15,24,31,3,3,76,77,68,60,5,5,1,2,1,2,0,2,1,6,69,65,5,8,2,6,1,4,0,3 -050,01,115,Alabama,St. Clair County,11,6,5926,3010,2916,2534,2563,401,281,12,7,21,20,3,4,39,41,2571,2598,415,301,32,23,29,31,3,8,2936,2851,2478,2508,393,278,11,6,20,20,2,3,32,36,2509,2539,405,294,27,19,26,30,2,5,74,65,56,55,8,3,1,1,1,0,1,1,7,5,62,59,10,7,5,4,3,1,1,3 -050,01,115,Alabama,St. Clair County,11,7,5950,2998,2952,2506,2581,427,283,7,6,22,49,4,3,32,30,2534,2607,435,297,22,22,37,54,4,4,2887,2869,2409,2505,421,282,5,6,21,49,0,1,31,26,2436,2527,429,293,19,20,36,54,0,2,111,83,97,76,6,1,2,0,1,0,4,2,1,4,98,80,6,4,3,2,1,0,4,2 -050,01,115,Alabama,St. Clair County,11,8,5743,2883,2860,2436,2465,364,319,6,11,53,34,2,2,22,29,2455,2488,370,327,21,28,56,42,4,6,2799,2782,2369,2401,354,317,3,7,53,32,0,2,20,23,2387,2418,360,323,17,20,55,38,1,6,84,78,67,64,10,2,3,4,0,2,2,0,2,6,68,70,10,4,4,8,1,4,3,0 -050,01,115,Alabama,St. Clair County,11,9,5554,2754,2800,2352,2437,343,309,8,8,16,27,1,1,34,18,2380,2454,354,310,32,21,24,31,3,2,2657,2726,2262,2376,341,302,7,3,16,27,1,1,30,17,2288,2392,350,303,29,15,22,31,1,2,97,74,90,61,2,7,1,5,0,0,0,0,4,1,92,62,4,7,3,6,2,0,2,0 -050,01,115,Alabama,St. Clair County,11,10,6293,3154,3139,2702,2712,376,335,18,10,42,57,1,2,15,23,2717,2732,380,339,27,27,45,60,1,4,3084,3050,2643,2632,373,332,16,8,39,56,1,0,12,22,2655,2652,375,336,24,24,42,59,1,1,70,89,59,80,3,3,2,2,3,1,0,2,3,1,62,80,5,3,3,3,3,1,0,3 -050,01,115,Alabama,St. Clair County,11,11,5994,3022,2972,2643,2657,328,264,14,11,22,17,1,4,14,19,2656,2674,330,270,26,25,23,19,2,5,2980,2922,2607,2615,326,261,12,10,20,16,1,4,14,16,2620,2629,328,265,24,24,21,17,2,4,42,50,36,42,2,3,2,1,2,1,0,0,0,3,36,45,2,5,2,1,2,2,0,1 -050,01,115,Alabama,St. Clair County,11,12,6410,3133,3277,2793,2922,290,290,15,17,8,20,2,1,25,27,2813,2944,295,296,37,41,13,22,2,1,3086,3245,2752,2897,289,289,11,16,8,18,1,1,25,24,2772,2916,294,293,33,39,13,20,1,1,47,32,41,25,1,1,4,1,0,2,1,0,0,3,41,28,1,3,4,2,0,2,1,0 -050,01,115,Alabama,St. Clair County,11,13,5751,2746,3005,2499,2720,197,218,12,8,21,35,1,2,16,22,2512,2740,202,222,27,28,22,35,1,2,2731,2971,2489,2692,194,217,11,7,21,34,0,1,16,20,2502,2710,199,221,26,25,22,34,0,1,15,34,10,28,3,1,1,1,0,1,1,1,0,2,10,30,3,1,1,3,0,1,1,1 -050,01,115,Alabama,St. Clair County,11,14,4928,2268,2660,2098,2424,118,185,11,12,17,25,2,0,22,14,2119,2437,121,188,29,26,18,25,3,0,2246,2644,2077,2410,118,184,10,11,17,25,2,0,22,14,2098,2423,121,187,28,25,18,25,3,0,22,16,21,14,0,1,1,1,0,0,0,0,0,0,21,14,0,1,1,1,0,0,0,0 -050,01,115,Alabama,St. Clair County,11,15,4029,1858,2171,1709,2026,117,111,10,13,8,5,0,1,14,15,1722,2037,120,116,21,24,9,8,0,1,1846,2157,1699,2012,116,111,10,13,8,5,0,1,13,15,1711,2023,118,116,21,24,9,8,0,1,12,14,10,14,1,0,0,0,0,0,0,0,1,0,11,14,2,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,11,16,2837,1315,1522,1215,1416,70,79,16,7,0,7,1,0,13,13,1226,1427,72,81,29,20,0,7,1,0,1308,1511,1208,1405,70,79,16,7,0,7,1,0,13,13,1219,1416,72,81,29,20,0,7,1,0,7,11,7,11,0,0,0,0,0,0,0,0,0,0,7,11,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,11,17,1692,700,992,657,933,26,42,3,3,1,2,1,0,12,12,669,945,29,42,12,15,2,2,2,0,694,983,652,924,26,42,3,3,1,2,1,0,11,12,663,936,29,42,11,15,2,2,2,0,6,9,5,9,0,0,0,0,0,0,0,0,1,0,6,9,0,0,1,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,11,18,1324,484,840,468,804,9,20,4,2,1,3,1,0,1,11,468,815,10,22,5,12,1,4,1,0,479,832,463,796,9,20,4,2,1,3,1,0,1,11,463,807,10,22,5,12,1,4,1,0,5,8,5,8,0,0,0,0,0,0,0,0,0,0,5,8,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,12,0,89735,44382,45353,38622,39877,4506,4096,184,166,375,468,33,37,662,709,39249,40528,4811,4454,467,451,498,595,50,65,43282,44270,37670,38952,4446,4045,152,133,363,456,19,23,632,661,38271,39560,4737,4381,420,393,478,573,32,44,1100,1083,952,925,60,51,32,33,12,12,14,14,30,48,978,968,74,73,47,58,20,22,18,21 -050,01,115,Alabama,St. Clair County,12,1,5167,2583,2584,2208,2168,224,246,8,6,19,32,4,1,120,131,2326,2296,308,340,25,27,42,52,6,1,2493,2498,2130,2093,224,243,5,2,16,29,2,1,116,130,2244,2220,306,337,21,22,38,49,4,1,90,86,78,75,0,3,3,4,3,3,2,0,4,1,82,76,2,3,4,5,4,3,2,0 -050,01,115,Alabama,St. Clair County,12,2,5643,2944,2699,2578,2311,276,249,5,8,25,13,3,3,57,115,2632,2419,315,327,18,32,36,32,4,6,2842,2574,2488,2205,272,242,3,4,25,13,2,2,52,108,2537,2306,310,316,14,26,34,31,2,5,102,125,90,106,4,7,2,4,0,0,1,1,5,7,95,113,5,11,4,6,2,1,2,1 -050,01,115,Alabama,St. Clair County,12,3,5963,3148,2815,2721,2423,281,267,8,9,31,24,2,6,105,86,2825,2504,344,323,31,28,50,41,5,8,3038,2692,2628,2317,269,261,4,5,30,24,2,3,105,82,2732,2395,332,314,27,22,49,41,5,5,110,123,93,106,12,6,4,4,1,0,0,3,0,4,93,109,12,9,4,6,1,0,0,3 -050,01,115,Alabama,St. Clair County,12,4,5150,2684,2466,2313,2104,258,256,11,10,38,43,3,2,61,51,2368,2152,296,283,29,25,50,55,6,3,2565,2360,2209,2016,254,246,8,7,37,42,1,1,56,48,2261,2061,289,273,23,21,47,52,3,2,119,106,104,88,4,10,3,3,1,1,2,1,5,3,107,91,7,10,6,4,3,3,3,1 -050,01,115,Alabama,St. Clair County,12,5,4542,2346,2196,1974,1890,299,221,6,9,14,31,1,5,52,40,2023,1925,326,242,25,22,25,41,2,7,2264,2130,1900,1839,294,218,5,7,13,29,1,2,51,35,1948,1869,320,237,23,17,24,38,2,4,82,66,74,51,5,3,1,2,1,2,0,3,1,5,75,56,6,5,2,5,1,3,0,3 -050,01,115,Alabama,St. Clair County,12,6,5862,3028,2834,2530,2488,419,275,15,5,23,19,3,3,38,44,2565,2526,433,297,33,22,35,31,5,11,2970,2764,2482,2428,416,273,14,5,22,19,2,2,34,37,2513,2461,428,291,30,18,32,28,3,5,58,70,48,60,3,2,1,0,1,0,1,1,4,7,52,65,5,6,3,4,3,3,2,6 -050,01,115,Alabama,St. Clair County,12,7,6004,3057,2947,2526,2545,457,303,8,10,22,50,3,4,41,35,2565,2577,465,316,31,24,35,60,4,5,2940,2873,2424,2479,448,301,6,9,22,50,0,2,40,32,2462,2508,456,312,28,22,35,60,1,3,117,74,102,66,9,2,2,1,0,0,3,2,1,3,103,69,9,4,3,2,0,0,3,2 -050,01,115,Alabama,St. Clair County,12,8,5947,2930,3017,2472,2597,372,333,7,9,56,46,3,1,20,31,2490,2625,375,342,20,29,61,51,4,4,2841,2936,2403,2531,362,332,2,5,56,44,0,1,18,23,2420,2552,364,339,14,19,60,49,1,2,89,81,69,66,10,1,5,4,0,2,3,0,2,8,70,73,11,3,6,10,1,2,3,2 -050,01,115,Alabama,St. Clair County,12,9,5617,2757,2860,2345,2468,356,328,9,12,19,35,1,2,27,15,2368,2480,363,332,29,24,24,38,2,3,2667,2783,2262,2405,354,320,8,7,19,35,1,2,23,14,2282,2417,359,323,26,18,24,37,1,3,90,77,83,63,2,8,1,5,0,0,0,0,4,1,86,63,4,9,3,6,0,1,1,0 -050,01,115,Alabama,St. Clair County,12,10,6159,3058,3101,2624,2679,357,331,14,12,41,53,1,2,21,24,2643,2700,364,337,28,29,43,56,1,5,2983,3008,2561,2595,353,328,12,10,38,52,1,0,18,23,2577,2615,358,333,25,26,40,55,1,3,75,93,63,84,4,3,2,2,3,1,0,2,3,1,66,85,6,4,3,3,3,1,0,2 -050,01,115,Alabama,St. Clair County,12,11,6056,3084,2972,2677,2634,350,284,18,11,28,22,1,2,10,19,2687,2649,351,290,27,23,29,26,1,4,3033,2928,2632,2595,348,283,16,10,26,22,1,2,10,16,2642,2607,349,288,25,21,27,25,1,4,51,44,45,39,2,1,2,1,2,0,0,0,0,3,45,42,2,2,2,2,2,1,0,0 -050,01,115,Alabama,St. Clair County,12,12,6440,3131,3309,2781,2954,296,297,14,15,10,19,2,2,28,22,2806,2975,302,300,35,33,14,21,2,3,3085,3267,2740,2921,295,294,11,14,10,17,1,2,28,19,2765,2939,301,297,32,30,14,18,1,3,46,42,41,33,1,3,3,1,0,2,1,0,0,3,41,36,1,3,3,3,0,3,1,0 -050,01,115,Alabama,St. Clair County,12,13,5883,2816,3067,2558,2756,209,239,17,11,15,32,0,3,17,26,2574,2779,210,248,33,31,16,34,0,4,2796,3032,2543,2727,206,238,15,10,15,31,0,2,17,24,2559,2748,207,245,31,30,16,33,0,3,20,35,15,29,3,1,2,1,0,1,0,1,0,2,15,31,3,3,2,1,0,1,0,1 -050,01,115,Alabama,St. Clair County,12,14,4981,2287,2694,2103,2442,129,190,9,9,23,33,2,0,21,20,2121,2461,132,192,28,25,24,36,3,0,2271,2681,2088,2431,129,189,9,8,23,33,1,0,21,20,2106,2450,132,191,28,24,24,36,2,0,16,13,15,11,0,1,0,1,0,0,1,0,0,0,15,11,0,1,0,1,0,0,1,0 -050,01,115,Alabama,St. Clair County,12,15,4211,1931,2280,1791,2121,102,128,11,14,9,4,1,1,17,12,1808,2131,104,130,28,25,10,5,2,1,1914,2262,1777,2103,101,128,10,14,9,4,1,1,16,12,1793,2113,103,130,26,25,10,5,2,1,17,18,14,18,1,0,1,0,0,0,0,0,1,0,15,18,1,0,2,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,12,16,2976,1345,1631,1235,1515,79,89,15,7,0,7,1,0,15,13,1250,1527,80,90,29,20,0,7,1,0,1337,1621,1227,1505,79,89,15,7,0,7,1,0,15,13,1242,1517,80,90,29,20,0,7,1,0,8,10,8,10,0,0,0,0,0,0,0,0,0,0,8,10,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,12,17,1749,745,1004,698,946,30,39,5,5,1,2,1,0,10,12,708,955,30,41,13,16,3,4,1,0,740,993,693,935,30,39,5,5,1,2,1,0,10,12,703,944,30,41,13,16,3,4,1,0,5,11,5,11,0,0,0,0,0,0,0,0,0,0,5,11,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,12,18,1385,508,877,488,836,12,21,4,4,1,3,1,0,2,13,490,847,13,24,5,16,1,5,1,0,503,868,483,827,12,21,4,4,1,3,1,0,2,13,485,838,13,24,5,16,1,5,1,0,5,9,5,9,0,0,0,0,0,0,0,0,0,0,5,9,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,13,0,90739,44838,45901,38836,40203,4695,4264,203,180,385,476,36,40,683,738,39472,40884,5029,4637,474,475,518,600,55,63,43702,44762,37855,39225,4638,4205,166,148,372,463,22,29,649,692,38464,39872,4951,4559,423,416,497,577,38,46,1136,1139,981,978,57,59,37,32,13,13,14,11,34,46,1008,1012,78,78,51,59,21,23,17,17 -050,01,115,Alabama,St. Clair County,13,1,5133,2588,2545,2177,2099,244,260,15,7,23,35,4,3,125,141,2299,2238,332,360,33,26,46,60,8,6,2515,2464,2118,2033,243,253,10,3,20,34,3,2,121,139,2236,2170,327,352,27,22,43,58,7,5,73,81,59,66,1,7,5,4,3,1,1,1,4,2,63,68,5,8,6,4,3,2,1,1 -050,01,115,Alabama,St. Clair County,13,2,5617,2930,2687,2558,2290,270,262,7,5,22,14,4,4,69,112,2625,2395,320,339,19,27,32,34,6,5,2835,2570,2477,2188,266,253,4,4,22,12,3,3,63,110,2539,2292,310,328,13,26,32,31,4,4,95,117,81,102,4,9,3,1,0,2,1,1,6,2,86,103,10,11,6,1,0,3,2,1 -050,01,115,Alabama,St. Clair County,13,3,5974,3117,2857,2680,2475,304,266,8,10,24,19,3,6,98,81,2773,2552,366,319,31,30,42,31,5,8,3005,2727,2584,2366,293,258,6,6,23,19,2,3,97,75,2676,2438,354,308,29,23,41,30,4,5,112,130,96,109,11,8,2,4,1,0,1,3,1,6,97,114,12,11,2,7,1,1,1,3 -050,01,115,Alabama,St. Clair County,13,4,5261,2766,2495,2375,2116,270,268,10,8,42,41,3,1,66,61,2437,2173,305,308,31,24,61,52,3,1,2636,2370,2261,2010,266,258,6,4,41,40,1,1,61,57,2319,2064,301,296,24,18,57,50,1,1,130,125,114,106,4,10,4,4,1,1,2,0,5,4,118,109,4,12,7,6,4,2,2,0 -050,01,115,Alabama,St. Clair County,13,5,4586,2375,2211,1981,1899,305,224,11,8,13,35,1,4,64,41,2039,1937,339,247,34,22,29,43,2,5,2276,2150,1889,1850,302,220,9,7,12,33,1,3,63,37,1946,1886,336,239,31,21,28,40,2,3,99,61,92,49,3,4,2,1,1,2,0,1,1,4,93,51,3,8,3,1,1,3,0,2 -050,01,115,Alabama,St. Clair County,13,6,5748,2951,2797,2430,2422,443,290,8,11,29,18,3,3,38,53,2465,2469,458,315,20,32,40,29,6,8,2891,2722,2379,2359,442,289,7,10,29,18,2,2,32,44,2410,2399,452,310,17,24,39,28,5,5,60,75,51,63,1,1,1,1,0,0,1,1,6,9,55,70,6,5,3,8,1,1,1,3 -050,01,115,Alabama,St. Clair County,13,7,6139,3148,2991,2576,2574,505,314,11,16,17,49,3,5,36,33,2608,2605,515,325,27,30,29,57,5,7,3036,2908,2478,2498,496,313,10,14,16,48,1,4,35,31,2509,2527,506,323,25,27,28,56,3,6,112,83,98,76,9,1,1,2,1,1,2,1,1,2,99,78,9,2,2,3,1,1,2,1 -050,01,115,Alabama,St. Clair County,13,8,6073,3009,3064,2560,2647,359,330,15,8,55,43,3,1,17,35,2575,2677,362,338,25,33,60,50,5,4,2890,2978,2460,2575,349,329,9,4,55,41,0,1,17,28,2475,2601,352,337,19,23,60,47,2,1,119,86,100,72,10,1,6,4,0,2,3,0,0,7,100,76,10,1,6,10,0,3,3,3 -050,01,115,Alabama,St. Clair County,13,9,5697,2813,2884,2374,2493,373,327,7,8,31,33,2,1,26,22,2394,2509,382,334,24,23,38,38,4,2,2734,2813,2308,2432,370,320,4,7,31,33,1,1,20,20,2325,2447,376,326,19,21,35,37,1,2,79,71,66,61,3,7,3,1,0,0,1,0,6,2,69,62,6,8,5,2,3,1,3,0 -050,01,115,Alabama,St. Clair County,13,10,6094,2978,3116,2537,2657,363,362,13,18,35,53,1,3,29,23,2564,2678,369,364,32,34,42,59,1,4,2895,3000,2466,2554,359,358,11,13,32,52,1,1,26,22,2490,2575,363,360,30,28,38,57,1,2,83,116,71,103,4,4,2,5,3,1,0,2,3,1,74,103,6,4,2,6,4,2,0,2 -050,01,115,Alabama,St. Clair County,13,11,6044,3043,3001,2630,2649,356,287,18,13,33,31,1,2,5,19,2635,2665,358,293,21,29,33,34,1,2,2986,2956,2579,2608,353,287,16,11,32,31,1,2,5,17,2584,2622,355,293,19,25,32,33,1,2,57,45,51,41,3,0,2,2,1,0,0,0,0,2,51,43,3,0,2,4,1,1,0,0 -050,01,115,Alabama,St. Clair County,13,12,6446,3145,3301,2783,2933,308,317,14,10,13,16,2,3,25,22,2806,2952,313,322,36,27,14,18,2,4,3106,3257,2749,2899,307,313,13,10,11,14,1,3,25,18,2772,2914,312,318,35,23,12,16,1,4,39,44,34,34,1,4,1,0,2,2,1,0,0,4,34,38,1,4,1,4,2,2,1,0 -050,01,115,Alabama,St. Clair County,13,13,6032,2933,3099,2651,2786,234,251,18,15,16,24,0,2,14,21,2663,2806,236,255,31,31,17,25,0,3,2909,3058,2631,2750,233,250,15,14,16,23,0,1,14,20,2643,2769,235,253,28,30,17,24,0,2,24,41,20,36,1,1,3,1,0,1,0,1,0,1,20,37,1,2,3,1,0,1,0,1 -050,01,115,Alabama,St. Clair County,13,14,5127,2293,2834,2118,2549,122,207,9,10,18,45,2,1,24,22,2139,2568,128,211,31,28,18,46,2,3,2272,2820,2100,2538,121,206,8,8,18,45,1,1,24,22,2121,2557,127,210,30,26,18,46,1,3,21,14,18,11,1,1,1,2,0,0,1,0,0,0,18,11,1,1,1,2,0,0,1,0 -050,01,115,Alabama,St. Clair County,13,15,4416,2046,2370,1898,2199,106,140,14,13,10,7,1,1,17,10,1915,2209,107,141,30,21,10,8,2,1,2031,2354,1885,2184,106,139,13,13,10,7,1,1,16,10,1901,2194,107,140,28,21,10,8,2,1,15,16,13,15,0,1,1,0,0,0,0,0,1,0,14,15,0,1,2,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,13,16,3080,1370,1710,1254,1586,84,92,12,8,2,6,1,0,17,18,1270,1602,87,95,26,24,3,7,1,0,1362,1698,1247,1574,83,92,12,8,2,6,1,0,17,18,1263,1590,86,95,26,24,3,7,1,0,8,12,7,12,1,0,0,0,0,0,0,0,0,0,7,12,1,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,13,17,1812,794,1018,742,954,33,43,8,5,1,4,1,0,9,12,750,964,35,45,15,16,2,5,1,0,789,1006,737,942,33,43,8,5,1,4,1,0,9,12,745,952,35,45,15,16,2,5,1,0,5,12,5,12,0,0,0,0,0,0,0,0,0,0,5,12,0,0,0,0,0,0,0,0 -050,01,115,Alabama,St. Clair County,13,18,1460,539,921,512,875,16,24,5,7,1,3,1,0,4,12,515,885,17,26,8,18,2,4,1,0,534,911,507,865,16,24,5,7,1,3,1,0,4,12,510,875,17,26,8,18,2,4,1,0,5,10,5,10,0,0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,1,0,195085,95557,99528,82332,84899,9870,11109,353,341,1827,2043,64,47,1111,1089,83378,85894,10345,11591,756,743,2160,2369,106,113,89164,94354,76417,80151,9725,10964,214,245,1769,1991,39,23,1000,980,77363,81052,10137,11390,567,593,2080,2291,77,79,6393,5174,5915,4748,145,145,139,96,58,52,25,24,111,109,6015,4842,208,201,189,150,80,78,29,34 -050,01,117,Alabama,Shelby County,1,1,13136,6745,6391,5614,5238,780,780,22,31,137,158,5,9,187,175,5792,5407,902,886,48,49,194,215,11,14,6004,5672,4936,4585,762,760,9,13,128,151,3,4,166,159,5096,4740,872,857,26,26,182,203,8,9,741,719,678,653,18,20,13,18,9,7,2,5,21,16,696,667,30,29,22,23,12,12,3,5 -050,01,117,Alabama,Shelby County,1,2,14202,7266,6936,6036,5774,867,778,33,22,158,205,3,5,169,152,6199,5916,966,871,54,54,214,245,8,14,6623,6333,5456,5226,839,762,16,12,152,196,1,2,159,135,5612,5355,931,847,30,34,207,231,6,10,643,603,580,548,28,16,17,10,6,9,2,3,10,17,587,561,35,24,24,20,7,14,2,4 -050,01,117,Alabama,Shelby County,1,3,14369,7318,7051,6133,5911,897,841,25,17,127,172,5,3,131,107,6257,6011,962,900,56,43,169,205,11,10,6800,6568,5662,5469,883,826,13,11,123,165,3,0,116,97,5772,5560,941,882,38,31,161,195,8,4,518,483,471,442,14,15,12,6,4,7,2,3,15,10,485,451,21,18,18,12,8,10,3,6 -050,01,117,Alabama,Shelby County,1,4,12688,6575,6113,5495,5112,831,766,21,15,123,121,5,3,100,96,5589,5204,875,814,55,37,157,154,6,10,6130,5737,5068,4771,823,753,19,12,119,113,4,1,97,87,5159,4855,866,797,52,28,152,143,5,7,445,376,427,341,8,13,2,3,4,8,1,2,3,9,430,349,9,17,3,9,5,11,1,3 -050,01,117,Alabama,Shelby County,1,5,10697,5293,5404,4427,4372,641,834,43,25,107,89,9,3,66,81,4488,4441,680,874,71,53,122,113,11,12,4578,4986,3767,3988,630,827,25,13,97,86,4,1,55,71,3818,4048,660,858,49,39,109,109,6,9,715,418,660,384,11,7,18,12,10,3,5,2,11,10,670,393,20,16,22,14,13,4,5,3 -050,01,117,Alabama,Shelby County,1,6,13060,6322,6738,5275,5455,837,1022,29,25,107,165,9,5,65,66,5333,5509,860,1049,57,47,126,195,14,11,5501,6189,4510,4955,822,1006,10,9,103,164,7,4,49,51,4554,4995,835,1024,31,25,120,191,12,10,821,549,765,500,15,16,19,16,4,1,2,1,16,15,779,514,25,25,26,22,6,4,2,1 -050,01,117,Alabama,Shelby County,1,7,14065,6934,7131,5775,5739,872,1099,36,21,173,205,9,2,69,65,5840,5793,890,1123,68,45,197,231,10,6,6207,6564,5108,5214,855,1081,14,12,167,199,4,2,59,56,5164,5260,868,1100,42,33,189,222,5,6,727,567,667,525,17,18,22,9,6,6,5,0,10,9,676,533,22,23,26,12,8,9,5,0 -050,01,117,Alabama,Shelby County,1,8,15174,7477,7697,6325,6356,856,1019,28,28,212,220,4,4,52,70,6375,6422,871,1043,50,66,232,244,9,7,6900,7238,5788,5932,849,1003,11,21,207,217,2,3,43,62,5829,5991,859,1023,28,53,226,240,6,5,577,459,537,424,7,16,17,7,5,3,2,1,9,8,546,431,12,20,22,13,6,4,3,2 -050,01,117,Alabama,Shelby County,1,9,14598,7187,7411,6193,6263,739,889,22,26,164,175,3,6,66,52,6258,6311,754,902,60,58,181,188,5,8,6751,7088,5789,5963,728,882,14,22,157,172,3,2,60,47,5848,6007,740,894,50,51,172,184,5,3,436,323,404,300,11,7,8,4,7,3,0,4,6,5,410,304,14,8,10,7,9,4,0,5 -050,01,117,Alabama,Shelby County,1,10,15183,7326,7857,6363,6787,745,830,25,33,138,153,3,0,52,54,6408,6833,758,847,61,68,151,165,5,3,7027,7622,6080,6559,739,827,21,32,138,151,1,0,48,53,6121,6604,750,844,56,67,149,162,2,3,299,235,283,228,6,3,4,1,0,2,2,0,4,1,287,229,8,3,5,1,2,3,3,0 -050,01,117,Alabama,Shelby County,1,11,14250,6909,7341,6099,6457,601,667,22,39,135,118,5,2,47,58,6143,6508,605,679,56,75,146,135,8,7,6728,7189,5925,6319,599,661,19,34,135,118,4,2,46,55,5968,6368,603,671,52,68,146,135,7,7,181,152,174,138,2,6,3,5,0,0,1,0,1,3,175,140,2,8,4,7,0,0,1,0 -050,01,117,Alabama,Shelby County,1,12,12429,5924,6505,5333,5765,442,588,21,25,88,91,2,2,38,34,5367,5797,450,595,44,50,100,97,3,3,5812,6408,5229,5678,441,584,18,22,87,91,1,1,36,32,5261,5708,448,590,39,45,99,97,2,2,112,97,104,87,1,4,3,3,1,0,1,1,2,2,106,89,2,5,5,5,1,0,1,1 -050,01,117,Alabama,Shelby County,1,13,10607,5028,5579,4636,5111,308,368,8,17,53,60,1,1,22,22,4655,5130,311,373,26,35,56,62,2,3,4958,5506,4574,5045,304,367,7,15,52,58,1,0,20,21,4591,5063,306,372,24,33,55,60,2,1,70,73,62,66,4,1,1,2,1,2,0,1,2,1,64,67,5,1,2,2,1,2,0,2 -050,01,117,Alabama,Shelby County,1,14,7426,3533,3893,3276,3590,184,231,4,6,48,37,0,2,21,27,3297,3615,185,236,19,28,53,40,1,3,3495,3862,3240,3562,183,230,4,6,48,37,0,1,20,26,3260,3586,184,235,19,27,52,40,1,2,38,31,36,28,1,1,0,0,0,0,0,1,1,1,37,29,1,1,0,1,1,0,0,1 -050,01,117,Alabama,Shelby County,1,15,5062,2380,2682,2200,2491,128,144,11,8,32,30,1,0,8,9,2208,2499,128,145,16,14,34,33,2,1,2352,2651,2173,2461,128,143,11,8,31,30,1,0,8,9,2181,2469,128,144,16,14,33,33,2,1,28,31,27,30,0,1,0,0,1,0,0,0,0,0,27,30,0,1,0,0,1,0,0,0 -050,01,117,Alabama,Shelby County,1,16,3662,1637,2025,1534,1877,77,111,2,1,15,26,0,0,9,10,1543,1887,81,111,7,8,16,29,0,0,1618,2002,1516,1855,76,111,2,1,15,25,0,0,9,10,1525,1865,80,111,7,8,16,28,0,0,19,23,18,22,1,0,0,0,0,1,0,0,0,0,18,22,1,0,0,0,0,1,0,0 -050,01,117,Alabama,Shelby County,1,17,2570,1052,1518,1001,1418,38,81,1,2,7,9,0,0,5,8,1006,1425,38,82,5,10,8,9,0,1,1041,1502,990,1405,38,80,1,2,7,9,0,0,5,6,995,1411,38,80,5,8,8,9,0,0,11,16,11,13,0,1,0,0,0,0,0,0,0,2,11,14,0,2,0,2,0,0,0,1 -050,01,117,Alabama,Shelby County,1,18,1907,651,1256,617,1183,27,61,0,0,3,9,0,0,4,3,620,1186,29,61,3,3,4,9,0,0,639,1237,606,1164,26,61,0,0,3,9,0,0,4,3,609,1167,28,61,3,3,4,9,0,0,12,19,11,19,1,0,0,0,0,0,0,0,0,0,11,19,1,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,2,0,195257,95643,99614,82414,84984,9869,11110,353,341,1827,2043,64,47,1116,1089,83465,85979,10344,11592,761,743,2160,2369,106,113,89246,94434,76495,80230,9724,10965,214,245,1769,1991,39,23,1005,980,77446,81131,10136,11391,572,593,2080,2291,77,79,6397,5180,5919,4754,145,145,139,96,58,52,25,24,111,109,6019,4848,208,201,189,150,80,78,29,34 -050,01,117,Alabama,Shelby County,2,1,13141,6745,6396,5614,5242,779,781,22,31,137,158,5,9,188,175,5793,5411,901,887,49,49,194,215,11,14,6004,5676,4936,4588,761,761,9,13,128,151,3,4,167,159,5097,4743,871,858,27,26,182,203,8,9,741,720,678,654,18,20,13,18,9,7,2,5,21,16,696,668,30,29,22,23,12,12,3,5 -050,01,117,Alabama,Shelby County,2,2,14212,7270,6942,6039,5780,867,778,33,22,158,205,3,5,170,152,6203,5922,966,871,55,54,214,245,8,14,6627,6338,5459,5231,839,762,16,12,152,196,1,2,160,135,5616,5360,931,847,31,34,207,231,6,10,643,604,580,549,28,16,17,10,6,9,2,3,10,17,587,562,35,24,24,20,7,14,2,4 -050,01,117,Alabama,Shelby County,2,3,14394,7331,7063,6144,5923,898,841,25,17,127,172,5,3,132,107,6269,6023,963,900,57,43,169,205,11,10,6813,6580,5673,5481,884,826,13,11,123,165,3,0,117,97,5784,5572,942,882,39,31,161,195,8,4,518,483,471,442,14,15,12,6,4,7,2,3,15,10,485,451,21,18,18,12,8,10,3,6 -050,01,117,Alabama,Shelby County,2,4,12709,6590,6119,5510,5117,831,767,21,15,123,121,5,3,100,96,5604,5209,875,815,55,37,157,154,6,10,6144,5742,5082,4775,823,754,19,12,119,113,4,1,97,87,5173,4859,866,798,52,28,152,143,5,7,446,377,428,342,8,13,2,3,4,8,1,2,3,9,431,350,9,17,3,9,5,11,1,3 -050,01,117,Alabama,Shelby County,2,5,10699,5295,5404,4429,4372,641,834,43,25,107,89,9,3,66,81,4490,4441,680,874,71,53,122,113,11,12,4579,4986,3768,3988,630,827,25,13,97,86,4,1,55,71,3819,4048,660,858,49,39,109,109,6,9,716,418,661,384,11,7,18,12,10,3,5,2,11,10,671,393,20,16,22,14,13,4,5,3 -050,01,117,Alabama,Shelby County,2,6,13063,6325,6738,5278,5455,837,1022,29,25,107,165,9,5,65,66,5336,5509,860,1049,57,47,126,195,14,11,5504,6189,4513,4955,822,1006,10,9,103,164,7,4,49,51,4557,4995,835,1024,31,25,120,191,12,10,821,549,765,500,15,16,19,16,4,1,2,1,16,15,779,514,25,25,26,22,6,4,2,1 -050,01,117,Alabama,Shelby County,2,7,14067,6934,7133,5776,5742,871,1098,36,21,173,205,9,2,69,65,5841,5796,889,1122,68,45,197,231,10,6,6207,6566,5109,5217,854,1080,14,12,167,199,4,2,59,56,5165,5263,867,1099,42,33,189,222,5,6,727,567,667,525,17,18,22,9,6,6,5,0,10,9,676,533,22,23,26,12,8,9,5,0 -050,01,117,Alabama,Shelby County,2,8,15188,7484,7704,6331,6363,856,1019,28,28,212,220,4,4,53,70,6382,6429,871,1043,51,66,232,244,9,7,6907,7244,5794,5938,849,1003,11,21,207,217,2,3,44,62,5836,5997,859,1023,29,53,226,240,6,5,577,460,537,425,7,16,17,7,5,3,2,1,9,8,546,432,12,20,22,13,6,4,3,2 -050,01,117,Alabama,Shelby County,2,9,14612,7194,7418,6198,6271,740,888,22,26,164,175,3,6,67,52,6264,6319,755,901,61,58,181,188,5,8,6757,7095,5793,5971,729,881,14,22,157,172,3,2,61,47,5853,6015,741,893,51,51,172,184,5,3,437,323,405,300,11,7,8,4,7,3,0,4,6,5,411,304,14,8,10,7,9,4,0,5 -050,01,117,Alabama,Shelby County,2,10,15204,7337,7867,6373,6795,746,832,25,33,138,153,3,0,52,54,6418,6841,759,849,61,68,151,165,5,3,7038,7632,6090,6567,740,829,21,32,138,151,1,0,48,53,6131,6612,751,846,56,67,149,162,2,3,299,235,283,228,6,3,4,1,0,2,2,0,4,1,287,229,8,3,5,1,2,3,3,0 -050,01,117,Alabama,Shelby County,2,11,14266,6913,7353,6103,6469,601,667,22,39,135,118,5,2,47,58,6147,6520,605,679,56,75,146,135,8,7,6732,7200,5929,6330,599,661,19,34,135,118,4,2,46,55,5972,6379,603,671,52,68,146,135,7,7,181,153,174,139,2,6,3,5,0,0,1,0,1,3,175,141,2,8,4,7,0,0,1,0 -050,01,117,Alabama,Shelby County,2,12,12440,5929,6511,5338,5770,442,589,21,25,88,91,2,2,38,34,5372,5802,450,596,44,50,100,97,3,3,5816,6414,5233,5683,441,585,18,22,87,91,1,1,36,32,5265,5713,448,591,39,45,99,97,2,2,113,97,105,87,1,4,3,3,1,0,1,1,2,2,107,89,2,5,5,5,1,0,1,1 -050,01,117,Alabama,Shelby County,2,13,10618,5034,5584,4642,5116,308,368,8,17,53,60,1,1,22,22,4661,5135,311,373,26,35,56,62,2,3,4964,5511,4580,5050,304,367,7,15,52,58,1,0,20,21,4597,5068,306,372,24,33,55,60,2,1,70,73,62,66,4,1,1,2,1,2,0,1,2,1,64,67,5,1,2,2,1,2,0,2 -050,01,117,Alabama,Shelby County,2,14,7432,3537,3895,3280,3592,184,231,4,6,48,37,0,2,21,27,3301,3617,185,236,19,28,53,40,1,3,3499,3864,3244,3564,183,230,4,6,48,37,0,1,20,26,3264,3588,184,235,19,27,52,40,1,2,38,31,36,28,1,1,0,0,0,0,0,1,1,1,37,29,1,1,0,1,1,0,0,1 -050,01,117,Alabama,Shelby County,2,15,5066,2382,2684,2203,2495,127,142,11,8,32,30,1,0,8,9,2211,2503,127,143,16,14,34,33,2,1,2354,2653,2176,2465,127,141,11,8,31,30,1,0,8,9,2184,2473,127,142,16,14,33,33,2,1,28,31,27,30,0,1,0,0,1,0,0,0,0,0,27,30,0,1,0,0,1,0,0,0 -050,01,117,Alabama,Shelby County,2,16,3664,1638,2026,1536,1878,76,111,2,1,15,26,0,0,9,10,1545,1888,80,111,7,8,16,29,0,0,1619,2003,1518,1856,75,111,2,1,15,25,0,0,9,10,1527,1866,79,111,7,8,16,28,0,0,19,23,18,22,1,0,0,0,0,1,0,0,0,0,18,22,1,0,0,0,0,1,0,0 -050,01,117,Alabama,Shelby County,2,17,2575,1054,1521,1003,1421,38,81,1,2,7,9,0,0,5,8,1008,1428,38,82,5,10,8,9,0,1,1043,1505,992,1408,38,80,1,2,7,9,0,0,5,6,997,1414,38,80,5,8,8,9,0,0,11,16,11,13,0,1,0,0,0,0,0,0,0,2,11,14,0,2,0,2,0,0,0,1 -050,01,117,Alabama,Shelby County,2,18,1907,651,1256,617,1183,27,61,0,0,3,9,0,0,4,3,620,1186,29,61,3,3,4,9,0,0,639,1236,606,1163,26,61,0,0,3,9,0,0,4,3,609,1166,28,61,3,3,4,9,0,0,12,20,11,20,1,0,0,0,0,0,0,0,0,0,11,20,1,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,3,0,196036,95948,100088,82612,85285,9951,11258,349,341,1843,2048,67,49,1126,1107,83637,86291,10442,11753,798,774,2200,2395,115,115,89585,94895,76732,80523,9808,11112,208,246,1782,1994,40,24,1015,996,77663,81436,10245,11554,598,616,2106,2305,79,69,6363,5193,5880,4762,143,146,141,95,61,54,27,25,111,111,5974,4855,197,199,200,158,94,90,36,46 -050,01,117,Alabama,Shelby County,3,1,13111,6700,6411,5568,5251,782,783,19,28,135,159,5,9,191,181,5751,5421,906,903,51,56,188,213,12,16,5968,5679,4896,4585,765,764,7,11,126,151,3,4,171,164,5062,4739,875,875,29,31,175,199,10,8,732,732,672,666,17,19,12,17,9,8,2,5,20,17,689,682,31,28,22,25,13,14,2,8 -050,01,117,Alabama,Shelby County,3,2,14180,7257,6923,6021,5744,868,794,33,24,156,203,3,6,176,152,6188,5889,979,888,66,55,214,246,8,14,6617,6320,5444,5198,842,776,15,14,150,195,1,2,165,135,5602,5328,946,862,42,38,204,233,5,6,640,603,577,546,26,18,18,10,6,8,2,4,11,17,586,561,33,26,24,17,10,13,3,8 -050,01,117,Alabama,Shelby County,3,3,14453,7366,7087,6154,5932,914,854,24,16,134,173,6,2,134,110,6278,6031,989,921,59,44,180,207,10,6,6838,6595,5675,5483,899,839,11,10,130,165,4,0,119,98,5785,5574,966,898,39,31,170,195,6,4,528,492,479,449,15,15,13,6,4,8,2,2,15,12,493,457,23,23,20,13,10,12,4,2 -050,01,117,Alabama,Shelby County,3,4,12855,6660,6195,5571,5175,840,781,22,16,123,121,5,3,99,99,5661,5265,889,831,56,44,155,155,12,9,6217,5819,5147,4834,832,768,20,13,118,113,4,1,96,90,5234,4917,880,814,53,38,149,143,11,3,443,376,424,341,8,13,2,3,5,8,1,2,3,9,427,348,9,17,3,6,6,12,1,6 -050,01,117,Alabama,Shelby County,3,5,10706,5281,5425,4411,4387,649,842,41,25,105,86,9,3,66,82,4471,4465,677,876,67,53,132,118,10,6,4599,5019,3781,4013,638,836,24,14,95,84,4,1,57,71,3834,4080,663,866,45,35,119,112,5,4,682,406,630,374,11,6,17,11,10,2,5,2,9,11,637,385,14,10,22,18,13,6,5,2 -050,01,117,Alabama,Shelby County,3,6,13056,6306,6750,5255,5462,837,1029,28,28,110,160,8,6,68,65,5313,5519,863,1056,57,56,136,183,13,10,5501,6209,4506,4967,823,1014,10,11,106,159,6,5,50,53,4549,5013,839,1034,29,31,127,180,10,7,805,541,749,495,14,15,18,17,4,1,2,1,18,12,764,506,24,22,28,25,9,3,3,3 -050,01,117,Alabama,Shelby County,3,7,14118,6958,7160,5791,5747,876,1117,37,22,173,205,11,2,70,67,5852,5805,894,1138,70,49,204,234,16,7,6224,6599,5121,5233,858,1098,14,11,166,198,5,2,60,57,5173,5283,874,1115,39,31,195,224,8,6,734,561,670,514,18,19,23,11,7,7,6,0,10,10,679,522,20,23,31,18,9,10,8,1 -050,01,117,Alabama,Shelby County,3,8,15051,7422,7629,6271,6286,855,1028,27,25,211,219,5,3,53,68,6316,6349,866,1047,52,65,233,245,10,10,6843,7163,5734,5853,848,1012,11,19,205,216,2,2,43,61,5772,5911,855,1028,31,54,223,239,6,7,579,466,537,433,7,16,16,6,6,3,3,1,10,7,544,438,11,19,21,11,10,6,4,3 -050,01,117,Alabama,Shelby County,3,9,14742,7242,7500,6238,6328,749,904,23,26,167,178,3,8,62,56,6296,6376,761,919,65,63,184,195,6,14,6810,7178,5836,6031,739,896,14,22,161,175,3,3,57,51,5890,6075,750,909,55,55,175,191,5,7,432,322,402,297,10,8,9,4,6,3,0,5,5,5,406,301,11,10,10,8,9,4,1,7 -050,01,117,Alabama,Shelby County,3,10,15204,7344,7860,6377,6775,746,843,26,32,138,158,2,0,55,52,6425,6821,756,855,62,63,154,172,3,4,7041,7619,6092,6542,740,840,21,31,137,155,0,0,51,51,6136,6588,748,852,56,62,152,168,1,3,303,241,285,233,6,3,5,1,1,3,2,0,4,1,289,233,8,3,6,1,2,4,2,1 -050,01,117,Alabama,Shelby County,3,11,14342,6941,7401,6115,6506,613,675,22,40,140,120,6,2,45,58,6155,6558,619,686,56,80,152,136,6,5,6757,7243,5938,6361,611,670,19,35,140,120,5,2,44,55,5977,6411,617,679,52,74,152,135,5,5,184,158,177,145,2,5,3,5,0,0,1,0,1,3,178,147,2,7,4,6,0,1,1,0 -050,01,117,Alabama,Shelby County,3,12,12558,5987,6571,5389,5819,445,597,22,25,90,93,2,2,39,35,5423,5850,452,604,51,51,102,100,3,3,5875,6475,5286,5733,444,592,18,23,89,93,1,1,37,33,5318,5762,450,599,45,47,101,100,2,2,112,96,103,86,1,5,4,2,1,0,1,1,2,2,105,88,2,5,6,4,1,0,1,1 -050,01,117,Alabama,Shelby County,3,13,10751,5109,5642,4708,5169,315,376,8,14,54,59,1,1,23,23,4728,5189,318,380,27,31,57,62,3,4,5035,5570,4642,5103,311,375,7,13,53,57,1,0,21,22,4661,5122,314,379,24,29,56,60,2,3,74,72,66,66,4,1,1,1,1,2,0,1,2,1,67,67,4,1,3,2,1,2,1,1 -050,01,117,Alabama,Shelby County,3,14,7499,3568,3931,3308,3624,192,233,4,7,45,38,0,2,19,27,3323,3647,198,239,21,27,47,46,1,4,3528,3900,3271,3597,190,232,4,6,45,38,0,1,18,26,3285,3619,195,237,21,25,47,45,1,2,40,31,37,27,2,1,0,1,0,0,0,1,1,1,38,28,3,2,0,2,0,1,0,2 -050,01,117,Alabama,Shelby County,3,15,5148,2420,2728,2237,2532,128,147,11,8,34,31,1,0,9,10,2245,2541,129,148,20,16,34,33,1,0,2389,2693,2207,2498,128,146,11,8,33,31,1,0,9,10,2215,2507,129,147,20,16,33,33,1,0,31,35,30,34,0,1,0,0,1,0,0,0,0,0,30,34,0,1,0,0,1,0,0,0 -050,01,117,Alabama,Shelby County,3,16,3690,1651,2039,1549,1887,76,114,2,2,16,26,0,0,8,10,1555,1895,78,118,10,9,16,28,0,1,1631,2017,1530,1866,75,114,2,2,16,25,0,0,8,10,1536,1874,77,118,10,9,16,27,0,1,20,22,19,21,1,0,0,0,0,1,0,0,0,0,19,21,1,0,0,0,0,1,0,0 -050,01,117,Alabama,Shelby County,3,17,2624,1066,1558,1014,1458,39,79,0,3,8,10,0,0,5,8,1019,1463,39,82,5,9,8,12,0,2,1055,1539,1003,1443,39,78,0,3,8,10,0,0,5,5,1008,1446,39,80,5,7,8,11,0,1,11,19,11,15,0,1,0,0,0,0,0,0,0,3,11,17,0,2,0,2,0,1,0,1 -050,01,117,Alabama,Shelby County,3,18,1948,670,1278,635,1203,27,62,0,0,4,9,0,0,4,4,638,1207,29,62,3,3,4,10,1,0,657,1258,623,1183,26,62,0,0,4,9,0,0,4,4,626,1187,28,62,3,3,4,10,1,0,13,20,12,20,1,0,0,0,0,0,0,0,0,0,12,20,1,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,4,0,197968,96729,101239,82935,85866,10312,11700,360,355,1884,2119,63,49,1175,1150,84019,86923,10822,12212,817,793,2245,2469,118,118,90427,95956,77109,80989,10171,11563,216,261,1829,2066,37,25,1065,1052,78100,81966,10632,12021,611,650,2163,2384,79,76,6302,5283,5826,4877,141,137,144,94,55,53,26,24,110,98,5919,4957,190,191,206,143,82,85,39,42 -050,01,117,Alabama,Shelby County,4,1,12931,6631,6300,5469,5186,803,738,18,24,138,152,4,6,199,194,5658,5369,926,871,53,51,196,200,16,12,5895,5545,4783,4480,782,726,11,11,132,145,3,3,184,180,4959,4652,898,847,37,34,186,192,12,8,736,755,686,706,21,12,7,13,6,7,1,3,15,14,699,717,28,24,16,17,10,8,4,4 -050,01,117,Alabama,Shelby County,4,2,13893,7108,6785,5931,5573,802,805,35,31,149,210,6,8,185,158,6107,5723,915,902,71,60,203,255,16,20,6438,6172,5332,5013,777,786,15,21,142,205,2,3,170,144,5497,5151,881,874,42,43,194,245,11,9,670,613,599,560,25,19,20,10,7,5,4,5,15,14,610,572,34,28,29,17,9,10,5,11 -050,01,117,Alabama,Shelby County,4,3,14651,7460,7191,6143,5986,976,883,29,21,158,178,4,4,150,119,6284,6099,1058,946,64,53,205,216,11,9,6912,6650,5649,5490,961,870,12,11,154,168,3,2,133,109,5773,5594,1035,931,41,37,195,202,7,6,548,541,494,496,15,13,17,10,4,10,1,2,17,10,511,505,23,15,23,16,10,14,4,3 -050,01,117,Alabama,Shelby County,4,4,13215,6823,6392,5700,5316,867,836,19,12,124,129,5,2,108,97,5801,5405,921,887,57,38,158,164,7,12,6388,6007,5289,4963,857,826,18,9,118,120,4,0,102,89,5384,5045,909,872,52,32,150,151,6,6,435,385,411,353,10,10,1,3,6,9,1,2,6,8,417,360,12,15,5,6,8,13,1,6 -050,01,117,Alabama,Shelby County,4,5,10764,5351,5413,4462,4385,688,826,43,21,89,99,5,4,64,78,4521,4457,715,858,70,44,109,132,8,7,4714,5029,3869,4031,681,818,23,15,80,95,2,0,59,70,3924,4096,707,846,46,35,99,124,5,2,637,384,593,354,7,8,20,6,9,4,3,4,5,8,597,361,8,12,24,9,10,8,3,5 -050,01,117,Alabama,Shelby County,4,6,12691,6100,6591,5030,5263,841,1054,30,30,123,168,5,6,71,70,5093,5326,870,1078,63,54,150,197,6,12,5405,6102,4383,4811,830,1040,15,14,122,167,2,6,53,64,4429,4869,850,1060,39,36,145,193,3,10,695,489,647,452,11,14,15,16,1,1,3,0,18,6,664,457,20,18,24,18,5,4,3,2 -050,01,117,Alabama,Shelby County,4,7,14148,6937,7211,5706,5718,944,1185,41,27,160,212,13,0,73,69,5768,5780,964,1209,73,58,191,239,19,1,6229,6695,5063,5255,926,1164,15,11,155,208,7,0,63,57,5118,5306,944,1182,41,33,182,234,9,1,708,516,643,463,18,21,26,16,5,4,6,0,10,12,650,474,20,27,32,25,9,5,10,0 -050,01,117,Alabama,Shelby County,4,8,14469,7158,7311,6012,5948,868,1080,26,21,197,202,4,4,51,56,6056,6001,881,1096,51,52,214,220,7,8,6588,6823,5484,5487,858,1067,11,17,192,198,2,3,41,51,5522,5536,867,1080,28,44,208,216,4,7,570,488,528,461,10,13,15,4,5,4,2,1,10,5,534,465,14,16,23,8,6,4,3,1 -050,01,117,Alabama,Shelby County,4,9,15272,7451,7821,6390,6552,802,968,22,25,182,193,5,9,50,74,6435,6620,810,987,51,74,199,214,9,14,7029,7482,5993,6241,797,961,13,20,176,190,4,4,46,66,6034,6302,803,978,42,63,192,210,7,9,422,339,397,311,5,7,9,5,6,3,1,5,4,8,401,318,7,9,9,11,7,4,2,5 -050,01,117,Alabama,Shelby County,4,10,14910,7234,7676,6259,6569,745,855,27,34,144,172,1,0,58,46,6314,6608,752,869,68,64,161,184,4,2,6905,7410,5949,6317,739,848,22,32,141,169,0,0,54,44,6000,6355,745,861,60,60,158,180,3,2,329,266,310,252,6,7,5,2,3,3,1,0,4,2,314,253,7,8,8,4,3,4,1,0 -050,01,117,Alabama,Shelby County,4,11,14682,7072,7610,6185,6648,662,731,22,38,148,130,7,2,48,61,6228,6703,670,743,56,77,163,149,8,10,6864,7433,5989,6481,655,728,19,34,148,130,5,2,48,58,6032,6535,663,738,53,73,163,146,6,9,208,177,196,167,7,3,3,4,0,0,2,0,0,3,196,168,7,5,3,4,0,3,2,1 -050,01,117,Alabama,Shelby County,4,12,12921,6122,6799,5472,5983,486,653,23,34,96,92,1,1,44,36,5511,6014,496,663,53,59,109,101,2,2,6007,6703,5365,5896,486,648,18,31,96,92,1,1,41,35,5402,5926,494,658,47,56,107,100,2,2,115,96,107,87,0,5,5,3,0,0,0,0,3,1,109,88,2,5,6,3,2,1,0,0 -050,01,117,Alabama,Shelby County,4,13,11393,5420,5973,4963,5437,357,425,7,14,65,66,2,1,26,30,4986,5463,364,430,31,35,69,75,4,2,5331,5890,4881,5361,354,423,7,14,63,65,1,0,25,27,4903,5385,361,427,30,34,67,72,3,0,89,83,82,76,3,2,0,0,2,1,1,1,1,3,83,78,3,3,1,1,2,3,1,2 -050,01,117,Alabama,Shelby County,4,14,7801,3724,4077,3458,3775,201,231,6,8,42,38,0,2,17,23,3474,3795,205,236,18,27,46,41,0,2,3676,4039,3415,3742,199,231,5,6,42,37,0,1,15,22,3430,3761,201,236,15,25,46,39,0,1,48,38,43,33,2,0,1,2,0,1,0,1,2,1,44,34,4,0,3,2,0,2,0,1 -050,01,117,Alabama,Shelby County,4,15,5521,2585,2936,2394,2719,126,161,10,8,40,33,1,0,14,15,2407,2732,128,162,21,19,42,36,1,2,2537,2887,2347,2672,126,159,10,8,39,33,1,0,14,15,2360,2685,128,160,21,19,41,36,1,2,48,49,47,47,0,2,0,0,1,0,0,0,0,0,47,47,0,2,0,0,1,0,0,0 -050,01,117,Alabama,Shelby County,4,16,3803,1697,2106,1600,1942,75,126,2,4,13,25,0,0,7,9,1605,1951,77,126,9,12,13,25,0,1,1676,2086,1580,1923,74,126,2,4,13,24,0,0,7,9,1585,1932,76,126,9,12,13,24,0,1,21,20,20,19,1,0,0,0,0,1,0,0,0,0,20,19,1,0,0,0,0,1,0,0 -050,01,117,Alabama,Shelby County,4,17,2807,1126,1681,1066,1584,44,75,0,3,10,10,0,0,6,9,1072,1590,44,79,6,10,10,11,0,2,1115,1658,1055,1565,44,74,0,3,10,10,0,0,6,6,1061,1570,44,75,6,8,10,10,0,1,11,23,11,19,0,1,0,0,0,0,0,0,0,3,11,20,0,4,0,2,0,1,0,1 -050,01,117,Alabama,Shelby County,4,18,2096,730,1366,695,1282,25,68,0,0,6,10,0,0,4,6,699,1287,26,70,2,6,7,10,0,0,718,1345,683,1261,25,68,0,0,6,10,0,0,4,6,687,1266,26,70,2,6,7,10,0,0,12,21,12,21,0,0,0,0,0,0,0,0,0,0,12,21,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,5,0,200949,98000,102949,83667,86939,10688,12119,384,404,1964,2214,58,50,1239,1223,84818,88051,11234,12661,849,858,2348,2604,113,128,91686,97612,77820,82031,10543,11969,229,295,1915,2168,37,28,1142,1121,78886,83061,11041,12461,645,699,2275,2517,75,82,6314,5337,5847,4908,145,150,155,109,49,46,21,22,97,102,5932,4990,193,200,204,159,73,87,38,46 -050,01,117,Alabama,Shelby County,5,1,12715,6480,6235,5303,5096,783,719,19,32,159,173,4,5,212,210,5506,5296,924,853,53,63,218,236,12,17,5762,5498,4633,4414,759,703,15,14,151,168,2,3,202,196,4828,4602,893,831,43,40,209,223,8,10,718,737,670,682,24,16,4,18,8,5,2,2,10,14,678,694,31,22,10,23,9,13,4,7 -050,01,117,Alabama,Shelby County,5,2,14025,7167,6858,5909,5622,868,825,39,39,163,193,5,7,183,172,6087,5787,981,931,75,69,218,245,7,15,6457,6217,5276,5035,837,807,15,26,156,187,4,3,169,159,5441,5189,942,906,43,51,206,233,5,8,710,641,633,587,31,18,24,13,7,6,1,4,14,13,646,598,39,25,32,18,12,12,2,7 -050,01,117,Alabama,Shelby County,5,3,14749,7537,7212,6188,5970,1010,905,30,21,142,176,4,6,163,134,6341,6100,1099,981,67,58,196,216,14,13,6978,6646,5688,5455,990,889,13,10,140,167,2,4,145,121,5823,5574,1070,955,43,40,187,201,9,9,559,566,500,515,20,16,17,11,2,9,2,2,18,13,518,526,29,26,24,18,9,15,5,4 -050,01,117,Alabama,Shelby County,5,4,13387,6834,6553,5656,5423,908,866,20,16,123,140,5,4,122,104,5767,5517,975,920,55,46,162,178,8,9,6409,6165,5255,5071,900,856,16,8,119,130,4,2,115,98,5361,5162,963,906,48,34,155,166,6,7,425,388,401,352,8,10,4,8,4,10,1,2,7,6,406,355,12,14,7,12,7,12,2,2 -050,01,117,Alabama,Shelby County,5,5,11181,5595,5586,4656,4540,735,829,43,25,82,105,4,3,75,84,4729,4613,770,863,72,52,107,140,7,11,5057,5229,4159,4210,727,821,22,21,76,103,1,0,72,74,4229,4275,759,851,51,44,101,134,4,5,538,357,497,330,8,8,21,4,6,2,3,3,3,10,500,338,11,12,21,8,6,6,3,6 -050,01,117,Alabama,Shelby County,5,6,12539,5999,6540,4994,5191,776,1055,35,37,121,177,5,7,68,73,5053,5257,800,1081,60,64,150,208,9,9,5315,6061,4348,4752,765,1041,22,21,118,176,2,5,60,66,4400,4812,784,1064,43,45,145,205,5,6,684,479,646,439,11,14,13,16,3,1,3,2,8,7,653,445,16,17,17,19,5,3,4,3 -050,01,117,Alabama,Shelby County,5,7,14270,6928,7342,5616,5784,1019,1238,35,27,177,214,8,1,73,78,5683,5854,1038,1263,74,57,202,247,12,9,6222,6800,4964,5298,1006,1214,11,10,172,211,7,1,62,66,5021,5357,1022,1234,44,33,197,240,8,7,706,542,652,486,13,24,24,17,5,3,1,0,11,12,662,497,16,29,30,24,5,7,4,2 -050,01,117,Alabama,Shelby County,5,8,14322,7137,7185,5986,5791,867,1118,35,22,192,202,5,3,52,49,6038,5835,877,1131,62,45,213,219,13,6,6529,6727,5417,5363,864,1104,14,15,188,198,2,2,44,45,5461,5403,871,1116,36,36,207,214,8,5,608,458,569,428,3,14,21,7,4,4,3,1,8,4,577,432,6,15,26,9,6,5,5,1 -050,01,117,Alabama,Shelby County,5,9,15581,7573,8008,6449,6627,856,1065,20,29,194,203,6,8,48,76,6487,6695,867,1081,52,78,209,224,8,13,7170,7652,6073,6297,852,1056,9,25,190,201,4,5,42,68,6108,6360,862,1071,36,67,204,222,4,7,403,356,376,330,4,9,11,4,4,2,2,3,6,8,379,335,5,10,16,11,5,2,4,6 -050,01,117,Alabama,Shelby County,5,10,14650,7202,7448,6179,6349,768,849,25,32,162,169,1,1,67,48,6237,6389,778,858,69,59,181,186,5,8,6835,7166,5837,6080,759,845,18,30,158,167,1,0,62,44,5891,6118,767,853,59,56,177,182,4,4,367,282,342,269,9,4,7,2,4,2,0,1,5,4,346,271,11,5,10,3,4,4,1,4 -050,01,117,Alabama,Shelby County,5,11,14933,7147,7786,6232,6751,692,782,26,40,145,154,6,2,46,57,6274,6801,698,795,59,80,157,170,6,5,6932,7611,6029,6588,685,776,24,37,145,154,4,2,45,54,6070,6636,691,787,56,75,157,169,4,5,215,175,203,163,7,6,2,3,0,0,2,0,1,3,204,165,7,8,3,5,0,1,2,0 -050,01,117,Alabama,Shelby County,5,12,13244,6323,6921,5624,6061,515,670,22,44,114,103,2,0,46,43,5662,6096,522,680,51,72,130,115,6,3,6192,6806,5501,5956,514,665,17,40,114,103,2,0,44,42,5538,5990,520,675,46,68,129,114,5,3,131,115,123,105,1,5,5,4,0,0,0,0,2,1,124,106,2,5,5,4,1,1,1,0 -050,01,117,Alabama,Shelby County,5,13,11547,5415,6132,4917,5528,376,486,15,14,75,73,2,1,30,30,4944,5551,381,494,38,33,80,80,3,4,5317,6049,4827,5451,374,484,14,14,73,72,1,0,28,28,4852,5472,378,491,37,33,77,78,2,3,98,83,90,77,2,2,1,0,2,1,1,1,2,2,92,79,3,3,1,0,3,2,1,1 -050,01,117,Alabama,Shelby County,5,14,8703,4146,4557,3856,4221,223,266,8,11,42,39,0,0,17,20,3872,4238,227,271,20,28,46,41,2,1,4093,4514,3809,4183,220,266,7,9,42,38,0,0,15,18,3823,4199,223,269,18,25,45,39,2,1,53,43,47,38,3,0,1,2,0,1,0,0,2,2,49,39,4,2,2,3,1,2,0,0 -050,01,117,Alabama,Shelby County,5,15,5934,2772,3162,2565,2934,143,160,8,8,38,39,1,2,17,19,2582,2949,145,164,22,24,40,41,1,3,2721,3111,2514,2887,143,157,8,8,38,39,1,1,17,19,2531,2902,145,161,22,24,40,41,1,2,51,51,51,47,0,3,0,0,0,0,0,1,0,0,51,47,0,3,0,0,0,0,0,1 -050,01,117,Alabama,Shelby County,5,16,3948,1769,2179,1666,1995,75,143,4,4,17,25,0,0,7,12,1673,2005,75,145,11,15,17,26,0,0,1743,2158,1641,1974,74,143,4,4,17,25,0,0,7,12,1648,1984,74,145,11,15,17,26,0,0,26,21,25,21,1,0,0,0,0,0,0,0,0,0,25,21,1,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,5,17,2865,1146,1719,1085,1616,43,76,0,3,11,16,0,0,7,8,1092,1623,44,81,5,9,12,19,0,2,1134,1702,1073,1602,43,76,0,3,11,16,0,0,7,5,1080,1606,44,78,5,7,12,17,0,0,12,17,12,14,0,0,0,0,0,0,0,0,0,3,12,17,0,3,0,2,0,2,0,2 -050,01,117,Alabama,Shelby County,5,18,2356,830,1526,786,1440,31,67,0,0,7,13,0,0,6,6,791,1445,33,69,4,6,10,13,0,0,820,1500,776,1415,31,66,0,0,7,13,0,0,6,6,781,1420,33,68,4,6,10,13,0,0,10,26,10,25,0,1,0,0,0,0,0,0,0,0,10,25,0,1,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,6,0,204088,99268,104820,84529,88240,11008,12550,383,405,2007,2288,53,48,1288,1289,85729,89418,11570,13139,843,881,2402,2686,123,121,92937,99292,78666,83126,10858,12408,225,298,1962,2243,35,28,1191,1189,79782,84221,11377,12950,640,717,2333,2612,89,79,6331,5528,5863,5114,150,142,158,107,45,45,18,20,97,100,5947,5197,193,189,203,164,69,74,34,42 -050,01,117,Alabama,Shelby County,6,1,12650,6316,6334,5120,5192,773,734,20,27,169,167,4,2,230,212,5343,5392,916,877,53,64,240,228,13,7,5635,5595,4484,4501,758,718,13,14,163,162,2,1,215,199,4693,4691,894,855,41,43,232,220,9,4,681,739,636,691,15,16,7,13,6,5,2,1,15,13,650,701,22,22,12,21,8,8,4,3 -050,01,117,Alabama,Shelby County,6,2,14133,7221,6912,5987,5621,863,867,33,42,153,194,4,8,181,180,6159,5791,977,977,65,76,204,244,12,17,6483,6199,5319,4966,833,852,14,23,145,189,3,5,169,164,5480,5124,939,954,40,48,194,236,9,9,738,713,668,655,30,15,19,19,8,5,1,3,12,16,679,667,38,23,25,28,10,8,3,8 -050,01,117,Alabama,Shelby County,6,3,14773,7574,7199,6186,5899,1031,929,31,22,164,198,4,6,158,145,6340,6036,1115,1013,67,60,212,241,19,13,6982,6628,5651,5382,1009,911,13,11,161,189,2,3,146,132,5794,5509,1089,985,44,41,205,229,12,7,592,571,535,517,22,18,18,11,3,9,2,3,12,13,546,527,26,28,23,19,7,12,7,6 -050,01,117,Alabama,Shelby County,6,4,13667,6929,6738,5766,5556,887,903,18,15,126,143,3,5,129,116,5888,5665,949,961,58,42,166,183,12,13,6501,6307,5366,5159,879,893,11,8,123,133,3,3,119,111,5480,5264,938,950,45,32,159,172,9,10,428,431,400,397,8,10,7,7,3,10,0,2,10,5,408,401,11,11,13,10,7,11,3,3 -050,01,117,Alabama,Shelby County,6,5,11733,5888,5845,4849,4759,827,867,34,27,79,112,4,2,95,78,4932,4827,872,903,65,50,113,143,9,5,5379,5470,4374,4413,818,855,20,18,75,111,2,0,90,73,4453,4476,861,889,49,39,107,141,7,3,509,375,475,346,9,12,14,9,4,1,2,2,5,5,479,351,11,14,16,11,6,2,2,2 -050,01,117,Alabama,Shelby County,6,6,12445,5952,6493,4910,5172,784,1030,40,26,152,169,6,8,60,88,4965,5251,802,1061,62,55,177,205,7,16,5335,6027,4341,4744,772,1022,19,14,147,167,3,5,53,75,4389,4811,788,1048,36,38,171,197,4,9,617,466,569,428,12,8,21,12,5,2,3,3,7,13,576,440,14,13,26,17,6,8,3,7 -050,01,117,Alabama,Shelby County,6,7,14267,6967,7300,5667,5768,1032,1212,39,28,155,204,4,1,70,87,5729,5848,1054,1242,68,63,184,242,8,3,6239,6783,4989,5296,1017,1194,16,14,151,202,4,1,62,76,5044,5367,1035,1219,42,41,178,236,8,3,728,517,678,472,15,18,23,14,4,2,0,0,8,11,685,481,19,23,26,22,6,6,0,0 -050,01,117,Alabama,Shelby County,6,8,14313,6975,7338,5813,5862,903,1176,33,23,161,215,7,3,58,59,5867,5916,916,1190,59,49,182,235,11,9,6419,6862,5302,5411,894,1163,11,16,158,213,3,2,51,57,5351,5463,903,1177,34,41,178,233,6,7,556,476,511,451,9,13,22,7,3,2,4,1,7,2,516,453,13,13,25,8,4,2,5,2 -050,01,117,Alabama,Shelby County,6,9,15747,7740,8007,6555,6596,883,1092,26,32,222,208,3,7,51,72,6600,6659,896,1112,55,75,237,235,5,15,7268,7636,6112,6248,878,1084,15,27,219,205,2,5,42,67,6150,6306,887,1102,41,66,230,230,3,10,472,371,443,348,5,8,11,5,3,3,1,2,9,5,450,353,9,10,14,9,7,5,2,5 -050,01,117,Alabama,Shelby County,6,10,14633,7184,7449,6154,6277,782,907,25,30,155,184,3,1,65,50,6210,6324,797,921,64,61,174,198,7,5,6825,7148,5816,5995,775,900,18,29,151,180,3,0,62,44,5870,6036,788,912,55,55,170,192,7,3,359,301,338,282,7,7,7,1,4,4,0,1,3,6,340,288,9,9,9,6,4,6,0,2 -050,01,117,Alabama,Shelby County,6,11,14970,7180,7790,6218,6726,729,824,27,36,150,156,3,2,53,46,6268,6767,737,834,64,67,165,168,5,4,6948,7607,6000,6553,721,819,25,33,150,156,2,2,50,44,6047,6594,728,827,60,64,165,166,4,4,232,183,218,173,8,5,2,3,0,0,1,0,3,2,221,173,9,7,4,3,0,2,1,0 -050,01,117,Alabama,Shelby County,6,12,13574,6498,7076,5766,6194,542,669,18,51,120,107,5,0,47,55,5807,6241,551,684,48,94,135,119,8,2,6345,6951,5622,6081,539,663,15,47,120,107,4,0,45,53,5661,6126,547,677,44,88,134,119,7,2,153,125,144,113,3,6,3,4,0,0,1,0,2,2,146,115,4,7,4,6,1,0,1,0 -050,01,117,Alabama,Shelby County,6,13,11833,5486,6347,4962,5652,395,558,17,15,79,90,1,1,32,31,4990,5677,399,566,43,38,84,96,3,5,5393,6253,4878,5563,393,557,14,15,77,89,0,0,31,29,4905,5587,397,564,40,38,82,94,1,3,93,94,84,89,2,1,3,0,2,1,1,1,1,2,85,90,2,2,3,0,2,2,2,2 -050,01,117,Alabama,Shelby County,6,14,9278,4443,4835,4098,4457,275,302,9,14,42,40,1,0,18,22,4114,4477,281,304,25,32,43,42,3,3,4379,4787,4041,4415,272,301,8,12,42,39,1,0,15,20,4055,4433,277,303,22,28,42,41,2,3,64,48,57,42,3,1,1,2,0,1,0,0,3,2,59,44,4,1,3,4,1,1,1,0 -050,01,117,Alabama,Shelby County,6,15,6448,2998,3450,2781,3196,150,180,7,8,40,46,1,2,19,18,2799,3211,152,184,23,24,43,47,1,2,2953,3405,2737,3154,149,178,7,8,40,46,1,1,19,18,2755,3169,151,182,23,24,43,47,1,1,45,45,44,42,1,2,0,0,0,0,0,1,0,0,44,42,1,2,0,0,0,0,0,1 -050,01,117,Alabama,Shelby County,6,16,4176,1872,2304,1755,2125,85,142,6,4,18,20,0,0,8,13,1763,2135,85,146,13,15,19,22,0,0,1833,2274,1717,2096,84,141,6,4,18,20,0,0,8,13,1725,2106,84,145,13,15,19,22,0,0,39,30,38,29,1,1,0,0,0,0,0,0,0,0,38,29,1,1,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,6,17,2849,1136,1713,1079,1602,36,77,0,4,13,19,0,0,8,11,1087,1612,38,80,6,11,13,21,0,1,1122,1698,1065,1590,36,77,0,4,13,19,0,0,8,8,1073,1597,38,78,6,11,13,20,0,0,14,15,14,12,0,0,0,0,0,0,0,0,0,3,14,15,0,2,0,0,0,1,0,1 -050,01,117,Alabama,Shelby County,6,18,2599,909,1690,863,1586,31,81,0,1,9,16,0,0,6,6,868,1589,33,84,5,5,11,17,0,1,898,1662,852,1559,31,80,0,1,9,16,0,0,6,6,857,1562,33,83,5,5,11,17,0,1,11,28,11,27,0,1,0,0,0,0,0,0,0,0,11,27,0,1,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,7,0,206346,100341,106005,85138,89009,11371,12873,396,402,2062,2373,51,57,1323,1291,86370,90197,11967,13464,875,875,2485,2781,114,118,94059,100504,79325,83922,11212,12725,236,298,2018,2333,34,35,1234,1191,80483,85030,11758,13269,674,719,2420,2712,84,80,6282,5501,5813,5087,159,148,160,104,44,40,17,22,89,100,5887,5167,209,195,201,156,65,69,30,38 -050,01,117,Alabama,Shelby County,7,1,12513,6268,6245,5094,5095,759,751,14,23,181,174,5,3,215,199,5302,5286,897,882,44,48,247,231,14,10,5601,5547,4464,4439,746,732,7,12,176,169,3,3,205,192,4663,4624,878,860,32,34,239,226,12,8,667,698,630,656,13,19,7,11,5,5,2,0,10,7,639,662,19,22,12,14,8,5,2,2 -050,01,117,Alabama,Shelby County,7,2,14012,7187,6825,5879,5568,920,849,36,33,148,191,4,11,200,173,6072,5733,1046,958,71,64,209,244,11,18,6448,6100,5206,4911,891,830,21,15,143,183,3,5,184,156,5386,5062,1005,929,50,40,199,228,8,11,739,725,673,657,29,19,15,18,5,8,1,6,16,17,686,671,41,29,21,24,10,16,3,7 -050,01,117,Alabama,Shelby County,7,3,14892,7622,7270,6241,5911,996,949,36,29,177,219,3,7,169,155,6402,6060,1086,1037,73,68,233,267,10,14,7002,6688,5689,5382,967,935,15,16,172,213,2,4,157,138,5841,5517,1052,1012,46,47,222,258,6,8,620,582,552,529,29,14,21,13,5,6,1,3,12,17,561,543,34,25,27,21,11,9,4,6 -050,01,117,Alabama,Shelby County,7,4,13791,6972,6819,5738,5640,954,878,19,18,122,161,2,5,137,117,5867,5751,1028,936,60,51,165,201,4,8,6524,6383,5320,5234,945,871,8,10,119,154,1,3,131,111,5443,5340,1017,927,45,38,161,193,3,6,448,436,418,406,9,7,11,8,3,7,1,2,6,6,424,411,11,9,15,13,4,8,1,2 -050,01,117,Alabama,Shelby County,7,5,11969,5981,5988,4901,4871,863,906,31,28,95,106,3,2,88,75,4984,4937,905,937,60,56,124,132,7,6,5545,5585,4497,4497,850,896,21,16,93,106,2,0,82,70,4575,4560,887,925,49,40,122,131,5,3,436,403,404,374,13,10,10,12,2,0,1,2,6,5,409,377,18,12,11,16,2,1,2,3 -050,01,117,Alabama,Shelby County,7,6,12393,5960,6433,4889,5143,822,1009,44,25,142,148,5,5,58,103,4941,5232,843,1051,63,58,167,193,9,12,5400,6044,4367,4786,814,1001,24,18,137,147,2,4,56,88,4418,4864,833,1038,42,43,162,186,6,9,560,389,522,357,8,8,20,7,5,1,3,1,2,15,523,368,10,13,21,15,5,7,3,3 -050,01,117,Alabama,Shelby County,7,7,14153,6932,7221,5651,5661,1036,1229,38,28,136,217,3,4,68,82,5713,5738,1055,1260,68,59,165,253,4,7,6236,6720,4999,5205,1018,1210,20,15,132,215,3,2,64,73,5057,5273,1035,1236,48,41,161,249,4,5,696,501,652,456,18,19,18,13,4,2,0,2,4,9,656,465,20,24,20,18,4,4,0,2 -050,01,117,Alabama,Shelby County,7,8,14395,7008,7387,5792,5843,939,1211,37,23,167,239,9,3,64,68,5851,5906,957,1232,71,57,190,263,14,6,6460,6927,5294,5413,931,1193,11,16,164,237,5,3,55,65,5344,5473,944,1212,42,48,186,261,9,6,548,460,498,430,8,18,26,7,3,2,4,0,9,3,507,433,13,20,29,9,4,2,5,0 -050,01,117,Alabama,Shelby County,7,9,15558,7623,7935,6406,6503,897,1130,32,27,229,206,3,6,56,63,6454,6557,916,1149,60,64,247,225,10,10,7132,7537,5951,6127,892,1121,16,23,226,203,2,5,45,58,5991,6177,905,1140,40,56,241,221,6,8,491,398,455,376,5,9,16,4,3,3,1,1,11,5,463,380,11,9,20,8,6,4,4,2 -050,01,117,Alabama,Shelby County,7,10,14602,7127,7475,6092,6237,782,976,25,30,157,180,3,4,68,48,6150,6280,795,992,70,61,178,194,6,7,6760,7176,5750,5958,772,969,19,28,151,178,3,1,65,42,5806,5997,784,981,62,53,172,191,5,4,367,299,342,279,10,7,6,2,6,2,0,3,3,6,344,283,11,11,8,8,6,3,1,3 -050,01,117,Alabama,Shelby County,7,11,15123,7269,7854,6284,6770,757,826,19,37,149,168,2,1,58,52,6335,6816,769,837,61,73,167,180,7,5,7016,7644,6044,6571,750,820,17,34,149,167,1,1,55,51,6092,6616,761,831,56,70,166,179,5,4,253,210,240,199,7,6,2,3,0,1,1,0,3,1,243,200,8,6,5,3,1,1,2,1 -050,01,117,Alabama,Shelby County,7,12,13890,6707,7183,5924,6290,583,673,19,51,125,115,6,2,50,52,5971,6334,589,684,54,87,141,131,8,2,6531,7050,5757,6168,582,667,15,48,125,115,5,2,47,50,5802,6210,587,678,48,84,140,129,7,2,176,133,167,122,1,6,4,3,0,0,1,0,3,2,169,124,2,6,6,3,1,2,1,0 -050,01,117,Alabama,Shelby County,7,13,12101,5656,6445,5070,5667,427,635,23,19,103,93,1,1,32,30,5098,5692,433,643,48,39,110,99,5,7,5559,6358,4984,5586,424,633,20,18,101,92,0,1,30,28,5011,5610,429,640,44,38,108,98,3,5,97,87,86,81,3,2,3,1,2,1,1,0,2,2,87,82,4,3,4,1,2,1,2,2 -050,01,117,Alabama,Shelby County,7,14,9952,4693,5259,4297,4824,324,348,8,12,46,51,1,1,17,23,4311,4843,328,356,20,30,49,53,2,2,4623,5201,4233,4772,321,348,7,10,45,50,1,0,16,21,4246,4790,325,355,18,27,48,51,2,0,70,58,64,52,3,0,1,2,1,1,0,1,1,2,65,53,3,1,2,3,1,2,0,2 -050,01,117,Alabama,Shelby County,7,15,6815,3139,3676,2928,3410,145,196,7,7,37,40,1,2,21,21,2949,3429,148,199,25,23,40,45,2,2,3102,3628,2894,3366,143,194,7,7,37,39,1,1,20,21,2914,3385,145,197,25,23,40,44,2,1,37,48,34,44,2,2,0,0,0,1,0,1,1,0,35,44,3,2,0,0,0,1,0,1 -050,01,117,Alabama,Shelby County,7,16,4401,1980,2421,1853,2238,87,140,7,7,25,25,0,0,8,11,1860,2248,88,142,15,17,26,26,0,0,1932,2394,1806,2212,86,139,7,7,25,25,0,0,8,11,1813,2222,87,141,15,17,26,26,0,0,48,27,47,26,1,1,0,0,0,0,0,0,0,0,47,26,1,1,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,7,17,2967,1227,1740,1154,1621,49,81,1,3,14,22,0,0,9,13,1162,1633,50,82,9,14,15,24,0,2,1212,1723,1139,1606,49,81,1,3,14,22,0,0,9,11,1147,1616,50,82,9,14,15,22,0,0,15,17,15,15,0,0,0,0,0,0,0,0,0,2,15,17,0,0,0,0,0,2,0,2 -050,01,117,Alabama,Shelby County,7,18,2819,990,1829,945,1717,31,86,0,2,9,18,0,0,5,6,948,1722,34,87,3,6,12,20,1,0,976,1799,931,1689,31,85,0,2,9,18,0,0,5,5,934,1694,34,85,3,6,12,19,1,0,14,30,14,28,0,1,0,0,0,0,0,0,0,1,14,28,0,2,0,0,0,1,0,0 -050,01,117,Alabama,Shelby County,8,0,209047,101408,107639,85675,89911,11797,13417,403,407,2092,2458,60,64,1381,1382,86952,91173,12415,14060,893,878,2543,2906,128,135,95230,102091,79973,84800,11633,13273,247,293,2047,2415,44,42,1286,1268,81171,85965,12207,13856,687,713,2473,2830,98,103,6178,5548,5702,5111,164,144,156,114,45,43,16,22,95,114,5781,5208,208,204,206,165,70,76,30,32 -050,01,117,Alabama,Shelby County,8,1,12550,6255,6295,5051,5107,777,765,13,21,192,188,6,4,216,210,5260,5307,915,903,42,49,256,256,15,10,5590,5639,4435,4491,754,754,6,8,186,182,5,4,204,200,4633,4682,885,888,31,32,249,245,12,10,665,656,616,616,23,11,7,13,6,6,1,0,12,10,627,625,30,15,11,17,7,11,3,0 -050,01,117,Alabama,Shelby County,8,2,13966,7142,6824,5843,5502,910,872,31,38,143,191,5,13,210,208,6044,5701,1041,1006,64,72,207,254,12,19,6388,6101,5148,4856,887,853,16,15,139,181,4,8,194,188,5334,5038,1009,974,43,44,199,238,9,13,754,723,695,646,23,19,15,23,4,10,1,5,16,20,710,663,32,32,21,28,8,16,3,6 -050,01,117,Alabama,Shelby County,8,3,14874,7530,7344,6164,5955,967,963,40,29,175,218,5,7,179,172,6334,6116,1062,1056,80,71,234,271,12,14,6915,6751,5615,5414,940,951,20,17,169,213,4,4,167,152,5776,5558,1032,1035,53,47,223,262,10,10,615,593,549,541,27,12,20,12,6,5,1,3,12,20,558,558,30,21,27,24,11,9,2,4 -050,01,117,Alabama,Shelby County,8,4,14148,7132,7016,5824,5710,1000,981,21,21,134,177,2,3,151,124,5965,5828,1082,1042,66,52,183,217,7,10,6661,6549,5390,5278,991,970,8,13,132,169,1,1,139,118,5521,5390,1068,1029,45,39,175,208,5,6,471,467,434,432,9,11,13,8,2,8,1,2,12,6,444,438,14,13,21,13,8,9,2,4 -050,01,117,Alabama,Shelby County,8,5,11981,5951,6030,4857,4871,874,931,21,22,99,114,4,4,96,88,4947,4952,917,973,57,45,133,148,5,11,5589,5610,4514,4488,865,920,19,9,97,112,3,2,91,79,4599,4562,907,956,51,29,130,144,4,7,362,420,343,383,9,11,2,13,2,2,1,2,5,9,348,390,10,17,6,16,3,4,1,4 -050,01,117,Alabama,Shelby County,8,6,12618,6049,6569,4875,5248,895,1032,52,31,149,162,3,3,75,93,4942,5328,923,1072,77,61,182,201,6,11,5511,6206,4382,4918,884,1024,30,24,143,161,0,1,72,78,4446,4986,911,1054,53,49,176,195,3,7,538,363,493,330,11,8,22,7,6,1,3,2,3,15,496,342,12,18,24,12,6,6,3,4 -050,01,117,Alabama,Shelby County,8,7,13868,6786,7082,5537,5533,1033,1231,29,26,126,214,4,8,57,70,5588,5595,1049,1257,54,54,151,245,7,12,6192,6590,4983,5077,1015,1219,12,12,124,214,4,6,54,62,5032,5131,1030,1241,35,35,149,243,6,10,594,492,554,456,18,12,17,14,2,0,0,2,3,8,556,464,19,16,19,19,2,2,1,2 -050,01,117,Alabama,Shelby County,8,8,14615,7129,7486,5813,5840,1015,1288,39,23,182,249,13,4,67,82,5876,5915,1028,1314,71,62,211,279,19,10,6577,7029,5304,5425,1003,1262,17,15,179,247,9,4,65,76,5365,5495,1015,1286,48,50,207,275,15,9,552,457,509,415,12,26,22,8,3,2,4,0,2,6,511,420,13,28,23,12,4,4,4,1 -050,01,117,Alabama,Shelby County,8,9,15237,7507,7730,6256,6308,947,1116,33,27,211,205,4,4,56,70,6302,6368,963,1135,66,65,228,230,12,9,7028,7330,5821,5929,941,1108,13,22,208,202,3,3,42,66,5858,5986,951,1125,38,57,221,226,6,8,479,400,435,379,6,8,20,5,3,3,1,1,14,4,444,382,12,10,28,8,7,4,6,1 -050,01,117,Alabama,Shelby County,8,10,14934,7234,7700,6180,6386,790,1043,31,30,167,187,3,7,63,47,6235,6424,802,1058,73,54,191,201,8,11,6851,7389,5822,6094,781,1036,26,28,160,186,3,4,59,41,5873,6127,790,1047,65,51,184,198,8,8,383,311,358,292,9,7,5,2,7,1,0,3,4,6,362,297,12,11,8,3,7,3,0,3 -050,01,117,Alabama,Shelby County,8,11,15114,7332,7782,6315,6676,788,858,24,38,144,163,1,0,60,47,6366,6720,801,868,63,64,163,180,5,5,7044,7569,6044,6473,783,852,19,37,143,161,0,0,55,46,6092,6516,792,861,57,63,160,178,3,5,288,213,271,203,5,6,5,1,1,2,1,0,5,1,274,204,9,7,6,1,3,2,2,0 -050,01,117,Alabama,Shelby County,8,12,14289,6893,7396,6039,6445,639,721,20,44,134,127,6,2,55,57,6090,6494,650,734,58,83,149,141,10,3,6709,7229,5866,6290,634,716,17,40,134,127,5,2,53,54,5915,6336,644,728,53,78,149,140,9,3,184,167,173,155,5,5,3,4,0,0,1,0,2,3,175,158,6,6,5,5,0,1,1,0 -050,01,117,Alabama,Shelby County,8,13,12425,5799,6626,5157,5794,488,681,25,25,96,87,2,2,31,37,5186,5822,492,691,47,55,104,94,2,3,5694,6543,5063,5718,485,677,21,23,95,87,1,2,29,36,5090,5745,488,687,43,53,102,93,1,3,105,83,94,76,3,4,4,2,1,0,1,0,2,1,96,77,4,4,4,2,2,1,1,0 -050,01,117,Alabama,Shelby County,8,14,10574,4952,5622,4530,5115,340,403,8,12,50,65,1,1,23,26,4549,5138,346,408,27,31,53,71,3,3,4875,5551,4460,5049,338,403,7,11,48,63,1,0,21,25,4478,5072,344,408,24,29,51,68,2,2,77,71,70,66,2,0,1,1,2,2,0,1,2,1,71,66,2,0,3,2,2,3,1,1 -050,01,117,Alabama,Shelby County,8,15,7136,3279,3857,3054,3572,163,218,4,4,40,37,0,2,18,24,3067,3594,169,222,16,22,44,41,2,3,3245,3808,3023,3529,161,216,4,3,40,36,0,1,17,23,3035,3550,166,220,16,20,44,40,2,2,34,49,31,43,2,2,0,1,0,1,0,1,1,1,32,44,3,2,0,2,0,1,0,1 -050,01,117,Alabama,Shelby County,8,16,4629,2101,2528,1966,2341,86,135,10,9,28,33,1,0,10,10,1976,2350,86,137,20,17,28,34,1,0,2053,2498,1918,2312,86,134,10,9,28,33,1,0,10,10,1928,2321,86,136,20,17,28,34,1,0,48,30,48,29,0,1,0,0,0,0,0,0,0,0,48,29,0,1,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,8,17,3069,1282,1787,1212,1670,47,85,2,3,13,20,0,0,8,9,1218,1676,50,88,9,11,14,21,0,0,1266,1771,1196,1654,47,85,2,3,13,20,0,0,8,9,1202,1660,50,88,9,11,14,21,0,0,16,16,16,16,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,8,18,3020,1055,1965,1002,1838,38,94,0,4,9,21,0,0,6,8,1007,1845,39,96,3,10,12,22,2,1,1042,1928,989,1805,38,93,0,4,9,21,0,0,6,5,994,1810,39,93,3,9,12,22,2,0,13,37,13,33,0,1,0,0,0,0,0,0,0,3,13,35,0,3,0,1,0,0,0,1 -050,01,117,Alabama,Shelby County,9,0,211538,102374,109164,86261,90749,12129,13892,427,423,2074,2573,63,64,1420,1463,87570,92089,12782,14602,938,927,2525,3032,121,138,96162,103420,80549,85494,11960,13714,262,304,2034,2523,48,44,1309,1341,81763,86736,12560,14365,715,740,2453,2951,91,100,6212,5744,5712,5255,169,178,165,119,40,50,15,20,111,122,5807,5353,222,237,223,187,72,81,30,38 -050,01,117,Alabama,Shelby County,9,1,12672,6232,6440,5026,5108,811,839,17,27,148,234,3,5,227,227,5243,5325,961,990,58,56,214,303,8,17,5578,5801,4421,4526,791,822,7,11,143,222,3,5,213,215,4624,4734,932,970,41,34,206,285,4,14,654,639,605,582,20,17,10,16,5,12,0,0,14,12,619,591,29,20,17,22,8,18,4,3 -050,01,117,Alabama,Shelby County,9,2,14006,7097,6909,5778,5564,921,878,30,30,145,190,6,10,217,237,5988,5793,1055,1028,71,67,211,258,10,19,6356,6174,5095,4895,891,860,20,11,142,182,5,6,203,220,5293,5110,1017,1000,54,43,201,244,8,12,741,735,683,669,30,18,10,19,3,8,1,4,14,17,695,683,38,28,17,24,10,14,2,7 -050,01,117,Alabama,Shelby County,9,3,14855,7573,7282,6205,5888,974,964,38,32,161,210,7,9,188,179,6385,6060,1082,1066,80,75,218,267,14,17,6899,6657,5603,5323,944,945,19,21,155,206,5,6,173,156,5769,5474,1042,1031,54,52,207,257,9,10,674,625,602,565,30,19,19,11,6,4,2,3,15,23,616,586,40,35,26,23,11,10,5,7 -050,01,117,Alabama,Shelby County,9,4,14487,7289,7198,5913,5810,1030,1034,28,28,160,187,3,3,155,136,6059,5935,1110,1109,72,62,210,232,9,8,6762,6672,5431,5332,1018,1021,11,14,159,178,2,2,141,125,5564,5451,1096,1089,48,41,204,222,7,6,527,526,482,478,12,13,17,14,1,9,1,1,14,11,495,484,14,20,24,21,6,10,2,2 -050,01,117,Alabama,Shelby County,9,5,12057,6052,6005,4951,4853,866,915,26,23,107,127,3,2,99,85,5043,4933,918,955,61,44,138,158,6,6,5681,5591,4603,4477,858,899,19,12,104,123,3,1,94,79,4691,4551,908,937,52,30,134,152,5,5,371,414,348,376,8,16,7,11,3,4,0,1,5,6,352,382,10,18,9,14,4,6,1,1 -050,01,117,Alabama,Shelby County,9,6,12549,6057,6492,4880,5177,918,1018,60,24,119,178,3,4,77,91,4950,5258,946,1061,88,53,152,214,6,6,5560,6094,4432,4817,913,1003,31,19,113,176,0,1,71,78,4497,4888,937,1038,55,41,145,210,3,2,497,398,448,360,5,15,29,5,6,2,3,3,6,13,453,370,9,23,33,12,7,4,3,4 -050,01,117,Alabama,Shelby County,9,7,13703,6563,7140,5344,5577,1000,1246,16,29,144,205,4,8,55,75,5391,5642,1016,1268,39,58,172,237,8,13,6075,6646,4880,5120,987,1232,10,16,143,205,4,6,51,67,4924,5179,1002,1252,31,39,170,234,7,10,488,494,464,457,13,14,6,13,1,0,0,2,4,8,467,463,14,16,8,19,2,3,1,3 -050,01,117,Alabama,Shelby County,9,8,14670,7128,7542,5781,5882,1055,1314,44,25,172,239,13,3,63,79,5834,5955,1069,1340,74,65,200,271,17,7,6587,7108,5292,5493,1038,1289,19,15,167,238,10,3,61,70,5344,5557,1052,1312,47,49,195,268,13,7,541,434,489,389,17,25,25,10,5,1,3,0,2,9,490,398,17,28,27,16,5,3,4,0 -050,01,117,Alabama,Shelby County,9,9,14906,7357,7549,6102,6044,962,1178,32,28,200,227,3,5,58,67,6154,6102,977,1195,64,66,217,249,5,12,6861,7118,5648,5641,958,1167,13,23,199,222,2,4,41,61,5687,5695,966,1183,37,56,211,243,3,9,496,431,454,403,4,11,19,5,1,5,1,1,17,6,467,407,11,12,27,10,6,6,2,3 -050,01,117,Alabama,Shelby County,9,10,15397,7440,7957,6346,6581,829,1087,35,31,173,191,7,8,50,59,6392,6633,839,1105,66,64,188,210,9,15,7055,7638,5990,6281,818,1080,28,27,167,190,6,5,46,55,6032,6330,827,1096,57,59,181,208,8,10,385,319,356,300,11,7,7,4,6,1,1,3,4,4,360,303,12,9,9,5,7,2,1,5 -050,01,117,Alabama,Shelby County,9,11,14915,7264,7651,6226,6505,787,898,27,37,150,166,1,0,73,45,6288,6542,801,910,76,65,171,179,9,2,6940,7423,5922,6290,784,891,22,36,148,164,0,0,64,42,5978,6325,793,901,65,62,169,177,6,2,324,228,304,215,3,7,5,1,2,2,1,0,9,3,310,217,8,9,11,3,2,2,3,0 -050,01,117,Alabama,Shelby County,9,12,14490,6979,7511,6050,6540,709,749,21,45,141,117,6,2,52,58,6091,6586,721,768,56,88,156,132,10,4,6795,7328,5880,6367,703,746,16,40,141,117,5,2,50,56,5919,6412,714,765,49,81,156,131,9,4,184,183,170,173,6,3,5,5,0,0,1,0,2,2,172,174,7,3,7,7,0,1,1,0 -050,01,117,Alabama,Shelby County,9,13,12749,5977,6772,5300,5901,513,706,27,31,94,93,1,2,42,39,5337,5933,520,719,55,63,106,100,3,5,5867,6678,5199,5820,511,699,22,28,94,93,1,2,40,36,5234,5849,517,710,50,58,105,100,3,5,110,94,101,81,2,7,5,3,0,0,0,0,2,3,103,84,3,9,5,5,1,0,0,0 -050,01,117,Alabama,Shelby County,9,14,11262,5250,6012,4760,5398,393,478,9,11,65,92,2,1,21,32,4779,5428,397,485,26,36,69,99,4,1,5159,5932,4676,5324,390,475,9,11,64,91,1,0,19,31,4693,5353,393,482,24,35,67,98,3,0,91,80,84,74,3,3,0,0,1,1,1,1,2,1,86,75,4,3,2,1,2,1,1,1 -050,01,117,Alabama,Shelby County,9,15,7470,3452,4018,3212,3719,178,230,5,5,41,38,0,2,16,24,3226,3739,182,238,19,23,43,40,2,4,3406,3980,3173,3687,173,229,4,3,41,37,0,1,15,23,3187,3706,176,237,18,20,42,39,2,3,46,38,39,32,5,1,1,2,0,1,0,1,1,1,39,33,6,1,1,3,1,1,0,1 -050,01,117,Alabama,Shelby County,9,16,4994,2258,2736,2108,2530,96,150,10,8,30,34,1,0,13,14,2120,2542,98,152,22,20,31,36,1,1,2212,2688,2062,2483,96,149,10,8,30,34,1,0,13,14,2074,2495,98,151,22,20,31,36,1,1,46,48,46,47,0,1,0,0,0,0,0,0,0,0,46,47,0,1,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,9,17,3177,1309,1868,1239,1723,49,112,2,5,11,20,0,0,8,8,1246,1728,50,115,7,11,14,22,0,0,1289,1849,1219,1704,49,112,2,5,11,20,0,0,8,8,1226,1709,50,115,7,11,14,22,0,0,20,19,20,19,0,0,0,0,0,0,0,0,0,0,20,19,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,9,18,3179,1097,2082,1040,1949,38,96,0,4,13,25,0,0,6,8,1044,1955,40,98,4,11,15,25,0,1,1080,2043,1023,1914,38,95,0,4,13,25,0,0,6,5,1027,1918,40,96,4,9,15,25,0,0,17,39,17,35,0,1,0,0,0,0,0,0,0,3,17,37,0,2,0,2,0,0,0,1 -050,01,117,Alabama,Shelby County,10,0,213854,103457,110397,86833,91344,12563,14437,431,420,2130,2670,56,61,1444,1465,88176,92682,13239,15151,905,905,2600,3134,121,143,97215,104582,81084,86006,12383,14256,266,304,2094,2627,42,39,1346,1350,82341,87249,13003,14903,695,738,2539,3061,96,102,6242,5815,5749,5338,180,181,165,116,36,43,14,22,98,115,5835,5433,236,248,210,167,61,73,25,41 -050,01,117,Alabama,Shelby County,10,1,12514,6170,6344,4964,5027,836,837,20,22,121,228,4,2,225,228,5176,5248,983,991,56,52,189,297,10,7,5550,5693,4396,4430,812,821,7,6,116,219,4,2,215,215,4599,4639,952,968,37,33,181,282,9,7,620,651,568,597,24,16,13,16,5,9,0,0,10,13,577,609,31,23,19,19,8,15,1,0 -050,01,117,Alabama,Shelby County,10,2,13857,7032,6825,5701,5480,890,899,26,31,173,174,4,8,238,233,5928,5702,1042,1051,63,70,240,236,13,19,6317,6121,5040,4832,866,882,18,13,170,172,3,5,220,217,5250,5040,1008,1024,49,46,233,233,8,14,715,704,661,648,24,17,8,18,3,2,1,3,18,16,678,662,34,27,14,24,7,3,5,5 -050,01,117,Alabama,Shelby County,10,3,15065,7704,7361,6253,5923,1052,996,39,39,169,222,5,9,186,172,6431,6082,1158,1094,74,71,231,279,11,19,7001,6725,5626,5349,1020,976,17,22,162,216,4,5,172,157,5792,5494,1117,1063,47,47,220,269,9,12,703,636,627,574,32,20,22,17,7,6,1,4,14,15,639,588,41,31,27,24,11,10,2,7 -050,01,117,Alabama,Shelby County,10,4,14461,7317,7144,5920,5725,1050,1065,30,23,157,192,4,4,156,135,6072,5849,1134,1136,68,53,209,238,10,9,6788,6621,5437,5239,1030,1054,14,14,157,186,2,3,148,125,5581,5356,1110,1120,48,39,206,230,7,7,529,523,483,486,20,11,16,9,0,6,2,1,8,10,491,493,24,16,20,14,3,8,3,2 -050,01,117,Alabama,Shelby County,10,5,12282,6125,6157,4982,4948,900,959,26,11,110,141,3,2,104,96,5079,5041,951,1002,62,37,149,179,6,6,5736,5732,4623,4553,890,946,17,6,106,136,3,1,97,90,4714,4640,938,987,49,29,143,171,6,5,389,425,359,395,10,13,9,5,4,5,0,1,7,6,365,401,13,15,13,8,6,8,0,1 -050,01,117,Alabama,Shelby County,10,6,12737,6161,6576,4956,5257,955,1012,55,32,124,178,0,3,71,94,5022,5341,980,1056,79,62,153,216,5,11,5720,6135,4553,4857,947,996,30,23,123,176,0,1,67,82,4615,4930,969,1032,53,48,151,211,5,7,441,441,403,400,8,16,25,9,1,2,0,2,4,12,407,411,11,24,26,14,2,5,0,4 -050,01,117,Alabama,Shelby County,10,7,13504,6458,7046,5220,5494,986,1230,24,27,163,211,5,7,60,77,5274,5564,1007,1254,46,56,193,241,8,13,6005,6587,4790,5072,979,1217,18,18,159,209,3,5,56,66,4841,5132,997,1236,38,40,187,238,4,10,453,459,430,422,7,13,6,9,4,2,2,2,4,11,433,432,10,18,8,16,6,3,4,3 -050,01,117,Alabama,Shelby County,10,8,14772,7145,7627,5749,5882,1107,1406,43,23,163,234,7,6,76,76,5820,5945,1124,1437,77,58,194,265,13,14,6532,7181,5192,5489,1084,1378,21,12,158,233,6,4,71,65,5258,5546,1099,1401,53,42,188,261,12,9,613,446,557,393,23,28,22,11,5,1,1,2,5,11,562,399,25,36,24,16,6,4,1,5 -050,01,117,Alabama,Shelby County,10,9,14777,7317,7460,6065,5922,979,1202,34,26,189,243,5,4,45,63,6106,5975,992,1226,57,59,204,261,6,5,6820,7059,5600,5547,977,1192,15,19,188,239,2,3,38,59,5636,5596,986,1214,35,50,201,257,3,4,497,401,465,375,2,10,19,7,1,4,3,1,7,4,470,379,6,12,22,9,3,4,3,1 -050,01,117,Alabama,Shelby County,10,10,15836,7629,8207,6469,6713,889,1170,29,40,184,215,7,7,51,62,6511,6766,904,1191,59,76,198,235,10,13,7257,7885,6129,6412,880,1160,19,37,181,213,6,5,42,58,6163,6463,890,1178,44,72,195,231,8,9,372,322,340,301,9,10,10,3,3,2,1,2,9,4,348,303,14,13,15,4,3,4,2,4 -050,01,117,Alabama,Shelby County,10,11,14707,7183,7524,6125,6348,804,933,24,31,162,166,1,2,67,44,6184,6387,819,941,67,63,180,177,6,4,6833,7264,5792,6102,800,928,20,29,159,164,1,0,61,41,5846,6138,811,936,59,59,177,174,6,2,350,260,333,246,4,5,4,2,3,2,0,2,6,3,338,249,8,5,8,4,3,3,0,2 -050,01,117,Alabama,Shelby County,10,12,14651,7036,7615,6089,6576,732,809,26,36,134,140,6,2,49,52,6132,6622,740,822,58,68,151,155,10,3,6838,7420,5905,6392,726,803,22,33,134,140,4,2,47,50,5946,6436,734,815,53,65,150,154,8,3,198,195,184,184,6,6,4,3,0,0,2,0,2,2,186,186,6,7,5,3,1,1,2,0 -050,01,117,Alabama,Shelby County,10,13,13000,6141,6859,5393,5955,560,725,26,46,113,94,2,2,47,37,5431,5985,570,734,58,71,127,106,3,6,6014,6752,5275,5861,557,718,21,41,113,94,2,2,46,36,5313,5891,566,726,52,66,127,106,3,5,127,107,118,94,3,7,5,5,0,0,0,0,1,1,118,94,4,8,6,5,0,0,0,1 -050,01,117,Alabama,Shelby County,10,14,11344,5207,6137,4695,5430,415,547,10,11,66,110,2,1,19,38,4712,5464,418,557,22,41,72,117,3,6,5112,6050,4606,5352,413,542,9,11,66,109,1,0,17,36,4622,5384,415,551,21,39,70,115,1,4,95,87,89,78,2,5,1,0,0,1,1,1,2,2,90,80,3,6,1,2,2,2,2,2 -050,01,117,Alabama,Shelby County,10,15,8326,3891,4435,3610,4108,208,256,7,9,46,38,0,0,20,24,3628,4128,210,260,24,27,49,43,2,3,3842,4392,3569,4070,202,256,6,7,46,37,0,0,19,22,3586,4089,204,259,22,24,49,41,2,2,49,43,41,38,6,0,1,2,0,1,0,0,1,2,42,39,6,1,2,3,0,2,0,1 -050,01,117,Alabama,Shelby County,10,16,5337,2362,2975,2201,2753,104,158,8,5,32,39,1,2,16,18,2217,2768,105,161,22,20,33,42,2,3,2322,2926,2161,2709,104,154,8,5,32,39,1,1,16,18,2177,2724,105,157,22,20,33,42,2,2,40,49,40,44,0,4,0,0,0,0,0,1,0,0,40,44,0,4,0,0,0,0,0,1 -050,01,117,Alabama,Shelby County,10,17,3310,1395,1915,1316,1759,54,126,4,5,12,15,0,0,9,10,1324,1768,58,128,10,13,15,16,3,0,1366,1890,1287,1734,54,126,4,5,12,15,0,0,9,10,1295,1743,58,128,10,13,15,16,3,0,29,25,29,25,0,0,0,0,0,0,0,0,0,0,29,25,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,10,18,3374,1184,2190,1125,2044,42,107,0,3,12,30,0,0,5,6,1129,2047,44,110,3,8,13,31,0,2,1162,2149,1103,2006,42,107,0,3,12,30,0,0,5,3,1107,2008,44,108,3,6,13,30,0,0,22,41,22,38,0,0,0,0,0,0,0,0,0,3,22,39,0,2,0,2,0,1,0,2 -050,01,117,Alabama,Shelby County,11,0,215877,104282,111595,87170,91893,12941,14976,442,410,2159,2769,63,64,1507,1483,88574,93254,13647,15661,953,904,2661,3256,118,151,97943,105613,81327,86382,12777,14794,266,291,2125,2731,47,43,1401,1372,82640,87649,13430,15432,724,725,2597,3184,93,109,6339,5982,5843,5511,164,182,176,119,34,38,16,21,106,111,5934,5605,217,229,229,179,64,72,25,42 -050,01,117,Alabama,Shelby County,11,1,12372,6128,6244,4965,4940,789,849,19,17,118,230,4,3,233,205,5188,5137,943,983,55,47,190,287,7,10,5502,5588,4386,4333,771,836,7,5,114,219,4,3,220,192,4598,4519,917,964,37,28,182,273,6,8,626,656,579,607,18,13,12,12,4,11,0,0,13,13,590,618,26,19,18,19,8,14,1,2 -050,01,117,Alabama,Shelby County,11,2,13744,7030,6714,5638,5396,942,908,25,27,191,160,3,5,231,218,5862,5606,1089,1042,64,61,261,222,6,13,6332,6021,4988,4753,920,888,13,11,189,157,2,4,220,208,5201,4954,1063,1017,48,41,256,215,4,11,698,693,650,643,22,20,12,16,2,3,1,1,11,10,661,652,26,25,16,20,5,7,2,2 -050,01,117,Alabama,Shelby County,11,3,15167,7702,7465,6246,5989,1055,1025,41,39,158,218,4,11,198,183,6438,6164,1165,1127,80,75,226,279,15,18,6977,6785,5598,5371,1023,1008,20,18,153,214,3,6,180,168,5775,5533,1124,1102,52,48,215,272,11,12,725,680,648,618,32,17,21,21,5,4,1,5,18,15,663,631,41,25,28,27,11,7,4,6 -050,01,117,Alabama,Shelby County,11,4,14454,7277,7177,5844,5696,1073,1092,30,29,166,206,4,7,160,147,5998,5833,1159,1169,74,61,222,259,10,15,6720,6641,5333,5200,1057,1077,16,16,164,204,2,5,148,139,5476,5330,1137,1151,51,44,216,256,8,12,557,536,511,496,16,15,14,13,2,2,2,2,12,8,522,503,22,18,23,17,6,3,2,3 -050,01,117,Alabama,Shelby County,11,5,12540,6201,6339,5016,5054,936,994,30,13,108,167,4,3,107,108,5114,5155,995,1046,63,44,143,207,7,9,5792,5915,4639,4666,931,985,14,7,105,157,4,2,99,98,4732,4758,983,1032,44,32,139,194,6,7,409,424,377,388,5,9,16,6,3,10,0,1,8,10,382,397,12,14,19,12,4,13,1,2 -050,01,117,Alabama,Shelby County,11,6,12899,6281,6618,5031,5258,993,1048,45,30,112,182,4,2,96,98,5116,5341,1030,1091,79,63,149,223,10,11,5853,6152,4635,4829,986,1026,27,24,110,182,4,0,91,91,4717,4907,1022,1065,57,52,146,220,9,6,428,466,396,429,7,22,18,6,2,0,0,2,5,7,399,434,8,26,22,11,3,3,1,5 -050,01,117,Alabama,Shelby County,11,7,13268,6310,6958,5033,5369,1017,1264,37,27,159,207,7,6,57,85,5084,5444,1032,1295,57,61,189,242,9,12,5902,6529,4658,4983,1013,1249,22,18,154,207,3,5,52,67,4704,5043,1027,1273,39,43,183,236,5,8,408,429,375,386,4,15,15,9,5,0,4,1,5,18,380,401,5,22,18,18,6,6,4,4 -050,01,117,Alabama,Shelby County,11,8,14952,7288,7664,5852,5923,1153,1404,36,23,160,229,6,6,81,79,5925,5997,1170,1426,71,61,195,266,14,15,6636,7188,5251,5489,1131,1388,17,11,157,228,6,3,74,69,5318,5553,1147,1406,49,42,188,259,14,8,652,476,601,434,22,16,19,12,3,1,0,3,7,10,607,444,23,20,22,19,7,7,0,7 -050,01,117,Alabama,Shelby County,11,9,14677,7144,7533,5881,5905,982,1249,38,24,188,280,7,6,48,69,5927,5969,994,1266,64,56,204,302,7,14,6695,7113,5475,5513,973,1234,16,17,186,279,3,5,42,65,5515,5573,983,1250,40,47,200,301,3,12,449,420,406,392,9,15,22,7,2,1,4,1,6,4,412,396,11,16,24,9,4,1,4,2 -050,01,117,Alabama,Shelby County,11,10,15955,7737,8218,6472,6690,971,1217,28,37,210,206,6,8,50,60,6517,6741,987,1234,56,70,229,226,8,12,7292,7885,6062,6378,960,1208,18,32,207,205,5,6,40,56,6097,6427,969,1224,40,61,225,224,7,9,445,333,410,312,11,9,10,5,3,1,1,2,10,4,420,314,18,10,16,9,4,2,1,3 -050,01,117,Alabama,Shelby County,11,11,14612,7133,7479,6099,6246,799,984,24,29,143,174,3,1,65,45,6153,6286,812,993,66,56,163,189,8,4,6790,7202,5772,5988,796,973,18,28,140,171,3,0,61,42,5824,6025,807,981,58,54,158,185,7,2,343,277,327,258,3,11,6,1,3,3,0,1,4,3,329,261,5,12,8,2,5,4,1,2 -050,01,117,Alabama,Shelby County,11,12,14694,7028,7666,6045,6559,752,879,27,32,143,150,3,2,58,44,6096,6593,765,891,65,61,165,164,6,5,6806,7450,5837,6353,747,875,23,28,143,150,2,2,54,42,5885,6386,757,887,58,56,164,162,4,5,222,216,208,206,5,4,4,4,0,0,1,0,4,2,211,207,8,4,7,5,1,2,2,0 -050,01,117,Alabama,Shelby County,11,13,13345,6312,7033,5536,6121,587,719,22,48,115,99,5,1,47,45,5577,6160,597,733,58,82,126,109,6,3,6168,6903,5399,6003,584,713,19,43,115,99,4,1,47,44,5440,6042,594,726,55,76,126,109,5,3,144,130,137,118,3,6,3,5,0,0,1,0,0,1,137,118,3,7,3,6,0,0,1,0 -050,01,117,Alabama,Shelby County,11,14,11556,5260,6296,4719,5493,430,626,18,11,69,126,1,1,23,39,4738,5526,436,635,35,39,73,135,2,4,5175,6206,4641,5414,428,619,15,11,69,125,0,0,22,37,4659,5445,433,628,32,38,73,133,1,3,85,90,78,79,2,7,3,0,0,1,1,1,1,2,79,81,3,7,3,1,0,2,1,1 -050,01,117,Alabama,Shelby County,11,15,8813,4144,4669,3803,4290,260,300,9,11,51,43,1,0,20,25,3822,4309,264,307,26,26,52,50,1,2,4086,4625,3753,4250,255,300,8,9,51,42,1,0,18,24,3770,4268,258,307,24,24,52,49,1,1,58,44,50,40,5,0,1,2,0,1,0,0,2,1,52,41,6,0,2,2,0,1,0,1 -050,01,117,Alabama,Shelby County,11,16,5786,2539,3247,2378,3004,100,175,7,4,37,45,1,2,16,17,2392,3018,102,179,20,19,39,47,2,3,2509,3211,2348,2970,100,174,7,4,37,45,1,1,16,17,2362,2984,102,178,20,19,39,47,2,2,30,36,30,34,0,1,0,0,0,0,0,1,0,0,30,34,0,1,0,0,0,0,0,1 -050,01,117,Alabama,Shelby County,11,17,3512,1499,2013,1406,1861,61,121,6,5,16,13,0,0,10,13,1416,1874,63,121,14,16,17,15,0,0,1462,1981,1369,1831,61,119,6,5,16,13,0,0,10,13,1379,1844,63,119,14,16,17,15,0,0,37,32,37,30,0,2,0,0,0,0,0,0,0,0,37,30,0,2,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,11,18,3531,1269,2262,1206,2099,41,122,0,4,15,34,0,0,7,3,1211,2101,44,123,6,6,18,34,0,1,1246,2218,1183,2058,41,122,0,4,15,34,0,0,7,0,1188,2058,44,122,6,4,18,34,0,0,23,44,23,41,0,0,0,0,0,0,0,0,0,3,23,43,0,1,0,2,0,0,0,1 -050,01,117,Alabama,Shelby County,12,0,218176,105311,112865,87560,92425,13479,15532,454,420,2207,2854,64,60,1547,1574,89008,93884,14192,16284,966,933,2720,3355,140,141,98895,106781,81664,86831,13291,15344,284,294,2180,2812,49,42,1427,1458,83004,88191,13938,16043,750,745,2655,3287,112,104,6416,6084,5896,5594,188,188,170,126,27,42,15,18,120,116,6004,5693,254,241,216,188,65,68,28,37 -050,01,117,Alabama,Shelby County,12,1,12166,6096,6070,4869,4755,864,857,18,15,108,220,4,4,233,219,5096,4964,1014,1001,50,41,181,282,13,9,5455,5425,4287,4162,845,847,5,3,102,205,4,4,212,204,4494,4357,983,986,30,23,169,260,13,7,641,645,582,593,19,10,13,12,6,15,0,0,21,15,602,607,31,15,20,18,12,22,0,2 -050,01,117,Alabama,Shelby County,12,2,13726,6898,6828,5530,5434,939,952,24,33,196,177,5,5,204,227,5728,5651,1067,1095,56,68,256,239,12,14,6231,6164,4921,4821,909,932,10,15,195,174,4,5,192,217,5108,5028,1032,1070,38,47,252,235,9,13,667,664,609,613,30,20,14,18,1,3,1,0,12,10,620,623,35,25,18,21,4,4,3,1 -050,01,117,Alabama,Shelby County,12,3,15159,7758,7401,6242,5943,1106,1003,43,35,151,209,4,11,212,200,6446,6136,1227,1122,84,75,212,271,14,21,7010,6667,5570,5276,1072,980,26,17,147,204,3,5,192,185,5755,5456,1184,1090,61,48,203,263,10,13,748,734,672,667,34,23,17,18,4,5,1,6,20,15,691,680,43,32,23,27,9,8,4,8 -050,01,117,Alabama,Shelby County,12,4,14728,7361,7367,5913,5794,1070,1163,31,30,176,209,3,7,168,164,6070,5952,1164,1248,71,65,238,268,14,13,6765,6795,5372,5268,1049,1151,15,13,174,207,2,5,153,151,5515,5415,1134,1230,48,43,228,262,10,11,596,572,541,526,21,12,16,17,2,2,1,2,15,13,555,537,30,18,23,22,10,6,4,2 -050,01,117,Alabama,Shelby County,12,5,12758,6275,6483,5001,5181,1008,1001,36,16,104,166,6,2,120,117,5113,5291,1070,1056,73,44,147,210,10,8,5841,6041,4595,4769,1004,992,21,9,101,159,4,1,116,111,4704,4873,1064,1045,56,35,144,201,7,6,434,442,406,412,4,9,15,7,3,7,2,1,4,6,409,418,6,11,17,9,3,9,3,2 -050,01,117,Alabama,Shelby County,12,6,13015,6379,6636,5028,5176,1054,1144,41,32,153,186,3,2,100,96,5118,5267,1094,1187,74,64,193,224,7,6,6007,6189,4682,4767,1047,1127,29,21,152,184,3,1,94,89,4767,4852,1083,1167,61,48,190,221,7,4,372,447,346,409,7,17,12,11,1,2,0,1,6,7,351,415,11,20,13,16,3,3,0,2 -050,01,117,Alabama,Shelby County,12,7,13278,6289,6989,5021,5374,1018,1289,49,30,141,203,5,4,55,89,5070,5456,1031,1322,70,63,168,242,6,8,5874,6561,4642,4987,1010,1269,28,21,137,202,3,4,54,78,4690,5059,1023,1296,48,46,164,239,4,7,415,428,379,387,8,20,21,9,4,1,2,0,1,11,380,397,8,26,22,17,4,3,2,1 -050,01,117,Alabama,Shelby County,12,8,14869,7260,7609,5826,5875,1179,1400,20,23,152,230,6,5,77,76,5897,5943,1200,1424,56,59,184,257,13,10,6631,7134,5243,5436,1155,1388,10,14,151,229,6,3,66,64,5304,5494,1170,1407,40,43,178,254,12,5,629,475,583,439,24,12,10,9,1,1,0,2,11,12,593,449,30,17,16,16,6,3,1,5 -050,01,117,Alabama,Shelby County,12,9,14869,7223,7646,5901,5899,1031,1332,42,22,183,302,8,4,58,87,5953,5974,1044,1356,75,69,205,335,11,13,6771,7236,5491,5526,1020,1311,19,18,182,301,4,4,55,76,5540,5594,1032,1331,50,57,203,332,7,10,452,410,410,373,11,21,23,4,1,1,4,0,3,11,413,380,12,25,25,12,2,3,4,3 -050,01,117,Alabama,Shelby County,12,10,15787,7683,8104,6368,6550,1007,1233,31,38,211,210,6,6,60,67,6420,6608,1027,1254,60,71,231,233,10,16,7235,7749,5957,6218,999,1224,19,31,210,209,5,5,45,62,5997,6273,1010,1242,42,63,226,230,7,12,448,355,411,332,8,9,12,7,1,1,1,1,15,5,423,335,17,12,18,8,5,3,3,4 -050,01,117,Alabama,Shelby County,12,11,14599,7090,7509,6006,6209,840,1044,25,31,147,180,3,4,69,41,6069,6243,855,1056,68,54,172,192,8,13,6746,7237,5682,5962,833,1029,20,28,144,179,3,1,64,38,5742,5994,844,1039,62,49,167,191,8,9,344,272,324,247,7,15,5,3,3,1,0,3,5,3,327,249,11,17,6,5,5,1,0,4 -050,01,117,Alabama,Shelby County,12,12,14819,7096,7723,6103,6557,762,923,22,33,149,164,2,1,58,45,6151,6594,778,939,60,62,166,175,5,3,6843,7495,5862,6338,757,920,20,29,149,163,1,1,54,44,5906,6374,770,936,55,57,165,174,3,3,253,228,241,219,5,3,2,4,0,1,1,0,4,1,245,220,8,3,5,5,1,1,2,0 -050,01,117,Alabama,Shelby County,12,13,13582,6479,7103,5669,6193,610,717,26,38,119,107,6,2,49,46,5715,6232,617,732,61,72,132,117,9,3,6309,6957,5507,6058,609,711,20,34,119,107,5,2,49,45,5553,6096,616,726,55,67,132,117,8,3,170,146,162,135,1,6,6,4,0,0,1,0,0,1,162,136,1,6,6,5,0,0,1,0 -050,01,117,Alabama,Shelby County,12,14,11857,5423,6434,4822,5556,466,691,22,18,86,127,1,0,26,42,4846,5597,471,697,43,51,90,137,2,0,5339,6341,4747,5477,462,683,19,17,86,126,0,0,25,38,4770,5514,466,688,40,46,90,136,1,0,84,93,75,79,4,8,3,1,0,1,1,0,1,4,76,83,5,9,3,5,0,1,1,0 -050,01,117,Alabama,Shelby County,12,15,9442,4367,5075,3980,4616,302,351,9,11,55,69,1,1,20,27,4000,4640,306,355,24,30,59,75,3,2,4303,5017,3922,4564,298,351,8,9,55,68,1,0,19,25,3941,4587,301,353,23,28,59,74,3,0,64,58,58,52,4,0,1,2,0,1,0,1,1,2,59,53,5,2,1,2,0,1,0,2 -050,01,117,Alabama,Shelby County,12,16,6151,2694,3457,2521,3205,111,189,7,5,34,37,1,2,20,19,2540,3221,111,193,23,23,37,39,3,2,2664,3418,2493,3168,110,188,7,5,34,37,1,1,19,19,2511,3184,110,192,23,23,36,39,3,1,30,39,28,37,1,1,0,0,0,0,0,1,1,0,29,37,1,1,0,0,1,0,0,1 -050,01,117,Alabama,Shelby County,12,17,3739,1588,2151,1486,1994,63,122,7,6,25,19,0,0,7,10,1492,2000,64,125,11,16,28,20,0,0,1548,2120,1446,1965,63,120,7,6,25,19,0,0,7,10,1452,1971,64,123,11,16,28,20,0,0,40,31,40,29,0,2,0,0,0,0,0,0,0,0,40,29,0,2,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,12,18,3632,1352,2280,1274,2114,49,121,1,4,17,39,0,0,11,2,1284,2115,52,122,7,6,21,39,0,0,1323,2235,1245,2069,49,121,1,4,17,39,0,0,11,2,1255,2070,52,122,7,6,21,39,0,0,29,45,29,45,0,0,0,0,0,0,0,0,0,0,29,45,0,0,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,13,0,221428,106973,114455,88446,93180,14153,16193,456,443,2273,2923,59,59,1586,1657,89919,94710,14877,17002,978,963,2811,3452,147,140,100292,108203,82304,87454,13962,15978,275,307,2246,2885,42,39,1463,1540,83681,88897,14621,16727,740,770,2745,3386,108,95,6681,6252,6142,5726,191,215,181,136,27,38,17,20,123,117,6238,5813,256,275,238,193,66,66,39,45 -050,01,117,Alabama,Shelby County,13,1,12005,6111,5894,4803,4581,951,864,26,21,118,210,4,5,209,213,5004,4786,1083,1004,55,48,183,268,13,11,5466,5234,4222,3971,936,851,5,8,111,201,4,3,188,200,4403,4165,1056,984,26,31,171,257,11,6,645,660,581,610,15,13,21,13,7,9,0,2,21,13,601,621,27,20,29,17,12,11,2,5 -050,01,117,Alabama,Shelby County,13,2,13885,6933,6952,5525,5489,997,994,23,34,175,192,3,6,210,237,5728,5710,1132,1146,55,72,236,263,8,12,6222,6285,4881,4880,961,972,9,12,172,185,2,6,197,230,5073,5096,1087,1121,36,47,228,254,4,11,711,667,644,609,36,22,14,22,3,7,1,0,13,7,655,614,45,25,19,25,8,9,4,1 -050,01,117,Alabama,Shelby County,13,3,15305,7857,7448,6277,5900,1154,1084,32,36,156,186,4,8,234,234,6499,6123,1292,1227,79,78,230,255,14,17,7067,6702,5556,5223,1127,1058,17,17,154,181,3,3,210,220,5757,5434,1251,1193,56,54,221,248,9,11,790,746,721,677,27,26,15,19,2,5,1,5,24,14,742,689,41,34,23,24,9,7,5,6 -050,01,117,Alabama,Shelby County,13,4,14735,7380,7355,5875,5807,1112,1126,36,27,176,214,3,6,178,175,6043,5972,1204,1225,81,66,238,276,12,16,6750,6758,5311,5258,1081,1115,18,13,174,212,2,3,164,157,5468,5410,1168,1203,56,44,231,269,8,10,630,597,564,549,31,11,18,14,2,2,1,3,14,18,575,562,36,22,25,22,7,7,4,6 -050,01,117,Alabama,Shelby County,13,5,13056,6387,6669,5072,5244,1040,1089,36,30,120,187,5,3,114,116,5179,5354,1102,1144,72,58,159,231,11,11,5933,6194,4650,4809,1034,1076,20,16,118,181,3,2,108,110,4752,4916,1092,1128,52,43,157,223,9,7,454,475,422,435,6,13,16,14,2,6,2,1,6,6,427,438,10,16,20,15,2,8,2,4 -050,01,117,Alabama,Shelby County,13,6,13205,6507,6698,5138,5200,1078,1186,38,20,147,173,1,2,105,117,5231,5306,1121,1241,71,56,191,216,6,9,6124,6255,4780,4798,1071,1164,28,14,147,171,1,1,97,107,4869,4894,1109,1213,57,44,187,211,6,6,383,443,358,402,7,22,10,6,0,2,0,1,8,10,362,412,12,28,14,12,4,5,0,3 -050,01,117,Alabama,Shelby County,13,7,13586,6434,7152,5095,5531,1040,1280,55,41,157,207,8,1,79,92,5163,5617,1062,1312,78,75,199,245,15,3,5992,6713,4694,5140,1038,1255,28,28,152,207,4,1,76,82,4760,5218,1059,1284,50,54,193,244,9,2,442,439,401,391,2,25,27,13,5,0,4,0,3,10,403,399,3,28,28,21,6,1,6,1 -050,01,117,Alabama,Shelby County,13,8,14797,7140,7657,5727,5841,1180,1449,18,24,154,258,3,7,58,78,5778,5914,1196,1473,43,61,178,289,11,13,6555,7194,5182,5407,1151,1439,12,17,154,258,3,5,53,68,5228,5472,1164,1458,33,49,178,285,10,8,585,463,545,434,29,10,6,7,0,0,0,2,5,10,550,442,32,15,10,12,0,4,1,5 -050,01,117,Alabama,Shelby County,13,9,15265,7420,7845,5989,5981,1125,1445,38,23,186,307,7,3,75,86,6058,6059,1147,1472,79,69,212,332,9,7,6936,7423,5543,5604,1114,1418,18,17,185,305,3,3,73,76,5612,5675,1135,1441,58,57,210,330,4,4,484,422,446,377,11,27,20,6,1,2,4,0,2,10,446,384,12,31,21,12,2,2,5,3 -050,01,117,Alabama,Shelby County,13,10,15565,7668,7897,6297,6314,1075,1265,30,34,205,205,5,5,56,74,6345,6375,1087,1286,62,68,226,237,10,13,7209,7543,5875,5984,1071,1256,15,28,204,204,4,4,40,67,5914,6042,1078,1273,37,58,219,231,6,9,459,354,422,330,4,9,15,6,1,1,1,1,16,7,431,333,9,13,25,10,7,6,4,4 -050,01,117,Alabama,Shelby County,13,11,14974,7262,7712,6160,6340,836,1108,26,33,166,187,5,6,69,38,6224,6372,850,1119,65,55,190,200,10,8,6912,7414,5827,6064,831,1095,21,31,163,186,5,3,65,35,5888,6095,843,1104,58,51,184,199,9,4,350,298,333,276,5,13,5,2,3,1,0,3,4,3,336,277,7,15,7,4,6,1,1,4 -050,01,117,Alabama,Shelby County,13,12,14875,7164,7711,6107,6543,818,929,33,33,146,165,1,0,59,41,6162,6582,829,942,70,58,166,176,7,3,6854,7478,5814,6324,811,921,29,29,145,164,0,0,55,40,5865,6362,820,934,64,54,164,174,5,3,310,233,293,219,7,8,4,4,1,1,1,0,4,1,297,220,9,8,6,4,2,2,2,0 -050,01,117,Alabama,Shelby County,13,13,13832,6629,7203,5736,6216,680,778,17,30,133,129,6,2,57,48,5788,6255,686,790,59,64,151,140,9,4,6464,7037,5579,6063,678,773,12,24,133,129,5,2,57,46,5631,6100,684,784,54,57,151,140,8,4,165,166,157,153,2,5,5,6,0,0,1,0,0,2,157,155,2,6,5,7,0,0,1,0 -050,01,117,Alabama,Shelby County,13,14,12087,5513,6574,4874,5665,503,713,22,30,90,123,2,2,22,41,4892,5702,509,721,38,61,93,132,4,4,5417,6472,4788,5578,499,704,18,28,90,123,1,2,21,37,4805,5612,505,711,33,57,93,131,3,3,96,102,86,87,4,9,4,2,0,0,1,0,1,4,87,90,4,10,5,4,0,1,1,1 -050,01,117,Alabama,Shelby County,13,15,10127,4595,5532,4185,4962,317,441,10,12,57,88,1,1,25,28,4208,4988,321,445,31,28,63,95,4,4,4528,5462,4122,4896,315,441,9,11,57,86,1,0,24,28,4145,4922,318,445,30,27,62,93,4,3,67,70,63,66,2,0,1,1,0,2,0,1,1,0,63,66,3,0,1,1,1,2,0,1 -050,01,117,Alabama,Shelby County,13,16,6531,2917,3614,2719,3351,130,198,4,3,45,35,0,2,19,25,2736,3369,134,208,18,23,46,38,2,4,2886,3575,2692,3316,127,198,4,2,45,35,0,1,18,23,2709,3334,130,206,18,20,46,38,1,3,31,39,27,35,3,0,0,1,0,0,0,1,1,2,27,35,4,2,0,3,0,0,1,1 -050,01,117,Alabama,Shelby County,13,17,3902,1686,2216,1576,2056,66,117,10,6,27,28,1,0,6,9,1581,2063,67,119,13,12,30,30,2,1,1640,2183,1530,2025,66,115,10,6,27,28,1,0,6,9,1535,2032,67,117,13,12,30,30,2,1,46,33,46,31,0,2,0,0,0,0,0,0,0,0,46,31,0,2,0,0,0,0,0,0 -050,01,117,Alabama,Shelby County,13,18,3696,1370,2326,1291,2159,51,127,2,6,15,29,0,0,11,5,1300,2163,55,128,9,11,20,29,0,0,1337,2281,1258,2114,51,127,2,6,15,29,0,0,11,5,1267,2118,55,128,9,11,20,29,0,0,33,45,33,45,0,0,0,0,0,0,0,0,0,0,33,45,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,0,13763,6261,7502,1579,1770,4647,5673,4,7,9,24,2,2,20,26,1591,1786,4662,5694,10,16,19,33,9,6,6209,7468,1546,1758,4631,5655,4,7,9,24,0,1,19,23,1557,1772,4645,5673,10,15,18,31,7,4,52,34,33,12,16,18,0,0,0,0,2,1,1,3,34,14,17,21,0,1,1,2,2,2 -050,01,119,Alabama,Sumter County,1,1,761,370,391,76,66,294,319,0,1,0,4,0,0,0,1,76,67,294,320,0,1,0,4,0,0,365,391,72,66,293,319,0,1,0,4,0,0,0,1,72,67,293,320,0,1,0,4,0,0,5,0,4,0,1,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,2,748,376,372,59,48,316,322,0,0,1,0,0,0,0,2,59,48,316,324,0,0,1,2,0,0,372,368,55,46,316,320,0,0,1,0,0,0,0,2,55,46,316,322,0,0,1,2,0,0,4,4,4,2,0,2,0,0,0,0,0,0,0,0,4,2,0,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,3,901,432,469,60,69,372,395,0,0,0,1,0,0,0,4,60,73,372,397,0,1,0,2,0,0,431,469,60,69,371,395,0,0,0,1,0,0,0,4,60,73,371,397,0,1,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,4,1303,662,641,139,145,517,490,0,1,1,0,0,0,5,5,144,149,519,495,0,1,4,0,3,1,661,638,138,144,517,488,0,1,1,0,0,0,5,5,143,148,519,493,0,1,4,0,3,1,1,3,1,1,0,2,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,5,1420,658,762,204,257,449,499,1,1,2,2,0,2,2,1,205,258,451,500,2,2,2,2,0,2,645,754,194,254,446,496,1,1,2,2,0,1,2,0,195,254,448,496,2,1,2,2,0,1,13,8,10,3,3,3,0,0,0,0,0,1,0,1,10,4,3,4,0,1,0,0,0,1 -050,01,119,Alabama,Sumter County,1,6,730,346,384,102,75,243,307,0,0,0,2,0,0,1,0,103,75,244,307,0,0,0,2,0,0,344,382,100,73,243,307,0,0,0,2,0,0,1,0,101,73,244,307,0,0,0,2,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,7,663,286,377,68,72,217,301,0,0,1,4,0,0,0,0,68,72,217,301,0,0,1,4,0,0,286,376,68,72,217,300,0,0,1,4,0,0,0,0,68,72,217,300,0,0,1,4,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,8,718,320,398,67,57,250,341,1,0,0,0,2,0,0,0,67,57,250,341,1,0,0,0,2,0,315,398,66,57,248,341,1,0,0,0,0,0,0,0,66,57,248,341,1,0,0,0,0,0,5,0,1,0,2,0,0,0,0,0,2,0,0,0,1,0,2,0,0,0,0,0,2,0 -050,01,119,Alabama,Sumter County,1,9,733,313,420,74,79,236,338,0,1,0,1,0,0,3,1,76,79,238,339,1,2,1,1,1,0,312,416,74,78,235,335,0,1,0,1,0,0,3,1,76,78,237,336,1,2,1,1,1,0,1,4,0,1,1,3,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,10,932,413,519,80,98,328,416,1,1,2,0,0,0,2,4,82,99,330,420,1,3,3,4,0,1,410,517,79,98,327,415,1,1,2,0,0,0,1,3,80,98,328,418,1,3,2,3,0,1,3,2,1,0,1,1,0,0,0,0,0,0,1,1,2,1,2,2,0,0,1,1,0,0 -050,01,119,Alabama,Sumter County,1,11,1075,486,589,103,107,378,477,1,1,0,2,0,0,4,2,104,107,381,479,2,2,3,2,3,1,480,586,98,105,377,476,1,1,0,2,0,0,4,2,99,105,380,478,2,2,3,2,3,1,6,3,5,2,1,1,0,0,0,0,0,0,0,0,5,2,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,12,984,475,509,132,119,339,385,0,0,1,4,0,0,3,1,132,120,342,386,3,0,3,4,0,0,470,509,129,119,337,385,0,0,1,4,0,0,3,1,129,120,340,386,3,0,3,4,0,0,5,0,3,0,2,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,13,732,347,385,107,116,240,268,0,0,0,1,0,0,0,0,107,116,240,268,0,0,0,1,0,0,346,384,107,116,239,267,0,0,0,1,0,0,0,0,107,116,239,267,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,14,558,240,318,92,100,148,214,0,1,0,2,0,0,0,1,92,101,148,214,0,2,0,3,0,0,240,318,92,100,148,214,0,1,0,2,0,0,0,1,92,101,148,214,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,15,499,214,285,77,103,137,181,0,0,0,0,0,0,0,1,77,104,137,181,0,1,0,0,0,0,212,284,77,103,135,180,0,0,0,0,0,0,0,1,77,104,135,180,0,1,0,0,0,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,16,388,144,244,56,97,88,145,0,0,0,1,0,0,0,1,56,97,88,146,0,0,0,2,0,1,142,240,54,96,88,143,0,0,0,1,0,0,0,0,54,96,88,143,0,0,0,1,0,0,2,4,2,1,0,2,0,0,0,0,0,0,0,1,2,1,0,3,0,0,0,1,0,1 -050,01,119,Alabama,Sumter County,1,17,302,104,198,45,81,58,116,0,0,1,0,0,0,0,1,45,82,58,116,0,1,1,0,0,0,103,197,45,81,57,115,0,0,1,0,0,0,0,1,45,82,57,115,0,1,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,1,18,316,75,241,38,81,37,159,0,0,0,0,0,0,0,1,38,82,37,160,0,0,0,0,0,0,75,241,38,81,37,159,0,0,0,0,0,0,0,1,38,82,37,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,0,13763,6261,7502,1579,1770,4647,5673,4,7,9,24,2,2,20,26,1591,1786,4662,5694,10,16,19,33,9,6,6209,7468,1546,1758,4631,5655,4,7,9,24,0,1,19,23,1557,1772,4645,5673,10,15,18,31,7,4,52,34,33,12,16,18,0,0,0,0,2,1,1,3,34,14,17,21,0,1,1,2,2,2 -050,01,119,Alabama,Sumter County,2,1,761,370,391,76,66,294,319,0,1,0,4,0,0,0,1,76,67,294,320,0,1,0,4,0,0,365,391,72,66,293,319,0,1,0,4,0,0,0,1,72,67,293,320,0,1,0,4,0,0,5,0,4,0,1,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,2,748,376,372,59,48,316,322,0,0,1,0,0,0,0,2,59,48,316,324,0,0,1,2,0,0,372,368,55,46,316,320,0,0,1,0,0,0,0,2,55,46,316,322,0,0,1,2,0,0,4,4,4,2,0,2,0,0,0,0,0,0,0,0,4,2,0,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,3,901,432,469,60,69,372,395,0,0,0,1,0,0,0,4,60,73,372,397,0,1,0,2,0,0,431,469,60,69,371,395,0,0,0,1,0,0,0,4,60,73,371,397,0,1,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,4,1303,662,641,139,145,517,490,0,1,1,0,0,0,5,5,144,149,519,495,0,1,4,0,3,1,661,638,138,144,517,488,0,1,1,0,0,0,5,5,143,148,519,493,0,1,4,0,3,1,1,3,1,1,0,2,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,5,1420,658,762,204,257,449,499,1,1,2,2,0,2,2,1,205,258,451,500,2,2,2,2,0,2,645,754,194,254,446,496,1,1,2,2,0,1,2,0,195,254,448,496,2,1,2,2,0,1,13,8,10,3,3,3,0,0,0,0,0,1,0,1,10,4,3,4,0,1,0,0,0,1 -050,01,119,Alabama,Sumter County,2,6,730,346,384,102,75,243,307,0,0,0,2,0,0,1,0,103,75,244,307,0,0,0,2,0,0,344,382,100,73,243,307,0,0,0,2,0,0,1,0,101,73,244,307,0,0,0,2,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,7,663,286,377,68,72,217,301,0,0,1,4,0,0,0,0,68,72,217,301,0,0,1,4,0,0,286,376,68,72,217,300,0,0,1,4,0,0,0,0,68,72,217,300,0,0,1,4,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,8,718,320,398,67,57,250,341,1,0,0,0,2,0,0,0,67,57,250,341,1,0,0,0,2,0,315,398,66,57,248,341,1,0,0,0,0,0,0,0,66,57,248,341,1,0,0,0,0,0,5,0,1,0,2,0,0,0,0,0,2,0,0,0,1,0,2,0,0,0,0,0,2,0 -050,01,119,Alabama,Sumter County,2,9,733,313,420,74,79,236,338,0,1,0,1,0,0,3,1,76,79,238,339,1,2,1,1,1,0,312,416,74,78,235,335,0,1,0,1,0,0,3,1,76,78,237,336,1,2,1,1,1,0,1,4,0,1,1,3,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,10,932,413,519,80,98,328,416,1,1,2,0,0,0,2,4,82,99,330,420,1,3,3,4,0,1,410,517,79,98,327,415,1,1,2,0,0,0,1,3,80,98,328,418,1,3,2,3,0,1,3,2,1,0,1,1,0,0,0,0,0,0,1,1,2,1,2,2,0,0,1,1,0,0 -050,01,119,Alabama,Sumter County,2,11,1075,486,589,103,107,378,477,1,1,0,2,0,0,4,2,104,107,381,479,2,2,3,2,3,1,480,586,98,105,377,476,1,1,0,2,0,0,4,2,99,105,380,478,2,2,3,2,3,1,6,3,5,2,1,1,0,0,0,0,0,0,0,0,5,2,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,12,984,475,509,132,119,339,385,0,0,1,4,0,0,3,1,132,120,342,386,3,0,3,4,0,0,470,509,129,119,337,385,0,0,1,4,0,0,3,1,129,120,340,386,3,0,3,4,0,0,5,0,3,0,2,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,13,732,347,385,107,116,240,268,0,0,0,1,0,0,0,0,107,116,240,268,0,0,0,1,0,0,346,384,107,116,239,267,0,0,0,1,0,0,0,0,107,116,239,267,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,14,558,240,318,92,100,148,214,0,1,0,2,0,0,0,1,92,101,148,214,0,2,0,3,0,0,240,318,92,100,148,214,0,1,0,2,0,0,0,1,92,101,148,214,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,15,499,214,285,77,103,137,181,0,0,0,0,0,0,0,1,77,104,137,181,0,1,0,0,0,0,212,284,77,103,135,180,0,0,0,0,0,0,0,1,77,104,135,180,0,1,0,0,0,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,16,388,144,244,56,97,88,145,0,0,0,1,0,0,0,1,56,97,88,146,0,0,0,2,0,1,142,240,54,96,88,143,0,0,0,1,0,0,0,0,54,96,88,143,0,0,0,1,0,0,2,4,2,1,0,2,0,0,0,0,0,0,0,1,2,1,0,3,0,0,0,1,0,1 -050,01,119,Alabama,Sumter County,2,17,302,104,198,45,81,58,116,0,0,1,0,0,0,0,1,45,82,58,116,0,1,1,0,0,0,103,197,45,81,57,115,0,0,1,0,0,0,0,1,45,82,57,115,0,1,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,2,18,316,75,241,38,81,37,159,0,0,0,0,0,0,0,1,38,82,37,160,0,0,0,0,0,0,75,241,38,81,37,159,0,0,0,0,0,0,0,1,38,82,37,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,0,13730,6238,7492,1573,1801,4632,5631,4,11,9,22,1,2,19,25,1590,1819,4642,5647,14,20,11,26,1,5,6184,7452,1537,1789,4616,5607,4,11,9,22,0,1,18,22,1553,1806,4625,5622,14,20,11,24,0,2,54,40,36,12,16,24,0,0,0,0,1,1,1,3,37,13,17,25,0,0,0,2,1,3 -050,01,119,Alabama,Sumter County,3,1,753,369,384,75,68,294,311,0,1,0,3,0,0,0,1,75,69,294,312,0,1,0,3,0,0,364,384,71,68,293,311,0,1,0,3,0,0,0,1,71,69,293,312,0,1,0,3,0,0,5,0,4,0,1,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,2,736,370,366,57,45,312,319,0,0,1,0,0,0,0,2,57,47,312,320,0,0,1,1,0,0,366,362,53,43,312,317,0,0,1,0,0,0,0,2,53,45,312,318,0,0,1,1,0,0,4,4,4,2,0,2,0,0,0,0,0,0,0,0,4,2,0,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,3,893,433,460,60,68,373,387,0,0,0,1,0,0,0,4,60,70,373,390,0,2,0,1,0,1,432,460,60,68,372,387,0,0,0,1,0,0,0,4,60,70,372,390,0,2,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,4,1304,664,640,141,146,518,488,0,1,1,0,0,0,4,5,144,151,521,492,2,2,2,0,0,0,663,637,140,145,518,486,0,1,1,0,0,0,4,5,143,150,521,490,2,2,2,0,0,0,1,3,1,1,0,2,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,5,1494,666,828,208,293,452,525,1,5,2,2,0,2,3,1,211,293,454,525,2,5,2,3,0,3,650,814,195,290,449,516,1,5,2,2,0,1,3,0,198,290,451,516,2,5,2,2,0,1,16,14,13,3,3,9,0,0,0,0,0,1,0,1,13,3,3,9,0,0,0,1,0,2 -050,01,119,Alabama,Sumter County,3,6,716,345,371,104,80,240,290,0,0,0,1,0,0,1,0,105,80,241,290,0,0,0,1,0,0,341,369,100,78,240,290,0,0,0,1,0,0,1,0,101,78,241,290,0,0,0,1,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,7,663,289,374,67,71,221,299,0,0,1,4,0,0,0,0,67,71,221,299,0,0,1,4,0,0,289,373,67,71,221,298,0,0,1,4,0,0,0,0,67,71,221,298,0,0,1,4,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,8,708,315,393,65,56,248,337,1,0,0,0,1,0,0,0,65,56,248,337,1,0,0,0,1,0,311,393,64,56,246,337,1,0,0,0,0,0,0,0,64,56,246,337,1,0,0,0,0,0,4,0,1,0,2,0,0,0,0,0,1,0,0,0,1,0,2,0,0,0,0,0,1,0 -050,01,119,Alabama,Sumter County,3,9,732,311,421,74,78,234,340,0,1,0,1,0,0,3,1,77,79,234,341,3,1,0,1,0,0,310,417,74,77,233,337,0,1,0,1,0,0,3,1,77,78,233,338,3,1,0,1,0,0,1,4,0,1,1,3,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,10,900,398,502,79,94,314,403,1,1,2,0,0,0,2,4,81,97,315,406,2,2,2,1,0,0,395,500,78,94,313,402,1,1,2,0,0,0,1,3,79,96,313,404,2,2,2,1,0,0,3,2,1,0,1,1,0,0,0,0,0,0,1,1,2,1,2,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,11,1063,481,582,99,106,377,472,1,1,0,2,0,0,4,1,102,106,379,473,4,2,0,2,0,0,476,579,95,104,376,471,1,1,0,2,0,0,4,1,98,104,378,472,4,2,0,2,0,0,5,3,4,2,1,1,0,0,0,0,0,0,0,0,4,2,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,12,988,476,512,133,119,340,388,0,0,1,4,0,0,2,1,135,120,341,388,0,1,2,4,0,0,471,512,130,119,338,388,0,0,1,4,0,0,2,1,132,120,339,388,0,1,2,4,0,0,5,0,3,0,2,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,13,732,348,384,109,114,239,269,0,0,0,1,0,0,0,0,109,114,239,269,0,0,0,1,0,0,347,383,109,114,238,268,0,0,0,1,0,0,0,0,109,114,238,268,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,14,557,239,318,91,103,148,211,0,1,0,2,0,0,0,1,91,103,148,212,0,2,0,2,0,0,239,318,91,103,148,211,0,1,0,2,0,0,0,1,91,103,148,212,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,15,494,215,279,77,100,138,178,0,0,0,0,0,0,0,1,77,101,138,178,0,1,0,0,0,0,213,278,77,100,136,177,0,0,0,0,0,0,0,1,77,101,136,177,0,1,0,0,0,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,16,384,145,239,55,95,90,142,0,0,0,1,0,0,0,1,55,95,90,142,0,0,0,2,0,1,144,235,54,94,90,140,0,0,0,1,0,0,0,0,54,94,90,140,0,0,0,1,0,0,1,4,1,1,0,2,0,0,0,0,0,0,0,1,1,1,0,2,0,0,0,1,0,1 -050,01,119,Alabama,Sumter County,3,17,297,102,195,43,81,58,113,0,0,1,0,0,0,0,1,43,82,58,113,0,1,1,0,0,0,101,194,43,81,57,112,0,0,1,0,0,0,0,1,43,82,57,112,0,1,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,3,18,316,72,244,36,84,36,159,0,0,0,0,0,0,0,1,36,85,36,160,0,0,0,0,0,0,72,244,36,84,36,159,0,0,0,0,0,0,0,1,36,85,36,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,0,13491,6123,7368,1548,1774,4522,5515,4,11,26,36,1,2,22,30,1565,1801,4534,5531,19,25,26,43,2,3,6064,7325,1506,1759,4507,5491,4,11,26,36,0,1,21,27,1522,1783,4519,5506,18,23,26,42,1,1,59,43,42,15,15,24,0,0,0,0,1,1,1,3,43,18,15,25,1,2,0,1,1,2 -050,01,119,Alabama,Sumter County,4,1,713,367,346,80,59,285,283,0,0,0,3,0,0,2,1,81,60,286,284,2,0,0,3,0,0,364,345,78,58,284,283,0,0,0,3,0,0,2,1,79,59,285,284,2,0,0,3,0,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,2,715,352,363,56,46,293,311,0,1,2,2,0,0,1,3,57,48,294,314,0,2,2,2,0,0,348,359,52,43,293,310,0,1,2,2,0,0,1,3,53,45,294,313,0,2,2,2,0,0,4,4,4,3,0,1,0,0,0,0,0,0,0,0,4,3,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,3,857,419,438,55,70,364,363,0,0,0,1,0,0,0,4,55,74,364,364,0,2,0,3,0,0,417,435,54,68,363,362,0,0,0,1,0,0,0,4,54,72,363,363,0,2,0,3,0,0,2,3,1,2,1,1,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,4,1291,649,642,137,152,507,483,0,1,3,0,0,0,2,6,138,158,509,487,1,2,3,1,0,0,647,640,135,151,507,482,0,1,3,0,0,0,2,6,136,157,509,486,1,2,3,1,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,5,1631,725,906,223,295,483,592,1,5,13,11,0,2,5,1,228,296,486,592,3,6,13,12,1,3,711,891,210,292,482,582,1,5,13,11,0,1,5,0,215,292,485,582,3,5,13,11,1,1,14,15,13,3,1,10,0,0,0,0,0,1,0,1,13,4,1,10,0,1,0,1,0,2 -050,01,119,Alabama,Sumter County,4,6,630,314,316,95,90,217,225,0,0,1,1,0,0,1,0,96,90,218,225,0,0,1,1,0,0,306,316,89,90,215,225,0,0,1,1,0,0,1,0,90,90,216,225,0,0,1,1,0,0,8,0,6,0,2,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,7,647,276,371,72,77,202,290,0,0,2,4,0,0,0,0,72,77,202,290,0,0,2,4,0,0,274,369,70,76,202,289,0,0,2,4,0,0,0,0,70,76,202,289,0,0,2,4,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,8,654,294,360,57,47,234,311,1,0,0,2,1,0,1,0,58,47,234,311,2,0,0,2,1,0,290,360,55,47,233,311,1,0,0,2,0,0,1,0,56,47,233,311,2,0,0,2,0,0,4,0,2,0,1,0,0,0,0,0,1,0,0,0,2,0,1,0,0,0,0,0,1,0 -050,01,119,Alabama,Sumter County,4,9,734,327,407,85,71,239,333,0,1,1,2,0,0,2,0,87,71,240,333,1,1,1,2,0,0,324,405,84,71,237,331,0,1,1,2,0,0,2,0,86,71,238,331,1,1,1,2,0,0,3,2,1,0,2,2,0,0,0,0,0,0,0,0,1,0,2,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,10,802,360,442,74,80,283,356,0,1,1,0,0,0,2,5,75,84,284,358,2,4,1,1,0,0,358,438,73,79,282,354,0,1,1,0,0,0,2,4,74,82,283,356,2,3,1,1,0,0,2,4,1,1,1,2,0,0,0,0,0,0,0,1,1,2,1,2,0,1,0,0,0,0 -050,01,119,Alabama,Sumter County,4,11,1005,442,563,90,98,347,462,2,1,1,1,0,0,2,1,92,99,347,462,4,2,1,1,0,0,437,561,87,97,346,461,2,1,1,1,0,0,1,1,88,98,346,461,3,2,1,1,0,0,5,2,3,1,1,1,0,0,0,0,0,0,1,0,4,1,1,1,1,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,12,1023,483,540,128,117,350,418,0,0,1,3,0,0,4,2,130,119,352,420,4,1,1,3,0,0,478,539,125,116,348,418,0,0,1,3,0,0,4,2,127,118,350,420,4,1,1,3,0,0,5,1,3,1,2,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,13,776,358,418,114,119,244,295,0,0,0,3,0,0,0,1,114,120,244,295,0,1,0,3,0,0,356,417,113,119,243,294,0,0,0,3,0,0,0,1,113,120,243,294,0,1,0,3,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,14,546,238,308,84,106,154,198,0,1,0,2,0,0,0,1,84,107,154,199,0,2,0,2,0,0,238,308,84,106,154,198,0,1,0,2,0,0,0,1,84,107,154,199,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,15,486,213,273,77,88,136,183,0,0,0,0,0,0,0,2,77,90,136,183,0,1,0,1,0,0,212,272,77,88,135,182,0,0,0,0,0,0,0,2,77,90,135,182,0,1,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,16,366,138,228,51,91,87,135,0,0,0,1,0,0,0,1,51,92,87,136,0,0,0,1,0,0,136,224,50,90,86,133,0,0,0,1,0,0,0,0,50,90,86,133,0,0,0,1,0,0,2,4,1,1,1,2,0,0,0,0,0,0,0,1,1,2,1,3,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,17,291,99,192,41,76,57,115,0,0,1,0,0,0,0,1,41,76,57,115,0,1,1,1,0,0,99,191,41,76,57,114,0,0,1,0,0,0,0,1,41,76,57,114,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,4,18,324,69,255,29,92,40,162,0,0,0,0,0,0,0,1,29,93,40,163,0,0,0,0,0,0,69,255,29,92,40,162,0,0,0,0,0,0,0,1,29,93,40,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,0,13444,6061,7383,1558,1808,4422,5480,5,11,48,48,1,2,27,34,1580,1839,4439,5495,17,26,53,55,2,3,5991,7327,1506,1781,4406,5455,5,11,48,48,0,1,26,31,1527,1811,4423,5468,16,25,53,54,1,1,70,56,52,27,16,25,0,0,0,0,1,1,1,3,53,28,16,27,1,1,0,1,1,2 -050,01,119,Alabama,Sumter County,5,1,654,331,323,71,52,258,267,0,0,0,2,0,0,2,2,72,54,259,268,2,0,0,3,0,0,327,321,69,50,256,267,0,0,0,2,0,0,2,2,70,52,257,268,2,0,0,3,0,0,4,2,2,2,2,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,2,745,360,385,65,61,294,316,0,1,0,3,0,0,1,4,66,65,294,318,1,3,0,3,0,0,353,380,58,56,294,316,0,1,0,3,0,0,1,4,59,60,294,318,1,3,0,3,0,0,7,5,7,5,0,0,0,0,0,0,0,0,0,0,7,5,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,3,805,388,417,59,68,325,345,0,0,0,0,0,0,4,4,63,72,329,346,1,3,1,0,0,0,384,410,56,63,324,343,0,0,0,0,0,0,4,4,60,67,328,344,1,3,1,0,0,0,4,7,3,5,1,2,0,0,0,0,0,0,0,0,3,5,1,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,4,1275,634,641,137,157,491,476,0,1,4,2,0,0,2,5,139,162,493,479,0,1,4,4,0,0,631,638,134,155,491,475,0,1,4,2,0,0,2,5,136,160,493,478,0,1,4,4,0,0,3,3,3,2,0,1,0,0,0,0,0,0,0,0,3,2,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,5,1783,776,1007,236,320,499,656,2,5,33,21,0,2,6,3,242,323,503,658,4,6,33,22,0,2,762,989,223,314,498,645,2,5,33,21,0,1,6,3,229,317,502,647,4,6,33,22,0,1,14,18,13,6,1,11,0,0,0,0,0,1,0,0,13,6,1,11,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,5,6,609,316,293,88,75,226,215,0,0,1,1,0,0,1,2,89,77,227,215,0,2,1,1,0,0,309,292,83,75,224,215,0,0,1,1,0,0,1,1,84,76,225,215,0,1,1,1,0,0,7,1,5,0,2,0,0,0,0,0,0,0,0,1,5,1,2,0,0,1,0,0,0,0 -050,01,119,Alabama,Sumter County,5,7,634,270,364,75,79,192,281,0,0,3,4,0,0,0,0,75,79,192,281,0,0,3,4,0,0,268,363,73,78,192,281,0,0,3,4,0,0,0,0,73,78,192,281,0,0,3,4,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,8,612,271,341,60,51,208,288,1,0,2,2,0,0,0,0,60,51,208,288,1,0,2,2,0,0,266,338,56,49,207,287,1,0,2,2,0,0,0,0,56,49,207,287,1,0,2,2,0,0,5,3,4,2,1,1,0,0,0,0,0,0,0,0,4,2,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,9,740,342,398,90,70,249,324,0,1,1,3,1,0,1,0,91,70,249,324,0,1,2,3,1,0,336,397,87,70,247,323,0,1,1,3,0,0,1,0,88,70,247,323,0,1,2,3,0,0,6,1,3,0,2,1,0,0,0,0,1,0,0,0,3,0,2,1,0,0,0,0,1,0 -050,01,119,Alabama,Sumter County,5,10,735,324,411,68,74,253,334,0,0,0,0,0,0,3,3,70,77,255,335,2,1,0,1,0,0,322,407,67,73,252,331,0,0,0,0,0,0,3,3,69,76,254,332,2,1,0,1,0,0,2,4,1,1,1,3,0,0,0,0,0,0,0,0,1,1,1,3,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,11,948,417,531,88,92,323,434,2,2,2,1,0,0,2,2,90,93,323,435,4,3,2,1,0,1,412,528,84,91,323,433,2,2,2,1,0,0,1,1,85,92,323,433,3,3,2,1,0,0,5,3,4,1,0,1,0,0,0,0,0,0,1,1,5,1,0,2,1,0,0,0,0,1 -050,01,119,Alabama,Sumter County,5,12,1055,494,561,118,123,371,434,0,0,1,2,0,0,4,2,120,124,374,436,2,1,3,2,0,0,489,560,115,122,369,434,0,0,1,2,0,0,4,2,117,123,372,436,2,1,3,2,0,0,5,1,3,1,2,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,13,813,365,448,113,122,251,321,0,0,0,4,0,0,1,1,113,123,251,321,0,0,1,5,1,0,362,447,112,122,249,320,0,0,0,4,0,0,1,1,112,123,249,320,0,0,1,5,1,0,3,1,1,0,2,1,0,0,0,0,0,0,0,0,1,0,2,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,14,560,256,304,91,108,165,193,0,1,0,2,0,0,0,0,91,108,165,193,0,1,0,2,0,0,256,304,91,108,165,193,0,1,0,2,0,0,0,0,91,108,165,193,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,15,498,206,292,75,93,131,196,0,0,0,0,0,0,0,3,75,96,131,196,0,3,0,0,0,0,205,291,75,93,130,195,0,0,0,0,0,0,0,3,75,96,130,195,0,3,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,16,363,144,219,56,88,88,129,0,0,0,1,0,0,0,1,56,88,88,130,0,0,0,2,0,0,143,216,56,88,87,127,0,0,0,1,0,0,0,0,56,88,87,127,0,0,0,1,0,0,1,3,0,0,1,2,0,0,0,0,0,0,0,1,0,0,1,3,0,0,0,1,0,0 -050,01,119,Alabama,Sumter County,5,17,299,101,198,37,76,63,122,0,0,1,0,0,0,0,0,37,76,63,122,0,0,1,0,0,0,100,196,36,75,63,121,0,0,1,0,0,0,0,0,36,75,63,121,0,0,1,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,5,18,316,66,250,31,99,35,149,0,0,0,0,0,0,0,2,31,101,35,150,0,1,0,0,0,0,66,250,31,99,35,149,0,0,0,0,0,0,0,2,31,101,35,150,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,0,13398,6069,7329,1588,1787,4375,5421,4,11,74,69,1,2,27,39,1611,1820,4389,5449,13,25,81,72,3,3,5996,7273,1533,1761,4359,5395,4,11,74,69,0,1,26,36,1556,1791,4372,5421,12,25,81,71,2,1,73,56,55,26,16,26,0,0,0,0,1,1,1,3,55,29,17,28,1,0,0,1,1,2 -050,01,119,Alabama,Sumter County,6,1,640,317,323,69,54,244,265,0,0,1,1,0,0,3,3,72,57,245,268,0,0,3,1,0,0,314,322,67,53,243,265,0,0,1,1,0,0,3,3,70,56,244,268,0,0,3,1,0,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,2,744,364,380,72,62,290,309,0,1,1,3,0,0,1,5,73,66,291,313,0,2,1,4,0,0,357,373,66,55,289,309,0,1,1,3,0,0,1,5,67,59,290,313,0,2,1,4,0,0,7,7,6,7,1,0,0,0,0,0,0,0,0,0,6,7,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,3,767,365,402,52,65,309,332,0,0,0,1,0,0,4,4,56,69,310,335,1,1,1,1,1,0,361,399,48,64,309,330,0,0,0,1,0,0,4,4,52,68,310,333,1,1,1,1,1,0,4,3,4,1,0,2,0,0,0,0,0,0,0,0,4,1,0,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,4,1184,584,600,134,157,441,434,0,0,7,4,0,0,2,5,136,161,443,439,0,1,7,4,0,0,581,597,132,155,440,433,0,0,7,4,0,0,2,5,134,159,442,438,0,1,7,4,0,0,3,3,2,2,1,1,0,0,0,0,0,0,0,0,2,2,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,5,1888,829,1059,253,323,525,687,1,6,45,35,0,2,5,6,257,327,529,691,2,9,46,36,0,2,818,1041,243,317,524,676,1,6,45,35,0,1,5,6,247,321,528,680,2,9,46,36,0,1,11,18,10,6,1,11,0,0,0,0,0,1,0,0,10,6,1,11,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,6,6,647,346,301,100,74,240,223,0,0,5,2,0,0,1,2,101,76,240,224,0,1,6,2,0,0,339,300,95,74,238,223,0,0,5,2,0,0,1,1,96,75,238,223,0,1,6,2,0,0,7,1,5,0,2,0,0,0,0,0,0,0,0,1,5,1,2,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,7,607,278,329,76,68,199,254,0,0,3,7,0,0,0,0,76,68,199,254,0,0,3,7,0,0,274,326,72,65,199,254,0,0,3,7,0,0,0,0,72,65,199,254,0,0,3,7,0,0,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,8,581,256,325,57,56,192,267,1,0,6,2,0,0,0,0,57,56,192,267,1,0,6,2,0,0,247,322,49,54,191,266,1,0,6,2,0,0,0,0,49,54,191,266,1,0,6,2,0,0,9,3,8,2,1,1,0,0,0,0,0,0,0,0,8,2,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,9,733,337,396,88,63,246,329,0,1,2,3,1,0,0,0,88,63,246,329,0,1,2,3,1,0,331,395,85,63,244,328,0,1,2,3,0,0,0,0,85,63,244,328,0,1,2,3,0,0,6,1,3,0,2,1,0,0,0,0,1,0,0,0,3,0,2,1,0,0,0,0,1,0 -050,01,119,Alabama,Sumter County,6,10,719,323,396,65,75,254,320,0,0,0,0,0,0,4,1,68,76,255,321,1,0,2,0,1,0,320,392,63,74,253,317,0,0,0,0,0,0,4,1,66,75,254,318,1,0,2,0,1,0,3,4,2,1,1,3,0,0,0,0,0,0,0,0,2,1,1,3,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,11,938,415,523,99,101,311,414,2,2,1,2,0,0,2,4,100,105,313,415,3,4,1,3,0,1,410,521,95,100,311,414,2,2,1,2,0,0,1,3,96,103,312,415,2,4,1,2,0,0,5,2,4,1,0,0,0,0,0,0,0,0,1,1,4,2,1,0,1,0,0,1,0,1 -050,01,119,Alabama,Sumter County,6,12,1015,463,552,112,115,346,433,0,0,2,2,0,0,3,2,115,116,347,434,3,2,2,2,0,0,458,550,109,114,344,432,0,0,2,2,0,0,3,2,112,115,345,433,3,2,2,2,0,0,5,2,3,1,2,1,0,0,0,0,0,0,0,0,3,1,2,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,13,862,398,464,113,106,283,353,0,0,0,4,0,0,2,1,114,107,284,354,2,0,0,4,0,0,396,464,112,106,282,353,0,0,0,4,0,0,2,1,113,107,283,354,2,0,0,4,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,14,583,266,317,92,116,174,199,0,0,0,2,0,0,0,0,92,116,174,199,0,0,0,2,0,0,265,316,92,116,173,198,0,0,0,2,0,0,0,0,92,116,173,198,0,0,0,2,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,15,507,208,299,74,87,134,208,0,1,0,0,0,0,0,3,74,90,134,209,0,3,0,0,0,0,207,297,74,87,133,206,0,1,0,0,0,0,0,3,74,90,133,207,0,3,0,0,0,0,1,2,0,0,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,16,374,151,223,63,88,88,134,0,0,0,1,0,0,0,0,63,88,88,134,0,0,0,1,0,0,150,222,63,88,87,133,0,0,0,1,0,0,0,0,63,88,87,133,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,17,278,91,187,33,72,58,114,0,0,0,0,0,0,0,1,33,73,58,115,0,0,0,0,0,0,90,183,32,71,58,112,0,0,0,0,0,0,0,0,32,71,58,112,0,0,0,0,0,0,1,4,1,1,0,2,0,0,0,0,0,0,0,1,1,2,0,3,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,6,18,331,78,253,36,105,41,146,0,0,1,0,0,0,0,2,36,106,41,148,0,1,1,0,0,0,78,253,36,105,41,146,0,0,1,0,0,0,0,2,36,106,41,148,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,0,13276,6035,7241,1568,1754,4348,5357,6,11,80,77,2,2,31,40,1596,1789,4366,5380,22,31,82,80,3,3,5960,7174,1513,1716,4331,5332,6,11,80,77,0,1,30,37,1540,1748,4349,5354,21,28,82,80,1,2,75,67,55,38,17,25,0,0,0,0,2,1,1,3,56,41,17,26,1,3,0,0,2,1 -050,01,119,Alabama,Sumter County,7,1,669,345,324,79,54,259,264,0,0,2,2,0,0,5,4,83,58,263,267,2,0,3,3,0,0,339,323,74,53,258,264,0,0,2,2,0,0,5,4,78,57,262,267,2,0,3,3,0,0,6,1,5,1,1,0,0,0,0,0,0,0,0,0,5,1,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,2,713,345,368,62,64,279,293,0,0,1,4,1,0,2,7,64,71,280,298,2,1,1,4,1,1,339,362,59,58,277,293,0,0,1,4,0,0,2,7,61,65,278,298,2,1,1,4,0,1,6,6,3,6,2,0,0,0,0,0,1,0,0,0,3,6,2,0,0,0,0,0,1,0 -050,01,119,Alabama,Sumter County,7,3,754,369,385,53,52,312,329,0,0,0,1,0,0,4,3,57,55,314,330,2,2,0,1,0,0,362,378,46,47,312,327,0,0,0,1,0,0,4,3,50,50,314,328,2,2,0,1,0,0,7,7,7,5,0,2,0,0,0,0,0,0,0,0,7,5,0,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,4,1142,562,580,131,164,419,406,0,0,10,4,0,0,2,6,133,170,421,410,0,2,10,4,0,0,559,576,129,161,418,405,0,0,10,4,0,0,2,6,131,167,420,409,0,2,10,4,0,0,3,4,2,3,1,1,0,0,0,0,0,0,0,0,2,3,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,5,1917,835,1082,245,316,541,716,0,6,43,40,0,1,6,3,250,318,546,718,3,9,43,40,0,1,825,1065,236,310,540,706,0,6,43,40,0,0,6,3,241,312,545,708,3,9,43,40,0,0,10,17,9,6,1,10,0,0,0,0,0,1,0,0,9,6,1,10,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,7,6,651,346,305,102,71,240,229,1,0,3,3,0,1,0,1,102,72,240,230,1,1,3,3,0,1,338,302,96,69,238,229,1,0,3,3,0,1,0,0,96,69,238,229,1,0,3,3,0,1,8,3,6,2,2,0,0,0,0,0,0,0,0,1,6,3,2,1,0,1,0,0,0,0 -050,01,119,Alabama,Sumter County,7,7,585,273,312,69,61,194,245,3,0,6,5,0,0,1,1,70,62,195,246,3,0,6,5,0,0,268,307,65,56,193,245,3,0,6,5,0,0,1,1,66,57,194,246,3,0,6,5,0,0,5,5,4,5,1,0,0,0,0,0,0,0,0,0,4,5,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,8,560,241,319,57,61,175,254,0,0,9,4,0,0,0,0,57,61,175,254,0,0,9,4,0,0,239,314,55,57,175,253,0,0,9,4,0,0,0,0,55,57,175,253,0,0,9,4,0,0,2,5,2,4,0,1,0,0,0,0,0,0,0,0,2,4,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,9,705,319,386,78,61,238,322,0,1,2,2,1,0,0,0,78,61,238,322,0,1,2,2,1,0,309,384,72,59,235,322,0,1,2,2,0,0,0,0,72,59,235,322,0,1,2,2,0,0,10,2,6,2,3,0,0,0,0,0,1,0,0,0,6,2,3,0,0,0,0,0,1,0 -050,01,119,Alabama,Sumter County,7,10,690,302,388,72,80,227,304,0,1,0,1,0,0,3,2,74,82,229,305,2,2,0,1,0,0,300,384,71,79,226,301,0,1,0,1,0,0,3,2,73,81,228,302,2,2,0,1,0,0,2,4,1,1,1,3,0,0,0,0,0,0,0,0,1,1,1,3,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,11,922,408,514,90,100,314,408,1,1,1,1,0,0,2,4,92,103,314,409,3,5,1,1,0,0,404,511,87,99,314,407,1,1,1,1,0,0,1,3,88,101,314,408,2,4,1,1,0,0,4,3,3,1,0,1,0,0,0,0,0,0,1,1,4,2,0,1,1,1,0,0,0,0 -050,01,119,Alabama,Sumter County,7,12,970,438,532,107,108,326,420,1,1,1,2,0,0,3,1,110,108,327,421,2,1,1,3,1,0,434,530,103,107,326,419,1,1,1,2,0,0,3,1,106,107,327,420,2,1,1,3,1,0,4,2,4,1,0,1,0,0,0,0,0,0,0,0,4,1,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,13,883,426,457,119,99,303,352,0,0,1,4,0,0,3,2,122,100,303,353,2,1,2,5,0,0,422,457,117,99,301,352,0,0,1,4,0,0,3,2,120,100,301,353,2,1,2,5,0,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,14,635,295,340,95,112,200,227,0,0,0,1,0,0,0,0,95,112,200,227,0,0,0,1,0,0,294,339,95,112,199,226,0,0,0,1,0,0,0,0,95,112,199,226,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,15,484,198,286,71,88,127,193,0,1,0,2,0,0,0,2,71,89,127,194,0,3,0,2,0,0,197,285,71,88,126,192,0,1,0,2,0,0,0,2,71,89,126,193,0,3,0,2,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,16,393,169,224,67,88,102,135,0,0,0,0,0,0,0,1,67,89,102,135,0,1,0,0,0,0,168,222,67,88,101,133,0,0,0,0,0,0,0,1,67,89,101,133,0,1,0,0,0,0,1,2,0,0,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,7,17,274,83,191,35,74,48,115,0,0,0,1,0,0,0,1,35,75,48,115,0,1,0,1,0,0,82,188,34,73,48,114,0,0,0,1,0,0,0,0,34,73,48,114,0,0,0,1,0,0,1,3,1,1,0,1,0,0,0,0,0,0,0,1,1,2,0,1,0,1,0,0,0,0 -050,01,119,Alabama,Sumter County,7,18,329,81,248,36,101,44,145,0,0,1,0,0,0,0,2,36,103,44,146,0,1,1,0,0,0,81,247,36,101,44,144,0,0,1,0,0,0,0,2,36,103,44,145,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,0,13212,6016,7196,1591,1780,4303,5266,6,12,81,96,2,2,33,40,1623,1814,4318,5289,17,30,89,103,4,3,5938,7130,1535,1742,4284,5242,6,12,81,96,0,1,32,37,1566,1773,4299,5264,17,28,89,103,1,2,78,66,56,38,19,24,0,0,0,0,2,1,1,3,57,41,19,25,0,2,0,0,3,1 -050,01,119,Alabama,Sumter County,8,1,691,369,322,85,69,276,245,0,0,2,2,0,0,6,6,91,75,279,248,2,1,3,5,0,0,363,319,80,66,275,245,0,0,2,2,0,0,6,6,86,72,278,248,2,1,3,5,0,0,6,3,5,3,1,0,0,0,0,0,0,0,0,0,5,3,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,2,716,357,359,66,63,287,289,0,0,2,4,1,0,1,3,67,66,288,291,0,1,2,4,1,0,349,355,61,59,285,289,0,0,2,4,0,0,1,3,62,62,286,291,0,1,2,4,0,0,8,4,5,4,2,0,0,0,0,0,1,0,0,0,5,4,2,0,0,0,0,0,1,0 -050,01,119,Alabama,Sumter County,8,3,701,333,368,57,50,272,312,0,0,0,0,0,0,4,6,61,54,274,316,1,3,2,1,0,0,328,359,52,43,272,310,0,0,0,0,0,0,4,6,56,47,274,314,1,3,2,1,0,0,5,9,5,7,0,2,0,0,0,0,0,0,0,0,5,7,0,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,4,1145,550,595,126,177,409,409,0,0,13,4,0,0,2,5,128,181,411,413,0,2,13,4,0,0,547,589,124,172,408,408,0,0,13,4,0,0,2,5,126,176,410,412,0,2,13,4,0,0,3,6,2,5,1,1,0,0,0,0,0,0,0,0,2,5,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,5,1959,870,1089,270,321,559,704,0,7,36,53,0,1,5,3,275,324,563,706,1,7,36,54,0,1,861,1072,261,315,559,694,0,7,36,53,0,0,5,3,266,318,563,696,1,7,36,54,0,0,9,17,9,6,0,10,0,0,0,0,0,1,0,0,9,6,0,10,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,8,6,651,320,331,96,79,218,241,1,0,3,9,0,1,2,1,98,80,219,242,1,0,4,9,0,1,307,328,88,77,213,241,1,0,3,9,0,1,2,0,90,77,214,241,1,0,4,9,0,1,13,3,8,2,5,0,0,0,0,0,0,0,0,1,8,3,5,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,7,594,288,306,83,60,195,240,3,0,6,5,0,0,1,1,84,61,195,240,3,1,7,5,0,0,282,303,78,57,194,240,3,0,6,5,0,0,1,1,79,58,194,240,3,1,7,5,0,0,6,3,5,3,1,0,0,0,0,0,0,0,0,0,5,3,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,8,567,247,320,55,56,179,259,0,0,13,5,0,0,0,0,55,56,179,259,0,0,13,5,0,0,247,317,55,54,179,258,0,0,13,5,0,0,0,0,55,54,179,258,0,0,13,5,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,9,652,289,363,68,60,218,302,0,0,1,1,1,0,1,0,69,60,219,302,0,0,1,1,1,0,281,361,63,58,216,302,0,0,1,1,0,0,1,0,64,58,217,302,0,0,1,1,0,0,8,2,5,2,2,0,0,0,0,0,1,0,0,0,5,2,2,0,0,0,0,0,1,0 -050,01,119,Alabama,Sumter County,8,10,682,308,374,78,77,226,292,0,2,1,1,0,0,3,2,81,77,226,294,1,4,3,1,1,0,306,370,77,76,225,289,0,2,1,1,0,0,3,2,80,76,225,291,1,4,3,1,1,0,2,4,1,1,1,3,0,0,0,0,0,0,0,0,1,1,1,3,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,11,844,366,478,80,92,282,379,1,1,1,2,0,0,2,4,81,96,283,380,2,3,1,3,1,1,360,476,76,92,281,378,1,1,1,2,0,0,1,3,76,95,282,379,2,2,1,3,0,1,6,2,4,0,1,1,0,0,0,0,0,0,1,1,5,1,1,1,0,1,0,0,1,0 -050,01,119,Alabama,Sumter County,8,12,938,416,522,95,104,316,414,1,1,1,2,0,0,3,1,98,105,316,414,3,1,2,3,0,0,412,519,91,102,316,413,1,1,1,2,0,0,3,1,94,103,316,413,3,1,2,3,0,0,4,3,4,2,0,1,0,0,0,0,0,0,0,0,4,2,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,13,917,448,469,123,106,321,357,0,0,1,4,0,0,3,2,126,107,321,358,3,2,1,4,0,0,444,469,121,106,319,357,0,0,1,4,0,0,3,2,124,107,319,358,3,2,1,4,0,0,4,0,2,0,2,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,14,655,310,345,93,101,217,243,0,0,0,1,0,0,0,0,93,101,217,243,0,0,0,1,0,0,309,344,93,101,216,242,0,0,0,1,0,0,0,0,93,101,216,242,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,15,486,200,286,77,93,123,188,0,1,0,2,0,0,0,2,77,95,123,189,0,2,0,2,0,0,200,286,77,93,123,188,0,1,0,2,0,0,0,2,77,95,123,189,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,16,400,171,229,64,87,107,141,0,0,0,0,0,0,0,1,64,88,107,142,0,1,0,0,0,0,169,228,64,87,105,140,0,0,0,0,0,0,0,1,64,88,105,141,0,1,0,0,0,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,8,17,283,87,196,38,83,49,111,0,0,0,1,0,0,0,1,38,84,49,111,0,1,0,1,0,0,86,192,37,82,49,109,0,0,0,1,0,0,0,0,37,82,49,109,0,0,0,1,0,0,1,4,1,1,0,2,0,0,0,0,0,0,0,1,1,2,0,2,0,1,0,0,0,0 -050,01,119,Alabama,Sumter County,8,18,331,87,244,37,102,49,140,0,0,1,0,0,0,0,2,37,104,49,141,0,1,1,0,0,0,87,243,37,102,49,139,0,0,1,0,0,0,0,2,37,104,49,140,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,0,12973,5926,7047,1579,1731,4241,5153,2,12,69,110,2,2,33,39,1608,1766,4263,5180,16,24,72,114,2,2,5855,6987,1531,1700,4221,5130,2,12,69,108,0,1,32,36,1560,1732,4242,5155,15,23,72,112,0,1,71,60,48,31,20,23,0,0,0,2,2,1,1,3,48,34,21,25,1,1,0,2,2,1 -050,01,119,Alabama,Sumter County,9,1,725,370,355,74,70,285,269,0,0,4,9,0,0,7,7,80,76,291,276,1,0,5,10,0,0,365,351,71,68,283,269,0,0,4,7,0,0,7,7,77,74,289,276,1,0,5,8,0,0,5,4,3,2,2,0,0,0,0,2,0,0,0,0,3,2,2,0,0,0,0,2,0,0 -050,01,119,Alabama,Sumter County,9,2,666,338,328,70,55,264,266,0,0,3,4,1,0,0,3,70,58,264,268,0,1,3,4,1,0,331,325,66,52,262,266,0,0,3,4,0,0,0,3,66,55,262,268,0,1,3,4,0,0,7,3,4,3,2,0,0,0,0,0,1,0,0,0,4,3,2,0,0,0,0,0,1,0 -050,01,119,Alabama,Sumter County,9,3,676,328,348,48,47,278,296,0,0,0,1,0,0,2,4,50,51,279,299,1,1,0,1,0,0,324,340,44,40,278,295,0,0,0,1,0,0,2,4,46,44,279,298,1,1,0,1,0,0,4,8,4,7,0,1,0,0,0,0,0,0,0,0,4,7,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,4,1106,542,564,125,173,400,383,0,0,12,2,0,0,5,6,130,178,404,387,2,2,12,3,0,0,539,559,123,170,399,381,0,0,12,2,0,0,5,6,128,175,403,385,2,2,12,3,0,0,3,5,2,3,1,2,0,0,0,0,0,0,0,0,2,3,1,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,5,1906,859,1047,290,306,543,672,0,7,24,58,0,1,2,3,292,309,545,674,0,8,24,58,0,1,850,1034,281,302,543,664,0,7,24,58,0,0,2,3,283,305,545,666,0,8,24,58,0,0,9,13,9,4,0,8,0,0,0,0,0,1,0,0,9,4,0,8,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,9,6,706,336,370,90,84,241,273,0,0,1,11,0,1,4,1,93,85,243,274,2,0,2,11,0,1,333,364,88,80,240,272,0,0,1,11,0,1,4,0,91,80,242,272,2,0,2,11,0,1,3,6,2,4,1,1,0,0,0,0,0,0,0,1,2,5,1,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,7,537,267,270,89,56,175,209,0,0,2,4,0,0,1,1,90,57,176,209,0,0,2,5,0,0,251,270,78,56,170,209,0,0,2,4,0,0,1,1,79,57,171,209,0,0,2,5,0,0,16,0,11,0,5,0,0,0,0,0,0,0,0,0,11,0,5,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,8,568,251,317,53,59,181,252,0,0,17,6,0,0,0,0,53,59,181,252,0,0,17,6,0,0,251,313,53,56,181,251,0,0,17,6,0,0,0,0,53,56,181,251,0,0,17,6,0,0,0,4,0,3,0,1,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,9,577,241,336,46,49,193,284,0,0,0,3,1,0,1,0,47,49,194,284,0,0,0,3,1,0,239,334,46,47,192,284,0,0,0,3,0,0,1,0,47,47,193,284,0,0,0,3,0,0,2,2,0,2,1,0,0,0,0,0,1,0,0,0,0,2,1,0,0,0,0,0,1,0 -050,01,119,Alabama,Sumter County,9,10,707,327,380,89,74,234,302,0,2,2,1,0,0,2,1,90,75,236,303,1,2,2,1,0,0,323,378,87,74,232,300,0,2,2,1,0,0,2,1,88,75,234,301,1,2,2,1,0,0,4,2,2,0,2,2,0,0,0,0,0,0,0,0,2,0,2,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,11,743,318,425,71,80,245,339,0,1,0,0,0,0,2,5,73,83,245,341,2,5,0,1,0,0,313,421,67,80,244,336,0,1,0,0,0,0,2,4,69,82,244,338,2,4,0,1,0,0,5,4,4,0,1,3,0,0,0,0,0,0,0,1,4,1,1,3,0,1,0,0,0,0 -050,01,119,Alabama,Sumter County,9,12,912,414,498,84,91,324,403,2,1,2,2,0,0,2,1,85,92,325,404,4,1,2,2,0,0,410,496,81,90,324,402,2,1,2,2,0,0,1,1,82,91,324,403,3,1,2,2,0,0,4,2,3,1,0,1,0,0,0,0,0,0,1,0,3,1,1,1,1,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,13,946,454,492,133,120,315,368,0,0,1,3,0,0,5,1,138,121,317,368,3,1,2,3,0,0,449,491,130,119,313,368,0,0,1,3,0,0,5,1,135,120,315,368,3,1,2,3,0,0,5,1,3,1,2,0,0,0,0,0,0,0,0,0,3,1,2,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,14,699,327,372,102,106,225,262,0,0,0,3,0,0,0,1,102,107,225,263,0,0,0,3,0,0,326,371,102,106,224,261,0,0,0,3,0,0,0,1,102,107,224,262,0,0,0,3,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,15,487,209,278,74,99,135,176,0,1,0,2,0,0,0,0,74,99,135,176,0,1,0,2,0,0,209,278,74,99,135,176,0,1,0,2,0,0,0,0,74,99,135,176,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,16,396,167,229,64,77,103,150,0,0,0,0,0,0,0,2,64,79,103,151,0,1,0,0,0,0,166,228,64,77,102,149,0,0,0,0,0,0,0,2,64,79,102,150,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,17,269,89,180,33,77,56,101,0,0,0,1,0,0,0,1,33,78,56,102,0,0,0,1,0,0,87,177,32,76,55,100,0,0,0,1,0,0,0,0,32,76,55,100,0,0,0,1,0,0,2,3,1,1,1,1,0,0,0,0,0,0,0,1,1,2,1,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,9,18,347,89,258,44,108,44,148,0,0,1,0,0,0,0,2,44,110,44,149,0,1,1,0,0,0,89,257,44,108,44,147,0,0,1,0,0,0,0,2,44,110,44,148,0,1,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,0,12756,5823,6933,1558,1713,4150,5041,3,13,72,114,2,2,38,50,1591,1757,4176,5072,13,25,79,125,2,7,5751,6870,1512,1681,4128,5016,3,13,72,112,0,1,36,47,1543,1722,4153,5047,13,24,78,121,0,5,72,63,46,32,22,25,0,0,0,2,2,1,2,3,48,35,23,25,0,1,1,4,2,2 -050,01,119,Alabama,Sumter County,10,1,726,361,365,77,76,275,265,0,1,4,9,0,0,5,14,81,89,280,277,0,2,5,10,0,1,358,361,76,74,273,265,0,1,4,7,0,0,5,14,80,87,278,277,0,2,5,8,0,1,3,4,1,2,2,0,0,0,0,2,0,0,0,0,1,2,2,0,0,0,0,2,0,0 -050,01,119,Alabama,Sumter County,10,2,630,334,296,64,50,262,242,0,0,3,2,1,0,4,2,67,51,266,243,0,0,4,4,1,0,326,294,59,48,260,242,0,0,3,2,0,0,4,2,62,49,264,243,0,0,4,4,0,0,8,2,5,2,2,0,0,0,0,0,1,0,0,0,5,2,2,0,0,0,0,0,1,0 -050,01,119,Alabama,Sumter County,10,3,684,331,353,54,53,275,292,0,0,0,3,0,0,2,5,56,57,277,296,0,1,0,4,0,0,329,346,52,46,275,292,0,0,0,3,0,0,2,5,54,50,277,296,0,1,0,4,0,0,2,7,2,7,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,4,1065,518,547,127,167,376,374,0,0,9,1,0,0,6,5,133,172,380,379,1,0,10,1,0,0,512,540,123,163,375,371,0,0,9,1,0,0,5,5,128,168,379,376,1,0,9,1,0,0,6,7,4,4,1,3,0,0,0,0,0,0,1,0,5,4,1,3,0,0,1,0,0,0 -050,01,119,Alabama,Sumter County,10,5,1874,844,1030,281,306,532,657,0,6,28,54,0,1,3,6,284,312,534,661,0,7,29,55,0,1,834,1017,272,303,531,648,0,6,28,54,0,0,3,6,275,309,533,652,0,7,29,55,0,0,10,13,9,3,1,9,0,0,0,0,0,1,0,0,9,3,1,9,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,10,6,764,365,399,102,98,258,278,1,1,0,21,0,1,4,0,106,98,260,278,2,1,1,21,0,1,361,394,99,95,257,276,1,1,0,21,0,1,4,0,103,95,259,276,2,1,1,21,0,1,4,5,3,3,1,2,0,0,0,0,0,0,0,0,3,3,1,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,7,518,254,264,83,54,168,205,0,0,2,2,0,0,1,3,84,56,168,206,0,2,3,2,0,1,241,262,74,53,164,205,0,0,2,2,0,0,1,2,75,54,164,206,0,1,3,2,0,1,13,2,9,1,4,0,0,0,0,0,0,0,0,1,9,2,4,0,0,1,0,0,0,0 -050,01,119,Alabama,Sumter County,10,8,531,226,305,49,54,157,243,0,0,19,8,0,0,1,0,50,54,158,243,0,0,19,8,0,0,226,302,49,51,157,243,0,0,19,8,0,0,1,0,50,51,158,243,0,0,19,8,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,9,560,237,323,44,48,191,272,0,0,1,2,0,0,1,1,45,49,191,272,0,1,2,2,0,0,236,318,44,44,190,271,0,0,1,2,0,0,1,1,45,45,190,271,0,1,2,2,0,0,1,5,0,4,1,1,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,10,676,309,367,84,72,221,291,0,1,2,3,1,0,1,0,85,72,222,291,0,1,2,3,1,0,304,366,82,72,219,290,0,1,2,3,0,0,1,0,83,72,220,290,0,1,2,3,0,0,5,1,2,0,2,1,0,0,0,0,1,0,0,0,2,0,2,1,0,0,0,0,1,0 -050,01,119,Alabama,Sumter County,10,11,676,301,375,66,68,232,302,0,1,0,0,0,0,3,4,68,71,233,304,3,3,0,1,0,1,297,371,63,68,231,298,0,1,0,0,0,0,3,4,65,71,232,300,3,3,0,1,0,1,4,4,3,0,1,4,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,12,875,390,485,89,85,296,394,2,2,1,2,0,0,2,2,91,87,297,394,3,2,1,4,0,0,385,482,85,84,296,393,2,2,1,2,0,0,1,1,86,85,296,393,3,2,1,3,0,0,5,3,4,1,0,1,0,0,0,0,0,0,1,1,5,2,1,1,0,0,0,1,0,0 -050,01,119,Alabama,Sumter County,10,13,961,462,499,125,121,331,374,0,0,2,2,0,0,4,2,127,122,334,375,3,1,2,3,0,1,456,498,122,120,328,374,0,0,2,2,0,0,4,2,124,121,331,375,3,1,2,3,0,1,6,1,3,1,3,0,0,0,0,0,0,0,0,0,3,1,3,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,14,729,341,388,101,103,239,282,0,0,0,2,0,0,1,1,102,104,239,282,1,0,0,3,0,0,339,387,101,103,237,281,0,0,0,2,0,0,1,1,102,104,237,281,1,0,0,3,0,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,15,488,214,274,73,101,141,170,0,1,0,2,0,0,0,0,73,101,141,170,0,1,0,2,0,0,214,274,73,101,141,170,0,1,0,2,0,0,0,0,73,101,141,170,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,16,391,150,241,60,77,90,162,0,0,0,0,0,0,0,2,60,79,90,162,0,2,0,0,0,0,149,240,60,77,89,161,0,0,0,0,0,0,0,2,60,79,89,161,0,2,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,10,17,263,102,161,40,67,62,92,0,0,0,1,0,0,0,1,40,68,62,92,0,0,0,2,0,1,101,159,40,67,61,91,0,0,0,1,0,0,0,0,40,67,61,91,0,0,0,1,0,0,1,2,0,0,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,1 -050,01,119,Alabama,Sumter County,10,18,345,84,261,39,113,44,146,0,0,1,0,0,0,0,2,39,115,44,147,0,1,1,0,0,0,83,259,38,112,44,145,0,0,1,0,0,0,0,2,38,114,44,146,0,1,1,0,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,0,12661,5763,6898,1531,1702,4106,5000,3,15,78,124,2,2,43,55,1569,1750,4129,5032,16,36,88,133,5,4,5686,6828,1480,1663,4084,4976,3,14,78,122,0,1,41,52,1516,1709,4107,5007,15,33,87,130,3,3,77,70,51,39,22,24,0,1,0,2,2,1,2,3,53,41,22,25,1,3,1,3,2,1 -050,01,119,Alabama,Sumter County,11,1,744,376,368,78,74,287,269,0,1,3,10,0,0,8,14,85,86,295,280,2,5,3,12,0,0,371,362,75,70,285,269,0,1,3,8,0,0,8,14,82,82,293,280,2,5,3,10,0,0,5,6,3,4,2,0,0,0,0,2,0,0,0,0,3,4,2,0,0,0,0,2,0,0 -050,01,119,Alabama,Sumter County,11,2,613,306,307,64,53,234,244,0,1,2,2,1,0,5,7,68,60,237,249,1,2,4,3,1,0,300,304,60,51,233,244,0,0,2,2,0,0,5,7,64,58,236,249,1,1,4,3,0,0,6,3,4,2,1,0,0,1,0,0,1,0,0,0,4,2,1,0,0,1,0,0,1,0 -050,01,119,Alabama,Sumter County,11,3,665,323,342,52,54,267,281,0,0,2,3,0,0,2,4,54,58,268,284,0,1,2,3,1,0,320,334,50,46,266,281,0,0,2,3,0,0,2,4,52,50,267,284,0,1,2,3,1,0,3,8,2,8,1,0,0,0,0,0,0,0,0,0,2,8,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,4,1040,495,545,130,167,351,371,0,0,8,2,0,0,6,5,136,171,354,374,2,0,9,4,0,1,490,537,126,162,351,368,0,0,8,2,0,0,5,5,131,166,354,371,1,0,9,4,0,1,5,8,4,5,0,3,0,0,0,0,0,0,1,0,5,5,0,3,1,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,5,1781,802,979,270,305,500,615,0,5,28,47,0,1,4,6,274,311,503,618,0,7,28,48,1,1,789,966,259,301,498,607,0,5,28,47,0,0,4,6,263,307,501,610,0,7,28,48,1,0,13,13,11,4,2,8,0,0,0,0,0,1,0,0,11,4,2,8,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,11,6,856,414,442,108,96,299,307,1,2,2,35,0,1,4,1,111,96,301,308,3,3,3,35,0,1,410,437,105,93,298,305,1,2,2,35,0,1,4,1,108,93,300,306,3,3,3,35,0,1,4,5,3,3,1,2,0,0,0,0,0,0,0,0,3,3,1,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,7,525,257,268,85,66,169,196,0,0,2,3,0,0,1,3,86,68,170,198,0,2,2,4,0,0,246,264,78,63,165,196,0,0,2,3,0,0,1,2,79,65,166,198,0,1,2,3,0,0,11,4,7,3,4,0,0,0,0,0,0,0,0,1,7,3,4,0,0,1,0,1,0,0 -050,01,119,Alabama,Sumter County,11,8,513,229,284,51,46,158,230,0,0,19,8,0,0,1,0,52,46,159,230,0,0,19,8,0,0,227,281,49,43,158,230,0,0,19,8,0,0,1,0,50,43,159,230,0,0,19,8,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,9,539,228,311,42,47,179,260,0,1,6,2,0,0,1,1,43,48,179,260,1,2,6,2,0,0,227,308,42,45,178,259,0,1,6,2,0,0,1,1,43,46,178,259,1,2,6,2,0,0,1,3,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,10,653,294,359,78,69,213,287,0,1,2,2,1,0,0,0,78,69,213,287,0,1,2,2,1,0,287,356,74,67,211,286,0,1,2,2,0,0,0,0,74,67,211,286,0,1,2,2,0,0,7,3,4,2,2,1,0,0,0,0,1,0,0,0,4,2,2,1,0,0,0,0,1,0 -050,01,119,Alabama,Sumter County,11,11,657,288,369,60,63,224,303,0,1,0,0,0,0,4,2,63,65,224,303,3,2,1,1,1,0,284,366,57,63,223,300,0,1,0,0,0,0,4,2,60,65,223,300,3,2,1,1,1,0,4,3,3,0,1,3,0,0,0,0,0,0,0,0,3,0,1,3,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,12,876,396,480,97,89,294,383,2,2,1,2,0,0,2,4,99,91,294,385,2,4,3,3,0,1,391,477,93,88,294,382,2,2,1,2,0,0,1,3,94,89,294,383,2,4,2,3,0,1,5,3,4,1,0,1,0,0,0,0,0,0,1,1,5,2,0,2,0,0,1,0,0,0 -050,01,119,Alabama,Sumter County,11,13,908,423,485,110,108,308,373,0,0,2,2,0,0,3,2,112,110,309,373,1,2,4,2,0,0,417,483,107,107,305,372,0,0,2,2,0,0,3,2,109,109,306,372,1,2,4,2,0,0,6,2,3,1,3,1,0,0,0,0,0,0,0,0,3,1,3,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,14,776,373,403,101,96,270,304,0,0,0,2,0,0,2,1,103,97,270,304,1,1,1,2,0,0,372,403,101,96,269,304,0,0,0,2,0,0,2,1,103,97,269,304,1,1,1,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,15,503,224,279,72,103,152,174,0,0,0,2,0,0,0,0,72,103,152,174,0,0,0,2,0,0,223,278,72,103,151,173,0,0,0,2,0,0,0,0,72,103,151,173,0,0,0,2,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,16,404,152,252,55,78,97,170,0,1,0,1,0,0,0,2,55,80,97,170,0,3,0,1,0,0,151,251,55,78,96,169,0,1,0,1,0,0,0,2,55,80,96,169,0,3,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,17,283,108,175,44,75,64,99,0,0,0,1,0,0,0,0,44,75,64,99,0,0,0,1,0,0,107,175,44,75,63,99,0,0,0,1,0,0,0,0,44,75,63,99,0,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,11,18,325,75,250,34,113,40,134,0,0,1,0,0,0,0,3,34,116,40,136,0,1,1,0,0,0,74,246,33,112,40,132,0,0,1,0,0,0,0,2,33,114,40,134,0,0,1,0,0,0,1,4,1,1,0,2,0,0,0,0,0,0,0,1,1,2,0,2,0,1,0,0,0,0 -050,01,119,Alabama,Sumter County,12,0,12358,5647,6711,1513,1675,4003,4827,6,15,79,126,2,2,44,66,1554,1734,4029,4869,20,39,88,136,3,4,5568,6638,1462,1636,3979,4802,6,14,79,124,0,1,42,61,1501,1691,4005,4842,18,33,88,133,1,2,79,73,51,39,24,25,0,1,0,2,2,1,2,5,53,43,24,27,2,6,0,3,2,2 -050,01,119,Alabama,Sumter County,12,1,718,355,363,76,82,266,254,0,1,4,8,0,0,9,18,85,100,273,268,0,4,6,9,0,0,350,356,72,77,265,254,0,1,4,6,0,0,9,18,81,95,272,268,0,4,6,7,0,0,5,7,4,5,1,0,0,0,0,2,0,0,0,0,4,5,1,0,0,0,0,2,0,0 -050,01,119,Alabama,Sumter County,12,2,617,328,289,84,48,236,227,0,1,2,4,0,0,6,9,90,55,241,235,2,4,3,5,0,0,322,284,79,45,235,227,0,0,2,4,0,0,6,8,85,51,240,235,2,2,3,5,0,0,6,5,5,3,1,0,0,1,0,0,0,0,0,1,5,4,1,0,0,2,0,0,0,0 -050,01,119,Alabama,Sumter County,12,3,646,304,342,55,64,244,267,0,0,3,4,1,0,1,7,56,71,245,271,0,2,3,5,1,0,300,337,54,60,242,267,0,0,3,4,0,0,1,6,55,66,243,271,0,1,3,5,0,0,4,5,1,4,2,0,0,0,0,0,1,0,0,1,1,5,2,0,0,1,0,0,1,0 -050,01,119,Alabama,Sumter County,12,4,961,470,491,116,144,340,341,0,0,8,2,0,0,6,4,122,148,344,344,2,0,8,3,1,0,463,481,110,137,340,338,0,0,8,2,0,0,5,4,115,141,344,341,1,0,8,3,1,0,7,10,6,7,0,3,0,0,0,0,0,0,1,0,7,7,0,3,1,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,5,1643,734,909,245,288,467,577,0,5,20,32,0,1,2,6,247,293,469,580,0,9,20,33,0,1,725,895,238,284,465,568,0,5,20,32,0,0,2,6,240,289,467,571,0,9,20,33,0,0,9,14,7,4,2,9,0,0,0,0,0,1,0,0,7,4,2,9,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,12,6,871,421,450,109,87,293,309,2,2,11,50,0,0,6,2,113,89,296,310,5,2,13,51,0,0,417,445,106,84,292,307,2,2,11,50,0,0,6,2,110,86,295,308,5,2,13,51,0,0,4,5,3,3,1,2,0,0,0,0,0,0,0,0,3,3,1,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,7,544,273,271,81,73,188,190,2,0,2,4,0,1,0,3,81,76,188,191,2,2,2,5,0,1,262,267,73,70,185,190,2,0,2,4,0,1,0,2,73,72,185,190,2,1,2,5,0,1,11,4,8,3,3,0,0,0,0,0,0,0,0,1,8,4,3,1,0,1,0,0,0,0 -050,01,119,Alabama,Sumter County,12,8,511,234,277,59,52,156,219,0,0,17,5,0,0,2,1,61,53,157,220,0,0,18,5,0,0,231,274,57,49,155,219,0,0,17,5,0,0,2,1,59,50,156,220,0,0,18,5,0,0,3,3,2,3,1,0,0,0,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,9,518,216,302,44,51,166,247,0,0,5,4,0,0,1,0,45,51,166,247,0,0,6,4,0,0,216,299,44,49,166,246,0,0,5,4,0,0,1,0,45,49,166,246,0,0,6,4,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,10,651,294,357,67,60,224,291,0,2,2,3,1,0,0,1,67,61,224,292,0,2,2,3,1,0,284,355,63,58,219,291,0,2,2,3,0,0,0,1,63,59,219,292,0,2,2,3,0,0,10,2,4,2,5,0,0,0,0,0,1,0,0,0,4,2,5,0,0,0,0,0,1,0 -050,01,119,Alabama,Sumter County,12,11,611,275,336,63,67,209,266,0,1,0,0,0,0,3,2,65,68,211,267,2,1,0,1,0,1,273,333,62,67,208,263,0,1,0,0,0,0,3,2,64,68,210,264,2,1,0,1,0,1,2,3,1,0,1,3,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,12,848,375,473,88,86,282,381,1,1,2,1,0,0,2,4,90,89,283,382,2,4,2,2,0,0,370,469,84,85,282,379,1,1,2,1,0,0,1,3,85,87,283,380,1,3,2,2,0,0,5,4,4,1,0,2,0,0,0,0,0,0,1,1,5,2,0,2,1,1,0,0,0,0 -050,01,119,Alabama,Sumter County,12,13,850,387,463,101,102,281,357,1,1,1,2,0,0,3,1,104,103,281,358,3,1,2,2,0,0,381,461,97,101,279,356,1,1,1,2,0,0,3,1,100,102,279,357,3,1,2,2,0,0,6,2,4,1,2,1,0,0,0,0,0,0,0,0,4,1,2,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,14,791,387,404,115,94,268,306,0,0,1,2,0,0,3,2,118,96,268,306,2,2,2,2,0,0,384,404,114,94,266,306,0,0,1,2,0,0,3,2,117,96,266,306,2,2,2,2,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,15,536,242,294,71,103,171,190,0,0,0,1,0,0,0,0,71,103,171,190,0,0,0,1,0,0,241,293,71,103,170,189,0,0,0,1,0,0,0,0,71,103,170,189,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,16,404,151,253,57,84,94,163,0,1,0,3,0,0,0,2,57,86,94,163,0,3,0,3,0,0,150,253,57,84,93,163,0,1,0,3,0,0,0,2,57,86,93,163,0,3,0,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,17,297,124,173,45,72,79,100,0,0,0,0,0,0,0,1,45,73,79,100,0,1,0,0,0,0,123,172,45,72,78,99,0,0,0,0,0,0,0,1,45,73,78,99,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,12,18,341,77,264,37,118,39,142,0,0,1,1,0,0,0,3,37,119,39,145,0,2,1,2,0,1,76,260,36,117,39,140,0,0,1,1,0,0,0,2,36,118,39,142,0,1,1,1,0,0,1,4,1,1,0,2,0,0,0,0,0,0,0,1,1,1,0,3,0,1,0,1,0,1 -050,01,119,Alabama,Sumter County,13,0,12225,5588,6637,1515,1691,3934,4729,6,16,83,131,2,2,48,68,1560,1750,3965,4772,20,42,88,138,5,7,5504,6557,1461,1645,3908,4702,6,15,83,129,0,1,46,65,1504,1701,3938,4744,20,39,87,136,3,6,84,80,54,46,26,27,0,1,0,2,2,1,2,3,56,49,27,28,0,3,1,2,2,1 -050,01,119,Alabama,Sumter County,13,1,701,339,362,73,80,251,254,0,1,8,9,0,0,7,18,80,97,256,266,3,6,8,13,0,1,335,352,70,72,250,254,0,1,8,7,0,0,7,18,77,89,255,266,3,6,8,11,0,1,4,10,3,8,1,0,0,0,0,2,0,0,0,0,3,8,1,0,0,0,0,2,0,0 -050,01,119,Alabama,Sumter County,13,2,657,346,311,88,61,249,229,0,1,1,8,0,0,8,12,96,71,256,239,1,4,1,9,0,0,340,302,83,55,248,227,0,0,1,8,0,0,8,12,91,65,255,237,1,3,1,9,0,0,6,9,5,6,1,2,0,1,0,0,0,0,0,0,5,6,1,2,0,1,0,0,0,0 -050,01,119,Alabama,Sumter County,13,3,614,294,320,55,61,232,251,0,0,3,4,1,0,3,4,58,64,234,255,1,1,3,4,1,0,289,318,53,59,230,251,0,0,3,4,0,0,3,4,56,62,232,255,1,1,3,4,0,0,5,2,2,2,2,0,0,0,0,0,1,0,0,0,2,2,2,0,0,0,0,0,1,0 -050,01,119,Alabama,Sumter County,13,4,909,438,471,116,139,308,323,0,1,7,2,0,0,7,6,122,145,313,327,1,2,9,3,1,0,432,458,111,129,308,320,0,1,7,2,0,0,6,6,116,135,313,324,1,2,8,3,1,0,6,13,5,10,0,3,0,0,0,0,0,0,1,0,6,10,0,3,0,0,1,0,0,0 -050,01,119,Alabama,Sumter County,13,5,1590,706,884,235,302,457,556,0,5,12,15,0,1,2,5,237,307,459,559,0,7,12,16,0,1,696,870,227,298,455,547,0,5,12,15,0,0,2,5,229,303,457,550,0,7,12,16,0,0,10,14,8,4,2,9,0,0,0,0,0,1,0,0,8,4,2,9,0,0,0,0,0,1 -050,01,119,Alabama,Sumter County,13,6,878,434,444,116,85,291,295,2,2,21,59,0,0,4,3,119,88,293,297,4,2,21,59,1,1,429,440,113,83,289,293,2,2,21,59,0,0,4,3,116,86,291,295,4,2,21,59,1,1,5,4,3,2,2,2,0,0,0,0,0,0,0,0,3,2,2,2,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,7,560,280,280,82,75,192,193,2,0,2,10,0,1,2,1,84,76,193,193,2,1,3,10,0,1,268,277,74,73,188,193,2,0,2,10,0,1,2,0,76,73,189,193,2,0,3,10,0,1,12,3,8,2,4,0,0,0,0,0,0,0,0,1,8,3,4,0,0,1,0,0,0,0 -050,01,119,Alabama,Sumter County,13,8,520,248,272,66,57,168,207,0,0,11,5,0,0,3,3,68,59,170,207,1,3,12,5,0,1,244,267,63,52,167,207,0,0,11,5,0,0,3,3,65,54,169,207,1,3,12,5,0,1,4,5,3,5,1,0,0,0,0,0,0,0,0,0,3,5,1,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,9,512,210,302,43,56,157,241,0,0,10,5,0,0,0,0,43,56,157,241,0,0,10,5,0,0,210,299,43,54,157,240,0,0,10,5,0,0,0,0,43,54,157,240,0,0,10,5,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,10,617,275,342,61,54,211,284,0,1,1,2,1,0,1,1,62,54,211,285,1,2,1,2,1,0,265,340,56,52,207,284,0,1,1,2,0,0,1,1,57,52,207,285,1,2,1,2,0,0,10,2,5,2,4,0,0,0,0,0,1,0,0,0,5,2,4,0,0,0,0,0,1,0 -050,01,119,Alabama,Sumter County,13,11,626,284,342,70,69,210,268,0,2,1,1,0,0,3,2,73,70,211,270,1,3,2,1,0,0,282,339,69,69,209,265,0,2,1,1,0,0,3,2,72,70,210,267,1,3,2,1,0,0,2,3,1,0,1,3,0,0,0,0,0,0,0,0,1,0,1,3,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,12,775,347,428,80,77,262,345,1,1,2,1,0,0,2,4,82,81,264,345,1,4,2,1,0,1,341,425,76,77,261,343,1,1,2,1,0,0,1,3,77,80,262,343,1,3,2,1,0,1,6,3,4,0,1,2,0,0,0,0,0,0,1,1,5,1,2,2,0,1,0,0,0,0 -050,01,119,Alabama,Sumter County,13,13,840,368,472,91,104,272,364,1,1,1,2,0,0,3,1,94,105,272,365,3,1,1,2,1,0,362,469,87,102,270,363,1,1,1,2,0,0,3,1,90,103,270,364,3,1,1,2,1,0,6,3,4,2,2,1,0,0,0,0,0,0,0,0,4,2,2,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,14,808,399,409,118,102,277,302,0,0,1,3,0,0,3,2,121,104,279,302,1,1,1,3,0,1,395,409,116,102,275,302,0,0,1,3,0,0,3,2,119,104,277,302,1,1,1,3,0,1,4,0,2,0,2,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,15,565,262,303,78,92,184,210,0,0,0,1,0,0,0,0,78,92,184,210,0,0,0,1,0,0,261,302,78,92,183,209,0,0,0,1,0,0,0,0,78,92,183,209,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,16,392,147,245,56,85,90,154,0,1,1,3,0,0,0,2,56,85,90,156,0,3,1,3,0,0,147,245,56,85,90,154,0,1,1,3,0,0,0,2,56,85,90,156,0,3,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,17,304,121,183,47,71,74,111,0,0,0,0,0,0,0,1,47,72,74,111,0,1,0,0,0,0,119,182,47,71,72,110,0,0,0,0,0,0,0,1,47,72,72,110,0,1,0,0,0,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0 -050,01,119,Alabama,Sumter County,13,18,357,90,267,40,121,49,142,0,0,1,1,0,0,0,3,40,124,49,144,0,1,1,1,0,0,89,263,39,120,49,140,0,0,1,1,0,0,0,2,39,122,49,141,0,1,1,1,0,0,1,4,1,1,0,2,0,0,0,0,0,0,0,1,1,2,0,3,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,1,0,82291,40077,42214,26777,27680,12463,13708,162,128,168,181,3,3,504,514,27228,28143,12722,13986,385,349,240,248,37,35,39008,41612,25916,27211,12352,13640,118,112,159,173,3,3,460,473,26329,27637,12603,13911,314,314,219,225,26,21,1069,602,861,469,111,68,44,16,9,8,0,0,44,41,899,506,119,75,71,35,21,23,11,14 -050,01,121,Alabama,Talladega County,1,1,4941,2438,2503,1516,1511,828,897,7,6,11,4,0,0,76,85,1587,1590,885,967,18,23,21,7,6,2,2349,2406,1452,1432,812,889,4,3,10,3,0,0,71,79,1519,1506,868,957,12,16,20,6,4,1,89,97,64,79,16,8,3,3,1,1,0,0,5,6,68,84,17,10,6,7,1,1,2,1 -050,01,121,Alabama,Talladega County,1,2,5199,2584,2615,1588,1619,903,914,6,2,12,20,0,0,75,60,1661,1678,961,960,21,14,19,24,2,2,2512,2550,1532,1561,894,911,5,2,11,20,0,0,70,56,1600,1617,951,955,17,12,17,24,1,1,72,65,56,58,9,3,1,0,1,0,0,0,5,4,61,61,10,5,4,2,2,0,1,1 -050,01,121,Alabama,Talladega County,1,3,5645,2831,2814,1678,1645,1058,1080,14,8,9,10,0,0,72,71,1748,1712,1106,1133,31,20,16,21,4,2,2781,2765,1640,1603,1054,1077,12,7,8,10,0,0,67,68,1705,1667,1100,1130,27,18,14,19,4,2,50,49,38,42,4,3,2,1,1,0,0,0,5,3,43,45,6,3,4,2,2,2,0,0 -050,01,121,Alabama,Talladega County,1,4,5747,2927,2820,1754,1626,1107,1131,6,15,14,5,1,0,45,43,1794,1662,1133,1159,23,30,19,11,5,2,2876,2783,1709,1597,1104,1126,5,15,14,5,1,0,43,40,1748,1630,1130,1153,21,29,18,10,3,1,51,37,45,29,3,5,1,0,0,0,0,0,2,3,46,32,3,6,2,1,1,1,2,1 -050,01,121,Alabama,Talladega County,1,5,4857,2328,2529,1403,1457,872,1027,15,7,8,12,0,0,30,26,1426,1481,888,1042,34,15,14,17,2,4,2209,2481,1308,1424,861,1018,8,3,7,12,0,0,25,24,1328,1446,877,1033,23,10,10,15,0,3,119,48,95,33,11,9,7,4,1,0,0,0,5,2,98,35,11,9,11,5,4,2,2,1 -050,01,121,Alabama,Talladega County,1,6,4867,2381,2486,1525,1541,814,906,11,0,15,12,0,0,16,27,1538,1564,822,918,23,12,16,17,0,3,2262,2414,1431,1487,803,897,5,0,13,11,0,0,10,19,1438,1503,808,907,12,7,14,16,0,1,119,72,94,54,11,9,6,0,2,1,0,0,6,8,100,61,14,11,11,5,2,1,0,2 -050,01,121,Alabama,Talladega County,1,7,5113,2622,2491,1619,1541,943,897,15,12,12,21,0,0,33,20,1648,1558,953,910,30,23,21,22,4,0,2455,2445,1482,1503,931,896,5,10,11,17,0,0,26,19,1505,1519,940,909,16,20,18,18,2,0,167,46,137,38,12,1,10,2,1,4,0,0,7,1,143,39,13,1,14,3,3,4,2,0 -050,01,121,Alabama,Talladega County,1,8,5613,2813,2800,1804,1745,942,999,18,13,17,12,1,1,31,30,1830,1769,951,1006,34,34,26,17,5,4,2708,2760,1715,1713,935,996,15,10,16,12,1,1,26,28,1737,1736,944,1003,29,30,22,16,4,3,105,40,89,32,7,3,3,3,1,0,0,0,5,2,93,33,7,3,5,4,4,1,1,1 -050,01,121,Alabama,Talladega County,1,9,5623,2844,2779,1901,1784,894,952,15,7,12,20,1,0,21,16,1919,1797,899,958,32,18,14,24,4,0,2766,2743,1836,1760,885,944,12,7,12,20,1,0,20,12,1853,1769,890,950,28,15,14,23,4,0,78,36,65,24,9,8,3,0,0,0,0,0,1,4,66,28,9,8,4,3,0,1,0,0 -050,01,121,Alabama,Talladega County,1,10,5973,3026,2947,2072,1944,898,952,11,12,19,15,0,0,26,24,2088,1966,908,956,31,28,24,20,1,5,2948,2917,2004,1920,891,950,8,11,19,15,0,0,26,21,2020,1939,901,954,28,27,24,17,1,3,78,30,68,24,7,2,3,1,0,0,0,0,0,3,68,27,7,2,3,1,0,3,0,2 -050,01,121,Alabama,Talladega County,1,11,6261,3060,3201,2112,2136,897,1001,17,22,15,13,0,1,19,28,2131,2163,898,1004,34,45,17,17,0,3,3009,3179,2073,2120,889,999,14,20,15,13,0,1,18,26,2091,2145,890,1002,30,43,17,15,0,1,51,22,39,16,8,2,3,2,0,0,0,0,1,2,40,18,8,2,4,2,0,2,0,2 -050,01,121,Alabama,Talladega County,1,12,5704,2784,2920,1967,2027,782,851,9,12,8,12,0,0,18,18,1983,2042,784,855,24,26,11,15,0,0,2744,2906,1937,2016,773,848,8,12,8,12,0,0,18,18,1953,2031,775,852,23,26,11,15,0,0,40,14,30,11,9,3,1,0,0,0,0,0,0,0,30,11,9,3,1,0,0,0,0,0 -050,01,121,Alabama,Talladega County,1,13,5157,2498,2659,1864,1927,608,687,4,5,6,14,0,0,16,26,1878,1948,612,695,17,27,6,16,1,1,2476,2652,1847,1922,603,685,4,5,6,14,0,0,16,26,1861,1943,607,693,17,27,6,16,1,1,22,7,17,5,5,2,0,0,0,0,0,0,0,0,17,5,5,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,1,14,3817,1813,2004,1424,1548,365,433,8,4,6,5,0,0,10,14,1432,1561,367,435,16,13,8,9,0,2,1803,1996,1414,1542,365,431,8,4,6,5,0,0,10,14,1422,1555,367,433,16,13,8,9,0,2,10,8,10,6,0,2,0,0,0,0,0,0,0,0,10,6,0,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,1,15,2917,1326,1591,1049,1207,265,368,4,1,3,4,0,0,5,11,1054,1216,267,371,7,10,3,5,0,1,1320,1575,1046,1197,265,363,3,1,2,3,0,0,4,11,1050,1206,267,366,5,10,2,4,0,1,6,16,3,10,0,5,1,0,1,1,0,0,1,0,4,10,0,5,2,0,1,1,0,0 -050,01,121,Alabama,Talladega County,1,16,2154,886,1268,730,1000,152,256,0,1,1,1,0,1,3,9,733,1008,152,259,3,7,1,3,0,2,881,1264,725,999,152,255,0,1,1,0,0,1,3,8,728,1006,152,258,3,7,1,1,0,1,5,4,5,1,0,1,0,0,0,1,0,0,0,1,5,2,0,1,0,0,0,2,0,1 -050,01,121,Alabama,Talladega County,1,17,1505,563,942,481,755,76,182,2,1,0,0,0,0,4,4,484,759,77,183,5,2,2,2,1,2,559,938,477,754,76,181,2,1,0,0,0,0,4,2,480,756,77,182,5,2,2,0,1,0,4,4,4,1,0,1,0,0,0,0,0,0,0,2,4,3,0,1,0,0,0,2,0,2 -050,01,121,Alabama,Talladega County,1,18,1198,353,845,290,667,59,175,0,0,0,1,0,0,4,2,294,669,59,175,2,2,2,1,2,0,350,838,288,661,59,174,0,0,0,1,0,0,3,2,291,663,59,174,2,2,1,1,1,0,3,7,2,6,0,1,0,0,0,0,0,0,1,0,3,6,0,1,0,0,1,0,1,0 -050,01,121,Alabama,Talladega County,2,0,82348,40109,42239,26805,27702,12464,13709,163,128,168,181,3,3,506,516,27258,28167,12725,13987,386,351,240,248,37,35,39040,41637,25944,27233,12353,13641,119,112,159,173,3,3,462,475,26359,27661,12606,13912,315,316,219,225,26,21,1069,602,861,469,111,68,44,16,9,8,0,0,44,41,899,506,119,75,71,35,21,23,11,14 -050,01,121,Alabama,Talladega County,2,1,4944,2438,2506,1516,1514,828,897,7,6,11,4,0,0,76,85,1587,1593,885,967,18,23,21,7,6,2,2349,2409,1452,1435,812,889,4,3,10,3,0,0,71,79,1519,1509,868,957,12,16,20,6,4,1,89,97,64,79,16,8,3,3,1,1,0,0,5,6,68,84,17,10,6,7,1,1,2,1 -050,01,121,Alabama,Talladega County,2,2,5198,2584,2614,1588,1618,903,914,6,2,12,20,0,0,75,60,1661,1677,961,960,21,14,19,24,2,2,2512,2549,1532,1560,894,911,5,2,11,20,0,0,70,56,1600,1616,951,955,17,12,17,24,1,1,72,65,56,58,9,3,1,0,1,0,0,0,5,4,61,61,10,5,4,2,2,0,1,1 -050,01,121,Alabama,Talladega County,2,3,5647,2835,2812,1680,1643,1058,1080,14,8,9,10,0,0,74,71,1752,1710,1108,1133,31,20,16,21,4,2,2785,2763,1642,1601,1054,1077,12,7,8,10,0,0,69,68,1709,1665,1102,1130,27,18,14,19,4,2,50,49,38,42,4,3,2,1,1,0,0,0,5,3,43,45,6,3,4,2,2,2,0,0 -050,01,121,Alabama,Talladega County,2,4,5749,2928,2821,1755,1627,1107,1131,6,15,14,5,1,0,45,43,1795,1663,1133,1159,23,30,19,11,5,2,2877,2784,1710,1598,1104,1126,5,15,14,5,1,0,43,40,1749,1631,1130,1153,21,29,18,10,3,1,51,37,45,29,3,5,1,0,0,0,0,0,2,3,46,32,3,6,2,1,1,1,2,1 -050,01,121,Alabama,Talladega County,2,5,4864,2333,2531,1408,1458,872,1028,15,7,8,12,0,0,30,26,1431,1482,888,1043,34,15,14,17,2,4,2214,2483,1313,1425,861,1019,8,3,7,12,0,0,25,24,1333,1447,877,1034,23,10,10,15,0,3,119,48,95,33,11,9,7,4,1,0,0,0,5,2,98,35,11,9,11,5,4,2,2,1 -050,01,121,Alabama,Talladega County,2,6,4870,2383,2487,1527,1542,814,906,11,0,15,12,0,0,16,27,1540,1565,822,918,23,12,16,17,0,3,2264,2415,1433,1488,803,897,5,0,13,11,0,0,10,19,1440,1504,808,907,12,7,14,16,0,1,119,72,94,54,11,9,6,0,2,1,0,0,6,8,100,61,14,11,11,5,2,1,0,2 -050,01,121,Alabama,Talladega County,2,7,5116,2624,2492,1621,1542,943,897,15,12,12,21,0,0,33,20,1650,1559,953,910,30,23,21,22,4,0,2457,2446,1484,1504,931,896,5,10,11,17,0,0,26,19,1507,1520,940,909,16,20,18,18,2,0,167,46,137,38,12,1,10,2,1,4,0,0,7,1,143,39,13,1,14,3,3,4,2,0 -050,01,121,Alabama,Talladega County,2,8,5616,2813,2803,1804,1747,942,999,18,13,17,12,1,1,31,31,1830,1772,951,1006,34,35,26,17,5,4,2708,2763,1715,1715,935,996,15,10,16,12,1,1,26,29,1737,1739,944,1003,29,31,22,16,4,3,105,40,89,32,7,3,3,3,1,0,0,0,5,2,93,33,7,3,5,4,4,1,1,1 -050,01,121,Alabama,Talladega County,2,9,5622,2841,2781,1899,1786,893,952,15,7,12,20,1,0,21,16,1917,1799,898,958,32,18,14,24,4,0,2763,2745,1834,1762,884,944,12,7,12,20,1,0,20,12,1851,1771,889,950,28,15,14,23,4,0,78,36,65,24,9,8,3,0,0,0,0,0,1,4,66,28,9,8,4,3,0,1,0,0 -050,01,121,Alabama,Talladega County,2,10,5976,3029,2947,2074,1944,898,952,12,12,19,15,0,0,26,24,2090,1966,908,956,32,28,24,20,1,5,2951,2917,2006,1920,891,950,9,11,19,15,0,0,26,21,2022,1939,901,954,29,27,24,17,1,3,78,30,68,24,7,2,3,1,0,0,0,0,0,3,68,27,7,2,3,1,0,3,0,2 -050,01,121,Alabama,Talladega County,2,11,6270,3063,3207,2115,2141,897,1001,17,22,15,13,0,1,19,29,2134,2169,898,1004,34,46,17,17,0,3,3012,3185,2076,2125,889,999,14,20,15,13,0,1,18,27,2094,2151,890,1002,30,44,17,15,0,1,51,22,39,16,8,2,3,2,0,0,0,0,1,2,40,18,8,2,4,2,0,2,0,2 -050,01,121,Alabama,Talladega County,2,12,5717,2792,2925,1973,2032,784,851,9,12,8,12,0,0,18,18,1989,2047,786,855,24,26,11,15,0,0,2752,2911,1943,2021,775,848,8,12,8,12,0,0,18,18,1959,2036,777,852,23,26,11,15,0,0,40,14,30,11,9,3,1,0,0,0,0,0,0,0,30,11,9,3,1,0,0,0,0,0 -050,01,121,Alabama,Talladega County,2,13,5165,2503,2662,1869,1930,608,687,4,5,6,14,0,0,16,26,1883,1951,612,695,17,27,6,16,1,1,2481,2655,1852,1925,603,685,4,5,6,14,0,0,16,26,1866,1946,607,693,17,27,6,16,1,1,22,7,17,5,5,2,0,0,0,0,0,0,0,0,17,5,5,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,2,14,3819,1814,2005,1425,1549,365,433,8,4,6,5,0,0,10,14,1433,1562,367,435,16,13,8,9,0,2,1804,1997,1415,1543,365,431,8,4,6,5,0,0,10,14,1423,1556,367,433,16,13,8,9,0,2,10,8,10,6,0,2,0,0,0,0,0,0,0,0,10,6,0,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,2,15,2916,1327,1589,1050,1205,265,368,4,1,3,4,0,0,5,11,1055,1214,267,371,7,10,3,5,0,1,1321,1573,1047,1195,265,363,3,1,2,3,0,0,4,11,1051,1204,267,366,5,10,2,4,0,1,6,16,3,10,0,5,1,0,1,1,0,0,1,0,4,10,0,5,2,0,1,1,0,0 -050,01,121,Alabama,Talladega County,2,16,2154,885,1269,729,1001,152,256,0,1,1,1,0,1,3,9,732,1009,152,259,3,7,1,3,0,2,880,1265,724,1000,152,255,0,1,1,0,0,1,3,8,727,1007,152,258,3,7,1,1,0,1,5,4,5,1,0,1,0,0,0,1,0,0,0,1,5,2,0,1,0,0,0,2,0,1 -050,01,121,Alabama,Talladega County,2,17,1505,563,942,481,755,76,182,2,1,0,0,0,0,4,4,484,759,77,183,5,2,2,2,1,2,559,938,477,754,76,181,2,1,0,0,0,0,4,2,480,756,77,182,5,2,2,0,1,0,4,4,4,1,0,1,0,0,0,0,0,0,0,2,4,3,0,1,0,0,0,2,0,2 -050,01,121,Alabama,Talladega County,2,18,1200,354,846,291,668,59,175,0,0,0,1,0,0,4,2,295,670,59,175,2,2,2,1,2,0,351,839,289,662,59,174,0,0,0,1,0,0,3,2,292,664,59,174,2,2,1,1,1,0,3,7,2,6,0,1,0,0,0,0,0,0,1,0,3,6,0,1,0,0,1,0,1,0 -050,01,121,Alabama,Talladega County,3,0,82175,40048,42127,26756,27616,12454,13682,161,124,167,176,3,3,507,526,27203,28088,12722,13963,401,375,243,250,27,28,38986,41532,25904,27152,12341,13616,117,109,158,169,3,3,463,483,26317,27589,12590,13877,329,336,223,231,19,19,1062,595,852,464,113,66,44,15,9,7,0,0,44,43,886,499,132,86,72,39,20,19,8,9 -050,01,121,Alabama,Talladega County,3,1,4879,2415,2464,1500,1481,820,887,7,5,12,4,0,0,76,87,1573,1565,876,957,22,19,21,15,3,1,2324,2369,1433,1404,804,879,4,2,11,3,0,0,72,81,1503,1482,858,945,16,13,20,13,3,1,91,95,67,77,16,8,3,3,1,1,0,0,4,6,70,83,18,12,6,6,1,2,0,0 -050,01,121,Alabama,Talladega County,3,2,5159,2564,2595,1584,1605,890,906,5,2,11,19,0,0,74,63,1652,1663,950,955,17,19,21,25,3,1,2491,2527,1529,1545,880,902,4,2,10,19,0,0,68,59,1592,1601,936,949,15,17,19,24,1,0,73,68,55,60,10,4,1,0,1,0,0,0,6,4,60,62,14,6,2,2,2,1,2,1 -050,01,121,Alabama,Talladega County,3,3,5626,2825,2801,1671,1639,1059,1074,13,7,8,10,0,0,74,71,1739,1702,1107,1125,34,27,20,21,3,4,2775,2753,1633,1597,1055,1072,11,6,7,10,0,0,69,68,1698,1659,1101,1122,28,24,19,20,2,3,50,48,38,42,4,2,2,1,1,0,0,0,5,3,41,43,6,3,6,3,1,1,1,1 -050,01,121,Alabama,Talladega County,3,4,5671,2886,2785,1723,1603,1097,1119,4,14,14,4,1,0,47,45,1760,1643,1128,1150,24,31,21,9,4,2,2837,2747,1680,1573,1094,1114,3,14,14,4,1,0,45,42,1716,1610,1125,1143,22,29,19,8,3,1,49,38,43,30,3,5,1,0,0,0,0,0,2,3,44,33,3,7,2,2,2,1,1,1 -050,01,121,Alabama,Talladega County,3,5,4914,2362,2552,1427,1474,881,1033,16,7,9,12,0,0,29,26,1452,1498,893,1047,32,19,15,16,2,2,2250,2506,1339,1443,870,1024,9,3,8,12,0,0,24,24,1361,1466,881,1037,21,14,12,15,0,2,112,46,88,31,11,9,7,4,1,0,0,0,5,2,91,32,12,10,11,5,3,1,2,0 -050,01,121,Alabama,Talladega County,3,6,4836,2374,2462,1520,1527,814,896,11,0,14,12,0,0,15,27,1532,1548,823,913,21,15,16,16,0,1,2254,2394,1426,1476,802,888,5,0,12,11,0,0,9,19,1432,1490,807,899,11,11,13,14,0,0,120,68,94,51,12,8,6,0,2,1,0,0,6,8,100,58,16,14,10,4,3,2,0,1 -050,01,121,Alabama,Talladega County,3,7,5079,2591,2488,1603,1534,930,901,15,9,11,21,0,0,32,23,1627,1556,946,910,34,22,21,25,1,0,2429,2442,1469,1496,919,900,5,8,10,17,0,0,26,21,1488,1516,933,908,19,19,18,21,1,0,162,46,134,38,11,1,10,1,1,4,0,0,6,2,139,40,13,2,15,3,3,4,0,0 -050,01,121,Alabama,Talladega County,3,8,5563,2803,2760,1798,1723,937,981,18,14,18,11,1,1,31,30,1822,1748,947,990,38,35,25,18,4,4,2696,2721,1708,1692,930,978,15,11,17,11,1,1,25,28,1728,1716,937,987,31,31,23,17,4,3,107,39,90,31,7,3,3,3,1,0,0,0,6,2,94,32,10,3,7,4,2,1,0,1 -050,01,121,Alabama,Talladega County,3,9,5642,2841,2801,1888,1798,901,959,15,8,14,19,1,0,22,17,1909,1811,905,965,35,21,14,20,2,1,2763,2763,1824,1772,891,952,12,8,14,19,1,0,21,12,1844,1780,895,957,31,17,14,20,2,1,78,38,64,26,10,7,3,0,0,0,0,0,1,5,65,31,10,8,4,4,0,0,0,0 -050,01,121,Alabama,Talladega County,3,10,5943,3013,2930,2065,1935,893,944,11,12,18,15,0,0,26,24,2085,1956,901,952,30,30,23,18,1,1,2936,2902,1998,1912,886,943,8,11,18,15,0,0,26,21,2018,1931,894,949,27,26,23,18,1,1,77,28,67,23,7,1,3,1,0,0,0,0,0,3,67,25,7,3,3,4,0,0,0,0 -050,01,121,Alabama,Talladega County,3,11,6244,3056,3188,2115,2126,892,998,16,21,14,13,0,1,19,29,2132,2151,896,1004,32,44,16,19,1,3,3005,3166,2076,2111,884,995,13,19,14,13,0,1,18,27,2092,2134,887,1001,29,42,15,17,0,2,51,22,39,15,8,3,3,2,0,0,0,0,1,2,40,17,9,3,3,2,1,2,1,1 -050,01,121,Alabama,Talladega County,3,12,5750,2804,2946,1976,2042,790,863,11,12,8,12,0,0,19,17,1991,2059,795,864,26,27,10,14,1,0,2765,2932,1946,2031,782,860,10,12,8,12,0,0,19,17,1961,2048,787,861,25,27,10,14,1,0,39,14,30,11,8,3,1,0,0,0,0,0,0,0,30,11,8,3,1,0,0,0,0,0 -050,01,121,Alabama,Talladega County,3,13,5205,2524,2681,1879,1941,618,695,5,5,6,14,0,0,16,26,1895,1963,622,698,19,26,6,18,0,3,2500,2673,1861,1935,612,693,5,5,6,14,0,0,16,26,1877,1957,616,696,19,26,6,18,0,3,24,8,18,6,6,2,0,0,0,0,0,0,0,0,18,6,6,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,3,14,3855,1827,2028,1434,1559,369,442,8,5,6,6,0,0,10,16,1444,1572,369,447,16,19,8,7,0,0,1817,2021,1424,1554,369,440,8,5,6,6,0,0,10,16,1434,1567,369,445,16,19,8,7,0,0,10,7,10,5,0,2,0,0,0,0,0,0,0,0,10,5,0,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,3,15,2931,1339,1592,1055,1210,271,369,4,1,3,2,0,0,6,10,1061,1220,271,369,10,10,3,3,0,0,1333,1578,1052,1201,271,364,3,1,2,2,0,0,5,10,1057,1211,271,364,8,10,2,3,0,0,6,14,3,9,0,5,1,0,1,0,0,0,1,0,4,9,0,5,2,0,1,0,0,0 -050,01,121,Alabama,Talladega County,3,16,2152,893,1259,734,988,155,259,0,1,1,1,0,1,3,9,737,996,155,260,3,7,1,3,0,3,888,1254,729,986,155,258,0,1,1,0,0,1,3,8,732,993,155,259,3,7,1,1,0,2,5,5,5,2,0,1,0,0,0,1,0,0,0,1,5,3,0,1,0,0,0,2,0,1 -050,01,121,Alabama,Talladega County,3,17,1519,572,947,487,760,79,182,2,1,0,0,0,0,4,4,491,764,79,183,6,2,0,2,0,2,567,943,482,759,79,181,2,1,0,0,0,0,4,2,486,761,79,182,6,2,0,0,0,0,5,4,5,1,0,1,0,0,0,0,0,0,0,2,5,3,0,1,0,0,0,2,0,2 -050,01,121,Alabama,Talladega County,3,18,1207,359,848,297,671,58,174,0,0,0,1,0,0,4,2,301,673,59,174,2,2,2,1,2,0,356,841,295,665,58,173,0,0,0,1,0,0,3,2,298,667,59,173,2,2,1,1,1,0,3,7,2,6,0,1,0,0,0,0,0,0,1,0,3,6,0,1,0,0,1,0,1,0 -050,01,121,Alabama,Talladega County,4,0,81875,39804,42071,26562,27553,12371,13654,163,128,169,183,7,5,532,548,27035,28053,12656,13947,409,383,244,248,34,33,38740,41459,25709,27066,12257,13591,119,113,161,179,7,5,487,505,26144,27530,12520,13865,339,347,226,235,25,27,1064,612,853,487,114,63,44,15,8,4,0,0,45,43,891,523,136,82,70,36,18,13,9,6 -050,01,121,Alabama,Talladega County,4,1,4721,2319,2402,1424,1430,796,869,9,4,6,3,3,0,81,96,1498,1520,861,949,23,18,13,10,9,2,2227,2311,1353,1355,782,861,7,2,5,3,3,0,77,90,1423,1440,844,935,18,16,12,10,9,1,92,91,71,75,14,8,2,2,1,0,0,0,4,6,75,80,17,14,5,2,1,0,0,1 -050,01,121,Alabama,Talladega County,4,2,5082,2526,2556,1584,1597,841,863,8,3,10,14,1,0,82,79,1660,1670,903,919,27,17,21,27,4,6,2444,2477,1525,1529,828,859,6,2,9,14,1,0,75,73,1596,1598,885,914,21,13,19,24,4,3,82,79,59,68,13,4,2,1,1,0,0,0,7,6,64,72,18,5,6,4,2,3,0,3 -050,01,121,Alabama,Talladega County,4,3,5578,2817,2761,1675,1632,1051,1049,8,4,7,14,0,0,76,62,1745,1690,1099,1090,27,23,21,24,5,4,2757,2715,1625,1589,1048,1048,7,4,6,14,0,0,71,60,1690,1645,1093,1088,25,22,18,23,3,4,60,46,50,43,3,1,1,0,1,0,0,0,5,2,55,45,6,2,2,1,3,1,2,0 -050,01,121,Alabama,Talladega County,4,4,5430,2762,2668,1642,1518,1040,1078,6,15,25,4,0,1,49,52,1686,1565,1071,1114,25,34,33,8,2,4,2710,2622,1599,1482,1035,1072,4,14,25,4,0,1,47,49,1642,1527,1065,1107,22,31,32,8,1,3,52,46,43,36,5,6,2,1,0,0,0,0,2,3,44,38,6,7,3,3,1,0,1,1 -050,01,121,Alabama,Talladega County,4,5,5144,2474,2670,1489,1535,921,1088,16,9,14,12,1,0,33,26,1516,1560,937,1101,34,20,18,17,5,2,2385,2631,1420,1507,912,1081,9,6,14,12,1,0,29,25,1445,1531,928,1094,23,17,16,16,3,2,89,39,69,28,9,7,7,3,0,0,0,0,4,1,71,29,9,7,11,3,2,1,2,0 -050,01,121,Alabama,Talladega County,4,6,4770,2321,2449,1480,1525,801,878,10,3,14,16,0,0,16,27,1491,1550,813,890,19,13,16,21,0,2,2195,2380,1381,1470,787,872,5,2,13,15,0,0,9,21,1385,1489,793,880,11,11,15,19,0,2,126,69,99,55,14,6,5,1,1,1,0,0,7,6,106,61,20,10,8,2,1,2,0,0 -050,01,121,Alabama,Talladega County,4,7,5023,2542,2481,1578,1524,902,910,16,6,12,17,0,0,34,24,1605,1544,918,919,33,20,20,21,3,1,2386,2429,1449,1482,894,908,5,5,10,15,0,0,28,19,1471,1498,908,915,18,16,16,18,1,1,156,52,129,42,8,2,11,1,2,2,0,0,6,5,134,46,10,4,15,4,4,3,2,0 -050,01,121,Alabama,Talladega County,4,8,5285,2687,2598,1719,1625,917,917,14,14,10,12,1,1,26,29,1741,1652,925,928,29,39,15,17,3,1,2578,2558,1626,1591,910,914,11,12,9,12,1,1,21,28,1644,1617,917,925,22,36,14,17,2,1,109,40,93,34,7,3,3,2,1,0,0,0,5,1,97,35,8,3,7,3,1,0,1,0 -050,01,121,Alabama,Talladega County,4,9,5737,2862,2875,1906,1829,909,994,16,11,11,25,0,1,20,15,1924,1840,913,999,32,23,15,26,0,2,2783,2835,1842,1800,898,988,13,10,11,25,0,1,19,11,1859,1807,901,993,29,19,15,25,0,2,79,40,64,29,11,6,3,1,0,0,0,0,1,4,65,33,12,6,3,4,0,1,0,0 -050,01,121,Alabama,Talladega County,4,10,5818,2927,2891,1972,1904,897,937,10,10,19,16,1,0,28,24,1995,1926,904,944,34,29,23,18,1,2,2856,2864,1912,1883,889,935,8,9,19,16,1,0,27,21,1934,1903,896,941,31,25,23,18,1,1,71,27,60,21,8,2,2,1,0,0,0,0,1,3,61,23,8,3,3,4,0,0,0,1 -050,01,121,Alabama,Talladega County,4,11,6162,2992,3170,2080,2097,867,1007,15,23,11,15,0,1,19,27,2097,2121,870,1013,32,46,14,16,0,3,2941,3149,2040,2084,860,1003,12,22,11,15,0,1,18,24,2056,2106,863,1008,29,42,13,15,0,3,51,21,40,13,7,4,3,1,0,0,0,0,1,3,41,15,7,5,3,4,1,1,0,0 -050,01,121,Alabama,Talladega County,4,12,5851,2850,3001,2003,2072,801,886,14,12,12,12,0,0,20,19,2020,2089,805,891,31,27,13,14,1,1,2811,2985,1975,2059,792,884,12,11,12,12,0,0,20,19,1992,2076,796,889,29,26,13,14,1,1,39,16,28,13,9,2,2,1,0,0,0,0,0,0,28,13,9,2,2,1,0,0,0,0 -050,01,121,Alabama,Talladega County,4,13,5409,2634,2775,1940,1995,663,740,6,5,6,10,0,0,19,25,1959,2015,668,746,25,27,7,14,0,1,2606,2766,1917,1988,658,738,6,5,6,10,0,0,19,25,1936,2008,663,744,25,27,7,14,0,1,28,9,23,7,5,2,0,0,0,0,0,0,0,0,23,7,5,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,4,14,3936,1842,2094,1442,1599,372,463,9,6,7,8,0,0,12,18,1454,1617,374,465,17,23,9,8,0,1,1830,2087,1431,1594,371,461,9,6,7,8,0,0,12,18,1443,1612,373,463,17,23,9,8,0,1,12,7,11,5,1,2,0,0,0,0,0,0,0,0,11,5,1,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,4,15,2994,1374,1620,1074,1242,289,365,3,1,4,2,0,0,4,10,1078,1251,289,366,7,9,4,4,0,0,1369,1610,1070,1236,289,361,3,1,3,2,0,0,4,10,1074,1245,289,362,7,9,3,4,0,0,5,10,4,6,0,4,0,0,1,0,0,0,0,0,4,6,0,4,0,0,1,0,0,0 -050,01,121,Alabama,Talladega County,4,16,2161,910,1251,750,976,154,263,1,1,0,2,0,0,5,9,754,984,155,264,6,10,0,2,0,0,905,1242,747,971,154,261,0,1,0,1,0,0,4,8,750,978,155,262,4,9,0,1,0,0,5,9,3,5,0,2,1,0,0,1,0,0,1,1,4,6,0,2,2,1,0,1,0,0 -050,01,121,Alabama,Talladega County,4,17,1542,592,950,494,776,92,168,1,1,1,0,0,1,4,4,498,780,92,168,5,5,1,0,0,1,587,948,489,775,92,167,1,1,1,0,0,1,4,4,493,779,92,167,5,5,1,0,0,1,5,2,5,1,0,1,0,0,0,0,0,0,0,0,5,1,0,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,4,18,1232,373,859,310,677,58,179,1,0,0,1,0,0,4,2,314,679,59,181,3,0,1,1,1,0,370,850,308,671,58,178,1,0,0,1,0,0,3,0,311,671,59,178,3,0,0,1,0,0,3,9,2,6,0,1,0,0,0,0,0,0,1,2,3,8,0,3,0,0,1,0,1,0 -050,01,121,Alabama,Talladega County,5,0,82170,39867,42303,26448,27428,12491,13967,165,139,208,197,8,7,547,565,26938,27936,12796,14271,400,390,288,282,38,38,38789,41656,25585,26917,12371,13895,120,123,200,194,8,5,505,522,26041,27389,12648,14175,340,356,271,267,27,30,1078,647,863,511,120,72,45,16,8,3,0,2,42,43,897,547,148,96,60,34,17,15,11,8 -050,01,121,Alabama,Talladega County,5,1,4684,2334,2350,1414,1413,806,838,4,3,4,2,3,0,103,94,1510,1502,889,913,24,19,17,14,7,1,2241,2253,1339,1326,794,831,3,2,4,2,3,0,98,92,1431,1413,873,904,22,17,17,14,6,1,93,97,75,87,12,7,1,1,0,0,0,0,5,2,79,89,16,9,2,2,0,0,1,0 -050,01,121,Alabama,Talladega County,5,2,5051,2493,2558,1575,1569,829,887,9,7,10,11,1,0,69,84,1643,1646,881,948,22,25,17,24,2,4,2409,2472,1513,1495,814,883,6,6,9,11,1,0,66,77,1578,1566,865,941,18,20,15,22,2,3,84,86,62,74,15,4,3,1,1,0,0,0,3,7,65,80,16,7,4,5,2,2,0,1 -050,01,121,Alabama,Talladega County,5,3,5530,2797,2733,1675,1618,1025,1028,10,4,7,19,0,0,80,64,1748,1681,1081,1069,29,28,21,26,5,2,2735,2687,1623,1580,1021,1025,8,3,7,19,0,0,76,60,1692,1639,1074,1065,26,23,20,25,4,1,62,46,52,38,4,3,2,1,0,0,0,0,4,4,56,42,7,4,3,5,1,1,1,1 -050,01,121,Alabama,Talladega County,5,4,5392,2666,2726,1569,1489,1007,1161,6,12,33,5,0,1,51,58,1613,1541,1042,1202,25,31,39,14,3,3,2614,2671,1530,1447,1001,1153,4,11,32,5,0,1,47,54,1572,1496,1033,1191,21,30,37,12,1,3,52,55,39,42,6,8,2,1,1,0,0,0,4,4,41,45,9,11,4,1,2,2,2,0 -050,01,121,Alabama,Talladega County,5,5,5472,2608,2864,1531,1544,1004,1265,16,14,26,13,1,0,30,28,1557,1570,1019,1281,32,24,31,18,3,2,2519,2816,1458,1511,1000,1256,9,11,25,12,1,0,26,26,1482,1535,1013,1270,23,20,28,17,1,2,89,48,73,33,4,9,7,3,1,1,0,0,4,2,75,35,6,11,9,4,3,1,2,0 -050,01,121,Alabama,Talladega County,5,6,4742,2305,2437,1452,1505,811,891,11,2,11,12,0,0,20,27,1469,1528,823,902,21,15,14,20,0,2,2183,2387,1362,1464,790,886,6,2,11,12,0,0,14,23,1373,1483,796,896,14,14,14,19,0,1,122,50,90,41,21,5,5,0,0,0,0,0,6,4,96,45,27,6,7,1,0,1,0,1 -050,01,121,Alabama,Talladega County,5,7,5050,2561,2489,1571,1519,935,926,15,5,10,15,1,2,29,22,1595,1538,949,934,31,13,14,21,4,6,2411,2430,1448,1476,927,921,5,4,7,13,1,0,23,16,1467,1489,937,926,20,10,10,18,3,4,150,59,123,43,8,5,10,1,3,2,0,2,6,6,128,49,12,8,11,3,4,3,1,2 -050,01,121,Alabama,Talladega County,5,8,5056,2578,2478,1646,1563,875,865,14,13,13,11,1,1,29,25,1672,1584,885,874,33,27,19,16,6,4,2462,2434,1550,1526,866,862,10,9,12,11,1,1,23,25,1571,1547,873,871,25,23,16,16,4,4,116,44,96,37,9,3,4,4,1,0,0,0,6,0,101,37,12,3,8,4,3,0,2,0 -050,01,121,Alabama,Talladega County,5,9,5796,2858,2938,1894,1858,917,1008,16,14,13,40,0,0,18,18,1908,1875,922,1014,29,25,18,43,0,1,2775,2891,1825,1822,907,1002,13,13,13,40,0,0,17,14,1838,1836,911,1006,25,22,18,42,0,1,83,47,69,36,10,6,3,1,0,0,0,0,1,4,70,39,11,8,4,3,0,1,0,0 -050,01,121,Alabama,Talladega County,5,10,5754,2892,2862,1928,1886,893,923,11,9,32,19,1,1,27,24,1948,1907,902,930,31,26,36,23,2,4,2821,2835,1869,1865,884,920,9,9,32,19,1,1,26,21,1888,1884,893,926,29,24,36,22,1,2,71,27,59,21,9,3,2,0,0,0,0,0,1,3,60,23,9,4,2,2,0,1,1,2 -050,01,121,Alabama,Talladega County,5,11,6012,2918,3094,2023,2015,848,1016,15,23,13,15,0,1,19,24,2040,2034,850,1025,31,43,16,18,0,3,2871,3072,1984,2002,843,1012,12,21,13,15,0,1,19,21,2001,2020,845,1018,28,40,16,17,0,2,47,22,39,13,5,4,3,2,0,0,0,0,0,3,39,14,5,7,3,3,0,1,0,1 -050,01,121,Alabama,Talladega County,5,12,6003,2952,3051,2061,2092,838,907,16,14,16,11,0,0,21,27,2080,2115,840,913,31,35,20,16,2,2,2907,3033,2029,2078,828,905,14,13,16,11,0,0,20,26,2047,2100,830,911,29,34,19,15,2,2,45,18,32,14,10,2,2,1,0,0,0,0,1,1,33,15,10,2,2,1,1,1,0,0 -050,01,121,Alabama,Talladega County,5,13,5278,2560,2718,1868,1916,657,761,5,7,8,9,0,0,22,25,1889,1936,660,765,23,26,10,13,2,3,2528,2709,1841,1909,652,759,5,7,8,9,0,0,22,25,1862,1929,655,763,23,26,10,13,2,3,32,9,27,7,5,2,0,0,0,0,0,0,0,0,27,7,5,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,5,14,4261,1998,2263,1564,1721,408,503,9,8,6,12,0,0,11,19,1573,1737,411,507,18,26,7,12,1,0,1984,2255,1552,1716,406,500,9,8,6,12,0,0,11,19,1561,1732,409,504,18,26,7,12,1,0,14,8,12,5,2,3,0,0,0,0,0,0,0,0,12,5,2,3,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,5,15,3057,1427,1630,1104,1252,308,366,4,1,5,2,0,0,6,9,1110,1260,309,367,8,10,6,2,0,0,1422,1623,1100,1247,308,364,4,1,4,2,0,0,6,9,1106,1255,309,365,8,10,5,2,0,0,5,7,4,5,0,2,0,0,1,0,0,0,0,0,4,5,0,2,0,0,1,0,0,0 -050,01,121,Alabama,Talladega County,5,16,2237,932,1305,760,1004,166,287,2,2,0,1,0,0,4,11,763,1013,168,289,4,12,0,2,1,0,927,1293,757,997,166,283,1,2,0,1,0,0,3,10,760,1006,167,284,3,12,0,1,0,0,5,12,3,7,0,4,1,0,0,0,0,0,1,1,3,7,1,5,1,0,0,1,1,0 -050,01,121,Alabama,Talladega County,5,17,1520,596,924,485,758,104,161,1,0,1,0,0,1,5,4,490,761,104,162,5,4,2,0,0,1,590,922,479,757,104,160,1,0,1,0,0,1,5,4,484,760,104,161,5,4,2,0,0,1,6,2,6,1,0,1,0,0,0,0,0,0,0,0,6,1,0,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,5,18,1275,392,883,328,706,60,174,1,1,0,0,0,0,3,2,330,708,61,176,3,1,1,0,0,0,390,873,326,699,60,173,1,1,0,0,0,0,3,0,328,699,61,173,3,1,1,0,0,0,2,10,2,7,0,1,0,0,0,0,0,0,0,2,2,9,0,3,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,6,0,81604,39584,42020,26153,27138,12458,13947,173,128,218,201,7,7,575,599,26658,27663,12771,14279,420,397,302,287,39,40,38493,41355,25287,26629,12334,13863,121,111,211,198,7,4,533,550,25766,27117,12633,14169,341,350,281,274,29,28,1091,665,866,509,124,84,52,17,7,3,0,3,42,49,892,546,138,110,79,47,21,13,10,12 -050,01,121,Alabama,Talladega County,6,1,4516,2334,2182,1413,1294,800,786,6,3,5,3,3,0,107,96,1515,1385,882,867,22,15,22,16,7,1,2230,2088,1330,1212,785,775,4,3,5,3,3,0,103,95,1429,1302,866,855,18,15,21,16,6,1,104,94,83,82,15,11,2,0,0,0,0,0,4,1,86,83,16,12,4,0,1,0,1,0 -050,01,121,Alabama,Talladega County,6,2,4983,2434,2549,1531,1540,798,903,6,4,8,9,0,0,91,93,1613,1626,865,971,24,23,20,21,4,5,2343,2458,1463,1465,782,898,3,2,7,9,0,0,88,84,1542,1544,849,961,19,16,18,20,4,3,91,91,68,75,16,5,3,2,1,0,0,0,3,9,71,82,16,10,5,7,2,1,0,2 -050,01,121,Alabama,Talladega County,6,3,5394,2691,2703,1621,1604,983,1016,10,5,6,17,0,0,71,61,1688,1658,1028,1059,26,24,18,24,6,2,2620,2654,1565,1566,974,1011,8,4,6,17,0,0,67,56,1629,1617,1019,1050,23,20,15,24,5,2,71,49,56,38,9,5,2,1,0,0,0,0,4,5,59,41,9,9,3,4,3,0,1,0 -050,01,121,Alabama,Talladega County,6,4,5185,2552,2633,1508,1457,956,1098,7,8,28,8,0,1,53,61,1556,1512,987,1139,25,29,36,14,4,5,2492,2579,1460,1417,951,1090,5,7,27,8,0,1,49,56,1507,1467,982,1128,20,25,32,14,2,5,60,54,48,40,5,8,2,1,1,0,0,0,4,5,49,45,5,11,5,4,4,0,2,0 -050,01,121,Alabama,Talladega County,6,5,5542,2619,2923,1529,1556,1016,1317,8,13,32,8,2,0,32,29,1551,1577,1036,1336,23,25,39,13,5,4,2535,2867,1459,1514,1011,1308,3,11,31,7,2,0,29,27,1481,1534,1030,1325,16,22,35,12,3,3,84,56,70,42,5,9,5,2,1,1,0,0,3,2,70,43,6,11,7,3,4,1,2,1 -050,01,121,Alabama,Talladega County,6,6,4704,2326,2378,1444,1480,829,850,20,5,10,12,0,0,23,31,1463,1503,841,869,34,20,12,18,1,1,2226,2333,1375,1448,815,843,9,3,10,12,0,0,17,27,1389,1468,823,859,18,16,12,17,1,1,100,45,69,32,14,7,11,2,0,0,0,0,6,4,74,35,18,10,16,4,0,1,0,0 -050,01,121,Alabama,Talladega County,6,7,5096,2590,2506,1582,1527,953,939,16,1,12,13,0,2,27,24,1601,1548,968,950,30,14,18,18,1,2,2436,2440,1457,1479,943,932,5,1,11,11,0,0,20,17,1472,1493,954,940,15,9,15,15,0,0,154,66,125,48,10,7,11,0,1,2,0,2,7,7,129,55,14,10,15,5,3,3,1,2 -050,01,121,Alabama,Talladega County,6,8,4921,2494,2427,1572,1521,857,849,19,18,15,12,1,0,30,27,1599,1545,866,857,38,34,19,16,3,3,2377,2388,1474,1490,849,846,14,13,14,12,1,0,25,27,1497,1514,856,854,31,29,17,16,2,3,117,39,98,31,8,3,5,5,1,0,0,0,5,0,102,31,10,3,7,5,2,0,1,0 -050,01,121,Alabama,Talladega County,6,9,5663,2787,2876,1830,1794,914,999,13,12,10,48,0,1,20,22,1847,1809,918,1005,27,27,13,55,2,3,2705,2828,1764,1758,904,993,10,11,9,48,0,1,18,17,1781,1771,907,997,22,22,12,53,1,2,82,48,66,36,10,6,3,1,1,0,0,0,2,5,66,38,11,8,5,5,1,2,1,1 -050,01,121,Alabama,Talladega County,6,10,5615,2852,2763,1912,1807,860,910,13,7,40,17,1,1,26,21,1929,1826,869,917,31,21,47,20,4,3,2787,2737,1859,1789,851,906,11,7,40,17,1,0,25,18,1876,1805,860,913,28,19,47,19,3,1,65,26,53,18,9,4,2,0,0,0,0,1,1,3,53,21,9,4,3,2,0,1,1,2 -050,01,121,Alabama,Talladega County,6,11,5906,2885,3021,1994,1969,841,994,13,18,16,13,0,1,21,26,2012,1993,844,999,31,37,20,17,0,3,2828,2994,1945,1950,836,991,11,16,16,13,0,1,20,23,1962,1972,839,995,28,34,20,15,0,2,57,27,49,19,5,3,2,2,0,0,0,0,1,3,50,21,5,4,3,3,0,2,0,1 -050,01,121,Alabama,Talladega County,6,12,6099,2942,3157,2030,2148,859,947,18,17,16,14,0,0,19,31,2047,2173,863,957,34,44,17,16,1,2,2901,3138,2003,2134,849,945,15,16,16,14,0,0,18,29,2019,2158,853,954,30,42,17,15,1,1,41,19,27,14,10,2,3,1,0,0,0,0,1,2,28,15,10,3,4,2,0,1,0,1 -050,01,121,Alabama,Talladega County,6,13,5220,2541,2679,1817,1865,687,774,5,5,8,9,0,0,24,26,1838,1889,692,778,29,27,8,14,0,2,2512,2669,1792,1857,683,772,5,5,8,9,0,0,24,26,1813,1881,688,776,29,27,8,14,0,2,29,10,25,8,4,2,0,0,0,0,0,0,0,0,25,8,4,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,6,14,4450,2084,2366,1612,1772,450,555,5,6,5,12,0,0,12,21,1624,1790,452,559,15,24,5,16,0,1,2068,2361,1600,1769,446,553,5,6,5,12,0,0,12,21,1612,1787,448,557,15,24,5,16,0,1,16,5,12,3,4,2,0,0,0,0,0,0,0,0,12,3,4,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,6,15,3243,1520,1723,1189,1334,312,371,8,3,5,3,0,0,6,12,1195,1345,312,373,14,13,5,4,0,0,1515,1713,1184,1327,312,368,8,3,5,3,0,0,6,12,1190,1338,312,370,14,13,5,4,0,0,5,10,5,7,0,3,0,0,0,0,0,0,0,0,5,7,0,3,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,6,16,2276,956,1320,762,1011,184,296,4,1,1,2,0,0,5,10,766,1019,186,298,9,11,1,2,0,0,949,1307,758,1002,184,292,3,1,0,2,0,0,4,10,761,1010,185,294,7,11,0,2,0,0,7,13,4,9,0,4,1,0,1,0,0,0,1,0,5,9,1,4,2,0,1,0,0,0 -050,01,121,Alabama,Talladega County,6,17,1506,581,925,478,753,98,165,0,1,1,0,0,1,4,5,482,758,99,165,3,5,1,1,0,2,576,921,473,752,98,163,0,1,1,0,0,1,4,4,477,756,99,163,3,4,1,1,0,1,5,4,5,1,0,2,0,0,0,0,0,0,0,1,5,2,0,2,0,1,0,0,0,1 -050,01,121,Alabama,Talladega County,6,18,1285,396,889,329,706,61,178,2,1,0,1,0,0,4,3,332,707,63,180,5,4,1,2,1,1,393,880,326,700,61,177,2,1,0,1,0,0,4,1,329,700,63,178,5,2,1,1,1,0,3,9,3,6,0,1,0,0,0,0,0,0,0,2,3,7,0,2,0,2,0,1,0,1 -050,01,121,Alabama,Talladega County,7,0,81550,39503,42047,26061,27006,12418,14072,182,134,241,215,7,5,594,615,26594,27565,12752,14407,435,398,330,308,33,37,38413,41361,25196,26481,12302,13984,124,114,234,211,7,3,550,568,25694,27003,12611,14291,357,353,311,293,29,31,1090,686,865,525,116,88,58,20,7,4,0,2,44,47,900,562,141,116,78,45,19,15,4,6 -050,01,121,Alabama,Talladega County,7,1,4377,2244,2133,1373,1277,749,747,11,2,4,3,3,0,104,104,1472,1377,828,828,29,14,19,17,8,3,2141,2051,1286,1204,741,740,6,2,4,3,3,0,101,102,1382,1303,818,819,23,14,19,16,8,3,103,82,87,73,8,7,5,0,0,0,0,0,3,2,90,74,10,9,6,0,0,1,0,0 -050,01,121,Alabama,Talladega County,7,2,5030,2431,2599,1509,1544,820,945,6,7,7,9,0,0,89,94,1596,1635,887,1015,24,25,16,21,3,5,2339,2497,1438,1460,807,935,3,4,7,9,0,0,84,89,1520,1546,870,1003,19,21,16,19,3,5,92,102,71,84,13,10,3,3,0,0,0,0,5,5,76,89,17,12,5,4,0,2,0,0 -050,01,121,Alabama,Talladega County,7,3,5337,2660,2677,1618,1611,944,980,11,6,8,19,0,0,79,61,1696,1671,995,1022,31,25,21,27,1,1,2576,2624,1555,1569,932,975,7,5,7,19,0,0,75,56,1629,1624,982,1014,25,22,18,25,1,0,84,53,63,42,12,5,4,1,1,0,0,0,4,5,67,47,13,8,6,3,3,2,0,1 -050,01,121,Alabama,Talladega County,7,4,5175,2574,2601,1535,1419,939,1104,9,6,32,11,0,0,59,61,1585,1475,977,1142,27,26,44,20,2,2,2513,2551,1487,1381,934,1097,6,5,31,11,0,0,55,57,1536,1433,971,1133,23,24,39,19,0,2,61,50,48,38,5,7,3,1,1,0,0,0,4,4,49,42,6,9,4,2,5,1,2,0 -050,01,121,Alabama,Talladega County,7,5,5538,2656,2882,1550,1507,1012,1316,10,14,44,7,2,1,38,37,1583,1539,1032,1338,26,29,52,14,5,4,2576,2827,1482,1465,1009,1307,5,14,44,6,2,1,34,34,1513,1495,1028,1327,19,27,49,13,3,4,80,55,68,42,3,9,5,0,0,1,0,0,4,3,70,44,4,11,7,2,3,1,2,0 -050,01,121,Alabama,Talladega County,7,6,4853,2384,2469,1468,1520,865,900,17,7,6,16,0,0,28,26,1491,1538,880,917,29,19,11,21,3,3,2294,2415,1405,1485,854,891,7,1,5,16,0,0,23,22,1423,1500,864,906,17,10,10,21,3,2,90,54,63,35,11,9,10,6,1,0,0,0,5,4,68,38,16,11,12,9,1,0,0,1 -050,01,121,Alabama,Talladega County,7,7,4978,2509,2469,1560,1504,897,924,14,2,12,14,0,0,26,25,1578,1527,912,938,27,13,17,19,2,1,2363,2415,1442,1466,885,917,5,2,11,13,0,0,20,17,1457,1482,896,925,16,9,13,18,2,1,146,54,118,38,12,7,9,0,1,1,0,0,6,8,121,45,16,13,11,4,4,1,0,0 -050,01,121,Alabama,Talladega County,7,8,4879,2442,2437,1538,1512,850,866,21,15,11,13,0,1,22,30,1555,1537,860,875,37,32,14,19,1,4,2319,2392,1439,1475,839,864,13,10,10,13,0,0,18,30,1453,1500,846,873,27,27,13,19,1,3,123,45,99,37,11,2,8,5,1,0,0,1,4,0,102,37,14,2,10,5,1,0,0,1 -050,01,121,Alabama,Talladega County,7,9,5597,2770,2827,1808,1750,913,996,12,13,12,44,1,1,24,23,1829,1770,922,1005,28,29,16,49,2,2,2685,2770,1739,1705,906,989,9,12,11,44,1,1,19,19,1755,1722,913,996,22,25,15,48,2,2,85,57,69,45,7,7,3,1,1,0,0,0,5,4,74,48,9,9,6,4,1,1,0,0 -050,01,121,Alabama,Talladega County,7,10,5487,2784,2703,1853,1743,849,916,13,7,47,18,1,0,21,19,1868,1759,857,925,30,22,48,20,2,3,2721,2672,1804,1722,838,911,11,7,47,18,1,0,20,14,1818,1735,845,917,28,17,48,19,2,2,63,31,49,21,11,5,2,0,0,0,0,0,1,5,50,24,12,8,2,5,0,1,0,1 -050,01,121,Alabama,Talladega County,7,11,5844,2868,2976,1941,1944,870,976,11,16,21,17,0,2,25,21,1961,1961,875,981,31,34,25,19,1,5,2818,2949,1899,1924,865,973,9,15,21,17,0,1,24,19,1918,1939,870,978,28,31,25,19,1,4,50,27,42,20,5,3,2,1,0,0,0,1,1,2,43,22,5,3,3,3,0,0,0,1 -050,01,121,Alabama,Talladega County,7,12,6052,2873,3179,1994,2115,825,997,18,18,15,14,0,0,21,35,2014,2143,830,1005,36,45,17,22,1,0,2829,3159,1963,2101,816,995,15,16,15,14,0,0,20,33,1982,2127,820,1002,32,43,17,21,1,0,44,20,31,14,9,2,3,2,0,0,0,0,1,2,32,16,10,3,4,2,0,1,0,0 -050,01,121,Alabama,Talladega County,7,13,5325,2594,2731,1816,1917,737,778,9,7,11,7,0,0,21,22,1837,1938,738,780,28,23,14,10,1,3,2566,2719,1792,1908,733,775,9,7,11,7,0,0,21,22,1813,1929,734,777,28,23,14,10,1,3,28,12,24,9,4,3,0,0,0,0,0,0,0,0,24,9,4,3,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,7,14,4588,2161,2427,1659,1786,480,598,4,7,3,12,0,0,15,24,1672,1810,485,601,16,26,5,14,0,0,2141,2421,1644,1782,475,596,4,7,3,12,0,0,15,24,1657,1806,480,599,16,26,5,14,0,0,20,6,15,4,5,2,0,0,0,0,0,0,0,0,15,4,5,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,7,15,3363,1573,1790,1225,1384,326,383,10,3,5,6,0,0,7,14,1232,1397,327,385,17,15,5,8,0,0,1569,1782,1221,1378,326,381,10,3,5,6,0,0,7,14,1228,1391,327,383,17,15,5,8,0,0,4,8,4,6,0,2,0,0,0,0,0,0,0,0,4,6,0,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,7,16,2309,998,1311,792,1004,194,292,4,2,2,4,0,0,6,9,797,1012,195,293,10,10,2,5,0,0,989,1295,786,995,194,287,3,2,1,2,0,0,5,9,790,1003,195,288,8,10,1,3,0,0,9,16,6,9,0,5,1,0,1,2,0,0,1,0,7,9,0,5,2,0,1,2,0,0 -050,01,121,Alabama,Talladega County,7,17,1513,564,949,470,758,90,182,0,1,1,0,0,0,3,8,472,765,91,183,3,9,1,0,0,0,561,945,467,756,90,181,0,1,1,0,0,0,3,7,469,763,91,181,3,8,1,0,0,0,3,4,3,2,0,1,0,0,0,0,0,0,0,1,3,2,0,2,0,1,0,0,0,0 -050,01,121,Alabama,Talladega County,7,18,1305,418,887,352,711,58,172,2,1,0,1,0,0,6,2,356,711,61,174,6,2,3,3,1,1,413,877,347,705,58,170,2,1,0,1,0,0,6,0,351,705,61,170,6,1,3,1,1,0,5,10,5,6,0,2,0,0,0,0,0,0,0,2,5,6,0,4,0,1,0,2,0,1 -050,01,121,Alabama,Talladega County,8,0,81168,39273,41895,25861,26826,12344,14093,183,128,255,229,8,5,622,614,26419,27367,12704,14438,431,392,355,319,42,41,38178,41209,24996,26297,12237,14011,124,113,246,225,8,2,567,561,25513,26794,12568,14326,343,352,331,303,27,33,1095,686,865,529,107,82,59,15,9,4,0,3,55,53,906,573,136,112,88,40,24,16,15,8 -050,01,121,Alabama,Talladega County,8,1,4354,2226,2128,1339,1309,744,719,7,2,6,3,3,0,127,95,1461,1400,844,794,27,16,24,17,7,2,2129,2065,1260,1252,739,717,4,1,3,3,3,0,120,92,1375,1340,834,791,21,14,19,16,7,2,97,63,79,57,5,2,3,1,3,0,0,0,7,3,86,60,10,3,6,2,5,1,0,0 -050,01,121,Alabama,Talladega County,8,2,4930,2419,2511,1521,1484,801,921,8,4,6,8,0,0,83,94,1597,1575,862,991,23,22,17,20,6,3,2313,2409,1435,1399,790,913,5,2,6,8,0,0,77,87,1507,1484,848,977,17,18,16,20,2,3,106,102,86,85,11,8,3,2,0,0,0,0,6,7,90,91,14,14,6,4,1,0,4,0 -050,01,121,Alabama,Talladega County,8,3,5138,2545,2593,1558,1572,888,938,7,5,8,18,0,0,84,60,1640,1624,944,980,29,25,19,26,4,3,2463,2528,1499,1521,875,931,3,4,7,18,0,0,79,54,1577,1569,928,970,21,20,17,25,4,2,82,65,59,51,13,7,4,1,1,0,0,0,5,6,63,55,16,10,8,5,2,1,0,1 -050,01,121,Alabama,Talladega County,8,4,5142,2551,2591,1495,1399,953,1111,12,6,34,11,0,0,57,64,1545,1456,992,1154,29,27,43,18,3,4,2491,2543,1448,1363,949,1104,8,5,33,11,0,0,53,60,1496,1416,986,1144,24,24,40,17,1,4,60,48,47,36,4,7,4,1,1,0,0,0,4,4,49,40,6,10,5,3,3,1,2,0 -050,01,121,Alabama,Talladega County,8,5,5361,2605,2756,1514,1420,985,1273,14,15,49,5,2,0,41,43,1548,1460,1009,1298,31,29,57,12,6,5,2523,2700,1448,1378,981,1265,7,15,49,4,2,0,36,38,1480,1414,1004,1288,21,27,54,10,3,4,82,56,66,42,4,8,7,0,0,1,0,0,5,5,68,46,5,10,10,2,3,2,3,1 -050,01,121,Alabama,Talladega County,8,6,5119,2500,2619,1516,1583,934,991,9,8,7,12,0,0,34,25,1545,1602,955,1004,28,17,13,18,0,3,2408,2560,1442,1541,925,981,7,4,6,12,0,0,28,22,1465,1557,941,992,22,12,12,18,0,3,92,59,74,42,9,10,2,4,1,0,0,0,6,3,80,45,14,12,6,5,1,0,0,0 -050,01,121,Alabama,Talladega County,8,7,4883,2417,2466,1532,1498,836,917,17,2,13,21,0,1,19,27,1546,1520,848,931,26,16,17,25,1,3,2280,2404,1421,1454,827,909,5,2,12,20,0,0,15,19,1432,1470,837,919,13,11,15,22,0,2,137,62,111,44,9,8,12,0,1,1,0,1,4,8,114,50,11,12,13,5,2,3,1,1 -050,01,121,Alabama,Talladega County,8,8,4830,2412,2418,1506,1509,847,866,20,9,13,12,0,1,26,21,1528,1526,858,879,35,24,17,14,1,4,2294,2373,1415,1469,836,865,10,7,12,12,0,0,21,20,1433,1485,844,877,23,21,16,14,0,3,118,45,91,40,11,1,10,2,1,0,0,1,5,1,95,41,14,2,12,3,1,0,1,1 -050,01,121,Alabama,Talladega County,8,9,5373,2639,2734,1711,1675,876,973,16,13,13,46,1,1,22,26,1728,1695,883,982,31,27,17,53,6,4,2549,2689,1640,1638,871,968,10,12,13,46,1,1,14,24,1653,1656,875,977,19,26,14,52,2,3,90,45,71,37,5,5,6,1,0,0,0,0,8,2,75,39,8,5,12,1,3,1,4,1 -050,01,121,Alabama,Talladega County,8,10,5485,2754,2731,1835,1739,831,936,15,11,48,27,1,0,24,18,1853,1752,840,942,33,24,54,30,3,1,2683,2699,1780,1718,818,929,13,11,48,27,1,0,23,14,1797,1728,826,933,31,22,54,29,3,1,71,32,55,21,13,7,2,0,0,0,0,0,1,4,56,24,14,9,2,2,0,1,0,0 -050,01,121,Alabama,Talladega County,8,11,5688,2826,2862,1917,1875,859,933,9,9,18,19,1,1,22,25,1935,1895,866,941,25,25,22,25,2,4,2784,2830,1882,1851,855,931,7,8,18,19,1,0,21,21,1899,1868,861,937,23,22,22,24,2,3,42,32,35,24,4,2,2,1,0,0,0,1,1,4,36,27,5,4,2,3,0,1,0,1 -050,01,121,Alabama,Talladega County,8,12,6000,2832,3168,1976,2089,807,1010,15,21,14,13,0,1,20,34,1995,2117,810,1017,31,48,16,18,0,2,2791,3147,1945,2075,800,1007,13,19,14,13,0,1,19,32,1963,2101,803,1013,28,45,16,18,0,2,41,21,31,14,7,3,2,2,0,0,0,0,1,2,32,16,7,4,3,3,0,0,0,0 -050,01,121,Alabama,Talladega County,8,13,5416,2622,2794,1837,1953,743,804,11,9,11,10,0,0,20,18,1856,1967,744,809,27,24,14,11,1,1,2591,2784,1813,1945,737,802,10,9,11,10,0,0,20,18,1832,1959,738,807,26,24,14,11,1,1,31,10,24,8,6,2,1,0,0,0,0,0,0,0,24,8,6,2,1,0,0,0,0,0 -050,01,121,Alabama,Talladega County,8,14,4777,2268,2509,1689,1831,552,636,7,6,5,11,0,0,15,25,1702,1856,554,640,19,26,9,16,0,0,2247,2500,1675,1825,546,634,7,6,5,11,0,0,14,24,1687,1849,548,638,18,25,8,15,0,0,21,9,14,6,6,2,0,0,0,0,0,0,1,1,15,7,6,2,1,1,1,1,0,0 -050,01,121,Alabama,Talladega County,8,15,3395,1569,1826,1214,1401,329,397,9,5,5,6,0,0,12,17,1225,1416,332,400,19,21,6,6,1,0,1561,1821,1206,1398,329,395,9,5,5,6,0,0,12,17,1217,1413,332,398,19,21,6,6,1,0,8,5,8,3,0,2,0,0,0,0,0,0,0,0,8,3,0,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,8,16,2392,1054,1338,837,1014,202,305,5,1,4,6,0,0,6,12,843,1023,202,309,9,11,6,7,0,0,1047,1321,833,1004,202,300,4,1,3,4,0,0,5,12,838,1013,202,304,8,11,4,5,0,0,7,17,4,10,0,5,1,0,1,2,0,0,1,0,5,10,0,5,1,0,2,2,0,0 -050,01,121,Alabama,Talladega County,8,17,1549,599,950,500,745,95,196,0,1,1,0,0,0,3,8,503,752,96,198,2,8,1,1,0,1,596,946,497,743,95,195,0,1,1,0,0,0,3,7,500,749,96,196,2,8,1,0,0,0,3,4,3,2,0,1,0,0,0,0,0,0,0,1,3,3,0,2,0,0,0,1,0,1 -050,01,121,Alabama,Talladega County,8,18,1336,435,901,364,730,62,167,2,1,0,1,0,0,7,2,369,731,65,169,7,2,3,2,1,1,428,890,357,723,62,165,2,1,0,1,0,0,7,0,362,723,65,165,7,1,3,1,1,0,7,11,7,7,0,2,0,0,0,0,0,0,0,2,7,8,0,4,0,1,0,1,0,1 -050,01,121,Alabama,Talladega County,9,0,80598,38997,41601,25608,26654,12339,13919,180,132,219,248,8,7,643,641,26179,27217,12705,14290,444,406,318,339,32,33,37938,40895,24776,26110,12230,13835,126,112,209,244,8,4,589,590,25301,26631,12571,14184,362,359,293,325,25,23,1059,706,832,544,109,84,54,20,10,4,0,3,54,51,878,586,134,106,82,47,25,14,7,10 -050,01,121,Alabama,Talladega County,9,1,4290,2201,2089,1338,1290,721,692,7,8,9,3,0,0,126,96,1453,1381,822,771,33,21,26,15,1,1,2108,2007,1261,1228,718,682,4,2,5,3,0,0,120,92,1370,1315,814,760,28,14,21,12,1,1,93,82,77,62,3,10,3,6,4,0,0,0,6,4,83,66,8,11,5,7,5,3,0,0 -050,01,121,Alabama,Talladega County,9,2,4819,2373,2446,1430,1430,837,908,9,4,8,7,3,0,86,97,1513,1523,898,986,27,22,18,21,5,2,2277,2360,1354,1359,824,900,6,1,8,7,3,0,82,93,1434,1448,884,974,22,18,17,21,4,2,96,86,76,71,13,8,3,3,0,0,0,0,4,4,79,75,14,12,5,4,1,0,1,0 -050,01,121,Alabama,Talladega County,9,3,5074,2516,2558,1563,1542,851,921,5,5,8,16,0,0,89,74,1646,1611,911,970,26,27,21,24,3,3,2446,2490,1511,1486,841,917,3,3,7,16,0,0,84,68,1590,1551,898,963,21,20,19,24,3,2,70,68,52,56,10,4,2,2,1,0,0,0,5,6,56,60,13,7,5,7,2,0,0,1 -050,01,121,Alabama,Talladega County,9,4,5139,2554,2585,1511,1441,956,1068,9,6,8,13,0,0,70,57,1577,1489,1001,1108,32,23,18,21,2,3,2482,2539,1451,1402,953,1064,7,6,7,13,0,0,64,54,1512,1447,996,1103,25,21,16,21,1,3,72,46,60,39,3,4,2,0,1,0,0,0,6,3,65,42,5,5,7,2,2,0,1,0 -050,01,121,Alabama,Talladega County,9,5,5026,2507,2519,1436,1336,962,1117,13,13,50,8,1,1,45,44,1472,1375,987,1146,33,28,59,15,5,7,2423,2460,1372,1291,954,1109,6,12,50,8,1,1,40,39,1405,1326,978,1136,24,24,55,14,2,5,84,59,64,45,8,8,7,1,0,0,0,0,5,5,67,49,9,10,9,4,4,1,3,2 -050,01,121,Alabama,Talladega County,9,6,5365,2615,2750,1585,1662,977,1038,11,8,12,10,1,1,29,31,1608,1689,992,1056,30,17,16,17,2,2,2547,2691,1534,1621,968,1027,9,6,11,9,1,1,24,27,1552,1645,980,1042,25,14,14,15,2,2,68,59,51,41,9,11,2,2,1,1,0,0,5,4,56,44,12,14,5,3,2,2,0,0 -050,01,121,Alabama,Talladega County,9,7,4778,2344,2434,1495,1474,800,901,17,3,10,24,0,1,22,31,1509,1500,812,911,29,21,18,31,1,3,2193,2375,1372,1428,788,895,6,3,10,23,0,0,17,26,1382,1449,798,905,14,17,17,29,1,2,151,59,123,46,12,6,11,0,0,1,0,1,5,5,127,51,14,6,15,4,1,2,0,1 -050,01,121,Alabama,Talladega County,9,8,4776,2337,2439,1436,1490,834,897,22,3,17,28,0,1,28,20,1458,1504,845,905,39,16,25,34,2,2,2226,2395,1353,1453,824,895,11,3,15,28,0,0,23,16,1371,1463,833,902,25,13,22,33,1,1,111,44,83,37,10,2,11,0,2,0,0,1,5,4,87,41,12,3,14,3,3,1,1,1 -050,01,121,Alabama,Talladega County,9,9,5013,2487,2526,1617,1565,828,890,14,15,11,26,1,1,16,29,1632,1589,834,900,22,36,14,29,2,2,2405,2481,1553,1526,823,887,8,13,11,26,1,1,9,28,1561,1549,826,897,13,33,12,29,2,2,82,45,64,39,5,3,6,2,0,0,0,0,7,1,71,40,8,3,9,3,2,0,0,0 -050,01,121,Alabama,Talladega County,9,10,5564,2740,2824,1818,1780,855,971,12,15,31,38,0,0,24,20,1835,1796,864,978,27,28,36,41,2,3,2670,2782,1763,1750,843,964,10,14,31,38,0,0,23,16,1779,1764,852,970,25,26,35,40,2,0,70,42,55,30,12,7,2,1,0,0,0,0,1,4,56,32,12,8,2,2,1,1,0,3 -050,01,121,Alabama,Talladega County,9,11,5571,2745,2826,1845,1841,852,931,8,5,16,25,2,1,22,23,1864,1861,858,938,24,22,19,29,2,1,2704,2794,1812,1817,847,928,7,4,16,25,2,0,20,20,1829,1835,851,933,23,19,19,29,2,0,41,32,33,24,5,3,1,1,0,0,0,1,2,3,35,26,7,5,1,3,0,0,0,1 -050,01,121,Alabama,Talladega County,9,12,5941,2825,3116,1979,2047,798,996,17,24,12,15,0,1,19,33,1994,2072,804,1009,30,47,15,21,1,2,2789,3095,1952,2035,792,992,15,23,12,15,0,1,18,29,1967,2057,797,1002,28,46,14,19,1,2,36,21,27,12,6,4,2,1,0,0,0,0,1,4,27,15,7,7,2,1,1,2,0,0 -050,01,121,Alabama,Talladega County,9,13,5514,2678,2836,1878,1969,755,824,13,10,12,13,0,0,20,20,1897,1985,757,830,30,29,15,14,0,0,2643,2821,1852,1957,748,822,11,9,12,13,0,0,20,20,1871,1973,750,828,28,28,15,14,0,0,35,15,26,12,7,2,2,1,0,0,0,0,0,0,26,12,7,2,2,1,0,0,0,0 -050,01,121,Alabama,Talladega County,9,14,4941,2349,2592,1724,1866,595,687,8,4,4,8,0,0,18,27,1741,1891,596,692,23,27,5,11,2,1,2326,2582,1707,1859,590,685,8,4,4,8,0,0,17,26,1723,1883,591,690,22,26,5,11,2,1,23,10,17,7,5,2,0,0,0,0,0,0,1,1,18,8,5,2,1,1,0,0,0,0 -050,01,121,Alabama,Talladega County,9,15,3408,1545,1863,1196,1417,322,414,10,7,4,7,0,0,13,18,1208,1433,324,418,23,23,4,7,0,0,1535,1857,1187,1413,321,412,10,7,4,7,0,0,13,18,1199,1429,323,416,23,23,4,7,0,0,10,6,9,4,1,2,0,0,0,0,0,0,0,0,9,4,1,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,9,16,2457,1105,1352,863,1038,230,301,3,0,5,3,0,0,4,10,867,1047,230,303,6,9,6,3,0,0,1099,1341,858,1031,230,297,3,0,4,3,0,0,4,10,862,1040,230,299,6,9,5,3,0,0,6,11,5,7,0,4,0,0,1,0,0,0,0,0,5,7,0,4,0,0,1,0,0,0 -050,01,121,Alabama,Talladega County,9,17,1565,617,948,518,730,94,206,0,1,0,3,0,0,5,8,523,733,95,212,2,6,1,5,1,0,613,938,515,725,94,204,0,1,0,1,0,0,4,7,519,727,95,209,2,6,1,3,0,0,4,10,3,5,0,2,0,0,0,2,0,0,1,1,4,6,0,3,0,0,0,2,1,0 -050,01,121,Alabama,Talladega County,9,18,1357,459,898,376,736,72,157,2,1,2,1,0,0,7,3,382,738,75,157,8,4,2,1,1,1,452,887,369,729,72,155,2,1,2,1,0,0,7,1,375,730,75,155,8,2,2,1,1,0,7,11,7,7,0,2,0,0,0,0,0,0,0,2,7,8,0,2,0,2,0,0,0,1 -050,01,121,Alabama,Talladega County,10,0,80192,38742,41450,25363,26451,12333,13925,181,133,207,263,8,6,650,672,25939,27059,12720,14315,433,403,308,372,44,39,37620,40720,24481,25883,12216,13846,123,108,197,257,8,4,595,622,25017,26453,12573,14203,348,356,288,351,32,28,1122,730,882,568,117,79,58,25,10,6,0,2,55,50,922,606,147,112,85,47,20,21,12,11 -050,01,121,Alabama,Talladega County,10,1,4259,2161,2098,1299,1288,728,698,11,6,10,9,0,0,113,97,1403,1382,815,779,30,17,28,24,5,2,2074,2022,1230,1228,723,690,5,2,6,7,0,0,110,95,1332,1321,808,769,23,12,24,21,4,2,87,76,69,60,5,8,6,4,4,2,0,0,3,2,71,61,7,10,7,5,4,3,1,0 -050,01,121,Alabama,Talladega County,10,2,4730,2357,2373,1403,1391,840,867,7,5,6,7,3,0,98,103,1498,1487,915,948,24,23,16,22,7,1,2249,2282,1315,1318,828,858,4,0,6,7,3,0,93,99,1405,1411,901,937,18,15,16,22,6,1,108,91,88,73,12,9,3,5,0,0,0,0,5,4,93,76,14,11,6,8,0,0,1,0 -050,01,121,Alabama,Talladega County,10,3,4915,2403,2512,1494,1507,807,914,4,4,10,9,0,0,88,78,1576,1580,870,969,24,17,25,24,3,3,2326,2434,1437,1441,794,910,2,2,9,9,0,0,84,72,1517,1508,855,961,20,15,23,21,2,3,77,78,57,66,13,4,2,2,1,0,0,0,4,6,59,72,15,8,4,2,2,3,1,0 -050,01,121,Alabama,Talladega County,10,4,5068,2507,2561,1496,1429,927,1046,6,7,7,16,0,0,71,63,1564,1488,976,1088,26,23,16,25,5,1,2426,2508,1428,1386,924,1042,4,6,7,16,0,0,63,58,1490,1440,970,1080,20,21,14,24,3,1,81,53,68,43,3,4,2,1,0,0,0,0,8,5,74,48,6,8,6,2,2,1,2,0 -050,01,121,Alabama,Talladega County,10,5,4861,2418,2443,1403,1295,917,1078,12,10,39,10,0,1,47,49,1442,1341,942,1109,33,23,51,20,3,5,2316,2397,1322,1261,908,1071,5,9,38,10,0,1,43,45,1360,1303,932,1099,23,22,47,19,1,5,102,46,81,34,9,7,7,1,1,0,0,0,4,4,82,38,10,10,10,1,4,1,2,0 -050,01,121,Alabama,Talladega County,10,6,5470,2710,2760,1596,1653,1046,1050,12,11,13,13,2,1,41,32,1632,1680,1070,1068,32,24,19,21,4,3,2628,2698,1536,1606,1035,1042,9,8,12,12,2,1,34,29,1565,1632,1053,1057,26,20,18,19,4,2,82,62,60,47,11,8,3,3,1,1,0,0,7,3,67,48,17,11,6,4,1,2,0,1 -050,01,121,Alabama,Talladega County,10,7,4767,2320,2447,1462,1471,812,913,16,2,12,27,0,0,18,34,1472,1502,822,929,24,21,18,33,2,0,2184,2382,1350,1417,802,907,5,2,12,27,0,0,15,29,1359,1443,810,921,12,17,17,33,1,0,136,65,112,54,10,6,11,0,0,0,0,0,3,5,113,59,12,8,12,4,1,0,1,0 -050,01,121,Alabama,Talladega County,10,8,4825,2360,2465,1449,1486,853,922,18,6,12,27,0,1,28,23,1471,1504,865,936,38,19,17,32,2,6,2249,2416,1363,1449,845,919,8,4,10,26,0,0,23,18,1382,1463,853,929,24,16,15,30,1,4,111,49,86,37,8,3,10,2,2,1,0,1,5,5,89,41,12,7,14,3,2,2,1,2 -050,01,121,Alabama,Talladega County,10,9,4757,2356,2401,1530,1490,786,846,12,12,12,25,1,1,15,27,1542,1512,792,856,19,27,15,30,3,3,2261,2355,1457,1451,777,841,7,10,12,25,1,1,7,27,1463,1473,779,851,10,25,14,30,2,3,95,46,73,39,9,5,5,2,0,0,0,0,8,0,79,39,13,5,9,2,1,0,1,0 -050,01,121,Alabama,Talladega County,10,10,5568,2730,2838,1818,1787,860,971,15,15,16,37,0,0,21,28,1831,1808,871,981,31,36,18,41,1,5,2660,2797,1765,1754,848,968,11,14,16,37,0,0,20,24,1777,1774,858,974,27,32,18,39,1,3,70,41,53,33,12,3,4,1,0,0,0,0,1,4,54,34,13,7,4,4,0,2,0,2 -050,01,121,Alabama,Talladega County,10,11,5535,2725,2810,1814,1835,850,921,11,5,28,30,2,1,20,18,1830,1853,857,924,26,20,30,32,4,2,2677,2777,1775,1809,844,918,10,5,28,30,2,0,18,15,1789,1824,850,921,24,18,30,31,4,1,48,33,39,26,6,3,1,0,0,0,0,1,2,3,41,29,7,3,2,2,0,1,0,1 -050,01,121,Alabama,Talladega County,10,12,5715,2724,2991,1902,1933,770,990,18,21,14,17,0,1,20,29,1920,1959,773,999,31,46,20,21,1,1,2691,2968,1877,1920,766,985,16,20,14,17,0,1,18,25,1893,1942,769,992,28,42,19,20,1,1,33,23,25,13,4,5,2,1,0,0,0,0,2,4,27,17,4,7,3,4,1,1,0,0 -050,01,121,Alabama,Talladega County,10,13,5676,2734,2942,1913,2030,774,861,15,14,11,12,0,0,21,25,1929,2051,779,867,33,34,14,16,1,2,2692,2923,1882,2017,766,859,13,11,11,12,0,0,20,24,1898,2038,770,864,31,30,13,16,0,1,42,19,31,13,8,2,2,3,0,0,0,0,1,1,31,13,9,3,2,4,1,0,1,1 -050,01,121,Alabama,Talladega County,10,14,4806,2269,2537,1650,1799,587,706,7,3,6,6,0,0,19,23,1668,1819,589,712,22,23,8,7,1,0,2247,2530,1633,1793,582,705,7,3,6,6,0,0,19,23,1651,1813,584,711,22,23,8,7,1,0,22,7,17,6,5,1,0,0,0,0,0,0,0,0,17,6,5,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,10,15,3726,1689,2037,1314,1532,350,465,9,9,3,11,0,0,13,20,1326,1550,352,468,20,26,4,15,0,2,1679,2027,1307,1526,348,462,9,9,3,11,0,0,12,19,1318,1544,349,464,20,26,4,14,0,1,10,10,7,6,2,3,0,0,0,0,0,0,1,1,8,6,3,4,0,0,0,1,0,1 -050,01,121,Alabama,Talladega County,10,16,2520,1149,1371,887,1052,246,306,5,1,6,3,0,0,5,9,892,1060,247,307,9,10,6,3,0,0,1143,1364,882,1047,246,304,5,1,5,3,0,0,5,9,887,1055,247,305,9,10,5,3,0,0,6,7,5,5,0,2,0,0,1,0,0,0,0,0,5,5,0,2,0,0,1,0,0,0 -050,01,121,Alabama,Talladega County,10,17,1639,638,1001,532,762,101,224,1,1,0,3,0,0,4,11,535,771,102,227,3,10,1,4,1,1,634,987,529,755,101,220,1,1,0,1,0,0,3,10,531,763,102,223,3,10,1,1,0,0,4,14,3,7,0,4,0,0,0,2,0,0,1,1,4,8,0,4,0,0,0,3,1,1 -050,01,121,Alabama,Talladega County,10,18,1355,492,863,401,711,79,147,2,1,2,1,0,0,8,3,408,712,83,148,8,4,2,2,1,2,484,853,393,705,79,145,2,1,2,1,0,0,8,1,400,706,83,145,8,2,2,1,1,0,8,10,8,6,0,2,0,0,0,0,0,0,0,2,8,6,0,3,0,2,0,1,0,2 -050,01,121,Alabama,Talladega County,11,0,80219,38512,41707,25143,26366,12265,14202,182,135,207,274,10,12,705,718,25778,27012,12692,14620,443,425,329,385,38,51,37352,40954,24249,25786,12130,14111,118,116,196,264,10,8,649,669,24838,26393,12530,14501,351,386,304,361,31,39,1160,753,894,580,135,91,64,19,11,10,0,4,56,49,940,619,162,119,92,39,25,24,7,12 -050,01,121,Alabama,Talladega County,11,1,4312,2203,2109,1280,1244,761,737,13,7,10,14,0,0,139,107,1412,1345,872,826,35,21,32,30,2,1,2120,2028,1224,1185,747,727,5,3,6,9,0,0,138,104,1355,1283,858,814,26,16,28,25,2,1,83,81,56,59,14,10,8,4,4,5,0,0,1,3,57,62,14,12,9,5,4,5,0,0 -050,01,121,Alabama,Talladega County,11,2,4527,2303,2224,1380,1310,803,798,12,2,7,8,4,2,97,104,1472,1408,879,875,27,18,22,25,5,9,2185,2127,1288,1233,790,785,5,0,7,8,4,0,91,101,1374,1329,864,861,18,15,20,23,5,7,118,97,92,77,13,13,7,2,0,0,0,2,6,3,98,79,15,14,9,3,2,2,0,2 -050,01,121,Alabama,Talladega County,11,3,4983,2401,2582,1476,1559,805,914,4,5,11,7,0,1,105,96,1574,1649,882,979,26,30,30,22,5,3,2321,2503,1413,1492,796,910,2,2,10,7,0,1,100,91,1507,1577,869,973,24,24,28,21,4,3,80,79,63,67,9,4,2,3,1,0,0,0,5,5,67,72,13,6,2,6,2,1,1,0 -050,01,121,Alabama,Talladega County,11,4,5131,2456,2675,1479,1452,898,1136,5,6,7,18,0,0,67,63,1542,1509,942,1182,28,22,16,27,3,2,2367,2603,1407,1399,889,1126,3,5,7,18,0,0,61,55,1465,1449,931,1166,21,20,15,25,2,2,89,72,72,53,9,10,2,1,0,0,0,0,6,8,77,60,11,16,7,2,1,2,1,0 -050,01,121,Alabama,Talladega County,11,5,4955,2341,2614,1400,1270,847,1257,10,8,36,11,1,3,47,65,1438,1329,876,1301,26,30,45,24,7,11,2218,2568,1296,1238,841,1250,3,7,34,10,1,3,43,60,1333,1292,868,1290,17,28,40,21,5,10,123,46,104,32,6,7,7,1,2,1,0,0,4,5,105,37,8,11,9,2,5,3,2,1 -050,01,121,Alabama,Talladega County,11,6,5538,2790,2748,1614,1626,1095,1065,14,12,19,12,2,1,46,32,1653,1652,1122,1086,37,24,25,18,3,2,2695,2695,1550,1586,1077,1059,9,9,18,11,2,1,39,29,1582,1609,1100,1077,27,21,23,16,3,2,95,53,64,40,18,6,5,3,1,1,0,0,7,3,71,43,22,9,10,3,2,2,0,0 -050,01,121,Alabama,Talladega County,11,7,4727,2331,2396,1449,1469,837,872,16,3,6,22,0,1,23,29,1468,1496,848,885,25,19,15,27,0,1,2208,2343,1350,1424,827,867,7,3,6,22,0,1,18,26,1365,1449,836,879,13,17,13,26,0,1,123,53,99,45,10,5,9,0,0,0,0,0,5,3,103,47,12,6,12,2,2,1,0,0 -050,01,121,Alabama,Talladega County,11,8,4868,2355,2513,1448,1494,848,950,16,5,15,35,0,1,28,28,1472,1517,859,963,34,24,20,39,2,4,2242,2448,1364,1443,835,944,7,5,14,34,0,0,22,22,1382,1461,844,954,20,21,19,37,2,1,113,65,84,51,13,6,9,0,1,1,0,1,6,6,90,56,15,9,14,3,1,2,0,3 -050,01,121,Alabama,Talladega County,11,9,4584,2238,2346,1451,1465,742,830,13,13,16,13,1,0,15,25,1462,1489,749,835,21,28,19,17,3,3,2143,2303,1377,1427,735,827,7,11,15,13,1,0,8,25,1384,1451,737,832,14,26,15,17,1,3,95,43,74,38,7,3,6,2,1,0,0,0,7,0,78,38,12,3,7,2,4,0,2,0 -050,01,121,Alabama,Talladega County,11,10,5505,2660,2845,1784,1782,830,965,14,16,9,51,0,1,23,30,1801,1807,840,976,28,36,16,57,1,5,2592,2800,1733,1746,819,961,10,15,9,51,0,1,21,26,1748,1769,828,970,23,33,16,54,1,3,68,45,51,36,11,4,4,1,0,0,0,0,2,4,53,38,12,6,5,3,0,3,0,2 -050,01,121,Alabama,Talladega County,11,11,5370,2627,2743,1758,1788,811,903,6,8,33,23,2,1,17,20,1775,1806,814,908,19,23,37,28,3,2,2585,2718,1723,1771,806,899,5,8,33,23,2,0,16,17,1739,1788,809,902,17,21,37,27,3,0,42,25,35,17,5,4,1,0,0,0,0,1,1,3,36,18,5,6,2,2,0,1,0,2 -050,01,121,Alabama,Talladega County,11,12,5650,2669,2981,1868,1943,751,978,14,16,14,20,0,1,22,23,1888,1960,756,986,29,35,18,22,1,2,2627,2950,1834,1919,747,974,13,15,14,20,0,1,19,21,1852,1934,750,980,27,34,18,22,0,2,42,31,34,24,4,4,1,1,0,0,0,0,3,2,36,26,6,6,2,1,0,0,1,0 -050,01,121,Alabama,Talladega County,11,13,5695,2716,2979,1869,2032,797,889,19,17,8,15,0,0,23,26,1887,2054,804,896,40,39,9,17,1,2,2679,2962,1844,2020,789,887,16,16,8,15,0,0,22,24,1861,2041,796,894,36,36,9,17,1,1,37,17,25,12,8,2,3,1,0,0,0,0,1,2,26,13,8,2,4,3,0,0,0,1 -050,01,121,Alabama,Talladega County,11,14,4775,2288,2487,1642,1743,613,706,7,5,6,8,0,0,20,25,1660,1765,614,711,24,27,10,10,0,1,2267,2480,1625,1737,609,705,7,5,6,8,0,0,20,25,1643,1759,610,710,24,27,10,10,0,1,21,7,17,6,4,1,0,0,0,0,0,0,0,0,17,6,4,1,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,11,15,3891,1792,2099,1376,1561,392,502,6,7,3,9,0,0,15,20,1391,1577,395,508,18,20,4,13,0,2,1780,2092,1369,1556,388,500,6,7,3,9,0,0,14,20,1383,1572,390,506,18,20,4,13,0,2,12,7,7,5,4,2,0,0,0,0,0,0,1,0,8,5,5,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,11,16,2632,1188,1444,927,1106,244,320,9,3,3,3,0,0,5,12,931,1116,244,322,13,15,4,3,1,0,1182,1436,921,1101,244,317,9,3,3,3,0,0,5,12,925,1111,244,319,13,15,4,3,1,0,6,8,6,5,0,3,0,0,0,0,0,0,0,0,6,5,0,3,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,11,17,1688,667,1021,539,780,119,226,2,0,2,4,0,0,5,11,544,790,121,227,3,10,4,5,1,0,662,1007,536,772,119,222,2,0,1,2,0,0,4,11,540,782,121,223,3,10,2,3,1,0,5,14,3,8,0,4,0,0,1,2,0,0,1,0,4,8,0,4,0,0,2,2,0,0 -050,01,121,Alabama,Talladega County,11,18,1388,487,901,403,742,72,154,2,2,2,1,0,0,8,2,408,743,75,154,10,4,3,1,0,1,479,891,395,737,72,151,2,2,2,1,0,0,8,0,400,737,75,151,10,2,3,1,0,0,8,10,8,5,0,3,0,0,0,0,0,0,0,2,8,6,0,3,0,2,0,0,0,1 -050,01,121,Alabama,Talladega County,12,0,80226,38657,41569,25141,26209,12388,14211,195,139,203,290,11,9,719,711,25791,26856,12813,14620,464,433,324,395,44,50,37465,40787,24234,25620,12245,14115,124,116,194,279,11,5,657,652,24838,26215,12639,14495,366,378,291,369,36,39,1192,782,907,589,143,96,71,23,9,11,0,4,62,59,953,641,174,125,98,55,33,26,8,11 -050,01,121,Alabama,Talladega County,12,1,4300,2230,2070,1289,1176,786,768,10,11,10,16,0,0,135,99,1421,1271,892,847,28,28,29,25,5,1,2144,1986,1230,1120,769,756,5,6,6,10,0,0,134,94,1361,1210,875,834,23,20,24,19,5,0,86,84,59,56,17,12,5,5,4,6,0,0,1,5,60,61,17,13,5,8,5,6,0,1 -050,01,121,Alabama,Talladega County,12,2,4427,2245,2182,1362,1310,754,763,15,2,6,4,3,1,105,102,1464,1406,836,843,33,20,23,16,7,5,2134,2082,1279,1227,742,755,6,0,6,4,3,0,98,96,1374,1317,822,831,21,16,20,16,6,4,111,100,83,83,12,8,9,2,0,0,0,1,7,6,90,89,14,12,12,4,3,0,1,1 -050,01,121,Alabama,Talladega County,12,3,4993,2394,2599,1470,1550,813,934,9,7,9,13,0,1,93,94,1560,1638,879,1007,30,26,19,29,3,5,2297,2513,1394,1484,804,926,3,2,9,13,0,0,87,88,1479,1567,866,994,21,19,18,28,3,3,97,86,76,66,9,8,6,5,0,0,0,1,6,6,81,71,13,13,9,7,1,1,0,2 -050,01,121,Alabama,Talladega County,12,4,5022,2430,2592,1456,1417,884,1088,4,6,10,19,0,0,76,62,1525,1473,933,1130,25,25,28,29,6,2,2343,2515,1388,1359,873,1079,3,5,9,19,0,0,70,53,1453,1407,920,1116,22,22,23,26,5,2,87,77,68,58,11,9,1,1,1,0,0,0,6,9,72,66,13,14,3,3,5,3,1,0 -050,01,121,Alabama,Talladega County,12,5,4925,2321,2604,1398,1285,837,1232,11,6,23,13,1,1,51,67,1440,1345,868,1275,31,28,34,28,6,8,2202,2557,1299,1252,829,1224,4,5,23,12,1,1,46,63,1339,1308,859,1264,22,25,30,25,3,8,119,47,99,33,8,8,7,1,0,1,0,0,5,4,101,37,9,11,9,3,4,3,3,0 -050,01,121,Alabama,Talladega County,12,6,5479,2791,2688,1604,1582,1099,1050,14,14,24,4,3,2,47,36,1644,1614,1125,1070,36,29,32,10,4,8,2710,2639,1551,1542,1084,1046,9,13,24,3,3,2,39,33,1584,1572,1104,1066,27,25,31,8,4,6,81,49,53,40,15,4,5,1,0,1,0,0,8,3,60,42,21,4,9,4,1,2,0,2 -050,01,121,Alabama,Talladega County,12,7,4940,2498,2442,1530,1510,915,877,17,4,8,23,0,0,28,28,1553,1537,927,890,32,17,16,30,0,0,2362,2384,1420,1467,906,870,7,1,7,23,0,0,22,23,1438,1489,916,880,19,11,12,29,0,0,136,58,110,43,9,7,10,3,1,0,0,0,6,5,115,48,11,10,13,6,4,1,0,0 -050,01,121,Alabama,Talladega County,12,8,4793,2314,2479,1451,1455,805,952,15,5,13,42,0,0,30,25,1475,1477,815,963,32,22,21,44,2,2,2201,2420,1364,1410,792,945,8,5,12,41,0,0,25,19,1385,1426,800,954,22,17,18,43,1,2,113,59,87,45,13,7,7,0,1,1,0,0,5,6,90,51,15,9,10,5,3,1,1,0 -050,01,121,Alabama,Talladega County,12,9,4625,2257,2368,1435,1481,776,842,18,12,15,11,0,1,13,21,1445,1501,781,847,26,27,18,14,0,2,2154,2325,1361,1443,765,840,7,10,14,11,0,0,7,21,1367,1463,766,845,13,25,15,14,0,1,103,43,74,38,11,2,11,2,1,0,0,1,6,0,78,38,15,2,13,2,3,0,0,1 -050,01,121,Alabama,Talladega County,12,10,5407,2603,2804,1717,1737,841,973,13,10,9,54,1,1,22,29,1733,1762,852,983,25,29,13,60,3,5,2530,2752,1663,1696,831,967,9,9,9,54,1,1,17,25,1675,1718,839,975,19,26,13,57,2,4,73,52,54,41,10,6,4,1,0,0,0,0,5,4,58,44,13,8,6,3,0,3,1,1 -050,01,121,Alabama,Talladega County,12,11,5287,2623,2664,1770,1719,790,892,9,10,35,23,1,0,18,20,1787,1736,794,894,22,22,38,27,1,6,2575,2633,1732,1696,782,887,8,10,35,23,1,0,17,17,1748,1711,785,889,21,19,38,26,1,6,48,31,38,23,8,5,1,0,0,0,0,0,1,3,39,25,9,5,1,3,0,1,0,0 -050,01,121,Alabama,Talladega County,12,12,5635,2684,2951,1842,1947,789,941,14,15,16,26,1,2,22,20,1859,1964,797,948,30,32,18,27,4,3,2643,2925,1809,1928,785,938,13,14,16,26,1,1,19,18,1823,1943,792,945,27,29,17,27,3,2,41,26,33,19,4,3,1,1,0,0,0,1,3,2,36,21,5,3,3,3,1,0,1,1 -050,01,121,Alabama,Talladega County,12,13,5623,2652,2971,1833,1978,772,927,16,19,8,14,0,0,23,33,1852,2007,777,937,38,43,9,20,0,1,2613,2950,1805,1965,765,924,13,18,8,14,0,0,22,29,1824,1990,769,932,34,41,9,19,0,1,39,21,28,13,7,3,3,1,0,0,0,0,1,4,28,17,8,5,4,2,0,1,0,0 -050,01,121,Alabama,Talladega County,12,14,4868,2321,2547,1639,1791,647,718,10,7,6,8,1,0,18,23,1655,1813,649,720,25,26,9,11,1,0,2300,2538,1622,1784,643,716,10,7,6,8,1,0,18,23,1638,1806,645,718,25,26,9,11,1,0,21,9,17,7,4,2,0,0,0,0,0,0,0,0,17,7,4,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,12,15,4034,1883,2151,1421,1587,438,527,5,5,2,9,0,0,17,23,1436,1608,442,530,20,25,5,11,1,0,1866,2144,1411,1582,433,525,4,5,2,9,0,0,16,23,1426,1603,436,528,19,25,4,11,1,0,17,7,10,5,5,2,1,0,0,0,0,0,1,0,10,5,6,2,1,0,1,0,0,0 -050,01,121,Alabama,Talladega County,12,16,2711,1211,1500,953,1150,237,325,11,4,4,6,0,0,6,15,959,1162,237,328,17,19,4,6,0,0,1206,1494,948,1146,237,323,11,4,4,6,0,0,6,15,954,1158,237,326,17,19,4,6,0,0,5,6,5,4,0,2,0,0,0,0,0,0,0,0,5,4,0,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,12,17,1700,710,990,565,752,134,224,2,0,3,4,0,0,6,10,569,759,136,227,6,9,5,5,0,0,704,974,561,743,134,219,2,0,2,2,0,0,5,10,565,750,135,222,6,9,3,3,0,0,6,16,4,9,0,5,0,0,1,2,0,0,1,0,4,9,1,5,0,0,2,2,0,0 -050,01,121,Alabama,Talladega County,12,18,1457,490,967,406,782,71,178,2,2,2,1,0,0,9,4,414,783,73,181,8,6,3,3,1,2,481,956,397,776,71,175,2,2,2,1,0,0,9,2,405,777,73,176,8,4,3,1,1,0,9,11,9,6,0,3,0,0,0,0,0,0,0,2,9,6,0,5,0,2,0,2,0,2 -050,01,121,Alabama,Talladega County,13,0,79985,38555,41430,25056,26089,12348,14184,198,143,211,268,10,7,732,739,25713,26753,12782,14608,462,427,343,391,55,53,37345,40636,24133,25498,12205,14084,126,117,202,257,10,3,669,677,24741,26117,12606,14475,359,370,317,360,42,39,1210,794,923,591,143,100,72,26,9,11,0,4,63,62,972,636,176,133,103,57,26,31,13,14 -050,01,121,Alabama,Talladega County,13,1,4321,2249,2072,1276,1166,817,781,10,11,7,13,0,0,139,101,1410,1260,923,860,31,27,30,27,7,2,2160,1983,1210,1110,805,767,4,5,5,7,0,0,136,94,1341,1199,909,842,24,19,27,18,7,2,89,89,66,56,12,14,6,6,2,6,0,0,3,7,69,61,14,18,7,8,3,9,0,0 -050,01,121,Alabama,Talladega County,13,2,4361,2211,2150,1340,1296,723,739,13,5,8,5,3,0,124,105,1460,1392,819,821,32,25,22,20,5,4,2104,2069,1262,1228,711,732,5,4,6,5,3,0,117,100,1375,1321,802,811,22,22,20,18,5,3,107,81,78,68,12,7,8,1,2,0,0,0,7,5,85,71,17,10,10,3,2,2,0,1 -050,01,121,Alabama,Talladega County,13,3,4899,2370,2529,1483,1496,791,912,10,8,13,11,0,2,73,100,1549,1588,840,987,25,30,27,24,4,8,2269,2432,1402,1422,781,903,5,2,13,11,0,0,68,94,1463,1508,828,975,19,20,25,24,3,6,101,97,81,74,10,9,5,6,0,0,0,2,5,6,86,80,12,12,6,10,2,0,1,2 -050,01,121,Alabama,Talladega County,13,4,4888,2328,2560,1392,1388,843,1088,4,4,9,17,0,0,80,63,1468,1443,894,1135,27,20,26,27,6,2,2248,2482,1331,1330,834,1079,1,3,8,17,0,0,74,53,1403,1378,884,1119,20,16,21,25,4,1,80,78,61,58,9,9,3,1,1,0,0,0,6,10,65,65,10,16,7,4,5,2,2,1 -050,01,121,Alabama,Talladega County,13,5,4979,2355,2624,1422,1309,840,1222,11,7,28,15,1,0,53,71,1464,1376,874,1265,33,28,39,28,6,8,2233,2571,1320,1268,834,1213,4,6,27,15,1,0,47,69,1359,1334,867,1254,21,26,35,28,4,7,122,53,102,41,6,9,7,1,1,0,0,0,6,2,105,42,7,11,12,2,4,0,2,1 -050,01,121,Alabama,Talladega County,13,6,5222,2713,2509,1574,1502,1053,948,13,11,24,7,1,0,48,41,1613,1538,1078,971,33,26,35,14,8,4,2631,2463,1516,1468,1038,943,10,11,24,5,1,0,42,36,1551,1499,1059,965,27,23,34,11,6,2,82,46,58,34,15,5,3,0,0,2,0,0,6,5,62,39,19,6,6,3,1,3,2,2 -050,01,121,Alabama,Talladega County,13,7,5151,2580,2571,1558,1572,968,944,17,7,5,20,0,1,32,27,1583,1594,986,955,29,20,16,26,2,3,2444,2520,1452,1535,952,938,9,3,4,20,0,1,27,23,1474,1555,967,949,19,13,13,25,1,1,136,51,106,37,16,6,8,4,1,0,0,0,5,4,109,39,19,6,10,7,3,1,1,2 -050,01,121,Alabama,Talladega County,13,8,4755,2262,2493,1429,1475,778,954,18,5,13,34,0,0,24,25,1448,1498,791,964,30,21,16,41,1,4,2156,2422,1348,1419,768,947,8,5,13,33,0,0,19,18,1363,1437,776,953,19,16,16,36,1,1,106,71,81,56,10,7,10,0,0,1,0,0,5,7,85,61,15,11,11,5,0,5,0,3 -050,01,121,Alabama,Talladega County,13,9,4652,2246,2406,1430,1494,773,856,16,13,10,18,1,1,16,24,1443,1516,778,864,26,29,15,22,6,3,2138,2361,1352,1456,760,855,5,9,9,18,1,0,11,23,1362,1477,763,863,12,24,12,22,2,2,108,45,78,38,13,1,11,4,1,0,0,1,5,1,81,39,15,1,14,5,3,0,4,1 -050,01,121,Alabama,Talladega County,13,10,5191,2547,2644,1657,1634,835,938,15,10,15,32,1,1,24,29,1677,1656,845,947,31,27,19,40,3,4,2466,2601,1597,1601,827,931,10,9,15,32,1,1,16,27,1610,1623,833,939,21,25,18,38,2,4,81,43,60,33,8,7,5,1,0,0,0,0,8,2,67,33,12,8,10,2,1,2,1,0 -050,01,121,Alabama,Talladega County,13,11,5332,2622,2710,1765,1728,794,918,10,15,32,30,1,0,20,19,1782,1743,800,927,23,26,37,36,1,3,2571,2672,1726,1700,784,912,9,15,32,30,1,0,19,15,1743,1712,789,918,22,24,36,34,1,3,51,38,39,28,10,6,1,0,0,0,0,0,1,4,39,31,11,9,1,2,1,2,0,0 -050,01,121,Alabama,Talladega County,13,12,5500,2672,2828,1845,1884,776,890,11,8,18,22,1,1,21,23,1864,1906,782,896,27,22,20,28,2,1,2629,2798,1809,1861,773,888,10,7,18,22,1,0,18,20,1825,1880,777,894,24,20,20,26,2,0,43,30,36,23,3,2,1,1,0,0,0,1,3,3,39,26,5,2,3,2,0,2,0,1 -050,01,121,Alabama,Talladega County,13,13,5631,2609,3022,1809,2005,754,954,15,17,12,13,0,1,19,32,1825,2032,757,963,31,41,15,16,0,4,2579,2998,1787,1990,749,950,13,16,12,13,0,1,18,28,1802,2014,751,956,29,37,15,16,0,4,30,24,22,15,5,4,2,1,0,0,0,0,1,4,23,18,6,7,2,4,0,0,0,0 -050,01,121,Alabama,Talladega County,13,14,4957,2370,2587,1674,1809,662,737,13,11,3,8,1,0,17,22,1689,1830,664,740,26,28,6,11,2,1,2339,2578,1652,1802,654,735,12,11,3,8,1,0,17,22,1667,1823,656,738,25,28,6,11,2,1,31,9,22,7,8,2,1,0,0,0,0,0,0,0,22,7,8,2,1,0,0,0,0,0 -050,01,121,Alabama,Talladega County,13,15,4208,1983,2225,1463,1629,491,559,8,4,5,10,0,0,16,23,1478,1650,493,561,23,23,7,13,1,1,1960,2217,1448,1623,485,557,7,4,5,10,0,0,15,23,1462,1644,487,559,21,23,7,13,1,1,23,8,15,6,6,2,1,0,0,0,0,0,1,0,16,6,6,2,2,0,0,0,0,0 -050,01,121,Alabama,Talladega County,13,16,2743,1212,1531,947,1173,242,329,8,5,4,6,0,0,11,18,957,1188,244,333,17,20,5,8,1,1,1207,1525,942,1169,242,327,8,5,4,6,0,0,11,18,952,1184,244,331,17,20,5,8,1,1,5,6,5,4,0,2,0,0,0,0,0,0,0,0,5,4,0,2,0,0,0,0,0,0 -050,01,121,Alabama,Talladega County,13,17,1759,724,1035,582,778,129,239,4,0,3,6,0,0,6,12,587,789,131,241,9,10,3,8,0,0,720,1018,580,768,129,234,4,0,2,4,0,0,5,12,584,779,131,236,8,10,2,6,0,0,4,17,2,10,0,5,0,0,1,2,0,0,1,0,3,10,0,5,1,0,1,2,0,0 -050,01,121,Alabama,Talladega County,13,18,1436,502,934,410,751,79,176,2,2,2,1,0,0,9,4,416,754,83,178,9,4,5,2,0,0,491,926,399,748,79,173,2,2,2,1,0,0,9,2,405,750,83,173,9,4,5,1,0,0,11,8,11,3,0,3,0,0,0,0,0,0,0,2,11,4,0,5,0,0,0,1,0,0 -050,01,123,Alabama,Tallapoosa County,1,0,41616,20190,21426,14646,15032,5171,6006,68,66,92,113,9,6,204,203,14813,15204,5281,6121,169,158,118,136,26,27,19569,21005,14152,14709,5107,5950,56,64,89,110,0,2,165,170,14290,14856,5196,6050,138,138,112,130,7,15,621,421,494,323,64,56,12,2,3,3,9,4,39,33,523,348,85,71,31,20,6,6,19,12 -050,01,123,Alabama,Tallapoosa County,1,1,2410,1221,1189,762,729,417,409,3,4,8,15,0,0,31,32,791,756,445,434,4,10,13,17,0,5,1158,1115,709,668,412,401,2,4,8,15,0,0,27,27,734,691,437,424,2,8,13,16,0,4,63,74,53,61,5,8,1,0,0,0,0,0,4,5,57,65,8,10,2,2,0,1,0,1 -050,01,123,Alabama,Tallapoosa County,1,2,2372,1208,1164,775,744,398,381,3,3,8,14,1,0,23,22,796,764,417,398,9,8,10,16,2,2,1151,1130,728,713,394,381,3,3,8,13,0,0,18,20,745,732,409,398,7,6,10,15,0,1,57,34,47,31,4,0,0,0,0,1,1,0,5,2,51,32,8,0,2,2,0,1,2,1 -050,01,123,Alabama,Tallapoosa County,1,3,2691,1396,1295,893,809,468,459,3,5,6,2,2,0,24,20,915,828,486,479,10,9,7,2,3,0,1359,1276,863,796,465,455,3,4,6,2,0,0,22,19,883,814,482,474,9,8,7,2,1,0,37,19,30,13,3,4,0,1,0,0,2,0,2,1,32,14,4,5,1,1,0,0,2,0 -050,01,123,Alabama,Tallapoosa County,1,4,2848,1480,1368,989,834,449,508,6,2,10,7,1,0,25,17,1006,849,462,520,20,7,15,10,5,0,1441,1332,962,807,445,503,6,1,9,7,0,0,19,14,975,819,456,513,16,6,12,9,2,0,39,36,27,27,4,5,0,1,1,0,1,0,6,3,31,30,6,7,4,1,3,1,3,0 -050,01,123,Alabama,Tallapoosa County,1,5,2237,1102,1135,741,686,336,428,10,4,3,4,3,1,9,12,748,694,339,435,16,11,4,7,5,3,1015,1098,677,659,327,420,4,4,3,4,0,0,4,11,680,667,328,427,8,10,3,7,1,1,87,37,64,27,9,8,6,0,0,0,3,1,5,1,68,27,11,8,8,1,1,0,4,2 -050,01,123,Alabama,Tallapoosa County,1,6,2236,1070,1166,739,747,313,394,5,0,9,12,0,2,4,11,743,757,317,399,5,5,9,14,0,3,976,1106,662,702,300,383,5,0,9,11,0,1,0,9,662,710,300,386,5,4,9,13,0,2,94,60,77,45,13,11,0,0,0,1,0,1,4,2,81,47,17,13,0,1,0,1,0,1 -050,01,123,Alabama,Tallapoosa County,1,7,2160,1081,1079,780,707,285,350,3,2,5,12,0,0,8,8,787,713,288,355,5,5,9,15,1,1,1007,1037,719,676,277,343,1,2,5,12,0,0,5,4,724,679,278,347,1,3,9,14,0,0,74,42,61,31,8,7,2,0,0,0,0,0,3,4,63,34,10,8,4,2,0,1,1,1 -050,01,123,Alabama,Tallapoosa County,1,8,2582,1197,1385,845,940,327,415,4,3,12,13,0,0,9,14,851,952,329,419,11,12,12,15,3,2,1138,1345,795,910,323,412,4,3,12,13,0,0,4,7,799,917,324,413,7,7,12,15,0,0,59,40,50,30,4,3,0,0,0,0,0,0,5,7,52,35,5,6,4,5,0,0,3,2 -050,01,123,Alabama,Tallapoosa County,1,9,2716,1331,1385,973,940,329,424,5,4,11,6,2,1,11,10,982,947,331,427,15,11,11,7,4,4,1291,1359,944,922,326,422,3,4,10,6,0,0,8,5,951,926,327,423,11,8,10,7,1,1,40,26,29,18,3,2,2,0,1,0,2,1,3,5,31,21,4,4,4,3,1,0,3,3 -050,01,123,Alabama,Tallapoosa County,1,10,2938,1449,1489,1068,1057,358,410,4,5,6,6,0,2,13,9,1075,1065,364,412,16,13,7,6,0,3,1429,1468,1051,1041,356,409,4,5,5,5,0,1,13,7,1058,1047,362,410,16,11,6,5,0,2,20,21,17,16,2,1,0,0,1,1,0,1,0,2,17,18,2,2,0,2,1,1,0,1 -050,01,123,Alabama,Tallapoosa County,1,11,3248,1579,1669,1183,1217,365,421,9,14,6,7,0,0,16,10,1194,1226,373,424,18,20,11,9,1,0,1569,1665,1176,1214,364,420,8,14,6,7,0,0,15,10,1186,1223,371,423,17,20,11,9,1,0,10,4,7,3,1,1,1,0,0,0,0,0,1,0,8,3,2,1,1,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,12,3039,1499,1540,1121,1155,364,365,2,4,3,7,0,0,9,9,1130,1164,364,365,10,11,3,7,1,2,1481,1534,1107,1149,360,365,2,4,3,7,0,0,9,9,1116,1158,360,365,10,11,3,7,1,2,18,6,14,6,4,0,0,0,0,0,0,0,0,0,14,6,4,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,13,2946,1432,1514,1149,1182,269,316,6,7,2,4,0,0,6,5,1155,1186,269,318,11,11,3,4,0,0,1426,1506,1146,1177,266,314,6,7,2,4,0,0,6,4,1152,1180,266,315,11,11,3,4,0,0,6,8,3,5,3,2,0,0,0,0,0,0,0,1,3,6,3,3,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,14,2325,1110,1215,921,995,178,211,3,3,1,2,0,0,7,4,926,998,180,213,8,5,2,3,1,1,1103,1211,915,993,178,209,3,3,1,2,0,0,6,4,920,996,180,211,7,5,2,3,0,1,7,4,6,2,0,2,0,0,0,0,0,0,1,0,6,2,0,2,1,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,1,15,1782,820,962,680,783,134,170,2,4,1,1,0,0,3,4,683,786,134,172,5,7,1,1,0,0,814,955,675,778,133,168,2,4,1,1,0,0,3,4,678,781,133,170,5,7,1,1,0,0,6,7,5,5,1,2,0,0,0,0,0,0,0,0,5,5,1,2,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,16,1332,563,769,483,630,79,133,0,0,0,0,0,0,1,6,483,634,80,136,1,3,0,1,0,1,562,768,482,629,79,133,0,0,0,0,0,0,1,6,482,633,80,136,1,3,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,17,960,385,575,320,456,60,111,0,1,1,1,0,0,4,6,323,461,61,113,4,6,1,1,0,0,383,574,318,455,60,111,0,1,1,1,0,0,4,6,321,460,61,113,4,6,1,1,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,1,18,794,267,527,224,421,42,101,0,1,0,0,0,0,1,4,225,424,42,102,1,4,0,1,0,0,266,526,223,420,42,101,0,1,0,0,0,0,1,4,224,423,42,102,1,4,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,0,41621,20193,21428,14648,15033,5171,6006,68,66,92,113,9,6,205,204,14815,15205,5281,6121,170,159,118,136,27,28,19572,21006,14155,14710,5107,5950,56,64,89,110,0,2,165,170,14293,14857,5196,6050,138,138,112,130,7,15,621,422,493,323,64,56,12,2,3,3,9,4,40,34,522,348,85,71,32,21,6,6,20,13 -050,01,123,Alabama,Tallapoosa County,2,1,2410,1221,1189,762,729,417,409,3,4,8,15,0,0,31,32,791,756,445,434,4,10,13,17,0,5,1158,1115,709,668,412,401,2,4,8,15,0,0,27,27,734,691,437,424,2,8,13,16,0,4,63,74,53,61,5,8,1,0,0,0,0,0,4,5,57,65,8,10,2,2,0,1,0,1 -050,01,123,Alabama,Tallapoosa County,2,2,2370,1208,1162,775,742,398,381,3,3,8,14,1,0,23,22,796,762,417,398,9,8,10,16,2,2,1151,1128,728,711,394,381,3,3,8,13,0,0,18,20,745,730,409,398,7,6,10,15,0,1,57,34,47,31,4,0,0,0,0,1,1,0,5,2,51,32,8,0,2,2,0,1,2,1 -050,01,123,Alabama,Tallapoosa County,2,3,2692,1396,1296,893,810,468,459,3,5,6,2,2,0,24,20,915,829,486,479,10,9,7,2,3,0,1359,1277,863,797,465,455,3,4,6,2,0,0,22,19,883,815,482,474,9,8,7,2,1,0,37,19,30,13,3,4,0,1,0,0,2,0,2,1,32,14,4,5,1,1,0,0,2,0 -050,01,123,Alabama,Tallapoosa County,2,4,2848,1480,1368,989,834,449,508,6,2,10,7,1,0,25,17,1006,849,462,520,20,7,15,10,5,0,1441,1332,962,807,445,503,6,1,9,7,0,0,19,14,975,819,456,513,16,6,12,9,2,0,39,36,27,27,4,5,0,1,1,0,1,0,6,3,31,30,6,7,4,1,3,1,3,0 -050,01,123,Alabama,Tallapoosa County,2,5,2237,1102,1135,741,686,336,428,10,4,3,4,3,1,9,12,748,694,339,435,16,11,4,7,5,3,1015,1098,677,659,327,420,4,4,3,4,0,0,4,11,680,667,328,427,8,10,3,7,1,1,87,37,64,27,9,8,6,0,0,0,3,1,5,1,68,27,11,8,8,1,1,0,4,2 -050,01,123,Alabama,Tallapoosa County,2,6,2236,1070,1166,739,747,313,394,5,0,9,12,0,2,4,11,743,757,317,399,5,5,9,14,0,3,976,1106,662,702,300,383,5,0,9,11,0,1,0,9,662,710,300,386,5,4,9,13,0,2,94,60,77,45,13,11,0,0,0,1,0,1,4,2,81,47,17,13,0,1,0,1,0,1 -050,01,123,Alabama,Tallapoosa County,2,7,2160,1081,1079,780,707,285,350,3,2,5,12,0,0,8,8,787,713,288,355,5,5,9,15,1,1,1007,1037,719,676,277,343,1,2,5,12,0,0,5,4,724,679,278,347,1,3,9,14,0,0,74,42,61,31,8,7,2,0,0,0,0,0,3,4,63,34,10,8,4,2,0,1,1,1 -050,01,123,Alabama,Tallapoosa County,2,8,2582,1195,1387,843,941,327,415,4,3,12,13,0,0,9,15,849,953,329,419,11,13,12,15,3,3,1137,1346,794,911,323,412,4,3,12,13,0,0,4,7,798,918,324,413,7,7,12,15,0,0,58,41,49,30,4,3,0,0,0,0,0,0,5,8,51,35,5,6,4,6,0,0,3,3 -050,01,123,Alabama,Tallapoosa County,2,9,2717,1332,1385,973,940,329,424,5,4,11,6,2,1,12,10,982,947,331,427,16,11,11,7,5,4,1291,1359,944,922,326,422,3,4,10,6,0,0,8,5,951,926,327,423,11,8,10,7,1,1,41,26,29,18,3,2,2,0,1,0,2,1,4,5,31,21,4,4,5,3,1,0,4,3 -050,01,123,Alabama,Tallapoosa County,2,10,2939,1450,1489,1069,1057,358,410,4,5,6,6,0,2,13,9,1076,1065,364,412,16,13,7,6,0,3,1430,1468,1052,1041,356,409,4,5,5,5,0,1,13,7,1059,1047,362,410,16,11,6,5,0,2,20,21,17,16,2,1,0,0,1,1,0,1,0,2,17,18,2,2,0,2,1,1,0,1 -050,01,123,Alabama,Tallapoosa County,2,11,3250,1580,1670,1184,1218,365,421,9,14,6,7,0,0,16,10,1195,1227,373,424,18,20,11,9,1,0,1570,1666,1177,1215,364,420,8,14,6,7,0,0,15,10,1187,1224,371,423,17,20,11,9,1,0,10,4,7,3,1,1,1,0,0,0,0,0,1,0,8,3,2,1,1,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,12,3041,1501,1540,1123,1155,364,365,2,4,3,7,0,0,9,9,1132,1164,364,365,10,11,3,7,1,2,1483,1534,1109,1149,360,365,2,4,3,7,0,0,9,9,1118,1158,360,365,10,11,3,7,1,2,18,6,14,6,4,0,0,0,0,0,0,0,0,0,14,6,4,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,13,2946,1432,1514,1149,1182,269,316,6,7,2,4,0,0,6,5,1155,1186,269,318,11,11,3,4,0,0,1426,1506,1146,1177,266,314,6,7,2,4,0,0,6,4,1152,1180,266,315,11,11,3,4,0,0,6,8,3,5,3,2,0,0,0,0,0,0,0,1,3,6,3,3,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,14,2325,1110,1215,921,995,178,211,3,3,1,2,0,0,7,4,926,998,180,213,8,5,2,3,1,1,1103,1211,915,993,178,209,3,3,1,2,0,0,6,4,920,996,180,211,7,5,2,3,0,1,7,4,6,2,0,2,0,0,0,0,0,0,1,0,6,2,0,2,1,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,2,15,1782,820,962,680,783,134,170,2,4,1,1,0,0,3,4,683,786,134,172,5,7,1,1,0,0,814,955,675,778,133,168,2,4,1,1,0,0,3,4,678,781,133,170,5,7,1,1,0,0,6,7,5,5,1,2,0,0,0,0,0,0,0,0,5,5,1,2,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,16,1332,563,769,483,630,79,133,0,0,0,0,0,0,1,6,483,634,80,136,1,3,0,1,0,1,562,768,482,629,79,133,0,0,0,0,0,0,1,6,482,633,80,136,1,3,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,17,960,385,575,320,456,60,111,0,1,1,1,0,0,4,6,323,461,61,113,4,6,1,1,0,0,383,574,318,455,60,111,0,1,1,1,0,0,4,6,321,460,61,113,4,6,1,1,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,2,18,794,267,527,224,421,42,101,0,1,0,0,0,0,1,4,225,424,42,102,1,4,0,1,0,0,266,526,223,420,42,101,0,1,0,0,0,0,1,4,224,423,42,102,1,4,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,0,41480,20126,21354,14592,14975,5152,5984,70,69,96,114,9,6,207,206,14772,15154,5264,6099,175,169,122,145,18,14,19516,20927,14102,14642,5093,5930,59,67,93,111,0,2,169,175,14252,14797,5185,6028,144,147,112,133,5,6,610,427,490,333,59,54,11,2,3,3,9,4,38,31,520,357,79,71,31,22,10,12,13,8 -050,01,123,Alabama,Tallapoosa County,3,1,2416,1231,1185,764,732,422,402,3,5,9,14,0,0,33,32,795,762,447,428,11,11,11,18,2,1,1166,1105,708,664,418,394,2,5,9,14,0,0,29,28,736,691,441,418,7,9,11,16,2,0,65,80,56,68,4,8,1,0,0,0,0,0,4,4,59,71,6,10,4,2,0,2,0,1 -050,01,123,Alabama,Tallapoosa County,3,2,2347,1201,1146,769,730,395,375,3,3,10,13,1,0,23,25,789,753,414,396,8,8,13,16,2,0,1142,1111,721,698,390,375,3,3,10,12,0,0,18,23,737,719,406,394,7,8,12,15,0,0,59,35,48,32,5,0,0,0,0,1,1,0,5,2,52,34,8,2,1,0,1,1,2,0 -050,01,123,Alabama,Tallapoosa County,3,3,2677,1384,1293,886,807,463,458,4,5,6,4,2,0,23,19,906,820,480,474,9,9,11,8,2,1,1350,1272,858,792,460,454,4,4,6,4,0,0,22,18,877,805,477,469,8,8,11,7,0,1,34,21,28,15,3,4,0,1,0,0,2,0,1,1,29,15,3,5,1,1,0,1,2,0 -050,01,123,Alabama,Tallapoosa County,3,4,2800,1459,1341,966,818,452,498,6,2,9,6,1,0,25,17,985,833,468,510,16,5,14,11,3,1,1419,1309,936,795,450,493,6,1,8,6,0,0,19,14,950,809,463,502,13,4,12,8,1,1,40,32,30,23,2,5,0,1,1,0,1,0,6,3,35,24,5,8,3,1,2,3,2,0 -050,01,123,Alabama,Tallapoosa County,3,5,2272,1122,1150,761,700,337,431,10,3,3,4,3,1,8,11,768,711,341,438,14,8,4,6,3,1,1038,1110,698,670,328,423,5,3,3,4,0,0,4,10,702,680,330,430,7,7,3,6,0,0,84,40,63,30,9,8,5,0,0,0,3,1,4,1,66,31,11,8,7,1,1,0,3,1 -050,01,123,Alabama,Tallapoosa County,3,6,2202,1045,1157,721,739,307,394,5,0,8,11,0,2,4,11,725,748,310,401,7,6,9,12,0,2,962,1100,654,696,295,384,5,0,8,10,0,1,0,9,654,703,295,389,5,5,8,11,0,1,83,57,67,43,12,10,0,0,0,1,0,1,4,2,71,45,15,12,2,1,1,1,0,1 -050,01,123,Alabama,Tallapoosa County,3,7,2163,1082,1081,774,709,291,350,3,2,6,13,0,0,8,7,781,716,294,353,7,8,9,13,1,0,1008,1038,712,676,284,343,1,2,6,13,0,0,5,4,717,680,286,345,4,5,7,13,0,0,74,43,62,33,7,7,2,0,0,0,0,0,3,3,64,36,8,8,3,3,2,0,1,0 -050,01,123,Alabama,Tallapoosa County,3,8,2539,1180,1359,836,919,319,410,4,3,12,12,0,0,9,15,843,932,324,415,10,14,13,17,1,3,1121,1318,785,888,316,407,4,3,12,12,0,0,4,8,789,895,318,408,6,8,13,14,0,1,59,41,51,31,3,3,0,0,0,0,0,0,5,7,54,37,6,7,4,6,0,3,1,2 -050,01,123,Alabama,Tallapoosa County,3,9,2702,1320,1382,969,940,322,420,5,5,11,6,2,1,11,10,978,947,327,426,13,12,12,7,2,1,1280,1355,941,920,319,419,3,5,10,6,0,0,7,5,947,923,321,423,10,8,10,7,0,0,40,27,28,20,3,1,2,0,1,0,2,1,4,5,31,24,6,3,3,4,2,0,2,1 -050,01,123,Alabama,Tallapoosa County,3,10,2919,1433,1486,1058,1055,351,408,4,6,6,7,0,2,14,8,1070,1063,355,410,15,11,7,8,1,2,1411,1464,1039,1038,349,407,4,6,5,6,0,1,14,6,1051,1044,353,409,15,9,6,7,1,1,22,22,19,17,2,1,0,0,1,1,0,1,0,2,19,19,2,1,0,2,1,1,0,1 -050,01,123,Alabama,Tallapoosa County,3,11,3245,1572,1673,1175,1216,364,424,10,15,7,7,0,0,16,11,1189,1225,367,426,24,24,8,9,0,0,1562,1668,1168,1212,363,423,9,15,7,7,0,0,15,11,1181,1221,366,425,22,24,8,9,0,0,10,5,7,4,1,1,1,0,0,0,0,0,1,0,8,4,1,1,2,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,12,3042,1500,1542,1121,1153,362,366,2,5,4,8,0,0,11,10,1131,1163,364,366,11,14,5,9,0,0,1482,1537,1108,1148,357,366,2,5,4,8,0,0,11,10,1118,1158,359,366,11,14,5,9,0,0,18,5,13,5,5,0,0,0,0,0,0,0,0,0,13,5,5,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,13,2965,1441,1524,1156,1185,272,322,5,6,2,5,0,0,6,6,1162,1189,275,323,9,12,2,5,0,1,1436,1517,1153,1181,270,320,5,6,2,5,0,0,6,5,1159,1185,273,321,9,11,2,5,0,0,5,7,3,4,2,2,0,0,0,0,0,0,0,1,3,4,2,2,0,1,0,0,0,1 -050,01,123,Alabama,Tallapoosa County,3,14,2323,1108,1215,917,992,179,214,4,3,1,2,0,0,7,4,923,993,180,217,11,6,1,2,0,1,1101,1212,911,991,179,212,4,3,1,2,0,0,6,4,916,992,180,215,10,6,1,2,0,1,7,3,6,1,0,2,0,0,0,0,0,0,1,0,7,1,0,2,1,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,15,1785,828,957,692,781,130,168,2,3,1,1,0,0,3,4,694,785,131,168,5,6,1,2,0,0,822,951,687,777,129,166,2,3,1,1,0,0,3,4,689,781,130,166,5,6,1,2,0,0,6,6,5,4,1,2,0,0,0,0,0,0,0,0,5,4,1,2,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,16,1315,559,756,476,616,82,133,0,1,0,0,0,0,1,6,477,622,82,134,1,6,0,0,0,0,558,755,475,615,82,133,0,1,0,0,0,0,1,6,476,621,82,134,1,6,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,17,970,389,581,322,463,62,110,0,1,1,1,0,0,4,6,326,468,63,113,4,5,1,1,0,0,387,580,320,462,62,110,0,1,1,1,0,0,4,6,324,467,63,113,4,5,1,1,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,3,18,798,272,526,229,420,42,101,0,1,0,0,0,0,1,4,230,424,42,101,0,4,1,1,1,0,271,525,228,419,42,101,0,1,0,0,0,0,1,4,229,423,42,101,0,4,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,0,41414,20111,21303,14556,14899,5153,5986,66,78,104,120,11,7,221,213,14758,15090,5267,6096,163,175,143,149,24,18,19525,20869,14103,14566,5082,5928,57,75,100,116,0,2,183,182,14273,14733,5174,6025,137,154,129,137,9,8,586,434,453,333,71,58,9,3,4,4,11,5,38,31,485,357,93,71,26,21,14,12,15,10 -050,01,123,Alabama,Tallapoosa County,4,1,2454,1286,1168,798,718,439,397,1,8,8,10,0,0,40,35,837,750,470,428,7,13,13,12,3,1,1216,1096,736,659,434,388,1,8,8,10,0,0,37,31,772,688,463,415,5,11,13,12,3,1,70,72,62,59,5,9,0,0,0,0,0,0,3,4,65,62,7,13,2,2,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,2,2377,1194,1183,763,742,391,396,3,3,12,17,1,0,24,25,783,765,410,414,9,8,16,23,3,1,1132,1139,715,706,383,392,3,3,12,15,0,0,19,23,732,727,398,409,6,7,15,19,1,0,62,44,48,36,8,4,0,0,0,2,1,0,5,2,51,38,12,5,3,1,1,4,2,1 -050,01,123,Alabama,Tallapoosa County,4,3,2641,1343,1298,891,821,422,443,3,6,4,7,2,0,21,21,911,839,432,457,7,13,10,12,4,0,1310,1271,863,800,420,439,3,5,4,7,0,0,20,20,882,817,430,453,7,12,9,11,2,0,33,27,28,21,2,4,0,1,0,0,2,0,1,1,29,22,2,4,0,1,1,1,2,0 -050,01,123,Alabama,Tallapoosa County,4,4,2655,1384,1271,882,773,458,472,4,1,11,4,1,0,28,21,903,790,475,486,15,7,19,8,3,2,1343,1244,853,753,455,467,4,1,9,4,0,0,22,19,871,769,470,481,11,5,14,7,0,2,41,27,29,20,3,5,0,0,2,0,1,0,6,2,32,21,5,5,4,2,5,1,3,0 -050,01,123,Alabama,Tallapoosa County,4,5,2403,1202,1201,830,748,341,434,10,5,5,5,2,1,14,8,844,756,351,438,15,8,6,6,3,1,1131,1155,776,712,333,428,7,4,5,5,0,0,10,6,786,718,340,431,11,6,5,6,1,0,71,46,54,36,8,6,3,1,0,0,2,1,4,2,58,38,11,7,4,2,1,0,2,1 -050,01,123,Alabama,Tallapoosa County,4,6,2168,1043,1125,734,692,291,411,5,1,6,9,2,1,5,11,739,703,295,415,6,4,7,12,2,2,964,1094,672,670,282,404,4,1,6,8,0,1,0,10,672,680,282,407,4,4,6,11,0,2,79,31,62,22,9,7,1,0,0,1,2,0,5,1,67,23,13,8,2,0,1,1,2,0 -050,01,123,Alabama,Tallapoosa County,4,7,2172,1057,1115,752,739,291,351,3,2,6,16,0,1,5,6,757,744,294,353,5,7,7,17,0,1,987,1058,697,696,281,341,1,2,6,16,0,0,2,3,699,698,283,343,1,4,6,17,0,0,70,57,55,43,10,10,2,0,0,0,0,1,3,3,58,46,11,10,4,3,1,0,0,1 -050,01,123,Alabama,Tallapoosa County,4,8,2361,1108,1253,766,844,317,379,5,2,12,13,0,0,8,15,773,856,320,385,9,11,13,16,1,1,1064,1213,737,816,306,375,5,2,12,13,0,0,4,7,741,822,308,378,6,6,13,14,0,0,44,40,29,28,11,4,0,0,0,0,0,0,4,8,32,34,12,7,3,5,0,2,1,1 -050,01,123,Alabama,Tallapoosa County,4,9,2709,1320,1389,970,951,324,414,2,4,12,7,3,2,9,11,979,960,328,417,7,10,13,9,3,4,1287,1359,949,929,321,413,1,4,11,7,0,0,5,6,954,935,322,416,6,7,11,7,0,0,33,30,21,22,3,1,1,0,1,0,3,2,4,5,25,25,6,1,1,3,2,2,3,4 -050,01,123,Alabama,Tallapoosa County,4,10,2859,1403,1456,1027,1035,344,401,6,8,9,8,0,0,17,4,1043,1038,347,403,21,10,11,8,0,2,1369,1432,1000,1015,340,400,5,8,8,7,0,0,16,2,1015,1017,343,400,19,9,10,7,0,1,34,24,27,20,4,1,1,0,1,1,0,0,1,2,28,21,4,3,2,1,1,1,0,1 -050,01,123,Alabama,Tallapoosa County,4,11,3201,1542,1659,1152,1198,363,427,7,13,7,5,0,2,13,14,1164,1211,365,430,16,24,12,5,1,3,1529,1650,1141,1191,362,426,7,13,7,5,0,1,12,14,1152,1204,363,429,16,24,11,5,1,2,13,9,11,7,1,1,0,0,0,0,0,1,1,0,12,7,2,1,0,0,1,0,0,1 -050,01,123,Alabama,Tallapoosa County,4,12,3065,1518,1547,1132,1143,361,379,5,8,6,8,0,0,14,9,1143,1152,365,382,17,14,7,9,0,0,1508,1541,1126,1138,358,379,4,7,6,8,0,0,14,9,1137,1147,362,382,16,13,7,9,0,0,10,6,6,5,3,0,1,1,0,0,0,0,0,0,6,5,3,0,1,1,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,13,3064,1487,1577,1184,1212,292,344,3,6,2,7,0,0,6,8,1190,1219,293,346,9,13,2,7,0,0,1478,1568,1178,1206,289,342,3,6,2,7,0,0,6,7,1184,1212,290,343,9,13,2,7,0,0,9,9,6,6,3,2,0,0,0,0,0,0,0,1,6,7,3,3,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,14,2345,1110,1235,903,1001,194,224,7,5,1,2,0,0,5,3,908,1004,194,224,11,8,2,2,0,0,1105,1232,898,1000,194,222,7,5,1,2,0,0,5,3,903,1003,194,222,11,8,2,2,0,0,5,3,5,1,0,2,0,0,0,0,0,0,0,0,5,1,0,2,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,15,1826,851,975,718,803,123,165,2,1,2,0,0,0,6,6,724,809,125,166,6,6,2,0,0,0,844,970,713,799,122,164,2,1,2,0,0,0,5,6,718,805,123,165,6,6,2,0,0,0,7,5,5,4,1,1,0,0,0,0,0,0,1,0,6,4,2,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,16,1331,577,754,484,603,92,140,0,3,0,1,0,0,1,7,485,609,92,141,1,10,0,1,0,0,576,752,483,602,92,139,0,3,0,1,0,0,1,7,484,608,92,140,1,10,0,1,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,17,977,391,586,324,472,63,108,0,0,0,1,0,0,4,5,328,477,63,109,2,3,2,2,1,0,388,585,321,471,63,108,0,0,0,1,0,0,4,5,325,476,63,109,2,3,2,2,1,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,4,18,806,295,511,246,404,47,101,0,2,1,0,0,0,1,4,247,408,48,102,0,6,1,0,0,0,294,510,245,403,47,101,0,2,1,0,0,0,1,4,246,407,48,102,0,6,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,0,41060,19956,21104,14439,14792,5113,5885,64,79,93,113,9,6,238,229,14654,14989,5249,6021,166,176,127,144,18,17,19387,20660,14004,14447,5040,5826,55,76,89,109,0,2,199,200,14185,14621,5151,5949,142,158,113,133,4,10,569,444,435,345,73,59,9,3,4,4,9,4,39,29,469,368,98,72,24,18,14,11,14,7 -050,01,123,Alabama,Tallapoosa County,5,1,2403,1263,1140,766,694,442,384,3,7,6,11,0,0,46,44,807,735,483,421,11,14,11,15,2,0,1197,1062,710,625,434,376,3,7,6,11,0,0,44,43,750,665,473,412,10,14,11,15,1,0,66,78,56,69,8,8,0,0,0,0,0,0,2,1,57,70,10,9,1,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,5,2,2376,1194,1182,788,740,369,404,2,3,6,12,1,0,28,23,814,762,389,421,6,9,11,14,2,0,1132,1129,742,698,359,398,2,3,6,10,0,0,23,20,764,717,377,414,5,7,9,12,0,0,62,53,46,42,10,6,0,0,0,2,1,0,5,3,50,45,12,7,1,2,2,2,2,0 -050,01,123,Alabama,Tallapoosa County,5,3,2599,1344,1255,894,823,422,394,2,5,5,9,1,0,20,24,912,846,437,411,7,11,9,12,2,0,1300,1226,858,800,418,390,2,4,5,9,0,0,17,23,873,822,431,406,6,10,8,11,0,0,44,29,36,23,4,4,0,1,0,0,1,0,3,1,39,24,6,5,1,1,1,1,2,0 -050,01,123,Alabama,Tallapoosa County,5,4,2583,1344,1239,862,756,441,456,3,3,11,4,1,0,26,20,887,771,457,472,12,9,16,8,2,1,1302,1216,830,739,438,451,3,3,9,4,0,0,22,19,852,754,453,466,10,9,11,7,0,1,42,23,32,17,3,5,0,0,2,0,1,0,4,1,35,17,4,6,2,0,5,1,2,0 -050,01,123,Alabama,Tallapoosa County,5,5,2462,1229,1233,837,775,353,435,11,4,5,3,3,1,20,15,856,788,365,444,18,8,8,7,3,2,1175,1197,797,748,350,431,8,3,5,3,0,0,15,12,811,759,358,437,14,6,7,6,0,1,54,36,40,27,3,4,3,1,0,0,3,1,5,3,45,29,7,7,4,2,1,1,3,1 -050,01,123,Alabama,Tallapoosa County,5,6,2082,1026,1056,712,655,291,380,4,1,9,5,1,1,9,14,720,665,298,387,7,7,10,10,1,2,965,1026,664,636,286,371,3,1,9,4,0,1,3,13,666,645,288,378,4,6,10,9,0,2,61,30,48,19,5,9,1,0,0,1,1,0,6,1,54,20,10,9,3,1,0,1,1,0 -050,01,123,Alabama,Tallapoosa County,5,7,2182,1025,1157,739,765,269,365,4,3,6,18,0,1,7,5,745,770,274,367,9,5,6,19,0,1,966,1098,693,718,261,357,2,3,6,18,0,0,4,2,696,720,263,359,5,3,6,18,0,0,59,59,46,47,8,8,2,0,0,0,0,1,3,3,49,50,11,8,4,2,0,1,0,1 -050,01,123,Alabama,Tallapoosa County,5,8,2222,1044,1178,728,782,294,369,4,1,11,12,0,0,7,14,735,795,295,377,8,8,13,13,0,1,1004,1145,698,762,287,363,4,1,11,12,0,0,4,7,702,769,288,367,6,5,12,12,0,0,40,33,30,20,7,6,0,0,0,0,0,0,3,7,33,26,7,10,2,3,1,1,0,1 -050,01,123,Alabama,Tallapoosa County,5,9,2644,1276,1368,938,944,314,401,3,5,10,5,2,0,9,13,944,954,319,405,7,13,13,6,3,3,1226,1336,907,918,303,400,2,5,10,5,0,0,4,8,910,926,304,403,5,9,11,5,0,1,50,32,31,26,11,1,1,0,0,0,2,0,5,5,34,28,15,2,2,4,2,1,3,2 -050,01,123,Alabama,Tallapoosa County,5,10,2878,1410,1468,1019,1047,361,399,6,8,8,8,0,1,16,5,1033,1051,366,402,19,9,9,9,1,2,1376,1440,993,1023,357,399,5,8,6,8,0,0,15,2,1006,1024,361,401,17,8,7,8,1,1,34,28,26,24,4,0,1,0,2,0,0,1,1,3,27,27,5,1,2,1,2,1,0,1 -050,01,123,Alabama,Tallapoosa County,5,11,3002,1471,1531,1105,1099,351,400,3,12,2,6,0,2,10,12,1114,1108,352,405,12,23,3,7,0,2,1455,1517,1092,1089,349,398,3,12,2,5,0,1,9,12,1100,1098,350,403,11,23,3,6,0,1,16,14,13,10,2,2,0,0,0,1,0,1,1,0,14,10,2,2,1,0,0,1,0,1 -050,01,123,Alabama,Tallapoosa County,5,12,3127,1529,1598,1144,1179,354,394,7,8,8,8,0,0,16,9,1157,1187,357,398,19,14,10,9,2,1,1517,1594,1136,1175,351,394,6,8,8,8,0,0,16,9,1149,1183,354,398,18,14,10,9,2,1,12,4,8,4,3,0,1,0,0,0,0,0,0,0,8,4,3,0,1,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,13,2972,1445,1527,1125,1154,308,349,4,7,1,7,0,0,7,10,1132,1161,309,352,11,16,1,8,0,0,1436,1517,1119,1147,305,348,4,6,1,7,0,0,7,9,1126,1153,306,351,11,14,1,8,0,0,9,10,6,7,3,1,0,1,0,0,0,0,0,1,6,8,3,1,0,2,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,14,2533,1199,1334,976,1083,215,241,6,6,1,2,0,0,1,2,977,1085,216,241,6,8,1,2,0,0,1195,1330,973,1081,214,239,6,6,1,2,0,0,1,2,974,1083,215,239,6,8,1,2,0,0,4,4,3,2,1,2,0,0,0,0,0,0,0,0,3,2,1,2,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,15,1857,870,987,736,811,120,170,2,1,3,1,0,0,9,4,745,814,122,170,8,4,4,2,0,1,861,981,728,807,120,168,2,1,3,1,0,0,8,4,736,810,121,168,8,4,4,2,0,1,9,6,8,4,0,2,0,0,0,0,0,0,1,0,9,4,1,2,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,16,1363,598,765,499,611,97,142,0,3,0,1,0,0,2,8,501,617,97,144,2,10,0,2,0,1,595,763,497,610,96,141,0,3,0,1,0,0,2,8,499,616,96,143,2,10,0,2,0,1,3,2,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,17,956,371,585,309,481,60,99,0,0,0,1,0,0,2,4,311,485,60,100,2,3,0,1,0,0,369,584,307,480,60,99,0,0,0,1,0,0,2,4,309,484,60,100,2,3,0,1,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,5,18,819,318,501,262,393,52,103,0,2,1,0,0,0,3,3,264,395,53,104,2,5,2,0,0,0,316,499,260,391,52,103,0,2,1,0,0,0,3,3,262,393,53,104,2,5,2,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,6,0,41039,19929,21110,14322,14705,5207,5953,64,78,96,124,9,6,231,244,14519,14916,5327,6102,161,184,135,156,32,13,19377,20661,13916,14362,5121,5892,54,73,92,120,0,2,194,212,14085,14546,5227,6028,128,158,121,146,15,5,552,449,406,343,86,61,10,5,4,4,9,4,37,32,434,370,100,74,33,26,14,10,17,8 -050,01,123,Alabama,Tallapoosa County,6,1,2341,1211,1130,702,666,455,394,3,6,5,14,0,0,46,50,744,711,492,439,7,13,12,19,2,0,1161,1050,660,596,447,386,3,5,5,14,0,0,46,49,702,640,484,430,7,11,12,19,2,0,50,80,42,70,8,8,0,1,0,0,0,0,0,1,42,71,8,9,0,2,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,6,2,2405,1220,1185,783,729,399,406,2,5,5,13,1,0,30,32,809,757,421,430,9,12,9,18,3,2,1160,1123,737,677,390,400,2,4,5,13,0,0,26,29,760,703,410,424,6,8,8,18,2,1,60,62,46,52,9,6,0,1,0,0,1,0,4,3,49,54,11,6,3,4,1,0,1,1 -050,01,123,Alabama,Tallapoosa County,6,3,2554,1307,1247,876,819,400,394,3,3,9,11,1,0,18,20,893,838,410,407,7,10,13,13,3,0,1253,1209,831,791,397,388,2,2,9,9,0,0,14,19,844,809,406,401,4,8,12,11,1,0,54,38,45,28,3,6,1,1,0,2,1,0,4,1,49,29,4,6,3,2,1,2,2,0 -050,01,123,Alabama,Tallapoosa County,6,4,2464,1292,1172,814,724,438,417,4,4,11,6,1,0,24,21,835,741,454,435,12,10,14,9,1,1,1257,1146,788,705,435,412,4,4,9,6,0,0,21,19,808,721,449,430,10,8,11,9,0,0,35,26,26,19,3,5,0,0,2,0,1,0,3,2,27,20,5,5,2,2,3,0,1,1 -050,01,123,Alabama,Tallapoosa County,6,5,2582,1283,1299,868,801,383,473,7,3,5,3,3,1,17,18,876,815,393,484,14,12,9,6,9,1,1243,1275,840,785,380,470,6,2,5,3,0,0,12,15,845,796,388,479,11,10,7,6,4,0,40,24,28,16,3,3,1,1,0,0,3,1,5,3,31,19,5,5,3,2,2,0,5,1 -050,01,123,Alabama,Tallapoosa County,6,6,2097,1025,1072,712,641,293,409,5,3,6,6,1,1,8,12,720,651,295,415,11,10,7,9,2,2,971,1035,672,617,289,399,2,3,6,6,0,1,2,9,674,624,290,404,3,8,6,7,0,1,54,37,40,24,4,10,3,0,0,0,1,0,6,3,46,27,5,11,8,2,1,2,2,1 -050,01,123,Alabama,Tallapoosa County,6,7,2189,1048,1141,752,753,276,363,6,2,8,15,0,1,6,7,758,760,278,366,8,4,11,17,0,1,982,1098,706,722,261,355,4,2,8,14,0,0,3,5,709,727,262,358,4,3,10,15,0,0,66,43,46,31,15,8,2,0,0,1,0,1,3,2,49,33,16,8,4,1,1,2,0,1 -050,01,123,Alabama,Tallapoosa County,6,8,2145,1013,1132,704,752,284,355,4,1,12,13,0,0,9,11,713,762,286,360,8,9,15,14,0,1,968,1100,674,731,272,350,4,1,12,13,0,0,6,5,680,736,273,352,7,5,14,13,0,0,45,32,30,21,12,5,0,0,0,0,0,0,3,6,33,26,13,8,1,4,1,1,0,1 -050,01,123,Alabama,Tallapoosa County,6,9,2612,1253,1359,902,946,331,387,3,5,9,7,0,0,8,14,907,957,334,393,8,15,10,10,2,0,1203,1325,872,921,317,385,2,5,9,7,0,0,3,7,875,926,318,388,4,11,9,8,0,0,50,34,30,25,14,2,1,0,0,0,0,0,5,7,32,31,16,5,4,4,1,2,2,0 -050,01,123,Alabama,Tallapoosa County,6,10,2812,1371,1441,988,1007,356,413,5,7,9,7,2,1,11,6,995,1013,359,416,13,10,11,7,4,1,1334,1414,963,983,351,413,4,7,7,7,0,0,9,4,969,987,354,415,10,9,9,7,1,0,37,27,25,24,5,0,1,0,2,0,2,1,2,2,26,26,5,1,3,1,2,0,3,1 -050,01,123,Alabama,Tallapoosa County,6,11,2957,1450,1507,1089,1083,347,396,2,9,3,7,0,2,9,10,1098,1093,349,398,7,16,5,8,1,2,1432,1492,1073,1073,346,394,2,9,3,6,0,1,8,9,1081,1082,347,395,7,16,5,7,1,1,18,15,16,10,1,2,0,0,0,1,0,1,1,1,17,11,2,3,0,0,0,1,0,1 -050,01,123,Alabama,Tallapoosa County,6,12,3192,1552,1640,1161,1201,360,408,8,12,6,10,0,0,17,9,1176,1208,363,412,21,18,8,10,1,1,1542,1636,1154,1197,358,408,7,12,6,10,0,0,17,9,1169,1204,361,412,20,18,8,10,1,1,10,4,7,4,2,0,1,0,0,0,0,0,0,0,7,4,2,0,1,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,6,13,2949,1430,1519,1095,1150,321,346,3,5,3,6,0,0,8,12,1101,1160,323,349,11,14,3,8,0,0,1417,1508,1086,1142,317,345,3,4,3,6,0,0,8,11,1092,1152,319,347,11,12,3,8,0,0,13,11,9,8,4,1,0,1,0,0,0,0,0,1,9,8,4,2,0,2,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,6,14,2598,1241,1357,1014,1090,216,257,7,5,1,3,0,0,3,2,1017,1092,217,257,9,6,1,4,0,0,1236,1353,1011,1087,214,256,7,5,1,3,0,0,3,2,1014,1089,215,256,9,6,1,4,0,0,5,4,3,3,2,1,0,0,0,0,0,0,0,0,3,3,2,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,6,15,1957,923,1034,773,846,138,180,1,2,3,1,0,0,8,5,781,851,139,180,8,7,4,1,2,0,916,1029,767,844,138,177,1,2,3,1,0,0,7,5,774,849,138,177,7,7,3,1,1,0,7,5,6,2,0,3,0,0,0,0,0,0,1,0,7,2,1,3,1,0,1,0,1,0 -050,01,123,Alabama,Tallapoosa County,6,16,1407,614,793,514,633,96,147,1,4,0,1,0,0,3,8,516,638,98,150,4,11,0,1,0,1,609,789,510,630,95,146,1,4,0,1,0,0,3,8,512,635,97,149,4,11,0,1,0,1,5,4,4,3,1,1,0,0,0,0,0,0,0,0,4,3,1,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,6,17,985,387,598,323,486,63,107,0,0,0,1,0,0,1,4,324,490,63,108,1,3,0,1,0,0,386,597,322,485,63,107,0,0,0,1,0,0,1,4,323,489,63,108,1,3,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,6,18,793,309,484,252,378,51,101,0,2,1,0,0,0,5,3,256,379,53,103,3,4,3,1,2,0,307,482,250,376,51,101,0,2,1,0,0,0,5,3,254,377,53,103,3,4,3,1,2,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,7,0,40898,19870,21028,14217,14618,5253,5959,70,83,94,122,9,7,227,239,14421,14832,5381,6096,166,173,126,164,18,25,19381,20598,13867,14300,5175,5890,60,77,90,118,0,2,189,211,14040,14492,5282,6014,140,152,115,151,6,13,489,430,350,318,78,69,10,6,4,4,9,5,38,28,381,340,99,82,26,21,11,13,12,12 -050,01,123,Alabama,Tallapoosa County,7,1,2289,1180,1109,697,663,432,381,6,6,4,11,0,0,41,48,736,708,467,419,11,11,9,18,2,2,1134,1027,657,593,426,372,6,5,4,11,0,0,41,46,696,636,461,409,11,9,9,18,2,2,46,82,40,70,6,9,0,1,0,0,0,0,0,2,40,72,6,10,0,2,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,7,2,2353,1198,1155,756,718,403,388,3,5,3,11,1,1,32,32,785,749,428,412,10,10,6,15,3,4,1148,1094,720,672,394,378,3,4,3,11,0,0,28,29,745,700,416,401,9,9,6,13,2,3,50,61,36,46,9,10,0,1,0,0,1,1,4,3,40,49,12,11,1,1,0,2,1,1 -050,01,123,Alabama,Tallapoosa County,7,3,2468,1259,1209,836,790,394,386,3,4,10,12,1,0,15,17,849,807,400,397,8,11,15,12,2,0,1209,1176,798,766,389,380,2,4,10,10,0,0,10,16,808,782,394,390,5,11,12,10,0,0,50,33,38,24,5,6,1,0,0,2,1,0,5,1,41,25,6,7,3,0,3,2,2,0 -050,01,123,Alabama,Tallapoosa County,7,4,2490,1306,1184,840,730,432,426,3,5,9,4,1,0,21,19,858,747,449,440,8,10,12,6,1,1,1272,1165,811,717,429,421,3,4,9,4,0,0,20,19,828,734,445,435,7,9,12,6,0,1,34,19,29,13,3,5,0,1,0,0,1,0,1,0,30,13,4,5,1,1,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,7,5,2611,1338,1273,874,776,429,478,7,3,6,3,2,0,20,13,892,787,443,483,14,10,8,7,2,1,1302,1248,852,759,426,474,7,2,4,3,0,0,13,10,863,768,436,478,12,7,5,6,0,0,36,25,22,17,3,4,0,1,2,0,2,0,7,3,29,19,7,5,2,3,3,1,2,1 -050,01,123,Alabama,Tallapoosa County,7,6,2190,1054,1136,722,682,309,424,6,3,6,5,2,2,9,20,730,697,314,438,7,7,10,11,2,4,1010,1101,690,658,308,416,2,3,6,5,0,1,4,18,694,671,310,428,2,7,8,11,0,2,44,35,32,24,1,8,4,0,0,0,2,1,5,2,36,26,4,10,5,0,2,0,2,2 -050,01,123,Alabama,Tallapoosa County,7,7,2154,1003,1151,714,739,267,380,6,3,9,19,0,1,7,9,719,747,269,386,10,7,10,20,2,1,964,1101,692,703,255,371,5,3,9,18,0,0,3,6,695,709,256,375,6,5,9,19,1,0,39,50,22,36,12,9,1,0,0,1,0,1,4,3,24,38,13,11,4,2,1,1,1,1 -050,01,123,Alabama,Tallapoosa County,7,8,2067,986,1081,679,716,287,351,5,1,8,10,0,0,7,3,684,719,289,353,11,2,10,10,0,0,949,1057,648,700,283,345,4,1,8,10,0,0,6,1,652,701,284,346,9,1,10,10,0,0,37,24,31,16,4,6,1,0,0,0,0,0,1,2,32,18,5,7,2,1,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,7,9,2529,1190,1339,841,924,329,385,4,4,8,9,0,0,8,17,848,937,334,393,8,15,8,14,0,5,1133,1317,813,911,307,382,3,4,8,9,0,0,2,11,815,921,308,387,4,10,8,12,0,2,57,22,28,13,22,3,1,0,0,0,0,0,6,6,33,16,26,6,4,5,0,2,0,3 -050,01,123,Alabama,Tallapoosa County,7,10,2701,1311,1390,945,974,339,393,4,8,12,7,2,1,9,7,954,980,344,396,10,12,12,8,2,3,1280,1365,924,953,337,393,3,8,10,7,0,0,6,4,930,957,340,395,8,9,10,7,0,1,31,25,21,21,2,0,1,0,2,0,2,1,3,3,24,23,4,1,2,3,2,1,2,2 -050,01,123,Alabama,Tallapoosa County,7,11,2926,1451,1475,1075,1051,362,396,2,7,4,8,0,2,8,11,1082,1060,364,399,6,13,7,11,0,4,1432,1456,1058,1038,360,394,2,7,4,7,0,1,8,9,1065,1045,362,397,6,13,7,8,0,2,19,19,17,13,2,2,0,0,0,1,0,1,0,2,17,15,2,2,0,0,0,3,0,2 -050,01,123,Alabama,Tallapoosa County,7,12,3169,1533,1636,1156,1197,345,408,9,14,5,9,0,0,18,8,1173,1204,350,409,23,19,6,12,2,0,1522,1630,1149,1193,343,407,8,13,5,9,0,0,17,8,1166,1200,347,408,22,18,6,12,1,0,11,6,7,4,2,1,1,1,0,0,0,0,1,0,7,4,3,1,1,1,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,7,13,3016,1462,1554,1116,1176,330,354,3,6,3,7,0,0,10,11,1125,1186,331,357,12,14,4,9,0,0,1448,1546,1106,1170,326,353,3,5,3,7,0,0,10,11,1115,1180,327,356,12,13,4,9,0,0,14,8,10,6,4,1,0,1,0,0,0,0,0,0,10,6,4,1,0,1,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,7,14,2680,1276,1404,1035,1118,228,271,6,6,2,4,0,0,5,5,1040,1123,229,273,10,9,2,5,0,0,1271,1395,1032,1111,226,270,6,6,2,4,0,0,5,4,1037,1115,227,272,10,8,2,4,0,0,5,9,3,7,2,1,0,0,0,0,0,0,0,1,3,8,2,1,0,1,0,1,0,0 -050,01,123,Alabama,Tallapoosa County,7,15,2031,979,1052,816,861,151,183,2,2,3,1,0,0,7,5,823,865,151,184,9,6,3,2,0,0,971,1050,809,861,151,181,2,2,3,1,0,0,6,5,815,865,151,182,8,6,3,2,0,0,8,2,7,0,0,2,0,0,0,0,0,0,1,0,8,0,0,2,1,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,7,16,1468,640,828,534,663,100,155,1,4,1,1,0,0,4,5,537,668,101,155,5,7,1,3,0,0,635,821,530,658,99,153,1,4,1,1,0,0,4,5,533,663,100,153,5,7,1,3,0,0,5,7,4,5,1,2,0,0,0,0,0,0,0,0,4,5,1,2,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,7,17,962,391,571,330,468,60,96,0,0,0,0,0,0,1,7,331,474,60,98,1,6,0,0,0,0,390,571,329,468,60,96,0,0,0,0,0,0,1,7,330,474,60,98,1,6,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,7,18,794,313,481,251,372,56,104,0,2,1,1,0,0,5,2,255,374,58,104,3,4,3,1,0,0,311,478,249,369,56,104,0,2,1,1,0,0,5,2,253,371,58,104,3,4,3,1,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,8,0,40628,19753,20875,14104,14542,5221,5880,77,83,106,127,10,7,235,236,14313,14744,5359,6031,166,175,149,163,22,23,19248,20446,13749,14230,5142,5806,63,78,100,120,0,3,194,209,13923,14416,5259,5939,132,155,132,149,4,15,505,429,355,312,79,74,14,5,6,7,10,4,41,27,390,328,100,92,34,20,17,14,18,8 -050,01,123,Alabama,Tallapoosa County,8,1,2321,1207,1114,709,691,429,357,11,3,10,14,0,0,48,49,752,737,469,398,17,9,16,22,2,2,1148,1030,665,622,422,347,7,2,8,11,0,0,46,48,707,667,461,387,12,8,14,19,1,2,59,84,44,69,7,10,4,1,2,3,0,0,2,1,45,70,8,11,5,1,2,3,1,0 -050,01,123,Alabama,Tallapoosa County,8,2,2333,1197,1136,764,709,397,379,3,8,3,9,0,0,30,31,790,738,423,403,8,14,9,14,0,1,1152,1072,727,660,390,368,3,7,3,9,0,0,29,28,752,687,415,390,7,12,9,13,0,1,45,64,37,49,7,11,0,1,0,0,0,0,1,3,38,51,8,13,1,2,0,1,0,0 -050,01,123,Alabama,Tallapoosa County,8,3,2372,1208,1164,795,760,378,365,3,3,11,13,1,0,20,23,814,778,390,384,6,11,15,15,4,2,1162,1129,764,732,370,362,2,3,11,11,0,0,15,21,778,750,381,380,3,10,13,12,2,1,46,35,31,28,8,3,1,0,0,2,1,0,5,2,36,28,9,4,3,1,2,3,2,1 -050,01,123,Alabama,Tallapoosa County,8,4,2428,1251,1177,810,735,414,415,2,6,8,4,2,0,15,17,824,750,426,427,5,11,11,5,2,1,1225,1158,789,722,412,410,2,5,8,4,0,0,14,17,802,737,423,422,4,10,11,5,0,1,26,19,21,13,2,5,0,1,0,0,2,0,1,0,22,13,3,5,1,1,0,0,2,0 -050,01,123,Alabama,Tallapoosa County,8,5,2418,1269,1149,825,690,409,439,4,3,8,4,1,0,22,13,845,701,421,447,13,10,11,6,2,0,1235,1128,803,680,406,433,4,2,6,4,0,0,16,9,818,687,416,439,10,6,8,5,0,0,34,21,22,10,3,6,0,1,2,0,1,0,6,4,27,14,5,8,3,4,3,1,2,0 -050,01,123,Alabama,Tallapoosa County,8,6,2332,1137,1195,758,736,344,429,10,3,10,8,3,1,12,18,769,751,351,441,14,10,14,11,4,2,1084,1164,719,712,343,423,6,3,10,8,0,0,6,18,724,727,347,435,8,10,11,11,0,1,53,31,39,24,1,6,4,0,0,0,3,1,6,0,45,24,4,6,6,0,3,0,4,1 -050,01,123,Alabama,Tallapoosa County,8,7,2125,1006,1119,715,723,274,367,6,2,7,15,0,2,4,10,719,729,276,371,8,8,8,18,0,3,968,1077,689,695,266,357,6,2,7,14,0,1,0,8,689,700,266,361,6,6,7,16,0,2,38,42,26,28,8,10,0,0,0,1,0,1,4,2,30,29,10,10,2,2,1,2,0,1 -050,01,123,Alabama,Tallapoosa County,8,8,2032,963,1069,678,693,268,361,4,2,6,8,0,0,7,5,684,698,271,366,8,5,8,9,0,0,915,1039,642,673,261,354,2,2,6,8,0,0,4,2,645,675,262,356,4,4,8,8,0,0,48,30,36,20,7,7,2,0,0,0,0,0,3,3,39,23,9,10,4,1,0,1,0,0 -050,01,123,Alabama,Tallapoosa County,8,9,2406,1124,1282,786,891,316,370,4,2,9,10,0,1,9,8,791,896,321,375,8,6,12,12,3,2,1069,1259,758,877,294,365,4,2,9,10,0,1,4,4,762,880,296,368,6,3,9,11,0,1,55,23,28,14,22,5,0,0,0,0,0,0,5,4,29,16,25,7,2,3,3,1,3,1 -050,01,123,Alabama,Tallapoosa County,8,10,2644,1267,1377,920,960,320,392,4,6,11,6,2,1,10,12,930,968,325,398,8,11,12,9,2,4,1236,1352,901,942,317,391,2,6,10,6,0,0,6,7,907,948,319,392,5,10,11,8,0,1,31,25,19,18,3,1,2,0,1,0,2,1,4,5,23,20,6,6,3,1,1,1,2,3 -050,01,123,Alabama,Tallapoosa County,8,11,2894,1431,1463,1039,1056,371,378,6,9,6,11,1,2,8,7,1046,1060,375,382,12,14,6,12,1,2,1412,1444,1025,1042,369,377,6,9,5,10,0,1,7,5,1031,1046,372,379,12,12,5,11,0,1,19,19,14,14,2,1,0,0,1,1,1,1,1,2,15,14,3,3,0,2,1,1,1,1 -050,01,123,Alabama,Tallapoosa County,8,12,3150,1520,1630,1140,1182,352,415,8,15,5,9,0,0,15,9,1154,1191,356,416,19,19,8,11,1,2,1507,1622,1131,1178,350,412,7,14,5,9,0,0,14,9,1144,1187,353,413,17,18,7,11,0,2,13,8,9,4,2,3,1,1,0,0,0,0,1,0,10,4,3,3,2,1,1,0,1,0 -050,01,123,Alabama,Tallapoosa County,8,13,3014,1461,1553,1106,1172,336,357,2,6,5,8,0,0,12,10,1117,1180,338,360,11,14,7,8,0,1,1445,1546,1094,1165,332,357,2,6,5,8,0,0,12,10,1105,1173,334,360,11,14,7,8,0,1,16,7,12,7,4,0,0,0,0,0,0,0,0,0,12,7,4,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,8,14,2819,1352,1467,1097,1145,242,305,5,6,2,5,0,0,6,6,1103,1151,242,307,11,10,2,6,0,1,1347,1457,1095,1138,240,303,5,6,2,5,0,0,5,5,1100,1143,240,305,10,9,2,6,0,1,5,10,2,7,2,2,0,0,0,0,0,0,1,1,3,8,2,2,1,1,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,8,15,2061,969,1092,806,892,149,192,4,3,3,1,0,0,7,4,810,896,151,193,9,6,5,1,1,0,960,1090,798,892,149,190,4,3,3,1,0,0,6,4,801,896,151,191,8,6,5,1,1,0,9,2,8,0,0,2,0,0,0,0,0,0,1,0,9,0,0,2,1,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,8,16,1506,674,832,563,669,105,155,1,3,1,1,0,0,4,4,567,673,105,156,5,6,1,1,0,0,669,826,559,665,104,153,1,3,1,1,0,0,4,4,563,669,104,154,5,6,1,1,0,0,5,6,4,4,1,2,0,0,0,0,0,0,0,0,4,4,1,2,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,8,17,967,400,567,342,461,57,97,0,1,0,0,0,0,1,8,343,468,57,100,0,7,1,2,0,0,399,566,341,460,57,97,0,1,0,0,0,0,1,8,342,467,57,100,0,7,1,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,8,18,806,317,489,251,377,60,107,0,2,1,1,0,0,5,2,255,379,62,107,4,4,3,1,0,0,315,487,249,375,60,107,0,2,1,1,0,0,5,2,253,377,62,107,4,4,3,1,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,9,0,40607,19751,20856,14141,14579,5161,5824,82,84,100,125,10,8,257,236,14372,14780,5302,5973,186,170,142,165,22,23,19231,20407,13785,14249,5078,5750,67,79,93,119,0,4,208,206,13974,14425,5198,5885,146,147,123,153,6,13,520,449,356,330,83,74,15,5,7,6,10,4,49,30,398,355,104,88,40,23,19,12,16,10 -050,01,123,Alabama,Tallapoosa County,9,1,2291,1195,1096,703,685,429,365,11,1,10,14,0,0,42,31,740,713,464,393,20,4,13,18,0,1,1147,1027,672,628,421,357,7,1,7,11,0,0,40,30,707,655,456,384,15,3,9,15,0,1,48,69,31,57,8,8,4,0,3,3,0,0,2,1,33,58,8,9,5,1,4,3,0,0 -050,01,123,Alabama,Tallapoosa County,9,2,2370,1234,1136,783,740,400,345,5,9,5,8,0,0,41,34,823,772,429,376,14,14,11,12,1,0,1184,1055,747,678,392,331,4,7,5,8,0,0,36,31,783,707,418,359,11,11,10,12,1,0,50,81,36,62,8,14,1,2,0,0,0,0,5,3,40,65,11,17,3,3,1,0,0,0 -050,01,123,Alabama,Tallapoosa County,9,3,2328,1200,1128,803,730,360,350,3,5,9,13,1,0,24,30,826,758,376,372,11,15,11,16,3,1,1149,1087,767,699,352,345,2,5,9,11,0,0,19,27,785,725,366,365,7,12,10,14,1,0,51,41,36,31,8,5,1,0,0,2,1,0,5,3,41,33,10,7,4,3,1,2,2,1 -050,01,123,Alabama,Tallapoosa County,9,4,2371,1198,1173,795,752,377,395,1,5,3,5,2,0,20,16,813,765,390,406,7,11,6,8,3,0,1168,1150,772,735,374,391,1,4,3,5,0,0,18,15,788,747,386,402,6,9,6,8,1,0,30,23,23,17,3,4,0,1,0,0,2,0,2,1,25,18,4,4,1,2,0,0,2,0 -050,01,123,Alabama,Tallapoosa County,9,5,2343,1212,1131,777,674,398,434,4,2,11,5,1,1,21,15,795,688,411,444,11,5,17,7,1,2,1169,1106,747,658,395,428,4,2,9,5,0,1,14,12,759,669,404,436,9,4,11,7,0,2,43,25,30,16,3,6,0,0,2,0,1,0,7,3,36,19,7,8,2,1,6,0,1,0 -050,01,123,Alabama,Tallapoosa County,9,6,2428,1184,1244,804,800,347,411,10,5,9,8,2,1,12,19,814,817,354,424,14,9,13,12,3,1,1153,1218,785,782,345,406,7,4,9,8,0,0,7,18,791,798,350,418,9,8,11,12,0,0,31,26,19,18,2,5,3,1,0,0,2,1,5,1,23,19,4,6,5,1,2,0,3,1 -050,01,123,Alabama,Tallapoosa County,9,7,2097,1019,1078,720,675,277,379,8,2,3,10,1,1,10,11,729,682,280,383,14,7,7,14,1,3,961,1044,676,651,271,371,7,2,3,9,0,1,4,10,679,657,273,375,8,7,5,12,0,3,58,34,44,24,6,8,1,0,0,1,1,0,6,1,50,25,7,8,6,0,2,2,1,0 -050,01,123,Alabama,Tallapoosa County,9,8,2075,958,1117,681,744,262,353,5,1,4,12,0,1,6,6,685,749,263,355,8,4,7,14,1,2,919,1071,655,712,254,344,3,1,4,12,0,0,3,2,657,713,254,345,4,1,7,13,0,1,39,46,26,32,8,9,2,0,0,0,0,1,3,4,28,36,9,10,4,3,0,1,1,1 -050,01,123,Alabama,Tallapoosa County,9,9,2250,1074,1176,742,806,308,349,5,2,10,9,0,1,9,9,749,814,312,351,10,7,10,10,2,3,1020,1153,716,793,285,344,5,2,10,9,0,1,4,4,720,797,287,346,7,3,10,10,0,1,54,23,26,13,23,5,0,0,0,0,0,0,5,5,29,17,25,5,3,4,0,0,2,2 -050,01,123,Alabama,Tallapoosa County,9,10,2635,1256,1379,917,956,318,396,2,6,9,6,2,1,8,14,925,966,322,405,4,13,10,10,3,4,1224,1355,896,939,315,395,1,6,8,6,0,0,4,9,900,947,318,400,1,12,9,6,0,0,32,24,21,17,3,1,1,0,1,0,2,1,4,5,25,19,4,5,3,1,1,4,3,4 -050,01,123,Alabama,Tallapoosa County,9,11,2837,1396,1441,1011,1046,356,372,8,10,8,9,1,0,12,4,1019,1049,361,374,16,13,11,9,1,0,1363,1423,985,1031,354,371,7,10,7,9,0,0,10,2,992,1032,357,373,14,11,10,9,0,0,33,18,26,15,2,1,1,0,1,0,1,0,2,2,27,17,4,1,2,2,1,0,1,0 -050,01,123,Alabama,Tallapoosa County,9,12,3148,1514,1634,1141,1196,350,403,5,12,6,8,0,2,12,13,1152,1204,354,408,12,19,8,12,1,4,1501,1623,1130,1189,349,401,5,11,6,8,0,1,11,13,1140,1197,352,406,11,18,8,12,1,3,13,11,11,7,1,2,0,1,0,0,0,1,1,0,12,7,2,2,1,1,0,0,0,1 -050,01,123,Alabama,Tallapoosa County,9,13,3071,1492,1579,1137,1174,331,381,4,8,5,7,0,0,15,9,1152,1182,332,382,16,16,8,8,0,0,1478,1572,1128,1167,327,381,3,8,5,7,0,0,15,9,1143,1175,328,382,15,16,8,8,0,0,14,7,9,7,4,0,1,0,0,0,0,0,0,0,9,7,4,0,1,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,9,14,2935,1408,1527,1133,1173,264,332,3,6,2,8,0,0,6,8,1138,1181,266,334,8,10,2,10,0,1,1400,1517,1129,1166,261,330,3,6,2,8,0,0,5,7,1133,1173,262,332,8,9,2,10,0,1,8,10,4,7,3,2,0,0,0,0,0,0,1,1,5,8,4,2,0,1,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,9,15,2091,984,1107,808,903,161,196,7,4,3,1,0,0,5,3,812,905,163,198,11,5,3,1,1,1,977,1105,801,903,161,194,7,4,3,1,0,0,5,3,805,905,163,196,11,5,3,1,1,1,7,2,7,0,0,2,0,0,0,0,0,0,0,0,7,0,0,2,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,9,16,1549,687,862,574,700,102,156,1,1,2,0,0,0,8,5,582,705,104,156,6,6,3,0,0,0,681,857,570,696,101,155,1,1,2,0,0,0,7,5,577,701,103,155,6,6,2,0,0,0,6,5,4,4,1,1,0,0,0,0,0,0,1,0,5,4,1,1,0,0,1,0,0,0 -050,01,123,Alabama,Tallapoosa County,9,17,966,427,539,360,426,66,101,0,3,0,1,0,0,1,8,361,430,66,106,1,9,0,3,0,0,426,537,359,425,66,100,0,3,0,1,0,0,1,8,360,429,66,105,1,9,0,3,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,9,18,822,313,509,252,399,55,106,0,2,1,1,0,0,5,1,257,400,55,106,3,3,2,1,1,0,311,507,250,397,55,106,0,2,1,1,0,0,5,1,255,398,55,106,3,3,2,1,1,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,10,0,40624,19769,20855,14136,14548,5158,5837,81,80,113,135,14,8,267,247,14373,14765,5311,5996,190,169,153,174,34,18,19236,20418,13773,14225,5072,5765,66,75,104,129,2,3,219,221,13974,14420,5201,5906,150,156,135,163,13,8,533,437,363,323,86,72,15,5,9,6,12,5,48,26,399,345,110,90,40,13,18,11,21,10 -050,01,123,Alabama,Tallapoosa County,10,1,2256,1154,1102,666,717,421,348,9,2,15,10,0,0,43,25,704,741,455,370,19,4,19,12,3,1,1106,1042,636,670,414,339,5,2,10,7,0,0,41,24,674,693,447,360,13,4,14,9,2,1,48,60,30,47,7,9,4,0,5,3,0,0,2,1,30,48,8,10,6,0,5,3,1,0 -050,01,123,Alabama,Tallapoosa County,10,2,2411,1249,1162,759,732,433,364,7,3,6,12,0,0,44,51,800,778,468,406,15,12,11,19,2,2,1201,1074,725,658,423,354,6,2,6,12,0,0,41,48,764,701,457,395,12,10,10,19,2,1,48,88,34,74,10,10,1,1,0,0,0,0,3,3,36,77,11,11,3,2,1,0,0,1 -050,01,123,Alabama,Tallapoosa County,10,3,2357,1208,1149,812,729,355,375,2,6,6,13,2,0,31,26,841,753,376,396,12,10,11,17,4,2,1145,1101,765,695,347,367,2,5,6,11,1,0,24,23,788,716,364,385,8,9,10,15,1,1,63,48,47,34,8,8,0,1,0,2,1,0,7,3,53,37,12,11,4,1,1,2,3,1 -050,01,123,Alabama,Tallapoosa County,10,4,2338,1190,1148,792,737,366,379,3,5,6,6,2,0,21,21,813,757,382,394,8,9,9,9,2,0,1158,1122,768,717,363,375,2,4,6,6,1,0,18,20,786,736,377,389,7,8,8,9,1,0,32,26,24,20,3,4,1,1,0,0,1,0,3,1,27,21,5,5,1,1,1,0,1,0 -050,01,123,Alabama,Tallapoosa County,10,5,2291,1187,1104,769,652,384,431,2,2,12,7,1,0,19,12,785,663,394,439,10,4,18,11,1,1,1154,1079,745,633,381,426,2,2,10,7,0,0,16,11,759,644,389,433,9,4,15,10,0,0,33,25,24,19,3,5,0,0,2,0,1,0,3,1,26,19,5,6,1,0,3,1,1,1 -050,01,123,Alabama,Tallapoosa County,10,6,2534,1242,1292,831,829,376,428,11,4,8,10,3,1,13,20,843,845,384,442,16,11,9,14,5,2,1203,1275,807,820,373,423,8,3,8,10,0,0,7,19,814,835,376,436,11,9,9,14,1,1,39,17,24,9,3,5,3,1,0,0,3,1,6,1,29,10,8,6,5,2,0,0,4,1 -050,01,123,Alabama,Tallapoosa County,10,7,2019,977,1042,689,648,265,364,4,1,7,17,1,1,11,11,699,657,268,371,8,6,11,20,3,1,936,1018,660,634,262,356,3,1,7,16,0,1,4,10,664,642,263,362,4,6,9,19,1,1,41,24,29,14,3,8,1,0,0,1,1,0,7,1,35,15,5,9,4,0,2,1,2,0 -050,01,123,Alabama,Tallapoosa County,10,8,2074,971,1103,696,719,254,367,6,2,9,8,0,2,6,5,700,723,256,372,10,4,11,8,2,2,929,1060,668,687,245,359,4,2,9,8,0,1,3,3,671,689,246,362,6,4,9,8,0,1,42,43,28,32,9,8,2,0,0,0,0,1,3,2,29,34,10,10,4,0,2,0,2,1 -050,01,123,Alabama,Tallapoosa County,10,9,2174,1029,1145,717,783,292,344,4,1,7,8,2,1,7,8,721,790,295,348,7,5,9,9,4,1,982,1121,692,771,276,337,4,1,7,8,0,0,3,4,694,774,278,339,4,3,8,9,1,0,47,24,25,12,16,7,0,0,0,0,2,1,4,4,27,16,17,9,3,2,1,0,3,1 -050,01,123,Alabama,Tallapoosa County,10,10,2608,1235,1373,902,944,312,397,3,8,8,7,2,0,8,17,909,956,317,405,7,18,8,12,2,3,1187,1350,871,927,303,396,2,8,8,7,0,0,3,12,873,936,305,400,4,16,8,10,0,1,48,23,31,17,9,1,1,0,0,0,2,0,5,5,36,20,12,5,3,2,0,2,2,2 -050,01,123,Alabama,Tallapoosa County,10,11,2828,1384,1444,1008,1034,348,384,8,10,10,9,0,1,10,6,1016,1039,352,386,17,13,11,11,0,1,1352,1424,985,1018,343,384,7,10,8,9,0,0,9,3,992,1021,346,385,15,12,9,9,0,0,32,20,23,16,5,0,1,0,2,0,0,1,1,3,24,18,6,1,2,1,2,2,0,1 -050,01,123,Alabama,Tallapoosa County,10,12,3031,1481,1550,1115,1139,348,381,3,9,5,8,1,2,9,11,1124,1148,349,384,8,18,7,9,2,2,1461,1540,1100,1131,346,380,3,9,5,8,0,1,7,11,1107,1140,347,383,6,18,7,9,1,1,20,10,15,8,2,1,0,0,0,0,1,1,2,0,17,8,2,1,2,0,0,0,1,1 -050,01,123,Alabama,Tallapoosa County,10,13,3172,1557,1615,1195,1205,331,383,7,10,6,8,0,0,18,9,1209,1212,334,386,21,17,10,9,1,0,1543,1608,1185,1199,328,383,6,9,6,8,0,0,18,9,1199,1206,331,386,20,16,10,9,1,0,14,7,10,6,3,0,1,1,0,0,0,0,0,0,10,6,3,0,1,1,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,10,14,2864,1353,1511,1068,1157,272,331,4,6,1,8,0,0,8,9,1076,1166,273,333,10,13,1,9,1,0,1344,1501,1063,1149,269,330,4,6,1,8,0,0,7,8,1070,1157,270,332,9,12,1,9,1,0,9,10,5,8,3,1,0,0,0,0,0,0,1,1,6,9,3,1,1,1,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,10,15,2288,1083,1205,900,982,173,215,6,5,3,1,0,0,1,2,901,983,173,216,7,7,3,1,0,0,1078,1202,896,981,172,213,6,5,3,1,0,0,1,2,897,982,172,214,7,7,3,1,0,0,5,3,4,1,1,2,0,0,0,0,0,0,0,0,4,1,1,2,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,10,16,1570,712,858,588,706,109,146,2,1,3,1,0,0,10,4,596,709,112,147,10,5,3,1,1,0,705,852,582,702,109,144,2,1,3,1,0,0,9,4,590,705,111,145,10,5,3,1,0,0,7,6,6,4,0,2,0,0,0,0,0,0,1,0,6,4,1,2,0,0,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,10,17,992,445,547,378,432,64,102,0,3,0,1,0,0,3,9,381,441,65,103,1,10,1,2,1,0,442,546,376,432,63,101,0,3,0,1,0,0,3,9,379,441,64,102,1,10,1,2,1,0,3,1,2,0,1,1,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,10,18,817,312,505,251,403,55,98,0,2,1,1,0,0,5,1,255,404,58,98,4,3,1,1,0,0,310,503,249,401,55,98,0,2,1,1,0,0,5,1,253,402,58,98,4,3,1,1,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,11,0,40550,19715,20835,14036,14487,5180,5859,87,81,117,139,14,9,281,260,14286,14722,5353,6019,199,185,167,177,29,22,19195,20389,13689,14156,5092,5792,71,75,108,131,4,5,231,230,13894,14362,5238,5936,158,165,147,161,14,15,520,446,347,331,88,67,16,6,9,8,10,4,50,30,392,360,115,83,41,20,20,16,15,7 -050,01,123,Alabama,Tallapoosa County,11,1,2260,1144,1116,656,723,422,354,5,2,16,12,2,0,43,25,694,746,461,377,12,3,21,16,3,0,1095,1040,623,664,415,343,1,2,11,7,2,0,43,24,661,686,454,365,8,3,16,11,3,0,49,76,33,59,7,11,4,0,5,5,0,0,0,1,33,60,7,12,4,0,5,5,0,0 -050,01,123,Alabama,Tallapoosa County,11,2,2342,1220,1122,713,697,444,364,9,2,7,10,0,0,47,49,757,743,481,403,20,9,15,19,0,2,1168,1059,677,645,434,358,9,1,7,10,0,0,41,45,716,687,469,395,16,7,13,17,0,2,52,63,36,52,10,6,0,1,0,0,0,0,6,4,41,56,12,8,4,2,2,2,0,0 -050,01,123,Alabama,Tallapoosa County,11,3,2394,1224,1170,804,735,375,383,3,8,3,11,2,0,37,33,838,766,403,405,11,18,7,16,5,2,1167,1118,761,695,369,377,3,6,3,11,1,0,30,29,788,722,393,397,9,13,6,15,4,1,57,52,43,40,6,6,0,2,0,0,1,0,7,4,50,44,10,8,2,5,1,1,1,1 -050,01,123,Alabama,Tallapoosa County,11,4,2234,1136,1098,766,712,338,352,3,4,8,8,2,0,19,22,785,731,352,370,6,10,11,11,2,2,1099,1063,739,688,333,347,2,3,8,6,1,0,16,19,755,704,344,362,5,8,11,9,1,2,37,35,27,24,5,5,1,1,0,2,1,0,3,3,30,27,8,8,1,2,0,2,1,0 -050,01,123,Alabama,Tallapoosa County,11,5,2249,1171,1078,722,644,408,401,6,3,11,10,1,2,23,18,743,661,425,414,15,10,13,10,3,3,1138,1055,698,625,405,397,6,3,9,10,0,2,20,18,716,642,419,410,13,10,10,10,2,3,33,23,24,19,3,4,0,0,2,0,1,0,3,0,27,19,6,4,2,0,3,0,1,0 -050,01,123,Alabama,Tallapoosa County,11,6,2573,1261,1312,856,817,374,462,9,5,7,8,3,1,12,19,868,831,379,474,16,13,9,12,3,3,1237,1296,845,809,370,458,8,4,7,8,0,0,7,17,852,821,372,469,12,11,8,11,0,1,24,16,11,8,4,4,1,1,0,0,3,1,5,2,16,10,7,5,4,2,1,1,3,2 -050,01,123,Alabama,Tallapoosa County,11,7,2083,995,1088,708,681,259,379,7,2,6,15,1,1,14,10,721,689,263,386,12,7,13,15,3,2,936,1058,664,660,258,371,2,2,6,15,0,1,6,9,670,667,260,377,3,7,9,15,0,2,59,30,44,21,1,8,5,0,0,0,1,0,8,1,51,22,3,9,9,0,4,0,3,0 -050,01,123,Alabama,Tallapoosa County,11,8,2049,970,1079,694,697,254,363,8,2,7,8,0,2,7,7,700,703,257,366,13,6,9,11,0,2,930,1039,671,669,242,354,6,2,7,7,0,1,4,6,674,674,244,357,9,5,8,10,0,1,40,40,23,28,12,9,2,0,0,1,0,1,3,1,26,29,13,9,4,1,1,1,0,1 -050,01,123,Alabama,Tallapoosa County,11,9,2068,972,1096,681,750,267,330,4,1,13,10,0,0,7,5,686,755,271,331,8,5,14,10,2,0,930,1074,654,736,256,325,4,1,13,10,0,0,3,2,657,738,257,325,6,3,13,10,0,0,42,22,27,14,11,5,0,0,0,0,0,0,4,3,29,17,14,6,2,2,1,0,2,0 -050,01,123,Alabama,Tallapoosa County,11,10,2565,1195,1370,862,944,315,391,3,8,8,8,0,0,7,19,868,960,320,399,6,18,8,14,0,3,1160,1347,846,929,302,390,2,8,8,8,0,0,2,12,847,939,304,395,3,16,8,10,0,2,35,23,16,15,13,1,1,0,0,0,0,0,5,7,21,21,16,4,3,2,0,4,0,1 -050,01,123,Alabama,Tallapoosa County,11,11,2813,1355,1458,982,1030,341,402,7,8,11,9,2,1,12,8,993,1038,345,406,15,13,14,10,4,1,1322,1435,962,1010,335,402,6,8,9,9,0,0,10,6,971,1016,338,404,13,12,12,10,2,0,33,23,20,20,6,0,1,0,2,0,2,1,2,2,22,22,7,2,2,1,2,0,2,1 -050,01,123,Alabama,Tallapoosa County,11,12,2974,1495,1479,1120,1105,360,347,2,8,5,8,1,2,7,9,1127,1113,361,350,6,17,7,8,1,2,1478,1466,1107,1095,359,346,2,8,5,8,0,1,5,8,1112,1102,359,349,5,16,7,8,0,1,17,13,13,10,1,1,0,0,0,0,1,1,2,1,15,11,2,1,1,1,0,0,1,1 -050,01,123,Alabama,Tallapoosa County,11,13,3217,1543,1674,1198,1244,314,401,9,11,5,9,0,0,17,9,1209,1253,318,403,22,17,11,10,1,0,1533,1669,1191,1240,312,401,8,10,5,9,0,0,17,9,1202,1249,316,403,21,16,11,10,1,0,10,5,7,4,2,0,1,1,0,0,0,0,0,0,7,4,2,0,1,1,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,11,14,2824,1346,1478,1051,1132,281,326,3,4,2,6,0,0,9,10,1058,1141,281,328,11,13,4,6,1,0,1333,1467,1043,1123,277,325,3,4,2,6,0,0,8,9,1050,1131,277,327,10,12,4,6,0,0,13,11,8,9,4,1,0,0,0,0,0,0,1,1,8,10,4,1,1,1,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,11,15,2367,1124,1243,932,992,181,242,7,5,1,3,0,0,3,1,935,993,181,242,10,5,1,4,0,0,1118,1239,928,990,179,240,7,5,1,3,0,0,3,1,931,991,179,240,10,5,1,4,0,0,6,4,4,2,2,2,0,0,0,0,0,0,0,0,4,2,2,2,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,11,16,1656,765,891,632,727,118,156,1,2,5,1,0,0,9,5,639,731,122,157,8,7,6,1,1,0,758,886,626,725,118,153,1,2,5,1,0,0,8,5,632,729,121,154,7,7,6,1,1,0,7,5,6,2,0,3,0,0,0,0,0,0,1,0,7,2,1,3,1,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,11,17,1038,454,584,380,462,71,107,1,4,0,1,0,0,2,10,382,472,72,108,2,12,0,2,0,0,450,581,377,460,70,106,1,4,0,1,0,0,2,10,379,470,71,107,2,12,0,2,0,0,4,3,3,2,1,1,0,0,0,0,0,0,0,0,3,2,1,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,11,18,844,345,499,279,395,58,99,0,2,2,2,0,0,6,1,283,396,61,100,6,2,4,2,0,0,343,497,277,393,58,99,0,2,2,2,0,0,6,1,281,394,61,100,6,2,4,2,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,12,0,40337,19565,20772,13940,14471,5128,5801,90,82,109,134,14,10,284,274,14201,14708,5295,5971,194,184,154,178,30,34,19025,20316,13575,14129,5039,5738,73,76,100,126,4,5,234,242,13792,14339,5181,5895,152,159,132,163,15,21,540,456,365,342,89,63,17,6,9,8,10,5,50,32,409,369,114,76,42,25,22,15,15,13 -050,01,123,Alabama,Tallapoosa County,12,1,2151,1100,1051,649,673,377,343,6,1,15,10,2,0,51,24,698,697,419,362,10,6,22,10,5,0,1045,989,608,626,372,334,2,1,10,5,2,0,51,23,657,649,414,353,6,5,17,5,5,0,55,62,41,47,5,9,4,0,5,5,0,0,0,1,41,48,5,9,4,1,5,5,0,0 -050,01,123,Alabama,Tallapoosa County,12,2,2356,1204,1152,699,717,448,361,8,3,4,13,0,0,45,58,743,767,480,410,19,14,11,17,2,4,1146,1070,660,646,435,354,8,2,4,13,0,0,39,55,698,694,466,401,17,11,7,17,1,4,58,82,39,71,13,7,0,1,0,0,0,0,6,3,45,73,14,9,2,3,4,0,1,0 -050,01,123,Alabama,Tallapoosa County,12,3,2354,1222,1132,781,712,395,375,5,6,3,6,2,0,36,33,815,741,423,402,11,12,7,12,4,2,1164,1079,736,671,389,368,5,4,3,6,1,0,30,30,765,698,413,392,9,8,5,11,3,1,58,53,45,41,6,7,0,2,0,0,1,0,6,3,50,43,10,10,2,4,2,1,1,1 -050,01,123,Alabama,Tallapoosa County,12,4,2182,1091,1091,714,713,339,339,3,5,9,11,2,0,24,23,735,734,355,356,9,13,15,15,4,0,1047,1051,682,684,334,335,2,5,9,9,1,0,19,18,698,700,349,349,5,11,13,11,2,0,44,40,32,29,5,4,1,0,0,2,1,0,5,5,37,34,6,7,4,2,2,4,2,0 -050,01,123,Alabama,Tallapoosa County,12,5,2155,1108,1047,706,651,377,368,5,5,3,6,1,2,16,15,720,662,387,379,10,10,6,10,3,3,1085,1027,687,636,375,364,4,4,3,6,0,2,16,15,701,647,385,375,9,9,6,10,2,3,23,20,19,15,2,4,1,1,0,0,1,0,0,0,19,15,2,4,1,1,0,0,1,0 -050,01,123,Alabama,Tallapoosa County,12,6,2512,1246,1266,859,789,354,449,6,4,9,6,2,1,16,17,873,804,362,461,11,11,11,8,5,2,1212,1247,839,778,351,445,6,3,7,6,0,0,9,15,846,791,355,456,9,8,9,8,2,1,34,19,20,11,3,4,0,1,2,0,2,1,7,2,27,13,7,5,2,3,2,0,3,1 -050,01,123,Alabama,Tallapoosa County,12,7,2097,1023,1074,713,652,277,390,10,3,9,13,2,2,12,14,722,664,280,397,19,10,12,18,3,2,962,1051,668,636,274,384,6,3,9,13,0,1,5,14,673,648,275,391,9,10,10,18,0,1,61,23,45,16,3,6,4,0,0,0,2,1,7,0,49,16,5,6,10,0,2,0,3,1 -050,01,123,Alabama,Tallapoosa County,12,8,2080,949,1131,687,732,239,369,8,2,6,15,0,1,9,12,695,742,243,374,13,9,9,19,0,2,915,1090,672,703,227,362,5,2,6,14,0,0,5,9,677,710,228,367,7,6,8,17,0,1,34,41,15,29,12,7,3,0,0,1,0,1,4,3,18,32,15,7,6,3,1,2,0,1 -050,01,123,Alabama,Tallapoosa County,12,9,2038,966,1072,677,718,270,341,5,1,10,7,0,1,4,4,681,722,272,342,7,1,11,7,0,4,926,1050,642,704,267,335,4,1,10,7,0,1,3,2,645,706,268,336,6,1,11,7,0,2,40,22,35,14,3,6,1,0,0,0,0,0,1,2,36,16,4,6,1,0,0,0,0,2 -050,01,123,Alabama,Tallapoosa County,12,10,2442,1148,1294,807,900,319,366,4,6,9,7,0,0,9,15,814,911,325,371,9,16,11,9,1,6,1106,1268,794,882,298,365,3,6,9,7,0,0,2,8,795,889,300,368,4,12,9,7,0,1,42,26,13,18,21,1,1,0,0,0,0,0,7,7,19,22,25,3,5,4,2,2,1,5 -050,01,123,Alabama,Tallapoosa County,12,11,2809,1325,1484,969,1039,332,414,4,9,9,9,2,1,9,12,978,1049,337,416,8,14,10,14,2,5,1294,1465,951,1024,327,414,3,9,7,9,0,0,6,9,957,1031,330,416,6,12,8,13,0,4,31,19,18,15,5,0,1,0,2,0,2,1,3,3,21,18,7,0,2,2,2,1,2,1 -050,01,123,Alabama,Tallapoosa County,12,12,2987,1508,1479,1124,1096,361,356,4,6,7,8,1,2,11,11,1133,1104,366,363,12,12,8,10,1,3,1492,1461,1112,1082,359,355,4,6,7,8,0,1,10,9,1120,1088,363,360,11,12,8,10,0,2,16,18,12,14,2,1,0,0,0,0,1,1,1,2,13,16,3,3,1,0,0,0,1,1 -050,01,123,Alabama,Tallapoosa County,12,13,3195,1518,1677,1188,1277,303,370,8,14,4,8,0,0,15,8,1201,1285,305,372,22,18,5,9,0,1,1503,1672,1177,1273,301,370,7,13,4,8,0,0,14,8,1189,1281,303,372,20,17,5,9,0,1,15,5,11,4,2,0,1,1,0,0,0,0,1,0,12,4,2,0,2,1,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,12,14,2923,1400,1523,1101,1168,285,334,5,3,3,7,0,0,6,11,1106,1179,286,335,10,11,4,9,0,0,1388,1516,1093,1162,281,333,5,3,3,7,0,0,6,11,1098,1173,282,334,10,11,4,9,0,0,12,7,8,6,4,1,0,0,0,0,0,0,0,0,8,6,4,1,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,12,15,2418,1134,1284,921,1018,199,254,6,6,2,4,0,0,6,2,927,1020,200,254,10,8,3,4,0,0,1128,1276,918,1012,197,253,6,6,2,4,0,0,5,1,923,1013,197,253,10,7,3,4,0,0,6,8,3,6,2,1,0,0,0,0,0,0,1,1,4,7,3,1,0,1,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,12,16,1713,801,912,666,750,122,154,2,2,4,1,0,0,7,5,673,755,123,154,8,6,4,2,0,0,796,909,662,750,122,151,2,2,4,1,0,0,6,5,668,755,122,151,8,6,4,2,0,0,5,3,4,0,0,3,0,0,0,0,0,0,1,0,5,0,1,3,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,12,17,1090,470,620,391,487,74,121,1,4,1,1,0,0,3,7,394,492,74,124,3,9,2,2,0,0,466,614,388,483,73,119,1,4,1,1,0,0,3,7,391,488,73,122,3,9,2,2,0,0,4,6,3,4,1,2,0,0,0,0,0,0,0,0,3,4,1,2,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,12,18,835,352,483,288,379,57,97,0,2,2,2,0,0,5,3,293,380,58,99,3,4,3,3,0,0,350,481,286,377,57,97,0,2,2,2,0,0,5,3,291,378,58,99,3,4,3,3,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,13,0,40133,19458,20675,13881,14356,5075,5788,89,92,110,141,13,10,290,288,14147,14606,5249,5973,192,185,153,192,28,36,18919,20199,13526,14005,4980,5721,72,84,101,131,3,5,237,253,13745,14234,5124,5881,152,165,137,169,11,22,539,476,355,351,95,67,17,8,9,10,10,5,53,35,402,372,125,92,40,20,16,23,17,14 -050,01,123,Alabama,Tallapoosa County,13,1,2057,1037,1020,603,618,371,357,3,2,14,12,0,0,46,31,648,646,408,380,10,8,19,16,1,2,991,962,569,573,366,351,3,2,10,8,0,0,43,28,611,599,401,372,9,6,15,11,1,2,46,58,34,45,5,6,0,0,4,4,0,0,3,3,37,47,7,8,1,2,4,5,0,0 -050,01,123,Alabama,Tallapoosa County,13,2,2360,1220,1140,720,718,446,352,12,3,4,16,1,0,37,51,756,764,473,394,20,11,7,22,2,2,1152,1057,679,651,432,341,8,2,3,13,1,0,29,50,708,696,454,382,11,10,6,19,2,2,68,83,41,67,14,11,4,1,1,3,0,0,8,1,48,68,19,12,9,1,1,3,0,0 -050,01,123,Alabama,Tallapoosa County,13,3,2366,1227,1139,765,707,402,374,6,6,3,8,0,0,51,44,813,750,439,408,16,12,10,13,1,3,1168,1078,719,661,394,365,6,4,3,8,0,0,46,40,762,700,427,397,15,9,9,12,1,3,59,61,46,46,8,9,0,2,0,0,0,0,5,4,51,50,12,11,1,3,1,1,0,0 -050,01,123,Alabama,Tallapoosa County,13,4,2113,1080,1033,702,681,337,311,3,4,9,12,3,0,26,25,728,703,353,329,12,10,16,16,5,3,1033,997,670,654,330,309,2,4,9,10,2,0,20,20,690,673,344,324,8,8,14,13,3,2,47,36,32,27,7,2,1,0,0,2,1,0,6,5,38,30,9,5,4,2,2,3,2,1 -050,01,123,Alabama,Tallapoosa County,13,5,2105,1056,1049,690,639,344,382,2,6,2,4,2,1,16,17,704,655,357,390,7,12,4,8,3,4,1037,1024,675,621,342,378,2,5,2,4,0,1,16,15,689,636,355,385,7,11,4,7,1,3,19,25,15,18,2,4,0,1,0,0,2,0,0,2,15,19,2,5,0,1,0,1,2,1 -050,01,123,Alabama,Tallapoosa County,13,6,2451,1235,1216,829,754,374,434,4,5,11,7,1,2,16,14,842,766,384,443,10,9,14,8,2,4,1199,1191,806,738,371,429,3,4,9,7,0,1,10,12,815,748,377,436,7,8,11,8,0,3,36,25,23,16,3,5,1,1,2,0,1,1,6,2,27,18,7,7,3,1,3,0,2,1 -050,01,123,Alabama,Tallapoosa County,13,7,2218,1054,1164,743,719,282,414,11,4,6,11,3,1,9,15,752,732,286,422,14,9,7,16,5,1,1001,1139,704,702,279,407,7,4,6,11,0,0,5,15,709,715,282,415,8,9,7,16,0,0,53,25,39,17,3,7,4,0,0,0,3,1,4,0,43,17,4,7,6,0,0,0,5,1 -050,01,123,Alabama,Tallapoosa County,13,8,2025,938,1087,682,704,232,352,8,1,8,17,0,2,8,11,689,715,238,358,12,9,8,20,0,2,909,1056,667,686,224,343,6,1,8,16,0,1,4,9,670,695,227,347,8,8,8,18,0,1,29,31,15,18,8,9,2,0,0,1,0,1,4,2,19,20,11,11,4,1,0,2,0,1 -050,01,123,Alabama,Tallapoosa County,13,9,2023,977,1046,691,689,268,341,4,2,7,6,0,1,7,7,698,694,270,344,7,4,8,8,1,3,934,1019,659,670,262,336,2,2,7,6,0,1,4,4,663,674,263,338,4,3,8,7,0,1,43,27,32,19,6,5,2,0,0,0,0,0,3,3,35,20,7,6,3,1,0,1,1,2 -050,01,123,Alabama,Tallapoosa County,13,10,2309,1071,1238,749,876,299,343,4,3,10,8,0,0,9,8,757,879,304,350,9,6,12,13,0,4,1032,1216,737,860,278,342,4,3,10,8,0,0,3,3,740,862,279,344,6,4,10,9,0,0,39,22,12,16,21,1,0,0,0,0,0,0,6,5,17,17,25,6,3,2,2,4,0,4 -050,01,123,Alabama,Tallapoosa County,13,11,2784,1305,1479,963,1024,315,422,4,7,10,7,2,1,11,18,972,1035,319,435,9,15,12,10,4,5,1269,1450,942,1002,309,421,2,7,9,7,0,0,7,13,949,1011,310,429,6,13,11,9,0,3,36,29,21,22,6,1,2,0,1,0,2,1,4,5,23,24,9,6,3,2,1,1,4,2 -050,01,123,Alabama,Tallapoosa County,13,12,2986,1483,1503,1113,1119,344,354,6,10,9,9,1,2,10,9,1121,1128,346,356,13,14,11,12,2,2,1467,1481,1102,1103,342,353,6,8,8,9,0,1,9,7,1109,1110,344,355,12,11,10,11,1,1,16,22,11,16,2,1,0,2,1,0,1,1,1,2,12,18,2,1,1,3,1,1,1,1 -050,01,123,Alabama,Tallapoosa County,13,13,3182,1529,1653,1187,1248,314,367,10,19,3,9,0,0,15,10,1199,1257,317,370,22,26,5,10,1,0,1510,1649,1172,1245,312,367,9,18,3,9,0,0,14,10,1183,1254,315,370,20,25,5,10,1,0,19,4,15,3,2,0,1,1,0,0,0,0,1,0,16,3,2,0,2,1,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,13,14,2957,1431,1526,1127,1170,288,336,2,4,5,6,0,0,9,10,1134,1179,290,339,8,10,7,8,1,1,1419,1519,1119,1163,284,336,2,4,5,6,0,0,9,10,1126,1172,286,339,8,10,7,8,1,1,12,7,8,7,4,0,0,0,0,0,0,0,0,0,8,7,4,0,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,13,15,2549,1200,1349,976,1057,211,277,5,6,2,5,0,0,6,4,982,1060,212,278,10,9,2,6,0,0,1195,1339,975,1050,208,275,5,6,2,5,0,0,5,3,980,1053,208,275,10,9,2,5,0,0,5,10,1,7,3,2,0,0,0,0,0,0,1,1,2,7,4,3,0,0,0,1,0,0 -050,01,123,Alabama,Tallapoosa County,13,16,1700,767,933,643,770,110,155,4,3,4,1,0,0,6,4,649,772,110,157,8,7,6,1,0,0,761,930,638,769,110,153,4,3,4,1,0,0,5,4,643,771,110,155,8,7,5,1,0,0,6,3,5,1,0,2,0,0,0,0,0,0,1,0,6,1,0,2,0,0,1,0,0,0 -050,01,123,Alabama,Tallapoosa County,13,17,1122,499,623,409,487,84,126,1,3,1,1,0,0,4,6,412,492,87,128,3,6,1,3,0,0,495,617,406,483,83,124,1,3,1,1,0,0,4,6,409,488,86,126,3,6,1,3,0,0,4,6,3,4,1,2,0,0,0,0,0,0,0,0,3,4,1,2,0,0,0,0,0,0 -050,01,123,Alabama,Tallapoosa County,13,18,826,349,477,289,376,54,91,0,4,2,2,0,0,4,4,291,379,56,92,2,8,4,2,0,0,347,475,287,374,54,91,0,4,2,2,0,0,4,4,289,377,56,92,2,8,4,2,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,1,0,194656,94400,100256,65415,66494,26481,31356,332,294,1198,1145,78,65,896,902,66201,67279,26947,31826,662,619,1440,1381,107,108,90962,97745,62435,64293,26254,31203,228,228,1184,1138,35,43,826,840,63160,65029,26684,31636,524,523,1403,1354,60,79,3438,2511,2980,2201,227,153,104,66,14,7,43,22,70,62,3041,2250,263,190,138,96,37,27,47,29 -050,01,125,Alabama,Tuscaloosa County,1,1,11596,5903,5693,3417,3371,2234,2094,23,15,64,54,7,10,158,149,3564,3512,2348,2211,39,32,107,78,10,17,5539,5336,3105,3058,2211,2073,11,8,63,54,3,6,146,137,3240,3188,2317,2181,24,21,102,72,6,13,364,357,312,313,23,21,12,7,1,0,4,4,12,12,324,324,31,30,15,11,5,6,4,4 -050,01,125,Alabama,Tuscaloosa County,1,2,11515,5957,5558,3533,3309,2205,2076,23,14,73,53,9,4,114,102,3644,3399,2276,2147,39,33,101,75,13,7,5733,5312,3338,3085,2190,2064,13,11,73,53,7,2,112,97,3448,3172,2261,2131,28,27,100,75,10,5,224,246,195,224,15,12,10,3,0,0,2,2,2,5,196,227,15,16,11,6,1,0,3,2 -050,01,125,Alabama,Tuscaloosa County,1,3,11599,5895,5704,3441,3235,2308,2324,13,10,42,48,2,8,89,79,3516,3304,2368,2377,45,33,55,68,2,11,5717,5547,3285,3098,2297,2316,10,7,41,48,1,6,83,72,3354,3160,2354,2364,39,29,54,66,1,9,178,157,156,137,11,8,3,3,1,0,1,2,6,7,162,144,14,13,6,4,1,2,1,2 -050,01,125,Alabama,Tuscaloosa County,1,4,18398,8889,9509,5787,6222,2847,3043,26,29,122,114,10,6,97,95,5869,6310,2900,3091,63,60,154,138,11,12,8528,9254,5487,6000,2810,3028,16,21,120,112,5,6,90,87,5563,6081,2859,3072,49,48,149,133,6,10,361,255,300,222,37,15,10,8,2,2,5,0,7,8,306,229,41,19,14,12,5,5,5,2 -050,01,125,Alabama,Tuscaloosa County,1,5,26934,13628,13306,10334,9661,2887,3240,43,33,234,227,15,8,115,137,10440,9783,2931,3299,79,67,283,288,19,14,12999,12884,9778,9283,2846,3217,34,23,232,225,4,5,105,131,9875,9400,2884,3273,68,56,277,283,7,10,629,422,556,378,41,23,9,10,2,2,11,3,10,6,565,383,47,26,11,11,6,5,12,4 -050,01,125,Alabama,Tuscaloosa County,1,6,14045,7024,7021,4767,4311,1952,2459,39,25,190,145,11,11,65,70,4823,4371,1985,2486,64,54,210,172,13,15,6544,6743,4352,4069,1927,2443,16,18,187,144,7,7,55,62,4400,4124,1957,2465,35,42,202,169,9,10,480,278,415,242,25,16,23,7,3,1,4,4,10,8,423,247,28,21,29,12,8,3,4,5 -050,01,125,Alabama,Tuscaloosa County,1,7,12129,5937,6192,3962,3691,1793,2340,28,23,98,98,7,10,49,30,4000,3716,1816,2355,54,35,111,106,10,14,5615,5984,3685,3519,1770,2323,19,13,97,98,1,5,43,26,3719,3540,1788,2336,42,21,108,105,4,9,322,208,277,172,23,17,9,10,1,0,6,5,6,4,281,176,28,19,12,14,3,1,6,5 -050,01,125,Alabama,Tuscaloosa County,1,8,11869,5765,6104,3965,3716,1648,2232,23,26,88,89,5,3,36,38,3994,3746,1660,2251,41,47,98,97,10,4,5516,5962,3738,3586,1642,2228,15,22,88,89,0,2,33,35,3765,3613,1652,2245,31,40,98,97,4,3,249,142,227,130,6,4,8,4,0,0,5,1,3,3,229,133,8,6,10,7,0,0,6,1 -050,01,125,Alabama,Tuscaloosa County,1,9,10934,5268,5666,3787,3704,1361,1870,17,20,65,45,3,0,35,27,3821,3727,1376,1876,36,36,70,54,5,1,5073,5541,3617,3595,1350,1860,11,17,64,44,2,0,29,25,3645,3618,1362,1866,27,31,67,52,4,0,195,125,170,109,11,10,6,3,1,1,1,0,6,2,176,109,14,10,9,5,3,2,1,1 -050,01,125,Alabama,Tuscaloosa County,1,10,11576,5648,5928,3997,3875,1538,1933,24,21,58,63,5,3,26,33,4017,3900,1546,1944,44,37,63,72,7,10,5489,5842,3865,3806,1526,1926,19,16,55,63,2,2,22,29,3882,3829,1532,1935,36,31,59,71,3,7,159,86,132,69,12,7,5,5,3,0,3,1,4,4,135,71,14,9,8,6,4,1,4,3 -050,01,125,Alabama,Tuscaloosa County,1,11,12148,5779,6369,4063,4305,1615,1947,18,27,51,58,1,0,31,32,4088,4333,1622,1954,42,50,59,64,2,0,5679,6294,3977,4241,1609,1940,13,24,51,58,0,0,29,31,4000,4268,1616,1947,35,47,59,63,1,0,100,75,86,64,6,7,5,3,0,0,1,0,2,1,88,65,6,7,7,3,0,1,1,0 -050,01,125,Alabama,Tuscaloosa County,1,12,11559,5554,6005,4005,4073,1459,1819,23,18,39,62,2,1,26,32,4024,4098,1467,1834,43,38,44,68,3,1,5467,5966,3931,4038,1450,1815,19,18,39,62,2,1,26,32,3950,4063,1458,1830,39,38,44,68,3,1,87,39,74,35,9,4,4,0,0,0,0,0,0,0,74,35,9,4,4,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,1,13,9304,4464,4840,3417,3550,971,1208,18,14,33,42,0,1,25,25,3439,3570,979,1214,36,34,38,47,1,2,4430,4803,3387,3519,968,1206,18,11,33,41,0,1,24,25,3408,3539,976,1212,35,31,38,46,1,2,34,37,30,31,3,2,0,3,0,1,0,0,1,0,31,31,3,2,1,3,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,1,14,6594,3074,3520,2416,2680,618,791,8,7,18,19,0,0,14,23,2425,2698,624,798,20,25,20,22,0,0,3054,3498,2397,2661,618,788,8,7,18,19,0,0,13,23,2405,2679,624,795,19,25,19,22,0,0,20,22,19,19,0,3,0,0,0,0,0,0,1,0,20,19,0,3,1,0,1,0,0,0 -050,01,125,Alabama,Tuscaloosa County,1,15,4755,2092,2663,1660,2012,416,629,3,1,8,9,0,0,5,12,1664,2022,417,631,6,13,10,9,0,0,2078,2648,1649,1999,413,628,3,1,8,9,0,0,5,11,1653,2008,414,630,6,12,10,9,0,0,14,15,11,13,3,1,0,0,0,0,0,0,0,1,11,14,3,1,0,1,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,1,16,4072,1594,2478,1274,1893,305,561,0,5,9,13,1,0,5,6,1279,1897,305,563,3,8,11,16,1,0,1582,2457,1263,1873,304,560,0,5,9,13,1,0,5,6,1268,1877,304,562,3,8,11,16,1,0,12,21,11,20,1,1,0,0,0,0,0,0,0,0,11,20,1,1,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,1,17,3113,1126,1987,946,1531,174,437,0,4,3,6,0,0,3,9,949,1536,174,441,3,12,3,7,0,0,1120,1975,940,1521,174,436,0,4,3,6,0,0,3,8,943,1526,174,439,3,11,3,7,0,0,6,12,6,10,0,1,0,0,0,0,0,0,0,1,6,10,0,2,0,1,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,1,18,2516,803,1713,644,1355,150,353,3,2,3,0,0,0,3,3,645,1357,153,354,5,5,3,0,0,0,799,1699,641,1342,149,352,3,2,3,0,0,0,3,3,642,1344,152,353,5,5,3,0,0,0,4,14,3,13,1,1,0,0,0,0,0,0,0,0,3,13,1,1,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,2,0,194678,94408,100270,65424,66509,26480,31355,332,294,1198,1145,78,65,896,902,66210,67294,26946,31825,662,619,1440,1381,107,108,90970,97759,62444,64308,26253,31202,228,228,1184,1138,35,43,826,840,63169,65044,26683,31635,524,523,1403,1354,60,79,3438,2511,2980,2201,227,153,104,66,14,7,43,22,70,62,3041,2250,263,190,138,96,37,27,47,29 -050,01,125,Alabama,Tuscaloosa County,2,1,11598,5903,5695,3417,3373,2234,2094,23,15,64,54,7,10,158,149,3564,3514,2348,2211,39,32,107,78,10,17,5539,5338,3105,3060,2211,2073,11,8,63,54,3,6,146,137,3240,3190,2317,2181,24,21,102,72,6,13,364,357,312,313,23,21,12,7,1,0,4,4,12,12,324,324,31,30,15,11,5,6,4,4 -050,01,125,Alabama,Tuscaloosa County,2,2,11517,5959,5558,3535,3309,2205,2076,23,14,73,53,9,4,114,102,3646,3399,2276,2147,39,33,101,75,13,7,5735,5312,3340,3085,2190,2064,13,11,73,53,7,2,112,97,3450,3172,2261,2131,28,27,100,75,10,5,224,246,195,224,15,12,10,3,0,0,2,2,2,5,196,227,15,16,11,6,1,0,3,2 -050,01,125,Alabama,Tuscaloosa County,2,3,11602,5895,5707,3441,3238,2308,2324,13,10,42,48,2,8,89,79,3516,3307,2368,2377,45,33,55,68,2,11,5717,5550,3285,3101,2297,2316,10,7,41,48,1,6,83,72,3354,3163,2354,2364,39,29,54,66,1,9,178,157,156,137,11,8,3,3,1,0,1,2,6,7,162,144,14,13,6,4,1,2,1,2 -050,01,125,Alabama,Tuscaloosa County,2,4,18404,8892,9512,5790,6225,2847,3043,26,29,122,114,10,6,97,95,5872,6313,2900,3091,63,60,154,138,11,12,8531,9257,5490,6003,2810,3028,16,21,120,112,5,6,90,87,5566,6084,2859,3072,49,48,149,133,6,10,361,255,300,222,37,15,10,8,2,2,5,0,7,8,306,229,41,19,14,12,5,5,5,2 -050,01,125,Alabama,Tuscaloosa County,2,5,26939,13630,13309,10336,9664,2887,3240,43,33,234,227,15,8,115,137,10442,9786,2931,3299,79,67,283,288,19,14,13001,12887,9780,9286,2846,3217,34,23,232,225,4,5,105,131,9877,9403,2884,3273,68,56,277,283,7,10,629,422,556,378,41,23,9,10,2,2,11,3,10,6,565,383,47,26,11,11,6,5,12,4 -050,01,125,Alabama,Tuscaloosa County,2,6,14043,7023,7020,4766,4310,1952,2459,39,25,190,145,11,11,65,70,4822,4370,1985,2486,64,54,210,172,13,15,6543,6742,4351,4068,1927,2443,16,18,187,144,7,7,55,62,4399,4123,1957,2465,35,42,202,169,9,10,480,278,415,242,25,16,23,7,3,1,4,4,10,8,423,247,28,21,29,12,8,3,4,5 -050,01,125,Alabama,Tuscaloosa County,2,7,12131,5938,6193,3963,3692,1793,2340,28,23,98,98,7,10,49,30,4001,3717,1816,2355,54,35,111,106,10,14,5616,5985,3686,3520,1770,2323,19,13,97,98,1,5,43,26,3720,3541,1788,2336,42,21,108,105,4,9,322,208,277,172,23,17,9,10,1,0,6,5,6,4,281,176,28,19,12,14,3,1,6,5 -050,01,125,Alabama,Tuscaloosa County,2,8,11868,5764,6104,3964,3716,1648,2232,23,26,88,89,5,3,36,38,3993,3746,1660,2251,41,47,98,97,10,4,5515,5962,3737,3586,1642,2228,15,22,88,89,0,2,33,35,3764,3613,1652,2245,31,40,98,97,4,3,249,142,227,130,6,4,8,4,0,0,5,1,3,3,229,133,8,6,10,7,0,0,6,1 -050,01,125,Alabama,Tuscaloosa County,2,9,10936,5268,5668,3788,3706,1360,1870,17,20,65,45,3,0,35,27,3822,3729,1375,1876,36,36,70,54,5,1,5073,5543,3618,3597,1349,1860,11,17,64,44,2,0,29,25,3646,3620,1361,1866,27,31,67,52,4,0,195,125,170,109,11,10,6,3,1,1,1,0,6,2,176,109,14,10,9,5,3,2,1,1 -050,01,125,Alabama,Tuscaloosa County,2,10,11578,5650,5928,3999,3876,1538,1932,24,21,58,63,5,3,26,33,4019,3901,1546,1943,44,37,63,72,7,10,5491,5842,3867,3807,1526,1925,19,16,55,63,2,2,22,29,3884,3830,1532,1934,36,31,59,71,3,7,159,86,132,69,12,7,5,5,3,0,3,1,4,4,135,71,14,9,8,6,4,1,4,3 -050,01,125,Alabama,Tuscaloosa County,2,11,12147,5778,6369,4062,4305,1615,1947,18,27,51,58,1,0,31,32,4087,4333,1622,1954,42,50,59,64,2,0,5678,6294,3976,4241,1609,1940,13,24,51,58,0,0,29,31,3999,4268,1616,1947,35,47,59,63,1,0,100,75,86,64,6,7,5,3,0,0,1,0,2,1,88,65,6,7,7,3,0,1,1,0 -050,01,125,Alabama,Tuscaloosa County,2,12,11561,5555,6006,4006,4074,1459,1819,23,18,39,62,2,1,26,32,4025,4099,1467,1834,43,38,44,68,3,1,5468,5967,3932,4039,1450,1815,19,18,39,62,2,1,26,32,3951,4064,1458,1830,39,38,44,68,3,1,87,39,74,35,9,4,4,0,0,0,0,0,0,0,74,35,9,4,4,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,2,13,9304,4464,4840,3417,3550,971,1208,18,14,33,42,0,1,25,25,3439,3570,979,1214,36,34,38,47,1,2,4430,4803,3387,3519,968,1206,18,11,33,41,0,1,24,25,3408,3539,976,1212,35,31,38,46,1,2,34,37,30,31,3,2,0,3,0,1,0,0,1,0,31,31,3,2,1,3,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,2,14,6594,3074,3520,2416,2680,618,791,8,7,18,19,0,0,14,23,2425,2698,624,798,20,25,20,22,0,0,3054,3498,2397,2661,618,788,8,7,18,19,0,0,13,23,2405,2679,624,795,19,25,19,22,0,0,20,22,19,19,0,3,0,0,0,0,0,0,1,0,20,19,0,3,1,0,1,0,0,0 -050,01,125,Alabama,Tuscaloosa County,2,15,4755,2092,2663,1660,2012,416,629,3,1,8,9,0,0,5,12,1664,2022,417,631,6,13,10,9,0,0,2078,2648,1649,1999,413,628,3,1,8,9,0,0,5,11,1653,2008,414,630,6,12,10,9,0,0,14,15,11,13,3,1,0,0,0,0,0,0,0,1,11,14,3,1,0,1,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,2,16,4072,1594,2478,1274,1893,305,561,0,5,9,13,1,0,5,6,1279,1897,305,563,3,8,11,16,1,0,1582,2457,1263,1873,304,560,0,5,9,13,1,0,5,6,1268,1877,304,562,3,8,11,16,1,0,12,21,11,20,1,1,0,0,0,0,0,0,0,0,11,20,1,1,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,2,17,3113,1126,1987,946,1531,174,437,0,4,3,6,0,0,3,9,949,1536,174,441,3,12,3,7,0,0,1120,1975,940,1521,174,436,0,4,3,6,0,0,3,8,943,1526,174,439,3,11,3,7,0,0,6,12,6,10,0,1,0,0,0,0,0,0,0,1,6,10,0,2,0,1,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,2,18,2516,803,1713,644,1355,150,353,3,2,3,0,0,0,3,3,645,1357,153,354,5,5,3,0,0,0,799,1699,641,1342,149,352,3,2,3,0,0,0,3,3,642,1344,152,353,5,5,3,0,0,0,4,14,3,13,1,1,0,0,0,0,0,0,0,0,3,13,1,1,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,3,0,195008,94508,100500,65408,66506,26549,31475,336,303,1232,1204,77,63,906,949,66202,67356,27009,31972,670,674,1504,1469,124,111,91063,97938,62429,64298,26321,31283,228,236,1217,1197,34,43,834,881,63165,65088,26742,31739,527,566,1468,1442,72,78,3445,2562,2979,2208,228,192,108,67,15,7,43,20,72,68,3037,2268,267,233,143,108,36,27,52,33 -050,01,125,Alabama,Tuscaloosa County,3,1,11611,5921,5690,3434,3372,2228,2085,27,14,65,54,6,10,161,155,3587,3521,2339,2199,51,41,105,93,14,12,5538,5324,3109,3051,2204,2064,11,8,63,54,2,6,149,141,3252,3186,2306,2170,29,26,101,89,9,6,383,366,325,321,24,21,16,6,2,0,4,4,12,14,335,335,33,29,22,15,4,4,5,6 -050,01,125,Alabama,Tuscaloosa County,3,2,11490,5942,5548,3529,3307,2194,2066,23,14,72,53,8,4,116,104,3639,3407,2275,2136,41,37,104,76,12,5,5716,5300,3330,3082,2180,2053,14,11,72,53,7,2,113,99,3437,3177,2259,2120,32,31,103,76,11,3,226,248,199,225,14,13,9,3,0,0,1,2,3,5,202,230,16,16,9,6,1,0,1,2 -050,01,125,Alabama,Tuscaloosa County,3,3,11615,5903,5712,3451,3243,2300,2321,14,10,47,48,2,8,89,82,3531,3319,2356,2375,35,30,73,71,7,13,5726,5553,3296,3104,2289,2313,10,7,46,48,1,6,84,75,3372,3175,2342,2363,28,23,70,68,5,9,177,159,155,139,11,8,4,3,1,0,1,2,5,7,159,144,14,12,7,7,3,3,2,4 -050,01,125,Alabama,Tuscaloosa County,3,4,18164,8799,9365,5688,6066,2847,3056,25,32,134,108,8,5,97,98,5770,6154,2903,3110,57,59,166,139,14,11,8453,9112,5397,5852,2816,3037,16,23,131,106,4,5,89,89,5472,5933,2867,3085,45,46,160,133,8,9,346,253,291,214,31,19,9,9,3,2,4,0,8,9,298,221,36,25,12,13,6,6,6,2 -050,01,125,Alabama,Tuscaloosa County,3,5,27233,13700,13533,10344,9724,2930,3313,41,36,253,283,15,9,117,168,10445,9871,2981,3401,81,94,299,337,21,18,13089,13077,9804,9345,2888,3258,32,27,252,281,5,6,108,160,9898,9484,2937,3342,69,79,294,334,9,15,611,456,540,379,42,55,9,9,1,2,10,3,9,8,547,387,44,59,12,15,5,3,12,3 -050,01,125,Alabama,Tuscaloosa County,3,6,13982,6985,6997,4751,4327,1930,2416,40,28,184,147,13,10,67,69,4805,4386,1958,2451,68,53,212,175,16,15,6510,6718,4343,4086,1904,2398,19,21,181,146,7,6,56,61,4388,4137,1925,2425,41,43,205,170,10,9,475,279,408,241,26,18,21,7,3,1,6,4,11,8,417,249,33,26,27,10,7,5,6,6 -050,01,125,Alabama,Tuscaloosa County,3,7,12225,5969,6256,3967,3719,1820,2370,25,25,100,100,7,10,50,32,4010,3747,1837,2384,50,41,123,110,10,11,5637,6046,3682,3545,1796,2354,16,14,99,100,1,6,43,27,3720,3568,1811,2366,36,26,120,109,3,7,332,210,285,174,24,16,9,11,1,0,6,4,7,5,290,179,26,18,14,15,3,1,7,4 -050,01,125,Alabama,Tuscaloosa County,3,8,11834,5743,6091,3951,3701,1643,2232,24,26,83,90,5,3,37,39,3984,3735,1654,2244,43,47,95,104,8,9,5495,5947,3726,3571,1636,2228,16,21,83,90,0,2,34,35,3756,3602,1645,2238,33,39,95,102,3,6,248,144,225,130,7,4,8,5,0,0,5,1,3,4,228,133,9,6,10,8,0,2,5,3 -050,01,125,Alabama,Tuscaloosa County,3,9,10978,5292,5686,3797,3707,1368,1885,18,19,70,47,3,0,36,28,3828,3729,1382,1892,41,39,77,56,5,3,5093,5564,3623,3598,1358,1877,11,16,69,46,2,0,30,27,3650,3619,1366,1884,33,35,75,55,3,3,199,122,174,109,10,8,7,3,1,1,1,0,6,1,178,110,16,8,8,4,2,1,2,0 -050,01,125,Alabama,Tuscaloosa County,3,10,11568,5636,5932,3991,3876,1532,1939,23,22,58,61,6,2,26,32,4009,3902,1541,1950,43,40,63,69,7,6,5476,5844,3859,3806,1520,1931,18,16,55,61,2,2,22,28,3875,3830,1528,1940,35,33,59,68,2,3,160,88,132,70,12,8,5,6,3,0,4,0,4,4,134,72,13,10,8,7,4,1,5,3 -050,01,125,Alabama,Tuscaloosa County,3,11,12098,5758,6340,4052,4283,1606,1939,20,28,50,60,1,0,29,30,4075,4310,1613,1947,43,50,55,67,1,2,5656,6264,3966,4219,1599,1931,14,25,50,60,0,0,27,29,3987,4245,1606,1938,35,46,55,67,0,2,102,76,86,64,7,8,6,3,0,0,1,0,2,1,88,65,7,9,8,4,0,0,1,0 -050,01,125,Alabama,Tuscaloosa County,3,12,11630,5601,6029,4025,4097,1484,1822,22,17,40,61,3,1,27,31,4044,4122,1493,1830,40,42,46,67,5,2,5508,5987,3948,4059,1473,1818,17,17,40,61,3,1,27,31,3967,4084,1482,1826,35,42,46,67,5,2,93,42,77,38,11,4,5,0,0,0,0,0,0,0,77,38,11,4,5,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,3,13,9436,4510,4926,3449,3584,986,1256,18,14,33,44,0,1,24,27,3470,3607,991,1263,36,36,37,49,3,2,4476,4891,3419,3555,983,1253,18,12,33,43,0,1,23,27,3439,3578,988,1260,36,34,36,48,3,2,34,35,30,29,3,3,0,2,0,1,0,0,1,0,31,29,3,3,0,2,1,1,0,0 -050,01,125,Alabama,Tuscaloosa County,3,14,6619,3088,3531,2420,2690,627,795,10,6,18,18,0,0,13,22,2432,2709,628,802,21,26,20,22,0,2,3066,3510,2400,2672,626,792,10,6,18,18,0,0,12,22,2411,2691,627,799,20,26,20,22,0,2,22,21,20,18,1,3,0,0,0,0,0,0,1,0,21,18,1,3,1,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,3,15,4795,2122,2673,1686,2017,419,633,3,1,8,10,0,0,6,12,1690,2027,421,635,9,10,8,13,0,0,2107,2656,1674,2002,416,632,3,1,8,10,0,0,6,11,1678,2011,418,634,9,9,8,13,0,0,15,17,12,15,3,1,0,0,0,0,0,0,0,1,12,16,3,1,0,1,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,3,16,4050,1589,2461,1272,1878,303,559,0,5,10,13,0,0,4,6,1276,1884,303,562,3,10,11,13,0,0,1577,2441,1261,1859,302,558,0,5,10,13,0,0,4,6,1265,1865,302,561,3,10,11,13,0,0,12,20,11,19,1,1,0,0,0,0,0,0,0,0,11,19,1,1,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,3,17,3127,1138,1989,949,1537,181,433,0,3,4,6,0,0,4,10,953,1544,181,436,3,13,5,6,0,0,1132,1978,943,1528,181,432,0,3,4,6,0,0,4,9,947,1535,181,434,3,12,5,6,0,0,6,11,6,9,0,1,0,0,0,0,0,0,0,1,6,9,0,2,0,1,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,3,18,2553,812,1741,652,1378,151,355,3,3,3,1,0,0,3,4,654,1382,153,355,5,6,5,2,1,0,808,1726,649,1364,150,354,3,3,3,1,0,0,3,4,651,1368,152,354,5,6,5,2,1,0,4,15,3,14,1,1,0,0,0,0,0,0,0,0,3,14,1,1,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,4,0,196788,95282,101506,65636,66747,27017,32111,332,299,1281,1287,68,62,948,1000,66488,67639,27489,32620,678,659,1565,1568,117,125,91802,98832,62602,64439,26803,31912,224,230,1266,1277,35,43,872,931,63392,65273,27237,32383,528,558,1528,1532,70,93,3480,2674,3034,2308,214,199,108,69,15,10,33,19,76,69,3096,2366,252,237,150,101,37,36,47,32 -050,01,125,Alabama,Tuscaloosa County,4,1,11818,5978,5840,3421,3488,2275,2098,19,11,74,64,6,10,183,169,3594,3647,2402,2222,46,32,123,102,17,18,5568,5426,3068,3122,2249,2077,7,6,72,62,2,6,170,153,3228,3268,2366,2189,27,21,118,97,11,11,410,414,353,366,26,21,12,5,2,2,4,4,13,16,366,379,36,33,19,11,5,5,6,7 -050,01,125,Alabama,Tuscaloosa County,4,2,11333,5838,5495,3483,3227,2143,2079,26,17,64,54,8,3,114,115,3588,3335,2218,2154,47,32,96,85,12,10,5592,5245,3267,3002,2130,2064,15,13,64,54,7,1,109,111,3369,3107,2202,2138,32,28,95,83,11,5,246,250,216,225,13,15,11,4,0,0,1,2,5,4,219,228,16,16,15,4,1,2,1,5 -050,01,125,Alabama,Tuscaloosa County,4,3,11809,6036,5773,3544,3276,2318,2339,16,9,65,48,1,9,92,92,3630,3361,2374,2396,32,31,91,76,5,17,5860,5592,3392,3117,2307,2330,9,7,64,48,1,7,87,83,3473,3196,2361,2381,25,24,88,71,4,13,176,181,152,159,11,9,7,2,1,0,0,2,5,9,157,165,13,15,7,7,3,5,1,4 -050,01,125,Alabama,Tuscaloosa County,4,4,17306,8473,8833,5386,5567,2821,3048,22,28,139,96,6,3,99,91,5475,5650,2876,3096,54,55,172,125,7,6,8146,8593,5102,5364,2800,3029,15,19,136,94,3,3,90,84,5183,5441,2851,3075,43,41,165,120,4,6,327,240,284,203,21,19,7,9,3,2,3,0,9,7,292,209,25,21,11,14,7,5,3,0 -050,01,125,Alabama,Tuscaloosa County,4,5,28298,14077,14221,10459,10083,3157,3588,39,37,281,327,14,8,127,178,10572,10236,3216,3682,89,90,326,384,19,19,13489,13769,9937,9703,3117,3535,30,27,280,326,8,7,117,171,10044,9849,3170,3625,75,77,321,381,11,17,588,452,522,380,40,53,9,10,1,1,6,1,10,7,528,387,46,57,14,13,5,3,8,2 -050,01,125,Alabama,Tuscaloosa County,4,6,13858,6944,6914,4737,4355,1938,2290,39,29,157,157,9,11,64,72,4789,4420,1966,2319,67,52,181,182,13,15,6501,6645,4349,4126,1912,2272,22,22,155,156,5,5,58,64,4395,4183,1937,2297,46,44,178,178,8,9,443,269,388,229,26,18,17,7,2,1,4,6,6,8,394,237,29,22,21,8,3,4,5,6 -050,01,125,Alabama,Tuscaloosa County,4,7,12707,6217,6490,4075,3829,1942,2491,24,19,112,108,5,9,59,34,4128,3857,1960,2502,48,38,136,121,7,11,5847,6253,3752,3628,1919,2472,13,11,111,107,1,7,51,28,3797,3651,1936,2482,34,26,132,118,1,8,370,237,323,201,23,19,11,8,1,1,4,2,8,6,331,206,24,20,14,12,4,3,6,3 -050,01,125,Alabama,Tuscaloosa County,4,8,11569,5587,5982,3857,3640,1581,2184,27,24,76,94,5,5,41,35,3892,3673,1593,2199,48,44,90,109,8,8,5339,5819,3634,3494,1573,2181,20,16,76,94,1,3,35,31,3665,3524,1583,2192,35,34,90,105,2,5,248,163,223,146,8,3,7,8,0,0,4,2,6,4,227,149,10,7,13,10,0,4,6,3 -050,01,125,Alabama,Tuscaloosa County,4,9,11244,5420,5824,3848,3716,1442,1997,22,19,76,56,3,0,29,36,3874,3743,1450,2007,41,43,84,65,7,5,5224,5705,3673,3613,1438,1989,12,14,75,55,1,0,25,34,3695,3638,1443,1999,29,36,81,64,4,5,196,119,175,103,4,8,10,5,1,1,2,0,4,2,179,105,7,8,12,7,3,1,3,0 -050,01,125,Alabama,Tuscaloosa County,4,10,11482,5566,5916,3931,3828,1509,1978,23,25,64,57,7,1,32,27,3958,3851,1516,1989,47,45,71,63,10,2,5405,5819,3802,3751,1496,1966,18,20,60,57,3,1,26,24,3826,3771,1501,1975,38,38,66,62,4,2,161,97,129,77,13,12,5,5,4,0,4,0,6,3,132,80,15,14,9,7,5,1,6,0 -050,01,125,Alabama,Tuscaloosa County,4,11,12003,5701,6302,4044,4250,1571,1927,20,29,49,60,1,1,16,35,4057,4279,1574,1936,31,52,55,68,4,4,5597,6223,3956,4182,1563,1921,15,25,49,60,0,1,14,34,3968,4211,1565,1929,25,47,54,68,2,4,104,79,88,68,8,6,5,4,0,0,1,0,2,1,89,68,9,7,6,5,1,0,2,0 -050,01,125,Alabama,Tuscaloosa County,4,12,11832,5698,6134,4071,4178,1534,1843,21,18,38,62,2,1,32,32,4096,4206,1543,1851,45,42,46,69,4,4,5593,6088,3984,4135,1523,1840,14,18,38,62,2,1,32,32,4009,4163,1532,1848,38,42,46,69,4,4,105,46,87,43,11,3,7,0,0,0,0,0,0,0,87,43,11,3,7,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,4,13,10155,4826,5329,3666,3794,1076,1438,17,15,39,52,1,1,27,29,3689,3814,1086,1448,42,39,43,56,2,2,4786,5291,3630,3766,1073,1432,17,13,39,50,1,1,26,29,3653,3786,1082,1442,41,37,43,54,2,2,40,38,36,28,3,6,0,2,0,2,0,0,1,0,36,28,4,6,1,2,0,2,0,0 -050,01,125,Alabama,Tuscaloosa County,4,14,6730,3138,3592,2444,2720,653,823,10,9,16,20,0,0,15,20,2458,2739,656,825,20,26,18,25,1,1,3111,3570,2421,2700,650,821,10,9,16,20,0,0,14,20,2434,2719,653,823,19,26,18,25,1,1,27,22,23,20,3,2,0,0,0,0,0,0,1,0,24,20,3,2,1,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,4,15,4964,2240,2724,1794,2064,422,637,4,0,12,10,0,0,8,13,1802,2077,423,638,11,9,12,12,0,1,2223,2705,1780,2048,419,635,4,0,12,10,0,0,8,12,1788,2060,420,636,11,9,12,12,0,0,17,19,14,16,3,2,0,0,0,0,0,0,0,1,14,17,3,2,0,0,0,0,0,1 -050,01,125,Alabama,Tuscaloosa County,4,16,3963,1575,2388,1268,1811,296,557,0,3,9,11,0,0,2,6,1270,1816,296,558,2,8,9,12,0,0,1566,2370,1259,1794,296,556,0,3,9,11,0,0,2,6,1261,1799,296,557,2,8,9,12,0,0,9,18,9,17,0,1,0,0,0,0,0,0,0,0,9,17,0,1,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,4,17,3088,1130,1958,925,1513,194,424,0,3,5,7,0,0,6,11,931,1523,194,426,4,12,7,10,1,2,1121,1946,917,1503,193,423,0,3,5,7,0,0,6,10,923,1512,193,424,4,11,7,9,1,1,9,12,8,10,1,1,0,0,0,0,0,0,0,1,8,11,1,2,0,1,0,1,0,1 -050,01,125,Alabama,Tuscaloosa County,4,18,2629,838,1791,683,1408,145,370,3,4,5,4,0,0,2,5,685,1412,146,372,4,9,5,4,0,0,834,1773,679,1391,145,369,3,4,5,4,0,0,2,5,681,1395,146,371,4,9,5,4,0,0,4,18,4,17,0,1,0,0,0,0,0,0,0,0,4,17,0,1,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,5,0,198884,96148,102736,65863,67172,27547,32790,315,317,1367,1369,70,63,986,1025,66762,68076,28044,33324,663,688,1658,1668,114,123,92689,99950,62837,64765,27336,32579,215,240,1351,1361,41,45,909,960,63668,65613,27783,33077,529,583,1622,1640,77,97,3459,2786,3026,2407,211,211,100,77,16,8,29,18,77,65,3094,2463,261,247,134,105,36,28,37,26 -050,01,125,Alabama,Tuscaloosa County,5,1,11840,5988,5852,3477,3496,2223,2115,11,18,86,56,5,9,186,158,3655,3645,2353,2226,42,40,137,93,13,16,5555,5418,3095,3116,2198,2091,7,6,81,54,2,6,172,145,3261,3253,2319,2193,30,24,128,87,9,11,433,434,382,380,25,24,4,12,5,2,3,3,14,13,394,392,34,33,12,16,9,6,4,5 -050,01,125,Alabama,Tuscaloosa County,5,2,11378,5826,5552,3446,3281,2156,2067,26,15,70,62,11,3,117,124,3557,3398,2235,2145,43,33,99,97,14,9,5543,5265,3196,3026,2141,2048,13,10,69,62,10,1,114,118,3306,3137,2218,2125,29,26,97,95,12,6,283,287,250,255,15,19,13,5,1,0,1,2,3,6,251,261,17,20,14,7,2,2,2,3 -050,01,125,Alabama,Tuscaloosa County,5,3,11872,6088,5784,3547,3292,2349,2338,18,12,74,43,2,9,98,90,3640,3376,2411,2391,39,33,102,66,5,15,5900,5600,3382,3129,2343,2328,9,10,73,43,1,7,92,83,3469,3207,2402,2377,28,28,98,64,3,12,188,184,165,163,6,10,9,2,1,0,1,2,6,7,171,169,9,14,11,5,4,2,2,3 -050,01,125,Alabama,Tuscaloosa County,5,4,17222,8368,8854,5309,5577,2809,3049,21,26,134,113,5,5,90,84,5394,5656,2855,3095,45,50,164,139,8,8,8085,8606,5057,5362,2795,3031,14,19,132,112,3,4,84,78,5136,5435,2837,3075,36,40,161,136,6,7,283,248,252,215,14,18,7,7,2,1,2,1,6,6,258,221,18,20,9,10,3,3,2,1 -050,01,125,Alabama,Tuscaloosa County,5,5,28526,14103,14423,10201,9941,3392,3864,33,38,310,371,11,4,156,205,10341,10114,3468,3979,88,105,364,440,13,13,13597,13994,9762,9583,3353,3809,24,31,310,370,6,3,142,198,9890,9749,3420,3918,76,94,359,437,8,11,506,429,439,358,39,55,9,7,0,1,5,1,14,7,451,365,48,61,12,11,5,3,5,2 -050,01,125,Alabama,Tuscaloosa County,5,6,13995,7027,6968,4847,4459,1936,2258,37,31,139,142,12,12,56,66,4892,4514,1961,2287,59,58,157,171,15,16,6626,6715,4497,4242,1910,2242,23,23,137,142,8,7,51,59,4538,4293,1931,2268,43,46,155,168,10,10,401,253,350,217,26,16,14,8,2,0,4,5,5,7,354,221,30,19,16,12,2,3,5,6 -050,01,125,Alabama,Tuscaloosa County,5,7,13117,6459,6658,4254,3890,1987,2584,24,18,125,114,3,11,66,41,4313,3925,2009,2601,55,30,148,129,5,18,6028,6395,3867,3667,1964,2561,12,11,124,113,2,9,59,34,3919,3697,1982,2574,39,20,146,126,4,15,431,263,387,223,23,23,12,7,1,1,1,2,7,7,394,228,27,27,16,10,2,3,1,3 -050,01,125,Alabama,Tuscaloosa County,5,8,11538,5562,5976,3783,3620,1627,2180,26,30,83,111,7,4,36,31,3817,3648,1638,2192,42,42,99,122,12,6,5316,5795,3566,3463,1612,2173,22,17,83,111,2,2,31,29,3596,3489,1619,2183,36,29,96,122,6,4,246,181,217,157,15,7,4,13,0,0,5,2,5,2,221,159,19,9,6,13,3,0,6,2 -050,01,125,Alabama,Tuscaloosa County,5,9,11570,5567,6003,3906,3771,1522,2108,22,22,84,64,2,1,31,37,3930,3804,1533,2119,42,42,93,75,4,4,5365,5874,3729,3660,1516,2100,11,17,83,63,0,1,26,33,3749,3689,1524,2109,29,35,91,73,0,4,202,129,177,111,6,8,11,5,1,1,2,0,5,4,181,115,9,10,13,7,2,2,4,0 -050,01,125,Alabama,Tuscaloosa County,5,10,11245,5430,5815,3864,3733,1436,1981,21,18,67,55,7,1,35,27,3896,3756,1446,1986,48,38,73,66,9,2,5271,5716,3732,3651,1424,1970,18,14,65,55,4,1,28,25,3757,3673,1430,1975,39,33,71,64,6,2,159,99,132,82,12,11,3,4,2,0,3,0,7,2,139,83,16,11,9,5,2,2,3,0 -050,01,125,Alabama,Tuscaloosa County,5,11,11953,5719,6234,4051,4184,1575,1925,23,31,51,57,2,1,17,36,4065,4214,1578,1937,34,58,56,69,3,4,5598,6149,3950,4111,1567,1920,16,26,50,57,0,1,15,34,3962,4139,1569,1931,26,51,55,69,1,4,121,85,101,73,8,5,7,5,1,0,2,0,2,2,103,75,9,6,8,7,1,0,2,0 -050,01,125,Alabama,Tuscaloosa County,5,12,12141,5783,6358,4105,4299,1588,1934,17,21,43,66,0,1,30,37,4132,4329,1595,1947,40,48,51,75,2,4,5682,6308,4022,4251,1577,1932,10,21,43,66,0,1,30,37,4049,4281,1584,1945,33,48,51,75,2,4,101,50,83,48,11,2,7,0,0,0,0,0,0,0,83,48,11,2,7,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,5,13,10261,4907,5354,3641,3784,1178,1468,16,16,42,56,3,0,27,30,3666,3806,1182,1481,35,40,48,60,6,3,4869,5301,3608,3741,1174,1461,16,14,42,55,3,0,26,30,3632,3763,1177,1474,35,38,48,59,6,3,38,53,33,43,4,7,0,2,0,1,0,0,1,0,34,43,5,7,0,2,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,5,14,7329,3420,3909,2664,2932,701,919,10,10,25,25,0,2,20,21,2678,2948,706,926,25,27,30,28,3,2,3398,3885,2645,2911,698,917,10,10,25,24,0,2,20,21,2659,2927,703,924,25,27,30,27,3,2,22,24,19,21,3,2,0,0,0,1,0,0,0,0,19,21,3,2,0,0,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,5,15,5184,2336,2848,1879,2186,428,634,6,1,13,12,0,0,10,15,1889,2197,431,640,12,14,15,13,2,3,2316,2829,1863,2169,426,633,6,1,13,12,0,0,8,14,1871,2180,427,638,11,14,14,13,1,2,20,19,16,17,2,1,0,0,0,0,0,0,2,1,18,17,4,2,1,0,1,0,1,1 -050,01,125,Alabama,Tuscaloosa County,5,16,3911,1570,2341,1266,1770,290,553,0,3,10,9,0,0,4,6,1270,1775,290,554,4,9,10,9,0,0,1562,2326,1259,1757,289,551,0,3,10,9,0,0,4,6,1263,1762,289,552,4,9,10,9,0,0,8,15,7,13,1,2,0,0,0,0,0,0,0,0,7,13,1,2,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,5,17,3083,1123,1960,912,1504,202,432,1,3,4,9,0,0,4,12,914,1514,204,435,5,12,4,12,0,0,1110,1943,900,1488,201,432,1,3,4,9,0,0,4,11,902,1497,203,434,5,12,4,12,0,0,13,17,12,16,1,0,0,0,0,0,0,0,0,1,12,17,1,1,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,5,18,2719,872,1847,711,1453,148,381,3,4,7,4,0,0,3,5,713,1457,149,383,5,9,8,4,0,0,868,1831,707,1438,148,380,3,4,7,4,0,0,3,5,709,1442,149,382,5,9,8,4,0,0,4,16,4,15,0,1,0,0,0,0,0,0,0,0,4,15,0,1,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,6,0,201192,97211,103981,65989,67485,28274,33513,343,328,1484,1511,65,63,1056,1081,66924,68442,28818,34083,710,716,1787,1816,128,119,93647,101040,62882,64957,28056,33287,235,244,1460,1505,40,45,974,1002,63755,65848,28553,33818,556,588,1747,1787,88,84,3564,2941,3107,2528,218,226,108,84,24,6,25,18,82,79,3169,2594,265,265,154,128,40,29,40,35 -050,01,125,Alabama,Tuscaloosa County,6,1,11982,6037,5945,3499,3515,2204,2164,23,21,116,69,4,7,191,169,3679,3673,2335,2290,54,50,166,110,10,12,5575,5491,3106,3116,2178,2137,9,10,110,68,1,4,171,156,3269,3263,2295,2255,31,31,159,105,5,5,462,454,393,399,26,27,14,11,6,1,3,3,20,13,410,410,40,35,23,19,7,5,5,7 -050,01,125,Alabama,Tuscaloosa County,6,2,11592,5914,5678,3421,3339,2258,2111,28,17,64,65,8,5,135,141,3549,3473,2349,2204,49,41,97,100,13,13,5596,5356,3137,3058,2240,2090,17,11,62,64,7,2,133,131,3263,3183,2330,2178,37,29,94,98,12,8,318,322,284,281,18,21,11,6,2,1,1,3,2,10,286,290,19,26,12,12,3,2,1,5 -050,01,125,Alabama,Tuscaloosa County,6,3,11894,6083,5811,3529,3354,2332,2300,22,12,90,51,4,7,106,87,3627,3433,2399,2354,46,32,116,74,10,10,5884,5613,3354,3178,2324,2288,12,10,90,51,3,5,101,81,3448,3253,2388,2339,32,26,115,72,8,7,199,198,175,176,8,12,10,2,0,0,1,2,5,6,179,180,11,15,14,6,1,2,2,3 -050,01,125,Alabama,Tuscaloosa County,6,4,17085,8301,8784,5286,5515,2759,3025,22,23,136,125,5,8,93,88,5371,5593,2809,3078,48,47,162,150,7,14,8012,8537,5022,5307,2751,3007,15,16,133,124,4,7,87,76,5102,5376,2798,3053,38,34,158,146,6,11,289,247,264,208,8,18,7,7,3,1,1,1,6,12,269,217,11,25,10,13,4,4,1,3 -050,01,125,Alabama,Tuscaloosa County,6,5,27883,13744,14139,9610,9396,3580,4064,26,40,339,420,8,4,181,215,9758,9582,3672,4179,93,106,397,490,20,13,13242,13721,9180,9052,3540,4010,19,28,333,420,4,3,166,208,9317,9231,3624,4122,77,92,387,488,13,11,502,418,430,344,40,54,7,12,6,0,4,1,15,7,441,351,48,57,16,14,10,2,7,2 -050,01,125,Alabama,Tuscaloosa County,6,6,14902,7518,7384,5236,4839,2033,2288,45,36,139,143,9,9,56,69,5283,4897,2056,2319,64,62,163,167,12,12,7145,7106,4916,4596,2007,2273,27,28,137,143,6,5,52,61,4960,4647,2027,2301,43,51,160,165,8,7,373,278,320,243,26,15,18,8,2,0,3,4,4,8,323,250,29,18,21,11,3,2,4,5 -050,01,125,Alabama,Tuscaloosa County,6,7,13379,6585,6794,4296,3983,2054,2610,26,20,139,123,4,8,66,50,4353,4029,2076,2633,54,42,166,142,8,11,6143,6519,3896,3751,2032,2584,15,13,138,123,3,7,59,41,3947,3788,2053,2602,39,28,162,138,5,9,442,275,400,232,22,26,11,7,1,0,1,1,7,9,406,241,23,31,15,14,4,4,3,2 -050,01,125,Alabama,Tuscaloosa County,6,8,11716,5702,6014,3831,3585,1713,2245,25,27,86,115,4,7,43,35,3871,3616,1722,2256,43,41,102,127,9,11,5444,5812,3600,3416,1698,2231,21,15,86,115,2,4,37,31,3636,3443,1703,2240,37,28,100,125,6,7,258,202,231,169,15,14,4,12,0,0,2,3,6,4,235,173,19,16,6,13,2,2,3,4 -050,01,125,Alabama,Tuscaloosa County,6,9,11821,5618,6203,3904,3833,1564,2228,22,23,94,80,3,1,31,38,3929,3862,1577,2238,41,46,104,93,5,4,5413,6075,3721,3721,1556,2223,15,16,93,79,1,1,27,35,3744,3749,1565,2233,31,36,103,92,2,2,205,128,183,112,8,5,7,7,1,1,2,0,4,3,185,113,12,5,10,10,1,1,3,2 -050,01,125,Alabama,Tuscaloosa County,6,10,11143,5379,5764,3832,3681,1418,1978,24,15,60,62,7,1,38,27,3862,3706,1427,1987,50,32,72,68,15,3,5216,5656,3694,3590,1408,1966,21,12,59,62,3,1,31,25,3720,3613,1416,1974,41,27,70,68,7,3,163,108,138,91,10,12,3,3,1,0,4,0,7,2,142,93,11,13,9,5,2,0,8,0 -050,01,125,Alabama,Tuscaloosa County,6,11,11874,5763,6111,4071,4085,1588,1904,20,31,60,56,4,1,20,34,4087,4115,1594,1912,34,55,65,65,8,2,5639,6034,3972,4021,1579,1899,12,25,58,56,1,1,17,32,3986,4049,1583,1906,25,48,62,65,5,2,124,77,99,64,9,5,8,6,2,0,3,0,3,2,101,66,11,6,9,7,3,0,3,0 -050,01,125,Alabama,Tuscaloosa County,6,12,12215,5761,6454,4055,4333,1611,1992,18,21,46,71,0,1,31,36,4080,4362,1620,2005,39,47,57,80,3,4,5657,6388,3972,4272,1598,1989,10,20,46,71,0,1,31,35,3997,4301,1607,2001,31,46,57,79,3,3,104,66,83,61,13,3,8,1,0,0,0,0,0,1,83,61,13,4,8,1,0,1,0,1 -050,01,125,Alabama,Tuscaloosa County,6,13,10640,5058,5582,3684,3891,1280,1576,18,18,49,68,5,2,22,27,3701,3914,1288,1584,36,42,51,71,5,3,5000,5510,3635,3829,1272,1568,18,16,49,68,5,2,21,27,3651,3852,1279,1576,36,40,51,71,5,3,58,72,49,62,8,8,0,2,0,0,0,0,1,0,50,62,9,8,0,2,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,6,14,7791,3730,4061,2885,3043,781,957,12,11,31,27,0,1,21,22,2906,3060,786,962,30,27,32,33,1,4,3712,4037,2870,3022,778,956,12,11,31,25,0,1,21,22,2891,3039,783,961,30,27,32,31,1,4,18,24,15,21,3,1,0,0,0,2,0,0,0,0,15,21,3,1,0,0,0,2,0,0 -050,01,125,Alabama,Tuscaloosa County,6,15,5493,2458,3035,1975,2324,454,678,7,2,13,12,0,1,9,18,1982,2339,457,681,13,16,14,16,1,2,2432,3014,1952,2305,452,676,7,2,13,12,0,1,8,18,1958,2320,454,679,13,16,14,16,1,2,26,21,23,19,2,2,0,0,0,0,0,0,1,0,24,19,3,2,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,6,16,3910,1578,2332,1260,1766,301,545,1,3,9,11,0,0,7,7,1265,1770,305,547,7,8,9,14,0,0,1573,2318,1257,1755,300,543,1,3,9,11,0,0,6,6,1262,1759,303,545,6,7,9,13,0,0,5,14,3,11,1,2,0,0,0,0,0,0,1,1,3,11,2,2,1,1,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,6,17,3091,1126,1965,918,1490,198,451,1,3,6,10,0,0,3,11,921,1500,199,454,4,10,6,12,0,1,1112,1946,905,1472,197,451,1,3,6,10,0,0,3,10,908,1481,198,454,4,10,6,11,0,0,14,19,13,18,1,0,0,0,0,0,0,0,0,1,13,19,1,0,0,0,0,1,0,1 -050,01,125,Alabama,Tuscaloosa County,6,18,2781,856,1925,697,1513,146,397,3,5,7,3,0,0,3,7,700,1518,147,400,5,12,8,4,1,0,852,1907,693,1496,146,396,3,5,7,3,0,0,3,7,696,1501,147,399,5,12,8,4,1,0,4,18,4,17,0,1,0,0,0,0,0,0,0,0,4,17,0,1,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,7,0,203228,98208,105020,66291,67781,28869,34114,344,315,1544,1600,64,62,1096,1148,67292,68803,29432,34732,721,702,1863,1931,108,120,94559,101906,63117,65086,28640,33895,239,236,1511,1582,38,44,1014,1063,64045,66042,29161,34469,581,584,1813,1884,75,87,3649,3114,3174,2695,229,219,105,79,33,18,26,18,82,85,3247,2761,271,263,140,118,50,47,33,33 -050,01,125,Alabama,Tuscaloosa County,7,1,12144,6186,5958,3588,3494,2248,2178,24,17,123,78,5,6,198,185,3774,3666,2382,2310,58,36,174,126,11,14,5701,5454,3175,3050,2223,2156,11,7,115,66,2,4,175,171,3341,3212,2346,2279,37,21,160,109,6,9,485,504,413,444,25,22,13,10,8,12,3,2,23,14,433,454,36,31,21,15,14,17,5,5 -050,01,125,Alabama,Tuscaloosa County,7,2,11619,5912,5707,3354,3313,2309,2159,29,16,71,65,7,5,142,149,3492,3452,2405,2260,51,42,107,103,11,11,5572,5365,3061,3017,2287,2134,14,10,68,64,5,2,137,138,3194,3148,2379,2229,34,31,104,98,9,6,340,342,293,296,22,25,15,6,3,1,2,3,5,11,298,304,26,31,17,11,3,5,2,5 -050,01,125,Alabama,Tuscaloosa County,7,3,11814,6054,5760,3498,3367,2327,2199,22,13,88,65,5,5,114,111,3605,3472,2396,2270,45,39,122,92,8,11,5843,5538,3306,3167,2319,2185,14,12,88,65,5,3,111,106,3410,3267,2387,2253,36,36,120,92,8,9,211,222,192,200,8,14,8,1,0,0,0,2,3,5,195,205,9,17,9,3,2,0,0,2 -050,01,125,Alabama,Tuscaloosa County,7,4,17326,8391,8935,5421,5671,2701,3007,19,20,145,131,4,9,101,97,5514,5759,2762,3059,45,44,176,159,6,18,8116,8687,5170,5461,2693,2989,13,12,143,130,3,8,94,87,5257,5542,2749,3037,37,32,172,155,5,13,275,248,251,210,8,18,6,8,2,1,1,1,7,10,257,217,13,22,8,12,4,4,1,5 -050,01,125,Alabama,Tuscaloosa County,7,5,26998,13312,13686,9039,8776,3707,4221,30,35,357,432,5,3,174,219,9190,8968,3794,4340,89,105,416,503,9,8,12869,13281,8667,8442,3664,4169,26,27,345,432,3,2,164,209,8808,8625,3747,4283,81,91,401,500,7,7,443,405,372,334,43,52,4,8,12,0,2,1,10,10,382,343,47,57,8,14,15,3,2,1 -050,01,125,Alabama,Tuscaloosa County,7,6,15965,8081,7884,5618,5211,2203,2423,34,33,142,141,8,8,76,68,5685,5267,2236,2458,63,56,169,169,11,12,7654,7585,5242,4950,2176,2409,24,23,140,141,4,3,68,59,5301,4999,2204,2439,50,43,167,166,7,6,427,299,376,261,27,14,10,10,2,0,4,5,8,9,384,268,32,19,13,13,2,3,4,6 -050,01,125,Alabama,Tuscaloosa County,7,7,13455,6605,6850,4324,4077,2047,2560,26,21,142,128,6,9,60,55,4377,4129,2067,2585,51,42,166,150,9,12,6155,6607,3915,3867,2027,2541,13,16,140,128,4,8,56,47,3964,3912,2046,2561,36,32,164,148,6,9,450,243,409,210,20,19,13,5,2,0,2,1,4,8,413,217,21,24,15,10,2,2,3,3 -050,01,125,Alabama,Tuscaloosa County,7,8,11941,5783,6158,3841,3615,1770,2354,26,25,88,123,5,9,53,32,3890,3642,1787,2363,53,40,107,134,10,13,5510,5937,3605,3429,1748,2338,21,13,88,123,2,6,46,28,3648,3452,1760,2346,44,26,107,133,7,10,273,221,236,186,22,16,5,12,0,0,3,3,7,4,242,190,27,17,9,14,0,1,3,3 -050,01,125,Alabama,Tuscaloosa County,7,9,11913,5672,6241,3890,3779,1639,2308,27,18,83,94,3,1,30,41,3918,3811,1649,2325,43,39,93,107,6,4,5471,6099,3708,3654,1634,2304,18,13,83,93,0,1,28,34,3734,3683,1643,2317,32,30,93,103,3,3,201,142,182,125,5,4,9,5,0,1,3,0,2,7,184,128,6,8,11,9,0,4,3,1 -050,01,125,Alabama,Tuscaloosa County,7,10,11063,5338,5725,3805,3663,1410,1959,24,15,64,59,5,0,30,29,3833,3688,1416,1970,45,34,72,67,10,4,5175,5601,3667,3554,1401,1948,18,12,62,59,3,0,24,28,3691,3578,1405,1958,36,30,67,67,6,4,163,124,138,109,9,11,6,3,2,0,2,0,6,1,142,110,11,12,9,4,5,0,4,0 -050,01,125,Alabama,Tuscaloosa County,7,11,11851,5765,6086,4072,4037,1578,1922,18,29,73,65,5,2,19,31,4087,4064,1584,1931,32,52,77,72,5,5,5633,6006,3966,3975,1567,1915,11,22,71,64,2,2,16,28,3978,3999,1572,1924,24,44,74,69,2,4,132,80,106,62,11,7,7,7,2,1,3,0,3,3,109,65,12,7,8,8,3,3,3,1 -050,01,125,Alabama,Tuscaloosa County,7,12,12209,5731,6478,4040,4331,1599,2014,20,24,40,73,1,0,31,36,4064,4361,1609,2024,43,50,47,83,4,0,5621,6405,3951,4264,1588,2010,12,23,40,73,0,0,30,35,3974,4293,1597,2020,34,49,47,82,3,0,110,73,89,67,11,4,8,1,0,0,1,0,1,1,90,68,12,4,9,1,0,1,1,0 -050,01,125,Alabama,Tuscaloosa County,7,13,10993,5229,5764,3771,3982,1365,1669,17,22,51,70,5,1,20,20,3790,3998,1369,1676,34,40,55,74,5,2,5161,5668,3714,3894,1355,1663,16,20,51,70,5,1,20,20,3733,3910,1359,1670,33,38,55,74,5,2,68,96,57,88,10,6,1,2,0,0,0,0,0,0,57,88,10,6,1,2,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,7,14,8253,3912,4341,3007,3214,829,1051,13,11,39,34,0,3,24,28,3029,3239,834,1058,34,31,41,39,2,3,3892,4303,2992,3181,825,1049,13,10,39,32,0,3,23,28,3014,3206,830,1056,33,30,41,37,1,3,20,38,15,33,4,2,0,1,0,2,0,0,1,0,15,33,4,2,1,1,0,2,1,0 -050,01,125,Alabama,Tuscaloosa County,7,15,5720,2582,3138,2074,2393,478,705,8,5,13,15,0,1,9,19,2083,2410,479,709,16,19,14,19,0,2,2559,3121,2053,2378,477,703,8,5,13,15,0,1,8,19,2061,2395,478,707,15,19,14,19,0,2,23,17,21,15,1,2,0,0,0,0,0,0,1,0,22,15,1,2,1,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,7,16,4002,1648,2354,1318,1810,309,521,3,1,9,11,0,0,9,11,1325,1816,312,526,11,8,9,15,1,0,1638,2339,1311,1797,307,520,3,1,9,11,0,0,8,10,1318,1802,309,525,11,8,9,14,0,0,10,15,7,13,2,1,0,0,0,0,0,0,1,1,7,14,3,1,0,0,0,1,1,0 -050,01,125,Alabama,Tuscaloosa County,7,17,3111,1133,1978,924,1509,197,443,0,4,9,13,0,0,3,9,927,1518,197,443,3,12,9,14,0,0,1121,1955,913,1487,196,442,0,4,9,13,0,0,3,9,916,1496,196,442,3,12,9,14,0,0,12,23,11,22,1,1,0,0,0,0,0,0,0,0,11,22,1,1,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,7,18,2851,874,1977,707,1539,153,421,4,6,7,3,0,0,3,8,709,1543,154,425,5,13,9,5,0,1,868,1955,701,1519,153,420,4,6,7,3,0,0,3,7,703,1523,154,423,5,12,9,4,0,0,6,22,6,20,0,1,0,0,0,0,0,0,0,1,6,20,0,2,0,1,0,1,0,1 -050,01,125,Alabama,Tuscaloosa County,8,0,204953,98918,106035,66361,67933,29426,34904,348,310,1566,1624,62,64,1155,1200,67400,69001,30042,35549,711,710,1918,1963,115,140,95155,102816,63081,65157,29202,34684,239,233,1520,1594,36,41,1077,1107,64048,66146,29769,35279,568,588,1858,1906,80,98,3763,3219,3280,2776,224,220,109,77,46,30,26,23,78,93,3352,2855,273,270,143,122,60,57,35,42 -050,01,125,Alabama,Tuscaloosa County,8,1,12220,6186,6034,3523,3464,2292,2273,20,20,128,77,8,7,215,193,3727,3650,2444,2409,51,47,184,128,14,14,5694,5535,3108,3046,2267,2253,5,7,112,53,4,1,198,175,3297,3215,2407,2379,29,27,165,98,9,6,492,499,415,418,25,20,15,13,16,24,4,6,17,18,430,435,37,30,22,20,19,30,5,8 -050,01,125,Alabama,Tuscaloosa County,8,2,11868,6000,5868,3378,3405,2348,2239,30,15,73,59,5,7,166,143,3534,3543,2460,2336,55,38,121,94,10,11,5624,5487,3059,3074,2324,2209,14,8,70,59,1,3,156,134,3205,3204,2428,2300,35,27,116,93,6,7,376,381,319,331,24,30,16,7,3,0,4,4,10,9,329,339,32,36,20,11,5,1,4,4 -050,01,125,Alabama,Tuscaloosa County,8,3,11615,5948,5667,3458,3310,2269,2149,27,13,81,73,7,3,106,119,3557,3419,2334,2226,44,39,112,103,15,9,5683,5432,3220,3102,2257,2134,16,10,81,73,7,1,102,112,3315,3205,2320,2207,30,31,110,103,14,5,265,235,238,208,12,15,11,3,0,0,0,2,4,7,242,214,14,19,14,8,2,0,1,4 -050,01,125,Alabama,Tuscaloosa County,8,4,17468,8459,9009,5451,5719,2730,3027,17,15,146,134,3,11,112,103,5551,5812,2796,3086,44,42,183,162,6,20,8193,8740,5208,5485,2721,3007,12,11,145,133,2,10,105,94,5301,5571,2783,3061,37,33,180,157,5,15,266,269,243,234,9,20,5,4,1,1,1,1,7,9,250,241,13,25,7,9,3,5,1,5 -050,01,125,Alabama,Tuscaloosa County,8,5,26000,12770,13230,8528,8222,3650,4292,34,46,370,437,3,3,185,230,8692,8424,3747,4422,95,112,434,508,8,13,12331,12851,8152,7910,3618,4246,30,40,350,437,2,2,179,216,8310,8099,3712,4367,89,102,413,503,6,9,439,379,376,312,32,46,4,6,20,0,1,1,6,14,382,325,35,55,6,10,21,5,2,4 -050,01,125,Alabama,Tuscaloosa County,8,6,17044,8650,8394,5942,5543,2424,2597,29,20,163,145,11,7,81,82,6012,5613,2462,2638,56,53,192,176,13,13,8222,8097,5558,5281,2400,2582,24,12,162,144,6,4,72,74,5619,5346,2433,2618,48,40,190,173,7,9,428,297,384,262,24,15,5,8,1,1,5,3,9,8,393,267,29,20,8,13,2,3,6,4 -050,01,125,Alabama,Tuscaloosa County,8,7,13226,6488,6738,4272,4037,2007,2488,28,26,126,116,4,10,51,61,4317,4091,2024,2514,52,53,148,138,7,13,6086,6514,3906,3845,1989,2472,15,22,125,116,3,7,48,52,3949,3891,2005,2493,37,43,147,135,5,9,402,224,366,192,18,16,13,4,1,0,1,3,3,9,368,200,19,21,15,10,1,3,2,4 -050,01,125,Alabama,Tuscaloosa County,8,8,12201,5878,6323,3847,3691,1863,2449,24,21,88,126,3,6,53,30,3897,3716,1879,2462,44,38,108,136,9,10,5581,6084,3589,3488,1838,2431,18,10,88,125,1,4,47,26,3634,3510,1849,2442,35,25,108,134,7,7,297,239,258,203,25,18,6,11,0,1,2,2,6,4,263,206,30,20,9,13,0,2,2,3 -050,01,125,Alabama,Tuscaloosa County,8,9,11953,5696,6257,3887,3759,1661,2327,28,20,84,107,3,3,33,41,3916,3790,1671,2342,49,40,94,119,3,10,5493,6074,3698,3593,1659,2324,20,14,84,107,1,2,31,34,3725,3619,1668,2338,39,30,94,118,1,6,203,183,189,166,2,3,8,6,0,0,2,1,2,7,191,171,3,4,10,10,0,1,2,4 -050,01,125,Alabama,Tuscaloosa County,8,10,11164,5388,5776,3831,3657,1433,2015,24,16,70,58,3,0,27,30,3855,3681,1443,2024,38,31,76,69,4,7,5202,5652,3669,3547,1424,2006,16,13,69,57,2,0,22,29,3688,3570,1430,2015,29,28,75,67,3,6,186,124,162,110,9,9,8,3,1,1,1,0,5,1,167,111,13,9,9,3,1,2,1,1 -050,01,125,Alabama,Tuscaloosa County,8,11,11810,5761,6049,4050,3955,1586,1977,24,24,69,56,6,2,26,35,4069,3983,1595,1987,41,44,75,67,9,7,5620,5966,3940,3892,1573,1968,17,17,66,56,2,2,22,31,3956,3917,1580,1976,32,34,72,66,3,7,141,83,110,63,13,9,7,7,3,0,4,0,4,4,113,66,15,11,9,10,3,1,6,0 -050,01,125,Alabama,Tuscaloosa County,8,12,12176,5728,6448,4017,4345,1630,1977,13,22,41,72,1,0,26,32,4038,4370,1635,1985,33,43,49,80,3,3,5625,6365,3931,4271,1622,1971,7,20,41,72,0,0,24,31,3950,4295,1626,1979,25,41,48,79,1,3,103,83,86,74,8,6,6,2,0,0,1,0,2,1,88,75,9,6,8,2,1,1,2,0 -050,01,125,Alabama,Tuscaloosa County,8,13,11405,5383,6022,3890,4113,1403,1787,19,21,43,75,3,1,25,25,3910,4131,1408,1795,39,39,49,80,6,2,5301,5943,3829,4038,1387,1783,14,21,43,75,3,1,25,25,3849,4056,1392,1791,34,39,49,80,6,2,82,79,61,75,16,4,5,0,0,0,0,0,0,0,61,75,16,4,5,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,8,14,8841,4158,4683,3150,3419,929,1179,13,14,42,46,2,3,22,22,3166,3440,934,1182,29,29,47,50,5,4,4128,4620,3124,3364,926,1176,13,11,42,44,2,3,21,22,3139,3385,931,1179,29,26,46,48,5,4,30,63,26,55,3,3,0,3,0,2,0,0,1,0,27,55,3,3,0,3,1,2,0,0 -050,01,125,Alabama,Tuscaloosa County,8,15,5852,2653,3199,2099,2442,515,711,11,6,14,17,0,1,14,22,2111,2460,520,715,24,25,15,20,1,2,2633,3178,2081,2424,514,708,11,6,14,17,0,1,13,22,2092,2442,519,712,23,25,15,20,1,2,20,21,18,18,1,3,0,0,0,0,0,0,1,0,19,18,1,3,1,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,8,16,4068,1715,2353,1367,1797,328,532,3,1,9,10,0,0,8,13,1373,1806,330,537,10,11,10,12,1,1,1701,2336,1357,1782,325,531,3,1,9,10,0,0,7,12,1363,1790,326,536,10,11,9,11,0,0,14,17,10,15,3,1,0,0,0,0,0,0,1,1,10,16,4,1,0,0,1,1,1,1 -050,01,125,Alabama,Tuscaloosa County,8,17,3079,1151,1928,934,1466,203,438,0,4,11,11,0,0,3,9,937,1474,204,438,2,12,12,13,1,0,1141,1910,924,1449,203,437,0,4,11,11,0,0,3,9,927,1457,204,437,2,12,12,13,1,0,10,18,10,17,0,1,0,0,0,0,0,0,0,0,10,17,0,1,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,8,18,2963,906,2057,737,1589,155,447,4,6,8,5,0,0,2,10,738,1598,156,451,5,14,9,8,0,1,897,2032,728,1566,155,446,4,6,8,5,0,0,2,9,729,1574,156,449,5,14,9,8,0,1,9,25,9,23,0,1,0,0,0,0,0,0,0,1,9,24,0,2,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,9,0,206737,99652,107085,66413,68072,29935,35695,376,334,1638,1669,63,64,1227,1251,67531,69185,30580,36387,756,733,1996,2022,126,130,95681,103617,62969,65077,29708,35456,226,251,1589,1634,36,43,1153,1156,64023,66107,30310,36095,568,602,1930,1956,90,93,3971,3468,3444,2995,227,239,150,83,49,35,27,21,74,95,3508,3078,270,292,188,131,66,66,36,37 -050,01,125,Alabama,Tuscaloosa County,9,1,12531,6373,6158,3604,3510,2342,2312,30,28,140,96,10,6,247,206,3840,3706,2518,2463,69,54,204,145,18,13,5864,5610,3182,3055,2324,2289,5,9,120,68,4,0,229,189,3400,3234,2488,2429,35,28,178,111,10,5,509,548,422,455,18,23,25,19,20,28,6,6,18,17,440,472,30,34,34,26,26,34,8,8 -050,01,125,Alabama,Tuscaloosa County,9,2,11950,6027,5923,3352,3435,2385,2244,24,14,93,64,5,8,168,158,3516,3582,2495,2353,49,39,136,101,13,15,5618,5495,2997,3063,2356,2214,10,7,90,63,1,3,164,145,3157,3200,2464,2314,33,27,133,98,9,9,409,428,355,372,29,30,14,7,3,1,4,5,4,13,359,382,31,39,16,12,3,3,4,6 -050,01,125,Alabama,Tuscaloosa County,9,3,11604,5954,5650,3481,3235,2245,2192,23,20,78,80,7,2,120,121,3593,3349,2319,2266,45,44,111,111,9,8,5644,5400,3203,3016,2230,2173,12,16,77,80,7,0,115,115,3311,3125,2302,2243,31,37,109,110,9,4,310,250,278,219,15,19,11,4,1,0,0,2,5,6,282,224,17,23,14,7,2,1,0,4 -050,01,125,Alabama,Tuscaloosa County,9,4,17487,8456,9031,5426,5743,2744,3022,27,16,143,129,3,12,113,109,5531,5847,2807,3082,57,39,176,164,9,17,8198,8744,5194,5490,2732,2999,20,15,143,127,3,11,106,102,5293,5588,2792,3054,46,36,176,161,8,16,258,287,232,253,12,23,7,1,0,2,0,1,7,7,238,259,15,28,11,3,0,3,1,1 -050,01,125,Alabama,Tuscaloosa County,9,5,25159,12377,12782,8210,7786,3568,4279,23,49,381,431,2,2,193,235,8380,7990,3669,4414,86,116,439,505,7,13,11934,12403,7817,7477,3549,4233,19,40,362,431,1,2,186,220,7981,7668,3647,4360,79,100,418,501,5,11,443,379,393,309,19,46,4,9,19,0,1,0,7,15,399,322,22,54,7,16,21,4,2,2 -050,01,125,Alabama,Tuscaloosa County,9,6,17639,8876,8763,5944,5612,2596,2887,36,24,198,148,12,4,90,88,6022,5687,2635,2933,72,52,232,179,15,11,8429,8431,5547,5320,2564,2866,29,15,197,148,7,3,85,79,5621,5387,2601,2907,62,37,230,175,10,6,447,332,397,292,32,21,7,9,1,0,5,1,5,9,401,300,34,26,10,15,2,4,5,5 -050,01,125,Alabama,Tuscaloosa County,9,7,12984,6328,6656,4154,4003,1988,2424,28,24,110,131,3,11,45,63,4194,4059,2005,2448,43,51,133,158,6,15,5950,6437,3813,3819,1966,2407,17,19,109,131,2,7,43,54,3851,3867,1982,2426,31,39,131,154,4,10,378,219,341,184,22,17,11,5,1,0,1,4,2,9,343,192,23,22,12,12,2,4,2,5 -050,01,125,Alabama,Tuscaloosa County,9,8,12778,6174,6604,3967,3820,1998,2604,46,19,100,120,3,9,60,32,4021,3847,2013,2615,73,35,123,131,11,13,5792,6340,3659,3587,1971,2587,9,11,100,120,1,8,52,27,3706,3609,1981,2596,31,23,122,130,8,11,382,264,308,233,27,17,37,8,0,0,2,1,8,5,315,238,32,19,42,12,1,1,3,2 -050,01,125,Alabama,Tuscaloosa County,9,9,11755,5588,6167,3823,3690,1624,2305,23,20,84,111,2,3,32,38,3851,3719,1635,2317,41,40,93,124,4,6,5383,5945,3628,3481,1620,2299,20,17,84,110,1,2,30,36,3654,3509,1629,2311,37,35,93,122,3,5,205,222,195,209,4,6,3,3,0,1,1,1,2,2,197,210,6,6,4,5,0,2,1,1 -050,01,125,Alabama,Tuscaloosa County,9,10,11594,5580,6014,3923,3784,1520,2112,28,15,78,66,3,0,28,37,3947,3817,1529,2128,43,37,86,78,4,2,5399,5892,3765,3679,1515,2107,18,9,77,65,1,0,23,32,3785,3709,1521,2119,30,29,84,73,2,0,181,122,158,105,5,5,10,6,1,1,2,0,5,5,162,108,8,9,13,8,2,5,2,2 -050,01,125,Alabama,Tuscaloosa County,9,11,11647,5640,6007,3962,3897,1553,2001,23,29,63,48,7,1,32,31,3987,3922,1564,2011,42,47,70,57,11,2,5477,5920,3835,3831,1537,1990,16,23,60,47,3,1,26,28,3856,3853,1543,2000,33,40,66,55,5,1,163,87,127,66,16,11,7,6,3,1,4,0,6,3,131,69,21,11,9,7,4,2,6,1 -050,01,125,Alabama,Tuscaloosa County,9,12,12102,5717,6385,4050,4283,1589,1986,16,22,43,63,1,1,18,30,4064,4308,1595,1997,26,41,49,72,3,3,5616,6292,3967,4203,1581,1978,9,19,43,63,0,1,16,28,3980,4226,1586,1989,18,38,47,70,1,3,101,93,83,80,8,8,7,3,0,0,1,0,2,2,84,82,9,8,8,3,2,2,2,0 -050,01,125,Alabama,Tuscaloosa County,9,13,11619,5499,6120,3909,4172,1507,1821,17,22,36,77,2,1,28,27,3931,4192,1512,1830,37,43,44,82,7,3,5400,6061,3829,4114,1495,1820,10,22,36,77,2,1,28,27,3851,4134,1500,1829,30,43,44,82,7,3,99,59,80,58,12,1,7,0,0,0,0,0,0,0,80,58,12,1,7,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,9,14,9574,4444,5130,3336,3697,1019,1339,16,15,45,55,3,3,25,21,3356,3711,1024,1346,35,31,49,59,6,4,4417,5041,3313,3618,1016,1333,16,12,45,54,3,3,24,21,3332,3632,1020,1340,35,28,49,58,6,4,27,89,23,79,3,6,0,3,0,1,0,0,1,0,24,79,4,6,0,3,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,9,15,6039,2737,3302,2138,2512,565,742,7,6,14,20,0,1,13,21,2151,2530,565,749,19,24,16,22,2,3,2715,3277,2119,2489,563,740,7,6,14,20,0,1,12,21,2131,2507,563,747,18,24,16,22,2,3,22,25,19,23,2,2,0,0,0,0,0,0,1,0,20,23,2,2,1,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,9,16,4217,1828,2389,1476,1824,325,539,5,0,12,12,0,0,10,14,1485,1836,327,542,13,13,13,12,0,0,1810,2372,1462,1810,322,537,5,0,12,12,0,0,9,13,1471,1821,323,540,13,12,12,12,0,0,18,17,14,14,3,2,0,0,0,0,0,0,1,1,14,15,4,2,0,1,1,0,0,0 -050,01,125,Alabama,Tuscaloosa County,9,17,3027,1138,1889,922,1437,203,433,0,4,10,9,0,0,3,6,924,1440,204,436,2,7,11,11,0,2,1131,1869,915,1418,203,432,0,4,10,9,0,0,3,6,917,1421,204,435,2,7,11,11,0,2,7,20,7,19,0,1,0,0,0,0,0,0,0,0,7,19,0,1,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,9,18,3031,916,2115,736,1632,164,453,4,7,10,9,0,0,2,14,738,1643,164,457,4,20,11,11,1,0,904,2088,724,1607,164,452,4,7,10,9,0,0,2,13,726,1617,164,456,4,19,11,11,1,0,12,27,12,25,0,1,0,0,0,0,0,0,0,1,12,26,0,1,0,1,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,10,0,207849,100226,107623,66463,67968,30322,36287,393,331,1680,1660,66,67,1302,1310,67632,69126,31026,37022,802,732,2074,2044,131,140,96181,104033,62977,64855,30098,36043,224,254,1624,1629,40,46,1218,1206,64080,65924,30753,36714,588,607,2001,1984,96,104,4045,3590,3486,3113,224,244,169,77,56,31,26,21,84,104,3552,3202,273,308,214,125,73,60,35,36 -050,01,125,Alabama,Tuscaloosa County,10,1,12647,6482,6165,3632,3496,2392,2349,33,17,158,101,9,6,258,196,3872,3684,2577,2489,72,44,224,154,17,13,5970,5614,3216,3032,2373,2325,6,7,133,77,4,0,238,173,3440,3198,2543,2450,36,23,196,122,11,5,512,551,416,464,19,24,27,10,25,24,5,6,20,23,432,486,34,39,36,21,28,32,6,8 -050,01,125,Alabama,Tuscaloosa County,10,2,12208,6167,6041,3445,3510,2393,2270,15,17,104,66,5,6,205,172,3637,3670,2535,2393,46,43,158,111,15,11,5760,5585,3084,3109,2368,2240,8,5,98,65,2,2,200,164,3271,3263,2507,2357,36,27,152,109,11,6,407,456,361,401,25,30,7,12,6,1,3,4,5,8,366,407,28,36,10,16,6,2,4,5 -050,01,125,Alabama,Tuscaloosa County,10,3,11691,5968,5723,3499,3267,2240,2219,28,22,79,78,8,4,114,133,3605,3388,2313,2302,51,46,108,115,10,10,5615,5431,3185,3011,2223,2202,12,15,78,78,7,2,110,123,3290,3124,2293,2279,32,35,107,113,8,7,353,292,314,256,17,17,16,7,1,0,1,2,4,10,315,264,20,23,19,11,1,2,2,3 -050,01,125,Alabama,Tuscaloosa County,10,4,17340,8398,8942,5368,5662,2745,3009,27,19,137,124,3,10,118,118,5480,5770,2812,3076,55,44,177,160,9,16,8115,8647,5120,5405,2727,2983,18,18,137,122,3,9,110,110,5224,5506,2789,3047,43,40,175,156,9,14,283,295,248,257,18,26,9,1,0,2,0,1,8,8,256,264,23,29,12,4,2,4,0,2 -050,01,125,Alabama,Tuscaloosa County,10,5,24483,12056,12427,7994,7577,3483,4144,34,45,351,406,1,5,193,250,8164,7796,3582,4288,94,112,417,486,9,16,11638,12030,7629,7253,3467,4097,26,38,334,405,0,4,182,233,7790,7457,3559,4230,82,99,396,480,7,13,418,397,365,324,16,47,8,7,17,1,1,1,11,17,374,339,23,58,12,13,21,6,2,3 -050,01,125,Alabama,Tuscaloosa County,10,6,17841,8952,8889,5844,5469,2748,3142,28,22,222,159,14,2,96,95,5925,5551,2789,3194,64,51,260,195,19,10,8516,8594,5458,5208,2712,3127,23,16,222,159,10,1,91,83,5536,5279,2750,3171,56,42,259,189,15,5,436,295,386,261,36,15,5,6,0,0,4,1,5,12,389,272,39,23,8,9,1,6,4,5 -050,01,125,Alabama,Tuscaloosa County,10,7,12962,6300,6662,4133,4062,1980,2375,22,28,111,116,4,9,50,72,4176,4127,1999,2403,40,53,134,145,8,13,5987,6423,3852,3857,1965,2358,14,22,110,116,2,6,44,64,3889,3914,1982,2383,31,40,131,145,5,10,313,239,281,205,15,17,8,6,1,0,2,3,6,8,287,213,17,20,9,13,3,0,3,3 -050,01,125,Alabama,Tuscaloosa County,10,8,13072,6400,6672,4083,3819,2082,2675,64,15,106,117,3,11,62,35,4135,3848,2102,2692,97,33,129,126,10,18,5947,6419,3710,3603,2061,2650,14,10,105,117,2,9,55,30,3759,3628,2078,2664,41,24,126,126,6,14,453,253,373,216,21,25,50,5,1,0,1,2,7,5,376,220,24,28,56,9,3,0,4,4 -050,01,125,Alabama,Tuscaloosa County,10,9,11650,5537,6113,3759,3652,1623,2284,25,24,91,112,3,4,36,37,3791,3681,1636,2300,49,42,101,123,4,5,5333,5863,3579,3418,1609,2276,20,19,91,112,1,3,33,35,3609,3446,1619,2290,42,37,101,122,2,4,204,250,180,234,14,8,5,5,0,0,2,1,3,2,182,235,17,10,7,5,0,1,2,1 -050,01,125,Alabama,Tuscaloosa County,10,10,11892,5727,6165,3975,3827,1604,2206,25,20,89,71,3,2,31,39,4000,3859,1614,2223,44,42,98,81,5,7,5531,6027,3800,3707,1598,2200,17,14,88,70,1,2,27,34,3821,3735,1606,2213,34,34,97,78,3,6,196,138,175,120,6,6,8,6,1,1,2,0,4,5,179,124,8,10,10,8,1,3,2,1 -050,01,125,Alabama,Tuscaloosa County,10,11,11428,5507,5921,3895,3789,1487,2030,29,21,55,53,6,1,35,27,3924,3813,1496,2036,54,37,66,63,10,4,5349,5833,3773,3717,1472,2022,20,16,53,52,3,1,28,25,3797,3740,1478,2027,39,31,62,61,6,4,158,88,122,72,15,8,9,5,2,1,3,0,7,2,127,73,18,9,15,6,4,2,4,0 -050,01,125,Alabama,Tuscaloosa County,10,12,12013,5701,6312,4038,4204,1581,1984,21,28,43,62,2,1,16,33,4050,4228,1587,1995,32,52,47,69,5,3,5572,6226,3931,4131,1573,1977,12,24,41,62,0,1,15,31,3942,4153,1579,1987,22,46,45,69,3,3,129,86,107,73,8,7,9,4,2,0,2,0,1,2,108,75,8,8,10,6,2,0,2,0 -050,01,125,Alabama,Tuscaloosa County,10,13,11848,5531,6317,3896,4253,1548,1939,18,17,37,78,0,2,32,28,3922,4274,1557,1950,40,37,47,84,2,3,5444,6257,3824,4196,1541,1936,10,17,37,78,0,2,32,28,3850,4217,1550,1947,32,37,47,84,2,3,87,60,72,57,7,3,8,0,0,0,0,0,0,0,72,57,7,3,8,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,10,14,9707,4544,5163,3367,3686,1098,1379,11,17,40,64,5,2,23,15,3386,3698,1103,1383,27,28,44,69,7,3,4508,5067,3335,3600,1095,1373,11,14,40,63,5,2,22,15,3353,3612,1100,1377,26,25,44,68,7,3,36,96,32,86,3,6,0,3,0,1,0,0,1,0,33,86,3,6,1,3,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,10,15,6603,3007,3596,2360,2703,600,840,6,7,22,21,0,2,19,23,2377,2722,604,845,21,27,25,25,0,3,2986,3570,2341,2679,598,838,6,7,22,21,0,2,19,23,2358,2698,602,843,21,27,25,25,0,3,21,26,19,24,2,2,0,0,0,0,0,0,0,0,19,24,2,2,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,10,16,4385,1899,2486,1530,1919,339,536,7,1,14,12,0,0,9,18,1539,1931,339,542,14,14,16,16,0,3,1880,2467,1515,1902,337,535,7,1,14,12,0,0,7,17,1522,1914,337,540,13,14,15,15,0,3,19,19,15,17,2,1,0,0,0,0,0,0,2,1,17,17,2,2,1,0,1,1,0,0 -050,01,125,Alabama,Tuscaloosa County,10,17,2980,1128,1852,903,1397,210,437,0,4,10,8,0,0,5,6,907,1401,212,439,2,9,12,9,1,0,1122,1833,897,1380,210,435,0,4,10,8,0,0,5,6,901,1384,212,437,2,9,12,9,1,0,6,19,6,17,0,2,0,0,0,0,0,0,0,0,6,17,0,2,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,10,18,3099,922,2177,742,1676,169,469,0,7,11,12,0,0,0,13,742,1685,169,472,0,18,11,13,0,2,908,2147,728,1647,169,469,0,7,11,12,0,0,0,12,728,1656,169,472,0,17,11,13,0,1,14,30,14,29,0,0,0,0,0,0,0,0,0,1,14,29,0,0,0,1,0,0,0,1 -050,01,125,Alabama,Tuscaloosa County,11,0,208607,100518,108089,66452,67974,30520,36695,412,320,1724,1672,76,76,1334,1352,67660,69187,31247,37441,812,732,2125,2074,137,155,96256,104335,62780,64720,30297,36440,226,244,1659,1632,45,51,1249,1248,63920,65843,30981,37123,589,614,2039,2007,89,114,4262,3754,3672,3254,223,255,186,76,65,40,31,25,85,104,3740,3344,266,318,223,118,86,67,48,41 -050,01,125,Alabama,Tuscaloosa County,11,1,12559,6467,6092,3585,3406,2418,2372,24,14,155,94,16,10,269,196,3836,3591,2609,2510,59,43,223,143,25,15,5922,5525,3139,2938,2399,2346,5,5,124,65,6,2,249,169,3375,3100,2577,2467,34,25,188,108,12,6,545,567,446,468,19,26,19,9,31,29,10,8,20,27,461,491,32,43,25,18,35,35,13,9 -050,01,125,Alabama,Tuscaloosa County,11,2,12314,6146,6168,3466,3569,2360,2334,22,17,109,65,4,7,185,176,3646,3738,2487,2457,51,43,159,110,6,12,5702,5655,3076,3120,2334,2301,8,5,104,61,1,2,179,166,3250,3279,2458,2418,33,28,153,104,3,7,444,513,390,449,26,33,14,12,5,4,3,5,6,10,396,459,29,39,18,15,6,6,3,5 -050,01,125,Alabama,Tuscaloosa County,11,3,11860,6051,5809,3498,3354,2317,2212,27,20,73,77,8,6,128,140,3618,3488,2400,2298,48,45,109,117,14,10,5684,5489,3167,3068,2303,2195,12,12,71,77,7,3,124,134,3284,3196,2383,2277,32,35,107,117,12,6,367,320,331,286,14,17,15,8,2,0,1,3,4,6,334,292,17,21,16,10,2,0,2,4 -050,01,125,Alabama,Tuscaloosa County,11,4,17062,8288,8774,5287,5580,2692,2907,28,25,152,122,5,8,124,132,5401,5704,2767,2982,59,51,187,167,12,16,7990,8466,5036,5309,2666,2882,16,24,149,121,5,6,118,124,5145,5426,2737,2954,45,47,183,164,11,13,298,308,251,271,26,25,12,1,3,1,0,2,6,8,256,278,30,28,14,4,4,3,1,3 -050,01,125,Alabama,Tuscaloosa County,11,5,23850,11761,12089,7877,7408,3314,3990,34,38,343,407,2,7,191,239,8045,7621,3419,4130,87,103,405,478,8,19,11348,11713,7505,7103,3301,3941,25,33,333,404,1,6,183,226,7668,7306,3401,4072,77,92,391,473,6,17,413,376,372,305,13,49,9,5,10,3,1,1,8,13,377,315,18,58,10,11,14,5,2,2 -050,01,125,Alabama,Tuscaloosa County,11,6,17386,8618,8768,5389,5189,2835,3275,28,27,249,163,11,3,106,111,5479,5285,2885,3334,66,65,287,202,18,8,8180,8466,5002,4923,2803,3258,26,19,244,163,7,2,98,101,5084,5009,2850,3310,59,51,279,199,13,5,438,302,387,266,32,17,2,8,5,0,4,1,8,10,395,276,35,24,7,14,8,3,5,3 -050,01,125,Alabama,Tuscaloosa County,11,7,13425,6661,6764,4457,4155,1995,2391,30,26,119,115,6,8,54,69,4501,4217,2013,2420,49,52,147,143,10,13,6324,6508,4156,3931,1979,2377,19,19,118,115,4,6,48,60,4195,3985,1997,2401,34,41,144,139,7,9,337,256,301,224,16,14,11,7,1,0,2,2,6,9,306,232,16,19,15,11,3,4,3,4 -050,01,125,Alabama,Tuscaloosa County,11,8,13295,6491,6804,4129,3943,2124,2687,78,14,97,103,5,11,58,46,4182,3980,2143,2704,105,36,119,123,8,18,6006,6541,3732,3715,2107,2664,14,9,97,103,4,10,52,40,3779,3747,2123,2678,39,28,118,120,6,16,485,263,397,228,17,23,64,5,0,0,1,1,6,6,403,233,20,26,66,8,1,3,2,2 -050,01,125,Alabama,Tuscaloosa County,11,9,11807,5638,6169,3786,3660,1689,2342,21,19,98,106,3,6,41,36,3821,3692,1704,2351,46,37,107,118,7,11,5412,5911,3589,3426,1671,2329,16,14,98,106,1,4,37,32,3622,3454,1684,2336,38,30,106,116,3,8,226,258,197,234,18,13,5,5,0,0,2,2,4,4,199,238,20,15,8,7,1,2,4,3 -050,01,125,Alabama,Tuscaloosa County,11,10,12105,5773,6332,4016,3883,1614,2303,22,18,90,87,2,1,29,40,4043,3916,1621,2319,36,38,101,102,2,7,5561,6193,3821,3762,1609,2295,15,13,89,86,1,1,26,36,3845,3794,1616,2307,27,32,99,98,1,4,212,139,195,121,5,8,7,5,1,1,1,0,3,4,198,122,5,12,9,6,2,4,1,3 -050,01,125,Alabama,Tuscaloosa County,11,11,11306,5413,5893,3860,3737,1436,2050,31,14,46,62,5,2,35,28,3892,3762,1443,2058,53,29,60,71,9,5,5254,5784,3732,3641,1425,2042,22,12,45,61,2,2,28,26,3757,3664,1429,2048,41,27,57,70,4,5,159,109,128,96,11,8,9,2,1,1,3,0,7,2,135,98,14,10,12,2,3,1,5,0 -050,01,125,Alabama,Tuscaloosa County,11,12,11957,5721,6236,4030,4185,1594,1931,20,32,50,52,4,1,23,35,4048,4213,1601,1944,34,57,59,63,6,4,5585,6146,3929,4109,1582,1924,10,27,44,52,1,1,19,33,3945,4135,1586,1936,22,51,52,63,1,4,136,90,101,76,12,7,10,5,6,0,3,0,4,2,103,78,15,8,12,6,7,0,5,0 -050,01,125,Alabama,Tuscaloosa County,11,13,11904,5533,6371,3889,4226,1559,2022,19,15,34,79,0,2,32,27,3914,4246,1568,2032,43,35,43,83,1,3,5448,6305,3816,4165,1556,2019,10,14,34,79,0,2,32,26,3841,4184,1565,2029,34,34,43,83,1,2,85,66,73,61,3,3,9,1,0,0,0,0,0,1,73,62,3,3,9,1,0,0,0,1 -050,01,125,Alabama,Tuscaloosa County,11,14,9917,4601,5316,3347,3719,1170,1482,12,19,45,79,5,2,22,15,3365,3729,1175,1487,30,29,50,83,6,5,4546,5223,3300,3636,1163,1475,12,16,45,79,5,2,21,15,3318,3646,1168,1480,29,26,50,83,5,5,55,93,47,83,7,7,0,3,0,0,0,0,1,0,47,83,7,7,1,3,0,0,1,0 -050,01,125,Alabama,Tuscaloosa County,11,15,7042,3241,3801,2516,2845,669,898,7,9,29,26,0,1,20,22,2535,2860,672,906,23,24,31,31,1,4,3224,3778,2501,2824,667,897,7,9,29,25,0,1,20,22,2520,2839,670,905,23,24,31,30,1,4,17,23,15,21,2,1,0,0,0,1,0,0,0,0,15,21,2,1,0,0,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,11,16,4667,2006,2661,1629,2042,347,582,7,2,14,13,0,1,9,21,1637,2056,350,589,15,19,14,16,2,2,1982,2640,1608,2023,345,580,7,2,14,13,0,1,8,21,1616,2037,347,587,15,19,14,16,1,2,24,21,21,19,2,2,0,0,0,0,0,0,1,0,21,19,3,2,0,0,0,0,1,0 -050,01,125,Alabama,Tuscaloosa County,11,17,3041,1169,1872,928,1420,222,432,2,3,9,11,0,0,8,6,934,1426,225,432,8,8,12,12,2,1,1164,1857,924,1408,222,430,2,3,9,11,0,0,7,5,929,1413,225,430,7,7,12,12,2,0,5,15,4,12,0,2,0,0,0,0,0,0,1,1,5,13,0,2,1,1,0,0,0,1 -050,01,125,Alabama,Tuscaloosa County,11,18,3110,940,2170,763,1653,165,485,0,8,12,11,0,0,0,13,763,1663,165,488,0,18,12,12,0,2,924,2135,747,1619,165,485,0,8,12,11,0,0,0,12,747,1629,165,488,0,17,12,12,0,1,16,35,16,34,0,0,0,0,0,0,0,0,0,1,16,34,0,0,0,1,0,0,0,1 -050,01,125,Alabama,Tuscaloosa County,12,0,210321,101165,109156,66543,68210,31001,37457,414,319,1781,1714,68,69,1358,1387,67778,69461,31728,38227,818,735,2203,2127,151,155,96806,105253,62816,64840,30757,37193,227,240,1715,1665,36,42,1255,1273,63963,65989,31425,37899,586,605,2105,2048,103,108,4359,3903,3727,3370,244,264,187,79,66,49,32,27,103,114,3815,3472,303,328,232,130,98,79,48,47 -050,01,125,Alabama,Tuscaloosa County,12,1,12435,6350,6085,3511,3344,2419,2380,23,23,158,112,13,11,226,215,3728,3548,2576,2531,47,50,217,167,23,18,5800,5501,3060,2881,2397,2345,4,9,127,76,3,3,209,187,3262,3058,2543,2482,23,27,182,120,12,6,550,584,451,463,22,35,19,14,31,36,10,8,17,28,466,490,33,49,24,23,35,47,11,12 -050,01,125,Alabama,Tuscaloosa County,12,2,12407,6267,6140,3553,3482,2361,2410,23,15,125,60,6,7,199,166,3744,3634,2497,2531,55,42,186,94,16,13,5794,5594,3147,3000,2334,2379,8,4,116,56,3,2,186,153,3326,3141,2463,2490,35,26,171,90,10,7,473,546,406,482,27,31,15,11,9,4,3,5,13,13,418,493,34,41,20,16,15,4,6,6 -050,01,125,Alabama,Tuscaloosa County,12,3,11993,6106,5887,3455,3394,2405,2274,29,15,72,62,4,4,141,138,3588,3526,2498,2365,51,35,109,104,12,7,5711,5547,3110,3091,2386,2253,12,10,70,61,2,0,131,132,3235,3217,2472,2340,31,28,104,103,9,3,395,340,345,303,19,21,17,5,2,1,2,4,10,6,353,309,26,25,20,7,5,1,3,4 -050,01,125,Alabama,Tuscaloosa County,12,4,17531,8467,9064,5436,5810,2725,2954,28,27,154,132,5,6,119,135,5544,5938,2795,3027,52,56,194,177,9,13,8138,8720,5148,5508,2699,2925,18,25,153,131,5,4,115,127,5252,5629,2768,2995,41,51,191,173,9,11,329,344,288,302,26,29,10,2,1,1,0,2,4,8,292,309,27,32,11,5,3,4,0,2 -050,01,125,Alabama,Tuscaloosa County,12,5,23718,11647,12071,7844,7438,3246,3922,30,36,325,424,2,6,200,245,8022,7661,3356,4064,84,97,396,500,10,19,11245,11698,7485,7136,3230,3871,21,32,319,421,1,4,189,234,7654,7348,3335,4007,71,90,386,495,7,15,402,373,359,302,16,51,9,4,6,3,1,2,11,11,368,313,21,57,13,7,10,5,3,4 -050,01,125,Alabama,Tuscaloosa County,12,6,16811,8320,8491,4995,4828,2918,3362,30,27,262,153,5,3,110,118,5093,4933,2969,3426,68,67,302,198,11,12,7939,8209,4669,4579,2886,3349,28,19,254,152,3,2,99,108,4756,4675,2930,3407,61,52,291,193,8,6,381,282,326,249,32,13,2,8,8,1,2,1,11,10,337,258,39,19,7,15,11,5,3,6 -050,01,125,Alabama,Tuscaloosa County,12,7,14076,6962,7114,4631,4386,2123,2524,24,22,119,112,9,6,56,64,4682,4443,2142,2552,46,45,145,139,12,15,6609,6849,4309,4154,2106,2512,18,16,118,112,6,4,52,51,4356,4199,2124,2532,38,31,142,135,8,11,353,265,322,232,17,12,6,6,1,0,3,2,4,13,326,244,18,20,8,14,3,4,4,4 -050,01,125,Alabama,Tuscaloosa County,12,8,13249,6432,6817,4100,3962,2069,2673,85,16,115,100,6,10,57,56,4151,4012,2086,2694,111,42,138,121,12,13,5967,6557,3728,3733,2054,2654,16,10,115,100,4,9,50,51,3772,3779,2067,2673,36,34,136,119,9,11,465,260,372,229,15,19,69,6,0,0,2,1,7,5,379,233,19,21,75,8,2,2,3,2 -050,01,125,Alabama,Tuscaloosa County,12,9,11967,5723,6244,3809,3660,1740,2411,17,19,106,114,2,5,49,35,3852,3689,1757,2420,44,40,121,123,6,9,5460,5985,3579,3428,1717,2396,13,14,106,114,1,3,44,30,3618,3452,1730,2404,38,31,120,123,5,7,263,259,230,232,23,15,4,5,0,0,1,2,5,5,234,237,27,16,6,9,1,0,1,2 -050,01,125,Alabama,Tuscaloosa County,12,10,12240,5799,6441,3989,3898,1669,2388,21,20,82,90,2,2,36,43,4017,3934,1682,2406,42,43,92,103,7,12,5593,6283,3798,3755,1666,2384,14,16,82,89,0,2,33,37,3825,3787,1677,2398,33,36,91,99,4,8,206,158,191,143,3,4,7,4,0,1,2,0,3,6,192,147,5,8,9,7,1,4,3,4 -050,01,125,Alabama,Tuscaloosa County,12,11,11262,5365,5897,3816,3737,1423,2054,33,9,56,63,3,1,34,33,3846,3765,1434,2060,51,24,68,76,11,10,5201,5771,3686,3624,1411,2046,23,8,54,62,1,1,26,30,3710,3650,1418,2051,36,21,64,75,7,9,164,126,130,113,12,8,10,1,2,1,2,0,8,3,136,115,16,9,15,3,4,1,4,1 -050,01,125,Alabama,Tuscaloosa County,12,12,11940,5767,6173,4041,4091,1610,1958,20,31,63,61,5,2,28,30,4061,4116,1622,1969,38,53,68,70,8,5,5622,6076,3935,4016,1593,1948,11,22,59,61,2,2,22,27,3951,4038,1601,1957,25,42,64,70,3,5,145,97,106,75,17,10,9,9,4,0,3,0,6,3,110,78,21,12,13,11,4,0,5,0 -050,01,125,Alabama,Tuscaloosa County,12,13,11856,5522,6334,3874,4202,1559,2017,20,18,31,72,1,0,37,25,3905,4223,1567,2025,48,33,39,78,3,2,5419,6264,3788,4138,1555,2013,11,17,29,72,0,0,36,24,3818,4158,1563,2020,38,32,37,78,2,2,103,70,86,64,4,4,9,1,2,0,1,0,1,1,87,65,4,5,10,1,2,0,1,0 -050,01,125,Alabama,Tuscaloosa County,12,14,10266,4730,5536,3391,3805,1267,1606,11,17,35,90,5,2,21,16,3407,3819,1273,1609,27,30,40,93,7,2,4669,5448,3337,3725,1261,1600,10,15,35,90,5,2,21,16,3353,3739,1267,1603,26,28,40,93,7,2,61,88,54,80,6,6,1,2,0,0,0,0,0,0,54,80,6,6,1,2,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,12,15,7462,3423,4039,2660,2991,692,981,7,9,39,30,0,3,25,25,2684,3010,696,988,26,28,44,35,2,3,3403,4000,2644,2956,689,979,7,8,39,29,0,3,24,25,2667,2975,692,986,26,27,44,34,2,3,20,39,16,35,3,2,0,1,0,1,0,0,1,0,17,35,4,2,0,1,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,12,16,4878,2109,2769,1690,2104,387,626,8,5,15,14,0,1,9,19,1697,2118,388,633,15,23,17,16,2,1,2085,2752,1668,2089,386,624,8,5,15,14,0,1,8,19,1675,2103,386,631,15,23,16,16,1,1,24,17,22,15,1,2,0,0,0,0,0,0,1,0,22,15,2,2,0,0,1,0,1,0 -050,01,125,Alabama,Tuscaloosa County,12,17,3104,1212,1892,969,1448,217,418,5,1,10,13,0,0,11,12,978,1455,219,422,13,9,13,17,0,1,1203,1876,962,1434,216,417,5,1,10,13,0,0,10,11,970,1441,218,420,13,8,12,17,0,1,9,16,7,14,1,1,0,0,0,0,0,0,1,1,8,14,1,2,0,1,1,0,0,0 -050,01,125,Alabama,Tuscaloosa County,12,18,3126,964,2162,779,1630,171,499,0,9,14,12,0,0,0,12,779,1637,171,505,0,18,14,16,0,0,948,2123,763,1593,171,498,0,9,14,12,0,0,0,11,763,1600,171,503,0,18,14,15,0,0,16,39,16,37,0,1,0,0,0,0,0,0,0,1,16,37,0,2,0,0,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,13,0,210758,101215,109543,66322,68026,31181,37896,425,302,1812,1780,81,70,1394,1469,67599,69344,31930,38716,851,733,2230,2215,140,157,96746,105530,62505,64583,30925,37608,231,227,1751,1721,46,41,1288,1350,63690,65803,31608,38362,608,605,2143,2120,94,110,4469,4013,3817,3443,256,288,194,75,61,59,35,29,106,119,3909,3541,322,354,243,128,87,95,46,47 -050,01,125,Alabama,Tuscaloosa County,13,1,12305,6261,6044,3428,3315,2422,2366,24,19,159,110,12,7,216,227,3635,3528,2572,2526,53,52,216,165,20,16,5718,5477,2983,2864,2396,2325,5,7,135,79,3,2,196,200,3172,3054,2532,2472,26,31,187,124,9,7,543,567,445,451,26,41,19,12,24,31,9,5,20,27,463,474,40,54,27,21,29,41,11,9 -050,01,125,Alabama,Tuscaloosa County,13,2,12396,6256,6140,3543,3455,2354,2410,20,17,129,72,7,9,203,177,3738,3619,2496,2532,49,42,180,119,10,18,5758,5577,3113,2985,2329,2370,5,7,117,55,5,2,189,158,3296,3133,2461,2481,29,26,165,97,7,10,498,563,430,470,25,40,15,10,12,17,2,7,14,19,442,486,35,51,20,16,15,22,3,8 -050,01,125,Alabama,Tuscaloosa County,13,3,12234,6192,6042,3496,3457,2424,2342,28,15,84,70,8,7,152,151,3642,3597,2520,2442,55,41,127,109,12,14,5771,5643,3129,3107,2404,2320,11,7,80,68,4,1,143,140,3266,3238,2494,2413,35,27,122,105,8,8,421,399,367,350,20,22,17,8,4,2,4,6,9,11,376,359,26,29,20,14,5,4,4,6 -050,01,125,Alabama,Tuscaloosa County,13,4,17272,8327,8945,5381,5715,2631,2920,32,24,156,131,7,4,120,151,5493,5853,2700,3010,60,53,197,179,12,11,7956,8608,5054,5421,2607,2889,19,22,155,130,7,2,114,144,5161,5554,2673,2975,46,49,192,176,11,8,371,337,327,294,24,31,13,2,1,1,0,2,6,7,332,299,27,35,14,4,5,3,1,3 -050,01,125,Alabama,Tuscaloosa County,13,5,23633,11557,12076,7760,7415,3247,3938,29,35,305,430,2,4,214,254,7952,7646,3367,4086,87,98,373,510,9,19,11175,11686,7427,7094,3221,3889,22,31,302,426,0,3,203,243,7609,7316,3336,4029,76,90,366,504,6,15,382,390,333,321,26,49,7,4,3,4,2,1,11,11,343,330,31,57,11,8,7,6,3,4 -050,01,125,Alabama,Tuscaloosa County,13,6,15970,7883,8087,4649,4462,2846,3354,30,26,250,138,3,3,105,104,4740,4552,2895,3411,68,58,289,174,8,11,7511,7807,4322,4215,2821,3340,26,19,242,137,3,2,97,94,4407,4295,2865,3389,58,47,278,169,8,8,372,280,327,247,25,14,4,7,8,1,0,1,8,10,333,257,30,22,10,11,11,5,0,3 -050,01,125,Alabama,Tuscaloosa County,13,7,14923,7390,7533,4851,4639,2302,2672,27,19,128,111,15,6,67,86,4910,4719,2331,2707,51,47,156,148,16,9,7018,7274,4520,4407,2282,2659,20,12,127,111,8,4,61,81,4573,4483,2307,2693,41,36,154,146,8,7,372,259,331,232,20,13,7,7,1,0,7,2,6,5,337,236,24,14,10,11,2,2,8,2 -050,01,125,Alabama,Tuscaloosa County,13,8,12913,6220,6693,3996,3897,1948,2583,80,14,133,128,5,12,58,59,4045,3949,1970,2605,103,43,156,150,10,20,5796,6445,3663,3679,1932,2567,14,13,133,128,4,9,50,49,3706,3723,1947,2583,33,36,155,146,8,14,424,248,333,218,16,16,66,1,0,0,1,3,8,10,339,226,23,22,70,7,1,4,2,6 -050,01,125,Alabama,Tuscaloosa County,13,9,12206,5835,6371,3801,3717,1862,2483,21,17,95,116,7,5,49,33,3845,3745,1881,2494,49,35,111,124,10,8,5551,6106,3555,3484,1838,2463,14,11,95,116,5,4,44,28,3595,3509,1854,2473,38,25,110,124,7,5,284,265,246,233,24,20,7,6,0,0,2,1,5,5,250,236,27,21,11,10,1,0,3,3 -050,01,125,Alabama,Tuscaloosa County,13,10,12254,5804,6450,3978,3856,1669,2426,25,12,92,105,2,4,38,47,4012,3894,1679,2443,48,34,107,122,5,10,5603,6265,3793,3684,1666,2422,17,10,92,105,0,3,35,41,3824,3718,1675,2435,37,29,107,119,3,7,201,185,185,172,3,4,8,2,0,0,2,1,3,6,188,176,4,8,11,5,0,3,2,3 -050,01,125,Alabama,Tuscaloosa County,13,11,11281,5420,5861,3837,3689,1450,2058,30,14,71,66,2,1,30,33,3862,3718,1457,2070,46,34,80,76,8,6,5240,5736,3686,3581,1440,2048,20,11,70,64,1,1,23,31,3707,3608,1443,2059,33,29,78,74,4,6,180,125,151,108,10,10,10,3,1,2,1,0,7,2,155,110,14,11,13,5,2,2,4,0 -050,01,125,Alabama,Tuscaloosa County,13,12,11898,5713,6185,4027,4011,1568,2052,26,25,54,61,5,2,33,34,4056,4039,1576,2063,46,45,64,72,8,5,5557,6082,3907,3930,1550,2042,17,17,52,61,1,2,30,30,3933,3954,1556,2053,34,35,62,70,4,5,156,103,120,81,18,10,9,8,2,0,4,0,3,4,123,85,20,10,12,10,2,2,4,0 -050,01,125,Alabama,Tuscaloosa County,13,13,11707,5481,6226,3812,4157,1577,1953,14,21,42,72,1,0,35,23,3842,4174,1585,1961,38,38,51,76,2,0,5367,6137,3721,4076,1570,1947,7,19,37,72,0,0,32,23,3748,4093,1578,1955,29,36,45,76,1,0,114,89,91,81,7,6,7,2,5,0,1,0,3,0,94,81,7,6,9,2,6,0,1,0 -050,01,125,Alabama,Tuscaloosa County,13,14,10530,4849,5681,3486,3847,1289,1705,13,17,30,89,3,2,28,21,3509,3866,1297,1710,37,33,33,96,5,2,4776,5611,3425,3781,1282,1701,8,17,30,89,3,2,28,21,3448,3800,1290,1706,32,33,33,96,5,2,73,70,61,66,7,4,5,0,0,0,0,0,0,0,61,66,7,4,5,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,13,15,7902,3577,4325,2732,3172,771,1073,13,13,39,42,2,3,20,22,2750,3190,775,1078,30,30,42,47,2,3,3552,4264,2710,3118,769,1070,13,10,39,41,2,3,19,22,2727,3136,772,1075,30,27,42,46,2,3,25,61,22,54,2,3,0,3,0,1,0,0,1,0,23,54,3,3,0,3,0,1,0,0 -050,01,125,Alabama,Tuscaloosa County,13,16,5006,2160,2846,1700,2167,420,636,8,5,17,16,0,1,15,21,1714,2183,424,643,20,21,17,20,3,3,2140,2826,1682,2150,419,633,8,5,17,16,0,1,14,21,1695,2166,422,640,20,21,17,20,3,3,20,20,18,17,1,3,0,0,0,0,0,0,1,0,19,17,2,3,0,0,0,0,0,0 -050,01,125,Alabama,Tuscaloosa County,13,17,3161,1269,1892,1020,1439,223,428,5,1,12,11,0,0,9,13,1028,1446,226,433,10,10,14,15,0,2,1255,1875,1009,1424,221,427,5,1,12,11,0,0,8,12,1016,1431,224,431,10,9,13,15,0,2,14,17,11,15,2,1,0,0,0,0,0,0,1,1,12,15,2,2,0,1,1,0,0,0 -050,01,125,Alabama,Tuscaloosa County,13,18,3167,1021,2146,825,1616,178,497,0,8,16,12,0,0,2,13,826,1626,179,502,1,19,17,13,0,0,1002,2111,806,1583,178,496,0,8,16,12,0,0,2,12,807,1592,179,500,1,19,17,13,0,0,19,35,19,33,0,1,0,0,0,0,0,0,0,1,19,34,0,2,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,1,0,67023,32668,34355,30097,31633,1890,2055,156,129,95,118,43,23,387,397,30462,32014,2041,2235,365,330,141,149,60,35,31896,33820,29456,31182,1860,2033,123,111,81,109,16,11,360,374,29794,31540,2006,2210,315,292,122,140,28,23,772,535,641,451,30,22,33,18,14,9,27,12,27,23,668,474,35,25,50,38,19,9,32,12 -050,01,127,Alabama,Walker County,1,1,3871,1942,1929,1729,1691,125,150,12,6,8,6,4,5,64,71,1792,1762,173,207,23,16,15,11,8,5,1856,1843,1663,1619,121,146,6,3,8,4,2,3,56,68,1718,1687,165,202,15,11,13,9,4,3,86,86,66,72,4,4,6,3,0,2,2,2,8,3,74,75,8,5,8,5,2,2,4,2 -050,01,127,Alabama,Walker County,1,2,4101,2107,1994,1889,1767,156,146,7,9,8,12,4,1,43,59,1930,1826,184,187,17,25,15,15,5,2,2036,1939,1830,1717,153,145,4,9,7,12,1,0,41,56,1869,1773,181,186,13,22,13,15,1,1,71,55,59,50,3,1,3,0,1,0,3,1,2,3,61,53,3,1,4,3,2,0,4,1 -050,01,127,Alabama,Walker County,1,3,4440,2277,2163,2036,1944,170,161,9,6,8,7,0,3,54,42,2084,1984,205,189,28,18,15,13,3,5,2231,2119,2001,1904,163,160,9,5,6,7,0,2,52,41,2047,1943,198,187,28,17,11,13,1,4,46,44,35,40,7,1,0,1,2,0,0,1,2,1,37,41,7,2,0,1,4,0,2,1 -050,01,127,Alabama,Walker County,1,4,4360,2279,2081,2068,1880,168,143,5,11,7,4,1,1,30,42,2096,1919,181,165,22,32,7,7,3,1,2229,2045,2025,1854,166,140,3,7,6,3,0,0,29,41,2052,1892,179,162,19,27,6,6,2,0,50,36,43,26,2,3,2,4,1,1,1,1,1,1,44,27,2,3,3,5,1,1,1,1 -050,01,127,Alabama,Walker County,1,5,3737,1869,1868,1681,1705,149,132,8,5,5,7,5,2,21,17,1701,1722,154,138,21,14,8,9,6,2,1785,1814,1609,1656,147,131,5,5,4,6,2,0,18,16,1626,1672,152,137,15,13,7,8,3,0,84,54,72,49,2,1,3,0,1,1,3,2,3,1,75,50,2,1,6,1,1,1,3,2 -050,01,127,Alabama,Walker County,1,6,3694,1862,1832,1664,1657,145,145,6,8,17,9,10,0,20,13,1683,1669,148,148,19,14,23,13,11,1,1732,1784,1557,1618,141,143,2,2,12,8,3,0,17,13,1573,1630,144,146,12,8,18,12,4,1,130,48,107,39,4,2,4,6,5,1,7,0,3,0,110,39,4,2,7,6,5,1,7,0 -050,01,127,Alabama,Walker County,1,7,3973,1876,2097,1711,1898,126,154,12,5,7,13,8,4,12,23,1722,1918,127,161,20,20,11,17,8,6,1792,2051,1647,1862,123,152,5,3,5,12,2,2,10,20,1656,1879,124,159,11,15,9,16,2,4,84,46,64,36,3,2,7,2,2,1,6,2,2,3,66,39,3,2,9,5,2,1,6,2 -050,01,127,Alabama,Walker County,1,8,4238,2174,2064,2013,1924,117,111,11,5,10,8,7,4,16,12,2028,1936,120,111,21,17,14,8,7,4,2104,2030,1951,1894,117,109,9,4,8,8,4,4,15,11,1965,1905,120,109,18,15,12,8,4,4,70,34,62,30,0,2,2,1,2,0,3,0,1,1,63,31,0,2,3,2,2,0,3,0 -050,01,127,Alabama,Walker County,1,9,4450,2288,2162,2132,2016,115,116,17,8,5,9,0,0,19,13,2149,2027,117,120,34,19,6,9,1,0,2241,2134,2091,1989,113,116,14,8,5,9,0,0,18,12,2107,1999,115,119,30,19,6,9,1,0,47,28,41,27,2,0,3,0,0,0,0,0,1,1,42,28,2,1,4,0,0,0,0,0 -050,01,127,Alabama,Walker County,1,10,4944,2442,2502,2287,2293,120,169,11,12,5,11,2,2,17,15,2304,2307,122,169,24,25,6,12,3,4,2411,2477,2262,2276,119,167,11,12,5,9,0,0,14,13,2276,2288,120,167,22,23,6,10,1,2,31,25,25,17,1,2,0,0,0,2,2,2,3,2,28,19,2,2,2,2,0,2,2,2 -050,01,127,Alabama,Walker County,1,11,4992,2426,2566,2250,2358,131,158,22,19,1,4,0,0,22,27,2270,2382,137,163,41,41,1,5,0,3,2401,2551,2229,2345,130,158,20,18,1,4,0,0,21,26,2248,2368,136,163,38,39,1,5,0,3,25,15,21,13,1,0,2,1,0,0,0,0,1,1,22,14,1,0,3,2,0,0,0,0 -050,01,127,Alabama,Walker County,1,12,4857,2398,2459,2227,2291,127,127,11,16,8,8,0,1,25,16,2251,2307,127,128,33,31,10,8,2,1,2384,2443,2213,2281,127,125,11,16,8,7,0,0,25,14,2237,2295,127,126,33,29,10,7,2,0,14,16,14,10,0,2,0,0,0,1,0,1,0,2,14,12,0,2,0,2,0,1,0,1 -050,01,127,Alabama,Walker County,1,13,4472,2086,2386,1980,2250,78,97,12,8,4,11,2,0,10,20,1990,2270,79,98,20,26,5,11,2,1,2075,2375,1970,2241,78,97,11,8,4,11,2,0,10,18,1980,2259,79,98,19,24,5,11,2,1,11,11,10,9,0,0,1,0,0,0,0,0,0,2,10,11,0,0,1,2,0,0,0,0 -050,01,127,Alabama,Walker County,1,14,3487,1616,1871,1533,1774,68,79,5,5,1,4,0,0,9,9,1542,1783,69,81,13,12,1,4,0,0,1608,1859,1525,1763,68,79,5,5,1,4,0,0,9,8,1534,1771,69,81,13,11,1,4,0,0,8,12,8,11,0,0,0,0,0,0,0,0,0,1,8,12,0,0,0,1,0,0,0,0 -050,01,127,Alabama,Walker County,1,15,2848,1282,1566,1232,1493,33,61,4,0,1,2,0,0,12,10,1243,1502,33,63,14,8,4,3,1,0,1278,1553,1228,1481,33,61,4,0,1,2,0,0,12,9,1239,1489,33,63,14,7,4,3,1,0,4,13,4,12,0,0,0,0,0,0,0,0,0,1,4,13,0,0,0,1,0,0,0,0 -050,01,127,Alabama,Walker County,1,16,2051,899,1152,860,1089,32,53,2,3,0,3,0,0,5,4,864,1093,34,54,6,6,0,3,0,0,891,1145,853,1083,31,52,2,3,0,3,0,0,5,4,857,1087,33,53,6,6,0,3,0,0,8,7,7,6,1,1,0,0,0,0,0,0,0,0,7,6,1,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,1,17,1408,526,882,501,847,17,29,2,3,0,0,0,0,6,3,507,850,18,29,7,5,0,1,0,0,524,879,499,845,17,28,2,3,0,0,0,0,6,3,505,848,18,28,7,5,0,1,0,0,2,3,2,2,0,1,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,1,18,1100,319,781,304,756,13,24,0,0,0,0,0,0,2,1,306,757,13,24,2,1,0,0,0,0,318,779,303,754,13,24,0,0,0,0,0,0,2,1,305,755,13,24,2,1,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,2,0,67019,32666,34353,30095,31631,1890,2055,156,129,95,118,43,23,387,397,30460,32012,2041,2235,365,330,141,149,60,35,31894,33818,29454,31180,1860,2033,123,111,81,109,16,11,360,374,29792,31538,2006,2210,315,292,122,140,28,23,772,535,641,451,30,22,33,18,14,9,27,12,27,23,668,474,35,25,50,38,19,9,32,12 -050,01,127,Alabama,Walker County,2,1,3871,1942,1929,1729,1691,125,150,12,6,8,6,4,5,64,71,1792,1762,173,207,23,16,15,11,8,5,1856,1843,1663,1619,121,146,6,3,8,4,2,3,56,68,1718,1687,165,202,15,11,13,9,4,3,86,86,66,72,4,4,6,3,0,2,2,2,8,3,74,75,8,5,8,5,2,2,4,2 -050,01,127,Alabama,Walker County,2,2,4101,2107,1994,1889,1767,156,146,7,9,8,12,4,1,43,59,1930,1826,184,187,17,25,15,15,5,2,2036,1939,1830,1717,153,145,4,9,7,12,1,0,41,56,1869,1773,181,186,13,22,13,15,1,1,71,55,59,50,3,1,3,0,1,0,3,1,2,3,61,53,3,1,4,3,2,0,4,1 -050,01,127,Alabama,Walker County,2,3,4440,2277,2163,2036,1944,170,161,9,6,8,7,0,3,54,42,2084,1984,205,189,28,18,15,13,3,5,2231,2119,2001,1904,163,160,9,5,6,7,0,2,52,41,2047,1943,198,187,28,17,11,13,1,4,46,44,35,40,7,1,0,1,2,0,0,1,2,1,37,41,7,2,0,1,4,0,2,1 -050,01,127,Alabama,Walker County,2,4,4360,2279,2081,2068,1880,168,143,5,11,7,4,1,1,30,42,2096,1919,181,165,22,32,7,7,3,1,2229,2045,2025,1854,166,140,3,7,6,3,0,0,29,41,2052,1892,179,162,19,27,6,6,2,0,50,36,43,26,2,3,2,4,1,1,1,1,1,1,44,27,2,3,3,5,1,1,1,1 -050,01,127,Alabama,Walker County,2,5,3737,1869,1868,1681,1705,149,132,8,5,5,7,5,2,21,17,1701,1722,154,138,21,14,8,9,6,2,1785,1814,1609,1656,147,131,5,5,4,6,2,0,18,16,1626,1672,152,137,15,13,7,8,3,0,84,54,72,49,2,1,3,0,1,1,3,2,3,1,75,50,2,1,6,1,1,1,3,2 -050,01,127,Alabama,Walker County,2,6,3694,1862,1832,1664,1657,145,145,6,8,17,9,10,0,20,13,1683,1669,148,148,19,14,23,13,11,1,1732,1784,1557,1618,141,143,2,2,12,8,3,0,17,13,1573,1630,144,146,12,8,18,12,4,1,130,48,107,39,4,2,4,6,5,1,7,0,3,0,110,39,4,2,7,6,5,1,7,0 -050,01,127,Alabama,Walker County,2,7,3972,1875,2097,1710,1898,126,154,12,5,7,13,8,4,12,23,1721,1918,127,161,20,20,11,17,8,6,1791,2051,1646,1862,123,152,5,3,5,12,2,2,10,20,1655,1879,124,159,11,15,9,16,2,4,84,46,64,36,3,2,7,2,2,1,6,2,2,3,66,39,3,2,9,5,2,1,6,2 -050,01,127,Alabama,Walker County,2,8,4238,2174,2064,2013,1924,117,111,11,5,10,8,7,4,16,12,2028,1936,120,111,21,17,14,8,7,4,2104,2030,1951,1894,117,109,9,4,8,8,4,4,15,11,1965,1905,120,109,18,15,12,8,4,4,70,34,62,30,0,2,2,1,2,0,3,0,1,1,63,31,0,2,3,2,2,0,3,0 -050,01,127,Alabama,Walker County,2,9,4450,2288,2162,2132,2016,115,116,17,8,5,9,0,0,19,13,2149,2027,117,120,34,19,6,9,1,0,2241,2134,2091,1989,113,116,14,8,5,9,0,0,18,12,2107,1999,115,119,30,19,6,9,1,0,47,28,41,27,2,0,3,0,0,0,0,0,1,1,42,28,2,1,4,0,0,0,0,0 -050,01,127,Alabama,Walker County,2,10,4943,2441,2502,2286,2293,120,169,11,12,5,11,2,2,17,15,2303,2307,122,169,24,25,6,12,3,4,2410,2477,2261,2276,119,167,11,12,5,9,0,0,14,13,2275,2288,120,167,22,23,6,10,1,2,31,25,25,17,1,2,0,0,0,2,2,2,3,2,28,19,2,2,2,2,0,2,2,2 -050,01,127,Alabama,Walker County,2,11,4991,2426,2565,2250,2357,131,158,22,19,1,4,0,0,22,27,2270,2381,137,163,41,41,1,5,0,3,2401,2550,2229,2344,130,158,20,18,1,4,0,0,21,26,2248,2367,136,163,38,39,1,5,0,3,25,15,21,13,1,0,2,1,0,0,0,0,1,1,22,14,1,0,3,2,0,0,0,0 -050,01,127,Alabama,Walker County,2,12,4857,2398,2459,2227,2291,127,127,11,16,8,8,0,1,25,16,2251,2307,127,128,33,31,10,8,2,1,2384,2443,2213,2281,127,125,11,16,8,7,0,0,25,14,2237,2295,127,126,33,29,10,7,2,0,14,16,14,10,0,2,0,0,0,1,0,1,0,2,14,12,0,2,0,2,0,1,0,1 -050,01,127,Alabama,Walker County,2,13,4471,2086,2385,1980,2249,78,97,12,8,4,11,2,0,10,20,1990,2269,79,98,20,26,5,11,2,1,2075,2374,1970,2240,78,97,11,8,4,11,2,0,10,18,1980,2258,79,98,19,24,5,11,2,1,11,11,10,9,0,0,1,0,0,0,0,0,0,2,10,11,0,0,1,2,0,0,0,0 -050,01,127,Alabama,Walker County,2,14,3487,1616,1871,1533,1774,68,79,5,5,1,4,0,0,9,9,1542,1783,69,81,13,12,1,4,0,0,1608,1859,1525,1763,68,79,5,5,1,4,0,0,9,8,1534,1771,69,81,13,11,1,4,0,0,8,12,8,11,0,0,0,0,0,0,0,0,0,1,8,12,0,0,0,1,0,0,0,0 -050,01,127,Alabama,Walker County,2,15,2848,1282,1566,1232,1493,33,61,4,0,1,2,0,0,12,10,1243,1502,33,63,14,8,4,3,1,0,1278,1553,1228,1481,33,61,4,0,1,2,0,0,12,9,1239,1489,33,63,14,7,4,3,1,0,4,13,4,12,0,0,0,0,0,0,0,0,0,1,4,13,0,0,0,1,0,0,0,0 -050,01,127,Alabama,Walker County,2,16,2051,899,1152,860,1089,32,53,2,3,0,3,0,0,5,4,864,1093,34,54,6,6,0,3,0,0,891,1145,853,1083,31,52,2,3,0,3,0,0,5,4,857,1087,33,53,6,6,0,3,0,0,8,7,7,6,1,1,0,0,0,0,0,0,0,0,7,6,1,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,2,17,1408,526,882,501,847,17,29,2,3,0,0,0,0,6,3,507,850,18,29,7,5,0,1,0,0,524,879,499,845,17,28,2,3,0,0,0,0,6,3,505,848,18,28,7,5,0,1,0,0,2,3,2,2,0,1,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,2,18,1100,319,781,304,756,13,24,0,0,0,0,0,0,2,1,306,757,13,24,2,1,0,0,0,0,318,779,303,754,13,24,0,0,0,0,0,0,2,1,305,755,13,24,2,1,0,0,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,3,0,66995,32658,34337,30092,31617,1886,2048,155,130,96,121,40,23,389,398,30451,31989,2061,2249,365,328,141,168,46,30,31895,33797,29452,31165,1855,2026,126,112,82,111,15,10,365,373,29790,31516,2018,2216,326,291,122,149,18,16,763,540,640,452,31,22,29,18,14,10,25,13,24,25,661,473,43,33,39,37,19,19,28,14 -050,01,127,Alabama,Walker County,3,1,3898,1953,1945,1743,1702,126,152,11,5,8,7,3,5,62,74,1803,1775,173,212,24,20,15,13,4,5,1867,1858,1675,1632,121,147,6,2,8,4,2,2,55,71,1728,1702,162,205,17,15,14,8,2,2,86,87,68,70,5,5,5,3,0,3,1,3,7,3,75,73,11,7,7,5,1,5,2,3 -050,01,127,Alabama,Walker County,3,2,4082,2099,1983,1885,1759,151,143,7,10,9,12,3,1,44,58,1925,1814,186,184,16,28,15,15,4,1,2031,1925,1827,1707,148,142,4,10,8,12,1,0,43,54,1866,1758,182,181,13,26,14,15,2,0,68,58,58,52,3,1,3,0,1,0,2,1,1,4,59,56,4,3,3,2,1,0,2,1 -050,01,127,Alabama,Walker County,3,3,4435,2279,2156,2043,1936,166,160,9,6,7,7,0,3,54,44,2093,1978,198,189,28,21,14,13,3,4,2233,2112,2007,1896,160,159,9,5,5,7,0,2,52,43,2056,1937,192,188,27,19,11,13,2,3,46,44,36,40,6,1,0,1,2,0,0,1,2,1,37,41,6,1,1,2,3,0,1,1 -050,01,127,Alabama,Walker County,3,4,4312,2261,2051,2045,1850,170,143,5,11,7,4,1,1,33,42,2072,1889,189,168,22,26,10,12,1,3,2208,2015,1999,1824,168,140,3,7,6,3,0,0,32,41,2025,1862,186,164,20,21,9,10,0,2,53,36,46,26,2,3,2,4,1,1,1,1,1,1,47,27,3,4,2,5,1,2,1,1 -050,01,127,Alabama,Walker County,3,5,3781,1889,1892,1694,1732,153,131,9,4,6,6,6,2,21,17,1714,1747,159,140,19,13,12,8,6,2,1814,1841,1632,1687,151,130,6,4,5,5,2,0,18,15,1649,1701,157,137,15,11,9,7,2,0,75,51,62,45,2,1,3,0,1,1,4,2,3,2,65,46,2,3,4,2,3,1,4,2 -050,01,127,Alabama,Walker County,3,6,3675,1849,1826,1655,1654,145,147,5,7,17,8,9,0,18,10,1672,1661,151,152,17,13,20,11,9,0,1723,1777,1549,1614,141,145,2,1,12,7,3,0,16,10,1564,1621,146,150,13,7,15,10,3,0,126,49,106,40,4,2,3,6,5,1,6,0,2,0,108,40,5,2,4,6,5,1,6,0 -050,01,127,Alabama,Walker County,3,7,3982,1891,2091,1720,1895,130,151,11,5,8,14,8,4,14,22,1733,1916,135,159,23,21,11,17,8,4,1804,2044,1653,1858,126,149,5,3,6,13,2,2,12,19,1664,1876,131,156,15,16,9,15,2,2,87,47,67,37,4,2,6,2,2,1,6,2,2,3,69,40,4,3,8,5,2,2,6,2 -050,01,127,Alabama,Walker County,3,8,4194,2133,2061,1977,1916,112,113,12,5,10,9,6,4,16,14,1992,1930,116,115,22,14,13,12,6,5,2062,2027,1914,1886,112,111,10,4,8,9,3,4,15,13,1928,1899,115,112,20,12,11,12,3,5,71,34,63,30,0,2,2,1,2,0,3,0,1,1,64,31,1,3,2,2,2,0,3,0 -050,01,127,Alabama,Walker County,3,9,4458,2290,2168,2136,2024,115,115,15,8,5,9,0,0,19,12,2152,2035,119,119,31,18,7,9,0,0,2243,2141,2094,1998,113,115,13,8,5,9,0,0,18,11,2110,2008,116,119,29,17,6,9,0,0,47,27,42,26,2,0,2,0,0,0,0,0,1,1,42,27,3,0,2,1,1,0,0,0 -050,01,127,Alabama,Walker County,3,10,4925,2438,2487,2284,2277,119,167,12,13,4,12,2,2,17,16,2299,2293,123,171,26,25,4,13,3,2,2406,2461,2258,2259,118,165,12,13,4,10,0,0,14,14,2271,2273,121,169,24,23,4,10,0,0,32,26,26,18,1,2,0,0,0,2,2,2,3,2,28,20,2,2,2,2,0,3,3,2 -050,01,127,Alabama,Walker County,3,11,4978,2420,2558,2241,2356,133,157,20,19,3,3,0,0,23,23,2264,2377,135,162,40,37,4,5,0,0,2396,2543,2221,2343,132,157,18,18,3,3,0,0,22,22,2243,2364,134,161,37,36,4,4,0,0,24,15,20,13,1,0,2,1,0,0,0,0,1,1,21,13,1,1,3,1,0,1,0,0 -050,01,127,Alabama,Walker County,3,12,4849,2388,2461,2220,2290,126,126,12,17,6,9,0,1,24,18,2242,2306,130,128,33,33,7,11,0,1,2373,2445,2205,2279,126,125,12,17,6,8,0,0,24,16,2227,2294,130,126,33,32,7,9,0,0,15,16,15,11,0,1,0,0,0,1,0,1,0,2,15,12,0,2,0,1,0,2,0,1 -050,01,127,Alabama,Walker County,3,13,4495,2107,2388,1997,2254,80,95,13,8,4,10,2,0,11,21,2008,2272,83,98,21,25,4,12,2,2,2098,2376,1989,2244,80,95,12,8,4,10,2,0,11,19,2000,2261,83,98,20,24,4,11,2,1,9,12,8,10,0,0,1,0,0,0,0,0,0,2,8,11,0,0,1,1,0,1,0,1 -050,01,127,Alabama,Walker County,3,14,3495,1622,1873,1542,1775,65,78,5,5,1,6,0,0,9,9,1551,1781,65,81,13,13,2,9,0,1,1613,1861,1533,1764,65,78,5,5,1,6,0,0,9,8,1542,1769,65,81,13,12,2,8,0,1,9,12,9,11,0,0,0,0,0,0,0,0,0,1,9,12,0,0,0,1,0,1,0,0 -050,01,127,Alabama,Walker County,3,15,2851,1280,1571,1227,1496,36,63,5,0,1,2,0,0,11,10,1236,1506,38,64,15,8,2,3,0,0,1276,1557,1223,1483,36,63,5,0,1,2,0,0,11,9,1232,1492,38,64,15,7,2,3,0,0,4,14,4,13,0,0,0,0,0,0,0,0,0,1,4,14,0,0,0,1,0,0,0,0 -050,01,127,Alabama,Walker County,3,16,2070,903,1167,865,1105,31,52,2,3,0,3,0,0,5,4,870,1109,32,52,6,7,0,3,0,0,894,1160,857,1099,30,51,2,3,0,3,0,0,5,4,862,1103,31,51,6,7,0,3,0,0,9,7,8,6,1,1,0,0,0,0,0,0,0,0,8,6,1,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,3,17,1413,534,879,511,841,15,31,2,4,0,0,0,0,6,3,517,844,15,31,8,5,0,2,0,0,532,876,509,839,15,30,2,4,0,0,0,0,6,3,515,842,15,30,8,5,0,2,0,0,2,3,2,2,0,1,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,3,18,1102,322,780,307,755,13,24,0,0,0,0,0,0,2,1,308,756,14,24,1,1,1,0,0,0,322,778,307,753,13,24,0,0,0,0,0,0,2,1,308,754,14,24,1,1,1,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,4,0,66586,32475,34111,29882,31362,1877,2044,152,136,110,131,41,23,413,415,30271,31749,2065,2254,370,332,149,168,58,34,31676,33529,29209,30873,1842,2021,125,114,96,121,17,10,387,390,29575,31241,2017,2217,330,295,129,157,27,18,799,582,673,489,35,23,27,22,14,10,24,13,26,25,696,508,48,37,40,37,20,11,31,16 -050,01,127,Alabama,Walker County,4,1,3877,1908,1969,1693,1719,133,141,9,8,7,7,4,5,62,89,1753,1805,179,209,23,21,14,16,8,8,1803,1860,1606,1631,128,136,4,1,7,4,3,2,55,86,1659,1715,169,202,13,13,13,13,6,4,105,109,87,88,5,5,5,7,0,3,1,3,7,3,94,90,10,7,10,8,1,3,2,4 -050,01,127,Alabama,Walker County,4,2,4007,2077,1930,1849,1723,146,131,9,9,13,14,4,1,56,52,1902,1770,186,167,22,25,19,18,6,3,2011,1872,1793,1670,143,130,6,9,12,14,2,0,55,49,1845,1716,183,165,18,23,18,18,4,0,66,58,56,53,3,1,3,0,1,0,2,1,1,3,57,54,3,2,4,2,1,0,2,3 -050,01,127,Alabama,Walker County,4,3,4371,2273,2098,2046,1867,156,166,8,6,10,7,0,3,53,49,2096,1912,187,196,23,24,17,13,3,4,2221,2055,2005,1828,150,165,8,5,8,7,0,2,50,48,2052,1872,180,195,23,22,14,13,2,3,52,43,41,39,6,1,0,1,2,0,0,1,3,1,44,40,7,1,0,2,3,0,1,1 -050,01,127,Alabama,Walker County,4,4,4154,2181,1973,1952,1778,174,132,3,13,7,8,0,1,45,41,1993,1818,199,158,24,31,12,10,0,1,2129,1933,1906,1748,172,129,2,9,6,7,0,0,43,40,1945,1787,197,155,22,26,10,9,0,0,52,40,46,30,2,3,1,4,1,1,0,1,2,1,48,31,2,3,2,5,2,1,0,1 -050,01,127,Alabama,Walker County,4,5,3914,1944,1970,1758,1803,147,132,8,3,6,7,4,1,21,24,1778,1823,156,145,23,13,8,11,5,3,1867,1922,1692,1761,145,131,6,3,5,7,1,0,18,20,1710,1778,152,141,19,11,6,11,1,2,77,48,66,42,2,1,2,0,1,0,3,1,3,4,68,45,4,4,4,2,2,0,4,1 -050,01,127,Alabama,Walker County,4,6,3618,1838,1780,1664,1614,133,141,6,6,12,9,8,1,15,9,1676,1623,141,143,15,9,14,12,8,2,1711,1726,1555,1570,128,139,3,1,9,7,3,0,13,9,1565,1579,134,141,12,4,11,10,3,1,127,54,109,44,5,2,3,5,3,2,5,1,2,0,111,44,7,2,3,5,3,2,5,1 -050,01,127,Alabama,Walker County,4,7,3917,1884,2033,1703,1850,131,142,10,7,14,12,10,3,16,19,1719,1866,136,147,19,22,15,13,11,4,1802,1979,1641,1808,128,139,5,4,11,11,3,1,14,16,1655,1821,132,143,14,17,12,12,3,2,82,54,62,42,3,3,5,3,3,1,7,2,2,3,64,45,4,4,5,5,3,1,8,2 -050,01,127,Alabama,Walker County,4,8,3965,1958,2007,1808,1846,111,123,11,5,10,10,6,4,12,19,1819,1864,114,128,18,18,12,11,7,5,1889,1974,1750,1817,110,121,9,4,7,10,2,4,11,18,1761,1834,113,125,16,17,8,11,2,5,69,33,58,29,1,2,2,1,3,0,4,0,1,1,58,30,1,3,2,1,4,0,5,0 -050,01,127,Alabama,Walker County,4,9,4517,2315,2202,2164,2059,110,118,11,7,10,9,1,1,19,8,2183,2067,113,122,28,11,12,9,1,1,2259,2173,2114,2031,106,118,9,7,10,9,1,1,19,7,2133,2038,109,122,26,10,12,9,1,1,56,29,50,28,4,0,2,0,0,0,0,0,0,1,50,29,4,0,2,1,0,0,0,0 -050,01,127,Alabama,Walker County,4,10,4764,2390,2374,2236,2176,118,162,14,10,3,10,1,2,18,14,2253,2189,121,165,31,22,4,10,2,2,2356,2345,2209,2153,116,160,13,10,3,8,0,0,15,14,2223,2166,117,163,28,22,3,8,0,0,34,29,27,23,2,2,1,0,0,2,1,2,3,0,30,23,4,2,3,0,1,2,2,2 -050,01,127,Alabama,Walker County,4,11,4937,2382,2555,2195,2343,140,167,18,19,4,6,1,0,24,20,2216,2363,144,171,39,37,6,6,3,0,2357,2539,2176,2330,139,167,16,18,4,6,0,0,22,18,2196,2348,143,169,35,34,6,6,1,0,25,16,19,13,1,0,2,1,0,0,1,0,2,2,20,15,1,2,4,3,0,0,2,0 -050,01,127,Alabama,Walker County,4,12,4843,2371,2472,2201,2286,126,135,14,19,6,9,0,1,24,22,2223,2306,130,139,34,38,7,10,1,1,2353,2453,2183,2272,126,134,14,19,6,8,0,0,24,20,2205,2291,130,137,34,37,7,8,1,0,18,19,18,14,0,1,0,0,0,1,0,1,0,2,18,15,0,2,0,1,0,2,0,1 -050,01,127,Alabama,Walker County,4,13,4639,2202,2437,2081,2295,86,99,15,10,5,11,2,0,13,22,2093,2315,87,104,27,28,6,12,2,0,2193,2427,2072,2287,86,99,15,10,5,11,2,0,13,20,2084,2306,87,102,27,27,6,12,2,0,9,10,9,8,0,0,0,0,0,0,0,0,0,2,9,9,0,2,0,1,0,0,0,0 -050,01,127,Alabama,Walker County,4,14,3531,1639,1892,1557,1790,63,80,7,7,2,6,0,0,10,9,1567,1798,65,81,15,15,2,7,0,0,1629,1881,1548,1780,63,80,6,7,2,6,0,0,10,8,1558,1787,65,81,14,14,2,7,0,0,10,11,9,10,0,0,1,0,0,0,0,0,0,1,9,11,0,0,1,1,0,0,0,0 -050,01,127,Alabama,Walker County,4,15,2868,1290,1578,1230,1501,45,64,4,0,1,3,0,0,10,10,1240,1511,46,67,13,6,1,4,0,0,1284,1563,1224,1487,45,64,4,0,1,3,0,0,10,9,1234,1496,46,66,13,6,1,4,0,0,6,15,6,14,0,0,0,0,0,0,0,0,0,1,6,15,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,4,16,2170,937,1233,899,1165,28,58,3,2,0,3,0,0,7,5,906,1169,29,59,8,6,0,4,1,0,929,1225,891,1158,28,57,3,2,0,3,0,0,7,5,898,1162,29,58,8,6,0,4,1,0,8,8,8,7,0,1,0,0,0,0,0,0,0,0,8,7,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,4,17,1415,552,863,528,825,16,31,2,4,0,0,0,0,6,3,534,828,17,31,7,5,0,2,0,0,550,860,527,823,15,30,2,4,0,0,0,0,6,3,533,826,16,30,7,5,0,2,0,0,2,3,1,2,1,1,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,4,18,1079,334,745,318,722,14,22,0,1,0,0,0,0,2,0,320,722,15,22,1,1,0,0,0,0,333,742,317,719,14,22,0,1,0,0,0,0,2,0,319,719,15,22,1,1,0,0,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,5,0,66110,32244,33866,29600,31068,1888,2067,153,132,118,145,43,23,442,431,30016,31465,2093,2296,384,330,165,192,53,38,31466,33263,28947,30560,1853,2044,126,111,105,136,19,10,416,402,29339,30934,2046,2261,345,291,146,175,26,23,778,603,653,508,35,23,27,21,13,9,24,13,26,29,677,531,47,35,39,39,19,17,27,15 -050,01,127,Alabama,Walker County,5,1,3912,1932,1980,1700,1718,137,150,5,7,6,9,3,4,81,92,1776,1807,201,220,21,24,16,18,6,6,1835,1865,1616,1622,132,146,1,2,6,6,3,1,77,88,1689,1707,193,214,16,18,15,14,6,3,97,115,84,96,5,4,4,5,0,3,0,3,4,4,87,100,8,6,5,6,1,4,0,3 -050,01,127,Alabama,Walker County,5,2,3955,2071,1884,1829,1684,146,127,11,7,12,13,6,2,67,51,1891,1732,190,163,28,20,20,18,10,4,2002,1824,1774,1630,143,125,7,6,12,13,3,1,63,49,1833,1677,186,160,22,17,19,18,5,2,69,60,55,54,3,2,4,1,0,0,3,1,4,2,58,55,4,3,6,3,1,0,5,2 -050,01,127,Alabama,Walker County,5,3,4240,2195,2045,1965,1804,161,166,6,7,17,8,0,2,46,58,2008,1858,191,201,23,28,23,11,0,5,2138,1996,1918,1761,155,165,6,6,15,8,0,1,44,55,1959,1812,184,200,23,24,20,11,0,4,57,49,47,43,6,1,0,1,2,0,0,1,2,3,49,46,7,1,0,4,3,0,0,1 -050,01,127,Alabama,Walker County,5,4,4148,2165,1983,1937,1778,169,134,6,12,7,14,0,1,46,44,1981,1818,195,162,26,31,12,19,0,1,2110,1944,1888,1745,167,132,6,9,5,14,0,1,44,43,1930,1785,192,160,25,27,9,18,0,1,55,39,49,33,2,2,0,3,2,0,0,0,2,1,51,33,3,2,1,4,3,1,0,0 -050,01,127,Alabama,Walker County,5,5,4034,2004,2030,1798,1842,166,142,6,3,7,12,3,2,24,29,1821,1868,178,158,18,13,8,19,3,3,1928,1987,1733,1811,164,140,4,2,6,11,1,0,20,23,1752,1832,173,151,15,9,7,17,1,1,76,43,65,31,2,2,2,1,1,1,2,2,4,6,69,36,5,7,3,4,1,2,2,2 -050,01,127,Alabama,Walker County,5,6,3641,1843,1798,1673,1634,133,143,5,6,7,7,9,1,16,7,1686,1640,139,147,15,10,10,8,9,1,1737,1750,1583,1594,128,141,2,3,5,5,4,0,15,7,1595,1600,133,145,12,7,8,6,4,0,106,48,90,40,5,2,3,3,2,2,5,1,1,0,91,40,6,2,3,3,2,2,5,1 -050,01,127,Alabama,Walker County,5,7,3786,1837,1949,1666,1768,127,146,10,8,11,7,9,2,14,18,1679,1785,130,154,21,16,12,10,9,3,1762,1893,1610,1721,125,144,5,4,8,7,2,1,12,16,1621,1736,127,150,15,11,9,10,2,2,75,56,56,47,2,2,5,4,3,0,7,1,2,2,58,49,3,4,6,5,3,0,7,1 -050,01,127,Alabama,Walker County,5,8,3833,1852,1981,1698,1821,110,118,9,5,12,11,7,4,16,22,1714,1843,115,125,22,18,14,15,8,4,1791,1937,1650,1785,108,115,7,3,9,11,3,3,14,20,1664,1805,112,122,18,15,10,14,3,3,61,44,48,36,2,3,2,2,3,0,4,1,2,2,50,38,3,3,4,3,4,1,5,1 -050,01,127,Alabama,Walker County,5,9,4451,2281,2170,2134,2019,101,121,13,8,15,13,2,2,16,7,2148,2026,103,123,25,11,19,13,2,4,2220,2144,2080,1993,98,121,10,8,15,13,1,2,16,7,2094,2000,100,123,22,11,19,13,1,4,61,26,54,26,3,0,3,0,0,0,1,0,0,0,54,26,3,0,3,0,0,0,1,0 -050,01,127,Alabama,Walker County,5,10,4566,2300,2266,2154,2087,112,147,12,6,3,10,1,1,18,15,2172,2101,114,149,28,21,4,10,1,1,2261,2236,2122,2062,110,146,11,6,3,8,0,0,15,14,2137,2075,112,148,24,20,4,8,0,0,39,30,32,25,2,1,1,0,0,2,1,1,3,1,35,26,2,1,4,1,0,2,1,1 -050,01,127,Alabama,Walker County,5,11,4910,2375,2535,2193,2311,137,177,19,21,4,8,1,1,21,17,2214,2324,138,181,37,36,6,9,1,2,2351,2516,2174,2297,136,176,17,20,4,8,0,0,20,15,2194,2309,137,179,34,34,6,9,0,0,24,19,19,14,1,1,2,1,0,0,1,1,1,2,20,15,1,2,3,2,0,0,1,2 -050,01,127,Alabama,Walker County,5,12,4836,2352,2484,2174,2292,131,141,16,20,5,8,0,1,26,22,2199,2312,135,145,39,37,8,12,0,3,2332,2464,2156,2276,130,140,16,20,5,8,0,0,25,20,2180,2295,134,144,39,36,7,10,0,2,20,20,18,16,1,1,0,0,0,0,0,1,1,2,19,17,1,1,0,1,1,2,0,1 -050,01,127,Alabama,Walker County,5,13,4478,2140,2338,2020,2197,83,99,15,10,7,11,1,0,14,21,2034,2214,84,105,28,29,7,12,2,0,2129,2327,2009,2189,83,99,15,10,7,10,1,0,14,19,2023,2204,84,105,28,28,7,10,2,0,11,11,11,8,0,0,0,0,0,1,0,0,0,2,11,10,0,0,0,1,0,2,0,0 -050,01,127,Alabama,Walker County,5,14,3749,1745,2004,1657,1904,66,78,9,8,3,7,1,0,9,7,1665,1909,67,81,16,14,4,7,2,0,1737,1995,1650,1895,66,78,8,8,3,7,1,0,9,7,1658,1900,67,81,15,14,4,7,2,0,8,9,7,9,0,0,1,0,0,0,0,0,0,0,7,9,0,0,1,0,0,0,0,0 -050,01,127,Alabama,Walker County,5,15,2920,1321,1599,1251,1513,53,70,5,0,2,4,0,0,10,12,1261,1524,54,72,14,11,2,5,0,0,1314,1581,1244,1497,53,70,5,0,2,4,0,0,10,10,1254,1507,54,71,14,9,2,4,0,0,7,18,7,16,0,0,0,0,0,0,0,0,0,2,7,17,0,1,0,2,0,1,0,0 -050,01,127,Alabama,Walker County,5,16,2189,947,1242,906,1178,28,55,3,2,0,2,0,0,10,5,916,1182,29,57,12,7,0,3,0,0,940,1232,899,1169,28,54,3,2,0,2,0,0,10,5,909,1173,29,56,12,7,0,3,0,0,7,10,7,9,0,1,0,0,0,0,0,0,0,0,7,9,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,5,17,1385,548,837,523,798,17,32,2,2,0,1,0,0,6,4,528,802,18,32,8,4,0,3,0,1,545,834,521,796,16,31,2,2,0,1,0,0,6,4,526,800,17,31,8,4,0,3,0,1,3,3,2,2,1,1,0,0,0,0,0,0,0,0,2,2,1,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,5,18,1077,336,741,322,720,11,21,1,0,0,0,0,0,2,0,323,720,12,21,3,0,0,0,0,0,334,738,320,717,11,21,1,0,0,0,0,0,2,0,321,717,12,21,3,0,0,0,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,6,0,65790,32106,33684,29439,30844,1890,2084,162,145,128,143,42,23,445,445,29855,31257,2102,2324,380,343,172,185,59,40,31308,33074,28764,30342,1859,2058,132,122,116,136,18,10,419,406,29157,30723,2058,2281,336,297,157,171,30,20,798,610,675,502,31,26,30,23,12,7,24,13,26,39,698,534,44,43,44,46,15,14,29,20 -050,01,127,Alabama,Walker County,6,1,3919,1979,1940,1758,1678,123,141,5,10,5,8,2,3,86,100,1840,1771,190,219,21,29,16,17,3,5,1884,1831,1671,1588,122,137,2,4,5,6,2,1,82,95,1750,1678,185,214,16,20,16,14,3,1,95,109,87,90,1,4,3,6,0,2,0,2,4,5,90,93,5,5,5,9,0,3,0,4 -050,01,127,Alabama,Walker County,6,2,3894,2004,1890,1758,1675,150,133,11,9,12,13,7,3,66,57,1823,1730,195,176,27,22,15,16,11,5,1924,1822,1694,1620,146,129,7,8,12,12,4,1,61,52,1754,1670,189,169,22,19,15,15,6,2,80,68,64,55,4,4,4,1,0,1,3,2,5,5,69,60,6,7,5,3,0,1,5,3 -050,01,127,Alabama,Walker County,6,3,4182,2199,1983,1963,1755,166,155,7,6,25,8,0,2,38,57,1997,1810,191,192,20,27,28,14,1,2,2135,1932,1909,1711,160,154,6,5,23,8,0,1,37,53,1943,1762,184,188,18,24,26,12,1,1,64,51,54,44,6,1,1,1,2,0,0,1,1,4,54,48,7,4,2,3,2,2,0,1 -050,01,127,Alabama,Walker County,6,4,4074,2068,2006,1852,1784,155,155,7,11,5,12,0,1,49,43,1899,1824,182,185,28,27,6,15,2,2,2023,1962,1813,1745,153,153,7,9,3,12,0,1,47,42,1858,1784,180,182,26,25,4,14,2,2,45,44,39,39,2,2,0,2,2,0,0,0,2,1,41,40,2,3,2,2,2,1,0,0 -050,01,127,Alabama,Walker County,6,5,4086,2071,2015,1862,1816,170,142,7,11,5,13,2,2,25,31,1883,1845,183,157,22,27,7,18,4,4,1988,1965,1785,1780,170,140,5,8,5,13,1,0,22,24,1803,1802,183,151,18,20,6,17,2,1,83,50,77,36,0,2,2,3,0,0,1,2,3,7,80,43,0,6,4,7,1,1,2,3 -050,01,127,Alabama,Walker County,6,6,3701,1832,1869,1653,1692,135,150,10,5,10,10,9,1,15,11,1667,1701,140,156,16,11,15,11,9,2,1741,1819,1584,1647,129,147,4,5,7,9,4,0,13,11,1596,1656,132,153,10,11,12,10,4,1,91,50,69,45,6,3,6,0,3,1,5,1,2,0,71,45,8,3,6,0,3,1,5,1 -050,01,127,Alabama,Walker County,6,7,3766,1867,1899,1692,1736,131,135,8,10,10,4,8,0,18,14,1708,1749,136,140,19,18,14,5,8,1,1774,1855,1615,1702,129,133,4,4,8,4,2,0,16,12,1629,1713,133,137,14,11,12,5,2,1,93,44,77,34,2,2,4,6,2,0,6,0,2,2,79,36,3,3,5,7,2,0,6,0 -050,01,127,Alabama,Walker County,6,8,3757,1781,1976,1627,1804,115,131,11,6,10,9,5,4,13,22,1640,1824,117,135,19,22,13,12,6,5,1720,1925,1578,1762,113,129,8,3,8,9,1,2,12,20,1590,1780,114,133,16,17,11,12,2,3,61,51,49,42,2,2,3,3,2,0,4,2,1,2,50,44,3,2,3,5,2,0,4,2 -050,01,127,Alabama,Walker County,6,9,4410,2286,2124,2121,1966,108,123,11,8,23,11,5,4,18,12,2137,1976,112,125,26,17,25,13,5,5,2214,2095,2059,1941,105,122,9,8,22,11,2,4,17,9,2074,1949,108,124,23,14,24,13,2,4,72,29,62,25,3,1,2,0,1,0,3,0,1,3,63,27,4,1,3,3,1,0,3,1 -050,01,127,Alabama,Walker County,6,10,4434,2209,2225,2077,2051,95,142,15,6,3,11,1,0,18,15,2091,2065,99,146,29,17,7,12,3,1,2173,2198,2048,2027,93,141,13,6,3,10,0,0,16,14,2060,2040,97,145,25,16,6,11,1,1,36,27,29,24,2,1,2,0,0,1,1,0,2,1,31,25,2,1,4,1,1,1,2,0 -050,01,127,Alabama,Walker County,6,11,4842,2359,2483,2177,2268,139,171,16,16,4,12,1,2,22,14,2198,2281,143,173,34,27,5,14,2,2,2341,2462,2164,2253,138,170,15,16,4,11,0,0,20,12,2184,2265,141,171,32,26,4,12,0,0,18,21,13,15,1,1,1,0,0,1,1,2,2,2,14,16,2,2,2,1,1,2,2,2 -050,01,127,Alabama,Walker County,6,12,4793,2311,2482,2148,2289,120,143,18,20,4,7,0,1,21,22,2168,2309,123,149,36,37,5,7,2,3,2288,2468,2128,2280,119,142,17,19,4,7,0,0,20,20,2147,2298,122,147,34,35,5,7,2,2,23,14,20,9,1,1,1,1,0,0,0,1,1,2,21,11,1,2,2,2,0,0,0,1 -050,01,127,Alabama,Walker County,6,13,4410,2127,2283,1990,2132,100,111,14,15,6,8,1,0,16,17,2005,2146,102,115,29,28,6,10,1,1,2119,2272,1982,2125,100,111,14,15,6,7,1,0,16,14,1997,2139,102,113,29,26,6,8,1,0,8,11,8,7,0,0,0,0,0,1,0,0,0,3,8,7,0,2,0,2,0,2,0,1 -050,01,127,Alabama,Walker County,6,14,3875,1794,2081,1697,1979,72,78,10,7,4,9,1,0,10,8,1707,1987,74,78,18,13,4,11,1,0,1785,2073,1689,1971,72,78,9,7,4,9,1,0,10,8,1699,1979,74,78,17,13,4,11,1,0,9,8,8,8,0,0,1,0,0,0,0,0,0,0,8,8,0,0,1,0,0,0,0,0 -050,01,127,Alabama,Walker County,6,15,2980,1352,1628,1278,1547,58,65,4,1,1,4,0,0,11,11,1288,1557,59,67,13,8,3,5,0,2,1345,1613,1271,1534,58,65,4,1,1,4,0,0,11,9,1281,1542,59,67,13,7,3,5,0,1,7,15,7,13,0,0,0,0,0,0,0,0,0,2,7,15,0,0,0,1,0,0,0,1 -050,01,127,Alabama,Walker County,6,16,2226,986,1240,943,1174,28,57,4,1,1,2,0,0,10,6,952,1179,31,58,11,7,2,2,0,0,981,1227,938,1162,28,56,4,1,1,2,0,0,10,6,947,1167,31,57,11,7,2,2,0,0,5,13,5,12,0,1,0,0,0,0,0,0,0,0,5,12,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,6,17,1375,561,814,534,774,19,31,2,2,0,2,0,0,6,5,540,779,19,32,8,5,0,3,0,0,555,812,529,773,18,30,2,2,0,2,0,0,6,5,535,778,18,31,8,5,0,3,0,0,6,2,5,1,1,1,0,0,0,0,0,0,0,0,5,1,1,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,6,18,1066,320,746,309,724,6,21,2,1,0,0,0,0,3,0,312,724,6,21,4,1,1,0,1,0,318,743,307,721,6,21,2,1,0,0,0,0,3,0,310,721,6,21,4,1,1,0,1,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,7,0,65354,31854,33500,29161,30600,1887,2105,163,153,140,164,41,23,462,455,29606,31018,2114,2353,386,345,183,225,50,43,31073,32873,28512,30091,1854,2074,132,130,125,155,17,10,433,413,28929,30477,2064,2304,343,296,162,203,25,22,781,627,649,509,33,31,31,23,15,9,24,13,29,42,677,541,50,49,43,49,21,22,25,21 -050,01,127,Alabama,Walker County,7,1,3961,1989,1972,1768,1692,113,149,4,9,5,9,1,0,98,113,1863,1801,187,234,22,26,15,24,2,2,1895,1857,1680,1593,113,144,2,4,3,7,1,0,96,109,1773,1698,186,229,19,19,13,19,2,2,94,115,88,99,0,5,2,5,2,2,0,0,2,4,90,103,1,5,3,7,2,5,0,0 -050,01,127,Alabama,Walker County,7,2,3830,1945,1885,1708,1656,139,141,10,7,13,14,5,6,70,61,1776,1713,190,186,28,21,18,18,8,8,1864,1806,1646,1597,134,136,6,5,13,11,3,2,62,55,1706,1649,180,178,21,17,16,13,5,4,81,79,62,59,5,5,4,2,0,3,2,4,8,6,70,64,10,8,7,4,2,5,3,4 -050,01,127,Alabama,Walker County,7,3,4150,2194,1956,1938,1730,171,146,8,11,35,12,3,2,39,55,1976,1781,194,183,20,31,42,17,3,2,2117,1909,1875,1690,166,145,5,10,33,12,2,1,36,51,1911,1738,188,179,15,28,38,17,2,1,77,47,63,40,5,1,3,1,2,0,1,1,3,4,65,43,6,4,5,3,4,0,1,1 -050,01,127,Alabama,Walker County,7,4,4034,2038,1996,1819,1768,157,165,12,7,4,13,0,1,46,42,1862,1806,188,191,30,23,9,16,0,6,1996,1940,1785,1720,152,162,12,6,3,13,0,1,44,38,1826,1754,181,186,30,19,7,16,0,5,42,56,34,48,5,3,0,1,1,0,0,0,2,4,36,52,7,5,0,4,2,0,0,1 -050,01,127,Alabama,Walker County,7,5,4079,2089,1990,1871,1783,174,142,6,13,7,18,1,2,30,32,1899,1810,189,158,22,29,9,27,1,5,2002,1935,1789,1744,174,139,4,9,6,18,0,0,29,25,1816,1767,188,152,20,20,8,23,0,1,87,55,82,39,0,3,2,4,1,0,1,2,1,7,83,43,1,6,2,9,1,4,1,4 -050,01,127,Alabama,Walker County,7,6,3707,1824,1883,1638,1714,144,131,10,8,10,13,7,1,15,16,1653,1728,148,138,19,16,13,18,8,2,1765,1847,1601,1681,138,129,4,8,8,13,3,0,11,16,1612,1695,141,136,11,16,10,18,4,1,59,36,37,33,6,2,6,0,2,0,4,1,4,0,41,33,7,2,8,0,3,0,4,1 -050,01,127,Alabama,Walker County,7,7,3625,1805,1820,1635,1648,127,147,7,8,12,7,8,0,16,10,1651,1658,132,151,15,13,14,10,9,0,1713,1783,1558,1621,125,145,4,2,9,6,2,0,15,9,1573,1630,129,149,12,6,11,8,3,0,92,37,77,27,2,2,3,6,3,1,6,0,1,1,78,28,3,2,3,7,3,2,6,0 -050,01,127,Alabama,Walker County,7,8,3791,1786,2005,1625,1834,121,135,11,5,8,9,7,4,14,18,1639,1850,124,139,21,17,10,12,8,6,1726,1948,1580,1786,119,133,7,3,6,9,2,2,12,15,1592,1800,121,135,16,14,8,11,3,3,60,57,45,48,2,2,4,2,2,0,5,2,2,3,47,50,3,4,5,3,2,1,5,3 -050,01,127,Alabama,Walker County,7,9,4205,2159,2046,1999,1876,105,133,12,7,22,10,5,4,16,16,2015,1890,109,137,23,19,23,11,6,6,2084,2018,1934,1854,103,131,10,6,20,10,2,4,15,13,1949,1866,106,135,21,15,21,11,3,5,75,28,65,22,2,2,2,1,2,0,3,0,1,3,66,24,3,2,2,4,2,0,3,1 -050,01,127,Alabama,Walker County,7,10,4303,2202,2101,2073,1955,100,120,12,9,2,12,0,0,15,5,2088,1959,102,121,26,14,2,12,0,0,2171,2073,2047,1929,98,119,10,9,2,12,0,0,14,4,2061,1932,99,120,24,13,2,12,0,0,31,28,26,26,2,1,2,0,0,0,0,0,1,1,27,27,3,1,2,1,0,0,0,0 -050,01,127,Alabama,Walker County,7,11,4748,2294,2454,2135,2244,115,172,15,13,5,13,2,2,22,10,2156,2253,119,174,32,22,7,13,2,2,2268,2432,2116,2230,113,170,15,13,5,11,0,0,19,8,2134,2238,116,171,30,20,7,11,0,0,26,22,19,14,2,2,0,0,0,2,2,2,3,2,22,15,3,3,2,2,0,2,2,2 -050,01,127,Alabama,Walker County,7,12,4803,2289,2514,2117,2311,130,146,19,23,3,9,0,0,20,25,2134,2335,135,149,35,45,5,12,1,0,2270,2500,2102,2301,129,145,17,22,3,9,0,0,19,23,2118,2323,133,147,32,42,5,12,1,0,19,14,15,10,1,1,2,1,0,0,0,0,1,2,16,12,2,2,3,3,0,0,0,0 -050,01,127,Alabama,Walker County,7,13,4417,2160,2257,2019,2099,102,117,13,19,7,6,0,1,19,15,2038,2111,102,122,31,30,8,8,0,2,2153,2248,2012,2094,102,117,13,19,7,5,0,0,19,13,2031,2105,102,121,31,29,8,7,0,0,7,9,7,5,0,0,0,0,0,1,0,1,0,2,7,6,0,1,0,1,0,1,0,2 -050,01,127,Alabama,Walker County,7,14,3965,1812,2153,1709,2035,75,88,11,6,5,9,2,0,10,15,1718,2050,78,92,19,17,5,11,2,1,1802,2144,1700,2027,75,88,10,6,5,9,2,0,10,14,1709,2041,78,91,18,16,5,10,2,0,10,9,9,8,0,0,1,0,0,0,0,0,0,1,9,9,0,1,1,1,0,1,0,1 -050,01,127,Alabama,Walker County,7,15,2992,1359,1633,1284,1554,58,59,5,4,1,5,0,0,11,11,1295,1563,58,62,16,10,1,8,0,1,1352,1616,1277,1539,58,59,5,4,1,5,0,0,11,9,1288,1547,58,61,16,10,1,7,0,0,7,17,7,15,0,0,0,0,0,0,0,0,0,2,7,16,0,1,0,0,0,1,0,1 -050,01,127,Alabama,Walker County,7,16,2280,980,1300,936,1227,29,64,4,1,1,3,0,0,10,5,945,1231,31,65,13,5,1,4,0,0,975,1289,931,1216,29,64,4,1,1,3,0,0,10,5,940,1220,31,65,13,5,1,4,0,0,5,11,5,11,0,0,0,0,0,0,0,0,0,0,5,11,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,7,17,1375,590,785,563,745,19,30,2,2,0,2,0,0,6,6,569,750,19,31,8,6,0,4,0,0,583,781,557,743,18,28,2,2,0,2,0,0,6,6,563,748,18,29,8,6,0,4,0,0,7,4,6,2,1,2,0,0,0,0,0,0,0,0,6,2,1,2,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,7,18,1089,339,750,324,729,8,20,2,1,0,0,0,0,5,0,329,729,9,20,6,1,1,0,0,0,337,747,322,726,8,20,2,1,0,0,0,0,5,0,327,726,9,20,6,1,1,0,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,8,0,64950,31641,33309,28942,30389,1844,2081,173,147,161,174,43,24,478,494,29385,30855,2094,2359,397,354,209,219,56,40,30820,32640,28281,29854,1810,2051,132,121,132,159,17,10,448,445,28700,30276,2038,2302,343,300,178,198,25,21,821,669,661,535,34,30,41,26,29,15,26,14,30,49,685,579,56,57,54,54,31,21,31,19 -050,01,127,Alabama,Walker County,8,1,3961,1993,1968,1751,1678,111,137,9,11,19,14,0,0,103,128,1848,1804,190,233,29,35,29,28,3,2,1870,1825,1655,1561,111,134,1,4,1,7,0,0,102,119,1752,1679,189,225,21,24,11,20,2,1,123,143,96,117,0,3,8,7,18,7,0,0,1,9,96,125,1,8,8,11,18,8,1,1 -050,01,127,Alabama,Walker County,8,2,3875,1925,1950,1705,1706,130,148,12,7,7,14,7,5,64,70,1765,1773,179,199,26,22,16,20,9,6,1836,1872,1637,1648,126,143,6,4,7,11,4,2,56,64,1690,1710,168,189,18,18,15,16,4,3,89,78,68,58,4,5,6,3,0,3,3,3,8,6,75,63,11,10,8,4,1,4,5,3 -050,01,127,Alabama,Walker County,8,3,4012,2106,1906,1840,1669,159,152,9,12,46,12,4,1,48,60,1887,1724,190,195,21,32,51,17,6,3,2033,1853,1782,1625,156,150,4,11,45,12,2,0,44,55,1825,1675,185,189,15,28,50,17,3,2,73,53,58,44,3,2,5,1,1,0,2,1,4,5,62,49,5,6,6,4,1,0,3,1 -050,01,127,Alabama,Walker County,8,4,4007,2067,1940,1849,1722,153,155,11,6,6,12,0,3,48,42,1893,1761,185,180,31,23,10,15,1,7,2016,1884,1811,1673,145,154,11,5,4,12,0,2,45,38,1852,1709,174,176,29,19,8,14,1,4,51,56,38,49,8,1,0,1,2,0,0,1,3,4,41,52,11,4,2,4,2,1,0,3 -050,01,127,Alabama,Walker County,8,5,3864,1991,1873,1784,1659,166,135,5,16,6,24,1,1,29,38,1810,1695,183,156,17,31,9,29,1,1,1913,1830,1711,1632,166,130,3,12,5,24,0,0,28,32,1736,1662,182,148,15,24,8,28,0,0,78,43,73,27,0,5,2,4,1,0,1,1,1,6,74,33,1,8,2,7,1,1,1,1 -050,01,127,Alabama,Walker County,8,6,3911,1946,1965,1762,1803,144,124,14,7,4,10,5,2,17,19,1777,1820,152,134,23,17,6,13,6,3,1884,1923,1720,1768,136,122,9,7,3,9,2,0,14,17,1732,1783,143,131,16,16,5,12,3,1,62,42,42,35,8,2,5,0,1,1,3,2,3,2,45,37,9,3,7,1,1,1,3,2 -050,01,127,Alabama,Walker County,8,7,3499,1738,1761,1568,1582,123,150,5,9,15,8,9,1,18,11,1584,1591,126,155,19,16,17,9,10,1,1656,1714,1499,1545,123,148,3,3,12,7,3,0,16,11,1513,1554,126,153,15,10,14,8,4,0,82,47,69,37,0,2,2,6,3,1,6,1,2,0,71,37,0,2,4,6,3,1,6,1 -050,01,127,Alabama,Walker County,8,8,3788,1773,2015,1608,1844,125,136,11,6,9,9,7,4,13,16,1620,1859,130,143,19,19,10,10,8,5,1711,1967,1566,1805,121,134,5,4,7,9,1,2,11,13,1577,1817,124,139,12,14,8,9,2,2,62,48,42,39,4,2,6,2,2,0,6,2,2,3,43,42,6,4,7,5,2,1,6,3 -050,01,127,Alabama,Walker County,8,9,4077,2090,1987,1930,1825,109,125,11,5,19,11,6,4,15,17,1944,1840,112,133,23,16,20,11,6,4,2015,1953,1864,1798,107,123,9,4,18,11,3,4,14,13,1878,1809,109,129,20,13,19,11,3,4,75,34,66,27,2,2,2,1,1,0,3,0,1,4,66,31,3,4,3,3,1,0,3,0 -050,01,127,Alabama,Walker County,8,10,4290,2191,2099,2055,1959,99,116,14,7,6,10,0,0,17,7,2072,1965,104,117,26,14,7,10,0,0,2149,2072,2018,1933,97,116,12,7,6,10,0,0,16,6,2034,1938,101,117,24,13,7,10,0,0,42,27,37,26,2,0,2,0,0,0,0,0,1,1,38,27,3,0,2,1,0,0,0,0 -050,01,127,Alabama,Walker County,8,11,4640,2248,2392,2116,2183,97,170,12,14,3,14,2,2,18,9,2131,2192,103,170,24,21,6,15,3,3,2218,2367,2093,2167,95,167,12,14,3,12,0,0,15,7,2107,2174,98,167,23,19,5,13,0,1,30,25,23,16,2,3,0,0,0,2,2,2,3,2,24,18,5,3,1,2,1,2,3,2 -050,01,127,Alabama,Walker County,8,12,4692,2230,2462,2052,2265,135,151,17,17,5,8,0,0,21,21,2072,2284,137,153,35,34,6,11,1,1,2214,2446,2040,2252,134,151,15,16,5,8,0,0,20,19,2059,2270,136,153,32,31,6,10,1,1,16,16,12,13,1,0,2,1,0,0,0,0,1,2,13,14,1,0,3,3,0,1,0,0 -050,01,127,Alabama,Walker County,8,13,4501,2197,2304,2040,2136,111,123,16,19,9,6,0,1,21,19,2060,2154,112,127,35,32,11,7,0,3,2188,2295,2031,2131,111,122,16,19,9,5,0,0,21,18,2051,2148,112,125,35,32,11,6,0,2,9,9,9,5,0,1,0,0,0,1,0,1,0,1,9,6,0,2,0,0,0,1,0,1 -050,01,127,Alabama,Walker County,8,14,4014,1841,2173,1735,2050,75,91,12,6,4,12,2,0,13,14,1747,2064,76,92,25,18,4,13,2,0,1832,2162,1727,2041,75,91,11,6,4,12,2,0,13,12,1739,2053,76,92,24,16,4,13,2,0,9,11,8,9,0,0,1,0,0,0,0,0,0,2,8,11,0,0,1,2,0,0,0,0 -050,01,127,Alabama,Walker County,8,15,3034,1371,1663,1297,1589,57,58,6,2,2,5,0,0,9,9,1303,1598,61,59,14,9,3,5,0,1,1364,1647,1290,1574,57,58,6,2,2,5,0,0,9,8,1296,1582,61,59,14,9,3,5,0,0,7,16,7,15,0,0,0,0,0,0,0,0,0,1,7,16,0,0,0,0,0,0,0,1 -050,01,127,Alabama,Walker County,8,16,2283,987,1296,942,1232,27,53,5,0,1,2,0,0,12,9,954,1239,28,56,16,8,1,2,0,0,983,1285,938,1222,27,53,5,0,1,2,0,0,12,8,950,1229,28,55,16,7,1,2,0,0,4,11,4,10,0,0,0,0,0,0,0,0,0,1,4,10,0,1,0,1,0,0,0,0 -050,01,127,Alabama,Walker County,8,17,1433,596,837,577,788,13,38,2,3,0,3,0,0,4,5,580,793,14,38,5,7,1,4,0,0,588,831,569,783,13,37,2,3,0,3,0,0,4,5,572,788,14,37,5,7,1,4,0,0,8,6,8,5,0,1,0,0,0,0,0,0,0,0,8,5,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,8,18,1069,351,718,331,699,10,19,2,0,0,0,0,0,8,0,338,699,12,19,9,0,2,0,0,0,350,714,330,696,10,18,2,0,0,0,0,0,8,0,337,696,12,18,9,0,2,0,0,0,1,4,1,3,0,1,0,0,0,0,0,0,0,0,1,3,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,9,0,64559,31549,33010,28772,30062,1871,2105,186,159,161,173,44,25,515,486,29263,30512,2126,2377,420,357,216,230,63,42,30693,32332,28081,29523,1835,2074,141,129,134,158,17,11,485,437,28544,29932,2076,2325,361,302,184,204,33,23,856,678,691,539,36,31,45,30,27,15,27,14,30,49,719,580,50,52,59,55,32,26,30,19 -050,01,127,Alabama,Walker County,9,1,3926,1995,1931,1756,1663,105,135,18,10,16,16,0,0,100,107,1854,1765,184,219,35,30,25,26,2,1,1873,1791,1663,1548,104,132,5,2,1,9,0,0,100,100,1761,1643,183,213,22,18,10,18,2,1,122,140,93,115,1,3,13,8,15,7,0,0,0,7,93,122,1,6,13,12,15,8,0,0 -050,01,127,Alabama,Walker County,9,2,3954,1968,1986,1720,1724,146,153,12,14,6,14,7,5,77,76,1797,1796,200,209,30,31,14,21,8,8,1865,1894,1641,1657,142,147,6,8,5,11,4,2,67,69,1708,1723,190,199,20,23,12,17,5,4,103,92,79,67,4,6,6,6,1,3,3,3,10,7,89,73,10,10,10,8,2,4,3,4 -050,01,127,Alabama,Walker County,9,3,3949,2083,1866,1815,1647,148,148,11,9,44,13,5,1,60,48,1874,1694,186,178,29,25,49,17,5,1,2010,1807,1757,1597,145,146,6,8,43,13,2,0,57,43,1813,1639,181,174,23,21,48,17,2,0,73,59,58,50,3,2,5,1,1,0,3,1,3,5,61,55,5,4,6,4,1,0,3,1 -050,01,127,Alabama,Walker County,9,4,3971,2083,1888,1860,1655,154,162,9,6,10,8,0,3,50,54,1908,1703,183,196,30,24,14,16,2,5,2011,1835,1799,1610,147,161,9,5,8,8,0,2,48,49,1845,1655,176,192,28,21,12,15,2,3,72,53,61,45,7,1,0,1,2,0,0,1,2,5,63,48,7,4,2,3,2,1,0,2 -050,01,127,Alabama,Walker County,9,5,3699,1933,1766,1705,1545,180,146,6,17,6,24,0,1,36,33,1738,1577,198,163,22,30,10,28,1,2,1865,1725,1643,1517,178,141,5,13,5,24,0,0,34,30,1674,1546,195,157,21,25,8,27,1,1,68,41,62,28,2,5,1,4,1,0,0,1,2,3,64,31,3,6,1,5,2,1,0,1 -050,01,127,Alabama,Walker County,9,6,4078,2044,2034,1847,1870,157,122,10,6,6,11,4,1,20,24,1865,1892,165,134,20,15,11,16,5,3,1974,1991,1796,1834,150,122,5,6,5,10,1,0,17,19,1811,1851,158,132,14,13,8,13,2,1,70,43,51,36,7,0,5,0,1,1,3,1,3,5,54,41,7,2,6,2,3,3,3,2 -050,01,127,Alabama,Walker County,9,7,3426,1691,1735,1537,1560,115,146,7,9,7,6,8,2,17,12,1552,1571,119,151,17,16,11,8,9,3,1615,1697,1474,1532,114,143,4,4,5,5,3,1,15,12,1487,1543,118,148,12,11,9,7,4,2,76,38,63,28,1,3,3,5,2,1,5,1,2,0,65,28,1,3,5,5,2,1,5,1 -050,01,127,Alabama,Walker County,9,8,3723,1770,1953,1601,1771,127,147,9,10,13,9,9,4,11,12,1611,1782,130,150,16,18,16,12,12,4,1710,1903,1559,1733,124,144,4,7,12,9,2,1,9,9,1567,1741,125,146,10,13,14,11,4,1,60,50,42,38,3,3,5,3,1,0,7,3,2,3,44,41,5,4,6,5,2,1,8,3 -050,01,127,Alabama,Walker County,9,9,3862,1938,1924,1771,1754,113,127,12,4,22,11,6,4,14,24,1784,1774,116,134,24,21,22,15,6,5,1870,1889,1716,1726,110,125,10,3,19,11,2,4,13,20,1728,1744,113,131,21,16,19,14,2,4,68,35,55,28,3,2,2,1,3,0,4,0,1,4,56,30,3,3,3,5,3,1,4,1 -050,01,127,Alabama,Walker County,9,10,4296,2200,2096,2068,1955,94,112,13,8,6,10,1,1,18,10,2085,1965,97,116,26,13,8,12,2,1,2147,2073,2019,1933,92,112,11,8,6,10,1,1,18,9,2036,1942,95,115,24,13,8,12,2,1,53,23,49,22,2,0,2,0,0,0,0,0,0,1,49,23,2,1,2,0,0,0,0,0 -050,01,127,Alabama,Walker County,9,11,4501,2230,2271,2097,2081,99,159,12,10,3,13,1,2,18,6,2113,2086,102,161,26,15,4,13,3,2,2199,2245,2072,2062,97,156,12,10,3,11,0,0,15,6,2086,2067,99,158,24,15,4,11,1,0,31,26,25,19,2,3,0,0,0,2,1,2,3,0,27,19,3,3,2,0,0,2,2,2 -050,01,127,Alabama,Walker County,9,12,4652,2199,2453,2013,2248,142,158,15,22,5,10,1,0,23,15,2033,2261,147,163,32,34,7,11,3,1,2180,2435,2000,2233,141,158,13,21,5,10,0,0,21,13,2019,2245,144,162,30,32,7,10,1,1,19,18,13,15,1,0,2,1,0,0,1,0,2,2,14,16,3,1,2,2,0,1,2,0 -050,01,127,Alabama,Walker County,9,13,4427,2132,2295,1984,2121,102,123,19,19,8,6,0,1,19,25,2003,2142,103,130,34,40,10,7,1,2,2120,2282,1972,2114,102,122,19,19,8,5,0,0,19,22,1991,2134,103,127,34,38,10,6,1,0,12,13,12,7,0,1,0,0,0,1,0,1,0,3,12,8,0,3,0,2,0,1,0,2 -050,01,127,Alabama,Walker County,9,14,4189,1945,2244,1829,2115,78,95,16,9,5,11,2,0,15,14,1843,2128,80,97,31,21,5,12,2,0,1939,2234,1823,2107,78,95,16,9,5,11,2,0,15,12,1837,2118,80,97,31,20,5,11,2,0,6,10,6,8,0,0,0,0,0,0,0,0,0,2,6,10,0,0,0,1,0,1,0,0 -050,01,127,Alabama,Walker County,9,15,3044,1377,1667,1303,1588,53,61,8,3,3,6,0,0,10,9,1313,1597,54,63,18,9,4,7,1,1,1368,1654,1295,1576,53,61,7,3,3,6,0,0,10,8,1305,1584,54,63,17,8,4,7,1,1,9,13,8,12,0,0,1,0,0,0,0,0,0,1,8,13,0,0,1,1,0,0,0,0 -050,01,127,Alabama,Walker County,9,16,2287,979,1308,928,1243,34,54,4,0,1,2,0,0,12,9,939,1252,35,54,14,8,3,3,0,0,974,1294,923,1230,34,54,4,0,1,2,0,0,12,8,934,1238,35,54,14,8,3,2,0,0,5,14,5,13,0,0,0,0,0,0,0,0,0,1,5,14,0,0,0,0,0,1,0,0 -050,01,127,Alabama,Walker County,9,17,1513,615,898,591,850,15,36,3,2,0,3,0,0,6,7,597,854,16,38,7,5,1,6,0,3,607,893,583,846,15,35,3,2,0,3,0,0,6,7,589,850,16,37,7,5,1,6,0,3,8,5,8,4,0,1,0,0,0,0,0,0,0,0,8,4,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,9,18,1062,367,695,347,672,9,21,2,1,0,0,0,0,9,1,354,673,11,21,9,2,2,0,1,0,366,690,346,668,9,20,2,1,0,0,0,0,9,1,353,669,11,20,9,2,2,0,1,0,1,5,1,4,0,1,0,0,0,0,0,0,0,0,1,4,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,10,0,63929,31240,32689,28490,29762,1851,2077,186,150,166,180,40,24,507,496,28956,30221,2114,2361,423,353,225,235,60,43,30362,31973,27771,29197,1816,2045,140,114,140,161,17,11,478,445,28215,29612,2060,2304,363,288,193,204,33,24,878,716,719,565,35,32,46,36,26,19,23,13,29,51,741,609,54,57,60,65,32,31,27,19 -050,01,127,Alabama,Walker County,10,1,3879,1946,1933,1715,1666,109,141,18,14,18,13,0,0,86,99,1796,1762,177,219,35,30,26,24,3,2,1812,1768,1612,1532,107,137,4,2,3,3,0,0,86,94,1693,1623,175,213,21,16,11,12,3,1,134,165,103,134,2,4,14,12,15,10,0,0,0,5,103,139,2,6,14,14,15,12,0,1 -050,01,127,Alabama,Walker County,10,2,3868,1931,1937,1701,1672,135,144,8,10,5,17,3,4,79,90,1778,1757,192,208,26,32,14,27,6,6,1833,1841,1618,1605,133,139,3,4,4,13,3,1,72,79,1688,1680,187,198,18,20,12,22,4,3,98,96,83,67,2,5,5,6,1,4,0,3,7,11,90,77,5,10,8,12,2,5,2,3 -050,01,127,Alabama,Walker County,10,3,3930,2064,1866,1814,1656,140,139,10,9,36,13,5,2,59,47,1870,1702,182,170,26,22,42,18,5,3,1984,1809,1749,1609,137,136,5,7,36,13,3,1,54,43,1802,1651,174,164,20,18,40,17,3,2,80,57,65,47,3,3,5,2,0,0,2,1,5,4,68,51,8,6,6,4,2,1,2,1 -050,01,127,Alabama,Walker County,10,4,3830,2001,1829,1788,1596,141,157,10,7,19,7,0,2,43,60,1827,1654,167,193,24,25,24,12,4,5,1922,1773,1718,1549,135,156,9,6,18,7,0,1,42,54,1756,1601,161,189,22,23,23,11,4,3,79,56,70,47,6,1,1,1,1,0,0,1,1,6,71,53,6,4,2,2,1,1,0,2 -050,01,127,Alabama,Walker County,10,5,3647,1883,1764,1659,1559,171,131,9,15,5,29,0,1,39,29,1695,1586,191,146,28,27,9,32,1,2,1813,1724,1596,1528,168,127,9,11,3,29,0,1,37,28,1630,1554,187,142,27,22,7,32,1,2,70,40,63,31,3,4,0,4,2,0,0,0,2,1,65,32,4,4,1,5,2,0,0,0 -050,01,127,Alabama,Walker County,10,6,4120,2086,2034,1885,1842,161,145,5,5,7,11,2,2,26,29,1907,1865,173,162,18,18,13,16,3,5,2016,1990,1831,1811,154,143,3,4,6,10,0,0,22,22,1850,1828,163,155,14,13,12,13,1,3,70,44,54,31,7,2,2,1,1,1,2,2,4,7,57,37,10,7,4,5,1,3,2,2 -050,01,127,Alabama,Walker County,10,7,3401,1694,1707,1548,1540,112,141,8,8,4,6,9,2,13,10,1557,1549,116,147,14,13,10,7,10,2,1624,1673,1493,1514,111,138,2,5,2,5,4,1,12,10,1501,1523,115,144,8,10,7,6,5,1,70,34,55,26,1,3,6,3,2,1,5,1,1,0,56,26,1,3,6,3,3,1,5,1 -050,01,127,Alabama,Walker County,10,8,3604,1742,1862,1559,1709,137,125,10,9,14,8,9,2,13,9,1570,1717,141,129,19,15,16,8,9,3,1686,1816,1520,1672,135,123,5,5,13,8,2,1,11,7,1530,1678,137,125,13,10,15,8,2,2,56,46,39,37,2,2,5,4,1,0,7,1,2,2,40,39,4,4,6,5,1,0,7,1 -050,01,127,Alabama,Walker County,10,9,3774,1848,1926,1680,1755,123,130,8,5,17,11,6,4,14,21,1692,1773,129,136,19,21,18,13,6,4,1784,1884,1629,1721,121,127,6,3,14,11,2,3,12,19,1641,1737,125,133,15,17,15,13,2,3,64,42,51,34,2,3,2,2,3,0,4,1,2,2,51,36,4,3,4,4,3,0,4,1 -050,01,127,Alabama,Walker County,10,10,4323,2206,2117,2059,1970,99,115,16,5,17,12,2,2,13,13,2072,1981,101,121,27,14,18,15,2,3,2150,2092,2010,1948,96,115,13,5,17,12,1,2,13,10,2023,1957,98,119,24,13,18,13,1,2,56,25,49,22,3,0,3,0,0,0,1,0,0,3,49,24,3,2,3,1,0,2,1,1 -050,01,127,Alabama,Walker County,10,11,4356,2177,2179,2049,2002,94,148,11,7,2,13,1,1,20,8,2066,2009,100,153,28,12,4,14,3,1,2138,2156,2016,1984,92,147,11,7,2,11,0,0,17,7,2030,1990,97,151,25,11,3,12,1,0,39,23,33,18,2,1,0,0,0,2,1,1,3,1,36,19,3,2,3,1,1,2,2,1 -050,01,127,Alabama,Walker County,10,12,4616,2181,2435,2002,2219,129,169,19,22,6,9,1,1,24,15,2025,2233,132,171,37,36,8,11,3,2,2164,2412,1990,2201,128,168,17,21,6,9,0,0,23,13,2012,2213,130,169,35,33,8,10,2,0,17,23,12,18,1,1,2,1,0,0,1,1,1,2,13,20,2,2,2,3,0,1,1,2 -050,01,127,Alabama,Walker County,10,13,4414,2093,2321,1943,2142,106,127,16,19,5,7,0,1,23,25,1962,2164,109,134,36,40,9,8,2,2,2081,2306,1933,2132,105,126,16,19,5,7,0,0,22,22,1952,2153,107,132,36,37,8,8,1,0,12,15,10,10,1,1,0,0,0,0,0,1,1,3,10,11,2,2,0,3,1,0,1,2 -050,01,127,Alabama,Walker County,10,14,4027,1903,2124,1782,1997,80,95,18,7,6,11,1,0,16,14,1797,2011,81,97,32,21,8,11,1,0,1894,2111,1773,1987,80,95,18,7,6,10,1,0,16,12,1788,1999,81,97,32,19,8,10,1,0,9,13,9,10,0,0,0,0,0,1,0,0,0,2,9,12,0,0,0,2,0,1,0,0 -050,01,127,Alabama,Walker County,10,15,3223,1463,1760,1391,1685,50,55,9,5,3,7,1,0,9,8,1400,1692,52,57,17,12,3,7,1,0,1455,1753,1384,1678,50,55,8,5,3,7,1,0,9,8,1393,1685,52,57,16,12,3,7,1,0,8,7,7,7,0,0,1,0,0,0,0,0,0,0,7,7,0,0,1,0,0,0,0,0 -050,01,127,Alabama,Walker County,10,16,2311,1002,1309,942,1238,41,57,5,0,2,3,0,0,12,11,954,1246,42,58,16,8,2,6,0,2,996,1292,936,1223,41,57,5,0,2,3,0,0,12,9,948,1231,42,58,16,7,2,4,0,1,6,17,6,15,0,0,0,0,0,0,0,0,0,2,6,15,0,0,0,1,0,2,0,1 -050,01,127,Alabama,Walker County,10,17,1555,645,910,620,864,13,35,3,2,0,2,0,0,9,7,627,869,16,37,10,6,1,5,1,0,638,902,613,857,13,34,3,2,0,2,0,0,9,7,620,862,16,36,10,6,1,5,1,0,7,8,7,7,0,1,0,0,0,0,0,0,0,0,7,7,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,10,18,1051,375,676,353,650,10,23,3,1,0,1,0,0,9,1,361,651,13,23,11,1,0,1,0,1,372,671,350,646,10,22,3,1,0,1,0,0,9,1,358,647,13,22,11,1,0,1,0,1,3,5,3,4,0,1,0,0,0,0,0,0,0,0,3,4,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,11,0,63701,31096,32605,28345,29689,1837,2057,187,155,150,185,41,24,536,495,28854,30154,2114,2335,430,356,211,244,59,34,30191,31853,27600,29092,1803,2026,143,116,122,163,18,11,505,445,28079,29510,2065,2284,373,291,176,210,34,19,905,752,745,597,34,31,44,39,28,22,23,13,31,50,775,644,49,51,57,65,35,34,25,15 -050,01,127,Alabama,Walker County,11,1,3856,1932,1924,1695,1684,124,126,15,14,19,16,0,0,79,84,1772,1765,185,195,30,26,26,24,1,0,1790,1764,1588,1560,121,121,1,1,2,2,0,0,78,80,1664,1638,181,187,16,12,9,9,1,0,142,160,107,124,3,5,14,13,17,14,0,0,1,4,108,127,4,8,14,14,17,15,0,0 -050,01,127,Alabama,Walker County,11,2,3948,1979,1969,1735,1689,121,146,8,13,3,17,2,3,110,101,1844,1787,204,218,30,37,15,27,2,4,1896,1862,1663,1611,120,141,5,5,2,14,2,1,104,90,1766,1698,199,208,25,24,12,23,2,2,83,107,72,78,1,5,3,8,1,3,0,2,6,11,78,89,5,10,5,13,3,4,0,2 -050,01,127,Alabama,Walker County,11,3,3900,2029,1871,1787,1656,135,137,9,10,27,13,6,3,65,52,1847,1706,181,171,26,27,36,18,11,4,1936,1796,1710,1594,132,133,4,8,27,12,4,1,59,48,1764,1640,173,165,20,21,35,16,9,2,93,75,77,62,3,4,5,2,0,1,2,2,6,4,83,66,8,6,6,6,1,2,2,2 -050,01,127,Alabama,Walker County,11,4,3778,1992,1786,1784,1568,147,147,10,8,16,8,0,2,35,53,1815,1619,170,181,21,25,19,15,2,3,1902,1737,1706,1527,140,146,7,7,15,8,0,1,34,48,1736,1573,163,178,17,22,18,14,2,2,90,49,78,41,7,1,3,1,1,0,0,1,1,5,79,46,7,3,4,3,1,1,0,1 -050,01,127,Alabama,Walker County,11,5,3602,1829,1773,1602,1564,168,138,12,12,5,25,0,1,42,33,1642,1595,192,158,30,24,7,29,2,2,1765,1730,1543,1527,167,137,12,9,3,25,0,1,40,31,1581,1556,190,155,29,20,5,29,2,2,64,43,59,37,1,1,0,3,2,0,0,0,2,2,61,39,2,3,1,4,2,0,0,0 -050,01,127,Alabama,Walker County,11,6,4122,2088,2034,1897,1837,153,143,6,9,5,13,1,2,26,30,1921,1864,163,157,22,23,8,18,1,5,2020,1986,1838,1804,149,141,4,7,5,12,0,0,24,22,1860,1823,159,152,19,17,7,15,0,2,68,48,59,33,4,2,2,2,0,1,1,2,2,8,61,41,4,5,3,6,1,3,1,3 -050,01,127,Alabama,Walker County,11,7,3440,1705,1735,1547,1568,120,137,9,7,7,9,9,2,13,12,1558,1578,123,144,17,14,11,10,9,3,1649,1710,1511,1548,116,134,3,7,4,8,4,1,11,12,1520,1558,119,141,9,14,8,9,4,2,56,25,36,20,4,3,6,0,3,1,5,1,2,0,38,20,4,3,8,0,3,1,5,1 -050,01,127,Alabama,Walker County,11,8,3615,1780,1835,1605,1683,132,128,8,9,11,7,8,0,16,8,1621,1688,136,130,18,13,14,10,9,2,1701,1781,1541,1639,130,126,4,3,10,7,2,0,14,6,1555,1643,133,128,13,6,13,9,3,1,79,54,64,44,2,2,4,6,1,0,6,0,2,2,66,45,3,2,5,7,1,1,6,1 -050,01,127,Alabama,Walker County,11,9,3709,1767,1942,1601,1770,130,128,8,6,11,12,5,4,12,22,1611,1792,131,130,19,23,13,16,6,4,1709,1890,1556,1727,128,126,5,3,8,12,1,2,11,20,1566,1747,128,128,16,18,9,16,1,2,58,52,45,43,2,2,3,3,3,0,4,2,1,2,45,45,3,2,3,5,4,0,5,2 -050,01,127,Alabama,Walker County,11,10,4233,2177,2056,2036,1904,84,119,16,7,21,9,6,4,14,13,2049,1915,88,123,24,17,24,11,6,4,2109,2030,1979,1882,81,118,14,7,21,9,3,4,11,10,1989,1891,84,121,21,15,23,9,3,4,68,26,57,22,3,1,2,0,0,0,3,0,3,3,60,24,4,2,3,2,1,2,3,0 -050,01,127,Alabama,Walker County,11,11,4228,2111,2117,1987,1959,88,136,13,6,4,11,1,0,18,5,2005,1964,90,137,28,9,5,12,2,0,2074,2090,1955,1935,86,135,13,6,4,10,0,0,16,4,1971,1939,88,136,27,8,5,11,0,0,37,27,32,24,2,1,0,0,0,1,1,0,2,1,34,25,2,1,1,1,0,1,2,0 -050,01,127,Alabama,Walker County,11,12,4549,2189,2360,2022,2148,122,173,16,15,5,11,1,2,23,11,2044,2156,125,178,34,24,8,12,2,2,2171,2340,2009,2132,121,172,15,15,5,11,0,0,21,10,2029,2139,123,176,32,24,7,12,1,0,18,20,13,16,1,1,1,0,0,0,1,2,2,1,15,17,2,2,2,0,1,0,1,2 -050,01,127,Alabama,Walker County,11,13,4442,2070,2372,1918,2189,107,131,19,20,4,8,0,1,22,23,1938,2210,111,136,38,39,8,9,1,1,2055,2359,1906,2181,106,130,18,19,4,8,0,0,21,21,1925,2200,110,135,36,36,8,9,1,0,15,13,12,8,1,1,1,1,0,0,0,1,1,2,13,10,1,1,2,3,0,0,0,1 -050,01,127,Alabama,Walker County,11,14,3973,1887,2086,1761,1947,81,101,19,11,6,8,1,0,19,19,1780,1966,82,104,36,26,8,10,1,0,1880,2073,1754,1938,81,101,19,11,6,7,1,0,19,16,1773,1954,82,104,36,25,8,7,1,0,7,13,7,9,0,0,0,0,0,1,0,0,0,3,7,12,0,0,0,1,0,3,0,0 -050,01,127,Alabama,Walker County,11,15,3322,1496,1826,1418,1743,56,59,7,4,4,10,1,0,10,10,1428,1751,57,62,16,12,4,11,1,0,1486,1819,1408,1736,56,59,7,4,4,10,1,0,10,10,1418,1744,57,62,16,12,4,11,1,0,10,7,10,7,0,0,0,0,0,0,0,0,0,0,10,7,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,11,16,2358,1026,1332,963,1269,46,47,4,1,1,5,0,0,12,10,974,1278,49,49,14,9,2,6,1,0,1020,1316,957,1255,46,47,4,1,1,5,0,0,12,8,968,1262,49,48,14,9,2,5,1,0,6,16,6,14,0,0,0,0,0,0,0,0,0,2,6,16,0,1,0,0,0,1,0,0 -050,01,127,Alabama,Walker County,11,17,1566,652,914,625,865,12,38,4,1,1,2,0,0,10,8,635,873,13,38,14,6,2,5,1,0,647,902,620,854,12,37,4,1,1,2,0,0,10,8,630,862,13,37,14,6,2,5,1,0,5,12,5,11,0,1,0,0,0,0,0,0,0,0,5,11,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,11,18,1060,387,673,362,646,11,23,4,2,0,1,0,0,10,1,370,647,14,24,13,2,1,1,1,0,381,668,356,642,11,22,4,2,0,1,0,0,10,1,364,643,14,23,13,2,1,1,1,0,6,5,6,4,0,1,0,0,0,0,0,0,0,0,6,4,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,12,0,63680,31079,32601,28294,29675,1839,2066,192,157,154,187,43,27,557,489,28820,30134,2132,2341,437,356,215,241,63,46,30136,31837,27520,29068,1804,2032,148,119,124,164,18,11,522,443,28015,29487,2080,2287,376,294,179,209,33,24,943,764,774,607,35,34,44,38,30,23,25,16,35,46,805,647,52,54,61,62,36,32,30,22 -050,01,127,Alabama,Walker County,12,1,3849,1983,1866,1739,1643,125,121,14,11,22,19,2,2,81,70,1817,1712,188,174,25,22,31,25,5,3,1822,1708,1615,1521,121,114,2,1,5,5,0,0,79,67,1691,1587,184,167,13,11,13,10,2,0,161,158,124,122,4,7,12,10,17,14,2,2,2,3,126,125,4,7,12,11,18,15,3,3 -050,01,127,Alabama,Walker County,12,2,3956,2010,1946,1759,1664,124,151,10,15,3,14,1,0,113,102,1871,1762,205,228,34,40,14,21,6,1,1919,1838,1678,1586,124,144,6,6,0,12,1,0,110,90,1787,1673,205,213,29,26,11,18,4,1,91,108,81,78,0,7,4,9,3,2,0,0,3,12,84,89,0,15,5,14,3,3,2,0 -050,01,127,Alabama,Walker County,12,3,3862,1964,1898,1740,1680,120,138,10,7,19,13,4,6,71,54,1808,1731,168,177,27,19,25,21,8,8,1872,1815,1667,1614,116,134,5,4,19,10,3,2,62,51,1727,1662,158,171,19,14,23,17,7,3,92,83,73,66,4,4,5,3,0,3,1,4,9,3,81,69,10,6,8,5,2,4,1,5 -050,01,127,Alabama,Walker County,12,4,3782,2001,1781,1773,1555,153,147,10,12,23,12,3,2,39,53,1809,1604,181,180,20,32,27,18,5,4,1909,1729,1695,1512,147,146,6,11,22,12,2,1,37,47,1729,1556,174,177,16,27,26,17,3,3,92,52,78,43,6,1,4,1,1,0,1,1,2,6,80,48,7,3,4,5,1,1,2,1 -050,01,127,Alabama,Walker County,12,5,3578,1801,1777,1584,1574,161,143,12,10,5,14,0,1,39,35,1619,1608,184,164,27,24,11,18,1,1,1733,1732,1523,1532,159,142,12,8,4,14,0,1,35,35,1554,1566,180,163,25,22,10,18,1,1,68,45,61,42,2,1,0,2,1,0,0,0,4,0,65,42,4,1,2,2,1,0,0,0 -050,01,127,Alabama,Walker County,12,6,4166,2110,2056,1890,1843,172,139,6,13,9,25,1,3,32,33,1918,1872,190,155,22,30,15,30,1,6,2042,2011,1830,1816,168,136,4,10,8,24,0,0,32,25,1858,1837,186,150,20,21,14,29,0,2,68,45,60,27,4,3,2,3,1,1,1,3,0,8,60,35,4,5,2,9,1,1,1,4 -050,01,127,Alabama,Walker County,12,7,3533,1765,1768,1611,1608,117,130,10,7,4,5,7,2,16,16,1625,1623,122,138,23,16,7,8,7,3,1714,1742,1580,1583,113,130,4,7,2,5,3,1,12,16,1591,1598,116,138,13,16,5,8,3,2,51,26,31,25,4,0,6,0,2,0,4,1,4,0,34,25,6,0,10,0,2,0,4,1 -050,01,127,Alabama,Walker County,12,8,3467,1706,1761,1545,1617,118,121,6,9,14,8,8,0,15,6,1559,1622,121,125,17,12,17,8,8,0,1627,1714,1480,1580,116,119,3,3,12,7,2,0,14,5,1493,1584,118,123,13,5,15,7,2,0,79,47,65,37,2,2,3,6,2,1,6,0,1,1,66,38,3,2,4,7,2,1,6,0 -050,01,127,Alabama,Walker County,12,9,3727,1740,1987,1565,1797,137,149,9,5,7,10,7,4,15,22,1578,1817,141,155,20,22,10,11,8,5,1681,1934,1521,1753,135,147,5,3,5,10,2,2,13,19,1532,1770,138,151,16,19,7,11,3,3,59,53,44,44,2,2,4,2,2,0,5,2,2,3,46,47,3,4,4,3,3,0,5,2 -050,01,127,Alabama,Walker County,12,10,4080,2087,1993,1945,1841,85,120,16,5,23,11,5,4,13,12,1956,1851,89,124,24,14,26,12,6,6,2022,1963,1891,1815,83,118,14,4,22,11,2,4,10,11,1900,1825,86,121,20,13,24,11,3,5,65,30,54,26,2,2,2,1,1,0,3,0,3,1,56,26,3,3,4,1,2,1,3,1 -050,01,127,Alabama,Walker County,12,11,4121,2094,2027,1970,1890,93,118,14,7,3,8,1,0,13,4,1983,1894,98,118,23,8,4,9,2,2,2056,2003,1935,1868,91,117,14,7,3,8,1,0,12,3,1947,1871,95,117,23,7,3,9,1,2,38,24,35,22,2,1,0,0,0,0,0,0,1,1,36,23,3,1,0,1,1,0,1,0 -050,01,127,Alabama,Walker County,12,12,4522,2185,2337,2034,2135,108,167,15,13,4,13,2,2,22,7,2054,2141,113,169,35,18,4,14,2,2,2153,2315,2009,2118,106,166,15,13,4,12,0,0,19,6,2026,2123,110,168,32,17,4,13,0,0,32,22,25,17,2,1,0,0,0,1,2,2,3,1,28,18,3,1,3,1,0,1,2,2 -050,01,127,Alabama,Walker County,12,13,4505,2084,2421,1922,2222,114,139,19,25,5,9,0,0,24,26,1943,2248,117,143,43,43,6,12,0,2,2070,2406,1912,2211,113,138,17,24,5,9,0,0,23,24,1933,2235,115,141,40,41,6,12,0,2,14,15,10,11,1,1,2,1,0,0,0,0,1,2,10,13,2,2,3,2,0,0,0,0 -050,01,127,Alabama,Walker County,12,14,4003,1934,2069,1800,1933,88,103,19,10,7,6,0,1,20,16,1819,1948,89,105,37,22,8,9,1,2,1930,2058,1796,1926,88,103,19,10,7,5,0,0,20,14,1815,1940,89,104,37,22,8,6,1,0,4,11,4,7,0,0,0,0,0,1,0,1,0,2,4,8,0,1,0,0,0,3,0,2 -050,01,127,Alabama,Walker County,12,15,3418,1503,1915,1414,1814,62,73,10,4,4,10,2,0,11,14,1425,1828,62,75,20,15,5,11,2,0,1492,1906,1403,1806,62,73,10,4,4,10,2,0,11,13,1414,1819,62,75,20,14,5,11,2,0,11,9,11,8,0,0,0,0,0,0,0,0,0,1,11,9,0,0,0,1,0,0,0,0 -050,01,127,Alabama,Walker County,12,16,2402,1055,1347,998,1285,39,44,5,1,1,7,0,0,12,10,1010,1293,40,45,16,8,1,10,0,1,1049,1330,992,1270,39,44,5,1,1,7,0,0,12,8,1004,1278,40,44,16,8,1,8,0,0,6,17,6,15,0,0,0,0,0,0,0,0,0,2,6,15,0,1,0,0,0,2,0,1 -050,01,127,Alabama,Walker County,12,17,1628,649,979,620,929,14,41,4,1,1,2,0,0,10,6,630,933,14,43,12,6,3,3,0,0,644,968,615,918,14,41,4,1,1,2,0,0,10,6,625,922,14,43,12,6,3,3,0,0,5,11,5,11,0,0,0,0,0,0,0,0,0,0,5,11,0,0,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,12,18,1081,408,673,385,645,9,22,3,2,0,1,0,0,11,3,396,647,10,23,12,5,1,1,1,0,401,665,378,639,9,20,3,2,0,1,0,0,11,3,389,641,10,21,12,5,1,1,1,0,7,8,7,6,0,2,0,0,0,0,0,0,0,0,7,6,0,2,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,13,0,63143,30731,32412,27931,29476,1806,2066,198,154,163,183,44,29,589,504,28492,29950,2120,2361,451,353,223,228,61,44,29729,31618,27113,28849,1768,2030,149,115,132,159,17,11,550,454,27641,29280,2062,2296,386,285,184,199,28,26,1002,794,818,627,38,36,49,39,31,24,27,18,39,50,851,670,58,65,65,68,39,29,33,18 -050,01,127,Alabama,Walker County,13,1,3843,1952,1891,1698,1641,123,126,16,11,19,18,3,4,93,91,1787,1728,193,197,32,29,29,26,7,4,1799,1737,1581,1523,117,118,6,2,8,8,0,0,87,86,1664,1605,185,186,19,17,17,16,3,0,153,154,117,118,6,8,10,9,11,10,3,4,6,5,123,123,8,11,13,12,12,10,4,4 -050,01,127,Alabama,Walker County,13,2,3958,2031,1927,1760,1648,121,150,13,16,13,21,1,0,123,92,1881,1736,214,218,36,35,23,31,2,2,1912,1802,1660,1557,121,145,6,4,3,14,0,0,122,82,1780,1635,213,208,29,18,13,23,1,2,119,125,100,91,0,5,7,12,10,7,1,0,1,10,101,101,1,10,7,17,10,8,1,0 -050,01,127,Alabama,Walker County,13,3,3794,1901,1893,1692,1677,122,140,11,5,6,9,5,5,65,57,1754,1731,164,181,30,19,13,13,7,7,1813,1805,1623,1607,119,135,5,4,6,6,4,2,56,51,1678,1656,156,172,19,15,12,10,5,4,88,88,69,70,3,5,6,1,0,3,1,3,9,6,76,75,8,9,11,4,1,3,2,3 -050,01,127,Alabama,Walker County,13,4,3639,1911,1728,1678,1510,142,137,9,13,34,11,3,1,45,56,1721,1565,169,174,23,31,40,16,5,2,1817,1667,1597,1459,138,134,4,12,34,11,2,0,42,51,1637,1510,165,168,18,27,38,15,3,1,94,61,81,51,4,3,5,1,0,0,1,1,3,5,84,55,4,6,5,4,2,1,2,1 -050,01,127,Alabama,Walker County,13,5,3546,1777,1769,1572,1575,145,138,11,9,6,11,0,3,43,33,1613,1605,170,156,29,20,11,14,0,7,1690,1722,1498,1532,139,137,11,8,4,11,0,2,38,32,1535,1561,161,154,28,19,7,14,0,6,87,47,74,43,6,1,0,1,2,0,0,1,5,1,78,44,9,2,1,1,4,0,0,1 -050,01,127,Alabama,Walker County,13,6,4064,2081,1983,1857,1769,170,142,8,15,8,20,1,2,37,35,1891,1802,186,163,27,32,14,20,4,4,2006,1942,1790,1747,166,139,6,10,7,19,0,0,37,27,1824,1772,182,154,25,23,13,19,3,2,75,41,67,22,4,3,2,5,1,1,1,2,0,8,67,30,4,9,2,9,1,1,1,2 -050,01,127,Alabama,Walker County,13,7,3714,1845,1869,1692,1711,117,129,8,7,6,3,5,2,17,17,1707,1725,122,139,19,18,9,5,6,2,1791,1835,1654,1681,113,129,3,7,5,3,2,0,14,15,1667,1694,118,138,11,16,8,5,2,0,54,34,38,30,4,0,5,0,1,0,3,2,3,2,40,31,4,1,8,2,1,0,4,2 -050,01,127,Alabama,Walker County,13,8,3297,1623,1674,1468,1519,114,124,5,10,14,13,9,1,13,7,1479,1526,119,125,12,15,17,13,9,2,1552,1637,1410,1491,114,122,3,4,11,12,3,1,11,7,1419,1498,117,123,10,9,14,12,3,2,71,37,58,28,0,2,2,6,3,1,6,0,2,0,60,28,2,2,2,6,3,1,6,0 -050,01,127,Alabama,Walker County,13,9,3708,1744,1964,1563,1783,144,146,10,5,7,8,7,4,13,18,1574,1800,147,150,17,17,11,11,9,4,1685,1915,1524,1743,140,144,4,3,5,8,1,2,11,15,1535,1758,142,147,11,13,7,10,1,2,59,49,39,40,4,2,6,2,2,0,6,2,2,3,39,42,5,3,6,4,4,1,8,2 -050,01,127,Alabama,Walker County,13,10,3891,1986,1905,1832,1751,97,114,14,6,22,15,6,4,15,15,1846,1765,100,118,25,17,23,17,7,5,1914,1870,1773,1721,95,112,10,5,21,15,3,4,12,13,1784,1733,97,115,19,14,22,17,4,5,72,35,59,30,2,2,4,1,1,0,3,0,3,2,62,32,3,3,6,3,1,0,3,0 -050,01,127,Alabama,Walker County,13,11,4099,2084,2015,1959,1881,87,113,16,6,6,8,1,0,15,7,1974,1887,91,116,27,11,7,9,1,0,2037,1991,1915,1858,85,113,16,6,6,8,1,0,14,6,1929,1864,88,115,26,11,7,8,1,0,47,24,44,23,2,0,0,0,0,0,0,0,1,1,45,23,3,1,1,0,0,1,0,0 -050,01,127,Alabama,Walker County,13,12,4462,2175,2287,2041,2087,99,170,14,12,3,11,2,2,16,5,2057,2092,104,172,26,15,3,11,2,2,2139,2262,2012,2068,97,168,14,12,3,10,0,0,13,4,2025,2072,99,170,25,14,3,10,0,0,36,25,29,19,2,2,0,0,0,1,2,2,3,1,32,20,5,2,1,1,0,1,2,2 -050,01,127,Alabama,Walker County,13,13,4408,2039,2369,1869,2179,118,149,19,15,5,7,0,0,28,19,1895,2197,124,153,45,29,5,9,0,0,2029,2353,1863,2166,117,149,17,14,5,7,0,0,27,17,1888,2183,122,152,43,26,5,9,0,0,10,16,6,13,1,0,2,1,0,0,0,0,1,2,7,14,2,1,2,3,0,0,0,0 -050,01,127,Alabama,Walker County,13,14,4049,1930,2119,1791,1974,88,105,21,13,8,6,0,1,22,20,1813,1992,90,108,42,28,8,9,0,2,1922,2108,1783,1967,88,104,21,13,8,5,0,0,22,19,1805,1985,90,106,42,28,8,7,0,1,8,11,8,7,0,1,0,0,0,1,0,1,0,1,8,7,0,2,0,0,0,2,0,1 -050,01,127,Alabama,Walker County,13,15,3482,1532,1950,1447,1845,58,76,10,6,3,11,1,0,13,12,1460,1856,58,78,23,17,3,11,1,0,1523,1941,1438,1837,58,76,10,6,3,11,1,0,13,11,1451,1847,58,78,23,16,3,11,1,0,9,9,9,8,0,0,0,0,0,0,0,0,0,1,9,9,0,0,0,1,0,0,0,0 -050,01,127,Alabama,Walker County,13,16,2459,1069,1390,1014,1325,37,50,6,2,2,5,0,0,10,8,1024,1332,39,53,14,8,3,5,1,0,1062,1372,1007,1308,37,50,6,2,2,5,0,0,10,7,1017,1314,39,53,14,7,3,5,1,0,7,18,7,17,0,0,0,0,0,0,0,0,0,1,7,18,0,0,0,1,0,0,0,0 -050,01,127,Alabama,Walker County,13,17,1622,653,969,620,927,17,29,5,0,1,3,0,0,10,10,629,935,20,32,13,7,1,5,0,1,649,960,616,919,17,29,5,0,1,3,0,0,10,9,625,926,20,31,13,7,1,5,0,1,4,9,4,8,0,0,0,0,0,0,0,0,0,1,4,9,0,1,0,0,0,0,0,0 -050,01,127,Alabama,Walker County,13,18,1108,398,710,378,674,7,28,2,3,0,3,0,0,11,2,387,676,10,28,11,5,3,3,0,0,389,699,369,665,7,26,2,3,0,3,0,0,11,2,378,667,10,26,11,5,3,3,0,0,9,11,9,9,0,2,0,0,0,0,0,0,0,0,9,9,0,2,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,1,0,17581,8656,8925,5776,5775,2114,2273,680,749,5,15,5,9,76,104,5834,5852,2142,2308,738,830,13,27,6,14,8570,8860,5726,5738,2102,2264,667,736,4,14,1,9,70,99,5780,5812,2127,2297,719,812,12,26,2,14,86,65,50,37,12,9,13,13,1,1,4,0,6,5,54,40,15,11,19,18,1,1,4,0 -050,01,129,Alabama,Washington County,1,1,1054,509,545,300,317,135,142,65,72,0,0,0,1,9,13,307,326,137,146,72,83,1,1,1,2,507,539,299,314,135,142,64,69,0,0,0,1,9,13,306,323,137,146,71,80,1,1,1,2,2,6,1,3,0,0,1,3,0,0,0,0,0,0,1,3,0,0,1,3,0,0,0,0 -050,01,129,Alabama,Washington County,1,2,1209,616,593,373,360,164,140,67,77,1,0,0,1,11,15,380,369,172,148,74,89,1,1,0,1,610,590,370,358,164,140,64,76,1,0,0,1,11,15,377,367,172,148,71,88,1,1,0,1,6,3,3,2,0,0,3,1,0,0,0,0,0,0,3,2,0,0,3,1,0,0,0,0 -050,01,129,Alabama,Washington County,1,3,1342,723,619,443,367,204,186,68,55,0,0,1,2,7,9,450,374,205,188,74,62,0,2,1,2,714,612,436,363,203,184,67,54,0,0,1,2,7,9,443,370,204,186,73,61,0,2,1,2,9,7,7,4,1,2,1,1,0,0,0,0,0,0,7,4,1,2,1,1,0,0,0,0 -050,01,129,Alabama,Washington County,1,4,1367,733,634,442,370,220,192,61,58,2,3,0,0,8,11,449,377,224,200,65,62,3,6,0,0,725,626,439,365,218,192,59,57,2,3,0,0,7,9,445,371,222,199,62,59,3,6,0,0,8,8,3,5,2,0,2,1,0,0,0,0,1,2,4,6,2,1,3,3,0,0,0,0 -050,01,129,Alabama,Washington County,1,5,928,486,442,289,265,142,128,47,45,0,0,1,1,7,3,295,268,144,129,52,46,1,0,1,2,482,441,286,265,142,128,47,44,0,0,0,1,7,3,292,268,144,129,52,45,1,0,0,2,4,1,3,0,0,0,0,1,0,0,1,0,0,0,3,0,0,0,0,1,0,0,1,0 -050,01,129,Alabama,Washington County,1,6,1005,485,520,297,322,115,117,64,70,0,1,2,1,7,9,300,327,119,120,69,77,2,3,2,2,479,518,296,321,113,117,63,69,0,1,0,1,7,9,299,326,117,120,68,76,2,3,0,2,6,2,1,1,2,0,1,1,0,0,2,0,0,0,1,1,2,0,1,1,0,0,2,0 -050,01,129,Alabama,Washington County,1,7,911,450,461,308,297,106,113,32,45,0,0,1,1,3,5,310,302,107,113,34,50,1,0,1,1,442,459,305,295,106,113,29,45,0,0,0,1,2,5,306,300,107,113,30,50,1,0,0,1,8,2,3,2,0,0,3,0,0,0,1,0,1,0,4,2,0,0,4,0,0,0,1,0 -050,01,129,Alabama,Washington County,1,8,1057,501,556,348,351,106,151,45,45,0,4,0,1,2,4,350,353,106,153,47,49,0,4,0,1,493,551,342,349,105,151,45,45,0,3,0,1,1,2,343,350,105,152,46,47,0,3,0,1,8,5,6,2,1,0,0,0,0,1,0,0,1,2,7,3,1,1,1,2,0,1,0,0 -050,01,129,Alabama,Washington County,1,9,1171,561,610,396,388,128,164,34,53,1,0,0,0,2,5,398,392,128,166,36,57,1,0,0,0,556,608,392,387,128,163,34,53,0,0,0,0,2,5,394,391,128,165,36,57,0,0,0,0,5,2,4,1,0,1,0,0,1,0,0,0,0,0,4,1,0,1,0,0,1,0,0,0 -050,01,129,Alabama,Washington County,1,10,1308,641,667,435,447,159,170,45,39,1,3,0,0,1,8,436,453,159,172,46,47,1,3,0,0,635,663,432,445,156,169,45,39,1,3,0,0,1,7,433,450,156,171,46,46,1,3,0,0,6,4,3,2,3,1,0,0,0,0,0,0,0,1,3,3,3,1,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,1,11,1318,633,685,452,443,148,186,29,50,0,2,0,1,4,3,455,446,149,186,32,52,1,3,0,1,627,681,447,440,148,185,28,50,0,2,0,1,4,3,450,443,149,185,31,52,1,3,0,1,6,4,5,3,0,1,1,0,0,0,0,0,0,0,5,3,0,1,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,1,12,1212,580,632,409,407,127,167,41,50,0,0,0,0,3,8,410,415,129,167,44,56,0,1,0,1,578,627,409,405,127,166,41,48,0,0,0,0,1,8,410,413,127,166,42,54,0,1,0,1,2,5,0,2,0,1,0,2,0,0,0,0,2,0,0,2,2,1,2,2,0,0,0,0 -050,01,129,Alabama,Washington County,1,13,1109,559,550,395,394,121,121,38,30,0,1,0,0,5,4,399,398,122,121,43,34,0,1,0,0,557,550,394,394,121,121,37,30,0,1,0,0,5,4,398,398,122,121,42,34,0,1,0,0,2,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,1,14,876,425,451,324,337,77,84,22,25,0,0,0,0,2,5,326,340,78,87,24,29,0,1,0,1,420,446,321,333,76,83,22,25,0,0,0,0,1,5,322,336,76,86,23,29,0,1,0,1,5,5,3,4,1,1,0,0,0,0,0,0,1,0,4,4,2,1,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,1,15,657,316,341,243,259,59,66,12,16,0,0,0,0,2,0,245,259,59,66,14,16,0,0,0,0,314,337,241,256,59,66,12,15,0,0,0,0,2,0,243,256,59,66,14,15,0,0,0,0,2,4,2,3,0,0,0,1,0,0,0,0,0,0,2,3,0,0,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,1,16,489,230,259,174,188,52,58,3,11,0,1,0,0,1,1,175,189,52,58,4,12,0,1,0,0,227,256,172,187,51,57,3,10,0,1,0,0,1,1,173,188,51,57,4,11,0,1,0,0,3,3,2,1,1,1,0,1,0,0,0,0,0,0,2,1,1,1,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,1,17,307,128,179,97,129,25,43,5,6,0,0,0,0,1,1,98,130,25,43,6,7,0,0,0,0,124,178,94,129,24,42,5,6,0,0,0,0,1,1,95,130,24,42,6,7,0,0,0,0,4,1,3,0,1,1,0,0,0,0,0,0,0,0,3,0,1,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,1,18,261,80,181,51,134,26,45,2,2,0,0,0,0,1,0,51,134,27,45,2,2,1,0,0,0,80,178,51,132,26,45,2,1,0,0,0,0,1,0,51,132,27,45,2,1,1,0,0,0,0,3,0,2,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,2,0,17580,8656,8924,5776,5774,2114,2273,679,747,5,15,5,9,77,106,5835,5853,2142,2308,738,830,13,27,6,14,8570,8859,5726,5737,2102,2264,666,734,4,14,1,9,71,101,5781,5813,2127,2297,719,812,12,26,2,14,86,65,50,37,12,9,13,13,1,1,4,0,6,5,54,40,15,11,19,18,1,1,4,0 -050,01,129,Alabama,Washington County,2,1,1054,509,545,300,317,135,142,65,71,0,0,0,1,9,14,307,327,137,146,72,83,1,1,1,2,507,539,299,314,135,142,64,68,0,0,0,1,9,14,306,324,137,146,71,80,1,1,1,2,2,6,1,3,0,0,1,3,0,0,0,0,0,0,1,3,0,0,1,3,0,0,0,0 -050,01,129,Alabama,Washington County,2,2,1209,616,593,373,360,164,140,67,77,1,0,0,1,11,15,380,369,172,148,74,89,1,1,0,1,610,590,370,358,164,140,64,76,1,0,0,1,11,15,377,367,172,148,71,88,1,1,0,1,6,3,3,2,0,0,3,1,0,0,0,0,0,0,3,2,0,0,3,1,0,0,0,0 -050,01,129,Alabama,Washington County,2,3,1341,722,619,443,367,204,186,67,55,0,0,1,2,7,9,450,374,205,188,73,62,0,2,1,2,713,612,436,363,203,184,66,54,0,0,1,2,7,9,443,370,204,186,72,61,0,2,1,2,9,7,7,4,1,2,1,1,0,0,0,0,0,0,7,4,1,2,1,1,0,0,0,0 -050,01,129,Alabama,Washington County,2,4,1367,733,634,442,370,220,192,61,58,2,3,0,0,8,11,449,377,224,200,65,62,3,6,0,0,725,626,439,365,218,192,59,57,2,3,0,0,7,9,445,371,222,199,62,59,3,6,0,0,8,8,3,5,2,0,2,1,0,0,0,0,1,2,4,6,2,1,3,3,0,0,0,0 -050,01,129,Alabama,Washington County,2,5,929,486,443,289,265,142,128,47,45,0,0,1,1,7,4,295,269,144,129,52,47,1,0,1,2,482,442,286,265,142,128,47,44,0,0,0,1,7,4,292,269,144,129,52,46,1,0,0,2,4,1,3,0,0,0,0,1,0,0,1,0,0,0,3,0,0,0,0,1,0,0,1,0 -050,01,129,Alabama,Washington County,2,6,1005,486,519,297,322,115,117,64,69,0,1,2,1,8,9,301,327,119,120,70,76,2,3,2,2,480,517,296,321,113,117,63,68,0,1,0,1,8,9,300,326,117,120,69,75,2,3,0,2,6,2,1,1,2,0,1,1,0,0,2,0,0,0,1,1,2,0,1,1,0,0,2,0 -050,01,129,Alabama,Washington County,2,7,911,450,461,308,297,106,113,32,45,0,0,1,1,3,5,310,302,107,113,34,50,1,0,1,1,442,459,305,295,106,113,29,45,0,0,0,1,2,5,306,300,107,113,30,50,1,0,0,1,8,2,3,2,0,0,3,0,0,0,1,0,1,0,4,2,0,0,4,0,0,0,1,0 -050,01,129,Alabama,Washington County,2,8,1057,501,556,348,351,106,151,45,45,0,4,0,1,2,4,350,353,106,153,47,49,0,4,0,1,493,551,342,349,105,151,45,45,0,3,0,1,1,2,343,350,105,152,46,47,0,3,0,1,8,5,6,2,1,0,0,0,0,1,0,0,1,2,7,3,1,1,1,2,0,1,0,0 -050,01,129,Alabama,Washington County,2,9,1171,561,610,396,388,128,164,34,53,1,0,0,0,2,5,398,392,128,166,36,57,1,0,0,0,556,608,392,387,128,163,34,53,0,0,0,0,2,5,394,391,128,165,36,57,0,0,0,0,5,2,4,1,0,1,0,0,1,0,0,0,0,0,4,1,0,1,0,0,1,0,0,0 -050,01,129,Alabama,Washington County,2,10,1307,641,666,435,446,159,170,45,39,1,3,0,0,1,8,436,452,159,172,46,47,1,3,0,0,635,662,432,444,156,169,45,39,1,3,0,0,1,7,433,449,156,171,46,46,1,3,0,0,6,4,3,2,3,1,0,0,0,0,0,0,0,1,3,3,3,1,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,2,11,1318,633,685,452,443,148,186,29,50,0,2,0,1,4,3,455,446,149,186,32,52,1,3,0,1,627,681,447,440,148,185,28,50,0,2,0,1,4,3,450,443,149,185,31,52,1,3,0,1,6,4,5,3,0,1,1,0,0,0,0,0,0,0,5,3,0,1,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,2,12,1212,580,632,409,407,127,167,41,50,0,0,0,0,3,8,410,415,129,167,44,56,0,1,0,1,578,627,409,405,127,166,41,48,0,0,0,0,1,8,410,413,127,166,42,54,0,1,0,1,2,5,0,2,0,1,0,2,0,0,0,0,2,0,0,2,2,1,2,2,0,0,0,0 -050,01,129,Alabama,Washington County,2,13,1109,559,550,395,394,121,121,38,30,0,1,0,0,5,4,399,398,122,121,43,34,0,1,0,0,557,550,394,394,121,121,37,30,0,1,0,0,5,4,398,398,122,121,42,34,0,1,0,0,2,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,2,14,876,425,451,324,337,77,84,22,25,0,0,0,0,2,5,326,340,78,87,24,29,0,1,0,1,420,446,321,333,76,83,22,25,0,0,0,0,1,5,322,336,76,86,23,29,0,1,0,1,5,5,3,4,1,1,0,0,0,0,0,0,1,0,4,4,2,1,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,2,15,657,316,341,243,259,59,66,12,16,0,0,0,0,2,0,245,259,59,66,14,16,0,0,0,0,314,337,241,256,59,66,12,15,0,0,0,0,2,0,243,256,59,66,14,15,0,0,0,0,2,4,2,3,0,0,0,1,0,0,0,0,0,0,2,3,0,0,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,2,16,489,230,259,174,188,52,58,3,11,0,1,0,0,1,1,175,189,52,58,4,12,0,1,0,0,227,256,172,187,51,57,3,10,0,1,0,0,1,1,173,188,51,57,4,11,0,1,0,0,3,3,2,1,1,1,0,1,0,0,0,0,0,0,2,1,1,1,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,2,17,307,128,179,97,129,25,43,5,6,0,0,0,0,1,1,98,130,25,43,6,7,0,0,0,0,124,178,94,129,24,42,5,6,0,0,0,0,1,1,95,130,24,42,6,7,0,0,0,0,4,1,3,0,1,1,0,0,0,0,0,0,0,0,3,0,1,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,2,18,261,80,181,51,134,26,45,2,2,0,0,0,0,1,0,51,134,27,45,2,2,1,0,0,0,80,178,51,132,26,45,2,1,0,0,0,0,1,0,51,132,27,45,2,1,1,0,0,0,0,3,0,2,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,3,0,17627,8676,8951,5792,5789,2118,2284,679,746,5,13,5,9,77,110,5858,5889,2150,2330,727,809,19,35,7,12,8586,8882,5737,5747,2107,2275,666,734,4,12,1,9,71,105,5799,5843,2135,2318,709,794,16,33,1,10,90,69,55,42,11,9,13,12,1,1,4,0,6,5,59,46,15,12,18,15,3,2,6,2 -050,01,129,Alabama,Washington County,3,1,1052,510,542,298,316,138,141,65,69,0,0,0,1,9,15,306,330,142,149,70,75,1,2,0,1,507,535,296,312,138,141,64,66,0,0,0,1,9,15,304,326,142,149,69,72,1,2,0,1,3,7,2,4,0,0,1,3,0,0,0,0,0,0,2,4,0,0,1,3,0,0,0,0 -050,01,129,Alabama,Washington County,3,2,1203,614,589,371,359,164,141,66,75,1,0,0,1,12,13,380,372,172,146,71,83,4,3,0,2,607,585,367,356,164,141,63,74,1,0,0,1,12,13,376,369,172,146,68,82,4,3,0,2,7,4,4,3,0,0,3,1,0,0,0,0,0,0,4,3,0,0,3,1,0,0,0,0 -050,01,129,Alabama,Washington County,3,3,1341,715,626,443,369,196,185,68,59,0,0,1,2,7,11,450,379,198,191,71,64,2,4,1,2,706,619,436,365,195,183,67,58,0,0,1,2,7,11,443,375,197,189,70,63,2,4,1,2,9,7,7,4,1,2,1,1,0,0,0,0,0,0,7,4,1,2,1,1,0,0,0,0 -050,01,129,Alabama,Washington County,3,4,1358,725,633,435,368,218,192,63,58,2,3,0,0,7,12,442,380,219,197,69,63,3,5,0,1,717,625,432,363,216,192,61,57,2,3,0,0,6,10,438,373,216,196,66,62,3,5,0,0,8,8,3,5,2,0,2,1,0,0,0,0,1,2,4,7,3,1,3,1,0,0,0,1 -050,01,129,Alabama,Washington County,3,5,943,496,447,298,271,146,127,44,44,0,0,1,1,7,4,305,274,148,130,49,45,0,1,1,1,491,445,294,270,146,127,44,43,0,0,0,1,7,4,301,273,148,130,49,44,0,1,0,1,5,2,4,1,0,0,0,1,0,0,1,0,0,0,4,1,0,0,0,1,0,0,1,0 -050,01,129,Alabama,Washington County,3,6,1002,484,518,298,322,117,117,60,68,0,1,2,1,7,9,305,328,119,120,64,75,2,3,2,1,478,516,297,321,115,117,59,67,0,1,0,1,7,9,304,327,117,120,63,74,2,3,0,1,6,2,1,1,2,0,1,1,0,0,2,0,0,0,1,1,2,0,1,1,0,0,2,0 -050,01,129,Alabama,Washington County,3,7,925,456,469,308,297,107,117,37,47,0,0,1,1,3,7,311,304,108,119,37,50,2,2,1,1,447,467,304,295,107,117,34,47,0,0,0,1,2,7,306,302,108,119,34,50,1,2,0,1,9,2,4,2,0,0,3,0,0,0,1,0,1,0,5,2,0,0,3,0,1,0,1,0 -050,01,129,Alabama,Washington County,3,8,1049,493,556,345,351,105,151,41,46,0,3,0,1,2,4,347,355,106,153,43,50,1,3,1,1,485,550,339,348,104,151,41,46,0,2,0,1,1,2,340,350,104,151,42,48,0,2,0,1,8,6,6,3,1,0,0,0,0,1,0,0,1,2,7,5,2,2,1,2,1,1,1,0 -050,01,129,Alabama,Washington County,3,9,1176,568,608,401,390,126,160,37,52,1,0,0,0,3,6,403,395,128,163,39,56,1,1,0,0,563,606,397,389,126,159,37,52,0,0,0,0,3,6,399,394,128,162,39,56,0,1,0,0,5,2,4,1,0,1,0,0,1,0,0,0,0,0,4,1,0,1,0,0,1,0,0,0 -050,01,129,Alabama,Washington County,3,10,1308,643,665,440,445,156,169,45,41,1,2,0,0,1,8,441,452,156,172,46,46,1,3,0,1,637,661,436,443,154,168,45,41,1,2,0,0,1,7,437,450,154,171,46,45,1,2,0,0,6,4,4,2,2,1,0,0,0,0,0,0,0,1,4,2,2,1,0,1,0,1,0,1 -050,01,129,Alabama,Washington County,3,11,1323,635,688,452,446,151,189,28,47,0,2,0,1,4,3,456,449,152,192,31,47,0,2,0,1,629,683,447,442,151,188,27,47,0,2,0,1,4,3,451,445,152,191,30,47,0,2,0,1,6,5,5,4,0,1,1,0,0,0,0,0,0,0,5,4,0,1,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,3,12,1217,584,633,411,404,129,171,41,50,0,0,0,0,3,8,412,412,132,171,44,57,0,1,0,0,582,628,411,402,129,170,41,48,0,0,0,0,1,8,411,410,130,170,42,55,0,1,0,0,2,5,0,2,0,1,0,2,0,0,0,0,2,0,1,2,2,1,2,2,0,0,0,0 -050,01,129,Alabama,Washington County,3,13,1121,563,558,396,401,123,123,39,30,0,1,0,0,5,3,401,404,125,123,42,32,0,2,0,0,561,558,395,401,123,123,38,30,0,1,0,0,5,3,400,404,125,123,41,32,0,2,0,0,2,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,3,14,879,428,451,325,337,79,85,22,24,0,0,0,0,2,5,326,340,79,88,24,29,0,1,1,0,424,446,323,333,78,84,22,24,0,0,0,0,1,5,324,336,78,87,23,29,0,1,0,0,4,5,2,4,1,1,0,0,0,0,0,0,1,0,2,4,1,1,1,0,0,0,1,0 -050,01,129,Alabama,Washington County,3,15,661,317,344,244,259,59,68,12,17,0,0,0,0,2,0,244,259,60,68,14,17,1,0,0,0,315,340,242,256,59,68,12,16,0,0,0,0,2,0,242,256,60,68,14,16,1,0,0,0,2,4,2,3,0,0,0,1,0,0,0,0,0,0,2,3,0,0,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,3,16,491,232,259,176,186,51,59,4,12,0,1,0,0,1,1,177,187,51,59,5,13,0,1,0,0,229,256,174,185,50,58,4,11,0,1,0,0,1,1,175,186,50,58,5,12,0,1,0,0,3,3,2,1,1,1,0,1,0,0,0,0,0,0,2,1,1,1,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,3,17,315,133,182,100,132,27,43,5,6,0,0,0,0,1,1,101,133,28,43,6,6,0,1,0,0,128,181,96,132,26,42,5,6,0,0,0,0,1,1,97,133,27,42,6,6,0,1,0,0,5,1,4,0,1,1,0,0,0,0,0,0,0,0,4,0,1,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,3,18,263,80,183,51,136,26,46,2,1,0,0,0,0,1,0,51,136,27,46,2,1,1,0,0,0,80,181,51,134,26,46,2,1,0,0,0,0,1,0,51,134,27,46,2,1,1,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,4,0,17356,8526,8830,5696,5752,2077,2236,654,707,16,16,6,6,77,113,5768,5852,2106,2279,699,775,27,33,11,11,8423,8745,5629,5695,2067,2227,640,695,14,14,2,6,71,108,5695,5791,2092,2267,682,761,23,30,6,10,103,85,67,57,10,9,14,12,2,2,4,0,6,5,73,61,14,12,17,14,4,3,5,1 -050,01,129,Alabama,Washington County,4,1,972,475,497,290,293,118,128,56,53,0,0,0,0,11,23,300,315,124,139,60,61,2,4,1,2,470,489,285,287,118,128,56,51,0,0,0,0,11,23,295,309,124,139,60,59,2,4,1,2,5,8,5,6,0,0,0,2,0,0,0,0,0,0,5,6,0,0,0,2,0,0,0,0 -050,01,129,Alabama,Washington County,4,2,1171,618,553,371,342,171,132,61,67,5,0,0,1,10,11,380,350,175,136,67,74,6,3,1,1,608,544,365,335,170,132,58,65,5,0,0,1,10,11,374,343,174,136,64,72,6,3,1,1,10,9,6,7,1,0,3,2,0,0,0,0,0,0,6,7,1,0,3,2,0,0,0,0 -050,01,129,Alabama,Washington County,4,3,1296,654,642,402,382,176,177,66,68,3,0,1,1,6,14,407,394,178,181,68,78,6,4,1,1,644,636,396,378,176,175,63,68,2,0,1,1,6,14,401,390,178,179,65,78,5,4,1,1,10,6,6,4,0,2,3,0,1,0,0,0,0,0,6,4,0,2,3,0,1,0,0,0 -050,01,129,Alabama,Washington County,4,4,1293,698,595,406,340,217,190,63,51,5,4,1,0,6,10,412,349,219,195,66,58,6,5,1,0,690,586,402,334,215,190,62,50,5,3,1,0,5,9,407,342,216,195,65,56,6,4,1,0,8,9,4,6,2,0,1,1,0,1,0,0,1,1,5,7,3,0,1,2,0,1,0,0 -050,01,129,Alabama,Washington County,4,5,987,520,467,321,291,147,132,42,37,0,0,1,1,9,6,330,296,150,135,48,40,1,1,2,1,513,462,317,289,146,132,41,35,0,0,0,1,9,5,326,293,149,134,47,38,1,1,1,1,7,5,4,2,1,0,1,2,0,0,1,0,0,1,4,3,1,1,1,2,0,0,1,0 -050,01,129,Alabama,Washington County,4,6,928,456,472,290,307,111,101,48,60,0,0,1,1,6,3,295,309,114,102,52,61,0,1,1,2,453,468,290,303,110,101,47,60,0,0,0,1,6,3,295,305,113,102,51,61,0,1,0,2,3,4,0,4,1,0,1,0,0,0,1,0,0,0,0,4,1,0,1,0,0,0,1,0 -050,01,129,Alabama,Washington County,4,7,936,453,483,297,298,104,126,48,53,0,0,2,0,2,6,299,302,105,128,48,58,1,1,2,0,438,480,289,296,103,126,45,52,0,0,0,0,1,6,290,300,104,128,45,57,0,1,0,0,15,3,8,2,1,0,3,1,0,0,2,0,1,0,9,2,1,0,3,1,1,0,2,0 -050,01,129,Alabama,Washington County,4,8,965,447,518,328,331,92,130,25,45,0,7,0,1,2,4,330,335,94,133,25,46,0,8,0,1,438,511,321,327,91,130,25,45,0,6,0,1,1,2,322,329,92,131,25,46,0,6,0,1,9,7,7,4,1,0,0,0,0,1,0,0,1,2,8,6,2,2,0,0,0,2,0,0 -050,01,129,Alabama,Washington County,4,9,1174,578,596,395,394,130,149,47,45,1,0,0,0,5,8,400,402,131,153,50,49,1,0,1,0,572,592,390,391,130,148,47,45,0,0,0,0,5,8,395,399,131,152,50,49,0,0,1,0,6,4,5,3,0,1,0,0,1,0,0,0,0,0,5,3,0,1,0,0,1,0,0,0 -050,01,129,Alabama,Washington County,4,10,1271,621,650,429,435,143,161,46,47,2,1,0,0,1,6,429,439,144,162,47,53,2,1,0,1,615,646,425,433,141,160,46,47,2,1,0,0,1,5,425,437,142,161,47,52,2,1,0,0,6,4,4,2,2,1,0,0,0,0,0,0,0,1,4,2,2,1,0,1,0,0,0,1 -050,01,129,Alabama,Washington County,4,11,1332,633,699,451,455,154,195,24,41,0,3,0,1,4,4,455,459,154,196,28,44,0,3,0,1,627,694,446,450,154,195,23,41,0,3,0,1,4,4,450,454,154,196,27,44,0,3,0,1,6,5,5,5,0,0,1,0,0,0,0,0,0,0,5,5,0,0,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,4,12,1209,571,638,405,403,128,174,36,54,0,0,0,0,2,7,407,410,130,176,37,59,1,0,1,0,569,634,404,402,128,173,36,52,0,0,0,0,1,7,405,409,129,175,36,57,0,0,0,0,2,4,1,1,0,1,0,2,0,0,0,0,1,0,2,1,1,1,1,2,1,0,1,0 -050,01,129,Alabama,Washington County,4,13,1174,586,588,406,424,132,134,44,28,0,0,0,0,4,2,410,426,132,134,48,30,0,0,0,0,583,586,405,423,132,133,43,28,0,0,0,0,3,2,408,425,132,133,46,30,0,0,0,0,3,2,1,1,0,1,1,0,0,0,0,0,1,0,2,1,0,1,2,0,0,0,0,0 -050,01,129,Alabama,Washington County,4,14,882,439,443,321,328,90,88,24,22,0,0,0,0,4,5,325,333,92,90,27,25,0,1,0,0,436,438,320,324,89,87,24,22,0,0,0,0,3,5,323,329,90,89,26,25,0,1,0,0,3,5,1,4,1,1,0,0,0,0,0,0,1,0,2,4,2,1,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,4,15,669,316,353,240,273,63,64,11,14,0,0,0,0,2,2,242,275,63,64,13,16,0,0,0,0,313,349,237,270,63,64,11,13,0,0,0,0,2,2,239,272,63,64,13,15,0,0,0,0,3,4,3,3,0,0,0,1,0,0,0,0,0,0,3,3,0,0,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,4,16,499,236,263,184,185,45,63,6,13,0,1,0,0,1,1,185,186,45,63,7,14,0,1,0,0,235,260,183,184,45,62,6,12,0,1,0,0,1,1,184,185,45,62,7,13,0,1,0,0,1,3,1,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,4,17,328,143,185,107,136,32,41,4,7,0,0,0,0,0,1,107,137,32,41,4,7,0,0,0,1,137,185,101,136,32,41,4,7,0,0,0,0,0,1,101,137,32,41,4,7,0,0,0,1,6,0,6,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,4,18,270,82,188,53,135,24,51,3,2,0,0,0,0,2,0,55,135,24,51,4,2,1,0,0,0,82,185,53,133,24,50,3,2,0,0,0,0,2,0,55,133,24,50,4,2,1,0,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,5,0,17147,8445,8702,5687,5686,2012,2179,623,700,33,24,8,6,82,107,5756,5774,2045,2231,669,766,50,42,12,12,8337,8603,5619,5618,1999,2169,608,685,31,23,4,6,76,102,5682,5702,2030,2218,652,747,46,40,8,11,108,99,68,68,13,10,15,15,2,1,4,0,6,5,74,72,15,13,17,19,4,2,4,1 -050,01,129,Alabama,Washington County,5,1,922,474,448,294,275,116,115,51,43,0,0,0,0,13,15,303,288,127,124,55,51,2,4,2,1,471,437,292,267,116,115,50,40,0,0,0,0,13,15,301,280,127,124,54,48,2,4,2,1,3,11,2,8,0,0,1,3,0,0,0,0,0,0,2,8,0,0,1,3,0,0,0,0 -050,01,129,Alabama,Washington County,5,2,1101,565,536,346,322,153,137,51,66,8,0,0,1,7,10,352,331,155,141,55,71,9,2,1,1,556,527,340,315,152,137,49,64,8,0,0,1,7,10,346,324,154,141,53,69,9,2,1,1,9,9,6,7,1,0,2,2,0,0,0,0,0,0,6,7,1,0,2,2,0,0,0,0 -050,01,129,Alabama,Washington County,5,3,1293,658,635,413,388,160,165,63,66,11,0,1,1,10,15,421,399,167,170,67,75,14,2,1,4,646,629,406,384,160,163,59,66,10,0,1,1,10,15,414,395,167,168,63,75,13,2,1,4,12,6,7,4,0,2,4,0,1,0,0,0,0,0,7,4,0,2,4,0,1,0,0,0 -050,01,129,Alabama,Washington County,5,4,1236,667,569,385,324,202,176,58,54,12,4,1,0,9,11,393,333,207,183,62,61,13,7,1,0,660,560,382,318,200,175,57,53,12,4,1,0,8,10,389,326,204,182,61,59,13,6,1,0,7,9,3,6,2,1,1,1,0,0,0,0,1,1,4,7,3,1,1,2,0,1,0,0 -050,01,129,Alabama,Washington County,5,5,1016,537,479,347,304,146,132,38,35,0,0,1,1,5,7,352,311,147,136,41,38,1,1,1,2,526,472,339,299,145,132,37,34,0,0,0,1,5,6,344,305,146,135,40,37,1,1,0,1,11,7,8,5,1,0,1,1,0,0,1,0,0,1,8,6,1,1,1,1,0,0,1,1 -050,01,129,Alabama,Washington County,5,6,899,451,448,282,280,118,104,43,60,0,0,1,1,7,3,286,282,121,106,48,61,2,1,1,1,448,439,281,274,117,104,43,57,0,0,0,1,7,3,285,276,120,106,48,58,2,1,0,1,3,9,1,6,1,0,0,3,0,0,1,0,0,0,1,6,1,0,0,3,0,0,1,0 -050,01,129,Alabama,Washington County,5,7,929,446,483,301,302,93,116,47,59,0,0,2,0,3,6,304,307,93,120,49,60,1,2,2,0,434,479,296,299,92,116,44,58,0,0,0,0,2,6,298,304,92,120,46,59,0,2,0,0,12,4,5,3,1,0,3,1,0,0,2,0,1,0,6,3,1,0,3,1,1,0,2,0 -050,01,129,Alabama,Washington County,5,8,949,443,506,320,330,99,117,23,41,0,13,0,1,1,4,321,334,99,120,23,43,1,13,0,1,436,499,314,325,99,117,22,41,0,12,0,1,1,3,315,328,99,120,22,42,1,12,0,1,7,7,6,5,0,0,1,0,0,1,0,0,0,1,6,6,0,0,1,1,0,1,0,0 -050,01,129,Alabama,Washington County,5,9,1143,551,592,384,392,120,152,40,41,0,1,0,0,7,6,390,396,120,155,45,46,2,1,1,0,539,585,376,387,117,151,40,41,0,1,0,0,6,5,381,391,117,153,44,45,2,1,1,0,12,7,8,5,3,1,0,0,0,0,0,0,1,1,9,5,3,2,1,1,0,0,0,0 -050,01,129,Alabama,Washington County,5,10,1218,600,618,424,409,122,155,50,47,2,2,1,0,1,5,425,414,122,157,51,52,2,2,1,0,595,615,422,408,120,154,50,47,1,2,1,0,1,4,423,412,120,155,51,51,1,2,1,0,5,3,2,1,2,1,0,0,1,0,0,0,0,1,2,2,2,2,0,1,1,0,0,0 -050,01,129,Alabama,Washington County,5,11,1291,614,677,436,448,152,181,22,38,0,2,0,1,4,7,440,453,152,185,26,44,0,2,0,1,608,671,431,442,152,181,21,38,0,2,0,1,4,7,435,447,152,185,25,44,0,2,0,1,6,6,5,6,0,0,1,0,0,0,0,0,0,0,5,6,0,0,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,5,12,1245,598,647,420,415,135,174,41,52,0,1,0,0,2,5,422,419,137,175,41,55,0,3,0,0,593,644,417,414,134,173,41,51,0,1,0,0,1,5,418,418,135,174,41,54,0,3,0,0,5,3,3,1,1,1,0,1,0,0,0,0,1,0,4,1,2,1,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,5,13,1154,572,582,395,406,130,136,45,36,0,0,0,0,2,4,397,408,130,138,46,40,1,0,0,0,569,579,394,405,130,135,44,35,0,0,0,0,1,4,395,407,130,137,45,39,0,0,0,0,3,3,1,1,0,1,1,1,0,0,0,0,1,0,2,1,0,1,1,1,1,0,0,0 -050,01,129,Alabama,Washington County,5,14,944,460,484,334,354,95,101,25,24,0,0,0,0,6,5,340,358,96,103,30,28,1,0,0,0,457,479,333,350,94,100,25,24,0,0,0,0,5,5,338,354,95,102,29,28,1,0,0,0,3,5,1,4,1,1,0,0,0,0,0,0,1,0,2,4,1,1,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,5,15,679,319,360,239,278,65,64,12,16,0,0,1,0,2,2,241,280,65,64,13,18,1,0,1,0,317,356,237,275,65,64,12,15,0,0,1,0,2,2,239,277,65,64,13,17,1,0,1,0,2,4,2,3,0,0,0,1,0,0,0,0,0,0,2,3,0,0,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,5,16,529,260,269,202,196,51,61,6,11,0,0,0,0,1,1,203,197,51,61,7,12,0,0,0,0,258,266,200,195,51,60,6,10,0,0,0,0,1,1,201,196,51,60,7,11,0,0,0,0,2,3,2,1,0,1,0,1,0,0,0,0,0,0,2,1,0,1,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,5,17,328,142,186,107,135,31,41,4,8,0,1,0,0,0,1,107,136,31,41,4,8,0,2,0,1,136,186,101,135,31,41,4,8,0,1,0,0,0,1,101,136,31,41,4,8,0,2,0,1,6,0,6,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,5,18,271,88,183,58,128,24,52,4,3,0,0,0,0,2,0,59,128,25,52,6,3,0,0,0,0,88,180,58,126,24,51,4,3,0,0,0,0,2,0,59,126,25,51,6,3,0,0,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,6,0,16898,8274,8624,5550,5610,1968,2183,612,689,49,28,7,6,88,108,5631,5708,2001,2226,665,746,66,48,8,10,8168,8525,5483,5539,1957,2173,596,677,47,27,3,6,82,103,5559,5632,1987,2215,646,731,62,46,4,10,106,99,67,71,11,10,16,12,2,1,4,0,6,5,72,76,14,11,19,15,4,2,4,0 -050,01,129,Alabama,Washington County,6,1,853,448,405,287,230,109,120,38,39,0,1,0,0,14,15,300,242,116,129,43,46,6,4,0,0,446,397,286,224,109,120,37,37,0,1,0,0,14,15,299,236,116,129,42,44,6,4,0,0,2,8,1,6,0,0,1,2,0,0,0,0,0,0,1,6,0,0,1,2,0,0,0,0 -050,01,129,Alabama,Washington County,6,2,1050,524,526,315,326,139,127,52,62,6,0,0,1,12,10,326,335,144,132,60,64,7,3,0,2,519,519,311,322,139,127,51,59,6,0,0,1,12,10,322,331,144,132,59,61,7,3,0,2,5,7,4,4,0,0,1,3,0,0,0,0,0,0,4,4,0,0,1,3,0,0,0,0 -050,01,129,Alabama,Washington County,6,3,1241,638,603,404,374,150,155,67,59,14,0,1,0,2,15,406,387,150,161,68,69,15,2,1,0,625,593,396,366,150,153,63,59,13,0,1,0,2,15,398,379,150,159,64,69,14,2,1,0,13,10,8,8,0,2,4,0,1,0,0,0,0,0,8,8,0,2,4,0,1,0,0,0 -050,01,129,Alabama,Washington County,6,4,1191,647,544,369,309,194,171,50,53,26,1,1,1,7,9,375,316,198,178,53,55,27,5,1,1,641,534,367,302,192,170,49,52,26,1,1,1,6,8,373,308,195,177,51,54,27,4,1,1,6,10,2,7,2,1,1,1,0,0,0,0,1,1,2,8,3,1,2,1,0,1,0,0 -050,01,129,Alabama,Washington County,6,5,1052,550,502,342,303,161,148,42,42,0,2,0,1,5,6,347,309,162,150,46,46,0,3,1,1,539,494,333,297,160,148,41,41,0,2,0,1,5,5,338,302,161,149,45,45,0,3,1,1,11,8,9,6,1,0,1,1,0,0,0,0,0,1,9,7,1,1,1,1,0,0,0,0 -050,01,129,Alabama,Washington County,6,6,897,445,452,282,292,112,114,41,42,0,2,2,0,8,2,290,294,115,115,44,43,2,2,2,0,437,444,277,285,111,114,41,41,0,2,0,0,8,2,285,287,114,115,44,42,2,2,0,0,8,8,5,7,1,0,0,1,0,0,2,0,0,0,5,7,1,0,0,1,0,0,2,0 -050,01,129,Alabama,Washington County,6,7,934,442,492,287,298,99,121,50,66,1,0,2,1,3,6,290,304,100,124,51,68,2,1,2,1,431,488,283,295,98,121,46,65,1,0,0,1,3,6,286,301,99,124,47,67,2,1,0,1,11,4,4,3,1,0,4,1,0,0,2,0,0,0,4,3,1,0,4,1,0,0,2,0 -050,01,129,Alabama,Washington County,6,8,905,421,484,301,310,94,113,24,43,0,12,0,0,2,6,303,316,95,114,25,46,0,14,0,0,411,480,294,307,94,113,22,43,0,12,0,0,1,5,295,312,94,114,23,45,0,14,0,0,10,4,7,3,0,0,2,0,0,0,0,0,1,1,8,4,1,0,2,1,0,0,0,0 -050,01,129,Alabama,Washington County,6,9,1119,535,584,366,388,117,152,45,33,0,4,0,1,7,6,372,392,118,154,52,37,0,6,0,2,528,575,363,382,114,151,45,33,0,3,0,1,6,5,368,385,115,153,51,36,0,5,0,2,7,9,3,6,3,1,0,0,0,1,0,0,1,1,4,7,3,1,1,1,0,1,0,0 -050,01,129,Alabama,Washington County,6,10,1185,574,611,414,396,113,152,39,57,2,2,0,0,6,4,418,400,115,154,44,59,3,2,0,0,569,606,412,393,111,151,39,57,1,2,0,0,6,3,416,396,113,153,44,58,2,2,0,0,5,5,2,3,2,1,0,0,1,0,0,0,0,1,2,4,2,1,0,1,1,0,0,0 -050,01,129,Alabama,Washington County,6,11,1272,619,653,429,444,155,160,29,38,0,2,0,1,6,8,435,452,157,161,33,45,0,2,0,1,613,647,423,438,155,160,29,38,0,2,0,1,6,8,429,446,157,161,33,45,0,2,0,1,6,6,6,6,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,6,12,1279,604,675,426,429,140,190,37,49,0,1,0,0,1,6,427,435,140,192,37,51,1,1,0,2,598,673,422,428,140,189,36,49,0,1,0,0,0,6,422,434,140,191,36,51,0,1,0,2,6,2,4,1,0,1,1,0,0,0,0,0,1,0,5,1,0,1,1,0,1,0,0,0 -050,01,129,Alabama,Washington County,6,13,1120,541,579,384,389,117,142,37,43,0,0,0,0,3,5,387,394,119,143,38,47,0,0,0,0,538,575,383,388,117,141,36,41,0,0,0,0,2,5,385,393,118,142,37,45,0,0,0,0,3,4,1,1,0,1,1,2,0,0,0,0,1,0,2,1,1,1,1,2,0,0,0,0 -050,01,129,Alabama,Washington County,6,14,959,473,486,335,347,99,109,33,25,0,0,0,0,6,5,341,352,100,109,38,28,1,2,0,0,471,483,334,344,99,109,33,25,0,0,0,0,5,5,339,349,100,109,37,28,0,2,0,0,2,3,1,3,0,0,0,0,0,0,0,0,1,0,2,3,0,0,1,0,1,0,0,0 -050,01,129,Alabama,Washington County,6,15,724,331,393,251,311,62,63,16,16,0,0,0,0,2,3,253,314,63,63,18,19,0,0,0,0,328,387,249,307,61,62,16,15,0,0,0,0,2,3,251,310,62,62,18,18,0,0,0,0,3,6,2,4,1,1,0,1,0,0,0,0,0,0,2,4,1,1,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,6,16,504,243,261,182,196,53,55,5,10,0,0,1,0,2,0,183,196,54,55,6,10,1,0,1,0,242,259,181,195,53,54,5,10,0,0,1,0,2,0,182,195,54,54,6,10,1,0,1,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,6,17,343,149,194,115,144,31,38,3,9,0,1,0,0,0,2,115,146,31,39,3,10,0,1,0,0,142,194,108,144,31,38,3,9,0,1,0,0,0,2,108,146,31,39,3,10,0,1,0,0,7,0,7,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,6,18,270,90,180,61,124,23,53,4,3,0,0,0,0,2,0,63,124,24,53,6,3,1,0,0,0,90,177,61,122,23,52,4,3,0,0,0,0,2,0,63,122,24,52,6,3,1,0,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,7,0,16868,8267,8601,5545,5580,1924,2167,627,699,71,28,9,6,91,121,5627,5685,1964,2217,675,762,84,52,13,12,8150,8506,5471,5514,1912,2156,609,687,69,27,5,6,84,116,5547,5614,1948,2203,656,747,80,50,8,11,117,95,74,66,12,11,18,12,2,1,4,0,7,5,80,71,16,14,19,15,4,2,5,1 -050,01,129,Alabama,Washington County,7,1,869,443,426,299,252,99,115,32,32,0,0,0,0,13,27,310,276,108,129,36,41,3,6,1,2,437,420,294,247,99,115,31,31,0,0,0,0,13,27,305,271,108,129,35,40,3,6,1,2,6,6,5,5,0,0,1,1,0,0,0,0,0,0,5,5,0,0,1,1,0,0,0,0 -050,01,129,Alabama,Washington County,7,2,1028,499,529,306,313,117,135,52,65,14,0,0,1,10,15,314,324,122,143,56,72,15,2,2,3,495,519,302,307,117,135,52,61,14,0,0,1,10,15,310,318,122,143,56,68,15,2,2,3,4,10,4,6,0,0,0,4,0,0,0,0,0,0,4,6,0,0,0,4,0,0,0,0 -050,01,129,Alabama,Washington County,7,3,1203,633,570,390,350,149,148,73,59,16,0,0,0,5,13,395,360,151,151,74,69,18,3,0,0,620,564,384,345,149,147,68,59,15,0,0,0,4,13,388,355,151,150,69,69,16,3,0,0,13,6,6,5,0,1,5,0,1,0,0,0,1,0,7,5,0,1,5,0,2,0,0,0 -050,01,129,Alabama,Washington County,7,4,1166,637,529,369,306,173,155,51,57,37,1,1,1,6,9,375,315,177,158,53,60,37,4,1,2,629,521,363,301,172,153,50,56,37,1,1,1,6,9,369,310,176,156,52,59,37,4,1,2,8,8,6,5,1,2,1,1,0,0,0,0,0,0,6,5,1,2,1,1,0,0,0,0 -050,01,129,Alabama,Washington County,7,5,1114,594,520,364,307,174,161,45,43,0,3,1,0,10,6,373,312,180,164,51,46,0,4,1,0,584,511,358,301,172,161,44,42,0,3,1,0,9,4,366,304,177,163,50,44,0,4,1,0,10,9,6,6,2,0,1,1,0,0,0,0,1,2,7,8,3,1,1,2,0,0,0,0 -050,01,129,Alabama,Washington County,7,6,881,449,432,280,276,120,111,40,39,0,1,2,1,7,4,287,279,121,114,45,40,2,2,2,1,438,425,271,270,120,111,40,38,0,1,0,1,7,4,278,273,121,114,45,39,2,2,0,1,11,7,9,6,0,0,0,1,0,0,2,0,0,0,9,6,0,0,0,1,0,0,2,0 -050,01,129,Alabama,Washington County,7,7,947,443,504,284,309,98,122,54,67,2,0,1,1,4,5,288,314,101,125,54,69,3,1,1,1,428,499,276,305,96,122,50,66,2,0,0,1,4,5,280,310,99,125,50,68,3,1,0,1,15,5,8,4,2,0,4,1,0,0,1,0,0,0,8,4,2,0,4,1,0,0,1,0 -050,01,129,Alabama,Washington County,7,8,886,416,470,288,292,93,111,32,50,0,10,1,0,2,7,290,297,94,115,33,53,0,12,1,0,408,467,286,290,93,111,28,50,0,10,0,0,1,6,287,294,93,114,29,53,0,12,0,0,8,3,2,2,0,0,4,0,0,0,1,0,1,1,3,3,1,1,4,0,0,0,1,0 -050,01,129,Alabama,Washington County,7,9,1060,502,558,347,366,106,145,43,34,0,7,0,1,6,5,353,371,109,148,46,37,1,8,0,2,494,551,343,361,103,145,43,34,0,6,0,1,5,4,348,365,105,147,46,36,1,6,0,1,8,7,4,5,3,0,0,0,0,1,0,0,1,1,5,6,4,1,0,1,0,2,0,1 -050,01,129,Alabama,Washington County,7,10,1145,547,598,386,387,114,152,37,55,1,1,2,0,7,3,393,390,114,153,44,57,1,1,2,0,543,593,383,385,114,150,37,55,0,1,2,0,7,2,390,387,114,151,44,56,0,1,2,0,4,5,3,2,0,2,0,0,1,0,0,0,0,1,3,3,0,2,0,1,1,0,0,0 -050,01,129,Alabama,Washington County,7,11,1303,653,650,459,453,152,150,38,36,1,3,0,0,3,8,462,460,153,152,40,43,1,3,0,0,646,645,453,448,151,150,38,36,1,3,0,0,3,8,456,455,152,152,40,43,1,3,0,0,7,5,6,5,1,0,0,0,0,0,0,0,0,0,6,5,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,7,12,1260,601,659,431,432,141,171,26,49,0,1,0,1,3,5,433,437,142,171,27,53,2,2,0,1,593,656,427,430,139,170,25,49,0,1,0,1,2,5,428,435,140,170,26,53,1,2,0,1,8,3,4,2,2,1,1,0,0,0,0,0,1,0,5,2,2,1,1,0,1,0,0,0 -050,01,129,Alabama,Washington County,7,13,1132,534,598,371,383,120,163,40,46,0,0,0,0,3,6,374,388,121,165,42,50,0,1,0,0,531,593,370,381,120,162,39,44,0,0,0,0,2,6,372,386,120,164,41,48,0,1,0,0,3,5,1,2,0,1,1,2,0,0,0,0,1,0,2,2,1,1,1,2,0,0,0,0 -050,01,129,Alabama,Washington County,7,14,973,478,495,345,352,97,117,30,24,0,0,0,0,6,2,349,354,99,118,35,25,0,0,1,0,477,494,345,351,97,117,30,24,0,0,0,0,5,2,349,353,99,118,34,25,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0 -050,01,129,Alabama,Washington County,7,15,748,343,405,254,316,67,69,21,16,0,0,0,0,1,4,255,320,67,69,22,18,0,2,0,0,340,397,252,311,66,67,21,15,0,0,0,0,1,4,253,315,66,67,22,17,0,2,0,0,3,8,2,5,1,2,0,1,0,0,0,0,0,0,2,5,1,2,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,7,16,510,239,271,183,202,47,56,6,13,0,0,1,0,2,0,184,202,48,56,8,13,0,0,1,0,238,270,182,201,47,56,6,13,0,0,1,0,2,0,183,201,48,56,8,13,0,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,7,17,369,161,208,121,161,36,36,3,9,0,1,0,0,1,1,122,162,36,36,4,10,0,1,0,0,155,205,115,159,36,35,3,9,0,1,0,0,1,1,116,160,36,35,4,10,0,1,0,0,6,3,6,2,0,1,0,0,0,0,0,0,0,0,6,2,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,7,18,274,95,179,68,123,21,50,4,5,0,0,0,0,2,1,70,124,21,50,5,6,1,0,0,0,94,176,67,121,21,49,4,5,0,0,0,0,2,1,69,122,21,49,5,6,1,0,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,8,0,16831,8212,8619,5503,5601,1904,2145,609,708,90,28,10,7,96,130,5583,5708,1941,2204,662,777,111,48,17,18,8097,8518,5428,5530,1892,2133,595,696,88,27,6,7,88,125,5502,5632,1925,2188,644,763,106,47,10,18,115,101,75,71,12,12,14,12,2,1,4,0,8,5,81,76,16,16,18,14,5,1,7,0 -050,01,129,Alabama,Washington County,8,1,898,445,453,302,292,103,115,23,22,1,0,0,0,16,24,314,311,111,128,30,32,5,6,1,1,435,446,293,286,103,115,22,21,1,0,0,0,16,24,305,305,111,128,29,31,5,6,1,1,10,7,9,6,0,0,1,1,0,0,0,0,0,0,9,6,0,0,1,1,0,0,0,0 -050,01,129,Alabama,Washington County,8,2,1018,497,521,300,300,107,135,55,63,24,0,1,1,10,22,308,318,111,144,60,74,27,4,1,3,491,516,294,297,107,135,55,61,24,0,1,1,10,22,302,315,111,144,60,72,27,4,1,3,6,5,6,3,0,0,0,2,0,0,0,0,0,0,6,3,0,0,0,2,0,0,0,0 -050,01,129,Alabama,Washington County,8,3,1192,606,586,372,364,147,137,63,72,17,0,0,1,7,12,379,373,150,145,66,78,19,2,2,1,597,576,368,355,147,137,60,71,16,0,0,1,6,12,374,364,149,145,62,77,17,2,1,1,9,10,4,9,0,0,3,1,1,0,0,0,1,0,5,9,1,0,4,1,2,0,1,0 -050,01,129,Alabama,Washington County,8,4,1173,635,538,373,302,158,166,56,56,42,0,1,1,5,13,376,314,161,171,56,63,45,0,2,3,626,529,366,298,157,163,55,54,42,0,1,1,5,13,369,310,160,168,55,61,45,0,2,3,9,9,7,4,1,3,1,2,0,0,0,0,0,0,7,4,1,3,1,2,0,0,0,0 -050,01,129,Alabama,Washington County,8,5,1104,585,519,345,305,187,158,44,47,1,3,1,0,7,6,351,310,191,163,46,49,4,4,1,0,578,509,344,299,185,157,42,46,1,3,1,0,5,4,348,302,188,160,43,47,3,4,1,0,7,10,1,6,2,1,2,1,0,0,0,0,2,2,3,8,3,3,3,2,1,0,0,0 -050,01,129,Alabama,Washington County,8,6,922,469,453,295,301,124,103,41,40,0,1,1,1,8,7,302,307,127,107,46,44,1,3,1,2,463,444,290,293,124,103,41,39,0,1,0,1,8,7,297,299,127,107,46,43,1,3,0,2,6,9,5,8,0,0,0,1,0,0,1,0,0,0,5,8,0,0,0,1,0,0,1,0 -050,01,129,Alabama,Washington County,8,7,893,421,472,259,296,100,109,51,63,3,0,2,1,6,3,265,298,102,111,54,65,4,0,2,1,411,465,254,290,98,109,50,62,3,0,0,1,6,3,260,292,100,111,53,64,4,0,0,1,10,7,5,6,2,0,1,1,0,0,2,0,0,0,5,6,2,0,1,1,0,0,2,0 -050,01,129,Alabama,Washington County,8,8,901,429,472,301,294,89,113,35,53,0,6,1,0,3,6,304,298,90,116,37,56,0,7,1,1,414,468,292,290,89,113,31,53,0,6,0,0,2,6,294,294,89,116,33,56,0,7,0,1,15,4,9,4,0,0,4,0,0,0,1,0,1,0,10,4,1,0,4,0,0,0,1,0 -050,01,129,Alabama,Washington County,8,9,995,471,524,335,329,99,139,35,40,0,12,0,1,2,3,336,331,99,141,37,42,0,12,1,1,464,517,332,326,96,138,35,40,0,11,0,1,1,1,333,326,96,139,36,41,0,11,0,1,7,7,3,3,3,1,0,0,0,1,0,0,1,2,3,5,3,2,1,1,0,1,1,0 -050,01,129,Alabama,Washington County,8,10,1139,550,589,387,391,114,145,37,47,1,1,0,0,11,5,398,395,117,145,45,51,2,2,0,1,546,587,384,390,114,144,37,47,0,1,0,0,11,5,395,394,117,144,45,51,1,2,0,1,4,2,3,1,0,1,0,0,1,0,0,0,0,0,3,1,0,1,0,0,1,0,0,0 -050,01,129,Alabama,Washington County,8,11,1252,620,632,426,435,145,148,45,39,1,2,2,0,1,8,426,443,146,150,46,43,1,3,2,1,614,627,421,432,144,147,45,39,1,2,2,0,1,7,421,439,145,148,46,43,1,3,2,1,6,5,5,3,1,1,0,0,0,0,0,0,0,1,5,4,1,2,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,8,12,1274,609,665,432,436,151,174,22,48,0,2,0,1,4,4,436,438,152,177,24,50,1,2,0,2,599,659,425,431,149,173,21,48,0,2,0,1,4,4,429,433,150,176,23,50,1,2,0,2,10,6,7,5,2,1,1,0,0,0,0,0,0,0,7,5,2,1,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,8,13,1114,527,587,379,370,111,160,34,48,0,0,0,0,3,9,381,378,111,162,36,54,1,1,1,1,525,582,379,368,111,159,34,46,0,0,0,0,1,9,380,376,111,161,35,52,0,1,0,1,2,5,0,2,0,1,0,2,0,0,0,0,2,0,1,2,0,1,1,2,1,0,1,0 -050,01,129,Alabama,Washington County,8,14,1036,511,525,367,367,105,130,34,26,0,0,0,0,5,2,371,369,106,131,39,26,0,1,0,0,509,525,366,367,105,130,33,26,0,0,0,0,5,2,370,369,106,131,38,26,0,1,0,0,2,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,8,15,752,353,399,267,304,66,72,17,18,0,0,0,0,3,5,269,309,68,72,18,23,1,0,1,0,350,394,266,300,65,71,17,18,0,0,0,0,2,5,267,305,66,71,18,23,1,0,1,0,3,5,1,4,1,1,0,0,0,0,0,0,1,0,2,4,2,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,8,16,524,228,296,171,227,44,57,10,12,0,0,1,0,2,0,173,227,44,57,12,12,0,0,1,0,226,292,169,224,44,57,10,11,0,0,1,0,2,0,171,224,44,57,12,11,0,0,1,0,2,4,2,3,0,0,0,1,0,0,0,0,0,0,2,3,0,0,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,8,17,361,155,206,120,158,31,38,3,9,0,1,0,0,1,0,120,158,32,38,4,9,0,1,0,0,153,203,118,156,31,37,3,9,0,1,0,0,1,0,118,156,32,37,4,9,0,1,0,0,2,3,2,2,0,1,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,8,18,283,101,182,72,130,23,46,4,5,0,0,0,0,2,1,74,131,23,46,6,6,0,0,0,0,96,179,67,128,23,45,4,5,0,0,0,0,2,1,69,129,23,45,6,6,0,0,0,0,5,3,5,2,0,1,0,0,0,0,0,0,0,0,5,2,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,9,0,16607,8136,8471,5453,5526,1904,2084,590,687,88,29,10,7,91,138,5539,5641,1941,2148,639,762,101,57,15,15,8013,8365,5370,5453,1892,2072,576,673,86,28,6,7,83,132,5449,5565,1923,2132,624,744,98,53,10,13,123,106,83,73,12,12,14,14,2,1,4,0,8,6,90,76,18,16,15,18,3,4,5,2 -050,01,129,Alabama,Washington County,9,1,892,441,451,298,300,109,110,18,21,1,0,0,0,15,20,312,316,117,123,24,30,4,3,2,1,431,446,289,296,109,110,17,20,1,0,0,0,15,20,303,312,117,123,23,29,4,3,2,1,10,5,9,4,0,0,1,1,0,0,0,0,0,0,9,4,0,0,1,1,0,0,0,0 -050,01,129,Alabama,Washington County,9,2,969,474,495,304,293,94,118,55,53,12,0,1,1,8,30,312,318,96,133,60,67,13,8,1,3,467,487,297,287,94,118,55,51,12,0,1,1,8,30,305,312,96,133,60,65,13,8,1,3,7,8,7,6,0,0,0,2,0,0,0,0,0,0,7,6,0,0,0,2,0,0,0,0 -050,01,129,Alabama,Washington County,9,3,1156,600,556,367,360,143,123,60,61,25,0,0,1,5,11,372,371,146,126,63,67,25,2,0,1,591,545,361,350,143,123,58,60,25,0,0,1,4,11,365,361,145,126,61,66,25,2,0,1,9,11,6,10,0,0,2,1,0,0,0,0,1,0,7,10,1,0,2,1,0,0,0,0 -050,01,129,Alabama,Washington County,9,4,1153,611,542,355,306,149,155,60,64,42,0,1,1,4,16,359,320,151,160,61,73,43,4,1,3,600,532,347,300,149,152,58,63,41,0,1,1,4,16,351,314,151,157,59,72,42,4,1,3,11,10,8,6,0,3,2,1,1,0,0,0,0,0,8,6,0,3,2,1,1,0,0,0 -050,01,129,Alabama,Washington County,9,5,1039,563,476,317,269,189,156,48,43,0,3,1,0,8,5,325,272,194,159,50,45,1,5,1,0,557,468,316,264,187,155,47,42,0,3,1,0,6,4,322,266,190,158,49,43,1,5,1,0,6,8,1,5,2,1,1,1,0,0,0,0,2,1,3,6,4,1,1,2,0,0,0,0 -050,01,129,Alabama,Washington County,9,6,953,486,467,318,299,132,116,26,44,1,0,1,1,8,7,325,305,135,121,32,47,1,0,1,1,478,458,313,293,131,116,25,42,1,0,0,1,8,6,320,298,134,120,31,45,1,0,0,1,8,9,5,6,1,0,1,2,0,0,1,0,0,1,5,7,1,1,1,2,0,0,1,0 -050,01,129,Alabama,Washington County,9,7,864,410,454,254,295,100,97,45,56,5,2,1,1,5,3,259,298,103,98,47,58,5,2,1,1,403,450,250,291,99,97,44,56,5,2,0,1,5,3,255,294,102,98,46,58,5,2,0,1,7,4,4,4,1,0,1,0,0,0,1,0,0,0,4,4,1,0,1,0,0,0,1,0 -050,01,129,Alabama,Washington County,9,8,899,442,457,292,278,97,123,47,46,0,3,2,0,4,7,295,284,98,126,48,50,2,4,3,0,423,450,281,272,96,123,43,45,0,3,0,0,3,7,283,278,96,126,44,49,2,4,1,0,19,7,11,6,1,0,4,1,0,0,2,0,1,0,12,6,2,0,4,1,0,0,2,0 -050,01,129,Alabama,Washington County,9,9,963,439,524,319,322,95,133,24,49,0,15,0,1,1,4,319,325,96,135,24,51,0,18,1,2,432,515,316,317,92,132,24,49,0,14,0,1,0,2,316,319,92,133,24,49,0,15,0,1,7,9,3,5,3,1,0,0,0,1,0,0,1,2,3,6,4,2,0,2,0,3,1,1 -050,01,129,Alabama,Washington County,9,10,1131,569,562,396,382,118,133,42,41,1,1,0,0,12,5,408,387,122,135,50,43,2,2,0,0,561,558,389,381,118,132,42,39,0,1,0,0,12,5,401,386,122,134,50,41,1,2,0,0,8,4,7,1,0,1,0,2,1,0,0,0,0,0,7,1,0,1,0,2,1,0,0,0 -050,01,129,Alabama,Washington County,9,11,1222,604,618,426,424,129,140,45,47,1,1,2,0,1,6,427,427,129,144,46,50,1,3,2,1,597,613,420,422,128,139,45,47,1,1,2,0,1,4,421,425,128,141,46,49,1,2,2,0,7,5,6,2,1,1,0,0,0,0,0,0,0,2,6,2,1,3,0,1,0,1,0,1 -050,01,129,Alabama,Washington County,9,12,1259,610,649,432,425,153,175,21,39,0,3,0,1,4,6,436,428,153,178,25,43,0,5,0,2,604,644,429,420,151,175,20,39,0,3,0,1,4,6,433,423,151,178,24,43,0,5,0,2,6,5,3,5,2,0,1,0,0,0,0,0,0,0,3,5,2,0,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,9,13,1099,509,590,362,364,114,170,31,48,0,0,0,0,2,8,364,372,115,172,31,55,1,0,0,0,507,586,361,363,114,169,31,46,0,0,0,0,1,8,362,371,115,171,31,53,0,0,0,0,2,4,1,1,0,1,0,2,0,0,0,0,1,0,2,1,0,1,0,2,1,0,0,0 -050,01,129,Alabama,Washington County,9,14,1052,517,535,364,375,113,127,36,30,0,0,0,0,4,3,368,377,114,128,39,33,0,0,0,0,514,533,363,374,113,126,35,30,0,0,0,0,3,3,366,376,114,127,37,33,0,0,0,0,3,2,1,1,0,1,1,0,0,0,0,0,1,0,2,1,0,1,2,0,0,0,0,0 -050,01,129,Alabama,Washington County,9,15,760,360,400,270,305,67,75,18,16,0,0,0,0,5,4,275,309,69,77,22,18,1,0,1,0,358,395,270,301,66,74,18,16,0,0,0,0,4,4,274,305,67,76,22,18,1,0,1,0,2,5,0,4,1,1,0,0,0,0,0,0,1,0,1,4,2,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,9,16,543,238,305,180,231,49,56,6,16,0,0,1,0,2,2,181,233,49,56,8,18,1,0,1,0,235,301,177,228,49,56,6,15,0,0,1,0,2,2,178,230,49,56,8,17,1,0,1,0,3,4,3,3,0,0,0,1,0,0,0,0,0,0,3,3,0,0,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,9,17,363,155,208,120,163,29,38,5,6,0,1,0,0,1,0,121,163,30,38,5,6,0,1,0,0,154,205,119,161,29,37,5,6,0,1,0,0,1,0,120,161,30,37,5,6,0,1,0,0,1,3,1,2,0,1,0,0,0,0,0,0,0,0,1,2,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,9,18,290,108,182,79,135,24,39,3,7,0,0,0,0,2,1,81,136,24,39,4,8,1,0,0,0,101,179,72,133,24,38,3,7,0,0,0,0,2,1,74,134,24,38,4,8,1,0,0,0,7,3,7,2,0,1,0,0,0,0,0,0,0,0,7,2,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,10,0,16484,8074,8410,5429,5521,1889,2036,570,686,83,32,10,7,93,128,5511,5632,1923,2086,624,752,105,59,19,17,7945,8290,5342,5440,1875,2021,555,669,81,31,6,7,86,122,5419,5546,1906,2069,605,730,100,56,13,15,129,120,87,81,14,15,15,17,2,1,4,0,7,6,92,86,17,17,19,22,5,3,6,2 -050,01,129,Alabama,Washington County,10,1,884,427,457,290,301,107,124,14,25,0,0,0,0,16,7,304,307,117,128,21,26,4,3,1,0,419,448,282,295,107,124,14,22,0,0,0,0,16,7,296,301,117,128,21,23,4,3,1,0,8,9,8,6,0,0,0,3,0,0,0,0,0,0,8,6,0,0,0,3,0,0,0,0 -050,01,129,Alabama,Washington County,10,2,950,462,488,310,303,93,108,48,49,2,0,1,0,8,28,318,325,97,121,52,63,4,6,1,3,453,477,302,296,93,108,47,45,2,0,1,0,8,28,310,318,97,121,51,59,4,6,1,3,9,11,8,7,0,0,1,4,0,0,0,0,0,0,8,7,0,0,1,4,0,0,0,0 -050,01,129,Alabama,Washington County,10,3,1093,567,526,348,328,131,120,48,64,33,0,0,2,7,12,355,340,133,124,52,69,34,3,0,2,560,514,342,318,131,119,47,63,33,0,0,2,7,12,349,330,133,123,51,68,34,3,0,2,7,12,6,10,0,1,1,1,0,0,0,0,0,0,6,10,0,1,1,1,0,0,0,0 -050,01,129,Alabama,Washington County,10,4,1131,598,533,359,312,138,139,61,60,32,0,1,1,7,21,366,329,141,145,63,72,34,5,1,3,584,526,351,308,138,136,57,60,31,0,1,1,6,21,357,325,141,142,59,72,32,5,1,3,14,7,8,4,0,3,4,0,1,0,0,0,1,0,9,4,0,3,4,0,2,0,0,0 -050,01,129,Alabama,Washington County,10,5,984,531,453,292,257,181,147,47,41,5,3,1,0,5,5,297,262,182,150,50,42,6,4,1,0,525,444,290,252,179,145,46,40,5,3,1,0,4,4,294,256,179,147,49,41,6,4,1,0,6,9,2,5,2,2,1,1,0,0,0,0,1,1,3,6,3,3,1,1,0,0,0,0 -050,01,129,Alabama,Washington County,10,6,972,513,459,334,312,150,102,23,40,0,0,1,1,5,4,338,315,151,105,25,42,2,2,3,2,503,450,327,305,149,102,22,39,0,0,0,1,5,3,331,307,150,104,24,40,2,1,2,1,10,9,7,7,1,0,1,1,0,0,1,0,0,1,7,8,1,1,1,2,0,1,1,1 -050,01,129,Alabama,Washington County,10,7,865,434,431,257,271,109,99,50,53,8,2,1,1,9,5,262,276,110,101,55,56,13,2,3,1,428,424,253,265,108,99,50,52,8,2,0,1,9,5,258,270,109,101,55,55,13,2,2,1,6,7,4,6,1,0,0,1,0,0,1,0,0,0,4,6,1,0,0,1,0,0,1,0 -050,01,129,Alabama,Washington County,10,8,901,433,468,289,297,91,110,47,53,0,3,2,0,4,5,292,302,93,112,49,55,0,3,3,1,414,462,278,292,90,110,43,52,0,3,0,0,3,5,281,297,92,112,44,54,0,3,0,1,19,6,11,5,1,0,4,1,0,0,2,0,1,0,11,5,1,0,5,1,0,0,3,0 -050,01,129,Alabama,Washington County,10,9,945,434,511,308,313,102,129,23,47,0,16,0,1,1,5,309,318,102,131,23,49,1,17,0,1,429,501,304,305,102,129,22,47,0,15,0,1,1,4,305,309,102,131,22,48,1,16,0,1,5,10,4,8,0,0,1,0,0,1,0,0,0,1,4,9,0,0,1,1,0,1,0,0 -050,01,129,Alabama,Washington County,10,10,1141,551,590,380,393,120,150,41,40,0,2,0,0,10,5,389,397,123,152,49,42,1,3,0,2,542,582,375,390,117,148,41,38,0,2,0,0,9,4,383,394,120,150,48,39,1,2,0,1,9,8,5,3,3,2,0,2,0,0,0,0,1,1,6,3,3,2,1,3,0,1,0,1 -050,01,129,Alabama,Washington County,10,11,1155,578,577,423,396,110,126,40,49,2,1,2,0,1,5,424,400,111,129,41,52,2,2,2,0,570,573,417,395,109,125,40,49,1,1,2,0,1,3,418,397,110,128,41,50,1,2,2,0,8,4,6,1,1,1,0,0,1,0,0,0,0,2,6,3,1,1,0,2,1,0,0,0 -050,01,129,Alabama,Washington County,10,12,1234,598,636,421,424,144,166,29,35,0,2,0,1,4,8,425,431,145,167,31,42,0,3,1,1,594,630,418,419,144,165,28,35,0,2,0,1,4,8,422,426,145,166,30,42,0,3,1,1,4,6,3,5,0,1,1,0,0,0,0,0,0,0,3,5,0,1,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,10,13,1159,544,615,383,387,130,173,29,48,0,1,0,0,2,6,385,392,130,176,31,51,1,2,1,0,536,611,380,385,126,172,29,47,0,1,0,0,1,6,381,390,126,175,30,50,1,2,1,0,8,4,3,2,4,1,0,1,0,0,0,0,1,0,4,2,4,1,1,1,0,0,0,0 -050,01,129,Alabama,Washington County,10,14,1014,494,520,345,348,111,131,36,35,0,1,0,0,2,5,346,353,112,132,37,39,1,2,0,0,491,517,344,347,111,130,35,34,0,1,0,0,1,5,345,352,111,131,36,38,0,2,0,0,3,3,1,1,0,1,1,1,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0 -050,01,129,Alabama,Washington County,10,15,820,384,436,292,329,67,83,18,20,1,0,0,0,6,4,298,332,69,84,24,23,2,1,1,0,381,431,291,325,66,82,18,20,1,0,0,0,5,4,296,328,67,83,23,23,1,1,0,0,3,5,1,4,1,1,0,0,0,0,0,0,1,0,2,4,2,1,1,0,1,0,1,0 -050,01,129,Alabama,Washington County,10,16,543,239,304,180,238,48,51,7,13,0,0,1,0,3,2,183,240,48,51,10,15,0,0,1,0,237,300,178,235,48,51,7,12,0,0,1,0,3,2,181,237,48,51,10,14,0,0,1,0,2,4,2,3,0,0,0,1,0,0,0,0,0,0,2,3,0,0,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,10,17,390,174,216,135,167,33,42,5,7,0,0,0,0,1,0,135,167,34,42,6,7,0,0,0,0,172,214,133,166,33,41,5,7,0,0,0,0,1,0,133,166,34,41,6,7,0,0,0,0,2,2,2,1,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,10,18,303,113,190,83,145,24,36,4,7,0,1,0,0,2,1,85,146,25,36,5,7,0,1,0,1,107,186,77,142,24,35,4,7,0,1,0,0,2,1,79,143,25,35,5,7,0,1,0,1,6,4,6,3,0,1,0,0,0,0,0,0,0,0,6,3,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,11,0,16336,8011,8325,5373,5479,1871,1975,570,691,82,36,10,8,105,136,5469,5591,1907,2031,628,766,104,64,16,20,7879,8206,5286,5402,1857,1960,555,671,80,35,6,7,95,131,5373,5511,1888,2014,609,744,100,61,11,17,132,119,87,77,14,15,15,20,2,1,4,1,10,5,96,80,19,17,19,22,4,3,5,3 -050,01,129,Alabama,Washington County,11,1,890,430,460,285,306,111,105,15,29,1,1,0,0,18,19,301,321,121,118,22,34,4,6,2,1,418,450,275,302,111,105,15,23,1,1,0,0,16,19,290,317,121,118,21,28,3,6,1,1,12,10,10,4,0,0,0,6,0,0,0,0,2,0,11,4,0,0,1,6,1,0,1,0 -050,01,129,Alabama,Washington County,11,2,906,454,452,307,279,97,104,34,46,1,0,0,0,15,23,321,298,103,116,41,56,5,4,0,3,444,441,298,272,97,104,33,42,1,0,0,0,15,23,312,291,103,116,40,52,5,4,0,3,10,11,9,7,0,0,1,4,0,0,0,0,0,0,9,7,0,0,1,4,0,0,0,0 -050,01,129,Alabama,Washington County,11,3,1072,551,521,345,325,114,114,51,66,31,0,1,2,9,14,353,336,117,120,56,75,34,2,3,2,541,512,336,318,114,113,50,65,31,0,1,2,9,14,344,329,117,119,55,74,34,2,3,2,10,9,9,7,0,1,1,1,0,0,0,0,0,0,9,7,0,1,1,1,0,0,0,0 -050,01,129,Alabama,Washington County,11,4,1093,582,511,347,319,139,122,66,55,22,0,1,0,7,15,353,332,143,129,67,63,23,5,3,1,568,504,339,315,139,119,62,55,21,0,1,0,6,15,344,328,142,126,63,63,22,5,3,1,14,7,8,4,0,3,4,0,1,0,0,0,1,0,9,4,1,3,4,0,1,0,0,0 -050,01,129,Alabama,Washington County,11,5,956,498,458,271,266,164,133,43,48,15,2,1,1,4,8,275,273,165,137,47,52,15,3,1,1,491,447,269,259,162,131,42,47,15,2,1,1,2,7,271,265,162,134,44,51,15,3,1,1,7,11,2,7,2,2,1,1,0,0,0,0,2,1,4,8,3,3,3,1,0,0,0,0 -050,01,129,Alabama,Washington County,11,6,1001,539,462,340,304,159,110,32,39,0,2,0,1,8,6,347,308,161,111,38,43,1,4,0,2,528,454,331,298,158,110,31,38,0,2,0,1,8,5,338,301,160,111,37,41,1,4,0,2,11,8,9,6,1,0,1,1,0,0,0,0,0,1,9,7,1,0,1,2,0,0,0,0 -050,01,129,Alabama,Washington County,11,7,824,411,413,263,265,99,99,33,44,8,2,2,0,6,3,269,268,99,101,38,45,10,2,2,0,404,406,259,259,98,99,33,43,8,2,0,0,6,3,265,262,98,101,38,44,10,2,0,0,7,7,4,6,1,0,0,1,0,0,2,0,0,0,4,6,1,0,0,1,0,0,2,0 -050,01,129,Alabama,Washington County,11,8,930,439,491,272,306,103,114,58,59,1,4,2,2,3,6,275,310,105,116,59,63,1,6,2,3,424,485,264,302,102,114,54,58,1,4,0,1,3,6,267,306,104,116,55,62,1,6,0,2,15,6,8,4,1,0,4,1,0,0,2,1,0,0,8,4,1,0,4,1,0,0,2,1 -050,01,129,Alabama,Washington County,11,9,892,420,472,306,288,89,110,23,53,0,15,0,0,2,6,308,294,89,110,24,57,1,16,0,1,413,467,301,284,89,110,22,53,0,15,0,0,1,5,302,289,89,110,23,57,0,16,0,0,7,5,5,4,0,0,1,0,0,0,0,0,1,1,6,5,0,0,1,0,1,0,0,1 -050,01,129,Alabama,Washington County,11,10,1111,539,572,366,388,123,140,42,34,0,3,0,1,8,6,373,392,126,141,45,38,3,5,0,2,531,560,362,382,120,138,42,32,0,2,0,1,7,5,368,386,122,139,45,36,3,3,0,1,8,12,4,6,3,2,0,2,0,1,0,0,1,1,5,6,4,2,0,2,0,2,0,1 -050,01,129,Alabama,Washington County,11,11,1121,555,566,410,375,102,132,36,54,2,2,2,0,3,3,413,377,102,133,38,55,3,4,2,1,549,561,406,372,101,131,36,54,1,2,2,0,3,2,409,374,101,131,38,54,2,3,2,1,6,5,4,3,1,1,0,0,1,0,0,0,0,1,4,3,1,2,0,1,1,1,0,0 -050,01,129,Alabama,Washington County,11,12,1229,604,625,414,426,152,158,32,30,0,2,0,1,6,8,420,433,153,160,35,38,2,2,0,1,599,620,409,421,152,158,32,30,0,2,0,1,6,8,415,428,153,160,35,38,2,2,0,1,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,11,13,1162,554,608,392,389,130,167,31,45,0,1,0,0,1,6,393,394,131,169,31,50,0,1,0,0,544,604,388,387,126,165,30,45,0,1,0,0,0,6,388,392,126,167,30,50,0,1,0,0,10,4,4,2,4,2,1,0,0,0,0,0,1,0,5,2,5,2,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,11,14,1007,474,533,335,347,107,140,29,39,0,1,0,0,3,6,338,353,108,142,30,43,1,1,0,0,472,529,335,346,107,139,28,37,0,1,0,0,2,6,337,352,107,141,29,41,1,1,0,0,2,4,0,1,0,1,1,2,0,0,0,0,1,0,1,1,1,1,1,2,0,0,0,0 -050,01,129,Alabama,Washington County,11,15,847,413,434,302,312,77,98,27,21,1,0,0,0,6,3,308,314,77,98,33,22,1,2,0,2,410,431,300,309,77,98,27,21,1,0,0,0,5,3,305,311,77,98,32,22,1,2,0,2,3,3,2,3,0,0,0,0,0,0,0,0,1,0,3,3,0,0,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,11,16,598,259,339,205,272,43,50,9,14,0,0,0,0,2,3,206,275,44,50,11,17,0,0,0,0,256,333,203,268,42,49,9,13,0,0,0,0,2,3,204,271,43,49,11,16,0,0,0,0,3,6,2,4,1,1,0,1,0,0,0,0,0,0,2,4,1,1,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,11,17,367,164,203,123,157,33,39,5,7,0,0,1,0,2,0,125,157,33,39,7,7,0,0,1,0,163,201,122,156,33,38,5,7,0,0,1,0,2,0,124,156,33,38,7,7,0,0,1,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,11,18,330,125,205,90,155,29,40,4,8,0,1,0,0,2,1,91,156,30,41,6,8,0,1,0,0,124,201,89,152,29,39,4,8,0,1,0,0,2,1,90,153,30,40,6,8,0,1,0,0,1,4,1,3,0,1,0,0,0,0,0,0,0,0,1,3,0,1,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,12,0,16279,7931,8348,5358,5457,1812,2000,565,700,86,38,10,10,100,143,5449,5582,1851,2061,620,776,102,64,15,21,7802,8224,5275,5380,1799,1985,548,677,84,37,6,7,90,138,5356,5501,1835,2044,595,751,99,62,11,16,129,124,83,77,13,15,17,23,2,1,4,3,10,5,93,81,16,17,25,25,3,2,4,5 -050,01,129,Alabama,Washington County,12,1,919,425,494,279,305,109,120,19,41,1,1,0,0,17,27,293,329,119,135,23,51,6,5,1,1,417,482,271,299,109,120,19,35,1,1,0,0,17,27,285,323,119,135,23,45,6,5,1,1,8,12,8,6,0,0,0,6,0,0,0,0,0,0,8,6,0,0,0,6,0,0,0,0 -050,01,129,Alabama,Washington County,12,2,891,461,430,311,272,101,103,31,36,1,0,0,2,17,17,327,287,109,114,41,44,3,1,1,3,450,419,305,268,101,103,28,31,1,0,0,0,15,17,319,283,108,114,36,39,3,1,1,1,11,11,6,4,0,0,3,5,0,0,0,2,2,0,8,4,1,0,5,5,0,0,0,2 -050,01,129,Alabama,Washington County,12,3,1037,520,517,330,325,106,100,47,69,27,0,1,2,9,21,339,343,109,112,51,76,27,8,3,5,506,504,319,315,103,100,47,66,27,0,1,2,9,21,328,333,106,112,51,73,27,8,3,5,14,13,11,10,3,0,0,3,0,0,0,0,0,0,11,10,3,0,0,3,0,0,0,0 -050,01,129,Alabama,Washington County,12,4,1060,570,490,353,298,130,125,68,53,16,0,0,0,3,14,356,310,132,130,69,61,16,3,0,1,557,483,347,294,130,122,63,53,15,0,0,0,2,14,349,306,132,127,63,61,15,3,0,1,13,7,6,4,0,3,5,0,1,0,0,0,1,0,7,4,0,3,6,0,1,0,0,0 -050,01,129,Alabama,Washington County,12,5,955,495,460,277,269,139,133,44,47,28,1,1,1,6,9,282,276,143,136,46,52,29,3,1,2,486,449,271,262,138,130,43,46,28,1,1,1,5,9,275,269,141,133,45,51,29,3,1,2,9,11,6,7,1,3,1,1,0,0,0,0,1,0,7,7,2,3,1,1,0,0,0,0 -050,01,129,Alabama,Washington County,12,6,1019,533,486,335,300,161,136,29,40,0,3,1,0,7,7,340,307,165,137,34,43,0,5,1,1,524,477,330,294,159,136,28,39,0,3,1,0,6,5,334,299,163,137,32,41,0,5,1,0,9,9,5,6,2,0,1,1,0,0,0,0,1,2,6,8,2,0,2,2,0,0,0,1 -050,01,129,Alabama,Washington County,12,7,801,408,393,262,263,104,85,28,39,8,2,2,1,4,3,266,266,104,86,32,42,8,2,2,1,402,388,258,259,104,85,28,38,8,2,0,1,4,3,262,262,104,86,32,41,8,2,0,1,6,5,4,4,0,0,0,1,0,0,2,0,0,0,4,4,0,0,0,1,0,0,2,0 -050,01,129,Alabama,Washington County,12,8,922,426,496,269,302,90,121,59,59,2,6,1,2,5,6,274,307,91,123,62,63,3,7,1,2,411,489,261,297,88,121,55,58,2,6,0,1,5,6,266,302,89,123,58,62,3,7,0,1,15,7,8,5,2,0,4,1,0,0,1,1,0,0,8,5,2,0,4,1,0,0,1,1 -050,01,129,Alabama,Washington County,12,9,873,415,458,293,283,94,104,25,53,0,11,1,0,2,7,295,289,94,106,27,58,0,11,1,1,407,453,288,279,94,104,24,53,0,11,0,0,1,6,289,284,94,105,25,58,0,11,0,1,8,5,5,4,0,0,1,0,0,0,1,0,1,1,6,5,0,1,2,0,0,0,1,0 -050,01,129,Alabama,Washington County,12,10,1060,515,545,361,370,107,127,41,39,0,7,0,1,6,1,366,370,109,128,45,39,2,8,1,2,507,535,357,365,104,126,41,37,0,6,0,1,5,0,361,365,106,126,44,37,2,6,1,1,8,10,4,5,3,1,0,2,0,1,0,0,1,1,5,5,3,2,1,2,0,2,0,1 -050,01,129,Alabama,Washington County,12,11,1105,529,576,378,372,107,147,36,53,1,1,2,0,5,3,383,375,109,147,39,54,1,3,2,1,523,570,373,369,107,145,36,53,0,1,2,0,5,2,378,371,109,145,39,53,0,3,2,1,6,6,5,3,0,2,0,0,1,0,0,0,0,1,5,4,0,2,0,1,1,0,0,0 -050,01,129,Alabama,Washington County,12,12,1246,621,625,432,440,145,141,40,33,1,3,0,0,3,8,435,447,146,144,42,39,1,4,0,0,615,621,427,436,144,141,40,33,1,3,0,0,3,8,430,443,145,144,42,39,1,4,0,0,6,4,5,4,1,0,0,0,0,0,0,0,0,0,5,4,1,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,12,13,1150,550,600,396,390,132,158,21,45,0,1,0,1,1,5,397,395,133,159,21,48,0,2,0,1,544,597,392,388,132,157,20,45,0,1,0,1,0,5,392,393,132,158,20,48,0,2,0,1,6,3,4,2,0,1,1,0,0,0,0,0,1,0,5,2,1,1,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,12,14,1022,462,560,333,349,95,162,31,41,0,0,0,0,3,8,335,356,96,164,34,48,1,0,0,0,460,555,333,347,95,161,30,39,0,0,0,0,2,8,334,354,96,163,32,46,0,0,0,0,2,5,0,2,0,1,1,2,0,0,0,0,1,0,1,2,0,1,2,2,1,0,0,0 -050,01,129,Alabama,Washington County,12,15,868,420,448,307,320,80,105,26,20,1,1,0,0,6,2,313,322,80,106,30,21,3,1,0,0,417,447,305,319,80,105,26,20,1,1,0,0,5,2,310,321,80,106,29,21,3,1,0,0,3,1,2,1,0,0,0,0,0,0,0,0,1,0,3,1,0,0,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,12,16,638,283,355,220,284,50,53,12,14,0,0,0,0,1,4,221,288,50,53,13,18,0,0,0,0,280,347,218,279,49,51,12,13,0,0,0,0,1,4,219,283,49,51,13,17,0,0,0,0,3,8,2,5,1,2,0,1,0,0,0,0,0,0,2,5,1,2,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,12,17,385,169,216,131,162,30,44,5,10,0,0,1,0,2,0,133,162,30,44,6,10,1,0,1,0,168,215,130,161,30,44,5,10,0,0,1,0,2,0,132,161,30,44,6,10,1,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,12,18,328,129,199,91,153,32,36,3,8,0,1,0,0,3,1,94,153,32,37,5,9,1,1,0,0,128,193,90,149,32,34,3,8,0,1,0,0,3,1,93,149,32,35,5,9,1,1,0,0,1,6,1,4,0,2,0,0,0,0,0,0,0,0,1,4,0,2,0,0,0,0,0,0 -050,01,129,Alabama,Washington County,13,0,15976,7802,8174,5262,5344,1777,1949,559,686,88,40,9,11,107,144,5357,5472,1817,2014,615,751,108,72,15,20,7668,8046,5178,5262,1762,1935,540,663,86,39,5,8,97,139,5267,5385,1799,1998,589,725,103,70,9,17,134,128,84,82,15,14,19,23,2,1,4,3,10,5,90,87,18,16,26,26,5,2,6,3 -050,01,129,Alabama,Washington County,13,1,914,443,471,278,287,122,120,27,37,0,1,0,0,16,26,292,306,131,136,33,48,4,9,0,0,431,461,270,281,120,120,25,33,0,1,0,0,16,26,284,300,129,136,31,44,4,9,0,0,12,10,8,6,2,0,2,4,0,0,0,0,0,0,8,6,2,0,2,4,0,0,0,0 -050,01,129,Alabama,Washington County,13,2,892,456,436,308,291,95,95,27,29,3,0,0,2,23,19,328,308,107,106,35,34,8,7,1,3,442,420,299,284,95,95,24,22,3,0,0,0,21,19,318,301,105,106,31,27,8,7,1,1,14,16,9,7,0,0,3,7,0,0,0,2,2,0,10,7,2,0,4,7,0,0,0,2 -050,01,129,Alabama,Washington County,13,3,950,474,476,295,295,95,103,47,55,24,0,1,1,12,22,307,313,98,117,53,64,27,3,2,3,460,468,282,289,94,103,47,53,24,0,1,1,12,22,294,307,97,117,53,62,27,3,2,3,14,8,13,6,1,0,0,2,0,0,0,0,0,0,13,6,1,0,0,2,0,0,0,0 -050,01,129,Alabama,Washington County,13,4,986,529,457,330,281,125,105,55,58,16,0,0,1,3,12,333,293,125,110,56,63,18,4,1,2,517,447,325,273,123,104,52,57,15,0,0,1,2,12,327,285,123,109,52,62,16,4,1,2,12,10,5,8,2,1,3,1,1,0,0,0,1,0,6,8,2,1,4,1,2,0,0,0 -050,01,129,Alabama,Washington County,13,5,923,488,435,283,253,118,121,50,51,31,0,0,2,6,8,289,261,121,122,53,54,31,2,0,4,482,425,280,247,117,118,48,50,31,0,0,2,6,8,286,255,120,119,51,53,31,2,0,4,6,10,3,6,1,3,2,1,0,0,0,0,0,0,3,6,1,3,2,1,0,0,0,0 -050,01,129,Alabama,Washington County,13,6,996,508,488,309,286,161,144,34,46,0,4,1,0,3,8,312,293,161,149,36,49,1,4,1,1,500,476,307,280,159,141,32,45,0,4,1,0,1,6,308,285,159,145,32,47,1,4,1,1,8,12,2,6,2,3,2,1,0,0,0,0,2,2,4,8,2,4,4,2,0,0,0,0 -050,01,129,Alabama,Washington County,13,7,828,425,403,281,278,105,86,23,32,10,2,1,1,5,4,286,281,107,87,24,35,11,3,2,1,419,396,276,272,105,86,23,31,10,2,0,1,5,4,281,275,107,87,24,34,11,3,1,1,6,7,5,6,0,0,0,1,0,0,1,0,0,0,5,6,0,0,0,1,0,0,1,0 -050,01,129,Alabama,Washington County,13,8,876,412,464,253,288,97,103,50,59,2,9,2,1,8,4,260,292,99,104,56,62,3,9,2,1,402,459,248,284,95,103,49,58,2,9,0,1,8,4,255,288,97,104,55,61,3,9,0,1,10,5,5,4,2,0,1,1,0,0,2,0,0,0,5,4,2,0,1,1,0,0,2,0 -050,01,129,Alabama,Washington County,13,9,867,419,448,293,277,90,107,33,50,0,6,1,1,2,7,295,284,91,110,34,52,0,8,1,1,402,445,282,275,90,107,29,50,0,6,0,0,1,7,283,282,91,110,29,52,0,8,0,0,17,3,11,2,0,0,4,0,0,0,1,1,1,0,12,2,0,0,5,0,0,0,1,1 -050,01,129,Alabama,Washington County,13,10,977,464,513,335,335,93,120,34,42,0,12,0,1,2,3,336,338,95,121,34,45,1,12,0,1,458,504,333,330,90,119,34,42,0,11,0,1,1,1,334,331,91,119,34,43,0,11,0,1,6,9,2,5,3,1,0,0,0,1,0,0,1,2,2,7,4,2,0,2,1,1,0,0 -050,01,129,Alabama,Washington County,13,11,1114,541,573,385,390,107,137,40,43,1,1,0,0,8,2,393,392,109,137,46,44,1,1,0,1,533,565,378,385,107,136,40,41,0,1,0,0,8,2,386,387,109,136,46,42,0,1,0,1,8,8,7,5,0,1,0,2,1,0,0,0,0,0,7,5,0,1,0,2,1,0,0,0 -050,01,129,Alabama,Washington County,13,12,1188,595,593,409,407,138,140,43,36,1,2,2,0,2,8,411,415,138,143,45,40,1,3,2,0,590,589,405,405,137,139,43,36,1,2,2,0,2,7,407,412,137,142,45,40,1,2,2,0,5,4,4,2,1,1,0,0,0,0,0,0,0,1,4,3,1,1,0,0,0,1,0,0 -050,01,129,Alabama,Washington County,13,13,1186,569,617,410,401,136,164,21,45,0,2,0,1,2,4,411,405,137,165,23,47,0,3,0,1,564,612,406,396,136,164,20,45,0,2,0,1,2,4,407,400,137,165,22,47,0,3,0,1,5,5,4,5,0,0,1,0,0,0,0,0,0,0,4,5,0,0,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,13,14,1008,455,553,333,346,93,153,26,45,0,0,0,0,3,9,334,355,94,154,28,50,0,2,2,1,453,548,333,343,93,153,26,43,0,0,0,0,1,9,334,352,94,154,26,48,0,2,0,1,2,5,0,3,0,0,0,2,0,0,0,0,2,0,0,3,0,0,2,2,0,0,2,0 -050,01,129,Alabama,Washington County,13,15,911,436,475,313,330,91,121,27,22,0,0,0,0,5,2,318,332,91,121,32,23,0,1,0,0,433,475,311,330,91,121,26,22,0,0,0,0,5,2,316,332,91,121,31,23,0,1,0,0,3,0,2,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0 -050,01,129,Alabama,Washington County,13,16,631,287,344,223,271,49,52,12,16,0,0,0,0,3,5,225,275,50,54,14,20,1,0,0,0,284,338,222,267,48,50,12,16,0,0,0,0,2,5,223,271,49,52,14,20,0,0,0,0,3,6,1,4,1,2,0,0,0,0,0,0,1,0,2,4,1,2,0,0,1,0,0,0 -050,01,129,Alabama,Washington County,13,17,413,178,235,136,181,31,43,8,11,0,0,1,0,2,0,137,181,32,43,10,11,0,0,1,0,176,231,134,178,31,43,8,10,0,0,1,0,2,0,135,178,32,43,10,10,0,0,1,0,2,4,2,3,0,0,0,1,0,0,0,0,0,0,2,3,0,0,0,1,0,0,0,0 -050,01,129,Alabama,Washington County,13,18,316,123,193,88,147,31,35,2,9,0,1,0,0,2,1,90,148,31,35,3,10,1,1,0,0,122,187,87,143,31,33,2,9,0,1,0,0,2,1,89,144,31,33,3,10,1,1,0,0,1,6,1,4,0,2,0,0,0,0,0,0,0,0,1,4,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,0,11670,5518,6152,1542,1590,3938,4531,6,8,1,3,2,0,29,20,1567,1602,3955,4544,21,21,6,6,3,1,5480,6118,1531,1580,3914,4507,6,8,1,3,1,0,27,20,1555,1592,3930,4520,20,21,6,6,1,1,38,34,11,10,24,24,0,0,0,0,1,0,2,0,12,10,25,24,1,0,0,0,2,0 -050,01,131,Alabama,Wilcox County,1,1,712,373,339,66,46,304,292,1,0,0,0,1,0,1,1,67,47,305,293,1,0,0,0,1,0,369,338,63,46,303,291,1,0,0,0,1,0,1,1,64,47,304,292,1,0,0,0,1,0,4,1,3,0,1,1,0,0,0,0,0,0,0,0,3,0,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,2,870,435,435,79,80,353,354,0,0,0,0,0,0,3,1,82,80,355,355,0,1,1,0,0,0,433,433,79,78,351,354,0,0,0,0,0,0,3,1,82,78,353,355,0,1,1,0,0,0,2,2,0,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,3,970,520,450,117,99,398,348,1,0,0,0,0,0,4,3,121,101,399,349,4,3,0,0,0,0,515,447,116,98,394,346,1,0,0,0,0,0,4,3,120,100,395,347,4,3,0,0,0,0,5,3,1,1,4,2,0,0,0,0,0,0,0,0,1,1,4,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,4,936,489,447,95,72,389,373,0,0,0,0,0,0,5,2,100,74,392,375,4,1,0,0,0,0,485,447,95,72,385,373,0,0,0,0,0,0,5,2,100,74,388,375,4,1,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,5,607,300,307,51,52,244,253,0,0,0,0,0,0,5,2,56,53,248,255,2,0,1,1,0,0,298,306,50,52,243,252,0,0,0,0,0,0,5,2,55,53,247,254,2,0,1,1,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,6,596,290,306,60,51,229,255,0,0,0,0,1,0,0,0,60,51,229,255,0,0,0,0,1,0,285,303,57,49,228,254,0,0,0,0,0,0,0,0,57,49,228,254,0,0,0,0,0,0,5,3,3,2,1,1,0,0,0,0,1,0,0,0,3,2,1,1,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,1,7,643,279,364,69,70,209,293,0,0,0,0,0,0,1,1,70,70,209,294,0,0,0,1,1,0,278,364,69,70,209,293,0,0,0,0,0,0,0,1,69,70,209,294,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,1,8,664,307,357,70,70,235,287,1,0,0,0,0,0,1,0,70,70,236,287,1,0,1,0,0,0,306,354,70,69,234,285,1,0,0,0,0,0,1,0,70,69,235,285,1,0,1,0,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,9,686,313,373,87,102,223,268,0,1,0,0,0,0,3,2,89,104,225,269,3,3,0,0,0,0,310,370,86,102,222,265,0,1,0,0,0,0,2,2,88,104,223,266,2,3,0,0,0,0,3,3,1,0,1,3,0,0,0,0,0,0,1,0,1,0,2,3,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,10,767,348,419,91,93,257,323,0,1,0,0,0,0,0,2,91,94,257,324,0,2,0,0,0,1,344,416,89,91,255,322,0,1,0,0,0,0,0,2,89,92,255,323,0,2,0,0,0,1,4,3,2,2,2,1,0,0,0,0,0,0,0,0,2,2,2,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,11,897,417,480,128,139,286,337,1,1,1,0,0,0,1,3,129,140,286,339,2,4,1,0,0,0,417,477,128,138,286,335,1,1,1,0,0,0,1,3,129,139,286,337,2,4,1,0,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,12,850,407,443,157,135,247,304,1,1,0,1,0,0,2,2,158,136,248,305,3,2,0,2,0,0,403,438,157,135,243,299,1,1,0,1,0,0,2,2,158,136,244,300,3,2,0,2,0,0,4,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,13,720,351,369,133,128,216,239,0,1,0,1,0,0,2,0,135,128,217,239,0,1,1,1,0,0,351,367,133,127,216,238,0,1,0,1,0,0,2,0,135,127,217,238,0,1,1,1,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,14,527,250,277,121,121,127,155,1,0,0,1,0,0,1,0,121,121,128,155,1,0,1,1,0,0,248,275,121,121,125,153,1,0,0,1,0,0,1,0,121,121,126,153,1,0,1,1,0,0,2,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,15,444,187,257,96,118,91,139,0,0,0,0,0,0,0,0,96,118,91,139,0,0,0,0,0,0,187,255,96,118,91,137,0,0,0,0,0,0,0,0,96,118,91,137,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,16,346,122,224,55,85,67,138,0,1,0,0,0,0,0,0,55,85,67,138,0,1,0,0,0,0,121,224,55,85,66,138,0,1,0,0,0,0,0,0,55,85,66,138,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,17,206,69,137,43,65,26,71,0,0,0,0,0,0,0,1,43,66,26,71,0,1,0,0,0,0,69,137,43,65,26,71,0,0,0,0,0,0,0,1,43,66,26,71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,1,18,229,61,168,24,64,37,102,0,2,0,0,0,0,0,0,24,64,37,102,0,2,0,0,0,0,61,167,24,64,37,101,0,2,0,0,0,0,0,0,24,64,37,101,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,0,11664,5515,6149,1540,1586,3937,4532,6,8,1,3,2,0,29,20,1565,1598,3954,4545,21,21,6,6,3,1,5477,6115,1529,1576,3913,4508,6,8,1,3,1,0,27,20,1553,1588,3929,4521,20,21,6,6,1,1,38,34,11,10,24,24,0,0,0,0,1,0,2,0,12,10,25,24,1,0,0,0,2,0 -050,01,131,Alabama,Wilcox County,2,1,712,373,339,66,46,304,292,1,0,0,0,1,0,1,1,67,47,305,293,1,0,0,0,1,0,369,338,63,46,303,291,1,0,0,0,1,0,1,1,64,47,304,292,1,0,0,0,1,0,4,1,3,0,1,1,0,0,0,0,0,0,0,0,3,0,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,2,869,434,435,79,80,352,354,0,0,0,0,0,0,3,1,82,80,354,355,0,1,1,0,0,0,432,433,79,78,350,354,0,0,0,0,0,0,3,1,82,78,352,355,0,1,1,0,0,0,2,2,0,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,3,968,519,449,117,98,397,348,1,0,0,0,0,0,4,3,121,100,398,349,4,3,0,0,0,0,514,446,116,97,393,346,1,0,0,0,0,0,4,3,120,99,394,347,4,3,0,0,0,0,5,3,1,1,4,2,0,0,0,0,0,0,0,0,1,1,4,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,4,936,490,446,95,71,390,373,0,0,0,0,0,0,5,2,100,73,393,375,4,1,0,0,0,0,486,446,95,71,386,373,0,0,0,0,0,0,5,2,100,73,389,375,4,1,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,5,607,300,307,51,52,244,253,0,0,0,0,0,0,5,2,56,53,248,255,2,0,1,1,0,0,298,306,50,52,243,252,0,0,0,0,0,0,5,2,55,53,247,254,2,0,1,1,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,6,597,291,306,61,51,229,255,0,0,0,0,1,0,0,0,61,51,229,255,0,0,0,0,1,0,286,303,58,49,228,254,0,0,0,0,0,0,0,0,58,49,228,254,0,0,0,0,0,0,5,3,3,2,1,1,0,0,0,0,1,0,0,0,3,2,1,1,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,2,7,643,279,364,69,70,209,293,0,0,0,0,0,0,1,1,70,70,209,294,0,0,0,1,1,0,278,364,69,70,209,293,0,0,0,0,0,0,0,1,69,70,209,294,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,2,8,663,307,356,70,70,235,286,1,0,0,0,0,0,1,0,70,70,236,286,1,0,1,0,0,0,306,353,70,69,234,284,1,0,0,0,0,0,1,0,70,69,235,284,1,0,1,0,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,9,686,312,374,87,102,222,269,0,1,0,0,0,0,3,2,89,104,224,270,3,3,0,0,0,0,309,371,86,102,221,266,0,1,0,0,0,0,2,2,88,104,222,267,2,3,0,0,0,0,3,3,1,0,1,3,0,0,0,0,0,0,1,0,1,0,2,3,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,10,767,348,419,91,93,257,323,0,1,0,0,0,0,0,2,91,94,257,324,0,2,0,0,0,1,344,416,89,91,255,322,0,1,0,0,0,0,0,2,89,92,255,323,0,2,0,0,0,1,4,3,2,2,2,1,0,0,0,0,0,0,0,0,2,2,2,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,11,896,416,480,127,139,286,337,1,1,1,0,0,0,1,3,128,140,286,339,2,4,1,0,0,0,416,477,127,138,286,335,1,1,1,0,0,0,1,3,128,139,286,337,2,4,1,0,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,12,847,407,440,157,132,247,304,1,1,0,1,0,0,2,2,158,133,248,305,3,2,0,2,0,0,403,435,157,132,243,299,1,1,0,1,0,0,2,2,158,133,244,300,3,2,0,2,0,0,4,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,13,718,349,369,131,128,216,239,0,1,0,1,0,0,2,0,133,128,217,239,0,1,1,1,0,0,349,367,131,127,216,238,0,1,0,1,0,0,2,0,133,127,217,238,0,1,1,1,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,14,528,250,278,120,121,128,156,1,0,0,1,0,0,1,0,120,121,129,156,1,0,1,1,0,0,248,276,120,121,126,154,1,0,0,1,0,0,1,0,120,121,127,154,1,0,1,1,0,0,2,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,15,444,187,257,96,118,91,139,0,0,0,0,0,0,0,0,96,118,91,139,0,0,0,0,0,0,187,255,96,118,91,137,0,0,0,0,0,0,0,0,96,118,91,137,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,16,348,123,225,56,86,67,138,0,1,0,0,0,0,0,0,56,86,67,138,0,1,0,0,0,0,122,225,56,86,66,138,0,1,0,0,0,0,0,0,56,86,66,138,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,17,206,69,137,43,65,26,71,0,0,0,0,0,0,0,1,43,66,26,71,0,1,0,0,0,0,69,137,43,65,26,71,0,0,0,0,0,0,0,1,43,66,26,71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,2,18,229,61,168,24,64,37,102,0,2,0,0,0,0,0,0,24,64,37,102,0,2,0,0,0,0,61,167,24,64,37,101,0,2,0,0,0,0,0,0,24,64,37,101,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,0,11560,5460,6100,1525,1584,3898,4486,6,8,1,3,2,0,28,19,1549,1601,3910,4498,19,16,8,4,2,0,5420,6066,1512,1574,3874,4462,6,8,1,3,1,0,26,19,1534,1591,3885,4474,18,16,8,4,1,0,40,34,13,10,24,24,0,0,0,0,1,0,2,0,15,10,25,24,1,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,3,1,698,370,328,65,46,302,281,1,0,0,0,1,0,1,1,66,47,302,282,1,0,1,0,1,0,365,327,61,46,301,280,1,0,0,0,1,0,1,1,62,47,301,281,1,0,1,0,1,0,5,1,4,0,1,1,0,0,0,0,0,0,0,0,4,0,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,2,851,423,428,79,79,341,348,0,0,0,0,0,0,3,1,81,80,343,349,1,0,1,0,0,0,420,426,78,77,339,348,0,0,0,0,0,0,3,1,80,78,341,349,1,0,1,0,0,0,3,2,1,2,2,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,3,966,518,448,113,94,401,352,1,0,0,0,0,0,3,2,115,95,402,354,3,1,1,0,0,0,513,445,112,93,397,350,1,0,0,0,0,0,3,2,114,94,398,352,3,1,1,0,0,0,5,3,1,1,4,2,0,0,0,0,0,0,0,0,1,1,4,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,4,924,481,443,94,72,382,368,0,0,0,0,0,0,5,3,98,75,384,371,2,0,2,0,0,0,477,443,94,72,378,368,0,0,0,0,0,0,5,3,98,75,380,371,2,0,2,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,5,615,305,310,52,53,248,255,0,0,0,0,0,0,5,2,56,55,251,256,2,1,1,0,0,0,303,309,51,53,247,254,0,0,0,0,0,0,5,2,55,55,250,255,2,1,1,0,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,6,588,284,304,60,54,223,250,0,0,0,0,1,0,0,0,60,54,223,250,0,0,0,0,1,0,279,300,57,51,222,249,0,0,0,0,0,0,0,0,57,51,222,249,0,0,0,0,0,0,5,4,3,3,1,1,0,0,0,0,1,0,0,0,3,3,1,1,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,3,7,640,279,361,68,68,210,292,0,0,0,0,0,0,1,1,69,69,210,292,1,0,0,1,0,0,278,361,68,68,210,292,0,0,0,0,0,0,0,1,68,69,210,292,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,8,658,303,355,69,68,232,287,1,0,0,0,0,0,1,0,70,68,233,287,1,0,0,0,0,0,302,352,69,67,231,285,1,0,0,0,0,0,1,0,70,67,232,285,1,0,0,0,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,9,671,301,370,82,103,216,265,0,1,0,0,0,0,3,1,85,104,218,265,1,2,0,0,0,0,298,367,81,103,215,262,0,1,0,0,0,0,2,1,83,104,216,262,1,2,0,0,0,0,3,3,1,0,1,3,0,0,0,0,0,0,1,0,2,0,2,3,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,10,763,350,413,91,92,259,318,0,1,0,0,0,0,0,2,91,94,259,320,0,1,0,0,0,0,346,411,89,91,257,317,0,1,0,0,0,0,0,2,89,93,257,319,0,1,0,0,0,0,4,2,2,1,2,1,0,0,0,0,0,0,0,0,2,1,2,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,11,882,410,472,129,137,278,331,1,1,1,0,0,0,1,3,130,139,278,333,2,3,1,0,0,0,410,469,129,136,278,329,1,1,1,0,0,0,1,3,130,138,278,331,2,3,1,0,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,12,846,404,442,155,134,246,304,1,1,0,1,0,0,2,2,157,136,247,304,2,3,0,1,0,0,400,437,155,134,242,299,1,1,0,1,0,0,2,2,157,136,243,299,2,3,0,1,0,0,4,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,13,710,348,362,133,129,213,231,0,1,0,1,0,0,2,0,135,129,213,231,1,1,1,1,0,0,348,360,133,128,213,230,0,1,0,1,0,0,2,0,135,128,213,230,1,1,1,1,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,14,531,247,284,117,122,128,161,1,0,0,1,0,0,1,0,118,122,128,161,2,0,0,1,0,0,245,282,117,122,126,159,1,0,0,1,0,0,1,0,118,122,126,159,2,0,0,1,0,0,2,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,15,438,185,253,95,115,90,138,0,0,0,0,0,0,0,0,95,115,90,138,0,0,0,0,0,0,185,251,95,115,90,136,0,0,0,0,0,0,0,0,95,115,90,136,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,16,345,125,220,58,88,67,131,0,1,0,0,0,0,0,0,58,88,67,131,0,1,0,0,0,0,124,220,58,88,66,131,0,1,0,0,0,0,0,0,58,88,66,131,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,17,206,66,140,41,66,25,73,0,0,0,0,0,0,0,1,41,67,25,73,0,1,0,0,0,0,66,140,41,66,25,73,0,0,0,0,0,0,0,1,41,67,25,73,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,3,18,228,61,167,24,64,37,101,0,2,0,0,0,0,0,0,24,64,37,101,0,2,0,0,0,0,61,166,24,64,37,100,0,2,0,0,0,0,0,0,24,64,37,100,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,0,11438,5407,6031,1485,1552,3881,4445,6,10,2,5,2,0,31,19,1513,1570,3898,4452,19,22,8,7,3,0,5363,5995,1469,1542,3858,4420,6,10,2,5,1,0,27,18,1494,1559,3872,4427,18,21,7,7,1,0,44,36,16,10,23,25,0,0,0,0,1,0,4,1,19,11,26,25,1,1,1,0,2,0 -050,01,131,Alabama,Wilcox County,4,1,658,353,305,48,52,300,251,2,1,0,0,1,0,2,1,49,53,301,251,3,2,1,0,1,0,347,304,43,52,299,250,2,1,0,0,1,0,2,1,44,53,300,250,3,2,1,0,1,0,6,1,5,0,1,1,0,0,0,0,0,0,0,0,5,0,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,2,767,374,393,76,64,296,327,0,0,0,0,0,0,2,2,78,66,298,328,1,0,0,1,0,0,373,391,76,62,295,327,0,0,0,0,0,0,2,2,78,64,297,328,1,0,0,1,0,0,1,2,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,3,978,534,444,107,89,423,353,1,0,0,1,0,0,3,1,110,90,425,353,1,1,1,1,0,0,529,442,106,89,420,351,1,0,0,1,0,0,2,1,108,90,421,351,1,1,1,1,0,0,5,2,1,0,3,2,0,0,0,0,0,0,1,0,2,0,4,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,4,925,475,450,101,79,366,367,0,0,0,0,0,0,8,4,109,83,369,369,3,3,2,0,0,0,469,448,100,78,362,367,0,0,0,0,0,0,7,3,107,81,365,369,2,2,2,0,0,0,6,2,1,1,4,0,0,0,0,0,0,0,1,1,2,2,4,0,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,5,643,332,311,61,53,267,257,0,0,0,0,0,0,4,1,65,54,270,257,2,1,0,0,0,0,329,311,60,53,265,257,0,0,0,0,0,0,4,1,64,54,268,257,2,1,0,0,0,0,3,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,6,563,263,300,48,49,212,251,0,0,0,0,1,0,2,0,49,49,213,251,2,0,0,0,1,0,259,296,46,46,211,250,0,0,0,0,0,0,2,0,47,46,212,250,2,0,0,0,0,0,4,4,2,3,1,1,0,0,0,0,1,0,0,0,2,3,1,1,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,4,7,639,277,362,68,67,208,293,0,1,0,0,0,0,1,1,69,67,209,293,0,2,0,1,0,0,275,362,67,67,208,293,0,1,0,0,0,0,0,1,67,67,208,293,0,2,0,1,0,0,2,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,8,626,284,342,66,64,215,277,1,0,1,1,0,0,1,0,67,64,215,277,2,0,1,1,0,0,282,340,64,64,215,275,1,0,1,1,0,0,1,0,65,64,215,275,2,0,1,1,0,0,2,2,2,0,0,2,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,9,662,293,369,76,107,214,262,0,0,0,0,0,0,3,0,78,107,216,262,1,0,1,0,1,0,289,365,75,106,212,259,0,0,0,0,0,0,2,0,77,106,213,259,1,0,0,0,0,0,4,4,1,1,2,3,0,0,0,0,0,0,1,0,1,1,3,3,0,0,1,0,1,0 -050,01,131,Alabama,Wilcox County,4,10,751,351,400,90,88,261,307,0,2,0,0,0,0,0,3,90,91,261,308,0,4,0,0,0,0,347,398,88,87,259,306,0,2,0,0,0,0,0,3,88,90,259,307,0,4,0,0,0,0,4,2,2,1,2,1,0,0,0,0,0,0,0,0,2,1,2,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,11,843,387,456,127,125,259,327,0,1,1,0,0,0,0,3,127,128,259,329,0,2,1,0,0,0,387,454,127,124,259,326,0,1,1,0,0,0,0,3,127,127,259,328,0,2,1,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,12,877,413,464,151,131,259,329,1,1,0,1,0,0,2,2,153,133,260,330,1,2,1,1,0,0,410,458,151,131,256,323,1,1,0,1,0,0,2,2,153,133,257,324,1,2,1,1,0,0,3,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,13,738,372,366,131,135,239,229,0,1,0,1,0,0,2,0,133,135,239,229,2,1,0,1,0,0,371,363,131,134,238,227,0,1,0,1,0,0,2,0,133,134,238,227,2,1,0,1,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,14,559,250,309,116,126,132,182,1,0,0,1,0,0,1,0,117,126,133,182,1,0,0,1,0,0,248,307,116,126,130,180,1,0,0,1,0,0,1,0,117,126,131,180,1,0,0,1,0,0,2,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,15,426,189,237,96,106,93,131,0,0,0,0,0,0,0,0,96,106,93,131,0,0,0,0,0,0,189,235,96,106,93,129,0,0,0,0,0,0,0,0,96,106,93,129,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,16,343,129,214,60,92,69,121,0,1,0,0,0,0,0,0,60,92,69,121,0,1,0,0,0,0,128,214,60,92,68,121,0,1,0,0,0,0,0,0,60,92,68,121,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,17,222,69,153,38,67,31,85,0,0,0,0,0,0,0,1,38,68,31,85,0,1,0,0,0,0,69,152,38,67,31,84,0,0,0,0,0,0,0,1,38,68,31,84,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,4,18,218,62,156,25,58,37,96,0,2,0,0,0,0,0,0,25,58,37,96,0,2,0,0,0,0,62,155,25,58,37,95,0,2,0,0,0,0,0,0,25,58,37,95,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,0,11304,5320,5984,1508,1575,3766,4367,5,11,4,6,2,0,35,25,1537,1598,3785,4379,21,22,12,12,2,1,5272,5945,1489,1562,3745,4342,5,11,2,6,1,0,30,24,1514,1584,3761,4354,19,21,9,11,1,1,48,39,19,13,21,25,0,0,2,0,1,0,5,1,23,14,24,25,2,1,3,1,1,0 -050,01,131,Alabama,Wilcox County,5,1,646,344,302,44,48,294,251,0,1,2,0,0,0,4,2,47,50,296,252,1,1,4,1,0,0,338,300,40,46,294,251,0,1,0,0,0,0,4,2,43,48,296,252,1,1,2,1,0,0,6,2,4,2,0,0,0,0,2,0,0,0,0,0,4,2,0,0,0,0,2,0,0,0 -050,01,131,Alabama,Wilcox County,5,2,740,363,377,78,62,281,313,1,0,0,0,1,0,2,2,79,64,282,314,2,1,1,0,1,0,359,373,75,59,280,312,1,0,0,0,1,0,2,2,76,61,281,313,2,1,1,0,1,0,4,4,3,3,1,1,0,0,0,0,0,0,0,0,3,3,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,3,946,487,459,101,102,382,355,1,0,0,1,0,0,3,1,104,103,385,355,1,1,0,1,0,0,481,458,99,102,379,354,1,0,0,1,0,0,2,1,101,103,381,354,1,1,0,1,0,0,6,1,2,0,3,1,0,0,0,0,0,0,1,0,3,0,4,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,4,883,456,427,105,81,346,341,0,0,0,0,0,0,5,5,109,86,349,344,2,2,2,2,0,0,452,424,104,80,344,340,0,0,0,0,0,0,4,4,107,84,347,343,2,1,1,1,0,0,4,3,1,1,2,1,0,0,0,0,0,0,1,1,2,2,2,1,0,1,1,1,0,0 -050,01,131,Alabama,Wilcox County,5,5,686,348,338,70,56,272,279,0,0,0,1,0,0,6,2,76,58,276,280,3,0,0,2,0,0,345,337,70,56,269,278,0,0,0,1,0,0,6,2,76,58,273,279,3,0,0,2,0,0,3,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,6,539,247,292,50,54,193,237,0,0,0,0,1,0,3,1,52,55,195,238,2,0,0,0,1,0,242,289,47,51,192,237,0,0,0,0,0,0,3,1,49,52,194,238,2,0,0,0,0,0,5,3,3,3,1,0,0,0,0,0,1,0,0,0,3,3,1,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,5,7,666,299,367,76,71,223,294,0,1,0,0,0,0,0,1,76,72,223,295,0,1,0,0,0,0,298,366,75,71,223,293,0,1,0,0,0,0,0,1,75,72,223,294,0,1,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,8,610,269,341,65,69,199,271,1,0,1,1,0,0,3,0,68,69,200,271,3,0,1,1,0,0,266,339,63,69,199,269,1,0,1,1,0,0,2,0,65,69,200,269,2,0,1,1,0,0,3,2,2,0,0,2,0,0,0,0,0,0,1,0,3,0,0,2,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,9,641,282,359,82,99,197,260,0,0,0,0,0,0,3,0,85,99,198,260,0,0,2,0,0,0,278,356,81,98,195,258,0,0,0,0,0,0,2,0,83,98,195,258,0,0,2,0,0,0,4,3,1,1,2,2,0,0,0,0,0,0,1,0,2,1,3,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,10,716,337,379,91,91,246,284,0,2,0,0,0,0,0,2,91,93,246,284,0,4,0,0,0,0,334,377,89,90,245,283,0,2,0,0,0,0,0,2,89,92,245,283,0,4,0,0,0,0,3,2,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,11,803,369,434,115,118,254,310,0,2,0,0,0,0,0,4,115,121,254,313,0,4,0,1,0,0,368,431,115,117,253,308,0,2,0,0,0,0,0,4,115,120,253,311,0,4,0,1,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,12,875,407,468,148,145,254,320,1,1,1,0,0,0,3,2,150,147,255,320,3,1,2,1,0,1,405,463,148,145,253,315,1,1,1,0,0,0,2,2,150,147,253,315,2,1,2,1,0,1,2,5,0,0,1,5,0,0,0,0,0,0,1,0,0,0,2,5,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,13,724,363,361,134,128,227,230,0,1,0,2,0,0,2,0,135,128,228,230,2,1,0,2,0,0,360,359,134,128,224,228,0,1,0,2,0,0,2,0,135,128,225,228,2,1,0,2,0,0,3,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,14,622,289,333,124,130,163,200,1,0,0,1,0,0,1,2,125,131,163,201,2,2,0,1,0,0,287,330,124,129,161,198,1,0,0,1,0,0,1,2,125,130,161,199,2,2,0,1,0,0,2,3,0,1,2,2,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,15,396,183,213,93,96,90,117,0,0,0,0,0,0,0,0,93,96,90,117,0,0,0,0,0,0,183,211,93,96,90,115,0,0,0,0,0,0,0,0,93,96,90,115,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,16,354,142,212,70,96,72,115,0,1,0,0,0,0,0,0,70,96,72,115,0,1,0,0,0,0,141,212,70,96,71,115,0,1,0,0,0,0,0,0,70,96,71,115,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,17,231,71,160,34,71,37,89,0,0,0,0,0,0,0,0,34,71,37,89,0,0,0,0,0,0,71,159,34,71,37,88,0,0,0,0,0,0,0,0,34,71,37,88,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,5,18,226,64,162,28,58,36,101,0,2,0,0,0,0,0,1,28,59,36,101,0,3,0,0,0,0,64,161,28,58,36,100,0,2,0,0,0,0,0,1,28,59,36,100,0,3,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,0,11148,5299,5849,1502,1547,3740,4260,6,11,8,5,2,0,41,26,1535,1570,3762,4275,23,23,15,8,6,0,5241,5807,1478,1528,3717,4238,6,11,4,5,1,0,35,25,1507,1550,3736,4253,20,23,9,7,5,0,58,42,24,19,23,22,0,0,4,0,1,0,6,1,28,20,26,22,3,0,6,1,1,0 -050,01,131,Alabama,Wilcox County,6,1,642,328,314,34,60,285,250,0,1,4,0,0,0,5,3,39,63,287,252,1,2,6,0,0,0,321,309,31,55,285,250,0,1,0,0,0,0,5,3,36,58,287,252,1,2,2,0,0,0,7,5,3,5,0,0,0,0,4,0,0,0,0,0,3,5,0,0,0,0,4,0,0,0 -050,01,131,Alabama,Wilcox County,6,2,710,347,363,77,59,267,303,1,0,0,0,1,0,1,1,78,60,268,303,1,1,0,0,1,0,342,359,73,55,266,303,1,0,0,0,1,0,1,1,74,56,267,303,1,1,0,0,1,0,5,4,4,4,1,0,0,0,0,0,0,0,0,0,4,4,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,3,922,480,442,101,88,374,351,1,0,0,1,0,0,4,2,104,90,376,353,3,0,0,1,1,0,473,440,96,87,373,350,1,0,0,1,0,0,3,2,99,89,374,352,2,0,0,1,1,0,7,2,5,1,1,1,0,0,0,0,0,0,1,0,5,1,2,1,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,4,873,474,399,116,81,352,315,0,0,0,0,0,0,6,3,122,83,356,317,1,0,1,2,0,0,466,396,116,80,346,314,0,0,0,0,0,0,4,2,120,81,349,316,0,0,1,1,0,0,8,3,0,1,6,1,0,0,0,0,0,0,2,1,2,2,7,1,1,0,0,1,0,0 -050,01,131,Alabama,Wilcox County,6,5,712,368,344,72,48,289,293,0,0,0,0,0,0,7,3,76,50,294,295,2,1,1,1,2,0,364,344,71,48,286,293,0,0,0,0,0,0,7,3,75,50,291,295,2,1,1,1,2,0,4,0,1,0,3,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,6,532,245,287,38,49,200,236,0,0,2,0,0,0,5,2,42,51,203,237,2,1,3,0,0,0,240,283,34,46,199,235,0,0,2,0,0,0,5,2,38,48,202,236,2,1,3,0,0,0,5,4,4,3,1,1,0,0,0,0,0,0,0,0,4,3,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,7,638,298,340,76,71,221,267,0,1,0,0,1,0,0,1,76,72,221,268,0,1,0,0,1,0,295,339,74,71,221,266,0,1,0,0,0,0,0,1,74,72,221,267,0,1,0,0,0,0,3,1,2,0,0,1,0,0,0,0,1,0,0,0,2,0,0,1,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,6,8,590,244,346,62,77,177,268,2,0,1,1,0,0,2,0,64,77,177,268,3,0,2,1,0,0,241,345,60,77,177,267,2,0,1,1,0,0,1,0,61,77,177,267,3,0,1,1,0,0,3,1,2,0,0,1,0,0,0,0,0,0,1,0,3,0,0,1,0,0,1,0,0,0 -050,01,131,Alabama,Wilcox County,6,9,660,297,363,92,92,202,271,0,0,0,0,0,0,3,0,93,92,204,271,2,0,1,0,0,0,293,358,91,90,200,268,0,0,0,0,0,0,2,0,92,90,201,268,2,0,0,0,0,0,4,5,1,2,2,3,0,0,0,0,0,0,1,0,1,2,3,3,0,0,1,0,0,0 -050,01,131,Alabama,Wilcox County,6,10,666,309,357,80,90,228,264,0,1,0,0,0,0,1,2,81,92,229,266,1,1,0,0,0,0,306,355,78,89,227,263,0,1,0,0,0,0,1,2,79,91,228,265,1,1,0,0,0,0,3,2,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,11,741,346,395,111,110,234,278,0,3,0,0,0,0,1,4,112,114,234,279,1,6,0,0,0,0,345,393,111,109,233,277,0,3,0,0,0,0,1,4,112,113,233,278,1,6,0,0,0,0,1,2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,12,862,421,441,145,140,271,300,1,0,1,0,0,0,3,1,147,140,272,301,3,1,1,0,1,0,419,437,145,140,270,296,1,0,1,0,0,0,2,1,146,140,271,297,2,1,1,0,1,0,2,4,0,0,1,4,0,0,0,0,0,0,1,0,1,0,1,4,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,13,724,362,362,141,125,219,233,0,2,0,1,0,0,2,1,143,126,220,233,1,3,0,1,0,0,359,361,141,125,216,232,0,2,0,1,0,0,2,1,143,126,217,232,1,3,0,1,0,0,3,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,14,649,303,346,118,134,183,208,1,0,0,2,0,0,1,2,119,136,183,208,2,2,0,2,0,0,302,342,118,133,182,205,1,0,0,2,0,0,1,2,119,135,182,205,2,2,0,2,0,0,1,4,0,1,1,3,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,15,395,188,207,95,89,93,118,0,0,0,0,0,0,0,0,95,89,93,118,0,0,0,0,0,0,187,206,95,89,92,117,0,0,0,0,0,0,0,0,95,89,92,117,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,16,368,146,222,75,105,71,116,0,1,0,0,0,0,0,0,75,105,71,116,0,1,0,0,0,0,145,221,75,105,70,115,0,1,0,0,0,0,0,0,75,105,70,115,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,17,235,75,160,40,67,35,93,0,0,0,0,0,0,0,0,40,67,35,93,0,0,0,0,0,0,75,159,40,67,35,92,0,0,0,0,0,0,0,0,40,67,35,92,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,6,18,229,68,161,29,62,39,96,0,2,0,0,0,0,0,1,29,63,39,97,0,3,0,0,0,0,68,160,29,62,39,95,0,2,0,0,0,0,0,1,29,63,39,96,0,3,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,0,10950,5218,5732,1478,1514,3678,4169,8,13,9,8,2,0,43,28,1520,1538,3698,4182,24,29,21,11,4,1,5153,5686,1449,1496,3653,4144,8,11,5,8,1,0,37,27,1485,1519,3669,4156,20,27,16,11,3,1,65,46,29,18,25,25,0,2,4,0,1,0,6,1,35,19,29,26,4,2,5,0,1,0 -050,01,131,Alabama,Wilcox County,7,1,644,327,317,33,64,286,248,0,1,4,0,0,0,4,4,37,68,288,251,0,1,6,1,0,0,322,314,32,61,286,248,0,1,0,0,0,0,4,4,36,65,288,251,0,1,2,1,0,0,5,3,1,3,0,0,0,0,4,0,0,0,0,0,1,3,0,0,0,0,4,0,0,0 -050,01,131,Alabama,Wilcox County,7,2,679,340,339,72,55,263,283,2,0,0,0,1,0,2,1,74,55,265,284,2,1,0,0,1,0,332,335,65,51,262,283,2,0,0,0,1,0,2,1,67,51,264,284,2,1,0,0,1,0,8,4,7,4,1,0,0,0,0,0,0,0,0,0,7,4,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,3,874,447,427,86,92,355,332,1,0,0,1,0,0,5,2,91,94,358,332,3,2,1,1,0,0,439,424,79,90,355,331,1,0,0,1,0,0,4,2,83,92,357,331,2,2,1,1,0,0,8,3,7,2,0,1,0,0,0,0,0,0,1,0,8,2,1,1,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,4,864,471,393,117,80,349,311,0,0,0,0,0,0,5,2,121,82,351,313,1,0,3,0,1,0,463,391,117,79,343,310,0,0,0,0,0,0,3,2,119,81,344,312,0,0,2,0,1,0,8,2,0,1,6,1,0,0,0,0,0,0,2,0,2,1,7,1,1,0,1,0,0,0 -050,01,131,Alabama,Wilcox County,7,5,706,367,339,74,46,286,289,0,0,0,0,0,0,7,4,81,49,290,291,3,1,1,2,0,0,362,338,73,46,282,289,0,0,0,0,0,0,7,3,80,48,286,290,3,1,1,2,0,0,5,1,1,0,4,0,0,0,0,0,0,0,0,1,1,1,4,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,6,538,255,283,47,53,200,227,0,0,2,0,0,0,6,3,53,55,202,229,2,1,5,0,1,1,249,279,42,51,199,225,0,0,2,0,0,0,6,3,48,53,201,227,2,1,5,0,1,1,6,4,5,2,1,2,0,0,0,0,0,0,0,0,5,2,1,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,7,593,286,307,76,56,209,248,0,1,0,1,1,0,0,1,76,57,209,249,0,2,0,1,1,0,282,305,73,55,209,247,0,1,0,1,0,0,0,1,73,56,209,248,0,2,0,1,0,0,4,2,3,1,0,1,0,0,0,0,1,0,0,0,3,1,0,1,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,7,8,586,243,343,58,83,179,259,2,0,1,1,0,0,3,0,61,83,181,259,3,0,1,1,0,0,238,343,56,83,177,259,2,0,1,1,0,0,2,0,58,83,178,259,3,0,1,1,0,0,5,0,2,0,2,0,0,0,0,0,0,0,1,0,3,0,3,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,9,650,302,348,90,85,208,263,1,0,0,0,0,0,3,0,93,85,208,263,3,0,1,0,0,0,298,343,89,84,206,259,1,0,0,0,0,0,2,0,91,84,206,259,2,0,1,0,0,0,4,5,1,1,2,4,0,0,0,0,0,0,1,0,2,1,2,4,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,10,634,292,342,79,86,212,253,0,1,0,0,0,0,1,2,80,87,212,254,1,3,0,0,0,0,291,339,79,85,211,251,0,1,0,0,0,0,1,2,80,86,211,252,1,3,0,0,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,11,736,333,403,102,111,229,285,0,3,1,1,0,0,1,3,103,114,230,285,0,6,1,1,0,0,330,398,100,109,228,284,0,1,1,1,0,0,1,3,101,112,229,284,0,4,1,1,0,0,3,5,2,2,1,1,0,2,0,0,0,0,0,0,2,2,1,1,0,2,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,12,795,385,410,133,132,248,274,1,2,1,0,0,0,2,2,135,134,250,274,2,4,1,0,0,0,383,408,133,132,247,272,1,2,1,0,0,0,1,2,134,134,248,272,1,4,1,0,0,0,2,2,0,0,1,2,0,0,0,0,0,0,1,0,1,0,2,2,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,13,764,375,389,159,121,214,265,0,1,0,1,0,0,2,1,161,122,214,265,1,2,1,1,0,0,372,385,159,121,211,261,0,1,0,1,0,0,2,1,161,122,211,261,1,2,1,1,0,0,3,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,14,644,308,336,114,129,193,201,0,1,0,3,0,0,1,2,115,131,193,202,1,2,0,3,0,0,307,333,114,128,192,199,0,1,0,3,0,0,1,2,115,130,192,200,1,2,0,3,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,15,433,197,236,96,98,99,138,1,0,0,0,0,0,1,0,97,98,99,138,2,0,0,0,0,0,196,235,96,98,98,137,1,0,0,0,0,0,1,0,97,98,98,137,2,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,16,357,145,212,75,100,70,112,0,0,0,0,0,0,0,0,75,100,70,112,0,0,0,0,0,0,145,210,75,100,70,110,0,0,0,0,0,0,0,0,75,100,70,110,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,17,241,76,165,35,65,41,99,0,1,0,0,0,0,0,0,35,65,41,99,0,1,0,0,0,0,75,165,35,65,40,99,0,1,0,0,0,0,0,0,35,65,40,99,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,7,18,212,69,143,32,58,37,82,0,2,0,0,0,0,0,1,32,59,37,82,0,3,0,0,0,0,69,141,32,58,37,80,0,2,0,0,0,0,0,1,32,59,37,80,0,3,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,0,10900,5195,5705,1473,1513,3655,4135,10,13,9,9,2,0,46,35,1511,1543,3682,4152,32,26,18,17,3,2,5127,5660,1443,1495,3628,4109,10,13,5,9,1,0,40,34,1476,1524,3651,4125,27,26,14,17,2,2,68,45,30,18,27,26,0,0,4,0,1,0,6,1,35,19,31,27,5,0,4,0,1,0 -050,01,131,Alabama,Wilcox County,8,1,661,337,324,41,62,287,253,0,1,4,1,0,0,5,7,46,69,289,256,2,2,5,4,0,0,333,321,41,59,287,253,0,1,0,1,0,0,5,7,46,66,289,256,2,2,1,4,0,0,4,3,0,3,0,0,0,0,4,0,0,0,0,0,0,3,0,0,0,0,4,0,0,0 -050,01,131,Alabama,Wilcox County,8,2,649,321,328,58,53,258,271,2,0,0,0,1,0,2,4,59,56,260,273,3,2,0,1,1,0,315,324,52,50,258,270,2,0,0,0,1,0,2,4,53,53,260,272,3,2,0,1,1,0,6,4,6,3,0,1,0,0,0,0,0,0,0,0,6,3,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,3,837,416,421,96,88,316,332,0,0,0,0,0,0,4,1,99,89,318,333,1,0,2,0,0,0,410,419,91,86,315,332,0,0,0,0,0,0,4,1,94,87,317,333,1,0,2,0,0,0,6,2,5,2,1,0,0,0,0,0,0,0,0,0,5,2,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,4,879,482,397,111,87,365,306,1,0,0,1,0,0,5,3,116,90,368,308,5,1,2,1,0,0,469,393,108,85,358,304,1,0,0,1,0,0,2,3,110,88,359,306,2,1,2,1,0,0,13,4,3,2,7,2,0,0,0,0,0,0,3,0,6,2,9,2,3,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,5,709,383,326,80,44,297,277,0,0,0,0,0,0,6,5,84,49,303,280,1,1,1,1,0,0,378,325,79,44,293,277,0,0,0,0,0,0,6,4,83,48,299,279,1,1,1,1,0,0,5,1,1,0,4,0,0,0,0,0,0,0,0,1,1,1,4,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,6,573,268,305,47,58,212,244,0,0,1,0,0,0,8,3,54,60,217,246,2,1,3,1,1,0,262,303,42,58,211,242,0,0,1,0,0,0,8,3,49,60,216,244,2,1,3,1,1,0,6,2,5,0,1,2,0,0,0,0,0,0,0,0,5,0,1,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,7,553,266,287,59,57,205,227,0,1,1,1,1,0,0,1,59,58,205,227,0,2,1,1,1,0,261,283,56,54,204,226,0,1,1,1,0,0,0,1,56,55,204,226,0,2,1,1,0,0,5,4,3,3,1,1,0,0,0,0,1,0,0,0,3,3,1,1,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,8,8,600,260,340,65,75,188,264,2,1,1,0,0,0,4,0,68,75,191,264,4,1,1,0,0,0,257,339,65,75,186,263,2,1,1,0,0,0,3,0,68,75,188,263,3,1,1,0,0,0,3,1,0,0,2,1,0,0,0,0,0,0,1,0,0,0,3,1,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,9,617,288,329,85,72,200,256,1,0,0,1,0,0,2,0,87,72,200,256,2,0,1,1,0,0,282,326,80,71,199,254,1,0,0,1,0,0,2,0,82,71,199,254,2,0,1,1,0,0,6,3,5,1,1,2,0,0,0,0,0,0,0,0,5,1,1,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,10,612,268,344,76,98,187,243,2,2,0,0,0,0,3,1,79,98,189,243,3,2,0,1,0,1,266,339,76,97,186,239,2,2,0,0,0,0,2,1,78,97,187,239,3,2,0,1,0,1,2,5,0,1,1,4,0,0,0,0,0,0,1,0,1,1,2,4,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,11,713,325,388,92,96,232,288,0,1,0,1,0,0,1,2,92,98,233,289,1,1,0,1,0,1,321,387,90,95,230,288,0,1,0,1,0,0,1,2,90,97,231,289,1,1,0,1,0,1,4,1,2,1,2,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,12,770,375,395,135,124,236,266,1,2,2,0,0,0,1,3,136,125,236,269,2,3,2,1,0,0,374,393,135,123,236,265,1,2,2,0,0,0,0,3,135,124,236,268,1,3,2,1,0,0,1,2,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,13,786,380,406,162,143,216,259,0,1,0,1,0,0,2,2,163,145,217,259,2,3,0,1,0,0,376,401,162,143,212,254,0,1,0,1,0,0,2,2,163,145,213,254,2,3,0,1,0,0,4,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,14,654,319,335,117,125,200,205,0,1,0,2,0,0,2,2,119,127,200,205,2,3,0,2,0,0,319,333,117,124,200,204,0,1,0,2,0,0,2,2,119,126,200,204,2,3,0,2,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,15,459,208,251,99,108,107,142,1,0,0,1,0,0,1,0,100,108,107,142,2,0,0,1,0,0,206,249,99,108,105,140,1,0,0,1,0,0,1,0,100,108,105,140,2,0,0,1,0,0,2,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,16,361,151,210,79,95,72,115,0,0,0,0,0,0,0,0,79,95,72,115,0,0,0,0,0,0,151,208,79,95,72,113,0,0,0,0,0,0,0,0,79,95,72,113,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,17,258,83,175,38,72,45,102,0,1,0,0,0,0,0,0,38,72,45,102,0,1,0,0,0,0,82,175,38,72,44,102,0,1,0,0,0,0,0,0,38,72,44,102,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,8,18,209,65,144,33,56,32,85,0,2,0,0,0,0,0,1,33,57,32,85,0,3,0,0,0,0,65,142,33,56,32,83,0,2,0,0,0,0,0,1,33,57,32,83,0,3,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,0,10860,5157,5703,1469,1513,3615,4124,10,14,14,14,2,0,47,38,1510,1547,3635,4146,32,28,24,20,5,2,5073,5650,1426,1490,3587,4096,10,13,10,14,1,0,39,37,1460,1523,3602,4118,28,26,20,20,3,2,84,53,43,23,28,28,0,1,4,0,1,0,8,1,50,24,33,28,4,2,4,0,2,0 -050,01,131,Alabama,Wilcox County,9,1,693,352,341,61,65,278,268,0,0,4,1,0,0,9,7,69,72,284,271,4,1,5,3,0,1,342,335,57,62,278,265,0,0,0,1,0,0,7,7,63,69,283,268,2,1,1,3,0,1,10,6,4,3,0,3,0,0,4,0,0,0,2,0,6,3,1,3,2,0,4,0,0,0 -050,01,131,Alabama,Wilcox County,9,2,638,322,316,51,65,264,246,2,1,1,0,1,0,3,4,54,69,264,248,4,2,2,1,1,0,315,309,44,58,264,246,2,1,1,0,1,0,3,4,47,62,264,248,4,2,2,1,1,0,7,7,7,7,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,3,767,379,388,95,76,282,307,0,0,1,1,0,0,1,4,96,80,282,310,0,1,2,2,0,0,369,386,86,74,281,307,0,0,1,1,0,0,1,4,87,78,281,310,0,1,2,2,0,0,10,2,9,2,1,0,0,0,0,0,0,0,0,0,9,2,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,4,873,471,402,101,79,367,319,1,1,0,1,0,0,2,2,103,81,368,321,2,1,0,1,0,0,460,397,97,77,362,317,1,0,0,1,0,0,0,2,97,79,362,319,1,0,0,1,0,0,11,5,4,2,5,2,0,1,0,0,0,0,2,0,6,2,6,2,1,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,5,713,356,357,76,60,272,290,0,0,0,1,0,0,8,6,84,65,277,293,2,2,1,2,0,1,346,355,72,59,267,290,0,0,0,1,0,0,7,5,79,63,271,293,2,1,1,2,0,1,10,2,4,1,5,0,0,0,0,0,0,0,1,1,5,2,6,0,0,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,6,624,301,323,65,64,229,255,0,0,1,1,0,0,6,3,70,66,232,258,2,0,3,2,1,0,294,321,60,64,227,253,0,0,1,1,0,0,6,3,65,66,230,256,2,0,3,2,1,0,7,2,5,0,2,2,0,0,0,0,0,0,0,0,5,0,2,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,7,526,255,271,50,55,199,213,0,1,2,1,1,0,3,1,52,56,199,214,1,1,4,1,2,0,251,267,48,52,198,212,0,1,2,1,0,0,3,1,50,53,198,213,1,1,4,1,1,0,4,4,2,3,1,1,0,0,0,0,1,0,0,0,2,3,1,1,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,9,8,605,263,342,66,73,192,268,1,1,1,0,0,0,3,0,69,73,193,268,2,1,2,0,0,0,259,342,65,73,190,268,1,1,1,0,0,0,2,0,67,73,190,268,2,1,2,0,0,0,4,0,1,0,2,0,0,0,0,0,0,0,1,0,2,0,3,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,9,604,273,331,75,71,193,258,2,0,1,2,0,0,2,0,77,71,194,258,3,0,1,2,0,0,270,329,72,71,193,256,2,0,1,2,0,0,2,0,74,71,194,256,3,0,1,2,0,0,3,2,3,0,0,2,0,0,0,0,0,0,0,0,3,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,10,623,273,350,79,103,190,245,0,1,1,1,0,0,3,0,82,103,190,245,2,1,2,1,0,0,268,344,77,101,188,241,0,1,1,1,0,0,2,0,79,101,188,241,1,1,2,1,0,0,5,6,2,2,2,4,0,0,0,0,0,0,1,0,3,2,2,4,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,11,710,333,377,95,92,235,279,2,2,0,1,0,0,1,3,96,94,235,281,3,4,0,1,0,0,329,375,93,91,233,278,2,2,0,1,0,0,1,3,94,93,233,280,3,4,0,1,0,0,4,2,2,1,2,1,0,0,0,0,0,0,0,0,2,1,2,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,12,715,348,367,126,119,219,243,0,2,2,0,0,0,1,3,126,121,220,245,0,5,2,0,1,0,347,365,126,118,219,242,0,2,2,0,0,0,0,3,126,120,219,244,0,5,2,0,0,0,1,2,0,1,0,1,0,0,0,0,0,0,1,0,0,1,1,1,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,9,13,788,377,411,152,136,222,271,1,1,0,1,0,0,2,2,153,138,223,272,3,2,0,1,0,0,373,407,152,136,218,267,1,1,0,1,0,0,2,2,153,138,219,268,3,2,0,1,0,0,4,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,14,661,324,337,125,128,197,204,0,1,0,2,0,0,2,2,126,130,198,204,2,3,0,2,0,0,323,334,125,127,196,202,0,1,0,2,0,0,2,2,126,129,197,202,2,3,0,2,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,15,486,218,268,103,105,113,162,1,0,0,1,0,0,1,0,104,105,113,162,2,0,0,1,0,0,216,266,103,105,111,160,1,0,0,1,0,0,1,0,104,105,111,160,2,0,0,1,0,0,2,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,16,349,157,192,82,89,75,103,0,0,0,0,0,0,0,0,82,89,75,103,0,0,0,0,0,0,157,190,82,89,75,101,0,0,0,0,0,0,0,0,82,89,75,101,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,17,253,88,165,43,70,45,94,0,1,0,0,0,0,0,0,43,70,45,94,0,1,0,0,0,0,87,165,43,70,44,94,0,1,0,0,0,0,0,0,43,70,44,94,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,9,18,232,67,165,24,63,43,99,0,2,0,0,0,0,0,1,24,64,43,99,0,3,0,0,0,0,67,163,24,63,43,97,0,2,0,0,0,0,0,1,24,64,43,97,0,3,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,0,10704,5100,5604,1467,1493,3553,4046,9,15,13,10,2,0,56,40,1511,1530,3581,4065,37,26,31,20,6,4,5008,5541,1415,1462,3525,4016,9,15,9,10,1,0,49,38,1453,1497,3549,4034,34,26,26,19,5,4,92,63,52,31,28,30,0,0,4,0,1,0,7,2,58,33,32,31,3,0,5,1,1,0 -050,01,131,Alabama,Wilcox County,10,1,700,344,356,76,67,258,281,0,0,2,2,0,0,8,6,84,73,263,285,2,0,4,4,1,0,333,344,69,60,258,277,0,0,0,2,0,0,6,5,75,65,262,281,2,0,1,3,1,0,11,12,7,7,0,4,0,0,2,0,0,0,2,1,9,8,1,4,0,0,3,1,0,0 -050,01,131,Alabama,Wilcox County,10,2,634,327,307,41,63,279,236,0,1,3,0,0,0,4,7,44,68,281,240,2,2,4,3,0,1,320,300,36,56,279,236,0,1,1,0,0,0,4,7,39,61,281,240,2,2,2,3,0,1,7,7,5,7,0,0,0,0,2,0,0,0,0,0,5,7,0,0,0,0,2,0,0,0 -050,01,131,Alabama,Wilcox County,10,3,722,369,353,89,56,277,292,1,0,1,1,1,0,0,4,89,60,277,294,1,2,1,2,1,0,356,350,77,53,276,292,1,0,1,1,1,0,0,4,77,57,276,294,1,2,1,2,1,0,13,3,12,3,1,0,0,0,0,0,0,0,0,0,12,3,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,4,827,435,392,102,84,330,306,1,0,0,0,0,0,2,2,104,86,331,307,2,1,0,0,0,0,422,388,96,82,325,304,1,0,0,0,0,0,0,2,96,84,325,305,1,1,0,0,0,0,13,4,6,2,5,2,0,0,0,0,0,0,2,0,8,2,6,2,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,5,723,367,356,92,76,268,275,0,0,0,0,0,0,7,5,98,81,271,277,4,0,2,2,0,1,361,352,91,74,264,274,0,0,0,0,0,0,6,4,96,78,267,275,3,0,2,2,0,1,6,4,1,2,4,1,0,0,0,0,0,0,1,1,2,3,4,2,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,6,646,333,313,68,54,247,256,0,0,2,0,0,0,16,3,81,56,252,258,9,1,8,0,3,1,325,311,63,54,244,254,0,0,2,0,0,0,16,3,76,56,249,256,9,1,8,0,3,1,8,2,5,0,3,2,0,0,0,0,0,0,0,0,5,0,3,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,7,492,234,258,49,49,177,207,0,0,2,0,1,0,5,2,51,51,180,208,3,1,5,0,1,0,225,255,42,46,176,207,0,0,2,0,0,0,5,2,44,48,179,208,3,1,5,0,0,0,9,3,7,3,1,0,0,0,0,0,1,0,0,0,7,3,1,0,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,10,8,604,256,348,63,77,191,269,0,2,1,0,0,0,1,0,64,77,191,269,0,2,2,0,0,0,253,345,62,75,189,268,0,2,1,0,0,0,1,0,63,75,189,268,0,2,2,0,0,0,3,3,1,2,2,1,0,0,0,0,0,0,0,0,1,2,2,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,9,588,265,323,69,73,189,249,3,0,0,1,0,0,4,0,71,73,192,249,6,0,0,1,0,0,261,321,66,73,189,247,3,0,0,1,0,0,3,0,68,73,191,247,5,0,0,1,0,0,4,2,3,0,0,2,0,0,0,0,0,0,1,0,3,0,1,2,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,10,616,275,341,85,95,187,244,0,1,0,1,0,0,3,0,88,95,190,244,0,1,1,1,0,0,270,336,83,93,185,241,0,1,0,1,0,0,2,0,85,93,187,241,0,1,1,1,0,0,5,5,2,2,2,3,0,0,0,0,0,0,1,0,3,2,3,3,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,11,680,316,364,92,91,221,266,2,4,0,1,0,0,1,2,93,93,222,267,3,5,0,1,0,0,312,362,89,90,220,265,2,4,0,1,0,0,1,2,90,92,221,266,3,5,0,1,0,0,4,2,3,1,1,1,0,0,0,0,0,0,0,0,3,1,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,12,697,320,377,114,119,205,252,0,2,1,0,0,0,0,4,114,123,205,252,0,4,1,2,0,0,319,374,114,118,204,250,0,2,1,0,0,0,0,4,114,122,204,250,0,4,1,2,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,13,749,372,377,146,131,222,243,1,1,1,0,0,0,2,2,146,133,223,245,3,1,2,0,0,0,370,373,146,131,220,239,1,1,1,0,0,0,2,2,146,133,221,241,3,1,2,0,0,0,2,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,14,664,324,340,121,125,201,212,0,1,0,2,0,0,2,0,123,125,201,212,1,1,1,2,0,0,321,338,121,125,198,210,0,1,0,2,0,0,2,0,123,125,198,210,1,1,1,2,0,0,3,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,15,532,247,285,106,111,139,170,1,0,0,2,0,0,1,2,107,113,140,170,1,2,0,2,0,0,245,282,106,110,137,168,1,0,0,2,0,0,1,2,107,112,138,168,1,2,0,2,0,0,2,3,0,1,2,2,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,16,329,151,178,81,87,70,91,0,0,0,0,0,0,0,0,81,87,70,91,0,0,0,0,0,0,151,176,81,87,70,89,0,0,0,0,0,0,0,0,81,87,70,89,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,17,258,95,163,46,72,49,90,0,1,0,0,0,0,0,0,46,72,49,90,0,1,0,0,0,0,94,163,46,72,48,90,0,1,0,0,0,0,0,0,46,72,48,90,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,10,18,243,70,173,27,63,43,107,0,2,0,0,0,0,0,1,27,64,43,107,0,2,0,0,0,1,70,171,27,63,43,105,0,2,0,0,0,0,0,1,27,64,43,105,0,2,0,0,0,1,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,0,10592,5018,5574,1429,1456,3495,4050,10,14,17,12,2,0,65,42,1477,1493,3528,4078,41,28,35,17,8,2,4932,5506,1383,1423,3467,4017,10,14,13,12,1,0,58,40,1427,1459,3498,4043,37,28,28,17,5,1,86,68,46,33,28,33,0,0,4,0,1,0,7,2,50,34,30,35,4,0,7,0,3,1 -050,01,131,Alabama,Wilcox County,11,1,697,341,356,73,66,264,280,0,0,0,1,0,0,4,9,75,73,266,289,2,0,1,1,1,2,334,342,68,57,264,276,0,0,0,1,0,0,2,8,69,64,266,284,1,0,0,1,0,1,7,14,5,9,0,4,0,0,0,0,0,0,2,1,6,9,0,5,1,0,1,0,1,1 -050,01,131,Alabama,Wilcox County,11,2,637,316,321,41,70,265,241,1,1,5,1,0,0,4,8,45,78,268,247,2,3,5,2,0,0,307,310,36,62,265,238,1,1,1,1,0,0,4,8,40,70,268,244,2,3,1,2,0,0,9,11,5,8,0,3,0,0,4,0,0,0,0,0,5,8,0,3,0,0,4,0,0,0 -050,01,131,Alabama,Wilcox County,11,3,708,344,364,75,58,263,302,1,0,2,1,1,0,2,3,77,61,264,303,1,1,3,2,2,0,337,361,69,55,262,302,1,0,2,1,1,0,2,3,71,58,263,303,1,1,3,2,2,0,7,3,6,3,1,0,0,0,0,0,0,0,0,0,6,3,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,4,803,417,386,97,77,317,307,1,0,1,0,0,0,1,2,98,79,317,308,2,0,1,1,0,0,405,382,89,75,314,305,1,0,1,0,0,0,0,2,89,77,314,306,1,0,1,1,0,0,12,4,8,2,3,2,0,0,0,0,0,0,1,0,9,2,3,2,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,5,679,346,333,95,69,243,261,0,0,0,0,0,0,8,3,101,72,248,263,3,1,1,0,1,0,338,329,95,67,237,260,0,0,0,0,0,0,6,2,100,69,241,261,2,1,0,0,1,0,8,4,0,2,6,1,0,0,0,0,0,0,2,1,1,3,7,2,1,0,1,0,0,0 -050,01,131,Alabama,Wilcox County,11,6,644,339,305,68,47,255,255,0,0,0,0,0,0,16,3,78,49,265,257,10,1,3,1,1,0,332,305,64,47,252,255,0,0,0,0,0,0,16,3,74,49,262,257,10,1,3,1,1,0,7,0,4,0,3,0,0,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,7,535,263,272,51,60,193,209,0,0,4,0,0,0,15,3,60,63,201,211,7,1,10,0,1,0,256,267,45,57,192,207,0,0,4,0,0,0,15,3,54,60,200,209,7,1,10,0,1,0,7,5,6,3,1,2,0,0,0,0,0,0,0,0,6,3,1,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,8,598,274,324,68,63,205,259,0,2,0,0,1,0,0,0,68,63,205,259,0,2,0,0,1,0,267,323,64,63,203,258,0,2,0,0,0,0,0,0,64,63,203,258,0,2,0,0,0,0,7,1,4,0,2,1,0,0,0,0,1,0,0,0,4,0,2,1,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,11,9,550,238,312,65,78,165,232,3,0,2,2,0,0,3,0,67,78,166,232,5,0,3,2,1,0,234,311,62,78,165,231,3,0,2,2,0,0,2,0,64,78,165,231,5,0,2,2,0,0,4,1,3,0,0,1,0,0,0,0,0,0,1,0,3,0,1,1,0,0,1,0,1,0 -050,01,131,Alabama,Wilcox County,11,10,630,275,355,83,86,187,268,0,0,0,1,0,0,5,0,88,86,188,268,2,0,2,1,0,0,270,348,81,83,185,264,0,0,0,1,0,0,4,0,85,83,186,264,1,0,2,1,0,0,5,7,2,3,2,4,0,0,0,0,0,0,1,0,3,3,2,4,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,11,638,293,345,83,85,207,255,2,3,0,0,0,0,1,2,84,87,207,255,2,5,1,0,0,0,290,343,81,84,206,254,2,3,0,0,0,0,1,2,82,86,206,254,2,5,1,0,0,0,3,2,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,12,670,309,361,103,110,204,243,0,3,1,1,0,0,1,4,104,113,205,245,0,7,1,1,0,0,307,359,102,109,203,242,0,3,1,1,0,0,1,4,103,112,204,244,0,7,1,1,0,0,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,13,760,371,389,138,137,228,250,1,0,2,1,0,0,2,1,140,137,228,251,3,1,3,1,0,0,369,385,138,137,226,246,1,0,2,1,0,0,2,1,140,137,226,247,3,1,3,1,0,0,2,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,14,660,332,328,129,110,201,214,0,2,0,1,0,0,2,1,131,111,201,215,1,2,1,1,0,0,329,326,129,110,198,212,0,2,0,1,0,0,2,1,131,111,198,213,1,2,1,1,0,0,3,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,15,564,250,314,104,122,144,187,1,0,0,3,0,0,1,2,105,124,145,187,1,1,0,4,0,0,249,310,104,121,143,184,1,0,0,3,0,0,1,2,105,123,144,184,1,1,0,4,0,0,1,4,0,1,1,3,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,16,319,155,164,79,75,76,89,0,0,0,0,0,0,0,0,79,75,76,89,0,0,0,0,0,0,154,163,79,75,75,88,0,0,0,0,0,0,0,0,79,75,75,88,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,17,262,95,167,52,82,43,84,0,1,0,0,0,0,0,0,52,82,43,84,0,1,0,0,0,0,94,166,52,82,42,83,0,1,0,0,0,0,0,0,52,82,42,83,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,11,18,238,60,178,25,61,35,114,0,2,0,0,0,0,0,1,25,62,35,115,0,2,0,0,0,0,60,176,25,61,35,112,0,2,0,0,0,0,0,1,25,62,35,113,0,2,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,0,10396,4910,5486,1396,1450,3415,3970,9,15,15,10,2,0,73,41,1451,1487,3454,3990,40,32,39,18,4,4,4824,5415,1350,1415,3387,3936,9,15,11,10,1,0,66,39,1398,1450,3423,3955,38,31,33,17,3,2,86,71,46,35,28,34,0,0,4,0,1,0,7,2,53,37,31,35,2,1,6,1,1,2 -050,01,131,Alabama,Wilcox County,12,1,658,324,334,66,57,255,267,0,0,0,1,0,0,3,9,69,66,256,272,0,3,2,1,0,1,314,325,57,51,254,265,0,0,0,1,0,0,3,8,60,59,255,270,0,3,2,1,0,0,10,9,9,6,1,2,0,0,0,0,0,0,0,1,9,7,1,2,0,0,0,0,0,1 -050,01,131,Alabama,Wilcox County,12,2,653,331,322,40,62,281,252,0,1,5,1,0,0,5,6,45,68,283,256,2,3,7,2,0,0,322,310,37,55,281,247,0,1,1,1,0,0,3,6,40,61,283,251,1,3,2,2,0,0,9,12,3,7,0,5,0,0,4,0,0,0,2,0,5,7,0,5,1,0,5,0,0,0 -050,01,131,Alabama,Wilcox County,12,3,657,321,336,73,59,243,273,1,0,0,0,1,0,3,4,75,63,245,275,1,0,2,2,1,0,313,331,66,54,242,273,1,0,0,0,1,0,3,4,68,58,244,275,1,0,2,2,1,0,8,5,7,5,1,0,0,0,0,0,0,0,0,0,7,5,1,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,4,771,389,382,91,81,296,298,1,0,0,0,0,0,1,3,92,83,297,300,1,2,0,0,0,0,376,378,82,78,293,297,1,0,0,0,0,0,0,3,82,80,293,299,1,2,0,0,0,0,13,4,9,3,3,1,0,0,0,0,0,0,1,0,10,3,4,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,5,676,359,317,93,72,259,243,0,0,1,0,0,0,6,2,99,74,262,244,2,0,3,1,0,0,352,313,93,70,254,241,0,0,1,0,0,0,4,2,97,72,256,242,1,0,3,1,0,0,7,4,0,2,5,2,0,0,0,0,0,0,2,0,2,2,6,2,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,6,611,318,293,64,44,238,245,0,0,0,0,0,0,16,4,74,48,248,248,9,1,5,2,0,1,312,292,61,44,235,245,0,0,0,0,0,0,16,3,71,47,245,247,9,0,5,1,0,0,6,1,3,0,3,0,0,0,0,0,0,0,0,1,3,1,3,1,0,1,0,1,0,1 -050,01,131,Alabama,Wilcox County,12,7,562,279,283,55,55,196,225,0,0,4,0,0,0,24,3,71,58,208,226,10,1,14,0,1,1,273,279,50,53,195,223,0,0,4,0,0,0,24,3,66,56,207,224,10,1,14,0,1,1,6,4,5,2,1,2,0,0,0,0,0,0,0,0,5,2,1,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,8,548,241,307,59,65,181,240,0,2,0,0,1,0,0,0,59,65,181,240,0,2,0,0,1,0,238,303,57,62,181,239,0,2,0,0,0,0,0,0,57,62,181,239,0,2,0,0,0,0,3,4,2,3,0,1,0,0,0,0,1,0,0,0,2,3,0,1,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,12,9,562,238,324,66,83,166,240,2,0,1,1,0,0,3,0,69,83,166,240,4,0,2,1,0,0,232,323,63,83,164,239,2,0,1,1,0,0,2,0,65,83,164,239,4,0,1,1,0,0,6,1,3,0,2,1,0,0,0,0,0,0,1,0,4,0,2,1,0,0,1,0,0,0 -050,01,131,Alabama,Wilcox County,12,10,608,279,329,87,77,185,251,1,0,1,1,0,0,5,0,91,77,189,251,2,0,1,1,1,0,274,323,85,75,183,247,1,0,1,1,0,0,4,0,88,75,186,247,2,0,1,1,1,0,5,6,2,2,2,4,0,0,0,0,0,0,1,0,3,2,3,4,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,11,611,269,342,77,89,191,248,0,3,0,0,0,0,1,2,78,91,192,248,0,4,0,0,0,1,268,338,77,87,190,246,0,3,0,0,0,0,1,2,78,89,191,246,0,4,0,0,0,1,1,4,0,2,1,2,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,12,674,306,368,103,102,200,261,2,1,0,1,0,0,1,3,104,103,201,262,2,4,0,2,0,0,302,365,100,100,199,260,2,1,0,1,0,0,1,3,101,101,200,261,2,4,0,2,0,0,4,3,3,2,1,1,0,0,0,0,0,0,0,0,3,2,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,13,698,337,361,123,125,210,231,1,2,2,1,0,0,1,2,124,126,210,232,2,4,2,1,0,0,335,359,123,125,208,229,1,2,2,1,0,0,1,2,124,126,208,230,2,4,2,1,0,0,2,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,14,671,330,341,133,124,194,214,0,1,1,1,0,0,2,1,133,125,196,214,2,2,1,1,0,0,327,337,133,124,191,210,0,1,1,1,0,0,2,1,133,125,193,210,2,2,1,1,0,0,3,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,15,582,272,310,112,123,159,181,0,1,0,3,0,0,1,2,113,125,159,181,1,2,0,4,0,0,271,307,112,122,158,179,0,1,0,3,0,0,1,2,113,124,158,179,1,2,0,4,0,0,1,3,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,16,355,164,191,83,85,79,106,1,0,0,0,0,0,1,0,84,85,79,106,2,0,0,0,0,0,163,190,83,85,78,105,1,0,0,0,0,0,1,0,84,85,78,105,2,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,17,256,95,161,50,79,45,81,0,1,0,0,0,0,0,0,50,79,45,81,0,1,0,0,0,0,95,159,50,79,45,79,0,1,0,0,0,0,0,0,50,79,45,79,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,12,18,243,58,185,21,68,37,114,0,3,0,0,0,0,0,0,21,68,37,114,0,3,0,0,0,0,57,183,21,68,36,112,0,3,0,0,0,0,0,0,21,68,36,112,0,3,0,0,0,0,1,2,0,0,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,0,10206,4792,5414,1379,1460,3308,3882,9,15,14,9,2,0,80,48,1444,1505,3349,3908,50,33,32,17,6,2,4706,5340,1333,1423,3280,3849,9,15,10,9,1,0,73,44,1394,1464,3317,3875,47,31,27,16,3,1,86,74,46,37,28,33,0,0,4,0,1,0,7,4,50,41,32,33,3,2,5,1,3,1 -050,01,131,Alabama,Wilcox County,13,1,644,308,336,56,59,248,264,0,0,0,1,0,0,4,12,60,71,250,270,2,4,0,3,0,1,304,328,53,54,247,262,0,0,0,1,0,0,4,11,57,65,249,268,2,4,0,3,0,0,4,8,3,5,1,2,0,0,0,0,0,0,0,1,3,6,1,2,0,0,0,0,0,1 -050,01,131,Alabama,Wilcox County,13,2,642,315,327,49,72,256,246,0,1,5,1,0,0,5,7,53,79,259,250,2,3,6,3,0,0,302,311,42,63,256,241,0,1,1,1,0,0,3,5,45,68,257,245,1,2,2,2,0,0,13,16,7,9,0,5,0,0,4,0,0,0,2,2,8,11,2,5,1,1,4,1,0,0 -050,01,131,Alabama,Wilcox County,13,3,606,299,307,58,55,236,246,1,0,0,0,1,0,3,6,61,61,237,250,3,1,1,1,1,0,292,302,51,50,236,246,1,0,0,0,1,0,3,6,54,56,237,250,3,1,1,1,1,0,7,5,7,5,0,0,0,0,0,0,0,0,0,0,7,5,0,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,4,696,348,348,93,74,254,272,0,0,0,0,0,0,1,2,94,76,255,274,0,0,0,0,0,0,339,345,87,71,251,272,0,0,0,0,0,0,1,2,88,73,252,274,0,0,0,0,0,0,9,3,6,3,3,0,0,0,0,0,0,0,0,0,6,3,3,0,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,5,663,360,303,86,71,266,230,1,0,1,0,0,0,6,2,92,73,270,231,4,1,1,0,0,0,349,298,83,69,261,227,1,0,1,0,0,0,3,2,86,71,263,228,3,1,1,0,0,0,11,5,3,2,5,3,0,0,0,0,0,0,3,0,6,2,7,3,1,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,6,636,328,308,74,55,239,248,0,0,1,0,0,0,14,5,85,59,246,251,9,3,4,0,1,0,321,307,71,55,235,248,0,0,1,0,0,0,14,4,82,58,242,251,9,2,4,0,1,0,7,1,3,0,4,0,0,0,0,0,0,0,0,1,3,1,4,0,0,1,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,7,555,268,287,54,56,180,227,0,0,1,0,0,0,33,4,78,59,199,230,14,1,12,1,1,0,263,285,49,56,180,225,0,0,1,0,0,0,33,4,73,59,199,228,14,1,12,1,1,0,5,2,5,0,0,2,0,0,0,0,0,0,0,0,5,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,8,525,246,279,53,62,191,216,0,1,1,0,1,0,0,0,53,62,191,216,0,1,1,0,1,0,242,273,51,57,190,215,0,1,1,0,0,0,0,0,51,57,190,215,0,1,1,0,0,0,4,6,2,5,1,1,0,0,0,0,1,0,0,0,2,5,1,1,0,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,13,9,562,235,327,63,78,166,247,2,1,1,1,0,0,3,0,65,78,167,247,2,1,3,1,1,0,231,327,62,78,164,247,2,1,1,1,0,0,2,0,64,78,165,247,2,1,2,1,0,0,4,0,1,0,2,0,0,0,0,0,0,0,1,0,1,0,2,0,0,0,1,0,1,0 -050,01,131,Alabama,Wilcox County,13,10,565,259,306,83,67,172,239,1,0,1,0,0,0,2,0,85,67,172,239,3,0,1,0,0,0,254,301,79,65,171,236,1,0,1,0,0,0,2,0,81,65,171,236,3,0,1,0,0,0,5,5,4,2,1,3,0,0,0,0,0,0,0,0,4,2,1,3,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,11,601,254,347,81,106,170,237,0,3,0,0,0,0,3,1,83,107,172,238,1,4,0,0,1,0,252,340,81,103,169,233,0,3,0,0,0,0,2,1,83,104,171,234,0,4,0,0,0,0,2,7,0,3,1,4,0,0,0,0,0,0,1,0,0,3,1,4,1,0,0,0,1,0 -050,01,131,Alabama,Wilcox County,13,12,683,306,377,97,97,206,276,2,1,0,1,0,0,1,2,98,99,206,276,3,3,0,1,0,0,301,375,94,96,204,275,2,1,0,1,0,0,1,2,95,98,204,275,3,3,0,1,0,0,5,2,3,1,2,1,0,0,0,0,0,0,0,0,3,1,2,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,13,683,326,357,120,121,203,230,1,2,2,1,0,0,0,3,120,123,203,231,1,3,2,2,0,1,323,355,118,120,202,229,1,2,2,1,0,0,0,3,118,122,202,230,1,3,2,2,0,1,3,2,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,14,682,325,357,134,131,188,222,0,1,1,1,0,0,2,2,136,133,189,223,2,1,1,2,0,0,321,352,134,131,184,217,0,1,1,1,0,0,2,2,136,133,185,218,2,1,1,2,0,0,4,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,15,569,275,294,111,116,162,173,0,1,0,2,0,0,2,2,113,118,162,173,2,3,0,2,0,0,275,292,111,115,162,172,0,1,0,2,0,0,2,2,113,117,162,172,2,3,0,2,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,16,389,179,210,87,96,90,113,1,0,0,1,0,0,1,0,88,96,90,113,2,0,0,1,0,0,177,209,87,96,88,112,1,0,0,1,0,0,1,0,88,96,88,112,2,0,0,1,0,0,2,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,17,258,101,157,56,74,45,82,0,1,0,0,0,0,0,0,56,74,45,82,0,1,0,0,0,0,101,155,56,74,45,80,0,1,0,0,0,0,0,0,56,74,45,80,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 -050,01,131,Alabama,Wilcox County,13,18,247,60,187,24,70,36,114,0,3,0,0,0,0,0,0,24,70,36,114,0,3,0,0,0,0,59,185,24,70,35,112,0,3,0,0,0,0,0,0,24,70,35,112,0,3,0,0,0,0,1,2,0,0,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,1,0,24484,12021,12463,11648,12104,61,60,106,94,25,43,32,17,149,145,11795,12245,89,87,205,186,50,66,39,34,11666,12179,11372,11878,57,59,71,68,22,37,4,4,140,133,11512,12009,85,84,164,154,44,57,9,18,355,284,276,226,4,1,35,26,3,6,28,13,9,12,283,236,4,3,41,32,6,9,30,16 -050,01,133,Alabama,Winston County,1,1,1329,673,656,638,618,7,2,9,15,1,2,2,4,16,15,653,633,16,13,13,17,4,4,3,4,633,609,609,584,6,2,3,7,1,0,0,1,14,15,623,599,15,13,5,9,4,2,0,1,40,47,29,34,1,0,6,8,0,2,2,3,2,0,30,34,1,0,8,8,0,2,3,3 -050,01,133,Alabama,Winston County,1,2,1464,738,726,701,683,8,8,3,6,2,7,8,4,16,18,717,700,14,14,9,16,5,8,10,6,688,687,662,653,7,8,0,4,2,6,1,0,16,16,678,669,13,12,6,13,5,7,3,2,50,39,39,30,1,0,3,2,0,1,7,4,0,2,39,31,1,2,3,3,0,1,7,4 -050,01,133,Alabama,Winston County,1,3,1557,790,767,761,745,1,5,7,4,1,3,3,1,17,9,778,753,6,8,15,8,6,5,3,2,762,728,739,708,1,5,5,3,1,3,0,0,16,9,755,716,6,8,12,7,6,5,0,1,28,39,22,37,0,0,2,1,0,0,3,1,1,0,23,37,0,0,3,1,0,0,3,1 -050,01,133,Alabama,Winston County,1,4,1524,785,739,753,717,5,5,12,5,4,2,2,0,9,10,762,727,7,7,17,12,6,7,2,1,766,717,739,697,5,5,9,3,4,2,0,0,9,10,748,707,7,7,14,10,6,7,0,1,19,22,14,20,0,0,3,2,0,0,2,0,0,0,14,20,0,0,3,2,0,0,2,0 -050,01,133,Alabama,Winston County,1,5,1246,622,624,598,603,5,3,5,6,1,3,4,0,9,9,607,612,7,5,11,9,2,3,4,5,588,600,573,587,5,3,1,3,0,1,0,0,9,6,582,593,7,5,7,6,1,1,0,2,34,24,25,16,0,0,4,3,1,2,4,0,0,3,25,19,0,0,4,3,1,2,4,3 -050,01,133,Alabama,Winston County,1,6,1242,610,632,588,614,3,4,8,6,2,0,5,1,4,7,591,620,4,4,11,10,2,2,6,3,573,609,564,599,3,3,2,2,0,0,1,0,3,5,567,604,4,3,4,4,0,1,1,2,37,23,24,15,0,1,6,4,2,0,4,1,1,2,24,16,0,1,7,6,2,1,5,1 -050,01,133,Alabama,Winston County,1,7,1294,645,649,613,631,8,2,15,10,1,4,0,0,8,2,621,633,11,2,20,12,4,4,1,0,593,626,574,616,7,2,6,4,1,3,0,0,5,1,579,617,10,2,10,5,2,3,1,0,52,23,39,15,1,0,9,6,0,1,0,0,3,1,42,16,1,0,10,7,2,1,0,0 -050,01,133,Alabama,Winston County,1,8,1522,777,745,761,725,3,4,3,5,1,1,3,3,6,7,767,732,3,4,8,8,2,5,3,3,753,726,741,710,2,4,3,5,1,1,0,1,6,5,747,715,2,4,8,8,2,3,0,1,24,19,20,15,1,0,0,0,0,0,3,2,0,2,20,17,1,0,0,0,0,2,3,2 -050,01,133,Alabama,Winston County,1,9,1714,877,837,848,811,4,3,11,7,5,6,0,0,9,10,857,821,4,3,18,16,8,7,0,0,854,829,827,804,4,3,10,7,5,6,0,0,8,9,835,813,4,3,16,15,8,7,0,0,23,8,21,7,0,0,1,0,0,0,0,0,1,1,22,8,0,0,2,1,0,0,0,0 -050,01,133,Alabama,Winston County,1,10,1919,957,962,933,934,5,3,8,5,0,3,1,1,10,16,943,950,5,4,17,18,0,3,2,3,945,949,921,922,5,3,8,5,0,3,1,0,10,16,931,938,5,4,17,18,0,3,2,2,12,13,12,12,0,0,0,0,0,0,0,1,0,0,12,12,0,0,0,0,0,0,0,1 -050,01,133,Alabama,Winston County,1,11,1841,918,923,889,901,5,3,9,8,1,1,1,0,13,10,902,911,5,4,20,15,2,3,2,1,907,916,881,894,5,3,8,8,1,1,0,0,12,10,893,904,5,4,19,15,1,3,1,1,11,7,8,7,0,0,1,0,0,0,1,0,1,0,9,7,0,0,1,0,1,0,1,0 -050,01,133,Alabama,Winston County,1,12,1709,857,852,834,834,2,5,7,5,3,1,1,1,10,6,844,840,2,6,17,11,3,2,1,2,847,844,825,826,2,5,7,5,3,1,0,1,10,6,835,832,2,6,17,11,3,2,0,2,10,8,9,8,0,0,0,0,0,0,1,0,0,0,9,8,0,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,1,13,1790,887,903,870,883,3,4,5,4,1,3,2,2,6,7,876,890,3,4,11,9,1,5,2,2,882,897,866,879,3,4,5,4,1,3,1,1,6,6,872,885,3,4,11,8,1,5,1,1,5,6,4,4,0,0,0,0,0,0,1,1,0,1,4,5,0,0,0,1,0,0,1,1 -050,01,133,Alabama,Winston County,1,14,1505,707,798,698,782,1,2,2,6,2,4,0,0,4,4,702,786,1,2,6,10,3,4,0,0,706,798,697,782,1,2,2,6,2,4,0,0,4,4,701,786,1,2,6,10,3,4,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,1,15,1123,538,585,530,576,0,0,2,1,0,1,0,0,6,7,536,583,0,0,7,7,1,1,0,1,537,582,529,573,0,0,2,1,0,1,0,0,6,7,535,580,0,0,7,7,1,1,0,1,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,1,16,762,342,420,338,414,1,2,0,1,0,0,0,0,3,3,341,416,1,2,2,3,1,1,0,1,336,418,332,412,1,2,0,1,0,0,0,0,3,3,335,414,1,2,2,3,1,1,0,1,6,2,6,2,0,0,0,0,0,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,1,17,527,187,340,185,333,0,3,0,0,0,2,0,0,2,2,187,335,0,3,2,2,0,2,0,0,186,339,184,332,0,3,0,0,0,2,0,0,2,2,186,334,0,3,2,2,0,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,1,18,416,111,305,110,300,0,2,0,0,0,0,0,0,1,3,111,303,0,2,1,3,0,0,0,0,110,305,109,300,0,2,0,0,0,0,0,0,1,3,110,303,0,2,1,3,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,2,0,24488,12023,12465,11650,12106,61,60,106,94,25,43,32,17,149,145,11797,12247,89,87,205,186,50,66,39,34,11668,12181,11374,11880,57,59,71,68,22,37,4,4,140,133,11514,12011,85,84,164,154,44,57,9,18,355,284,276,226,4,1,35,26,3,6,28,13,9,12,283,236,4,3,41,32,6,9,30,16 -050,01,133,Alabama,Winston County,2,1,1330,674,656,639,618,7,2,9,15,1,2,2,4,16,15,654,633,16,13,13,17,4,4,3,4,634,609,610,584,6,2,3,7,1,0,0,1,14,15,624,599,15,13,5,9,4,2,0,1,40,47,29,34,1,0,6,8,0,2,2,3,2,0,30,34,1,0,8,8,0,2,3,3 -050,01,133,Alabama,Winston County,2,2,1465,738,727,701,684,8,8,3,6,2,7,8,4,16,18,717,701,14,14,9,16,5,8,10,6,688,688,662,654,7,8,0,4,2,6,1,0,16,16,678,670,13,12,6,13,5,7,3,2,50,39,39,30,1,0,3,2,0,1,7,4,0,2,39,31,1,2,3,3,0,1,7,4 -050,01,133,Alabama,Winston County,2,3,1557,790,767,761,745,1,5,7,4,1,3,3,1,17,9,778,753,6,8,15,8,6,5,3,2,762,728,739,708,1,5,5,3,1,3,0,0,16,9,755,716,6,8,12,7,6,5,0,1,28,39,22,37,0,0,2,1,0,0,3,1,1,0,23,37,0,0,3,1,0,0,3,1 -050,01,133,Alabama,Winston County,2,4,1524,785,739,753,717,5,5,12,5,4,2,2,0,9,10,762,727,7,7,17,12,6,7,2,1,766,717,739,697,5,5,9,3,4,2,0,0,9,10,748,707,7,7,14,10,6,7,0,1,19,22,14,20,0,0,3,2,0,0,2,0,0,0,14,20,0,0,3,2,0,0,2,0 -050,01,133,Alabama,Winston County,2,5,1246,622,624,598,603,5,3,5,6,1,3,4,0,9,9,607,612,7,5,11,9,2,3,4,5,588,600,573,587,5,3,1,3,0,1,0,0,9,6,582,593,7,5,7,6,1,1,0,2,34,24,25,16,0,0,4,3,1,2,4,0,0,3,25,19,0,0,4,3,1,2,4,3 -050,01,133,Alabama,Winston County,2,6,1244,611,633,589,615,3,4,8,6,2,0,5,1,4,7,592,621,4,4,11,10,2,2,6,3,574,610,565,600,3,3,2,2,0,0,1,0,3,5,568,605,4,3,4,4,0,1,1,2,37,23,24,15,0,1,6,4,2,0,4,1,1,2,24,16,0,1,7,6,2,1,5,1 -050,01,133,Alabama,Winston County,2,7,1295,646,649,614,631,8,2,15,10,1,4,0,0,8,2,622,633,11,2,20,12,4,4,1,0,594,626,575,616,7,2,6,4,1,3,0,0,5,1,580,617,10,2,10,5,2,3,1,0,52,23,39,15,1,0,9,6,0,1,0,0,3,1,42,16,1,0,10,7,2,1,0,0 -050,01,133,Alabama,Winston County,2,8,1522,777,745,761,725,3,4,3,5,1,1,3,3,6,7,767,732,3,4,8,8,2,5,3,3,753,726,741,710,2,4,3,5,1,1,0,1,6,5,747,715,2,4,8,8,2,3,0,1,24,19,20,15,1,0,0,0,0,0,3,2,0,2,20,17,1,0,0,0,0,2,3,2 -050,01,133,Alabama,Winston County,2,9,1714,877,837,848,811,4,3,11,7,5,6,0,0,9,10,857,821,4,3,18,16,8,7,0,0,854,829,827,804,4,3,10,7,5,6,0,0,8,9,835,813,4,3,16,15,8,7,0,0,23,8,21,7,0,0,1,0,0,0,0,0,1,1,22,8,0,0,2,1,0,0,0,0 -050,01,133,Alabama,Winston County,2,10,1919,957,962,933,934,5,3,8,5,0,3,1,1,10,16,943,950,5,4,17,18,0,3,2,3,945,949,921,922,5,3,8,5,0,3,1,0,10,16,931,938,5,4,17,18,0,3,2,2,12,13,12,12,0,0,0,0,0,0,0,1,0,0,12,12,0,0,0,0,0,0,0,1 -050,01,133,Alabama,Winston County,2,11,1841,918,923,889,901,5,3,9,8,1,1,1,0,13,10,902,911,5,4,20,15,2,3,2,1,907,916,881,894,5,3,8,8,1,1,0,0,12,10,893,904,5,4,19,15,1,3,1,1,11,7,8,7,0,0,1,0,0,0,1,0,1,0,9,7,0,0,1,0,1,0,1,0 -050,01,133,Alabama,Winston County,2,12,1708,856,852,833,834,2,5,7,5,3,1,1,1,10,6,843,840,2,6,17,11,3,2,1,2,846,844,824,826,2,5,7,5,3,1,0,1,10,6,834,832,2,6,17,11,3,2,0,2,10,8,9,8,0,0,0,0,0,0,1,0,0,0,9,8,0,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,2,13,1790,887,903,870,883,3,4,5,4,1,3,2,2,6,7,876,890,3,4,11,9,1,5,2,2,882,897,866,879,3,4,5,4,1,3,1,1,6,6,872,885,3,4,11,8,1,5,1,1,5,6,4,4,0,0,0,0,0,0,1,1,0,1,4,5,0,0,0,1,0,0,1,1 -050,01,133,Alabama,Winston County,2,14,1505,707,798,698,782,1,2,2,6,2,4,0,0,4,4,702,786,1,2,6,10,3,4,0,0,706,798,697,782,1,2,2,6,2,4,0,0,4,4,701,786,1,2,6,10,3,4,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,2,15,1123,538,585,530,576,0,0,2,1,0,1,0,0,6,7,536,583,0,0,7,7,1,1,0,1,537,582,529,573,0,0,2,1,0,1,0,0,6,7,535,580,0,0,7,7,1,1,0,1,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,2,16,762,342,420,338,414,1,2,0,1,0,0,0,0,3,3,341,416,1,2,2,3,1,1,0,1,336,418,332,412,1,2,0,1,0,0,0,0,3,3,335,414,1,2,2,3,1,1,0,1,6,2,6,2,0,0,0,0,0,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,2,17,527,187,340,185,333,0,3,0,0,0,2,0,0,2,2,187,335,0,3,2,2,0,2,0,0,186,339,184,332,0,3,0,0,0,2,0,0,2,2,186,334,0,3,2,2,0,2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,2,18,416,111,305,110,300,0,2,0,0,0,0,0,0,1,3,111,303,0,2,1,3,0,0,0,0,110,305,109,300,0,2,0,0,0,0,0,0,1,3,110,303,0,2,1,3,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,3,0,24412,11977,12435,11605,12085,59,57,105,90,25,43,32,17,151,143,11737,12219,112,110,198,181,50,55,36,20,11621,12147,11327,11851,55,56,70,67,22,37,4,4,143,132,11452,11975,103,105,159,149,46,48,8,7,356,288,278,234,4,1,35,23,3,6,28,13,8,11,285,244,9,5,39,32,4,7,28,13 -050,01,133,Alabama,Winston County,3,1,1315,662,653,629,616,7,2,9,14,1,2,1,4,15,15,642,630,14,10,13,19,6,4,2,5,625,604,601,579,6,2,3,7,1,0,0,1,14,15,613,593,12,10,7,12,6,2,1,2,37,49,28,37,1,0,6,7,0,2,1,3,1,0,29,37,2,0,6,7,0,2,1,3 -050,01,133,Alabama,Winston County,3,2,1443,722,721,688,680,7,7,3,6,2,7,7,4,15,17,698,696,18,16,10,13,5,9,7,4,674,682,650,650,6,7,0,4,2,6,1,0,15,15,660,664,17,15,7,10,5,8,1,0,48,39,38,30,1,0,3,2,0,1,6,4,0,2,38,32,1,1,3,3,0,1,6,4 -050,01,133,Alabama,Winston County,3,3,1547,783,764,752,742,1,4,7,4,1,3,4,1,18,10,767,750,10,11,17,10,4,4,5,2,751,723,727,703,1,4,5,3,1,3,0,0,17,10,741,711,9,11,14,9,4,4,1,1,32,41,25,39,0,0,2,1,0,0,4,1,1,0,26,39,1,0,3,1,0,0,4,1 -050,01,133,Alabama,Winston County,3,4,1502,776,726,746,705,5,5,10,4,3,2,2,0,10,10,755,715,7,10,16,8,6,3,2,0,759,706,733,686,5,5,8,3,3,2,0,0,10,10,742,696,7,10,14,7,6,3,0,0,17,20,13,19,0,0,2,1,0,0,2,0,0,0,13,19,0,0,2,1,0,0,2,0 -050,01,133,Alabama,Winston County,3,5,1252,627,625,601,607,5,3,6,4,1,3,5,0,9,8,610,614,7,5,12,9,2,4,5,1,593,601,578,589,5,3,1,2,0,1,0,0,9,6,587,595,7,4,7,5,1,2,0,1,34,24,23,18,0,0,5,2,1,2,5,0,0,2,23,19,0,1,5,4,1,2,5,0 -050,01,133,Alabama,Winston County,3,6,1236,608,628,586,611,3,4,8,5,2,0,5,1,4,7,590,618,5,7,9,9,3,1,5,1,571,605,562,595,3,3,2,2,0,0,1,0,3,5,565,600,4,5,3,4,1,1,1,0,37,23,24,16,0,1,6,3,2,0,4,1,1,2,25,18,1,2,6,5,2,0,4,1 -050,01,133,Alabama,Winston County,3,7,1297,642,655,612,637,7,2,15,10,1,4,0,0,7,2,618,639,10,3,18,10,3,5,0,0,590,633,573,623,6,2,6,4,1,3,0,0,4,1,577,624,8,3,7,4,2,3,0,0,52,22,39,14,1,0,9,6,0,1,0,0,3,1,41,15,2,0,11,6,1,2,0,0 -050,01,133,Alabama,Winston County,3,8,1492,765,727,748,706,3,4,3,6,1,1,3,3,7,7,755,713,5,6,7,11,2,2,3,3,739,706,726,690,2,4,3,5,1,1,0,1,7,5,733,695,4,5,7,8,2,2,0,1,26,21,22,16,1,0,0,1,0,0,3,2,0,2,22,18,1,1,0,3,0,0,3,2 -050,01,133,Alabama,Winston County,3,9,1705,876,829,848,804,4,3,10,7,6,6,0,0,8,9,855,813,7,6,16,14,6,6,0,0,853,821,827,797,4,3,9,7,6,6,0,0,7,8,833,805,6,6,15,13,6,6,0,0,23,8,21,7,0,0,1,0,0,0,0,0,1,1,22,8,1,0,1,1,0,0,0,0 -050,01,133,Alabama,Winston County,3,10,1913,959,954,933,928,5,3,9,4,0,3,1,1,11,15,943,943,8,8,18,14,0,3,1,1,946,940,920,915,5,3,9,4,0,3,1,0,11,15,930,930,8,8,18,14,0,3,1,0,13,14,13,13,0,0,0,0,0,0,0,1,0,0,13,13,0,0,0,0,0,0,0,1 -050,01,133,Alabama,Winston County,3,11,1846,912,934,883,910,5,3,8,9,1,1,1,0,14,11,896,921,7,6,21,17,1,1,1,0,901,927,875,903,5,3,7,9,1,1,0,0,13,11,887,914,7,6,19,17,1,1,0,0,11,7,8,7,0,0,1,0,0,0,1,0,1,0,9,7,0,0,2,0,0,0,1,0 -050,01,133,Alabama,Winston County,3,12,1707,859,848,834,830,2,5,8,5,3,1,1,1,11,6,843,835,6,6,17,11,3,1,1,1,849,840,825,822,2,5,8,5,3,1,0,1,11,6,834,827,6,6,17,11,3,1,0,1,10,8,9,8,0,0,0,0,0,0,1,0,0,0,9,8,0,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,3,13,1805,896,909,878,890,3,3,5,4,1,3,2,2,7,7,885,895,4,5,10,11,2,3,2,2,891,903,874,886,3,3,5,4,1,3,1,1,7,6,881,890,4,5,10,10,2,3,1,1,5,6,4,4,0,0,0,0,0,0,1,1,0,1,4,5,0,0,0,1,0,0,1,1 -050,01,133,Alabama,Winston County,3,14,1503,704,799,694,783,1,2,2,6,2,4,0,0,5,4,699,786,1,4,6,10,3,4,0,0,703,799,693,783,1,2,2,6,2,4,0,0,5,4,698,786,1,4,6,10,3,4,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,3,15,1134,540,594,533,584,0,0,2,1,0,1,0,0,5,8,537,592,1,0,6,8,1,2,1,0,539,591,532,581,0,0,2,1,0,1,0,0,5,8,536,589,1,0,6,8,1,2,1,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,3,16,769,347,422,344,416,1,2,0,1,0,0,0,0,2,3,346,419,1,2,2,4,0,0,0,0,340,420,337,414,1,2,0,1,0,0,0,0,2,3,339,417,1,2,2,4,0,0,0,0,7,2,7,2,0,0,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,3,17,533,189,344,187,337,0,3,0,0,0,2,0,0,2,2,189,339,0,3,0,1,2,3,1,0,188,343,186,336,0,3,0,0,0,2,0,0,2,2,188,338,0,3,0,1,2,3,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,3,18,413,110,303,109,299,0,2,0,0,0,0,0,0,1,2,109,301,1,2,0,2,1,0,0,0,109,303,108,299,0,2,0,0,0,0,0,0,1,2,108,301,1,2,0,2,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,4,0,24362,11989,12373,11583,12013,85,69,106,86,29,44,31,16,155,145,11731,12146,133,117,203,172,50,69,37,20,11626,12081,11298,11774,79,67,72,64,26,39,4,3,147,134,11438,11899,123,110,166,144,46,61,10,4,363,292,285,239,6,2,34,22,3,5,27,13,8,11,293,247,10,7,37,28,4,8,27,16 -050,01,133,Alabama,Winston County,4,1,1325,665,660,628,624,11,6,6,12,0,2,1,4,19,12,645,635,21,12,12,15,4,6,3,4,630,612,602,588,9,6,1,5,0,0,0,1,18,12,618,599,18,12,7,8,4,4,2,1,35,48,26,36,2,0,5,7,0,2,1,3,1,0,27,36,3,0,5,7,0,2,1,3 -050,01,133,Alabama,Winston County,4,2,1417,712,705,673,672,13,7,5,4,4,6,7,4,10,12,683,683,18,14,10,7,6,10,8,5,664,671,636,646,11,7,2,2,4,5,1,0,10,11,646,656,16,13,7,4,6,9,2,1,48,34,37,26,2,0,3,2,0,1,6,4,0,1,37,27,2,1,3,3,0,1,6,4 -050,01,133,Alabama,Winston County,4,3,1564,793,771,758,741,2,5,6,4,2,4,4,1,21,16,778,756,8,9,16,13,9,9,5,1,757,722,729,695,2,5,4,3,2,4,0,0,20,15,748,709,8,9,13,11,9,9,1,0,36,49,29,46,0,0,2,1,0,0,4,1,1,1,30,47,0,0,3,2,0,0,4,1 -050,01,133,Alabama,Winston County,4,4,1449,743,706,711,678,6,8,11,5,2,2,2,0,11,13,722,690,11,13,16,12,4,5,2,0,727,685,698,658,6,8,10,4,2,2,0,0,11,13,709,670,11,13,15,11,4,5,0,0,16,21,13,20,0,0,1,1,0,0,2,0,0,0,13,20,0,0,1,1,0,0,2,0 -050,01,133,Alabama,Winston County,4,5,1308,676,632,650,617,6,3,6,4,2,2,3,0,9,6,659,621,9,7,14,6,2,4,3,0,643,610,626,600,6,3,1,2,1,0,0,0,9,5,635,603,9,6,9,4,1,2,0,0,33,22,24,17,0,0,5,2,1,2,3,0,0,1,24,18,0,1,5,2,1,2,3,0 -050,01,133,Alabama,Winston County,4,6,1231,602,629,578,607,3,5,10,4,2,1,4,1,5,11,582,617,5,9,12,11,3,2,5,3,567,609,557,595,3,3,3,2,0,1,0,0,4,8,560,603,4,6,5,7,1,1,1,0,35,20,21,12,0,2,7,2,2,0,4,1,1,3,22,14,1,3,7,4,2,1,4,3 -050,01,133,Alabama,Winston County,4,7,1313,644,669,607,656,12,2,14,8,1,2,2,0,8,1,615,657,16,2,18,9,1,2,2,0,591,650,567,641,11,2,6,4,1,2,1,0,5,1,572,642,14,2,8,5,1,2,1,0,53,19,40,15,1,0,8,4,0,0,1,0,3,0,43,15,2,0,10,4,0,0,1,0 -050,01,133,Alabama,Winston County,4,8,1411,733,678,712,655,7,4,4,5,0,3,3,3,7,8,718,662,11,7,8,9,0,5,3,3,699,653,683,638,6,4,3,2,0,3,0,1,7,5,689,643,10,6,7,5,0,3,0,1,34,25,29,17,1,0,1,3,0,0,3,2,0,3,29,19,1,1,1,4,0,2,3,2 -050,01,133,Alabama,Winston County,4,9,1677,872,805,842,782,6,3,9,8,8,5,0,0,7,7,849,789,8,6,13,12,8,5,1,0,852,798,824,775,6,3,8,8,8,5,0,0,6,7,830,782,7,6,12,12,8,5,1,0,20,7,18,7,0,0,1,0,0,0,0,0,1,0,19,7,1,0,1,0,0,0,0,0 -050,01,133,Alabama,Winston County,4,10,1856,942,914,915,886,5,5,10,4,0,5,0,1,12,13,926,897,6,7,22,16,0,5,0,2,929,898,902,872,5,5,10,4,0,5,0,0,12,12,913,883,6,7,22,15,0,5,0,0,13,16,13,14,0,0,0,0,0,0,0,1,0,1,13,14,0,0,0,1,0,0,0,2 -050,01,133,Alabama,Winston County,4,11,1860,903,957,879,930,4,3,6,11,1,1,2,0,11,12,890,942,4,5,16,21,2,1,2,0,893,950,871,923,4,3,5,11,1,1,1,0,11,12,882,935,4,5,15,21,2,1,1,0,10,7,8,7,0,0,1,0,0,0,1,0,0,0,8,7,0,0,1,0,0,0,1,0 -050,01,133,Alabama,Winston County,4,12,1715,863,852,831,833,5,5,10,4,3,1,1,1,13,8,843,841,8,6,19,11,5,1,1,1,850,842,820,823,5,5,10,4,3,1,0,1,12,8,831,831,8,6,19,11,4,1,0,1,13,10,11,10,0,0,0,0,0,0,1,0,1,0,12,10,0,0,0,0,1,0,1,0 -050,01,133,Alabama,Winston County,4,13,1822,903,919,882,898,3,6,6,5,1,2,2,1,9,7,891,904,3,9,15,9,1,3,2,1,898,912,878,893,3,6,6,5,1,2,1,0,9,6,887,898,3,8,15,9,1,3,1,0,5,7,4,5,0,0,0,0,0,0,1,1,0,1,4,6,0,1,0,0,0,0,1,1 -050,01,133,Alabama,Winston County,4,14,1493,711,782,703,768,1,1,0,5,3,4,0,0,4,4,707,772,2,3,2,6,4,5,0,0,710,782,702,768,1,1,0,5,3,4,0,0,4,4,706,772,2,3,2,6,4,5,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,4,15,1165,544,621,537,609,0,0,3,2,0,2,0,0,4,8,541,617,0,1,7,8,0,3,0,0,543,618,536,606,0,0,3,2,0,2,0,0,4,8,540,614,0,1,7,8,0,3,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,4,16,801,376,425,373,418,1,2,0,1,0,0,0,0,2,4,375,421,1,3,2,4,0,1,0,0,369,422,366,415,1,2,0,1,0,0,0,0,2,4,368,418,1,3,2,4,0,1,0,0,7,3,7,3,0,0,0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,4,17,538,193,345,191,339,0,3,0,0,0,2,0,0,2,1,193,340,2,3,1,1,0,2,0,0,191,344,189,338,0,3,0,0,0,2,0,0,2,1,191,339,2,3,1,1,0,2,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,4,18,417,114,303,113,300,0,1,0,0,0,0,0,0,1,2,114,302,0,1,0,2,1,0,0,0,113,303,112,300,0,1,0,0,0,0,0,0,1,2,113,302,0,1,0,2,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,5,0,24194,11932,12262,11524,11909,83,66,105,86,28,43,31,16,161,142,11671,12036,132,118,207,177,49,57,38,22,11565,11952,11236,11649,76,64,72,65,25,38,4,3,152,133,11374,11769,123,112,169,152,45,50,10,8,367,310,288,260,7,2,33,21,3,5,27,13,9,9,297,267,9,6,38,25,4,7,28,14 -050,01,133,Alabama,Winston County,5,1,1236,646,590,612,562,8,5,4,8,0,2,1,2,21,11,630,571,19,12,10,12,5,4,3,3,604,536,576,515,7,5,1,4,0,0,0,1,20,11,593,524,18,12,6,8,5,2,2,2,42,54,36,47,1,0,3,4,0,2,1,1,1,0,37,47,1,0,4,4,0,2,1,1 -050,01,133,Alabama,Winston County,5,2,1386,684,702,642,672,14,4,6,7,2,3,5,6,15,10,655,681,20,9,13,12,6,4,6,6,642,661,610,641,13,4,2,4,2,2,1,0,14,10,622,650,19,9,8,9,6,3,2,0,42,41,32,31,1,0,4,3,0,1,4,6,1,0,33,31,1,0,5,3,0,1,4,6 -050,01,133,Alabama,Winston County,5,3,1580,789,791,763,758,5,5,4,5,1,4,5,1,11,18,773,776,10,11,9,14,3,5,5,3,751,750,733,721,4,5,2,3,1,4,0,0,11,17,743,738,9,11,7,11,3,5,0,2,38,41,30,37,1,0,2,2,0,0,5,1,0,1,30,38,1,0,2,3,0,0,5,1 -050,01,133,Alabama,Winston County,5,4,1413,729,684,701,659,3,8,7,4,2,4,2,0,14,9,714,667,9,14,14,8,4,6,3,1,712,655,688,631,3,7,6,4,2,4,0,0,13,9,700,639,9,13,13,8,4,6,0,1,17,29,13,28,0,1,1,0,0,0,2,0,1,0,14,28,0,1,1,0,0,0,3,0 -050,01,133,Alabama,Winston County,5,5,1299,685,614,657,597,4,5,8,5,3,2,3,0,10,5,667,602,7,7,15,6,3,4,3,0,658,592,637,580,4,5,5,2,2,0,0,0,10,5,647,585,7,7,12,3,2,2,0,0,27,22,20,17,0,0,3,3,1,2,3,0,0,0,20,17,0,0,3,3,1,2,3,0 -050,01,133,Alabama,Winston County,5,6,1242,622,620,595,599,6,4,10,4,1,2,4,1,6,10,600,606,10,9,12,9,2,5,4,1,588,598,574,584,6,3,3,2,0,2,0,0,5,7,578,590,9,6,5,5,1,4,0,0,34,22,21,15,0,1,7,2,1,0,4,1,1,3,22,16,1,3,7,4,1,1,4,1 -050,01,133,Alabama,Winston County,5,7,1285,625,660,587,650,10,2,16,6,3,0,3,0,6,2,593,652,12,3,19,7,4,0,3,0,576,640,555,633,7,2,7,3,2,0,1,0,4,2,559,635,8,3,9,4,3,0,1,0,49,20,32,17,3,0,9,3,1,0,2,0,2,0,34,17,4,0,10,3,1,0,2,0 -050,01,133,Alabama,Winston County,5,8,1384,718,666,696,638,7,6,5,7,0,4,2,2,8,9,704,647,10,11,10,11,0,5,2,2,678,640,662,621,6,6,3,3,0,4,0,0,7,6,669,627,9,10,7,6,0,4,0,0,40,26,34,17,1,0,2,4,0,0,2,2,1,3,35,20,1,1,3,5,0,1,2,2 -050,01,133,Alabama,Winston County,5,9,1654,860,794,830,772,6,3,8,7,6,4,1,1,9,7,838,779,6,5,14,11,9,4,2,2,838,784,811,762,6,3,7,7,6,4,0,1,8,7,818,769,6,5,13,11,8,4,1,2,22,10,19,10,0,0,1,0,0,0,1,0,1,0,20,10,0,0,1,0,1,0,1,0 -050,01,133,Alabama,Winston County,5,10,1809,909,900,880,874,5,4,10,5,2,4,0,1,12,12,892,885,7,5,21,16,2,4,0,2,893,888,864,864,5,4,10,5,2,4,0,0,12,11,876,874,7,5,21,16,2,4,0,0,16,12,16,10,0,0,0,0,0,0,0,1,0,1,16,11,0,0,0,0,0,0,0,2 -050,01,133,Alabama,Winston County,5,11,1844,908,936,887,912,4,2,8,10,0,1,1,0,8,11,895,922,4,5,15,19,1,2,1,0,899,927,879,903,4,2,7,10,0,1,1,0,8,11,887,913,4,5,14,19,1,2,1,0,9,9,8,9,0,0,1,0,0,0,0,0,0,0,8,9,0,0,1,0,0,0,0,0 -050,01,133,Alabama,Winston County,5,12,1734,874,860,838,836,6,5,9,5,3,2,2,0,16,12,853,846,8,8,23,15,3,3,3,0,862,853,829,829,6,5,9,5,3,2,0,0,15,12,843,839,8,8,22,15,3,3,1,0,12,7,9,7,0,0,0,0,0,0,2,0,1,0,10,7,0,0,1,0,0,0,2,0 -050,01,133,Alabama,Winston County,5,13,1710,851,859,830,841,2,5,6,3,2,2,2,2,9,6,837,845,4,9,15,7,2,2,2,2,844,851,824,835,2,5,6,3,2,2,1,1,9,5,831,838,4,8,15,7,2,2,1,1,7,8,6,6,0,0,0,0,0,0,1,1,0,1,6,7,0,1,0,0,0,0,1,1 -050,01,133,Alabama,Winston County,5,14,1590,764,826,754,809,3,2,1,6,2,5,0,0,4,4,757,812,5,3,4,10,2,5,1,0,763,825,753,808,3,2,1,6,2,5,0,0,4,4,756,811,5,3,4,10,2,5,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,5,15,1199,546,653,536,640,0,0,3,3,1,2,0,0,6,8,542,648,0,0,7,11,3,2,0,0,546,650,536,637,0,0,3,3,1,2,0,0,6,8,542,645,0,0,7,11,3,2,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,5,16,817,395,422,392,417,0,1,0,0,0,0,0,0,3,4,395,420,0,2,3,4,0,0,0,0,388,419,385,414,0,1,0,0,0,0,0,0,3,4,388,417,0,2,3,4,0,0,0,0,7,3,7,3,0,0,0,0,0,0,0,0,0,0,7,3,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,5,17,561,202,359,201,350,0,4,0,1,0,2,0,0,1,2,202,352,0,4,1,3,0,2,0,0,199,357,198,348,0,4,0,1,0,2,0,0,1,2,199,350,0,4,1,3,0,2,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,5,18,451,125,326,123,323,0,1,0,0,0,0,0,0,2,2,124,325,1,1,2,2,0,0,0,0,124,326,122,323,0,1,0,0,0,0,0,0,2,2,123,325,1,1,2,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,6,0,24190,11919,12271,11504,11893,87,75,104,88,28,43,31,17,165,155,11657,12034,142,133,201,180,54,63,42,23,11550,11963,11217,11638,81,74,68,67,25,38,5,3,154,143,11360,11767,130,130,158,150,48,55,15,9,369,308,287,255,6,1,36,21,3,5,26,14,11,12,297,267,12,3,43,30,6,8,27,14 -050,01,133,Alabama,Winston County,6,1,1223,634,589,596,560,11,7,2,5,0,2,1,1,24,14,619,574,23,16,11,10,7,2,1,2,594,539,561,515,10,7,0,2,0,0,0,1,23,14,583,529,21,16,8,7,7,0,0,2,40,50,35,45,1,0,2,3,0,2,1,0,1,0,36,45,2,0,3,3,0,2,1,0 -050,01,133,Alabama,Winston County,6,2,1395,682,713,644,676,9,6,6,9,1,3,3,6,19,13,662,688,18,13,13,13,5,5,4,7,640,672,611,646,8,6,1,5,1,2,1,0,18,13,628,658,17,13,7,9,5,4,2,1,42,41,33,30,1,0,5,4,0,1,2,6,1,0,34,30,1,0,6,4,0,1,2,6 -050,01,133,Alabama,Winston County,6,3,1561,776,785,746,748,7,4,5,6,1,5,7,2,10,20,755,767,9,11,11,15,2,11,9,2,736,746,717,717,6,4,3,3,1,5,0,0,9,17,726,733,7,11,8,11,2,8,2,0,40,39,29,31,1,0,2,3,0,0,7,2,1,3,29,34,2,0,3,4,0,3,7,2 -050,01,133,Alabama,Winston County,6,4,1438,722,716,688,689,5,8,9,5,2,4,2,0,16,10,704,697,10,17,15,9,5,6,4,0,704,683,676,656,5,8,7,5,2,4,0,0,14,10,690,664,10,17,12,9,4,6,2,0,18,33,12,33,0,0,2,0,0,0,2,0,2,0,14,33,0,0,3,0,1,0,2,0 -050,01,133,Alabama,Winston County,6,5,1311,687,624,660,606,4,7,6,2,4,1,2,1,11,7,667,611,8,10,13,4,6,5,4,1,663,603,641,588,4,7,4,1,3,0,0,0,11,7,648,593,8,10,11,3,5,4,2,0,24,21,19,18,0,0,2,1,1,1,2,1,0,0,19,18,0,0,2,1,1,1,2,1 -050,01,133,Alabama,Winston County,6,6,1233,629,604,609,580,4,5,7,7,1,3,3,0,5,9,614,589,6,8,9,12,2,4,3,0,594,582,585,564,4,4,1,4,0,2,0,0,4,8,589,572,5,7,3,8,1,3,0,0,35,22,24,16,0,1,6,3,1,1,3,0,1,1,25,17,1,1,6,4,1,1,3,0 -050,01,133,Alabama,Winston County,6,7,1269,619,650,585,640,8,1,14,4,2,0,4,1,6,4,591,644,11,3,15,6,4,1,4,1,572,630,554,625,7,1,5,2,1,0,1,0,4,2,558,627,9,2,5,2,3,1,1,0,47,20,31,15,1,0,9,2,1,0,3,1,2,2,33,17,2,1,10,4,1,0,3,1 -050,01,133,Alabama,Winston County,6,8,1330,681,649,652,619,8,7,9,9,1,4,2,1,9,9,661,628,9,9,15,15,3,5,2,1,635,625,615,605,7,7,3,4,1,4,1,0,8,5,623,610,8,8,9,7,2,5,1,0,46,24,37,14,1,0,6,5,0,0,1,1,1,4,38,18,1,1,6,8,1,0,1,1 -050,01,133,Alabama,Winston County,6,9,1660,863,797,837,780,6,2,8,5,6,3,2,2,4,5,841,784,7,3,11,10,6,3,2,2,843,784,821,768,5,2,7,5,6,3,0,1,4,5,825,772,6,3,10,10,6,3,0,1,20,13,16,12,1,0,1,0,0,0,2,1,0,0,16,12,1,0,1,0,0,0,2,1 -050,01,133,Alabama,Winston County,6,10,1737,870,867,838,841,8,4,9,7,2,3,0,0,13,12,851,852,12,8,20,14,4,4,1,1,856,856,825,831,8,4,9,7,2,3,0,0,12,11,837,841,11,8,19,13,3,4,0,1,14,11,13,10,0,0,0,0,0,0,0,0,1,1,14,11,1,0,1,1,1,0,1,0 -050,01,133,Alabama,Winston County,6,11,1878,922,956,900,928,4,3,9,9,0,2,1,1,8,13,907,941,7,4,15,21,0,2,1,1,912,945,891,918,4,3,8,9,0,2,1,0,8,13,898,931,7,4,14,21,0,2,1,0,10,11,9,10,0,0,1,0,0,0,0,1,0,0,9,10,0,0,1,0,0,0,0,1 -050,01,133,Alabama,Winston County,6,12,1744,885,859,853,836,7,6,8,4,2,1,2,0,13,12,865,846,10,10,18,13,3,1,4,1,874,854,845,831,7,6,8,4,2,1,0,0,12,12,856,841,9,10,17,13,3,1,2,1,11,5,8,5,0,0,0,0,0,0,2,0,1,0,9,5,1,0,1,0,0,0,2,0 -050,01,133,Alabama,Winston County,6,13,1651,816,835,791,816,3,6,7,4,3,3,1,2,11,4,801,819,6,8,17,7,3,3,1,2,807,828,783,810,3,6,7,4,3,3,0,1,11,4,793,813,6,8,17,7,3,3,0,1,9,7,8,6,0,0,0,0,0,0,1,1,0,0,8,6,0,0,0,0,0,0,1,1 -050,01,133,Alabama,Winston County,6,14,1630,794,836,784,817,3,3,2,6,1,4,1,0,3,6,787,822,3,4,5,12,1,4,1,0,793,833,783,815,3,3,2,6,1,4,1,0,3,5,786,819,3,4,5,11,1,4,1,0,1,3,1,2,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,1,0,0,0,0 -050,01,133,Alabama,Winston County,6,15,1238,571,667,562,653,0,0,2,5,2,3,0,0,5,6,567,658,0,1,5,8,3,4,1,2,570,665,561,651,0,0,2,5,2,3,0,0,5,6,566,656,0,1,5,8,3,4,1,2,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,6,16,867,406,461,401,454,0,1,1,0,0,0,0,0,4,6,403,459,3,2,4,5,0,1,0,0,401,459,396,452,0,1,1,0,0,0,0,0,4,6,398,457,3,2,4,5,0,1,0,0,5,2,5,2,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,6,17,564,226,338,225,330,0,4,0,1,0,1,0,0,1,2,226,332,0,4,1,3,0,1,0,0,221,334,220,326,0,4,0,1,0,1,0,0,1,2,221,328,0,4,1,3,0,1,0,0,5,4,5,4,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,6,18,461,136,325,133,320,0,1,0,0,0,1,0,0,3,3,136,323,0,2,3,3,0,1,0,0,135,325,132,320,0,1,0,0,0,1,0,0,3,3,135,323,0,2,3,3,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,7,0,24141,11905,12236,11476,11842,92,79,109,92,28,44,31,16,169,163,11635,11985,155,139,207,191,49,67,31,22,11522,11930,11178,11592,86,75,72,71,25,39,5,3,156,150,11325,11722,143,129,164,162,44,61,5,9,383,306,298,250,6,4,37,21,3,5,26,13,13,13,310,263,12,10,43,29,5,6,26,13 -050,01,133,Alabama,Winston County,7,1,1232,640,592,610,567,6,6,3,2,0,1,0,1,21,15,629,578,19,17,11,5,3,5,0,3,600,550,573,528,6,6,2,1,0,0,0,1,19,14,590,538,18,16,9,3,3,4,0,3,40,42,37,39,0,0,1,1,0,1,0,0,2,1,39,40,1,1,2,2,0,1,0,0 -050,01,133,Alabama,Winston County,7,2,1381,683,698,635,656,10,6,9,12,0,3,4,4,25,17,659,670,22,16,21,20,3,4,4,6,637,656,603,626,8,6,1,6,0,1,1,0,24,17,626,640,20,16,12,14,3,2,1,2,46,42,32,30,2,0,8,6,0,2,3,4,1,0,33,30,2,0,9,6,0,2,3,4 -050,01,133,Alabama,Winston County,7,3,1498,751,747,719,708,8,6,4,6,2,5,6,4,12,18,731,724,14,13,9,17,3,8,6,4,707,709,684,680,7,6,3,3,2,5,0,0,11,15,695,693,12,11,8,12,3,8,0,0,44,38,35,28,1,0,1,3,0,0,6,4,1,3,36,31,2,2,1,5,0,0,6,4 -050,01,133,Alabama,Winston County,7,4,1417,715,702,686,677,5,9,6,4,1,4,2,0,15,8,699,684,13,15,12,6,5,5,2,1,692,670,670,646,5,8,3,4,1,4,0,0,13,8,681,653,12,14,8,6,5,5,0,1,23,32,16,31,0,1,3,0,0,0,2,0,2,0,18,31,1,1,4,0,0,0,2,0 -050,01,133,Alabama,Winston County,7,5,1322,680,642,651,621,6,7,9,4,5,1,2,0,7,9,658,629,9,10,13,10,5,2,2,0,659,626,635,606,6,7,7,3,4,1,0,0,7,9,642,614,9,10,11,9,4,2,0,0,21,16,16,15,0,0,2,1,1,0,2,0,0,0,16,15,0,0,2,1,1,0,2,0 -050,01,133,Alabama,Winston County,7,6,1279,652,627,625,605,8,5,7,5,0,4,4,0,8,8,632,612,11,8,10,11,3,5,4,0,623,605,606,588,8,5,2,3,0,2,0,0,7,7,612,594,11,8,5,8,2,3,0,0,29,22,19,17,0,0,5,2,0,2,4,0,1,1,20,18,0,0,5,3,1,2,4,0 -050,01,133,Alabama,Winston County,7,7,1234,596,638,564,621,6,3,14,4,3,1,4,1,5,8,569,629,9,6,15,8,4,2,4,1,551,613,534,602,5,2,7,2,1,1,1,0,3,6,537,608,7,4,7,5,2,2,1,0,45,25,30,19,1,1,7,2,2,0,3,1,2,2,32,21,2,2,8,3,2,0,3,1 -050,01,133,Alabama,Winston County,7,8,1350,681,669,648,641,10,5,12,11,1,4,1,0,9,8,657,649,13,8,17,16,2,4,1,0,630,647,607,630,9,4,4,5,1,4,1,0,8,4,615,634,11,5,9,8,2,4,1,0,51,22,41,11,1,1,8,6,0,0,0,0,1,4,42,15,2,3,8,8,0,0,0,0 -050,01,133,Alabama,Winston County,7,9,1575,817,758,796,739,5,4,5,4,4,3,3,3,4,5,800,744,7,5,7,8,4,3,3,3,799,738,783,721,4,4,4,4,4,3,0,1,4,5,787,726,6,5,6,8,4,3,0,1,18,20,13,18,1,0,1,0,0,0,3,2,0,0,13,18,1,0,1,0,0,0,3,2 -050,01,133,Alabama,Winston County,7,10,1691,858,833,828,808,5,5,10,8,4,2,0,0,11,10,838,817,6,8,20,15,5,3,0,0,841,822,812,798,5,5,10,8,4,2,0,0,10,9,822,806,6,8,19,15,4,2,0,0,17,11,16,10,0,0,0,0,0,0,0,0,1,1,16,11,0,0,1,0,1,1,0,0 -050,01,133,Alabama,Winston County,7,11,1866,928,938,903,904,4,4,9,10,0,3,1,1,11,16,914,919,5,5,17,24,2,4,1,2,917,926,894,894,4,3,8,10,0,3,1,0,10,16,904,909,5,4,15,24,2,4,1,1,11,12,9,10,0,1,1,0,0,0,0,1,1,0,10,10,0,1,2,0,0,0,0,1 -050,01,133,Alabama,Winston County,7,12,1768,891,877,859,855,8,4,9,5,2,1,2,0,11,12,869,867,12,5,16,14,3,3,2,0,878,869,849,847,8,4,9,5,2,1,0,0,10,12,858,859,11,5,16,14,3,3,0,0,13,8,10,8,0,0,0,0,0,0,2,0,1,0,11,8,1,0,0,0,0,0,2,0 -050,01,133,Alabama,Winston County,7,13,1653,834,819,805,800,6,6,6,4,3,2,1,2,13,5,818,804,6,7,18,7,4,4,1,2,824,814,796,796,6,6,6,4,3,2,0,1,13,5,809,800,6,7,18,7,4,4,0,1,10,5,9,4,0,0,0,0,0,0,1,1,0,0,9,4,0,0,0,0,0,0,1,1 -050,01,133,Alabama,Winston County,7,14,1631,799,832,785,814,4,3,3,6,1,3,1,0,5,6,789,820,6,5,7,9,1,4,1,0,796,828,782,811,4,3,3,6,1,3,1,0,5,5,786,816,6,5,7,8,1,4,1,0,3,4,3,3,0,0,0,0,0,0,0,0,0,1,3,4,0,0,0,1,0,0,0,0 -050,01,133,Alabama,Winston County,7,15,1280,573,707,564,692,1,0,2,6,2,4,0,0,4,5,568,695,1,2,6,8,2,7,0,0,572,707,563,692,1,0,2,6,2,4,0,0,4,5,567,695,1,2,6,8,2,7,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,7,16,892,419,473,415,463,0,1,1,0,0,1,0,0,3,8,417,468,1,4,4,7,0,2,0,0,417,469,413,459,0,1,1,0,0,1,0,0,3,8,415,464,1,4,4,7,0,2,0,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,7,17,572,240,332,238,325,0,3,0,1,0,1,0,0,2,2,240,327,0,3,2,3,0,1,0,0,232,329,230,322,0,3,0,1,0,1,0,0,2,2,232,324,0,3,2,3,0,1,0,0,8,3,8,3,0,0,0,0,0,0,0,0,0,0,8,3,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,7,18,500,148,352,145,346,0,2,0,0,0,1,0,0,3,3,148,349,1,2,2,3,0,1,0,0,147,352,144,346,0,2,0,0,0,1,0,0,3,3,147,349,1,2,2,3,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,8,0,23929,11810,12119,11371,11719,103,82,105,91,28,51,31,16,172,160,11527,11858,171,147,199,183,56,71,37,23,11415,11787,11067,11447,94,78,67,70,23,43,5,3,159,146,11212,11573,151,138,155,154,51,61,11,9,395,332,304,272,9,4,38,21,5,8,26,13,13,14,315,285,20,9,44,29,5,10,26,14 -050,01,133,Alabama,Winston County,8,1,1239,656,583,626,556,6,4,3,0,2,3,0,0,19,20,642,574,19,14,10,7,6,7,0,1,609,534,584,512,6,4,2,0,0,0,0,0,17,18,598,528,17,13,9,6,4,4,0,1,47,49,42,44,0,0,1,0,2,3,0,0,2,2,44,46,2,1,1,1,2,3,0,0 -050,01,133,Alabama,Winston County,8,2,1319,662,657,616,613,9,10,9,13,0,3,1,4,27,14,639,625,24,16,19,19,7,5,1,6,624,615,590,583,7,10,1,6,0,1,0,1,26,14,612,595,21,16,10,12,7,3,0,3,38,42,26,30,2,0,8,7,0,2,1,3,1,0,27,30,3,0,9,7,0,2,1,3 -050,01,133,Alabama,Winston County,8,3,1464,734,730,699,691,11,8,2,6,2,6,7,4,13,15,712,703,16,17,7,14,4,8,8,4,693,692,668,662,10,8,0,4,2,5,1,0,12,13,680,672,14,16,5,10,4,7,2,0,41,38,31,29,1,0,2,2,0,1,6,4,1,2,32,31,2,1,2,4,0,1,6,4 -050,01,133,Alabama,Winston County,8,4,1409,715,694,686,669,5,8,8,4,1,3,4,1,11,9,697,677,9,12,14,10,4,3,4,1,683,657,662,636,5,7,6,3,1,3,0,0,9,8,671,643,8,11,11,8,4,3,0,0,32,37,24,33,0,1,2,1,0,0,4,1,2,1,26,34,1,1,3,2,0,0,4,1 -050,01,133,Alabama,Winston County,8,5,1253,646,607,618,593,5,4,6,2,4,2,2,0,11,6,627,599,11,7,11,4,6,3,2,0,625,584,602,570,4,4,4,2,4,2,0,0,11,6,611,576,10,7,9,4,6,3,0,0,21,23,16,23,1,0,2,0,0,0,2,0,0,0,16,23,1,0,2,0,0,0,2,0 -050,01,133,Alabama,Winston County,8,6,1301,642,659,610,634,12,7,7,5,1,5,4,0,8,8,618,641,15,9,12,8,1,9,4,0,613,641,593,621,10,7,2,3,0,3,0,0,8,7,601,627,13,9,7,6,0,6,0,0,29,18,17,13,2,0,5,2,1,2,4,0,0,1,17,14,2,0,5,2,1,3,4,0 -050,01,133,Alabama,Winston County,8,7,1200,576,624,553,607,4,3,9,5,2,1,4,1,4,7,557,614,5,7,11,8,3,1,4,1,537,603,526,592,4,2,3,3,0,1,1,0,3,5,529,597,5,5,4,5,1,1,1,0,39,21,27,15,0,1,6,2,2,0,3,1,1,2,28,17,0,2,7,3,2,0,3,1 -050,01,133,Alabama,Winston County,8,8,1326,674,652,633,631,14,4,16,9,2,4,1,0,8,4,640,635,19,7,21,9,2,4,1,1,620,623,593,611,13,3,6,3,2,4,1,0,5,2,598,613,15,5,9,3,2,4,1,0,54,29,40,20,1,1,10,6,0,0,0,0,3,2,42,22,4,2,12,6,0,0,0,1 -050,01,133,Alabama,Winston County,8,9,1511,776,735,751,710,12,6,2,5,2,2,3,3,6,9,757,718,15,10,5,11,2,2,3,3,757,712,737,692,10,6,2,4,2,2,0,1,6,7,743,698,13,10,5,8,2,2,0,1,19,23,14,18,2,0,0,1,0,0,3,2,0,2,14,20,2,0,0,3,0,0,3,2 -050,01,133,Alabama,Winston County,8,10,1640,841,799,817,773,2,4,11,9,4,4,0,0,7,9,824,781,5,6,14,16,5,5,0,1,820,788,798,763,2,4,10,9,4,4,0,0,6,8,804,770,4,6,13,15,5,5,0,1,21,11,19,10,0,0,1,0,0,0,0,0,1,1,20,11,1,0,1,1,0,0,0,0 -050,01,133,Alabama,Winston County,8,11,1876,963,913,932,882,7,3,9,6,1,4,1,1,13,17,944,897,10,7,18,19,3,5,1,2,950,899,920,869,7,3,9,6,1,4,1,0,12,17,931,884,9,7,18,19,3,5,1,1,13,14,12,13,0,0,0,0,0,0,0,1,1,0,13,13,1,0,0,0,0,0,0,1 -050,01,133,Alabama,Winston County,8,12,1775,868,907,839,881,7,4,8,9,1,2,1,0,12,11,850,890,10,7,17,17,2,3,1,1,856,897,830,872,7,3,7,9,1,2,0,0,11,11,841,881,9,6,15,17,2,3,0,1,12,10,9,9,0,1,1,0,0,0,1,0,1,0,9,9,1,1,2,0,0,0,1,0 -050,01,133,Alabama,Winston County,8,13,1630,821,809,791,792,5,4,8,5,3,1,1,1,13,6,803,798,6,6,19,10,5,1,1,1,811,805,782,788,5,4,8,5,3,1,0,1,13,6,794,794,6,6,19,10,5,1,0,1,10,4,9,4,0,0,0,0,0,0,1,0,0,0,9,4,0,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,8,14,1649,810,839,795,816,2,7,4,5,1,3,2,1,6,7,800,822,3,11,9,7,1,5,3,1,803,833,789,812,2,7,4,5,1,3,1,0,6,6,794,818,3,10,9,7,1,4,2,0,7,6,6,4,0,0,0,0,0,0,1,1,0,1,6,4,0,1,0,0,0,1,1,1 -050,01,133,Alabama,Winston County,8,15,1297,591,706,581,691,2,0,1,6,2,5,0,0,5,4,584,694,3,1,4,10,4,5,3,0,590,706,580,691,2,0,1,6,2,5,0,0,5,4,583,694,3,1,4,10,4,5,3,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,8,16,945,436,509,431,498,0,1,2,1,0,1,0,0,3,8,434,503,0,4,5,7,0,3,0,0,435,506,430,495,0,1,2,1,0,1,0,0,3,8,433,500,0,4,5,7,0,3,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,8,17,572,244,328,241,321,0,3,0,1,0,0,0,0,3,3,244,323,1,4,0,4,1,0,1,0,236,326,233,319,0,3,0,1,0,0,0,0,3,3,236,321,1,4,0,4,1,0,1,0,8,2,8,2,0,0,0,0,0,0,0,0,0,0,8,2,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,8,18,523,155,368,152,361,0,2,0,0,0,2,0,0,3,3,155,364,0,2,3,3,0,2,0,0,153,366,150,359,0,2,0,0,0,2,0,0,3,3,153,362,0,2,3,3,0,2,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,9,0,23911,11811,12100,11354,11690,110,78,107,94,33,54,32,16,175,168,11516,11836,170,137,209,197,59,80,37,24,11426,11771,11058,11421,102,74,69,73,29,46,6,3,162,154,11208,11557,155,128,167,164,53,71,10,9,385,329,296,269,8,4,38,21,4,8,26,13,13,14,308,279,15,9,42,33,6,9,27,15 -050,01,133,Alabama,Winston County,9,1,1232,643,589,610,562,9,5,3,0,4,4,0,0,17,18,624,577,21,15,6,7,8,7,2,2,610,552,582,530,8,5,2,0,3,1,0,0,15,16,595,543,19,14,5,5,6,4,1,2,33,37,28,32,1,0,1,0,1,3,0,0,2,2,29,34,2,1,1,2,2,3,1,0 -050,01,133,Alabama,Winston County,9,2,1331,675,656,635,613,9,7,6,12,0,3,1,4,24,17,659,628,20,16,13,20,6,5,1,4,634,609,603,578,8,7,0,5,0,1,0,1,23,17,626,593,18,16,7,13,6,3,0,1,41,47,32,35,1,0,6,7,0,2,1,3,1,0,33,35,2,0,6,7,0,2,1,3 -050,01,133,Alabama,Winston County,9,3,1415,715,700,676,666,12,4,5,7,2,5,7,4,13,14,689,680,17,9,12,14,4,8,7,4,672,666,646,640,10,4,1,5,2,4,1,0,12,13,658,653,15,9,7,11,4,7,1,0,43,34,30,26,2,0,4,2,0,1,6,4,1,1,31,27,2,0,5,3,0,1,6,4 -050,01,133,Alabama,Winston County,9,4,1458,737,721,703,691,9,7,8,5,1,4,5,1,11,13,713,702,13,12,14,11,2,7,6,2,699,676,673,651,9,6,6,4,1,4,1,0,9,11,681,661,12,10,11,9,2,7,2,0,38,45,30,40,0,1,2,1,0,0,4,1,2,2,32,41,1,2,3,2,0,0,4,2 -050,01,133,Alabama,Winston County,9,5,1233,630,603,606,586,3,7,4,1,2,2,2,0,13,7,617,591,9,10,12,4,3,5,2,0,610,581,589,564,3,7,3,1,2,2,0,0,13,7,600,569,9,10,11,4,3,5,0,0,20,22,17,22,0,0,1,0,0,0,2,0,0,0,17,22,0,0,1,0,0,0,2,0 -050,01,133,Alabama,Winston County,9,6,1253,643,610,609,592,12,5,8,5,3,2,3,0,8,6,615,596,15,8,10,8,7,3,5,1,618,590,594,576,11,5,3,3,2,0,0,0,8,6,600,580,14,8,5,6,6,1,2,1,25,20,15,16,1,0,5,2,1,2,3,0,0,0,15,16,1,0,5,2,1,2,3,0 -050,01,133,Alabama,Winston County,9,7,1257,599,658,578,631,3,3,8,6,2,6,3,1,5,11,583,641,5,7,11,14,2,8,3,1,566,634,558,614,3,2,1,4,0,6,0,0,4,8,562,621,5,5,3,9,0,8,0,0,33,24,20,17,0,1,7,2,2,0,3,1,1,3,21,20,0,2,8,5,2,0,3,1 -050,01,133,Alabama,Winston County,9,8,1322,663,659,618,638,15,6,16,9,2,1,3,0,9,5,627,643,17,7,22,12,4,2,3,0,613,641,580,626,14,5,9,5,2,1,2,0,6,4,586,630,14,6,14,7,4,2,2,0,50,18,38,12,1,1,7,4,0,0,1,0,3,1,41,13,3,1,8,5,0,0,1,0 -050,01,133,Alabama,Winston County,9,9,1424,740,684,714,657,9,5,6,5,2,5,3,3,6,9,719,664,12,8,10,11,2,6,3,4,711,661,692,642,8,5,3,2,2,5,0,1,6,6,697,648,11,7,7,5,2,6,0,1,29,23,22,15,1,0,3,3,0,0,3,2,0,3,22,16,1,1,3,6,0,0,3,3 -050,01,133,Alabama,Winston County,9,10,1662,859,803,835,781,3,4,9,8,6,3,0,0,6,7,841,788,6,7,11,11,7,4,0,0,842,789,821,767,2,4,8,8,6,3,0,0,5,7,826,774,4,7,10,11,7,4,0,0,17,14,14,14,1,0,1,0,0,0,0,0,1,0,15,14,2,0,1,0,0,0,0,0 -050,01,133,Alabama,Winston County,9,11,1819,940,879,907,848,8,4,10,7,1,5,0,1,14,14,920,860,10,8,21,16,3,7,0,2,927,863,895,834,8,4,10,7,1,5,0,0,13,13,907,845,9,7,21,16,3,7,0,1,13,16,12,14,0,0,0,0,0,0,0,1,1,1,13,15,1,1,0,0,0,0,0,1 -050,01,133,Alabama,Winston County,9,12,1772,858,914,834,885,6,3,6,11,1,3,2,0,9,12,842,895,8,6,14,21,1,4,2,0,847,904,825,876,6,2,5,11,1,3,1,0,9,12,833,886,8,5,13,21,1,4,1,0,11,10,9,9,0,1,1,0,0,0,1,0,0,0,9,9,0,1,1,0,0,0,1,0 -050,01,133,Alabama,Winston County,9,13,1649,836,813,798,794,4,4,10,4,4,1,1,1,19,9,816,803,7,5,26,12,5,1,1,1,823,807,787,788,4,4,10,4,4,1,0,1,18,9,804,797,7,5,26,12,4,1,0,1,13,6,11,6,0,0,0,0,0,0,1,0,1,0,12,6,0,0,0,0,1,0,1,0 -050,01,133,Alabama,Winston County,9,14,1689,820,869,798,845,6,8,5,6,1,2,2,1,8,7,806,849,8,11,12,12,1,3,2,1,813,863,792,841,6,8,5,6,1,2,1,0,8,6,800,845,8,11,12,11,1,2,1,0,7,6,6,4,0,0,0,0,0,0,1,1,0,1,6,4,0,0,0,1,0,1,1,1 -050,01,133,Alabama,Winston County,9,15,1298,601,697,593,684,2,0,0,4,2,5,0,0,4,4,597,688,2,0,4,7,2,6,0,1,600,697,592,684,2,0,0,4,2,5,0,0,4,4,596,688,2,0,4,7,2,6,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,9,16,956,423,533,416,519,0,1,3,3,0,2,0,0,4,8,419,527,0,2,7,10,1,2,0,0,422,530,415,516,0,1,3,3,0,2,0,0,4,8,418,524,0,2,7,10,1,2,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,9,17,611,268,343,266,335,0,3,0,1,0,0,0,0,2,4,268,338,0,4,2,4,0,1,0,1,261,341,259,333,0,3,0,1,0,0,0,0,2,4,261,336,0,4,2,4,0,1,0,1,7,2,7,2,0,0,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,9,18,530,161,369,158,363,0,2,0,0,0,1,0,0,3,3,161,366,0,2,2,3,1,1,0,0,158,367,155,361,0,2,0,0,0,1,0,0,3,3,158,364,0,2,2,3,1,1,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,10,0,23753,11717,12036,11259,11605,106,95,109,96,33,52,32,16,178,172,11420,11763,162,161,218,198,59,75,42,24,11325,11702,10959,11336,98,86,72,75,27,46,6,3,163,156,11107,11481,150,147,171,165,52,66,14,9,392,334,300,269,8,9,37,21,6,6,26,13,15,16,313,282,12,14,47,33,7,9,28,15 -050,01,133,Alabama,Winston County,10,1,1244,627,617,596,582,9,12,3,1,6,3,0,0,13,19,607,600,18,24,7,5,8,9,0,0,588,579,564,554,8,8,2,1,3,0,0,0,11,16,573,569,16,19,5,3,5,5,0,0,39,38,32,28,1,4,1,0,3,3,0,0,2,3,34,31,2,5,2,2,3,4,0,0 -050,01,133,Alabama,Winston County,10,2,1291,673,618,638,575,8,10,6,10,0,3,1,2,20,18,656,591,18,20,15,17,4,6,2,3,628,570,601,536,7,10,1,5,0,1,0,1,19,17,618,551,17,20,9,11,4,4,1,2,45,48,37,39,1,0,5,5,0,2,1,1,1,1,38,40,1,0,6,6,0,2,1,1 -050,01,133,Alabama,Winston County,10,3,1430,717,713,668,680,13,4,6,7,2,5,5,6,23,11,690,691,24,10,15,12,6,5,5,6,675,672,639,649,12,4,1,4,2,4,1,0,20,11,659,660,21,10,8,9,6,4,1,0,42,41,29,31,1,0,5,3,0,1,4,6,3,0,31,31,3,0,7,3,0,1,4,6 -050,01,133,Alabama,Winston County,10,4,1431,731,700,705,659,9,13,5,6,0,5,5,1,7,16,712,674,12,17,8,16,1,8,5,1,693,663,674,629,8,12,4,4,0,5,0,0,7,13,681,642,11,14,7,12,1,8,0,0,38,37,31,30,1,1,1,2,0,0,5,1,0,3,31,32,1,3,1,4,0,0,5,1 -050,01,133,Alabama,Winston County,10,5,1235,632,603,605,583,3,9,6,2,2,2,3,0,13,7,616,590,6,11,14,4,4,5,5,1,611,573,589,553,3,9,5,2,2,2,1,0,11,7,598,560,5,11,12,4,4,5,3,1,21,30,16,30,0,0,1,0,0,0,2,0,2,0,18,30,1,0,2,0,0,0,2,0 -050,01,133,Alabama,Winston County,10,6,1273,649,624,622,611,2,4,7,4,2,0,3,0,13,5,633,616,6,6,15,6,5,0,4,1,627,603,608,592,1,4,4,2,1,0,0,0,13,5,619,597,5,6,12,4,4,0,1,1,22,21,14,19,1,0,3,2,1,0,3,0,0,0,14,19,1,0,3,2,1,0,3,0 -050,01,133,Alabama,Winston County,10,7,1229,591,638,570,611,4,3,9,7,1,5,3,1,4,11,574,622,4,6,11,14,3,7,3,1,564,618,555,599,4,1,2,5,0,5,0,0,3,8,558,607,4,4,4,10,1,6,0,0,27,20,15,12,0,2,7,2,1,0,3,1,1,3,16,15,0,2,7,4,2,1,3,1 -050,01,133,Alabama,Winston County,10,8,1290,632,658,595,642,8,4,16,6,4,1,3,0,6,5,601,646,9,6,19,9,5,1,4,1,586,637,563,626,7,3,8,3,3,1,1,0,4,4,567,629,8,5,10,5,4,1,1,1,46,21,32,16,1,1,8,3,1,0,2,0,2,1,34,17,1,1,9,4,1,0,3,0 -050,01,133,Alabama,Winston County,10,9,1378,720,658,684,629,15,5,7,7,2,6,3,2,9,9,691,637,16,8,15,13,4,7,4,3,680,636,652,616,14,5,3,3,2,6,1,0,8,6,659,622,15,7,10,6,4,7,1,0,40,22,32,13,1,0,4,4,0,0,2,2,1,3,32,15,1,1,5,7,0,0,3,3 -050,01,133,Alabama,Winston County,10,10,1626,840,786,812,761,8,6,8,7,5,3,1,1,6,8,818,768,11,9,11,12,6,3,1,2,821,769,797,744,7,6,7,7,5,3,0,1,5,8,802,751,10,9,9,12,6,3,0,2,19,17,15,17,1,0,1,0,0,0,1,0,1,0,16,17,1,0,2,0,0,0,1,0 -050,01,133,Alabama,Winston County,10,11,1781,913,868,880,840,8,4,10,8,2,4,0,1,13,11,891,850,12,9,21,16,2,5,0,1,898,859,865,833,8,4,10,8,2,4,0,0,13,10,876,842,12,9,21,15,2,5,0,0,15,9,15,7,0,0,0,0,0,0,0,1,0,1,15,8,0,0,0,1,0,0,0,1 -050,01,133,Alabama,Winston County,10,12,1748,846,902,826,872,4,4,8,12,0,2,1,0,7,12,833,882,5,6,12,24,0,2,3,0,839,891,821,862,4,3,7,12,0,2,1,0,6,12,827,872,5,5,10,24,0,2,3,0,7,11,5,10,0,1,1,0,0,0,0,0,1,0,6,10,0,1,2,0,0,0,0,0 -050,01,133,Alabama,Winston County,10,13,1700,856,844,816,820,5,4,9,5,3,2,2,0,21,13,836,832,6,8,28,15,4,3,4,0,844,840,807,816,5,4,9,5,3,2,0,0,20,13,826,828,6,8,27,15,4,3,2,0,12,4,9,4,0,0,0,0,0,0,2,0,1,0,10,4,0,0,1,0,0,0,2,0 -050,01,133,Alabama,Winston County,10,14,1581,768,813,743,792,8,7,5,3,2,3,2,2,8,6,750,797,9,10,12,7,3,5,2,3,761,806,737,787,8,7,5,3,2,3,1,1,8,5,744,792,9,9,12,7,3,4,1,1,7,7,6,5,0,0,0,0,0,0,1,1,0,1,6,5,0,1,0,0,0,1,1,2 -050,01,133,Alabama,Winston County,10,15,1391,648,743,640,728,2,0,1,6,1,5,0,0,4,4,643,731,3,2,4,9,2,5,0,0,647,742,639,727,2,0,1,6,1,5,0,0,4,4,642,730,3,2,4,9,2,5,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,10,16,955,422,533,413,517,0,1,3,4,1,2,0,0,5,9,418,526,0,3,7,12,2,2,0,0,422,530,413,514,0,1,3,4,1,2,0,0,5,9,418,523,0,3,7,12,2,2,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,10,17,612,275,337,272,331,0,2,0,0,0,0,0,0,3,4,274,334,2,3,2,3,0,1,0,0,268,335,265,329,0,2,0,0,0,0,0,0,3,4,267,332,2,3,2,3,0,1,0,0,7,2,7,2,0,0,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,10,18,558,177,381,174,372,0,3,0,1,0,1,0,0,3,4,177,376,1,3,2,4,0,1,0,1,173,379,170,370,0,3,0,1,0,1,0,0,3,4,173,374,1,3,2,4,0,1,0,1,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,11,0,23690,11670,12020,11209,11574,109,102,110,93,35,51,32,16,175,184,11369,11735,173,177,213,203,62,72,41,25,11275,11681,10910,11301,100,92,72,73,28,45,6,3,159,167,11057,11450,155,159,168,175,52,62,10,10,395,339,299,273,9,10,38,20,7,6,26,13,16,17,312,285,18,18,45,28,10,10,31,15 -050,01,133,Alabama,Winston County,11,1,1283,643,640,604,584,13,19,3,1,6,5,0,0,17,31,618,610,26,41,9,8,7,12,1,2,608,599,578,555,11,14,2,1,3,2,0,0,14,27,590,578,22,33,7,7,4,9,0,1,35,41,26,29,2,5,1,0,3,3,0,0,3,4,28,32,4,8,2,1,3,3,1,1 -050,01,133,Alabama,Winston County,11,2,1234,651,583,622,546,8,9,3,6,0,4,1,1,17,17,639,563,18,19,8,13,3,5,1,1,612,543,588,512,7,9,1,3,0,2,0,1,16,16,604,528,17,19,5,9,3,3,0,1,39,40,34,34,1,0,2,3,0,2,1,0,1,1,35,35,1,0,3,4,0,2,1,0 -050,01,133,Alabama,Winston County,11,3,1407,703,704,665,670,7,6,7,7,2,3,3,6,19,12,681,680,16,13,14,14,8,3,4,6,667,664,640,640,6,6,1,4,2,2,1,0,17,12,654,650,14,13,7,11,8,2,2,0,36,40,25,30,1,0,6,3,0,1,2,6,2,0,27,30,2,0,7,3,0,1,2,6 -050,01,133,Alabama,Winston County,11,4,1391,728,663,698,628,11,9,4,6,0,6,7,2,8,12,705,637,16,15,7,12,1,9,7,3,687,627,667,600,10,9,3,3,0,6,0,0,7,9,673,607,14,13,6,7,1,9,0,1,41,36,31,28,1,0,1,3,0,0,7,2,1,3,32,30,2,2,1,5,0,0,7,2 -050,01,133,Alabama,Winston County,11,5,1271,641,630,613,609,5,9,5,4,2,1,3,0,13,7,624,615,11,13,12,7,4,2,5,0,614,603,592,583,5,8,3,4,2,1,1,0,11,7,602,589,10,12,9,7,3,2,2,0,27,27,21,26,0,1,2,0,0,0,2,0,2,0,22,26,1,1,3,0,1,0,3,0 -050,01,133,Alabama,Winston County,11,6,1276,642,634,616,622,3,3,5,3,2,1,2,0,14,5,628,626,9,4,16,6,2,1,2,2,624,615,604,604,2,3,3,2,1,1,0,0,14,5,616,608,8,4,14,5,1,1,0,2,18,19,12,18,1,0,2,1,1,0,2,0,0,0,12,18,1,0,2,1,1,0,2,0 -050,01,133,Alabama,Winston County,11,7,1196,571,625,548,597,4,5,9,7,3,5,3,0,4,11,552,608,4,9,12,14,4,6,3,0,545,600,534,578,4,3,3,4,1,5,0,0,3,10,537,588,4,7,5,11,2,5,0,0,26,25,14,19,0,2,6,3,2,0,3,0,1,1,15,20,0,2,7,3,2,1,3,0 -050,01,133,Alabama,Winston County,11,8,1297,634,663,597,651,9,2,16,4,3,0,4,1,5,5,602,656,12,4,19,7,4,1,5,1,588,639,567,632,8,2,7,2,2,0,1,0,3,3,570,635,10,4,8,4,2,0,1,0,46,24,30,19,1,0,9,2,1,0,3,1,2,2,32,21,2,0,11,3,2,1,4,1 -050,01,133,Alabama,Winston County,11,9,1336,707,629,666,600,17,7,9,10,2,2,2,1,11,9,676,607,19,10,18,16,3,3,3,2,661,603,628,585,16,6,4,5,2,2,1,0,10,5,638,590,17,7,13,9,2,2,1,0,46,26,38,15,1,1,5,5,0,0,1,1,1,4,38,17,2,3,5,7,1,1,2,2 -050,01,133,Alabama,Winston County,11,10,1611,829,782,806,760,5,5,8,4,5,4,2,2,3,7,809,766,7,8,8,9,6,4,2,2,809,767,790,746,4,5,7,4,5,4,0,1,3,7,793,752,6,8,7,9,6,4,0,1,20,15,16,14,1,0,1,0,0,0,2,1,0,0,16,14,1,0,1,0,0,0,2,1 -050,01,133,Alabama,Winston County,11,11,1700,859,841,821,813,10,4,11,8,3,4,0,0,14,12,835,824,11,6,23,15,4,6,1,2,842,830,807,803,10,4,9,8,3,4,0,0,13,11,820,814,11,5,21,15,4,5,0,2,17,11,14,10,0,0,2,0,0,0,0,0,1,1,15,10,0,1,2,0,0,1,1,0 -050,01,133,Alabama,Winston County,11,12,1829,903,926,878,888,4,7,11,13,0,3,1,1,9,14,887,901,6,8,16,27,2,3,1,1,891,913,868,877,4,6,10,13,0,3,1,0,8,14,876,890,5,7,15,27,2,3,1,0,12,13,10,11,0,1,1,0,0,0,0,1,1,0,11,11,1,1,1,0,0,0,0,1 -050,01,133,Alabama,Winston County,11,13,1689,827,862,796,840,3,4,8,4,2,1,2,0,16,13,812,851,4,7,21,15,5,2,3,0,817,858,789,836,3,4,8,4,2,1,0,0,15,13,804,847,3,7,21,15,5,2,1,0,10,4,7,4,0,0,0,0,0,0,2,0,1,0,8,4,1,0,0,0,0,0,2,0 -050,01,133,Alabama,Winston County,11,14,1520,746,774,719,753,8,6,5,4,3,4,1,2,10,5,729,758,9,8,12,8,5,4,1,2,737,767,711,747,8,6,5,4,3,4,0,1,10,5,721,752,9,8,12,8,5,4,0,1,9,7,8,6,0,0,0,0,0,0,1,1,0,0,8,6,0,0,0,0,0,0,1,1 -050,01,133,Alabama,Winston County,11,15,1422,668,754,659,737,2,1,3,6,0,4,1,0,3,6,662,742,2,2,6,10,0,6,1,1,667,751,658,735,2,1,3,6,0,4,1,0,3,5,661,739,2,2,6,9,0,6,1,1,1,3,1,2,0,0,0,0,0,0,0,0,0,1,1,3,0,0,0,1,0,0,0,0 -050,01,133,Alabama,Winston County,11,16,1003,445,558,437,542,0,1,2,5,2,3,0,0,4,7,439,547,2,3,5,12,2,3,1,0,444,556,436,540,0,1,2,5,2,3,0,0,4,7,438,545,2,3,5,12,2,3,1,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,11,17,618,268,350,263,342,0,2,1,0,0,0,0,0,4,6,267,347,0,3,3,5,2,1,0,0,263,348,258,340,0,2,1,0,0,0,0,0,4,6,262,345,0,3,3,5,2,1,0,0,5,2,5,2,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,11,18,607,205,402,201,392,0,3,0,1,0,1,0,0,4,5,204,397,1,4,4,5,0,1,0,0,199,398,195,388,0,3,0,1,0,1,0,0,4,5,198,393,1,4,4,5,0,1,0,0,6,4,6,4,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,12,0,23700,11657,12043,11157,11573,131,107,104,95,32,52,32,17,201,199,11342,11757,198,181,220,213,65,77,42,21,11251,11690,10847,11290,122,93,66,75,26,46,6,4,184,182,11016,11458,184,161,172,185,54,67,14,6,406,353,310,283,9,14,38,20,6,6,26,13,17,17,326,299,14,20,48,28,11,10,28,15 -050,01,133,Alabama,Winston County,12,1,1263,631,632,576,567,14,22,1,1,6,6,0,0,34,36,608,601,30,40,10,12,16,14,2,1,592,592,546,540,12,15,0,1,3,3,0,0,31,33,575,571,28,33,9,11,11,10,1,0,39,40,30,27,2,7,1,0,3,3,0,0,3,3,33,30,2,7,1,1,5,4,1,1 -050,01,133,Alabama,Winston County,12,2,1258,683,575,647,540,9,9,3,3,0,2,0,1,24,20,670,559,22,21,13,12,4,3,0,1,650,532,616,502,9,7,3,2,0,1,0,1,22,19,637,520,22,18,11,11,4,2,0,1,33,43,31,38,0,2,0,1,0,1,0,0,2,1,33,39,0,3,2,1,0,1,0,0 -050,01,133,Alabama,Winston County,12,3,1392,701,691,659,648,7,7,9,11,1,3,4,5,21,17,680,664,14,17,18,16,4,8,6,5,659,645,632,614,5,7,1,6,1,1,1,1,19,16,651,630,11,16,9,10,4,5,3,1,42,46,27,34,2,0,8,5,0,2,3,4,2,1,29,34,3,1,9,6,0,3,3,4 -050,01,133,Alabama,Winston County,12,4,1357,696,661,662,623,15,11,2,6,1,6,6,4,10,11,670,634,19,14,6,11,3,9,8,4,655,625,630,597,14,11,1,3,1,6,0,0,9,8,637,605,18,13,4,7,3,8,2,0,41,36,32,26,1,0,1,3,0,0,6,4,1,3,33,29,1,1,2,4,0,1,6,4 -050,01,133,Alabama,Winston County,12,5,1259,629,630,606,611,4,8,3,3,1,2,3,0,12,6,617,617,10,10,9,6,3,3,3,0,599,601,582,583,4,7,1,3,1,2,1,0,10,6,591,589,9,9,6,6,3,3,1,0,30,29,24,28,0,1,2,0,0,0,2,0,2,0,26,28,1,1,3,0,0,0,2,0 -050,01,133,Alabama,Winston County,12,6,1310,629,681,599,664,7,4,7,4,3,2,2,0,11,7,608,670,13,9,14,7,3,3,2,0,611,664,587,648,6,4,5,3,2,2,0,0,11,7,596,654,12,9,12,6,2,3,0,0,18,17,12,16,1,0,2,1,1,0,2,0,0,0,12,16,1,0,2,1,1,0,2,0 -050,01,133,Alabama,Winston County,12,7,1198,595,603,563,582,10,2,7,5,3,5,4,0,8,9,569,591,12,5,11,10,7,6,4,1,573,581,551,563,10,2,2,3,3,5,0,0,7,8,557,571,11,4,6,7,6,6,0,1,22,22,12,19,0,0,5,2,0,0,4,0,1,1,12,20,1,1,5,3,1,0,4,0 -050,01,133,Alabama,Winston County,12,8,1269,611,658,578,638,7,5,13,5,4,0,4,1,5,9,583,647,8,8,17,10,6,1,5,1,568,634,550,621,6,3,6,3,2,0,1,0,3,7,553,628,6,6,8,7,3,0,1,0,43,24,28,17,1,2,7,2,2,0,3,1,2,2,30,19,2,2,9,3,3,1,4,1 -050,01,133,Alabama,Winston County,12,9,1335,694,641,651,616,21,5,11,11,2,2,1,0,8,7,658,622,21,7,17,16,4,2,2,1,639,612,606,598,20,4,3,5,2,2,1,0,7,3,612,600,20,5,9,8,3,2,2,0,55,29,45,18,1,1,8,6,0,0,0,0,1,4,46,22,1,2,8,8,1,0,0,1 -050,01,133,Alabama,Winston County,12,10,1563,812,751,791,728,7,6,6,3,1,4,3,3,4,7,794,734,10,7,8,9,1,4,3,4,792,729,776,708,6,6,5,3,1,4,0,1,4,7,779,714,9,7,7,9,1,4,0,2,20,22,15,20,1,0,1,0,0,0,3,2,0,0,15,20,1,0,1,0,0,0,3,2 -050,01,133,Alabama,Winston County,12,11,1668,849,819,818,796,7,3,12,8,3,3,0,0,9,9,827,804,10,5,18,16,3,3,1,0,829,808,801,786,7,3,10,8,3,3,0,0,8,8,809,793,10,4,15,16,3,3,1,0,20,11,17,10,0,0,2,0,0,0,0,0,1,1,18,11,0,1,3,0,0,0,0,0 -050,01,133,Alabama,Winston County,12,12,1843,910,933,882,893,6,9,9,10,0,3,1,1,12,17,893,908,9,13,20,25,0,5,1,1,902,919,876,881,6,8,8,10,0,3,1,0,11,17,886,896,8,12,18,25,0,5,1,0,8,14,6,12,0,1,1,0,0,0,0,1,1,0,7,12,1,1,2,0,0,0,0,1 -050,01,133,Alabama,Winston County,12,13,1714,845,869,813,844,6,3,9,7,2,2,2,0,13,13,826,856,6,6,21,18,3,2,2,0,834,863,805,838,6,3,9,7,2,2,0,0,12,13,817,850,6,6,20,18,3,2,0,0,11,6,8,6,0,0,0,0,0,0,2,0,1,0,9,6,0,0,1,0,0,0,2,0 -050,01,133,Alabama,Winston County,12,14,1553,775,778,744,757,8,5,6,5,3,3,1,2,13,6,754,762,11,6,18,11,4,3,1,2,767,773,737,753,8,5,6,5,3,3,0,1,13,6,747,758,11,6,18,11,4,3,0,1,8,5,7,4,0,0,0,0,0,0,1,1,0,0,7,4,0,0,0,0,0,0,1,1 -050,01,133,Alabama,Winston County,12,15,1431,661,770,650,753,2,2,2,6,0,3,1,0,6,6,656,759,2,2,6,11,1,4,2,0,657,765,646,749,2,2,2,6,0,3,1,0,6,5,652,754,2,2,6,10,1,4,2,0,4,5,4,4,0,0,0,0,0,0,0,0,0,1,4,5,0,0,0,1,0,0,0,0 -050,01,133,Alabama,Winston County,12,16,1028,445,583,435,566,1,1,3,6,2,4,0,0,4,6,439,572,1,2,7,10,2,5,0,0,444,583,434,566,1,1,3,6,2,4,0,0,4,6,438,572,1,2,7,10,2,5,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,12,17,643,284,359,280,348,0,2,1,0,0,1,0,0,3,8,283,354,0,5,3,7,1,1,0,0,282,355,278,344,0,2,1,0,0,1,0,0,3,8,281,350,0,5,3,7,1,1,0,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,12,18,616,207,409,203,399,0,3,0,1,0,1,0,0,4,5,207,403,0,4,4,6,0,1,0,0,198,409,194,399,0,3,0,1,0,1,0,0,4,5,198,403,0,4,4,6,0,1,0,0,9,0,9,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,13,0,23508,11554,11954,11068,11486,124,107,110,91,31,54,31,16,190,200,11244,11672,189,186,225,192,56,88,33,27,11128,11593,10738,11201,115,93,71,70,25,43,5,3,174,183,10900,11375,173,164,177,161,49,72,6,11,426,361,330,285,9,14,39,21,6,11,26,13,16,17,344,297,16,22,48,31,7,16,27,16 -050,01,133,Alabama,Winston County,13,1,1249,638,611,593,547,11,15,2,3,3,8,0,0,29,38,620,584,25,35,12,12,9,18,1,1,598,574,561,520,9,12,1,2,1,4,0,0,26,36,585,555,22,31,9,11,7,13,1,1,40,37,32,27,2,3,1,1,2,4,0,0,3,2,35,29,3,4,3,1,2,5,0,0 -050,01,133,Alabama,Winston County,13,2,1241,659,582,629,547,8,11,4,1,1,4,0,0,17,19,644,565,19,22,9,7,4,8,0,0,623,531,596,507,8,5,3,1,0,1,0,0,16,17,610,523,19,16,7,5,3,5,0,0,36,51,33,40,0,6,1,0,1,3,0,0,1,2,34,42,0,6,2,2,1,3,0,0 -050,01,133,Alabama,Winston County,13,3,1351,689,662,652,620,6,11,8,10,0,2,1,4,22,15,673,635,16,20,18,14,4,4,1,5,650,616,625,586,4,11,1,4,0,0,0,1,20,14,645,600,12,19,10,8,4,2,0,2,39,46,27,34,2,0,7,6,0,2,1,3,2,1,28,35,4,1,8,6,0,2,1,3 -050,01,133,Alabama,Winston County,13,4,1331,671,660,635,624,12,7,2,6,2,7,7,4,13,12,648,636,15,13,9,12,5,9,7,4,628,624,602,597,11,7,0,4,2,6,1,0,12,10,614,607,14,11,6,8,5,8,1,0,43,36,33,27,1,0,2,2,0,1,6,4,1,2,34,29,1,2,3,4,0,1,6,4 -050,01,133,Alabama,Winston County,13,5,1277,634,643,612,621,6,8,4,3,1,2,4,1,7,8,618,627,9,11,9,5,1,5,4,4,603,615,588,597,6,7,3,2,1,2,0,0,5,7,592,602,8,9,7,4,1,5,0,3,31,28,24,24,0,1,1,1,0,0,4,1,2,1,26,25,1,2,2,1,0,0,4,1 -050,01,133,Alabama,Winston County,13,6,1289,650,639,622,624,7,1,5,4,2,2,2,0,12,8,633,631,11,5,13,8,4,3,2,0,621,619,598,604,6,1,3,4,2,2,0,0,12,8,609,611,10,5,11,8,4,3,0,0,29,20,24,20,1,0,2,0,0,0,2,0,0,0,24,20,1,0,2,0,0,0,2,0 -050,01,133,Alabama,Winston County,13,7,1230,613,617,574,600,14,5,8,4,4,1,4,0,9,7,581,606,18,9,13,8,6,2,4,0,595,602,566,588,14,5,3,2,3,1,0,0,9,6,573,593,18,9,8,5,5,2,0,0,18,15,8,12,0,0,5,2,1,0,4,0,0,1,8,13,0,0,5,3,1,0,4,0 -050,01,133,Alabama,Winston County,13,8,1235,586,649,564,625,1,5,11,5,2,1,4,1,4,12,568,636,3,7,12,11,3,4,4,5,548,618,538,601,1,3,5,3,0,1,1,0,3,10,541,611,2,4,6,9,1,2,1,2,38,31,26,24,0,2,6,2,2,0,3,1,1,2,27,25,1,3,6,2,2,2,3,3 -050,01,133,Alabama,Winston County,13,9,1304,674,630,621,612,22,5,16,7,5,2,1,0,9,4,629,614,24,7,21,9,7,3,2,1,619,605,580,597,21,4,6,1,5,1,1,0,6,2,586,599,23,5,9,1,6,2,1,0,55,25,41,15,1,1,10,6,0,1,0,0,3,2,43,15,1,2,12,8,1,1,1,1 -050,01,133,Alabama,Winston County,13,10,1479,744,735,721,710,8,7,5,5,1,2,3,3,6,8,727,717,9,12,10,9,1,3,3,3,721,712,703,692,6,7,5,4,1,2,0,1,6,6,709,698,7,11,10,7,1,2,0,1,23,23,18,18,2,0,0,1,0,0,3,2,0,2,18,19,2,1,0,2,0,1,3,2 -050,01,133,Alabama,Winston County,13,11,1620,831,789,807,765,4,2,13,8,2,5,0,0,5,9,812,774,6,3,15,15,3,5,0,1,807,773,787,750,4,2,10,8,2,5,0,0,4,8,791,758,5,3,12,14,3,5,0,1,24,16,20,15,0,0,3,0,0,0,0,0,1,1,21,16,1,0,3,1,0,0,0,0 -050,01,133,Alabama,Winston County,13,12,1844,940,904,907,871,9,6,9,6,1,4,1,1,13,16,920,887,9,9,22,19,1,4,1,1,929,893,897,861,9,6,9,6,1,4,1,0,12,16,909,877,9,9,21,19,1,4,1,0,11,11,10,10,0,0,0,0,0,0,0,1,1,0,11,10,0,0,1,0,0,0,0,1 -050,01,133,Alabama,Winston County,13,13,1748,844,904,818,873,4,7,8,11,1,2,1,0,12,11,828,884,8,9,18,19,1,3,1,0,833,896,810,866,4,6,7,11,1,2,0,0,11,11,819,877,7,8,17,19,1,3,0,0,11,8,8,7,0,1,1,0,0,0,1,0,1,0,9,7,1,1,1,0,0,0,1,0 -050,01,133,Alabama,Winston County,13,14,1540,759,781,722,759,10,6,8,5,3,2,1,1,15,8,737,767,12,7,22,10,3,4,1,1,751,778,715,756,10,6,8,5,3,2,0,1,15,8,730,764,12,7,22,10,3,4,0,1,8,3,7,3,0,0,0,0,0,0,1,0,0,0,7,3,0,0,0,0,0,0,1,0 -050,01,133,Alabama,Winston County,13,15,1441,668,773,655,751,1,5,3,6,1,3,2,1,6,7,661,756,2,6,8,12,1,5,2,1,660,766,648,746,1,5,3,6,1,3,1,0,6,6,654,751,2,6,8,11,1,4,1,0,8,7,7,5,0,0,0,0,0,0,1,1,0,1,7,5,0,0,0,1,0,1,1,1 -050,01,133,Alabama,Winston County,13,16,1067,471,596,461,580,1,1,2,5,2,5,0,0,5,5,465,584,2,3,7,9,2,5,0,0,470,596,460,580,1,1,2,5,2,5,0,0,5,5,464,584,2,3,7,9,2,5,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,13,17,675,296,379,291,367,0,2,2,1,0,1,0,0,3,8,293,374,1,5,5,7,0,2,0,0,295,376,290,364,0,2,2,1,0,1,0,0,3,8,292,371,1,5,5,7,0,2,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 -050,01,133,Alabama,Winston County,13,18,587,187,400,184,390,0,3,0,1,0,1,0,0,3,5,187,395,0,3,2,6,1,1,0,0,177,399,174,389,0,3,0,1,0,1,0,0,3,5,177,394,0,3,2,6,1,1,0,0,10,1,10,1,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,0,0,0 +SUMLEV,STATE,COUNTY,STNAME,CTYNAME,YEAR,AGEGRP,TOT_POP,TOT_MALE,TOT_FEMALE,WA_MALE,WA_FEMALE,BA_MALE,BA_FEMALE,IA_MALE,IA_FEMALE,AA_MALE,AA_FEMALE,NA_MALE,NA_FEMALE,TOM_MALE,TOM_FEMALE,WAC_MALE,WAC_FEMALE,BAC_MALE,BAC_FEMALE,IAC_MALE,IAC_FEMALE,AAC_MALE,AAC_FEMALE,NAC_MALE,NAC_FEMALE,NH_MALE,NH_FEMALE,NHWA_MALE,NHWA_FEMALE,NHBA_MALE,NHBA_FEMALE,NHIA_MALE,NHIA_FEMALE,NHAA_MALE,NHAA_FEMALE,NHNA_MALE,NHNA_FEMALE,NHTOM_MALE,NHTOM_FEMALE,NHWAC_MALE,NHWAC_FEMALE,NHBAC_MALE,NHBAC_FEMALE,NHIAC_MALE,NHIAC_FEMALE,NHAAC_MALE,NHAAC_FEMALE,NHNAC_MALE,NHNAC_FEMALE,H_MALE,H_FEMALE,HWA_MALE,HWA_FEMALE,HBA_MALE,HBA_FEMALE,HIA_MALE,HIA_FEMALE,HAA_MALE,HAA_FEMALE,HNA_MALE,HNA_FEMALE,HTOM_MALE,HTOM_FEMALE,HWAC_MALE,HWAC_FEMALE,HBAC_MALE,HBAC_FEMALE,HIAC_MALE,HIAC_FEMALE,HAAC_MALE,HAAC_FEMALE,HNAC_MALE,HNAC_FEMALE +50,1,3,Alabama,Baldwin County,1,7,10709,5317,5392,4615,4667,546,543,42,47,42,59,8,8,64,68,4673,4728,558,565,84,89,62,73,10,9,4859,5065,4193,4368,536,532,29,39,42,58,6,7,53,61,4240,4423,548,554,63,74,56,71,7,8,458,327,422,299,10,11,13,8,0,1,2,1,11,7,433,305,10,11,21,15,6,2,3,1 +50,1,3,Alabama,Baldwin County,2,7,10709,5317,5392,4615,4667,546,543,42,47,42,59,8,8,64,68,4673,4728,558,565,84,89,62,73,10,9,4859,5065,4193,4368,536,532,29,39,42,58,6,7,53,61,4240,4423,548,554,63,74,56,71,7,8,458,327,422,299,10,11,13,8,0,1,2,1,11,7,433,305,10,11,21,15,6,2,3,1 +50,1,5,Alabama,Barbour County,4,3,1605,845,760,368,324,459,424,3,1,5,3,2,1,8,7,375,330,465,427,5,5,7,4,2,1,818,725,346,295,456,420,1,0,5,3,2,0,8,7,353,301,462,423,3,4,7,4,2,0,27,35,22,29,3,4,2,1,0,0,0,1,0,0,22,29,3,4,2,1,0,0,0,1 +50,1,5,Alabama,Barbour County,12,2,1410,689,721,285,305,364,384,5,0,4,4,2,2,29,26,312,327,388,405,9,8,7,5,2,2,623,646,228,237,357,377,3,0,4,4,2,2,29,26,255,259,381,398,7,8,7,5,2,2,66,75,57,68,7,7,2,0,0,0,0,0,0,0,57,68,7,7,2,0,0,0,0,0 +50,1,5,Alabama,Barbour County,12,4,1398,734,664,315,291,396,358,6,3,5,3,1,1,11,8,326,298,403,365,9,5,6,3,1,1,684,633,270,267,394,355,4,1,5,3,1,0,10,7,280,273,401,362,6,2,6,3,1,0,50,31,45,24,2,3,2,2,0,0,0,1,1,1,46,25,2,3,3,3,0,0,0,1 +50,1,7,Alabama,Bibb County,12,9,1410,790,620,565,512,214,98,5,5,2,0,2,0,2,5,567,515,215,101,5,8,3,0,2,1,759,608,538,500,213,98,5,5,2,0,0,0,1,5,539,503,214,101,5,8,2,0,0,1,31,12,27,12,1,0,0,0,0,0,2,0,1,0,28,12,1,0,0,0,1,0,2,0 +50,1,9,Alabama,Blount County,7,18,953,314,639,302,623,6,8,4,2,0,0,1,0,1,6,303,629,7,9,4,8,0,0,1,0,303,635,292,619,6,8,4,2,0,0,0,0,1,6,293,625,7,9,4,8,0,0,0,0,11,4,10,4,0,0,0,0,0,0,1,0,0,0,10,4,0,0,0,0,0,0,1,0 +50,1,9,Alabama,Blount County,10,5,3239,1683,1556,1607,1481,34,25,6,14,6,4,5,3,25,29,1630,1507,42,39,20,30,11,9,6,4,1466,1353,1402,1287,29,23,5,11,6,4,2,0,22,28,1422,1312,34,36,18,27,11,9,3,1,217,203,205,194,5,2,1,3,0,0,3,3,3,1,208,195,8,3,2,3,0,0,3,3 +50,1,9,Alabama,Blount County,13,17,1318,590,728,572,712,5,8,4,3,2,1,0,1,7,3,579,714,5,9,10,6,3,1,0,1,575,722,558,706,4,8,4,3,2,1,0,1,7,3,565,708,4,9,10,6,3,1,0,1,15,6,14,6,1,0,0,0,0,0,0,0,0,0,14,6,1,0,0,0,0,0,0,0 +50,1,11,Alabama,Bullock County,3,17,154,53,101,34,41,19,58,0,2,0,0,0,0,0,0,34,41,19,58,0,2,0,0,0,0,52,100,34,41,18,57,0,2,0,0,0,0,0,0,34,41,18,57,0,2,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0 +50,1,11,Alabama,Bullock County,12,11,577,328,249,100,38,223,207,3,1,1,2,1,0,0,1,100,39,223,208,3,1,1,2,1,0,324,241,98,33,222,205,3,1,1,2,0,0,0,0,98,33,222,205,3,1,1,2,0,0,4,8,2,5,1,2,0,0,0,0,1,0,0,1,2,6,1,3,0,0,0,0,1,0 +50,1,13,Alabama,Butler County,11,5,1082,548,534,253,217,279,306,3,3,9,3,0,0,4,5,257,221,282,309,4,5,10,4,0,0,545,526,252,210,278,306,3,3,9,3,0,0,3,4,255,214,280,309,3,4,10,3,0,0,3,8,1,7,1,0,0,0,0,0,0,0,1,1,2,7,2,0,1,1,0,1,0,0 +50,1,15,Alabama,Calhoun County,5,12,8399,4055,4344,3224,3369,737,874,37,24,21,41,4,1,32,35,3253,3399,746,887,63,49,28,47,5,4,3996,4273,3178,3311,728,869,37,23,19,39,4,1,30,30,3205,3337,735,878,62,46,26,44,5,4,59,71,46,58,9,5,0,1,2,2,0,0,2,5,48,62,11,9,1,3,2,3,0,0 +50,1,15,Alabama,Calhoun County,7,4,7649,3859,3790,2692,2602,1037,1052,15,13,28,29,8,3,79,91,2767,2687,1086,1110,37,40,46,46,10,7,3702,3643,2558,2475,1024,1042,13,11,26,27,7,2,74,86,2629,2556,1070,1099,33,34,42,43,9,6,157,147,134,127,13,10,2,2,2,2,1,1,5,5,138,131,16,11,4,6,4,3,1,1 +50,1,15,Alabama,Calhoun County,11,4,7560,3799,3761,2659,2511,999,1062,17,16,23,37,6,4,95,131,2744,2637,1062,1145,42,52,41,74,9,15,3587,3535,2481,2326,978,1042,12,12,22,35,4,3,90,117,2562,2440,1038,1118,35,42,39,68,7,12,212,226,178,185,21,20,5,4,1,2,2,1,5,14,182,197,24,27,7,10,2,6,2,3 +50,1,15,Alabama,Calhoun County,13,2,6550,3300,3250,2273,2216,806,798,16,12,22,27,2,4,181,193,2445,2400,938,941,45,39,56,64,9,15,3069,3021,2069,2024,798,786,7,5,21,22,2,2,172,182,2232,2200,924,923,34,27,53,58,9,10,231,229,204,192,8,12,9,7,1,5,0,2,9,11,213,200,14,18,11,12,3,6,0,5 +50,1,17,Alabama,Chambers County,3,16,1082,421,661,320,465,99,188,0,0,0,4,0,0,2,4,321,467,100,189,1,4,1,5,0,0,418,656,318,461,98,188,0,0,0,4,0,0,2,3,319,463,99,189,1,3,1,4,0,0,3,5,2,4,1,0,0,0,0,0,0,0,0,1,2,4,1,0,0,1,0,1,0,0 +50,1,17,Alabama,Chambers County,7,12,2496,1176,1320,695,770,463,532,4,4,7,7,0,1,7,6,701,773,465,534,10,7,7,9,0,3,1156,1312,683,765,455,529,4,4,7,7,0,1,7,6,689,768,457,531,10,7,7,9,0,3,20,8,12,5,8,3,0,0,0,0,0,0,0,0,12,5,8,3,0,0,0,0,0,0 +50,1,17,Alabama,Chambers County,8,16,1070,491,579,357,376,125,196,2,2,5,3,0,0,2,2,359,377,125,197,4,3,5,4,0,0,487,574,353,373,125,195,2,2,5,3,0,0,2,1,355,374,125,195,4,3,5,3,0,0,4,5,4,3,0,1,0,0,0,0,0,0,0,1,4,3,0,2,0,0,0,1,0,0 +50,1,17,Alabama,Chambers County,11,2,1945,949,996,499,510,408,441,11,3,7,4,0,0,24,38,522,545,428,473,14,6,8,8,1,5,891,930,459,454,398,433,6,2,6,4,0,0,22,37,481,489,416,464,8,5,7,8,1,4,58,66,40,56,10,8,5,1,1,0,0,0,2,1,41,56,12,9,6,1,1,0,0,1 +50,1,19,Alabama,Cherokee County,3,11,2095,1033,1062,957,985,58,60,10,8,2,2,0,0,6,7,963,991,60,63,13,14,2,2,1,0,1027,1056,951,979,58,60,10,8,2,2,0,0,6,7,957,985,60,63,13,14,2,2,1,0,6,6,6,6,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0 +50,1,21,Alabama,Chilton County,7,1,2891,1473,1418,1225,1179,165,172,8,4,9,12,1,0,65,51,1286,1226,216,216,17,10,18,16,2,2,1265,1232,1032,1005,159,165,4,1,7,12,0,0,63,49,1091,1050,208,207,13,7,16,16,1,2,208,186,193,174,6,7,4,3,2,0,1,0,2,2,195,176,8,9,4,3,2,0,1,0 +50,1,21,Alabama,Chilton County,10,10,2891,1466,1425,1312,1249,126,147,13,5,5,8,4,1,6,15,1317,1262,130,152,15,13,6,12,4,1,1350,1332,1215,1164,120,144,5,2,5,8,1,0,4,14,1218,1176,122,149,7,9,6,12,1,0,116,93,97,85,6,3,8,3,0,0,3,1,2,1,99,86,8,3,8,4,0,0,3,1 +50,1,21,Alabama,Chilton County,12,16,1398,655,743,603,679,44,55,4,2,0,3,0,0,4,4,607,682,44,57,7,5,0,3,1,0,648,739,596,675,44,55,4,2,0,3,0,0,4,4,600,678,44,57,7,5,0,3,1,0,7,4,7,4,0,0,0,0,0,0,0,0,0,0,7,4,0,0,0,0,0,0,0,0 +50,1,23,Alabama,Choctaw County,9,2,676,349,327,197,191,145,132,1,1,0,0,0,0,6,3,203,194,149,135,1,1,2,0,0,0,342,311,191,179,144,128,1,1,0,0,0,0,6,3,197,182,148,131,1,1,2,0,0,0,7,16,6,12,1,4,0,0,0,0,0,0,0,0,6,12,1,4,0,0,0,0,0,0 +50,1,23,Alabama,Choctaw County,10,11,953,450,503,254,267,196,235,0,1,0,0,0,0,0,0,254,267,196,235,0,1,0,0,0,0,450,503,254,267,196,235,0,1,0,0,0,0,0,0,254,267,196,235,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,23,Alabama,Choctaw County,11,16,577,280,297,193,183,84,109,0,1,0,0,0,0,3,4,193,186,87,110,3,4,0,1,0,0,277,296,191,182,83,109,0,1,0,0,0,0,3,4,191,185,86,110,3,4,0,1,0,0,3,1,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0 +50,1,23,Alabama,Choctaw County,12,0,12577,5934,6643,3508,3697,2360,2875,14,10,8,16,0,0,44,45,3546,3738,2390,2896,27,30,17,21,2,4,5876,6570,3464,3638,2347,2865,13,10,8,13,0,0,44,44,3502,3678,2377,2886,26,30,17,18,2,3,58,73,44,59,13,10,1,0,0,3,0,0,0,1,44,60,13,10,1,0,0,3,0,1 +50,1,23,Alabama,Choctaw County,13,14,851,372,479,200,252,172,224,0,1,0,1,0,0,0,1,200,253,172,224,0,2,0,1,0,0,372,476,200,250,172,223,0,1,0,1,0,0,0,1,200,251,172,223,0,2,0,1,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 +50,1,25,Alabama,Clarke County,1,3,1945,955,990,454,452,482,522,5,5,2,3,0,0,12,8,465,459,489,528,12,9,3,4,1,1,940,980,445,445,477,520,5,5,2,3,0,0,11,7,455,451,483,525,12,9,2,3,0,0,15,10,9,7,5,2,0,0,0,0,0,0,1,1,10,8,6,3,0,0,1,1,1,1 +50,1,25,Alabama,Clarke County,2,3,1945,955,990,454,452,482,522,5,5,2,3,0,0,12,8,465,459,489,528,12,9,3,4,1,1,940,980,445,445,477,520,5,5,2,3,0,0,11,7,455,451,483,525,12,9,2,3,0,0,15,10,9,7,5,2,0,0,0,0,0,0,1,1,10,8,6,3,0,0,1,1,1,1 +50,1,25,Alabama,Clarke County,5,7,1485,670,815,352,386,303,410,4,5,7,11,0,0,4,3,355,389,305,412,7,6,7,11,0,0,662,801,345,375,303,407,3,5,7,11,0,0,4,3,348,378,305,409,6,6,7,11,0,0,8,14,7,11,0,3,1,0,0,0,0,0,0,0,7,11,0,3,1,0,0,0,0,0 +50,1,27,Alabama,Clay County,7,17,321,136,185,126,169,8,14,1,1,0,0,0,0,1,1,126,170,9,14,2,2,0,0,0,0,136,183,126,167,8,14,1,1,0,0,0,0,1,1,126,168,9,14,2,2,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 +50,1,27,Alabama,Clay County,12,3,784,414,370,343,289,54,56,2,1,1,0,0,0,14,24,355,313,65,71,5,7,3,3,0,0,388,354,320,277,52,52,1,1,1,0,0,0,14,24,332,301,63,67,4,7,3,3,0,0,26,16,23,12,2,4,1,0,0,0,0,0,0,0,23,12,2,4,1,0,0,0,0,0 +50,1,27,Alabama,Clay County,13,3,784,420,364,344,274,58,64,1,2,1,0,0,0,16,24,359,298,72,82,2,5,3,3,0,0,399,344,324,259,57,59,1,2,1,0,0,0,16,24,339,283,71,77,2,5,3,3,0,0,21,20,20,15,1,5,0,0,0,0,0,0,0,0,20,15,1,5,0,0,0,0,0,0 +50,1,29,Alabama,Cleburne County,10,12,1082,520,562,494,534,18,19,3,3,0,2,0,0,5,4,499,538,18,20,7,5,1,3,0,0,510,554,484,528,18,19,3,2,0,2,0,0,5,3,489,531,18,19,7,4,1,3,0,0,10,8,10,6,0,0,0,1,0,0,0,0,0,1,10,7,0,1,0,1,0,0,0,0 +50,1,31,Alabama,Coffee County,8,4,3379,1780,1599,1296,1138,339,345,21,32,22,14,7,4,95,66,1380,1200,388,378,51,54,48,32,12,6,1619,1486,1161,1052,327,334,21,28,21,14,3,0,86,58,1239,1106,371,364,46,47,46,30,7,2,161,113,135,86,12,11,0,4,1,0,4,4,9,8,141,94,17,14,5,7,2,2,5,4 +50,1,33,Alabama,Colbert County,3,2,3111,1590,1521,1252,1188,256,260,6,10,13,14,1,1,62,48,1313,1235,299,296,19,18,20,17,2,3,1517,1457,1196,1134,248,254,4,10,11,13,1,0,57,46,1252,1179,289,288,15,18,17,16,2,2,73,64,56,54,8,6,2,0,2,1,0,1,5,2,61,56,10,8,4,0,3,1,0,1 +50,1,33,Alabama,Colbert County,11,5,3111,1555,1556,1207,1176,290,314,9,14,4,8,2,2,43,42,1249,1216,312,337,24,28,12,13,4,6,1499,1512,1160,1144,282,311,9,13,4,7,2,2,42,35,1201,1177,303,331,24,24,12,11,4,4,56,44,47,32,8,3,0,1,0,1,0,0,1,7,48,39,9,6,0,4,0,2,0,2 +50,1,35,Alabama,Conecuh County,1,7,676,291,385,148,171,137,209,1,0,0,0,0,0,5,5,151,176,141,212,3,2,3,0,1,0,279,378,143,168,134,207,1,0,0,0,0,0,1,3,144,171,135,209,1,1,0,0,0,0,12,7,5,3,3,2,0,0,0,0,0,0,4,2,7,5,6,3,2,1,3,0,1,0 +50,1,37,Alabama,Coosa County,2,0,11756,5942,5814,3964,3858,1884,1851,37,26,4,12,7,10,46,57,3998,3897,1898,1876,70,64,7,15,16,20,5800,5725,3877,3813,1863,1832,21,20,2,12,0,0,37,48,3910,3852,1877,1857,45,49,5,15,1,1,142,89,87,45,21,19,16,6,2,0,7,10,9,9,88,45,21,19,25,15,2,0,15,19 +50,1,37,Alabama,Coosa County,4,8,676,340,336,228,211,107,117,1,1,0,2,1,1,3,4,231,215,109,119,2,2,0,3,1,1,324,325,215,204,106,115,1,1,0,2,0,0,2,3,217,207,107,116,2,2,0,3,0,0,16,11,13,7,1,2,0,0,0,0,1,1,1,1,14,8,2,3,0,0,0,0,1,1 +50,1,37,Alabama,Coosa County,9,17,271,112,159,80,114,29,45,2,0,0,0,0,0,1,0,81,114,29,45,2,0,1,0,0,0,111,157,80,112,28,45,2,0,0,0,0,0,1,0,81,112,28,45,2,0,1,0,0,0,1,2,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0 +50,1,37,Alabama,Coosa County,9,18,271,94,177,70,126,22,51,0,0,0,0,0,0,2,0,72,126,23,51,2,0,0,0,0,0,94,177,70,126,22,51,0,0,0,0,0,0,2,0,72,126,23,51,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,37,Alabama,Coosa County,10,18,271,95,176,71,126,22,50,0,0,0,0,0,0,2,0,73,126,22,50,1,0,1,0,0,0,95,176,71,126,22,50,0,0,0,0,0,0,2,0,73,126,22,50,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,39,Alabama,Covington County,8,9,2238,1105,1133,944,936,132,174,6,7,14,7,0,0,9,9,952,945,134,174,12,15,16,8,1,0,1086,1119,931,926,131,172,5,5,12,7,0,0,7,9,937,935,132,172,10,13,14,8,1,0,19,14,13,10,1,2,1,2,2,0,0,0,2,0,15,10,2,2,2,2,2,0,0,0 +50,1,41,Alabama,Crenshaw County,9,18,321,87,234,65,195,21,36,0,1,0,0,0,0,1,2,66,196,22,37,1,3,0,0,0,0,84,232,62,193,21,36,0,1,0,0,0,0,1,2,63,194,22,37,1,3,0,0,0,0,3,2,3,2,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0 +50,1,41,Alabama,Crenshaw County,13,14,851,387,464,285,355,92,93,4,5,1,3,0,0,5,8,290,361,92,97,9,10,1,4,0,0,383,459,284,351,90,92,4,5,1,3,0,0,4,8,288,357,90,96,8,10,1,4,0,0,4,5,1,4,2,1,0,0,0,0,0,0,1,0,2,4,2,1,1,0,0,0,0,0 +50,1,43,Alabama,Cullman County,4,6,4790,2453,2337,2366,2241,31,29,12,9,13,25,7,3,24,30,2390,2269,36,38,30,28,14,27,7,5,2218,2205,2157,2114,24,29,7,6,13,25,2,2,15,29,2172,2141,27,37,18,25,14,27,2,4,235,132,209,127,7,0,5,3,0,0,5,1,9,1,218,128,9,1,12,3,0,0,5,1 +50,1,45,Alabama,Dale County,5,4,3111,1646,1465,1123,952,433,417,12,7,15,17,2,0,61,72,1177,1019,463,456,36,30,28,38,6,2,1516,1365,1029,871,412,412,10,6,14,15,1,0,50,61,1074,927,439,446,27,25,25,35,4,1,130,100,94,81,21,5,2,1,1,2,1,0,11,11,103,92,24,10,9,5,3,3,2,1 +50,1,45,Alabama,Dale County,8,9,3038,1488,1550,1150,1114,276,362,13,15,17,22,3,4,29,33,1177,1145,281,369,29,38,26,27,6,7,1393,1460,1077,1041,268,356,8,12,17,22,2,4,21,25,1097,1064,270,359,20,30,23,27,4,7,95,90,73,73,8,6,5,3,0,0,1,0,8,8,80,81,11,10,9,8,3,0,2,0 +50,1,49,Alabama,DeKalb County,8,6,4107,2129,1978,1914,1821,48,40,48,46,54,6,25,18,40,47,1952,1865,52,51,80,81,61,9,26,19,1730,1678,1585,1576,43,31,18,25,48,4,1,0,35,42,1619,1616,46,39,45,57,55,7,2,1,399,300,329,245,5,9,30,21,6,2,24,18,5,5,333,249,6,12,35,24,6,2,24,18 +50,1,51,Alabama,Elmore County,5,6,5139,2505,2634,1680,1942,743,627,21,17,34,17,4,2,23,29,1700,1971,750,638,31,28,41,22,6,6,2386,2515,1586,1835,734,621,14,16,33,15,1,2,18,26,1601,1861,741,630,22,26,37,20,3,6,119,119,94,107,9,6,7,1,1,2,3,0,5,3,99,110,9,8,9,2,4,2,3,0 +50,1,53,Alabama,Escambia County,3,1,2388,1188,1200,671,719,407,392,53,30,2,3,2,0,53,56,722,771,445,430,65,45,8,8,4,3,1140,1165,633,690,402,390,52,29,2,2,1,0,50,54,681,740,439,427,63,43,7,7,3,3,48,35,38,29,5,2,1,1,0,1,1,0,3,2,41,31,6,3,2,2,1,1,1,0 +50,1,53,Alabama,Escambia County,11,16,1296,555,741,425,542,112,176,14,15,0,1,0,0,4,7,429,547,112,179,18,20,0,2,0,0,552,736,424,538,110,175,14,15,0,1,0,0,4,7,428,543,110,178,18,20,0,2,0,0,3,5,1,4,2,1,0,0,0,0,0,0,0,0,1,4,2,1,0,0,0,0,0,0 +50,1,53,Alabama,Escambia County,12,12,2496,1236,1260,834,846,342,345,44,50,3,6,1,0,12,13,843,858,346,348,53,60,4,6,2,1,1211,1242,812,835,340,341,44,48,3,5,1,0,11,13,821,847,343,344,53,58,3,5,2,1,25,18,22,11,2,4,0,2,0,1,0,0,1,0,22,11,3,4,0,2,1,1,0,0 +50,1,55,Alabama,Etowah County,7,11,7194,3502,3692,2952,3050,461,556,28,18,27,24,6,9,28,35,2978,3085,464,561,53,42,29,30,6,9,3417,3627,2883,3001,457,555,24,16,24,23,1,1,28,31,2909,3032,460,559,49,38,26,28,1,1,85,65,69,49,4,1,4,2,3,1,5,8,0,4,69,53,4,2,4,4,3,2,5,8 +50,1,57,Alabama,Fayette County,1,16,577,242,335,230,289,12,42,0,2,0,0,0,0,0,2,230,291,12,42,0,4,0,0,0,0,242,334,230,289,12,41,0,2,0,0,0,0,0,2,230,291,12,41,0,4,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +50,1,57,Alabama,Fayette County,2,3,1145,618,527,517,458,87,59,2,4,3,0,0,0,9,6,526,464,93,64,3,5,5,0,0,0,613,516,514,451,87,58,0,1,3,0,0,0,9,6,523,457,93,63,1,2,5,0,0,0,5,11,3,7,0,1,2,3,0,0,0,0,0,0,3,7,0,1,2,3,0,0,0,0 +50,1,57,Alabama,Fayette County,2,16,577,242,335,230,289,12,42,0,2,0,0,0,0,0,2,230,291,12,42,0,4,0,0,0,0,242,334,230,289,12,41,0,2,0,0,0,0,0,2,230,291,12,41,0,4,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +50,1,57,Alabama,Fayette County,3,16,577,243,334,230,290,13,41,0,1,0,0,0,0,0,2,230,292,13,42,0,2,0,0,0,0,243,333,230,290,13,40,0,1,0,0,0,0,0,2,230,292,13,41,0,2,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +50,1,57,Alabama,Fayette County,5,11,1296,639,657,551,571,80,77,3,6,1,1,0,0,4,2,554,573,82,78,7,7,1,1,0,0,635,654,547,569,80,77,3,5,1,1,0,0,4,2,550,571,82,78,7,6,1,1,0,0,4,3,4,2,0,0,0,1,0,0,0,0,0,0,4,2,0,0,0,1,0,0,0,0 +50,1,57,Alabama,Fayette County,9,10,1082,538,544,479,465,50,70,4,3,1,3,0,0,4,3,482,467,52,72,7,5,1,3,0,0,525,539,467,462,50,70,3,1,1,3,0,0,4,3,470,464,52,72,6,3,1,3,0,0,13,5,12,3,0,0,1,2,0,0,0,0,0,0,12,3,0,0,1,2,0,0,0,0 +50,1,59,Alabama,Franklin County,8,13,1850,866,984,809,914,42,43,4,6,0,6,1,0,10,15,819,929,44,46,11,16,1,8,1,0,827,953,772,888,42,41,3,5,0,6,1,0,9,13,781,901,43,42,10,15,1,8,1,0,39,31,37,26,0,2,1,1,0,0,0,0,1,2,38,28,1,4,1,1,0,0,0,0 +50,1,61,Alabama,Geneva County,9,18,577,196,381,185,354,11,24,0,1,0,1,0,0,0,1,185,355,11,24,0,1,0,2,0,0,191,381,180,354,11,24,0,1,0,1,0,0,0,1,180,355,11,24,0,1,0,2,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0 +50,1,63,Alabama,Greene County,1,16,255,102,153,35,43,67,110,0,0,0,0,0,0,0,0,35,43,67,110,0,0,0,0,0,0,102,152,35,43,67,109,0,0,0,0,0,0,0,0,35,43,67,109,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +50,1,63,Alabama,Greene County,2,16,255,102,153,35,43,67,110,0,0,0,0,0,0,0,0,35,43,67,110,0,0,0,0,0,0,102,152,35,43,67,109,0,0,0,0,0,0,0,0,35,43,67,109,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +50,1,63,Alabama,Greene County,5,16,257,112,145,26,47,86,98,0,0,0,0,0,0,0,0,26,47,86,98,0,0,0,0,0,0,112,144,26,47,86,97,0,0,0,0,0,0,0,0,26,47,86,97,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +50,1,63,Alabama,Greene County,7,18,257,81,176,19,46,62,128,0,0,0,0,0,0,0,2,19,47,62,130,0,1,0,0,0,0,81,176,19,46,62,128,0,0,0,0,0,0,0,2,19,47,62,130,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,63,Alabama,Greene County,11,15,419,172,247,52,56,119,187,1,1,0,0,0,0,0,3,52,59,119,188,1,2,0,1,0,0,171,244,52,55,118,186,1,0,0,0,0,0,0,3,52,58,118,187,1,1,0,1,0,0,1,3,0,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0 +50,1,63,Alabama,Greene County,12,16,321,140,181,40,55,99,122,0,3,1,0,0,0,0,1,40,56,99,122,0,3,1,1,0,0,139,179,40,55,98,121,0,2,1,0,0,0,0,1,40,56,98,121,0,2,1,1,0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0 +50,1,65,Alabama,Hale County,5,0,15366,7284,8082,3082,3131,4132,4863,12,15,13,30,1,3,44,40,3121,3165,4149,4879,35,40,20,36,4,4,7199,8011,3019,3089,4116,4837,10,14,13,30,1,3,40,38,3054,3121,4132,4853,30,37,20,36,4,4,85,71,63,42,16,26,2,1,0,0,0,0,4,2,67,44,17,26,5,3,0,0,0,0 +50,1,65,Alabama,Hale County,6,4,1082,526,556,155,191,365,361,2,3,2,0,0,0,2,1,156,192,367,361,3,3,2,1,0,0,517,548,148,188,364,356,2,3,2,0,0,0,1,1,148,189,365,356,3,3,2,1,0,0,9,8,7,3,1,5,0,0,0,0,0,0,1,0,8,3,2,5,0,0,0,0,0,0 +50,1,67,Alabama,Henry County,9,2,953,487,466,340,333,117,115,4,2,3,4,2,0,21,12,358,344,136,125,8,3,4,5,3,1,469,441,327,314,115,109,4,2,2,4,1,0,20,12,344,325,134,119,7,3,3,5,2,1,18,25,13,19,2,6,0,0,1,0,1,0,1,0,14,19,2,6,1,0,1,0,1,0 +50,1,67,Alabama,Henry County,9,14,1318,629,689,467,525,152,158,7,4,0,0,0,0,3,2,470,526,152,159,10,6,0,0,0,0,626,685,464,522,152,158,7,3,0,0,0,0,3,2,467,523,152,159,10,5,0,0,0,0,3,4,3,3,0,0,0,1,0,0,0,0,0,0,3,3,0,0,0,1,0,0,0,0 +50,1,69,Alabama,Houston County,5,10,7037,3414,3623,2564,2562,763,967,19,21,32,36,3,1,33,36,2591,2589,771,981,43,44,37,43,6,4,3322,3552,2484,2502,760,964,16,19,29,35,3,1,30,31,2509,2525,767,975,38,41,33,41,6,3,92,71,80,60,3,3,3,2,3,1,0,0,3,5,82,64,4,6,5,3,4,2,0,1 +50,1,69,Alabama,Houston County,9,12,7194,3395,3799,2581,2777,741,928,14,20,21,45,2,2,36,27,2612,2803,748,930,41,38,26,49,4,6,3343,3739,2532,2727,740,921,13,19,21,43,2,2,35,27,2562,2753,747,923,39,37,26,47,4,6,52,60,49,50,1,7,1,1,0,2,0,0,1,0,50,50,1,7,2,1,0,2,0,0 +50,1,69,Alabama,Houston County,11,18,2095,692,1403,575,1135,97,235,4,8,3,12,0,0,13,13,586,1144,100,241,12,18,7,14,3,0,680,1388,564,1124,97,233,3,8,3,12,0,0,13,11,575,1132,100,237,11,18,7,13,3,0,12,15,11,11,0,2,1,0,0,0,0,0,0,2,11,12,0,4,1,0,0,1,0,0 +50,1,71,Alabama,Jackson County,5,9,3584,1800,1784,1641,1623,64,58,29,38,9,17,2,3,55,45,1695,1666,70,62,79,79,10,17,3,5,1739,1736,1598,1591,60,57,23,29,7,16,0,0,51,43,1648,1632,65,60,70,69,8,16,1,2,61,48,43,32,4,1,6,9,2,1,2,3,4,2,47,34,5,2,9,10,2,1,2,3 +50,1,71,Alabama,Jackson County,9,7,2738,1308,1430,1180,1312,41,34,27,28,18,22,7,3,35,31,1214,1342,45,40,52,52,23,24,9,4,1261,1385,1143,1273,40,34,25,28,15,18,6,2,32,30,1174,1302,41,39,50,52,20,20,8,3,47,45,37,39,1,0,2,0,3,4,1,1,3,1,40,40,4,1,2,0,3,4,1,1 +50,1,71,Alabama,Jackson County,11,4,3111,1598,1513,1443,1381,56,56,24,16,11,9,2,2,62,49,1503,1427,78,77,60,45,15,11,4,2,1526,1436,1394,1324,53,51,16,10,4,8,1,0,58,43,1450,1365,75,70,48,34,8,10,3,0,72,77,49,57,3,5,8,6,7,1,1,2,4,6,53,62,3,7,12,11,7,1,1,2 +50,1,73,Alabama,Jefferson County,2,13,35968,16771,19197,10508,11483,5951,7384,48,42,161,175,3,4,100,109,10590,11565,5976,7433,131,117,179,195,7,11,16631,19034,10404,11354,5927,7357,42,39,160,175,2,4,96,105,10483,11434,5949,7404,124,113,177,193,5,9,140,163,104,129,24,27,6,3,1,0,1,0,4,4,107,131,27,29,7,4,2,2,2,2 +50,1,75,Alabama,Lamar County,1,18,271,70,201,59,179,11,21,0,0,0,0,0,0,0,1,59,180,11,22,0,0,0,0,0,0,69,200,58,178,11,21,0,0,0,0,0,0,0,1,58,179,11,22,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 +50,1,75,Alabama,Lamar County,2,18,271,70,201,59,179,11,21,0,0,0,0,0,0,0,1,59,180,11,22,0,0,0,0,0,0,69,200,58,178,11,21,0,0,0,0,0,0,0,1,58,179,11,22,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 +50,1,75,Alabama,Lamar County,6,16,577,254,323,241,292,9,29,0,0,0,0,0,0,4,2,243,294,12,29,3,2,1,0,0,0,251,322,238,291,9,29,0,0,0,0,0,0,4,2,240,293,12,29,3,2,1,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 +50,1,79,Alabama,Lawrence County,6,14,1945,875,1070,735,882,83,128,30,21,1,1,0,0,26,38,759,920,86,128,53,57,3,3,0,0,873,1066,733,878,83,128,30,21,1,1,0,0,26,38,757,916,86,128,53,57,3,3,0,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 +50,1,81,Alabama,Lee County,5,16,2496,1114,1382,905,1064,187,301,2,1,14,11,1,0,5,5,909,1068,188,302,7,5,14,12,1,0,1100,1371,892,1054,187,300,1,1,14,11,1,0,5,5,896,1058,188,301,6,5,14,12,1,0,14,11,13,10,0,1,1,0,0,0,0,0,0,0,13,10,0,1,1,0,0,0,0,0 +50,1,81,Alabama,Lee County,12,5,21462,11267,10195,8739,7825,1794,1913,49,28,465,285,5,4,215,140,8933,7951,1908,1990,105,62,538,334,9,12,10935,9909,8445,7584,1775,1886,44,25,464,283,0,1,207,130,8631,7702,1884,1956,96,54,537,331,4,9,332,286,294,241,19,27,5,3,1,2,5,3,8,10,302,249,24,34,9,8,1,3,5,3 +50,1,81,Alabama,Lee County,13,11,9499,4575,4924,3242,3348,1024,1259,11,14,247,255,11,3,40,45,3277,3389,1032,1268,38,33,257,273,12,7,4415,4811,3110,3254,1014,1250,7,12,243,251,5,2,36,42,3141,3292,1022,1258,30,30,253,268,6,6,160,113,132,94,10,9,4,2,4,4,6,1,4,3,136,97,10,10,8,3,4,5,6,1 +50,1,83,Alabama,Limestone County,1,4,5317,2682,2635,2206,2161,355,356,27,32,23,17,4,2,67,67,2267,2223,390,392,60,56,35,31,4,5,2484,2449,2040,2011,349,350,18,20,21,14,1,1,55,53,2090,2060,380,381,40,36,32,26,1,3,198,186,166,150,6,6,9,12,2,3,3,1,12,14,177,163,10,11,20,20,3,5,3,2 +50,1,83,Alabama,Limestone County,2,4,5317,2682,2635,2206,2161,355,356,27,32,23,17,4,2,67,67,2267,2223,390,392,60,56,35,31,4,5,2484,2449,2040,2011,349,350,18,20,21,14,1,1,55,53,2090,2060,380,381,40,36,32,26,1,3,198,186,166,150,6,6,9,12,2,3,3,1,12,14,177,163,10,11,20,20,3,5,3,2 +50,1,83,Alabama,Limestone County,11,7,6356,3233,3123,2517,2509,585,438,34,30,36,69,9,7,52,70,2560,2576,602,464,63,62,51,87,9,9,2984,2910,2310,2335,574,422,23,20,36,67,2,0,39,66,2345,2398,584,447,44,49,48,85,2,2,249,213,207,174,11,16,11,10,0,2,7,7,13,4,215,178,18,17,19,13,3,2,7,7 +50,1,85,Alabama,Lowndes County,4,18,174,50,124,21,34,29,89,0,0,0,1,0,0,0,0,21,34,29,89,0,0,0,1,0,0,50,123,21,33,29,89,0,0,0,1,0,0,0,0,21,33,29,89,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +50,1,85,Alabama,Lowndes County,5,10,784,372,412,98,90,273,316,0,3,0,1,0,0,1,2,99,92,274,317,0,3,0,2,0,0,368,408,95,90,273,314,0,3,0,0,0,0,0,1,95,91,273,314,0,3,0,1,0,0,4,4,3,0,0,2,0,0,0,1,0,0,1,1,4,1,1,3,0,0,0,1,0,0 +50,1,85,Alabama,Lowndes County,8,5,676,340,336,60,58,276,272,0,0,2,2,0,0,2,4,62,62,278,273,0,2,2,3,0,0,335,326,59,54,274,269,0,0,1,2,0,0,1,1,60,55,275,270,0,0,1,2,0,0,5,10,1,4,2,3,0,0,1,0,0,0,1,3,2,7,3,3,0,2,1,1,0,0 +50,1,85,Alabama,Lowndes County,9,18,189,58,131,29,29,29,99,0,0,0,3,0,0,0,0,29,29,29,99,0,0,0,3,0,0,58,131,29,29,29,99,0,0,0,3,0,0,0,0,29,29,29,99,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,1,87,Alabama,Macon County,3,5,2496,1074,1422,95,93,963,1310,1,1,2,2,0,0,13,16,102,103,973,1323,7,9,4,4,1,1,1051,1405,88,88,949,1300,1,1,2,2,0,0,11,14,95,97,958,1311,6,8,3,4,0,1,23,17,7,5,14,10,0,0,0,0,0,0,2,2,7,6,15,12,1,1,1,0,1,0 +50,1,87,Alabama,Macon County,13,12,1182,508,674,110,130,391,528,0,5,1,3,1,0,5,8,114,134,394,533,3,10,1,5,1,1,505,665,109,127,389,524,0,5,1,3,1,0,5,6,113,130,392,528,3,9,1,4,1,0,3,9,1,3,2,4,0,0,0,0,0,0,0,2,1,4,2,5,0,1,0,1,0,1 +50,1,91,Alabama,Marengo County,4,9,1318,592,726,290,305,293,409,1,2,1,4,3,0,4,6,293,309,295,413,3,6,1,5,4,0,580,717,282,299,292,407,1,2,1,4,0,0,4,5,285,302,294,411,3,5,1,5,1,0,12,9,8,6,1,2,0,0,0,0,3,0,0,1,8,7,1,2,0,1,0,0,3,0 +50,1,91,Alabama,Marengo County,9,11,1318,638,680,342,322,284,351,1,1,3,3,2,0,6,3,348,325,286,352,5,3,3,3,2,0,626,676,334,318,282,351,1,1,3,3,0,0,6,3,340,321,284,352,5,3,3,3,0,0,12,4,8,4,2,0,0,0,0,0,2,0,0,0,8,4,2,0,0,0,0,0,2,0 +50,1,91,Alabama,Marengo County,11,9,1070,498,572,261,269,229,297,3,1,3,1,0,2,2,2,262,271,231,298,3,3,3,1,1,2,468,544,239,248,223,292,1,1,3,1,0,1,2,1,240,249,225,293,1,2,3,1,1,1,30,28,22,21,6,5,2,0,0,0,0,1,0,1,22,22,6,5,2,1,0,0,0,1 +50,1,91,Alabama,Marengo County,12,0,18919,8920,9999,4321,4506,4435,5327,25,22,28,32,19,16,92,96,4399,4588,4481,5379,63,65,43,47,28,18,8639,9751,4108,4316,4400,5298,20,17,22,29,3,5,86,86,4180,4389,4444,5343,54,56,37,43,12,7,281,248,213,190,35,29,5,5,6,3,16,11,6,10,219,199,37,36,9,9,6,4,16,11 +50,1,91,Alabama,Marengo County,13,14,1182,577,605,302,293,272,303,0,0,1,1,1,1,1,7,302,300,273,303,1,5,1,3,1,1,571,605,298,293,271,303,0,0,1,1,0,1,1,7,298,300,272,303,1,5,1,3,0,1,6,0,4,0,1,0,0,0,0,0,1,0,0,0,4,0,1,0,0,0,0,0,1,0 +50,1,93,Alabama,Marion County,2,11,2238,1112,1126,1041,1068,60,37,2,6,2,6,1,0,6,9,1046,1077,61,37,8,14,2,8,1,0,1101,1113,1031,1055,60,37,2,6,2,6,0,0,6,9,1036,1064,61,37,8,14,2,8,0,0,11,13,10,13,0,0,0,0,0,0,1,0,0,0,10,13,0,0,0,0,0,0,1,0 +50,1,93,Alabama,Marion County,4,15,1485,677,808,656,785,13,15,2,2,0,1,1,0,5,5,660,789,16,16,6,7,0,1,1,0,670,808,651,785,13,15,2,2,0,1,0,0,4,5,654,789,15,16,6,7,0,1,0,0,7,0,5,0,0,0,0,0,0,0,1,0,1,0,6,0,1,0,0,0,0,0,1,0 +50,1,93,Alabama,Marion County,8,1,1606,814,792,748,724,27,36,1,3,6,3,0,0,32,26,778,747,49,57,8,7,13,5,0,2,765,754,706,694,22,31,1,3,6,1,0,0,30,25,734,716,43,51,7,7,12,3,0,2,49,38,42,30,5,5,0,0,0,2,0,0,2,1,44,31,6,6,1,0,1,2,0,0 +50,1,93,Alabama,Marion County,10,8,1724,872,852,792,812,69,28,5,0,3,4,1,2,2,6,794,817,70,30,6,3,3,6,1,2,830,827,755,791,65,26,4,0,3,4,1,1,2,5,757,796,66,27,5,3,3,5,1,1,42,25,37,21,4,2,1,0,0,0,0,1,0,1,37,21,4,3,1,0,0,1,0,1 +50,1,95,Alabama,Marshall County,8,10,6073,3099,2974,2868,2800,112,75,45,36,36,17,4,8,34,38,2895,2835,119,84,69,65,42,20,8,8,2752,2771,2575,2624,95,69,20,28,35,16,2,3,25,31,2599,2652,98,75,40,54,38,18,2,3,347,203,293,176,17,6,25,8,1,1,2,5,9,7,296,183,21,9,29,11,4,2,6,5 +50,1,95,Alabama,Marshall County,12,7,5731,2895,2836,2658,2652,137,83,41,25,14,19,8,13,37,44,2693,2692,146,100,65,49,20,23,8,16,2373,2410,2181,2264,129,70,20,14,14,19,2,5,27,38,2207,2300,135,85,37,34,19,23,2,6,522,426,477,388,8,13,21,11,0,0,6,8,10,6,486,392,11,15,28,15,1,0,6,10 +50,1,95,Alabama,Marshall County,13,7,5849,2963,2886,2701,2701,156,84,44,24,17,16,12,12,33,49,2731,2745,169,102,66,48,19,25,13,15,2482,2494,2274,2342,146,74,20,14,15,16,2,4,25,44,2298,2382,154,89,36,36,16,25,3,6,481,392,427,359,10,10,24,10,2,0,10,8,8,5,433,363,15,13,30,12,3,0,10,9 +50,1,97,Alabama,Mobile County,7,4,27310,13850,13460,7412,7083,5742,5710,152,153,266,241,4,5,274,268,7654,7321,5905,5870,254,242,329,304,13,17,13498,13076,7127,6771,5704,5677,145,133,265,237,2,1,255,257,7353,7000,5858,5829,234,219,322,299,9,11,352,384,285,312,38,33,7,20,1,4,2,4,19,11,301,321,47,41,20,23,7,5,4,6 +50,1,99,Alabama,Monroe County,5,6,1145,522,623,280,322,231,284,3,7,1,2,0,0,7,8,286,329,236,286,5,11,1,5,1,0,509,610,269,309,230,284,3,7,1,2,0,0,6,8,274,316,234,286,5,11,1,5,1,0,13,13,11,13,1,0,0,0,0,0,0,0,1,0,12,13,2,0,0,0,0,0,0,0 +50,1,99,Alabama,Monroe County,6,16,676,297,379,206,250,80,120,3,2,0,0,0,0,8,7,214,257,81,123,9,7,0,0,1,0,295,375,204,246,80,120,3,2,0,0,0,0,8,7,212,253,81,123,9,7,0,0,1,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 +50,1,99,Alabama,Monroe County,12,15,1070,518,552,347,375,157,168,8,7,1,2,0,0,5,0,350,375,159,168,13,7,1,2,0,0,514,548,345,371,155,168,8,7,1,2,0,0,5,0,348,371,157,168,13,7,1,2,0,0,4,4,2,4,2,0,0,0,0,0,0,0,0,0,2,4,2,0,0,0,0,0,0,0 +50,1,101,Alabama,Montgomery County,8,8,14413,6826,7587,2560,2312,3839,4837,20,21,346,309,11,9,50,99,2602,2378,3862,4889,46,65,363,350,17,21,6550,7351,2340,2141,3809,4803,12,14,342,306,3,3,44,84,2377,2199,3828,4848,35,52,359,340,8,10,276,236,220,171,30,34,8,7,4,3,8,6,6,15,225,179,34,41,11,13,4,10,9,11 +50,1,103,Alabama,Morgan County,1,7,7560,3816,3744,3163,3036,536,569,46,48,25,37,4,6,42,48,3202,3080,544,582,77,81,30,43,5,7,3233,3333,2638,2667,507,556,30,29,24,35,4,1,30,45,2666,2708,511,568,53,59,29,41,4,2,583,411,525,369,29,13,16,19,1,2,0,5,12,3,536,372,33,14,24,22,1,2,1,5 +50,1,103,Alabama,Morgan County,2,7,7560,3816,3744,3163,3036,536,569,46,48,25,37,4,6,42,48,3202,3080,544,582,77,81,30,43,5,7,3233,3333,2638,2667,507,556,30,29,24,35,4,1,30,45,2666,2708,511,568,53,59,29,41,4,2,583,411,525,369,29,13,16,19,1,2,0,5,12,3,536,372,33,14,24,22,1,2,1,5 +50,1,103,Alabama,Morgan County,11,5,6802,3487,3315,2714,2552,586,578,58,53,8,17,5,7,116,108,2825,2656,644,636,103,93,25,33,9,9,3152,3009,2419,2289,576,562,41,44,6,17,0,1,110,96,2525,2381,630,613,84,78,23,33,3,3,335,306,295,263,10,16,17,9,2,0,5,6,6,12,300,275,14,23,19,15,2,0,6,6 +50,1,105,Alabama,Perry County,5,6,523,255,268,65,60,189,207,1,0,0,0,0,0,0,1,65,60,189,208,1,1,0,0,0,0,252,267,62,59,189,207,1,0,0,0,0,0,0,1,62,59,189,208,1,1,0,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 +50,1,105,Alabama,Perry County,5,17,257,93,164,45,72,48,92,0,0,0,0,0,0,0,0,45,72,48,92,0,0,0,0,0,0,92,163,44,72,48,91,0,0,0,0,0,0,0,0,44,72,48,91,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0 +50,1,105,Alabama,Perry County,6,6,523,249,274,60,64,189,209,0,0,0,0,0,0,0,1,60,65,189,209,0,1,0,0,0,0,246,273,57,63,189,209,0,0,0,0,0,0,0,1,57,64,189,209,0,1,0,0,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 +50,1,105,Alabama,Perry County,7,17,224,85,139,50,68,35,70,0,0,0,0,0,0,0,1,50,69,35,70,0,1,0,0,0,0,85,135,50,68,35,66,0,0,0,0,0,0,0,1,50,69,35,66,0,1,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0 +50,1,105,Alabama,Perry County,8,4,953,533,420,229,167,285,248,4,0,14,2,0,0,1,3,229,170,286,249,5,1,14,3,0,0,510,410,206,158,285,247,4,0,14,2,0,0,1,3,206,161,286,248,5,1,14,3,0,0,23,10,23,9,0,1,0,0,0,0,0,0,0,0,23,9,0,1,0,0,0,0,0,0 +50,1,105,Alabama,Perry County,8,14,523,248,275,100,102,147,167,0,3,1,2,0,0,0,1,100,103,147,167,0,4,1,2,0,0,246,274,99,102,146,166,0,3,1,2,0,0,0,1,99,103,146,166,0,4,1,2,0,0,2,1,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0 +50,1,105,Alabama,Perry County,13,8,419,191,228,45,45,146,181,0,0,0,0,0,0,0,2,45,47,146,182,0,1,0,0,0,0,189,221,43,39,146,181,0,0,0,0,0,0,0,1,43,40,146,182,0,0,0,0,0,0,2,7,2,6,0,0,0,0,0,0,0,0,0,1,2,7,0,0,0,1,0,0,0,0 +50,1,107,Alabama,Pickens County,4,1,1145,562,583,266,274,265,285,2,0,3,1,5,5,21,18,286,291,284,301,6,1,3,2,5,6,539,561,249,258,264,284,2,0,3,1,0,0,21,18,269,275,283,300,6,1,3,2,0,1,23,22,17,16,1,1,0,0,0,0,5,5,0,0,17,16,1,1,0,0,0,0,5,5 +50,1,107,Alabama,Pickens County,5,3,1318,669,649,343,320,314,317,1,0,1,4,0,1,10,7,353,327,321,321,3,2,3,5,0,1,664,641,339,315,313,315,1,0,1,4,0,0,10,7,349,322,320,319,3,2,3,5,0,0,5,8,4,5,1,2,0,0,0,0,0,1,0,0,4,5,1,2,0,0,0,0,0,1 +50,1,107,Alabama,Pickens County,5,13,1318,654,664,427,376,223,282,1,2,0,1,0,0,3,3,430,379,224,282,3,4,0,2,0,0,649,657,425,375,220,276,1,2,0,1,0,0,3,3,428,378,221,276,3,4,0,2,0,0,5,7,2,1,3,6,0,0,0,0,0,0,0,0,2,1,3,6,0,0,0,0,0,0 +50,1,107,Alabama,Pickens County,6,11,1494,735,759,472,418,255,334,1,3,4,1,0,0,3,3,475,421,255,334,3,6,5,1,0,0,725,751,466,413,253,331,1,3,2,1,0,0,3,3,469,416,253,331,3,6,3,1,0,0,10,8,6,5,2,3,0,0,2,0,0,0,0,0,6,5,2,3,0,0,2,0,0,0 +50,1,107,Alabama,Pickens County,11,6,1398,724,674,396,373,313,292,1,0,1,5,6,1,7,3,402,376,318,294,2,1,3,5,6,1,628,621,309,332,311,282,1,0,0,5,0,0,7,2,315,334,316,283,2,1,2,5,0,0,96,53,87,41,2,10,0,0,1,0,6,1,0,1,87,42,2,11,0,0,1,0,6,1 +50,1,107,Alabama,Pickens County,12,4,1182,645,537,342,279,284,245,1,1,3,2,3,3,12,7,352,286,295,249,3,3,3,3,4,3,611,504,313,251,282,244,1,0,3,2,0,0,12,7,323,258,293,248,3,2,3,3,1,0,34,33,29,28,2,1,0,1,0,0,3,3,0,0,29,28,2,1,0,1,0,0,3,3 +50,1,107,Alabama,Pickens County,12,9,1070,512,558,350,303,157,247,2,1,1,2,2,2,0,3,350,306,157,247,2,2,1,4,2,2,465,521,305,268,157,247,2,1,1,2,0,0,0,3,305,271,157,247,2,2,1,4,0,0,47,37,45,35,0,0,0,0,0,0,2,2,0,0,45,35,0,0,0,0,0,0,2,2 +50,1,107,Alabama,Pickens County,12,17,523,222,301,154,208,66,91,1,0,0,0,0,1,1,1,155,209,66,91,2,1,0,0,0,1,221,299,153,208,66,90,1,0,0,0,0,0,1,1,154,209,66,90,2,1,0,0,0,0,1,2,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1 +50,1,109,Alabama,Pike County,13,16,1019,452,567,343,423,96,131,2,3,4,1,0,1,7,8,350,429,99,134,6,9,4,2,1,1,449,560,342,420,95,128,2,3,4,0,0,1,6,8,348,426,97,131,5,9,4,1,1,1,3,7,1,3,1,3,0,0,0,1,0,0,1,0,2,3,2,3,1,0,0,1,0,0 +50,1,111,Alabama,Randolph County,3,5,1221,582,639,438,462,137,168,1,3,1,0,0,0,5,6,443,467,139,172,4,3,1,3,0,0,547,616,404,440,136,167,1,3,1,0,0,0,5,6,409,445,138,171,4,3,1,3,0,0,35,23,34,22,1,1,0,0,0,0,0,0,0,0,34,22,1,1,0,0,0,0,0,0 +50,1,115,Alabama,St. Clair County,7,2,5731,3017,2714,2623,2364,260,233,9,11,22,29,3,4,100,73,2721,2432,327,282,29,27,40,43,3,7,2907,2602,2525,2268,253,229,6,5,21,29,3,1,99,70,2622,2333,319,277,26,19,39,42,3,4,110,112,98,96,7,4,3,6,1,0,0,3,1,3,99,99,8,5,3,8,1,1,0,3 +50,1,115,Alabama,St. Clair County,9,14,4974,2362,2612,2186,2404,133,167,11,12,13,16,1,0,18,13,2204,2416,133,169,27,21,14,18,2,1,2342,2595,2168,2387,133,167,10,12,13,16,1,0,17,13,2185,2399,133,169,25,21,14,18,2,1,20,17,18,17,0,0,1,0,0,0,0,0,1,0,19,17,0,0,2,0,0,0,0,0 +50,1,115,Alabama,St. Clair County,13,8,6073,3009,3064,2560,2647,359,330,15,8,55,43,3,1,17,35,2575,2677,362,338,25,33,60,50,5,4,2890,2978,2460,2575,349,329,9,4,55,41,0,1,17,28,2475,2601,352,337,19,23,60,47,2,1,119,86,100,72,10,1,6,4,0,2,3,0,0,7,100,76,10,1,6,10,0,3,3,3 +50,1,117,Alabama,Shelby County,2,1,13141,6745,6396,5614,5242,779,781,22,31,137,158,5,9,188,175,5793,5411,901,887,49,49,194,215,11,14,6004,5676,4936,4588,761,761,9,13,128,151,3,4,167,159,5097,4743,871,858,27,26,182,203,8,9,741,720,678,654,18,20,13,18,9,7,2,5,21,16,696,668,30,29,22,23,12,12,3,5 +50,1,117,Alabama,Shelby County,13,17,3902,1686,2216,1576,2056,66,117,10,6,27,28,1,0,6,9,1581,2063,67,119,13,12,30,30,2,1,1640,2183,1530,2025,66,115,10,6,27,28,1,0,6,9,1535,2032,67,117,13,12,30,30,2,1,46,33,46,31,0,2,0,0,0,0,0,0,0,0,46,31,0,2,0,0,0,0,0,0 +50,1,119,Alabama,Sumter County,1,0,13763,6261,7502,1579,1770,4647,5673,4,7,9,24,2,2,20,26,1591,1786,4662,5694,10,16,19,33,9,6,6209,7468,1546,1758,4631,5655,4,7,9,24,0,1,19,23,1557,1772,4645,5673,10,15,18,31,7,4,52,34,33,12,16,18,0,0,0,0,2,1,1,3,34,14,17,21,0,1,1,2,2,2 +50,1,119,Alabama,Sumter County,2,0,13763,6261,7502,1579,1770,4647,5673,4,7,9,24,2,2,20,26,1591,1786,4662,5694,10,16,19,33,9,6,6209,7468,1546,1758,4631,5655,4,7,9,24,0,1,19,23,1557,1772,4645,5673,10,15,18,31,7,4,52,34,33,12,16,18,0,0,0,0,2,1,1,3,34,14,17,21,0,1,1,2,2,2 +50,1,119,Alabama,Sumter County,3,5,1494,666,828,208,293,452,525,1,5,2,2,0,2,3,1,211,293,454,525,2,5,2,3,0,3,650,814,195,290,449,516,1,5,2,2,0,1,3,0,198,290,451,516,2,5,2,2,0,1,16,14,13,3,3,9,0,0,0,0,0,1,0,1,13,3,3,9,0,0,0,1,0,2 +50,1,119,Alabama,Sumter County,8,4,1145,550,595,126,177,409,409,0,0,13,4,0,0,2,5,128,181,411,413,0,2,13,4,0,0,547,589,124,172,408,408,0,0,13,4,0,0,2,5,126,176,410,412,0,2,13,4,0,0,3,6,2,5,1,1,0,0,0,0,0,0,0,0,2,5,1,1,0,0,0,0,0,0 +50,1,119,Alabama,Sumter County,9,3,676,328,348,48,47,278,296,0,0,0,1,0,0,2,4,50,51,279,299,1,1,0,1,0,0,324,340,44,40,278,295,0,0,0,1,0,0,2,4,46,44,279,298,1,1,0,1,0,0,4,8,4,7,0,1,0,0,0,0,0,0,0,0,4,7,0,1,0,0,0,0,0,0 +50,1,119,Alabama,Sumter County,9,9,577,241,336,46,49,193,284,0,0,0,3,1,0,1,0,47,49,194,284,0,0,0,3,1,0,239,334,46,47,192,284,0,0,0,3,0,0,1,0,47,47,193,284,0,0,0,3,0,0,2,2,0,2,1,0,0,0,0,0,1,0,0,0,0,2,1,0,0,0,0,0,1,0 +50,1,119,Alabama,Sumter County,10,10,676,309,367,84,72,221,291,0,1,2,3,1,0,1,0,85,72,222,291,0,1,2,3,1,0,304,366,82,72,219,290,0,1,2,3,0,0,1,0,83,72,220,290,0,1,2,3,0,0,5,1,2,0,2,1,0,0,0,0,1,0,0,0,2,0,2,1,0,0,0,0,1,0 +50,1,119,Alabama,Sumter County,10,11,676,301,375,66,68,232,302,0,1,0,0,0,0,3,4,68,71,233,304,3,3,0,1,0,1,297,371,63,68,231,298,0,1,0,0,0,0,3,4,65,71,232,300,3,3,0,1,0,1,4,4,3,0,1,4,0,0,0,0,0,0,0,0,3,0,1,4,0,0,0,0,0,0 +50,1,121,Alabama,Talladega County,5,5,5472,2608,2864,1531,1544,1004,1265,16,14,26,13,1,0,30,28,1557,1570,1019,1281,32,24,31,18,3,2,2519,2816,1458,1511,1000,1256,9,11,25,12,1,0,26,26,1482,1535,1013,1270,23,20,28,17,1,2,89,48,73,33,4,9,7,3,1,1,0,0,4,2,75,35,6,11,9,4,3,1,2,0 +50,1,121,Alabama,Talladega County,9,4,5139,2554,2585,1511,1441,956,1068,9,6,8,13,0,0,70,57,1577,1489,1001,1108,32,23,18,21,2,3,2482,2539,1451,1402,953,1064,7,6,7,13,0,0,64,54,1512,1447,996,1103,25,21,16,21,1,3,72,46,60,39,3,4,2,0,1,0,0,0,6,3,65,42,5,5,7,2,2,0,1,0 +50,1,125,Alabama,Tuscaloosa County,3,15,4795,2122,2673,1686,2017,419,633,3,1,8,10,0,0,6,12,1690,2027,421,635,9,10,8,13,0,0,2107,2656,1674,2002,416,632,3,1,8,10,0,0,6,11,1678,2011,418,634,9,9,8,13,0,0,15,17,12,15,3,1,0,0,0,0,0,0,0,1,12,16,3,1,0,1,0,0,0,0 +50,1,125,Alabama,Tuscaloosa County,7,17,3111,1133,1978,924,1509,197,443,0,4,9,13,0,0,3,9,927,1518,197,443,3,12,9,14,0,0,1121,1955,913,1487,196,442,0,4,9,13,0,0,3,9,916,1496,196,442,3,12,9,14,0,0,12,23,11,22,1,1,0,0,0,0,0,0,0,0,11,22,1,1,0,0,0,0,0,0 +50,1,125,Alabama,Tuscaloosa County,9,12,12102,5717,6385,4050,4283,1589,1986,16,22,43,63,1,1,18,30,4064,4308,1595,1997,26,41,49,72,3,3,5616,6292,3967,4203,1581,1978,9,19,43,63,0,1,16,28,3980,4226,1586,1989,18,38,47,70,1,3,101,93,83,80,8,8,7,3,0,0,1,0,2,2,84,82,9,8,8,3,2,2,2,0 +50,1,127,Alabama,Walker County,6,10,4434,2209,2225,2077,2051,95,142,15,6,3,11,1,0,18,15,2091,2065,99,146,29,17,7,12,3,1,2173,2198,2048,2027,93,141,13,6,3,10,0,0,16,14,2060,2040,97,145,25,16,6,11,1,1,36,27,29,24,2,1,2,0,0,1,1,0,2,1,31,25,2,1,4,1,1,1,2,0 +50,1,127,Alabama,Walker County,7,6,3707,1824,1883,1638,1714,144,131,10,8,10,13,7,1,15,16,1653,1728,148,138,19,16,13,18,8,2,1765,1847,1601,1681,138,129,4,8,8,13,3,0,11,16,1612,1695,141,136,11,16,10,18,4,1,59,36,37,33,6,2,6,0,2,0,4,1,4,0,41,33,7,2,8,0,3,0,4,1 +50,1,129,Alabama,Washington County,1,11,1318,633,685,452,443,148,186,29,50,0,2,0,1,4,3,455,446,149,186,32,52,1,3,0,1,627,681,447,440,148,185,28,50,0,2,0,1,4,3,450,443,149,185,31,52,1,3,0,1,6,4,5,3,0,1,1,0,0,0,0,0,0,0,5,3,0,1,1,0,0,0,0,0 +50,1,129,Alabama,Washington County,2,11,1318,633,685,452,443,148,186,29,50,0,2,0,1,4,3,455,446,149,186,32,52,1,3,0,1,627,681,447,440,148,185,28,50,0,2,0,1,4,3,450,443,149,185,31,52,1,3,0,1,6,4,5,3,0,1,1,0,0,0,0,0,0,0,5,3,0,1,1,0,0,0,0,0 +50,1,129,Alabama,Washington County,4,3,1296,654,642,402,382,176,177,66,68,3,0,1,1,6,14,407,394,178,181,68,78,6,4,1,1,644,636,396,378,176,175,63,68,2,0,1,1,6,14,401,390,178,179,65,78,5,4,1,1,10,6,6,4,0,2,3,0,1,0,0,0,0,0,6,4,0,2,3,0,1,0,0,0 +50,1,129,Alabama,Washington County,5,18,271,88,183,58,128,24,52,4,3,0,0,0,0,2,0,59,128,25,52,6,3,0,0,0,0,88,180,58,126,24,51,4,3,0,0,0,0,2,0,59,126,25,51,6,3,0,0,0,0,0,3,0,2,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0 +50,1,129,Alabama,Washington County,7,10,1145,547,598,386,387,114,152,37,55,1,1,2,0,7,3,393,390,114,153,44,57,1,1,2,0,543,593,383,385,114,150,37,55,0,1,2,0,7,2,390,387,114,151,44,56,0,1,2,0,4,5,3,2,0,2,0,0,1,0,0,0,0,1,3,3,0,2,0,1,1,0,0,0 +50,1,129,Alabama,Washington County,9,6,953,486,467,318,299,132,116,26,44,1,0,1,1,8,7,325,305,135,121,32,47,1,0,1,1,478,458,313,293,131,116,25,42,1,0,0,1,8,6,320,298,134,120,31,45,1,0,0,1,8,9,5,6,1,0,1,2,0,0,1,0,0,1,5,7,1,1,1,2,0,0,1,0 +50,1,129,Alabama,Washington County,12,6,1019,533,486,335,300,161,136,29,40,0,3,1,0,7,7,340,307,165,137,34,43,0,5,1,1,524,477,330,294,159,136,28,39,0,3,1,0,6,5,334,299,163,137,32,41,0,5,1,0,9,9,5,6,2,0,1,1,0,0,0,0,1,2,6,8,2,0,2,2,0,0,0,1 +50,1,131,Alabama,Wilcox County,3,2,851,423,428,79,79,341,348,0,0,0,0,0,0,3,1,81,80,343,349,1,0,1,0,0,0,420,426,78,77,339,348,0,0,0,0,0,0,3,1,80,78,341,349,1,0,1,0,0,0,3,2,1,2,2,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,0,0 +50,1,131,Alabama,Wilcox County,12,5,676,359,317,93,72,259,243,0,0,1,0,0,0,6,2,99,74,262,244,2,0,3,1,0,0,352,313,93,70,254,241,0,0,1,0,0,0,4,2,97,72,256,242,1,0,3,1,0,0,7,4,0,2,5,2,0,0,0,0,0,0,2,0,2,2,6,2,1,0,0,0,0,0 +50,1,133,Alabama,Winston County,8,18,523,155,368,152,361,0,2,0,0,0,2,0,0,3,3,155,364,0,2,3,3,0,2,0,0,153,366,150,359,0,2,0,0,0,2,0,0,3,3,153,362,0,2,3,3,0,2,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 diff --git a/scripts/us_census/pep/pep_by_srh/testdata/input_files/2020_2029/county/cc-est2023-alldata.csv b/scripts/us_census/pep/pep_by_srh/testdata/input_files/2020_2029/county/cc-est2023-alldata.csv new file mode 100644 index 0000000000..670220d429 --- /dev/null +++ b/scripts/us_census/pep/pep_by_srh/testdata/input_files/2020_2029/county/cc-est2023-alldata.csv @@ -0,0 +1,433 @@ +SUMLEV,STATE,COUNTY,STNAME,CTYNAME,YEAR,AGEGRP,TOT_POP,TOT_MALE,TOT_FEMALE,WA_MALE,WA_FEMALE,BA_MALE,BA_FEMALE,IA_MALE,IA_FEMALE,AA_MALE,AA_FEMALE,NA_MALE,NA_FEMALE,TOM_MALE,TOM_FEMALE,WAC_MALE,WAC_FEMALE,BAC_MALE,BAC_FEMALE,IAC_MALE,IAC_FEMALE,AAC_MALE,AAC_FEMALE,NAC_MALE,NAC_FEMALE,NH_MALE,NH_FEMALE,NHWA_MALE,NHWA_FEMALE,NHBA_MALE,NHBA_FEMALE,NHIA_MALE,NHIA_FEMALE,NHAA_MALE,NHAA_FEMALE,NHNA_MALE,NHNA_FEMALE,NHTOM_MALE,NHTOM_FEMALE,NHWAC_MALE,NHWAC_FEMALE,NHBAC_MALE,NHBAC_FEMALE,NHIAC_MALE,NHIAC_FEMALE,NHAAC_MALE,NHAAC_FEMALE,NHNAC_MALE,NHNAC_FEMALE,H_MALE,H_FEMALE,HWA_MALE,HWA_FEMALE,HBA_MALE,HBA_FEMALE,HIA_MALE,HIA_FEMALE,HAA_MALE,HAA_FEMALE,HNA_MALE,HNA_FEMALE,HTOM_MALE,HTOM_FEMALE,HWAC_MALE,HWAC_FEMALE,HBAC_MALE,HBAC_FEMALE,HIAC_MALE,HIAC_FEMALE,HAAC_MALE,HAAC_FEMALE,HNAC_MALE,HNAC_FEMALE +50,1,13,Alabama,Butler County,3,16,705,324,381,218,251,99,115,1,0,2,8,0,0,4,7,221,256,101,115,2,5,3,10,1,2,320,377,217,248,98,114,1,0,2,8,0,0,2,7,219,253,99,114,2,5,2,10,0,2,4,4,1,3,1,1,0,0,0,0,0,0,2,0,2,3,2,1,0,0,1,0,1,0 +50,1,27,Alabama,Clay County,3,17,387,148,239,132,207,12,28,2,2,0,0,0,0,2,2,134,207,12,30,3,4,1,0,0,0,144,239,128,207,12,28,2,2,0,0,0,0,2,2,130,207,12,30,3,4,1,0,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 +50,1,39,Alabama,Covington County,5,8,2151,1012,1139,840,969,144,144,9,9,3,11,0,0,16,6,853,975,150,146,19,13,6,11,1,0,981,1116,815,948,142,143,9,8,2,11,0,0,13,6,827,954,146,145,17,12,5,11,0,0,31,23,25,21,2,1,0,1,1,0,0,0,3,0,26,21,4,1,2,1,1,0,1,0 +50,1,53,Alabama,Escambia County,1,18,705,225,480,175,354,38,113,10,11,0,1,0,0,2,1,177,355,38,113,12,11,0,2,0,0,222,479,172,353,38,113,10,11,0,1,0,0,2,1,174,354,38,113,12,11,0,2,0,0,3,1,3,1,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0 +50,1,63,Alabama,Greene County,2,9,387,180,207,29,26,149,178,0,1,2,1,0,0,0,1,29,27,149,178,0,2,2,1,0,0,179,207,28,26,149,178,0,1,2,1,0,0,0,1,28,27,149,178,0,2,2,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +50,1,107,Alabama,Pickens County,5,18,387,161,226,108,136,50,88,1,0,0,0,0,0,2,2,110,138,50,88,2,1,1,0,0,1,161,222,108,133,50,87,1,0,0,0,0,0,2,2,110,135,50,87,2,1,1,0,0,1,0,4,0,3,0,1,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0 +50,1,121,Alabama,Talladega County,4,9,4947,2412,2535,1499,1544,847,933,15,4,24,27,1,2,26,25,1518,1568,856,941,32,18,31,32,3,5,2310,2489,1426,1506,834,929,4,4,24,26,1,1,21,23,1442,1528,840,936,18,17,30,31,2,4,102,46,73,38,13,4,11,0,0,1,0,1,5,2,76,40,16,5,14,1,1,1,1,1 +50,2,68,Alaska,Denali Borough,3,18,9,4,5,4,3,0,0,0,1,0,0,0,0,0,1,4,4,0,0,0,2,0,0,0,0,4,5,4,3,0,0,0,1,0,0,0,0,0,1,4,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,2,198,Alaska,Prince of Wales-Hyder Census Area,4,1,294,160,134,49,40,0,0,73,70,3,2,0,0,35,22,77,57,8,4,97,88,12,6,7,3,155,125,47,39,0,0,71,65,3,2,0,0,34,19,74,53,8,4,95,81,11,4,7,2,5,9,2,1,0,0,2,5,0,0,0,0,1,3,3,4,0,0,2,7,1,2,0,1 +50,2,198,Alaska,Prince of Wales-Hyder Census Area,4,3,387,206,181,43,49,0,1,118,101,4,1,1,2,40,27,77,73,4,3,145,122,19,8,9,4,192,168,40,46,0,0,109,93,4,1,1,2,38,26,72,69,4,1,135,113,17,8,9,4,14,13,3,3,0,1,9,8,0,0,0,0,2,1,5,4,0,2,10,9,2,0,0,0 +50,2,290,Alaska,Yukon-Koyukuk Census Area,2,1,387,195,192,31,26,1,2,142,140,1,1,0,0,20,23,48,49,5,8,157,154,4,3,2,1,189,183,29,25,1,2,140,133,1,1,0,0,18,22,44,47,5,7,154,147,3,3,1,1,6,9,2,1,0,0,2,7,0,0,0,0,2,1,4,2,0,1,3,7,1,0,1,0 +50,5,97,Arkansas,Montgomery County,5,5,387,193,194,174,180,3,4,5,4,3,1,0,0,8,5,182,185,7,7,9,5,3,2,0,0,179,174,164,164,2,3,4,3,3,1,0,0,6,3,170,167,5,6,7,3,3,1,0,0,14,20,10,16,1,1,1,1,0,0,0,0,2,2,12,18,2,1,2,2,0,1,0,0 +50,5,101,Arkansas,Newton County,1,16,387,202,185,196,181,0,0,3,2,0,0,0,0,3,2,199,183,0,0,6,4,0,0,0,0,202,185,196,181,0,0,3,2,0,0,0,0,3,2,199,183,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,5,111,Arkansas,Poinsett County,1,18,387,133,254,126,232,2,17,2,0,0,1,0,0,3,4,129,235,2,18,5,4,0,1,0,0,127,252,122,230,1,17,1,0,0,1,0,0,3,4,125,233,1,18,4,4,0,1,0,0,6,2,4,2,1,0,1,0,0,0,0,0,0,0,4,2,1,0,1,0,0,0,0,0 +50,5,123,Arkansas,St. Francis County,5,9,1482,949,533,442,222,458,301,20,3,7,0,2,1,20,6,460,228,463,303,33,5,11,2,3,1,856,528,363,217,453,301,15,3,6,0,2,1,17,6,378,223,458,303,27,5,8,2,3,1,93,5,79,5,5,0,5,0,1,0,0,0,3,0,82,5,5,0,6,0,3,0,0,0 +50,5,137,Arkansas,Stone County,4,16,705,316,389,305,372,1,1,3,6,2,1,0,1,5,8,310,379,2,2,7,14,2,1,0,1,316,385,305,368,1,1,3,6,2,1,0,1,5,8,310,375,2,2,7,14,2,1,0,1,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0 +50,5,141,Arkansas,Van Buren County,4,7,705,350,355,328,345,2,2,5,1,4,0,0,0,11,7,339,352,2,4,13,4,7,2,0,0,321,346,305,337,2,2,2,1,4,0,0,0,8,6,313,343,2,4,8,3,6,2,0,0,29,9,23,8,0,0,3,0,0,0,0,0,3,1,26,9,0,0,5,1,1,0,0,0 +50,5,143,Arkansas,Washington County,4,15,8455,3971,4484,3778,4221,42,59,44,35,43,70,19,49,45,50,3821,4268,45,65,83,83,48,73,22,53,3751,4268,3567,4015,42,55,39,33,43,69,18,48,42,48,3609,4060,43,61,77,80,48,72,19,51,220,216,211,206,0,4,5,2,0,1,1,1,3,2,212,208,2,4,6,3,0,1,3,2 +50,6,27,California,Inyo County,4,14,1482,732,750,642,631,2,3,61,76,13,14,3,0,11,26,653,656,6,8,67,88,14,22,3,2,655,668,577,568,2,1,53,67,12,14,3,0,8,18,585,585,5,4,57,75,13,21,3,1,77,82,65,63,0,2,8,9,1,0,0,0,3,8,68,71,1,4,10,13,1,1,0,1 +50,8,11,Colorado,Bent County,2,7,387,293,94,227,82,42,2,16,5,4,0,2,0,2,5,229,86,42,2,18,8,4,1,2,2,175,70,123,65,42,2,6,2,4,0,0,0,0,1,123,66,42,2,6,3,4,0,0,0,118,24,104,17,0,0,10,3,0,0,2,0,2,4,106,20,0,0,12,5,0,1,2,2 +50,8,25,Colorado,Crowley County,3,11,387,301,86,224,78,65,0,8,6,2,1,0,0,2,1,225,79,65,0,9,7,3,1,1,0,241,68,167,63,64,0,7,3,2,1,0,0,1,1,168,64,64,0,8,4,2,1,0,0,60,18,57,15,1,0,1,3,0,0,0,0,1,0,57,15,1,0,1,3,1,0,1,0 +50,8,55,Colorado,Huerfano County,2,6,294,149,145,127,116,7,4,8,11,1,5,1,0,5,9,131,124,10,6,10,17,2,7,1,0,88,79,81,67,3,2,0,2,1,4,1,0,2,4,83,70,4,4,0,4,2,5,1,0,61,66,46,49,4,2,8,9,0,1,0,0,3,5,48,54,6,2,10,13,0,2,0,0 +50,8,83,Colorado,Montezuma County,1,14,2151,1051,1100,996,1005,3,2,39,75,6,6,0,0,7,12,1003,1017,3,3,44,85,8,7,0,0,998,1046,949,962,2,2,36,70,5,6,0,0,6,6,955,968,2,3,40,74,7,7,0,0,53,54,47,43,1,0,3,5,1,0,0,0,1,6,48,49,1,0,4,11,1,0,0,0 +50,8,103,Colorado,Rio Blanco County,1,14,387,219,168,211,162,0,1,1,1,0,0,0,0,7,4,218,166,1,1,5,5,2,0,0,0,208,159,201,153,0,1,1,1,0,0,0,0,6,4,207,157,1,1,4,5,2,0,0,0,11,9,10,9,0,0,0,0,0,0,0,0,1,0,11,9,0,0,1,0,0,0,0,0 +50,8,121,Colorado,Washington County,2,4,294,156,138,149,129,2,2,0,0,3,2,0,0,2,5,151,133,3,5,0,3,3,2,1,0,138,120,132,114,2,2,0,0,3,2,0,0,1,2,133,115,3,4,0,1,3,2,0,0,18,18,17,15,0,0,0,0,0,0,0,0,1,3,18,18,0,1,0,2,0,0,1,0 +50,8,121,Colorado,Washington County,4,2,294,148,146,135,136,2,2,1,4,2,1,0,0,8,3,143,139,5,4,5,5,3,1,0,0,124,122,114,112,2,2,0,4,1,1,0,0,7,3,121,115,5,4,3,5,2,1,0,0,24,24,21,24,0,0,1,0,1,0,0,0,1,0,22,24,0,0,2,0,1,0,0,0 +50,12,23,Florida,Columbia County,5,13,4947,2492,2455,2102,2027,327,368,25,11,12,24,1,4,25,21,2119,2046,334,375,41,23,20,26,4,7,2343,2315,1968,1900,315,364,24,10,11,22,1,3,24,16,1985,1914,321,369,40,20,19,23,3,5,149,140,134,127,12,4,1,1,1,2,0,1,1,5,134,132,13,6,1,3,1,3,1,2 +50,12,37,Florida,Franklin County,2,10,705,417,288,335,266,72,14,6,2,2,2,0,1,2,3,337,269,72,16,7,2,3,2,0,2,384,280,307,258,70,14,3,2,2,2,0,1,2,3,309,261,70,16,4,2,3,2,0,2,33,8,28,8,2,0,3,0,0,0,0,0,0,0,28,8,2,0,3,0,0,0,0,0 +50,12,45,Florida,Gulf County,5,16,705,357,348,315,303,30,25,5,4,2,2,0,0,5,14,319,317,32,27,7,13,3,4,1,2,349,339,308,294,30,25,5,4,2,2,0,0,4,14,311,308,32,27,6,13,3,4,1,2,8,9,7,9,0,0,0,0,0,0,0,0,1,0,8,9,0,0,1,0,0,0,0,0 +50,12,113,Florida,Santa Rosa County,5,9,14208,7301,6907,6220,6008,685,374,55,54,147,224,20,17,174,230,6372,6215,742,441,114,120,229,346,30,32,6670,6342,5683,5523,644,347,44,37,134,212,15,14,150,209,5816,5710,689,402,91,96,208,329,23,29,631,565,537,485,41,27,11,17,13,12,5,3,24,21,556,505,53,39,23,24,21,17,7,3 +50,13,23,Georgia,Bleckley County,1,9,705,347,358,269,274,73,78,1,1,2,2,0,0,2,3,271,277,74,79,2,1,2,4,0,0,333,347,257,265,72,78,0,0,2,2,0,0,2,2,259,267,73,79,1,0,2,3,0,0,14,11,12,9,1,0,1,1,0,0,0,0,0,1,12,10,1,0,1,1,0,1,0,0 +50,13,35,Georgia,Butts County,1,3,1482,708,774,486,519,187,224,4,0,7,5,0,0,24,26,507,544,202,244,7,2,14,10,2,0,672,740,461,497,183,213,1,0,6,5,0,0,21,25,479,521,196,232,3,2,13,10,2,0,36,34,25,22,4,11,3,0,1,0,0,0,3,1,28,23,6,12,4,0,1,0,0,0 +50,13,49,Georgia,Charlton County,3,16,387,194,193,164,144,25,36,0,2,2,4,0,1,3,6,167,149,25,37,3,8,2,4,0,1,190,191,160,142,25,36,0,2,2,4,0,1,3,6,163,147,25,37,3,8,2,4,0,1,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 +50,13,65,Georgia,Clinch County,5,9,387,170,217,120,146,44,66,2,3,3,1,0,0,1,1,121,147,44,66,2,3,4,2,0,0,161,212,115,143,41,66,1,1,3,1,0,0,1,1,116,144,41,66,1,1,4,2,0,0,9,5,5,3,3,0,1,2,0,0,0,0,0,0,5,3,3,0,1,2,0,0,0,0 +50,13,81,Georgia,Crisp County,1,3,1482,779,703,299,291,437,382,3,1,11,6,0,1,29,22,326,313,460,397,7,4,16,9,1,2,733,676,260,268,433,381,1,0,11,6,0,0,28,21,286,289,455,395,5,3,16,9,1,1,46,27,39,23,4,1,2,1,0,0,0,1,1,1,40,24,5,2,2,1,0,0,0,1 +50,13,101,Georgia,Echols County,4,3,294,154,140,130,121,12,10,8,7,0,0,1,0,3,2,132,123,14,11,10,7,0,1,1,0,92,66,81,52,9,8,0,4,0,0,0,0,2,2,83,54,10,9,1,4,0,1,0,0,62,74,49,69,3,2,8,3,0,0,1,0,1,0,49,69,4,2,9,3,0,0,1,0 +50,13,107,Georgia,Emanuel County,4,9,1482,794,688,489,418,283,260,6,2,8,3,0,0,8,5,496,421,288,264,10,2,8,6,0,0,750,649,460,385,275,257,0,1,8,3,0,0,7,3,466,387,280,259,3,1,8,5,0,0,44,39,29,33,8,3,6,1,0,0,0,0,1,2,30,34,8,5,7,1,0,1,0,0 +50,13,127,Georgia,Glynn County,1,18,2151,656,1495,578,1233,68,235,0,4,8,15,0,0,2,8,580,1240,70,240,0,7,9,16,0,1,634,1468,560,1211,65,232,0,3,8,15,0,0,1,7,561,1218,66,236,0,5,8,16,0,1,22,27,18,22,3,3,0,1,0,0,0,0,1,1,19,22,4,4,0,2,1,0,0,0 +50,13,131,Georgia,Grady County,3,7,1482,717,765,444,493,230,246,17,12,6,3,8,4,12,7,455,500,236,249,25,13,6,6,8,4,630,669,405,414,215,240,3,6,4,3,0,0,3,6,407,420,217,242,5,7,4,6,0,0,87,96,39,79,15,6,14,6,2,0,8,4,9,1,48,80,19,7,20,6,2,0,8,4 +50,13,143,Georgia,Haralson County,4,18,387,145,242,134,218,6,12,1,1,0,3,0,0,4,8,137,226,7,13,5,8,0,4,0,1,142,239,131,215,6,12,1,1,0,3,0,0,4,8,134,223,7,13,5,8,0,4,0,1,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 +50,13,149,Georgia,Heard County,5,9,705,354,351,311,301,39,38,2,3,0,1,0,0,2,8,312,306,40,43,3,7,1,3,0,0,343,340,304,294,37,37,0,2,0,1,0,0,2,6,305,298,38,41,1,5,1,2,0,0,11,11,7,7,2,1,2,1,0,0,0,0,0,2,7,8,2,2,2,2,0,1,0,0 +50,13,153,Georgia,Houston County,5,18,2151,755,1396,618,1075,117,267,3,5,9,30,2,1,6,18,624,1088,118,276,5,15,11,33,3,3,738,1364,606,1047,112,267,3,5,9,30,2,0,6,15,612,1059,113,274,5,13,11,33,3,1,17,32,12,28,5,0,0,0,0,0,0,1,0,3,12,29,5,2,0,2,0,0,0,2 +50,13,181,Georgia,Lincoln County,4,1,387,180,207,125,135,45,59,0,3,2,0,0,0,8,10,133,145,50,67,2,4,3,1,0,0,175,198,120,129,45,59,0,0,2,0,0,0,8,10,128,139,50,67,2,1,3,1,0,0,5,9,5,6,0,0,0,3,0,0,0,0,0,0,5,6,0,0,0,3,0,0,0,0 +50,13,191,Georgia,McIntosh County,4,17,387,180,207,138,138,38,61,1,1,0,1,0,1,3,5,141,141,39,65,1,5,1,1,1,1,180,206,138,137,38,61,1,1,0,1,0,1,3,5,141,140,39,65,1,5,1,1,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +50,13,197,Georgia,Marion County,1,16,294,127,167,103,112,21,52,1,2,0,1,1,0,1,0,104,112,21,52,2,2,0,1,1,0,121,163,98,110,21,50,1,2,0,1,0,0,1,0,99,110,21,50,2,2,0,1,0,0,6,4,5,2,0,2,0,0,0,0,1,0,0,0,5,2,0,2,0,0,0,0,1,0 +50,13,225,Georgia,Peach County,4,10,1482,709,773,394,403,289,343,3,4,6,7,1,1,16,15,405,416,299,350,12,8,7,11,2,3,616,719,317,354,283,342,1,3,5,6,0,0,10,14,323,366,288,348,8,7,6,10,1,2,93,54,77,49,6,1,2,1,1,1,1,1,6,1,82,50,11,2,4,1,1,1,1,1 +50,13,243,Georgia,Randolph County,4,4,387,204,183,54,58,146,119,0,0,1,0,0,0,3,6,57,64,147,124,1,1,2,1,0,0,197,172,49,50,144,116,0,0,1,0,0,0,3,6,52,56,145,121,1,1,2,1,0,0,7,11,5,8,2,3,0,0,0,0,0,0,0,0,5,8,2,3,0,0,0,0,0,0 +50,13,251,Georgia,Screven County,1,17,294,129,165,81,109,46,52,0,0,1,1,0,0,1,3,82,112,46,53,1,1,1,2,0,0,127,164,79,109,46,52,0,0,1,1,0,0,1,2,80,111,46,52,1,1,1,2,0,0,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,1,0,1,0,0,0,0,0,0 +50,13,251,Georgia,Screven County,5,5,705,360,345,189,182,160,151,4,3,3,3,0,0,4,6,193,187,163,153,5,5,3,5,0,1,347,334,180,178,158,148,3,2,3,3,0,0,3,3,183,181,160,149,4,4,3,3,0,0,13,11,9,4,2,3,1,1,0,0,0,0,1,3,10,6,3,4,1,1,0,2,0,1 +50,13,283,Georgia,Treutlen County,4,6,387,230,157,142,95,83,57,0,0,0,2,0,0,5,3,147,98,87,58,1,1,0,3,0,0,213,155,127,93,81,57,0,0,0,2,0,0,5,3,132,96,85,58,1,1,0,3,0,0,17,2,15,2,2,0,0,0,0,0,0,0,0,0,15,2,2,0,0,0,0,0,0,0 +50,13,313,Georgia,Whitfield County,4,11,6809,3419,3390,3117,3065,146,157,58,55,56,74,9,5,33,34,3148,3094,156,168,78,77,61,80,10,8,2247,2323,2036,2085,130,140,4,8,54,67,2,2,21,21,2056,2102,135,147,18,22,57,71,3,5,1172,1067,1081,980,16,17,54,47,2,7,7,3,12,13,1092,992,21,21,60,55,4,9,7,3 +50,13,321,Georgia,Worth County,5,18,387,130,257,118,192,9,55,1,1,0,3,0,0,2,6,120,196,9,56,3,6,0,5,0,1,126,255,115,191,8,54,1,1,0,3,0,0,2,6,117,195,8,55,3,6,0,5,0,1,4,2,3,1,1,1,0,0,0,0,0,0,0,0,3,1,1,1,0,0,0,0,0,0 +50,15,5,Hawaii,Kalawao County,1,11,9,7,2,2,0,0,0,0,0,1,0,3,1,1,1,3,1,0,0,1,0,1,1,3,1,6,2,1,0,0,0,0,0,1,0,3,1,1,1,2,1,0,0,1,0,1,1,3,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +50,15,5,Hawaii,Kalawao County,2,7,9,6,3,5,1,0,0,0,0,0,0,1,2,0,0,5,1,0,0,0,0,0,0,1,2,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,6,1,5,1,0,0,0,0,0,0,1,0,0,0,5,1,0,0,0,0,0,0,1,0 +50,15,5,Hawaii,Kalawao County,2,11,9,7,2,2,0,0,0,0,0,1,0,3,1,1,1,2,1,0,1,1,0,1,0,4,1,6,2,1,0,0,0,0,0,1,0,3,1,1,1,1,1,0,1,1,0,1,0,4,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +50,15,5,Hawaii,Kalawao County,3,7,9,7,2,6,1,0,0,0,0,0,0,1,1,0,0,6,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,7,1,6,1,0,0,0,0,0,0,1,0,0,0,6,1,0,0,0,0,0,0,1,0 +50,15,5,Hawaii,Kalawao County,3,10,9,7,2,4,0,0,0,0,0,0,0,1,1,2,1,5,1,2,0,1,0,0,1,1,1,6,2,3,0,0,0,0,0,0,0,1,1,2,1,4,1,2,0,1,0,0,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +50,15,5,Hawaii,Kalawao County,4,14,9,8,1,3,0,0,0,0,0,2,0,2,1,1,0,4,0,0,0,1,0,2,0,2,1,8,1,3,0,0,0,0,0,2,0,2,1,1,0,4,0,0,0,1,0,2,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,15,5,Hawaii,Kalawao County,4,18,9,1,8,1,1,0,0,0,0,0,1,0,5,0,1,1,2,0,1,0,0,0,1,0,5,1,8,1,1,0,0,0,0,0,1,0,5,0,1,1,2,0,1,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,15,5,Hawaii,Kalawao County,5,14,9,6,3,3,1,0,0,0,0,2,1,1,1,0,0,3,1,0,0,0,0,2,1,1,1,6,3,3,1,0,0,0,0,2,1,1,1,0,0,3,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,15,5,Hawaii,Kalawao County,5,15,9,7,2,4,0,0,0,0,0,0,0,2,2,1,0,5,0,1,0,0,0,0,0,2,2,7,2,4,0,0,0,0,0,0,0,2,2,1,0,5,0,1,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,16,7,Idaho,Bear Lake County,4,9,387,208,179,203,173,0,1,2,2,1,2,0,0,2,1,205,174,1,1,3,3,1,2,0,0,202,176,197,171,0,1,2,1,1,2,0,0,2,1,199,172,1,1,3,2,1,2,0,0,6,3,6,2,0,0,0,1,0,0,0,0,0,0,6,2,0,0,0,1,0,0,0,0 +50,16,9,Idaho,Benewah County,4,3,705,365,340,289,255,1,3,46,42,3,1,0,1,26,38,313,293,12,13,57,63,8,7,4,2,341,311,280,244,1,3,32,29,3,1,0,1,25,33,303,277,12,13,43,45,7,7,4,2,24,29,9,11,0,0,14,13,0,0,0,0,1,5,10,16,0,0,14,18,1,0,0,0 +50,16,15,Idaho,Boise County,5,3,387,193,194,177,172,1,0,2,3,2,1,0,0,11,18,187,190,6,5,7,12,4,4,0,1,155,177,140,160,1,0,2,3,2,1,0,0,10,13,150,173,5,4,6,8,4,4,0,1,38,17,37,12,0,0,0,0,0,0,0,0,1,5,37,17,1,1,1,4,0,0,0,0 +50,16,15,Idaho,Boise County,5,7,387,171,216,157,198,2,2,1,4,1,2,0,4,10,6,166,203,5,3,5,9,4,3,1,4,162,195,150,178,2,2,1,3,0,2,0,4,9,6,158,183,5,3,5,8,2,3,1,4,9,21,7,20,0,0,0,1,1,0,0,0,1,0,8,20,0,0,0,1,2,0,0,0 +50,16,19,Idaho,Bonneville County,3,10,6809,3434,3375,3255,3208,34,21,47,49,44,48,5,5,49,44,3299,3252,44,25,78,72,59,65,7,8,2963,2967,2839,2848,25,15,19,22,40,45,5,3,35,34,2872,2882,30,19,39,38,53,59,6,5,471,408,416,360,9,6,28,27,4,3,0,2,14,10,427,370,14,6,39,34,6,6,1,3 +50,16,43,Idaho,Fremont County,5,17,294,150,144,145,140,0,0,0,0,1,0,1,1,3,3,148,143,0,0,2,3,1,0,2,1,143,139,139,136,0,0,0,0,1,0,0,0,3,3,142,139,0,0,2,3,1,0,1,0,7,5,6,4,0,0,0,0,0,0,1,1,0,0,6,4,0,0,0,0,0,0,1,1 +50,16,51,Idaho,Jefferson County,2,17,387,178,209,173,204,1,0,3,2,0,1,0,0,1,2,174,206,1,0,4,3,0,2,0,0,173,200,169,195,1,0,2,2,0,1,0,0,1,2,170,197,1,0,3,3,0,2,0,0,5,9,4,9,0,0,1,0,0,0,0,0,0,0,4,9,0,0,1,0,0,0,0,0 +50,16,59,Idaho,Lemhi County,3,5,294,148,146,138,137,0,0,1,1,1,1,0,0,8,7,146,144,5,2,3,5,2,2,0,0,137,136,131,130,0,0,0,0,1,1,0,0,5,5,136,135,3,1,1,3,2,2,0,0,11,10,7,7,0,0,1,1,0,0,0,0,3,2,10,9,2,1,2,2,0,0,0,0 +50,16,71,Idaho,Oneida County,4,1,294,141,153,135,148,0,0,0,0,0,1,0,0,6,4,141,152,2,2,1,1,1,3,2,0,131,149,125,144,0,0,0,0,0,1,0,0,6,4,131,148,2,2,1,1,1,3,2,0,10,4,10,4,0,0,0,0,0,0,0,0,0,0,10,4,0,0,0,0,0,0,0,0 +50,16,75,Idaho,Payette County,5,17,705,326,379,317,365,0,0,4,6,0,2,0,0,5,6,322,371,1,0,7,12,1,2,0,0,311,365,304,354,0,0,4,3,0,2,0,0,3,6,307,360,1,0,6,9,0,2,0,0,15,14,13,11,0,0,0,3,0,0,0,0,2,0,15,11,0,0,1,3,1,0,0,0 +50,16,81,Idaho,Teton County,3,14,705,379,326,370,321,1,0,3,4,2,0,0,0,3,1,373,322,1,0,6,5,2,0,0,0,353,315,346,310,0,0,3,4,2,0,0,0,2,1,348,311,0,0,5,5,2,0,0,0,26,11,24,11,1,0,0,0,0,0,0,0,1,0,25,11,1,0,1,0,0,0,0,0 +50,17,21,Illinois,Christian County,3,7,2151,1249,902,1130,873,80,5,5,3,21,6,0,5,13,10,1143,883,90,12,6,6,23,6,0,5,1155,870,1045,845,77,5,5,3,15,6,0,1,13,10,1058,855,87,12,6,6,17,6,0,1,94,32,85,28,3,0,0,0,6,0,0,4,0,0,85,28,3,0,0,0,6,0,0,4 +50,17,45,Illinois,Edgar County,1,16,705,317,388,314,382,2,1,0,2,0,1,0,0,1,2,315,384,2,1,1,3,0,1,0,1,313,388,310,382,2,1,0,2,0,1,0,0,1,2,311,384,2,1,1,3,0,1,0,1,4,0,4,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0 +50,17,61,Illinois,Greene County,3,9,705,371,334,361,329,5,2,1,1,1,2,0,0,3,0,364,329,6,2,2,1,2,2,0,0,369,330,360,326,5,1,1,1,1,2,0,0,2,0,362,326,6,1,1,1,2,2,0,0,2,4,1,3,0,1,0,0,0,0,0,0,1,0,2,3,0,1,1,0,0,0,0,0 +50,17,71,Illinois,Henderson County,5,16,294,146,148,143,144,1,0,2,1,0,1,0,0,0,2,143,146,1,1,2,2,0,1,0,0,144,145,141,141,1,0,2,1,0,1,0,0,0,2,141,143,1,1,2,2,0,1,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 +50,17,81,Illinois,Jefferson County,4,1,2151,1111,1040,878,842,130,101,2,6,16,12,0,0,85,79,962,919,192,164,9,10,32,26,1,1,1050,977,838,799,120,91,0,3,14,12,0,0,78,72,916,869,177,148,5,6,29,26,1,1,61,63,40,43,10,10,2,3,2,0,0,0,7,7,46,50,15,16,4,4,3,0,0,0 +50,17,105,Illinois,Livingston County,5,4,2151,1179,972,1074,889,50,27,3,5,13,12,0,0,39,39,1109,928,80,55,8,6,20,22,2,1,1068,878,980,805,48,27,0,2,12,10,0,0,28,34,1004,839,69,52,3,3,18,18,2,1,111,94,94,84,2,0,3,3,1,2,0,0,11,5,105,89,11,3,5,3,2,4,0,0 +50,17,111,Illinois,McHenry County,4,13,22161,11073,11088,10542,10511,169,108,33,48,248,329,5,5,76,87,10610,10590,181,127,77,93,281,362,8,9,10239,10376,9773,9845,154,100,10,32,241,326,5,3,56,70,9822,9908,160,113,39,66,271,357,6,7,834,712,769,666,15,8,23,16,7,3,0,2,20,17,788,682,21,14,38,27,10,5,2,2 +50,17,113,Illinois,McLean County,2,4,14208,6757,7451,5516,6128,598,725,33,29,265,252,2,5,343,312,5843,6426,823,926,72,67,365,351,10,13,6155,6801,4996,5570,573,692,10,9,260,243,2,2,314,285,5296,5843,783,875,38,36,355,337,10,10,602,650,520,558,25,33,23,20,5,9,0,3,29,27,547,583,40,51,34,31,10,14,0,3 +50,17,129,Illinois,Menard County,3,15,705,347,358,339,354,3,0,2,1,1,1,0,0,2,2,341,355,4,2,3,2,1,1,0,0,343,355,335,351,3,0,2,1,1,1,0,0,2,2,337,352,4,2,3,2,1,1,0,0,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 +50,17,147,Illinois,Piatt County,2,18,387,156,231,154,230,1,0,0,0,0,1,0,0,1,0,155,230,1,0,1,0,0,1,0,0,155,231,153,230,1,0,0,0,0,1,0,0,1,0,154,230,1,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +50,17,155,Illinois,Putnam County,4,7,294,148,146,142,137,1,2,2,1,1,3,0,1,2,2,143,139,2,3,2,3,2,3,1,1,140,132,136,125,1,2,0,0,1,3,0,1,2,1,137,126,2,2,0,1,2,3,1,1,8,14,6,12,0,0,2,1,0,0,0,0,0,1,6,13,0,1,2,2,0,0,0,0 +50,17,171,Illinois,Scott County,1,0,4947,2456,2491,2385,2405,25,15,8,6,4,9,3,32,31,24,2413,2428,39,25,19,16,12,13,5,33,2425,2468,2356,2387,23,13,8,5,4,8,3,32,31,23,2384,2410,37,22,19,15,12,11,5,33,31,23,29,18,2,2,0,1,0,1,0,0,0,1,29,18,2,3,0,1,0,2,0,0 +50,17,171,Illinois,Scott County,3,12,387,181,206,180,203,0,0,0,0,0,1,0,0,1,2,181,205,0,1,1,0,0,1,0,1,180,205,179,202,0,0,0,0,0,1,0,0,1,2,180,204,0,1,1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 +50,17,171,Illinois,Scott County,5,10,294,148,146,147,143,1,1,0,0,0,2,0,0,0,0,147,143,1,1,0,0,0,2,0,0,148,141,147,139,1,0,0,0,0,2,0,0,0,0,147,139,1,0,0,0,0,2,0,0,0,5,0,4,0,1,0,0,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0 +50,17,175,Illinois,Stark County,1,1,294,155,139,147,124,3,2,0,0,0,0,0,0,5,13,151,137,5,8,2,3,2,4,0,0,150,135,142,120,3,2,0,0,0,0,0,0,5,13,146,133,5,8,2,3,2,4,0,0,5,4,5,4,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0 +50,17,181,Illinois,Union County,3,16,705,307,398,298,387,5,1,2,3,0,0,0,0,2,7,299,392,6,3,4,10,0,0,0,0,301,391,293,381,5,0,2,3,0,0,0,0,1,7,293,386,6,2,3,10,0,0,0,0,6,7,5,6,0,1,0,0,0,0,0,0,1,0,6,6,0,1,1,0,0,0,0,0 +50,18,3,Indiana,Allen County,3,2,27464,14222,13242,10233,9354,1960,1975,51,23,983,893,19,23,976,974,11187,10294,2750,2759,150,119,1140,1058,36,43,12510,11638,8849,8020,1803,1839,9,9,973,889,4,12,872,869,9703,8862,2519,2542,81,79,1116,1039,19,29,1712,1604,1384,1334,157,136,42,14,10,4,15,11,104,105,1484,1432,231,217,69,40,24,19,17,14 +50,18,9,Indiana,Blackford County,2,4,705,392,313,377,298,4,3,1,0,1,3,2,0,7,9,384,306,6,11,4,0,3,5,2,0,383,300,371,285,2,3,0,0,1,3,2,0,7,9,378,293,4,11,3,0,3,5,2,0,9,13,6,13,2,0,1,0,0,0,0,0,0,0,6,13,2,0,1,0,0,0,0,0 +50,18,9,Indiana,Blackford County,4,2,705,379,326,351,306,9,2,3,0,2,0,0,0,14,18,364,323,18,13,7,6,3,1,1,1,362,310,342,290,4,2,1,0,2,0,0,0,13,18,354,307,13,13,4,6,3,1,1,1,17,16,9,16,5,0,2,0,0,0,0,0,1,0,10,16,5,0,3,0,0,0,0,0 +50,18,23,Indiana,Clinton County,5,18,705,226,479,221,472,0,1,0,0,3,3,0,0,2,3,223,474,0,2,2,3,3,3,0,0,213,473,208,466,0,1,0,0,3,3,0,0,2,3,210,468,0,2,2,3,3,3,0,0,13,6,13,6,0,0,0,0,0,0,0,0,0,0,13,6,0,0,0,0,0,0,0,0 +50,18,61,Indiana,Harrison County,4,16,1482,695,787,683,776,7,4,1,1,1,4,0,0,3,2,686,778,7,5,4,2,1,4,0,0,691,758,680,747,7,4,1,1,1,4,0,0,2,2,682,749,7,5,3,2,1,4,0,0,4,29,3,29,0,0,0,0,0,0,0,0,1,0,4,29,0,0,1,0,0,0,0,0 +50,18,69,Indiana,Huntington County,2,2,2151,1083,1068,1029,1023,12,12,4,6,6,4,2,0,30,23,1059,1045,28,25,13,10,12,12,2,0,1038,1022,994,983,12,9,3,4,3,4,0,0,26,22,1020,1004,26,22,9,7,9,12,0,0,45,46,35,40,0,3,1,2,3,0,2,0,4,1,39,41,2,3,4,3,3,0,2,0 +50,18,87,Indiana,LaGrange County,5,17,705,316,389,315,385,0,1,0,2,1,0,0,0,0,1,315,386,0,1,0,3,1,0,0,0,311,386,310,382,0,1,0,2,1,0,0,0,0,1,310,383,0,1,0,3,1,0,0,0,5,3,5,3,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,0,0,0 +50,18,105,Indiana,Monroe County,4,12,6809,3359,3450,3060,3171,135,82,7,13,118,145,0,0,39,39,3094,3208,142,89,31,38,131,159,3,0,3240,3348,2955,3080,131,78,6,11,117,144,0,0,31,35,2982,3113,137,85,26,32,128,158,1,0,119,102,105,91,4,4,1,2,1,1,0,0,8,4,112,95,5,4,5,6,3,1,2,0 +50,18,115,Indiana,Ohio County,4,1,294,142,152,139,147,1,2,0,0,0,0,0,0,2,3,141,150,2,4,1,1,0,0,0,0,141,148,138,144,1,1,0,0,0,0,0,0,2,3,140,147,2,3,1,1,0,0,0,0,1,4,1,3,0,1,0,0,0,0,0,0,0,0,1,3,0,1,0,0,0,0,0,0 +50,18,125,Indiana,Pike County,3,7,705,372,333,354,324,15,2,1,1,1,1,0,0,1,5,355,329,15,4,2,3,1,2,0,0,358,323,342,317,14,1,0,1,1,1,0,0,1,3,343,320,14,2,1,2,1,2,0,0,14,10,12,7,1,1,1,0,0,0,0,0,0,2,12,9,1,2,1,1,0,0,0,0 +50,18,131,Indiana,Pulaski County,1,2,705,379,326,364,314,3,1,2,2,1,0,0,0,9,9,373,323,7,1,5,8,3,2,0,1,368,307,353,297,3,1,2,2,1,0,0,0,9,7,362,304,7,1,5,6,3,2,0,1,11,19,11,17,0,0,0,0,0,0,0,0,0,2,11,19,0,0,0,2,0,0,0,0 +50,18,133,Indiana,Putnam County,1,8,2151,1225,926,1079,875,102,2,6,3,28,35,1,1,9,10,1087,885,106,6,11,7,30,39,1,1,1184,904,1044,856,102,2,3,2,27,34,1,1,7,9,1051,865,104,6,7,5,29,38,1,1,41,22,35,19,0,0,3,1,1,1,0,0,2,1,36,20,2,0,4,2,1,1,0,0 +50,18,137,Indiana,Ripley County,2,7,1482,722,760,701,737,5,6,2,6,9,7,0,0,5,4,706,741,7,9,3,7,11,7,0,0,703,744,684,727,4,6,1,1,9,6,0,0,5,4,689,731,6,9,2,2,11,6,0,0,19,16,17,10,1,0,1,5,0,1,0,0,0,0,17,10,1,0,1,5,0,1,0,0 +50,18,149,Indiana,Starke County,4,18,387,173,214,167,204,1,2,0,2,2,1,0,0,3,5,170,209,2,2,2,7,2,1,0,0,166,209,160,199,1,2,0,2,2,1,0,0,3,5,163,204,2,2,2,7,2,1,0,0,7,5,7,5,0,0,0,0,0,0,0,0,0,0,7,5,0,0,0,0,0,0,0,0 +50,18,159,Indiana,Tipton County,3,18,387,126,261,123,259,2,0,0,0,0,2,0,0,1,0,124,259,3,0,0,0,0,2,0,0,126,258,123,256,2,0,0,0,0,2,0,0,1,0,124,256,3,0,0,0,0,2,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 +50,18,161,Indiana,Union County,5,10,387,177,210,169,207,3,0,0,0,2,1,0,0,3,2,172,209,6,1,0,1,2,1,0,0,175,191,167,188,3,0,0,0,2,1,0,0,3,2,170,190,6,1,0,1,2,1,0,0,2,19,2,19,0,0,0,0,0,0,0,0,0,0,2,19,0,0,0,0,0,0,0,0 +50,18,179,Indiana,Wells County,1,5,1482,786,696,759,663,6,9,1,2,3,16,1,0,16,6,773,669,17,12,6,2,5,19,2,0,746,669,722,639,4,7,1,2,2,16,1,0,16,5,736,644,15,10,6,2,4,18,2,0,40,27,37,24,2,2,0,0,1,0,0,0,0,1,37,25,2,2,0,0,1,1,0,0 +50,19,29,Iowa,Cass County,1,1,705,353,352,332,334,2,2,1,1,5,2,4,6,9,7,341,340,9,7,2,4,5,2,5,6,341,337,320,321,2,1,1,1,5,2,4,6,9,6,329,327,9,5,2,3,5,2,5,6,12,15,12,13,0,1,0,0,0,0,0,0,0,1,12,13,0,2,0,1,0,0,0,0 +50,19,29,Iowa,Cass County,1,11,705,362,343,361,337,0,1,1,1,0,3,0,1,0,0,361,337,0,1,1,1,0,3,0,1,358,337,357,332,0,1,1,0,0,3,0,1,0,0,357,332,0,1,1,0,0,3,0,1,4,6,4,5,0,0,0,1,0,0,0,0,0,0,4,5,0,0,0,1,0,0,0,0 +50,19,31,Iowa,Cedar County,4,13,1482,752,730,734,721,4,1,1,2,6,5,0,0,7,1,741,722,4,2,7,2,7,5,0,0,739,721,722,714,4,1,1,2,5,3,0,0,7,1,729,715,4,2,7,2,6,3,0,0,13,9,12,7,0,0,0,0,1,2,0,0,0,0,12,7,0,0,0,0,1,2,0,0 +50,19,31,Iowa,Cedar County,5,16,705,343,362,338,356,1,0,0,1,1,2,0,0,3,3,340,359,2,0,3,3,1,3,0,0,336,362,332,356,1,0,0,1,1,2,0,0,2,3,334,359,1,0,2,3,1,3,0,0,7,0,6,0,0,0,0,0,0,0,0,0,1,0,6,0,1,0,1,0,0,0,0,0 +50,19,51,Iowa,Davis County,5,4,705,360,345,355,338,0,1,1,3,0,2,0,0,4,1,359,339,3,2,1,3,1,2,0,0,352,338,348,331,0,1,1,3,0,2,0,0,3,1,351,332,2,2,1,3,1,2,0,0,8,7,7,7,0,0,0,0,0,0,0,0,1,0,8,7,1,0,0,0,0,0,0,0 +50,19,61,Iowa,Dubuque County,4,15,4947,2374,2573,2330,2515,15,18,5,4,2,16,3,2,19,18,2349,2529,19,23,16,18,8,19,4,3,2355,2557,2312,2501,15,18,5,4,2,15,3,2,18,17,2330,2514,19,23,16,17,7,18,4,3,19,16,18,14,0,0,0,0,0,1,0,0,1,1,19,15,0,0,0,1,1,1,0,0 +50,19,69,Iowa,Franklin County,1,18,294,106,188,105,186,0,1,0,0,0,1,0,0,1,0,106,186,0,1,1,0,0,1,0,0,104,185,103,183,0,1,0,0,0,1,0,0,1,0,104,183,0,1,1,0,0,1,0,0,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 +50,19,71,Iowa,Fremont County,4,4,387,197,190,183,175,3,7,0,1,0,0,0,0,11,7,194,182,9,11,3,3,3,1,0,0,188,181,177,169,2,5,0,1,0,0,0,0,9,6,186,175,7,8,2,3,2,1,0,0,9,9,6,6,1,2,0,0,0,0,0,0,2,1,8,7,2,3,1,0,1,0,0,0 +50,19,81,Iowa,Hancock County,2,3,705,358,347,348,328,1,9,1,1,2,2,0,0,6,7,354,335,6,13,2,3,2,3,0,0,312,313,302,295,1,8,1,1,2,2,0,0,6,7,308,302,6,12,2,3,2,3,0,0,46,34,46,33,0,1,0,0,0,0,0,0,0,0,46,33,0,1,0,0,0,0,0,0 +50,19,93,Iowa,Ida County,3,5,387,208,179,200,170,2,0,1,1,1,4,0,0,4,4,204,174,2,2,2,2,4,5,0,1,190,165,183,157,2,0,1,0,0,4,0,0,4,4,187,161,2,2,2,1,3,5,0,1,18,14,17,13,0,0,0,1,1,0,0,0,0,0,17,13,0,0,0,1,1,0,0,0 +50,19,101,Iowa,Jefferson County,1,4,705,372,333,335,301,12,7,3,2,13,17,0,0,9,6,344,307,14,8,5,5,16,19,2,0,349,319,314,290,12,6,1,1,13,17,0,0,9,5,323,295,14,7,3,3,16,19,2,0,23,14,21,11,0,1,2,1,0,0,0,0,0,1,21,12,0,1,2,2,0,0,0,0 +50,19,107,Iowa,Keokuk County,4,16,387,183,204,183,203,0,0,0,0,0,0,0,0,0,1,183,204,0,0,0,1,0,0,0,0,181,203,181,202,0,0,0,0,0,0,0,0,0,1,181,203,0,0,0,1,0,0,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 +50,19,109,Iowa,Kossuth County,2,10,705,356,349,346,342,3,3,0,0,3,2,1,1,3,1,349,343,4,3,2,1,3,2,1,1,325,330,319,324,1,2,0,0,3,2,1,1,1,1,320,325,2,2,0,1,3,2,1,1,31,19,27,18,2,1,0,0,0,0,0,0,2,0,29,18,2,1,2,0,0,0,0,0 +50,19,115,Iowa,Louisa County,5,14,705,356,349,342,341,6,2,1,1,2,2,0,0,5,3,347,344,6,3,6,2,2,3,0,0,317,326,307,318,6,2,0,1,2,2,0,0,2,3,309,321,6,3,2,2,2,3,0,0,39,23,35,23,0,0,1,0,0,0,0,0,3,0,38,23,0,0,4,0,0,0,0,0 +50,19,135,Iowa,Monroe County,4,16,294,130,164,130,163,0,0,0,0,0,0,0,0,0,1,130,164,0,1,0,0,0,0,0,0,130,164,130,163,0,0,0,0,0,0,0,0,0,1,130,164,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,19,143,Iowa,Osceola County,5,3,387,194,193,183,185,5,1,0,1,0,0,3,1,3,5,186,190,7,5,1,2,0,0,3,1,169,144,159,138,4,1,0,0,0,0,3,1,3,4,162,142,6,5,1,0,0,0,3,1,25,49,24,47,1,0,0,1,0,0,0,0,0,1,24,48,1,0,0,2,0,0,0,0 +50,19,145,Iowa,Page County,5,5,705,430,275,360,254,47,4,8,4,2,5,0,0,13,8,372,262,53,7,14,8,4,6,0,0,399,262,335,243,46,4,5,4,2,5,0,0,11,6,345,249,52,6,9,7,4,6,0,0,31,13,25,11,1,0,3,0,0,0,0,0,2,2,27,13,1,1,5,1,0,0,0,0 +50,19,151,Iowa,Pocahontas County,3,16,294,133,161,132,160,0,0,0,1,0,0,1,0,0,0,132,160,0,0,0,1,0,0,1,0,132,159,131,158,0,0,0,1,0,0,1,0,0,0,131,158,0,0,0,1,0,0,1,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 +50,19,151,Iowa,Pocahontas County,4,15,387,202,185,199,179,1,1,1,0,0,1,0,1,1,3,200,182,1,1,2,2,0,2,0,1,201,184,198,178,1,1,1,0,0,1,0,1,1,3,199,181,1,1,2,2,0,2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 +50,19,159,Iowa,Ringgold County,2,13,387,192,195,192,190,0,1,0,0,0,3,0,0,0,1,192,191,0,1,0,1,0,3,0,0,191,193,191,188,0,1,0,0,0,3,0,0,0,1,191,189,0,1,0,1,0,3,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 +50,19,169,Iowa,Story County,3,17,1482,651,831,623,800,10,7,1,1,13,22,0,0,4,1,627,801,11,7,4,2,14,22,0,0,639,823,613,792,9,7,1,1,13,22,0,0,3,1,616,793,9,7,3,2,14,22,0,0,12,8,10,8,1,0,0,0,0,0,0,0,1,0,11,8,2,0,1,0,0,0,0,0 +50,19,173,Iowa,Taylor County,1,10,294,140,154,138,154,0,0,2,0,0,0,0,0,0,0,138,154,0,0,2,0,0,0,0,0,129,138,127,138,0,0,2,0,0,0,0,0,0,0,127,138,0,0,2,0,0,0,0,0,11,16,11,16,0,0,0,0,0,0,0,0,0,0,11,16,0,0,0,0,0,0,0,0 +50,19,177,Iowa,Van Buren County,1,9,387,217,170,211,167,1,0,0,0,1,3,0,0,4,0,215,167,3,0,2,0,1,3,0,0,212,167,207,164,1,0,0,0,1,3,0,0,3,0,210,164,3,0,1,0,1,3,0,0,5,3,4,3,0,0,0,0,0,0,0,0,1,0,5,3,0,0,1,0,0,0,0,0 +50,19,195,Iowa,Worth County,2,15,387,196,191,194,190,0,0,0,0,1,1,0,0,1,0,195,190,1,0,1,0,1,1,0,0,194,190,192,189,0,0,0,0,1,1,0,0,1,0,193,189,1,0,1,0,1,1,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 +50,19,197,Iowa,Wright County,4,9,705,354,351,332,333,12,5,1,2,2,3,3,6,4,2,335,335,13,6,4,3,2,3,4,6,289,282,275,271,7,4,0,2,2,2,3,1,2,2,277,273,7,5,2,3,2,2,3,1,65,69,57,62,5,1,1,0,0,1,0,5,2,0,58,62,6,1,2,0,0,1,1,5 +50,20,43,Kansas,Doniphan County,2,6,387,199,188,182,172,8,4,3,4,1,7,0,0,5,1,186,173,10,5,5,4,3,7,0,0,196,182,181,168,7,4,2,2,1,7,0,0,5,1,185,169,9,5,4,2,3,7,0,0,3,6,1,4,1,0,1,2,0,0,0,0,0,0,1,4,1,0,1,2,0,0,0,0 +50,20,53,Kansas,Ellsworth County,3,2,294,149,145,141,138,1,0,5,0,1,0,0,0,1,7,142,145,2,5,5,1,1,1,0,0,136,131,131,125,1,0,2,0,1,0,0,0,1,6,132,131,2,4,2,1,1,1,0,0,13,14,10,13,0,0,3,0,0,0,0,0,0,1,10,14,0,1,3,0,0,0,0,0 +50,20,73,Kansas,Greenwood County,1,1,294,154,140,142,130,1,1,1,4,2,0,0,0,8,5,149,135,6,3,4,6,3,0,0,1,147,133,135,126,1,0,1,2,2,0,0,0,8,5,142,131,6,2,4,4,3,0,0,1,7,7,7,4,0,1,0,2,0,0,0,0,0,0,7,4,0,1,0,2,0,0,0,0 +50,20,77,Kansas,Harper County,1,14,387,202,185,200,183,1,0,1,0,0,0,0,0,0,2,200,184,1,1,1,1,0,1,0,0,197,181,195,179,1,0,1,0,0,0,0,0,0,2,195,180,1,1,1,1,0,1,0,0,5,4,5,4,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0 +50,20,87,Kansas,Jefferson County,4,16,705,337,368,327,361,2,1,3,0,0,0,0,0,5,6,332,367,3,3,7,3,0,1,1,0,330,361,320,354,2,1,3,0,0,0,0,0,5,6,325,360,3,3,7,3,0,1,1,0,7,7,7,7,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,0,0,0,0 +50,20,87,Kansas,Jefferson County,5,18,387,165,222,157,218,1,0,5,1,0,0,0,0,2,3,159,221,1,1,7,3,0,0,0,0,162,219,154,215,1,0,5,1,0,0,0,0,2,3,156,218,1,1,7,3,0,0,0,0,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0 +50,20,93,Kansas,Kearny County,4,2,294,160,134,146,117,1,7,5,6,1,1,0,0,7,3,153,120,5,7,7,8,2,2,0,0,84,81,78,73,0,2,1,3,1,1,0,0,4,2,82,75,2,2,2,4,2,2,0,0,76,53,68,44,1,5,4,3,0,0,0,0,3,1,71,45,3,5,5,4,0,0,0,0 +50,20,123,Kansas,Mitchell County,2,14,387,199,188,198,184,0,0,0,2,1,0,0,0,0,2,198,186,0,1,0,3,1,0,0,0,199,188,198,184,0,0,0,2,1,0,0,0,0,2,198,186,0,1,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,20,127,Kansas,Morris County,4,2,294,158,136,141,135,1,0,8,0,0,0,0,0,8,1,149,136,7,0,9,1,1,0,0,0,145,129,131,128,1,0,5,0,0,0,0,0,8,1,139,129,7,0,6,1,1,0,0,0,13,7,10,7,0,0,3,0,0,0,0,0,0,0,10,7,0,0,3,0,0,0,0,0 +50,20,131,Kansas,Nemaha County,4,1,705,383,322,371,306,2,4,2,3,2,1,0,1,6,7,377,313,5,7,4,6,3,2,0,1,361,306,351,292,2,4,2,3,1,1,0,0,5,6,356,298,4,7,4,5,2,2,0,0,22,16,20,14,0,0,0,0,1,0,0,1,1,1,21,15,1,0,0,1,1,0,0,1 +50,20,139,Kansas,Osage County,5,17,387,177,210,174,204,0,0,0,1,0,1,0,0,3,4,177,206,0,3,3,2,0,2,0,1,175,210,172,204,0,0,0,1,0,1,0,0,3,4,175,206,0,3,3,2,0,2,0,1,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0 +50,20,145,Kansas,Pawnee County,5,6,387,242,145,200,124,27,6,1,2,4,0,0,0,10,13,210,137,29,11,7,10,7,0,0,0,223,127,187,110,25,6,1,2,2,0,0,0,8,9,195,119,27,10,5,7,5,0,0,0,19,18,13,14,2,0,0,0,2,0,0,0,2,4,15,18,2,1,2,3,2,0,0,0 +50,20,147,Kansas,Phillips County,1,1,294,161,133,152,127,1,1,3,1,2,0,0,0,3,4,155,131,1,3,5,3,3,1,0,0,153,126,144,121,1,1,3,1,2,0,0,0,3,3,147,124,1,2,5,2,3,1,0,0,8,7,8,6,0,0,0,0,0,0,0,0,0,1,8,7,0,1,0,1,0,0,0,0 +50,20,157,Kansas,Republic County,4,3,294,139,155,131,143,1,3,0,0,1,0,0,0,6,9,137,151,3,9,3,2,2,1,0,1,134,148,127,139,1,3,0,0,1,0,0,0,5,6,132,145,3,7,2,2,2,0,0,0,5,7,4,4,0,0,0,0,0,0,0,0,1,3,5,6,0,2,1,0,0,1,0,1 +50,20,171,Kansas,Scott County,4,14,294,147,147,147,144,0,0,0,0,0,2,0,0,0,1,147,144,0,1,0,0,0,2,0,1,137,134,137,131,0,0,0,0,0,2,0,0,0,1,137,131,0,1,0,0,0,2,0,1,10,13,10,13,0,0,0,0,0,0,0,0,0,0,10,13,0,0,0,0,0,0,0,0 +50,20,173,Kansas,Sedgwick County,2,17,8455,3589,4866,3179,4304,253,360,17,13,126,142,1,2,13,45,3192,4340,257,372,24,50,127,149,2,4,3430,4675,3042,4123,244,354,12,12,123,140,1,2,8,44,3050,4159,246,365,17,49,123,146,2,4,159,191,137,181,9,6,5,1,3,2,0,0,5,1,142,181,11,7,7,1,4,3,0,0 +50,20,181,Kansas,Sherman County,2,5,387,217,170,208,161,2,3,1,0,1,0,2,0,3,6,211,167,3,8,3,1,1,0,2,0,181,140,174,132,2,2,0,0,1,0,2,0,2,6,176,138,3,7,1,1,1,0,2,0,36,30,34,29,0,1,1,0,0,0,0,0,1,0,35,29,0,1,2,0,0,0,0,0 +50,20,193,Kansas,Thomas County,2,5,705,329,376,299,351,13,8,7,2,2,4,1,0,7,11,303,362,16,14,9,8,6,4,2,0,282,340,259,324,13,2,1,0,2,4,1,0,6,10,263,334,16,8,2,5,5,4,2,0,47,36,40,27,0,6,6,2,0,0,0,0,1,1,40,28,0,6,7,3,1,0,0,0 +50,20,197,Kansas,Wabaunsee County,1,9,387,209,178,196,175,6,0,3,0,0,0,0,0,4,3,200,178,7,0,4,2,1,1,1,0,195,168,184,168,4,0,3,0,0,0,0,0,4,0,188,168,5,0,4,0,1,0,1,0,14,10,12,7,2,0,0,0,0,0,0,0,0,3,12,10,2,0,0,2,0,1,0,0 +50,20,201,Kansas,Washington County,4,6,294,159,135,152,126,0,1,1,0,1,5,0,0,5,3,156,129,1,2,5,1,2,6,0,0,156,132,150,123,0,1,0,0,1,5,0,0,5,3,154,126,1,2,4,1,2,6,0,0,3,3,2,3,0,0,1,0,0,0,0,0,0,0,2,3,0,0,1,0,0,0,0,0 +50,20,201,Kansas,Washington County,5,6,294,161,133,153,122,0,2,2,1,1,4,0,0,5,4,157,126,3,4,4,3,2,4,0,0,156,130,150,119,0,2,0,1,1,4,0,0,5,4,154,123,3,4,2,3,2,4,0,0,5,3,3,3,0,0,2,0,0,0,0,0,0,0,3,3,0,0,2,0,0,0,0,0 +50,21,39,Kentucky,Carlisle County,3,11,294,131,163,126,157,4,3,0,1,0,1,0,0,1,1,127,158,5,3,0,2,0,1,0,0,131,159,126,154,4,2,0,1,0,1,0,0,1,1,127,155,5,2,0,2,0,1,0,0,0,4,0,3,0,1,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0 +50,21,63,Kentucky,Elliott County,3,16,294,143,151,141,149,0,0,1,1,0,0,0,0,1,1,142,150,0,0,1,2,1,0,0,0,143,150,141,148,0,0,1,1,0,0,0,0,1,1,142,149,0,0,1,2,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +50,21,109,Kentucky,Jackson County,1,7,705,354,351,345,349,4,1,0,0,1,0,0,0,4,1,349,350,7,1,1,0,1,1,0,0,349,345,341,343,4,1,0,0,1,0,0,0,3,1,344,344,6,1,1,0,1,1,0,0,5,6,4,6,0,0,0,0,0,0,0,0,1,0,5,6,1,0,0,0,0,0,0,0 +50,21,129,Kentucky,Lee County,3,2,387,214,173,203,166,4,3,1,2,0,1,0,0,6,1,209,167,9,4,2,2,0,1,0,0,213,171,203,165,4,3,0,2,0,0,0,0,6,1,209,166,9,4,1,2,0,0,0,0,1,2,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0,1,0,0 +50,21,139,Kentucky,Livingston County,3,12,705,338,367,330,356,0,1,0,4,0,1,0,1,8,4,338,360,1,3,6,6,1,1,0,1,329,362,322,352,0,1,0,3,0,1,0,1,7,4,329,356,1,3,6,5,0,1,0,1,9,5,8,4,0,0,0,1,0,0,0,0,1,0,9,4,0,0,0,1,1,0,0,0 +50,21,143,Kentucky,Lyon County,2,13,705,353,352,336,343,13,6,0,1,1,1,0,0,3,1,339,344,13,6,2,2,2,1,0,0,352,350,335,341,13,6,0,1,1,1,0,0,3,1,338,342,13,6,2,2,2,1,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 +50,21,143,Kentucky,Lyon County,5,14,705,347,358,338,346,5,2,0,4,0,1,0,0,4,5,342,351,5,2,2,9,1,1,1,0,344,352,335,341,5,2,0,3,0,1,0,0,4,5,339,346,5,2,2,8,1,1,1,0,3,6,3,5,0,0,0,1,0,0,0,0,0,0,3,5,0,0,0,1,0,0,0,0 +50,21,199,Kentucky,Pulaski County,2,17,1482,642,840,613,823,10,5,2,2,5,3,0,0,12,7,625,830,11,7,13,6,5,4,0,0,636,832,607,815,10,5,2,2,5,3,0,0,12,7,619,822,11,7,13,6,5,4,0,0,6,8,6,8,0,0,0,0,0,0,0,0,0,0,6,8,0,0,0,0,0,0,0,0 +50,21,229,Kentucky,Washington County,2,6,705,352,353,320,330,20,16,0,1,1,1,0,0,11,5,331,335,25,18,3,4,3,1,1,0,341,346,309,323,20,16,0,1,1,1,0,0,11,5,320,328,25,18,3,4,3,1,1,0,11,7,11,7,0,0,0,0,0,0,0,0,0,0,11,7,0,0,0,0,0,0,0,0 +50,21,229,Kentucky,Washington County,4,16,387,179,208,173,198,4,6,0,1,1,2,0,0,1,1,174,199,4,6,1,2,1,2,0,0,177,207,171,197,4,6,0,1,1,2,0,0,1,1,172,198,4,6,1,2,1,2,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 +50,21,229,Kentucky,Washington County,5,1,705,360,345,321,311,18,12,2,0,2,1,0,0,17,21,338,331,32,33,2,1,5,1,0,0,336,326,300,292,16,12,2,0,2,1,0,0,16,21,316,312,30,33,2,1,4,1,0,0,24,19,21,19,2,0,0,0,0,0,0,0,1,0,22,19,2,0,0,0,1,0,0,0 +50,22,13,Louisiana,Bienville Parish,4,9,705,329,376,192,202,133,167,4,0,0,2,0,1,0,4,192,205,133,169,4,1,0,2,0,3,313,368,178,195,133,167,2,0,0,2,0,1,0,3,178,197,133,169,2,1,0,2,0,2,16,8,14,7,0,0,2,0,0,0,0,0,0,1,14,8,0,0,2,0,0,0,0,1 +50,22,23,Louisiana,Cameron Parish,2,3,387,189,198,170,182,4,9,3,1,0,0,0,0,12,6,180,187,13,14,6,1,2,2,0,0,177,182,161,167,4,9,2,1,0,0,0,0,10,5,169,171,12,13,4,1,2,2,0,0,12,16,9,15,0,0,1,0,0,0,0,0,2,1,11,16,1,1,2,0,0,0,0,0 +50,22,35,Louisiana,East Carroll Parish,1,6,705,518,187,114,41,398,144,4,2,0,0,0,0,2,0,116,41,399,144,4,2,1,0,0,0,514,186,110,40,398,144,4,2,0,0,0,0,2,0,112,40,399,144,4,2,1,0,0,0,4,1,4,1,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0 +50,22,53,Louisiana,Jefferson Davis Parish,3,17,705,304,401,264,344,33,51,2,2,0,1,0,0,5,3,268,347,37,52,5,3,0,2,0,0,302,394,262,337,33,51,2,2,0,1,0,0,5,3,266,340,37,52,5,3,0,2,0,0,2,7,2,7,0,0,0,0,0,0,0,0,0,0,2,7,0,0,0,0,0,0,0,0 +50,22,59,Louisiana,LaSalle Parish,4,17,294,112,182,103,163,6,14,0,5,1,0,0,0,2,0,105,163,6,14,0,5,3,0,0,0,112,167,103,151,6,14,0,2,1,0,0,0,2,0,105,151,6,14,0,2,3,0,0,0,0,15,0,12,0,0,0,3,0,0,0,0,0,0,0,12,0,0,0,3,0,0,0,0 +50,22,79,Louisiana,Rapides Parish,2,8,8455,4157,4298,2816,2685,1193,1450,42,39,53,59,2,3,51,62,2860,2739,1207,1470,66,70,68,77,9,8,3863,4148,2552,2560,1179,1441,32,30,53,58,1,3,46,56,2592,2608,1192,1457,54,59,66,74,7,8,294,150,264,125,14,9,10,9,0,1,1,0,5,6,268,131,15,13,12,11,2,3,2,0 +50,22,109,Louisiana,Terrebonne Parish,5,7,6809,3397,3412,2415,2343,656,686,229,238,32,40,5,14,60,91,2463,2415,686,738,263,281,44,54,9,22,3075,3235,2119,2181,650,683,220,232,29,38,2,12,55,89,2163,2251,678,733,250,274,39,52,6,20,322,177,296,162,6,3,9,6,3,2,3,2,5,2,300,164,8,5,13,7,5,2,3,2 +50,22,119,Louisiana,Webster Parish,4,7,2151,1024,1127,642,682,359,426,3,5,5,7,1,0,14,7,655,689,365,428,9,6,7,9,2,2,992,1104,619,662,352,426,3,4,5,6,1,0,12,6,630,668,356,428,9,4,7,8,2,2,32,23,23,20,7,0,0,1,0,1,0,0,2,1,25,21,9,0,0,2,0,1,0,0 +50,23,19,Maine,Penobscot County,2,0,152169,75746,76423,71647,72492,898,616,974,940,850,962,25,27,1352,1386,72970,73851,1316,1031,1649,1640,1177,1295,70,84,74355,75080,70492,71347,835,568,922,901,824,946,22,23,1260,1295,71725,72620,1211,948,1551,1557,1137,1255,62,67,1391,1343,1155,1145,63,48,52,39,26,16,3,4,92,91,1245,1231,105,83,98,83,40,40,8,17 +50,24,27,Maryland,Howard County,4,9,25357,12434,12923,6309,5934,2549,3104,74,74,3182,3439,10,10,310,362,6572,6246,2698,3282,158,164,3324,3610,20,30,11159,11737,5295,5011,2437,2985,10,26,3162,3422,5,8,250,285,5507,5252,2548,3124,67,87,3294,3569,15,25,1275,1186,1014,923,112,119,64,48,20,17,5,2,60,77,1065,994,150,158,91,77,30,41,5,5 +50,25,5,Massachusetts,Bristol County,2,6,36470,18344,18126,15616,15219,1543,1591,148,116,474,632,22,27,541,541,16118,15720,1868,1929,272,239,610,758,54,57,15993,16047,13773,13635,1246,1283,51,45,467,618,7,17,449,449,14192,14051,1504,1553,152,144,593,736,35,42,2351,2079,1843,1584,297,308,97,71,7,14,15,10,92,92,1926,1669,364,376,120,95,17,22,19,15 +50,26,39,Michigan,Crawford County,4,9,705,362,343,351,337,5,0,2,0,0,2,0,0,4,4,355,340,7,1,4,1,0,4,0,1,346,331,339,326,1,0,2,0,0,2,0,0,4,3,343,328,3,0,4,1,0,4,0,1,16,12,12,11,4,0,0,0,0,0,0,0,0,1,12,12,4,1,0,0,0,0,0,0 +50,26,43,Michigan,Dickinson County,3,17,705,324,381,315,378,0,0,3,1,0,1,0,0,6,1,321,379,0,0,6,1,3,1,0,1,323,381,314,378,0,0,3,1,0,1,0,0,6,1,320,379,0,0,6,1,3,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +50,26,89,Michigan,Leelanau County,4,15,2151,1089,1062,1065,1029,3,3,11,20,3,4,1,0,6,6,1071,1035,4,5,14,23,4,5,2,0,1076,1057,1052,1025,3,3,11,19,3,4,1,0,6,6,1058,1031,4,5,14,22,4,5,2,0,13,5,13,4,0,0,0,1,0,0,0,0,0,0,13,4,0,0,0,1,0,0,0,0 +50,26,95,Michigan,Luce County,4,15,387,199,188,184,180,0,0,10,7,1,0,0,0,4,1,188,181,1,0,12,7,2,1,0,0,198,188,183,180,0,0,10,7,1,0,0,0,4,1,187,181,1,0,12,7,2,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +50,26,109,Michigan,Menominee County,2,18,705,282,423,278,419,0,1,2,1,0,0,0,1,2,1,280,419,0,1,4,2,0,1,0,1,278,420,274,416,0,1,2,1,0,0,0,1,2,1,276,416,0,1,4,2,0,1,0,1,4,3,4,3,0,0,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0 +50,26,113,Michigan,Missaukee County,3,18,294,111,183,105,179,1,0,0,0,2,1,0,1,3,2,108,181,1,1,3,1,2,1,0,1,109,183,104,179,1,0,0,0,1,1,0,1,3,2,107,181,1,1,3,1,1,1,0,1,2,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0 +50,26,119,Michigan,Montmorency County,2,4,387,222,165,212,156,1,1,1,1,1,1,0,0,7,6,219,162,5,2,2,4,2,3,1,0,217,161,208,153,1,1,1,0,1,1,0,0,6,6,214,159,5,2,1,3,2,3,1,0,5,4,4,3,0,0,0,1,0,0,0,0,1,0,5,3,0,0,1,1,0,0,0,0 +50,26,119,Michigan,Montmorency County,5,1,387,189,198,181,190,4,0,0,3,1,0,0,0,3,5,183,193,6,3,1,4,2,3,0,0,177,184,169,178,4,0,0,1,1,0,0,0,3,5,171,181,6,3,1,2,2,3,0,0,12,14,12,12,0,0,0,2,0,0,0,0,0,0,12,12,0,0,0,2,0,0,0,0 +50,26,127,Michigan,Oceana County,1,6,1482,808,674,741,636,36,12,21,7,1,3,0,1,9,15,749,650,40,18,25,15,3,5,0,1,625,552,577,523,35,8,7,5,0,2,0,0,6,14,583,537,38,13,9,12,1,4,0,0,183,122,164,113,1,4,14,2,1,1,0,1,3,1,166,113,2,5,16,3,2,1,0,1 +50,26,127,Michigan,Oceana County,2,6,1482,806,676,741,637,34,11,20,7,1,3,0,1,10,17,749,651,38,19,25,18,2,4,2,1,621,555,574,524,33,8,7,5,0,2,0,0,7,16,580,537,36,16,11,15,0,3,1,0,185,121,167,113,1,3,13,2,1,1,0,1,3,1,169,114,2,3,14,3,2,1,1,1 +50,26,133,Michigan,Osceola County,4,3,1482,800,682,749,645,17,7,4,7,1,2,0,0,29,21,777,666,32,19,16,14,5,5,0,0,768,654,723,623,17,5,1,5,1,2,0,0,26,19,748,642,31,16,11,11,5,4,0,0,32,28,26,22,0,2,3,2,0,0,0,0,3,2,29,24,1,3,5,3,0,1,0,0 +50,26,149,Michigan,St. Joseph County,5,2,4035,2094,1941,1878,1728,79,51,8,20,14,10,1,0,114,132,1985,1856,160,146,27,38,32,30,5,4,1765,1622,1577,1438,68,50,3,6,10,10,0,0,107,118,1678,1552,144,135,18,20,28,30,4,3,329,319,301,290,11,1,5,14,4,0,1,0,7,14,307,304,16,11,9,18,4,0,1,1 +50,26,153,Michigan,Schoolcraft County,3,4,387,219,168,163,138,0,2,39,17,2,1,0,0,15,10,178,148,6,7,46,21,4,2,0,0,215,165,163,136,0,2,37,16,2,1,0,0,13,10,176,146,6,7,42,20,4,2,0,0,4,3,0,2,0,0,2,1,0,0,0,0,2,0,2,2,0,0,4,1,0,0,0,0 +50,27,11,Minnesota,Big Stone County,1,8,294,155,139,152,137,1,0,1,1,1,0,0,0,0,1,152,138,1,1,1,1,1,0,0,0,147,134,144,132,1,0,1,1,1,0,0,0,0,1,144,133,1,1,1,1,1,0,0,0,8,5,8,5,0,0,0,0,0,0,0,0,0,0,8,5,0,0,0,0,0,0,0,0 +50,27,11,Minnesota,Big Stone County,3,4,294,155,139,149,133,2,0,2,4,0,0,0,0,2,2,151,135,4,1,2,4,0,1,0,0,148,134,142,128,2,0,2,4,0,0,0,0,2,2,144,130,4,1,2,4,0,1,0,0,7,5,7,5,0,0,0,0,0,0,0,0,0,0,7,5,0,0,0,0,0,0,0,0 +50,27,19,Minnesota,Carver County,2,17,1482,643,839,634,823,2,5,1,0,6,9,0,0,0,2,634,825,2,6,1,1,6,9,0,0,638,834,629,818,2,5,1,0,6,9,0,0,0,2,629,820,2,6,1,1,6,9,0,0,5,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0 +50,27,21,Minnesota,Cass County,1,18,705,281,424,266,405,2,1,11,15,2,3,0,0,0,0,266,405,2,1,11,15,2,3,0,0,280,422,265,403,2,1,11,15,2,3,0,0,0,0,265,403,2,1,11,15,2,3,0,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 +50,27,23,Minnesota,Chippewa County,3,7,705,362,343,315,314,9,3,11,7,4,2,19,9,4,8,319,321,11,6,12,12,5,3,19,9,316,312,279,284,8,3,3,7,4,2,19,9,3,7,282,290,10,6,4,12,4,2,19,9,46,31,36,30,1,0,8,0,0,0,0,0,1,1,37,31,1,0,8,0,1,1,0,0 +50,27,23,Minnesota,Chippewa County,5,7,705,349,356,304,319,7,3,11,7,3,1,20,13,4,13,307,329,8,8,14,16,4,4,20,13,305,314,269,279,5,3,5,7,3,1,20,13,3,11,271,287,6,7,7,15,4,4,20,13,44,42,35,40,2,0,6,0,0,0,0,0,1,2,36,42,2,1,7,1,0,0,0,0 +50,27,39,Minnesota,Dodge County,5,9,1482,753,729,725,707,12,4,1,2,4,5,0,3,11,8,734,714,14,6,5,8,11,7,2,4,719,697,695,677,9,3,1,2,4,5,0,3,10,7,703,683,11,4,4,7,11,7,2,4,34,32,30,30,3,1,0,0,0,0,0,0,1,1,31,31,3,2,1,1,0,0,0,0 +50,27,43,Minnesota,Faribault County,4,17,387,167,220,164,219,1,0,0,0,1,0,0,0,1,1,165,219,2,0,0,0,1,1,0,1,165,219,163,218,1,0,0,0,1,0,0,0,0,1,163,218,1,0,0,0,1,1,0,1,2,1,1,1,0,0,0,0,0,0,0,0,1,0,2,1,1,0,0,0,0,0,0,0 +50,27,55,Minnesota,Houston County,1,16,705,353,352,350,349,0,0,0,0,0,1,0,0,3,2,353,351,1,1,3,2,0,2,0,1,352,351,349,349,0,0,0,0,0,1,0,0,3,1,352,350,1,0,3,1,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,0,1,0,1 +50,27,73,Minnesota,Lac qui Parle County,1,8,387,197,190,189,185,1,2,0,0,1,2,4,1,2,0,191,185,2,2,1,0,1,2,4,1,188,177,185,172,1,2,0,0,0,2,0,1,2,0,187,172,2,2,1,0,0,2,0,1,9,13,4,13,0,0,0,0,1,0,4,0,0,0,4,13,0,0,0,0,1,0,4,0 +50,27,73,Minnesota,Lac qui Parle County,3,5,294,156,138,144,129,5,1,0,0,2,1,1,0,4,7,148,136,6,6,2,3,3,2,1,0,154,134,142,125,5,1,0,0,2,1,1,0,4,7,146,132,6,6,2,3,3,2,1,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 +50,27,77,Minnesota,Lake of the Woods County,2,13,387,207,180,202,171,0,1,3,1,1,6,0,0,1,1,203,172,0,1,4,2,1,6,0,0,207,180,202,171,0,1,3,1,1,6,0,0,1,1,203,172,0,1,4,2,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,27,79,Minnesota,Le Sueur County,5,5,1482,789,693,743,649,14,12,8,9,8,8,0,1,16,14,759,663,20,19,11,13,15,11,0,1,702,596,659,561,14,9,5,5,8,8,0,1,16,12,675,573,20,16,8,7,15,11,0,1,87,97,84,88,0,3,3,4,0,0,0,0,0,2,84,90,0,3,3,6,0,0,0,0 +50,27,101,Minnesota,Murray County,5,17,294,137,157,135,157,0,0,0,0,2,0,0,0,0,0,135,157,0,0,0,0,2,0,0,0,132,157,130,157,0,0,0,0,2,0,0,0,0,0,130,157,0,0,0,0,2,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0 +50,27,121,Minnesota,Pope County,3,2,705,360,345,344,320,1,4,2,5,1,1,0,0,12,15,356,334,8,12,3,11,3,3,2,0,352,323,337,307,1,0,2,1,1,1,0,0,11,14,348,320,8,8,3,6,3,3,1,0,8,22,7,13,0,4,0,4,0,0,0,0,1,1,8,14,0,4,0,5,0,0,1,0 +50,27,147,Minnesota,Steele County,5,1,2151,1088,1063,957,938,94,66,2,3,10,16,0,4,25,36,981,972,108,91,5,13,19,24,0,4,941,927,813,818,93,66,2,3,8,15,0,0,25,25,837,841,107,84,5,7,17,23,0,0,147,136,144,120,1,0,0,0,2,1,0,4,0,11,144,131,1,7,0,6,2,1,0,4 +50,27,149,Minnesota,Stevens County,3,18,294,98,196,98,191,0,1,0,0,0,1,0,0,0,3,98,194,0,2,0,2,0,1,0,0,96,195,96,190,0,1,0,0,0,1,0,0,0,3,96,193,0,2,0,2,0,1,0,0,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0 +50,27,151,Minnesota,Swift County,3,13,705,376,329,367,321,4,2,2,3,1,0,1,1,1,2,368,323,4,2,3,5,1,0,1,1,366,323,359,318,3,2,1,1,1,0,1,1,1,1,360,319,3,2,2,2,1,0,1,1,10,6,8,3,1,0,1,2,0,0,0,0,0,1,8,4,1,0,1,3,0,0,0,0 +50,27,165,Minnesota,Watonwan County,1,14,705,392,313,384,304,2,3,0,1,4,2,0,0,2,3,386,307,4,3,0,3,4,3,0,0,352,285,344,278,2,2,0,0,4,2,0,0,2,3,346,281,4,2,0,2,4,3,0,0,40,28,40,26,0,1,0,1,0,0,0,0,0,0,40,26,0,1,0,1,0,0,0,0 +50,27,165,Minnesota,Watonwan County,1,16,387,196,191,194,188,0,0,0,0,2,3,0,0,0,0,194,188,0,0,0,0,2,3,0,0,193,183,191,180,0,0,0,0,2,3,0,0,0,0,191,180,0,0,0,0,2,3,0,0,3,8,3,8,0,0,0,0,0,0,0,0,0,0,3,8,0,0,0,0,0,0,0,0 +50,27,167,Minnesota,Wilkin County,2,15,294,143,151,137,148,0,2,4,0,2,1,0,0,0,0,137,148,0,2,4,0,2,1,0,0,142,149,136,147,0,1,4,0,2,1,0,0,0,0,136,147,0,1,4,0,2,1,0,0,1,2,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0 +50,28,3,Mississippi,Alcorn County,2,9,2151,1087,1064,914,911,156,135,6,3,8,8,0,0,3,7,916,916,158,140,7,6,8,9,1,0,1029,1021,860,869,154,135,4,2,8,8,0,0,3,7,862,874,156,140,5,5,8,9,1,0,58,43,54,42,2,0,2,1,0,0,0,0,0,0,54,42,2,0,2,1,0,0,0,0 +50,28,37,Mississippi,Franklin County,2,7,387,202,185,115,92,85,90,2,1,0,0,0,0,0,2,115,93,85,92,2,2,0,0,0,0,200,183,113,91,85,90,2,1,0,0,0,0,0,1,113,91,85,91,2,2,0,0,0,0,2,2,2,1,0,0,0,0,0,0,0,0,0,1,2,2,0,1,0,0,0,0,0,0 +50,28,41,Mississippi,Greene County,3,16,387,177,210,150,180,24,27,0,1,0,0,0,0,3,2,153,181,25,28,2,1,0,2,0,0,176,210,149,180,24,27,0,1,0,0,0,0,3,2,152,181,25,28,2,1,0,2,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +50,28,69,Mississippi,Kemper County,3,2,387,198,189,54,49,130,129,8,4,0,0,0,0,6,7,60,55,135,134,9,6,0,1,0,0,196,187,53,48,130,129,8,3,0,0,0,0,5,7,58,54,134,134,9,5,0,1,0,0,2,2,1,1,0,0,0,1,0,0,0,0,1,0,2,1,1,0,0,1,0,0,0,0 +50,28,69,Mississippi,Kemper County,4,18,294,112,182,63,92,48,81,1,7,0,0,0,0,0,2,63,94,48,81,1,9,0,0,0,0,112,181,63,92,48,80,1,7,0,0,0,0,0,2,63,94,48,80,1,9,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0 +50,28,77,Mississippi,Lawrence County,3,8,705,357,348,249,231,99,115,2,1,2,1,0,0,5,0,254,231,101,115,4,1,3,1,0,0,344,347,244,231,96,115,0,0,2,1,0,0,2,0,246,231,96,115,1,0,3,1,0,0,13,1,5,0,3,0,2,1,0,0,0,0,3,0,8,0,5,0,3,1,0,0,0,0 +50,28,83,Mississippi,Leflore County,2,4,2151,1075,1076,190,156,860,897,9,9,9,3,0,0,7,11,197,164,865,903,11,16,9,4,0,0,1032,1044,162,142,853,888,2,2,9,3,0,0,6,9,168,148,858,894,3,7,9,4,0,0,43,32,28,14,7,9,7,7,0,0,0,0,1,2,29,16,7,9,8,9,0,0,0,0 +50,28,105,Mississippi,Oktibbeha County,1,15,1482,682,800,480,510,192,275,6,2,2,5,0,0,2,8,482,515,192,280,8,9,2,7,0,0,669,792,471,508,190,269,4,2,2,5,0,0,2,8,473,513,190,274,6,9,2,7,0,0,13,8,9,2,2,6,2,0,0,0,0,0,0,0,9,2,2,6,2,0,0,0,0,0 +50,28,107,Mississippi,Panola County,5,13,2151,1010,1141,570,627,430,498,1,7,1,0,0,0,8,9,575,632,432,505,7,11,4,1,0,2,1004,1128,565,620,429,492,1,7,1,0,0,0,8,9,570,625,431,499,7,11,4,1,0,2,6,13,5,7,1,6,0,0,0,0,0,0,0,0,5,7,1,6,0,0,0,0,0,0 +50,28,111,Mississippi,Perry County,1,11,705,359,346,302,263,54,77,1,2,1,1,0,0,1,3,303,266,54,79,2,4,1,1,0,0,355,345,298,263,54,77,1,1,1,1,0,0,1,3,299,266,54,79,2,3,1,1,0,0,4,1,4,0,0,0,0,1,0,0,0,0,0,0,4,0,0,0,0,1,0,0,0,0 +50,28,111,Mississippi,Perry County,3,16,387,172,215,144,179,26,36,1,0,0,0,0,0,1,0,145,179,26,36,2,0,0,0,0,0,171,211,143,175,26,36,1,0,0,0,0,0,1,0,144,175,26,36,2,0,0,0,0,0,1,4,1,4,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0,0,0,0,0 +50,28,129,Mississippi,Smith County,1,0,14208,6907,7301,5230,5425,1601,1790,17,13,8,16,1,2,50,55,5274,5477,1635,1828,31,29,18,23,4,5,6801,7192,5153,5348,1582,1764,16,12,6,14,1,2,43,52,5192,5397,1613,1801,28,26,12,21,2,4,106,109,77,77,19,26,1,1,2,2,0,0,7,3,82,80,22,27,3,3,6,2,2,1 +50,28,149,Mississippi,Warren County,5,18,705,232,473,171,299,54,154,2,3,0,13,0,0,5,4,173,302,57,157,5,5,2,15,1,0,227,465,169,295,52,151,1,2,0,13,0,0,5,4,171,298,55,154,4,4,2,15,1,0,5,8,2,4,2,3,1,1,0,0,0,0,0,0,2,4,2,3,1,1,0,0,0,0 +50,28,155,Mississippi,Webster County,3,13,705,358,347,276,261,81,80,1,2,0,2,0,0,0,2,276,263,81,81,1,3,0,2,0,0,353,343,272,257,80,80,1,2,0,2,0,0,0,2,272,259,80,81,1,3,0,2,0,0,5,4,4,4,1,0,0,0,0,0,0,0,0,0,4,4,1,0,0,0,0,0,0,0 +50,29,3,Missouri,Andrew County,1,17,387,152,235,149,231,0,1,0,2,1,0,0,0,2,1,150,232,1,2,1,3,2,0,0,0,152,234,149,231,0,1,0,1,1,0,0,0,2,1,150,232,1,2,1,2,2,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +50,29,5,Missouri,Atchison County,3,13,387,199,188,198,186,1,0,0,0,0,0,0,0,0,2,198,187,1,0,0,2,0,1,0,0,199,185,198,183,1,0,0,0,0,0,0,0,0,2,198,184,1,0,0,2,0,1,0,0,0,3,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0 +50,29,7,Missouri,Audrain County,5,6,1482,685,797,603,704,43,69,5,5,7,4,4,1,23,14,625,718,59,78,9,9,11,5,4,1,670,771,593,683,43,68,3,5,7,4,4,1,20,10,612,693,57,75,6,8,11,4,4,1,15,26,10,21,0,1,2,0,0,0,0,0,3,4,13,25,2,3,3,1,0,1,0,0 +50,29,11,Missouri,Barton County,3,9,705,356,349,342,327,8,1,2,4,1,7,2,1,1,9,343,336,9,5,2,9,1,7,2,1,344,337,333,319,7,1,1,3,1,7,1,0,1,7,334,326,8,4,1,7,1,7,1,0,12,12,9,8,1,0,1,1,0,0,1,1,0,2,9,10,1,1,1,2,0,0,1,1 +50,29,29,Missouri,Camden County,5,12,3327,1612,1715,1574,1663,6,11,12,16,3,12,0,0,17,13,1591,1675,7,13,26,27,4,13,1,0,1564,1673,1531,1625,6,10,10,13,3,12,0,0,14,13,1545,1637,7,12,22,24,4,13,0,0,48,42,43,38,0,1,2,3,0,0,0,0,3,0,46,38,0,1,4,3,0,0,1,0 +50,29,37,Missouri,Cass County,1,9,6809,3355,3454,3054,3143,195,194,27,21,19,38,4,4,56,54,3107,3196,204,201,60,53,34,53,6,6,3157,3254,2878,2976,191,182,21,12,14,35,4,4,49,45,2924,3020,200,188,48,38,28,49,6,5,198,200,176,167,4,12,6,9,5,3,0,0,7,9,183,176,4,13,12,15,6,4,0,1 +50,29,37,Missouri,Cass County,2,10,6809,3388,3421,3088,3113,193,195,17,25,26,31,7,3,57,54,3135,3164,203,202,54,56,43,45,11,8,3208,3259,2935,2969,185,190,8,18,23,29,7,2,50,51,2978,3018,191,197,40,47,40,42,10,6,180,162,153,144,8,5,9,7,3,2,0,1,7,3,157,146,12,5,14,9,3,3,1,2 +50,29,53,Missouri,Cooper County,4,17,387,165,222,161,199,1,14,0,2,3,4,0,0,0,3,161,202,1,14,0,4,3,5,0,0,163,218,159,195,1,14,0,2,3,4,0,0,0,3,159,198,1,14,0,4,3,5,0,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 +50,29,59,Missouri,Dallas County,2,18,387,134,253,130,245,0,0,2,3,0,1,0,0,2,4,132,249,1,1,3,6,0,1,0,0,131,248,127,241,0,0,2,3,0,1,0,0,2,3,129,244,1,1,3,5,0,1,0,0,3,5,3,4,0,0,0,0,0,0,0,0,0,1,3,5,0,0,0,1,0,0,0,0 +50,29,67,Missouri,Douglas County,3,18,294,119,175,112,166,0,1,0,3,2,0,0,0,5,5,117,171,0,1,4,8,3,0,0,0,118,173,111,165,0,1,0,3,2,0,0,0,5,4,116,169,0,1,4,7,3,0,0,0,1,2,1,1,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,1,0,0,0,0 +50,29,75,Missouri,Gentry County,4,14,387,185,202,181,196,1,3,1,1,1,0,0,0,1,2,182,198,1,3,1,3,2,0,0,0,185,202,181,196,1,3,1,1,1,0,0,0,1,2,182,198,1,3,1,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,29,113,Missouri,Lincoln County,2,15,2151,1064,1087,1038,1060,19,11,4,5,1,5,0,0,2,6,1040,1066,20,11,6,10,1,6,0,1,1061,1078,1036,1053,19,11,3,4,1,5,0,0,2,5,1038,1058,20,11,5,8,1,6,0,1,3,9,2,7,0,0,1,1,0,0,0,0,0,1,2,8,0,0,1,2,0,0,0,0 +50,29,117,Missouri,Livingston County,1,15,705,312,393,304,385,1,1,0,5,1,1,1,0,5,1,309,386,1,1,4,5,2,2,1,1,310,391,302,383,1,1,0,5,1,1,1,0,5,1,307,384,1,1,4,5,2,2,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 +50,29,117,Missouri,Livingston County,2,15,705,313,392,305,384,1,1,0,5,1,1,1,0,5,1,310,385,2,1,5,6,1,1,1,0,311,390,303,382,1,1,0,5,1,1,1,0,5,1,308,383,2,1,5,6,1,1,1,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 +50,29,119,Missouri,McDonald County,1,10,1482,763,719,678,642,15,10,28,18,10,17,16,14,16,18,693,660,18,11,41,34,11,18,16,14,685,652,612,584,15,9,19,13,10,16,15,12,14,18,626,602,17,10,30,29,11,17,15,12,78,67,66,58,0,1,9,5,0,1,1,2,2,0,67,58,1,1,11,5,0,1,1,2 +50,29,137,Missouri,Monroe County,4,16,387,193,194,190,187,0,4,0,0,0,2,1,0,2,1,192,187,0,4,1,0,1,3,1,1,192,194,189,187,0,4,0,0,0,2,1,0,2,1,191,187,0,4,1,0,1,3,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +50,29,175,Missouri,Randolph County,3,4,1482,778,704,685,630,32,30,2,3,3,2,0,0,56,39,738,667,74,63,12,8,11,6,0,0,747,670,658,606,30,25,2,1,3,2,0,0,54,36,709,640,70,56,12,6,11,5,0,0,31,34,27,24,2,5,0,2,0,0,0,0,2,3,29,27,4,7,0,2,0,1,0,0 +50,29,177,Missouri,Ray County,4,14,1482,722,760,691,738,9,5,14,10,1,2,1,0,6,5,697,743,9,7,19,13,2,2,1,0,710,750,684,729,9,5,9,9,1,2,1,0,6,5,690,734,9,7,14,12,2,2,1,0,12,10,7,9,0,0,5,1,0,0,0,0,0,0,7,9,0,0,5,1,0,0,0,0 +50,29,199,Missouri,Scotland County,3,13,294,142,152,140,151,0,0,0,0,0,0,0,0,2,1,142,152,1,0,1,0,0,0,0,1,142,150,140,149,0,0,0,0,0,0,0,0,2,1,142,150,1,0,1,0,0,0,0,1,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 +50,29,203,Missouri,Shannon County,4,10,387,199,188,192,180,3,0,1,2,0,1,0,0,3,5,195,185,5,2,2,5,0,1,0,0,190,183,184,175,2,0,1,2,0,1,0,0,3,5,187,180,4,2,2,5,0,1,0,0,9,5,8,5,1,0,0,0,0,0,0,0,0,0,8,5,1,0,0,0,0,0,0,0 +50,29,205,Missouri,Shelby County,1,4,387,210,177,198,163,5,4,1,2,0,1,0,0,6,7,204,170,9,11,2,2,1,1,0,0,205,171,194,158,5,4,1,2,0,1,0,0,5,6,199,164,9,10,1,2,1,1,0,0,5,6,4,5,0,0,0,0,0,0,0,0,1,1,5,6,0,1,1,0,0,0,0,0 +50,29,205,Missouri,Shelby County,4,2,387,192,195,185,177,4,3,0,2,0,0,0,0,3,13,188,190,6,15,1,4,0,0,0,0,185,181,178,166,4,2,0,0,0,0,0,0,3,13,181,179,6,14,1,2,0,0,0,0,7,14,7,11,0,1,0,2,0,0,0,0,0,0,7,11,0,1,0,2,0,0,0,0 +50,29,213,Missouri,Taney County,5,13,4035,1959,2076,1873,1987,33,13,12,26,12,20,5,0,24,30,1895,2016,36,16,33,52,13,24,6,1,1886,2003,1804,1920,33,13,9,23,12,19,5,0,23,28,1825,1947,35,16,30,47,13,23,6,1,73,73,69,67,0,0,3,3,0,1,0,0,1,2,70,69,1,0,3,5,0,1,0,0 +50,30,3,Montana,Big Horn County,5,9,705,349,356,124,91,0,0,216,244,0,9,0,0,9,12,133,103,2,0,223,255,0,9,0,1,312,339,94,82,0,0,211,239,0,9,0,0,7,9,101,91,1,0,217,248,0,9,0,0,37,17,30,9,0,0,5,5,0,0,0,0,2,3,32,12,1,0,6,7,0,0,0,1 +50,30,17,Montana,Custer County,2,17,294,121,173,120,165,0,0,0,2,0,0,1,0,0,6,120,171,0,0,0,6,0,2,1,0,120,171,119,163,0,0,0,2,0,0,1,0,0,6,119,169,0,0,0,6,0,2,1,0,1,2,1,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0 +50,30,21,Montana,Dawson County,1,16,294,146,148,144,147,0,0,2,0,0,0,0,0,0,1,144,148,0,0,2,1,0,0,0,0,145,148,143,147,0,0,2,0,0,0,0,0,0,1,143,148,0,0,2,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +50,30,23,Montana,Deer Lodge County,5,3,294,139,155,128,141,0,2,4,5,1,0,0,0,6,7,131,148,2,5,8,8,3,1,1,0,133,144,124,133,0,2,4,4,1,0,0,0,4,5,127,138,1,3,6,7,2,1,1,0,6,11,4,8,0,0,0,1,0,0,0,0,2,2,4,10,1,2,2,1,1,0,0,0 +50,30,65,Montana,Musselshell County,1,12,387,182,205,172,192,2,0,4,8,0,2,0,0,4,3,176,195,3,1,6,10,0,2,1,0,176,200,166,188,2,0,4,7,0,2,0,0,4,3,170,191,3,1,6,9,0,2,1,0,6,5,6,4,0,0,0,1,0,0,0,0,0,0,6,4,0,0,0,1,0,0,0,0 +50,30,73,Montana,Pondera County,1,2,387,193,194,134,149,0,1,45,37,0,0,0,0,14,7,148,155,3,2,53,42,3,1,2,1,184,188,132,146,0,1,38,34,0,0,0,0,14,7,146,152,3,2,46,39,3,1,2,1,9,6,2,3,0,0,7,3,0,0,0,0,0,0,2,3,0,0,7,3,0,0,0,0 +50,30,73,Montana,Pondera County,2,2,387,194,193,136,147,0,1,44,37,0,0,0,0,14,8,148,154,3,4,50,42,3,2,4,0,185,187,134,144,0,1,37,34,0,0,0,0,14,8,146,151,3,4,43,39,3,2,4,0,9,6,2,3,0,0,7,3,0,0,0,0,0,0,2,3,0,0,7,3,0,0,0,0 +50,30,83,Montana,Richland County,4,14,705,383,322,375,309,0,0,5,9,0,3,0,0,3,1,377,310,0,0,8,10,0,3,1,0,370,315,363,302,0,0,5,9,0,3,0,0,2,1,364,303,0,0,7,10,0,3,1,0,13,7,12,7,0,0,0,0,0,0,0,0,1,0,13,7,0,0,1,0,0,0,0,0 +50,30,89,Montana,Sanders County,5,14,1482,747,735,698,698,5,2,33,20,1,5,0,0,10,10,708,706,5,2,41,28,3,7,0,2,737,723,689,687,5,2,32,19,1,5,0,0,10,10,699,695,5,2,40,27,3,7,0,2,10,12,9,11,0,0,1,1,0,0,0,0,0,0,9,11,0,0,1,1,0,0,0,0 +50,30,93,Montana,Silver Bow County,3,18,705,227,478,221,466,0,0,0,3,0,4,2,2,4,3,225,469,0,0,3,4,0,5,3,3,220,464,214,455,0,0,0,3,0,4,2,0,4,2,218,457,0,0,3,4,0,5,3,0,7,14,7,11,0,0,0,0,0,0,0,2,0,1,7,12,0,0,0,0,0,0,0,3 +50,30,101,Montana,Toole County,3,7,387,272,115,230,106,2,1,32,4,0,1,0,0,8,3,238,109,4,2,37,7,1,1,0,0,248,111,209,103,2,0,32,4,0,1,0,0,5,3,214,106,4,1,35,7,0,1,0,0,24,4,21,3,0,1,0,0,0,0,0,0,3,0,24,3,0,1,2,0,1,0,0,0 +50,30,101,Montana,Toole County,4,7,387,269,118,222,105,4,1,37,7,1,1,0,0,5,4,227,109,5,1,41,9,1,3,0,0,242,113,199,100,4,1,35,7,1,1,0,0,3,4,202,104,5,1,37,9,1,3,0,0,27,5,23,5,0,0,2,0,0,0,0,0,2,0,25,5,0,0,4,0,0,0,0,0 +50,30,101,Montana,Toole County,4,12,294,170,124,155,118,3,1,10,2,2,2,0,0,0,1,155,119,3,1,10,2,2,3,0,0,165,117,151,111,3,1,9,2,2,2,0,0,0,1,151,112,3,1,9,2,2,3,0,0,5,7,4,7,0,0,1,0,0,0,0,0,0,0,4,7,0,0,1,0,0,0,0,0 +50,31,9,Nebraska,Blaine County,2,18,9,5,4,5,3,0,1,0,0,0,0,0,0,0,0,5,3,0,1,0,0,0,0,0,0,5,4,5,3,0,1,0,0,0,0,0,0,0,0,5,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,31,9,Nebraska,Blaine County,3,18,9,4,5,4,4,0,1,0,0,0,0,0,0,0,0,4,4,0,1,0,0,0,0,0,0,4,5,4,4,0,1,0,0,0,0,0,0,0,0,4,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,31,11,Nebraska,Boone County,4,9,294,158,136,155,134,0,1,1,1,0,0,0,0,2,0,157,134,0,1,3,1,0,0,0,0,139,131,138,129,0,1,1,1,0,0,0,0,0,0,138,129,0,1,1,1,0,0,0,0,19,5,17,5,0,0,0,0,0,0,0,0,2,0,19,5,0,0,2,0,0,0,0,0 +50,31,21,Nebraska,Burt County,4,6,294,157,137,145,126,2,2,7,2,1,4,0,1,2,2,147,128,2,2,9,4,1,4,0,1,150,134,138,126,2,2,7,1,1,4,0,0,2,1,140,127,2,2,9,2,1,4,0,0,7,3,7,0,0,0,0,1,0,0,0,1,0,1,7,1,0,0,0,2,0,0,0,1 +50,31,31,Nebraska,Cherry County,1,7,294,153,141,139,123,1,1,8,12,3,0,0,0,2,5,140,128,1,3,9,15,5,0,0,0,132,137,120,121,1,1,6,10,3,0,0,0,2,5,121,126,1,3,7,13,5,0,0,0,21,4,19,2,0,0,2,2,0,0,0,0,0,0,19,2,0,0,2,2,0,0,0,0 +50,31,45,Nebraska,Dawes County,3,1,387,200,187,160,152,2,2,18,18,2,2,1,0,17,13,177,164,9,5,22,23,7,6,2,2,181,166,149,142,2,2,11,10,1,2,1,0,17,10,166,151,9,5,15,13,6,5,2,2,19,21,11,10,0,0,7,8,1,0,0,0,0,3,11,13,0,0,7,10,1,1,0,0 +50,31,53,Nebraska,Dodge County,2,11,2151,1105,1046,1064,972,11,11,19,11,6,8,2,1,3,43,1067,1009,11,19,21,38,7,17,2,7,962,889,941,826,7,10,4,4,6,8,2,1,2,40,943,861,7,17,5,29,7,17,2,6,143,157,123,146,4,1,15,7,0,0,0,0,1,3,124,148,4,2,16,9,0,0,0,1 +50,31,65,Nebraska,Furnas County,4,4,294,156,138,148,133,0,1,2,0,0,1,0,0,6,3,154,136,3,2,5,1,0,3,0,0,144,128,139,125,0,0,0,0,0,1,0,0,5,2,144,127,2,1,3,0,0,3,0,0,12,10,9,8,0,1,2,0,0,0,0,0,1,1,10,9,1,1,2,1,0,0,0,0 +50,31,81,Nebraska,Hamilton County,5,16,387,193,194,189,193,0,0,1,0,1,0,0,0,2,1,191,194,0,0,3,1,1,0,0,0,191,193,188,192,0,0,1,0,0,0,0,0,2,1,190,193,0,0,3,1,0,0,0,0,2,1,1,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0 +50,31,91,Nebraska,Hooker County,2,0,705,345,360,336,353,0,0,1,2,2,0,0,0,6,5,342,358,2,2,4,5,3,0,0,0,337,348,330,343,0,0,1,2,2,0,0,0,4,3,334,346,2,1,2,4,3,0,0,0,8,12,6,10,0,0,0,0,0,0,0,0,2,2,8,12,0,1,2,1,0,0,0,0 +50,31,101,Nebraska,Keith County,2,7,387,192,195,183,185,6,0,0,1,1,1,0,0,2,8,185,192,8,3,0,4,1,3,0,1,175,168,168,159,6,0,0,0,1,1,0,0,0,8,168,166,6,3,0,3,1,3,0,1,17,27,15,26,0,0,0,1,0,0,0,0,2,0,17,26,2,0,0,1,0,0,0,0 +50,31,101,Nebraska,Keith County,4,6,387,195,192,184,178,1,3,0,3,4,1,0,0,6,7,190,184,4,7,2,6,5,2,0,0,175,171,165,159,1,2,0,2,3,1,0,0,6,7,171,165,4,6,2,5,4,2,0,0,20,21,19,19,0,1,0,1,1,0,0,0,0,0,19,19,0,1,0,1,1,0,0,0 +50,31,115,Nebraska,Loup County,1,18,9,2,7,1,7,0,0,1,0,0,0,0,0,0,0,1,7,0,0,1,0,0,0,0,0,2,7,1,7,0,0,1,0,0,0,0,0,0,0,1,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,31,151,Nebraska,Saline County,4,18,294,102,192,102,187,0,1,0,2,0,2,0,0,0,0,102,187,0,1,0,2,0,2,0,0,99,188,99,183,0,1,0,2,0,2,0,0,0,0,99,183,0,1,0,2,0,2,0,0,3,4,3,4,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0 +50,31,155,Nebraska,Saunders County,4,9,1482,764,718,749,705,3,2,4,3,4,4,0,0,4,4,753,709,3,3,6,5,6,5,0,0,738,694,727,683,2,2,1,2,4,4,0,0,4,3,731,686,2,3,3,3,6,5,0,0,26,24,22,22,1,0,3,1,0,0,0,0,0,1,22,23,1,0,3,2,0,0,0,0 +50,31,167,Nebraska,Stanton County,1,4,387,193,194,184,179,2,8,1,3,0,0,0,0,6,4,190,183,5,11,2,4,3,0,0,0,167,172,161,163,2,3,1,2,0,0,0,0,3,4,164,167,4,6,2,3,1,0,0,0,26,22,23,16,0,5,0,1,0,0,0,0,3,0,26,16,1,5,0,1,2,0,0,0 +50,31,169,Nebraska,Thayer County,3,11,294,147,147,143,146,2,0,0,0,2,0,0,0,0,1,143,147,2,0,0,1,2,0,0,0,143,146,140,145,2,0,0,0,1,0,0,0,0,1,140,146,2,0,0,1,1,0,0,0,4,1,3,1,0,0,0,0,1,0,0,0,0,0,3,1,0,0,0,0,1,0,0,0 +50,31,175,Nebraska,Valley County,2,12,294,145,149,145,142,0,3,0,1,0,1,0,1,0,1,145,143,0,3,0,2,0,1,0,1,142,142,142,136,0,3,0,1,0,1,0,0,0,1,142,137,0,3,0,2,0,1,0,0,3,7,3,6,0,0,0,0,0,0,0,1,0,0,3,6,0,0,0,0,0,0,0,1 +50,31,175,Nebraska,Valley County,4,3,294,147,147,140,142,1,1,1,0,1,0,0,0,4,4,144,145,3,3,3,2,2,0,0,1,138,139,132,134,1,1,0,0,1,0,0,0,4,4,136,137,3,3,2,2,2,0,0,1,9,8,8,8,0,0,1,0,0,0,0,0,0,0,8,8,0,0,1,0,0,0,0,0 +50,31,185,Nebraska,York County,3,10,705,360,345,351,328,2,11,1,3,1,1,1,0,4,2,353,330,3,11,2,4,4,1,2,1,342,330,335,314,2,10,0,3,1,1,0,0,4,2,337,316,3,10,1,4,4,1,1,1,18,15,16,14,0,1,1,0,0,0,1,0,0,0,16,14,0,1,1,0,0,0,1,0 +50,32,17,Nevada,Lincoln County,2,3,294,152,142,136,125,3,2,1,8,2,0,0,0,10,7,146,131,7,5,4,11,4,2,1,1,139,127,125,115,2,2,1,5,2,0,0,0,9,5,134,120,6,4,3,7,4,1,1,0,13,15,11,10,1,0,0,3,0,0,0,0,1,2,12,11,1,1,1,4,0,1,0,1 +50,32,31,Nevada,Washoe County,1,1,27464,14030,13434,11008,10408,488,467,475,476,691,711,148,152,1220,1220,12144,11539,938,920,709,716,1309,1318,293,287,8540,8287,6373,6092,359,341,170,165,586,621,108,114,944,954,7253,6981,715,713,304,299,1093,1128,219,218,5490,5147,4635,4316,129,126,305,311,105,90,40,38,276,266,4891,4558,223,207,405,417,216,190,74,69 +50,35,17,New Mexico,Grant County,5,3,1482,751,731,669,631,10,13,37,31,13,9,2,2,20,45,688,673,20,25,47,57,16,18,3,3,278,265,242,214,4,10,12,6,9,7,2,0,9,28,250,239,8,17,16,21,11,15,2,1,473,466,427,417,6,3,25,25,4,2,0,2,11,17,438,434,12,8,31,36,5,3,1,2 +50,35,33,New Mexico,Mora County,3,13,387,200,187,191,169,0,5,8,6,1,1,0,1,0,5,191,174,0,6,8,9,1,2,0,1,53,65,49,58,0,4,3,0,1,0,0,1,0,2,49,60,0,4,3,2,1,0,0,1,147,122,142,111,0,1,5,6,0,1,0,0,0,3,142,114,0,2,5,7,0,2,0,0 +50,35,33,New Mexico,Mora County,5,12,294,139,155,129,150,0,2,6,3,0,0,0,0,4,0,133,150,3,2,7,3,0,0,0,0,20,34,20,32,0,1,0,1,0,0,0,0,0,0,20,32,0,1,0,1,0,0,0,0,119,121,109,118,0,1,6,2,0,0,0,0,4,0,113,118,3,1,7,2,0,0,0,0 +50,35,57,New Mexico,Torrance County,5,18,294,157,137,140,121,4,2,8,5,0,1,0,1,5,7,145,127,4,3,12,11,1,1,0,2,118,100,106,89,4,2,6,3,0,1,0,0,2,5,108,93,4,3,7,7,1,1,0,1,39,37,34,32,0,0,2,2,0,0,0,1,3,2,37,34,0,0,5,4,0,0,0,1 +50,36,43,New York,Herkimer County,4,18,1482,527,955,510,932,5,7,2,3,2,8,0,0,8,5,517,935,8,7,7,6,3,11,0,1,518,942,504,920,4,7,1,2,2,8,0,0,7,5,510,923,6,7,6,5,3,11,0,1,9,13,6,12,1,0,1,1,0,0,0,0,1,0,7,12,2,0,1,1,0,0,0,0 +50,36,105,New York,Sullivan County,4,8,4947,2581,2366,2015,1966,411,242,27,18,79,80,2,4,47,56,2057,2017,440,276,37,32,87,92,7,8,1991,1837,1548,1526,339,194,9,3,71,76,1,1,23,37,1567,1558,353,214,13,12,77,86,4,5,590,529,467,440,72,48,18,15,8,4,1,3,24,19,490,459,87,62,24,20,10,6,3,3 +50,37,43,North Carolina,Clay County,2,18,294,132,162,130,157,0,1,1,0,0,0,0,0,1,4,131,161,1,2,1,3,0,0,0,0,130,160,128,155,0,1,1,0,0,0,0,0,1,4,129,159,1,2,1,3,0,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 +50,37,71,North Carolina,Gaston County,3,7,16227,7802,8425,5841,6017,1603,1984,49,41,150,220,12,3,147,160,5975,6158,1685,2079,97,90,185,258,17,7,7124,7729,5270,5423,1555,1922,20,21,144,216,5,2,130,145,5388,5551,1627,2008,61,65,178,251,10,6,678,696,571,594,48,62,29,20,6,4,7,1,17,15,587,607,58,71,36,25,7,7,7,1 +50,37,75,North Carolina,Graham County,2,1,387,206,181,166,141,1,4,23,26,1,0,0,0,15,10,180,149,9,8,26,29,5,2,1,3,190,168,159,136,0,4,18,19,1,0,0,0,12,9,170,143,7,7,20,22,4,2,1,3,16,13,7,5,1,0,5,7,0,0,0,0,3,1,10,6,2,1,6,7,1,0,0,0 +50,37,107,North Carolina,Lenoir County,2,2,3327,1687,1640,823,797,756,741,7,14,26,25,5,4,70,59,886,846,799,784,25,26,42,41,8,9,1432,1370,644,592,716,716,4,7,10,6,0,0,58,49,695,633,754,753,16,14,24,19,2,5,255,270,179,205,40,25,3,7,16,19,5,4,12,10,191,213,45,31,9,12,18,22,6,4 +50,37,145,North Carolina,Person County,3,9,2151,1077,1074,778,770,266,273,11,13,8,8,0,1,14,9,789,777,274,279,17,15,11,12,1,1,1015,1020,734,729,262,268,3,6,7,8,0,1,9,8,740,735,268,273,6,8,9,12,1,1,62,54,44,41,4,5,8,7,1,0,0,0,5,1,49,42,6,6,11,7,2,0,0,0 +50,38,5,North Dakota,Benson County,3,11,294,148,146,89,86,1,0,56,59,0,0,0,0,2,1,91,87,2,0,57,60,0,0,0,0,147,145,89,85,0,0,56,59,0,0,0,0,2,1,91,86,1,0,57,60,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0 +50,38,29,North Dakota,Emmons County,3,13,294,168,126,168,122,0,0,0,2,0,0,0,0,0,2,168,124,0,0,0,4,0,0,0,0,167,125,167,121,0,0,0,2,0,0,0,0,0,2,167,123,0,0,0,4,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 +50,38,59,North Dakota,Morton County,3,15,1482,731,751,718,730,3,4,6,10,2,3,1,1,1,3,718,733,3,5,6,11,3,4,2,2,729,747,716,726,3,4,6,10,2,3,1,1,1,3,716,729,3,5,6,11,3,4,2,2,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 +50,38,59,North Dakota,Morton County,5,1,2151,1099,1052,905,874,39,22,71,58,11,9,10,5,63,84,961,953,68,51,103,101,23,25,12,9,996,947,843,797,32,22,59,46,7,5,2,1,53,76,891,868,56,49,85,85,15,19,4,4,103,105,62,77,7,0,12,12,4,4,8,4,10,8,70,85,12,2,18,16,8,6,8,5 +50,38,67,North Dakota,Pembina County,2,15,387,210,177,204,169,1,0,1,6,0,1,1,0,3,1,207,170,1,0,4,6,0,2,1,0,208,175,202,167,1,0,1,6,0,1,1,0,3,1,205,168,1,0,4,6,0,2,1,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 +50,38,69,North Dakota,Pierce County,3,14,294,159,135,155,133,0,1,3,0,1,0,0,0,0,1,155,134,0,2,3,1,1,0,0,0,159,135,155,133,0,1,3,0,1,0,0,0,0,1,155,134,0,2,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,38,69,North Dakota,Pierce County,5,3,294,139,155,123,132,1,2,9,9,0,4,0,0,6,8,129,139,5,7,10,12,2,5,0,0,135,152,121,129,0,2,8,9,0,4,0,0,6,8,127,136,4,7,9,12,2,5,0,0,4,3,2,3,1,0,1,0,0,0,0,0,0,0,2,3,1,0,1,0,0,0,0,0 +50,38,79,North Dakota,Rolette County,4,9,705,362,343,61,50,5,1,283,280,2,1,0,0,11,11,72,61,5,4,294,288,2,1,0,0,361,340,60,47,5,1,283,280,2,1,0,0,11,11,71,58,5,4,294,288,2,1,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 +50,38,99,North Dakota,Walsh County,3,14,705,367,338,359,325,0,1,1,5,7,3,0,0,0,4,359,329,0,2,1,8,7,3,0,0,356,324,348,312,0,1,1,5,7,3,0,0,0,3,348,315,0,1,1,8,7,3,0,0,11,14,11,13,0,0,0,0,0,0,0,0,0,1,11,14,0,1,0,0,0,0,0,0 +50,38,103,North Dakota,Wells County,1,14,294,156,138,155,137,0,0,0,1,0,0,0,0,1,0,156,137,1,0,0,1,0,0,0,0,156,137,155,136,0,0,0,1,0,0,0,0,1,0,156,136,1,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +50,39,113,Ohio,Montgomery County,5,13,34649,16490,18159,12962,13653,3027,3866,60,42,281,365,11,10,149,223,13080,13834,3079,3960,166,183,314,419,21,22,16124,17755,12664,13320,2993,3833,47,31,273,357,11,9,136,205,12772,13487,3038,3921,141,162,303,403,18,20,366,404,298,333,34,33,13,11,8,8,0,1,13,18,308,347,41,39,25,21,11,16,3,2 +50,39,135,Ohio,Preble County,5,5,2151,1142,1009,1097,951,8,14,3,3,10,13,0,0,24,28,1120,978,23,30,11,13,12,17,0,1,1127,991,1086,938,6,13,2,2,10,13,0,0,23,25,1108,962,20,27,10,11,12,16,0,1,15,18,11,13,2,1,1,1,0,0,0,0,1,3,12,16,3,3,1,2,0,1,0,0 +50,39,149,Ohio,Shelby County,4,3,3327,1736,1591,1601,1450,37,37,2,6,7,12,0,0,89,86,1686,1535,113,107,8,15,18,21,4,2,1706,1554,1579,1423,35,37,2,3,5,12,0,0,85,79,1660,1501,107,103,7,11,16,20,4,1,30,37,22,27,2,0,0,3,2,0,0,0,4,7,26,34,6,4,1,4,2,1,0,1 +50,40,29,Oklahoma,Coal County,4,15,294,129,165,102,132,3,0,18,22,0,0,0,0,6,11,107,143,4,0,24,32,0,1,0,0,127,161,100,129,3,0,18,22,0,0,0,0,6,10,105,139,4,0,24,32,0,0,0,0,2,4,2,3,0,0,0,0,0,0,0,0,0,1,2,4,0,0,0,0,0,1,0,0 +50,40,51,Oklahoma,Grady County,2,5,3327,1724,1603,1335,1294,126,64,139,115,15,17,1,2,108,111,1437,1402,155,96,221,195,23,23,6,6,1564,1450,1215,1174,118,60,125,102,15,16,1,2,90,96,1299,1267,145,89,191,170,23,21,5,5,160,153,120,120,8,4,14,13,0,1,0,0,18,15,138,135,10,7,30,25,0,2,1,1 +50,40,61,Oklahoma,Haskell County,3,11,705,360,345,275,270,2,2,60,49,6,7,0,0,17,17,290,286,4,5,76,64,6,7,1,0,339,333,259,261,1,2,56,47,6,7,0,0,17,16,274,276,3,5,72,61,6,7,1,0,21,12,16,9,1,0,4,2,0,0,0,0,0,1,16,10,1,0,4,3,0,0,0,0 +50,40,67,Oklahoma,Jefferson County,3,8,294,152,142,130,126,4,1,14,11,0,1,0,0,4,3,134,129,4,2,17,13,0,1,1,0,134,123,118,113,4,1,8,5,0,1,0,0,4,3,122,116,4,2,11,7,0,1,1,0,18,19,12,13,0,0,6,6,0,0,0,0,0,0,12,13,0,0,6,6,0,0,0,0 +50,40,67,Oklahoma,Jefferson County,3,13,387,205,182,169,161,4,2,22,9,1,4,0,0,9,6,178,166,6,4,29,14,1,4,0,0,186,171,153,151,3,1,20,9,1,4,0,0,9,6,162,156,5,3,27,14,1,4,0,0,19,11,16,10,1,1,2,0,0,0,0,0,0,0,16,10,1,1,2,0,0,0,0,0 +50,40,93,Oklahoma,Major County,3,10,387,195,192,180,174,4,4,7,6,0,1,0,1,4,6,184,180,6,4,9,10,0,3,0,1,179,169,166,156,4,2,5,4,0,1,0,1,4,5,170,161,6,2,7,7,0,3,0,1,16,23,14,18,0,2,2,2,0,0,0,0,0,1,14,19,0,2,2,3,0,0,0,0 +50,40,111,Oklahoma,Okmulgee County,4,11,2151,1129,1022,807,752,79,73,165,144,10,11,0,0,68,42,868,788,90,79,225,181,12,15,2,1,1089,983,773,717,77,72,164,142,10,11,0,0,65,41,831,752,86,78,223,178,12,15,2,1,40,39,34,35,2,1,1,2,0,0,0,0,3,1,37,36,4,1,2,3,0,0,0,0 +50,40,133,Oklahoma,Seminole County,3,9,1482,703,779,466,540,43,21,134,180,3,4,2,3,55,31,514,566,50,28,180,208,8,6,6,4,664,735,449,504,41,21,119,174,3,4,2,3,50,29,492,529,46,27,163,200,8,6,5,4,39,44,17,36,2,0,15,6,0,0,0,0,5,2,22,37,4,1,17,8,0,0,1,0 +50,40,139,Oklahoma,Texas County,3,17,294,143,151,135,147,1,1,1,1,1,1,0,0,5,1,140,148,1,2,6,1,1,1,0,0,119,129,112,126,1,1,1,1,1,1,0,0,4,0,116,126,1,1,5,1,1,1,0,0,24,22,23,21,0,0,0,0,0,0,0,0,1,1,24,22,0,1,1,0,0,0,0,0 +50,40,141,Oklahoma,Tillman County,1,10,387,193,194,168,172,6,10,11,6,0,1,1,1,7,4,173,175,9,11,16,10,1,1,1,1,141,145,119,124,5,10,10,6,0,1,1,0,6,4,124,127,7,11,14,10,1,1,1,0,52,49,49,48,1,0,1,0,0,0,0,1,1,0,49,48,2,0,2,0,0,0,0,1 +50,40,149,Oklahoma,Washita County,3,4,705,383,322,334,283,11,7,17,12,1,3,0,0,20,17,352,299,18,14,27,21,6,6,0,0,330,274,291,251,9,2,13,8,1,3,0,0,16,10,305,261,14,7,21,11,6,5,0,0,53,48,43,32,2,5,4,4,0,0,0,0,4,7,47,38,4,7,6,10,0,1,0,0 +50,40,151,Oklahoma,Woods County,5,16,294,134,160,130,158,0,1,3,1,0,0,0,0,1,0,131,158,0,1,4,1,0,0,0,0,133,157,129,155,0,1,3,1,0,0,0,0,1,0,130,155,0,1,4,1,0,0,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 +50,41,9,Oregon,Columbia County,4,3,3327,1682,1645,1506,1439,16,19,25,30,12,24,7,6,116,127,1616,1555,51,55,65,73,60,72,15,19,1543,1461,1401,1296,13,13,13,18,11,19,6,5,99,110,1495,1397,43,46,43,50,57,63,12,17,139,184,105,143,3,6,12,12,1,5,1,1,17,17,121,158,8,9,22,23,3,9,3,2 +50,41,23,Oregon,Grant County,3,2,387,217,170,193,147,0,3,8,3,1,4,0,0,15,13,207,160,8,8,14,7,2,6,1,2,190,151,174,134,0,3,2,1,1,0,0,0,13,13,186,147,7,8,8,5,2,2,0,2,27,19,19,13,0,0,6,2,0,4,0,0,2,0,21,13,1,0,6,2,0,4,1,0 +50,41,57,Oregon,Tillamook County,5,10,1482,787,695,735,651,12,7,17,13,11,14,2,3,10,7,742,656,18,7,22,16,12,16,3,7,712,598,671,561,8,4,11,9,11,14,2,3,9,7,678,566,13,4,15,12,12,16,3,7,75,97,64,90,4,3,6,4,0,0,0,0,1,0,64,90,5,3,7,4,0,0,0,0 +50,41,59,Oregon,Umatilla County,4,17,1482,704,778,661,740,5,3,16,22,9,5,2,1,11,7,672,745,5,3,25,25,10,9,3,3,653,731,614,696,4,2,15,21,9,5,1,1,10,6,624,701,4,2,23,24,10,8,2,2,51,47,47,44,1,1,1,1,0,0,1,0,1,1,48,44,1,1,2,1,0,1,1,1 +50,41,63,Oregon,Wallowa County,3,4,387,196,191,173,183,2,1,4,3,1,0,2,1,14,3,184,186,9,4,9,3,6,0,2,1,182,182,165,174,2,1,2,3,1,0,2,1,10,3,172,177,7,4,5,3,6,0,2,1,14,9,8,9,0,0,2,0,0,0,0,0,4,0,12,9,2,0,4,0,0,0,0,0 +50,42,25,Pennsylvania,Carbon County,3,18,1482,520,962,502,942,1,7,3,3,4,4,0,0,10,6,511,948,2,8,10,7,6,4,1,1,516,955,499,939,0,6,3,1,4,4,0,0,10,5,508,944,1,6,10,5,6,4,1,1,4,7,3,3,1,1,0,2,0,0,0,0,0,1,3,4,1,2,0,2,0,0,0,0 +50,42,89,Pennsylvania,Monroe County,3,2,8455,4298,4157,2910,2752,933,886,34,55,112,149,18,18,291,297,3179,3023,1153,1105,88,111,178,210,25,31,3134,3059,2170,2059,656,654,7,7,83,124,2,3,216,212,2373,2255,814,809,36,35,140,175,6,10,1164,1098,740,693,277,232,27,48,29,25,16,15,75,85,806,768,339,296,52,76,38,35,19,21 +50,45,9,South Carolina,Bamberg County,3,6,705,381,324,151,120,217,193,4,1,1,8,0,0,8,2,159,122,220,195,9,1,1,8,0,0,374,319,144,118,217,190,4,1,1,8,0,0,8,2,152,120,220,192,9,1,1,8,0,0,7,5,7,2,0,3,0,0,0,0,0,0,0,0,7,2,0,3,0,0,0,0,0,0 +50,45,49,South Carolina,Hampton County,5,16,705,329,376,179,212,144,157,2,2,2,1,0,0,2,4,181,215,145,159,3,5,2,1,0,0,323,376,177,212,142,157,1,2,2,1,0,0,1,4,178,215,142,159,2,5,2,1,0,0,6,0,2,0,2,0,1,0,0,0,0,0,1,0,3,0,3,0,1,0,0,0,0,0 +50,45,57,South Carolina,Lancaster County,4,11,6809,3414,3395,2643,2516,694,764,20,15,49,66,0,3,8,31,2651,2542,698,777,22,29,50,73,1,5,3181,3162,2430,2310,687,750,13,12,46,65,0,3,5,22,2435,2328,689,759,15,22,46,70,1,5,233,233,213,206,7,14,7,3,3,1,0,0,3,9,216,214,9,18,7,7,4,3,0,0 +50,45,73,South Carolina,Oconee County,3,17,2151,981,1170,927,1091,40,65,4,3,5,5,0,0,5,6,932,1097,40,66,8,7,6,6,0,0,961,1155,907,1077,40,64,4,3,5,5,0,0,5,6,912,1083,40,65,8,7,6,6,0,0,20,15,20,14,0,1,0,0,0,0,0,0,0,0,20,14,0,1,0,0,0,0,0,0 +50,46,19,South Dakota,Butte County,1,14,705,361,344,349,332,2,0,4,8,1,0,0,0,5,4,354,336,2,1,9,11,1,0,0,0,358,338,346,327,2,0,4,8,1,0,0,0,5,3,351,330,2,0,9,11,1,0,0,0,3,6,3,5,0,0,0,0,0,0,0,0,0,1,3,6,0,1,0,0,0,0,0,0 +50,46,19,South Dakota,Butte County,2,1,705,372,333,332,295,4,0,11,19,1,3,0,0,24,16,355,309,8,5,28,33,5,5,1,0,351,308,320,282,4,0,6,10,1,3,0,0,20,13,339,295,7,3,20,21,5,5,1,0,21,25,12,13,0,0,5,9,0,0,0,0,4,3,16,14,1,2,8,12,0,0,0,0 +50,46,39,South Dakota,Deuel County,4,2,294,154,140,150,128,0,1,2,7,0,1,0,0,2,3,151,131,1,2,3,9,1,1,0,0,145,132,142,125,0,0,1,3,0,1,0,0,2,3,143,128,1,1,2,5,1,1,0,0,9,8,8,3,0,1,1,4,0,0,0,0,0,0,8,3,0,1,1,4,0,0,0,0 +50,46,45,South Dakota,Edmunds County,3,14,294,149,145,147,143,0,0,2,2,0,0,0,0,0,0,147,143,0,0,2,2,0,0,0,0,148,145,146,143,0,0,2,2,0,0,0,0,0,0,146,143,0,0,2,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0 +50,46,49,South Dakota,Faulk County,5,0,2151,1085,1066,1062,1036,6,4,7,12,4,7,0,0,6,7,1067,1042,7,9,11,15,5,7,1,0,1056,1032,1035,1012,6,3,7,3,2,7,0,0,6,7,1040,1018,7,8,11,6,3,7,1,0,29,34,27,24,0,1,0,9,2,0,0,0,0,0,27,24,0,1,0,9,2,0,0,0 +50,46,53,South Dakota,Gregory County,2,3,294,146,148,122,113,1,0,15,21,0,3,1,1,7,10,129,122,4,2,18,28,1,4,1,2,142,141,120,112,1,0,14,17,0,3,0,0,7,9,127,120,4,2,17,23,1,4,0,1,4,7,2,1,0,0,1,4,0,0,1,1,0,1,2,2,0,0,1,5,0,0,1,1 +50,46,85,South Dakota,Lyman County,3,13,294,156,138,111,111,1,0,39,27,1,0,2,0,2,0,113,111,1,0,41,27,1,0,2,0,156,138,111,111,1,0,39,27,1,0,2,0,2,0,113,111,1,0,41,27,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,46,119,South Dakota,Sully County,4,0,1482,782,700,717,658,22,3,30,25,2,0,0,0,11,14,728,672,26,7,38,33,2,2,0,1,757,682,699,648,22,3,28,19,1,0,0,0,7,12,706,660,24,7,34,25,1,2,0,0,25,18,18,10,0,0,2,6,1,0,0,0,4,2,22,12,2,0,4,8,1,0,0,1 +50,46,123,South Dakota,Tripp County,2,1,387,199,188,127,125,0,3,67,53,0,0,0,0,5,7,132,132,1,7,70,56,1,0,0,0,187,181,125,125,0,3,58,46,0,0,0,0,4,7,129,132,1,7,60,49,1,0,0,0,12,7,2,0,0,0,9,7,0,0,0,0,1,0,3,0,0,0,10,7,0,0,0,0 +50,46,123,South Dakota,Tripp County,5,11,294,161,133,128,111,2,1,24,20,5,1,0,0,2,0,130,111,3,1,25,20,6,1,0,0,156,132,125,110,2,1,22,20,5,1,0,0,2,0,127,110,3,1,23,20,6,1,0,0,5,1,3,1,0,0,2,0,0,0,0,0,0,0,3,1,0,0,2,0,0,0,0,0 +50,46,129,South Dakota,Walworth County,2,13,387,202,185,193,164,0,0,8,17,0,1,0,0,1,3,194,166,0,0,9,20,0,1,0,1,201,184,192,163,0,0,8,17,0,1,0,0,1,3,193,165,0,0,9,20,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 +50,47,27,Tennessee,Clay County,1,8,387,200,187,190,181,7,2,1,2,0,0,0,0,2,2,192,183,9,3,1,3,0,0,0,0,197,182,188,178,6,1,1,1,0,0,0,0,2,2,190,180,8,2,1,2,0,0,0,0,3,5,2,3,1,1,0,1,0,0,0,0,0,0,2,3,1,1,0,1,0,0,0,0 +50,47,39,Tennessee,Decatur County,3,3,705,369,336,352,314,7,5,1,4,5,3,0,0,4,10,355,324,11,13,1,7,6,4,0,0,344,310,327,293,7,4,1,2,5,1,0,0,4,10,330,303,11,12,1,5,6,2,0,0,25,26,25,21,0,1,0,2,0,2,0,0,0,0,25,21,0,1,0,2,0,2,0,0 +50,47,67,Tennessee,Hancock County,5,8,387,176,211,170,207,2,1,0,1,0,1,0,0,4,1,172,208,3,2,3,1,1,1,1,0,173,209,169,205,2,1,0,1,0,1,0,0,2,1,170,206,3,2,2,1,0,1,0,0,3,2,1,2,0,0,0,0,0,0,0,0,2,0,2,2,0,0,1,0,1,0,1,0 +50,47,69,Tennessee,Hardeman County,2,3,1482,738,744,383,345,324,359,2,5,11,6,1,0,17,29,399,372,336,381,6,11,12,9,2,0,713,726,364,331,319,358,2,5,11,6,1,0,16,26,379,355,331,378,5,10,12,9,2,0,25,18,19,14,5,1,0,0,0,0,0,0,1,3,20,17,5,3,1,1,0,0,0,0 +50,47,81,Tennessee,Hickman County,4,2,1482,767,715,717,644,18,13,5,6,2,7,0,3,25,42,740,684,35,44,10,18,5,11,2,5,714,686,672,623,18,12,2,6,2,5,0,0,20,40,690,661,32,42,5,16,5,9,2,2,53,29,45,21,0,1,3,0,0,2,0,3,5,2,50,23,3,2,5,2,0,2,0,3 +50,47,93,Tennessee,Knox County,3,6,34649,17202,17447,14366,14579,1687,1765,95,125,568,472,14,16,472,490,14810,15045,1927,2015,236,266,712,622,26,41,16021,16252,13333,13581,1632,1696,61,63,556,460,9,11,430,441,13742,14003,1849,1925,182,180,691,597,20,33,1181,1195,1033,998,55,69,34,62,12,12,5,5,42,49,1068,1042,78,90,54,86,21,25,6,8 +50,47,101,Tennessee,Lewis County,4,17,294,121,173,114,168,3,2,0,1,0,1,0,1,4,0,118,168,3,2,2,1,2,1,0,1,119,170,112,165,3,2,0,1,0,1,0,1,4,0,116,165,3,2,2,1,2,1,0,1,2,3,2,3,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0 +50,47,109,Tennessee,McNairy County,1,15,1482,712,770,681,721,23,36,2,3,0,2,0,0,6,8,686,729,26,37,6,11,0,2,0,0,706,766,676,717,22,36,2,3,0,2,0,0,6,8,681,725,25,37,6,11,0,2,0,0,6,4,5,4,1,0,0,0,0,0,0,0,0,0,5,4,1,0,0,0,0,0,0,0 +50,47,111,Tennessee,Macon County,4,14,1482,719,763,702,738,3,9,2,2,3,3,1,0,8,11,710,749,3,10,10,12,3,3,1,0,697,739,681,716,3,9,1,1,3,3,1,0,8,10,689,726,3,10,9,10,3,3,1,0,22,24,21,22,0,0,1,1,0,0,0,0,0,1,21,23,0,0,1,2,0,0,0,0 +50,47,127,Tennessee,Moore County,2,9,387,201,186,187,176,10,5,0,0,2,4,0,0,2,1,189,177,11,5,0,0,3,5,0,0,199,180,185,173,10,4,0,0,2,2,0,0,2,1,187,174,11,4,0,0,3,3,0,0,2,6,2,3,0,1,0,0,0,2,0,0,0,0,2,3,0,1,0,0,0,2,0,0 +50,47,155,Tennessee,Sevier County,3,11,6809,3387,3422,3210,3258,50,54,39,15,53,70,4,2,31,23,3240,3278,55,59,61,31,57,75,5,2,3191,3282,3048,3131,34,48,33,14,47,69,2,2,27,18,3074,3147,38,51,52,28,51,72,3,2,196,140,162,127,16,6,6,1,6,1,2,0,4,5,166,131,17,8,9,3,6,3,2,0 +50,47,173,Tennessee,Union County,2,16,705,324,381,311,374,0,0,8,2,0,0,0,0,5,5,316,379,0,1,13,6,0,0,0,0,322,377,309,370,0,0,8,2,0,0,0,0,5,5,314,375,0,1,13,6,0,0,0,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 +50,48,47,Texas,Brooks County,4,15,294,124,170,121,166,0,1,2,1,0,0,1,1,0,1,121,167,0,1,2,2,0,0,1,1,12,19,12,18,0,0,0,1,0,0,0,0,0,0,12,18,0,0,0,1,0,0,0,0,112,151,109,148,0,1,2,0,0,0,1,1,0,1,109,149,0,1,2,1,0,0,1,1 +50,48,55,Texas,Caldwell County,4,7,3327,1717,1610,1539,1411,110,121,32,30,11,19,6,2,19,27,1558,1435,117,136,41,41,13,21,7,4,702,665,580,521,99,105,3,2,8,14,2,2,10,21,590,539,103,117,7,10,10,16,2,4,1015,945,959,890,11,16,29,28,3,5,4,0,9,6,968,896,14,19,34,31,3,5,5,0 +50,48,65,Texas,Carson County,2,6,294,150,144,132,139,3,1,4,1,0,2,1,0,10,1,140,140,6,1,6,1,5,3,3,0,126,131,110,127,3,1,3,1,0,1,0,0,10,1,118,128,6,1,5,1,5,2,2,0,24,13,22,12,0,0,1,0,0,1,1,0,0,0,22,12,0,0,1,0,0,1,1,0 +50,48,65,Texas,Carson County,2,15,294,128,166,119,161,0,0,7,3,2,1,0,0,0,1,119,162,0,0,7,4,2,1,0,0,122,158,113,153,0,0,7,3,2,1,0,0,0,1,113,154,0,0,7,4,2,1,0,0,6,8,6,8,0,0,0,0,0,0,0,0,0,0,6,8,0,0,0,0,0,0,0,0 +50,48,83,Texas,Coleman County,4,7,387,168,219,150,188,10,11,2,4,1,10,0,0,5,6,155,194,14,13,3,8,1,10,0,0,141,177,128,155,8,10,1,0,1,10,0,0,3,2,131,157,10,11,2,1,1,10,0,0,27,42,22,33,2,1,1,4,0,0,0,0,2,4,24,37,4,2,1,7,0,0,0,0 +50,48,91,Texas,Comal County,2,15,8455,4132,4323,3972,4112,74,71,29,23,28,70,1,5,28,42,4000,4153,80,74,48,58,32,75,1,6,3628,3679,3493,3498,69,67,21,13,27,68,1,1,17,32,3510,3529,71,69,33,39,30,73,1,2,504,644,479,614,5,4,8,10,1,2,0,4,11,10,490,624,9,5,15,19,2,2,0,4 +50,48,203,Texas,Harrison County,2,15,3327,1584,1743,1235,1328,310,378,17,12,3,12,1,1,18,12,1249,1340,312,381,34,21,4,12,3,1,1541,1682,1198,1272,309,377,14,10,2,11,1,1,17,11,1211,1283,311,380,30,18,3,11,3,1,43,61,37,56,1,1,3,2,1,1,0,0,1,1,38,57,1,1,4,3,1,1,0,0 +50,48,205,Texas,Hartley County,4,9,387,264,123,209,119,45,2,3,1,6,1,0,0,1,0,210,119,46,2,3,1,6,1,0,0,168,85,116,81,45,2,0,1,6,1,0,0,1,0,117,81,46,2,0,1,6,1,0,0,96,38,93,38,0,0,3,0,0,0,0,0,0,0,93,38,0,0,3,0,0,0,0,0 +50,48,219,Texas,Hockley County,4,17,387,157,230,141,223,9,2,5,2,1,0,0,1,1,2,142,225,9,2,6,3,1,1,0,1,121,179,109,174,9,2,2,1,0,0,0,0,1,2,110,176,9,2,3,2,0,1,0,0,36,51,32,49,0,0,3,1,1,0,0,1,0,0,32,49,0,0,3,1,1,0,0,1 +50,48,233,Texas,Hutchinson County,4,4,1482,734,748,671,646,22,41,15,15,3,11,0,1,23,34,691,679,32,59,26,28,4,15,4,1,472,491,430,421,9,32,13,5,2,8,0,0,18,25,445,445,19,47,20,13,3,11,3,0,262,257,241,225,13,9,2,10,1,3,0,1,5,9,246,234,13,12,6,15,1,4,1,1 +50,48,255,Texas,Karnes County,2,17,294,125,169,122,163,2,4,1,2,0,0,0,0,0,0,122,163,2,4,1,2,0,0,0,0,79,113,77,109,2,3,0,1,0,0,0,0,0,0,77,109,2,3,0,1,0,0,0,0,46,56,45,54,0,1,1,1,0,0,0,0,0,0,45,54,0,1,1,1,0,0,0,0 +50,48,261,Texas,Kenedy County,4,17,9,4,5,4,5,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,4,5,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0 +50,48,261,Texas,Kenedy County,5,15,9,7,2,7,2,0,0,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,5,2,5,2,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0 +50,48,269,Texas,King County,1,18,9,3,6,3,6,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,3,6,3,6,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,48,269,Texas,King County,3,5,9,5,4,2,4,2,0,0,0,0,0,1,0,0,0,2,4,2,0,0,0,0,0,1,0,5,4,2,4,2,0,0,0,0,0,1,0,0,0,2,4,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,48,269,Texas,King County,3,15,9,7,2,7,2,0,0,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0,7,2,7,2,0,0,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,48,269,Texas,King County,4,18,9,3,6,3,6,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,3,6,3,6,0,0,0,0,0,0,0,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,48,269,Texas,King County,5,4,9,4,5,4,5,0,0,0,0,0,0,0,0,0,0,4,5,0,0,0,0,0,0,0,0,4,4,4,4,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +50,48,269,Texas,King County,5,11,9,6,3,6,3,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,0,0,0,6,2,6,2,0,0,0,0,0,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +50,48,301,Texas,Loving County,1,3,9,4,5,3,4,1,1,0,0,0,0,0,0,0,0,3,4,1,1,0,0,0,0,0,0,4,5,3,4,1,1,0,0,0,0,0,0,0,0,3,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,48,301,Texas,Loving County,2,3,9,4,5,3,4,1,1,0,0,0,0,0,0,0,0,3,4,1,1,0,0,0,0,0,0,4,5,3,4,1,1,0,0,0,0,0,0,0,0,3,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +50,48,303,Texas,Lubbock County,2,15,10241,4683,5558,4253,5026,264,339,50,37,68,112,2,6,46,38,4295,5056,271,345,86,67,76,120,5,9,3674,4401,3300,3905,252,328,27,24,63,107,0,4,32,33,3329,3931,258,333,52,50,69,114,2,7,1009,1157,953,1121,12,11,23,13,5,5,2,2,14,5,966,1125,13,12,34,17,7,6,3,2 +50,48,317,Texas,Martin County,3,1,387,218,169,192,155,11,8,2,2,1,0,0,0,12,4,203,158,18,12,8,2,2,1,0,0,103,84,88,75,8,6,1,0,1,0,0,0,5,3,92,78,12,9,4,0,1,0,0,0,115,85,104,80,3,2,1,2,0,0,0,0,7,1,111,80,6,3,4,2,1,1,0,0 +50,48,343,Texas,Morris County,4,9,705,341,364,257,269,70,85,7,6,2,2,0,0,5,2,262,271,72,87,10,6,2,2,0,0,302,323,224,230,70,84,2,5,2,2,0,0,4,2,228,232,72,86,4,5,2,2,0,0,39,41,33,39,0,1,5,1,0,0,0,0,1,0,34,39,0,1,6,1,0,0,0,0 +50,48,377,Texas,Presidio County,1,11,294,145,149,134,141,2,1,4,4,2,1,0,0,3,2,137,143,5,2,4,5,2,1,0,0,27,21,21,17,1,1,1,1,2,1,0,0,2,1,23,18,3,2,1,1,2,1,0,0,118,128,113,124,1,0,3,3,0,0,0,0,1,1,114,125,2,0,3,4,0,0,0,0 +50,48,377,Texas,Presidio County,3,10,294,145,149,127,135,2,1,7,3,4,8,0,0,5,2,132,137,3,1,11,4,4,9,0,0,35,31,28,21,1,1,2,1,3,7,0,0,1,1,29,22,1,1,3,1,3,8,0,0,110,118,99,114,1,0,5,2,1,1,0,0,4,1,103,115,2,0,8,3,1,1,0,0 +50,48,377,Texas,Presidio County,4,10,294,144,150,122,139,3,0,6,3,7,5,0,0,6,3,128,142,4,2,10,4,8,5,0,0,39,28,30,21,2,0,1,1,5,4,0,0,1,2,31,23,2,1,2,2,5,4,0,0,105,122,92,118,1,0,5,2,2,1,0,0,5,1,97,119,2,1,8,2,3,1,0,0 +50,48,377,Texas,Presidio County,4,12,294,142,152,137,148,0,1,1,2,1,0,0,0,3,1,139,149,1,1,1,2,3,0,1,1,18,28,17,26,0,1,0,0,1,0,0,0,0,1,17,27,0,1,0,0,1,0,0,1,124,124,120,122,0,0,1,2,0,0,0,0,3,0,122,122,1,0,1,2,2,0,1,0 +50,48,379,Texas,Rains County,5,17,387,185,202,176,195,3,5,1,0,1,0,0,0,4,2,180,197,3,7,5,1,1,0,0,0,179,183,170,176,3,5,1,0,1,0,0,0,4,2,174,178,3,7,5,1,1,0,0,0,6,19,6,19,0,0,0,0,0,0,0,0,0,0,6,19,0,0,0,0,0,0,0,0 +50,48,405,Texas,San Augustine County,1,7,387,201,186,141,131,51,47,5,2,2,0,0,0,2,6,143,137,51,49,6,6,3,1,0,1,171,173,114,121,51,47,3,0,2,0,0,0,1,5,115,126,51,49,3,3,3,1,0,1,30,13,27,10,0,0,2,2,0,0,0,0,1,1,28,11,0,0,3,3,0,0,0,0 +50,48,411,Texas,San Saba County,1,8,294,170,124,156,117,9,1,4,1,0,1,0,0,1,4,157,121,9,2,4,3,1,2,0,0,90,83,80,77,9,1,1,0,0,1,0,0,0,4,80,81,9,2,1,2,0,2,0,0,80,41,76,40,0,0,3,1,0,0,0,0,1,0,77,40,0,0,3,1,1,0,0,0 +50,48,455,Texas,Trinity County,3,8,705,320,385,286,337,30,37,0,5,1,2,0,1,3,3,289,340,32,38,1,7,1,2,0,1,271,348,240,303,29,35,0,5,0,2,0,0,2,3,242,306,31,36,0,7,0,2,0,0,49,37,46,34,1,2,0,0,1,0,0,1,1,0,47,34,1,2,1,0,1,0,0,1 +50,48,471,Texas,Walker County,3,3,3327,1759,1568,1284,1135,372,331,22,11,17,20,4,2,60,69,1338,1198,410,368,31,30,31,38,9,5,1227,1054,789,678,359,307,12,1,15,19,4,0,48,49,832,724,389,337,20,10,27,33,7,1,532,514,495,457,13,24,10,10,2,1,0,2,12,20,506,474,21,31,11,20,4,5,2,4 +50,48,483,Texas,Wheeler County,5,3,387,228,159,207,134,8,7,7,4,1,6,0,0,5,8,211,142,11,12,9,6,2,7,0,0,130,107,118,91,5,5,4,0,0,5,0,0,3,6,121,97,7,9,5,1,0,6,0,0,98,52,89,43,3,2,3,4,1,1,0,0,2,2,90,45,4,3,4,5,2,1,0,0 +50,48,487,Texas,Wilbarger County,4,17,294,132,162,127,143,2,12,2,3,1,3,0,0,0,1,127,144,2,12,2,4,1,3,0,0,116,147,112,130,2,12,1,1,1,3,0,0,0,1,112,131,2,12,1,2,1,3,0,0,16,15,15,13,0,0,1,2,0,0,0,0,0,0,15,13,0,0,1,2,0,0,0,0 +50,48,495,Texas,Winkler County,5,14,294,145,149,131,139,8,8,4,1,0,1,0,0,2,0,133,139,10,8,4,1,0,1,0,0,74,76,66,68,6,7,0,0,0,1,0,0,2,0,68,68,8,7,0,0,0,1,0,0,71,73,65,71,2,1,4,1,0,0,0,0,0,0,65,71,2,1,4,1,0,0,0,0 +50,49,1,Utah,Beaver County,3,10,387,205,182,192,171,6,1,2,3,4,2,0,2,1,3,193,174,6,1,3,6,4,2,0,2,178,162,167,155,5,0,1,2,4,2,0,2,1,1,168,156,5,0,2,3,4,2,0,2,27,20,25,16,1,1,1,1,0,0,0,0,0,2,25,18,1,1,1,3,0,0,0,0 +50,49,19,Utah,Grand County,4,14,705,353,352,331,335,7,1,7,9,2,6,0,0,6,1,337,336,8,1,12,10,2,6,0,0,328,336,310,321,6,0,5,8,2,6,0,0,5,1,315,322,7,0,9,9,2,6,0,0,25,16,21,14,1,1,2,1,0,0,0,0,1,0,22,14,1,1,3,1,0,0,0,0 +50,49,29,Utah,Morgan County,1,3,1482,784,698,753,674,3,7,7,1,3,4,1,0,17,12,769,685,11,12,9,5,8,5,4,3,766,674,736,660,3,3,7,1,3,3,1,0,16,7,751,667,11,5,8,4,8,3,4,2,18,24,17,14,0,4,0,0,0,1,0,0,1,5,18,18,0,7,1,1,0,2,0,1 +50,49,37,Utah,San Juan County,1,14,705,351,354,205,184,2,3,137,161,1,3,1,0,5,3,210,187,2,3,141,164,2,3,1,0,344,347,199,180,2,1,136,160,1,3,1,0,5,3,204,183,2,1,140,163,2,3,1,0,7,7,6,4,0,2,1,1,0,0,0,0,0,0,6,4,0,2,1,1,0,0,0,0 +50,50,7,Vermont,Chittenden County,1,11,10241,5084,5157,4656,4770,109,106,17,16,231,205,3,2,68,58,4718,4825,122,121,68,50,250,220,7,6,4998,5071,4586,4696,106,100,12,13,230,205,2,1,62,56,4644,4749,116,114,57,46,247,220,6,5,86,86,70,74,3,6,5,3,1,0,1,1,6,2,74,76,6,7,11,4,3,0,1,1 +50,50,9,Vermont,Essex County,1,2,294,150,144,141,138,1,0,0,0,3,2,0,0,5,4,146,142,2,2,3,2,5,3,0,0,147,140,138,135,1,0,0,0,3,2,0,0,5,3,143,138,2,1,3,1,5,3,0,0,3,4,3,3,0,0,0,0,0,0,0,0,0,1,3,4,0,1,0,1,0,0,0,0 +50,50,9,Vermont,Essex County,2,2,294,151,143,142,136,1,0,0,0,3,3,0,0,5,4,147,139,2,3,2,1,5,5,0,1,148,139,139,133,1,0,0,0,3,3,0,0,5,3,144,136,2,2,2,1,5,4,0,0,3,4,3,3,0,0,0,0,0,0,0,0,0,1,3,3,0,1,0,0,0,1,0,1 +50,51,11,Virginia,Appomattox County,1,17,387,174,213,150,180,21,29,1,0,0,1,0,0,2,3,152,183,21,30,1,2,2,1,0,0,172,211,148,178,21,29,1,0,0,1,0,0,2,3,150,181,21,30,1,2,2,1,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0 +50,51,21,Virginia,Bland County,1,4,294,158,136,150,129,2,3,1,1,1,0,0,0,4,3,154,132,5,5,2,1,1,1,0,0,157,133,149,126,2,3,1,1,1,0,0,0,4,3,153,129,5,5,2,1,1,1,0,0,1,3,1,3,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0 +50,51,31,Virginia,Campbell County,3,16,2151,949,1202,820,1035,116,143,3,7,6,7,1,1,3,9,822,1040,118,149,5,15,6,8,1,1,943,1191,815,1027,116,143,3,5,6,6,1,1,2,9,816,1032,117,149,5,13,6,7,1,1,6,11,5,8,0,0,0,2,0,1,0,0,1,0,6,8,1,0,0,2,0,1,0,0 +50,51,33,Virginia,Caroline County,3,12,2151,1079,1072,740,733,319,301,8,8,2,9,0,0,10,21,749,747,324,310,12,17,4,16,0,3,1043,1034,711,701,314,300,7,7,2,8,0,0,9,18,719,713,319,308,10,15,4,14,0,2,36,38,29,32,5,1,1,1,0,1,0,0,1,3,30,34,5,2,2,2,0,2,0,1 +50,51,36,Virginia,Charles City County,2,10,387,194,193,101,74,71,86,14,18,2,6,0,1,6,8,106,80,74,92,18,19,2,9,0,1,189,191,98,74,71,86,12,17,2,6,0,1,6,7,103,79,74,92,16,18,2,8,0,1,5,2,3,0,0,0,2,1,0,0,0,0,0,1,3,1,0,0,2,1,0,1,0,0 +50,51,36,Virginia,Charles City County,4,5,294,159,135,59,58,82,60,7,12,1,0,0,1,10,4,68,62,89,63,10,13,2,0,0,1,157,129,58,55,81,58,7,12,1,0,0,1,10,3,67,58,88,60,10,13,2,0,0,1,2,6,1,3,1,2,0,0,0,0,0,0,0,1,1,4,1,3,0,0,0,0,0,0 +50,51,97,Virginia,King and Queen County,4,9,387,195,192,132,130,54,54,4,3,0,1,0,0,5,4,137,133,57,56,5,4,1,3,0,0,185,181,124,121,54,54,4,2,0,1,0,0,3,3,127,123,57,55,4,3,0,3,0,0,10,11,8,9,0,0,0,1,0,0,0,0,2,1,10,10,0,1,1,1,1,0,0,0 +50,51,99,Virginia,King George County,1,17,387,182,205,144,170,32,28,1,1,4,5,0,0,1,1,144,171,33,28,2,2,4,5,0,0,180,201,142,166,32,28,1,1,4,5,0,0,1,1,142,167,33,28,2,2,4,5,0,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0 +50,51,125,Virginia,Nelson County,3,1,705,367,338,292,266,41,48,0,1,4,4,0,0,30,19,320,283,65,61,3,3,10,9,0,1,337,292,269,233,38,38,0,1,4,3,0,0,26,17,293,248,59,51,2,2,9,8,0,0,30,46,23,33,3,10,0,0,0,1,0,0,4,2,27,35,6,10,1,1,1,1,0,1 +50,51,125,Virginia,Nelson County,5,3,705,370,335,291,279,45,35,3,0,5,3,1,0,25,18,315,294,64,51,6,3,10,5,2,0,334,308,264,254,40,35,1,0,5,2,0,0,24,17,287,268,58,50,4,3,10,4,1,0,36,27,27,25,5,0,2,0,0,1,1,0,1,1,28,26,6,1,2,0,0,1,1,0 +50,51,131,Virginia,Northampton County,2,17,387,168,219,131,151,34,65,0,1,1,2,0,0,2,0,133,151,34,65,0,1,3,2,0,0,164,217,127,149,34,65,0,1,1,2,0,0,2,0,129,149,34,65,0,1,3,2,0,0,4,2,4,2,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0 +50,51,155,Virginia,Pulaski County,3,10,2151,1128,1023,1038,966,70,42,2,1,9,5,0,0,9,9,1046,973,76,47,5,6,10,6,0,0,1109,1002,1020,948,70,41,2,1,9,5,0,0,8,7,1027,954,75,45,5,4,10,6,0,0,19,21,18,18,0,1,0,0,0,0,0,0,1,2,19,19,1,2,0,2,0,0,0,0 +50,51,157,Virginia,Rappahannock County,4,8,387,187,200,171,192,10,4,0,0,0,1,0,0,6,3,176,195,12,5,3,1,2,1,0,1,177,185,164,179,9,3,0,0,0,1,0,0,4,2,168,181,10,3,2,1,1,1,0,1,10,15,7,13,1,1,0,0,0,0,0,0,2,1,8,14,2,2,1,0,1,0,0,0 +50,51,181,Virginia,Surry County,5,7,387,214,173,121,100,84,64,2,1,2,2,0,0,5,6,126,104,85,67,4,2,4,5,0,1,202,168,116,98,80,63,1,1,2,2,0,0,3,4,119,100,81,65,2,1,3,5,0,1,12,5,5,2,4,1,1,0,0,0,0,0,2,2,7,4,4,2,2,1,1,0,0,0 +50,51,530,Virginia,Buena Vista city,2,3,387,211,176,187,162,14,5,3,1,1,1,1,1,5,6,192,168,16,9,4,2,2,2,2,1,199,171,175,157,14,5,3,1,1,1,1,1,5,6,180,163,16,9,4,2,2,2,2,1,12,5,12,5,0,0,0,0,0,0,0,0,0,0,12,5,0,0,0,0,0,0,0,0 +50,51,530,Virginia,Buena Vista city,4,7,387,186,201,162,184,12,3,2,4,3,2,1,3,6,5,166,187,16,6,3,5,5,5,2,3,179,198,156,181,12,3,1,4,3,2,1,3,6,5,160,184,16,6,2,5,5,5,2,3,7,3,6,3,0,0,1,0,0,0,0,0,0,0,6,3,0,0,1,0,0,0,0,0 +50,51,580,Virginia,Covington city,4,3,387,209,178,173,146,21,17,0,1,0,1,1,0,14,13,186,159,32,26,0,5,3,1,2,0,190,164,162,134,15,17,0,1,0,1,0,0,13,11,174,145,25,24,0,5,3,1,1,0,19,14,11,12,6,0,0,0,0,0,1,0,1,2,12,14,7,2,0,0,0,0,1,0 +50,51,580,Virginia,Covington city,4,12,387,175,212,151,181,19,26,0,1,1,0,0,0,4,4,155,184,20,28,1,3,2,1,1,0,171,207,148,177,18,25,0,1,1,0,0,0,4,4,152,180,19,27,1,3,2,1,1,0,4,5,3,4,1,1,0,0,0,0,0,0,0,0,3,4,1,1,0,0,0,0,0,0 +50,51,678,Virginia,Lexington city,2,14,294,136,158,119,137,14,17,0,2,1,1,0,0,2,1,121,138,15,17,1,2,1,2,0,0,131,156,114,135,14,17,0,2,1,1,0,0,2,1,116,136,15,17,1,2,1,2,0,0,5,2,5,2,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0,0,0,0,0 +50,51,678,Virginia,Lexington city,4,13,294,130,164,115,143,12,15,2,1,1,3,0,0,0,2,115,145,12,16,2,2,1,3,0,0,126,159,113,138,10,15,2,1,1,3,0,0,0,2,113,140,10,16,2,2,1,3,0,0,4,5,2,5,2,0,0,0,0,0,0,0,0,0,2,5,2,0,0,0,0,0,0,0 +50,53,19,Washington,Ferry County,5,8,387,187,200,133,149,3,2,40,39,3,1,0,0,8,9,141,157,5,6,43,45,3,1,3,0,173,196,124,146,3,2,37,38,3,1,0,0,6,9,130,154,5,6,39,44,3,1,2,0,14,4,9,3,0,0,3,1,0,0,0,0,2,0,11,3,0,0,4,1,0,0,1,0 +50,53,31,Washington,Jefferson County,4,15,4035,1938,2097,1856,1981,10,8,21,28,16,45,1,4,34,31,1889,2010,12,11,50,52,18,50,4,5,1910,2062,1833,1952,10,8,19,25,16,45,1,3,31,29,1863,1979,11,11,45,48,18,49,4,4,28,35,23,29,0,0,2,3,0,0,0,1,3,2,26,31,1,0,5,4,0,1,0,1 +50,53,71,Washington,Walla Walla County,1,10,3327,1756,1571,1604,1447,75,11,32,22,16,45,6,8,23,38,1622,1480,78,19,41,40,28,61,12,10,1324,1176,1204,1070,65,6,15,17,15,40,5,8,20,35,1219,1100,67,13,23,34,26,55,11,10,432,395,400,377,10,5,17,5,1,5,1,0,3,3,403,380,11,6,18,6,2,6,1,0 +50,54,9,West Virginia,Brooke County,1,11,1482,749,733,728,720,13,6,2,0,1,4,0,0,5,3,733,723,14,8,4,0,3,5,0,0,744,721,724,710,12,5,2,0,1,4,0,0,5,2,729,712,13,6,4,0,3,5,0,0,5,12,4,10,1,1,0,0,0,0,0,0,0,1,4,11,1,2,0,0,0,0,0,0 +50,54,15,West Virginia,Clay County,3,16,294,153,141,146,140,2,1,1,0,0,0,0,0,4,0,150,140,2,1,4,0,1,0,0,0,150,140,144,139,2,1,1,0,0,0,0,0,3,0,147,139,2,1,3,0,1,0,0,0,3,1,2,1,0,0,0,0,0,0,0,0,1,0,3,1,0,0,1,0,0,0,0,0 +50,54,23,West Virginia,Grant County,1,18,294,119,175,116,172,3,1,0,0,0,0,0,0,0,2,116,174,3,1,0,2,0,0,0,0,119,174,116,171,3,1,0,0,0,0,0,0,0,2,116,173,3,1,0,2,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 +50,54,39,West Virginia,Kanawha County,5,14,12386,5783,6603,5282,6050,401,426,16,14,34,61,0,2,50,50,5330,6096,407,434,54,53,41,70,2,3,5751,6560,5254,6010,400,425,14,14,34,60,0,2,49,49,5301,6055,406,433,52,52,41,68,1,3,32,43,28,40,1,1,2,0,0,1,0,0,1,1,29,41,1,1,2,1,0,2,1,0 +50,54,41,West Virginia,Lewis County,4,16,705,326,379,321,372,1,0,1,0,0,5,0,0,3,2,324,373,1,1,4,2,1,5,0,0,326,377,321,370,1,0,1,0,0,5,0,0,3,2,324,371,1,1,4,2,1,5,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0 +50,54,51,West Virginia,Marshall County,3,12,2151,1066,1085,1041,1059,6,3,5,6,3,7,0,0,11,10,1051,1068,8,5,13,15,6,7,0,0,1060,1079,1037,1053,6,3,3,6,3,7,0,0,11,10,1047,1062,8,5,11,15,6,7,0,0,6,6,4,6,0,0,2,0,0,0,0,0,0,0,4,6,0,0,2,0,0,0,0,0 +50,54,51,West Virginia,Marshall County,3,18,705,246,459,238,453,2,2,0,0,3,0,0,0,3,4,240,457,3,3,3,4,3,0,0,0,243,444,235,438,2,2,0,0,3,0,0,0,3,4,237,442,3,3,3,4,3,0,0,0,3,15,3,15,0,0,0,0,0,0,0,0,0,0,3,15,0,0,0,0,0,0,0,0 +50,54,71,West Virginia,Pendleton County,2,1,294,165,129,152,123,4,2,2,0,1,0,0,0,6,4,158,127,9,4,3,1,1,1,0,0,162,129,151,123,4,2,0,0,1,0,0,0,6,4,157,127,9,4,1,1,1,1,0,0,3,0,1,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0 +50,54,73,West Virginia,Pleasants County,3,1,387,202,185,192,173,0,1,1,0,0,0,0,0,9,11,200,183,6,7,5,2,3,2,0,2,199,179,190,168,0,1,0,0,0,0,0,0,9,10,198,177,6,6,4,2,3,2,0,2,3,6,2,5,0,0,1,0,0,0,0,0,0,1,2,6,0,1,1,0,0,0,0,0 +50,54,73,West Virginia,Pleasants County,4,16,294,133,161,131,159,1,0,0,0,0,0,0,0,1,2,131,161,2,0,1,2,0,0,0,0,132,160,130,158,1,0,0,0,0,0,0,0,1,2,130,160,2,0,1,2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 +50,54,95,West Virginia,Tyler County,1,5,387,192,195,189,184,0,3,0,3,3,2,0,0,0,3,189,187,0,4,0,5,3,2,0,0,190,192,187,182,0,3,0,2,3,2,0,0,0,3,187,185,0,4,0,4,3,2,0,0,2,3,2,2,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,1,0,0,0,0 +50,54,105,West Virginia,Wirt County,2,4,294,164,130,159,122,2,1,0,2,0,1,0,0,3,4,162,126,2,5,2,3,1,1,0,0,163,129,158,121,2,1,0,2,0,1,0,0,3,4,161,125,2,5,2,3,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0 +50,55,11,Wisconsin,Buffalo County,2,6,705,358,347,337,329,8,3,5,6,3,3,0,0,5,6,342,335,11,5,6,9,4,5,0,0,348,332,329,315,8,2,5,6,3,3,0,0,3,6,332,321,9,4,6,9,4,5,0,0,10,15,8,14,0,1,0,0,0,0,0,0,2,0,10,14,2,1,0,0,0,0,0,0 +50,55,39,Wisconsin,Fond du Lac County,1,4,6809,3523,3286,3113,2919,119,134,26,20,175,89,2,16,88,108,3199,3026,169,197,44,49,196,114,5,20,3149,2955,2790,2639,104,123,15,16,166,88,1,2,73,87,2861,2725,146,173,28,35,185,113,4,6,374,331,323,280,15,11,11,4,9,1,1,14,15,21,338,301,23,24,16,14,11,1,1,14 +50,55,78,Wisconsin,Menominee County,1,2,387,204,183,9,8,0,4,170,165,16,1,0,0,9,5,17,13,4,4,175,170,17,1,0,0,188,173,9,7,0,3,154,157,16,1,0,0,9,5,17,12,4,3,159,162,17,1,0,0,16,10,0,1,0,1,16,8,0,0,0,0,0,0,0,1,0,1,16,8,0,0,0,0 +50,55,89,Wisconsin,Ozaukee County,3,17,2151,930,1221,913,1180,8,20,1,6,6,12,0,0,2,3,915,1183,9,21,2,8,6,13,0,0,921,1212,905,1171,8,20,0,6,6,12,0,0,2,3,907,1174,9,21,1,8,6,13,0,0,9,9,8,9,0,0,1,0,0,0,0,0,0,0,8,9,0,0,1,0,0,0,0,0 +50,55,99,Wisconsin,Price County,4,18,387,146,241,144,234,0,1,0,2,1,1,0,0,1,3,145,237,1,2,0,3,1,2,0,0,146,240,144,234,0,1,0,2,1,1,0,0,1,2,145,236,1,2,0,3,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0 diff --git a/scripts/us_census/pep/pep_by_srh/tmcf_generator.py b/scripts/us_census/pep/pep_by_srh/tmcf_generator.py index b80662de3d..e9f04c66cd 100644 --- a/scripts/us_census/pep/pep_by_srh/tmcf_generator.py +++ b/scripts/us_census/pep/pep_by_srh/tmcf_generator.py @@ -19,6 +19,7 @@ """ import os +import logging from constants import OUTPUT_DIR from constants import POPULATION_ESTIMATE_BY_SRH, POPULATION_ESTIMATE_BY_SRH_AGG @@ -26,24 +27,31 @@ os.system("mkdir -p " + _CODEDIR + OUTPUT_DIR) -def generate_tmcf(): +def generate_tmcf(output_path): """ - This function generates MCF file in OUTPUT directory. - There are two mcf files generated - 1. population_estimate_by_srh.mcf - for importing as-is data from US Census - 2. population_estimate_by_srh_agg.mcf - for importing aggregated data - OUTPUT directory is used as common between process.py and process_test.py + This function generates TMCF files in the OUTPUT directory. + There are two TMCF files generated: + 1. population_estimate_by_srh.tmcf - for importing as-is data from US Census + 2. population_estimate_by_srh_agg.tmcf - for importing aggregated data """ - - with open(_CODEDIR + OUTPUT_DIR + 'population_estimate_by_srh.tmcf', - 'w', - encoding='utf-8') as file: - file.writelines(POPULATION_ESTIMATE_BY_SRH) - - with open(_CODEDIR + OUTPUT_DIR + 'population_estimate_by_srh_agg.tmcf', - 'w', - encoding='utf-8') as file: - file.writelines(POPULATION_ESTIMATE_BY_SRH_AGG) + try: + # Writing the As-Is TMCF file + with open(_CODEDIR + output_path + 'population_estimate_by_srh.tmcf', + 'w', + encoding='utf-8') as file: + file.writelines(POPULATION_ESTIMATE_BY_SRH) + + # Writing the Aggregated TMCF file + with open(_CODEDIR + output_path + + 'population_estimate_by_srh_agg.tmcf', + 'w', + encoding='utf-8') as file: + file.writelines(POPULATION_ESTIMATE_BY_SRH_AGG) + + except Exception as e: + # Log the error with a fatal message and stack trace + logging.fatal(f"Fatal error occurred during TMCF generation: {e}") + return if __name__ == '__main__':